content
stringlengths 5
1.05M
|
|---|
from app import db
from app.Collections.Courses import Courses
from app.Collections.Users import Users
from app.Collections.Departments import Departments
from pymongo.errors import WriteError
from flask import jsonify, Response
import datetime
import jwt
class departmentServices():
@staticmethod
def add_department(departmentName):
departments = db['departments']
print({"name":departmentName})
try:
departments.insert_one({"name":departmentName})
return jsonify({
"status": 200,
"result": {
"status": 201,
"message": "department created"
}
})
except WriteError as werror:
return jsonify({
"status": 200,
"result": {
"status": 400,
"message": werror._message
}
})
@staticmethod
def get_all_departments():
departments = db['departments']
return departments.find({})
|
"""
simple_calendar.py
This is an utterly hopeless calendar system, that in no way should be let near real-world pricing
applications.
Although we could later define a date object, dates for internal calculations are real numbers, with 1.0
equalling one year. This is good enough for really simple yield and price calculations.
We fall flat on our faces once we start to interact with index-linked bonds. So I am creating a simple
calendar to simulate the principles of index-linked calculations -- without doing them correctly (oops).
Copyright 2018 Brian Romanchuk
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.
"""
class SimpleCalendar360(object):
"""
This class holds the functions for a calendar that consists of:
(1) 12 months
(2) 30 days per month.
The day/month determines the fractional offset from the year.
Day/month are "1-based," like the real world.
"January 1" is associated with an offset of zero. So the date 1976.0 is "January 1, 1976."
"""
def __init__(self):
self.NumMonths = 12.
self.NumDaysPerMonth = 30.
self.NumDaysPerYear = self.NumMonths * self.NumDaysPerMonth
def GetDate(self, year, month=1, day=1):
"""
Returns the
:param year: int
:param month: int
:param day: int
:return: float
"""
return float(year) + (float(month-1)/self.NumMonths) + (float(day-1) / self.NumDaysPerYear)
def AddMonths(self, date, num_months):
"""
Shift a date by a number of months
:param date: float
:param num_months: int
:return: float
"""
# NOTE: If we get rounding issues, could do modulo-12.
return date + (float(num_months)/self.NumMonths)
class Indexation(object):
"""
Class that manages simple indexation calculations.
Probably should be done with numeric array objects, but stick with lists for now.
I want this code to be very easy to understand, with no worries about performance.
"""
def __init__(self):
self.Calendar = SimpleCalendar360()
self.IndexDateValues = []
self.ExtrapolationRate = None
def SetIndexValues(self, dates, values):
"""
Add two lists of dates/values to the
:param dates: list
:param values: list
:return:
"""
if not len(dates) == len(values):
raise ValueError('dates and values vectors not the same size')
# Not sure how to do this efficiently, do it brute force style
self.IndexDateValues = []
# Save the data as tuples
for d,v in zip(dates, values):
self.IndexDateValues.append((d, v))
self.IndexDateValues.sort()
def GetValue(self, date):
"""
Return the index value for a date
:param date: float
:return: float
"""
if len(self.IndexDateValues) == 0:
raise ValueError('No index data in object')
if date < self.IndexDateValues[0][0]:
raise ValueError('Date before start of index data')
prev_d, prev_v = self.IndexDateValues[0]
# Go through the index points, which we assume are ordered.
for d,v in self.IndexDateValues:
# Special case, we hit the new point exactly.
# This also covers the special case where the date matches the first index date exactly
if d == date:
return v
# Is date in the interval [prev_d, d]?
if date < d:
# Interpolate
fac = (date - prev_d)/(d - prev_d)
return prev_v + fac*(v - prev_v)
# Otherwise, keep going
prev_d = d
prev_v = v
# If we get here, we are outside the interval
# TODO: Add an extrapolation feature.
if self.ExtrapolationRate is None:
raise ValueError('Date greater than index data')
return prev_v*pow(1+self.ExtrapolationRate,date-prev_d)
|
# VRC Peripheral Python Library
# Written by Casey Hanner
import time
from struct import pack
from typing import Any, List, Literal, Union
from loguru import logger
import serial
class VRC_Peripheral(object):
def __init__(self, port: int, use_serial: bool = True) -> None:
self.port = port
self.PREAMBLE = (0x24, 0x50)
self.HEADER_OUTGOING = (*self.PREAMBLE, 0x3C)
self.HEADER_INCOMING = (*self.PREAMBLE, 0x3E)
self.commands = {
"SET_SERVO_OPEN_CLOSE": 0,
"SET_SERVO_MIN": 1,
"SET_SERVO_MAX": 2,
"SET_SERVO_PCT": 3,
"SET_BASE_COLOR": 4,
"SET_TEMP_COLOR": 5,
"RESET_VRC_PERIPH": 6,
"CHECK_SERVO_CONTROLLER": 7,
}
self.use_serial = use_serial
if self.use_serial:
logger.debug("Opening serial port")
self.ser = serial.Serial()
self.ser.baudrate = 115200
self.ser.port = self.port
self.ser.open()
else:
logger.debug("VRC_Peripheral: Serial Transmission is OFF")
self.shutdown: bool = False
def run(self) -> None:
while not self.shutdown:
if self.use_serial:
while self.ser.in_waiting > 0:
print(self.ser.read(1), end="")
time.sleep(0.01)
def set_base_color(self, wrgb: List[int]) -> None:
# wrgb + code = 5
if len(wrgb) != 4:
wrgb = [0, 0, 0, 0]
for i, color in enumerate(wrgb):
if not isinstance(color, int) or color > 255 or color < 0:
wrgb[i] = 0
command = self.commands["SET_BASE_COLOR"]
data = self._construct_payload(command, 1 + len(wrgb), wrgb)
if self.use_serial is True:
self.ser.write(data)
else:
logger.debug("VRC_Peripheral serial data: ")
logger.debug(data)
def set_temp_color(self, wrgb: List[int], time: float = 0.5) -> None:
# wrgb + code = 5
if len(wrgb) != 4:
wrgb = [0, 0, 0, 0]
for i, color in enumerate(wrgb):
if not isinstance(color, int) or color > 255 or color < 0:
wrgb[i] = 0
command = self.commands["SET_TEMP_COLOR"]
time_bytes = self.list_pack("<f", time)
data = self._construct_payload(
command, 1 + len(wrgb) + len(time_bytes), wrgb + time_bytes
)
if self.use_serial is True:
self.ser.write(data)
else:
logger.debug("VRC_Peripheral serial data: ")
logger.debug(data)
def set_servo_open_close(self, servo: int, action: Literal["open", "close"]) -> None:
valid_command = False
command = self.commands["SET_SERVO_OPEN_CLOSE"]
length = 3 # command + servo + action
data = []
# 128 is inflection point, over 128 == open; under 128 == close
if action == "open":
data = [servo, 150]
valid_command = True
elif action == "close":
data = [servo, 100]
valid_command = True
if valid_command:
if self.use_serial is True:
self.ser.write(self._construct_payload(command, length, data))
else:
logger.debug("VRC_Peripheral serial data: ")
logger.debug(data)
def set_servo_min(self, servo: int, minimum: float) -> None:
valid_command = False
command = self.commands["SET_SERVO_MIN"]
length = 3 # command + servo + min pwm
data = []
if isinstance(minimum, (float, int)) and minimum < 1000 and minimum > 0:
valid_command = True
data = [servo, minimum]
if valid_command:
if self.use_serial is True:
self.ser.write(self._construct_payload(command, length, data))
else:
logger.debug("VRC_Peripheral serial data: ")
logger.debug(data)
def set_servo_max(self, servo: int, maximum: float) -> None:
valid_command = False
command = self.commands["SET_SERVO_MAX"]
length = 3 # command + servo + min pwm
data = []
if isinstance(maximum, (float, int)) and maximum < 1000 and maximum > 0:
valid_command = True
data = [servo, maximum]
if valid_command:
if self.use_serial is True:
self.ser.write(self._construct_payload(command, length, data))
else:
logger.debug("VRC_Peripheral serial data: ")
logger.debug(data)
def set_servo_pct(self, servo: int, pct: float) -> None:
valid_command = False
command = self.commands["SET_SERVO_PCT"]
length = 3 # command + servo + percent
data = []
if isinstance(pct, (float, int)) and pct < 100 and pct > 0:
valid_command = True
data = [servo, int(pct)]
if valid_command:
if self.use_serial is True:
self.ser.write(self._construct_payload(command, length, data))
else:
logger.debug("VRC_Peripheral serial data: ")
logger.debug(data)
def reset_vrc_peripheral(self) -> None:
command = self.commands["RESET_VRC_PERIPH"]
length = 1 # just the reset command
if self.use_serial:
self.ser.write(self._construct_payload(command, length))
self.ser.close()
# wait for the VRC_Periph to reboot
time.sleep(5)
# try to reconnect
self.ser.open()
else:
logger.debug("VRC_Peripheral reset triggered (NO SERIAL)")
def check_servo_controller(self) -> None:
if self.use_serial:
command = self.commands["CHECK_SERVO_CONTROLLER"]
length = 1
self.ser.write(self._construct_payload(command, length))
def _construct_payload(self, code: int, size: int = 0, data: list = []):
# [$][P][>][LENGTH-HI][LENGTH-LOW][DATA][CRC]
payload = bytes()
new_data = (
("<3b", self.HEADER_OUTGOING),
(">H", [size]),
("<B", [code]),
("<%dB" % len(data), data),
)
for section in new_data:
payload += pack(section[0], *section[1])
crc = self.calc_crc(payload, len(payload))
payload += pack("<B", crc)
return payload
def list_pack(self, bit_format: Union[str, bytes], value: Any) -> List[int]:
bytez = pack(bit_format, value)
return [byte for byte in bytez]
def crc8_dvb_s2(self, crc, a):
# https://stackoverflow.com/a/52997726
crc ^= a
for _ in range(8):
if crc & 0x80:
crc = ((crc << 1) ^ 0xD5) % 256
else:
crc = (crc << 1) % 256
return crc
def calc_crc(self, string: Union[str, bytes], length: int):
crc = 0
for i in range(length):
crc = self.crc8_dvb_s2(crc, string[i])
return crc
|
from autodp.mechanism_zoo import GaussianMechanism
from autodp.fdp_bank import fDP_gaussian
import numpy as np
from absl.testing import absltest
from absl.testing import parameterized
params = [0.05, 0.1, 0.2, 0.5,1.0, 2.0,5.0, 10.0]
def _fdp_conversion(sigma):
# Using the log(1-f(fpr)) and log(- \partial f(fpr)) that are implemented dedicatedly
fpr_list = np.linspace(0, 1, 21)
# analytical gaussian implementation (privacy profile)
gm2 = GaussianMechanism(sigma, name='GM2', RDP_off=True)
# direct f-DP implementation
fdp = lambda x: fDP_gaussian({'sigma': sigma},x)
fdp_direct = fdp(fpr_list)
# the fdp is converted by numerical methods from privacy profile.
fdp_converted = np.array([gm2.get_fDP(fpr) for fpr in fpr_list])
return fdp_direct - fdp_converted
class Test_approxDP2fDP_Conversion(parameterized.TestCase):
@parameterized.parameters(p for p in params)
def test_fdp_conversion(self, sigma):
max_diff = _fdp_conversion(sigma)
self.assertSequenceAlmostEqual(max_diff, np.zeros_like(max_diff), places=4)
if __name__ == '__main__':
absltest.main()
|
from estudent import data_generator
from estudent.school import School
def run_example():
students = data_generator.generate_students()
students.sort(key=lambda student: student.grades_avg(), reverse=True)
school = School(name="Hogwart", students=students)
best_student = school.students[0]
# print(f"Oceny najlepszego ucznia: {best_student.get_final_grades()}")
print(f"Oceny najlepszego ucznia: {best_student.final_grades}")
if __name__ == '__main__':
run_example()
|
import os
import pandas as pd
from sklearn.metrics.pairwise import cosine_similarity
from sklearn.feature_extraction.text import CountVectorizer
# code to read the xlsx File
filepath = os.path.abspath(os.path.dirname(__name__))
sheet_name = 'commonwordswithIPA'
filename = filepath + '/application/resources/recommender/files/AccentGURU.xlsx'
df = pd.read_excel(filename, sheet_name=sheet_name)
df = df[['word', 'category', 'word_s1', 'word_s2', 'word_s3', 'word_s4', 'phase', 'primary_syllable_stress']]
df.set_index('word', inplace=True)
df['bag_of_words'] = ''
columns = df.columns
for index, row in df.iterrows():
data = ''
for col in columns:
df[col] = df[col].astype(str)
df[col] = df[col].map(lambda x: x.lower())
data = data + row[col] + ' '
row['bag_of_words'] = data
df.drop(columns=[col for col in df.columns if col != 'bag_of_words'], inplace=True)
count = CountVectorizer()
count_matrix = count.fit_transform(df['bag_of_words'])
indices = pd.Series(df.index)
def recommendations(words):
recommended_words = []
cosine_sim = cosine_similarity(count_matrix, count_matrix)
# getting the index of the words that matches the word
idx = indices[indices == words].index[0]
# creating a Series with the similarity scores in descending order
score_series = pd.Series(cosine_sim[idx]).sort_values(ascending=False)
# getting the indexes of the 10 most similar words
top_10_indexes = list(score_series.iloc[1:6].index)
# populating the list with the words of the best matching words
for i in top_10_indexes:
recommended_words.append(list(df.index)[i])
return recommended_words
|
from coreapi import codecs, exceptions, transports
from coreapi.compat import string_types
from coreapi.document import Document, Link
from coreapi.utils import determine_transport, get_installed_codecs
import collections
import itypes
LinkAncestor = collections.namedtuple('LinkAncestor', ['document', 'keys'])
def _lookup_link(document, keys):
"""
Validates that keys looking up a link are correct.
Returns a two-tuple of (link, link_ancestors).
"""
if not isinstance(keys, (list, tuple)):
msg = "'keys' must be a list of strings or ints."
raise TypeError(msg)
if any([
not isinstance(key, string_types) and not isinstance(key, int)
for key in keys
]):
raise TypeError("'keys' must be a list of strings or ints.")
# Determine the link node being acted on, and its parent document.
# 'node' is the link we're calling the action for.
# 'document_keys' is the list of keys to the link's parent document.
node = document
link_ancestors = [LinkAncestor(document=document, keys=[])]
for idx, key in enumerate(keys):
try:
node = node[key]
except (KeyError, IndexError, TypeError):
index_string = ''.join('[%s]' % repr(key).strip('u') for key in keys)
msg = 'Index %s did not reference a link. Key %s was not found.'
raise exceptions.LinkLookupError(msg % (index_string, repr(key).strip('u')))
if isinstance(node, Document):
ancestor = LinkAncestor(document=node, keys=keys[:idx + 1])
link_ancestors.append(ancestor)
# Ensure that we've correctly indexed into a link.
if not isinstance(node, Link):
index_string = ''.join('[%s]' % repr(key).strip('u') for key in keys)
msg = "Can only call 'action' on a Link. Index %s returned type '%s'."
raise exceptions.LinkLookupError(
msg % (index_string, type(node).__name__)
)
return (node, link_ancestors)
def _validate_parameters(link, parameters):
"""
Ensure that parameters passed to the link are correct.
Raises a `ParameterError` if any parameters do not validate.
"""
provided = set(parameters.keys())
required = set([
field.name for field in link.fields if field.required
])
optional = set([
field.name for field in link.fields if not field.required
])
errors = {}
# Determine if any required field names not supplied.
missing = required - provided
for item in missing:
errors[item] = 'This parameter is required.'
# Determine any parameter names supplied that are not valid.
unexpected = provided - (optional | required)
for item in unexpected:
errors[item] = 'Unknown parameter.'
if errors:
raise exceptions.ParameterError(errors)
def get_default_decoders():
return [
codecs.CoreJSONCodec(),
codecs.JSONCodec(),
codecs.TextCodec(),
codecs.DownloadCodec()
]
def get_default_transports(auth=None, session=None):
return [
transports.HTTPTransport(auth=auth, session=session)
]
class Client(itypes.Object):
def __init__(self, decoders=None, transports=None, auth=None, session=None):
assert transports is None or auth is None, (
"Cannot specify both 'auth' and 'transports'. "
"When specifying transport instances explicitly you should set "
"the authentication directly on the transport."
)
if decoders is None:
decoders = get_default_decoders()
if transports is None:
transports = get_default_transports(auth=auth, session=session)
self._decoders = itypes.List(decoders)
self._transports = itypes.List(transports)
@property
def decoders(self):
return self._decoders
@property
def transports(self):
return self._transports
def get(self, url, format=None, force_codec=False):
link = Link(url, action='get')
decoders = self.decoders
if format:
force_codec = True
decoders = [decoder for decoder in self.decoders if decoder.format == format]
if not decoders:
installed_codecs = get_installed_codecs()
if format in installed_codecs:
decoders = [installed_codecs[format]]
else:
raise ValueError("No decoder available with format='%s'" % format)
# Perform the action, and return a new document.
transport = determine_transport(self.transports, link.url)
return transport.transition(link, decoders, force_codec=force_codec)
def reload(self, document, format=None, force_codec=False):
# Fallback for v1.x. To be removed in favour of explict `get` style.
return self.get(document.url, format=format, force_codec=force_codec)
def action(self, document, keys, params=None, validate=True, overrides=None,
action=None, encoding=None, transform=None):
if (action is not None) or (encoding is not None) or (transform is not None):
# Fallback for v1.x overrides.
# Will be removed at some point, most likely in a 2.1 release.
if overrides is None:
overrides = {}
if action is not None:
overrides['action'] = action
if encoding is not None:
overrides['encoding'] = encoding
if transform is not None:
overrides['transform'] = transform
if isinstance(keys, string_types):
keys = [keys]
if params is None:
params = {}
# Validate the keys and link parameters.
link, link_ancestors = _lookup_link(document, keys)
if validate:
_validate_parameters(link, params)
if overrides:
# Handle any explicit overrides.
url = overrides.get('url', link.url)
action = overrides.get('action', link.action)
encoding = overrides.get('encoding', link.encoding)
transform = overrides.get('transform', link.transform)
fields = overrides.get('fields', link.fields)
link = Link(url, action=action, encoding=encoding, transform=transform, fields=fields)
# Perform the action, and return a new document.
transport = determine_transport(self.transports, link.url)
return transport.transition(link, self.decoders, params=params, link_ancestors=link_ancestors)
|
import abc
from munch import Munch
from .path import Path
from .serialization import YAMLMixin
from .storage import Storage
from .utils import import_class as _import_class
class Persistent(Storage, YAMLMixin, abc.ABC):
"""Base class for persistent storages.
A persistent storage must expose two *gateways*, one for reading from it, and one for writing to it. These will be
defined in the form of two abstract property methods which must be overridden.
Attributes
----------
path: Path
Contains details about the provided path.
Parameters
----------
plainStorage: Munch
Description for the persistent storage.
"""
def __init__(self, plainStorage, settings):
self.path = Path(plainStorage.path, settings)
self.format = plainStorage.get('format')
def extension(self):
if self.format is not None:
extension, *compression = self.format.split('.')
return f'.{extension}', (f'.{compression[0]}' if compression else None)
return self.path.extension()
@abc.abstractmethod
def read(self):
"""
A context manager for reading data from the file.
"""
pass
@abc.abstractmethod
def write(self):
"""
A context manager for writing data to the file.
"""
pass
def toDict(self):
return {'path': self.path.raw}
def import_class(identifier):
return _import_class('persistents', identifier)
|
import torch
import numpy as np
import math
from . import common_functions as c_f
# input must be 2D
def logsumexp(x, keep_mask=None, add_one=True, dim=1):
if keep_mask is not None:
x = x.masked_fill(~keep_mask, c_f.neg_inf(x.dtype))
if add_one:
zeros = torch.zeros(x.size(dim-1), dtype=x.dtype, device=x.device).unsqueeze(dim)
x = torch.cat([x,zeros], dim=dim)
output = torch.logsumexp(x, dim=dim, keepdim=True)
if keep_mask is not None:
output = output.masked_fill(~torch.any(keep_mask, dim=dim, keepdim=True), 0)
return output
def meshgrid_from_sizes(x, y, dim=0):
a = torch.arange(x.size(dim)).to(x.device)
b = torch.arange(y.size(dim)).to(y.device)
return torch.meshgrid(a,b)
def get_all_pairs_indices(labels, ref_labels=None):
"""
Given a tensor of labels, this will return 4 tensors.
The first 2 tensors are the indices which form all positive pairs
The second 2 tensors are the indices which form all negative pairs
"""
if ref_labels is None:
ref_labels = labels
labels1 = labels.unsqueeze(1)
labels2 = ref_labels.unsqueeze(0)
matches = (labels1 == labels2).byte()
diffs = matches ^ 1
if ref_labels is labels:
matches.fill_diagonal_(0)
a1_idx, p_idx = torch.where(matches)
a2_idx, n_idx = torch.where(diffs)
return a1_idx, p_idx, a2_idx, n_idx
def convert_to_pairs(indices_tuple, labels):
"""
This returns anchor-positive and anchor-negative indices,
regardless of what the input indices_tuple is
Args:
indices_tuple: tuple of tensors. Each tensor is 1d and specifies indices
within a batch
labels: a tensor which has the label for each element in a batch
"""
if indices_tuple is None:
return get_all_pairs_indices(labels)
elif len(indices_tuple) == 4:
return indices_tuple
else:
a, p, n = indices_tuple
return a, p, a, n
def convert_to_pos_pairs_with_unique_labels(indices_tuple, labels):
a, p, _, _ = convert_to_pairs(indices_tuple, labels)
_, unique_idx = np.unique(labels[a].cpu().numpy(), return_index=True)
return a[unique_idx], p[unique_idx]
def pos_pairs_from_tuple(indices_tuple):
return indices_tuple[:2]
def neg_pairs_from_tuple(indices_tuple):
return indices_tuple[2:]
def get_all_triplets_indices(labels, ref_labels=None):
if ref_labels is None:
ref_labels = labels
labels1 = labels.unsqueeze(1)
labels2 = ref_labels.unsqueeze(0)
matches = (labels1 == labels2).byte()
diffs = matches ^ 1
if ref_labels is labels:
matches.fill_diagonal_(0)
triplets = matches.unsqueeze(2)*diffs.unsqueeze(1)
return torch.where(triplets)
# sample triplets, with a weighted distribution if weights is specified.
def get_random_triplet_indices(labels, ref_labels=None, t_per_anchor=None, weights=None):
a_idx, p_idx, n_idx = [], [], []
labels_device = labels.device
ref_labels = labels if ref_labels is None else ref_labels
ref_labels_is_labels = ref_labels is labels
labels = labels.cpu().numpy()
ref_labels = ref_labels.cpu().numpy()
batch_size = ref_labels.shape[0]
indices = np.arange(batch_size)
for i, label in enumerate(labels):
all_pos_pair_mask = ref_labels == label
if ref_labels_is_labels:
all_pos_pair_mask &= indices != i
all_pos_pair_idx = np.where(all_pos_pair_mask)[0]
curr_label_count = len(all_pos_pair_idx)
if curr_label_count == 0:
continue
k = curr_label_count if t_per_anchor is None else t_per_anchor
if weights is not None and not np.any(np.isnan(weights[i])):
n_idx += c_f.NUMPY_RANDOM.choice(batch_size, k, p=weights[i]).tolist()
else:
possible_n_idx = list(np.where(ref_labels != label)[0])
n_idx += c_f.NUMPY_RANDOM.choice(possible_n_idx, k).tolist()
a_idx.extend([i] * k)
curr_p_idx = c_f.safe_random_choice(all_pos_pair_idx, k)
p_idx.extend(curr_p_idx.tolist())
a_idx = torch.LongTensor(a_idx).to(labels_device)
p_idx = torch.LongTensor(p_idx).to(labels_device)
n_idx = torch.LongTensor(n_idx).to(labels_device)
return a_idx, p_idx, n_idx
def repeat_to_match_size(smaller_set, larger_size, smaller_size):
num_repeat = math.ceil(float(larger_size) / float(smaller_size))
return smaller_set.repeat(num_repeat)[:larger_size]
def matched_size_indices(curr_p_idx, curr_n_idx):
num_pos_pairs = len(curr_p_idx)
num_neg_pairs = len(curr_n_idx)
if num_pos_pairs > num_neg_pairs:
n_idx = repeat_to_match_size(curr_n_idx, num_pos_pairs, num_neg_pairs)
p_idx = curr_p_idx
else:
p_idx = repeat_to_match_size(curr_p_idx, num_neg_pairs, num_pos_pairs)
n_idx = curr_n_idx
return p_idx, n_idx
def convert_to_triplets(indices_tuple, labels, t_per_anchor=100):
"""
This returns anchor-positive-negative triplets
regardless of what the input indices_tuple is
"""
if indices_tuple is None:
if t_per_anchor == "all":
return get_all_triplets_indices(labels)
else:
return get_random_triplet_indices(labels, t_per_anchor=t_per_anchor)
elif len(indices_tuple) == 3:
return indices_tuple
else:
a_out, p_out, n_out = [], [], []
a1, p, a2, n = indices_tuple
empty_output = [torch.tensor([]).to(labels.device)] * 3
if len(a1) == 0 or len(a2) == 0:
return empty_output
for i in range(len(labels)):
pos_idx = torch.where(a1 == i)[0]
neg_idx = torch.where(a2 == i)[0]
if len(pos_idx) > 0 and len(neg_idx) > 0:
p_idx = p[pos_idx]
n_idx = n[neg_idx]
p_idx, n_idx = matched_size_indices(p_idx, n_idx)
a_idx = torch.ones_like(c_f.longest_list([p_idx, n_idx])) * i
a_out.append(a_idx)
p_out.append(p_idx)
n_out.append(n_idx)
try:
return [torch.cat(x, dim=0) for x in [a_out, p_out, n_out]]
except RuntimeError:
# assert that the exception was caused by disjoint a1 and a2
# otherwise something has gone wrong
assert len(np.intersect1d(a1, a2)) == 0
return empty_output
def convert_to_weights(indices_tuple, labels, dtype):
"""
Returns a weight for each batch element, based on
how many times they appear in indices_tuple.
"""
weights = torch.zeros_like(labels).type(dtype)
if indices_tuple is None:
return weights + 1
if all(len(x) == 0 for x in indices_tuple):
return weights + 1
indices, counts = torch.unique(torch.cat(indices_tuple, dim=0), return_counts=True)
counts = (counts.type(dtype) / torch.sum(counts))
weights[indices] = counts / torch.max(counts)
return weights
|
from invoke import task
import requests
from os.path import join
from subprocess import run
from tasks.util.env import WASM_BUILD_DIR, WASM_INSTALL_DIR, clean_dir
from tasks.util.faasm import get_faasm_upload_host_port
from tasks.lammps.env import (
LAMMPS_DIR,
LAMMPS_FAASM_USER,
LAMMPS_FAASM_FUNC,
)
CMAKE_TOOLCHAIN_FILE = "/usr/local/faasm/toolchain/tools/WasiToolchain.cmake"
@task(default=True)
def build(ctx, clean=False, verbose=False):
"""
Build LAMMPS to wasm
"""
cmake_dir = join(LAMMPS_DIR, "cmake")
clean_dir(WASM_BUILD_DIR, clean)
clean_dir(WASM_INSTALL_DIR, clean)
cmake_cmd = [
"cmake",
"-GNinja",
"-DLAMMPS_FAASM=ON",
"-DCMAKE_TOOLCHAIN_FILE={}".format(CMAKE_TOOLCHAIN_FILE),
"-DCMAKE_BUILD_TYPE=Release",
"-DCMAKE_INSTALL_PREFIX={}".format(WASM_INSTALL_DIR),
cmake_dir,
]
cmake_str = " ".join(cmake_cmd)
print(cmake_str)
res = run(cmake_str, shell=True, cwd=WASM_BUILD_DIR)
if res.returncode != 0:
raise RuntimeError("LAMMPS CMake config failed")
res = run("ninja", shell=True, cwd=WASM_BUILD_DIR)
if res.returncode != 0:
raise RuntimeError("LAMMPS build failed")
res = run("ninja install", shell=True, cwd=WASM_BUILD_DIR)
if res.returncode != 0:
raise RuntimeError("LAMMPS install failed")
@task
def upload(ctx):
"""
Upload the LAMMPS function to Faasm
"""
wasm_file = join(WASM_INSTALL_DIR, "bin", "lmp")
host, port = get_faasm_upload_host_port()
url = "http://{}:{}/f/{}/{}".format(
host, port, LAMMPS_FAASM_USER, LAMMPS_FAASM_FUNC
)
print("Putting function to {}".format(url))
response = requests.put(url, data=open(wasm_file, "rb"))
print("Response {}: {}".format(response.status_code, response.text))
|
import logging
import pathlib
import torch.utils.data as data
import torchvision.transforms as T
from torchvision.datasets import ImageFolder
from codebase.torchutils.distributed import world_size
from ..utils import get_samplers
_logger = logging.getLogger(__name__)
def get_train_transforms(crop_size, mean, std, is_training):
pipelines = []
if is_training:
pipelines.append(T.RandomResizedCrop(crop_size))
pipelines.append(T.RandomHorizontalFlip())
else:
pipelines.append(T.Resize(int(crop_size/7*8)))
pipelines.append(T.CenterCrop(crop_size))
pipelines.append(T.ToTensor())
pipelines.append(T.Normalize(mean=mean, std=std))
return T.Compose(pipelines)
def _build_imagenet_loader(root, is_training, image_size, mean, std, batch_size, num_workers):
transforms = get_train_transforms(image_size, mean, std, is_training)
dataset = ImageFolder(pathlib.Path(root)/("train" if is_training else "val"), transform=transforms)
sampler = get_samplers(dataset, is_training)
loader = data.DataLoader(dataset, batch_size=batch_size,
shuffle=(sampler is None),
sampler=sampler,
num_workers=num_workers,
persistent_workers=True,
drop_last=is_training)
_logger.info(f"Loading ImageNet dataset using torchvision from folder"
f" with {'trainset' if is_training else 'valset'} (len={len(dataset)})")
_logger.info(f"Total batch_size={batch_size*world_size()} with world_size={world_size()}, run with {len(loader)} iters per epoch")
return loader
def build_imagenet_loader(root, image_size, mean, std, batch_size, num_workers):
return _build_imagenet_loader(root, True, image_size, mean, std, batch_size, num_workers),\
_build_imagenet_loader(root, False, image_size, mean, std, batch_size, num_workers)
|
import psycopg2
from faker import Faker
import os
import traceback
import psycopg2.extras
import random
import string
def connect_db():
db_name = os.getenv('COMPANY_NAME', 'apporbit')
user = os.getenv('POSTGRES_USER', 'odoo')
passwd = os.getenv('POSTGRES_PASSWORD', 'odoo')
host = os.getenv('DB_TIER', 'ds2db')
conn = psycopg2.connect("dbname='{0}' user='{1}' host='{2}' password='{3}'".format(db_name,
user,
host,
passwd))
return conn
def get_records(query):
conn = connect_db()
cur = conn.cursor(cursor_factory=psycopg2.extras.DictCursor)
cur.execute(query)
rows = cur.fetchall()
return rows
def update_passports(rows):
conn = connect_db()
cur = conn.cursor()
for row in rows:
if row[1]:
cur.execute("UPDATE hr_employee SET passport_id='{0}' WHERE id={1}".format(row[1], row[0]))
conn.commit()
cur.close()
def update_work_phone(rows):
conn = connect_db()
cur = conn.cursor()
for row in rows:
if row[1]:
cur.execute("UPDATE hr_employee SET work_phone='{0}' WHERE id={1}".format(row[1], row[0]))
conn.commit()
cur.close()
def update_bank_accounts(rows):
conn = connect_db()
cur = conn.cursor()
for row in rows:
if row[1]:
cur.execute("UPDATE res_partner_bank SET acc_number='{0}' WHERE id={1}".format(row[1], row[0]))
conn.commit()
cur.close()
def mask_passports():
rows = get_records("SELECT id, passport_id FROM hr_employee")
print "Rows for passport are " + str(rows)
for row in rows:
row[1] = ''.join(random.choice(string.digits) for _ in range(8))
print "Passports rows after masking " + str(rows)
update_passports(rows)
def mask_work_phone():
rows = get_records("SELECT id, work_phone FROM hr_employee")
print "Rows for workphone are " + str(rows)
for row in rows:
row[1] = '+' + ''.join(random.choice(string.digits) for _ in range(8))
print "work_phone rows after masking " + str(rows)
update_work_phone(rows)
def mask_bank_account():
rows = get_records("SELECT id, acc_number FROM res_partner_bank ")
print "Rows for bank accounts are " + str(rows)
for row in rows:
if row[1]:
row[1] = ''.join(random.choice(string.digits) for _ in range(10))
print "Bank account rows after masking " + str(rows)
update_bank_accounts(rows)
def mask_data():
try:
mask_passports()
mask_work_phone()
mask_bank_account()
with open("/tmp/result", 'w') as outf:
outf.write("success")
except:
print "Failed to mask data"
traceback.print_exc()
with open("result", 'w') as outf:
outf.write("failure")
if __name__ == '__main__':
mask_data()
|
import argparse
from dataclasses import (
dataclass,
)
import logging
from pathlib import (
Path,
)
from typing import (
Any,
FrozenSet,
IO,
Iterable,
NamedTuple,
Optional,
Union,
)
import docker
from more_itertools import (
one,
)
import requirements
from requirements.requirement import (
Requirement,
)
from azul import (
RequirementError,
cached_property,
config,
reject,
require,
)
from azul.logging import (
configure_script_logging,
)
log = logging.getLogger(__name__)
Version = str
class Versions(FrozenSet[Version]):
def __new__(cls, *versions: Version) -> Any:
return super().__new__(cls, versions)
def __str__(self) -> str:
return ','.join('==' + v for v in self)
def __or__(self, other: 'Versions') -> 'Versions':
# We need to hand-implement this because the overridden base class
# method returns a base class instance, unfortunately.
return type(self)(*self, *other)
@dataclass(frozen=True)
class PinnedRequirement:
name: str
versions: Versions = Versions()
@classmethod
def create(cls, req: Requirement) -> Optional['PinnedRequirement']:
if req.specifier:
op, version = one(req.specs)
assert op == '=='
return cls(name=req.name.lower(), versions=Versions(version))
elif req.vcs:
reject(req.revision is None, 'VCS requirements must carry a specific revision', req)
return cls(name=req.name.lower())
elif req.recursive:
return None
else:
raise RequirementError('Unable to handle requirement', req)
def __or__(self, other: Optional['PinnedRequirement']) -> 'PinnedRequirement':
assert self.name == other.name
if self.versions == other.versions:
return self
else:
return PinnedRequirement(name=other.name,
versions=self.versions | other.versions)
def __str__(self) -> str:
assert self.versions
return self.name + str(self.versions)
class PinnedRequirements:
def __init__(self, reqs: Iterable[Optional[PinnedRequirement]]) -> None:
reqs = list(filter(None, reqs))
self._reqs = {req.name: req for req in reqs}
assert len(reqs) == len(self._reqs)
def __and__(self, other: 'PinnedRequirements') -> 'PinnedRequirements':
def lookup(req: PinnedRequirement) -> Optional[PinnedRequirement]:
try:
other_req = other[req]
except KeyError:
return None
else:
return req | other_req
return PinnedRequirements(lookup(req) for req in self)
def __sub__(self, other: 'PinnedRequirements') -> 'PinnedRequirements':
return PinnedRequirements(req for req in self if req not in other)
def __le__(self, other: 'PinnedRequirements') -> bool:
return self._reqs.keys() <= other._reqs.keys()
def __iter__(self):
return iter(self._reqs.values())
def __contains__(self, item: Union[str, PinnedRequirement]):
return self._name(item) in self._reqs
def _name(self, item: Union[str, PinnedRequirement]) -> str:
return item.name if isinstance(item, PinnedRequirement) else item
def __getitem__(self, item: Union[str, PinnedRequirement]) -> PinnedRequirement:
return self._reqs[self._name(item)]
def __setitem__(self, item: Union[str, PinnedRequirement], req: PinnedRequirement) -> None:
self._reqs[self._name(item)] = req
def __repr__(self) -> str:
return f'Requirements({repr(list(self._reqs.values()))})'
def __str__(self) -> str:
return '\n'.join(map(str, self._reqs.values()))
def __bool__(self):
return bool(self._reqs)
class Qualifier(NamedTuple):
name: str
extension: str
image: Optional[str]
@dataclass
class Main:
build_image: str
runtime_image: str
@cached_property
def pip(self): return Qualifier(name='pip',
extension='.pip',
image=None)
@cached_property
def runtime(self): return Qualifier(name='runtime',
extension='',
image=self.runtime_image)
@cached_property
def build(self): return Qualifier(name='build',
extension='.dev',
image=self.build_image)
@cached_property
def project_root(self):
return Path(config.project_root)
@cached_property
def docker(self):
return docker.from_env()
def run(self):
pip_deps = self.get_direct_reqs(self.pip)
direct_runtime_reqs = self.get_direct_reqs(self.runtime)
direct_build_reqs = self.get_direct_reqs(self.build)
dupes = direct_build_reqs & direct_runtime_reqs
require(not dupes, 'Some requirements are declared as both run and build time', dupes)
build_reqs = self.get_reqs(self.build) - pip_deps
runtime_reqs = self.get_reqs(self.runtime) - pip_deps
require(runtime_reqs <= build_reqs,
'Runtime requirements are not a subset of build requirements',
runtime_reqs - build_reqs)
overlap = build_reqs & runtime_reqs
ambiguities = PinnedRequirements(req for req in overlap if len(req.versions) > 1)
for req in ambiguities:
build_req = build_reqs[req]
# We can't resolve these ambiguities automatically because different
# versions of a package may have different dependencies in and of
# themselves, so pinning just the dependency in question might omit
# some of its dependencies. By pinning it explicitly the normal
# dependency resolution kicks in, including all transitive
# dependencies of the pinned version.
log.error('Ambiguous version of transitive runtime requirement %s. '
'Consider pinning it to the version used at build time (%s).',
req, build_req.versions)
require(not ambiguities,
'Ambiguous transitive runtime requirement versions',
ambiguities)
build_only_reqs = build_reqs - runtime_reqs
transitive_build_reqs = build_only_reqs - direct_build_reqs
transitive_runtime_reqs = runtime_reqs - direct_runtime_reqs
assert not transitive_build_reqs & transitive_runtime_reqs
self.write_transitive_reqs(transitive_build_reqs, self.build)
self.write_transitive_reqs(transitive_runtime_reqs, self.runtime)
def parse_reqs(self, file_or_str: Union[IO, str]) -> PinnedRequirements:
parsed_reqs = requirements.parse(file_or_str, recurse=False)
parsed_reqs = set(map(PinnedRequirement.create, parsed_reqs))
return PinnedRequirements(parsed_reqs - {None})
def get_reqs(self, qualfier: Qualifier) -> PinnedRequirements:
command = '.venv/bin/pip freeze --all'
log.info('Getting direct and transitive %s requirements by running %s on image %s',
qualfier.name, command, qualfier.image)
stdout = self.docker.containers.run(image=qualfier.image,
command=command,
detach=False,
stdout=True,
auto_remove=True)
return self.parse_reqs(stdout.decode())
def get_direct_reqs(self, qualifier: Qualifier) -> PinnedRequirements:
file_name = f'requirements{qualifier.extension}.txt'
path = self.project_root / file_name
log.info('Reading direct %s requirements from %s', qualifier.name, path)
with open(path) as f:
return self.parse_reqs(f)
def write_transitive_reqs(self, reqs: PinnedRequirements, qualifier: Qualifier) -> None:
file_name = f'requirements{qualifier.extension}.trans.txt'
path = self.project_root / file_name
log.info('Writing transitive requirements to %s', path)
with open(path, 'w') as f:
f.writelines(sorted(f'{req}\n' for req in reqs))
if __name__ == '__main__':
configure_script_logging(log)
parser = argparse.ArgumentParser()
parser.add_argument('--image', required=True)
parser.add_argument('--build-image', required=True)
options = parser.parse_args()
main = Main(build_image=options.build_image,
runtime_image=options.image)
main.run()
|
#!/usr/bin/python
##############################
#### Modules Import Start ####
##############################
from flask import Flask, render_template, request, redirect, send_file
from werkzeug import secure_filename
from app import app
import global_variables
from sys import argv
#script, filename = argv
import os.path
#if os.path.isfile("%s" % (filename)) == False: # If file doesn't exist, exit the script
# print 'File "%s" doesn\'t exist.' % (filename)
# file_note = raw_input('Press <Enter> to exit the script.\n')
# quit()
import time
import zipfile
import tarfile
import re
import operator
import ipaddress
from datetime import datetime
import math
import readline
readline.set_completer_delims("$")
############################
#### Modules Import End ####
############################
######################################
#### Script Beginning Notes Start ####
######################################
#@app.route('/')
#@app.route('/index')
@app.route('/lp_6_12_index', methods=['GET', 'POST'])
def index():
reload(global_variables)
global_variables.counter += 1
user_ip = request.remote_addr
users_ips_log = open("app/users_ips_logs", "a") # This is the access logs file
current_time = datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S.%f')
print >>users_ips_log, '\033[1m%s\033[0m #User_Logged_In: User with IP %s logged in.' % (current_time, user_ip)
users_ips_log.close()
#if global_variables.counter > 1:
#return "Too many users connected, try again later."
#else:
return render_template('index.html')
@app.route('/validate_file', methods=['POST'])
@app.route('/validate_file.js')
def validate_js():
if request.method == 'GET':
return send_file('validate_file.js')
elif request.method == 'POST':
check_user_file = str(request.form['user_output_file'])
if not check_user_file:
return render_template('file_status.html', file_status="empty")
elif os.path.isfile("app/%s_config" % (check_user_file)) == True:
return render_template('file_status.html', file_status="error")
else:
return render_template('file_status.html', file_status="ok")
@app.route('/jquery-1.11.2.min.js')
def jquery():
return send_file('jquery-1.11.2.min.js')
@app.route('/getfile', methods=['GET','POST'])
def getfile():
if request.method == 'POST':
# for secure filenames. Read the documentation.
lp_config_file = request.files['myfile']
lp_config_filename = secure_filename(lp_config_file.filename)
# os.path.join is used so that paths work in every operating system
lp_config_file.save(os.path.join(lp_config_filename))
# You should use os.path.join here too.
with open(lp_config_filename) as lp_to_lpng:
lp_to_lpng = lp_to_lpng.read()
lp_to_lpng = lp_to_lpng.replace(' \\\r\n', " ") # In case there's a white space before the "\"
lp_to_lpng = lp_to_lpng.replace('\\\r\n ', " ") # In case there's a white space after the "\"
lp_to_lpng = lp_to_lpng.replace('\\\r\n', " ") # In case there's no white space between the "\" and the next line
lp_to_lpng = lp_to_lpng.split('\r\n')
lp_to_lpng = [var + " " for var in lp_to_lpng] # Adds a white space in the end of each list object
global lp_to_lpng
######################################
#### Script Beginning Notes Start ####
######################################
for line in lp_to_lpng: # Loops over the LP configuration
if "Software Version" in line: # LP software version check
def find_sw_version( line, first, last):
try:
start = line.index( first ) + len( first )
end = line.index( last, start )
return line[start:end]
except ValueError:
return "error"
sw_version = find_sw_version( line, "!Software Version: ", ")" )
#if "6.12" not in sw_version or "6.13" not in sw_version: # If the LP software version is 6.20 or 6.21, the script exists
if not sw_version.startswith("6.12") and not sw_version.startswith("6.13"):
return render_template('sw_version_error.html', sw_version=sw_version)
return render_template('startnotes.html')
#return redirect('/startnotes')
#@app.route('/startnotes')
#def startnotes():
#return render_template('startnotes.html')
@app.route('/page1', methods=['GET','POST'])
def page1():
global user_output_file
global output_file
global migration_errors
global ingress_vlan
global ingress_ports
global hc_note
global hc_fqdn1
global hc_fqdn2
global hc_dns1
global hc_dns2
user_output_file = str(request.form['user_output_file'])
#if os.path.isfile("app/%s_config" % (user_output_file)) == True:
# error = 'File %s already exists.' % (user_output_file)
# return render_template('startnotes.html', error=error)
#else:
output_file = open("app/%s_config" % (user_output_file), "abc") # This is the target Alteon configuration file
migration_errors = open("app/%s_logs" % (user_output_file), "w") # This is the logs file
ingress_vlan = str(request.form['vlan_id'])
if ingress_vlan == "0":
ingress_vlan = "any"
ingress_ports = request.form['ingress_ports']
ingress_ports = str(ingress_ports).split(',') # Creates list of ingress ports
ingress_ports = [p.replace(' ', '') for p in ingress_ports] # Removes white spaces
egress_ports = request.form['egress_ports']
egress_ports = str(egress_ports).split(',') # Creates list of egress ports
egress_ports = [p.replace(' ', '') for p in egress_ports] # Removes white spaces
hc_note = str(request.form['hc_types'])
hc_fqdn1 = str(request.form['fqdn1'])
hc_fqdn2 = str(request.form['fqdn2'])
hc_dns1 = str(request.form['dns1'])
hc_dns2 = str(request.form['dns2'])
global allports
allports = ingress_ports + egress_ports # Creates a list of all ports, ingress and egress
allports = list(set(allports)) # This list will be used later on when configuring filters
allports = sorted(allports)
####################################
#### Script Beginning Notes End ####
####################################
#########################
#### Main Code Start ####
#########################
##################################
#### Interfaces Section Start ####
##################################
### ###
# L2 Interface Section #
### ###
for line in lp_to_lpng:
if "net l2-interface" in line:
l2_if_id = global_variables.find_fnc( line, "set ", " " ) # Find interface ID
l2_if_admin_status = global_variables.find_fnc( line, "-ad ", " " ) # Find interface admin status
if l2_if_admin_status == "down": # If admin status is down, populates a dictionary with the following values: # ---->
# L2 interface ID as a key # ---->
# The admin status (always "down") as a value # ---->
# This is used later on to create another dictionary that maps the L3 interface ID and the admin status
l2_if_admin_status_dcn_key = "%s" % (l2_if_id)
global_variables.l2_if_admin_status_dcn.setdefault(l2_if_admin_status_dcn_key, [])
global_variables.l2_if_admin_status_dcn[l2_if_admin_status_dcn_key].append('%s' % (l2_if_admin_status))
### ###
# L3 Interface Section #
### ###
if "ip-interface" in line and "MNG" not in line:
if_ip = global_variables.find_fnc( line, "create ", " " ) # Finds L3 interface IP
global_variables.own_addresses_lst.append(if_ip) # Populates a list with the interface IPs as objects # ---->
# This is used later on when creating Smart NAT objects, to check for unsupported addresses
if_mask = global_variables.find_fnc( line, "%s " % (if_ip), " " ) # Finds L3 interface mask
l3_if_id = global_variables.find_fnc( line, "%s " % (if_mask), " " ) # Finds L3 interface ID
if_vlan = global_variables.find_fnc( line, "-v ", " " ) # Finds L3 interface VLAN
if_pa = global_variables.find_fnc( line, "-pac ", " " ) # Finds L3 interface peer IP
if_ip_to_peer_key = "%s" % (if_ip) # This dictionary is not in use
global_variables.if_ip_to_peer_dcn.setdefault(if_ip_to_peer_key, [])
global_variables.if_ip_to_peer_dcn[if_ip_to_peer_key].append('%s' % (if_pa))
if if_pa != 'error': # If interface peer IP exists, populates a dictionary with the following values: # ---->
# Interface IP as a key # ---->
# Interface peer IP as a value # ---->
# This is used later on to create SLB sync and HA configuration
if_ip_to_peer_no_error_key = "%s" % (if_ip)
global_variables.if_ip_to_peer_no_error_dcn.setdefault(if_ip_to_peer_no_error_key, [])
global_variables.if_ip_to_peer_no_error_dcn[if_ip_to_peer_no_error_key].append('%s' % (if_pa))
global_variables.own_addresses_lst.append(if_pa) # Populates a list with the interface peer IPs as objects # ---->
# This is used later on when creating Smart NAT objects, to check for unsupported addresses
global_variables.if_number += 1 # Used for Alteon L3 interface ID
global_variables.if_numbers_lst.append("%s" % (global_variables.if_number))
if l3_if_id in global_variables.l2_if_admin_status_dcn.keys(): # If admin status is down, populates a dictionary with the following values: # ---->
# L3 interface ID as a key # ---->
# The admin status (always "down") as a value # ---->
# This is used later on to configure the admin status of the L3 interface
l3_if_admin_status_dcn_key = "%s" % (global_variables.if_number)
global_variables.l3_if_admin_status_dcn.setdefault(l3_if_admin_status_dcn_key, [])
global_variables.l3_if_admin_status_dcn[l3_if_admin_status_dcn_key].append('%s' % (global_variables.l2_if_admin_status_dcn[l3_if_id][0]))
print >>output_file, "/c/l3/if %s" % (global_variables.if_number) # Starts printing the L3 interface commands
if str(global_variables.if_number) in global_variables.l3_if_admin_status_dcn.keys():
print >>output_file, " dis"
else:
print >>output_file, " ena"
print >>output_file, " addr %s" % (if_ip)
print >>output_file, " mask %s" % (if_mask)
if if_vlan != "error":
print >>output_file, " vlan %s" % (if_vlan)
if if_pa != "error":
print >>output_file, " peer %s" % (if_pa)
ipnet = ipaddress.ip_network('%s/%s' % (if_ip, if_mask), strict=False)
only_ipnet = str(ipnet).split('/')[0] # Finds the network address
last_host = [int(s) for s in str(list(ipaddress.ip_network('%s' % (ipnet)).hosts())[-1]).split('.')] # Finds the last host
ipbroad = '.'.join([str(s) for s in last_host[:-1] + [last_host[-1] + 1]]) # Finds the broadcast address
global_variables.own_addresses_lst.append(only_ipnet) # Populates a list with the network addresses as objects # ---->
# This is used later on when creating Smart NAT objects, to check for unsupported addresses
global_variables.own_addresses_lst.append(ipbroad) # Same as above, with broadcast addresses
subnet_to_new_ifs_key = "%s" % (ipnet) # Populates a dictionary with the following values: # ---->
# The network address as a key # ---->
# The L3 interface ID as a value # ---->
# This is used later on to map the static routes to the correct L3 interface IDs
global_variables.subnet_to_new_ifs_dcn.setdefault(subnet_to_new_ifs_key, [])
global_variables.subnet_to_new_ifs_dcn[subnet_to_new_ifs_key].append('%s' % (global_variables.if_number))
int_subnet_to_new_ifs_dcn = {k:int(v[0]) for k, v in global_variables.subnet_to_new_ifs_dcn.iteritems()} # Maps the dictionary values to integers
sorted_int_subnet_to_new_ifs_dcn = sorted(int_subnet_to_new_ifs_dcn.items(), key=operator.itemgetter(1)) # Converts the dictionary to a list of tuples and sorts it
subnet_to_mask_dcn_key = "%s" % (only_ipnet) # Populates a dictionary with the following values: # ---->
# The network address as a key # ---->
# The network mask as a value # ---->
# This is used later on to create a network class to allow traffic to local networks
global_variables.subnet_to_mask_dcn.setdefault(subnet_to_mask_dcn_key, [])
global_variables.subnet_to_mask_dcn[subnet_to_mask_dcn_key].append('%s' % (if_mask))
################################
#### Interfaces Section End ####
################################
###############################
#### Routing Section Start ####
###############################
for line in lp_to_lpng: # Loops over the LP configuration again for the routing table command
if "net route table create" in line and "0.0.0.0" not in line and "MNG" not in line:
print >>output_file, "/c/l3/route/ip4/"
break # Breaks the loop in order to print the routing table commmand only once
for line in lp_to_lpng: # Loops over the LP configuration again to continue with the code
if "net route table create" in line and "0.0.0.0" not in line and "MNG" not in line:
find_route_ips = re.findall( r'[0-9]+(?:\.[0-9]+){3}', line ) # Finds the route destination network, mask and next hop
for subnet, if_var in sorted_int_subnet_to_new_ifs_dcn:
if ipaddress.ip_address('%s' % (find_route_ips[2])) in ipaddress.ip_network('%s' % (subnet)): # Checks if the next hop belongs to one of the subnets in the dictionary
print >>output_file, " add %s %s %s %s" % (find_route_ips[0], find_route_ips[1], find_route_ips[2], if_var) # If it belongs, prints the static route with the correct L3 interface ID
for line in lp_to_lpng:
if "net route table create" in line and "0.0.0.0" in line and "MNG" not in line:
find_route_ips2 = re.findall( r'[0-9]+(?:\.[0-9]+){3}', line ) # Finds the default route next hop
print >>output_file, "/c/l3/gw 1" # Starts printing the GW
print >>output_file, " ena"
print >>output_file, " ipver v4"
print >>output_file, " addr %s" % (find_route_ips2[2])
break # Breaks the loop in order to print the gateway only once
#############################
#### Routing Section End ####
#############################
##########################
#### HA Section Start ####
##########################
global alt_ha_mode
for line in lp_to_lpng:
if "redundancy mode set" in line:
ha_mode = global_variables.find_fnc( line, "set ", " " )
if ha_mode == "VRRP": # If LP redundancy mode is "VRRP", Alteon HA flag is on with 1
alt_ha_mode = 1
break
elif ha_mode == "Proprietary": # If LP redundancy mode is "Proprietary", Alteon HA flag is on with 2
alt_ha_mode = 2
break
else: # If HA mode is set to disable, Alteon HA flag is off
alt_ha_mode = 0
else: # If the redundancy mode command is not in the configuration, Alteon HA flag is off
alt_ha_mode = 0
for line in lp_to_lpng:
### ###
# Create Shared IPs List #
### ###
## ##
# This is used to check if there are VRRP associated IP addresses that are not present in NAT/DNS VIP/Remote VIP #
# Addresses that are not present will be used as HA floating IP if HA is used #
## ##
if alt_ha_mode == 1:
if "smartnat dynamic-nat" in line:
find_snd_ip = re.findall( r'[0-9]+(?:\.[0-9]+){3}', line ) # Finds the SND addresses
if find_snd_ip[3] not in global_variables.lp_shared_ips_lst: # Populates a list with the SND addresses as objects
global_variables.lp_shared_ips_lst.append("%s" % (find_snd_ip[3]))
if "smartnat static-nat" in line:
find_sns_ip = re.findall( r'[0-9]+(?:\.[0-9]+){3}', line ) # Finds the SNS addresses
if find_sns_ip[3] == find_sns_ip[4]: # If both from and to SNS addresses are the same
if find_sns_ip[3] not in global_variables.lp_shared_ips_lst: # Populates a list with the SNS addresses as objects
global_variables.lp_shared_ips_lst.append("%s" % (find_sns_ip[3]))
else: # If from and to SNS addresses are different
sns_natip_range = global_variables.ipRange_fnc(find_sns_ip[3], find_sns_ip[4]) # Executes the "ipRange" function to find all IPs
for sns in sns_natip_range: # Populates a list with the SNS addresses as objects
if sns not in global_variables.lp_shared_ips_lst:
global_variables.lp_shared_ips_lst.append("%s" % (sns))
if "smartnat static-pat" in line:
find_snp_ip = re.findall( r'[0-9]+(?:\.[0-9]+){3}', line ) # Finds the SNP addresses
if find_snp_ip[0] not in global_variables.lp_shared_ips_lst: # Populates a list with the SNP addresses as objects
global_variables.lp_shared_ips_lst.append("%s" % (find_snp_ip[0]))
if "lp dns virtual-ip create" in line:
dns_vip = re.findall( r'[0-9]+(?:\.[0-9]+){3}', line ) # Finds the DNS VIPs
if dns_vip[0] not in global_variables.lp_shared_ips_lst: # Populates a list with the DNS VIPs as objects
global_variables.lp_shared_ips_lst.append("%s" % (dns_vip[0]))
if "lp remote-vip create" in line:
find_float_ip = re.findall( r'[0-9]+(?:\.[0-9]+){3}', line ) # Finds the remote VIPs
if find_float_ip[0] not in global_variables.lp_shared_ips_lst: # Populates a list with the remove VIPs as objects
global_variables.lp_shared_ips_lst.append("%s" % (find_float_ip[0]))
### ###
# Global HA Section #
### ###
for line in lp_to_lpng:
if "redundancy mode set" in line:
ha_mode = global_variables.find_fnc( line, "set ", " " )
if ha_mode == "VRRP" or ha_mode == "Proprietary": # If LP redundancy mode is VRRP or Proprietary
print >>output_file, "/c/l3/hamode switch" # Starts printing the global HA configuration
print >>output_file, "/c/l3/ha/switch"
print >>output_file, " srvpbkp dis"
print >>output_file, " filtpbkp dis"
print >>output_file, " def 1"
print >>output_file, "/c/l3/ha/switch/trigger/ifs"
for subnet, if_var in sorted_int_subnet_to_new_ifs_dcn: # Prints all L3 interfaces as HA triggers
print >>output_file, " add %s" % (if_var)
### ###
# HA Floating IPs Section #
### ###
if alt_ha_mode == 1 or alt_ha_mode == 2:
if "lp remote-vip create" in line: # Configures LP remote-vips as Alteon HA floating IPs
find_float_ip = re.findall( r'[0-9]+(?:\.[0-9]+){3}', line ) # Finds the remove VIP
global_variables.float_id += 1
print >>output_file, "/c/l3/ha/floatip %s" % (global_variables.float_id) # Starts printing the HA floating IP
print >>output_file, " ena"
print >>output_file, " ipver v4"
print >>output_file, " addr %s" % (find_float_ip[0])
for subnet, if_var in sorted_int_subnet_to_new_ifs_dcn:
if ipaddress.ip_address('%s' % (find_float_ip[0])) in ipaddress.ip_network('%s' % (subnet)): # Checks if the floating IP belongs to one of the subnets in the dictionary
print >>output_file, " if %s" % (if_var) # If it belongs, prints the correct L3 interface ID
if "redundancy vrrp associated-ip" in line and alt_ha_mode == 1: # Configures standalone LP assoicated IPs as floating IPs
find_associated_ip = re.findall( r'[0-9]+(?:\.[0-9]+){3}', line ) # Finds the associated IP
if find_associated_ip[0] not in global_variables.lp_shared_ips_lst: # If the associated IP is not in the shared IPs list
for subnet, if_var in sorted_int_subnet_to_new_ifs_dcn:
if ipaddress.ip_address('%s' % (find_associated_ip[0])) in ipaddress.ip_network('%s' % (subnet)): # Checks if the associated IP belongs to one of the subnets in the dictionary and if it is, prints the correct L3 interface ID
global_variables.float_id += 1
print >>output_file, "/c/l3/ha/floatip %s" % (global_variables.float_id) # Starts printing the floating IP
print >>output_file, " ena"
print >>output_file, " ipver v4"
print >>output_file, " addr %s" % (find_associated_ip[0])
print >>output_file, " if %s" % (if_var)
### ###
# SLB Sync Section #
### ###
for line in lp_to_lpng:
if (alt_ha_mode == 1 or alt_ha_mode == 2) and len(global_variables.if_ip_to_peer_no_error_dcn) > 0: # If peer IP addresses are present in the LP configuration
print >>output_file, "/c/slb/sync" # Starts printing the SLB sync configuration
print >>output_file, " prios d"
print >>output_file, " pips e"
print >>output_file, " certs e"
print >>output_file, " state e"
print >>output_file, " if e"
print >>output_file, " gw e"
print >>output_file, " ddstore ena"
print >>output_file, "/c/slb/sync/peer 1"
print >>output_file, " ena"
for pac in global_variables.if_ip_to_peer_no_error_dcn.values():
print >>output_file, " addr %s" % (pac[0])
break
print >>output_file, "/c/slb/sync/ucast"
print >>output_file, " ena"
print >>output_file, " primif %s" % (global_variables.if_numbers_lst[0])
if len(global_variables.if_numbers_lst) > 1:
print >>output_file, " secif %s" % (global_variables.if_numbers_lst[1])
break
########################
#### HA Section End ####
########################
#########################################
#### Preliminary Farms Section Start ####
#########################################
### ###
# Finds "NAT Mode Disabled" Farms #
### ###
## ##
# This is used to find the farms that are "NAT Mode Disabled" #
# Later on, the objects created here will be used to configure the real servers with "PIP Mode NoNAT" #
## ##
for line in lp_to_lpng:
if "farms table setCreate" in line:
farm_name_nonat = global_variables.find_fnc( line, ' setCreate "', '"' ) # Finds the farm name
if farm_name_nonat == 'error': # If there are no double quotes in the farm name
farm_name_nonat = global_variables.find_fnc( line, ' setCreate ', ' ' ) # Finds the farm name again
nat_mode = global_variables.find_fnc( line, " -nm ", " " ) # Finds the NAT mode
if nat_mode == 'error': # If NAT mode is set to "Disable", adds the farm name to a list
global_variables.farms_nonat_lst.append("%s" % (farm_name_nonat))
### ###
# Finds DNS Rules with "NAT Mode Disabled" Farms #
### ###
## ##
# This is used to create specific regular groups for DNS resolution #
# This is in case that the real servers are part of NAT and NoNAT groups #
## ##
global dns_ttl
for line in lp_to_lpng:
if "name-to-ip" in line:
dns_farm_name_nonat = global_variables.find_fnc( line, ' -fn "', '"' ) # Finds the farm name associated with the DNS rule
if dns_farm_name_nonat == 'error': # If there are no double quotes in the farm name
dns_farm_name_nonat = global_variables.find_fnc( line, ' -fn ', ' ' ) # Finds the farm name associated with the DNS rule again
if dns_farm_name_nonat != 'error' and dns_farm_name_nonat in global_variables.farms_nonat_lst and dns_farm_name_nonat not in global_variables.dns_farms_nonat_lst: # If the farm is a No NAT farm and it's not already in the DNS No NAT list, adds it to the list
global_variables.dns_farms_nonat_lst.append("%s" % (dns_farm_name_nonat))
### ###
# Finds Farms - Farm Flow Section #
### ###
## ##
# This is the section used to find the farm flows and farms associations #
## ##
if "farms-flow-table" in line:
farm_flow = global_variables.find_fnc( line, 'setCreate "', '"' ) # Finds the farm flow
if farm_flow == 'error': # If there are no double quotes in the farm flow name
farm_flow = global_variables.find_fnc( line, "setCreate ", " " ) # Finds the farm flow again
farm_in_fc = global_variables.find_fnc( line, '%s" "' % (farm_flow), '" -id' ) # Finds the farm associated with the farm flow
if farm_in_fc == 'error': # if there are no double quotes in the farm flow name and in the farm name
farm_in_fc = global_variables.find_fnc( line, '%s "' % (farm_flow), '" -id' ) # Finds the farm associated with the farm flow again
if farm_in_fc == 'error': # If there are no double quotes in the farm name
farm_in_fc = global_variables.find_fnc( line, '%s" ' % (farm_flow), " -id" ) # Finds the farm associated with the farm flow again
if farm_in_fc == 'error': # If there are no double quotes in the farm flow name
farm_in_fc = global_variables.find_fnc( line, ' %s ' % (farm_flow), " -id" ) # Finds the farm associated with the farm flow again
for unsupported_char, supported_char in global_variables.special_characters_dcn.iteritems():
farm_in_fc = farm_in_fc.replace ('%s' % (unsupported_char), "%s" % (supported_char))
if farm_in_fc != 'error':
farm_flow_to_farm_dcn_key = "%s" % (farm_flow)
global_variables.farm_flow_to_farm_dcn.setdefault(farm_flow_to_farm_dcn_key, [])
global_variables.farm_flow_to_farm_dcn[farm_flow_to_farm_dcn_key].append('%s' % (farm_in_fc))
#######################################
#### Preliminary Farms Section End ####
#######################################
###########################################
#### DNS Global Settings Section Start ####
###########################################
### ###
# Finds DNS TTL and RR #
### ###
## ##
# This section is used to find the DNS TTL and RR #
# These parameters will later on be used on the GSLB rules #
## ##
if "dns response-ttl" in line: # Finds the global DNS TTL
dns_ttl = global_variables.find_fnc( line, "set ", " " )
break
elif "dns response-ttl" not in line: # If no DNS TTL command, default TTL (0)
dns_ttl = '0'
global dns_rr
for line in lp_to_lpng:
if "dns two-records" in line: # Finds the global DNS RR
dns_rr = global_variables.find_fnc( line, "set ", " " )
if dns_rr == 'disable': # If disable, RR = 1
dns_rr = '1'
else: # If enabled, RR = 2
dns_rr = '2'
break
elif "dns two-records" not in line: # If no DNS RR command, default RR (1)
dns_rr = '1'
#########################################
#### DNS Global Settings Section End ####
#########################################
#################################################
#### Proximity Global Settings Section Start ####
#################################################
### ###
# Finds proximity settings #
### ###
## ##
# This section is used to find the proximity settings #
# These parameters will later on be used on GSLB rules and filters #
## ##
global proximity_mode
for line in lp_to_lpng:
if "lp proximity mode" in line: # Finds the proximity mode
proximity_mode = global_variables.find_fnc( line, 'set "', '"' )
if proximity_mode == 'Full Proximity Inbound' or proximity_mode == 'Full Proximity Both':
current_time = datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S.%f')
print >>migration_errors, '%s #Unsupported_feature: the following command is partly supported by LP NG:' % (current_time)
print >>migration_errors, " Command: %s" % (line)
print >>migration_errors, " Details: LP NG only supports outbound proximity with Smart NAT, inbound is not supported."
print >>migration_errors, ' Therefore, on the GSLB rules, "gmetric proximity" has not been configured.'
break
elif "lp proximity mode" not in line: # If no proximity mode command, use default (no proximity)
proximity_mode = "No Proximity"
if proximity_mode != "No Proximity": # If proximity not disabled, find other proximity settings
global proximity_mask
for line in lp_to_lpng:
if "lp proximity subnet-mask" in line: # Finds the proximity mask
proximity_mask = re.findall( r'[0-9]+(?:\.[0-9]+){3}', line )
proximity_mask = proximity_mask[0]
break
else:
proximity_mask = "255.255.255.0"
global proximity_main_dns
for line in lp_to_lpng:
if "lp proximity main-dns-address" in line: # Dinds the proximity main DNS server
proximity_main_dns = re.findall( r'[0-9]+(?:\.[0-9]+){3}', line )
proximity_main_dns = proximity_main_dns[0]
break
else:
proximity_main_dns = "0.0.0.0"
global proximity_backup_dns
for line in lp_to_lpng:
if "lp proximity backup-dns-address" in line: # Finds the proximity backup DNS server
proximity_backup_dns = re.findall( r'[0-9]+(?:\.[0-9]+){3}', line )
proximity_backup_dns = proximity_backup_dns[0]
break
else:
proximity_backup_dns = "0.0.0.0"
global proximity_aging
for line in lp_to_lpng:
if "lp proximity aging-period" in line: # Finds the proximity aging
proximity_aging = [int(s) for s in line.split() if s.isdigit()]
proximity_aging = proximity_aging[0]
break
else:
proximity_aging = 2800
global proximity_retries
for line in lp_to_lpng:
if "lp proximity check-retries" in line: # Finds the proximity checks retries
proximity_retries = [int(s) for s in line.split() if s.isdigit()]
proximity_retries = proximity_retries[0]
break
else:
proximity_retries = 2
global proximity_interval
for line in lp_to_lpng:
if "lp proximity check-interval" in line: # Finds the proximity checks interval
proximity_interval = [int(s) for s in line.split() if s.isdigit()]
proximity_interval = proximity_interval[0]
break
else:
proximity_interval = 5
###############################################
#### Proximity Global Settings Section End ####
###############################################
######################################
#### Router Servers Section Start ####
######################################
### ###
# Finds Router Servers - Main Section #
### ###
## ##
# This is the main section used to find the router servers configuration #
# In this section, we only find the router servers, we don't print them #
## ##
for line in lp_to_lpng:
if "router-servers" in line:
wl_farm_name = global_variables.find_fnc( line, 'setCreate "', '"' ) # Finds the router server's associated farm
if wl_farm_name == 'error': # If no double quotes in the farm name
wl_farm_name = global_variables.find_fnc( line, "setCreate ", " " ) # Finds the router server's associated farm again
new_wl_farm_name = wl_farm_name
for unsupported_char, supported_char in global_variables.special_characters_dcn.iteritems():
new_wl_farm_name = new_wl_farm_name.replace ('%s' % (unsupported_char), "%s" % (supported_char))
wl_name = global_variables.find_fnc( line, '%s" "' % (wl_farm_name), '"' ) # Finds the router server name
if wl_name == 'error': # If there are no double quotes in the farm name and router server name
wl_name = global_variables.find_fnc( line, '%s "' % (wl_farm_name), '"') # Finds the router server name again
if wl_name == 'error': # If there are no double quotes in the router server name
wl_name = global_variables.find_fnc( line, '%s" ' % (wl_farm_name), ' ') # Finds the router server name again
if wl_name == 'error': # If there are no double quotes in the farm name
wl_name = global_variables.find_fnc( line, '%s ' % (wl_farm_name), ' ') # Finds the router server name again
new_wl_name = wl_name
for unsupported_char, supported_char in global_variables.special_characters_dcn.iteritems():
new_wl_name = new_wl_name.replace ('%s' % (unsupported_char), "%s" % (supported_char))
find_wl_ip = re.findall( r'[0-9]+(?:\.[0-9]+){3}', line ) # Finds the router server IP
wl_ip = find_wl_ip[0]
if wl_ip != 'error': # Populates a dictionary with the following values: # ---->
# Router server IP as a key # ---->
# Router server name as a value # ---->
# This is used later on to check if a router server IP has different names
duplicate_wls_dcn_key = "%s" % (wl_ip)
global_variables.duplicate_wls_dcn.setdefault(duplicate_wls_dcn_key, [])
global_variables.duplicate_wls_dcn[duplicate_wls_dcn_key].append('%s' % (new_wl_name))
if wl_ip not in global_variables.own_addresses_lst:
global_variables.own_addresses_lst.append(wl_ip)
if wl_ip != 'error' and wl_farm_name not in global_variables.farms_nonat_lst: # If the farm has NAT mode enabled, populates a dictionary with the following: # ---->
# Farm name with NAT mode enable as a key # ---->
# A list of its associated router servers as values # ---->
# This is used later on to create the groups
group_to_routers_dcn_key = "%s" % (new_wl_farm_name)
global_variables.group_to_routers_dcn.setdefault(group_to_routers_dcn_key, [])
global_variables.group_to_routers_dcn[group_to_routers_dcn_key].append('%s' % (wl_ip))
elif wl_ip != 'error' and wl_farm_name in global_variables.farms_nonat_lst: # If the farm has NAT mode disabled, populates a dictionary with the following: # ---->
# Farm name with NAT mode disable as a key # ---->
# A list of its associated router servers as values # ---->
# This is used later on to create the No NAT groups
group_to_routers_nonat_dcn_key = "%s" % (new_wl_farm_name)
global_variables.group_to_routers_nonat_dcn.setdefault(group_to_routers_nonat_dcn_key, [])
global_variables.group_to_routers_nonat_dcn[group_to_routers_nonat_dcn_key].append('%s' % (wl_ip))
if wl_ip != 'error': # Populates a dictionary of all group to routers for all types of farms
group_to_routers_all_dcn_key = "%s" % (new_wl_farm_name)
global_variables.group_to_routers_all_dcn.setdefault(group_to_routers_all_dcn_key, [])
global_variables.group_to_routers_all_dcn[group_to_routers_all_dcn_key].append('%s' % (wl_ip))
operation_mode = global_variables.find_fnc( line, ' -om ' , ' ' ) # Finds the router server operation mode (regular or backup)
if operation_mode != 'error': # Populates a dictionary with the following values: # ---->
# Farm name as a key # ---->
# A list with the operation mode and router server IP as a value # ---->
# This is used later on to map IP to name and configure the real server in mode backup
om_key = "%s" % (new_wl_farm_name)
global_variables.operation_mode_dcn.setdefault(om_key, [])
global_variables.operation_mode_dcn[om_key].append('%s' % (operation_mode))
global_variables.operation_mode_dcn[om_key].append('%s' % (wl_ip))
bck_dcn_key = "%s" % (new_wl_farm_name) # Populates a dictionary with the following values: # ---->
# Farm name as a key # ---->
# The router server IP as a value # ---->
# This is used later on when creating the backup groups
global_variables.bck_dcn.setdefault(bck_dcn_key, [])
global_variables.bck_dcn[bck_dcn_key].append('%s' % (wl_ip))
admin_status = global_variables.find_fnc( line, ' -as ' , ' ' ) # Finds the rotuer server admin status
if admin_status != 'error': # Populates a dictionary with the following values: # ---->
# Farm name as a key # ---->
# A list with the admin status and router server IP as a value # ---->
# This is used later on to map IP to name and disable the real server in the relevant group
as_key = "%s" % (new_wl_farm_name)
global_variables.admin_status_dcn.setdefault(as_key, [])
global_variables.admin_status_dcn[as_key].append('%s' % (admin_status))
global_variables.admin_status_dcn[as_key].append('%s' % (wl_ip))
####################################
#### Router Servers Section End ####
####################################
########################################
#### Main Finds Farms Section Start ####
########################################
### ###
# Finds Farms - Main Section #
### ###
## ##
# This is the main section used to find the farms and their configuration #
# In this section, we only find the farms, we don't print them #
## ##
if "farms table setCreate" in line:
# print(line)
farm_name = global_variables.find_fnc( line, 'setCreate "', '"' ) # Finds the farm name
if farm_name == 'error': # If no double quotes in farm name
farm_name = global_variables.find_fnc( line, "setCreate ", " " ) # Finds the farm name again
new_farm_name = farm_name
for unsupported_char, supported_char in global_variables.special_characters_dcn.iteritems():
new_farm_name = new_farm_name.replace ('%s' % (unsupported_char), "%s" % (supported_char))
if new_farm_name not in global_variables.default_group_lst:
global_variables.default_group_lst.append(new_farm_name)
if new_farm_name not in global_variables.all_farms_lst: # Populates a list of all farms
global_variables.all_farms_lst.append(new_farm_name)
dispatch_method = global_variables.find_fnc( line, '-dm "', '"' ) # Finds the farm's dispatch method
if dispatch_method == "Least Amount of Traffic": # Each statement below maps the dispatch method to Alteon metric
metric = "bandwidth"
elif dispatch_method in ["Least Amount of Local Traffic", "Least Amount of Bytes", "Least Number of Bytes", "Least Amount of Local Bytes"]:
metric = "bandwidth"
elif dispatch_method == "Fewest Number of Users":
metric = "leastconns"
elif dispatch_method == "Fewest Number of Local Users":
metric = "svcleast"
elif dispatch_method in ["Source IP Hashing", "Destination IP Hashing", "Layer-3 Hashing"]:
metric = "phash 255.255.255.255"
elif dispatch_method == "Response Time":
metric = "response"
elif dispatch_method == "error": # If no double quotes in the dispatch method
dispatch_method = global_variables.find_fnc( line, '-dm ', ' ' ) # Finds the dispatch method again (can be only "Hashing")
if dispatch_method == "Hashing":
metric = "phash 255.255.255.255"
else: # If no dispatch method found, use the LP default ("Cyclic", in Alteon, "roundrobin")
metric = "roundrobin"
aging_time = global_variables.find_fnc( line, '-cl ', ' ' ) # Finds the farm's client aging time
if aging_time == 'error': # If nothing found, use the LP default (60 seconds) # ---->
# Converting to minutes, this is 1 minute. # ---->
# We add 1 since Alteon doesn't support odd minutes # ----->
# We add 2 for the Alteon's slowstart algorithm, we end up with 4 minutes
new_aging_time = 4
else: # if client aging time is found - non default
new_aging_time = int(math.ceil(float(aging_time)/60)) # We convert to minutes, then float and round the number
if (new_aging_time % 2 == 0):
new_aging_time = new_aging_time
if new_aging_time == 0: # If we end up with 0, we use 4
new_aging_time = 4
else: # Else, we add 2 minutes for the Alteon's slowstart algorithm
new_aging_time += 2
else: # If number is odd, we add 1 to use even number, then add 2 for the Alteon's slowstart algorithm
new_aging_time = int(new_aging_time)+1
new_aging_time += 2
farm_parameters_dcn_key = "%s" % (new_farm_name) # Populates a dictionary with the following values: # ---->
# The new farm name as a key # ---->
# The farm's metric as a value # ---->
# This is used later on to configure the metric when creating the group # ---->
# This is also used later on to configure the gmetric when creating the GSLB rule
global_variables.farm_parameters_dcn.setdefault(farm_parameters_dcn_key, [])
global_variables.farm_parameters_dcn[farm_parameters_dcn_key].append('%s' % (metric))
#global_variables.farm_parameters_dcn[farm_parameters_dcn_key].append('%s' % (aging_time))
orig_farm_parameters_dcn_key = "%s" % (farm_name) # Populates a dictionary with the following values: # ---->
# The original farm name as a key # ---->
# The farm's original dispatch method as a value # ---->
# This is used later on to generate a log when the dispatch method can't be used as gmetric
global_variables.orig_farm_parameters_dcn.setdefault(orig_farm_parameters_dcn_key, [])
global_variables.orig_farm_parameters_dcn[orig_farm_parameters_dcn_key].append('%s' % (dispatch_method))
orig_dm_dcn_key = "%s" % (new_farm_name) # Populates a dictionary with the following values: # ---->
# The farm name as a key # ---->
# The original dispatch method as a value # ---->
# This is used later on to configure the pbind/thash on filters if needed
global_variables.orig_dm_dcn.setdefault(orig_dm_dcn_key, [])
global_variables.orig_dm_dcn[orig_dm_dcn_key].append('%s' % (dispatch_method))
global_variables.farms_aging_times_lst.append("%s" % (new_aging_time)) # Populates a list with the new client aging times as objects # ---->
# This is used later on to compare with application aging times
if "client-table application-aging-time" in line:
app_aging_time = global_variables.find_fnc( line, ' -at ', ' ' ) # Finds the application aging time
# We use the same calculation as with the farm client aging time
if app_aging_time == 'error':
new_app_aging_time = 4
else:
new_app_aging_time = int(math.ceil(float(app_aging_time)/60))
if (new_app_aging_time % 2 == 0):
new_app_aging_time = new_app_aging_time
if new_app_aging_time == 0:
new_app_aging_time = 4
else:
new_app_aging_time += 2
else:
new_app_aging_time = int(new_app_aging_time)+1
new_app_aging_time += 2
global_variables.app_aging_times_lst.append("%s" % (new_app_aging_time)) # Populates a list with the new app aging times as objects # ---->
# This is used later on to compare with farm client aging times
farms_aging_times_lst = map(int, global_variables.farms_aging_times_lst)
app_aging_times_lst = map(int, global_variables.app_aging_times_lst)
for line in lp_to_lpng:
farms_max_aging_time = max(farms_aging_times_lst)
if len(app_aging_times_lst) > 0:
app_max_aging_time = max(app_aging_times_lst)
break
else:
app_max_aging_time = 0
global max_aging_time
max_aging_time = max(farms_max_aging_time, app_max_aging_time) # Finds the maximum aging time among the client and app aging times
# This is done since Alteon doesn't support tmout on LLB filter
# and doesn't support app aging time
# Therefore, we use the highest aging time on all real servers
#####################################
#### Main Find Farms Section End ####
#####################################
#############################################
#### Real Servers Creation Section Start ####
#############################################
### ###
# Real Servers Creation - Main Section #
### ###
## ##
# This is the main section used to create the real servers configuraiton #
# In this section, we use the dictionaries populated in the find section #
# #
# Rules: #
# #
# 1.) We check if the router server IP has multiple names #
# If it has, we ask the user to choose one of the names or a new name #
# If it has a single name, we use it and we don't ask the user #
# 2.) We always disable real servers in the group level #
# 3.) When creating "No NAT" groups, we check the following: #
# a. If the real server belongs to another regular group: #
# We create it again with the same name with "_NAT" appended #
# PIP mode will be "nonat" #
# b. If the real server only belongs to a "No NAT group": #
# We create it with the chosen name, we do not append "_NAT" #
# PIP mode will be "nonat" #
# c. If a DNS rule uses a "No NAT" farm, and: #
# Its real servers belong also to a regular farm #
# This means that the real servers have "_NAT" appended, therefore: #
# In this case, we create a special group for GSLB #
# The group will have the regular real server names #
# It'll only be used in GSLB rules #
# This behavior will be changed soon as it doesn't conform with LP #
## ##
### ###
# WAN Link Name Selection Section #
### ###
## ##
# This is a section used to prompt the user to select names for the WAN links #
# This section will be shown to the user only if there is at least one router server with multiuple names #
## ##
#for orig_wl_ip, orig_wl_name in global_variables.duplicate_wls_dcn.iteritems(): # Loops over the dictionary that contains the IP to real names mapping
#wl_names_equal_status = global_variables.all_same(orig_wl_name) # For each real server IP, we check if all of its values are the same
#if wl_names_equal_status == False: # If they're not the same, we prompt the user with the WAN link selection screen
equal_status = 0
for orig_wl_ip, orig_wl_name in global_variables.duplicate_wls_dcn.iteritems(): # Loops over the dictionary that contains the IP to real names mapping
wl_names_equal_status = global_variables.all_same(orig_wl_name) # For each real server IP, we check if all of its values are the same
if wl_names_equal_status == False: # If they're not the same, we prompt the user with the WAN link selection screen
equal_status = 1
uniq_unequal_wl_names = list(set(orig_wl_name)) # Remove duplicate unequal names
unequal_wl_names = ', '.join(uniq_unequal_wl_names) # Creates a visible list of unequal names, comma separated
global_variables.isp_id += 1 # ISP ID for showing the user ISPs with multiple names
unequal_wl_names_to_html_dcn = {}
unequal_wl_names_to_html_dcn['id'] = '%s' % (global_variables.isp_id)
unequal_wl_names_to_html_dcn['ip'] = '%s' % (orig_wl_ip)
#unequal_wl_names_to_html_dcn['wl_names'] = '%s' % (uniq_unequal_wl_names)
for a in uniq_unequal_wl_names:
unequal_wl_names_to_html_dcn.setdefault("wl_names", []).append(a)
global_variables.unequal_wls_lst.append(unequal_wl_names_to_html_dcn)
if equal_status == 1:
return render_template('isps.html', title='ISPs', unequal_wls_lst=global_variables.unequal_wls_lst)
else:
return redirect('/page3')
@app.route('/page2', methods=['GET','POST'])
@app.route('/page3', methods=['GET','POST'])
def page2():
def print_adv_hc_fnc(hc_name, hc_destIP, hc_dname):
'''Prints the script's predefined advanced HCs for WLs.
Takes the HC name, HC destination IP and HC domain name as arguments.
'''
print >>output_file, "/c/slb/advhc/health %s DNS" % (hc_name)
print >>output_file, " dport 53"
print >>output_file, " dest 4 %s" % (hc_destIP)
print >>output_file, " transp enabled"
print >>output_file, " retry 2"
print >>output_file, " timeout 4"
print >>output_file, " downtime 5"
print >>output_file, "/c/slb/advhc/health %s DNS/dns" % (hc_name)
print >>output_file, ' domain "%s"' % (hc_dname)
def print_real_hc_fnc(hc_type, hc_real_name, hc_rip):
'''Prints the WL direct HC and the LOGEXP that binds it with the advanced HCs.
Takes the HC type (predefined or user-defined), WL name and WL IP as arguments.
'''
if hc_type == "Y" or hc_type == "y" or hc_type == "Setup":
print >>output_file, "/c/slb/advhc/health %s_ICMP ICMP" % (hc_real_name) # Prints the direct HC
print >>output_file, " dest 4 %s" % (hc_rip)
print >>output_file, " retry 2"
print >>output_file, " timeout 4"
print >>output_file, " downtime 5"
print >>output_file, "/c/slb/advhc/health %s_HCs LOGEXP" % (hc_real_name) # Prints the LOGEXP that binds the predefined HCs and the direct
if hc_type == "Y" or hc_type == "y":
print >>output_file, ' logexp "(%s_ICMP)&(Yahoo_DNS1|CNN_DNS1|Yahoo_DNS2|CNN_DNS2)"' % (hc_real_name)
elif hc_type == "Setup":
print >>output_file, ' logexp "(%s_ICMP)&(%s_DNS1|%s_DNS1|%s_DNS2|%s_DNS2)"' % (hc_real_name, hc_fqdn1, hc_fqdn2, hc_fqdn1, hc_fqdn2)
def print_real_fnc(real_type, real_name, rip, max_aging_time):
'''Prints the WL real server.
Takes the real type, WL name, WL IP and max aging time as arguments.
Real server types defined in this script are:
1.) Regular.
2.) nonat_not_in_regular (No NAT that doesn't belong also to a regular farm).
3.) nonat_no_regular (No NAT while there are no regular farms in the configuration).
4.) nonat_in_regular (NO NAT that also belongs to a regular farm).
'''
if real_type == "nonat_in_regular": # If the real server is no NAT but there also a regular server in another farm
print >>output_file, "/c/slb/real %s_NoNAT" % (real_name) # We print the name and append "_NoNAT"
else: # If it's a regular server, or "no NAT" that is not also regular, or "no NAT" while there are no regular servers
print >>output_file, "/c/slb/real %s" % (real_name) # We print the regular name
print >>output_file, " ena"
print >>output_file, " ipver v4"
print >>output_file, " rip %s" % (rip)
print >>output_file, " type wanlink"
print >>output_file, " maxcon 0 logical"
print >>output_file, " tmout %s" % (max_aging_time)
if hc_note == "Y" or hc_note == "y" or hc_note == "Setup": # Binds the LOGEXP HC if the user chose the predefined HC or the HC setup
print >>output_file, " health WLs_HCs"
else: # Uses "health icmp" if the user chose to not configure HCs
print >>output_file, " health icmp"
if real_type == "nonat_in_regular": # Mode "nonat" configuration for "no NAT" real servers
print >>output_file, "/c/slb/real %s_NoNAT/adv/pip" % (real_name)
print >>output_file, " mode nonat"
elif real_type == "nonat_not_in_regular" or real_type == "nonat_no_regular":
print >>output_file, "/c/slb/real %s/adv/pip" % (real_name)
print >>output_file, " mode nonat"
def add_servers_to_regular_group_fnc(wl_ip, wl_name):
'''Adds regular WL servers to a WL group.
Takes WL IP and WL name as arguments.
'''
if server == wl_ip: # We validate that the IP in the regular farm is the same as the IP in the user chosen WL names dict
if farm in global_variables.gbck_dcn.keys(): # If the farm has a backup group
if farm not in global_variables.back_added_lst: # Checking if we didn't yet add the backup group, then add it
print >>output_file, " backup g%s" % (global_variables.gbck_dcn[farm][0])
global_variables.back_added_lst.append(farm) # Add the farm to the list so we know a backup group was already added to it
if server not in global_variables.operation_mode_dcn[farm]: # Adding other servers if they're not backup
print >>output_file, " add %s" % (wl_name)
if farm in global_variables.admin_status_dcn.keys(): # Disables the real server if needed
if server in global_variables.admin_status_dcn[farm]:
print >>output_file, " dis %s" % (wl_name)
elif farm in global_variables.operation_mode_dcn.keys() and len(global_variables.operation_mode_dcn[farm]) == 2: # If the farm has one backup server
if server in global_variables.operation_mode_dcn[farm]: # We check if the server is a backup server and if so, add it as backup
print >>output_file, " backup r%s" % (wl_name)
if farm in global_variables.admin_status_dcn.keys(): # Disables the real server if needed
if server in global_variables.admin_status_dcn[farm]:
print >>output_file, " dis %s" % (wl_name)
else: # If this server is not a backup server, we add it regularly
print >>output_file, " add %s" % (wl_name)
if farm in global_variables.admin_status_dcn.keys(): # Disables the real server if needed
if server in global_variables.admin_status_dcn[farm]:
print >>output_file, " dis %s" % (wl_name)
elif farm not in global_variables.operation_mode_dcn.keys() and farm not in global_variables.gbck_dcn.keys(): # If the farm has no backup server, we add the real server regularly
print >>output_file, " add %s" % (wl_name)
if farm in global_variables.admin_status_dcn.keys(): # Disables the real server if needed
if server in global_variables.admin_status_dcn[farm]:
print >>output_file, " dis %s" % (wl_name)
def add_servers_to_nonat_group_fnc(nonat_wl_ip, nonat_wl_name):
'''Adds No NAT WL servers to a WL group.
Takes WL IP and WL name as arguments.
'''
if server == nonat_wl_ip: # We validate that the IP in the No NAT farm is the same as the IP in the user chosen WL names dict
if farm in global_variables.gbck_dcn.keys(): # If the farm has a backup group
if farm not in global_variables.back_added_lst: # Checking if we didn't yet add the backup group, then add it
print >>output_file, " backup g%s" % (global_variables.gbck_dcn[farm][0])
global_variables.back_added_lst.append(farm) # Add the farm to the list so we know a backup group was already added to it
if server not in global_variables.operation_mode_dcn[farm]: # Adding other servers if they're not backup
if len(global_variables.group_to_routers_dcn) > 0: # If there are regular farms
if server in group_to_routers_values: # if the server is also in a regular farm
print >>output_file, " add %s_NoNAT" % (nonat_wl_name[0]) # Adds the server and appends "_NoNAT"
else: # if the server is not in a regular farm
print >>output_file, " add %s" % (nonat_wl_name[0]) # Adds the server with the user chosen name
else: # If there are no regular farms
print >>output_file, " add %s" % (nonat_wl_name[0]) # Adds the server with the user chosen name
if farm in global_variables.admin_status_dcn.keys(): # If the farm is in the admin state dictionary keys
if server in global_variables.admin_status_dcn[farm]: # Validates if the current real server is disabled
if len(global_variables.group_to_routers_dcn) > 0: # If there are regular farms
if server in group_to_routers_values: # If the server is also in a regular farm
print >>output_file, " dis %s_NoNAT" % (nonat_wl_name[0]) # Disables the server and appends "_NoNAT"
else: # If the server is not in a regular farm
print >>output_file, " dis %s" % (nonat_wl_name[0]) # Disables the server with the user chosen name
else: # If there are no regular farms
print >>output_file, " dis %s" % (nonat_wl_name[0]) # Disables the server with the user chosen name
elif farm in global_variables.operation_mode_dcn.keys() and len(global_variables.operation_mode_dcn[farm]) == 2: # If the farm has one backup server
if server in global_variables.operation_mode_dcn[farm]: # We check if the server is a backup server
if len(global_variables.group_to_routers_dcn) > 0: # If there are regular farms
if server in group_to_routers_values: # If the server is also in a regular farm
print >>output_file, " backup r%s_NoNAT" % (nonat_wl_name[0]) # Adds the server as a backup and appends "_NoNAT"
else: # If the server is not in a regular farm
print >>output_file, " backup r%s" % (nonat_wl_name[0]) # Adds the server as a backup with the user chosen name
else: # If there are no regular farms
print >>output_file, " backup r%s" % (nonat_wl_name[0]) # Adds the server as a backup with the user chosen name
if farm in global_variables.admin_status_dcn.keys(): # If the farm is in the admin state dictionary keys
if server in global_variables.admin_status_dcn[farm]: # Validates if the current real server is disabled
if len(global_variables.group_to_routers_dcn) > 0: # If there are regular farms
if server in group_to_routers_values: # If the server is also in a regular farm
print >>output_file, " dis %s_NoNAT" % (nonat_wl_name[0]) # Disables the server and appends "_NoNAT"
else: # If the server is not in a regular farm
print >>output_file, " dis %s" % (nonat_wl_name[0]) # Disables the server with the user chosen name
else: # If there are no regular farms
print >>output_file, " dis %s" % (nonat_wl_name[0]) # Disables the server with the user chosen name
else: # If farm has backup at least one backup server, but this specific server is not a backup server
if len(global_variables.group_to_routers_dcn) > 0: # if there are regular farms
if server in group_to_routers_values: # If the server is also in a regular farm
print >>output_file, " add %s_NoNAT" % (nonat_wl_name[0]) # Adds the server and appends "_NoNAT"
else: # If the server is not in a regular farm
print >>output_file, " add %s" % (nonat_wl_name[0]) # Adds the server with the user chosen name
else: # If there are not regular farms
print >>output_file, " add %s" % (nonat_wl_name[0]) # Adds the server with the user chosen name
if farm in global_variables.admin_status_dcn.keys(): # If the farm is in the admin state dictionary keys
if server in global_variables.admin_status_dcn[farm]: # Validates if the current real server is disabled
if len(global_variables.group_to_routers_dcn) > 0: # If there are regular farms
if server in group_to_routers_values: # If the server is also in a regular farm
print >>output_file, " dis %s_NoNAT" % (nonat_wl_name[0]) # Disables the server and appends "_NoNAT"
else: # If the server is not ina regular farm
print >>output_file, " dis %s" % (nonat_wl_name[0]) # Disables the server with the user chosen name
else: # If there are no regular farms
print >>output_file, " dis %s" % (nonat_wl_name[0]) # Disables the server with the user chosen name
elif farm not in global_variables.operation_mode_dcn.keys() and farm not in global_variables.gbck_dcn.keys(): # If the farm has no backup servers
if len(global_variables.group_to_routers_dcn) > 0: # If there are regular farms
if server in group_to_routers_values: # If the server is also in a regular farm
print >>output_file, " add %s_NoNAT" % (nonat_wl_name[0]) # Adds the server and appends "_NoNAT"
else: # If the server is not in a regular farm
print >>output_file, " add %s" % (nonat_wl_name[0]) # Adds the server with the user chosen name
else: # If there are no regular farms
print >>output_file, " add %s" % (nonat_wl_name[0]) # Adds the server with the user chosen name
if farm in global_variables.admin_status_dcn.keys(): # If the farm is in the admin state dictionary keys
if server in global_variables.admin_status_dcn[farm]: # Validates if the current real server is disabled
if len(global_variables.group_to_routers_dcn) > 0: # If there are regular farms
if server in group_to_routers_values: # If the server is also in a regular farm
print >>output_file, " dis %s_NoNAT" % (nonat_wl_name[0]) # Disables the server and appends "_NoNAT"
else: # if the server is not in a regular farm
print >>output_file, " dis %s" % (nonat_wl_name[0]) # Disables the server with the user chosen name
else: # If there are no regular farms
print >>output_file, " dis %s" % (nonat_wl_name[0]) # Disables the server with the user chosen name
def add_servers_to_bck_group_fnc(bck_wl_ip, bck_wl_name):
'''Adds WL servers to a WL backup group.i
Takes WL IP and WL name as arguments.
'''
if bserver == bck_wl_ip: # We validate that the IP in the backup farm is the same as the IP in the user chosen WL names dict
if len(global_variables.group_to_routers_nonat_dcn) > 0: # If there are "No NAT" farms
if bfarm in global_variables.group_to_routers_nonat_dcn.keys(): # If the current backup farm name is a No NAT farm
if len(global_variables.group_to_routers_dcn) > 0: # If there are regular farms
if bserver in group_to_routers_values: # If the current WAN link IP is in a regular farm
print >>output_file, " add %s_NoNAT" % (bck_wl_name[0]) # We add the WAN link and append "_NoNAT"
else: # If the current WAN link IP is not in a regular farm
print >>output_file, " add %s" % (bck_wl_name[0]) # We add the WAN link with its user chosen name
else: # If there are no regular farms
print >>output_file, " add %s" % (bck_wl_name[0]) # We add the WAN link with its user chosen name
else: # If the current backup farm name is a regular farm
print >>output_file, " add %s" % (bck_wl_name[0]) # We add the WAN link with its user chosen name
else: # If there are no "No NAT" farms
print >>output_file, " add %s" % (bck_wl_name[0]) # We add the WAN link with its user chosen name
if bfarm in global_variables.admin_status_dcn.keys(): # Loops over the admin status dictionary keys
if bserver in global_variables.admin_status_dcn[bfarm]: # Validates if the current real server is disabled
if len(global_variables.group_to_routers_nonat_dcn) > 0: # If there are "No NAT" farms
if bfarm in global_variables.group_to_routers_nonat_dcn.keys(): # If the current backup farm name is a No NAT farm
if len(global_variables.group_to_routers_dcn) > 0: # If there are regular farms
if bserver in group_to_routers_values: # If the current WAN link IP is in a regular farm
print >>output_file, " dis %s_NoNAT" % (bck_wl_name[0]) # We disable the WAN link and append "_NoNAT"
else: # If the current WAN link IP is not in a regular farm
print >>output_file, " dis %s" % (bck_wl_name[0]) # We disable the WAN link with its user chosen name
else: # If there are no regular farms
print >>output_file, " dis %s" % (bck_wl_name[0]) # We disable the WAN link with its user chosen name
else: # If the current backup farm name is a regular farm
print >>output_file, " dis %s" % (bck_wl_name[0]) # We disable the WAN link with its user chosen name
else: # If there are no "No NAT" farms
print >>output_file, " dis %s" % (bck_wl_name[0]) # We add the WAN link with its user chosen name
if request.path == '/page2':
chosen_wl_names = str(request.form['new_isps'])
chosen_wl_names = chosen_wl_names.split(",")
for isp in chosen_wl_names:
user_new_wl_names_dcn_key = "%s" % (isp.split("&")[0])
global_variables.user_new_wl_names_dcn.setdefault(user_new_wl_names_dcn_key, [])
global_variables.user_new_wl_names_dcn[user_new_wl_names_dcn_key].append('%s' % (isp.split("&")[1]))
### ###
# Health Checks Section #
### ###
## ##
# This is a section used to prompt the user that health checks will not be migrated #
# The user will have the following choices: #
# #
# 1.) Use a predefined advanced HC configuration #
# 2.) Go to a setup screen to create his own advanced HC configration (DNS based health checks) #
# 3.) Not create any advanced HC configuration #
# In this case, the script will create "health icmp" on each real server #
# It'll also prompt the user to migrate the LP HC configuration manually #
## ##
if hc_note == "Y" or hc_note == "y": # If the user chose "Y/y", we'll use the predefined HC configuration
print_adv_hc_fnc("CNN_DNS1", "8.8.8.8", "www.cnn.com")
print_adv_hc_fnc("CNN_DNS2", "209.244.0.3", "www.cnn.com")
print_adv_hc_fnc("Yahoo_DNS1", "8.8.8.8", "www.yahoo.com")
print_adv_hc_fnc("Yahoo_DNS2", "209.244.0.3", "www.yahoo.com")
print >>output_file, "/c/slb/advhc/health WLs_HCs LOGEXP"
print >>output_file, ' logexp "(icmp)&(Yahoo_DNS1|CNN_DNS1|Yahoo_DNS2|CNN_DNS2)"'
elif hc_note == "Setup": # If the user chose "Setup", we'll present the HC setup menu
# Starts printing the HCs that the user created
print_adv_hc_fnc("%s_DNS1" % (hc_fqdn1), hc_dns1, hc_fqdn1)
print_adv_hc_fnc("%s_DNS2" % (hc_fqdn1), hc_dns2, hc_fqdn1)
print_adv_hc_fnc("%s_DNS1" % (hc_fqdn2), hc_dns1, hc_fqdn2)
print_adv_hc_fnc("%s_DNS2" % (hc_fqdn2), hc_dns2, hc_fqdn2)
print >>output_file, "/c/slb/advhc/health WLs_HCs LOGEXP"
print >>output_file, ' logexp "(icmp)&(%s_DNS1|%s_DNS1|%s_DNS2|%s_DNS2)"' % (hc_fqdn1, hc_fqdn2, hc_fqdn1, hc_fqdn2)
### ###
# WAN Link Real Server Creation Section #
### ###
## ##
# This is a section used to create the WAN link real servers and their direct HCs #
# In this section we perform the following: #
# #
# 1.) Check if there are WAN links with different names and use the user chosen name #
# 2.) Check if there are WAN links with a single name and use it #
# 3.) If the WAN link is No NAT, we check the following: #
# a. If it's also part of a NAT farm, we print it with "NoNAT" appended #
# b. If it's not part of a NAT farm, we print the regular name #
## ##
group_to_routers_values = ','.join(str(v) for v in global_variables.group_to_routers_dcn.values()) # Creates a large string that contains all of the real servers IP addresses that belong to farms that have NAT mode enabled # ---->
# It'll be used later on to check if a No NAT router server also belongs to a NAT mode enabled farm
group_to_routers_nonat_values = ','.join(str(v) for v in global_variables.group_to_routers_nonat_dcn.values())
## ##
# This section creates the WAN links that have different names, using the user chosen name #
## ##
if global_variables.user_new_wl_names_dcn != '': # If the user chosen WL names dictionary is not empty
for user_wl_ip, user_wl_name in global_variables.user_new_wl_names_dcn.iteritems(): # Loops over the dictionary to create direct HCs and real servers
#print_real_hc_fnc(hc_note, user_wl_name[0], user_wl_ip) # Executes the function that prints the direct HC
if user_wl_ip in group_to_routers_values: # If the router server IP is in the regular WAN links list, we print the real server with the user chosen name
print_real_fnc("regular", user_wl_name[0], user_wl_ip, max_aging_time)
if user_wl_ip in group_to_routers_nonat_values: # If the router server IP in in the no NAT WAN links
if len(global_variables.group_to_routers_dcn) > 0: # If the dictionary of the regular WAN links to groups is not empty
if user_wl_ip in group_to_routers_values: # If the router server IP is in the regular WAN links list too, we append "_NoNAT" to the real server name
print_real_fnc("nonat_in_regular", user_wl_name[0], user_wl_ip, max_aging_time)
else: # If the router server IP is not in the regular WAN links list, we use the regular name
print_real_fnc("nonat_not_in_regular", user_wl_name[0], user_wl_ip, max_aging_time)
else: # If the dictionary of the regular WAN links to group is empty (meaning there's only No NAT farms), we use the regular real server name
print_real_fnc("nonat_no_regular", user_wl_name[0], user_wl_ip, max_aging_time)
## ##
# This section creates the WAN links that have a single name, using their regular name #
## ##
for orig_wl_ip, orig_wl_name in global_variables.duplicate_wls_dcn.iteritems(): # Loops over the dictionary to create direct HCs and real servers
wl_names_equal_status = global_variables.all_same(orig_wl_name)
if wl_names_equal_status == True: # If the router names are the same
#print_real_hc_fnc(hc_note, orig_wl_name[0], orig_wl_ip)
if orig_wl_ip in group_to_routers_values: # If the router server IP is in the WAN links list, we print the regular real server name
print_real_fnc("regular", orig_wl_name[0], orig_wl_ip, max_aging_time)
user_equal_wl_names_dcn_key = "%s" % (orig_wl_ip) # Populates a dictionary with the following values: # ---->
# The real server IP as a key # ---->
# The real server name as a value # ---->
# This is used later on to add the real servers to the group
global_variables.user_equal_wl_names_dcn.setdefault(user_equal_wl_names_dcn_key, [])
global_variables.user_equal_wl_names_dcn[user_equal_wl_names_dcn_key].append('%s' % (orig_wl_name[0]))
if orig_wl_ip in group_to_routers_nonat_values: # If the router server IP is in the no NAT WAN links
if len(global_variables.group_to_routers_dcn) > 0: # If the dictionary of the regular WAN links to groups is not empty
if orig_wl_ip in group_to_routers_values: # If the router server IP is in the regular WAN links list too, we append "_NoNAT" to the real server name
print_real_fnc("nonat_in_regular", orig_wl_name[0], orig_wl_ip, max_aging_time)
user_equal_wl_names_dcn_key = "%s" % (orig_wl_ip)
global_variables.user_equal_wl_names_dcn.setdefault(user_equal_wl_names_dcn_key, [])
global_variables.user_equal_wl_names_dcn[user_equal_wl_names_dcn_key].append('%s' % (orig_wl_name[0]))
else: # If the router server IP is not in the regular WAN links list, we use the regular name
print_real_fnc("nonat_not_in_regular", orig_wl_name[0], orig_wl_ip, max_aging_time)
user_equal_wl_names_dcn_key = "%s" % (orig_wl_ip)
global_variables.user_equal_wl_names_dcn.setdefault(user_equal_wl_names_dcn_key, [])
global_variables.user_equal_wl_names_dcn[user_equal_wl_names_dcn_key].append('%s' % (orig_wl_name[0]))
else: # If the dictionary of the regular WAN links to group is empty (meaning there's only No NAT farms), we use the regular real server name
print_real_fnc("nonat_no_regular", orig_wl_name[0], orig_wl_ip, max_aging_time)
user_equal_wl_names_dcn_key = "%s" % (orig_wl_ip)
global_variables.user_equal_wl_names_dcn.setdefault(user_equal_wl_names_dcn_key, [])
global_variables.user_equal_wl_names_dcn[user_equal_wl_names_dcn_key].append('%s' % (orig_wl_name[0]))
###########################################
#### Real Servers Creation Section End ####
###########################################
#######################################
#### Groups Creation Section Start ####
#######################################
### ###
# Groups Creation - Main Section #
### ###
## ##
# This is the main section used to create the groups configuraiton #
# In this section, we use the following dictionaries: #
# #
# 1.) Dictionaries populated in the real servers find section #
# 2.) Dictionaries populated in the real servers creation section #
# #
# Rules: #
# #
# 1.) We create the following: #
# a. Regular groups #
# b. A "backup r" if we find only one backup real server in the farm #
# c. A backup group if we find more than one backup real server in the farm #
# d. No NAT groups #
# 2.) We always disable real servers in the group level #
# 3.) When creating "No NAT" groups, we check the following: #
# a. A backup group is created with the following name convention: #
# The regular group name and "_BCK" appended #
# b. If a DNS rule uses a "No NAT" farm, and: #
# Its real servers also belong to a regular farm #
# This means that the real servers have "_NAT" appended, therefore: #
# In this case, we create a special group for GSLB #
# The group will have the regular real server names #
# It'll only be used in GSLB rules #
# This behavior will be changed soon as it doesn't conform with LP #
## ##
### ###
# Groups Creation - Backup Groups Section #
### ###
group_to_routers_values = ','.join(str(v) for v in global_variables.group_to_routers_dcn.values())
for bfarm, bservers in global_variables.bck_dcn.iteritems(): # Looping over the backup group to routers dictionary
if len(bservers) > 1: # If the amount of real servers is more than 1, we know we need a backup group
gbck = "%s_BCK" % (bfarm) # Creates the backup group ID
print >>output_file, "/c/slb/group %s_BCK" % (bfarm) # Prints the general backup group general configuration
print >>output_file, " ipver v4"
print >>output_file, " type wanlink"
print >>output_file, " metric %s" % (global_variables.farm_parameters_dcn[bfarm][0]) # We use the metric of the regular group
gbck_dcn_key = "%s" % (bfarm) # Populates a dictionary with the following values: # ---->
# The regular group ID as a key # ---->
# The backup group ID as a value # ---->
# This is used later on to associate the backup group to the regular group
global_variables.gbck_dcn.setdefault(gbck_dcn_key, [])
global_variables.gbck_dcn[gbck_dcn_key].append('%s' % (gbck))
for bserver in bservers: # Loop over the real servers in the backup farm
for bck_user_wl_ip, bck_user_wl_name in global_variables.user_new_wl_names_dcn.iteritems(): # Loop over the user chosen WL IPs and names
add_servers_to_bck_group_fnc(bck_user_wl_ip, bck_user_wl_name) # Executes the function that adds the reals to the group
for bck_orig_wl_ip, bck_orig_wl_name in global_variables.user_equal_wl_names_dcn.iteritems(): # Loops over the equal WL IPs and names
add_servers_to_bck_group_fnc(bck_orig_wl_ip, bck_orig_wl_name) # Executes the function that adds the reals to the group
### ###
# Groups Creation - Regular Groups Section #
### ###
group_to_routers_nonat_values = ','.join(str(v) for v in global_variables.group_to_routers_nonat_dcn.values())
if len(global_variables.group_to_routers_dcn) > 0:
for farm, servers in global_variables.group_to_routers_dcn.iteritems(): # Loops over the regular group to routers dictionary
print >>output_file, "/c/slb/group %s" % (farm) # Prints the general group configuration
print >>output_file, " ipver v4"
print >>output_file, " type wanlink"
if farm in global_variables.farm_parameters_dcn.keys():
print >>output_file, " metric %s" % (global_variables.farm_parameters_dcn[farm][0])
for server in servers: # Loops over the real servers in the regular farm
for user_wl_ip, user_wl_name in global_variables.user_new_wl_names_dcn.iteritems(): # Loop over the user chosen WL IPs and names
add_servers_to_regular_group_fnc(user_wl_ip, user_wl_name[0]) # Executes the function that adds the reals to the group
for orig_wl_ip, orig_wl_name in global_variables.user_equal_wl_names_dcn.iteritems(): # Loops over the equal WL IPs and names
add_servers_to_regular_group_fnc(orig_wl_ip, orig_wl_name[0]) # Executes the function that adds the reals to the group
### ###
# Groups Creation - No NAT Groups Section #
### ###
for farm, servers in global_variables.group_to_routers_nonat_dcn.iteritems(): # Loops over the No NAT group to routers dictionary
print >>output_file, "/c/slb/group %s" % (farm) # Prints the general group configuration
print >>output_file, " ipver v4"
print >>output_file, " type wanlink"
if farm in global_variables.farm_parameters_dcn.keys():
print >>output_file, " metric %s" % (global_variables.farm_parameters_dcn[farm][0])
for server in servers: # Loops over the real servers in the No NAT farm
for nonat_user_wl_ip, nonat_user_wl_name in global_variables.user_new_wl_names_dcn.iteritems(): # Loop over the user chosen WL IPs and names
add_servers_to_nonat_group_fnc(nonat_user_wl_ip, nonat_user_wl_name) # Executes the function that adds the reals to the group
for nonat_orig_wl_ip, nonat_orig_wl_name in global_variables.user_equal_wl_names_dcn.iteritems():
add_servers_to_nonat_group_fnc(nonat_orig_wl_ip, nonat_orig_wl_name) # Executes the function that adds the reals to the group
for farm in global_variables.all_farms_lst: # Loops over the list of farms
if farm not in global_variables.group_to_routers_all_dcn.keys(): # If the farm has no servers, prints the group with no servers
print >>output_file, "/c/slb/group %s" % (farm)
print >>output_file, " ipver v4"
print >>output_file, " type wanlink"
#####################################
#### Groups Creation Section End ####
#####################################
############################################################
#### Default Farm, SLB Ports and DNS VIPs Section Start ####
############################################################
for line in lp_to_lpng: # Loops over the LP configuration
if "farms default-farm set" in line:
default_farm = global_variables.find_fnc( line, '-fn "', '"' ) # Finds the default farm
if default_farm == 'error': # If no double quotes in the default farm
default_farm = global_variables.find_fnc( line, '-fn ', ' ' ) # Finds the default farm again
for unsupported_char, supported_char in global_variables.special_characters_dcn.iteritems():
default_farm = default_farm.replace ('%s' % (unsupported_char), "%s" % (supported_char))
if default_farm not in global_variables.default_farm_lst:
global_variables.default_farm_lst.append(default_farm)
### ###
# Default Farm Selection Section #
### ###
## ##
# This is a section used to prompt the user to select the default farm for the default filter #
# This section will be shown to the user only if the LP's default farms are different #
## ##
default_farm_equal_status = global_variables.all_same(global_variables.default_farm_lst) # Checks is all default farms are the same
if default_farm_equal_status == False: # If all default farms are not the same
return render_template('default_filter.html', title='Default Filter', default_group_lst=global_variables.default_group_lst)
else:
return redirect('/page5')
@app.route('/page4', methods=['GET','POST'])
@app.route('/page5', methods=['GET','POST'])
def page4():
def print_dummy_slb_fnc(dns_local_ip, dns_dummy_vip, gslb_network_id):
'''Prints dummy real server, group and virt.
Takes the DNS rule local IP, DNS dummy VIP and GSLB network ID as arguments.
This fucntion is used for cases where Alteon needs to respond to DNS queries with the local IP.
IP range 169.254.0.1 to 169.254.7.254 is used for the dummy VIP.
IP 169.254.254.253 is used for the dummy local real server and IP 169.254.254.254 is used for the dummy WL real server.
'''
if global_variables.dummy_status == 0:
print >>output_file, "/c/slb/real Dummy_Local_Srv"
print >>output_file, " ena"
print >>output_file, " ipver v4"
print >>output_file, " rip 169.254.254.253"
print >>output_file, " health NoCheck"
print >>output_file, ' name "Dummy Real for DNS Resolution"'
print >>output_file, "/c/slb/real Dummy_WL"
print >>output_file, " ena"
print >>output_file, " ipver v4"
print >>output_file, " rip 169.254.254.254"
print >>output_file, " type wanlink"
print >>output_file, " health NoCheck"
print >>output_file, ' name "Dummy WL for DNS Resolution"'
print >>output_file, "/c/slb/group Dummy_Local_GRP"
print >>output_file, " ipver v4"
print >>output_file, " add Dummy_Local_Srv"
print >>output_file, ' name "Dummy Group for DNS Resolution"'
print >>output_file, "/c/slb/virt Local_%s" % (dns_local_ip)
print >>output_file, " ena"
print >>output_file, " ipver v4"
print >>output_file, " vip %s" % (dns_dummy_vip)
print >>output_file, " nat %s" % (dns_local_ip)
print >>output_file, " rtsrcmac ena"
print >>output_file, ' vname "Dummy VIP for IP %s"' % (dns_local_ip)
print >>output_file, ' dname "inherit"'
print >>output_file, ' wanlink "Dummy_WL"'
print >>output_file, "/c/slb/virt Local_%s/service 1234 basic-slb" % (dns_local_ip)
print >>output_file, ' name "Dummy Service for DNS Resolution"'
print >>output_file, " group Dummy_Local_GRP"
print >>output_file, " rport 1234"
print >>output_file, "/c/slb/gslb/network %s" % (gslb_network_id)
print >>output_file, " ena"
print >>output_file, " addvirt Local_%s 65535" % (dns_local_ip)
global_variables.nonat_gslb_nets_lst.append(gslb_network_id)
def create_smartat_local_range(nat_type):
'''This function is used to check if the No NAT local IP range includes unusable addresses.
We loop over all local IPs, then we check against the dictionary that includes all unusable IPs.
If we find that an unusable IP is in the local IP range, we remove it.
We then create the repsective local IP network class.
The function takes the NAT type as an argument.
'''
smartnat_local_range_new_lst1 = [] # Creates No NAT local IPs lists # ---->
# These lists are then used to hold to usable local IPs for Smart NAT entry
# Usable local IPs include any IP which is not network, broadcast, interface IP or peer interface IP
smartnat_local_range_new_lst2 = []
smartnat_local_range_new_lst3 = []
smartnat_local_range_new_lst4 = []
smartnat_local_range_new_lst5 = []
smartnat_local_range_new_lst6 = []
smartnat_local_range_new_lst7 = []
smartnat_local_range_lst_idx = 0
smartnat_local_nwclss_net_id = 0
smartnat_local_loop_status = ""
for x, smartnat_local_addr in enumerate(smartnat_localip_range): # Loop over the local IPs list
if smartnat_local_addr not in global_variables.own_addresses_lst: # If the local IP is not in the unsupported IPs list
smartnat_local_range_new_lst1.append(smartnat_local_addr) # We add it to the range of supported addresses
if x == len(smartnat_localip_range) - 1: # If we're in the end of the local IPs list, we mark it as last
smartnat_local_loop_status = "last"
else: # If the local IP is in the unsupported IPs list
smartnat_local_range_lst_idx = x + 1 # We increment the last list index by 1 and break the loop
break
if smartnat_local_loop_status != "last": # We check if we're in the end of the local IPs list and if not, continue
for x, smartnat_local_addr in enumerate(smartnat_localip_range[smartnat_local_range_lst_idx:]): # Loop again over the local IPs list, strating from the last non looped index
if smartnat_local_addr not in global_variables.own_addresses_lst: # If the local IP is not in the unsupported IPs list
smartnat_local_range_new_lst2.append(smartnat_local_addr) # We add it to the range of supported addresses
if smartnat_local_range_lst_idx + x == len(smartnat_localip_range) - 1: # If we're in the end of the local IPs list, we mark it as last
smartnat_local_loop_status = "last"
else: # If the local IP is in the unsupported IPs list
smartnat_local_range_lst_idx = x + smartnat_local_range_lst_idx + 1 # We increment the last list index by 1 and break the loop
break
if smartnat_local_loop_status != "last": # Repeat the same logic again as per the amount of unsupported IPs + 1
for x, smartnat_local_addr in enumerate(smartnat_localip_range[smartnat_local_range_lst_idx:]):
if smartnat_local_addr not in global_variables.own_addresses_lst:
smartnat_local_range_new_lst3.append(smartnat_local_addr)
if smartnat_local_range_lst_idx + x == len(smartnat_localip_range) - 1:
smartnat_local_loop_status = "last"
else:
smartnat_local_range_lst_idx = x + smartnat_local_range_lst_idx + 1
break
if smartnat_local_loop_status != "last":
for x, smartnat_local_addr in enumerate(smartnat_localip_range[smartnat_local_range_lst_idx:]):
if smartnat_local_addr not in global_variables.own_addresses_lst:
smartnat_local_range_new_lst4.append(smartnat_local_addr)
if smartnat_local_range_lst_idx + x == len(smartnat_localip_range) - 1:
smartnat_local_loop_status = "last"
else:
smartnat_local_range_lst_idx = x + smartnat_local_range_lst_idx + 1
break
if smartnat_local_loop_status != "last":
for x, smartnat_local_addr in enumerate(smartnat_localip_range[smartnat_local_range_lst_idx:]):
if smartnat_local_addr not in global_variables.own_addresses_lst:
smartnat_local_range_new_lst5.append(smartnat_local_addr)
if smartnat_local_range_lst_idx + x == len(smartnat_localip_range) - 1:
smartnat_local_loop_status = "last"
else:
smartnat_local_range_lst_idx = x + smartnat_local_range_lst_idx + 1
break
if smartnat_local_loop_status != "last":
for x, smartnat_local_addr in enumerate(smartnat_localip_range[smartnat_local_range_lst_idx:]):
if smartnat_local_addr not in global_variables.own_addresses_lst:
smartnat_local_range_new_lst6.append(smartnat_local_addr)
if smartnat_local_range_lst_idx + x == len(smartnat_localip_range) - 1:
smartnat_local_loop_status = "last"
else:
smartnat_local_range_lst_idx = x + smartnat_local_range_lst_idx + 1
break
if smartnat_local_loop_status != "last":
for x, smartnat_local_addr in enumerate(smartnat_localip_range[smartnat_local_range_lst_idx:]):
if smartnat_local_addr not in global_variables.own_addresses_lst:
smartnat_local_range_new_lst7.append(smartnat_local_addr)
if nat_type == "SNN":
smartnat_local_nwclss_id = global_variables.locl_snn_nwclss_id
else:
smartnat_local_nwclss_id = global_variables.locl_snd_nwclss_id
if smartnat_local_range_new_lst1: # If the first supported local IP list is not empty
if smartnat_local_nwclss_net_id == 0: # We check if the net ID is 0, this way we know that we didn't yet create the network class
print >>output_file, "/c/slb/nwclss %s_Local_%s" % (nat_type, smartnat_local_nwclss_id) # We then create the general network class configuration
print >>output_file, ' type "address"'
print >>output_file, "/c/slb/nwclss %s_Local_%s/network %s" % (nat_type, smartnat_local_nwclss_id, smartnat_local_nwclss_net_id) # We create the first net
print >>output_file, " net range %s %s include" % (smartnat_local_range_new_lst1[0], smartnat_local_range_new_lst1[-1])
smartnat_local_nwclss_net_id += 1 # We increment the net ID
if smartnat_local_range_new_lst2: # If the 2nd supported local IP list is not empty
if smartnat_local_nwclss_net_id == 0: # We repeat the same logic for all local IPs lists
print >>output_file, "/c/slb/nwclss %s_Local_%s" % (nat_type, smartnat_local_nwclss_id)
print >>output_file, ' type "address"'
print >>output_file, "/c/slb/nwclss %s_Local_%s/network %s" % (nat_type, smartnat_local_nwclss_id, smartnat_local_nwclss_net_id)
print >>output_file, " net range %s %s include" % (smartnat_local_range_new_lst2[0], smartnat_local_range_new_lst2[-1])
smartnat_local_nwclss_net_id += 1
if smartnat_local_range_new_lst3:
if smartnat_local_nwclss_net_id == 0:
print >>output_file, "/c/slb/nwclss %s_Local_%s" % (nat_type, smartnat_local_nwclss_id)
print >>output_file, ' type "address"'
print >>output_file, "/c/slb/nwclss %s_Local_%s/network %s" % (nat_type, smartnat_local_nwclss_id, smartnat_local_nwclss_net_id)
print >>output_file, " net range %s %s include" % (smartnat_local_range_new_lst3[0], smartnat_local_range_new_lst3[-1])
smartnat_local_nwclss_net_id += 1
if smartnat_local_range_new_lst4:
if smartnat_local_nwclss_net_id == 0:
print >>output_file, "/c/slb/nwclss %s_Local_%s" % (nat_type, smartnat_local_nwclss_id)
print >>output_file, ' type "address"'
print >>output_file, "/c/slb/nwclss %s_Local_%s/network %s" % (nat_type, smartnat_local_nwclss_id, smartnat_local_nwclss_net_id)
print >>output_file, " net range %s %s include" % (smartnat_local_range_new_lst4[0], smartnat_local_range_new_lst4[-1])
smartnat_local_nwclss_net_id += 1
if smartnat_local_range_new_lst5:
if smartnat_local_nwclss_net_id == 0:
print >>output_file, "/c/slb/nwclss %s_Local_%s" % (nat_type, smartnat_local_nwclss_id)
print >>output_file, ' type "address"'
print >>output_file, "/c/slb/nwclss %s_Local_%s/network %s" % (nat_type, smartnat_local_nwclss_id, smartnat_local_nwclss_net_id)
print >>output_file, " net range %s %s include" % (smartnat_local_range_new_lst5[0], smartnat_local_range_new_lst5[-1])
smartnat_local_nwclss_net_id += 1
if smartnat_local_range_new_lst6:
if smartnat_local_nwclss_net_id == 0:
print >>output_file, "/c/slb/nwclss %s_Local_%s" % (nat_type, smartnat_local_nwclss_id)
print >>output_file, ' type "address"'
print >>output_file, "/c/slb/nwclss %s_Local_%s/network %s" % (nat_type, smartnat_local_nwclss_id, smartnat_local_nwclss_net_id)
print >>output_file, " net range %s %s include" % (smartnat_local_range_new_lst6[0], smartnat_local_range_new_lst6[-1])
smartnat_local_nwclss_net_id += 1
if smartnat_local_range_new_lst7:
if smartnat_local_nwclss_net_id == 0:
print >>output_file, "/c/slb/nwclss %s_Local_%s" % (nat_type, smartnat_local_nwclss_id)
print >>output_file, ' type "address"'
print >>output_file, "/c/slb/nwclss %s_Local_%s/network %s" % (nat_type, smartnat_local_nwclss_id, smartnat_local_nwclss_net_id)
print >>output_file, " net range %s %s include" % (smartnat_local_range_new_lst7[0], smartnat_local_range_new_lst7[-1])
if request.path == '/page4':
default_group = str(request.form['default_group'])
else: # If all default farms are the same, we will use the default farm for the default filter and only present the below note for the user
default_group = global_variables.default_farm_lst[0] # Creates a variable which is the default farm bame, will be used later on the default filter
### ###
# SLB Ports Section #
### ###
## ##
# This is a section used to create the SLB ports configuration and enable filter processing #
# In this section we loop over all of the ports that was chosen by the user in the beginning of the script #
# We then use these ports when creating the SLB ports configuration #
## ##
for port in allports: # Loops over the list of all user chosen ports
print >>output_file, '/c/slb/port "%s"' % (port) # Prints the SLB ports configuration
print >>output_file, " filt ena"
for line in lp_to_lpng: # Loops over the LP configuration
### ###
# DNS VIPs Section #
### ###
## ##
# This is a section used to create the DNS VIPs configuration #
# In this section we look for the DNS VIPs in the LP configuration and print the corresponding Alteon configuration #
## ##
if "lp dns virtual-ip create" in line:
dns_vip = re.findall( r'[0-9]+(?:\.[0-9]+){3}', line ) # Finds the DNS VIP
print >>output_file, "/c/slb/gslb/dnsresvip DnsResp%s,DnsResp%s" % (global_variables.dns_vip_id1, global_variables.dns_vip_id2) # Prints the DNS VIP configuration
print >>output_file, " ipver v4"
print >>output_file, " vip %s" % (dns_vip[0])
print >>output_file, " ena"
print >>output_file, " rtsrcmac ena"
if dns_vip[0] not in global_variables.own_addresses_lst:
global_variables.own_addresses_lst.append(dns_vip[0])
global_variables.dns_vip_id1 += 2 # used to increment the first DNS VIP ID
global_variables.dns_vip_id2 += 2 # Used to increment the second DNS VIP ID
##########################################################
#### Default Farm, SLB Ports and DNS VIPs Section End ####
##########################################################
#################################
#### Smart NAT Section Start ####
#################################
for line in lp_to_lpng: # Loops over the LP configuration
### ###
# Smart NAT Configuration - Main Section #
### ###
## ##
# This is the main section used to configure all of the Smart NAT configuration #
# In this section, we fine the Smart NAT configuration and print the Alteon equivalent #
# #
# Rules: #
# #
# 1.) We configure the following Smart NAT types: #
# a. Dynamic NAT #
# b. Static NAT #
# c. No NAT #
# d. Static PAT (using virts) #
# 2.) On dynamic NAT, we treat the following loca IPs as "any" in Alteon: #
# a. 0.0.0.0 #
# b. 0.0.0.1 #
# c. 1.0.0.0 #
# d. 1.0.0.1 #
# 3.) On No NAT, we check the if the local IP range has the following IP addresses: #
# a. Network address of any network on the LP #
# b. Broadcast address of any network on the LP #
# c. Any interface IP on the LP #
# d. Any peer interface IP on the LP #
# The above IP addresses are not supported as local IPs in Smart NAT entry #
# If we find them, we remove them and create the network class without them #
## ##
### ###
# Smart NAT Dynamic NAT Section #
### ###
## ##
# This section is used to find and configure the Smart NAT dynamic NAT #
## ##
if "smartnat dynamic-nat" in line:
find_snd_ip = re.findall( r'[0-9]+(?:\.[0-9]+){3}', line ) # Finds all relevant IP addresses (local from, local to, WAN link, NAT)
if find_snd_ip[0] == find_snd_ip[1]: # If the "Local IP From" is the same as the "Local IP To", uses mode address
snd_local_ip = "%s 255.255.255.255" % (find_snd_ip[0]) # The local IP
elif find_snd_ip[0] == '0.0.0.0': # If the "Local IP From" is one of the below options, we use "any" in Alteon
snd_local_ip = 'any'
elif find_snd_ip[0] == '0.0.0.1':
snd_local_ip = 'any'
elif find_snd_ip[0] == '1.0.0.0':
snd_local_ip = 'any'
elif find_snd_ip[0] == '1.0.0.1':
snd_local_ip = 'any'
elif find_snd_ip[0] == find_snd_ip[1]:
snd_local_ip = "%s 255.255.255.255" % (find_snd_ip[0])
else: # If the "Local IP From" is not one of the above, we define a network class for the local IP range
smartnat_localip_range = global_variables.ipRange_fnc(find_snd_ip[0], find_snd_ip[1]) # Finds all IP addresses in the local IP range
global_variables.locl_snd_nwclss_id += 1
global_variables.smartnat_local_nwclss_id += 1
create_smartat_local_range("SND") # Executes the function that creates the network classes
snd_local_ip = "SND_Local_%s" % (global_variables.locl_snd_nwclss_id) # This is the local IP network class name
wan_ip_nat = find_snd_ip[2] # Defines the WAN link IP
if wan_ip_nat in global_variables.user_new_wl_names_dcn: # Loops for the WAN link IP in the user chosen WL names dictionary in order to map it to the WAN link name
if len(global_variables.user_new_wl_names_dcn[wan_ip_nat]) > 0:
wanlink = global_variables.user_new_wl_names_dcn[wan_ip_nat][0] # We then define the WAN link name to be associated with the Smart NAT entry
elif wan_ip_nat in global_variables.duplicate_wls_dcn: # If the WAN link IP is not in the user chosen WL names, we loop in the single WL names dictionary to find it
if len(global_variables.duplicate_wls_dcn[wan_ip_nat]) > 0:
wanlink = global_variables.duplicate_wls_dcn[wan_ip_nat][0] # We then define the WAN link name to be associated with the Smart NAT entry
global_variables.smartnat_id += 1 # Smart NAT ID will be incremented by 1 for each entry
print >>output_file, "/c/slb/lp/nat %s" % (global_variables.smartnat_id) # Prints the Smart NAT dynamic NAT configuration
print >>output_file, " type dynamic"
print >>output_file, " wanlink %s" % (wanlink)
print >>output_file, " locladd %s" % (snd_local_ip)
print >>output_file, " natadd %s 255.255.255.255" % (find_snd_ip[3])
### ###
# Smart NAT Static NAT Section #
### ###
## ##
# This section is used to find and configure the Smart NAT static NAT #
## ##
if "smartnat static-nat" in line:
find_sns_ip = re.findall( r'[0-9]+(?:\.[0-9]+){3}', line ) # Finds all relevant IP addresses (local from, local to, WAN link, NAT IP from, NAT IP to)
if find_sns_ip[0] == find_sns_ip[1]: # If the "Local IP From" is the same as the "Local IP To" and if it is, uses mode address
sns_local_ip = "%s 255.255.255.255" % (find_sns_ip[0]) # The local IP
sns_nat_ip = "%s 255.255.255.255" % (find_sns_ip[3]) # The NAT IP
if find_sns_ip[0] not in global_variables.smart_nat_local_ips_lst: # Appends the local IP to a list with all Smart NAT local IPs # ---->
# This is later on used to check if a DNS rule local IP is not in this list and in this case, the DNS rule won't be configured
global_variables.smart_nat_local_ips_lst.append("%s" % (find_sns_ip[0]))
else: # If the "Local IP From" is not the same as the "Local IP To", users mode nwclss
sns_localip_range = global_variables.ipRange_fnc(find_sns_ip[0], find_sns_ip[1]) # Finds all IP addresses in the local IP range
for localip in sns_localip_range: # Appends each local IP to a list with all Smart NAT local IPs # ---->
# This is later on used to check if a DNS rule local IP is not in this list and in this case, the DNS rule won't be configured
if localip not in global_variables.smart_nat_local_ips_lst:
global_variables.smart_nat_local_ips_lst.append("%s" % (localip))
current_sns_local_range = "%s_%s" % (find_sns_ip[0], find_sns_ip[1])
for sns_local_range_key, sns_nwclss_id_value in global_variables.sns_local_range_to_nwclss_dcn.iteritems():
if sns_local_range_key == current_sns_local_range:
sns_local_ip = sns_nwclss_id_value[0]
break
else:
global_variables.locl_sns_nwclss_id += 1 # Increments the local IP network class ID
sns_local_ip = "SNS_Local_%s" % (global_variables.locl_sns_nwclss_id) # This is the local IP netowrk class name
print >>output_file, "/c/slb/nwclss SNS_Local_%s" % (global_variables.locl_sns_nwclss_id) # Prints the local IP network class
print >>output_file, ' type "address"'
print >>output_file, "/c/slb/nwclss SNS_Local_%s/network 0" % (global_variables.locl_sns_nwclss_id)
print >>output_file, " net range %s %s include" % (find_sns_ip[0], find_sns_ip[1])
sns_local_range_to_nwclss_dcn_key = "%s" % (current_sns_local_range)
global_variables.sns_local_range_to_nwclss_dcn.setdefault(sns_local_range_to_nwclss_dcn_key, [])
global_variables.sns_local_range_to_nwclss_dcn[sns_local_range_to_nwclss_dcn_key].append('%s' % (sns_local_ip))
global_variables.nat_sns_nwclss_id += 1 # Increments the NAT IP network class ID
sns_nat_ip = "SNS_NAT_%s" % (global_variables.nat_sns_nwclss_id) # This is the NAT IP network class
print >>output_file, "/c/slb/nwclss SNS_NAT_%s" % (global_variables.nat_sns_nwclss_id) # Prints the NAT IP network class
print >>output_file, ' type "address"'
print >>output_file, "/c/slb/nwclss SNS_NAT_%s/network 0" % (global_variables.nat_sns_nwclss_id)
print >>output_file, " net range %s %s include" % (find_sns_ip[3], find_sns_ip[4])
wan_ip_nat = find_sns_ip[2] # Defines the WAN link IP, then extracts the WAN link name from the dictionaries
if wan_ip_nat in global_variables.user_new_wl_names_dcn:
if len(global_variables.user_new_wl_names_dcn[wan_ip_nat]) > 0:
wanlink = global_variables.user_new_wl_names_dcn[wan_ip_nat][0]
elif wan_ip_nat in global_variables.duplicate_wls_dcn:
if len(global_variables.duplicate_wls_dcn[wan_ip_nat]) > 0:
wanlink = global_variables.duplicate_wls_dcn[wan_ip_nat][0]
global_variables.smartnat_id += 1 # Increments the Smart NAT ID
print >>output_file, "/c/slb/lp/nat %s" % (global_variables.smartnat_id) # Prints the Smart NAT static NAT configuration
print >>output_file, " type static"
print >>output_file, " wanlink %s" % (wanlink)
print >>output_file, " locladd %s" % (sns_local_ip)
print >>output_file, " natadd %s" % (sns_nat_ip)
### ###
# Smart NAT No NAT Section #
### ###
## ##
# This section is used to find and configure the Smart NAT No NAT #
## ##
if "smartnat no-nat" in line:
find_snn_ip = re.findall( r'[0-9]+(?:\.[0-9]+){3}', line ) # Finds all relevant IP addresses (local from, local to and WAN link)
if find_snn_ip[0] == find_snn_ip[1]: # If the "Local IP From" is the same as the "Local IP To" and if it is, uses mode address
snn_local_ip = "%s 255.255.255.255" % (find_snn_ip[0]) # The local IP
if find_snn_ip[0] not in global_variables.smart_nat_local_ips_lst:
global_variables.smart_nat_local_ips_lst.append("%s" % (find_snn_ip[0]))
else: # If the "Local IP From" is not the same as the "Local IP To", users mode nwclss
smartnat_localip_range = global_variables.ipRange_fnc(find_snn_ip[0], find_snn_ip[1]) # Finds all IP addresses in the local IP range # ---->
# Specifically for No NAT, this is later on used to find if any of these IPs is network, broadcast, interface or peer interface
for localip in smartnat_localip_range:
if localip not in global_variables.smart_nat_local_ips_lst:
global_variables.smart_nat_local_ips_lst.append("%s" % (localip))
global_variables.locl_snn_nwclss_id += 1
global_variables.smartnat_local_nwclss_id += 1
create_smartat_local_range("SNN") # Executes the function that creates the network class
snn_local_ip = "SNN_Local_%s" % (global_variables.locl_snn_nwclss_id) # This is the local IP network class name
wan_ip_nat = find_snn_ip[2] # Defines the WAN link IP, then extracts the WAN link name from the dictionaries
if wan_ip_nat in global_variables.user_new_wl_names_dcn:
if len(global_variables.user_new_wl_names_dcn[wan_ip_nat]) > 0:
wanlink = global_variables.user_new_wl_names_dcn[wan_ip_nat][0]
elif wan_ip_nat in global_variables.duplicate_wls_dcn:
if len(global_variables.duplicate_wls_dcn[wan_ip_nat]) > 0:
wanlink = global_variables.duplicate_wls_dcn[wan_ip_nat][0]
global_variables.smartnat_id += 1 # Increments the Smart NAT ID
print >>output_file, "/c/slb/lp/nat %s" % (global_variables.smartnat_id) # Prints the Smart NAT No NAT configuration
print >>output_file, " wanlink %s" % (wanlink)
print >>output_file, " locladd %s" % (snn_local_ip)
nonat_port = [int(s) for s in line.split() if s.isdigit()]
if nonat_port[0] != 0:
current_time = datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S.%f')
print >>migration_errors, '\033[1m%s\033[0m #Unsupported_flag_option: the following command contains a flag with an unsupported option:' % (current_time)
print >>migration_errors, ' Command: %s' % (line)
print >>migration_errors, ' Unsupported flag option: No NAT Destination Port which is not 0.'
print >>migration_errors, ' Alteon will treat it as 0 (any).'
### ###
# Smart NAT Static PAT Section #
### ###
## ##
# This section is used to find and configure the Smart NAT Static PAT #
## ##
if "smartnat static-pat" in line:
find_snp_ip = re.findall( r'[0-9]+(?:\.[0-9]+){3}', line ) # Finds all relevant IP addresses (internal, external, WAN link)
global_variables.type_group_local_lst.append("%s" % (find_snp_ip[0])) # Populates a list with the internal IPs as objects # ---->
# This is later on used to identify that it's a PAT, to create GSLB network of type "group"
if find_snp_ip[0] not in global_variables.smart_nat_local_ips_lst: # Appends the local IP to a list with all Smart NAT local IPs # ---->
# This is later on used to check if a DNS rule local IP is not in this list and in this case, the DNS rule won't be configured
global_variables.smart_nat_local_ips_lst.append("%s" % (find_snp_ip[0]))
find_snp_ports = [int(s) for s in line.split() if s.isdigit()] # Finds the internal and external ports
wan_ip_nat = find_snp_ip[1] # Defines the WAN link IP, then extracts the WAN link name from the dictionaries
if wan_ip_nat in global_variables.user_new_wl_names_dcn:
if len(global_variables.user_new_wl_names_dcn[wan_ip_nat]) > 0:
wanlink = global_variables.user_new_wl_names_dcn[wan_ip_nat][0]
elif wan_ip_nat in global_variables.duplicate_wls_dcn:
if len(global_variables.duplicate_wls_dcn[wan_ip_nat]) > 0:
wanlink = global_variables.duplicate_wls_dcn[wan_ip_nat][0]
snp_protocol = global_variables.find_fnc( line, "%s " % (find_snp_ports[0]), " " ) # Finds the PAT protocol
snp_name = global_variables.find_fnc( line, ' -pn "', '"' ) # Finds the PAT name
if snp_name == 'error': # If no double quotes, finds it again
snp_name = global_variables.find_fnc( line, " -pn ", " " )
snp_real_to_virt_dcn_key = "%s" % (find_snp_ip[0]) # Populates a dictionary with the following values: # ---->
# The internal IP as a key # ---->
# The external IP as a value # ---->
# This is later on used to add the correct virt to the GSLB network
global_variables.snp_real_to_virt_dcn.setdefault(snp_real_to_virt_dcn_key, [])
global_variables.snp_real_to_virt_dcn[snp_real_to_virt_dcn_key].append('%s' % (find_snp_ip[2]))
snp_virt_to_service_dcn_key = "%s" % (find_snp_ip[2]) # Populates a dictionary with the following values: # ---->
# The external IP as a key
# The external port as a value
# This is used later on to print the correct service on the GSLB rule
global_variables.snp_virt_to_service_dcn.setdefault(snp_virt_to_service_dcn_key, [])
global_variables.snp_virt_to_service_dcn[snp_virt_to_service_dcn_key].append('%s' % (find_snp_ports[1]))
print >>output_file, "/c/slb/real Srv_%s" % (find_snp_ip[0]) # Starts printing the real server (the internal IP)
print >>output_file, " ena"
print >>output_file, " ipver v4"
print >>output_file, " rip %s" % (find_snp_ip[0])
print >>output_file, " health NoCheck"
print >>output_file, ' name "PAT Srv %s"' % (find_snp_ip[0])
print >>output_file, "/c/slb/group Srv_%s" % (find_snp_ip[0]) # Starts printing the group (for the internal IP)
print >>output_file, " ipver v4"
print >>output_file, " add Srv_%s" % (find_snp_ip[0])
print >>output_file, ' name "Group 4 PAT Srv %s"' % (find_snp_ip[0])
print >>output_file, "/c/slb/virt PAT_%s" % (find_snp_ip[2]) # Starts printing the virt (the external IP)
print >>output_file, " ena"
print >>output_file, " ipver v4"
print >>output_file, " vip %s" % (find_snp_ip[2])
print >>output_file, " rtsrcmac ena"
print >>output_file, ' vname "PAT %s"' % (find_snp_ip[2])
print >>output_file, ' dname "inherit"'
print >>output_file, ' wanlink "%s"' % (wanlink) # Associates the WAN link
if str(find_snp_ports[1]) in global_variables.port_to_service_dcn.keys(): # If the external port is a well-known port, we print the known service
print >>output_file, "/c/slb/virt PAT_%s/service %s %s" % (find_snp_ip[2], find_snp_ports[1], global_variables.port_to_service_dcn[str(find_snp_ports[1])])
else: # If it's not a well-known port, we print >>output_file, "basic-slb"
print >>output_file, "/c/slb/virt PAT_%s/service %s basic-slb" % (find_snp_ip[2], find_snp_ports[1])
if snp_name == 'error':
print >>output_file, ' name "PAT %s, %s"' % (find_snp_ip[2], find_snp_ports[1])
else:
print >>output_file, ' name "PAT %s"' % (snp_name)
print >>output_file, " group Srv_%s" % (find_snp_ip[0]) # Assicates the group (the internal IP)
print >>output_file, " rport %s" % (find_snp_ports[0]) # Configures the rport (the internal port)
print >>output_file, " protocol %s" % (snp_protocol) # Configuration the protocol
print >>output_file, " tmout %s" % (max_aging_time)
if alt_ha_mode == 1 or alt_ha_mode == 2:
print >>output_file, " mirror ena"
###############################
#### Smart NAT Section End ####
###############################
#######################################
#### Network Classes Section Start ####
#######################################
for line in lp_to_lpng: # Loops over the LP configuration
### ###
# Network Classes Configuration - Main Section #
### ###
## ##
# This is the main section used to find and configure all the network classes #
## ##
if "classes modify network" in line:
class_name = global_variables.find_fnc( line, 'setCreate "', '"' ) # Finds the network class name
if class_name == 'error': # If no double qoutes, finds again
class_name = global_variables.find_fnc( line, 'setCreate ', ' ' )
new_class_name = class_name
for unsupported_char, supported_char in global_variables.special_characters_dcn.iteritems():
new_class_name = new_class_name.replace ('%s' % (unsupported_char), "%s" % (supported_char))
class_id = global_variables.find_fnc( line, '%s" ' % (class_name), " " ) # Finds the network class ID
if class_id == 'error': # If not double quotes in the network class name, finds again
class_id = global_variables.find_fnc( line, '%s ' % (class_name), " " )
print >>output_file, "/c/slb/nwclss %s" % (new_class_name) # Starts printing the network class general configuration
print >>output_file, ' type "address"'
class_mode = global_variables.find_fnc( line, ' -m "', '"' ) # Finds the network class mode
if class_mode == 'IP Mask': # If the network class mode is "IP Mask"
class_addr = global_variables.find_fnc( line, " -a ", " " ) # Finds the network class address
class_mask = global_variables.find_fnc( line, " -s ", " " ) # Finds the network class mask
print >>output_file, "/c/slb/nwclss %s/network %s" % (new_class_name, class_id) # Starts printing the net, in mode subnet
print >>output_file, " net subnet %s %s include" % (class_addr, class_mask)
elif class_mode == 'IP Range': # If the network class mode is "IP Range"
class_from = global_variables.find_fnc( line, " -f ", " " ) # Finds the network class range start
class_to = global_variables.find_fnc( line, " -t ", " " ) # Finds the network class range end
print >>output_file, "/c/slb/nwclss %s/network %s" % (new_class_name, class_id) # Starts printing the net, in mode range
print >>output_file, " net range %s %s include" % (class_from, class_to)
#####################################
#### Network Classes Section End ####
#####################################
#####################################################
#### Outbound Policies and Filters Section Start ####
#####################################################
### ###
# Outbound Policies and filters - Filters 1-3 #
### ###
## ##
# This is the section used to configure filters 1-3 #
# These filters are used to catch important traffic, so it won't mistakenly match other filters: #
# #
# 1.) Filter 1 - Catch broadcasts and allow #
# 2.) Filter 2 - Catch multicasts and allow #
# 3.) Filter 3 - Catch traffic to local networks and allow #
## ##
print >>output_file, "/c/slb/filt 1" # Starts printing filter 1
print >>output_file, ' name "Broadcasts"'
print >>output_file, " ena"
print >>output_file, " action allow"
print >>output_file, " ipver v4"
print >>output_file, " sip any"
print >>output_file, " smask 0.0.0.0"
print >>output_file, " dmac ff:ff:ff:ff:ff:ff"
print >>output_file, " group 1"
print >>output_file, " rport 0"
print >>output_file, " vlan any"
for port in allports: # Loops over all ports list to add all ports
print >>output_file, " add %s" % (port)
print >>output_file, "/c/slb/filt 1/adv"
print >>output_file, " cache dis"
print >>output_file, " reverse ena"
print >>output_file, "/c/slb/nwclss Multicast" # Starts printing the multicast network class
print >>output_file, ' type "address"'
print >>output_file, " ipver v4"
print >>output_file, "/c/slb/nwclss Multicast/network 0"
print >>output_file, " net subnet 224.0.0.0 240.0.0.0 include"
print >>output_file, "/c/slb/filt 2" # Starts printing filter 2
print >>output_file, ' name "Multicast"'
print >>output_file, " ena"
print >>output_file, " action allow"
print >>output_file, " ipver v4"
print >>output_file, " sip any"
print >>output_file, " smask 0.0.0.0"
print >>output_file, " dip Multicast"
print >>output_file, " group 1"
print >>output_file, " rport 0"
print >>output_file, " vlan any"
for port in allports: # Loops over all ports list to add all ports
print >>output_file, " add %s" % (port)
print >>output_file, "/c/slb/filt 2/adv"
print >>output_file, " cache dis"
print >>output_file, " reverse ena"
print >>output_file, "/c/slb/nwclss Local_Networks" # Starts printing the local networks network class general configuration
print >>output_file, ' type "address"'
for subnet, mask in global_variables.subnet_to_mask_dcn.iteritems(): # Loops over the local subnets to mask dictionary
print >>output_file, "/c/slb/nwclss Local_Networks/net %s" % (global_variables.local_nets_nwclss_net_id) # For each local subnet, prints net
print >>output_file, " net subnet %s %s include" % (subnet, mask[0])
global_variables.local_nets_nwclss_net_id += 1
print >>output_file, "/c/slb/filt 3" # Starts printing filter 3
print >>output_file, ' name "Allow Local Networks"'
print >>output_file, " ena"
print >>output_file, " action allow"
print >>output_file, " ipver v4"
print >>output_file, " sip any"
print >>output_file, " smask 0.0.0.0"
print >>output_file, " dip Local_Networks"
print >>output_file, " group 1"
print >>output_file, " rport 0"
print >>output_file, " vlan any"
for port in allports: # Loops over all ports list to add all ports
print >>output_file, " add %s" % (port)
print >>output_file, "/c/slb/filt 3/adv"
print >>output_file, " cache dis"
print >>output_file, " reverse ena"
for line in lp_to_lpng: # Loops over the LP configuration
### ###
# Outbound Policies and filters - Finding the services classes #
### ###
## ##
# This is the section used to find the services classes #
# In this section, we find only the basic services and or-groups #
# They're later on used on the filters #
## ##
if "classes modify service basic" in line:
basic_service_name = global_variables.find_fnc( line, ' setCreate "', '"' ) # Finds the basic service name
if basic_service_name == 'error': # If no double quotes, find again
basic_service_name = global_variables.find_fnc( line, " setCreate ", " " )
basic_service_protocol = global_variables.find_fnc( line, " -pr ", " " ) # Finds the basic service protocol
basic_service_dport = global_variables.find_fnc( line, " -dp ", " " ) # Finds the basic service destination port
user_defined_basic_services_key = "%s" % (basic_service_name) # Populates a dictionary with the following values: # ---->
# Basic services name as a key # ---->
# A list containing the protocol and dport as values # ---->
# This is later on used to configure the dport on the filters
global_variables.user_defined_basic_services_dcn.setdefault(user_defined_basic_services_key, [])
global_variables.user_defined_basic_services_dcn[user_defined_basic_services_key].append('%s' % (basic_service_protocol))
global_variables.user_defined_basic_services_dcn[user_defined_basic_services_key].append('%s' % (basic_service_dport))
### ###
# Outbound Policies and filters - Main Section #
### ###
## ##
# This is the main section used to find the outbound policies and print the filters #
# In this section, we find the outbound policies configuraiton and we print the filters accordingly #
# #
# Rules: #
# #
# 1.) Even if the policies we not ordered in the LP configuration, we print them in the correct order #
# 2.) We always start with filter index 101 #
# This means that the original policy ID will have its index incremented by 100 on the Alteon #
# This is because the first filters (1-3) are for the broadcasts, multicasts and local networks #
# 3.) We convert only policies with basic services, or-groups or no service #
# We will convert the following services: #
# a. User defined basic services #
# b. Default system basic services #
# c. Default system or-groups #
# #
# We will not convert user defined or-groups and any and-groups #
# 4.) For policies with services that have more than one service port which is not continuous: #
# a. We duplicate the filter per the amount of services #
# b. We append the following to the end of the original policy name #
# i. An underscore ("_") #
# ii. An incermenting number (starting from 1) to the end of the original policy name #
# c. We retain the original gap between the policies #
## ##
if "modify-policy-table" in line:
policy_id = global_variables.find_fnc( line, " -i ", " " ) # Finds the policy ID
key_outbound_pols_dcn = "%s" % (line) # Populates a dictionary with the following values: # ---->
# The complete policy configuration line as a key # ---->
# The policy ID as a value # ---->
# This is used later on to sort the policies based on their IDs
global_variables.outbound_pols_dcn.setdefault(key_outbound_pols_dcn, [])
global_variables.outbound_pols_dcn[key_outbound_pols_dcn].append('%s' % (policy_id))
int_outbound_pols_dcn = {k:int(v[0]) for k, v in global_variables.outbound_pols_dcn.iteritems()} # Converts the values to integers
sorted_int_outbound_pols_dcn = sorted(int_outbound_pols_dcn.items(), key=operator.itemgetter(1)) # Converts the dictionary to a list of tuples and sorts it
for cmd, pol_id in sorted_int_outbound_pols_dcn: # Loops over the sorted policy configuration
### ###
# Find Policy Configuration Section #
### ###
policy_id = global_variables.find_fnc( cmd, " -i ", " " ) # Finds the policy ID
policy_id = int(policy_id) # Converts the policy ID to an integer
new_policy_id = policy_id - global_variables.static_pol_id # Not in use anymore
policy_name = global_variables.find_fnc( cmd, "setCreate ", " -i" ) # Finds the policy name
policy_name = policy_name.replace ('"', "")
policy_dst = global_variables.find_fnc( cmd, ' -dst "', '" ' ) # Finds policy destination port
if policy_dst == 'error': # If no double quotes, finds again
policy_dst = global_variables.find_fnc( cmd, ' -dst ', ' ' )
if policy_dst == 'error': # If no destination port, it's "any"
policy_dst = 'any'
if policy_dst != 'error':
for unsupported_char, supported_char in global_variables.special_characters_dcn.iteritems():
policy_dst = policy_dst.replace ('%s' % (unsupported_char), "%s" % (supported_char))
policy_src = global_variables.find_fnc( cmd, ' -src "', '" ' ) # Finds the policy source port
if policy_src == 'error': # If no double quotes, find again
policy_src = global_variables.find_fnc( cmd, ' -src ', ' ' )
if policy_src == 'error': # If not source port, it's "any"
policy_src = 'any'
if policy_src != 'error':
for unsupported_char, supported_char in global_variables.special_characters_dcn.iteritems():
policy_src = policy_src.replace ('%s' % (unsupported_char), "%s" % (supported_char))
policy_fc = global_variables.find_fnc( cmd, ' -fc "', '"' ) # Finds the policy farm flow
if policy_fc == 'error': # If no double quotes, find again
policy_fc = global_variables.find_fnc( cmd, " -fc ", " " )
if policy_fc != 'error': # If the farm flow exists
policy_farm = global_variables.farm_flow_to_farm_dcn[policy_fc][0] # Extracts the associated farm, will be used as the group in the filter
else: # If no farm flow is associated to the policy
policy_farm = default_group # Uses the deafult group and will associate it to the filter
policy_service_type = global_variables.find_fnc( cmd, ' -pt "', '"' ) # Finds the policy services type
if policy_service_type == "Basic Filter" or policy_service_type == "OR Group": # If it's "Basic Filter" or "OR Group"
policy_service = global_variables.find_fnc( cmd, ' -p "', '"' ) # Finds the policy service
if policy_service == 'error': # If no double quotes, find again
policy_service = global_variables.find_fnc( cmd, ' -p ', ' ' )
policy_operational_status = global_variables.find_fnc( cmd, ' -os ', ' ' ) # Finds the policy operational status
### ###
# Print Filters Section #
### ###
def print_filt_fnc(proto):
'''Prints the filter configuration.
Takes the service protocol as an argument.
'''
print >>output_file, "/c/slb/filt %s" % (new_policy_id2) # Starts printing the filter
if ((' -pt "Basic Filter"' in cmd or ' -pt "OR Group"' in cmd) and proto == "single") or (proto == "noService"):
print >>output_file, ' name "%s"' % (policy_name)
elif (' -pt "Basic Filter"' in cmd or ' -pt "OR Group"' in cmd):
print >>output_file, ' name "%s_%s"' % (policy_name, filt_name_index)
if policy_operational_status == 'error':
print >>output_file, " ena"
else:
print >>output_file, " dis"
print >>output_file, " action outbound-llb"
print >>output_file, " ipver v4"
find_policy_src_ip = re.findall( r"^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$",policy_src)
if len(find_policy_src_ip) == 1: # If policy source is an IP address, use "sip" and "smask"
print >>output_file, " sip %s" % (find_policy_src_ip[0])
print >>output_file, " smask 255.255.255.255"
else: # If policy source is a network class, use "sip" without "smask"
print >>output_file, " sip %s" % (policy_src)
find_policy_dst_ip = re.findall( r"^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$",policy_dst)
if len(find_policy_dst_ip) == 1:
print >>output_file, " dip %s" % (find_policy_dst_ip[0])
print >>output_file, " dmask 255.255.255.255"
else:
print >>output_file, " dip %s" % (policy_dst)
if (' -pt "Basic Filter"' in cmd or ' -pt "OR Group"' in cmd) and proto == "single": # Services conditions for single services
if policy_service_type == "Basic Filter" and policy_service == "icmp":
print >>output_file, " proto icmp"
elif policy_service_type == "Basic Filter" and policy_service == "tcp":
print >>output_file, " proto tcp"
elif policy_service_type == "Basic Filter" and policy_service == "udp":
print >>output_file, " proto udp"
elif policy_service_type == "Basic Filter" and policy_service == "sctp":
print >>output_file, " proto 132"
elif policy_service_type == "Basic Filter" and policy_service != "ip":
if policy_service in global_variables.basic_services_dcn.keys():
print >>output_file, " proto %s" % (global_variables.basic_services_dcn[policy_service][0])
print >>output_file, " dport %s" % (global_variables.basic_services_dcn[policy_service][1])
elif policy_service in global_variables.user_defined_basic_services_dcn.keys():
if global_variables.user_defined_basic_services_dcn[policy_service][0] == "TCP":
print >>output_file, " proto tcp"
elif global_variables.user_defined_basic_services_dcn[policy_service][0] == "UDP":
print >>output_file, " proto udp"
print >>output_file, " dport %s" % (global_variables.user_defined_basic_services_dcn[policy_service][1])
elif (' -pt "Basic Filter"' in cmd or ' -pt "OR Group"' in cmd): # If services have multiple ports
print >>output_file, " proto %s" % (proto)
print >>output_file, " dport %s" % (port_service)
print >>output_file, " group %s" % (policy_farm)
print >>output_file, " rport 0"
print >>output_file, " vlan %s" % (ingress_vlan)
for port in ingress_ports:
print >>output_file, " add %s" % (port)
print >>output_file, "/c/slb/filt %s/adv" % (new_policy_id2)
if policy_farm in global_variables.orig_dm_dcn.keys():
if global_variables.orig_dm_dcn[policy_farm][0] == "Hashing" or global_variables.orig_dm_dcn[policy_farm][0] == "Layer-3 Hashing":
print >>output_file, " thash both"
elif global_variables.orig_dm_dcn[policy_farm][0] == "Destination IP Hashing":
print >>output_file, " thash dip32"
print >>output_file, " rtsrcmac ena"
print >>output_file, " reverse ena"
if alt_ha_mode == 1 or alt_ha_mode == 2:
print >>output_file, " mirror ena"
if proximity_mode == 'Full Proximity Outbound' or proximity_mode == 'Full Proximity Both':
print >>output_file, " prximity ena"
print >>output_file, "/c/slb/filt %s/adv/layer7" % (new_policy_id2)
print >>output_file, " ftpa ena"
if policy_farm in global_variables.orig_dm_dcn.keys():
if global_variables.orig_dm_dcn[policy_farm][0] != "Hashing" and global_variables.orig_dm_dcn[policy_farm][0] != "Layer-3 Hashing" and global_variables.orig_dm_dcn[policy_farm][0] != "Source IP Hashing" and global_variables.orig_dm_dcn[policy_farm][0] != "Destination IP Hashing":
print >>output_file, "/c/slb/filt %s/adv/redir" % (new_policy_id2)
print >>output_file, " pbind e"
if "modify-policy-table" in cmd and "-i 0" not in cmd and (' -pt "Basic Filter"' in cmd or ' -pt "OR Group"' in cmd): # If the policy has a basic filter or an OR group
if "%s" % (policy_service) in global_variables.basic_multi_services_ports_dcn.keys(): # If the service in the policy is one of the system default basic filters with more than one service port which is not continuous
for x, port_service in enumerate(global_variables.basic_multi_services_ports_dcn[policy_service]): # Loops over the ports of the multi service basic filter
filt_name_index = global_variables.basic_multi_services_ports_dcn[policy_service].index('%s' % (port_service))
filt_name_index = filt_name_index + 1
new_policy_id2 = policy_id + global_variables.new_filt_id_diff + global_variables.multi_pol_id
diff_orig = policy_id - global_variables.last_orig_pol_id
diff_new = new_policy_id2 - global_variables.last_new_pol_id
new_policy_id2 = global_variables.last_new_pol_id + diff_orig + global_variables.multi_pol_id
print_filt_fnc(global_variables.basic_multi_services_protocols_dcn[policy_service]) # Executes the print filter fuction
global_variables.multi_pol_id = 1
global_variables.last_orig_pol_id = policy_id
global_variables.last_new_pol_id = new_policy_id2
last = len(global_variables.basic_multi_services_ports_dcn[policy_service]) - 1
if x == last:
global_variables.multi_pol_id = 0
elif "%s" % (policy_service) in global_variables.or_groups_multi_services_ports_dcn.keys(): # If the service in the policy is one of the system default OR-Groups with more than one service port which is not continuous
for x, port_service in enumerate(global_variables.or_groups_multi_services_ports_dcn[policy_service]): # Loops over the ports of the multi service OR-Group
filt_name_index = global_variables.or_groups_multi_services_ports_dcn[policy_service].index('%s' % (port_service))
filt_name_index = filt_name_index + 1
new_policy_id2 = policy_id + global_variables.new_filt_id_diff + global_variables.multi_pol_id
diff_orig = policy_id - global_variables.last_orig_pol_id
diff_new = new_policy_id2 - global_variables.last_new_pol_id
new_policy_id2 = global_variables.last_new_pol_id + diff_orig + global_variables.multi_pol_id
print_filt_fnc(global_variables.or_groups_multi_services_protocols_dcn[policy_service]) # Executes the print filter fuction
global_variables.multi_pol_id = 1
global_variables.last_orig_pol_id = policy_id
global_variables.last_new_pol_id = new_policy_id2
last = len(global_variables.or_groups_multi_services_ports_dcn[policy_service]) - 1
if x == last:
global_variables.multi_pol_id = 0
else: # If the service in the policy is one of the system default single service basic filters or one of the user define single service basic filters
diff_orig = policy_id - global_variables.last_orig_pol_id
new_policy_id2 = policy_id + global_variables.new_filt_id_diff
diff_new = new_policy_id2 - global_variables.last_new_pol_id
if diff_orig != diff_new:
new_policy_id2 = global_variables.last_new_pol_id + diff_orig
print_filt_fnc("single") # Executes the print filter fuction
global_variables.last_orig_pol_id = policy_id
global_variables.last_new_pol_id = new_policy_id2
elif "modify-policy-table" in cmd and "-i 0" not in cmd: # If the policy has no service associated
diff_orig = policy_id - global_variables.last_orig_pol_id
new_policy_id2 = policy_id + global_variables.new_filt_id_diff
diff_new = new_policy_id2 - global_variables.last_new_pol_id
if diff_orig != diff_new:
new_policy_id2 = global_variables.last_new_pol_id + diff_orig
print_filt_fnc("noService") # Executes the print filter fuction
global_variables.last_orig_pol_id = policy_id
global_variables.last_new_pol_id = new_policy_id2
### ###
# Default Filter Section #
### ###
if len(default_group) != 0:
print >>output_file, "/c/slb/filt 2048"
print >>output_file, ' name "Default Filter"'
print >>output_file, " ena"
print >>output_file, " action outbound-llb"
print >>output_file, " ipver v4"
print >>output_file, " sip any"
print >>output_file, " dip any"
print >>output_file, " group %s" % (default_group)
print >>output_file, " rport 0"
print >>output_file, " vlan %s" % (ingress_vlan)
for port in ingress_ports:
print >>output_file, " add %s" % (port)
print >>output_file, "/c/slb/filt 2048/adv"
if default_group in global_variables.orig_dm_dcn.keys():
if global_variables.orig_dm_dcn[default_group][0] == "Hashing" or global_variables.orig_dm_dcn[default_group][0] == "Layer-3 Hashing":
print >>output_file, " thash both"
elif global_variables.orig_dm_dcn[default_group][0] == "Destination IP Hashing":
print >>output_file, " thash dip32"
print >>output_file, " reverse ena"
print >>output_file, " rtsrcmac ena"
if alt_ha_mode == 1 or alt_ha_mode == 2:
print >>output_file, " mirror ena"
if proximity_mode == 'Full Proximity Outbound' or proximity_mode == 'Full Proximity Both':
print >>output_file, " prximity ena"
print >>output_file, "/c/slb/filt 2048/adv/layer7"
print >>output_file, " ftpa ena"
if default_group in global_variables.orig_dm_dcn.keys():
if global_variables.orig_dm_dcn[default_group][0] != "Hashing" and global_variables.orig_dm_dcn[default_group][0] != "Layer-3 Hashing" and global_variables.orig_dm_dcn[default_group][0] != "Source IP Hashing" and global_variables.orig_dm_dcn[default_group][0] != "Destination IP Hashing":
print >>output_file, "/c/slb/filt 2048/adv/redir"
print >>output_file, " pbind e"
###################################################
#### Outbound Policies and Filters Section End ####
###################################################
###############################################
#### Proximity Configuraiton Section Start ####
###############################################
## ##
# This is the main section used to configure proximity #
# In this section we use information collected ealier and print the proximity configuration #
## ##
for line in lp_to_lpng: # Loops over the LP configuration
if "lp proximity mode" in line and proximity_mode != 'No Proximity': # If proximity is configured
print >>output_file, "/cfg/slb/prximity/" # Starts printing the proximity configuration
if proximity_aging == 2800:
print >>output_file, " aging 2800"
elif proximity_aging > 2880:
print >>output_file, " aging 2880"
else:
print >>output_file, " aging %s" % (proximity_aging)
if proximity_interval != 5:
print >>output_file, " inter %s" % (proximity_interval)
if proximity_retries != 3:
print >>output_file, " retry %s" % (proximity_retries)
if proximity_mask != '255.255.255.0':
print >>output_file, " v4mask %s" % (proximity_mask)
print >>output_file, " on"
if proximity_main_dns != '0.0.0.0':
print >>output_file, "/cfg/slb/prximity/localdns/add %s" % (proximity_main_dns)
if proximity_backup_dns != '0.0.0.0':
print >>output_file, "/cfg/slb/prximity/localdns/add %s" % (proximity_backup_dns)
#############################################
#### Proximity Configuraiton Section End ####
#############################################
############################
#### GSLB Section Start ####
############################
### ###
# GSLB - Main Section #
### ###
## ##
# This is the main section used to find and configure all of the GSLB configuration #
# In this section, we fine the DNS configuration and print the Alteon equivalent #
# #
# Rules: #
# #
# 1.) We don't repeat GSLB networks with the same configuration #
# The key for not repeating is always the local IP + WAN link group #
# 2.) We check if the local IP is static NAT, no NAT or PAT #
# If it's static NAT or no NAT, we use GSLB network of type server #
# If it's PAT, we use GSLB rule of type group #
# 3.) If the local IP doesn't exist in any Smart NAT object, we don't print the GSLB network and rule #
# 4.) We currently do NOT support modes "Always Local IP" or "Always NAT Address" #
# 5.) When detecting a farm with NAT mode disable, we currently associate the specfial "_GSLB" WAN group #
# This is not the desired behaviour and will be changed soon #
## ##
### ###
# GSLB - GSLB Networks Section #
### ###
for line in lp_to_lpng: # Loops over the LP configuration
if "lp dns response-mode" in line:
dns_response_mode = global_variables.find_fnc( line, 'set "', '"' ) # Finds the DNS response mode
break
else:
dns_response_mode = "According To SmartNat Mode"
dummy_vip_range = global_variables.ipRange_fnc("169.254.0.1", "169.254.7.254")
for line in lp_to_lpng: # Loops over the LP configuration
if "name-to-ip create" in line:
dns_lia = re.findall( r'[0-9]+(?:\.[0-9]+){3}', line ) # Finds the local IP
dns_lia = dns_lia[0]
dns_farm = global_variables.find_fnc( line, ' -fn "', '"' ) # Finds the associated farm
if dns_farm == 'error': # If no double quotes, try again
dns_farm = global_variables.find_fnc( line, " -fn ", " " )
new_dns_farm = dns_farm
for unsupported_char, supported_char in global_variables.special_characters_dcn.iteritems():
new_dns_farm = new_dns_farm.replace ('%s' % (unsupported_char), "%s" % (supported_char))
if dns_response_mode == "According To SmartNat Mode":
if "%s_%s" % (dns_lia, dns_farm) not in global_variables.lia_to_gslb_nets_dcn.keys():
if dns_lia in global_variables.smart_nat_local_ips_lst: # If there's a Smart NAT entry for the local IP
if dns_lia in global_variables.type_group_local_lst: # If local IP is in Smart NAT static PAT entry
if dns_farm != 'error': # If a farm is associated to the DNS entry
if dns_farm in global_variables.dns_farms_nonat_lst: # If the associated farm is a no NAT farm
global_variables.gslb_net_id += 1
lia_to_gslb_nets_dcn_key = "%s_%s" % (dns_lia, dns_farm)
global_variables.lia_to_gslb_nets_dcn.setdefault(lia_to_gslb_nets_dcn_key, [])
global_variables.lia_to_gslb_nets_dcn[lia_to_gslb_nets_dcn_key].append('%s' % (global_variables.gslb_net_id))
print_dummy_slb_fnc(dns_lia, dummy_vip_range[global_variables.dummy_vip_id], global_variables.gslb_net_id)
global_variables.dummy_vip_id += 1
global_variables.dummy_status = 1
else: # If the associated farm is a NAT farm
for real, virt in global_variables.snp_real_to_virt_dcn.iteritems(): # Loops over the real to virt mapping dictionary
if real == dns_lia: # If the local IP is the same as the real
for virt3 in virt:
if virt3 not in global_variables.virts_to_gslb_nets_dcn.keys(): # If this GSLB network wasn't configured yet
global_variables.gslb_net_id += 1 # Increments the GSLB network ID by 1
virts_to_gslb_nets_dcn_key = "%s" % (virt3) # Adds the GSLB network to the dictionary, so we don't configure it again
global_variables.virts_to_gslb_nets_dcn.setdefault(virts_to_gslb_nets_dcn_key, [])
global_variables.virts_to_gslb_nets_dcn[virts_to_gslb_nets_dcn_key].append('%s' % (global_variables.gslb_net_id))
print >>output_file, "/c/slb/gslb/network %s" % (global_variables.gslb_net_id) # Starts printing the GSLB network
print >>output_file, " ena"
print >>output_file, " servtyp group"
for real, virt in global_variables.snp_real_to_virt_dcn.iteritems(): # Loops over the real to virt mapping dictionary
if real == dns_lia: # If the real is the same as the local IP
for virt in virt: # Loops over the virts mapped to this real
print >>output_file, " addvirt PAT_%s 1" % (virt) # Adds each virt to the GSLB network
break
break
break
break
else: # If no farm is associated to the DNS entry, the LP behaviour is complicated to predict # ---->
# The script will behave as if the DNS resolution is with the Smart NAT entry
for real, virt in global_variables.snp_real_to_virt_dcn.iteritems(): # Loops over the real to virt mapping dictionary
if real == dns_lia: # If the local IP is the same as the real
for virt3 in virt:
if virt3 not in global_variables.virts_to_gslb_nets_dcn.keys(): # If this GSLB network wasn't configured yet
global_variables.gslb_net_id += 1 # Increments the GSLB network ID by 1
virts_to_gslb_nets_dcn_key = "%s" % (virt3) # Adds the GSLB network to the dictionary, so we don't configure it again
global_variables.virts_to_gslb_nets_dcn.setdefault(virts_to_gslb_nets_dcn_key, [])
global_variables.virts_to_gslb_nets_dcn[virts_to_gslb_nets_dcn_key].append('%s' % (global_variables.gslb_net_id))
print >>output_file, "/c/slb/gslb/network %s" % (global_variables.gslb_net_id) # Starts printing the GSLB network
print >>output_file, " ena"
print >>output_file, " servtyp group"
for real, virt in global_variables.snp_real_to_virt_dcn.iteritems(): # Loops over the real to virt mapping dictionary
if real == dns_lia: # If the real is the same as the local IP
for virt in virt: # Loops over the virts mapped to this real
print >>output_file, " addvirt PAT_%s 1" % (virt) # Adds each virt to the GSLB network
break
break
break
#break
else: # If the local IP is in Smart NAT static NAT or "no NAT" entry
if dns_farm != 'error': # If a farm is associated to the DNS entry
if dns_farm in global_variables.dns_farms_nonat_lst: # If the associated farm is a no NAT farm
global_variables.gslb_net_id += 1
lia_to_gslb_nets_dcn_key = "%s_%s" % (dns_lia, dns_farm)
global_variables.lia_to_gslb_nets_dcn.setdefault(lia_to_gslb_nets_dcn_key, [])
global_variables.lia_to_gslb_nets_dcn[lia_to_gslb_nets_dcn_key].append('%s' % (global_variables.gslb_net_id))
print_dummy_slb_fnc(dns_lia, dummy_vip_range[global_variables.dummy_vip_id], global_variables.gslb_net_id)
global_variables.dummy_vip_id += 1
global_variables.dummy_status = 1
else: # If the associated farm is a NAT farm
global_variables.gslb_net_id += 1 # Increments the GSLB network ID by 1
lia_to_gslb_nets_dcn_key = "%s_%s" % (dns_lia, dns_farm) # Adds the GSLB Network to the dictionary, so we don't configure it again
global_variables.lia_to_gslb_nets_dcn.setdefault(lia_to_gslb_nets_dcn_key, [])
global_variables.lia_to_gslb_nets_dcn[lia_to_gslb_nets_dcn_key].append('%s' % (global_variables.gslb_net_id))
print >>output_file, "/c/slb/gslb/network %s" % (global_variables.gslb_net_id) # Starts printing the GSLB network
print >>output_file, " ena"
print >>output_file, " servtyp server"
print >>output_file, " servip %s" % (dns_lia)
print >>output_file, " wangrp %s" % (new_dns_farm)
else: # If no farm is associated to the DNS entry, the LP behaviour is complicated to predict # ---->
# The script will behave as if the DNS resolution is with the the Smart entry
global_variables.gslb_net_id += 1 # Increments the GSLB network ID by 1
lia_to_gslb_nets_dcn_key = "%s_%s" % (dns_lia, dns_farm) # Adds the GSLB Network to the dictionary, so we don't configure it again
global_variables.lia_to_gslb_nets_dcn.setdefault(lia_to_gslb_nets_dcn_key, [])
global_variables.lia_to_gslb_nets_dcn[lia_to_gslb_nets_dcn_key].append('%s' % (global_variables.gslb_net_id))
print >>output_file, "/c/slb/gslb/network %s" % (global_variables.gslb_net_id) # Starts printing the GSLB network
print >>output_file, " ena"
print >>output_file, " servtyp server"
print >>output_file, " servip %s" % (dns_lia)
else: # If there's no Smart NAT entry for the local IP
if dns_farm != 'error': # If a farm is associated to the DNS entry
if dns_farm in global_variables.dns_farms_nonat_lst: # If the associated farm is a no NAT farm
global_variables.gslb_net_id += 1
lia_to_gslb_nets_dcn_key = "%s_%s" % (dns_lia, dns_farm)
global_variables.lia_to_gslb_nets_dcn.setdefault(lia_to_gslb_nets_dcn_key, [])
global_variables.lia_to_gslb_nets_dcn[lia_to_gslb_nets_dcn_key].append('%s' % (global_variables.gslb_net_id))
print_dummy_slb_fnc(dns_lia, dummy_vip_range[global_variables.dummy_vip_id], global_variables.gslb_net_id)
global_variables.dummy_vip_id += 1
global_variables.dummy_status = 1
else:
current_time = datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S.%f')
print >>migration_errors, '%s #Command_not_migrated: the following command has not been migrated:' % (current_time)
print >>migration_errors, " Command: %s" % (line)
print >>migration_errors, ' Reason: Local IP %s in this DNS rule, is not in the Smart NAT table, response mode is "According to SmartNAT Mode" and the associated farm is a "NAT Mode Enabled" farm.' % (dns_lia)
print >>migration_errors, ' Therefore, this DNS rule is not migrated.'
#else: # If no farm is associated to the DNS entry
#global_variables.gslb_net_id += 1
#lia_to_gslb_nets_dcn_key = "%s_%s" % (dns_lia, dns_farm)
#global_variables.lia_to_gslb_nets_dcn.setdefault(lia_to_gslb_nets_dcn_key, [])
#global_variables.lia_to_gslb_nets_dcn[lia_to_gslb_nets_dcn_key].append('%s' % (global_variables.gslb_net_id))
#print_dummy_slb_fnc(dns_lia, dummy_vip_range[global_variables.dummy_vip_id], global_variables.gslb_net_id)
#global_variables.dummy_vip_id += 1
#global_variables.dummy_status = 1
elif dns_response_mode == "Always Local IP Address":
if "%s_%s" % (dns_lia, dns_farm) not in global_variables.lia_to_gslb_nets_dcn.keys():
global_variables.gslb_net_id += 1
lia_to_gslb_nets_dcn_key = "%s_%s" % (dns_lia, dns_farm)
global_variables.lia_to_gslb_nets_dcn.setdefault(lia_to_gslb_nets_dcn_key, [])
global_variables.lia_to_gslb_nets_dcn[lia_to_gslb_nets_dcn_key].append('%s' % (global_variables.gslb_net_id))
print_dummy_slb_fnc(dns_lia, dummy_vip_range[global_variables.dummy_vip_id], global_variables.gslb_net_id)
global_variables.dummy_vip_id += 1
global_variables.dummy_status = 1
elif dns_response_mode == "Always NAT IP Address":
if "%s_%s" % (dns_lia, dns_farm) not in global_variables.lia_to_gslb_nets_dcn.keys():
if dns_lia in global_variables.smart_nat_local_ips_lst: # If there's a Smart NAT entry for the local IP
if dns_lia in global_variables.type_group_local_lst: # If local IP is in Smart NAT static PAT entry
for real, virt in global_variables.snp_real_to_virt_dcn.iteritems(): # Loops over the real to virt mapping dictionary
if real == dns_lia: # If the local IP is the same as the real
for virt3 in virt:
if virt3 not in global_variables.virts_to_gslb_nets_dcn.keys(): # If this GSLB network wasn't configured yet
global_variables.gslb_net_id += 1 # Increments the GSLB network ID by 1
virts_to_gslb_nets_dcn_key = "%s" % (virt3) # Adds the GSLB network to the dictionary, so we don't configure it again
global_variables.virts_to_gslb_nets_dcn.setdefault(virts_to_gslb_nets_dcn_key, [])
global_variables.virts_to_gslb_nets_dcn[virts_to_gslb_nets_dcn_key].append('%s' % (global_variables.gslb_net_id))
print >>output_file, "/c/slb/gslb/network %s" % (global_variables.gslb_net_id) # Starts printing the GSLB network
print >>output_file, " ena"
print >>output_file, " servtyp group"
for real, virt in global_variables.snp_real_to_virt_dcn.iteritems(): # Loops over the real to virt mapping dictionary
if real == dns_lia: # If the real is the same as the local IP
for virt in virt: # Loops over the virts mapped to this real
print >>output_file, " addvirt PAT_%s 1" % (virt) # Adds each virt to the GSLB network
break
break
break
break
else: # If the local IP is in Smart NAT static NAT or "no NAT" entry
global_variables.gslb_net_id += 1 # Increments the GSLB network ID by 1
lia_to_gslb_nets_dcn_key = "%s_%s" % (dns_lia, dns_farm) # Adds the GSLB Network to the dictionary, so we don't configure it again
global_variables.lia_to_gslb_nets_dcn.setdefault(lia_to_gslb_nets_dcn_key, [])
global_variables.lia_to_gslb_nets_dcn[lia_to_gslb_nets_dcn_key].append('%s' % (global_variables.gslb_net_id))
print >>output_file, "/c/slb/gslb/network %s" % (global_variables.gslb_net_id) # Starts printing the GSLB network
print >>output_file, " ena"
print >>output_file, " servtyp server"
print >>output_file, " servip %s" % (dns_lia)
if dns_farm != 'error': # If a farm is associated to the DNS entry
print >>output_file, " wangrp %s" % (new_dns_farm)
else: # If there's no Smart NAT entry for the local IP
if dns_farm == 'error': # If no farm is associated to the DNS entry
global_variables.gslb_net_id += 1
lia_to_gslb_nets_dcn_key = "%s_%s" % (dns_lia, dns_farm)
global_variables.lia_to_gslb_nets_dcn.setdefault(lia_to_gslb_nets_dcn_key, [])
global_variables.lia_to_gslb_nets_dcn[lia_to_gslb_nets_dcn_key].append('%s' % (global_variables.gslb_net_id))
print_dummy_slb_fnc(dns_lia, dummy_vip_range[global_variables.dummy_vip_id], global_variables.gslb_net_id)
global_variables.dummy_vip_id += 1
global_variables.dummy_status = 1
else:
current_time = datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S.%f')
print >>migration_errors, '%s #Command_not_migrated: the following command has not been migrated:' % (current_time)
print >>migration_errors, " Command: %s" % (line)
print >>migration_errors, ' Reason: Local IP %s in this DNS rule, is not in the Smart NAT table, response mode is "Always NAT IP Address" and there is a farm associated.' % (dns_lia)
print >>migration_errors, ' Therefore, this DNS rule is not migrated.'
### ###
# GSLB - GSLB Rules Section #
### ###
for line in lp_to_lpng: # Loops over the LP configuration
if "name-to-ip create" in line:
dns_name = global_variables.find_fnc( line, "create ", " -lia" ) # Finds the domain name
dns_farm2 = global_variables.find_fnc( line, ' -fn "', '"' ) # Finds the farm associated with the DNS rule
if dns_farm2 == 'error': # If no double quotes, find again
dns_farm2 = global_variables.find_fnc( line, " -fn ", " " )
new_dns_farm2 = dns_farm2
for unsupported_char, supported_char in global_variables.special_characters_dcn.iteritems():
new_dns_farm2 = new_dns_farm2.replace ('%s' % (unsupported_char), "%s" % (supported_char))
if new_dns_farm2 in global_variables.farm_parameters_dcn.keys(): # Defines the gmetric according to the farm's metric
if global_variables.farm_parameters_dcn[new_dns_farm2][0] == "roundrobin" or global_variables.farm_parameters_dcn[new_dns_farm2][0] == "leastconns" or global_variables.farm_parameters_dcn[new_dns_farm2][0] == "bandwidth":
net_gmetric3 = global_variables.farm_parameters_dcn[new_dns_farm2][0]
else: # If the farm has a metric which is not supported as gmetric, use bandwidth
net_gmetric3 = "bandwidth"
if dns_farm2 in global_variables.orig_farm_parameters_dcn.keys():
current_time = datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S.%f')
print >>migration_errors, '\033[1m%s\033[0m #Unsupported_flag_option: the following command contains a flag with an unsupported option:' % (current_time)
print >>migration_errors, ' Unsupported flag option: the farm associated with the DNS rule has a metric which is not supported as gmetric.'
print >>migration_errors, ' Command: %s' % (line)
print >>migration_errors, ' Farm: %s.' % (dns_farm2)
print >>migration_errors, ' Metric: %s.' % (global_variables.orig_farm_parameters_dcn[dns_farm2][0])
print >>migration_errors, ' Alteon will use "gmetric bandwidth".'
else: # If no farm associated, uses gmetric bandwidth
net_gmetric3 = "bandwidth"
dns_lia2 = re.findall( r'[0-9]+(?:\.[0-9]+){3}', line ) # Finds the local IP
dns_lia2 = dns_lia2[0]
dns_lia_and_farm = "%s_%s" % (dns_lia2, dns_farm2) # Binds the local IP and farm
if dns_lia2 in global_variables.smart_nat_local_ips_lst: # If the local IP is in Smart NAT
if dns_lia_and_farm in global_variables.lia_to_gslb_nets_dcn: # If the local IP and farm are already define in a GSLB network
if len(global_variables.lia_to_gslb_nets_dcn[dns_lia_and_farm]) > 0: # Validate that the value (the GSLB network ID) is not empty
net_rule = global_variables.lia_to_gslb_nets_dcn[dns_lia_and_farm][0] # Uses the GSLB network ID in this GSLB rule
global_variables.gslb_rule_id += 1 # Increment the GSLB rule ID by 1
elif dns_lia2 in global_variables.type_group_local_lst: # If the local IP is in PAT
for real, virt in global_variables.snp_real_to_virt_dcn.iteritems(): # Loops over the real to virt mapping dictionary
if real == dns_lia2: # If the real server is the same as the local IP
for virt4 in virt: # Loops over the associated virts
if virt4 in global_variables.virts_to_gslb_nets_dcn.keys(): # If the virt is already defined in a GSLB network
if len(global_variables.virts_to_gslb_nets_dcn[virt4]) > 0: # Validates that the value (the GSLB network ID) is not empty
net_rule = global_variables.virts_to_gslb_nets_dcn[virt4][0] # Uses the GSLB network ID in this GSLB rule
global_variables.gslb_rule_id += 1 # Increments the GSLB rule ID by 1
print >>output_file, "/c/slb/gslb/rule %s" % (global_variables.gslb_rule_id) # Starts printing the GSLB rule
print >>output_file, " ena"
if dns_lia2 in global_variables.type_group_local_lst: # If the local IP is in PAT
for real, virt in global_variables.snp_real_to_virt_dcn.iteritems(): # Loops over the real to virt mapping dictionary
if real == dns_lia2: # If the real is the same as the local IP
for virt in virt: # Loops over the associated virts
for virt2, service in global_variables.snp_virt_to_service_dcn.iteritems(): # Loops over the virt to service dictionary
if virt2 == virt: # If the virt in the dictionary is the same as the virt associated to this local IP
print >>output_file, " type inbound-llb %s" % (service[0]) # Prints the inbound LLB rule command with the correct service
break
break
break
else: # If the local IP is in static NAT or no NAT
if int(net_rule) in global_variables.nonat_gslb_nets_lst:
print >>output_file, " type inbound-llb 1234"
else:
print >>output_file, " type inbound-llb 0" # prints the inbound LLB command with "0"
print >>output_file, " ttl %s" % (dns_ttl) # Continues printing the rest of the general GSLB rule commands
print >>output_file, " rr %s" % (dns_rr)
print >>output_file, " dname %s" % (dns_name)
print >>output_file, "/c/slb/gslb/rule %s/metric 1" % (global_variables.gslb_rule_id)
print >>output_file, " gmetric network"
print >>output_file, " addnet %s" % (net_rule)
#if proximity_mode == 'Full Proximity Inbound' or proximity_mode == 'Full Proximity Both':
#print >>output_file, "/c/slb/gslb/rule %s/metric 2" % (global_variables.gslb_rule_id)
#print >>output_file, " gmetric proximity"
print >>output_file, "/c/slb/gslb/rule %s/metric 3" % (global_variables.gslb_rule_id)
print >>output_file, " gmetric %s" % (net_gmetric3)
##########################
#### GSLB Section End ####
##########################
#######################
#### Main Code End ####
#######################
#############################
### Logging Section Start ###
#############################
def unsupported_commands_global_log_fnc(command):
'''Used to log a global message when finding and unsupported command.
Takes the beginning of the command as an argument.
'''
current_time = datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S.%f')
print >>migration_errors, '\033[1m%s\033[0m #Unsupported_command: all commands starting with "%s" are unsupported by this script.' % (current_time, command)
print >>migration_errors, " Unsupported commands in your configuration:"
def unsupported_commands_specific_log_fnc():
'''Used to log the specific unsupported command.
Takes no arguments.
'''
print >>migration_errors, ' Command: %s' % (line)
def unsupported_flag_global_log_fnc(command):
'''Used to log a global message when finding and unsupported flag.
Takes the command as an argument.
'''
current_time = datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S.%f')
print >>migration_errors, '\033[1m%s\033[0m #Unsupported_flag: the following command contains a flag which is not supported by this script:' % (current_time)
print >>migration_errors, ' Command: %s' % (line)
def unsupported_flag_specific_log_fnc(flag):
'''Used to log the specific unsupported flag.
Takes no arguments.
'''
print >>migration_errors, ' Unsupported flag: %s' % (flag)
### ###
# Unsupported Commands #
### ###
for line in lp_to_lpng:
if line.startswith( 'classes modify service and-group' ):
unsupported_commands_global_log_fnc('classes modify service and-group')
break
for line in lp_to_lpng:
if line.startswith( 'classes modify service and-group' ):
unsupported_commands_specific_log_fnc()
for line in lp_to_lpng:
if line.startswith( 'lp dns server' ):
unsupported_commands_global_log_fnc('lp dns server')
break
for line in lp_to_lpng:
if line.startswith( 'lp dns server' ):
unsupported_commands_specific_log_fnc()
for line in lp_to_lpng:
if line.startswith( 'lp dns host-to-ip-tables dynamic-name-to-ip' ):
unsupported_commands_global_log_fnc('lp dns host-to-ip-tables dynamic-name-to-ip')
break
for line in lp_to_lpng:
if line.startswith( 'lp dns host-to-ip-tables dynamic-name-to-ip' ):
unsupported_commands_specific_log_fnc()
for line in lp_to_lpng:
if line.startswith( 'lp content-lb-parameters' ):
unsupported_commands_global_log_fnc('lp content-lb-parameters')
break
for line in lp_to_lpng:
if line.startswith( 'lp content-lb-parameters' ):
unsupported_commands_specific_log_fnc()
for line in lp_to_lpng:
if line.startswith( 'bwm' ):
unsupported_commands_global_log_fnc('bwm')
break
for line in lp_to_lpng:
if line.startswith( 'bwm' ):
unsupported_commands_specific_log_fnc()
### ###
# Unsupported Flags #
### ###
for line in lp_to_lpng:
if "servers router-servers" in line:
for flag in global_variables.lp_servers_unsupported_flags:
if " %s " % (flag) in line:
unsupported_flag_global_log_fnc(line)
break
for flag in global_variables.lp_servers_unsupported_flags:
if " %s " % (flag) in line:
unsupported_flag_specific_log_fnc(flag)
if "net ip-interface" in line:
for flag in global_variables.lp_netip_unsupported_flags:
if " %s " % (flag) in line:
unsupported_flag_global_log_fnc(line)
break
for flag in global_variables.lp_netip_unsupported_flags:
if " %s " % (flag) in line:
unsupported_flag_specific_log_fnc(flag)
if "flow-management modify-policy-table" in line:
for flag in global_variables.lp_traffic_pols_unsupported_flags:
if " %s " % (flag) in line:
unsupported_flag_global_log_fnc(line)
break
for flag in global_variables.lp_traffic_pols_unsupported_flags:
if " %s " % (flag) in line:
unsupported_flag_specific_log_fnc(flag)
### ###
# Unsupported Flag Options #
### ###
if 'flow-management modify-policy-table' in line and ' -pt "AND Group"' in line:
print >>migration_errors, '\033[1m%s\033[0m #Unsupported_flag_option: the following command contains a flag with an option which is not supported by this script:' % (current_time)
print >>migration_errors, ' Command: %s' % (line)
print >>migration_errors, ' Unsupported flag option: "Service type AND Group".'
###########################
### Logging Section End ###
###########################
output_file.close()
migration_errors.close()
tar = tarfile.open("app/%s_files.tar.gz" % (user_output_file), "w:gz")
tar.add("app/%s_config" % (user_output_file), arcname="%s_config" % (user_output_file))
tar.add("app/%s_logs" % (user_output_file), arcname="%s_logs" % (user_output_file))
tar.close()
return render_template('end.html', user_output_file=user_output_file)
#return redirect('%s_files.tar.gz' % (user_output_file))
@app.route('/<path:dummy>' , methods=['GET', 'POST'])
def download(dummy):
if dummy.endswith("_files.tar.gz"):
return send_file('%s' % (dummy), as_attachment=True)
elif dummy.endswith("favicon.ico"):
return render_template('dummy.html'), 404
|
#!/usr/bin/env python3
class Observer:
"""
Objects that are interested in a subject should
inherit from this class.
"""
def notify(self, sender: object):
pass
|
#!/usr/bin/env python
import uuid
# Tham khảo:
# - https://stackoverflow.com/a/159195
# - https://www.geeksforgeeks.org/extracting-mac-address-using-python/
def get_mac_address_1():
int_mac = uuid.getnode()
hex_mac_fmt = ':'.join(['{:02x}'.format((int_mac >> x) & 0xff)
for x in range(0, 8*6, 8)][::-1])
return hex_mac_fmt
# Tham khảo:
# - https://stackoverflow.com/a/3499533
def get_mac_address_2():
int_mac = uuid.getnode()
hex_mac = hex(int_mac)[2:] # Remove '0x'
if len(hex_mac) < 12:
hex_mac = '0' * (12 - len(hex_mac)) + hex_mac
blocks = [hex_mac[x:x+2] for x in range(0, len(hex_mac), 2)]
hex_mac_fmt = ':'.join(blocks)
return hex_mac_fmt
if __name__ == '__main__':
print(get_mac_address_1())
print(get_mac_address_2())
|
# `pip install easydict` if you don't have it
from easydict import EasyDict as edict
import numpy as np
import json
import numpy as np
class NumpyEncoder(json.JSONEncoder):
""" Special json encoder for numpy types """
def default(self, obj):
if isinstance(obj, (np.int_, np.intc, np.intp, np.int8,
np.int16, np.int32, np.int64, np.uint8,
np.uint16, np.uint32, np.uint64)):
return int(obj)
elif isinstance(obj, (np.float_, np.float16, np.float32,
np.float64)):
return float(obj)
elif isinstance(obj,(np.ndarray,)): #### This is the fix
return obj.tolist()
return json.JSONEncoder.default(self, obj)
def save_config(edict, path2dict):
try:
with open(path2dict, "w") as file:
json.dump(json.dumps(edict, cls=NumpyEncoder), file)
file.close()
print ('[save_config] save config to "{}"'.format(path2dict))
except:
print ('[save_config] fail to save config to "{}"'.format(path2dict))
def load_config(path2config):
try:
with open(path2config, "r") as file:
config = edict(json.loads(json.load(file)))
file.close()
except:
print ('[load_config] cannot load config "{}"'.format(path2config))
config = edict()
return config
|
from .data import MaskArray
from .data import MaskGroup
from .data import PdgArray
from .data import MomentumArray
from .data import ColorArray
from .data import ParticleSet
from .data import AdjacencyList
from .data import Graphicle
from . import matrix
from . import transform
__all__ = [
"MaskArray",
"MaskGroup",
"PdgArray",
"MomentumArray",
"ColorArray",
"ParticleSet",
"AdjacencyList",
"Graphicle",
"matrix",
"transform",
]
|
import sys
import os
ROOT_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__), "../"))
sys.path.append(ROOT_PATH)
import docutils.nodes
import docutils.parsers.rst
import docutils.utils
import docutils.frontend
from Utils.FileFunc import PathManager
def parse_rst(text: str) -> docutils.nodes.document:
parser = docutils.parsers.rst.Parser()
components = (docutils.parsers.rst.Parser,)
settings = docutils.frontend.OptionParser(components=components).get_default_values()
document = docutils.utils.new_document('<rst-doc>', settings=settings)
parser.parse(text, document)
return document
global_type_set = set()
class RstVisitor(docutils.nodes.NodeVisitor):
def visit_reference(self, node: docutils.nodes.reference) -> None:
pass
def visit_title(self, node: docutils.nodes.title):
pass
def visit_paragraph(self, node: docutils.nodes.paragraph):
pass
def visit_section(self, node: docutils.nodes.section):
pass
def visit_emphasis(self, node: docutils.nodes.emphasis):
pass
def visit_text(self, node: docutils.nodes.Text) -> None:
print(node.rawsource)
def unknown_visit(self, node: docutils.nodes.Node) -> None:
global_type_set.add(str(type(node)))
def main(content):
doc = parse_rst(content)
visitor = RstVisitor(doc)
doc.walk(visitor)
if __name__ == "__main__":
path = sys.argv[1]
pm = PathManager()
if pm.isPathDir(path):
filelist = pm.getFileList(path)
for f_path in filelist:
with open(f_path, "rt") as fr:
content = fr.read()
main(content)
for t in global_type_set:
print(t)
'''
TODO: support node class
<class 'docutils.nodes.warning'>
<class 'docutils.nodes.problematic'>
<class 'docutils.nodes.Text'>
<class 'docutils.nodes.inline'>
<class 'docutils.nodes.title'>
<class 'docutils.nodes.topic'>
<class 'docutils.nodes.paragraph'>
<class 'docutils.nodes.reference'>
<class 'docutils.nodes.section'>
<class 'docutils.nodes.emphasis'>
<class 'docutils.nodes.list_item'>
<class 'docutils.nodes.literal'>
<class 'docutils.nodes.figure'>
<class 'docutils.nodes.caption'>
<class 'docutils.nodes.target'>
<class 'docutils.nodes.pending'>
<class 'docutils.nodes.image'>
<class 'docutils.nodes.enumerated_list'>
<class 'docutils.nodes.system_message'>
<class 'docutils.nodes.document'>
<class 'docutils.nodes.strong'>
<class 'docutils.nodes.bullet_list'>
<class 'docutils.nodes.literal_block'>
unsupport nodes in docutils: Unknown directive.
<rst-doc>:879: (ERROR/3) Unknown directive type "literalinclude".
.. literalinclude:: ../../../examples/Kaleidoscope/Chapter7/toy.cpp
:language: c++
<rst-doc>:5: (ERROR/3) Unknown directive type "toctree".
.. toctree::
:hidden:
LangImpl01
LangImpl02
LangImpl03
LangImpl04
LangImpl05
LangImpl06
LangImpl07
LangImpl08
LangImpl09
LangImpl10
<rst-doc>:355: (ERROR/3) Unknown interpreted text role "ref".
<rst-doc>:355: (ERROR/3) Unknown interpreted text role "ref".
<rst-doc>:810: (ERROR/3) Unknown directive type "literalinclude".
.. literalinclude:: ../../../examples/Kaleidoscope/Chapter5/toy.cpp
:language: c++
<rst-doc>:495: (ERROR/3) Unknown directive type "TODO".
.. TODO:: Abandon Pygments' horrible `llvm` lexer. It just totally gives up
on highlighting this due to the first line.
'''
|
# This file was automatically created by FeynRules 1.7.51
# Mathematica version: 8.0 for Linux x86 (64-bit) (February 23, 2011)
# Date: Thu 2 Aug 2012 10:15:24
from object_library import all_orders, CouplingOrder
NP = CouplingOrder(name = 'NP',
expansion_order = 99,
hierarchy = 1)
QCD = CouplingOrder(name = 'QCD',
expansion_order = 99,
hierarchy = 1)
|
import json
import pytest
from django.core.management import call_command
@pytest.fixture(scope="session")
def django_db_setup(django_db_setup, django_db_blocker):
with django_db_blocker.unblock():
call_command("migrate")
call_command("loaddata", "src/fixtures/account.json")
call_command("loaddata", "src/fixtures/shop.json")
call_command("loaddata", "src/fixtures/blog.json")
call_command("loaddata", "src/fixtures/menu.json")
call_command("loaddata", "src/fixtures/exchange.json")
@pytest.fixture
def headers(client, django_user_model):
django_user_model.objects.create_user(
username="user_test0001@example.com",
password="string8euwq",
)
data = {"email": "user_test0001@example.com", "password": "string8euwq"}
res = client.post(
"/sign-up/",
data=json.dumps(data),
content_type="application/json",
)
return {"Authorization": f"Bearer {res.json().get('access')}"}
|
from __future__ import annotations
from typing import Optional, List, TYPE_CHECKING
import pandas as pd
from whyqd.base import BaseMorphAction
if TYPE_CHECKING:
from ..models import ColumnModel
class Action(BaseMorphAction):
"""Delete columns provided in a list.
Script::
"DELETE_COLUMNS > ['source_column', 'source_column', etc.]"
"""
def __init__(self) -> None:
self.name = "DELETE_COLUMNS"
self.title = "Delete columns"
self.description = "Delete columns provided in a list."
self.structure = ["columns"]
def transform(self, df: pd.DataFrame, columns: List[ColumnModel], rows: Optional[None] = None) -> pd.DataFrame:
"""
Delete columns provided in a list.
Parameters
----------
df: DataFrame
Working data to be transformed
columns: List of ColumnModel
List of column names to be deleted.
rows: None
Ignored for this ACTION.
Returns
-------
Dataframe
Containing the implementation of the Morph
"""
return df.drop(columns=[c.name for c in columns])
|
import os
import sys
import bioframe
import click
import cooler
import cooltools
import cooltools.expected
import matplotlib.pyplot as plt
import matplotlib.gridspec as gridspec
from matplotlib.lines import Line2D
import numpy as np
import pandas as pd
import pairlib
import pairlib.scalings
import pairtools
from diskcache import Cache
# peri-centromeric/-telomeric region to remove from both sides of chromosomal arms
cache = Cache("~/.hic.cache")
@click.group()
def cli():
pass
def plot_scalings(
scalings, avg_trans_levels, plot_slope, label_subplots, labels, title, out_path
):
"""
Plot scaling curves from a list of (bin, pair frequencies) tuples.
"""
fig = plt.figure(constrained_layout=False)
gs = gridspec.GridSpec(1, 2, width_ratios=[3, 2], wspace=0.4, figure=fig)
scale_ax = fig.add_subplot(gs[0, 0])
slope_ax = fig.add_subplot(gs[0, 1]) if plot_slope else None
for idx, scalings in enumerate(scalings):
dist_bin_mids, pair_frequencies = scalings
scale_ax.loglog(dist_bin_mids, pair_frequencies, label=labels[idx], lw=1)
if avg_trans_levels:
scale_ax.axhline(
avg_trans_levels[idx],
ls="dotted",
c=scale_ax.get_lines()[-1].get_color(),
lw=1,
)
if slope_ax is not None:
slope_ax.semilogx(
np.sqrt(dist_bin_mids.values[1:] * dist_bin_mids.values[:-1]),
np.diff(np.log10(pair_frequencies.values))
/ np.diff(np.log10(dist_bin_mids.values)),
label=labels[idx],
lw=1,
)
scale_ax.grid(lw=0.5, color="gray")
scale_ax.set_aspect(1.0)
scale_ax.set_xlim(1e3, 1e6)
scale_ax.set_ylim(0.0001, 2.0)
scale_ax.set_xlabel("genomic separation (bp)")
scale_ax.set_ylabel("contact frequency")
scale_ax.set_anchor("S")
handles, labels = scale_ax.get_legend_handles_labels()
if avg_trans_levels:
handles.append(Line2D([0], [0], color="black", lw=1, ls="dotted"))
labels.append("average trans")
scale_ax.legend(
handles, labels, loc="upper left", bbox_to_anchor=(1.1, 1.0), frameon=False
)
if slope_ax is not None:
slope_ax.grid(lw=0.5, color="gray")
slope_ax.set_xlim(1e3, 1e6)
slope_ax.set_ylim(-3.0, 0.0)
slope_ax.set_yticks(np.arange(-3, 0.5, 0.5))
slope_ax.set_aspect(1.0)
slope_ax.set_xlabel("distance (bp)")
slope_ax.set_ylabel("log-log slope")
slope_ax.set_anchor("S")
if label_subplots:
scale_ax.set_title("(a)")
slope_ax.set_title("(b)")
fig.suptitle(title)
plt.savefig(
out_path, dpi=300, bbox_inches="tight", facecolor="white", transparent=False
)
plt.show()
plt.close()
def open_pairs_file(path: str) -> pd.DataFrame:
header, pairs_body = pairtools._headerops.get_header(
pairtools._fileio.auto_open(path, "r")
)
cols = pairtools._headerops.extract_column_names(header)
return pd.read_csv(pairs_body, header=None, names=cols, sep="\t")
def calc_pair_freqs(scalings, trans_levels, calc_avg_trans, normalized):
dist_bin_mids = np.sqrt(scalings.min_dist * scalings.max_dist)
pair_frequencies = scalings.n_pairs / scalings.n_bp2
mask = pair_frequencies > 0
avg_trans = None
if calc_avg_trans:
avg_trans = (
trans_levels.n_pairs.astype("float64").sum()
/ trans_levels.np_bp2.astype("float64").sum()
)
if normalized:
norm_fact = pairlib.scalings.norm_scaling_factor(
dist_bin_mids, pair_frequencies, anchor=int(1e3)
)
pair_frequencies = pair_frequencies / norm_fact
avg_trans = avg_trans / norm_fact if avg_trans else None
return (dist_bin_mids[mask], pair_frequencies[mask]), avg_trans
@cli.command("compute-scaling")
@click.argument("pairs_paths", nargs=-1, type=click.Path(exists=True), required=True)
@click.option(
"--out",
"-o",
"out_path",
required=True,
type=click.Path(),
help="The path to the scaling plot output file.",
)
@click.option(
"--region",
"-r",
"region",
type=str,
help="UCSC-style coordinates of the genomic region to calculate scalings for.",
)
@click.option(
"--exclude-chrom",
"exclude_chroms",
type=str,
multiple=True,
help='Exclude the specified chromosome from the scalings. Optionally add ":left" or ":right" to the argument to only exclude the corresponding arm of the chromosome.',
)
@click.option(
"--exclude-end-regions",
"exclude_end_regions",
type=int,
default=10000,
help="Centromeric and telomeric regions of chromosomal arms in bp to exclude from scalings. Default is 10,000.",
)
@click.option(
"--assembly",
"-a",
"assembly",
type=str,
nargs=1,
help="Assembly name to be used for downloading chromsizes.",
)
@click.option(
"--centromeres",
"centromeres_path",
type=click.Path(exists=True),
help="Path to a text file containing centromere start and end positions. If not provided, a download will be attempted.",
)
@click.option(
"--normalized",
"-n",
is_flag=True,
help="Normalize the contact frequency up to 1.0.",
)
@click.option(
"--split-arms",
is_flag=True,
default=False,
help="Plot scalings of left and right chromosomal arms per chromosome, per pairs file. Caching is disabled for this option.",
)
@click.option(
"--plot-slope",
is_flag=True,
default=False,
help="Plot the slopes of the scaling curves.",
)
@click.option(
"--label-subplots",
is_flag=True,
default=False,
help="Label subplots as (a) and (b). Disabled by default.",
)
@click.option(
"--show-average-trans", is_flag=True, help="Show average trans contact frequency."
)
@click.option(
"--label",
"-l",
"labels",
type=str,
multiple=True,
help="One or more labels for the scaling plot curves.",
)
@click.option(
"--title", "-t", "title", type=str, nargs=1, help="Title text for the scaling plot."
)
@click.option(
"--no-cache",
is_flag=True,
help="Do not use cached values. Caching is enabled by default.",
)
def compute_scaling(
pairs_paths,
out_path,
region,
exclude_chroms,
exclude_end_regions,
assembly,
centromeres_path,
split_arms,
normalized,
plot_slope,
label_subplots,
show_average_trans,
labels,
title,
no_cache,
):
"""
Compute and plot contact frequency vs genomic separation curves for one or more pairs files.
"""
labels = list(labels)
# parse left/right arm parameter of chromosomes to exclude
exclude_chroms = [chrom.split(":") for chrom in exclude_chroms]
chromsizes = bioframe.fetch_chromsizes(assembly, filter_chroms=False, as_bed=True)
chromsizes = chromsizes[~chromsizes.chrom.isin(exclude_chroms)]
if centromeres_path:
centromeres = {}
with open(centromeres_path) as file:
for line in file:
cols = line.split(" ")
centromeres[cols[0]] = (int(cols[1]) + int(cols[2])) // 2
else:
centromeres = bioframe.fetch_centromeres(assembly)
centromeres.set_index("chrom", inplace=True)
centromeres = centromeres.mid.to_dict()
if len(labels) != 0 and len(pairs_paths) != len(labels) and not split_arms:
sys.exit("Please provide as many labels as pairs paths.")
if region:
regions = bioframe.select(chromsizes, region).reset_index()
else:
# use chromosomal arms as separate regions if no regions are specified
arms = bioframe.split(chromsizes, centromeres)
# remove user-excluded chromosomes/arms
for chrom in exclude_chroms:
if len(chrom) == 1:
# no arm specified, remove entire chromosome
arms = arms[arms.chrom != chrom[0]]
elif chrom[1] == "left":
# remove specified chromosome with start == 0 (left arm)
arms = arms[~((arms.chrom == chrom[0]) & (arms.start == 0))]
elif chrom[1] == "right":
# remove specified chromosome with start != 0 (right arm)
arms = arms[~((arms.chrom == chrom[0]) & (arms.start != 0))]
# remove 40kb from each side (80kb total) of an arm to remove centromere and telomere regions
arms = bioframe.ops.expand(arms, -exclude_end_regions)
# remove arms arms with a length of < 0 after removing side regions
regions = arms[arms.start < arms.end].reset_index()
all_scalings = []
all_avg_trans_levels = []
for idx, path in enumerate(pairs_paths):
cis_scalings, avg_trans = None, None
if split_arms:
# calculate scalings per arm per chromosome
cis_scalings, trans_levels = pairlib.scalings.compute_scaling(
path,
regions,
chromsizes,
dist_range=(int(1e1), int(1e9)),
n_dist_bins=128,
chunksize=int(1e7),
)
# remove unassigned pairs with start/end positions < 0
cis_scalings = cis_scalings[
(cis_scalings.start1 > 0)
& (cis_scalings.end1 > 0)
& (cis_scalings.start2 > 0)
& (cis_scalings.end2 > 0)
]
sc_agg = (
cis_scalings.groupby(["chrom1", "start1", "min_dist", "max_dist"])
.agg({"n_pairs": "sum", "n_bp2": "sum"})
.reset_index()
)
avail_chroms = set(sc_agg.chrom1)
for chrom in avail_chroms:
# calculate scalings for left/right arms (left arms start at position 0 + exclude_end_regions)
sc_left, avg_trans_left = calc_pair_freqs(
sc_agg[
(sc_agg.chrom1 == chrom)
& (sc_agg.start1 == exclude_end_regions)
],
trans_levels,
show_average_trans,
normalized,
)
sc_right, avg_trans_right = calc_pair_freqs(
sc_agg[
(sc_agg.chrom1 == chrom)
& (sc_agg.start1 != exclude_end_regions)
],
trans_levels,
show_average_trans,
normalized,
)
dir_path = os.path.join(
os.path.dirname(out_path), os.path.basename(path)
)
if not os.path.exists(dir_path):
os.mkdir(dir_path)
chrom_path = os.path.join(
dir_path, "_".join((chrom, os.path.basename(out_path)))
)
(
plot_scalings(
scalings=[sc_left, sc_right],
avg_trans_levels=[avg_trans_left, avg_trans_right],
plot_slope=plot_slope,
labels=["left", "right"],
title=chrom,
out_path=chrom_path,
)
)
else:
if not no_cache:
# get cached values
cached = cache.get(path)
if cached is not None:
cis_scalings = (
cached["cis_scalings"]
if cached["normalized"] == normalized
else None
)
avg_trans = cached["avg_trans"]
if (
no_cache
or cis_scalings is None
or (avg_trans is None and show_average_trans)
):
print(
f"Computing scalings for file {idx + 1}/{len(pairs_paths)} ...",
end="\r",
)
# caching disabled or no cached values found
cis_scalings, trans_levels = pairlib.scalings.compute_scaling(
path,
regions,
chromsizes,
dist_range=(int(1e1), int(1e9)),
n_dist_bins=128,
chunksize=int(1e7),
)
# remove unassigned pairs with start/end positions < 0
cis_scalings = cis_scalings[
(cis_scalings.start1 >= 0)
& (cis_scalings.end1 >= 0)
& (cis_scalings.start2 >= 0)
& (cis_scalings.end2 >= 0)
]
sc_agg = (
cis_scalings.groupby(["min_dist", "max_dist"])
.agg({"n_pairs": "sum", "n_bp2": "sum"})
.reset_index()
)
cis_scalings, avg_trans = calc_pair_freqs(
sc_agg, trans_levels, show_average_trans, normalized
)
if not no_cache:
cache.set(
path,
{
"cis_scalings": cis_scalings,
"avg_trans": avg_trans,
"normalized": normalized,
},
)
else:
print(
f"Retrieved cached values for file {idx + 1}/{len(pairs_paths)}.",
end="\r",
)
# use file names as labels if labels have not been provided
labels.append(os.path.basename) if len(labels) < len(pairs_paths) else None
all_scalings.append(cis_scalings)
all_avg_trans_levels.append(avg_trans) if avg_trans is not None else None
if len(all_scalings) > 0 and not split_arms:
plot_scalings(
all_scalings,
all_avg_trans_levels,
plot_slope,
label_subplots,
labels,
title,
out_path,
)
@cli.command("compute-trans-scaling")
@click.argument("cooler_path", nargs=1, type=click.Path(exists=True), required=True)
@click.option(
"--out",
"-o",
"out_path",
type=click.Path(),
help="The path to the scaling plot output file.",
)
@click.option(
"--resolution",
nargs=1,
type=int,
default=1000,
help="Resolution of the Hi-C data in a .mcool file.",
)
@click.option(
"--region1",
"-r1",
"regions1",
type=str,
multiple=True,
help="The first region of interactions.",
)
@click.option(
"--region2",
"-r2",
"regions2",
type=str,
multiple=True,
help="The second region of interactions.",
)
@click.option(
"--label",
"-l",
"labels",
type=str,
multiple=True,
help="One or more labels for the interaction frequency curves.",
)
@click.option(
"--title", "-t", "title", type=str, nargs=1, help="Title text for the plot."
)
def compute_trans_scaling(
cooler_path, out_path, resolution, regions1, regions2, labels, title
):
chromsizes = bioframe.fetch_chromsizes("sacCer3", filter_chroms=False, as_bed=True)
avg_contacts = cooltools.expected.diagsum_asymm(
clr=cooler.Cooler("::/resolutions/".join((cooler_path, str(resolution)))),
supports1=list(regions1),
supports2=list(regions2),
transforms={"balanced": lambda p: p["count"] * p["weight1"] * p["weight2"]},
)
avg_contacts["balanced.avg"] = avg_contacts["balanced.sum"] / avg_contacts(
"n_valid"
)
print("...")
@cli.command("clear-cache")
def clear_cache():
"""
Erase all cached values.
"""
cache.clear()
print("Cache cleared.")
if __name__ == "__main__":
np.seterr(divide="ignore", invalid="ignore")
cli()
|
# ------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License (MIT). See LICENSE in the repo root for license information.
# ------------------------------------------------------------------------------------------
from pathlib import Path
import numpy as np
from sklearn import datasets
def main() -> None:
# import some data to play with
iris = datasets.load_iris()
X = iris.data[:, :2] # we only take the first two features.
y = iris.target
dataset = Path("dataset")
dataset.mkdir(exist_ok=False)
X_csv = dataset / "X.csv"
np.savetxt(X_csv, X, delimiter=',')
y_csv = dataset / "y.csv"
np.savetxt(y_csv, y, delimiter=',')
if __name__ == "__main__":
main()
|
import subprocess
import logging
import time
import os
import sys
import shutil
import sqlite3
from pathlib import Path
import scripts.cron_logging
# get the logger for the application
logger = scripts.cron_logging.logger
def reboot():
"""Reboot the system but first include some system info in the cron_log
file and update the non-volatile copy of the file.
"""
# wrap the reporting in a try except so that reboot is attempted for sure
try:
report = 'lsusb:\n%s' % subprocess.check_output('/usr/bin/lsusb', text=True)
if Path('/mnt/1wire').exists():
report += '\nls /mnt/1wire:\n%s' % subprocess.check_output(['/bin/ls', '/mnt/1wire'], text=True)
report += '\nuptime:\n%s' % subprocess.check_output('/usr/bin/uptime', text=True)
report += '\nfree:\n%s' % subprocess.check_output('/usr/bin/free', text=True)
report += '\ndf:\n%s' % subprocess.check_output('/bin/df', text=True)
report += '\nifconfig:\n%s' % subprocess.check_output('/sbin/ifconfig', text=True)
# write this to a special file in /var/local
with open('/var/local/reboot_info.txt', 'w') as fout:
fout.write(report)
except:
pass
# backup log and Post database files before rebooting
backup_files()
# Update the fake hardware clock to that the time is close to right
# after the reboot.
subprocess.call('/sbin/fake-hwclock save', shell=True)
# wait 5 seconds, as it seems to take this long to take effect
time.sleep(5)
# reboot now. Have reworked code to that all Mini-Monitor processes
# will kill with simple SIGTERM instead of SIGKILL.
subprocess.call('/sbin/reboot now', shell=True)
# wait until reboot actually occurs
while True:
time.sleep(1)
def backup_files():
try:
# Copy the application log files to a directory on the SD Card, because
# they are on a RAM disk that will not persist a reboot.
if os.path.exists('/var/log/pi_log.log'):
shutil.copyfile('/var/log/pi_log.log', '/var/local/pi_log.log')
if os.path.exists('/var/log/pi_cron.log'):
shutil.copyfile('/var/log/pi_cron.log', '/var/local/pi_cron.log')
if os.path.exists('/var/log/meter_reader.log'):
shutil.copyfile('/var/log/meter_reader.log', '/var/local/meter_reader.log')
if os.path.exists('/var/log/mosquitto.log'):
shutil.copyfile('/var/log/mosquitto.log', '/var/local/mosquitto.log')
if os.path.exists('/var/log/mqtt_to_bmon.log'):
shutil.copyfile('/var/log/mqtt_to_bmon.log', '/var/local/mqtt_to_bmon.log')
logger.info('Backed up Log files.')
except:
# continue on if there is a problem with this non-essential
# operation.
pass
try:
# Copy the reading post queue from the RAM disk to non-volatile
# storage.
# Before copying the database file, need to force a lock on it so that no
# write operations occur during the copying process
fname = '/var/run/postQ.sqlite'
fname_bak = '/var/local/postQ.sqlite' # non-volatile
conn = sqlite3.connect(fname)
cursor = conn.cursor()
# create a dummy table to write into.
try:
cursor.execute('CREATE TABLE _junk (x integer)')
except:
# table already existed
pass
# write a value into the table to create a lock on the database
cursor.execute('INSERT INTO _junk VALUES (1)')
# now copy database
shutil.copy(fname, fname_bak)
# Rollback the Insert as we don't really need it.
conn.rollback()
conn.close()
logger.info('Backed up Post database.')
except:
# continue on if there is a problem with this non-essential
# operation.
pass
def ip_addrs():
"""Returns a list of IP addresses assigned to network interfaces on this
system, ignoring the loopback interface. Returns an empty list if an
error occurs.
"""
try:
ips = []
result = subprocess.check_output('ifconfig | grep "inet "', shell=True, text=True)
for lin in result.splitlines():
flds = lin.strip().split(' ')
if flds[1] != '127.0.0.1':
ips.append(flds[1])
except:
ips = []
return ips
|
import logging
import urllib
from decorators import login_required
from google.appengine.ext import ndb
from application.handlers.base import BaseHandler
from application.models.program import Program
from application.models.agency import Agency
class ProgramHandler(BaseHandler):
@login_required
def get(self, agency=None, program=None):
if program or agency == 'new':
self.tv['error'] = self.request.get('error')
if agency == 'new':
program = agency
if program.lower() != 'new':
agency = Agency.query(Agency.slug == agency).get()
query = Program.query()
query = query.filter(Program.agency == agency.key.id())
program = query.filter(Program.slug == program).get()
self.tv['program'] = program
self.tv['agency'] = agency
agencies = Agency.query().fetch(100)
self.tv['agencies'] = agencies
self.render('program-details.html')
else:
query = Program.query()
if agency:
agency = Agency.query(Agency.slug == agency).get()
query = query.filter(Program.agency == agency.key.id())
self.tv['agency'] = agency
query = query.fetch(100)
agency_keys = []
for program in query:
key = ndb.Key('Agency', program.agency)
if key not in agency_keys:
agency_keys.append(key)
agencies = ndb.get_multi(agency_keys)
self.tv['programs'] = query
self.tv['agencies'] = {}
for agency in agencies:
self.tv['agencies'][agency.key.id()] = {}
self.tv['agencies'][agency.key.id()]['name'] = agency.name
self.tv['agencies'][agency.key.id()]['slug'] = agency.slug
self.render('programs.html')
@login_required
def post(self, program=None):
agency = int(self.request.get('agency'))
name = self.request.get('name')
slug = self.request.get('slug')
description = self.request.get('description')
if program:
query = Program.query()
query = query.filter(Program.agency == int(agency))
query = query.filter(Program.slug == slug)
query = query.get()
if not query:
program = Program()
program.name = name
program.agency = agency
program.slug = slug
program.description = description
program.user = self.user.key
program.put()
agency = ndb.Key('Agency', agency).get()
params = {}
params['success'] = ('The program has been successfully '
'added.')
params = urllib.urlencode(params)
self.redirect('/programs/' + agency.slug + '/' + slug + '?' +
params)
else:
query.name = name
query.agency = agency
query.description = description
query.put()
agency = ndb.Key('Agency', agency).get()
params = {}
params['success'] = ('The program has been successfully '
'updated.')
params = urllib.urlencode(params)
self.redirect('/programs/' + agency.slug + '/' + slug + '?' +
params)
else:
self.redirect('/programs')
|
from collections import Iterable
from matrx.objects import AreaTile, EnvObject
import numpy as np
class CollectionTarget(EnvObject):
def __init__(self, location, collection_objects, collection_zone_name, name="Collection_target"):
""" An invisible object that tells which objects needs collection.
This invisible object is linked to `CollectionDropTile` object(s) and is used by the `CollectionGoal` to
identify which objects should be collected and dropped off at the tiles. This object is just a regular object
but contains three additional properties:
- collection_objects: See parameter doc.
- collection_zone_name: See parameter doc.
- is_invisible: A boolean denoting that this object is invisible. This boolean has no effect in MATRX, except to
denote that this object is not an actual visible object.
- is_drop_off_target: Denotes this object as containing the descriptions of the to be collected objects.
The invisibility is implemented as a block with full opacity, not movable, fully traversable and always below
other objects.
Parameters
----------
location : (x, y)
The location of this object.
collection_objects : List of dicts
A list of dictionaries, each dictionary in this list represents an object that should be dropped at this
location. The dictionary itself represents the property-value pairs these objects should adhere to. The
order of the list matters iff the `CollectionGoal.in_order==True`, in which case the
`CollectionGoal` will track if the dropped objects at this tile are indeed dropped in the order of the list.
collection_zone_name : str
This is the name that links `CollectionDropTile` object(s) to this object. The `CollectionGoal` will check
all of these tiles with this name to check if all objects are already dropped and collected.
name : str (default is "Collection_target")
The name of this object.
Notes
-----
It does not matter where this object is added in the world. However, it is good practice to add it on top of
the (or one of them) `CollectionDropTile` object(s). The helper method to create collection areas
`WorldBuilder.add_collection_goal` follows this practice.
See Also
--------
matrx.WorldBuilder.add_collection_goal
The handy method in the `WorldBuilder` to add a collection goal to the world and required object(s).
matrx.goals.CollectionGoal
The `CollectionGoal` that performs the logic of check that all object(s) are dropped at the drop off tiles.
matrx.objects.CollectionDropTile
The tile that represents the location(s) where the object(s) need to be dropped.
"""
super().__init__(location=location, name=name, class_callable=CollectionTarget, customizable_properties=None,
is_traversable=True, is_movable=False, visualize_size=0, visualize_shape=0,
is_drop_off_target=True, visualize_colour=None, visualize_depth=None, visualize_opacity=0.0,
collection_objects=collection_objects, collection_zone_name=collection_zone_name,
is_invisible=True)
class CollectionDropOffTile(AreaTile):
def __init__(self, location, name="Collection_zone", collection_area_name="Collection zone",
visualize_colour="#64a064", visualize_opacity=1.0, **kwargs):
"""
An area tile used to denote where one or more objects should be dropped. It is similar to any other `AreaTile`
but has two additional properties that identify it as a drop off location for objects and the name of the drop
off. These are used by a `CollectionGoal` to help find the drop off area in all world objects.
Parameters
----------
location : (x, y)
The location of this tile.
name : str (default is "Collection_zone")
The name of this tile.
collection_area_name: str (default is "Collection_zone")
The name of the collection zone this collection tile belongs to. It is used by the respective CollectionGoal
to identify where certain objects should be dropped.
visualize_colour : String (default is "#64a064", a pale green)
The colour of this tile.
visualize_opacity : Float (default is 1.0)
The opacity of this tile. Should be between 0.0 and 1.0.
See also
--------
matrx.WorldBuilder.add_collection_goal
The handy method in the `WorldBuilder` to add a collection goal to the world and required object(s).
matrx.goals.CollectionGoal
The `CollectionGoal` that performs the logic of check that all object(s) are dropped at the drop off tiles.
matrx.objects.CollectionTarget
The invisible object representing which object(s) need to be collected and (if needed) in which order.
"""
super().__init__(location, name=name, visualize_colour=visualize_colour, visualize_depth=None,
visualize_opacity=visualize_opacity, is_drop_off=True,
collection_area_name=collection_area_name, **kwargs)
# class GhostBlock(EnvObject):
# def __init__(self, location, drop_zone_nr, name, visualize_colour, visualize_shape):
# super().__init__(location, name, is_traversable=True, is_movable=False,
# visualize_colour=visualize_colour, visualize_shape=visualize_shape,
# visualize_size=block_size,
# visualize_depth=85, drop_zone_nr=drop_zone_nr, visualize_opacity=0.5,
# is_drop_zone=False, is_goal_block=True, is_collectable=False)
|
from setuptools import setup
setup(
name='bluemoon',
version='0.1.1',
author='ksen0',
author_email='ksenok@protonmail.com',
packages=['bluemoon'],
description='Toolkit for finding exceptional things in data collected about a life.',
)
|
import argparse
from utils.pdb_file import read_pdb_ids_file, fetch_pdb
from utils.io import get_files
from utils.sequence_cluster import match_clusters, get_clusters
from utils.ProgressBar import ProgressBar
def pipeline(pdb_ids, pdb_gz_dir, out_dir='./', m_pdb_ch_file=None, sqid=30, loaded=False, remove_pdb_gz=False, verbose=False):
"""
Perform a full PDB data pipeline.
The dataset is build based on the BLAST clustering. After all proteins have been structured based on
the specified sequence identity percentage, the first representative of each cluster is chosen.
Parameters
----------
pdb_ids_list : list of str
A list of the PDB IDs to be downloaded.
pdb_gz_dir : str
The directory where to find the PDB files in .pdb.gz format.
out_dir : str, optional
The directory where to save the the PDB files. The default is './' (current directory).
m_pdb_ch_file : str, optional
The file holding the list of the protein chains matching with the clusters. The default is None
sqid : int, optional
The sequence identity percentage for the sequence clustering. The default is 30.
loaded : bool, optional
Whether the clusters have already been loaded. The default is False.
remove_pdb_gz : bool, optional
Whether to remove the original compressed PDB file. The default is False.
verbose : bool, optional
Whether to print progress information. The default is False.
Returns
-------
None.
"""
# Get clusters
clusters = get_clusters(sqid=sqid, loaded=loaded, verbose=verbose)
# Match the PDB IDs with the clusters
m_pdb_ch_ids = match_clusters(pdb_ids, clusters=clusters, sqid=sqid, out_file=m_pdb_ch_file, verbose=verbose)
# Fetch the PDB files
progress_bar = ProgressBar(len(m_pdb_ch_ids))
if verbose:
print('Fetching PDBs...')
progress_bar.start()
for m_pdb_ch_id in m_pdb_ch_ids:
if verbose:
progress_bar.step()
fetch_pdb(m_pdb_ch_id, pdb_gz_dir=pdb_gz_dir, out_dir=out_dir, remove_pdb_gz=remove_pdb_gz)
if verbose:
progress_bar.end()
if __name__ == '__main__':
# Argument parser initialization
arg_parser = argparse.ArgumentParser(description='Full PDB dataset pipeline.')
arg_parser.add_argument('out_dir', type=str, help='The directory where to store the PDB files.')
arg_parser.add_argument('--ids_dir', type=str, default='../pdb/ids/', help='The directory containing the .txt files holding the IDs for the PDB. The default is ../pdb/ids/.')
arg_parser.add_argument('--pdb_gz_dir', type=str, default='../pdb/gz/', help='The directory containing the downloaded compressed PDB files. The default is ../pdb/gz/.')
arg_parser.add_argument('--m_pdb_ch_file', type=str, default='../pdb/ids/m_pdb_ch_ids', help='The file holding the list of the protein chains matching with the clusters. The default is ../pdb/ids/m_pdb_ch_ids.')
arg_parser.add_argument('--sqid', type=int, default=30, help='The sequence identity percentage for the BLAST sequence clustering. The default is 30.')
arg_parser.add_argument('--loaded', type=bool, default=False, help='Whether the sequence clusters have already been loaded. The default is False.')
arg_parser.add_argument('--remove_pdb_gz', type=bool, default=False, help='Whether to remove the original compressed PDB file. The default is False.')
arg_parser.add_argument('--verbose', type=bool, default=False, help='Whether to print progress information. The default is False.')
# Parse arguments
args = arg_parser.parse_args()
# Get PDB IDs
pdb_ids = []
files = get_files(args.ids_dir, ext='.txt')
for file in files:
pdb_ids += read_pdb_ids_file(file)
# Begin pipeline
pipeline(pdb_ids, args.pdb_gz_dir, args.out_dir, m_pdb_ch_file=args.m_pdb_ch_file, sqid=args.sqid, loaded=args.loaded, remove_pdb_gz=args.remove_pdb_gz, verbose=args.verbose)
|
# ------------------------------
# 27. Remove Element
#
# Description:
# Given an array and a value, remove all instances of that value in place and return the new length.
# Do not allocate extra space for another array, you must do this in place with constant memory.
#
# The order of elements can be changed. It doesn't matter what you leave beyond the new length.
#
# Example:
# Given input array nums = [3,2,2,3], val = 3
# Your function should return length = 2, with the first two elements of nums being 2.
#
# Version: 1.0
# 09/22/17 by Jianfa
# ------------------------------
class Solution(object):
def removeElement(self, nums, val):
"""
:type nums: List[int]
:type val: int
:rtype: int
"""
list_len = len(nums)
if list_len == 0:
return list_len
else:
l = r = 0
while r < list_len:
if nums[r] != val:
nums[l] = nums[r]
l += 1
r += 1
return l
# Used for test
# if __name__ == "__main__":
# test = Solution()
# nums = []
# print(test.removeElement(nums, 4))
# ------------------------------
# Summary:
# I borrowed the idea from problem 26 that I used two pointers to do list updating, which is also the
# most usual solution.
|
# Generated by Django 2.1.5 on 2019-02-04 15:54
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('paikkala', '0009_default_room'),
]
operations = [
migrations.AlterField(
model_name='program',
name='room',
field=models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, to='paikkala.Room'),
),
migrations.AlterField(
model_name='zone',
name='room',
field=models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, to='paikkala.Room'),
),
]
|
"""Mock responses for device queries."""
GET_DEVICE_RESP = {
"activation_code": None,
"activation_code_expiry_time": "2019-12-12T16:23:14.291Z",
"ad_group_id": 0,
"appliance_name": None,
"appliance_uuid": None,
"av_ave_version": "8.3.62.44",
"av_engine": "4.13.0.207-ave.8.3.62.44:avpack.8.5.0.66:vdf.8.18.9.10 (20200826)",
"av_last_scan_time": None,
"av_master": False,
"av_pack_version": "8.5.0.66",
"av_product_version": "4.13.0.207",
"av_status": [
"AV_ACTIVE",
"ONDEMAND_SCAN_DISABLED"
],
"av_update_servers": None,
"av_vdf_version": "8.18.9.10 (20200826)",
"cluster_name": None,
"current_sensor_policy_name": "policy-restrictive",
"datacenter_name": None,
"deployment_type": "ENDPOINT",
"deregistered_time": None,
"device_meta_data_item_list": [],
"device_owner_id": 93474,
"email": "email@example.org",
"esx_host_name": None,
"esx_host_uuid": None,
"first_name": None,
"id": 98765,
"last_contact_time": "2020-08-26T21:05:42.518Z",
"last_device_policy_changed_time": "2019-12-05T16:24:23.216Z",
"last_device_policy_requested_time": "2020-06-23T00:43:28.164Z",
"last_external_ip_address": "192.168.0.1",
"last_internal_ip_address": "192.168.0.1",
"last_location": "OFFSITE",
"last_name": None,
"last_policy_updated_time": None,
"last_reported_time": "2020-08-26T18:29:37.148Z",
"last_reset_time": None,
"last_shutdown_time": None,
"linux_kernel_version": None,
"login_user_name": "email@example.org",
"mac_address": "000000000000",
"middle_name": None,
"name": "Win7x64",
"organization_id": 654,
"organization_name": "org-name.example.com",
"os": "WINDOWS",
"os_version": "Windows 7 x64 SP: 1",
"passive_mode": False,
"policy_id": 11200,
"policy_name": "policy-restrictive",
"policy_override": True,
"quarantined": False,
"registered_time": "2019-12-05T16:23:14.320Z",
"scan_last_action_time": None,
"scan_last_complete_time": None,
"scan_status": None,
"sensor_kit_type": "WINDOWS",
"sensor_out_of_date": True,
"sensor_pending_update": False,
"sensor_states": [
"ACTIVE",
"LIVE_RESPONSE_NOT_RUNNING",
"LIVE_RESPONSE_NOT_KILLED",
"LIVE_RESPONSE_ENABLED",
"SECURITY_CENTER_OPTLN_DISABLED"
],
"sensor_version": "3.6.0.1201",
"status": "REGISTERED",
"target_priority": "MEDIUM",
"uninstall_code": "ABCDEF",
"vcenter_name": None,
"vcenter_uuid": 'vcenterid',
"vdi_base_device": None,
"virtual_machine": False,
"virtualization_provider": "UNKNOWN",
"vm_ip": None,
"vm_name": None,
"vm_uuid": None,
"vuln_score": 0.0,
"vuln_severity": None,
"windows_platform": None
}
GET_DEVICE_RESP_NO_VCENTER = {
"activation_code": None,
"activation_code_expiry_time": "2019-12-12T16:23:14.291Z",
"ad_group_id": 0,
"appliance_name": None,
"appliance_uuid": None,
"av_ave_version": "8.3.62.44",
"av_engine": "4.13.0.207-ave.8.3.62.44:avpack.8.5.0.66:vdf.8.18.9.10 (20200826)",
"av_last_scan_time": None,
"av_master": False,
"av_pack_version": "8.5.0.66",
"av_product_version": "4.13.0.207",
"av_status": [
"AV_ACTIVE",
"ONDEMAND_SCAN_DISABLED"
],
"av_update_servers": None,
"av_vdf_version": "8.18.9.10 (20200826)",
"cluster_name": None,
"current_sensor_policy_name": "policy-restrictive",
"datacenter_name": None,
"deployment_type": "ENDPOINT",
"deregistered_time": None,
"device_meta_data_item_list": [],
"device_owner_id": 93474,
"email": "email@example.org",
"esx_host_name": None,
"esx_host_uuid": None,
"first_name": None,
"id": 98765,
"last_contact_time": "2020-08-26T21:05:42.518Z",
"last_device_policy_changed_time": "2019-12-05T16:24:23.216Z",
"last_device_policy_requested_time": "2020-06-23T00:43:28.164Z",
"last_external_ip_address": "192.168.0.1",
"last_internal_ip_address": "192.168.0.1",
"last_location": "OFFSITE",
"last_name": None,
"last_policy_updated_time": None,
"last_reported_time": "2020-08-26T18:29:37.148Z",
"last_reset_time": None,
"last_shutdown_time": None,
"linux_kernel_version": None,
"login_user_name": "email@example.org",
"mac_address": "000000000000",
"middle_name": None,
"name": "Win7x64",
"organization_id": 654,
"organization_name": "org-name.example.com",
"os": "WINDOWS",
"os_version": "Windows 7 x64 SP: 1",
"passive_mode": False,
"policy_id": 11200,
"policy_name": "policy-restrictive",
"policy_override": True,
"quarantined": False,
"registered_time": "2019-12-05T16:23:14.320Z",
"scan_last_action_time": None,
"scan_last_complete_time": None,
"scan_status": None,
"sensor_kit_type": "WINDOWS",
"sensor_out_of_date": True,
"sensor_pending_update": False,
"sensor_states": [
"ACTIVE",
"LIVE_RESPONSE_NOT_RUNNING",
"LIVE_RESPONSE_NOT_KILLED",
"LIVE_RESPONSE_ENABLED",
"SECURITY_CENTER_OPTLN_DISABLED"
],
"sensor_version": "3.6.0.1201",
"status": "REGISTERED",
"target_priority": "MEDIUM",
"uninstall_code": "ABCDEF",
"vcenter_name": None,
"vcenter_uuid": None,
"vdi_base_device": None,
"virtual_machine": False,
"virtualization_provider": "UNKNOWN",
"vm_ip": None,
"vm_name": None,
"vm_uuid": None,
"vuln_score": 0.0,
"vuln_severity": None,
"windows_platform": None
}
POST_DEVICE_SEARCH_RESP = {
"results": [
{
"activation_code": None,
"activation_code_expiry_time": "2019-12-12T16:23:14.291Z",
"ad_group_id": 0,
"appliance_name": None,
"appliance_uuid": None,
"av_ave_version": "8.3.62.44",
"av_engine": "4.13.0.207-ave.8.3.62.44:avpack.8.5.0.66:vdf.8.18.9.10 (20200826)",
"av_last_scan_time": None,
"av_master": False,
"av_pack_version": "8.5.0.66",
"av_product_version": "4.13.0.207",
"av_status": [
"AV_ACTIVE",
"ONDEMAND_SCAN_DISABLED"
],
"av_update_servers": None,
"av_vdf_version": "8.18.9.10 (20200826)",
"cluster_name": None,
"current_sensor_policy_name": "policy-restrictive",
"datacenter_name": None,
"deployment_type": "ENDPOINT",
"deregistered_time": None,
"device_meta_data_item_list": [
{
"key_name": "OS_MAJOR_VERSION",
"key_value": "Windows",
"position": 0
},
{
"key_name": "SUBNET",
"key_value": "192.10.33",
"position": 0
}
],
"device_owner_id": 93474,
"email": "email@example.org",
"esx_host_name": None,
"esx_host_uuid": None,
"first_name": None,
"id": 98765,
"last_contact_time": "2020-08-26T21:25:19.513Z",
"last_device_policy_changed_time": "2019-12-05T16:24:23.216Z",
"last_device_policy_requested_time": "2020-06-23T00:43:28.164Z",
"last_external_ip_address": "192.168.0.1",
"last_internal_ip_address": "192.168.0.1",
"last_location": "OFFSITE",
"last_name": None,
"last_policy_updated_time": "2020-01-06T22:55:56.218Z",
"last_reported_time": "2020-08-26T18:29:37.148Z",
"last_reset_time": None,
"last_shutdown_time": None,
"linux_kernel_version": None,
"login_user_name": "email@example.org",
"mac_address": "000000000000",
"middle_name": None,
"name": "Win7x64",
"organization_id": 654,
"organization_name": "org-name.example.com",
"os": "WINDOWS",
"os_version": "Windows 7 x64 SP: 1",
"passive_mode": False,
"policy_id": 11200,
"policy_name": "policy-restrictive",
"policy_override": True,
"quarantined": False,
"registered_time": "2019-12-05T16:23:14.320Z",
"scan_last_action_time": None,
"scan_last_complete_time": None,
"scan_status": None,
"sensor_kit_type": "WINDOWS",
"sensor_out_of_date": True,
"sensor_pending_update": False,
"sensor_states": [
"ACTIVE",
"LIVE_RESPONSE_NOT_RUNNING",
"LIVE_RESPONSE_NOT_KILLED",
"LIVE_RESPONSE_ENABLED",
"SECURITY_CENTER_OPTLN_DISABLED"
],
"sensor_version": "3.6.0.1201",
"status": "REGISTERED",
"target_priority": "MEDIUM",
"uninstall_code": "ABCDEF",
"vcenter_name": None,
"vcenter_uuid": None,
"vdi_base_device": None,
"virtual_machine": False,
"virtualization_provider": "UNKNOWN",
"vm_ip": None,
"vm_name": None,
"vm_uuid": None,
"vuln_score": 0.0,
"vuln_severity": None,
"windows_platform": None
}
],
"num_found": 1
}
|
#!/usr/bin/env python3
import socket
import time
import struct
import sys
import os
import hashlib
import getopt
import fcntl
import struct
import socket, select
from Crypto.Cipher import AES
import base64
import binascii
import random
class AEScipher():
def __init__(self, aespwd):
AESCTR_PASSWORD = hashlib.sha256(aespwd).digest()
key = AESCTR_PASSWORD[:16]
self.nonce = AESCTR_PASSWORD[16:24]
self.cipher = AES.new(key, AES.MODE_ECB)
def encrypt(self, dataarr, seqid, counterStart=None):
BCER = b""
counterStart = counterStart if counterStart is not None else struct.unpack("I", os.urandom(4))[0]
for i in range(len(dataarr) // 16 + 1):
counter = struct.pack("IHH", counterStart, i, seqid)
IVc = self.nonce + counter
BCER += self.cipher.encrypt(IVc)
retarr = b""
for i in range(len(dataarr)):
retarr += struct.pack("B", (dataarr[i] ^ BCER[i]))
return struct.pack("I", counterStart) + retarr
def decrypt(self, dataarr, seqid):
counterStart = dataarr[0:4]
dataarr = dataarr[4:]
return self.encrypt(dataarr, seqid, struct.unpack("I", counterStart)[0])[4:]
class packet():
src = ""
seq = 0
id = 0
type = 0
data = b""
data_raw = b""
class RawICMPtunnel():
def __init__(self, AESpwd):
self.cipher = AEScipher(AESpwd)
self.sock = socket.socket(socket.AF_INET, socket.SOCK_RAW, socket.IPPROTO_ICMP)
def send(self, addr, data, id, seq, encrypt=True):
buf = self.pack_packet(data, id, seq, encrypt=encrypt)
# print("Send to ", (addr , buf))
self.sock.sendto(buf, (addr, 22))
def recv(self):
buf = self.sock.recv(16384)
return self.parse_packet(buf)
def ICMPchecksum(self, source_string):
if type(source_string) != bytes:
raise TypeError("Bust be bytes")
"""
I'm not too confident that this is right but testing seems
to suggest that it gives the same answers as in_cksum in ping.c
"""
sum = 0
countTo = (len(source_string) // 2) * 2
count = 0
while count < countTo:
thisVal = (source_string[count + 1]) * 256 + (source_string[count])
sum = sum + thisVal
sum = sum & 0xffffffff # Necessary?
count = count + 2
if countTo < len(source_string):
sum = sum + (source_string[len(source_string) - 1])
sum = sum & 0xffffffff # Necessary?
sum = (sum >> 16) + (sum & 0xffff)
sum = sum + (sum >> 16)
answer = ~sum
answer = answer & 0xffff
# Swap bytes. Bugger me if I know why.
answer = answer >> 8 | (answer << 8 & 0xff00)
return answer
def pack_packet(self, payload, id, seq, encrypt=True):
# Header is type (8), code (8), checksum (16), id (16), sequence (16)
seq = seq % 2 ** 16
header = struct.pack('!bbHHH', 0, 0, 0, id, seq)
if encrypt == True:
data = self.cipher.encrypt(payload, seq)
else:
data = payload
chksum = self.ICMPchecksum(header + data)
return header[0:2] + struct.pack("!H", chksum) + header[4:] + data
def parse_packet(self, data):
p = packet()
# IPttl, IPproto, IPchksum = struct.unpack("!BBH", data[8:12])
IPsrc, IPdst = socket.inet_ntoa(data[12:16]), socket.inet_ntoa(data[16:20])
ICMPtype, ICMPcode, ICMPchecksum, ICMPpacket_id, ICMPsequence = struct.unpack('!bbHHH', data[20:28])
calsum = self.ICMPchecksum(data[20:22] + b"\x00\x00" + data[24:])
if ICMPchecksum != calsum:
print("checksum not match")
p.src = IPsrc
p.type = ICMPtype
p.id = ICMPpacket_id
p.seq = ICMPsequence
p.data_raw = data[28:]
p.data = self.cipher.decrypt(data[28:], ICMPsequence)
return p
def randomString(stringLength=10):
"""Generate a random string of fixed length """
letters = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!"
return ''.join(random.choice(letters) for i in range(stringLength))
class TunnelServer():
def __init__(self, addr, masklen, pwd, AESpwd, mtu):
self.icmptun = RawICMPtunnel(AESpwd)
self.pwd = hashlib.md5(pwd).digest()
self.icmpfd = self.icmptun.sock
self.masklen = masklen
self.ServerIP = addr
self.clients = {}
self.mtu = mtu
self.TIMEOUT = 600
self.create()
self.config(addr)
def create(self):
TUNSETIFF = 0x400454ca
IFF_TUN = 0x0001
self.tfd = os.open("/dev/net/tun", os.O_RDWR)
ifs = fcntl.ioctl(self.tfd, TUNSETIFF, struct.pack("16sH", b"t%d", IFF_TUN))
self.tname = ifs[:16].strip(b"\x00").decode("utf8")
print(self.tname)
def config(self, ip):
os.system("ip link set %s up" % (self.tname))
os.system("ip link set %s mtu %i" % (self.tname, self.mtu))
os.system("ip addr add %s/%i dev %s" % (ip, self.masklen, self.tname))
def close(self):
os.close(self.tfd)
def ip_str2int(self, ip_str):
return struct.unpack(">I", struct.pack("BBBB", *map(int, ip_str.split("."))))[0]
def ip_int2str(self, ip_int):
if ip_int < 0:
ip_int += 2 ** 32
return ".".join(map(str, struct.unpack("BBBB", struct.pack(">I", ip_int))))
def getInUseIP(self):
InUse_IP = [self.ServerIP]
for k, c in self.clients.items():
InUse_IP += [c["LanIP"]]
return InUse_IP
def getNextAvailableIp(self):
IFACE_IPi = self.ip_str2int(self.ServerIP)
IFACE_Maski = 2 ** 32 - 2 ** (32 - self.masklen)
inUseIP = map(self.ip_str2int, self.getInUseIP())
for testIP in range(IFACE_Maski + 1, 2 ** 32):
testIP = (IFACE_Maski & IFACE_IPi) | ((2 ** 32 - 1 ^ IFACE_Maski) & testIP)
if testIP not in inUseIP:
return self.ip_int2str(testIP)
print("No ip available, all ip in ip pool are already in use")
return "169.254.1.1"
def run(self):
self.icmpfd = self.icmptun.sock
while True:
rset = select.select([self.icmpfd, self.tfd], [], [])[0]
for r in rset:
# packet from internal (client <-- server)
if r == self.tfd:
data = os.read(self.tfd, self.mtu + 500)
for key, val in self.clients.items():
if socket.inet_ntoa(data[20:24]) == val["LanIP"] or socket.inet_ntoa(
data[20:24]) == self.ip_int2str(
self.ip_str2int(self.ServerIP) | (2 ** (32 - self.masklen) - 1)):
self.icmptun.send(val["addr"], data, val["id"], val["seq"])
val["seq"] += 1
curTime = time.time()
keys = list(self.clients.keys())
for key in keys:
if curTime - self.clients[key]["aliveTime"] > self.TIMEOUT:
print("Remove timeout client", self.clients[key]["addr"])
del self.clients[key]
# packet from external (client --> server)
elif r == self.icmpfd:
pack = self.icmptun.recv()
if pack.type != 8:
continue
key = pack.src + str(pack.id)
data = pack.data
if key not in self.clients:
# New client
if data == b"Login Request":
loginChallange = randomString(64).encode("utf8")
loginAnswer = base64.b64encode(hashlib.sha256(loginChallange + self.pwd).digest())
self.clients[key] = {"aliveTime": time.time(),
"addr": pack.src,
"id": pack.id,
"seq": pack.seq,
"loginChallange": loginChallange,
"loginAnswer": loginAnswer,
"LanIP": "169.254.1.1"
}
print("Login request from %s:%d" % (pack.src, pack.id))
data = b"Login Challange:" + loginChallange
print("Answer is:" + loginAnswer.decode("utf8"))
self.icmptun.send(pack.src, data, pack.id, pack.seq)
else:
print("Normal ping from %s:%d" % (pack.src, pack.id))
self.icmptun.send(pack.src, pack.data_raw, pack.id, pack.seq, encrypt=False)
else:
if self.clients[key]["LanIP"] == "169.254.1.1":
if data.startswith(b"loginAnswer:" + self.clients[key]["loginAnswer"]):
self.clients[key]["LanIP"] = self.getNextAvailableIp()
data = "Login Success. Allocatd IP is :" + self.clients[key]["LanIP"] + "/" + str(
self.masklen)
print(data)
self.icmptun.send(pack.src, data.encode("utf8"), pack.id, pack.seq)
else:
# print(data)
print("wrong answer")
else:
# Simply write the packet to local or forward them to other clients ???
os.write(self.tfd, data)
self.clients[key]["aliveTime"] = time.time()
if __name__ == '__main__':
try:
if len(sys.argv) < 5:
print("Usage: " + sys.argv[0] + " server_address/mask_length password AES_CTR_password MTU")
print("Example: " + sys.argv[0] + " 10.99.8.1/24 password AES-CTR_password 1000")
exit()
tun = TunnelServer(sys.argv[1].split("/")[0], int(sys.argv[1].split("/")[1]), sys.argv[2].encode("utf8"),
sys.argv[3].encode("utf8"), int(sys.argv[4]))
tun.run()
except KeyboardInterrupt:
tun.close()
sys.exit(0)
|
import os
import sys
sys.path.insert(0, os.getcwd())
import numpy as np
import pandas as pd
import dreamtools as dt
@np.vectorize
def approximately_equal(x, y, ndigits=0):
return round(x, ndigits) == round(y, ndigits)
def test_gdx_read():
db = dt.Gdx("test.gdx")
assert approximately_equal(db["qY"]["byg", 2010], 191)
assert approximately_equal(db["qI_s"]["IB", "fre", 2010], 4.43) # "IB" should be changed to "iB" in the GDX file.
assert approximately_equal(db["eCx"], 1)
assert db["fp"] == 1.0178
assert all(approximately_equal(db["inf_factor"], db["fp"]**(2010 - db["inf_factor"].index)))
assert db["s"].name == "s_"
assert db.vHh.loc["Net","tot",1970] == 5e-324
assert set(db["vHh"].index.get_level_values("a_")).issubset(set(db["a_"]))
def test_create_set_from_index():
db = dt.GamsPandasDatabase()
t = pd.Index(range(2010, 2026), name="t")
db.create_set("t", t)
assert db["t"].name == "t"
assert all(db["t"] == t)
assert db.symbols["t"].domains_as_strings == ["*"]
assert db.t.domains == ["*"]
db.create_set("tsub", t[5:], domains=["t"])
assert db["tsub"].name == "tsub"
assert all(db["tsub"] == t[5:])
assert db.symbols["tsub"].domains_as_strings == ["t"]
assert db.tsub.domains == ["t"]
s = pd.Index(["services", "goods"], name="s")
st = pd.MultiIndex.from_product([s, t], names=["s", "t"])
db.create_set("st", st)
assert db["st"].name == "st"
assert all(db["st"] == st[:])
assert db.symbols["st"].domains_as_strings == ["s", "t"]
assert db.st.domains == ["s", "t"]
def test_add_parameter_from_dataframe():
db = dt.GamsPandasDatabase()
df = pd.DataFrame()
df["t"] = range(2010, 2026)
df["value"] = 1.3
db.add_parameter_from_dataframe("par", df, add_missing_domains=True)
assert all(db["par"] == 1.3)
assert len(db["par"]) == 16
def test_multiply_added():
db = dt.GamsPandasDatabase()
df = pd.DataFrame([
[2010, "ser", 3],
[2010, "goo", 2],
[2020, "ser", 6],
[2020, "goo", 4],
], columns=["t", "s", "value"])
db.add_parameter_from_dataframe("q", df, add_missing_domains=True)
df = pd.DataFrame([
[2010, 1],
[2020, 1.2],
], columns=["t", "value"])
db.add_parameter_from_dataframe("p", df, add_missing_domains=True)
v = db["p"] * db["q"]
v.name = "v"
db.add_parameter_from_series(v)
assert db["v"][2020, "goo"] == 4.8
def test_add_parameter_from_series():
db = dt.GamsPandasDatabase()
t = pd.Index(range(2010, 2026), name="t")
par = pd.Series(1.4, index=t, name="par")
db.add_parameter_from_series(par, add_missing_domains=True)
assert all(db["par"] == 1.4)
assert len(db["par"]) == 16
ss = pd.Index(["foo"], name="ss")
singleton = pd.Series(1.4, index=ss, name="singleton")
db.add_parameter_from_series(singleton, add_missing_domains=True)
assert db["singleton"]["foo"] == 1.4
assert len(db["singleton"]) == 1
scalar = pd.Series(1.4, name="scalar")
db.add_parameter_from_series(scalar)
assert all(db["scalar"] == 1.4)
assert len(db["scalar"]) == 1
def test_create_variable():
db = dt.GamsPandasDatabase()
db.create_variable("scalar", data=3.2)
assert db.scalar == 3.2
db.create_variable("vector", data=[1, 2], index=pd.Index(["a", "b"], name="ab"), add_missing_domains=True)
assert all(db.vector == [1, 2])
db.create_variable("dataframe",
data=pd.DataFrame([
[2010, "ser", 3],
[2010, "goo", 2],
[2020, "ser", 6],
[2020, "goo", 4],
], columns=["t", "s", "value"]),
add_missing_domains=True
)
db.export("test_export.gdx")
assert dt.Gdx("test_export.gdx")["scalar"] == 3.2
assert all(dt.Gdx("test_export.gdx")["vector"] == [1, 2])
assert all(db.s == ["ser", "goo"])
assert all(db.t == [2010, 2020])
def test_create_parameter():
db = dt.GamsPandasDatabase()
db.create_parameter("scalar", data=3.2)
assert db.scalar == 3.2
db.create_parameter("vector", data=[1, 2], index=pd.Index(["a", "b"], name="ab"), add_missing_domains=True)
assert all(db.vector == [1, 2])
db.create_parameter("dataframe",
data=pd.DataFrame([
[2010, "ser", 3],
[2010, "goo", 2],
[2020, "ser", 6],
[2020, "goo", 4],
], columns=["t", "s", "value"]),
add_missing_domains=True
)
db.export("test_export.gdx")
assert dt.Gdx("test_export.gdx")["scalar"] == 3.2
assert all(dt.Gdx("test_export.gdx")["vector"] == [1, 2])
assert all(db.s == ["ser", "goo"])
assert all(db.t == [2010, 2020])
def test_add_variable_from_series():
db = dt.GamsPandasDatabase()
t = pd.Index(range(2010, 2026), name="t")
var = pd.Series(1.4, index=t, name="var")
db.add_variable_from_series(var, add_missing_domains=True)
assert all(db["var"] == 1.4)
assert len(db["var"]) == 16
def test_add_variable_from_dataframe():
db = dt.GamsPandasDatabase()
df = pd.DataFrame([
[2010, "ser", 3],
[2010, "goo", 2],
[2020, "ser", 6],
[2020, "goo", 4],
], columns=["t", "s", "value"])
db.add_variable_from_dataframe("q", df, add_missing_domains=True)
assert all(db.t == [2010, 2020])
assert all(db.s == ["ser", "goo"])
def test_multiply_with_different_sets():
assert approximately_equal(
sum(dt.Gdx("test.gdx")["qBNP"] * dt.Gdx("test.gdx")["qI"] * dt.Gdx("test.gdx")["qI_s"]),
50730260150
)
def test_export_with_no_changes():
dt.Gdx("test.gdx").export("test_export.gdx", relative_path=True)
assert round(os.stat("test.gdx").st_size, -5) == round(os.stat("test_export.gdx").st_size, -5)
def test_export_variable_with_changes():
db = dt.Gdx("test.gdx")
db["qY"] = db["qY"] * 2
db.export("test_export.gdx", relative_path=True)
old, new = dt.Gdx("test.gdx"), dt.Gdx("test_export.gdx")
assert all(old["qY"] * 2 == new["qY"])
def test_export_scalar_with_changes():
db = dt.Gdx("test.gdx")
db["eCx"] = db["eCx"] * 2
db.export("test_export.gdx", relative_path=True)
old, new = dt.Gdx("test.gdx"), dt.Gdx("test_export.gdx")
assert approximately_equal(old["eCx"] * 2, new["eCx"])
def test_export_set_with_changes():
db = dt.Gdx("test.gdx")
db["s"].texts["tje"] = "New text"
db.export("test_export.gdx", relative_path=True)
assert dt.Gdx("test_export.gdx")["s"].texts["tje"] == "New text"
def test_copy_set():
db = dt.Gdx("test.gdx")
db["alias"] = db["s"]
db["alias"].name = "alias"
index = db["alias"]
domains = ["*" if i in (None, index.name) else i for i in db.get_domains_from_index(index, index.name)]
db.database.add_set_dc(index.name, domains, "")
index = index.copy()
index.domains = domains
db.series[index.name] = index
db.export("test_export.gdx", relative_path=True)
assert all(dt.Gdx("test_export.gdx")["alias"] == db["s"])
def test_export_added_variable():
db = dt.Gdx("test.gdx")
db.create_variable("foo", [db.a, db.t], explanatory_text="Variable added from Python.")
db["foo"] = 42
db.export("test_export.gdx", relative_path=True)
assert all(approximately_equal(dt.Gdx("test_export.gdx")["foo"], 42))
def test_export_NAs():
db = dt.GamsPandasDatabase()
t = db.create_set("t", range(5))
p = db.create_parameter("p", t)
assert len(db["p"]) == 5
assert len(db.symbols["p"]) == 0
db.export("test_export.gdx")
db = dt.Gdx("test_export.gdx")
assert all(pd.isna(db["p"]))
assert len(db["p"]) == 0
assert len(db.symbols["p"]) == 0
def test_detuple():
assert dt.GamsPandasDatabase.detuple("aaa") == "aaa"
assert dt.GamsPandasDatabase.detuple(("aaa",)) == "aaa"
assert list(dt.GamsPandasDatabase.detuple(("aaa", "bbb"))) == ["aaa", "bbb"]
assert dt.GamsPandasDatabase.detuple(1) == 1
assert list(dt.GamsPandasDatabase.detuple([1, 2])) == [1, 2]
def test_create_methods():
# Create empty GamsPandasDatabase and alias creation methods
db = dt.GamsPandasDatabase()
Par, Var, Set = db.create_parameter, db.create_variable, db.create_set
# Create sets from scratch
t = Set("t", range(2000, 2021), "Årstal")
s = Set("s", ["tjenester", "fremstilling"], "Brancher", ["Tjenester", "Fremstilling"])
st = Set("st", [s, t], "Branche x år dummy")
sub = Set("sub", ["tjenester"], "Subset af brancher", domains=["s"])
one2one = Set("one2one", [(2010, 2015), (2011, 2016)], "1 til 1 mapping", domains=["t", "t"])
one2many = Set("one2many",
[("tot", "tjenester"), ("tot", "fremstilling")],
"1 til mange mapping", domains=["*", "s"],
)
assert one2many.name == "one2many"
assert one2many.names == ["*", "s"]
assert one2many.domains == ["*", "s"]
# Create parameters and variables based on zero ore more sets
gq = Par("gq", None, "Produktivitets-vækst", 0.01)
fq = Par("fp", t, "Vækstkorrektionsfaktor", (1 + 0.01)**(t-2010))
d = Par("d", st, "Dummy")
y = Var("y", [s,t], "Produktion")
assert gq == 0.01
assert all(fq.loc[2010:2011] == [1, 1.01])
assert pd.isna(d["tjenester",2010])
assert pd.isna(y["tjenester",2010])
|
import bs
import bsUtils
import bsSpaz
import weakref
import math
import random
import bsInternal
class PlayerScoredMessage(object):
"""
category: Message Classes
Informs a bs.Activity that a player scored.
Attributes:
score
The score value.
"""
def __init__(self,score):
'Instantiate with the given values'
self.score = score
class ScoreSet(object):
""" Manages individual score keeping for players; provides persistant scores and some other goodies.
Players are indexed here by name so that if a player leaves and comes back he'll keep the same score """
class _Player(object):
def __init__(self, name, nameFull, player, scoreSet):
self.name = name
self.nameFull = nameFull
self.score = 0
self.accumScore = 0
self.killCount = 0
self.accumKillCount = 0
self.killedCount = 0
self.accumKilledCount = 0
self._multiKillTimer = None
self._multiKillCount = 0
self._scoreSet = weakref.ref(scoreSet)
self._associateWithPlayer(player)
def getTeam(self):
return self.team()
def getPlayer(self):
return self._player
def getName(self, full=False):
return self.nameFull if full else self.name
def getIcon(self):
return self.lastPlayer.getIcon()
def getSpaz(self):
if self._spaz is None: return None
return self._spaz()
def cancelMultiKillTimer(self):
self._multiKillTimer = None
def getActivity(self):
try: return self._scoreSet()._activity()
except Exception: return None
def _associateWithPlayer(self, player):
self.lastPlayer = player
self._player = player
self.team = weakref.ref(player.getTeam())
self.character = player.character
self._spaz = None
self.streak = 0
def _endMultiKill(self):
self._multiKillTimer = None
self._multiKillCount = 0
def submitKill(self,showPoints=True):
self._multiKillCount += 1
if self._multiKillCount == 1:
score = 0
name = None
elif self._multiKillCount == 2:
score = 20
name = bs.Lstr(resource='twoKillText')
color=(0.1,1.0,0.0,1)
scale = 1.0
delay = 0
sound = self._scoreSet()._orchestraHitSound
elif self._multiKillCount == 3:
score = 40
name = bs.Lstr(resource='threeKillText')
color=(1.0,0.7,0.0,1)
scale = 1.1
delay = 300
sound = self._scoreSet()._orchestraHitSound2
elif self._multiKillCount == 4:
score = 60
name = bs.Lstr(resource='fourKillText')
color=(1.0,1.0,0.0,1)
scale = 1.2
delay = 600
sound = self._scoreSet()._orchestraHitSound3
elif self._multiKillCount == 5:
score = 80
name = bs.Lstr(resource='fiveKillText')
color=(1.0,0.5,0.0,1)
scale = 1.3
delay = 900
sound = self._scoreSet()._orchestraHitSound4
else:
score = 100
name = bs.Lstr(resource='multiKillText',subs=[('${COUNT}',str(self._multiKillCount))])
color=(1.0,0.5,0.0,1)
scale = 1.3
delay = 1000
sound = self._scoreSet()._orchestraHitSound4
def _apply(name,score,showPoints,color,scale,sound):
# only award this if they're still alive and we can get their pos
try: ourPos = self.getSpaz().node.position
except Exception: return
# jitter position a bit since these often come in clusters
ourPos = (ourPos[0]+(random.random()-0.5)*2.0,
ourPos[1]+(random.random()-0.5)*2.0,
ourPos[2]+(random.random()-0.5)*2.0)
activity = self.getActivity()
if activity is not None:
bsUtils.PopupText(
# (('+'+str(score)+' ') if showPoints else '')+name,
bs.Lstr(value=(('+'+str(score)+' ') if showPoints else '')+'${N}',subs=[('${N}',name)]),
color=color,
scale=scale,
position=ourPos).autoRetain()
bs.playSound(sound)
self.score += score
self.accumScore += score
# inform a running game of the score
if score != 0 and activity is not None:
activity.handleMessage(PlayerScoredMessage(score=score))
if name is not None:
bs.gameTimer(300+delay,bs.Call(_apply,name,score,showPoints,color,scale,sound))
# keep the tally rollin'...
# set a timer for a bit in the future
self._multiKillTimer = bs.Timer(1000,self._endMultiKill)
def __init__(self):
self._activity = None
self._players = {}
def setActivity(self,activity):
self._activity = None if activity is None else weakref.ref(activity)
# load our media into this activity's context
if activity is not None:
if activity.isFinalized():
bs.printError('unexpected finalized activity')
with bs.Context(activity): self._loadMedia()
def _loadMedia(self):
self._orchestraHitSound = bs.getSound('orchestraHit')
self._orchestraHitSound2 = bs.getSound('orchestraHit2')
self._orchestraHitSound3 = bs.getSound('orchestraHit3')
self._orchestraHitSound4 = bs.getSound('orchestraHit4')
def reset(self):
# just to be safe, lets make sure no multi-kill timers are gonna go off
# for no-longer-on-the-list players
for p in self._players.values(): p.cancelMultiKillTimer()
self._players = {} # our dict of players indexed by name
# for things like per-round sub-scores..
def resetAccum(self):
for p in self._players.values():
p.cancelMultiKillTimer()
p.accumScore = 0
p.accumKillCount = 0
p.accumKilledCount = 0
p.streak = 0
def registerPlayer(self,player):
name = player.getName()
nameFull = player.getName(full=True)
try:
# if the player already exists, update his character and such as it may have changed
self._players[name]._associateWithPlayer(player)
except Exception: p = self._players[name] = self._Player(name,nameFull,player,self)
def getValidPlayers(self):
validPlayers = {}
# go through our player records and return ones whose player id still corresponds to a player with that name
for pName,p in self._players.items():
try: exists = (p.lastPlayer.exists() and p.lastPlayer.getName() == pName)
except Exception: exists = False
if exists:
validPlayers[pName] = p
return validPlayers
def _getSpaz(self,player):
p = self._players[player.getName()]
# this is a weak-ref
if p._spaz is None: return None
return p._spaz()
def playerGotNewSpaz(self,player,spaz):
p = self._players[player.getName()]
if p.getSpaz() is not None: raise Exception("got 2 playerGotNewSpaz() messages in a row without a lost-spaz message")
p._spaz = weakref.ref(spaz)
def playerGotHit(self,player):
p = self._players[player.getName()]
p.streak = 0
def playerScored(self,player,basePoints=1,target=None, kill=False, victimPlayer=None,scale=1.0,color=None,title=None,screenMessage=True,display=True,importance=1,showPoints=True,bigMessage=False):
""" register a score for the player; return value is actual score with multipliers and such factored in """
name = player.getName()
p = self._players[name]
# if title is None: title = ''
if kill: p.submitKill(showPoints=showPoints)
displayColor = (1,1,1,1)
if color is not None: displayColor = color
elif importance != 1:
displayColor = (1.0,1.0,0.4,1)
points = basePoints
exc = ''
# if they want a big announcement, throw a zoom-text up there
if display and bigMessage:
try:
activity = self._activity()
if activity:
nameFull = player.getName(full=True,icon=False)
activity.showZoomMessage(bs.Lstr(resource='nameScoresText',subs=[('${NAME}',nameFull)]),color=bsUtils.getNormalizedColor(player.getTeam().color))
except Exception,e:
print 'Exception showing bigMessage',e
# if we currently have a spaz, pop up a score over it
if display and showPoints:
try: ourPos = p.getSpaz().node.position
except Exception: ourPos = None
if ourPos is not None:
if target is None: target = ourPos
# if display-pos is *way* lower than us, raise it up
# (so we can still see scores from dudes that fell off cliffs)
displayPos = (target[0], max(target[1], ourPos[1]-2.0), min(target[2], ourPos[2]+2.0))
# bs.printError('ignoring title arg in playerScored:',title)
# if type(title) != str or title != '': title = ' '+title
activity = self._activity()
if activity is not None:
if title is not None:
s = bs.Lstr(value='+${A} ${B}',subs=[('${A}',str(points)),('${B}',title)])
else:
s = bs.Lstr(value='+${A}',subs=[('${A}',str(points))])
# bsUtils.PopupText('+'+str(points)+title,
bsUtils.PopupText(s,
color=displayColor,
scale=1.2*scale,
position=displayPos).autoRetain()
# tally kills
if kill:
p.accumKillCount += 1
p.killCount += 1
# report non-kill scorings
try:
if screenMessage and not kill:
bs.screenMessage(bs.Lstr(resource='nameScoresText',subs=[('${NAME}',name)]),
top=True,color=player.color,
image=player.getIcon())
except Exception,e: print 'Error announcing score:',e
p.score += points
p.accumScore += points
# inform a running game of the score
if points != 0:
activity = self._activity() if self._activity is not None else None
if activity is not None:
activity.handleMessage(PlayerScoredMessage(score=points))
return points
def playerLostSpaz(self, player, killed=False, killer=None):
name = player.getName()
p = self._players[name]
p._spaz = None
p.streak = 0
if killed:
p.accumKilledCount += 1
p.killedCount += 1
try:
if killed and bs.getActivity().announcePlayerDeaths:
if killer == player:
bs.screenMessage(bs.Lstr(resource='nameSuicideKidFriendlyText' if bsInternal._getSetting('Kid Friendly Mode') else 'nameSuicideText',subs=[('${NAME}',name)]),
top=True,color=player.color,image=player.getIcon())
elif killer is not None:
if killer.getTeam() == player.getTeam():
bs.screenMessage(bs.Lstr(resource='nameBetrayedText',subs=[('${NAME}',killer.getName()),('${VICTIM}',name)]),
top=True,color=killer.color,image=killer.getIcon())
else:
bs.screenMessage(bs.Lstr(resource='nameKilledText',subs=[('${NAME}',killer.getName()),('${VICTIM}',name)]),
top=True,color=killer.color,image=killer.getIcon())
else:
bs.screenMessage(bs.Lstr(resource='nameDiedText',subs=[('${NAME}',name)]),
top=True,color=player.color,image=player.getIcon())
except Exception,e:
bs.printException('Error announcing kill')
|
from django.db import models
from api.models.post.models import Post
class DetailPost(models.Model):
num = models.OneToOneField(Post,
unique=True,
primary_key=True,
on_delete=models.DO_NOTHING,
related_name='detail',
db_column='num')
detail = models.TextField()
class Meta:
db_table = 'detail_post'
verbose_name = '캐시된 게시글'
verbose_name_plural = '캐시 목록'
|
import csv
import json
import sys
###############################################################################
#
# This file takes in a Manuscript vhmml JSON file with just listing data
# and outputs a CSV file (id, country, city, repository, shelf mark,
# project number, permalink
#
###############################################################################
# Load JSON data file into a Python variable.
if len(sys.argv) > 1:
filetoOpen = sys.argv[1]
else:
filetoOpen = raw_input("Name of the vHMML JSON listing data file? ")
input = open(filetoOpen)
# load the JSON file data into a python object
data = json.load(input)
# close the open JSON file. just in case
input.close()
# TESTING: Print out all the JSON data
# print data
# delete file if exists? Don't need to, will just overwrite existing file
csvFile = 'csvfile_'+filetoOpen+'.csv'
f = open(csvFile, 'w')
# make the header string first, include all the fields so that no matter what
# they show up.
csvHeaderString = "id,"
csvHeaderString = csvHeaderString + "country,"
csvHeaderString = csvHeaderString + "city,"
csvHeaderString = csvHeaderString + "repository,"
csvHeaderString = csvHeaderString + "shelfmark,"
csvHeaderString = csvHeaderString + "hmmlProjectNumber,"
csvHeaderString = csvHeaderString + "permalink"
# TESTING
# print csvHeaderString
# write out the header row for the CSV file
csvHeaderString = csvHeaderString + "\n"
f.write(csvHeaderString)
# This for loop traverses the JSON file, and puts the value,
# if there, into a string
for x in data:
if x["id"]:
csvValuesString = str(x["id"]) + ','
else:
csvValuesString = csvValuesString + 'null,'
if "country" in x:
csvValuesString = csvValuesString + x["country"].encode('utf-8') + ','
else:
csvValuesString = csvValuesString + 'null,'
if x["city"]:
csvValuesString = csvValuesString + x["city"].encode('utf-8') + ','
else:
csvValuesString = csvValuesString + 'null,'
if x["repository"]:
csvValuesString = csvValuesString + x["repository"].encode('utf-8')+','
else:
csvValuesString = csvValuesString + 'null,'
if "shelfmark" in x:
csvValuesString = csvValuesString + x["shelfmark"].encode('utf-8')+','
else:
csvValuesString = csvValuesString + 'null,'
if x["hmmlProjectNumber"]:
csvValuesString = csvValuesString + str(x["hmmlProjectNumber"])+','
else:
csvValuesString = csvValuesString + 'null,'
if x["permalink"]:
csvValuesString = csvValuesString + str(x["permalink"])
else:
csvValuesString = csvValuesString + 'null'
# TESTING
# print csvValuesString
csvValuesString = csvValuesString + '\n'
f.write(csvValuesString)
# Python will convert \n to os.linesep. Close the file
f.close()
# Tell them we're done
print "Done! Open " + csvFile + " to view your CSV listing data."
|
from __future__ import annotations
import datetime
from typing import TYPE_CHECKING, Any, Dict, List, Optional, Union
from .attachments import Poll, Geo, File, Media
from .enums import ReplySetting
from .constants import (
TWEET_EXPANSION,
TWEET_FIELD,
USER_FIELD,
PINNED_TWEET_EXPANSION,
MEDIA_FIELD,
PLACE_FIELD,
POLL_FIELD,
)
from .relations import RelationHide, RelationLike, RelationRetweet, RelationDelete
from .user import User
from .utils import time_parse_todt, convert
from .message import Message
from .paginations import UserPagination, TweetPagination
from .dataclass import (
Embed,
EmbedImage,
PublicTweetMetrics,
NonPublicTweetMetrics,
OrganicTweetMetrics,
PromotedTweetMetrics,
)
if TYPE_CHECKING:
from .http import HTTPClient
from .type import ID
__all__ = ("Tweet",)
class Tweet(Message):
"""Represents a tweet message from Twitter.
A Tweet is any message posted to Twitter which may contain photos, videos, links, and text. This class inherits :class:`Message`,
.. describe:: x == y
Check if one tweet id is equal to another.
.. describe:: x != y
Check if one tweet id is not equal to another.
.. describe:: str(x)
Get the Tweet's text.
.. versionadded:: 1.0.0
"""
__slots__ = (
"__original_payload",
"_payload",
"_includes",
"tweet_metrics",
"http_client",
"deleted_timestamp",
"_public_metrics",
"_non_public_metrics",
"_organic_metrics",
"_promoted_metrics",
)
def __init__(
self,
data: Dict[str, Any],
*,
deleted_timestamp: Optional[int] = None,
http_client: Optional[HTTPClient] = None,
) -> None:
self.__original_payload = data
self._payload = data.get("data") or data
self._includes = self.__original_payload.get("includes")
self._referenced_tweets = self._payload.get("referenced_tweets")
self._entities = self._payload.get("entities")
self.http_client = http_client
self.deleted_timestamp = deleted_timestamp
self._public_metrics = PublicTweetMetrics(
**self._payload.get("public_metrics", None) or self.__original_payload.get("public_metrics")
)
self._non_public_metrics = self._payload.get("non_public_metrics", None) or self.__original_payload.get(
"non_public_metrics"
)
self._organic_metrics = self._payload.get("organic_metrics", None) or self.__original_payload.get(
"organic_metrics"
)
self._promoted_metrics = self._payload.get("promoted_metrics", None) or self.__original_payload.get(
"promoted_metrics"
)
if self._non_public_metrics:
non_public_metrics = self.http_client.payload_parser.parse_metric_data(self._non_public_metrics)
self._non_public_metrics = NonPublicTweetMetrics(**non_public_metrics)
if self._organic_metrics:
organic_metrics = self.http_client.payload_parser.parse_metric_data(self._organic_metrics)
self._organic_metrics = OrganicTweetMetrics(**organic_metrics)
if self._promoted_metrics:
promoted_metrics = self.http_client.payload_parser.parse_metric_data(self._promoted_metrics)
self._promoted_metrics = PromotedTweetMetrics(**promoted_metrics)
if self._entities and self._entities.get("urls"):
data = []
for url in self._entities["urls"]:
url = self.http_client.payload_parser.parse_embed_data(url)
data.append(url)
self._embeds = data
else:
self._embeds = None
super().__init__(self._payload.get("text"), self._payload.get("id"), 1)
def __repr__(self) -> str:
return "Tweet(text={0.text} id={0.id} author={0.author!r})".format(self)
@property
def author(self) -> Optional[User]:
"""Optional[:class:`User`]: Returns a user (object) who posted the tweet.
.. versionadded: 1.0.0
"""
if self._includes and self._includes.get("users"):
return User(self._includes.get("users")[0], http_client=self.http_client)
return None
@property
def possibly_sensitive(self) -> bool:
""":class:`bool`: Returns True if the tweet is possible sensitive to some users, else False.
.. versionadded: 1.0.0
"""
return self._payload.get("possibly_sensitive")
@property
def sensitive(self) -> bool:
""":class:`bool`: An alias to :meth:`Tweet.possibly_sensitive`.
.. versionadded: 1.5.0
"""
return self.possibly_sensitive
@property
def created_at(self) -> datetime.datetime:
""":class:`datetime.datetime`: Returns a :class:`datetime.datetime` object when the tweet was created.
.. versionadded: 1.0.0
"""
if self._payload.get("timestamp", None):
return datetime.datetime.fromtimestamp(int(self._payload.get("timestamp", None)) / 1000)
return time_parse_todt(self._payload.get("created_at"))
@property
def deleted_at(self) -> Optional[datetime.datetime]:
"""Optional[:class:`datetime.datetime`]: Returns a :class:`datetime.datetime` object when the tweet was deleted. Returns None when the tweet is not deleted.
.. note::
This property can only returns :class:`datetime.datetime` object through a tweet object from `on_tweet_delete` event.
.. versionadded: 1.5.0
"""
if not self.deleted_timestamp:
return None
return datetime.datetime.fromtimestamp(self.deleted_timestamp / 1000)
@property
def source(self) -> str:
""":class:`str`: Returns the source of the tweet. e.g if you post a tweet from a website, the source is gonna be 'Twitter Web App'
.. versionadded: 1.0.0
"""
return self._payload.get("source")
@property
def reply_setting(self) -> ReplySetting:
""":class:`ReplySetting`: Returns a :class:`ReplySetting` object with the tweet's reply setting. If everyone can reply, this method return :class:`ReplySetting.everyone`.
.. versionadded: 1.3.5
"""
return ReplySetting(self._payload.get("reply_settings"))
@property
def raw_reply_setting(self) -> str:
""":class:`str`: Returns the raw reply setting value. If everyone can replied, this method return 'Everyone'.
.. versionadded: 1.0.0
"""
return self._payload.get("reply_settings")
@property
def lang(self) -> str:
""":class:`str`: Returns the tweet's lang, if its english it return en.
.. versionadded: 1.0.0
"""
return self._payload.get("lang")
@property
def conversation_id(self) -> Optional[int]:
"""Optional[:class:`int`]: All replies are bind to the original tweet, this property returns the tweet's id if the tweet is a reply tweet else it returns None.
.. versionadded: 1.0.0
"""
try:
return int(self._payload.get("conversation_id"))
except ValueError:
return None
@property
def url(self) -> Optional[str]:
"""Optional[:class:`str`]: Get the tweet's url.
.. versionadded:: 1.1.0
.. versionchanged:: 1.5.0
Returns None if the author is invalid or the tweet doesn't have id.
"""
try:
return f"https://twitter.com/{self.author.username}/status/{self.id}"
except TypeError:
return None
@property
def mentions(self) -> Optional[List[User]]:
"""Optional[List[:class:`User`]]: Returns a list of :class:`User` objects that were mentioned in the tweet or an empty list / `[]` if no users were mentioned.
.. versionadded:: 1.1.3
.. versionchanged:: 1.5.0
Now returns a list of :class:`User` objects rather then a list of :class:`str` objects.
"""
users = []
for user in self._includes.get("users", {}):
for mention in self._entities.get("mentions", {}):
if user["id"] == mention["id"]:
users.append(User(user, http_client=self.http_client))
return users
@property
def poll(self) -> Optional[Poll]:
""":class:`Poll`: Returns a Poll object with the tweet's poll.
.. versionadded:: 1.1.0
"""
if self._includes:
if self._includes.get("polls"):
data = self._includes.get("polls")[0]
poll = Poll(
duration=data.get("duration_minutes"),
id=data.get("id"),
voting_status=data.get("voting_status"),
end_date=data.get("end_datetime"),
)
for option in data.get("options"):
poll.add_option(**option)
return poll
return None
@property
def medias(self) -> Optional[List[Media]]:
"""Optional[List[:class:`Media`]]: Returns a list of media(s) in a tweet.
.. versionadded:: 1.1.0
"""
if self._includes and self._includes.get("media"):
return [Media(img, http_client=self.http_client) for img in self._includes.get("media")]
return None
@property
def reference_user(self) -> Optional[User]:
"""Optional[:class:`User`]: Returns the referenced user. This can means:
The tweet is a retweet, which means the method returns the retweeted tweet's author.
The tweet is a quote tweet(retweet with comments), which means the method returns the quoted tweet's author.
The tweet is a reply tweet, which means the method returns the replied tweet's author.
.. versionadded:: 1.5.0
"""
if not self._includes or not self._includes.get("users") or not self._referenced_tweets:
return None
type = self._referenced_tweets[0].get("type", " ")
for user in self._includes["users"]:
if type == "replied_to" and user["id"] == self._payload.get("in_reply_to_user_id", 0):
# If the tweet count as a reply tweet,
# it would returns a user data that match the user's id with 'in_reply_to_user_id' data.
return User(user, http_client=self.http_client)
elif type == "quoted":
# If the tweet count as a quote tweet,
# it would returns a user data if the url contains the user's id. Every quote tweets have at least 1 url, the quoted tweet's url that contain the quoted tweet's author's id and the tweet id itself.
for embed in self.embeds:
if (
embed.expanded_url.startswith("https://twitter.com/")
and embed.expanded_url.split("/")[3] == user["id"]
):
return User(user, http_client=self.http_client)
elif type == "retweeted":
# If the tweet count as a retweet,
# it would returns a user data if the user are mention with a specific format, that is: 'RT @Mention: {The retweeted tweet's content}'
# The code only checks characters before the colon with the colon includes (i.e 'RT @Mention:').
for mentioned_user in self.mentions:
if self.text.startswith(f"RT {mentioned_user.mention}:"):
return mentioned_user
return None
@property
def reference_tweet(self) -> Optional[Tweet]:
"""Optional[:class:`Tweet`]: Returns the tweet's parent tweet or the referenced tweet. This can mean the parent tweet of the requested tweet is:
A retweeted tweet (The child Tweet is a Retweet),
A quoted tweet (The child Tweet is a Retweet with comment, also known as Quoted Tweet),
A replied tweet (The child Tweet is a reply tweet).
.. versionadded:: 1.5.0
"""
tweets = self._includes.get("tweets")
if not self._includes or not tweets or not self._referenced_tweets:
return None
for tweet in tweets:
if tweet["id"] == self._referenced_tweets[0]["id"]:
self.http_client.payload_parser.insert_object_author(tweet, self.reference_user)
return Tweet(tweet, http_client=self.http_client)
return None
@property
def embeds(self) -> Optional[List[Embed]]:
"""List[:class:`Embed`]: Returns a list of Embedded urls from the tweet
.. versionadded:: 1.1.3
"""
for embed in self._embeds:
if embed.get("images"):
for index, image in enumerate(embed["images"]):
if isinstance(image, EmbedImage):
break
embed["images"][index] = EmbedImage(**image)
return [Embed(**data) for data in self._embeds]
@property
def like_count(self) -> Optional[int]:
"""Optional[:class:`int`]: Returns the total of likes in the tweet.
.. versionadded: 1.1.0
"""
return convert(self._metrics.like_count, int)
@property
def retweet_count(self) -> Optional[int]:
"""Optional[:class:`int`]: Returns the total of retweetes in the tweet.
.. versionadded: 1.1.0
"""
return convert(self._metrics.retweet_count, int)
@property
def reply_count(self) -> Optional[int]:
"""Optional[:class:`int`]: Returns the total of replies in the tweet.
.. versionadded: 1.1.0
"""
return convert(self._metrics.reply_count, int)
@property
def quote_count(self) -> Optional[int]:
"""Optional[:class:`int`]: Returns the total of quotes in the tweet.
.. versionadded: 1.1.0
"""
return convert(self._metrics.quote_count, int)
@property
def non_public_metrics(self) -> Optional[OrganicTweetMetrics]:
"""Optional[:class:`OrganicTweetMetrics`]: The tweet's metrics that are not available for anyone to view on Twitter, such as `impressions_count` and `video view quartiles`.
.. versionadded:: 1.5.0
"""
return self._non_public_metrics
@property
def organic_metrics(self) -> Optional[OrganicTweetMetrics]:
"""Optional[:class:`OrganicTweetMetrics`]: The tweet's metrics in organic context (posted and viewed in a regular manner), such as `impression_count`, `user_profile_clicks` and `url_link_clicks`.
.. versionadded:: 1.5.0
"""
return self._organic_metrics
@property
def promoted_metrics(self) -> Optional[PromotedTweetMetrics]:
"""Optional[:class:`PromotedTweetMetrics`]: The tweet's metrics in promoted context (posted or viewed as part of an Ads campaign), such as `impression_count`, `user_profile_clicks` and `url_link_clicks`.
.. versionadded:: 1.5.0
"""
return self._promoted_metrics
def like(self) -> Optional[RelationLike]:
"""Like the tweet.
Returns
---------
Optional[:class:`RelationLike`]
This method returns a :class:`RelationLike` object.
.. versionadded:: 1.2.0
"""
my_id = self.http_client.access_token.partition("-")[0]
res = self.http_client.request("POST", "2", f"/users/{my_id}/likes", json={"tweet_id": str(self.id)}, auth=True)
return RelationLike(res)
def unlike(self) -> Optional[RelationLike]:
"""Unlike the tweet.
Returns
---------
:class:`RelationLike`
This method returns a :class:`RelationLike` object.
.. versionadded:: 1.2.0
"""
my_id = self.http_client.access_token.partition("-")[0]
res = self.http_client.request("DELETE", "2", f"/users/{my_id}/likes/{self.id}", auth=True)
return RelationLike(res)
def retweet(self) -> RelationRetweet:
"""Retweet the tweet.
Returns
---------
:class:`RelationRetweet`
This method returns a :class:`RelationRetweet` object.
.. versionadded:: 1.2.0
"""
my_id = self.http_client.access_token.partition("-")[0]
res = self.http_client.request(
"POST",
"2",
f"/users/{my_id}/retweets",
json={"tweet_id": str(self.id)},
auth=True,
)
return RelationRetweet(res)
def unretweet(self) -> RelationRetweet:
"""Unretweet the tweet.
Returns
---------
:class:`RelationRetweet`
This method returns a :class:`RelationRetweet` object.
.. versionadded:: 1.2.0
"""
my_id = self.http_client.access_token.partition("-")[0]
res = self.http_client.request("DELETE", "2", f"/users/{my_id}/retweets/{self.id}", auth=True)
return RelationRetweet(res)
def delete(self) -> RelationDelete:
"""Delete the client's tweet.
.. note::
You can only delete the client's tweet.
.. versionadded:: 1.2.0
"""
res = self.http_client.request("DELETE", "2", f"/tweets/{self.id}", auth=True)
try:
self.http_client.tweet_cache.pop(self.id)
except KeyError:
pass
return RelationDelete(res)
def reply(
self,
text: str = None,
*,
file: Optional[File] = None,
files: Optional[List[File]] = None,
geo: Optional[Union[Geo, str]] = None,
direct_message_deep_link: Optional[str] = None,
reply_setting: Optional[Union[ReplySetting, str]] = None,
exclude_reply_users: Optional[List[User, ID]] = None,
media_tagged_users: Optional[List[User, ID]] = None,
) -> Optional[Tweet]:
"""Post a tweet to reply to the tweet present by the tweet's id. Returns a :class:`Tweet` object or :class:`Message` if the tweet is not found in the cache.
.. note::
Note that if the tweet is a retweet you cannot reply to that tweet, it might not raise an error but it will post the tweet has a normal tweet rather then a reply tweet and it ping the :class:`Tweet.author`.
Parameters
------------
text: :class:`str`
The tweet's text, it will show up as the main text in a tweet.
file: Optional[:class:`File`]
Represents a single file attachment. It could be an image, gif, or video. It also have to be an instance of pytweet.File
files: Optional[List[:class:`File`]]
Represents multiple file attachments in a list. It could be an image, gif, or video. the item in the list must also be an instance of pytweet.File
geo: Optional[Union[:class:`Geo`, :class:`str`]]
The geo attachment, you can put an object that is an instance of :class:`Geo` or the place ID in a string.
direct_message_deep_link: Optional[:class:`str`]
The direct message deep link, It will showup as a CTA(call-to-action) with button attachment. Example of direct message deep link:
reply_setting: Optional[Union[:class:`ReplySetting`, :class:`str`]]
The reply setting that you can set to minimize users that can reply. If None is specified, the default is set to 'everyone' can reply.
exclude_reply_users: Optional[List[:class:`User`]]
A list of users or user ids to be excluded from the reply :class:`Tweet` thus removing a user from a thread, if you dont want to mention a reply with 3 mentions, You can use this argument and provide the user id you don't want to mention.
media_tagged_users: Optional[List[:class:`User`]]
A list of users or user ids being tagged in the Tweet with Media. If the user you're tagging doesn't have photo-tagging enabled, their names won't show up in the list of tagged users even though the Tweet is successfully created.
Returns
---------
Union[:class:`Tweet`, :class:`Message`]
Returns a :class:`Tweet` object or :class:`Message` object if the tweet is not found in the cache.
.. versionadded:: 1.2.5
"""
return self.http_client.post_tweet(
text,
file=file,
files=files,
geo=geo,
direct_message_deep_link=direct_message_deep_link,
reply_setting=reply_setting,
reply_tweet=self.id,
exclude_reply_users=exclude_reply_users,
media_tagged_users=media_tagged_users,
)
def hide(self) -> RelationHide:
"""Hide a reply tweet.
Returns
---------
:class:`RelationHide`
This method returns a :class:`RelationHide` object.
.. versionadded:: 1.2.5
"""
res = self.http_client.request("PUT", "2", f"/tweets/{self.id}/hidden", json={"hidden": False}, auth=True)
return RelationHide(res)
def unhide(self) -> RelationHide:
"""Unhide a hide reply.
Returns
---------
:class:`RelationHide`
This method returns a :class:`RelationHide` object.
.. versionadded:: 1.2.5
"""
res = self.http_client.request("PUT", "2", f"/tweets/{self.id}/hidden", json={"hidden": False}, auth=True)
return RelationHide(res)
def fetch_retweeters(self) -> Optional[UserPagination]:
"""Returns a pagination object with the users that retweeted the tweet.
Returns
---------
Optional[:class:`UserPagination`]
This method returns a :class:`UserPagination` object.
.. versionadded:: 1.1.3
"""
res = self.http_client.request(
"GET",
"2",
f"/tweets/{self.id}/retweeted_by",
params={
"expansions": PINNED_TWEET_EXPANSION,
"user.fields": USER_FIELD,
"tweet.fields": TWEET_FIELD,
},
)
if not res:
return []
return UserPagination(
res,
endpoint_request=f"/tweets/{self.id}/retweeted_by",
http_client=self.http_client,
params={
"expansions": PINNED_TWEET_EXPANSION,
"user.fields": USER_FIELD,
"tweet.fields": TWEET_FIELD,
},
)
def fetch_likers(self) -> Optional[UserPagination]:
"""Returns a pagination object with the users that liked the tweet.
Returns
---------
Optional[:class:`UserPagination`]
This method returns a :class:`UserPagination` object.
.. versionadded:: 1.1.3
"""
res = self.http_client.request(
"GET",
"2",
f"/tweets/{self.id}/liking_users",
params={
"expansions": PINNED_TWEET_EXPANSION,
"user.fields": USER_FIELD,
"tweet.fields": TWEET_FIELD,
},
)
if not res:
return []
return UserPagination(
res,
endpoint_request=f"/tweets/{self.id}/liking_users",
http_client=self.http_client,
params={
"expansions": PINNED_TWEET_EXPANSION,
"user.fields": USER_FIELD,
"tweet.fields": TWEET_FIELD,
},
)
def fetch_quoted_tweets(self) -> Optional[TweetPagination]:
"""Returns a pagination object for tweets that quoted the tweet
Returns
---------
Optional[:class:`TweetPagination`]
This method returns :class:`TweetPagination` or an empty list if the tweet does not contain any quoted tweets.
.. versionadded:: 1.5.0
"""
params = {
"expansions": TWEET_EXPANSION,
"user.fields": USER_FIELD,
"tweet.fields": TWEET_FIELD,
"media.fields": MEDIA_FIELD,
"place.fields": PLACE_FIELD,
"poll.fields": POLL_FIELD,
"max_results": 100,
}
res = self.http_client.request("GET", "2", f"/tweets/{self.id}/quote_tweets", params=params)
if not res:
return []
return TweetPagination(
res,
endpoint_request=f"/tweets/{self.id}/quote_tweets",
http_client=self.http_client,
params=params,
)
|
### Welcome to SliceGAN ###
####### Steve Kench #######
'''
Use this file to define your settings for a training run, or
to generate a synthetic image using a trained generator.
'''
from slicegan import model, networks, util
import argparse
# Define project name
Project_name = 'NMC_exemplar_final'
# Specify project folder.
Project_dir = 'xiaowogua'
# Run with False to show an image during or after training
parser = argparse.ArgumentParser()
parser.add_argument('training', type=int)
args = parser.parse_args()
Training = args.training
Project_path = util.mkdr(Project_name, Project_dir, Training)
## Data Processing
# Define image type (colour, grayscale, three-phase or two-phase.
# n-phase materials must be segmented)
image_type = 'twophase'
# define data type (for colour/grayscale images, must be 'colour' / '
# greyscale. nphase can be, 'tif', 'png', 'jpg','array')
data_type = 'tif'
# Path to your data. One string for isotrpic, 3 for anisotropic
data_path = ['Examples/NMC.tif']
## Network Architectures
# Training image size, no. channels and scale factor vs raw data
img_size, img_channels, scale_factor = 64, 2, 1
# z vector depth
z_channels = 16
# Layers in G and D
lays = 6
# kernals for each layer
dk, gk = [4]*lays, [4]*lays
# strides
ds, gs = [2]*lays, [2]*lays
# no. filters
df, gf = [img_channels,64,128,256,512,1], [z_channels,512,256,128,64,img_channels]
# paddings
dp, gp = [1,1,1,1,0],[2,2,2,2,3]
## Create Networks
netD, netG = networks.slicegan_nets(Project_path, Training, image_type, dk, ds, df,dp, gk ,gs, gf, gp)
# Train
if Training:
model.train(Project_path, image_type, data_type, data_path, netD, netG, img_channels, img_size, z_channels, scale_factor)
else:
img, raw, netG = util.test_img(Project_path, image_type, netG(), z_channels, lf=6, periodic=[0, 1, 1])
|
# Copyright 2019 Eli Lilly and Company
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import glob
import json
import os
from pathlib import Path
import re
import tempfile
from typing import Optional, Sequence, Union, cast
import subby
from pytest_wdl.executors import (
ExecutionFailedError,
JavaExecutor,
get_target_name,
read_write_inputs,
)
from pytest_wdl.utils import LOG, ensure_path
ENV_CROMWELL_JAR = "CROMWELL_JAR"
ENV_CROMWELL_CONFIG = "CROMWELL_CONFIG"
ENV_CROMWELL_ARGS = "CROMWELL_ARGS"
UNSAFE_RE = re.compile(r"[^\w.-]")
class Failures:
def __init__(
self,
num_failed: int,
failed_task: str,
failed_task_exit_status: Optional[str] = None,
failed_task_stdout: Optional[Union[Path, str]] = None,
failed_task_stderr: Optional[Union[Path, str]] = None
):
self.num_failed = num_failed
self.failed_task = failed_task
self.failed_task_exit_status = failed_task_exit_status
self._failed_task_stdout_path = None
self._failed_task_stdout = None
self._failed_task_stderr_path = None
self._failed_task_stderr = None
if isinstance(failed_task_stdout, Path):
self._failed_task_stdout_path = cast(Path, failed_task_stdout)
else:
self._failed_task_stdout = cast(str, failed_task_stdout)
if isinstance(failed_task_stderr, Path):
self._failed_task_stderr_path = cast(Path, failed_task_stderr)
else:
self._failed_task_stderr = cast(str, failed_task_stderr)
@property
def failed_task_stdout(self):
if self._failed_task_stdout is None and self._failed_task_stderr_path:
self._failed_task_stdout = Failures._read_task_std(
self._failed_task_stdout_path
)
return self._failed_task_stdout
@property
def failed_task_stderr(self):
if self._failed_task_stderr is None and self._failed_task_stderr_path:
self._failed_task_stderr = Failures._read_task_std(
self._failed_task_stderr_path
)
return self._failed_task_stderr
@staticmethod
def _read_task_std(path: Path) -> Optional[str]:
if path:
if not path.exists():
path = path.with_suffix(".background")
if path.exists():
with open(path, "rt") as inp:
return inp.read()
class CromwellExecutor(JavaExecutor):
"""
Manages the running of WDL workflows using Cromwell.
Args:
import_dirs: Relative or absolute paths to directories containing WDL
scripts that should be available as imports.
java_bin: Path to the java executable.
java_args: Default Java arguments to use; can be overidden by passing
`java_args=...` to `run_workflow`.
cromwell_jar_file: Path to the Cromwell JAR file.
cromwell_args: Default Cromwell arguments to use; can be overridden by
passing `cromwell_args=...` to `run_workflow`.
"""
def __init__(
self,
import_dirs: Optional[Sequence[Path]] = None,
java_bin: Optional[Union[str, Path]] = None,
java_args: Optional[str] = None,
cromwell_jar_file: Optional[Union[str, Path]] = None,
cromwell_config_file: Optional[Union[str, Path]] = None,
cromwell_args: Optional[str] = None
):
super().__init__(java_bin, java_args)
self._import_dirs = import_dirs
self._cromwell_jar_file = self.resolve_jar_file(
"cromwell*.jar", cromwell_jar_file, ENV_CROMWELL_JAR
)
if not cromwell_config_file:
config_file = os.environ.get(ENV_CROMWELL_CONFIG)
if config_file:
cromwell_config_file = ensure_path(config_file)
if cromwell_config_file:
self._cromwell_config_file = ensure_path(
cromwell_config_file, is_file=True, exists=True
)
else:
self._cromwell_config_file = None
if not self.java_args and self._cromwell_config_file:
self.java_args = f"-Dconfig.file={self._cromwell_config_file}"
self._cromwell_args = cromwell_args or os.environ.get(ENV_CROMWELL_ARGS)
def run_workflow(
self,
wdl_path: Path,
inputs: Optional[dict] = None,
expected: Optional[dict] = None,
**kwargs
) -> dict:
"""
Run a WDL workflow on given inputs, and check that the output matches
given expected values.
Args:
wdl_path: The WDL script to execute.
inputs: Object that will be serialized to JSON and provided to Cromwell
as the workflow inputs.
expected: Dict mapping output parameter names to expected values.
kwargs: Additional keyword arguments, mostly for debugging:
* workflow_name: The name of the workflow in the WDL script. If None,
the name of the WDL script is used (without the .wdl extension).
* inputs_file: Path to the Cromwell inputs file to use. Inputs are
written to this file only if it doesn't exist.
* imports_file: Path to the WDL imports file to use. Imports are
written to this file only if it doesn't exist.
* java_args: Additional arguments to pass to Java runtime.
* cromwell_args: Additional arguments to pass to `cromwell run`.
Returns:
Dict of outputs.
Raises:
ExecutionFailedError: if there was an error executing Cromwell
AssertionError: if the actual outputs don't match the expected outputs
"""
target, is_task = get_target_name(
wdl_path=wdl_path, import_dirs=self._import_dirs, **kwargs
)
if is_task:
raise ValueError(
"Cromwell cannot execute tasks independently of a workflow"
)
inputs_dict, inputs_file = read_write_inputs(
inputs_dict=inputs, namespace=target
)
imports_file = self._get_workflow_imports(kwargs.get("imports_file"))
inputs_arg = f"-i {inputs_file}" if inputs_file else ""
imports_zip_arg = f"-p {imports_file}" if imports_file else ""
java_args = kwargs.get("java_args", self.java_args) or ""
cromwell_args = kwargs.get("cromwell_args", self._cromwell_args) or ""
metadata_file = Path.cwd() / "metadata.json"
cmd = (
f"{self.java_bin} {java_args} -jar {self._cromwell_jar_file} run "
f"-m {metadata_file} {cromwell_args} {inputs_arg} {imports_zip_arg} "
f"{wdl_path}"
)
LOG.info(
f"Executing cromwell command '{cmd}' with inputs "
f"{json.dumps(inputs_dict, default=str)}"
)
exe = subby.run(cmd, raise_on_error=False)
metadata = None
if metadata_file.exists():
with open(metadata_file, "rt") as inp:
metadata = json.load(inp)
if exe.ok:
if metadata:
assert metadata["status"] == "Succeeded"
outputs = metadata["outputs"]
else:
LOG.warning(
f"Cromwell command completed successfully but did not generate "
f"a metadata file at {metadata_file}"
)
outputs = self._get_cromwell_outputs(exe.output)
else:
error_kwargs = {
"executor": "cromwell",
"target": target,
"status": "Failed",
"inputs": inputs_dict,
"executor_stdout": exe.output,
"executor_stderr": exe.error,
}
if metadata:
failures = self._get_failures(metadata)
if failures:
error_kwargs.update({
"failed_task": failures.failed_task,
"failed_task_exit_status": failures.failed_task_exit_status,
"failed_task_stdout": failures.failed_task_stdout,
"failed_task_stderr": failures.failed_task_stderr
})
if failures.num_failed > 1:
error_kwargs["msg"] = \
f"cromwell failed on {failures.num_failed} instances of " \
f"{failures.failed_task} of {target}; only " \
f"showing output from the first failed task"
else:
error_kwargs["msg"] = f"cromwell failed on workflow {target}"
else:
error_kwargs["msg"] = \
f"Cromwell command failed but did not generate a metadata " \
f"file at {metadata_file}"
raise ExecutionFailedError(**error_kwargs)
if expected:
self._validate_outputs(outputs, expected, target)
return outputs
def _get_workflow_imports(self, imports_file: Optional[Path] = None) -> Path:
"""
Creates a ZIP file with all WDL files to be imported.
Args:
imports_file: Text file naming import directories/files - one per line.
Returns:
Path to the ZIP file.
"""
write_imports = bool(self._import_dirs)
imports_path = None
if imports_file:
imports_path = ensure_path(imports_file)
if imports_path.exists():
write_imports = False
if write_imports and self._import_dirs:
imports = [
wdl
for path in self._import_dirs
for wdl in glob.glob(str(path / "*.wdl"))
]
if imports:
if imports_path:
ensure_path(imports_path, is_file=True, create=True)
else:
imports_path = Path(tempfile.mkstemp(suffix=".zip")[1])
imports_str = " ".join(imports)
LOG.info(f"Writing imports {imports_str} to zip file {imports_path}")
exe = subby.run(
f"zip -j - {imports_str}",
mode=bytes,
stdout=imports_path,
raise_on_error=False
)
if not exe.ok:
raise Exception(
f"Error creating imports zip file; stdout={exe.output}; "
f"stderr={exe.error}"
)
return imports_path
@classmethod
def _get_cromwell_outputs(cls, output) -> dict:
lines = output.splitlines(keepends=False)
if len(lines) < 2:
raise Exception(f"Invalid Cromwell output: {output}")
if lines[1].startswith("Usage"):
# If the cromwell command is not valid, usage is printed and the
# return code is 0 so it does not cause an exception above - we
# have to catch it here.
raise Exception("Invalid Cromwell command")
start = None
for i, line in enumerate(lines):
if line == "{" and lines[i+1].lstrip().startswith('"outputs":'):
start = i
elif line == "}" and start is not None:
end = i
break
else:
raise AssertionError("No outputs JSON found in Cromwell stdout")
return json.loads("\n".join(lines[start:(end + 1)]))["outputs"]
@classmethod
def _get_failures(cls, metadata: dict) -> Optional[Failures]:
for call_name, call_metadatas in metadata["calls"].items():
failed = list(filter(
lambda md: md["executionStatus"] == "Failed", call_metadatas
))
if failed:
failed_call = failed[0]
if "subWorkflowMetadata" in failed_call:
return cls._get_failures(
failed_call["subWorkflowMetadata"]
)
else:
if "returnCode" in failed_call:
rc = failed_call["returnCode"]
else:
rc = "Unknown"
stdout = stderr = None
if "stdout" in failed_call:
stdout = Path(failed_call["stdout"])
stderr = Path(failed_call["stderr"])
elif "failures" in failed_call:
failure = failed_call["failures"][0]
stderr = failure["message"]
if "causedBy" in failure:
stderr = "\n ".join(
[stderr] + [cb["message"] for cb in failure["causedBy"]]
)
return Failures(len(failed), call_name, rc, stdout, stderr)
|
# this file should generally become
# less useful as you scroll down.
# except for the bottom one :P <3
""" server settings """
# the domain you'd like gulag to be hosted on.
domain = 'cmyui.xyz' # cmyui.xyz
# the address which the server runs on, unix or inet4.
server_addr = '/tmp/gulag.sock' # /tmp/gulag.sock,
# ('127.0.0.1', 1234)
# your mysql authentication info.
mysql = {
'db': 'cmyui',
'host': 'localhost',
'password': 'lol123',
'user': 'cmyui',
'maxsize': 16
}
# your osu!api key, required for beatmap info.
osu_api_key = ''
# url of the mirror to use, for beatmap downloads.
mirror = 'https://api.chimu.moe/v1' # https://api.chimu.moe/v1
# in-game bot command prefix.
command_prefix = '!'
# the max amount of concurrent
# connections gulag will hold.
max_conns = 16 # likely ~8-16, depending on playercount & api usage
# the console gets a whole lot louder.
# devs can also toggle ingame w/ !debug.
debug = False
# the menu icon displayed on
# the main menu of osu! in-game.
menu_icon = (
'https://akatsuki.pw/static/logos/logo_ingame.png', # image url
'https://akatsuki.pw' # onclick url
)
# seasonal backgrounds to be displayed ingame.
seasonal_bgs = ('https://akatsuki.pw/static/flower.png',)
# max amount of multiplayer matches
# that can be created simultaneously
max_multi_matches = 64
# high ceiling values for autoban as a very simple form
# of "anticheat", simply ban a user if they are not
# whitelisted, and submit a score of too high caliber.
# Values below are in form (non_fl, fl), as fl has custom
# vals as it finds quite a few additional cheaters on the side.
autoban_pp = (
(700, 600), # vn!std
(9999, 9999), # vn!taiko
(9999, 9999), # vn!catch
(9999, 9999), # vn!mania
(1200, 800), # rx!std
(9999, 9999), # rx!taiko
(9999, 9999), # rx!catch
(9999, 9999) # ap!std
)
# hardcoded names & passwords users will not be able to use.
# TODO: retrieve the names of the top ~100 (configurable)?
# TODO: add more defaults; servers deserve better than this lol..
disallowed_names = {
'cookiezi', 'rrtyui',
'hvick225', 'qsc20010'
}
disallowed_passwords = {
'password', 'minilamp'
}
# gulag provides connectivity to
# discord via a few simple webhooks.
# simply add urls to start receiving.
webhooks = {
# general logging information
'audit-log': '',
''' (currently unused)
# notifications of sketchy plays
# & unusual activity auto-detected;
# described in more detail below.
'surveillance': '',
'''
# XXX: not a webhook, but the thumbnail used in them.
'thumbnail': 'https://akatsuki.pw/static/logos/logo.png'
}
# https://datadoghq.com
# support (stats tracking)
datadog = {
'api_key': '',
'app_key': ''
}
# the pp values which should be cached & displayed when
# a user requests the general pp values for a beatmap.
pp_cached_accs = (90, 95, 98, 99, 100) # std & taiko
pp_cached_scores = (8e5, 8.5e5, 9e5, 9.5e5, 10e5) # mania
# whether osu! client urls such as https://osu.your.domain/beatmaps/123
# should be redirected to osu.ppy.sh (https://osu.ppy.sh/beatmaps/123).
redirect_osu_urls = False
# the max duration to cache osu-checkupdates requests for.
# NOTE: this is only required for switchers and will be removed.
updates_cache_timeout = 3600 # ~3600
# the level of gzip compression to use for different tasks.
# when we want to quickly compress something and send it to
# the client immediately, we'd want to focus on optimizing
# both ends (server & client) for overall speed improvement.
# when we are sent data from the client to store long-term and
# serve in the distant future, we want to focus on size &
# decompression speed on the client-side. remember that higher
# levels will result in diminishing returns; more info below.
# https://www.rootusers.com/gzip-vs-bzip2-vs-xz-performance-comparison/
gzip = {'web': 4, 'disk': 9}
# allow for use of advanced (and potentially dangerous)
# features. i recommend checking where this config value
# is used throughout the code before enabling it.. :P
advanced = False
# additional info: https://pastebin.com/u4u14bAb
automatically_report_problems = False
|
def test_socfaker_pcap(socfaker_fixture):
assert socfaker_fixture.pcap()
|
#!/usr/bin/python3
import numpy as np
import numpy.matlib as mat
import scipy as sci
import muan.control.controls
from muan.control.state_space_gains import *
"""
A state-space plant class with support for process and measurement noise
"""
__author__ = 'Kyle Stachowicz (kylestach99@gmail.com)'
class StateSpacePlant(object):
def __init__(self, gains, x_initial = None):
assert (isinstance(gains, list) and isinstance(gains[0], StateSpaceGains)) \
or isinstance(gains, StateSpaceGains), \
"gains must be a StateSpaceGains object or a list of StateSpaceGains objects"
if not isinstance(gains, list):
gains = [gains]
self.gains = gains
self.current_gains_idx = 0
if x_initial is None:
x_initial = mat.zeros((A.shape[0], 1))
self.x = x_initial
gains = self.get_current_gains()
assert self.x.shape[0] == gains.A.shape[0] and self.x.shape[1] == 1, "x0 must be a vector compatible with A"
self.u = mat.zeros((gains.B.shape[1], 1))
self.y = gains.C * self.x + gains.D * self.u
def set_gains(self, gains_idx):
assert gains_idx < len(self.gains), "Gains id must be in range."
self.current_gains_idx = gains_idx
def get_current_gains(self):
return self.gains[self.current_gains_idx]
def update(self, u):
gains = self.get_current_gains()
# Calculate noise
process_noise = gains.Q * np.random.randn(gains.A.shape[0], 1)
measurement_noise = gains.R * np.random.randn(gains.C.shape[0], 1)
self.u = u
self.x = gains.A * self.x + gains.B * self.u + process_noise
self.y = gains.C * self.x + gains.D * self.u + measurement_noise
return self.y
|
###########################
#
# #534 Weak Queens - Project Euler
# https://projecteuler.net/problem=534
#
# Code by Kevin Marciniak
#
###########################
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from itertools import izip
def check(ls): return all(int(p) <= int(n) for p,n in izip(ls, ls[1:]))
def fv(x): return next(i for i,j in enumerate(x) if x[i]>=x[i+1])
with open('B-large.in','r') as f: lines = f.read().splitlines()
cn = 1
for x in lines[1:]:
if check(x): print 'Case #{}: {}'.format(cn,x)
else: print 'Case #{}: {}'.format(cn,int(x)-(int(x[fv(x)+1:])+1))
cn += 1
|
#!/usr/bin/env python
# Derived from http://sundararajana.blogspot.com/2007/05/motion-detection-using-opencv.html
import cv
class Target:
def __init__(self):
self.capture = cv.CaptureFromCAM(0)
cv.NamedWindow("Target", 1)
def run(self):
# Capture first frame to get size
frame = cv.QueryFrame(self.capture)
frame_size = cv.GetSize(frame)
grey_image = cv.CreateImage(cv.GetSize(frame), cv.IPL_DEPTH_8U, 1)
moving_average = cv.CreateImage(cv.GetSize(frame), cv.IPL_DEPTH_32F, 3)
difference = None
while True:
# Capture frame from webcam
color_image = cv.QueryFrame(self.capture)
# Smooth to get rid of false positives
cv.Smooth(color_image, color_image, cv.CV_GAUSSIAN, 3, 0)
if not difference:
# Initialize
difference = cv.CloneImage(color_image)
temp = cv.CloneImage(color_image)
cv.ConvertScale(color_image, moving_average, 1.0, 0.0)
else:
cv.RunningAvg(color_image, moving_average, 0.020, None)
# Convert the scale of the moving average.
cv.ConvertScale(moving_average, temp, 1.0, 0.0)
# Minus the current frame from the moving average.
cv.AbsDiff(color_image, temp, difference)
# Convert the image to grayscale.
cv.CvtColor(difference, grey_image, cv.CV_RGB2GRAY)
# Convert the image to black and white.
cv.Threshold(grey_image, grey_image, 70, 255, cv.CV_THRESH_BINARY)
# Dilate and erode to get object blobs
cv.Dilate(grey_image, grey_image, None, 18)
cv.Erode(grey_image, grey_image, None, 10)
# Calculate movements
storage = cv.CreateMemStorage(0)
contour = cv.FindContours(grey_image, storage, cv.CV_RETR_CCOMP, cv.CV_CHAIN_APPROX_SIMPLE)
points = []
while contour:
# Draw rectangles
bound_rect = cv.BoundingRect(list(contour))
contour = contour.h_next()
pt1 = (bound_rect[0], bound_rect[1])
pt2 = (bound_rect[0] + bound_rect[2], bound_rect[1] + bound_rect[3])
points.append(pt1)
points.append(pt2)
cv.Rectangle(color_image, pt1, pt2, cv.CV_RGB(255,0,0), 1)
num_points = len(points)
if num_points:
# Draw bullseye in midpoint of all movements
x = y = 0
for point in points:
x += point[0]
y += point[1]
x /= num_points
y /= num_points
center_point = (x, y)
cv.Circle(color_image, center_point, 40, cv.CV_RGB(255, 255, 255), 1)
cv.Circle(color_image, center_point, 30, cv.CV_RGB(255, 100, 0), 1)
cv.Circle(color_image, center_point, 20, cv.CV_RGB(255, 255, 255), 1)
cv.Circle(color_image, center_point, 10, cv.CV_RGB(255, 100, 0), 5)
# Display frame to user
cv.ShowImage("Target", color_image)
# Listen for ESC or ENTER key
c = cv.WaitKey(7) % 0x100
if c == 27 or c == 10:
break
if __name__=="__main__":
t = Target()
t.run()
|
import torch
import torchvision as tv
import torch.backends.cudnn as cudnn
import torch.distributed as dist
from torch.nn.parallel import DistributedDataParallel as ddp
import os
import time
import random
import argparse
import numpy as np
random.seed(0)
np.random.seed(0)
torch.manual_seed(0)
if torch.cuda.is_available():
torch.cuda.manual_seed(0)
cudnn.benchmark = True
def main(args):
# dist init
torch.cuda.set_device(args.local_rank)
torch.distributed.init_process_group(backend='nccl', init_method='env://')
print(torch.cuda.device_count(), args.local_rank)
# data
train_transform = tv.transforms.Compose([])
if args.data_augmentation:
train_transform.transforms.append(tv.transforms.RandomCrop(32, padding=4))
train_transform.transforms.append(tv.transforms.RandomHorizontalFlip())
train_transform.transforms.append(tv.transforms.ToTensor())
normalize = tv.transforms.Normalize(mean=[x / 255.0 for x in [125.3, 123.0, 113.9]],
std=[x / 255.0 for x in [63.0, 62.1, 66.7]])
train_transform.transforms.append(normalize)
test_transform = tv.transforms.Compose([
tv.transforms.ToTensor(),
normalize])
train_dataset = tv.datasets.CIFAR10(root='data/',
train=True,
transform=train_transform,
download=True)
test_dataset = tv.datasets.CIFAR10(root='data/',
train=False,
transform=test_transform,
download=True)
sampler = torch.utils.data.distributed.DistributedSampler(train_dataset)
train_loader = torch.utils.data.DataLoader(dataset=train_dataset,
batch_size=args.bs,
shuffle=False,
pin_memory=True,
num_workers=4,
sampler=sampler)
test_loader = torch.utils.data.DataLoader(dataset=test_dataset,
batch_size=args.bs,
shuffle=False,
pin_memory=True,
num_workers=4)
# net
net = tv.models.resnet18(num_classes=10)
net = net.cuda()
# optimizer and loss
optimizer = torch.optim.SGD(net.parameters(), lr=0.1, momentum=0.9, weight_decay=5e-4)
scheduler = torch.optim.lr_scheduler.MultiStepLR(optimizer, [50, 80], 0.1)
criterion = torch.nn.CrossEntropyLoss().cuda()
net = torch.nn.SyncBatchNorm.convert_sync_batchnorm(net)
net = ddp(net, device_ids=[args.local_rank], find_unused_parameters=True)
# train
for i_epoch in range(100):
net.train()
time_s = time.time()
train_loader.sampler.set_epoch(i_epoch)
for i_iter, data in enumerate(train_loader):
img, label = data
img, label = img.cuda(), label.cuda()
optimizer.zero_grad()
feat = net(img)
loss = criterion(feat, label)
loss.backward()
optimizer.step()
time_e = time.time()
if args.local_rank == 1:
print('Epoch:{:3}/100 || Iter: {:4}/{} || '
'Loss: {:2.4f} '
'ETA: {:.2f}min'.format(
i_epoch + 1, i_iter + 1, len(train_loader),
loss.item(),
(time_e - time_s) * (100 - i_epoch) * len(train_loader) / (i_iter + 1) / 60))
scheduler.step()
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('--bs', type=int, default=128)
parser.add_argument('--data_augmentation', type=bool, default=True)
parser.add_argument("--local_rank", type=int, default=0, help='master rank')
args = parser.parse_args()
main(args)
|
import unittest
from geom_tools.adjacency_tools import (
vertices_adjacency_from_polygon_vertex_indices,
max_vertex_ind_in_list,
expand_adjacency_table,
)
class TestAdjacencyTools(unittest.TestCase):
def test_vertices_adjacency_from_polygon_vertex_indices01(self):
indices = [
[0, 1, 2]
]
res = vertices_adjacency_from_polygon_vertex_indices(indices)
ans = [
[1, 2],
[0, 2],
[0, 1],
]
self.assertEqual(ans, res)
def test_vertices_adjacency_from_polygon_vertex_indices02(self):
indices = [
[1, 2, 3]
]
res = vertices_adjacency_from_polygon_vertex_indices(indices)
ans = [
[],
[2, 3],
[1, 3],
[1, 2]
]
self.assertEqual(ans, res)
def test_vertices_adjacency_from_polygon_vertex_indices03(self):
indices = [
[3, 1, 2]
]
res = vertices_adjacency_from_polygon_vertex_indices(indices, 5)
ans = [
[],
[2, 3],
[1, 3],
[1, 2],
[],
]
self.assertEqual(ans, res)
def test_vertices_adjacency_from_polygon_vertex_indices04(self):
indices = [
[1, 2, 3],
[0, 2, 1]
]
res = vertices_adjacency_from_polygon_vertex_indices(indices)
ans = [
[1, 2],
[0, 2, 3],
[0, 1, 3],
[1, 2],
]
self.assertEqual(ans, res)
def test_vertices_adjacency_from_polygon_vertex_indices05(self):
indices = [
[5, 4],
[1, 2, 3],
[0, 2, 1]
]
res = vertices_adjacency_from_polygon_vertex_indices(indices)
ans = [
[1, 2],
[0, 2, 3],
[0, 1, 3],
[1, 2],
[5],
[4]
]
self.assertEqual(ans, res)
def test_vertices_adjacency_from_polygon_vertex_indices06(self):
indices = [
[4, 2, 0, 1, 3]
]
res = vertices_adjacency_from_polygon_vertex_indices(indices)
ans = [
[1, 2], # 0
[0, 3], # 1
[0, 4], # 2
[1, 4], # 3
[2, 3], # 4
]
self.assertEqual(ans, res)
def test_vertices_adjacency_from_polygon_vertex_indices07(self):
indices = [
[4, 2, 0, 1, 3],
[7, 8, 6]
]
res = vertices_adjacency_from_polygon_vertex_indices(indices)
ans = [
[1, 2], # 0
[0, 3], # 1
[0, 4], # 2
[1, 4], # 3
[2, 3], # 4
[],
[7, 8],
[6, 8],
[6, 7]
]
self.assertEqual(ans, res)
def test_vertices_adjacency_from_polygon_vertex_indices08(self):
indices = [
[0, 2, 3, 1],
[2, 3, 6],
[6, 3, 5],
[2, 6, 4],
[6, 5, 4],
[7, 9, 8, 1],
[0, 10, 2],
]
res = vertices_adjacency_from_polygon_vertex_indices(indices)
ans = [
[1, 2, 10],
[0, 3, 7, 8],
[0, 3, 4, 6, 10],
[1, 2, 5, 6],
[2, 5, 6],
[3, 4, 6],
[2, 3, 4, 5],
[1, 9],
[1, 9],
[7, 8],
[0, 2],
]
self.assertEqual(ans, res)
def test_max_vertex_ind_in_list01(self):
indices = [[1]]
self.assertEqual(1, max_vertex_ind_in_list(indices))
def test_max_vertex_ind_in_list02(self):
indices = [[1, 0, 3]]
self.assertEqual(3, max_vertex_ind_in_list(indices))
def test_max_vertex_ind_in_list03(self):
indices = [[6, 5], [1, 0, 3]]
self.assertEqual(6, max_vertex_ind_in_list(indices))
def test_max_vertex_ind_in_list04(self):
indices = [[1, 2, 3, 4], [6, 50], [1, 0, 3]]
self.assertEqual(50, max_vertex_ind_in_list(indices))
def test_expand_adjacency_table01(self):
adj_table = [
]
ans = [
]
res = expand_adjacency_table(adj_table)
self.assertEqual(ans, res)
def test_expand_adjacency_table02(self):
adj_table = [
[1],
[0],
]
ans = [
[1],
[0],
]
res = expand_adjacency_table(adj_table)
self.assertEqual(ans, res)
def test_expand_adjacency_table03(self):
adj_table = [
[1],
[0, 2],
[1],
]
ans = [
[1, 2],
[0, 2],
[0, 1]
]
res = expand_adjacency_table(adj_table)
self.assertEqual(ans, res)
def test_expand_adjacency_table04(self):
adj_table = [
[1],
[0],
[3], # 2
[2, 4], # 3
[3, 5], # 4
[4] # 5
]
ans = [
[1],
[0],
[3, 4], # 2
[2, 4, 5], # 3
[2, 3, 5], # 4
[3, 4] # 5
]
res = expand_adjacency_table(adj_table)
self.assertEqual(ans, res)
if __name__ == '__main__':
unittest.main()
|
# #####################################################################################################################
# Copyright 2021 Amazon.com, Inc. or its affiliates. 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. A copy of the License is located at #
# #
# http://www.apache.org/licenses/LICENSE-2.0 #
# #
# or in the 'license' file accompanying this file. This file is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES #
# OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions #
# and limitations under the License. #
# #####################################################################################################################
from aws_cdk import (
aws_lambda as lambda_,
aws_s3 as s3,
aws_apigateway as apigw,
core,
)
from aws_solutions_constructs.aws_lambda_sagemakerendpoint import LambdaToSagemakerEndpoint
from aws_solutions_constructs import aws_apigateway_lambda
from lib.blueprints.byom.pipeline_definitions.sagemaker_role import create_sagemaker_role
from lib.blueprints.byom.pipeline_definitions.sagemaker_model import create_sagemaker_model
from lib.blueprints.byom.pipeline_definitions.sagemaker_endpoint_config import create_sagemaker_endpoint_config
from lib.blueprints.byom.pipeline_definitions.sagemaker_endpoint import create_sagemaker_endpoint
from lib.blueprints.byom.pipeline_definitions.helpers import suppress_lambda_policies
from lib.blueprints.byom.pipeline_definitions.templates_parameters import (
create_blueprint_bucket_name_parameter,
create_assets_bucket_name_parameter,
create_algorithm_image_uri_parameter,
create_custom_algorithms_ecr_repo_arn_parameter,
create_inference_instance_parameter,
create_kms_key_arn_parameter,
create_model_artifact_location_parameter,
create_model_name_parameter,
create_data_capture_location_parameter,
create_custom_algorithms_ecr_repo_arn_provided_condition,
create_kms_key_arn_provided_condition,
create_model_package_name_parameter,
create_model_registry_provided_condition,
create_model_package_group_name_parameter,
)
class BYOMRealtimePipelineStack(core.Stack):
def __init__(self, scope: core.Construct, id: str, **kwargs) -> None:
super().__init__(scope, id, **kwargs)
# Parameteres #
assets_bucket_name = create_assets_bucket_name_parameter(self)
blueprint_bucket_name = create_blueprint_bucket_name_parameter(self)
custom_algorithms_ecr_repo_arn = create_custom_algorithms_ecr_repo_arn_parameter(self)
kms_key_arn = create_kms_key_arn_parameter(self)
algorithm_image_uri = create_algorithm_image_uri_parameter(self)
model_name = create_model_name_parameter(self)
model_artifact_location = create_model_artifact_location_parameter(self)
data_capture_location = create_data_capture_location_parameter(self)
inference_instance = create_inference_instance_parameter(self)
model_package_group_name = create_model_package_group_name_parameter(self)
model_package_name = create_model_package_name_parameter(self)
# Conditions
custom_algorithms_ecr_repo_arn_provided = create_custom_algorithms_ecr_repo_arn_provided_condition(
self, custom_algorithms_ecr_repo_arn
)
kms_key_arn_provided = create_kms_key_arn_provided_condition(self, kms_key_arn)
model_registry_provided = create_model_registry_provided_condition(self, model_package_name)
# Resources #
# getting blueprint bucket object from its name - will be used later in the stack
blueprint_bucket = s3.Bucket.from_bucket_name(self, "BlueprintBucket", blueprint_bucket_name.value_as_string)
# provision api gateway and lambda for inference using solution constructs
inference_api_gateway = aws_apigateway_lambda.ApiGatewayToLambda(
self,
"BYOMInference",
lambda_function_props={
"runtime": lambda_.Runtime.PYTHON_3_8,
"handler": "main.handler",
"code": lambda_.Code.from_bucket(blueprint_bucket, "blueprints/byom/lambdas/inference.zip"),
},
api_gateway_props={
"defaultMethodOptions": {
"authorizationType": apigw.AuthorizationType.IAM,
},
"restApiName": f"{core.Aws.STACK_NAME}-inference",
"proxy": False,
},
)
# add supressions
inference_api_gateway.lambda_function.node.default_child.cfn_options.metadata = suppress_lambda_policies()
provision_resource = inference_api_gateway.api_gateway.root.add_resource("inference")
provision_resource.add_method("POST")
# create Sagemaker role
sagemaker_role = create_sagemaker_role(
self,
"MLOpsRealtimeSagemakerRole",
custom_algorithms_ecr_arn=custom_algorithms_ecr_repo_arn.value_as_string,
kms_key_arn=kms_key_arn.value_as_string,
model_package_group_name=model_package_group_name.value_as_string,
assets_bucket_name=assets_bucket_name.value_as_string,
input_bucket_name=assets_bucket_name.value_as_string,
input_s3_location=assets_bucket_name.value_as_string,
output_s3_location=data_capture_location.value_as_string,
ecr_repo_arn_provided_condition=custom_algorithms_ecr_repo_arn_provided,
kms_key_arn_provided_condition=kms_key_arn_provided,
model_registry_provided_condition=model_registry_provided,
)
# create sagemaker model
sagemaker_model = create_sagemaker_model(
self,
"MLOpsSagemakerModel",
execution_role=sagemaker_role,
model_registry_provided=model_registry_provided,
algorithm_image_uri=algorithm_image_uri.value_as_string,
assets_bucket_name=assets_bucket_name.value_as_string,
model_artifact_location=model_artifact_location.value_as_string,
model_package_name=model_package_name.value_as_string,
model_name=model_name.value_as_string,
)
# Create Sagemaker EndpointConfg
sagemaker_endpoint_config = create_sagemaker_endpoint_config(
self,
"MLOpsSagemakerEndpointConfig",
sagemaker_model.attr_model_name,
model_name.value_as_string,
inference_instance.value_as_string,
data_capture_location.value_as_string,
core.Fn.condition_if(
kms_key_arn_provided.logical_id, kms_key_arn.value_as_string, core.Aws.NO_VALUE
).to_string(),
)
# create a dependency on the model
sagemaker_endpoint_config.add_depends_on(sagemaker_model)
# create Sagemaker endpoint
sagemaker_endpoint = create_sagemaker_endpoint(
self,
"MLOpsSagemakerEndpoint",
sagemaker_endpoint_config.attr_endpoint_config_name,
model_name.value_as_string,
)
# add dependency on endpoint config
sagemaker_endpoint.add_depends_on(sagemaker_endpoint_config)
# Create Lambda - sagemakerendpoint
LambdaToSagemakerEndpoint(
self,
"LambdaSagmakerEndpoint",
existing_sagemaker_endpoint_obj=sagemaker_endpoint,
existing_lambda_obj=inference_api_gateway.lambda_function,
)
# Outputs #
core.CfnOutput(
self,
id="SageMakerModelName",
value=sagemaker_model.attr_model_name,
)
core.CfnOutput(
self,
id="SageMakerEndpointConfigName",
value=sagemaker_endpoint_config.attr_endpoint_config_name,
)
core.CfnOutput(
self,
id="SageMakerEndpointName",
value=sagemaker_endpoint.attr_endpoint_name,
)
core.CfnOutput(
self,
id="EndpointDataCaptureLocation",
value=f"https://s3.console.aws.amazon.com/s3/buckets/{data_capture_location.value_as_string}/",
description="Endpoint data capture location (to be used by Model Monitor)",
)
|
# Licensed under a 3-clause BSD style license - see LICENSE.rst
"""
PyVO is a package providing access to remote data and services of the
Virtual observatory (VO) using Python.
The pyvo module currently provides these main capabilities:
* find archives that provide particular data of a particular type and/or
relates to a particular topic
* regsearch()
* search an archive for datasets of a particular type
* imagesearch(), spectrumsearch()
* do simple searches on catalogs or databases
* conesearch(), linesearch(), tablesearch()
Submodules provide additional functions and classes for greater control over
access to these services.
This module also exposes the exception classes raised by the above functions,
of which DALAccessError is the root parent exception.
"""
# Affiliated packages may add whatever they like to this file, but
# should keep this content at the top.
# ----------------------------------------------------------------------------
from ._astropy_init import *
# ----------------------------------------------------------------------------
# For egg_info test builds to pass, put package imports here.
from . import registry
from .dal import ssa, sia, sla, scs, tap
from . import auth
from .registry import search as regsearch
from .dal import (
imagesearch, spectrumsearch, conesearch, linesearch, tablesearch,
DALAccessError, DALProtocolError, DALFormatError, DALServiceError,
DALQueryError)
|
'''
Created on Jan 6, 2014
@author: Jose Borreguero
'''
import numpy
import copy
from logger import vlog
from interpolator import Interpolator
class Channel( object ):
''' This class implements a dynamical channel defined by momentum transfer Q and energy E '''
def __init__( self ):
'''
Attributes:
signalseries: the values that the structure factor for this channel
takes for the different values of the external parameter
errorseries: associated errors for the signalseries. Mostly applicable
to experimental signalseries
interpolator: evaluates the structure factor for this channel and estimation
of error for a particular value of the external parameter
'''
self.signalseries = None
self.errorseries = None
self.interpolator = None
def SetSignalSeries(self, signalseries):
''' Initialize the signalseries '''
self.signalseries = numpy.array(copy.copy(signalseries))
def SetErrorSeries(self, errorseries):
''' Initialize the errorseries '''
self.errorseries = None
if errorseries is not None:
self.errorseries = numpy.array(copy.copy(errorseries))
@property
def range(self):
'''Minimum and maximum of the fseries'''
try:
return self.interpolator.range
except:
vlog.error("interpolator has not been initialized for this channel")
return (float('inf'),float('inf'))
def InitializeInterpolator(self, fseries, running_regr_type = 'linear', windowlength=3):
''' Initialize the interpolator for this channel
Arguments:
fseries: list of external parameter values
running_regr_type: the type of the local, running regression
Returns:
None if error found
interpolator attribute if success
'''
# Handle errors first
if self.signalseries is None:
vlog.error( 'Signal series not set!' )
return None
if len( fseries ) != len( self.signalseries ):
vlog.error( 'signal and external parameter series have different lenght!' )
return None
self.interpolator = Interpolator( fseries, self.signalseries, errorseries = self.errorseries, running_regr_type = running_regr_type, windowlength=windowlength)
return self.interpolator
def __call__(self, fvalue ):
''' Evaluates the interpolator for the fvalue mimicking a function call'''
return self.interpolator( fvalue )
|
from datetime import datetime, timedelta
from typing import Optional
import jwt
# custom defined
from app.core.config import timezone, secret_key, algorithm, access_token_expire_minutes
# 创建token,token包含exp,和用户自定义的json数据
def create_access_token(*, data: dict, expires_delta: Optional[timedelta] = None):
to_encode = data.copy()
if expires_delta:
expire = datetime.now(tz=timezone) + expires_delta
else:
expire = datetime.now(tz=timezone) + timedelta(minutes=access_token_expire_minutes)
to_encode.update({"exp": expire})
encoded_jwt = jwt.encode(to_encode, str(secret_key), algorithm=algorithm)
return encoded_jwt
|
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('serverdb', '0004_attribute_value_constraints'),
]
operations = [
# Mark all previously defined attributes as clonable once.
migrations.RunSQL(
'UPDATE attribute '
'SET clone = true '
"WHERE type NOT IN ('reverse', 'supernet', 'domain')"
),
# Forbid attributes of relational types from beeing clonable as they
# can't be written to due to beeing drived from other attributes.
migrations.RunSQL(
'ALTER TABLE attribute '
'ADD CONSTRAINT attribute_clone_check '
" CHECK (NOT clone OR type NOT IN ("
" 'reverse', 'supernet', 'domain'))"
),
]
|
# -*- coding: utf-8 -*-
# Generated by Django 1.10.1 on 2017-06-25 17:50
from __future__ import unicode_literals
from decimal import Decimal
import django.core.validators
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
initial = True
dependencies = [
('cadastro', '0001_initial'),
]
operations = [
migrations.CreateModel(
name='Lancamento',
fields=[
('id', models.AutoField(auto_created=True,
primary_key=True, serialize=False, verbose_name='ID')),
('data_vencimento', models.DateField(blank=True, null=True)),
('data_pagamento', models.DateField(blank=True, null=True)),
('descricao', models.CharField(max_length=255)),
('valor_total', models.DecimalField(decimal_places=2, default=Decimal(
'0.00'), max_digits=13, validators=[django.core.validators.MinValueValidator(Decimal('0.00'))])),
('abatimento', models.DecimalField(decimal_places=2, default=Decimal(
'0.00'), max_digits=13, validators=[django.core.validators.MinValueValidator(Decimal('0.00'))])),
('juros', models.DecimalField(decimal_places=2, default=Decimal(
'0.00'), max_digits=13, validators=[django.core.validators.MinValueValidator(Decimal('0.00'))])),
('valor_liquido', models.DecimalField(decimal_places=2, default=Decimal(
'0.00'), max_digits=13, validators=[django.core.validators.MinValueValidator(Decimal('0.00'))])),
('movimentar_caixa', models.BooleanField(default=True)),
],
),
migrations.CreateModel(
name='MovimentoCaixa',
fields=[
('id', models.AutoField(auto_created=True,
primary_key=True, serialize=False, verbose_name='ID')),
('data_movimento', models.DateField(blank=True, null=True)),
('saldo_inicial', models.DecimalField(
decimal_places=2, default=Decimal('0.00'), max_digits=13)),
('saldo_final', models.DecimalField(
decimal_places=2, default=Decimal('0.00'), max_digits=13)),
('entradas', models.DecimalField(decimal_places=2, default=Decimal(
'0.00'), max_digits=13, validators=[django.core.validators.MinValueValidator(Decimal('0.00'))])),
('saidas', models.DecimalField(decimal_places=2, default=Decimal(
'0.00'), max_digits=13, validators=[django.core.validators.MinValueValidator(Decimal('0.00'))])),
],
),
migrations.CreateModel(
name='PlanoContasGrupo',
fields=[
('id', models.AutoField(auto_created=True,
primary_key=True, serialize=False, verbose_name='ID')),
('codigo', models.CharField(max_length=6)),
('tipo_grupo', models.CharField(choices=[
('0', 'Entrada'), ('1', 'Saída')], max_length=1)),
('descricao', models.CharField(max_length=255)),
],
),
migrations.CreateModel(
name='Entrada',
fields=[
('lancamento_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE,
parent_link=True, primary_key=True, serialize=False, to='financeiro.Lancamento')),
('status', models.CharField(choices=[
('0', 'Recebida'), ('1', 'A receber'), ('2', 'Atrasada')], default='1', max_length=1)),
('cliente', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL,
related_name='conta_cliente', to='cadastro.Cliente')),
],
bases=('financeiro.lancamento',),
),
migrations.CreateModel(
name='PlanoContasSubgrupo',
fields=[
('planocontasgrupo_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE,
parent_link=True, primary_key=True, serialize=False, to='financeiro.PlanoContasGrupo')),
('grupo', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE,
related_name='plano_subgrupo', to='financeiro.PlanoContasGrupo')),
],
bases=('financeiro.planocontasgrupo',),
),
migrations.CreateModel(
name='Saida',
fields=[
('lancamento_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE,
parent_link=True, primary_key=True, serialize=False, to='financeiro.Lancamento')),
('status', models.CharField(choices=[
('0', 'Paga'), ('1', 'A pagar'), ('2', 'Atrasada')], default='1', max_length=1)),
('fornecedor', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL,
related_name='conta_fornecedor', to='cadastro.Fornecedor')),
('grupo_plano', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL,
related_name='grupo_plano_pagamento', to='financeiro.PlanoContasGrupo')),
],
bases=('financeiro.lancamento',),
),
migrations.AddField(
model_name='lancamento',
name='conta_corrente',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL,
related_name='conta_corrente_conta', to='cadastro.Banco'),
),
migrations.AddField(
model_name='lancamento',
name='movimento_caixa',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL,
related_name='movimento_caixa_lancamento', to='financeiro.MovimentoCaixa'),
),
migrations.AddField(
model_name='entrada',
name='grupo_plano',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL,
related_name='grupo_plano_recebimento', to='financeiro.PlanoContasGrupo'),
),
]
|
result = "Some scalar, less then 255 bytes size"
|
# some general imports
from time import perf_counter
import datetime
import numpy as np
from scipy.optimize import fsolve
from scipy.linalg import norm
import matplotlib.pyplot as plt
import matplotlib.dates as mdates # for plotting dates
# loads the data from the csv file
# the data is stored in data, which will be
# a numpy array - the first column is the number of recovered individuals
# - the second column is the number of infected individuals
# the data starts on '2020/03/05' (March 5th) and is daily.
data = []
with open("ONdata.csv", "r") as f:
f.readline()
# print(l.split(',')) # skip the column names from the csv
l = f.readline()
while '2020/03/05' not in l:
l = f.readline()
e = l.split(',')
data.append([float(e[5]) - float(e[12]), float(e[12])])
for l in f:
e = l.split(',')
data.append([float(e[5]) - float(e[12]), float(e[12])])
data = np.array(data)
# the 3 main parameters for the model, we'll use them as
# global variables, so you can refer to them anywhere
beta0 = 0.32545622
gamma = 0.09828734
w = 0.75895019
# simulation basic scenario (see the simulation function later)
base_ends = [28, 35, 49, 70, 94, 132]
base_beta_factors = [1, 0.57939203, 0.46448341, 0.23328388, 0.30647815, 0.19737586]
# we'll also use beta as a global variable
beta = beta0
# We are assuming no birth or death rate, so N is a constant
N = 15e6
# assumed initial conditions
E = 0 # assumed to be zero
I = 18 # initial infected, based on data
S = N - E - I # everyone else is susceptible
R = 0
x0 = np.array([S, E, I, R])
# The right hand side function for the SEIR model ODE, x'(t) = F(x(t))
def F(x):
s = -x[0]*(beta/N * x[2])
e = (beta/N * x[0]*x[2] - w*x[1])
i = (w*x[1] - gamma*x[2])
r = x[2]*gamma
return np.array([s, e, i, r])
# the three numerical methods for performing a single time step
def method_I(x, h):
s = x[0] - h*(beta/N)*x[0]*x[2]
e = x[1] + h*(beta/N)*x[0]*x[2] - w*h*x[1]
i = x[2] + w*h*x[1] - h*gamma*x[2]
r = x[3] + h*gamma*x[2]
return np.array([s, e, i, r])
def _method_II(x, previous_x, h):
s = previous_x[0] - h*(beta/N)*x[0]*x[2]
e = previous_x[1] + h*(beta/N)*x[0]*x[2] - w*h*x[1]
i = previous_x[2] + w*h*x[1] - h*gamma*x[2]
r = previous_x[3] + h*gamma*x[2]
return np.array([s, e, i, r])
def jacobian_II(x, previous_x, h):
jac1 = [h*(beta/N)*x[2], 0, h*(beta/N)*x[0], 0]
jac2 = [-h*(beta/N)*x[2], w*h, -h*(beta/N)*x[0], 0]
jac3 = [0, -w*h, h*gamma, 0]
jac4 = [0, 0, -h*gamma, 0]
return np.array([jac1, jac2, jac3, jac4])
def method_II(x, h):
func = lambda x_1, x_0, h_0: x_1 - _method_II(x_1, x_0, h_0)
jacobian = lambda x_1, x_0, h_0: jacobian_II(x_1, x_0, h_0) + np.identity(4)
return fsolve(func, x, args=(x, h), fprime=jacobian)
def _method_III(x, previous_x, h):
return (method_I(previous_x, h) + _method_II(x, previous_x, h))/2
def jacobian_III(x, previous_x, h):
return jacobian_II(x, previous_x, h)/2
def method_III(x, h):
func = lambda x_1, x_0, h_0: x_1 - _method_III(x_1, x_0, h_0)
jacobian = lambda x_1, x_0, h_0: jacobian_III(x_1, x_0, h_0) + np.identity(4)
return fsolve(func, x, args=(x, h), fprime=jacobian)
METHODS = {'I': method_I, 'II': method_II, 'III': method_III}
# take a step of length 1 using n smaller steps
# used in simulation (see below)
def step(x, n, method):
# simulate step_length time unit using n small uniform length steps
# and return the new state
for i in range(n):
x = method(x, 1/n)
return x
def ode_solver(x, start, end):
from scipy.integrate import solve_ivp as ode
fun = lambda t, z: F(z)
sol = ode(fun, [start, end], x, t_eval=range(start, end+1),
method='LSODA', rtol=1e-8, atol=1e-5)
solution = []
for y in sol.y.T[1:, :]:
solution.append(y.T)
return solution
# The main simulation code:
# The simulation starts at time 0 and goes up to time ends[-1],
# the state x(t) is returned at each time 0,1,...,ends[-1].
# Inputs:
# x = initial conditions
# n = integer number of steps of method used to advance one time step
# method = 1,2, or 3 to specify which method to use. If None,
# the builtin ODE solver is used.
# ends = list of times to break the simulate
# beta_factors = list of factors to multiply beta0 by to
# obtain beta. E.g. on the first segment of the simulation
# from time t=0 up to ends[0], beta = beta0 * beta_factors[0].
def simulation(x=x0, n=1, method=None, ends=base_ends, beta_factors=base_beta_factors):
cur_time = 0
xs = [x]
for i, end in enumerate(ends):
global beta
beta = beta0 * beta_factors[i]
if method is None:
xs.extend(ode_solver(xs[-1], cur_time, end))
cur_time = end
else:
while cur_time < end:
xs.append(step(xs[-1], n, METHODS[method]))
cur_time += 1
return np.array(xs)
# some helper code to plot simulation trajectories,
# feel free to modify as needed.
def plot_trajectories(xs=data, sty='--k', label="data"):
start_date = datetime.datetime.strptime("2020-03-05", "%Y-%m-%d")
dates = [start_date]
while len(dates) < len(xs):
dates.append(dates[-1] + datetime.timedelta(1))
# code to get matplotlib to display dates on the x-axis
ax = plt.gca()
locator = mdates.MonthLocator()
formatter = mdates.DateFormatter("%b-%d")
ax.xaxis.set_major_formatter(formatter)
ax.xaxis.set_major_locator(locator)
plt.plot(dates, xs, sty, linewidth=1, label=label)
plt.xticks(rotation=45)
# example code to plot trajectories of I and R for each method
def plot_all_methods():
plot_trajectories(data[:, 0], "--k", "Data")
plot_trajectories(data[:, 1], "--k", "")
xs = simulation()[:, 2:]
plot_trajectories(xs[:, 0], "--m", "ODE")
plot_trajectories(xs[:, 1], "--m", "")
xs = simulation(n=10, method='I')[:, 2:]
plot_trajectories(xs[:, 0], "--b", "Method I")
plot_trajectories(xs[:, 1], "--b", "")
xs = simulation(n=10, method="II")[:, 2:]
plot_trajectories(xs[:, 0], "--r", "Method II")
plot_trajectories(xs[:, 1], "--r", "")
xs = simulation(n=10, method="III")[:, 2:]
plot_trajectories(xs[:, 0], "--g", "Method III")
plot_trajectories(xs[:, 1], "--g", "")
plt.title("Ontario Covid-19 Data")
plt.ylabel("# of People")
plt.grid(True)
plt.xticks(rotation=45)
plt.legend()
plt.show()
##########
# Hypothetical experiment where mask-use decreases after june 2020.
# This only models the data until october 2020
##########
def extrapolate():
# base_ends = [28, 35, 49, 70, 94, 212]
# base_beta_factors = [1, 0.57939203, 0.46448341, 0.23328388, 0.30647815, 0.19737586]
base_ends = [28, 35, 49, 70, 94, 132, 212]
base_beta_factors = [1, 0.57939203, 0.46448341, 0.23328388, 0.30647815, 0.19737586, 0.29606379]
xs = simulation(ends=base_ends, beta_factors=base_beta_factors)[:, 2:]
plot_trajectories(xs[:, 1], "--b", "Recovered")
plot_trajectories(xs[:, 0], "--r", "Infected")
plt.title("Ontario Covid-19 Data (Hypothetical)")
plt.ylabel("# of People")
plt.grid(True)
plt.xticks(rotation=45)
plt.legend()
plt.show()
if __name__ == '__main__':
extrapolate()
|
# Copyright (c) 2022, Prasanth and contributors
# For license information, please see license.txt
import frappe
from frappe.model.document import Document
import datetime
class EmployeeDeduction(Document):
pass
@frappe.whitelist()
def add_data(doc, deduction_type=None, s_date=None, amount=None):
s_date = s_date.split('-')
month = datetime.date(1900, int(s_date[1]), 1).strftime('%b')
onetime_amt = int(amount)
recurring_amt = 0
total = onetime_amt + recurring_amt
update_doc = {}
update_doc.update({'month': month, 'recurring': recurring_amt, 'onetime': onetime_amt, 'total': total})
return update_doc
@frappe.whitelist()
def update_recurring(doc, deduction_type=None, s_date=None, e_date=None, amount=None):
s_date = s_date.split('-')
e_date = e_date.split('-')
onetime_amt = 0
recurring_amt = int(amount)/(int(e_date[1])+1 - int(s_date[1]))
total = onetime_amt + recurring_amt
update_doc = []
for i in range(int(s_date[1]), int(e_date[1])+1, 1):
rec_month = datetime.date(1900, i, 1).strftime('%b')
print(rec_month, "\n")
update_doc.append({'month': rec_month, 'recurring': recurring_amt, 'onetime': onetime_amt, 'total': total})
print(update_doc)
return update_doc
@frappe.whitelist()
def get_month(doc, month, bal):
name = frappe.db.get_value('Deduction Calculation', {'parent': doc, 'month': month}, ['name'])
total = frappe.db.get_list('Deduction Calculation', {'parent': doc }, ['total'], pluck='total')
print(doc, month ,"\n\n\n\n")
print(sum(total), bal,"\n\nTotal\n")
# frappe.db.set_value('Employee Deduction', doc , 'grand_total', sum(total)+int(bal))
if name == None:
return 0
else:
return name
|
import collections
import os
import sys
# parse result file and return as {suite: {case: {config: value} } }
def parseFile(fileName):
file = open(fileName)
suitesLines = []
suitesNames = []
totalLines = 0
res = {}
for i, line in enumerate(file.readlines()):
totalLines += 1
if(line.startswith("#")):
suitesLines.append(i + 1)
suitesNames.append(line)
suitesLines.append(totalLines)
file.seek(0)
lines = file.readlines()
for i in range(len(suitesNames)):
tpres = {}
suiteStart = suitesLines[i]
while(suiteStart < suitesLines[i + 1] - 1):
suiteStart += 2
caseName = lines[suiteStart - 1].split("|")[1].lstrip()
suiteStart += 2
tpres[caseName] = {}
while(lines[suiteStart - 1].startswith("|")):
median = int(lines[suiteStart - 1].split("|")[-2].lstrip())
configName = lines[suiteStart - 1].split("|")[1].lstrip()
suiteStart += 1
tpres[caseName][configName] = median
res[suitesNames[i]] = tpres
return res
if __name__ == '__main__':
args = sys.argv
if(len(args) < 4):
exit(1)
resOldList = [parseFile(args[i]) for i in range(1, len(args) - 2)]
resNew = parseFile(args[-2])
baseNameList = [os.path.basename(args[i])[8:] for i in range(1, len(args) - 1)]
htmlContent = """
<!DOCTYPE html>
<html>
<style type="text/css">
.tg {{border-collapse:collapse;border-spacing:0;}}
.tg td {{font-family:Arial, sans-serif;font-size:14px;padding:10px 5px;border-style:solid;border-width:1px;overflow:hidden;word-break:normal;}}
.tg th {{font-family:Arial, sans-serif;font-size:14px;font-weight:normal;padding:10px 5px;border-style:solid;border-width:1px;overflow:hidden;word-break:normal;}}
.tg .tg-y2tu {{font-weight:bold;text-decoration:underline;vertical-align:top}}
.tg .tg-baqh {{text-align:center;vertical-align:top}}
.tg .tg-lqy6 {{text-align:right;vertical-align:top}}
.tg .tg-yw4l {{vertical-align:top}}
.tg .tg-ahyg {{font-weight:bold;background-color:#fe0000;vertical-align:top}}
</style>
<head>
<title>Daily Benchmark Test Result</title>
<meta charset="utf-8">
</head>
<body>
<p>Result paths are:<br> (1){} <br> (2){}</p>
{}
</body>
</html>
"""
htmlTables = ""
cellFormat = """<td class="tg-yw4l">{}</td>\n"""
colorFormat = """<td class="tg-ahyg">Yes</td>\n"""
for suite, suiteRes in resNew.items():
suiteTable = """<table class="tg">\n"""
suiteTable += """<tr>\n<th class="tg-baqh">{}</th>\n<th class="tg-yw4l">Config</th>\n""".format(suite)
for baseName in baseNameList:
suiteTable += """<th class="tg-yw41">Result of {}/ms</th>\n""".format(baseName)
suiteTable += """<th class="tg-yw4l">Regression</th></tr>\n"""
for case, caseRes in suiteRes.items():
configNums = len(caseRes)
j = 0
odRes = collections.OrderedDict(sorted(caseRes.items()))
for config, median in odRes.items():
if(j == 0):
suiteTable += """<tr>\n<td class="tg-yw4l" rowspan="{}">{}</td>\n""".format(configNums, case)
suiteTable += """<td class="tg-yw4l">{}</td>\n""".format(config)
else:
suiteTable += """<tr>\n<td class="tg-yw4l">{}</td>\n""".format(config)
# currently we just compare with last day and present the others as history data for better judgement
for res in resOldList:
if(suite in res and case in res[suite] and config in res[suite][case]):
suiteTable += cellFormat.format(res[suite][case][config])
else:
suiteTable += cellFormat.format("N/A")
resLastday = resOldList[-1]
suiteTable += cellFormat.format(median)
if(suite in resLastday and case in resLastday[suite] and config in resLastday[suite][case]):
if(median > resLastday[suite][case][config]):
if(resLastday[suite][case][config] != 0):
per = (median - resLastday[suite][case][config]) * 1.0 / resLastday[suite][case][config]
if(per <= 0.15):
suiteTable += cellFormat.format("No")
else:
suiteTable += colorFormat
else:
suiteTable += colorFormat
else:
suiteTable += cellFormat.format("No")
else:
suiteTable += cellFormat.format("N/A")
suiteTable += "</tr>\n"
j += 1
suiteTable += "</table>\n"
htmlTables += "\n{}\n".format(suiteTable)
cmpFile = open(args[-1], mode='w')
cmpFile.write(htmlContent.format("sr530:" + os.path.abspath(args[-3]), "sr530:" + os.path.abspath(args[-2]), htmlTables))
cmpFile.close()
|
# This file is only required for Python 2.x compatibility. Python 3 does not require an __init__.py
|
import math
def f(x):
return x**3*math.exp(x)
def trapezoidal(a, b, n):
h = float(b - a) / n
s = 0
s += f(a)/2
for i in range(1, n):
s += f(a + i*h)
s += f(b)/2
return s * h
|
import unittest
from _2_add_two_numbers import add_two_numbers
class ListNode:
def __init__(self, x):
self.val = x
self.next = None
class MyTestCase(unittest.TestCase):
def test_1(self):
input_1 = ListNode(2)
input_1.next = ListNode(4)
input_1.next.next = ListNode(3)
input_2 = ListNode(5)
input_2.next = ListNode(6)
input_2.next.next = ListNode(4)
expected = ListNode(7)
expected.next = ListNode(0)
expected.next.next = ListNode(8)
actual = add_two_numbers.Solution.addTwoNumbers(input_1, input_2)
self.assertEqual(expected.val, actual.val)
self.assertEqual(expected.next.val, actual.next.val)
self.assertEqual(expected.next.next.val, actual.next.next.val)
if __name__ == '__main__':
unittest.main()
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from flask_script import Manager, Shell, Server
from flask_script.commands import Clean, ShowUrls
from flask_migrate import MigrateCommand
from flask.ext.login import login_required, make_secure_token, get_auth_token
from ccflasktest.app import create_app
from ccflasktest.user.models import User
from ccflasktest.settings import DevConfig, ProdConfig
from ccflasktest.database import db
if os.environ.get("CCFLASKTEST_ENV") == 'prod':
app = create_app(ProdConfig)
else:
app = create_app(DevConfig)
HERE = os.path.abspath(os.path.dirname(__file__))
TEST_PATH = os.path.join(HERE, 'tests')
manager = Manager(app)
def _make_context():
"""Return context dict for a shell session so you can access
app, db, and the User model by default.
"""
return {'app': app, 'db': db, 'User': User}
@manager.command
def test():
"""Run the tests."""
import pytest
exit_code = pytest.main([TEST_PATH, '--verbose'])
return exit_code
@app.route('/token', methods=['POST'])
# @login_required
def get_token():
# this will make a secure token based on the current user's ID
# cannot get a token without being first logged in...
# maybe we want to accept username/password for every POST /token
# and then validate the user. If valid, then return token ?
# return make_secure_token(current_user.id)
return get_auth_token()
# s = Serializer(app.config['SECRET_KEY'], expires_in=600)
# return s.dumps({'id': current_user.id})
manager.add_command('server', Server())
manager.add_command('shell', Shell(make_context=_make_context))
manager.add_command('db', MigrateCommand)
manager.add_command("urls", ShowUrls())
manager.add_command("clean", Clean())
if __name__ == '__main__':
manager.run()
|
#! /usr/bin/env python
'''
Demonstrates how simple group can be used as one-to-many
relationship using a column family
'''
import util
from pycassa.columnfamily import ColumnFamily
# Load data from data/movies
def loadData():
con = util.getConnection()
cf = ColumnFamily(con, 'videos')
tagCF = ColumnFamily(con, 'tag_videos')
movies = util.readCSV('data/movies')
for movie in movies:
title = movie[0]
uploader = movie[1]
runtime = int(movie[2]) #convert to match column validator
tags = movie[3]
rowKey = title+":"+uploader
print "Inserting in videos: {}.".format(str(movie))
cf.insert(
rowKey,
{
'title':title,
'user_name':uploader,
'runtime_in_sec':runtime,
'tags_csv': tags
})
for tag in tags.split(','):
print 'adding tag: {0} for movie: {1}'.format(tag, title)
tagCF.insert(
tag.strip().lower(),
{
uploader+ "_" + rowKey: title
}
);
print 'finishished insertion.'
con.dispose()
def getByTag(tag):
con = util.getConnection()
vidCF = ColumnFamily(con, 'videos')
tagCF = ColumnFamily(con, 'tag_videos')
movies = tagCF.get(tag.strip().lower())
for key, val in movies.iteritems():
vidId = key.split('_')[1]
movieDetail = vidCF.get(vidId)
print '''
{{
user: {0},
movie: {1},
tags: {2}
}}'''.format(movieDetail['user_name'], movieDetail['title'], movieDetail['tags_csv'])
con.dispose()
if __name__ == '__main__':
getByTag('action')
|
# Copyright 2019-2021 ETH Zurich and the DaCe authors. All rights reserved.
import dace
def test_strides():
desc = dace.float64[1, 2, 3]
assert desc.strides == (6, 3, 1)
assert desc.total_size == 6
perm_strides, perm_size = desc.strides_from_layout(0, 1, 2)
assert perm_size == desc.total_size
assert perm_strides == (1, 1, 2)
desc.set_strides_from_layout(0, 2, 1)
assert desc.strides == (1, 3, 1)
assert desc.total_size == 6
def test_strides_alignment():
desc = dace.float64[2, 3, 4]
assert desc.strides == (12, 4, 1)
assert desc.total_size == 24
perm_strides, perm_size = desc.strides_from_layout(0, 1, 2)
assert perm_size == desc.total_size
assert perm_strides == (1, 2, 6)
perm_strides, perm_size = desc.strides_from_layout(1, 0, 2, alignment=4)
assert perm_size == 64
assert perm_strides == (4, 1, 16)
perm_strides, perm_size = desc.strides_from_layout(1,
0,
2,
alignment=4,
only_first_aligned=True)
assert perm_size == 32
assert perm_strides == (4, 1, 8)
if __name__ == '__main__':
test_strides()
test_strides_alignment()
|
import http.client
import socket
from base64 import b64encode
import json
from . import resources
from .resource import Resource, Empty
from .request import Request
from .response import Response
from recurly import USER_AGENT, DEFAULT_REQUEST_TIMEOUT, ApiError, NetworkError
from pydoc import locate
import urllib.parse
from datetime import datetime
from enum import Enum
import certifi
import ssl
PORT = 443
BINARY_TYPES = ["application/pdf"]
ALLOWED_OPTIONS = ["body", "params", "headers"]
API_HOSTS = {"us": "v3.recurly.com", "eu": "v3.eu.recurly.com"}
HOST = API_HOSTS["us"]
def request_converter(value):
"""Used by json serializer to cast values"""
if isinstance(value, datetime):
return value.isoformat()
else:
return value
class BaseClient:
def __init__(self, api_key, timeout=None, **options):
self.__api_key = api_key
actual_timeout = timeout if timeout is not None else DEFAULT_REQUEST_TIMEOUT
api_host = HOST
if "region" in options:
if options["region"] not in API_HOSTS:
raise TypeError(
"Invalid region type. Expected one of: %s"
% (", ".join(API_HOSTS.keys()))
)
api_host = API_HOSTS[options["region"]]
context = ssl.create_default_context(cafile=certifi.where())
self.__conn = http.client.HTTPSConnection(
api_host, PORT, timeout=actual_timeout, context=context
)
def _make_request(self, method, path, body, **options):
try:
self._validate_options(options)
basic_auth = b64encode(bytes(self.__api_key + ":", "ascii")).decode("ascii")
internal_headers = {
"User-Agent": USER_AGENT,
"Authorization": "Basic %s" % basic_auth,
"Accept": "application/vnd.recurly.%s" % self.api_version(),
"Content-Type": "application/json",
}
# override headers with custom headers in the options
headers = {**options.get("headers", {}), **internal_headers}
if body:
body = json.dumps(body, default=request_converter)
if "params" in options:
path += "?" + self._url_encode(options["params"])
self.__conn.request(method, path, body, headers=headers)
request = Request(method, path, body)
resp = Response(self.__conn.getresponse(), request)
if resp.status >= 400:
if resp.body:
raise Resource.cast_error(resp)
else:
raise ApiError(
"Unknown Error. Recurly Request Id: " + str(resp.request_id),
None,
)
if resp.body:
if resp.content_type in BINARY_TYPES:
return Resource.cast_file(resp)
else:
json_body = json.loads(resp.body.decode("utf-8"))
return Resource.cast_json(json_body, response=resp)
else:
return Resource.cast_json({}, Empty, resp)
except socket.error as e:
raise NetworkError(e)
def _validate_options(self, options):
invalid_options = list(
filter(lambda option: option not in ALLOWED_OPTIONS, options.keys())
)
if len(invalid_options) > 0:
error = "Invalid options: %s. Allowed options: %s" % (
", ".join(invalid_options),
", ".join(ALLOWED_OPTIONS),
)
raise ApiError(error, None)
def _validate_path_parameters(self, args):
"""Checks that path parameters are valid"""
# Check that parameters are valid types
if any(type(arg) not in [str, int, float] for arg in args):
raise ApiError("Invalid parameter type", None)
# Check that string parameters are not empty
if any(isinstance(arg, str) and not bool(arg.strip()) for arg in args):
raise ApiError("Parameters cannot be empty strings", None)
def _interpolate_path(self, path, *args):
"""Encodes components and interpolates path"""
self._validate_path_parameters(args)
return path % tuple(map(lambda arg: urllib.parse.quote(arg, safe=""), args))
def _url_encode(self, params):
"""Encode query params for URL. We need to customize this to conform to Recurly's API"""
r_params = {}
for k, v in params.items():
# join lists w/ a comma (CSV encoding)
if isinstance(v, list) or isinstance(v, tuple):
r_params[k] = ",".join(v)
# booleans need to be downcased
elif isinstance(v, bool):
r_params[k] = "true" if v else "false"
# datetimes should be iso8601 strings
elif isinstance(v, datetime):
r_params[k] = v.isoformat()
else:
r_params[k] = v
return urllib.parse.urlencode(r_params)
|
#!/usr/local/bin/python
"""
See LICENSE file for copyright and license details.
"""
from database.databaseaccess import DatabaseAccess
from database.mappings import *
from modules.core_module import CoreModule
from modules.statement import Statement
from modules.function import *
from modules.constant import *
from generic.modules.function import *
class CurrencyExchange(CoreModule):
"""
CurrencyExchange class.
"""
def __init__(self, config):
"""
Init
"""
self.config = config
def create_statements(self, input_fields):
"""
Creates the records needed for Table.CURRENCY_EXCHANGE.
"""
try:
dba = DatabaseAccess(self.config)
statement_currency_exchange = Statement(T_CURRENCY_EXCHANGE)
date_created = current_date()
date_modified = current_date()
records = 0
for fields in input_fields:
records = records + 1
#NOTE: we don't need to query, because we always add a new
#currency_exchange line. The same value can be used multiple
#times, so it's not possible to query if one already exists.
statement_currency_exchange.add(
records,
{
'currency_exchange_id': None,
'currency_from_id': dba.currency_id_from_currency(
fields[Input.CURRENCY_FROM]),
'currency_to_id': dba.currency_id_from_currency(
fields[Input.CURRENCY_TO]),
'exchange_rate': Decimal(fields[Input.EXCHANGE_RATE]),
'date_created': date_created,
'date_modified': date_modified
}
)
return statement_currency_exchange
except Exception as ex:
print Error.CREATE_STATEMENTS_TABLE_CURRENCY_EXCHANGE, ex
finally:
dba = None
|
# Setup
import os
import chart_studio
from dotenv import load_dotenv
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
from sklearn.datasets import make_blobs
from sklearn.neighbors import LocalOutlierFactor
import plotly.express as px
import plotly.graph_objects as go
import datapane as dp
GREY = '#788995'
BLUE = '#0059ff'
GOLD = '#fdbd28'
GREEN = '#28D9AA'
RED = '#EE5149'
def sim_data():
data_1 = make_blobs(n_samples=[200], n_features=2, centers=[(0,0)],
cluster_std=0.4, random_state=12)
data_1 = pd.DataFrame(data_1[0])
data_1["outlier"] = 1
outliers = {0:[-2, 1.7, 1.4, -1.8, 2, 0], 1:[-2, -1, 1.2, -1.5, 1.4, 1.5],
"outlier":-1}
data_1 = data_1.append(pd.DataFrame(outliers))
data_1.columns = ["x","y","outlier"]
data_2 = make_blobs(n_samples=[120, 50, 30], n_features=2, centers=[(-1,-1), (0, 1), (1.5,1.3)],
cluster_std=[0.3, 0.2, 0.2], random_state=12)
data_2 = pd.DataFrame(data_2[0])
data_2["outlier"] = 1
outliers = {0:[-2, 2, 2.1, -1.8, 2.5, 0], 1:[-2, -1, 2, 2.2, 1.7, 2.3],
"outlier":-1}
data_2 = data_2.append(pd.DataFrame(outliers))
data_2.columns = ["x","y","outlier"]
return data_1, data_2
def lof_for_different_n(data_1, data_2):
X = data_1.loc[:,("x","y")].values
outclass = []
for i in range(5, 205, 5):
clf = LocalOutlierFactor(n_neighbors=i, contamination="auto")
y_pred = clf.fit_predict(X)
score = clf.negative_outlier_factor_
radius = (score.max() - score) / (score.max() - score.min())
outclass += [np.array([y_pred, [i]*len(y_pred), score, radius]).T]
id = np.arange(1,len(X)+1,1)
df_1 = pd.DataFrame(np.concatenate(outclass), columns = ("outlier_pred", "neighbors",
"lof", "radius"))
df_1["outlier_pred_n"] = np.where(df_1["outlier_pred"]==1, "Not an Outlier", "Outlier")
coords = pd.DataFrame(np.tile(X, (40,1)), columns=("x","y"))
df_interact_1 = pd.concat([coords,df_1], axis=1)
df_interact_1["uid"] = np.tile(id, 40)
df_interact_1['centers'] = "One Center"
# ------------------------------------
X = data_2.loc[:,("x","y")].values
outclass = []
for i in range(5, 205, 5):
clf = LocalOutlierFactor(n_neighbors=i, contamination="auto")
y_pred = clf.fit_predict(X)
score = clf.negative_outlier_factor_
radius = (score.max() - score) / (score.max() - score.min())
outclass += [np.array([y_pred, [i]*len(y_pred), score, radius]).T]
id = np.arange(len(X)+1,2*len(X)+1,1)
df_2 = pd.DataFrame(np.concatenate(outclass), columns = ("outlier_pred", "neighbors",
"lof", "radius"))
df_2["outlier_pred_n"] = np.where(df_1["outlier_pred"]==1, "Not an Outlier", "Outlier")
coords = pd.DataFrame(np.tile(X, (40,1)), columns=("x","y"))
df_interact_2 = pd.concat([coords,df_2], axis=1)
df_interact_2["uid"] = np.tile(id, 40)
df_interact_2['centers'] = "Two Centers"
df_viz = pd.concat([df_interact_1, df_interact_2])
return df_viz
def make_interactive_fig(df):
fig = px.scatter(df_viz, x="x", y="y",
color="outlier_pred_n",
animation_frame="neighbors",
animation_group="uid",
title="<b>Local Outlier Factor with Simulated Data</b>",
size = "radius",
size_max=40,
symbol_sequence=["circle-open-dot"],
color_discrete_sequence=[BLUE, RED],
facet_col = "centers",
labels={
"x": "X",
"y": "Y",
"outlier_pred_n": "Outlier Status",
"neighbors": "Number of Neighbors",
"radius": "radius"},
hover_data = {"radius":False,
"centers":False})
fig.for_each_annotation(lambda a: a.update(text=a.text.replace("centers=", "")))
fig["layout"].pop("updatemenus")
fig.update_traces(marker={"line":{"width":2}})
fig.update_xaxes(range=[-2.5, 2.5])
fig.update_yaxes(range=[-2.5, 3])
fig.update_layout(
title={
'font':{'size':18},
'text': "Outlier Detection with LOF<br>Depends on Number of Neighbors",
'y':0.97,
'x':0.5,
'xanchor': 'center',
'yanchor': 'top'},
margin=dict(l=50, r=50, t=50, b=10),
legend=dict(
yanchor="top",
y=0.99,
xanchor="right",
x=0.99
)
)
fig.add_annotation(x=0, y=-1.5,
text="<b>Cluster 1</b>:<br>Center: (0,0)<br>N=200<br>SD: 0.4",
showarrow=False)
fig.add_annotation(x=-0.5, y=-2.1, xref="x2",
text="<b>Cluster 1</b> :<br>Center: (-1,1.5))<br>N=120<br>SD: 0.3",
showarrow=False)
fig.add_annotation(x=-0.25, y=0.18, xref="x2",
text="<b>Cluster 2</b>:<br>Center: (0,1))<br>N=50<br>SD: 0.2",
showarrow=False)
fig.add_annotation(x=1.5, y=0.55, xref="x2",
text="<b>Cluster 3</b>:<br>Center: (1.5,1.3)<br>N=30<br>SD: 0.2",
showarrow=False)
fig.add_annotation(x=0, y=0.98, xref="paper", yref="paper",
text="Circle radii are proportional to Local Outlier Factor score",
showarrow=False, align="left", )
fig['layout']['sliders'][0]['pad']=dict(l=-50, r=0, b=0, t=20)
fig.update_layout(
autosize=False,
width=900, height=600,
font_family="Iosevka Term",
font_color="black",
title_font_family="Roboto Slab",
title_font_color="black",
legend_title_font_color="black"
)
return fig
def upload_to_datapane(fig):
report = dp.Report(dp.Plot(fig, name="neighbors", responsive=False) )
report.upload(name='lof_neighbors', open=True)
if __name__ == '__main__':
data_1, data_2 = sim_data()
df_viz = lof_for_different_n(data_1=data_1, data_2=data_2)
interactive = make_interactive_fig(df_viz)
upload_to_datapane(interactive)
|
# Databricks notebook source
# MAGIC %md # CCU002_03-D12-outcomes_dose2
# MAGIC
# MAGIC **Description** This notebook determines outcomes for the analysis.
# MAGIC
# MAGIC **Author(s)** Venexia Walker
# COMMAND ----------
# MAGIC %md ## Clear cache
# COMMAND ----------
# MAGIC %sql
# MAGIC CLEAR CACHE
# COMMAND ----------
# MAGIC %md ## Define functions
# COMMAND ----------
# Define create table function by Sam Hollings
# Source: Workspaces/dars_nic_391419_j3w9t_collab/DATA_CURATION_wrang000_functions
def create_table(table_name:str, database_name:str='dars_nic_391419_j3w9t_collab', select_sql_script:str=None) -> None:
"""Will save to table from a global_temp view of the same name as the supplied table name (if no SQL script is supplied)
Otherwise, can supply a SQL script and this will be used to make the table with the specificed name, in the specifcied database."""
spark.conf.set("spark.sql.legacy.allowCreatingManagedTableUsingNonemptyLocation","true")
if select_sql_script is None:
select_sql_script = f"SELECT * FROM global_temp.{table_name}"
spark.sql(f"""CREATE TABLE {database_name}.{table_name} AS
{select_sql_script}
""")
spark.sql(f"ALTER TABLE {database_name}.{table_name} OWNER TO {database_name}")
def drop_table(table_name:str, database_name:str='dars_nic_391419_j3w9t_collab', if_exists=True):
if if_exists:
IF_EXISTS = 'IF EXISTS'
else:
IF_EXISTS = ''
spark.sql(f"DROP TABLE {IF_EXISTS} {database_name}.{table_name}")
# COMMAND ----------
# MAGIC %md ## Specify outcomes
# COMMAND ----------
outcomes = ['myocarditis','pericarditis']
# COMMAND ----------
# MAGIC %md ## GDPPR
# COMMAND ----------
for codelist in outcomes:
sql("CREATE OR REPLACE GLOBAL TEMP VIEW ccu002_03_out_dose2_gdppr_" + codelist + " AS SELECT NHS_NUMBER_DEID, min(DATE) AS out_dose2_" + codelist + " FROM (SELECT data.NHS_NUMBER_DEID, data.DATE, vaccination.vaccination_dose1_date FROM dars_nic_391419_j3w9t_collab.ccu002_03_vaccination AS vaccination INNER JOIN (SELECT NHS_NUMBER_DEID, DATE FROM dars_nic_391419_j3w9t_collab.ccu002_03_gdppr_dars_nic_391419_j3w9t WHERE CODE IN (SELECT code FROM dars_nic_391419_j3w9t_collab.ccu002_03_codelists WHERE name = '" + codelist + "' AND terminology=='SNOMED')) AS data ON vaccination.NHS_NUMBER_DEID = data.NHS_NUMBER_DEID) WHERE DATE>=vaccination_dose1_date GROUP BY NHS_NUMBER_DEID")
# COMMAND ----------
# MAGIC %md ## HES APC
# COMMAND ----------
for codelist in outcomes:
sql("CREATE OR REPLACE GLOBAL TEMP VIEW ccu002_03_out_dose2_first_hesapc_" + codelist + " AS SELECT NHS_NUMBER_DEID, MIN(EPISTART) AS out_dose2_" + codelist + " FROM (SELECT data.NHS_NUMBER_DEID, data.EPISTART, vaccination.vaccination_dose1_date FROM dars_nic_391419_j3w9t_collab.ccu002_03_vaccination AS vaccination INNER JOIN (SELECT NHS_NUMBER_DEID, EPISTART FROM dars_nic_391419_j3w9t_collab.ccu002_03_hes_apc_longformat WHERE CODE IN (SELECT code FROM dars_nic_391419_j3w9t_collab.ccu002_03_codelists WHERE name = '" + codelist + "' AND TERMINOLOGY='ICD10') AND (SOURCE='DIAG_3_01' OR SOURCE='DIAG_4_01')) AS data ON vaccination.NHS_NUMBER_DEID = data.NHS_NUMBER_DEID) WHERE EPISTART>=vaccination_dose1_date GROUP BY NHS_NUMBER_DEID")
# COMMAND ----------
for codelist in outcomes:
sql("CREATE OR REPLACE GLOBAL TEMP VIEW ccu002_03_out_dose2_any_hesapc_" + codelist + " AS SELECT NHS_NUMBER_DEID, MIN(EPISTART) AS out_dose2_" + codelist + " FROM (SELECT data.NHS_NUMBER_DEID, data.EPISTART, vaccination.vaccination_dose1_date FROM dars_nic_391419_j3w9t_collab.ccu002_03_vaccination AS vaccination INNER JOIN (SELECT NHS_NUMBER_DEID, EPISTART FROM dars_nic_391419_j3w9t_collab.ccu002_03_hes_apc_longformat WHERE CODE IN (SELECT code FROM dars_nic_391419_j3w9t_collab.ccu002_03_codelists WHERE name = '" + codelist + "' AND TERMINOLOGY='ICD10')) AS data ON vaccination.NHS_NUMBER_DEID = data.NHS_NUMBER_DEID) WHERE EPISTART>=vaccination_dose1_date GROUP BY NHS_NUMBER_DEID")
# COMMAND ----------
# MAGIC %md ## SUS
# COMMAND ----------
for codelist in outcomes:
sql("CREATE OR REPLACE GLOBAL TEMP VIEW ccu002_03_out_dose2_first_sus_" + codelist + " AS SELECT NHS_NUMBER_DEID, MIN(EPISODE_START_DATE) AS out_dose2_" + codelist + " FROM (SELECT data.NHS_NUMBER_DEID, data.EPISODE_START_DATE, vaccination.vaccination_dose1_date FROM dars_nic_391419_j3w9t_collab.ccu002_03_vaccination AS vaccination INNER JOIN (SELECT NHS_NUMBER_DEID, EPISODE_START_DATE FROM dars_nic_391419_j3w9t_collab.ccu002_03_sus_longformat WHERE ((CODE IN (SELECT code FROM dars_nic_391419_j3w9t_collab.ccu002_03_codelists WHERE name = '" + codelist + "' and terminology=='ICD10')) OR (LEFT(CODE,3) IN (SELECT code FROM dars_nic_391419_j3w9t_collab.ccu002_03_codelists WHERE name = '" + codelist + "' and terminology=='ICD10'))) AND SOURCE='PRIMARY_DIAGNOSIS_CODE') AS data ON vaccination.NHS_NUMBER_DEID = data.NHS_NUMBER_DEID) WHERE EPISODE_START_DATE>=vaccination_dose1_date GROUP BY NHS_NUMBER_DEID")
# COMMAND ----------
for codelist in outcomes:
sql("CREATE OR REPLACE GLOBAL TEMP VIEW ccu002_03_out_dose2_any_sus_" + codelist + " AS SELECT NHS_NUMBER_DEID, MIN(EPISODE_START_DATE) AS out_dose2_" + codelist + " FROM (SELECT data.NHS_NUMBER_DEID, data.EPISODE_START_DATE, vaccination.vaccination_dose1_date FROM dars_nic_391419_j3w9t_collab.ccu002_03_vaccination AS vaccination INNER JOIN (SELECT NHS_NUMBER_DEID, EPISODE_START_DATE FROM dars_nic_391419_j3w9t_collab.ccu002_03_sus_longformat WHERE ((CODE IN (SELECT code FROM dars_nic_391419_j3w9t_collab.ccu002_03_codelists WHERE name = '" + codelist + "' and terminology=='ICD10')) OR (LEFT(CODE,3) IN (SELECT code FROM dars_nic_391419_j3w9t_collab.ccu002_03_codelists WHERE name = '" + codelist + "' and terminology=='ICD10')))) AS data ON vaccination.NHS_NUMBER_DEID = data.NHS_NUMBER_DEID) WHERE EPISODE_START_DATE>=vaccination_dose1_date GROUP BY NHS_NUMBER_DEID")
# COMMAND ----------
# MAGIC %md ## Deaths
# COMMAND ----------
# DEATHS
for codelist in outcomes:
sql("CREATE OR REPLACE GLOBAL TEMP VIEW ccu002_03_out_dose2_first_deaths_" + codelist + " AS SELECT NHS_NUMBER_DEID, MIN(DATE) AS out_dose2_" + codelist + " FROM (SELECT data.NHS_NUMBER_DEID, data.DATE, vaccination.vaccination_dose1_date FROM dars_nic_391419_j3w9t_collab.ccu002_03_vaccination AS vaccination INNER JOIN (SELECT NHS_NUMBER_DEID, DATE FROM dars_nic_391419_j3w9t_collab.ccu002_03_deaths_longformat WHERE ((CODE IN (SELECT code FROM dars_nic_391419_j3w9t_collab.ccu002_03_codelists WHERE name = '" + codelist + "' and terminology=='ICD10')) OR (LEFT(CODE,3) IN (SELECT code FROM dars_nic_391419_j3w9t_collab.ccu002_03_codelists WHERE name = '" + codelist + "' and terminology=='ICD10'))) AND SOURCE='S_UNDERLYING_COD_ICD10') AS data ON vaccination.NHS_NUMBER_DEID = data.NHS_NUMBER_DEID) WHERE DATE>=vaccination_dose1_date GROUP BY NHS_NUMBER_DEID")
# COMMAND ----------
# DEATHS
for codelist in outcomes:
sql("CREATE OR REPLACE GLOBAL TEMP VIEW ccu002_03_out_dose2_any_deaths_" + codelist + " AS SELECT NHS_NUMBER_DEID, MIN(DATE) AS out_dose2_" + codelist + " FROM (SELECT data.NHS_NUMBER_DEID, data.DATE, vaccination.vaccination_dose1_date FROM dars_nic_391419_j3w9t_collab.ccu002_03_vaccination AS vaccination INNER JOIN (SELECT NHS_NUMBER_DEID, DATE FROM dars_nic_391419_j3w9t_collab.ccu002_03_deaths_longformat WHERE ((CODE IN (SELECT code FROM dars_nic_391419_j3w9t_collab.ccu002_03_codelists WHERE name = '" + codelist + "' and terminology=='ICD10')) OR (LEFT(CODE,3) IN (SELECT code FROM dars_nic_391419_j3w9t_collab.ccu002_03_codelists WHERE name = '" + codelist + "' and terminology=='ICD10')))) AS data ON vaccination.NHS_NUMBER_DEID = data.NHS_NUMBER_DEID) WHERE DATE>=vaccination_dose1_date GROUP BY NHS_NUMBER_DEID")
# COMMAND ----------
# MAGIC %md ## Combine data sources
# COMMAND ----------
for codelist in outcomes:
sql("CREATE OR REPLACE GLOBAL TEMP VIEW ccu002_03_out_dose2_first_" + codelist + " AS SELECT NHS_NUMBER_DEID, min(out_dose2_" + codelist + ") AS out_dose2_first_" + codelist + " FROM (SELECT * FROM global_temp.ccu002_03_out_dose2_gdppr_" + codelist + " UNION ALL SELECT * FROM global_temp.ccu002_03_out_dose2_first_hesapc_" + codelist + " UNION ALL SELECT * FROM global_temp.ccu002_03_out_dose2_first_deaths_" + codelist + " UNION ALL SELECT * FROM global_temp.ccu002_03_out_dose2_first_sus_" + codelist + ") GROUP BY NHS_NUMBER_DEID")
# COMMAND ----------
for codelist in outcomes:
sql("CREATE OR REPLACE GLOBAL TEMP VIEW ccu002_03_out_dose2_any_" + codelist + " AS SELECT NHS_NUMBER_DEID, min(out_dose2_" + codelist + ") AS out_dose2_any_" + codelist + " FROM (SELECT * FROM global_temp.ccu002_03_out_dose2_gdppr_" + codelist + " UNION ALL SELECT * FROM global_temp.ccu002_03_out_dose2_any_hesapc_" + codelist + " UNION ALL SELECT * FROM global_temp.ccu002_03_out_dose2_any_deaths_" + codelist + " UNION ALL SELECT * FROM global_temp.ccu002_03_out_dose2_any_sus_" + codelist + ") GROUP BY NHS_NUMBER_DEID")
# COMMAND ----------
# MAGIC %md ## Save as tables
# COMMAND ----------
for codelist in outcomes:
drop_table('ccu002_03_out_dose2_first_'+codelist)
# COMMAND ----------
for codelist in outcomes:
create_table('ccu002_03_out_dose2_first_'+codelist)
# COMMAND ----------
for codelist in outcomes:
drop_table('ccu002_03_out_dose2_any_'+codelist)
# COMMAND ----------
for codelist in outcomes:
create_table('ccu002_03_out_dose2_any_'+codelist)
|
#!/usr/bin/python3
"""
# Author: Scott Chubb scott.chubb@netapp.com
# Written for Python 3.7 and above
# No warranty is offered, use at your own risk. While these scripts have been
# tested in lab situations, all use cases cannot be accounted for.
"""
import sys, time, os
import requests
from datetime import datetime
from prettytable import PrettyTable
from modules.get_aiq_inputs import get_inputs_logs as get_inputs
from modules.connect_auth_aiq import web_login, build_headers, build_connect
from modules.get_aiq_customer import parse_customer
from modules.build_api_response import build_response
from modules.parser import parse_cluster
def build_payload():
payload = ({"method": "ListClusterDetails",
"params": {},
"id": 1})
return payload
def build_events(response_dict, search_string):
"""
Build the events list
"""
gb_div = 1073741824
cap_dict_pre = {}
for key,val in response_dict.items():
cls_cap = val['clusterCapacity']
cls_name = key
used_meta_snap_space = cls_cap['usedMetadataSpaceInSnapshots']
used_meta_snap_space_gb = round((used_meta_snap_space/gb_div),2)
max_used_meta = cls_cap['maxUsedMetadataSpace']
max_used_meta_gb = round((max_used_meta/gb_div),2)
actv_space = cls_cap['activeBlockSpace']
actv_space_gb = round((actv_space/gb_div),2)
uniq_blck_used_space = cls_cap['uniqueBlocksUsedSpace']
uniq_blck_used_space_gb = round((uniq_blck_used_space/gb_div),2)
total_ops = cls_cap['totalOps']
peak_actv_sess = cls_cap['peakActiveSessions']
uniq_block = cls_cap['uniqueBlocks']
max_over_prov = cls_cap['maxOverProvisionableSpace']
max_over_prov_gb = round((max_over_prov/gb_div),2)
zero_blocks = cls_cap['zeroBlocks']
prov_space = cls_cap['provisionedSpace']
prov_space_gb = round((prov_space/gb_div),2)
max_used = cls_cap['maxUsedSpace']
max_used_gb = round((max_used/gb_div),2)
peak_iops = cls_cap['peakIOPS']
time_stamp = cls_cap['timestamp']
curr_iops = cls_cap['currentIOPS']
used_space = cls_cap['usedSpace']
used_space_gb = round((used_space/gb_div),2)
actv_sess = cls_cap['activeSessions']
non_zero_block = cls_cap['nonZeroBlocks']
max_prov = cls_cap['maxProvisionedSpace']
max_prov_gb = round((max_prov/gb_div),2)
used_meta = cls_cap['usedMetadataSpace']
used_meta_gb = round((used_meta/gb_div),2)
avg_iops = cls_cap['averageIOPS']
snap_non_zero_block = cls_cap['snapshotNonZeroBlocks']
max_iops = cls_cap['maxIOPS']
io_size = cls_cap['clusterRecentIOSize']
cap_dict_pre[cls_name] =[time_stamp, used_meta_snap_space_gb,
max_used_meta_gb, used_meta_gb,
uniq_blck_used_space_gb, uniq_block,
zero_blocks, non_zero_block,
snap_non_zero_block, max_over_prov_gb,
max_prov_gb, prov_space_gb, max_used_gb,
used_space_gb, actv_space_gb,
peak_actv_sess, io_size, total_ops, curr_iops,
avg_iops, max_iops, peak_iops, actv_sess]
return cap_dict_pre
def build_output(outfile_name, **cap_dict):
out_table = PrettyTable()
out_table.field_names = ["Cluster", "Timestamp","Used Metadata Snap Space",
"Max Used Metadata", "Used Metadata",
"Unique block space used", "Unique blocks",
"Zero blocks", "Non Zero Blocks",
"Snapshot Non Zero Blocks", "Max Overprovisionable",
"Max Provisioned", "Provisioned Space",
"Max Usable Space", "Used Space", "Active Space",
"Peak Active Sessions", "Active Sessions",
"Recent IO Size", "Total Ops", "Current IOPs",
"Average IOPs", "Maximum IOPs", "Peak IOPs"]
for key,val in cap_dict.items():
cls_name = key
time_stamp = val[0]
used_meta_snap_space_gb = val[1]
max_used_meta_gb = val[2]
used_meta_gb = val[3]
uniq_blck_used_space_gb = val[4]
uniq_block = val[5]
zero_blocks = val[6]
non_zero_block = val[7]
snap_non_zero_block = val[8]
max_over_prov_gb = val[9]
max_prov_gb = val[10]
prov_space_gb = val[11]
max_used_gb = val[12]
used_space_gb = val[13]
actv_space_gb = val[14]
peak_actv_sess = val[15]
io_size = val[16]
total_ops = val[17]
curr_iops = val[18]
avg_iops = val[19]
max_iops = val[20]
peak_iops = val[21]
actv_sess = val[22]
out_table.add_row([cls_name, time_stamp, used_meta_snap_space_gb,
max_used_meta_gb, used_meta_gb,
uniq_blck_used_space_gb, uniq_block,
zero_blocks, non_zero_block,
snap_non_zero_block, max_over_prov_gb,
max_prov_gb, prov_space_gb, max_used_gb,
used_space_gb, actv_space_gb,
peak_actv_sess, io_size, total_ops, curr_iops,
avg_iops, max_iops, peak_iops, actv_sess])
out_table_text = out_table.get_string()
print(out_table)
with open("./output_files/" + outfile_name, "a") as out_file:
out_file.write(out_table_text + "\n")
def get_filename(cluster_name):
"""
Build the output filename
"""
now_date = datetime.now()
out_date = now_date.strftime("%Y-%m-%d_%H-%M")
outfile_name = "cluster_capacity_" + out_date + '.txt'
if os.path.exists(outfile_name):
os.remove(outfile_name)
print('Output file name is: {}'.format(outfile_name))
return outfile_name
def main():
"""
Do the work
"""
user, user_pass, search_customer, search_string, _sort_by, search_cluster = get_inputs()
auth_cookie = web_login(user, user_pass)
payload = build_payload()
headers = build_headers(auth_cookie)
response_json = build_connect(headers,payload)
cluster_dict = parse_customer(response_json, search_customer)
response_dict = build_response(headers, cluster_dict, search_string=None,
api_call='GetClusterCapacity', node_id=None)
outfile_name = get_filename(search_customer)
cap_dict_pre = build_events(response_dict, search_string)
cap_dict = parse_cluster(cap_dict_pre, search_cluster)
build_output(outfile_name, **cap_dict)
if __name__ == "__main__":
main()
|
'''
Simple xgboost implementation
'''
|
import requests
def download_from_url(url: str, save_path: str, chunk_size: int = 128, progress_update=None):
response = requests.get(url, stream=True)
total_size_in_bytes = int(response.headers.get('content-length', 0))
acc_c_size = 0
with open(save_path, 'wb') as fd:
for chunk in response.iter_content(chunk_size=chunk_size):
c_size = len(chunk)*8
acc_c_size += c_size
completed_percent = acc_c_size / total_size_in_bytes
if progress_update is not None:
progress_update(completed_percent, acc_c_size, total_size_in_bytes)
fd.write(chunk)
|
from flask_mail import Message, Mail
from flask import render_template
from . import mail
subject='Pitcher'
def mail_message(subject,template, to, **kwargs):
sender_email = 'dev.py.js@gmail.com'
email = Message(subject, sender =sender_email, recipients=[to])
email.body= render_template(template + ".txt", **kwargs)
email.html = render_template(template + ".html", **kwargs)
mail.send(email)
|
# -*- coding: utf-8 -*-
"""Noise modules."""
import abc
import six
import tensorflow as tf
from opennmt import constants
from opennmt.data import text
from opennmt.utils import misc
class WordNoiser(object):
"""Applies noise to words sequences."""
def __init__(self, noises=None, subword_token="■", is_spacer=None):
"""Initializes the noising class.
Args:
noises: A list of :class:`opennmt.data.Noise` instances to apply
sequentially.
subword_token: The special token used by the subword tokenizer. This is
required when the noise should be applied at the word level and not the
subword level.
is_spacer: Whether :obj:`subword_token` is used as a spacer (as in
SentencePiece) or a joiner (as in BPE). If ``None``, will infer
directly from :obj:`subword_token`.
See Also:
:func:`opennmt.data.tokens_to_words`
"""
if noises is None:
noises = []
self.noises = noises
self.subword_token = subword_token
self.is_spacer = is_spacer
def add(self, noise):
"""Adds a noise to apply."""
self.noises.append(noise)
def __call__(self, tokens, sequence_length=None, keep_shape=False):
"""Applies noise on :obj:`tokens`.
Args:
tokens: A string ``tf.Tensor`` or batch of string ``tf.Tensor``.
sequence_length: When :obj:`tokens` is ND, the length of each sequence in
the batch.
keep_shape: Ensure that the shape is kept. Otherwise, fit the shape to the
new lengths.
Returns:
A tuple with the noisy version of :obj:`tokens` and the new lengths.
"""
with tf.device("cpu:0"):
return self._call(tokens, sequence_length, keep_shape)
def _call(self, tokens, sequence_length, keep_shape):
rank = tokens.shape.ndims
if rank == 1:
input_length = tf.shape(tokens)[0]
if sequence_length is not None:
tokens = tokens[:sequence_length]
else:
tokens = tokens[:tf.math.count_nonzero(tokens)]
words = text.tokens_to_words(
tokens,
subword_token=self.subword_token,
is_spacer=self.is_spacer)
words = words.to_tensor()
for noise in self.noises:
words = noise(words)
outputs = tf.RaggedTensor.from_tensor(words, padding="").flat_values
output_length = tf.shape(outputs)[0]
if keep_shape:
outputs = tf.pad(outputs, [[0, input_length - output_length]])
return outputs, output_length
elif rank == 2:
if sequence_length is None:
raise ValueError("sequence_length must be passed for 2D inputs")
tokens, sequence_length = tf.map_fn(
lambda arg: self._call(*arg, keep_shape=True),
(tokens, sequence_length),
back_prop=False)
if not keep_shape:
tokens = tokens[:, :tf.reduce_max(sequence_length)]
return tokens, sequence_length
else:
if sequence_length is None:
raise ValueError("sequence_length must be passed for ND inputs")
original_shape = misc.shape_list(tokens)
tokens = tf.reshape(tokens, [-1, original_shape[-1]])
sequence_length = tf.reshape(sequence_length, [-1])
tokens, sequence_length = self._call(tokens, sequence_length, keep_shape=keep_shape)
tokens = tf.reshape(tokens, original_shape[:-1] + [-1])
sequence_length = tf.reshape(sequence_length, original_shape[:-1])
return tokens, sequence_length
@six.add_metaclass(abc.ABCMeta)
class Noise(object):
"""Base class for noise modules."""
def __call__(self, words):
"""Applies noise on a sequence of words.
Args:
words: The sequence of words as a string ``tf.Tensor``. If it has 2
dimensions, each row represents a word that possibly contains multiple
tokens.
Returns:
A noisy version of :obj:`words`.
Raises:
ValueError: if :obj:`words` has a rank greater than 2.
"""
if words.shape.ndims > 2:
raise ValueError("Noise only supports tensors of rank 2 or less")
inputs = words
if words.shape.ndims == 1:
inputs = tf.expand_dims(inputs, 1)
num_words = tf.shape(inputs)[0]
outputs = tf.cond(
tf.math.equal(num_words, 0),
true_fn=lambda: inputs,
false_fn=lambda: self._apply(inputs))
if words.shape.ndims == 1:
outputs = tf.squeeze(outputs, 1)
return outputs
@abc.abstractmethod
def _apply(self, words):
"""Applies noise on a sequence of words.
Args:
words: A 2D string ``tf.Tensor`` where each row represents a word that
possibly contains multiple tokens.
Returns:
A noisy version of :obj:`words`.
"""
raise NotImplementedError()
class WordDropout(Noise):
"""Randomly drops words in a sequence."""
def __init__(self, dropout):
"""Initializes the noise module.
Args:
dropout: The probability to drop word.
"""
self.dropout = dropout
def _apply(self, words):
if self.dropout == 0:
return tf.identity(words)
num_words = tf.shape(words, out_type=tf.int64)[0]
keep_mask = random_mask([num_words], 1 - self.dropout)
keep_ind = tf.where(keep_mask)
# Keep at least one word.
keep_ind = tf.cond(
tf.equal(tf.shape(keep_ind)[0], 0),
true_fn=lambda: tf.random.uniform([1], maxval=num_words, dtype=tf.int64),
false_fn=lambda: tf.squeeze(keep_ind, -1))
return tf.gather(words, keep_ind)
class WordOmission(Noise):
"""Randomly omits words in a sequence.
This is different than :class:`opennmt.data.WordDropout` as it drops a
fixed number of words.
"""
def __init__(self, count):
"""Initializes the noise module.
Args:
count: The number of words to omit.
"""
self.count = count
def _apply(self, words):
if self.count == 0:
return tf.identity(words)
num_words = tf.shape(words)[0]
indices = tf.range(num_words)
shuffle_indices = tf.random.shuffle(indices)
keep_count = tf.maximum(num_words - self.count, 1)
keep_indices = tf.sort(shuffle_indices[:keep_count])
return tf.gather(words, keep_indices)
class WordReplacement(Noise):
"""Randomly replaces words."""
def __init__(self, probability, filler=constants.UNKNOWN_TOKEN):
"""Initializes the noise module.
Args:
probability: The probability to replace words.
filler: The replacement token.
"""
self.probability = probability
self.filler = filler
def _apply(self, words):
if self.probability == 0:
return tf.identity(words)
shape = tf.shape(words)
replace_mask = random_mask(shape[:1], self.probability)
filler = tf.fill([shape[0], 1], self.filler)
filler = tf.pad(filler, [[0, 0], [0, shape[-1] - 1]])
return tf.where(
tf.broadcast_to(tf.expand_dims(replace_mask, -1), tf.shape(words)),
x=filler,
y=words)
class WordPermutation(Noise):
"""Randomly permutes words in a sequence with a maximum distance."""
def __init__(self, max_distance):
"""Initializes the noise module.
Args:
max_distance: The maximum permutation distance.
"""
self.max_distance = max_distance
def _apply(self, words):
if self.max_distance == 0:
return tf.identity(words)
num_words = tf.shape(words)[0]
offset = tf.random.uniform([num_words], maxval=1) * (self.max_distance + 1)
offset = tf.cast(offset, num_words.dtype)
new_pos = tf.argsort(tf.range(num_words) + offset)
return tf.gather(words, new_pos)
def random_mask(shape, probability):
"""Generates a random boolean mask.
Args:
shape: The mask shape.
probability: The probability to select an element.
Returns:
A boolean mask with shape :obj:`shape`.
"""
probs = tf.random.uniform(shape, maxval=1)
mask = tf.math.less(probs, probability)
return mask
|
#!/usr/bin/env python3
import argparse
import os
import shutil
import socket
import sys
from functools import partial
from pathlib import Path
import mako.lookup
import mako.template
import requests
import toml
import yaml
BASE16_TEMPLATES_URL = 'https://raw.githubusercontent.com/chriskempson/base16-templates-source/master/list.yaml'
BASE16_TEMPLATES = yaml.safe_load(requests.get(BASE16_TEMPLATES_URL).text)
def get_base16(scheme, app, template='default'):
base_url = BASE16_TEMPLATES[app].replace('github.com', 'raw.githubusercontent.com') + '/master/';
config = yaml.safe_load(requests.get(base_url + 'templates/config.yaml').text)
output = config[template]['output']
extension = config[template]['extension']
return requests.get(base_url + output + '/base16-' + scheme + extension).text
def main():
parser = argparse.ArgumentParser(
description='Generates and installs dotfiles for this host.',
formatter_class=argparse.ArgumentDefaultsHelpFormatter,
)
parser.add_argument(
'-d', '--dotfiles',
help='The base directory of the dotfiles repository.',
type=Path,
default=Path(sys.argv[0]).parent,
)
parser.add_argument(
'-n', '--hostname',
help='The hostname or other identifying name of this system that will'
' be used to retrieve the host-specific configuration.',
default=os.environ.get('HOSTNAME') or socket.gethostname(),
)
parser.add_argument(
'-o', '--home',
help='The home directory where generated dotfiles will be installed.',
type=Path,
default=os.environ.get('HOME') or Path.home(),
)
args = parser.parse_args()
raw_dir = args.dotfiles / 'raw'
templates_dir = args.dotfiles / 'templates'
include_dir = args.dotfiles / 'include'
host_filename = args.dotfiles / 'hosts' / '{}.toml'.format(args.hostname)
if host_filename.exists():
with open(host_filename) as host_file:
host_config = toml.load(host_file)
else:
host_config = {}
host_config['name'] = args.hostname
lookup = mako.lookup.TemplateLookup(
directories=[
str(templates_dir),
str(include_dir),
],
)
for raw_path in raw_dir.glob('**/*'):
if not raw_path.is_file():
continue
rel_path = raw_path.relative_to(raw_dir)
output_path = args.home / rel_path
print(rel_path)
output_path.parent.mkdir(parents=True, exist_ok=True)
shutil.copy(raw_path, output_path)
for template_path in templates_dir.glob('**/*'):
if not template_path.is_file():
continue
rel_path = template_path.relative_to(templates_dir)
print(rel_path)
template = mako.template.Template(
filename=str(template_path),
strict_undefined=True,
lookup=lookup,
)
output = template.render(
host=host_config,
get_base16=partial(get_base16, host_config.get('base16-scheme', 'default-dark')),
)
output_path = args.home / template_path.relative_to(templates_dir)
output_path.parent.mkdir(parents=True, exist_ok=True)
with open(output_path, 'w+') as output_file:
output_file.write(output)
if __name__ == '__main__':
main()
|
# -*- coding: utf-8 -*-
SOI = b'\xFF\xA0' #Start of Image
EOI = b'\xFF\xA1' #End of Image
SOF = b'\xFF\xA2' #Start of Frame
SOB = b'\xFF\xA3' #Start of Block
DTT = b'\xFF\xA4' #Define Transform Table
DQT = b'\xFF\xA5' #Define Quantization Table
DHT = b'\xFF\xA6' #Define Huffman Table(s)
DRI = b'\xFF\xA7' #Define Restart Interval
RST0 = b'\xFF\xB0' #Restart Modulo 0
RST1 = b'\xFF\xB1' #Restart Modulo 1
RST2 = b'\xFF\xB2' #Restart Modulo 2
RST3 = b'\xFF\xB3' #Restart Modulo 3
RST4 = b'\xFF\xB4' #Restart Modulo 4
RST5 = b'\xFF\xB5' #Restart Modulo 5
RST6 = b'\xFF\xB6' #Restart Modulo 6
RST7 = b'\xFF\xB7' #Restart Modulo 7
COM = b'\xFF\xA8' #Comment
|
import requests
__author__ = 'Corey Hoard'
__version__ = '1.0.0'
__license__ = 'MIT'
__all__ = ['Imgflip', 'Meme']
class Imgflip(object):
"""
Access the Imgflip RESTful JSON API.
A username and password are needed to caption images, but are not needed to get
the current list of memes.
Examples:
# List all memes available by name
import pyimgflip
api = pyimgflip.Imgflip()
memes = api.get_memes()
for meme in memes:
print(meme.name)
# Post a random meme and print its url
import pyimgflip
import random
api = pyimgflip.Imgflip(username='your_username', password='******')
memes = api.get_memes()
meme = random.choice(memes)
print("Generating a meme from template: " + meme.name)
result = api.caption_image(meme, "Top Text", "Bottom Text")
print("Meme available at URL: " + result['url'])
See Imgflip's documentation at https://api.imgflip.com for more information.
Most function descriptions taken from the above URL.
"""
def __init__(self, username = None, password = None):
"""
Create a new Imgflip instance.
Args:
username (str) [optional]: Username of any valid imgflip account.
password (str) [optional]: Corresponding account password
"""
super(Imgflip, self).__init__()
self.username = username
self.password = password
def get_memes(self):
"""
Get list of available memes.
Gets an array of popular memes that may be captioned with this API.
The size of this array and the order of memes may change at any time.
When this description was written, it returned 100 memes ordered by
how many times they were captioned in the last 30 days.
Returns:
A list of pyimgflip.Meme objects
Raises:
HTTPError: if the API cannot be reached or returns an invalid response.
RuntimeError: if the API indicates an unsuccessful response or JSON cannot be parsed.
"""
url = 'https://api.imgflip.com/get_memes'
r = requests.get(url)
r.raise_for_status()
response = r.json()
if response['success']:
return [Meme.fromJSON(meme) for meme in response['data']['memes']]
else:
raise RuntimeError("Imgflip returned error message: " + response['error_message'])
def caption_image(self, meme, text0, text1, font='impact', max_font_size=50):
"""
Add a caption to an Imgflip meme template.
Args:
meme (pyimgflip.Meme, int): Accepts either a Meme object or a valid Imgflip template ID.
text0 (str): The top text for the meme.
text1 (str): The bottom text for the meme.
font (str): Current options are 'impact' and 'arial'. Defaults to 'impact'.
max_font_size (int): Maximum font size in pixels. Defaults to 50px.
Returns:
A dictionary as with keys "url" and "page_url" as reported by Imgflip.
Raises:
HTTPError: if the API cannot be reached or returns an invalid response.
RuntimeError: if the API indicates an unsuccessful response.
TypeError: if meme id is an invalid type
ValueError: if font is passed an incorrect value
"""
url = 'https://api.imgflip.com/caption_image'
if self.username is None or self.password is None:
raise RuntimeError("Username and password required to caption image.")
try:
try:
template_id = int(meme.id)
except AttributeError as e:
template_id = int(meme)
except ValueError as e:
raise TypeError("Meme id must be a numeric value.")
font_clean = font.lower().strip()
if font_clean != 'impact' and font_clean != 'arial':
raise ValueError("Font parameter must be either 'impact' or 'arial'.")
payload = {'username':self.username, 'password':self.password,
'template_id':template_id,
'text0':text0, 'text1':text1,
'font':font_clean, 'max_font_size':max_font_size}
r = requests.post(url, data=payload)
r.raise_for_status()
response = r.json()
if response['success']:
return response['data']
else:
raise RuntimeError("Imgflip returned error message: " + response['error_message'])
def caption_image_boxes(self, meme, boxes, font='impact', max_font_size=50):
"""
Uses Imgflip's more advanced 'boxes' interface for maximum customization.
See https://api.imgflip.com for usage details.
Args:
meme (pyimgflip.Meme, int): Accepts either a Meme object or a valid Imgflip template ID.
boxes (dict): Custom text boxes as specified by the API.
font (str): Current options are 'impact' and 'arial'. Defaults to 'impact'.
max_font_size (int): Maximum font size in pixels. Defaults to 50px.
Returns:
A dictionary as with keys "url" and "page_url" as reported by Imgflip.
Raises:
HTTPError: if the API cannot be reached or returns an invalid response.
RuntimeError: if the API indicates an unsuccessful response.
TypeError: if meme id is an invalid type
ValueError: if font is passed an incorrect value
"""
url = 'https://api.imgflip.com/caption_image'
if self.username is None or self.password is None:
raise RuntimeError("Username and password required to caption image.")
try:
try:
template_id = int(meme.id)
except AttributeError as e:
template_id = int(meme)
except ValueError as e:
raise TypeError("Meme id must be a numeric value.")
font_clean = font.lower().strip()
if font_clean != 'impact' and font_clean != 'arial':
raise ValueError("Font parameter must be either 'impact' or 'arial'.")
payload = {'username':self.username, 'password':self.password,
'template_id':template_id,
'text0':'', 'text1':'',
'boxes':boxes,
'font':font_clean, 'max_font_size':max_font_size}
r = requests.post(url, data=payload)
r.raise_for_status()
response = r.json()
if response['success']:
return response['data']
else:
raise RuntimeError("Imgflip returned error message: " + response['error_message'])
def __str__(self):
return repr(self)
def __repr__(self):
if self.username is None or self.password is None:
return '<pyimgflip.Imgflip>'
else:
return '<pyimgflip.Imgflip for user "%s">' % self.username
class Meme(object):
"""
Represents a meme template as returned by pyimgflip.Imgflip.get_memes().
Fields:
id (int): Meme template ID number. Needed to caption images.
name (str): Human-readable name.
url (str): URL to an uncaptioned prototype image.
width (int): Image width in pixels.
height (int): Image height in pixels.
"""
def __init__(self, id, name='', url='', width=0, height=0):
"""
Create a new Meme instance
Args:
id (int): Meme template ID number. Needed to caption images.
name (str): Human-readable name.
url (str): URL to an uncaptioned prototype image.
width (int): Image width in pixels.
height (int): Image height in pixels.
"""
super(Meme, self).__init__()
self.id = int(id)
self.name = name
self.url = url
self.width = width
self.height = height
@classmethod
def fromJSON(cls, data):
"""
Create a Meme instance from a JSON API response.
Args:
data (dict): A JSON object as returned by the get_memes endpoint
Returns:
The newly-created Meme object
Raises:
RuntimeError: if the JSON object cannot be properly parsed
"""
try:
return cls(**data)
except AttributeError:
raise RuntimeError("JSON cannot be properly parsed into Meme object: " + str(data))
def __str__(self):
return '<pyimgflip.Meme with id %i and name "%s">' % (self.id, self.name)
def __repr__(self):
return '<pyimgflip.Meme with id %i>' % self.id
|
import h5py
import numpy as np
def load_dataset(train_path, test_path):
train_dataset = h5py.File(train_path, "r")
train_set_x_orig = np.array(train_dataset["train_set_x"][:]) # your train set features
train_set_y_orig = np.array(train_dataset["train_set_y"][:]) # your train set labels
test_dataset = h5py.File(test_path, "r")
test_set_x_orig = np.array(test_dataset["test_set_x"][:]) # your test set features
test_set_y_orig = np.array(test_dataset["test_set_y"][:]) # your test set labels
classes = np.array(test_dataset["list_classes"][:]) # the list of classes
train_set_y_orig = train_set_y_orig.reshape((1, train_set_y_orig.shape[0]))
test_set_y_orig = test_set_y_orig.reshape((1, test_set_y_orig.shape[0]))
return train_set_x_orig, train_set_y_orig, test_set_x_orig, test_set_y_orig, classes
def sigmoid(z):
'''
input: z (a scalar)
output: sigmoid(z)
'''
return 1/(1 + np.exp(-z))
def propagate(w, b, x, y):
'''
input: - w: weights, a numpy array of size (px * px * 3, 1)
- b: bias
- x: data of size (px * px * 3, number of examples)
- y: label vector of size (1, number of examples)
output:
- cost: cost for logistic regression
- dw: gradient of the loss with respect to w
- db: gradient of the loss with respect to b
'''
m = x.shape[1]
# Forward Propagation:
activation = sigmoid(np.dot(w.T, x) + b)
cost = -(1/m)*(np.sum(y*np.log(activation) + (1-y)*np.log(1-activation)))
# Backward Propagation
gradient = {'dw': (1/m)*np.dot(x, (activation-y).T),
'db': (1/m)*np.sum(activation-y)}
return gradient, cost
def optimize(w, b, x, y, num_iterations, lr):
'''
input: - w: weights, a numpy array of size (px * px * 3, 1)
- b: bias
- x: data of size (px * px * 3, number of examples)
- y: label vector of size (1, number of examples)
- num_iterations: number of iterations of the optimization loop
- lr: learning_rate, for the GD update rule
output:
- params: dictionary containing w and b
- grads: dictionary containing the gradients of the weights and bias with respect to the cost function
- costs: list of all the costs computed during the optimization, this will be used to plot the learning curve
'''
costs = []
for i in range(num_iterations):
gradient, cost = propagate(w, b, x, y)
dw, db = gradient['dw'], gradient['db']
w -= lr*dw
b -= lr*db
if i % 100 == 0:
costs.append(cost)
print('{}th iteration cost: {}'.format(i, cost))
return {'w': w, 'b': b},\
{'dw': dw, 'db': db},\
costs
def predict(w, b, x):
'''
input: - w: weights (px * px * 3, 1)
- b: bias
- x: data of size (px * px * 3, number of examples)
output:
- y_pred: np array containing all predictions (0 / 1) for examples in x
'''
m = x.shape[1]
y_pred = np.zeros((1, m))
w = w.reshape(x.shape[0], 1)
activation = sigmoid(np.dot(w.T, x) + b)
for i in range(activation.shape[1]):
y_pred[0,i] = 1 if activation[0, i] > 0.5 else 0
return y_pred
|
import parser
import unittest
from test import test_support
#
# First, we test that we can generate trees from valid source fragments,
# and that these valid trees are indeed allowed by the tree-loading side
# of the parser module.
#
class RoundtripLegalSyntaxTestCase(unittest.TestCase):
def roundtrip(self, f, s):
st1 = f(s)
t = st1.totuple()
try:
st2 = parser.sequence2st(t)
except parser.ParserError, why:
self.fail("could not roundtrip %r: %s" % (s, why))
self.assertEquals(t, st2.totuple(),
"could not re-generate syntax tree")
def check_expr(self, s):
self.roundtrip(parser.expr, s)
def check_suite(self, s):
self.roundtrip(parser.suite, s)
def test_yield_statement(self):
self.check_suite("def f(): yield 1")
self.check_suite("def f(): yield")
self.check_suite("def f(): x += yield")
self.check_suite("def f(): x = yield 1")
self.check_suite("def f(): x = y = yield 1")
self.check_suite("def f(): x = yield")
self.check_suite("def f(): x = y = yield")
self.check_suite("def f(): 1 + (yield)*2")
self.check_suite("def f(): (yield 1)*2")
self.check_suite("def f(): return; yield 1")
self.check_suite("def f(): yield 1; return")
self.check_suite("def f():\n"
" for x in range(30):\n"
" yield x\n")
self.check_suite("def f():\n"
" if (yield):\n"
" yield x\n")
def test_expressions(self):
self.check_expr("foo(1)")
self.check_expr("[1, 2, 3]")
self.check_expr("[x**3 for x in range(20)]")
self.check_expr("[x**3 for x in range(20) if x % 3]")
self.check_expr("[x**3 for x in range(20) if x % 2 if x % 3]")
self.check_expr("list(x**3 for x in range(20))")
self.check_expr("list(x**3 for x in range(20) if x % 3)")
self.check_expr("list(x**3 for x in range(20) if x % 2 if x % 3)")
self.check_expr("foo(*args)")
self.check_expr("foo(*args, **kw)")
self.check_expr("foo(**kw)")
self.check_expr("foo(key=value)")
self.check_expr("foo(key=value, *args)")
self.check_expr("foo(key=value, *args, **kw)")
self.check_expr("foo(key=value, **kw)")
self.check_expr("foo(a, b, c, *args)")
self.check_expr("foo(a, b, c, *args, **kw)")
self.check_expr("foo(a, b, c, **kw)")
self.check_expr("foo + bar")
self.check_expr("foo - bar")
self.check_expr("foo * bar")
self.check_expr("foo / bar")
self.check_expr("foo // bar")
self.check_expr("lambda: 0")
self.check_expr("lambda x: 0")
self.check_expr("lambda *y: 0")
self.check_expr("lambda *y, **z: 0")
self.check_expr("lambda **z: 0")
self.check_expr("lambda x, y: 0")
self.check_expr("lambda foo=bar: 0")
self.check_expr("lambda foo=bar, spaz=nifty+spit: 0")
self.check_expr("lambda foo=bar, **z: 0")
self.check_expr("lambda foo=bar, blaz=blat+2, **z: 0")
self.check_expr("lambda foo=bar, blaz=blat+2, *y, **z: 0")
self.check_expr("lambda x, *y, **z: 0")
self.check_expr("(x for x in range(10))")
self.check_expr("foo(x for x in range(10))")
def test_print(self):
self.check_suite("print")
self.check_suite("print 1")
self.check_suite("print 1,")
self.check_suite("print >>fp")
self.check_suite("print >>fp, 1")
self.check_suite("print >>fp, 1,")
def test_simple_expression(self):
# expr_stmt
self.check_suite("a")
def test_simple_assignments(self):
self.check_suite("a = b")
self.check_suite("a = b = c = d = e")
def test_simple_augmented_assignments(self):
self.check_suite("a += b")
self.check_suite("a -= b")
self.check_suite("a *= b")
self.check_suite("a /= b")
self.check_suite("a //= b")
self.check_suite("a %= b")
self.check_suite("a &= b")
self.check_suite("a |= b")
self.check_suite("a ^= b")
self.check_suite("a <<= b")
self.check_suite("a >>= b")
self.check_suite("a **= b")
def test_function_defs(self):
self.check_suite("def f(): pass")
self.check_suite("def f(*args): pass")
self.check_suite("def f(*args, **kw): pass")
self.check_suite("def f(**kw): pass")
self.check_suite("def f(foo=bar): pass")
self.check_suite("def f(foo=bar, *args): pass")
self.check_suite("def f(foo=bar, *args, **kw): pass")
self.check_suite("def f(foo=bar, **kw): pass")
self.check_suite("def f(a, b): pass")
self.check_suite("def f(a, b, *args): pass")
self.check_suite("def f(a, b, *args, **kw): pass")
self.check_suite("def f(a, b, **kw): pass")
self.check_suite("def f(a, b, foo=bar): pass")
self.check_suite("def f(a, b, foo=bar, *args): pass")
self.check_suite("def f(a, b, foo=bar, *args, **kw): pass")
self.check_suite("def f(a, b, foo=bar, **kw): pass")
self.check_suite("@staticmethod\n"
"def f(): pass")
self.check_suite("@staticmethod\n"
"@funcattrs(x, y)\n"
"def f(): pass")
self.check_suite("@funcattrs()\n"
"def f(): pass")
def test_class_defs(self):
self.check_suite("class foo():pass")
def test_import_from_statement(self):
self.check_suite("from sys.path import *")
self.check_suite("from sys.path import dirname")
self.check_suite("from sys.path import (dirname)")
self.check_suite("from sys.path import (dirname,)")
self.check_suite("from sys.path import dirname as my_dirname")
self.check_suite("from sys.path import (dirname as my_dirname)")
self.check_suite("from sys.path import (dirname as my_dirname,)")
self.check_suite("from sys.path import dirname, basename")
self.check_suite("from sys.path import (dirname, basename)")
self.check_suite("from sys.path import (dirname, basename,)")
self.check_suite(
"from sys.path import dirname as my_dirname, basename")
self.check_suite(
"from sys.path import (dirname as my_dirname, basename)")
self.check_suite(
"from sys.path import (dirname as my_dirname, basename,)")
self.check_suite(
"from sys.path import dirname, basename as my_basename")
self.check_suite(
"from sys.path import (dirname, basename as my_basename)")
self.check_suite(
"from sys.path import (dirname, basename as my_basename,)")
def test_basic_import_statement(self):
self.check_suite("import sys")
self.check_suite("import sys as system")
self.check_suite("import sys, math")
self.check_suite("import sys as system, math")
self.check_suite("import sys, math as my_math")
def test_pep263(self):
self.check_suite("# -*- coding: iso-8859-1 -*-\n"
"pass\n")
def test_assert(self):
self.check_suite("assert alo < ahi and blo < bhi\n")
#
# Second, we take *invalid* trees and make sure we get ParserError
# rejections for them.
#
class IllegalSyntaxTestCase(unittest.TestCase):
def check_bad_tree(self, tree, label):
try:
parser.sequence2st(tree)
except parser.ParserError:
pass
else:
self.fail("did not detect invalid tree for %r" % label)
def test_junk(self):
# not even remotely valid:
self.check_bad_tree((1, 2, 3), "<junk>")
def test_illegal_yield_1(self):
# Illegal yield statement: def f(): return 1; yield 1
tree = \
(257,
(264,
(285,
(259,
(1, 'def'),
(1, 'f'),
(260, (7, '('), (8, ')')),
(11, ':'),
(291,
(4, ''),
(5, ''),
(264,
(265,
(266,
(272,
(275,
(1, 'return'),
(313,
(292,
(293,
(294,
(295,
(297,
(298,
(299,
(300,
(301,
(302, (303, (304, (305, (2, '1')))))))))))))))))),
(264,
(265,
(266,
(272,
(276,
(1, 'yield'),
(313,
(292,
(293,
(294,
(295,
(297,
(298,
(299,
(300,
(301,
(302,
(303, (304, (305, (2, '1')))))))))))))))))),
(4, ''))),
(6, ''))))),
(4, ''),
(0, ''))))
self.check_bad_tree(tree, "def f():\n return 1\n yield 1")
def test_illegal_yield_2(self):
# Illegal return in generator: def f(): return 1; yield 1
tree = \
(257,
(264,
(265,
(266,
(278,
(1, 'from'),
(281, (1, '__future__')),
(1, 'import'),
(279, (1, 'generators')))),
(4, ''))),
(264,
(285,
(259,
(1, 'def'),
(1, 'f'),
(260, (7, '('), (8, ')')),
(11, ':'),
(291,
(4, ''),
(5, ''),
(264,
(265,
(266,
(272,
(275,
(1, 'return'),
(313,
(292,
(293,
(294,
(295,
(297,
(298,
(299,
(300,
(301,
(302, (303, (304, (305, (2, '1')))))))))))))))))),
(264,
(265,
(266,
(272,
(276,
(1, 'yield'),
(313,
(292,
(293,
(294,
(295,
(297,
(298,
(299,
(300,
(301,
(302,
(303, (304, (305, (2, '1')))))))))))))))))),
(4, ''))),
(6, ''))))),
(4, ''),
(0, ''))))
self.check_bad_tree(tree, "def f():\n return 1\n yield 1")
def test_print_chevron_comma(self):
# Illegal input: print >>fp,
tree = \
(257,
(264,
(265,
(266,
(268,
(1, 'print'),
(35, '>>'),
(290,
(291,
(292,
(293,
(295,
(296,
(297,
(298, (299, (300, (301, (302, (303, (1, 'fp')))))))))))))),
(12, ','))),
(4, ''))),
(0, ''))
self.check_bad_tree(tree, "print >>fp,")
def test_a_comma_comma_c(self):
# Illegal input: a,,c
tree = \
(258,
(311,
(290,
(291,
(292,
(293,
(295,
(296,
(297,
(298, (299, (300, (301, (302, (303, (1, 'a')))))))))))))),
(12, ','),
(12, ','),
(290,
(291,
(292,
(293,
(295,
(296,
(297,
(298, (299, (300, (301, (302, (303, (1, 'c'))))))))))))))),
(4, ''),
(0, ''))
self.check_bad_tree(tree, "a,,c")
def test_illegal_operator(self):
# Illegal input: a $= b
tree = \
(257,
(264,
(265,
(266,
(267,
(312,
(291,
(292,
(293,
(294,
(296,
(297,
(298,
(299,
(300, (301, (302, (303, (304, (1, 'a'))))))))))))))),
(268, (37, '$=')),
(312,
(291,
(292,
(293,
(294,
(296,
(297,
(298,
(299,
(300, (301, (302, (303, (304, (1, 'b'))))))))))))))))),
(4, ''))),
(0, ''))
self.check_bad_tree(tree, "a $= b")
def test_malformed_global(self):
#doesn't have global keyword in ast
tree = (257,
(264,
(265,
(266,
(282, (1, 'foo'))), (4, ''))),
(4, ''),
(0, ''))
self.check_bad_tree(tree, "malformed global ast")
class CompileTestCase(unittest.TestCase):
# These tests are very minimal. :-(
def test_compile_expr(self):
st = parser.expr('2 + 3')
code = parser.compilest(st)
self.assertEquals(eval(code), 5)
def test_compile_suite(self):
st = parser.suite('x = 2; y = x + 3')
code = parser.compilest(st)
globs = {}
exec code in globs
self.assertEquals(globs['y'], 5)
def test_compile_error(self):
st = parser.suite('1 = 3 + 4')
self.assertRaises(SyntaxError, parser.compilest, st)
def test_main():
test_support.run_unittest(
RoundtripLegalSyntaxTestCase,
IllegalSyntaxTestCase,
CompileTestCase,
)
if __name__ == "__main__":
test_main()
|
# ----------------------------------------------------------------------
# |
# | __init__.py
# |
# | David Brownell <db@DavidBrownell.com>
# | 2018-05-19 14:09:14
# |
# ----------------------------------------------------------------------
# |
# | Copyright David Brownell 2018.
# | Distributed under the Boost Software License, Version 1.0.
# | (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
# |
# ----------------------------------------------------------------------
"""Contains the InvocationQueryMixin object"""
import os
import sys
from CommonEnvironment.Interface import Interface, abstractmethod
# ----------------------------------------------------------------------
_script_fullpath = os.path.abspath(__file__) if "python" in sys.executable.lower() else sys.executable
_script_dir, _script_name = os.path.split(_script_fullpath)
# ----------------------------------------------------------------------
# ----------------------------------------------------------------------
# <Too few public methods> pylint: disable = R0903
class InvocationQueryMixin(Interface):
"""Object that implements strategies for determining if a compiler should be invoked based on input."""
( InvokeReason_Always,
InvokeReason_Force,
InvokeReason_PrevContextMissing,
InvokeReason_NewerGenerators,
InvokeReason_MissingOutput,
InvokeReason_DifferentOutput,
InvokeReason_NewerInput,
InvokeReason_DifferentInput,
InvokeReason_DifferentMetadata,
InvokeReason_OptIn,
) = range(10)
# ----------------------------------------------------------------------
# | Methods defined in CompilerImpl; these methods forward to Impl
# | functions to clearly indicate to CompilerImpl that they are handled,
# | while also creating methods that must be implemented by derived
# | mixins.
# ----------------------------------------------------------------------
@classmethod
def _GetInvokeReason(cls, *args, **kwargs):
return cls._GetInvokeReasonImpl(*args, **kwargs)
# ----------------------------------------------------------------------
@classmethod
def _PersistContext(cls, *args, **kwargs):
return cls._PersistContextImpl(*args, **kwargs)
# ----------------------------------------------------------------------
# ----------------------------------------------------------------------
# ----------------------------------------------------------------------
@staticmethod
@abstractmethod
def _GetInvokeReasonImpl(context, output_stream):
raise Exception("Abstract method")
# ----------------------------------------------------------------------
@staticmethod
@abstractmethod
def _PersistContextImpl(context):
raise Exception("Abstract method")
|
from vedis import Vedis
import config
# Пытаемся узнать из базы «состояние» пользователя
def get_current_state(user_id):
with Vedis(config.db_file) as db:
try:
return db[user_id].decode() # Если используете Vedis версии ниже, чем 0.7.1, то .decode() НЕ НУЖЕН
except KeyError: # Если такого ключа почему-то не оказалось
return config.States.S_START.value # значение по умолчанию - начало диалога
# Сохраняем текущее «состояние» пользователя в нашу базу
def set_state(user_id, value):
with Vedis(config.db_file) as db:
try:
db[user_id] = value
return True
except:
# тут желательно как-то обработать ситуацию
return False
# def save_data(user_id, key, value):
# with Vedis(config.db_file) as db:
# try:
# db[user_id][key] = value
# return True
# except:
# return print('Жепа')
#
# def get_state(user_id, key):
# with Vedis(config.db_file) as db:
# try:
# return db[user_id].decode()
# except:
# return False
#
#
# # Пока что не работает, нужно довести до ума
def clear_db(user_id):
with Vedis(config.db_file) as db:
try:
db.delete(user_id)
except KeyError:
print('Текущее состояние пустое')
|
import time
import sys
import os
def load_animation():
load_str = "starting your console application..."
ls_len = len(load_str)
animation = "|/-\\"
anicount = 0
counttime = 0
i = 0
while (counttime != 100):
time.sleep(0.075)
load_str_list = list(load_str)
x = ord(load_str_list[i])
y = 0
if x != 32 and x != 46:
if x>90:
y = x-32
else:
y = x + 32
load_str_list[i]= chr(y)
res =''
for j in range(ls_len):
res = res + load_str_list[j]
sys.stdout.write("\r"+res + animation[anicount])
sys.stdout.flush()
load_str = res
anicount = (anicount + 1)% 4
i =(i + 1)% ls_len
counttime = counttime + 1
if os.name =="nt":
os.system("cls")
else:
os.system("clear")
if __name__ == '__main__':
load_animation()
s ="David"
sys.stdout.write("Hello "+str(s)+"\n")
|
import torch
from koila import PrePassFunc, prepasses
from . import common
def test_compatibility() -> None:
assert isinstance(prepasses.identity, PrePassFunc)
assert isinstance(prepasses.symmetric, PrePassFunc)
assert isinstance(prepasses.reduce_dims, PrePassFunc)
assert isinstance(prepasses.permute, PrePassFunc)
assert isinstance(prepasses.tranpose, PrePassFunc)
assert isinstance(prepasses.view, PrePassFunc)
assert isinstance(prepasses.reshape, PrePassFunc)
assert isinstance(prepasses.flatten, PrePassFunc)
assert isinstance(prepasses.matmul, PrePassFunc)
assert isinstance(prepasses.linear, PrePassFunc)
assert isinstance(prepasses.cat, PrePassFunc)
assert isinstance(prepasses.pad, PrePassFunc)
assert isinstance(prepasses.conv, PrePassFunc)
assert isinstance(prepasses.conv_transpose, PrePassFunc)
assert isinstance(prepasses.pool, PrePassFunc)
assert isinstance(prepasses.maxpool, PrePassFunc)
assert isinstance(prepasses.avgpool, PrePassFunc)
def test_identity() -> None:
common.call(
common.assert_equal,
[
[prepasses.identity(torch.randn(1, 2, 3, 4, 5)), (1, 2, 3, 4, 5)],
[prepasses.identity(torch.randn(4, 2, 5)), (4, 2, 5)],
[prepasses.identity(torch.randn(17, 1, 4)), (17, 1, 4)],
],
)
def test_symmetric() -> None:
common.call(
common.assert_equal,
[
[prepasses.symmetric(torch.randn(2, 4, 5), torch.randn(())), (2, 4, 5)],
[
prepasses.symmetric(torch.randn(2, 4, 5), torch.randn(2, 4, 5)),
(2, 4, 5),
],
[
prepasses.symmetric(torch.randn(2, 1, 5), torch.randn(2, 4, 5)),
(2, 4, 5),
],
[
prepasses.symmetric(torch.randn(2, 1, 5), torch.randn(2, 4, 1)),
(2, 4, 5),
],
],
)
def test_reduce_dims() -> None:
common.call(
common.assert_equal,
[
[prepasses.reduce_dims(torch.randn(1, 2, 3, 4, 5), 1), (1, 3, 4, 5)],
[prepasses.reduce_dims(torch.randn(1, 2, 3, 4, 5), (2, 3)), (1, 2, 5)],
[
prepasses.reduce_dims(torch.randn(5, 2, 3, 4), (2, 3), keepdim=True),
(5, 2, 1, 1),
],
],
)
def test_scalar() -> None:
common.call(
common.assert_equal,
[
[prepasses.reduce_dims(torch.randn(5, 5, 2)), ()],
[prepasses.reduce_dims(torch.randn(7, 8)), ()],
],
)
def test_matmul() -> None:
common.call(
common.assert_equal,
[
[prepasses.matmul(torch.randn(8), torch.randn(8)), ()],
[prepasses.matmul(torch.randn(8, 3), torch.randn(3)), (8,)],
[prepasses.matmul(torch.randn(8), torch.randn(8, 3)), (3,)],
[prepasses.matmul(torch.randn(4, 5), torch.randn(5, 3)), (4, 3)],
[prepasses.matmul(torch.randn(9, 4, 5), torch.randn(9, 5, 3)), (9, 4, 3)],
[prepasses.matmul(torch.randn(9, 4, 5), torch.randn(1, 5, 3)), (9, 4, 3)],
[
prepasses.matmul(torch.randn(9, 7, 4, 5), torch.randn(1, 5, 3)),
(9, 7, 4, 3),
],
],
)
def test_transpose() -> None:
common.call(
common.assert_equal,
[[prepasses.tranpose(torch.randn(3, 4, 5), 1, 2), (3, 5, 4)]],
)
def test_linear() -> None:
common.call(
common.assert_equal,
[
[
prepasses.linear(
torch.randn(7, 11, 13),
weight=torch.randn(17, 13),
bias=torch.randn(17),
),
(7, 11, 17),
]
],
)
def test_cat() -> None:
common.call(
common.assert_equal,
[
[prepasses.cat([torch.randn(2, 3, 5), torch.randn(3, 3, 5)]), (5, 3, 5)],
[
prepasses.cat([torch.randn(2, 3, 5), torch.randn(2, 4, 5)], dim=1),
(2, 7, 5),
],
],
)
def test_loss() -> None:
common.call(
common.assert_equal,
[
[prepasses.loss(torch.randn(2, 4, 5), torch.randn((2, 4, 5))), ()],
[
prepasses.loss(
torch.randn(2, 4, 5), torch.randn((2, 4, 5)), reduction="sum"
),
(),
],
[
prepasses.loss(
torch.randn(2, 4, 5), torch.randn((2, 4, 5)), reduction="none"
),
(2, 4, 5),
],
],
)
|
import os, sys, new
# WARNING: this is all nicely RPython, but there is no RPython code around
# to *compile* regular expressions, so outside of PyPy this is only useful
# for RPython applications that just need precompiled regexps.
#
# XXX However it's not even clear how to get such prebuilt regexps...
import rsre_core
rsre_core_filename = rsre_core.__file__
if rsre_core_filename[-1] in 'oc':
rsre_core_filename = rsre_core_filename[:-1]
rsre_core_filename = os.path.abspath(rsre_core_filename)
del rsre_core
def insert_sre_methods(locals, name):
"""A hack that inserts the SRE entry point methods into the 'locals'
scope, which should be the __dict__ of a State class. The State
class defines methods to look at the input string or unicode string.
It should provide the following API for sre_core:
get_char_ord(p) - return the ord of the char at position 'p'
lower(charcode) - return the ord of the lowcase version of 'charcode'
start - start position for searching and matching
end - end position for searching and matching
"""
filename = rsre_core_filename
rsre_core = new.module('pypy.rlib.rsre.rsre_core_' + name)
rsre_core.__file__ = filename
execfile(filename, rsre_core.__dict__)
for key, value in rsre_core.StateMixin.__dict__.items():
if not key.startswith('__'):
locals[key] = value
locals['rsre_core'] = rsre_core # for tests
def set_unicode_db(unicodedb):
"""Another hack to set the unicodedb used by rsre_char. I guess there
is little point in allowing several different unicodedb's in the same
RPython program... See comments in rsre_char.
"""
from pypy.rlib.rsre import rsre_char
rsre_char.unicodedb = unicodedb
class SimpleStringState(object):
"""Prebuilt state for matching strings, for testing and for
stand-alone RPython applictions that don't worry about unicode.
"""
insert_sre_methods(locals(), 'simple')
def __init__(self, string, start=0, end=-1):
self.string = string
if end < 0:
end = len(string)
self.start = start
self.end = end
self.reset()
def get_char_ord(self, p):
return ord(self.string[p])
|
#!/usr/bin/python
# -*- coding: utf-8 -*-
import hashlib
import sqlalchemy as sa
from holmes.models import Base
from holmes.models.domain import Domain
class Limiter(Base):
__tablename__ = "limiters"
id = sa.Column(sa.Integer, primary_key=True)
url = sa.Column('url', sa.String(2000), nullable=False)
url_hash = sa.Column('url_hash', sa.String(128), nullable=False)
value = sa.Column('value', sa.Integer, server_default='1', nullable=False)
def to_dict(self):
return {
'url': self.url,
'value': self.value
}
def __str__(self):
return str(self.url)
def __repr__(self):
return str(self)
@classmethod
def get_all(cls, db, domain_filter=None):
query = db.query(Limiter)
if domain_filter:
domain = Domain.get_domain_by_name(domain_filter, db)
if domain:
query = query.filter(Limiter.url.startswith(domain.url))
return query \
.order_by(sa.func.char_length(Limiter.url)) \
.all()
@classmethod
def by_url(cls, url, db):
return db.query(Limiter).filter(Limiter.url == url).first()
@classmethod
def by_url_hash(cls, url_hash, db):
return db.query(Limiter).filter(Limiter.url_hash == url_hash).first()
@classmethod
def by_id(cls, id_, db):
return db.query(Limiter).filter(Limiter.id == id_).first()
@classmethod
def delete(cls, id_, db):
return db.query(Limiter).filter(Limiter.id == id_).delete()
def matches(self, url):
return url.startswith(self.url)
@classmethod
def add_or_update_limiter(cls, db, url, value):
if not url:
return
url = url.encode('utf-8')
url_hash = hashlib.sha512(url).hexdigest()
limiter = Limiter.by_url_hash(url_hash, db)
if limiter:
db \
.query(Limiter) \
.filter(Limiter.id == limiter.id) \
.update({'value': value})
db.flush()
db.commit()
return limiter.url
limiter = Limiter(url=url, url_hash=url_hash, value=value)
db.add(limiter)
return limiter.url
@classmethod
def get_limiters_for_domains(cls, db, active_domains):
from holmes.models import Limiter # Avoid circular dependency
all_limiters = Limiter.get_all(db)
limiters = []
for limiter in all_limiters:
for domain in active_domains:
if limiter.matches(domain.url):
limiters.append(limiter)
return limiters
|
#!/usr/bin/env python
# coding: utf-8
import numpy as np
import pint.toa as toa
import pint.models as models
import pint.fitter as fit
import pint.residuals as r
import astropy.units as u
import enterprise
from enterprise.pulsar import Pulsar
import enterprise.signals.parameter as parameter
from enterprise.signals import utils
from enterprise.signals import signal_base
from enterprise.signals import selections
from enterprise.signals.selections import Selection
from enterprise.signals import white_signals
from enterprise.signals import gp_signals
from enterprise.signals import deterministic_signals
from enterprise import constants as const
import corner, pickle, sys, json
from PTMCMCSampler.PTMCMCSampler import PTSampler as ptmcmc
from enterprise_extensions import models, model_utils
from enterprise_extensions.electromagnetic import solar_wind as SW
from astropy import log
import glob
log.setLevel('CRITICAL')
import pta_sim
import pta_sim.bayes
import pta_sim.parse_sim as parse_sim
args = parse_sim.arguments()
if args.pickle=='no_pickle':
if args.use_pint:
parfile = args.pardir + args.psr + '*.gls.par'
timfile = args.timdir + args.psr + '*.tim'
t=toa.get_TOAs(timfile)
m=models.get_model(parfile)
f=fit.GLSFitter(t,m)
f.fit_toas(maxiter=2)
psr = Pulsar(t, f.model, ephem='DE436')
else:
if args.psr == 'J1713+0747':
parfile = glob.glob(args.pardir + args.psr + '*.gls.t2.par')[0]
else:
parfile = glob.glob(args.pardir + args.psr + '*.gls.par')[0]
timfile = glob.glob(args.timdir + args.psr + '*.tim')[0]
psr = Pulsar(parfile, timfile, ephem='DE436')
else:
with open(args.pickle, 'rb') as fin:
psrs = pickle.load(fin)
psr = [p for p in psrs if p.name==args.psr][0]
if args.end_time is None:
Outdir = args.outdir+'all/{0}/'.format(psr.name)
else:
start_time = psr.toas.min()/(24*3600)
if (args.end_time-start_time)/365.25 <= 3.0:
print('PSR {0} baseline too short for this slice.'.format(p.name))
sys.end()
psr.filter_data(start_time=start_time, end_time=args.end_time)
Outdir = args.outdir+'{0}/{1}/'.format(args.nyears,psr.name)
m = models.white_noise_block(vary=True, inc_ecorr=True)
m += gp_signals.TimingModel(use_svd=False)
m += models.red_noise_block(psd=args.psd, prior='log-uniform',
components=args.nfreqs, gamma_val=None)
dm_gp1 = models.dm_noise_block(gp_kernel='diag', psd='powerlaw',
prior='log-uniform', Tspan=None,
components=30, gamma_val=None,
coefficients=False)
dm_gp2 = models.dm_noise_block(gp_kernel='diag', psd='powerlaw',
prior='log-uniform', Tspan=None,
components=10, gamma_val=None,
coefficients=False)
n_earth = SW.ACE_SWEPAM_Parameter()('n_earth')
sw = SW.solar_wind(n_earth=n_earth)
mean_sw = deterministic_signals.Deterministic(sw, name='mean_sw')
log10_sigma = parameter.Uniform(-10, -4)
log10_ell = parameter.Uniform(1, 4)
dm_se_basis = models.linear_interp_basis_dm(dt=15*86400)
dm_se_prior = models.se_dm_kernel(log10_sigma=log10_sigma,log10_ell=log10_ell)
se = gp_signals.BasisGP(dm_se_prior, dm_se_basis, name='dm_gp')
log10_A_sw = parameter.Uniform(-10,1)('log10_A_sw')
gamma_sw = parameter.Uniform(-2,1)('gamma_sw')
dm_sw_basis = SW.createfourierdesignmatrix_solar_dm(nmodes=15,Tspan=None)
dm_sw_prior = utils.powerlaw(log10_A=log10_A_sw, gamma=gamma_sw)
gp_sw = gp_signals.BasisGP(priorFunction=dm_sw_prior,
basisFunction=dm_sw_basis,
name='gp_sw')
sw_models = []
sw_models.append(m + dm_gp1) #Model 0, Just DMGP
sw_models.append(m + mean_sw) #Model 1, Just Deterministic SW
sw_models.append(m + dm_gp2 + mean_sw) #Model 2, DMGP + Deter SW
sw_models.append(m + mean_sw + gp_sw) #Model 3, Deter SW + SW GP
sw_models.append(m + SW.solar_wind_block(ACE_prior=True, include_dmgp=False)
+ dm_gp2) #Model 4, All the things
sw_models.append(m + se + mean_sw ) #Model 5, Deter SW + Square-Exponential GP
ptas = {}
model_params = {}
for ii,mod in enumerate(sw_models):
ptas.update({ii : signal_base.PTA(mod(psr))})
model_params.update({ii : ptas[ii].param_names})
if args.model.isdigit():
nn = int(args.model)
ptas = {0:ptas[nn]}
model_params = {0:model_params[nn]}
super_model = model_utils.HyperModel(ptas)
Outdir = args.outdir+'/{0}/'.format(psr.name)
sampler = super_model.setup_sampler(resume=True, outdir=Outdir)
with open(Outdir+'/model_params.json' , 'w') as fout:
json.dump(model_params,fout,sort_keys=True,indent=4,separators=(',', ': '))
x0 = super_model.initial_sample()
sampler.sample(x0, args.niter, SCAMweight=30, AMweight=15, DEweight=50, )
|
class MassGBXMLExportOptions(object,IDisposable):
"""
Options used when exporting a gbXML file from a mass model document.
MassGBXMLExportOptions(massZoneIds: IList[ElementId])
MassGBXMLExportOptions(massZoneIds: IList[ElementId],massIds: IList[ElementId])
"""
def Dispose(self):
""" Dispose(self: MassGBXMLExportOptions) """
pass
def GetMassIds(self):
"""
GetMassIds(self: MassGBXMLExportOptions) -> IList[ElementId]
Gets a list of masses to use as shading surfaces in the exported gbXML--these
masses must not have mass floors or mass zones so as not to end up with
duplicate surface information in the gbXML output.
Returns: The ids of the masses.
"""
pass
def GetMassZoneIds(self):
"""
GetMassZoneIds(self: MassGBXMLExportOptions) -> IList[ElementId]
Gets a list of mass zones to analyze in the exported gbXML.
Returns: The ids of the mass zone.
"""
pass
def ReleaseUnmanagedResources(self,*args):
""" ReleaseUnmanagedResources(self: MassGBXMLExportOptions,disposing: bool) """
pass
def __enter__(self,*args):
""" __enter__(self: IDisposable) -> object """
pass
def __exit__(self,*args):
""" __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """
pass
def __init__(self,*args):
""" x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """
pass
@staticmethod
def __new__(self,massZoneIds,massIds=None):
"""
__new__(cls: type,massZoneIds: IList[ElementId])
__new__(cls: type,massZoneIds: IList[ElementId],massIds: IList[ElementId])
"""
pass
def __repr__(self,*args):
""" __repr__(self: object) -> str """
pass
IsValidObject=property(lambda self: object(),lambda self,v: None,lambda self: None)
"""Specifies whether the .NET object represents a valid Revit entity.
Get: IsValidObject(self: MassGBXMLExportOptions) -> bool
"""
|
# -*- coding: utf-8 -*-
"""
@inproceedings{DBLP:conf/cvpr/SunLCS19,
author = {Qianru Sun and
Yaoyao Liu and
Tat{-}Seng Chua and
Bernt Schiele},
title = {Meta-Transfer Learning for Few-Shot Learning},
booktitle = {{IEEE} Conference on Computer Vision and Pattern Recognition, {CVPR}
2019, Long Beach, CA, USA, June 16-20, 2019},
pages = {403--412},
year = {2019},
url = {http://openaccess.thecvf.com/content_CVPR_2019/html/Sun_Meta-Transfer_Learning_for_Few
-Shot_Learning_CVPR_2019_paper.html},
doi = {10.1109/CVPR.2019.00049}
}
https://arxiv.org/abs/1812.02391
Adapted from https://github.com/yaoyao-liu/meta-transfer-learning.
"""
import torch
from torch import nn
from core.utils import accuracy
from .finetuning_model import FinetuningModel
import torch.nn.functional as F
# FIXME: Add multi-GPU support
class MTLBaseLearner(nn.Module):
"""The class for inner loop."""
def __init__(self, way_num, z_dim):
super().__init__()
self.way_num = way_num
self.z_dim = z_dim
self.var = nn.ParameterList()
self.fc1_w = nn.Parameter(torch.ones([self.way_num, self.z_dim]))
torch.nn.init.kaiming_normal_(self.fc1_w)
self.var.append(self.fc1_w)
self.fc1_b = nn.Parameter(torch.zeros(self.way_num))
self.var.append(self.fc1_b)
def forward(self, input_x, the_var=None):
if the_var is None:
the_var = self.var
fc1_w = the_var[0]
fc1_b = the_var[1]
net = F.linear(input_x, fc1_w, fc1_b)
return net
def parameters(self):
return self.var
class MTLPretrain(FinetuningModel): # use image-size=80 in repo
def __init__(self, feat_dim, num_class, inner_train_iter, **kwargs):
super(MTLPretrain, self).__init__(**kwargs)
self.feat_dim = feat_dim
self.num_class = num_class
self.pre_fc = nn.Sequential(
nn.Linear(self.feat_dim, 1000),
nn.ReLU(),
nn.Linear(1000, self.num_class),
)
self.base_learner = MTLBaseLearner(self.way_num, z_dim=self.feat_dim)
self.inner_train_iter = inner_train_iter
self.loss_func = nn.CrossEntropyLoss()
def set_forward(self, batch):
"""
meta-validation
:param batch:
:return:
"""
image, _ = batch
image = image.to(self.device)
with torch.no_grad():
feat = self.emb_func(image)
support_feat, query_feat, support_target, query_target = self.split_by_episode(feat, mode=4)
classifier, fast_weight = self.set_forward_adaptation(support_feat, support_target)
output = classifier(query_feat, fast_weight)
acc = accuracy(output, query_target)
return output, acc
def set_forward_loss(self, batch):
"""
finetuning
:param batch:
:return:
"""
image, global_target = batch
image = image.to(self.device)
global_target = global_target.to(self.device).contiguous()
feat = self.emb_func(image)
output = self.pre_fc(feat).contiguous()
loss = self.loss_func(output, global_target)
acc = accuracy(output, global_target)
return output, acc, loss
def set_forward_adaptation(self, support_feat, support_target):
classifier = self.base_learner.to(self.device)
logit = self.base_learner(support_feat)
loss = self.loss_func(logit, support_target)
grad = torch.autograd.grad(loss, self.base_learner.parameters())
fast_parameters = list(
map(
lambda p: p[1] - 0.01 * p[0],
zip(grad, self.base_learner.parameters()),
)
)
for _ in range(1, self.inner_train_iter):
logit = self.base_learner(support_feat, fast_parameters)
loss = F.cross_entropy(logit, support_target)
grad = torch.autograd.grad(loss, fast_parameters)
fast_parameters = list(map(lambda p: p[1] - 0.01 * p[0], zip(grad, fast_parameters)))
return classifier, fast_parameters
|
class Contact:
def __init__(self, firstname, middlename, nickname):
self.firstname = firstname
self.middlename = middlename
self.nickname = nickname
|
# -*- coding: utf-8 -*-
# Resource object code
#
# Created by: The Resource Compiler for PyQt5 (Qt v5.15.2)
#
# WARNING! All changes made in this file will be lost!
from PyQt5 import QtCore
qt_resource_data = b"\
\x00\x00\x02\x6a\
\x00\
\x00\x10\xbe\x78\x9c\xc5\x98\xcf\x4f\xd3\x60\x18\xc7\xdf\x02\x0a\
\x2c\xb2\x76\x07\x4d\xf4\x54\xe9\x4c\xb6\x19\x13\x1d\x17\xf1\xe0\
\x0a\x43\x51\x63\x50\x12\x39\x39\x75\x1a\xf5\xc0\x81\x44\xf1\x47\
\xfc\x01\xc8\x0e\x1c\x91\xc4\x0c\xbc\x18\x0f\x7a\xf0\x1f\xd0\xc4\
\x83\xbf\x0e\x9e\x4c\x30\x32\xa2\x90\x68\xe2\x49\x69\x1b\x31\xcb\
\xa6\x32\x90\x7d\x7d\x5b\x98\x5b\x46\x4c\xf6\xb6\x6f\xdd\xbb\x3c\
\xcb\xd2\xb4\xfb\x7c\xde\xa7\xdf\x3e\x59\x46\x88\x40\x5f\xb2\x4c\
\xcc\x77\xf2\x48\x22\x64\x13\x21\x24\x40\x8b\x1e\x22\x2a\x59\x39\
\x6e\x2d\x89\xac\x59\x6d\x3e\x3f\x2a\xaf\x6d\x88\x35\x26\x30\x28\
\xfc\xc2\x2d\x02\x2e\xc5\xc6\x57\x10\x95\x42\x88\x37\x8e\x51\x87\
\x85\x2a\xf0\x57\x1c\xda\x7d\x41\xea\x70\x9b\x8b\x03\x3b\xbf\xe0\
\x10\xe0\xe2\x60\x8f\x5f\xee\x60\x3f\x0f\xf6\xf9\x7c\xfa\xe0\x8c\
\x5f\x9a\x07\x7b\x99\x74\xce\x77\x96\x49\x3e\x7c\xfb\xf7\x82\x1f\
\xbf\xd8\x87\xf3\xf5\x0f\xaa\xc4\xf7\x43\xf5\x6d\xc5\x61\xef\x21\
\x5c\xaf\x31\x5c\xe3\x47\xbc\xcd\x56\xfd\xab\x07\x1d\xd2\x4e\xf4\
\xd7\xbd\xc3\x30\x67\xbe\x2a\x29\x38\xb8\x65\x07\xc6\x7a\xaf\xe0\
\x6a\x57\x0c\x1d\x1b\x03\x88\x88\xe5\x1e\x0a\xf6\x49\x2d\xb8\x54\
\xfb\x9e\x3b\xdf\x64\x9d\xd8\xd5\x86\x6f\xd3\x33\xf8\xf1\xe9\x33\
\x9e\x24\xef\xe1\xec\xee\x03\x96\x97\x2a\x2a\xab\xfd\x97\xd1\xdd\
\x74\x1c\x03\x42\x86\x7b\xff\x4d\xfe\xa9\x96\x28\xe6\xa7\x3f\x00\
\x9a\x01\xe8\x06\xf4\xb7\x29\xdc\xbf\x31\x82\x9e\x40\x2b\x22\x92\
\x8c\x4e\xb1\x15\x7d\xeb\x5e\x55\xb4\x77\x56\xfe\x5e\x51\x46\x3c\
\xbc\x1f\xf3\xa9\x19\x60\x4e\x07\xbe\x6a\xd4\x43\x47\x9e\x7e\x9e\
\x7d\xf6\x12\x17\xc3\x03\xe8\xab\x79\x4d\xbf\x37\xef\x4a\xfe\xbb\
\x3d\x27\x91\x08\x3e\x47\x66\x6a\x8e\xf2\xb5\x55\xbe\x46\xf9\x1a\
\xbe\x3c\xfd\x8e\xf1\xe0\x22\x86\x5c\x98\x7f\xaa\xaf\x19\xc7\x36\
\x9c\xc3\x35\x62\x20\xe9\x5f\x46\x76\xca\xb0\xb8\xd0\x35\xa4\x27\
\x0d\xbc\xe8\xcf\x62\x74\xf3\xb2\x4b\xf3\xdf\xcc\x73\x18\x17\xea\
\xde\x58\xe7\xdf\x51\x7e\x23\x93\x32\x90\xfb\xa8\x63\x72\x34\x8d\
\x89\xd0\x12\x86\x04\x30\xef\xbb\x52\xbe\x39\x4f\xba\xbc\x47\x71\
\x53\x48\x5b\xe7\x8f\x78\xf2\x78\x1c\xff\x89\x87\xed\x39\x24\xd6\
\xdb\xe7\xb2\xf0\x8f\x34\xf5\xd0\xe7\x29\xfb\xf7\x1a\x93\x39\xe8\
\x90\xcb\xd2\xff\x4e\x71\x0f\x2e\xd7\xce\x56\xfc\x4c\xf1\xce\x9f\
\xe9\x10\xf3\x0c\xd3\x7d\xe7\xaa\xc6\x8f\x4a\xdb\x71\xa6\xe1\x2e\
\x75\x58\xac\x02\xdf\x3d\x07\x96\xf9\x53\x74\x18\xe7\x76\x2f\xd8\
\xf8\xa5\x0e\x13\x5c\xfa\xc0\xce\x2f\x77\x70\xd6\x07\x7b\xfc\x82\
\x43\xc8\xb1\x83\x7d\x7e\xa9\x83\xfd\x3c\x38\xe3\x17\x1d\x4e\x37\
\x24\xe9\x4c\x64\x77\x70\xce\x2f\xe6\x81\xe5\x77\x6f\xa1\xd6\xfe\
\x23\xf0\x7f\xd7\x1f\x3a\x18\x1c\x13\
\x00\x00\x00\xfb\
\x3c\
\x73\x76\x67\x20\x78\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\
\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\
\x30\x2f\x73\x76\x67\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x34\
\x38\x70\x78\x22\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\
\x30\x20\x32\x34\x20\x32\x34\x22\x20\x77\x69\x64\x74\x68\x3d\x22\
\x34\x38\x70\x78\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x63\x30\x38\
\x38\x66\x66\x22\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\
\x20\x64\x3d\x22\x4d\x30\x20\x30\x68\x32\x34\x76\x32\x34\x48\x30\
\x56\x30\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\
\x2f\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\
\x22\x4d\x37\x20\x31\x34\x48\x35\x76\x35\x68\x35\x76\x2d\x32\x48\
\x37\x76\x2d\x33\x7a\x6d\x2d\x32\x2d\x34\x68\x32\x56\x37\x68\x33\
\x56\x35\x48\x35\x76\x35\x7a\x6d\x31\x32\x20\x37\x68\x2d\x33\x76\
\x32\x68\x35\x76\x2d\x35\x68\x2d\x32\x76\x33\x7a\x4d\x31\x34\x20\
\x35\x76\x32\x68\x33\x76\x33\x68\x32\x56\x35\x68\x2d\x35\x7a\x22\
\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\
\x00\x00\x00\xec\
\x3c\
\x73\x76\x67\x20\x78\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\
\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\
\x30\x2f\x73\x76\x67\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x34\
\x38\x70\x78\x22\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\
\x30\x20\x32\x34\x20\x32\x34\x22\x20\x77\x69\x64\x74\x68\x3d\x22\
\x34\x38\x70\x78\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x63\x30\x38\
\x38\x66\x66\x22\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\
\x20\x64\x3d\x22\x4d\x30\x20\x30\x68\x32\x34\x76\x32\x34\x48\x30\
\x56\x30\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\
\x2f\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\
\x22\x4d\x36\x20\x31\x38\x6c\x38\x2e\x35\x2d\x36\x4c\x36\x20\x36\
\x76\x31\x32\x7a\x6d\x32\x2d\x38\x2e\x31\x34\x4c\x31\x31\x2e\x30\
\x33\x20\x31\x32\x20\x38\x20\x31\x34\x2e\x31\x34\x56\x39\x2e\x38\
\x36\x7a\x4d\x31\x36\x20\x36\x68\x32\x76\x31\x32\x68\x2d\x32\x7a\
\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\
\x00\x00\x05\xe6\
\x3c\
\x73\x76\x67\x20\x78\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\
\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\
\x30\x2f\x73\x76\x67\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x34\
\x38\x70\x78\x22\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\
\x30\x20\x32\x34\x20\x32\x34\x22\x20\x77\x69\x64\x74\x68\x3d\x22\
\x34\x38\x70\x78\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x63\x30\x38\
\x38\x66\x66\x22\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\
\x20\x64\x3d\x22\x4d\x30\x20\x30\x68\x32\x34\x76\x32\x34\x48\x30\
\x56\x30\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\
\x2f\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\
\x22\x4d\x31\x38\x20\x31\x33\x63\x30\x20\x33\x2e\x33\x31\x2d\x32\
\x2e\x36\x39\x20\x36\x2d\x36\x20\x36\x73\x2d\x36\x2d\x32\x2e\x36\
\x39\x2d\x36\x2d\x36\x20\x32\x2e\x36\x39\x2d\x36\x20\x36\x2d\x36\
\x76\x34\x6c\x35\x2d\x35\x2d\x35\x2d\x35\x76\x34\x63\x2d\x34\x2e\
\x34\x32\x20\x30\x2d\x38\x20\x33\x2e\x35\x38\x2d\x38\x20\x38\x73\
\x33\x2e\x35\x38\x20\x38\x20\x38\x20\x38\x20\x38\x2d\x33\x2e\x35\
\x38\x20\x38\x2d\x38\x68\x2d\x32\x7a\x6d\x2d\x37\x2e\x34\x36\x20\
\x32\x2e\x32\x32\x63\x2d\x2e\x30\x36\x2e\x30\x35\x2d\x2e\x31\x32\
\x2e\x30\x39\x2d\x2e\x32\x2e\x31\x32\x73\x2d\x2e\x31\x37\x2e\x30\
\x34\x2d\x2e\x32\x37\x2e\x30\x34\x63\x2d\x2e\x30\x39\x20\x30\x2d\
\x2e\x31\x37\x2d\x2e\x30\x31\x2d\x2e\x32\x35\x2d\x2e\x30\x34\x73\
\x2d\x2e\x31\x34\x2d\x2e\x30\x36\x2d\x2e\x32\x2d\x2e\x31\x31\x2d\
\x2e\x31\x2d\x2e\x31\x2d\x2e\x31\x33\x2d\x2e\x31\x37\x2d\x2e\x30\
\x35\x2d\x2e\x31\x34\x2d\x2e\x30\x35\x2d\x2e\x32\x32\x68\x2d\x2e\
\x38\x35\x63\x30\x20\x2e\x32\x31\x2e\x30\x34\x2e\x33\x39\x2e\x31\
\x32\x2e\x35\x35\x73\x2e\x31\x39\x2e\x32\x38\x2e\x33\x33\x2e\x33\
\x38\x2e\x32\x39\x2e\x31\x38\x2e\x34\x36\x2e\x32\x33\x2e\x33\x35\
\x2e\x30\x37\x2e\x35\x33\x2e\x30\x37\x63\x2e\x32\x31\x20\x30\x20\
\x2e\x34\x31\x2d\x2e\x30\x33\x2e\x36\x2d\x2e\x30\x38\x73\x2e\x33\
\x34\x2d\x2e\x31\x34\x2e\x34\x38\x2d\x2e\x32\x34\x2e\x32\x34\x2d\
\x2e\x32\x34\x2e\x33\x32\x2d\x2e\x33\x39\x2e\x31\x32\x2d\x2e\x33\
\x33\x2e\x31\x32\x2d\x2e\x35\x33\x63\x30\x2d\x2e\x32\x33\x2d\x2e\
\x30\x36\x2d\x2e\x34\x34\x2d\x2e\x31\x38\x2d\x2e\x36\x31\x73\x2d\
\x2e\x33\x2d\x2e\x33\x2d\x2e\x35\x34\x2d\x2e\x33\x39\x63\x2e\x31\
\x2d\x2e\x30\x35\x2e\x32\x2d\x2e\x31\x2e\x32\x38\x2d\x2e\x31\x37\
\x73\x2e\x31\x35\x2d\x2e\x31\x34\x2e\x32\x2d\x2e\x32\x32\x2e\x31\
\x2d\x2e\x31\x36\x2e\x31\x33\x2d\x2e\x32\x35\x2e\x30\x34\x2d\x2e\
\x31\x38\x2e\x30\x34\x2d\x2e\x32\x37\x63\x30\x2d\x2e\x32\x2d\x2e\
\x30\x34\x2d\x2e\x33\x37\x2d\x2e\x31\x31\x2d\x2e\x35\x33\x73\x2d\
\x2e\x31\x37\x2d\x2e\x32\x38\x2d\x2e\x33\x2d\x2e\x33\x38\x2d\x2e\
\x32\x38\x2d\x2e\x31\x38\x2d\x2e\x34\x36\x2d\x2e\x32\x33\x2d\x2e\
\x33\x37\x2d\x2e\x30\x38\x2d\x2e\x35\x39\x2d\x2e\x30\x38\x63\x2d\
\x2e\x31\x39\x20\x30\x2d\x2e\x33\x38\x2e\x30\x33\x2d\x2e\x35\x34\
\x2e\x30\x38\x73\x2d\x2e\x33\x32\x2e\x31\x33\x2d\x2e\x34\x34\x2e\
\x32\x33\x2d\x2e\x32\x33\x2e\x32\x32\x2d\x2e\x33\x2e\x33\x37\x2d\
\x2e\x31\x31\x2e\x33\x2d\x2e\x31\x31\x2e\x34\x38\x68\x2e\x38\x35\
\x63\x30\x2d\x2e\x30\x37\x2e\x30\x32\x2d\x2e\x31\x34\x2e\x30\x35\
\x2d\x2e\x32\x73\x2e\x30\x37\x2d\x2e\x31\x31\x2e\x31\x32\x2d\x2e\
\x31\x35\x2e\x31\x31\x2d\x2e\x30\x37\x2e\x31\x38\x2d\x2e\x31\x2e\
\x31\x34\x2d\x2e\x30\x33\x2e\x32\x32\x2d\x2e\x30\x33\x63\x2e\x31\
\x20\x30\x20\x2e\x31\x38\x2e\x30\x31\x2e\x32\x35\x2e\x30\x34\x73\
\x2e\x31\x33\x2e\x30\x36\x2e\x31\x38\x2e\x31\x31\x2e\x30\x38\x2e\
\x31\x31\x2e\x31\x31\x2e\x31\x37\x2e\x30\x34\x2e\x31\x34\x2e\x30\
\x34\x2e\x32\x32\x63\x30\x20\x2e\x31\x38\x2d\x2e\x30\x35\x2e\x33\
\x32\x2d\x2e\x31\x36\x2e\x34\x33\x73\x2d\x2e\x32\x36\x2e\x31\x36\
\x2d\x2e\x34\x38\x2e\x31\x36\x68\x2d\x2e\x34\x33\x76\x2e\x36\x36\
\x68\x2e\x34\x35\x63\x2e\x31\x31\x20\x30\x20\x2e\x32\x2e\x30\x31\
\x2e\x32\x39\x2e\x30\x34\x73\x2e\x31\x36\x2e\x30\x36\x2e\x32\x32\
\x2e\x31\x31\x2e\x31\x31\x2e\x31\x32\x2e\x31\x34\x2e\x32\x2e\x30\
\x35\x2e\x31\x38\x2e\x30\x35\x2e\x32\x39\x63\x30\x20\x2e\x30\x39\
\x2d\x2e\x30\x31\x2e\x31\x37\x2d\x2e\x30\x34\x2e\x32\x34\x73\x2d\
\x2e\x30\x38\x2e\x31\x31\x2d\x2e\x31\x33\x2e\x31\x37\x7a\x6d\x33\
\x2e\x39\x2d\x33\x2e\x34\x34\x63\x2d\x2e\x31\x38\x2d\x2e\x30\x37\
\x2d\x2e\x33\x37\x2d\x2e\x31\x2d\x2e\x35\x39\x2d\x2e\x31\x73\x2d\
\x2e\x34\x31\x2e\x30\x33\x2d\x2e\x35\x39\x2e\x31\x2d\x2e\x33\x33\
\x2e\x31\x38\x2d\x2e\x34\x35\x2e\x33\x33\x2d\x2e\x32\x33\x2e\x33\
\x34\x2d\x2e\x32\x39\x2e\x35\x37\x2d\x2e\x31\x2e\x35\x2d\x2e\x31\
\x2e\x38\x32\x76\x2e\x37\x34\x63\x30\x20\x2e\x33\x32\x2e\x30\x34\
\x2e\x36\x2e\x31\x31\x2e\x38\x32\x73\x2e\x31\x37\x2e\x34\x32\x2e\
\x33\x2e\x35\x37\x2e\x32\x38\x2e\x32\x36\x2e\x34\x36\x2e\x33\x33\
\x2e\x33\x37\x2e\x31\x2e\x35\x39\x2e\x31\x2e\x34\x31\x2d\x2e\x30\
\x33\x2e\x35\x39\x2d\x2e\x31\x2e\x33\x33\x2d\x2e\x31\x38\x2e\x34\
\x35\x2d\x2e\x33\x33\x2e\x32\x32\x2d\x2e\x33\x34\x2e\x32\x39\x2d\
\x2e\x35\x37\x2e\x31\x2d\x2e\x35\x2e\x31\x2d\x2e\x38\x32\x76\x2d\
\x2e\x37\x34\x63\x30\x2d\x2e\x33\x32\x2d\x2e\x30\x34\x2d\x2e\x36\
\x2d\x2e\x31\x31\x2d\x2e\x38\x32\x73\x2d\x2e\x31\x37\x2d\x2e\x34\
\x32\x2d\x2e\x33\x2d\x2e\x35\x37\x2d\x2e\x32\x38\x2d\x2e\x32\x36\
\x2d\x2e\x34\x36\x2d\x2e\x33\x33\x7a\x6d\x2e\x30\x31\x20\x32\x2e\
\x35\x37\x63\x30\x20\x2e\x31\x39\x2d\x2e\x30\x31\x2e\x33\x35\x2d\
\x2e\x30\x34\x2e\x34\x38\x73\x2d\x2e\x30\x36\x2e\x32\x34\x2d\x2e\
\x31\x31\x2e\x33\x32\x2d\x2e\x31\x31\x2e\x31\x34\x2d\x2e\x31\x39\
\x2e\x31\x37\x2d\x2e\x31\x36\x2e\x30\x35\x2d\x2e\x32\x35\x2e\x30\
\x35\x2d\x2e\x31\x38\x2d\x2e\x30\x32\x2d\x2e\x32\x35\x2d\x2e\x30\
\x35\x2d\x2e\x31\x34\x2d\x2e\x30\x39\x2d\x2e\x31\x39\x2d\x2e\x31\
\x37\x2d\x2e\x30\x39\x2d\x2e\x31\x39\x2d\x2e\x31\x32\x2d\x2e\x33\
\x32\x2d\x2e\x30\x34\x2d\x2e\x32\x39\x2d\x2e\x30\x34\x2d\x2e\x34\
\x38\x76\x2d\x2e\x39\x37\x63\x30\x2d\x2e\x31\x39\x2e\x30\x31\x2d\
\x2e\x33\x35\x2e\x30\x34\x2d\x2e\x34\x38\x73\x2e\x30\x36\x2d\x2e\
\x32\x33\x2e\x31\x32\x2d\x2e\x33\x31\x2e\x31\x31\x2d\x2e\x31\x34\
\x2e\x31\x39\x2d\x2e\x31\x37\x2e\x31\x36\x2d\x2e\x30\x35\x2e\x32\
\x35\x2d\x2e\x30\x35\x2e\x31\x38\x2e\x30\x32\x2e\x32\x35\x2e\x30\
\x35\x2e\x31\x34\x2e\x30\x39\x2e\x31\x39\x2e\x31\x37\x2e\x30\x39\
\x2e\x31\x38\x2e\x31\x32\x2e\x33\x31\x2e\x30\x34\x2e\x32\x39\x2e\
\x30\x34\x2e\x34\x38\x76\x2e\x39\x37\x7a\x22\x2f\x3e\x0d\x0a\x3c\
\x2f\x73\x76\x67\x3e\
\x00\x00\x00\xdd\
\x3c\
\x73\x76\x67\x20\x78\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\
\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\
\x30\x2f\x73\x76\x67\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x34\
\x38\x70\x78\x22\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\
\x30\x20\x32\x34\x20\x32\x34\x22\x20\x77\x69\x64\x74\x68\x3d\x22\
\x34\x38\x70\x78\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x63\x30\x38\
\x38\x66\x66\x22\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\
\x20\x64\x3d\x22\x4d\x30\x20\x30\x68\x32\x34\x76\x32\x34\x48\x30\
\x56\x30\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\
\x2f\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\
\x22\x4d\x31\x30\x20\x38\x2e\x36\x34\x4c\x31\x35\x2e\x32\x37\x20\
\x31\x32\x20\x31\x30\x20\x31\x35\x2e\x33\x36\x56\x38\x2e\x36\x34\
\x4d\x38\x20\x35\x76\x31\x34\x6c\x31\x31\x2d\x37\x4c\x38\x20\x35\
\x7a\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\
\x00\x00\x01\x95\
\x3c\
\x73\x76\x67\x20\x78\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\
\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\
\x30\x2f\x73\x76\x67\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x34\
\x38\x70\x78\x22\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\
\x30\x20\x32\x34\x20\x32\x34\x22\x20\x77\x69\x64\x74\x68\x3d\x22\
\x34\x38\x70\x78\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x63\x30\x38\
\x38\x66\x66\x22\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\
\x20\x64\x3d\x22\x4d\x30\x20\x30\x68\x32\x34\x76\x32\x34\x48\x30\
\x56\x30\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\
\x2f\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\
\x22\x4d\x33\x20\x39\x76\x36\x68\x34\x6c\x35\x20\x35\x56\x34\x4c\
\x37\x20\x39\x48\x33\x7a\x6d\x37\x2d\x2e\x31\x37\x76\x36\x2e\x33\
\x34\x4c\x37\x2e\x38\x33\x20\x31\x33\x48\x35\x76\x2d\x32\x68\x32\
\x2e\x38\x33\x4c\x31\x30\x20\x38\x2e\x38\x33\x7a\x4d\x31\x36\x2e\
\x35\x20\x31\x32\x63\x30\x2d\x31\x2e\x37\x37\x2d\x31\x2e\x30\x32\
\x2d\x33\x2e\x32\x39\x2d\x32\x2e\x35\x2d\x34\x2e\x30\x33\x76\x38\
\x2e\x30\x35\x63\x31\x2e\x34\x38\x2d\x2e\x37\x33\x20\x32\x2e\x35\
\x2d\x32\x2e\x32\x35\x20\x32\x2e\x35\x2d\x34\x2e\x30\x32\x7a\x4d\
\x31\x34\x20\x33\x2e\x32\x33\x76\x32\x2e\x30\x36\x63\x32\x2e\x38\
\x39\x2e\x38\x36\x20\x35\x20\x33\x2e\x35\x34\x20\x35\x20\x36\x2e\
\x37\x31\x73\x2d\x32\x2e\x31\x31\x20\x35\x2e\x38\x35\x2d\x35\x20\
\x36\x2e\x37\x31\x76\x32\x2e\x30\x36\x63\x34\x2e\x30\x31\x2d\x2e\
\x39\x31\x20\x37\x2d\x34\x2e\x34\x39\x20\x37\x2d\x38\x2e\x37\x37\
\x20\x30\x2d\x34\x2e\x32\x38\x2d\x32\x2e\x39\x39\x2d\x37\x2e\x38\
\x36\x2d\x37\x2d\x38\x2e\x37\x37\x7a\x22\x2f\x3e\x0d\x0a\x3c\x2f\
\x73\x76\x67\x3e\
\x00\x00\x01\x7f\
\x3c\
\x73\x76\x67\x20\x78\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\
\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\
\x30\x2f\x73\x76\x67\x22\x20\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\
\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3d\x22\x6e\x65\x77\x20\x30\x20\
\x30\x20\x32\x30\x20\x32\x30\x22\x20\x68\x65\x69\x67\x68\x74\x3d\
\x22\x34\x38\x70\x78\x22\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\
\x30\x20\x30\x20\x32\x30\x20\x32\x30\x22\x20\x77\x69\x64\x74\x68\
\x3d\x22\x34\x38\x70\x78\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x63\
\x30\x38\x38\x66\x66\x22\x3e\x3c\x67\x3e\x3c\x72\x65\x63\x74\x20\
\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x20\x68\x65\x69\x67\
\x68\x74\x3d\x22\x32\x30\x22\x20\x77\x69\x64\x74\x68\x3d\x22\x32\
\x30\x22\x20\x78\x3d\x22\x30\x22\x2f\x3e\x3c\x2f\x67\x3e\x3c\x67\
\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x31\x34\x2c\x31\x37\
\x2e\x37\x34\x56\x31\x33\x2e\x35\x68\x34\x2e\x32\x34\x56\x31\x35\
\x68\x2d\x31\x2e\x36\x38\x6c\x32\x2e\x32\x31\x2c\x32\x2e\x32\x31\
\x6c\x2d\x31\x2e\x30\x36\x2c\x31\x2e\x30\x36\x6c\x2d\x32\x2e\x32\
\x31\x2d\x32\x2e\x32\x31\x76\x31\x2e\x36\x38\x48\x31\x34\x7a\x20\
\x4d\x31\x32\x2e\x35\x2c\x31\x36\x2e\x35\x68\x2d\x37\x76\x2d\x31\
\x33\x48\x31\x31\x56\x37\x68\x33\x2e\x35\x76\x35\x48\x31\x36\x56\
\x36\x6c\x2d\x34\x2d\x34\x48\x35\x2e\x35\x20\x43\x34\x2e\x36\x37\
\x2c\x32\x2c\x34\x2c\x32\x2e\x36\x37\x2c\x34\x2c\x33\x2e\x35\x76\
\x31\x33\x43\x34\x2c\x31\x37\x2e\x33\x33\x2c\x34\x2e\x36\x37\x2c\
\x31\x38\x2c\x35\x2e\x35\x2c\x31\x38\x68\x37\x56\x31\x36\x2e\x35\
\x7a\x22\x2f\x3e\x3c\x2f\x67\x3e\x3c\x2f\x73\x76\x67\x3e\
\x00\x00\x2d\x1b\
\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\x2c\xe2\x49\x44\x41\x54\x78\x5e\xed\xdd\x79\x7c\x54\xe5\
\xbd\xc7\x71\x32\x93\x10\xc8\xcc\x24\x93\xda\xfd\x76\xbb\xed\x15\
\x09\xbb\x4b\xad\xad\xda\xab\x49\x40\xd6\x40\x80\x10\x96\xb0\x29\
\xab\x80\x21\x24\x61\x07\xb5\xd5\x6a\xad\x4b\xab\xad\x56\x6d\xeb\
\x52\x5b\x5b\x6d\xb5\x5e\xab\x75\xa9\x8a\x55\x71\x45\x65\x93\x1d\
\x41\x20\x42\xd8\x11\x59\xb2\xfd\xee\x79\x26\xc4\xda\x3c\x11\x92\
\xc9\x9c\xfd\xf3\xc7\xfb\xaf\xf6\x25\xc9\xe4\xcc\xf3\xfd\x9e\x73\
\x9e\xa5\xcd\xff\x64\x5e\x2c\x00\xe0\x17\x59\x99\x39\x32\x22\x92\
\x2f\xab\x82\x65\x52\xdb\xe6\x4a\x91\x36\x57\x01\xbe\xd4\xa6\xf1\
\x97\x03\x00\xbc\xaa\x93\x11\xfe\xa3\x8d\xf0\x7f\x37\x79\x16\xe1\
\x0f\xdf\xa3\x00\x00\xf0\x85\xce\xd1\x1c\x19\x65\x84\xff\xdb\x84\
\x3f\x10\x43\x01\x00\xe0\x79\x2a\xfc\x8b\x8c\xf0\x7f\x3d\xb9\x84\
\xf0\x07\x4e\xa0\x00\x00\xf0\xb4\x86\x3b\xff\x57\x53\x66\x4a\x0d\
\xe1\x0f\x7c\x82\x02\x00\xc0\xb3\xba\xa8\x3b\xff\x70\xbe\xbc\x94\
\x52\x4c\xf8\x03\x8d\x50\x00\x00\x78\x52\xc3\x63\xff\x17\x53\xae\
\x20\xfc\x81\x26\x50\x00\x00\x78\x4e\xec\xce\xdf\x08\xff\xe7\x52\
\x66\x48\x35\xe1\x0f\x34\x89\x02\x00\xc0\x53\x1a\xde\xf9\xff\xd3\
\x08\xff\x2a\xc2\x1f\xf8\x4c\x14\x00\x00\x9e\xd1\x10\xfe\x4f\xa7\
\x4c\x27\xfc\x81\x53\xa0\x00\x00\xf0\x84\x4e\x46\xf8\x8f\x34\xc2\
\xff\x29\x23\xfc\x8f\x13\xfe\xc0\x29\x51\x00\x00\xb8\x9e\x0a\xff\
\xe1\x91\x41\xf2\x44\xca\x34\xc2\x1f\x68\x26\x0a\x00\x00\x57\xfb\
\x74\xf8\x1f\x6b\xb3\x58\x1b\xe4\x00\x34\x8d\x02\x00\xc0\xb5\x54\
\xf8\x17\x46\x06\xca\x93\xb1\x3b\x7f\xc2\x1f\x68\x09\x0a\x00\x00\
\x57\x52\xe1\x3f\xcc\x08\xff\x7f\x10\xfe\x40\x5c\x28\x00\x00\x5c\
\xa7\x21\xfc\x9f\x22\xfc\x81\xb8\x51\x00\x00\xb8\x8a\x3a\xd2\x57\
\x85\xff\x33\xb1\xd9\xfe\x84\x3f\x10\x2f\x0a\x00\x00\xd7\xc8\xca\
\xcc\x96\xa1\x46\xf8\x3f\x17\x5b\xe7\x4f\xf8\x03\xad\x41\x01\x00\
\xe0\x0a\x2a\xfc\x87\x44\xf2\xe4\x85\xd8\x0e\x7f\x84\x3f\xd0\x5a\
\x14\x00\x00\x8e\xd7\xd1\x08\xff\x7c\x23\xfc\xd5\xc1\x3e\x84\x3f\
\x90\x18\x14\x00\x00\x8e\x76\x86\x11\xfe\x79\xe9\x03\xe4\xa5\x64\
\xc2\x1f\x48\x24\x0a\x00\x00\xc7\x52\xe1\xdf\x3f\xbd\xbf\x2c\x4d\
\x2e\xe6\x54\x3f\x20\xc1\x28\x00\x00\x1c\xa9\x83\x11\xfe\x7d\xd2\
\xfb\xc9\xeb\xc9\x33\x09\x7f\xc0\x04\x14\x00\x00\x8e\x73\xba\xa1\
\xaf\x71\xe7\xff\x4e\xf2\x2c\xa9\x21\xfc\x01\x53\x50\x00\x00\x38\
\x4e\x6e\x7a\x5f\x59\x1e\x2c\x25\xfc\x01\x13\x51\x00\x00\x38\x4a\
\xcf\xf4\x7e\xf2\x5e\xb0\x9c\xf0\x07\x4c\x46\x01\x00\xe0\x18\x2a\
\xfc\xd7\x18\xe1\xcf\x3b\x7f\xc0\x7c\x14\x00\x00\x8e\x40\xf8\x03\
\xd6\xa2\x00\x00\xb0\x1d\xe1\x0f\x58\x8f\x02\x00\xc0\x56\x84\x3f\
\x60\x0f\x0a\x00\x00\x5b\xa8\xa5\x7e\x17\xa5\xf7\x89\x4d\xf8\x23\
\xfc\x01\xeb\x51\x00\x00\x58\x4e\x6d\xf2\x93\x93\xde\x57\xde\x0e\
\x96\x30\xdb\x1f\xb0\x09\x05\x00\x80\xa5\x54\xf8\xf7\x4a\xef\x27\
\x6f\xb0\xc3\x1f\x60\x2b\x0a\x00\x00\xcb\xa8\xbd\xfd\xfb\xb0\xb7\
\x3f\xe0\x08\x14\x00\x00\x96\x50\x47\xfa\xaa\x83\x7d\x5e\x36\xc2\
\x9f\x53\xfd\x00\xfb\x51\x00\x00\x98\x4e\x85\x7f\x5e\x64\x80\xbc\
\x18\x3b\xd2\x97\x3b\x7f\xc0\x09\x28\x00\x00\x4c\x95\x65\x84\xff\
\xe0\x48\x9e\xbc\x90\x32\x83\x3b\x7f\xc0\x41\x28\x00\x00\x4c\xd3\
\x29\x33\x47\x86\x46\x06\xca\xf3\x84\x3f\xe0\x38\x14\x00\x00\xa6\
\xe8\x14\xcd\x91\x61\x46\xf8\x3f\x97\x32\x9d\xf0\x07\x1c\x88\x02\
\x00\x20\xe1\x54\xf8\x17\x1a\xe1\xff\x2c\xe1\x0f\x38\x16\x05\x00\
\x40\x42\x75\x36\xc2\x7f\x78\x64\x90\x3c\x43\xf8\x03\x8e\x46\x01\
\x00\x90\x30\x5d\x8c\xf0\x1f\x19\xc9\x97\xa7\x53\xa6\x11\xfe\x80\
\xc3\x51\x00\x00\x24\x84\x0a\xff\x22\x23\xfc\xb9\xf3\x07\xdc\x81\
\x02\x00\xa0\xd5\xea\xc3\x7f\xb0\x11\xfe\x33\xd8\xe1\x0f\x70\x09\
\x0a\x00\x80\x56\x51\xe1\x3f\x3a\x16\xfe\xd3\x09\x7f\xc0\x45\x28\
\x00\x00\xe2\xa6\xc2\x7f\x8c\x11\xfe\xcf\xc6\xd6\xf9\x13\xfe\x80\
\x9b\x50\x00\x00\xc4\xa5\x21\xfc\x9f\xe3\xb1\x3f\xe0\x4a\x14\x00\
\x00\x2d\xd6\x10\xfe\x6a\x87\x3f\xc2\x1f\x70\x27\x0a\x00\x80\x16\
\xa9\x7f\xe7\x9f\x2f\x2f\xa4\x5c\x41\xf8\x03\x2e\x46\x01\x00\xd0\
\x6c\xb1\x3b\xff\xf0\x60\xf9\x17\xe1\x0f\xb8\x1e\x05\x00\x40\xb3\
\x34\xdc\xf9\xbf\x92\x52\x2c\x35\x84\x3f\xe0\x7a\x14\x00\x00\xa7\
\xa4\xb6\xf7\x55\xef\xfc\x5f\x4b\x9e\x49\xf8\x03\x1e\x41\x01\x00\
\x70\x52\xea\x48\x5f\xb5\xce\xff\xcd\xe4\x12\xa9\x25\xfc\x01\xcf\
\xa0\x00\x00\xf8\x4c\x59\x46\xf8\x8f\x8a\xe4\xcb\xdb\xc9\xb3\x08\
\x7f\xc0\x63\x28\x00\x00\x9a\x94\x95\x99\x2d\x45\xe1\x7c\x59\x11\
\x2c\x25\xfc\x01\x0f\xa2\x00\x00\xd0\x9c\x61\x84\xff\x68\x23\xfc\
\xd7\x07\xcb\xb5\x41\x03\x80\x37\x50\x00\x00\xfc\x87\xd3\x0d\xc3\
\x22\x03\x65\x9d\x11\xfe\x75\x4d\x0c\x1a\x00\xbc\x81\x02\x00\xe0\
\x3f\x0c\x49\x1f\x28\x1b\x82\xb3\xa5\xb6\x89\x01\x03\x80\x77\x50\
\x00\x00\x7c\xa2\xc0\x08\xff\x2d\xc1\x39\xdc\xf9\x03\x3e\x40\x01\
\x00\x10\x93\x1f\xc9\x93\xf7\x8d\xf0\x67\xc2\x1f\xe0\x0f\x14\x00\
\x00\xb1\xf0\xdf\x6c\x84\x3f\x9b\xfc\x00\xfe\x41\x01\x00\x7c\x8e\
\xf0\x07\xfc\x89\x02\x00\xf8\x58\xff\xf4\xfe\xb2\x89\xf0\x07\x7c\
\x89\x02\x00\xf8\x90\x5a\xea\xd7\xcf\x08\xff\x8d\xb1\xd9\xfe\x84\
\x3f\xe0\x47\x14\x00\xc0\x67\x3a\x64\x66\x4b\x5e\x64\x80\xbc\x17\
\x2c\x23\xfc\x01\x1f\xa3\x00\x00\x3e\xa2\x76\xf8\x53\xef\xfc\x97\
\x27\xb3\xbd\x2f\xe0\x77\x14\x00\xc0\x27\x3a\x1a\xe1\x3f\x38\x3d\
\x4f\xde\x49\x9e\xc5\x3b\x7f\x00\x14\x00\xc0\x0f\xd4\xc1\x3e\x6a\
\x93\x9f\xb7\x92\x4b\x08\x7f\x00\x31\x14\x00\xc0\xe3\x3a\x45\x73\
\x64\x44\x64\x90\xbc\x9e\x3c\x93\xf0\x07\xf0\x09\x0a\x00\xe0\x61\
\x9d\x8d\xf0\x1f\x15\xc9\x27\xfc\x01\x68\x28\x00\x80\x47\x75\x89\
\xe6\xca\xd8\xc8\x60\x79\x35\xa5\x98\xf0\x07\xa0\xa1\x00\x00\x1e\
\xd4\xd5\x08\xff\xf1\xe1\x21\xf2\x2a\x77\xfe\x00\x3e\x03\x05\x00\
\xf0\x18\x15\xfe\x97\x1a\xe1\xbf\xd4\x08\x7f\x96\xfa\x01\xf8\x2c\
\x14\x00\xc0\x43\xba\x1b\xe1\x3f\x21\x3c\x54\x5e\x4e\x2e\x26\xfc\
\x01\x9c\x14\x05\x00\xf0\x88\x1e\x46\xf8\x4f\x09\x17\xc4\x1e\xfb\
\x13\xfe\x00\x4e\x85\x02\x00\x78\x80\xba\xf3\x9f\x6c\xdc\xf9\xab\
\xf0\x6f\xfc\x25\x07\x80\xa6\x50\x00\x00\x97\x6b\x08\x7f\xf5\xd8\
\xbf\x8e\x3b\x7f\x00\xcd\x44\x01\x00\x5c\x8c\xf0\x07\x10\x2f\x0a\
\x00\xe0\x52\x2a\xfc\x27\x11\xfe\x00\xe2\x44\x01\x00\x5c\x48\x4d\
\xf8\x53\x77\xfe\xaf\x10\xfe\x00\xe2\x44\x01\x00\x5c\x46\xdd\xf9\
\x4f\x0d\x17\xc8\x6b\xc9\x33\x09\x7f\x00\x71\xa3\x00\x00\x2e\xa2\
\xc2\x7f\x8a\x71\xe7\xaf\xf6\xf6\xaf\x6b\xe2\x0b\x0d\x00\xcd\x45\
\x01\x00\x5c\xa2\xdb\x89\xc7\xfe\x6f\x26\x97\x10\xfe\x00\x5a\x8d\
\x02\x00\xb8\x80\xda\xde\x57\x4d\xf8\x7b\x8b\xf0\x07\x90\x20\x14\
\x00\xc0\xe1\xba\x46\x73\x64\x62\x78\x88\xbc\x9d\x3c\x8b\xf0\x07\
\x90\x30\x14\x00\xc0\xc1\x3a\x1b\xe1\xaf\xf6\xf6\x5f\x1e\x2c\x25\
\xfc\x01\x24\x14\x05\x00\x70\xa8\x4e\x99\x39\x32\xce\xb8\xf3\x5f\
\x41\xf8\x03\x30\x01\x05\x00\x70\xa0\x8e\x99\xd9\x32\x26\x3c\x58\
\x56\x06\xcb\x08\x7f\x00\xa6\xa0\x00\x00\x0e\x73\x86\x11\xfe\x45\
\xe1\x7c\x79\x2f\x58\x4e\xf8\x03\x30\x0d\x05\x00\x70\x90\xd3\x0d\
\xc3\x22\x03\x65\x1d\xe1\x0f\xc0\x64\x14\x00\xc0\x41\x86\xa4\x0f\
\x94\x0d\xc1\xd9\x52\xdb\xc4\x97\x15\x00\x12\x89\x02\x00\x38\x44\
\x81\x11\xfe\x5b\x82\x73\xb8\xf3\x07\x60\x09\x0a\x00\xe0\x00\xf9\
\x91\x3c\x79\xdf\x08\xff\x5a\xf6\xf6\x07\x60\x11\x0a\x00\x60\x33\
\x15\xfe\x9b\x8d\xf0\xaf\x21\xfc\x01\x58\x88\x02\x00\xd8\x88\xf0\
\x07\x60\x17\x0a\x00\x60\x93\xfc\x74\xc2\x1f\x80\x7d\x28\x00\x80\
\xc5\xd4\x52\xbf\x81\x46\xf8\x6f\xe2\x9d\x3f\x00\x1b\x51\x00\x00\
\x0b\xa9\x4d\x7e\x06\x47\xf2\x64\x6d\xb0\x9c\xa5\x7e\x00\x6c\x45\
\x01\x00\x2c\xa2\xb6\xf7\x1d\x1a\x19\x28\xab\x93\xcb\x08\x7f\x00\
\xb6\xa3\x00\x00\x16\xc8\x32\xc2\xbf\x30\x32\x48\x96\x27\x97\x12\
\xfe\x00\x1c\x81\x02\x00\x98\x4c\x9d\xea\x37\xc2\x08\xff\xb7\x93\
\x67\xf1\xce\x1f\x80\x63\x50\x00\x00\x13\x75\x8a\xe6\xc8\x70\x23\
\xfc\xdf\x34\xc2\x9f\xd9\xfe\x00\x9c\x84\x02\x00\x98\xa4\xb3\x11\
\xfe\xa3\x22\xf9\xf2\x6a\xf2\x4c\xc2\x1f\x80\xe3\x50\x00\x00\x13\
\x74\x31\xc2\x7f\xb4\x11\xfe\x4b\x53\x8a\x09\x7f\x00\x8e\x44\x01\
\x00\x12\x4c\x85\xff\x98\xf0\x60\x79\x99\xf0\x07\xe0\x60\x14\x00\
\x20\x81\xba\x1a\xe1\x3f\xd6\x08\xff\x97\x52\xae\x20\xfc\x01\x38\
\x1a\x05\x00\x48\x90\xae\xd1\x5c\x19\x67\x84\xff\xbf\x08\x7f\x00\
\x2e\x40\x01\x00\x12\x40\x85\xff\x78\x23\xfc\x5f\x24\xfc\x01\xb8\
\x04\x05\x00\x68\xa5\x86\xf0\x5f\x92\x32\x83\xf0\x07\xe0\x1a\x14\
\x00\xa0\x15\xea\xc3\x7f\x88\xbc\x40\xf8\x03\x70\x19\x0a\x00\x10\
\xa7\x6e\x46\xf8\x5f\x16\x0b\x7f\x1e\xfb\x03\x70\x1f\x0a\x00\x10\
\x87\xee\x46\xf8\x4f\x30\xc2\x9f\x77\xfe\x00\xdc\x8a\x02\x00\xb4\
\x90\x0a\xff\x49\xe1\xa1\xb1\x75\xfe\xec\xed\x0f\xc0\xad\x28\x00\
\x40\x0b\xf4\x30\xc2\x7f\x4a\xb8\x20\xb6\xbd\x6f\x1d\xe1\x0f\xc0\
\xc5\x28\x00\x40\x33\xf5\x88\xf6\x94\xcb\x8d\xf0\x7f\x23\xb9\xc4\
\x08\x7f\xfd\xcb\x04\x00\x6e\x42\x01\x00\x9a\x41\xdd\xf9\x4f\x0f\
\x0d\x8b\x1d\xe9\x4b\xf8\x03\xf0\x02\x0a\x00\x70\x0a\x2a\xfc\xaf\
\x30\xc2\x7f\x79\x70\x96\xf6\x05\x02\x00\xb7\xa2\x00\x00\x27\xa1\
\xc2\xbf\x24\x54\x28\xab\x83\x65\xda\x97\x07\x00\xdc\x8c\x02\x00\
\x7c\x06\x35\xdb\x7f\x4e\x68\x84\x6c\x08\xce\xd6\xbe\x38\x00\xe0\
\x76\x14\x00\xa0\x09\xea\x48\x5f\x15\xfe\x9b\x08\x7f\x00\x1e\x45\
\x01\x00\x1a\xe9\x6c\x84\xff\xac\x50\xa1\x6c\x26\xfc\x01\x78\x18\
\x05\x00\xf8\x94\xac\xcc\xec\xd8\x3b\xff\xad\x81\x39\xda\x97\x05\
\x00\xbc\x84\x02\x00\x9c\xd0\xc1\x08\xff\x99\xa1\x61\xb2\x2d\x30\
\x57\xfb\xa2\x00\x80\xd7\x50\x00\x80\x13\xd4\x26\x3f\x15\x81\x79\
\xda\x97\x04\x00\xbc\x88\x02\x00\x18\x66\x84\x87\xc9\x2e\xc2\x1f\
\x80\x8f\x50\x00\xe0\x7b\x33\x43\x85\x52\x19\x98\xcf\x0e\x7f\x00\
\x7c\x85\x02\x00\x5f\x53\x8f\xfd\xd5\x9d\x3f\xe1\x0f\xc0\x6f\x28\
\x00\xf0\x2d\x75\xe7\x5f\x1f\xfe\x9c\xea\x07\xc0\x7f\x28\x00\xf0\
\xa5\x62\x1e\xfb\x03\xf0\x39\x0a\x00\x7c\x45\x2d\xf5\x9b\x15\x1a\
\x4e\xf8\x03\xf0\x3d\x0a\x00\x7c\x43\x6d\xf2\x53\x6a\x84\xff\x87\
\xcc\xf6\x07\x00\x0a\x00\xfc\x41\x6d\xef\xab\xc2\x7f\x3b\x9b\xfc\
\x00\x40\x0c\x05\x00\x9e\xd7\x35\x9a\x2b\xb3\x43\x23\x64\x2b\xe1\
\x0f\x00\x9f\xa0\x00\xc0\xd3\x1a\x8e\xf4\x7d\x3f\xc8\xde\xfe\x00\
\xf0\x69\x14\x00\x78\x96\x0a\xff\xb2\xd0\x70\x8e\xf4\x05\x80\x26\
\x50\x00\xe0\x49\x67\x46\x7b\xc6\xc2\x7f\x5d\xb0\x5c\xbb\xe8\x01\
\x00\x14\x00\x78\xd0\x59\x46\xf8\x97\x1b\xe1\xbf\x26\x58\xa6\x5d\
\xf0\x00\x80\x7a\x14\x00\x78\xca\xd9\x27\xc2\xff\x3d\xc2\x1f\x00\
\x4e\x8a\x02\x00\xcf\x50\x8f\xfd\x8b\x43\xc3\x64\x55\xb0\x54\xbb\
\xd0\x01\x00\xff\x89\x02\x00\x4f\xe8\x61\x84\xff\x74\x23\xfc\x97\
\x25\x97\x68\x17\x39\x00\x40\x47\x01\x80\xeb\xa9\xd9\xfe\x53\xc2\
\x05\xf2\x86\x11\xfe\x6c\xef\x0b\x00\xcd\x43\x01\x80\xab\x75\x33\
\xc2\x7f\x42\x78\xa8\xbc\x9c\x52\x4c\xf8\x03\x40\x0b\x50\x00\xe0\
\x5a\x5d\xa3\x39\x32\x3e\x3c\x58\x96\xa4\x5c\x21\x35\x1c\xe9\x0b\
\x00\x2d\x42\x01\x80\x2b\xa9\x3b\xff\x71\x46\xf8\x3f\x97\x32\x43\
\xaa\x09\x7f\x00\x68\x31\x0a\x00\x5c\x27\x2b\x33\x47\x8a\x22\xf9\
\xf2\xbc\x11\xfe\xdc\xf9\x03\x40\x7c\x28\x00\x70\x95\x0e\x99\xd9\
\x92\x97\x3e\x40\x1e\x6b\x3b\x55\x8e\xb7\x59\xac\x5d\xd0\x00\x80\
\xe6\xa1\x00\xc0\x55\x2e\xce\xe8\x23\xf7\xa6\x4e\x94\x43\x49\x0b\
\xb5\x8b\x19\x00\xd0\x7c\x14\x00\xb8\xc6\x77\xa3\xbd\xe4\xe6\xf6\
\x63\x65\x67\x60\x9e\x76\x21\x03\x00\x5a\x86\x02\x00\x57\xe8\x12\
\xcd\x91\xd9\xa1\x11\xb2\x96\xc3\x7d\x00\x20\x21\x28\x00\x70\xbc\
\x33\x32\xb3\x65\x64\x64\x90\xbc\x92\x52\xac\x5d\xc0\x00\x80\xf8\
\x50\x00\xe0\x78\xea\xbd\x3f\x93\xfe\x00\x20\xb1\x28\x00\x70\x34\
\xb5\xde\xff\xf6\x76\x97\xca\x9e\xa4\x05\xda\xc5\x0b\x00\x88\x1f\
\x05\x00\x8e\xa5\x1e\xfd\xab\xd3\xfd\xd6\x70\xb4\x2f\x00\x24\x1c\
\x05\x00\x8e\x95\x9b\xde\x57\x5e\x4e\xe6\xbd\x3f\x00\x98\x81\x02\
\x00\x47\xea\x68\xdc\xfd\xdf\xd3\x6e\x82\x1c\x60\xbd\x3f\x00\x98\
\x82\x02\x00\x47\x9a\x14\x1e\x2a\x6b\x58\xf2\x07\x00\xa6\xa1\x00\
\xc0\x71\xd4\xc4\x3f\x75\xc8\x0f\xfb\xfc\x03\x80\x79\x28\x00\x70\
\x9c\x9f\xa4\x8d\x91\x0a\x76\xfb\x03\x00\x53\x51\x00\xe0\x28\xd9\
\x19\x7d\xe5\xdd\xe4\x52\xa9\x6b\xe2\x62\x05\x00\x24\x0e\x05\x00\
\x8e\x72\x47\xbb\x4b\x65\x2f\x6b\xfe\x01\xc0\x74\x14\x00\x38\x46\
\x6e\x46\x3f\x59\x19\xe4\xee\x1f\x00\xac\x40\x01\x80\x63\xdc\x9d\
\x7a\x99\xec\xe7\xee\x1f\x00\x2c\x41\x01\x80\x23\xfc\x30\xa3\x8f\
\xac\x0a\x96\x49\x2d\x33\xff\x01\xc0\x12\x14\x00\x38\xc2\x4d\xed\
\xc7\xf2\xee\x1f\x00\x2c\x44\x01\x80\xed\xce\x8d\xf6\x92\x15\xc9\
\xa5\xac\xfb\x07\x00\x0b\x51\x00\x60\xbb\xf2\xd0\x70\xd9\x1d\x98\
\xaf\x5d\x9c\x00\x00\xf3\x50\x00\x60\xab\xd3\x33\xb3\xe5\xb9\x94\
\xe9\x72\x2c\x69\xb1\x76\x71\x02\x00\xcc\x43\x01\x80\xad\x06\xa4\
\x0f\x90\xed\x81\xb9\x2c\xfd\x03\x00\x8b\x51\x00\x60\xab\x5b\xda\
\x8f\x93\x43\x9c\xf8\x07\x00\x96\xa3\x00\xc0\x36\x1d\x32\xb3\x65\
\x59\x72\x89\x54\x33\xf9\x0f\x00\x2c\x47\x01\x80\x6d\xfa\xa5\x0f\
\x60\xf2\x1f\x00\xd8\x84\x02\x00\xdb\xfc\xb4\xfd\x18\xf9\x38\x69\
\x91\x76\x51\x02\x00\xcc\x47\x01\x80\x6d\x96\x26\xcf\xe4\xf1\x3f\
\x00\xd8\x84\x02\x00\x5b\x7c\x37\xda\x4b\x76\x27\x2d\x60\xf6\x3f\
\x00\xd8\x84\x02\x00\x5b\x8c\x0b\x0f\xe6\xf1\x3f\x00\xd8\x88\x02\
\x00\x5b\xdc\xd6\x7e\xbc\x1c\x67\xf3\x1f\x00\xb0\x0d\x05\x00\xb6\
\x78\x25\xa5\x98\xbd\xff\x01\xc0\x46\x14\x00\x58\x2e\x2b\x33\x5b\
\x2a\x03\xf3\x79\xff\x0f\x00\x36\xa2\x00\xc0\x72\x17\x65\xf4\x91\
\xe3\x6d\x78\xfc\x0f\x00\x76\xa2\x00\xc0\x72\xd3\x43\xc3\xa4\x8a\
\xc7\xff\x00\x60\x2b\x0a\x00\x2c\x77\x5b\xbb\xf1\xbc\xff\x07\x00\
\x9b\x51\x00\x60\xb9\xc7\x52\x2f\x97\x5a\x0a\x00\x00\xd8\x8a\x02\
\x00\xcb\xbd\x96\x32\xd3\x28\x00\xfa\xc5\x08\x00\xb0\x0e\x05\x00\
\x96\xdb\x1a\x9c\xc3\x0a\x00\x00\xb0\x19\x05\x00\x96\x3a\xdd\x70\
\x8c\x1d\x00\x01\xc0\x76\x14\x00\x58\xaa\x5b\x34\x47\xbb\x08\x01\
\x00\xd6\xa3\x00\xc0\x52\x67\x47\x7b\x69\x17\x21\x00\xc0\x7a\x14\
\x00\x58\x46\x3d\xfe\x57\xa7\x00\x36\xbe\x08\x01\x00\xd6\xa3\x00\
\xc0\x32\xaa\x00\x7c\x8f\x02\x00\x00\x8e\x40\x01\x80\x65\x54\x01\
\xf8\x7e\x46\x6f\xed\x22\x04\x00\x58\x8f\x02\x00\xcb\xf0\x04\x00\
\x00\x9c\x83\x02\x00\x4b\xf5\x88\xe6\x6a\x17\x21\x00\xc0\x7a\x14\
\x00\x58\x4a\x1d\x05\xdc\xf8\x22\x04\x00\x58\x8f\x02\x00\xcb\x35\
\xbe\x08\x01\x00\xd6\xa3\x00\xc0\x72\x47\xd8\x09\x10\x00\x6c\x47\
\x01\x80\xe5\x3e\x08\x70\x16\x00\x00\xd8\x8d\x02\x00\xcb\xbd\x95\
\x5c\xc2\x69\x80\x00\x60\x33\x0a\x00\x2c\xf7\x64\xdb\x69\x46\x01\
\xb8\x52\xbb\x18\x01\x00\xd6\xa1\x00\xc0\x72\xbf\x6b\x37\x51\x6a\
\xfc\x54\x00\x92\x7f\x24\xb5\xff\x75\x8b\x54\x67\xdd\x21\xd5\x9d\
\xee\x90\xba\xcc\x9f\xea\xff\x1f\x00\xb0\x18\x05\x00\x96\xbb\x2a\
\xad\x48\xaa\xbd\x5c\x00\x82\x46\xe0\x7f\xf5\x66\x39\x3a\xe4\xaf\
\x72\xe8\xda\xd7\x65\xff\x83\x1b\x65\xdf\xdf\xb6\xca\xbe\x27\xb7\
\xc7\xec\x7f\x78\xb3\x7c\xb4\x78\xa9\x1c\xef\xfd\x27\xa9\x8b\x5c\
\x2f\x92\xd4\xc4\x7f\x03\x00\x4c\x46\x01\x80\xe5\x46\x45\xf2\xa5\
\xca\x8b\x05\x20\x78\xb5\xd4\x7c\xf3\x17\xf2\xf1\xe4\xa7\x65\xff\
\x03\xeb\x65\xef\x4b\xbb\xa5\x72\xdd\x51\xd9\xf5\xa1\xfc\xa7\x0a\
\x91\xdd\xef\x1d\x91\xbd\xcf\xef\x92\x03\xbf\x5d\x23\x47\xf3\xff\
\x2a\x75\xe1\x9f\x50\x04\x00\x58\x8a\x02\x00\xcb\xa9\x13\x01\x8f\
\xb6\x59\xac\x5d\x8c\x6e\x56\xd7\xf6\xc7\x72\xfc\xbc\x7b\xe4\xc0\
\xed\x2b\x65\xcf\x9b\xfb\x65\xd7\xf6\x5a\x3d\xf8\x9b\xb2\xad\x56\
\xf6\x2e\xa9\x94\x83\x37\xbf\x2d\xc7\x2f\xfa\xbd\xd4\xb5\xbb\x56\
\xfb\x6f\x03\x80\x19\x28\x00\xb0\x5c\x87\xcc\x6c\xd9\x16\x98\xeb\
\x99\xa5\x80\x75\xed\xaf\x95\x63\x39\x7f\x90\x7d\x7f\xda\x24\x95\
\x9b\xaa\xf4\x90\x6f\x86\xca\xcd\x55\xb2\xef\x89\x6d\xf2\xd1\xbc\
\x97\xa4\xba\xcb\x9d\x46\xa1\xb8\x46\xfb\x77\x00\x20\x91\x28\x00\
\xb0\xc5\x73\x29\x33\x3c\x31\x0f\xa0\x2e\xe5\x47\x72\xfc\xc2\xfb\
\x64\xff\x9f\x36\xca\xae\x0f\x6a\xb4\x60\x6f\xa9\xdd\xab\x3f\x96\
\xfd\x7f\xd8\x20\x1f\x4f\x7a\x4a\x6a\xbe\x75\x6b\x6c\x02\x61\xe3\
\x7f\x13\x00\x12\x81\x02\x00\x5b\xdc\xdc\x7e\x9c\x1c\x4b\x72\xff\
\x6b\x00\x35\xab\xff\xe0\xad\xef\x4a\xe5\xfb\xd5\x5a\x98\xb7\xc6\
\x9e\x37\xf6\xcb\xc1\x5f\xad\x90\xa3\x43\x1e\x91\xda\x2f\xde\x28\
\x92\x74\xb5\xf6\x6f\x03\x40\x6b\x50\x00\x60\x8b\xa2\x70\xbe\x7c\
\xec\xf2\x2d\x81\xeb\x22\xd7\xc5\xee\xd4\x77\xaf\x38\xac\x05\x78\
\x42\xa8\xf9\x01\xcf\xed\x94\x43\x3f\x7e\x4d\x8e\x5f\xfc\x80\xd4\
\x65\xb0\x7c\x10\x40\xe2\x50\x00\x60\x8b\x73\xa2\x3d\x65\x77\xd2\
\x7c\x57\xcf\x03\xa8\x3a\xfb\x37\xb2\xff\xf7\xeb\xf4\xe0\x4e\x30\
\x35\xaf\x60\xdf\xa3\x5b\xe5\x70\xc9\xf3\x52\xd5\xe3\xee\xd8\x9c\
\x83\xc6\x3f\x0b\x00\xb4\x14\x05\x00\xb6\x79\x35\xb9\xd8\xbd\xf3\
\x00\x82\x57\xcb\x91\x31\x7f\x97\xdd\x2b\x4d\xba\xfb\x6f\x42\x6c\
\x7e\xc0\x3d\x6b\x62\xff\x6e\xcd\x77\x7e\xc9\xfc\x00\x00\xad\x42\
\x01\x80\x6d\x7e\xd6\x7e\x8c\x6b\x5f\x03\xd4\x9e\x76\x83\x1c\xba\
\x72\xa9\xec\xaa\xa8\xd3\x82\xda\x54\x15\xf5\xf3\x03\x0e\xdd\xb4\
\x4c\x8e\xf5\x7f\x48\x6a\xbf\x72\xb3\xf6\xb3\x01\x40\x73\x50\x00\
\x60\x9b\xbc\xf4\x01\xb2\x27\x30\x5f\xbb\x28\xdd\xa0\xba\xe3\xed\
\x72\xf0\x8e\x95\x7a\x40\x5b\x45\xcd\x0f\x78\x7e\x57\x6c\xd9\xe0\
\xf1\x1f\xdc\x2b\xb5\x9f\xbb\x41\xfb\x19\x01\xe0\x64\x28\x00\xb0\
\x4d\xc7\x68\xb6\xbc\x9d\x5c\xe2\xca\xd7\x00\x55\x67\xdd\x2d\x07\
\xee\x33\xff\xfd\xff\xa9\xc4\xf6\x0f\x78\x6c\xab\x7c\x3c\xf5\x19\
\xa9\xea\x76\xa7\xd4\xa5\x31\x3f\x00\x40\xf3\x50\x00\x60\xab\x5b\
\xdb\x8f\x97\x8f\x92\x16\x6a\x17\xa6\xd3\x55\x9d\x77\x4f\xfd\xda\
\xff\x26\x42\xd9\x0e\x95\x6b\x8e\xc8\xfe\x7b\xd6\xca\xd1\x82\x47\
\xa5\xe6\xdb\xb7\x31\x3f\x00\xc0\x29\x51\x00\x60\xab\xc1\x91\x3c\
\xa9\x08\xcc\x73\xdd\x6a\x80\xaa\x1f\xdc\x2b\xfb\x1f\xda\xac\x05\
\xb1\xad\xd4\x19\x03\xef\x1c\x92\x43\x3f\x7b\x4b\x8e\x67\x3f\x20\
\xb5\x5f\xbe\x99\xf3\x05\x00\x7c\x26\x0a\x00\x6c\xa5\xb6\x05\x7e\
\x29\xb9\x58\x8e\xbb\xec\x6c\x00\x47\x16\x80\x06\xdb\x6b\x65\xcf\
\x2b\x7b\xe5\xf0\xec\x17\xa5\xea\xcc\xbb\xa5\x2e\xca\xfe\x01\x00\
\x74\x14\x00\xd8\x6e\x61\xda\x28\xd9\x93\xb4\x40\xbb\x38\x9d\xcc\
\xd1\x05\xe0\x84\xca\x2d\xd5\xb2\xf7\x1f\x3b\xe4\xc8\xb8\x27\xa4\
\xfa\xf4\x5f\x4a\x5d\x3b\xce\x17\x00\xf0\x6f\x14\x00\xd8\xee\xfc\
\x8c\xde\xb2\x26\x58\x2e\xb5\x2e\x9a\x0c\xe8\x86\x02\xd0\x20\x36\
\x51\xf0\xc1\x0d\x72\xac\xf7\x83\x52\xf3\xd5\x5b\x44\x82\xcc\x0f\
\x00\x40\x01\x80\x43\xdc\x9b\x3a\x51\x0e\xba\x68\x32\xa0\x9b\x0a\
\x40\x4c\x85\x51\x04\xd6\x1f\x93\x83\x37\xbd\x1d\x7b\x2d\x10\x5b\
\x36\xc8\xfc\x00\xc0\xd7\x28\x00\x70\x84\x41\x91\x3c\xd9\x10\x9c\
\xed\x9a\xc9\x80\xae\x2b\x00\x0d\x2a\xea\xa4\x72\xe5\x61\x39\x5c\
\xb6\x44\x6a\xfe\xfb\x56\xb6\x15\x06\x7c\x8c\x02\x00\xc7\xf8\x4b\
\xdb\x29\x72\xd8\x25\x3b\x03\xba\xb6\x00\x34\x30\x8a\xc0\x9e\x57\
\xf7\xc9\xd1\xfc\xbf\xd6\x9f\x36\x98\xf2\x63\xed\x77\x04\xe0\x6d\
\x14\x00\x38\xc6\xf0\xc8\x20\x59\xef\x92\xa7\x00\xae\x2f\x00\x9f\
\xb2\xcf\xf8\x3d\x8e\x9f\x7f\x5f\xfd\x6a\x81\x00\xc7\x0e\x03\x7e\
\x41\x01\x80\xa3\x3c\x9c\x3a\xd9\x15\x1b\x03\x79\xa9\x00\xc4\x6c\
\xab\x95\x83\xb7\xbc\x2d\xd5\x1d\x7e\x55\xff\x5a\x20\x89\x22\x00\
\x78\x1d\x05\x00\x8e\x92\x1f\xc9\x93\xd5\xc1\x32\xc7\x3f\x05\xf0\
\x5c\x01\x38\xa1\x72\xcd\x51\x39\x5c\xba\xa4\xfe\x90\x21\x56\x0b\
\x00\x9e\x46\x01\x80\xe3\xfc\x36\x75\x82\xec\x77\xf8\xbe\x00\x5e\
\x2d\x00\x0d\x76\xbf\xba\x57\x8e\x0c\x7b\x54\xea\xd2\xaf\xd7\x7e\
\x77\x00\xde\x40\x01\x80\xe3\xe4\x66\xf4\x93\x65\xc9\xb3\xb4\x8b\
\xd5\x49\xbc\x5e\x00\x1a\xec\xfb\xdb\x56\x39\x7e\xd1\x03\xac\x16\
\x00\x3c\x88\x02\x00\xc7\x39\xdd\x70\x55\x5a\x91\x6c\x0b\xcc\xd5\
\x2e\x58\xa7\xf0\x4b\x01\xd8\xb5\xa3\x4e\x2a\x37\x55\xc9\x81\xdb\
\x57\x4a\x55\xf7\xbb\x38\x64\x08\xf0\x10\x0a\x00\x1c\xa9\x47\xb4\
\xa7\x3c\xd6\x76\xaa\x1c\x4b\x72\xe6\x19\x01\xbe\x29\x00\x0d\x3e\
\xa8\x91\xdd\x6f\x1f\x94\x8f\x16\xbf\x52\x7f\xda\x60\x13\x9f\x09\
\x00\x77\xa1\x00\xc0\x91\xd4\x53\x80\x82\xc8\x40\x79\x2b\xb9\x44\
\xbb\x68\x9d\xc0\x77\x05\x40\x51\x9b\x08\x6d\xae\x92\xbd\xcf\xef\
\x94\x8f\x27\x3d\x25\x35\x5f\xba\x51\xfb\x5c\x00\xb8\x07\x05\x00\
\x8e\x95\x95\x99\x2d\xd7\xa6\x8d\x76\xe4\xab\x00\x5f\x16\x80\x06\
\xdb\x6b\xa5\x72\xed\x51\xd9\xff\xe7\x4d\x72\x2c\xef\x61\xa9\x0b\
\x5f\xa7\x7d\x3e\x00\x9c\x8f\x02\x00\x47\xfb\x6e\xb4\x97\x3c\x90\
\x3a\x49\x3e\x72\xd8\x0e\x81\xbe\x2e\x00\x27\x54\x6e\xad\x8e\xbd\
\x16\x38\xf8\xab\x15\x52\x75\xc1\x7d\xec\x26\x08\xb8\x0c\x05\x00\
\x8e\xa6\x5e\x05\xf4\x49\xef\x2f\x4f\xb7\x9d\x26\xd5\x0e\x3a\x2d\
\x90\x02\x70\x82\x3a\x64\x68\xe3\x71\xd9\xbb\xa4\x52\x3e\xba\xfa\
\x55\xa9\xee\xfc\x6b\x36\x11\x02\x5c\x82\x02\x00\xc7\xeb\x98\x99\
\x2d\x97\x86\x87\xc8\x9b\x0e\x9a\x0f\x40\x01\x68\x64\x47\x9d\xec\
\x5e\x73\x44\xf6\xfd\xdf\x07\x72\x78\xfa\xb3\xf5\xc7\x0e\x37\xf1\
\xb9\x01\x70\x0e\x0a\x00\x5c\xa1\x5b\x34\x57\xe6\xa7\x8d\x94\xf5\
\xc1\x72\xed\x22\xb6\x03\x05\xe0\x33\x6c\xab\x95\xdd\xef\x1c\x92\
\x03\xf7\xaf\x93\xa3\x05\x8f\x4a\x5d\xe4\x3a\xed\xb3\x03\xe0\x0c\
\x14\x00\xb8\xc6\xb9\xd1\x5e\x72\x4b\xfb\x71\xb2\x33\x30\x5f\xbb\
\x90\xad\x46\x01\x38\xb9\xca\x2d\xd5\xb2\xe7\xe5\x3d\x72\xf0\xe7\
\xef\xca\xf1\x8b\x1f\x10\x49\x61\xff\x00\xc0\x69\x28\x00\x70\x95\
\xec\x8c\xbe\x72\x5f\xea\x44\x39\x68\xf3\x81\x41\x14\x80\x66\x68\
\x98\x1f\xf0\x8f\x1d\xf2\xd1\xe2\xa5\x52\xdd\xed\x2e\xed\x73\x04\
\x60\x1f\x0a\x00\x5c\xa5\x43\x66\xb6\xf4\x4f\x1f\x20\x0f\xb5\x9d\
\x22\x87\x6d\x5c\x19\x40\x01\x68\x01\x35\x3f\xe0\xbd\x23\xc6\xe7\
\xb5\xa9\x7e\x7e\xc0\x7f\x31\x3f\x00\x70\x02\x0a\x00\x5c\x47\x4d\
\x0a\x54\xa7\x06\x3e\xd2\x76\xaa\x1c\xb5\x69\xa7\x40\x0a\x40\x1c\
\xb6\xd7\xc6\x96\x0d\x1e\xb8\x6b\x75\xfd\xfc\x00\xf6\x0f\x00\x6c\
\x45\x01\x80\x2b\xa9\x4d\x82\xd4\x4e\x81\x8f\xb7\x9d\x26\xc7\xda\
\x58\x5f\x02\x28\x00\xad\xb0\xad\x36\xb6\x6c\xf0\xd0\xf5\x6f\xd6\
\xcf\x0f\xe0\x7c\x01\xc0\x16\x14\x00\xb8\x56\xa7\xcc\x1c\x19\x16\
\x19\x24\x8f\xb5\xbd\x5c\x3e\xb6\xf8\x75\x00\x05\xa0\xf5\x2a\xb7\
\xd6\xd4\x2f\x1b\x2c\x5b\x22\xd5\x5d\xee\x14\x09\xb2\x7f\x00\x60\
\x25\x0a\x00\x5c\x2d\xcb\x28\x01\xf9\xe9\x79\xf2\xe7\xd4\xc9\x96\
\x4e\x0c\xa4\x00\x24\x4e\xe5\xba\x63\x72\xe0\xde\xb5\x72\xe4\xd2\
\x27\xeb\xe7\x07\x50\x04\x00\x4b\x50\x00\xe0\x7a\x67\x64\x66\x4b\
\xbf\xf4\xfe\x72\x7f\xea\x44\xd9\x93\xb4\x40\xbb\xc8\xcd\x40\x01\
\x48\xbc\xd8\xb6\xc2\x37\x2e\xab\x3f\x5f\xe0\x73\x37\x88\x04\x28\
\x02\x80\x99\x28\x00\xf0\x04\xb5\x3a\x20\x37\xbd\x9f\xfc\xba\xdd\
\xa5\xb2\xdd\x82\xc3\x83\x28\x00\x26\xa9\x10\xd9\xfb\xcf\x9d\x72\
\x78\xc1\xcb\x72\xfc\xc2\xfb\xeb\x37\x12\x4a\xd2\x3f\x7f\x00\xad\
\x47\x01\x80\x67\xa8\x73\x03\x2e\xc8\xe8\x2d\x3f\x6b\x3f\xd6\xf4\
\x1d\x03\x29\x00\x26\xdb\x5a\x23\xfb\xff\xf2\xbe\x7c\x3c\xf5\x19\
\xa9\xee\x76\xa7\xd4\xb5\xbf\x56\xfb\x1b\x00\x68\x1d\x0a\x00\x3c\
\xe7\x9c\x68\x2f\x99\x9f\x36\x42\x96\x25\x97\x48\x95\x49\x2b\x04\
\x28\x00\xd6\x50\xc7\x0e\x1f\xb8\x7b\xb5\x1c\x19\xf1\x98\xd4\x7c\
\xeb\x17\x52\xc7\x89\x83\x40\xc2\x50\x00\xe0\x49\xea\xec\x80\xf1\
\x91\xc1\xf2\x78\xdb\xcb\xa5\xd2\x84\xad\x83\x29\x00\xd6\xda\xbd\
\xec\xa0\x1c\xba\xee\x0d\x39\xd6\xeb\x41\xa9\xfd\xd2\x4d\x4c\x14\
\x04\x12\x80\x02\x00\xcf\x52\xf3\x02\x2e\xcc\xe8\x2d\xb7\xb5\x1b\
\x2f\xab\x82\x65\x52\x95\xc0\xe3\x84\x29\x00\x36\x50\xf3\x03\x9e\
\xdb\x29\x87\xcb\x97\x48\xd5\xb9\xbf\x93\xba\xf4\xeb\xb5\xbf\x0b\
\x80\xe6\xa3\x00\xc0\xf3\x3a\x47\x73\x64\x62\x78\xa8\x3c\x9d\x32\
\x5d\x2a\x02\xf3\xb4\x2f\x41\x3c\x28\x00\x36\x3a\x31\x3f\xe0\x68\
\xe1\xdf\xa4\xf6\xcb\x37\x89\x24\xf1\x34\x00\x88\x07\x05\x00\xbe\
\xa0\x26\x08\xaa\xd3\x04\x7f\xda\x7e\x8c\x2c\x4f\x2e\x6d\xf5\xc6\
\x41\x14\x00\xfb\xed\x79\x6d\x5f\x6c\x13\xa1\x9a\xef\xdc\xc6\x6e\
\x82\x40\x1c\x28\x00\xf0\x15\x55\x04\xf2\xd2\x07\xc8\xdf\x52\xa7\
\xca\xc6\xe0\xec\xd8\x59\x02\x75\x4d\x7c\x31\x4e\x85\x02\xe0\x0c\
\x95\xeb\x8f\xc5\xe6\x06\xd4\x7c\xfb\x56\xed\x6f\x04\xe0\xe4\x28\
\x00\xf0\x25\x35\x3f\x60\x42\x78\x88\xfc\xa3\xed\x34\xd9\x12\x98\
\x13\x3b\x4f\xa0\x25\x45\x80\x02\xe0\x1c\xbb\x57\x7c\x24\x87\x4b\
\x9e\x97\xda\x0c\xe6\x04\x00\x2d\x41\x01\x80\xaf\xa9\x93\x05\xa7\
\x85\x0b\xe4\xf9\x94\x19\xb2\x2d\x30\xb7\xd9\x4f\x04\x28\x00\xce\
\xa2\x26\x07\x1e\xcd\xff\x2b\xbb\x07\x02\x2d\x40\x01\x00\x32\xeb\
\x27\x0a\x4e\x0b\x15\xc4\x26\x0a\x6e\x0d\xcc\x91\x8f\x92\x16\x4a\
\xed\x49\x56\x0d\x50\x00\x1c\xa6\x42\xe4\xe0\x2d\xef\x48\xed\x69\
\x37\x68\x7f\x2b\x00\x4d\xa3\x00\x00\x9f\xa2\xe6\x08\x0c\x49\x1f\
\x28\xbf\x4b\x9d\x20\xeb\x82\xe5\xb2\x2f\x69\x81\x1c\x49\x5a\xa4\
\x95\x01\x0a\x80\xf3\xec\x7b\x72\x7b\x6c\x9f\x80\xc6\x83\x1c\x80\
\xa6\x51\x00\x80\xcf\x70\x7e\x46\x6f\x99\x19\x2a\x94\x3f\xa5\x4e\
\x8e\x95\x81\xfd\x46\x19\x38\x6c\x94\x01\xb5\x9f\xc0\x71\x0a\x80\
\xe3\xa8\x5d\x03\x3f\x9a\xfd\x22\xcb\x02\x81\x66\xa2\x00\x00\xcd\
\xd0\x29\x9a\x23\x03\xd3\x07\xc8\x4f\xd2\x46\xcb\x92\x94\x2b\xa4\
\xe2\x82\xbb\x64\xcf\x43\x9b\xb4\x10\x82\xbd\x0e\xde\xfa\x2e\x1b\
\x04\x01\xcd\x44\x01\x00\xe2\x30\xae\x57\xa9\x2c\x79\xe4\x5d\x2d\
\x80\x60\xaf\x03\xbf\x5d\x23\x35\xdf\xfc\x85\x36\xd0\x01\xd0\x51\
\x00\x80\x38\x0c\xbb\xa4\x44\x9e\x78\x64\x99\x16\x40\xb0\xd7\xfe\
\x3f\x6f\x92\xea\x33\xef\xd6\x06\x3a\x00\x3a\x0a\x00\x10\x07\x0a\
\x80\x33\x51\x00\x80\xe6\xa3\x00\x00\x71\xa0\x00\x38\x13\xaf\x00\
\x80\xe6\xa3\x00\x00\x71\xa0\x00\x38\x13\x93\x00\x81\xe6\xa3\x00\
\x00\x71\xa0\x00\x38\xcf\xc6\x75\x1f\xc9\xaf\x16\xfd\x51\x46\xa7\
\x0f\x91\xbb\xdb\x5d\x26\x6b\x82\x65\x52\x73\x92\xcd\x9c\x00\xbf\
\xa3\x00\x00\x71\xa0\x00\x38\xcf\x33\x7f\x5f\x21\x23\xfb\x95\x4b\
\x56\x66\x8e\x9c\x15\xed\x29\xff\x9b\xd1\x27\x76\xde\xc3\xa3\x6d\
\xa7\xc6\xf6\x70\x68\x3c\xf8\x01\x7e\x47\x01\x00\xe2\x40\x01\x70\
\x96\x1d\x1f\x54\xcb\xed\x37\x3d\x2a\xdd\xbf\xd1\xff\x93\xbf\x91\
\xda\xd5\xb1\xb3\x51\x06\xbe\x9f\x71\x89\x0c\x4e\xcf\x93\x9f\xb7\
\x1f\x27\x6b\x83\xe5\xda\x20\x08\xf8\x15\x05\x00\x88\x03\x05\xc0\
\x59\xfe\xfe\xc8\x5b\x32\xb4\x67\xb1\x9c\xfe\xb9\x6c\xed\x6f\xa5\
\x9c\x91\x99\x2d\xe7\x44\x7b\x49\xdf\xf4\xfe\xb2\x20\x6d\x94\x2c\
\x4f\x2e\xd5\x06\x43\xc0\x6f\x28\x00\x40\x1c\x28\x00\xce\xf1\xfa\
\x2b\x5b\xa5\x64\xe2\x8d\xd2\xf9\x2b\xbd\xb5\xbf\x53\x63\xea\xa9\
\x40\x8f\x68\x4f\xe9\x67\x14\x81\x2b\x8d\x22\xb0\x2a\x58\xa6\x0d\
\x8a\x80\x5f\x50\x00\x80\x38\x50\x00\x9c\x61\xf9\xb2\x9d\x72\x65\
\xe9\x9d\x72\xf6\xb7\x07\x69\x7f\xa3\x93\x51\x45\x40\xcd\x13\xc8\
\x4b\x1f\x20\xd7\xa4\x8d\x96\x2d\x81\x39\xcd\x3a\x06\x1a\xf0\x12\
\x0a\x00\x10\x07\x0a\x80\xfd\x96\xbe\xb8\x49\xe6\x4e\xbf\x55\xce\
\xeb\x30\x54\xfb\xfb\xb4\xc4\xd9\xd1\x5e\x32\x3c\x32\x48\x1e\x4e\
\x9d\x22\x47\xdb\x2c\xd6\x06\x49\xc0\xab\x28\x00\x40\x1c\x28\x00\
\xf6\xd9\xfe\x41\xb5\xf1\xd9\xbf\x25\x53\x8b\xae\x91\x73\xbe\x93\
\xaf\xfd\x6d\xe2\xa1\x9e\x08\xe4\x66\xf4\x8d\xcd\x0f\x50\x13\x05\
\xab\x59\x3e\x08\x1f\xa0\x00\x00\x71\xa0\x00\x58\x6f\x67\x45\x9d\
\xbc\xb2\x64\x93\x5c\xbf\xf8\x3e\xc9\xcf\x9e\x21\xdd\xbf\xfe\xef\
\x19\xff\x89\xd2\x3d\xda\x53\x46\x47\x06\xcb\xc3\xa9\x93\xe5\x60\
\xd2\x42\x6d\xc0\x04\xbc\x84\x02\x00\xc4\x81\x02\x60\xad\x95\xef\
\x54\xca\xaf\x6f\x79\x4c\xc6\x0f\x59\x10\x7b\xe4\xdf\xe1\xb4\x1c\
\xed\x6f\x92\x28\xea\x69\xc0\x25\xe9\xfd\xe4\x9a\xb4\x22\x59\x1b\
\x2c\x93\x2a\x5e\x0b\xc0\xa3\x28\x00\x40\x1c\x28\x00\xd6\x50\xbb\
\xfb\xfd\xe9\xbe\x17\x65\xe6\x84\x1b\xe4\xa2\xee\x45\x92\xf5\xc5\
\x9e\xda\xdf\xc2\x2c\x6a\x92\xe0\xe4\xf0\x50\x79\x29\xa5\x58\x8e\
\x24\x2d\xd2\x06\x4f\xc0\xed\x28\x00\x40\x1c\x28\x00\xe6\xda\xbe\
\xb5\x4a\xfe\xf1\xd8\x3b\xb2\xb8\xf4\xd7\xd2\xef\x82\xc9\xd2\xa5\
\x19\x4b\xfc\xcc\xd0\x21\x33\x5b\x46\x46\xf2\xe5\xf1\xb6\x97\xf3\
\x4a\x00\x9e\x43\x01\x00\xe2\x40\x01\x30\xc7\xce\x0a\x91\x57\x96\
\x6c\x94\x9b\x7e\xfc\x47\x19\xde\xb7\x54\xba\x7f\xbd\x9f\xfc\xcf\
\xe7\xf4\xcf\xdf\x6a\xf9\x91\x3c\xf9\x43\xea\x24\xd9\x9d\x34\x5f\
\x1b\x44\x01\xb7\xa2\x00\x00\x71\xa0\x00\x24\xde\xca\x77\x2b\xe5\
\xb7\xbf\x7c\x52\x26\x8f\xbc\x5a\xce\xf9\xf6\x20\xe9\x70\x5a\xd3\
\xbb\xfa\xd9\xa5\x77\x7a\x3f\xb9\xb3\xdd\x65\x52\x11\x98\xa7\x0d\
\xa4\x80\x1b\x51\x00\x80\x38\x50\x00\x12\x67\xd3\xfa\xc3\xf2\xd7\
\x3f\xbc\x12\x5b\xd3\x7f\x61\x97\x11\xd2\xe1\xf3\xe6\x4d\xf0\x6b\
\x2d\x75\xc0\xd0\x2f\xda\x8d\x97\x0f\x02\x73\xd9\x38\x08\xae\x47\
\x01\x00\xe2\x40\x01\x68\x3d\xf5\x9e\xff\x9f\x4f\xae\x92\xeb\x16\
\xdd\x27\xfd\xce\x9f\x64\xea\xcc\xfe\x44\xba\x20\xa3\xb7\xfc\xac\
\xfd\xd8\xd8\xee\x81\x8d\x07\x54\xc0\x4d\x28\x00\x40\x1c\x28\x00\
\xf1\xab\xd8\x5e\x23\xaf\xbd\xf4\xbe\xdc\xf9\xf3\xc7\xa4\x28\x6f\
\x8e\x74\xfc\x42\xae\xf6\xf9\x3a\xdd\x79\xd1\x4b\xe4\x26\xa3\x04\
\xf0\x24\x00\x6e\x46\x01\x00\xe2\x40\x01\x68\xb9\x8a\xed\xb5\xb1\
\xf7\xfc\x0f\xde\xbb\x44\x66\x8c\xbb\x4e\xba\xa9\x09\x7e\x4d\x7c\
\xb6\x6e\xf1\x83\x8c\x4b\xe4\x96\xf6\xe3\x64\xbb\x51\x02\x1a\x0f\
\xac\x80\x1b\x50\x00\x80\x38\x50\x00\x9a\xef\xc3\x1d\xb5\xb2\x7e\
\xcd\xc1\xd8\xe7\x75\x55\xf9\x5d\x72\x7e\xe7\x42\xed\xf3\x74\xab\
\x1f\x66\xf4\x96\xdb\xdb\x5d\x2a\xbb\x02\xac\x0e\x80\xfb\x50\x00\
\x80\x38\x50\x00\x4e\x4d\x6d\xdd\xfb\xfe\xa6\x23\xb2\xe4\xd9\xb5\
\xf2\xf3\x9f\xfc\x59\xfa\x5d\x38\x59\xfb\x1c\xbd\xa0\x57\x7a\x3f\
\x79\x20\x75\x12\xfb\x04\xc0\x75\x28\x00\x40\x1c\x28\x00\x27\xb7\
\x6d\xcb\x71\x79\xf3\xd5\x6d\x72\xcf\x1d\x4f\x9f\x78\xcf\x6f\xdd\
\x0e\x7e\x76\x28\x88\x0c\x94\xa7\x53\xa6\xcb\xd1\x24\xb6\x0d\x86\
\x7b\x50\x00\x80\x38\x50\x00\x9a\xb6\x63\x5b\xb5\xac\x5e\xbe\x47\
\x1e\x79\x70\x69\xec\x3d\xbf\x19\x07\xf6\x38\x91\x3a\x3f\xe0\xb2\
\xf0\x10\x79\x2b\xb9\x44\x6a\x38\x49\x10\x2e\x41\x01\x00\xe2\x40\
\x01\xf8\x4f\xea\x3d\xff\x86\xb5\x87\x62\xcb\xfa\xae\x2a\xbb\x4b\
\xce\xcf\x1a\xa6\x7d\x66\x5e\xd7\x39\x33\x47\xca\x42\x23\xe4\xfd\
\x20\xcb\x03\xe1\x0e\x14\x00\x20\x0e\x14\x80\x7a\xea\x3d\xff\x96\
\x4d\x47\xe4\xb5\x97\xb6\xc8\xad\xd7\x3f\x2c\x7d\xbe\x3f\x41\x4e\
\xff\x9c\xb3\x76\xf0\xb3\xd2\xb9\xd1\x5e\x72\x63\xfb\xb1\xcc\x07\
\x80\x2b\x50\x00\x80\x38\x50\x00\x44\xb6\x6d\xad\x8a\x2d\xeb\xfb\
\xfd\xdd\xff\x94\xe1\xbd\x67\x49\x96\xc7\xdf\xf3\x37\x97\xda\x32\
\xf8\xa1\xd4\xc9\x72\x9c\x63\x84\xe1\x70\x14\x00\x20\x0e\x7e\x2e\
\x00\x6a\x23\x1f\x75\x4c\xef\xdf\x1f\x79\x2b\xb6\x6f\x7f\xb7\xaf\
\xb9\x7b\x3d\xbf\x19\x46\x46\x06\xc9\xb2\xe4\x12\x36\x09\x82\xa3\
\x51\x00\x80\x38\xf8\xb1\x00\xa8\xc7\xfd\x5b\xdf\x3f\x26\x4b\x5f\
\xdc\x24\x0b\x8a\x7f\x29\xdf\xeb\x30\x44\xfb\x5c\x50\xaf\x73\x54\
\xcd\x07\x18\x2e\x07\x78\x15\x00\x07\xa3\x00\x00\x71\xf0\x5b\x01\
\x50\xb3\xfb\x57\x2d\xdf\x1d\x5b\xcf\x9f\x7d\xe6\x68\xed\xf3\x80\
\xee\xe2\x8c\x3e\x72\x5f\xea\x44\xa9\x65\x55\x00\x1c\x8a\x02\x00\
\xc4\xc1\x2f\x05\x60\xe7\x0e\x35\xc9\xef\xa8\x3c\xf0\x9b\x7f\x4a\
\xff\x0b\xa7\xc8\x19\x9f\x77\xdf\xbe\xfd\x76\x1a\x1e\x19\x24\xeb\
\x82\xe5\xda\xc0\x0b\x38\x01\x05\x00\x88\x83\x5f\x0a\xc0\x33\x8f\
\xaf\x90\xa2\xfe\xb3\xa5\xcb\x57\x7a\x6b\x9f\x01\x4e\xad\x7b\x34\
\x57\x16\xa4\x8d\xd2\x06\x5e\xc0\x09\x28\x00\x40\x1c\xbc\x5e\x00\
\x96\xbd\xb1\x43\x66\x8c\xbf\x5e\x7a\x7c\x63\x80\xf6\xbb\xa3\x65\
\xfa\xa4\xf7\x97\x17\x52\x66\x68\x83\x2f\x60\x37\x0a\x00\x10\x07\
\xaf\x16\x80\x0d\x6b\x0f\xca\x4f\x16\xde\x2b\xdf\xef\x58\x20\x67\
\x7c\x3e\x47\xfb\xbd\xd1\x72\x9d\x32\x73\xe4\xf2\x70\x81\x54\xb1\
\x4d\x30\x1c\x86\x02\x00\xc4\xc1\x6b\x05\x40\x4d\xf2\xfb\xdd\xed\
\x4f\x4a\xee\x39\xe3\xa5\xf3\x57\x7a\xfb\x7a\x33\x1f\x33\xe4\x66\
\xf4\x95\x27\xda\x4e\xd3\x06\x60\xc0\x4e\x14\x00\x20\x0e\x5e\x2a\
\x00\x4f\x3c\xba\x4c\x0a\x7b\xcf\x92\x33\xbf\x95\x27\x1d\x4e\xe3\
\xae\xdf\x0c\xea\x29\xc0\xa4\xf0\x50\xa9\x4a\x62\x45\x00\x9c\x83\
\x02\x00\xc4\xc1\xed\x05\x40\xad\xe9\x7f\xfb\xf5\x1d\x32\x75\xf4\
\x35\xb1\xf5\xfc\x1d\xbf\xc8\x2e\x7e\x66\xcb\xce\xe8\x2b\x4f\xb7\
\x9d\xae\x0d\xc2\x80\x5d\x28\x00\x40\x1c\xdc\x5a\x00\x54\xf0\xaf\
\x5d\xb5\x5f\xae\x5b\x74\xaf\x5c\xd4\xa3\x48\xba\x7c\xb5\x8f\xf6\
\xbb\xc1\x1c\x5d\xa2\x39\x72\x79\x68\x18\xfb\x02\xc0\x31\x28\x00\
\x40\x1c\x5c\x57\x00\x2a\x44\x36\x6f\xf8\x58\x7e\x73\xdb\x13\x92\
\xf7\xbf\x53\xe5\xec\x6f\x0f\x92\xd3\x3f\xa7\xff\x5e\x30\x8f\x3a\
\x32\x38\x27\xa3\xaf\xbc\x9c\x52\xac\x0d\xc4\x80\x1d\x28\x00\x40\
\x1c\xdc\x54\x00\xd4\xf6\xbd\xff\xf7\xf0\x1b\x32\x7e\xc8\x42\xf9\
\x41\x56\xa1\x74\x60\x76\xbf\x6d\xd4\xbe\x00\xf3\x42\x23\xb4\x81\
\x18\xb0\x03\x05\x00\x88\x83\x1b\x0a\x80\x3a\xad\xef\xc5\x67\xd7\
\xca\xec\xcb\x7f\x2e\xb9\x67\x8f\x93\xce\x5f\xbe\x44\xfb\x3d\x60\
\xad\x0e\x99\xd9\xd2\x37\xbd\xbf\x6c\x0b\xcc\xd5\x06\x63\xc0\x6a\
\x14\x00\x20\x0e\x4e\x2e\x00\xea\xb4\xbe\xb7\x5e\xdb\x26\xd7\x2f\
\xbe\x3f\xf6\xb8\xff\xcc\x6f\xe6\x69\x3f\x3f\xec\x73\x6e\xb4\x97\
\xfc\x21\x75\x92\x36\x18\x03\x56\xa3\x00\x00\x71\x70\x62\x01\x50\
\x13\xfc\x56\x2f\xdf\x23\x77\xdd\xfa\xb8\x14\xe5\xcd\x91\xf3\xce\
\x28\x60\x3d\xbf\x03\xa9\x25\x81\xe3\xc2\x83\x99\x0c\x08\xdb\x51\
\x00\x80\x38\x0c\xed\x59\x2c\x8f\xff\xe5\x0d\x2d\x84\xed\xb2\x61\
\xed\x21\x79\xf8\x81\x97\x65\xfa\xd8\xeb\xe4\xe2\x1e\xa3\xe5\x8c\
\x2f\x70\x68\x8f\x53\xa9\xc9\x80\x17\x66\xf4\x96\xd5\xc1\x52\x6d\
\x40\x06\xac\x44\x01\x00\xe2\x30\xe0\xc2\x29\xb1\xc0\x6d\x1c\xc4\
\x56\xdb\xba\xf9\xa8\x3c\xf3\xf7\x15\xb2\x68\xd6\x1d\xd2\xef\xfc\
\xc9\x2c\xeb\x73\x89\x33\xa3\x3d\xe5\xce\x76\x97\x69\x03\x32\x60\
\x25\x0a\x00\x10\x87\xec\xb3\xc6\xca\x7d\x77\x3e\xa3\x05\xb2\x55\
\x2a\xb6\xd5\xc8\x2b\x4b\x36\xc9\x0d\x57\x3d\x20\x05\x97\x94\xc8\
\xd9\xff\x3d\x50\xfb\x19\xe1\x5c\x59\x99\xd9\x52\x14\xc9\xe7\x35\
\x00\x6c\x45\x01\x00\xe2\xa0\x26\xd6\xdd\xf8\xe3\x3f\x4a\xc5\xf6\
\x5a\x2d\x9c\xcd\xb4\xb3\x42\xe4\xdd\xb7\x3e\x8c\xad\xe7\x9f\x50\
\x78\x65\xec\x3d\x7f\xe3\x9f\x0d\xce\xa7\x5e\x03\xfc\x20\xa3\xb7\
\x6c\x0e\xce\xd1\x06\x65\xc0\x2a\x14\x00\x20\x0e\x1d\x4e\xcb\x96\
\x92\x09\x3f\x93\x55\xef\xee\xd6\x42\xda\x2c\xeb\xdf\x3b\x20\x7f\
\x79\xe0\x65\x29\x9b\x72\xb3\x64\x9f\x35\x46\x3a\x7e\x81\xed\x7b\
\xdd\xac\x47\x34\x57\x1e\x4c\x9d\xac\x0d\xca\x80\x55\x28\x00\x40\
\x9c\x06\xfc\x70\x6a\x2c\x90\x1b\x07\x75\xa2\x6d\xd9\x7c\x54\x9e\
\x7e\x7c\xb9\x5c\x33\xff\x77\xb1\x7f\xb3\xcb\x57\x7b\x6b\x3f\x0b\
\xdc\x47\xad\x06\x28\x09\x15\x6a\x83\x32\x60\x15\x0a\x00\x10\xa7\
\x6e\x5f\xeb\x27\xf3\x66\xdc\x26\xef\xad\xd8\xab\x85\x76\x22\xd4\
\xbf\xe7\xdf\x28\xb7\xdd\xf0\x17\x19\x35\x60\x36\xeb\xf9\x3d\x46\
\x6d\x0a\xd4\x33\xbd\xaf\x1c\x6b\xb3\x58\x1b\x98\x01\x2b\x50\x00\
\x80\x56\xe8\x75\xee\xa5\x72\xcf\x1d\x4f\xc9\xf6\x0f\xaa\xb4\x00\
\x6f\x0d\xf5\x9e\xff\xfe\xbb\x9e\x91\xcb\x4f\x9c\xd6\xc7\x7a\x7e\
\x6f\x52\x5b\x03\xaf\x0b\x96\x6b\x03\x33\x60\x05\x0a\x00\xd0\x0a\
\x1d\xbf\x90\x2b\x45\x79\xb3\xe5\xd9\x27\x57\xc6\x26\xe8\x35\x0e\
\xf2\x96\x5a\xbf\xe6\xa0\x3c\xf6\xf0\xeb\x32\xbf\xf8\x97\xf2\xc3\
\xae\x23\xe5\x8c\xcf\xb3\x9e\xdf\xcb\xd4\x09\x81\xcc\x03\x80\x5d\
\x28\x00\x40\x2b\x75\xff\x7a\xff\xd8\x9d\xba\xda\x77\x7f\xfb\xd6\
\xf8\x9e\x04\xa8\x03\x7b\x9e\x7f\x6a\x75\x6c\x65\x41\xdf\xf3\x27\
\x4a\xd6\x97\x7a\x69\xff\x0e\xbc\x27\x2b\x33\x47\x16\xa7\x8d\xd2\
\x06\x66\xc0\x0a\x14\x00\x20\x01\x7a\x7c\xa3\xbf\x8c\x1f\xba\x50\
\x1e\xba\xff\x5f\xb2\x7c\xd9\x4e\xf9\x70\x47\xf3\x96\x07\xaa\xf7\
\xfc\xaf\xbd\xbc\x45\x7e\xfb\xcb\x27\x64\x64\xbf\x72\xe9\xfc\x15\
\x26\xf8\xf9\xc9\x19\x99\xd9\x32\x2a\x92\xaf\x0d\xcc\x80\x15\x28\
\x00\x40\x82\xa8\xc7\xf5\x17\x75\x1f\x25\x0b\x4b\x6e\x97\xc7\x1e\
\x7e\x43\xde\x5c\xfa\x81\x6c\x5a\x7f\x58\x0b\xfd\xed\x1f\x54\xcb\
\xba\xd5\xfb\x65\xe9\x8b\x9b\x62\x85\xe1\xf2\x31\xd7\x4a\xf7\xaf\
\xf5\xe3\x3d\xbf\x0f\xa9\xfd\x00\xce\xcf\xe8\x2d\x35\x6c\x08\x04\
\x1b\x50\x00\x80\x04\x53\x45\xe0\xfc\xce\x85\x32\x6d\xdc\x75\x72\
\xc7\xcd\x7f\x93\xc7\xff\xf2\x66\x6c\xbb\xde\xe7\x9e\x5a\x2d\x4f\
\x3e\xba\x4c\x1e\xbc\xe7\x05\xb9\xf1\x47\x7f\x8c\x3d\x31\x50\x4f\
\x0e\x08\x7e\x7f\x53\xcb\x01\xf7\x04\xe6\x6b\x83\x33\x60\x36\x0a\
\x00\x60\x32\x75\x30\x8f\x2a\x04\x39\x67\x8f\x95\x33\xbf\x31\x40\
\xfb\xdf\xe1\x6f\x6a\x1e\xc0\x9b\xc9\x25\xda\xe0\x0c\x98\x8d\x02\
\x00\x00\x36\xea\x98\x99\x2d\x7f\x4f\xb9\x5c\x1b\x9c\x01\xb3\x51\
\x00\x00\xc0\x46\xaa\x00\xfc\x36\x75\x82\x36\x38\x03\x66\xa3\x00\
\x00\x80\x8d\xd4\x4a\x80\xeb\xda\x8f\xd1\x06\x67\xc0\x6c\x14\x00\
\x00\xb0\x91\xda\x12\x78\x56\x68\xb8\x36\x38\x03\x66\xa3\x00\x00\
\x80\x8d\x54\x01\x98\x18\x1e\xaa\x0d\xce\x80\xd9\x28\x00\x00\x60\
\xa3\x0e\x86\x11\x6c\x06\x04\x1b\x50\x00\x00\xc0\x46\x6a\x33\xa0\
\xbc\xf4\x3c\x6d\x70\x06\xcc\x46\x01\x00\x00\x1b\xa9\x02\x90\x9d\
\xd1\x57\x1b\x9c\x01\xb3\x51\x00\x00\xc0\x46\xaa\x00\xfc\x30\xa3\
\xb7\x36\x38\x03\x66\xa3\x00\x00\x80\x8d\x54\x01\xe8\x99\xde\x4f\
\x1b\x9c\x01\xb3\x51\x00\x00\xc0\x46\xaa\x00\x0c\x48\x1f\xa0\x0d\
\xce\x80\xd9\x28\x00\x00\x60\x23\xb5\x0a\x60\x68\x64\xa0\x36\x38\
\x03\x66\xa3\x00\x00\x80\x8d\xd4\x3e\x00\xa3\x23\x83\xb5\xc1\x19\
\x30\x1b\x05\x00\x00\x6c\xa4\x0a\x40\x49\xa8\x50\x1b\x9c\x01\xb3\
\x51\x00\x00\xc0\x46\xea\x2c\x80\xeb\x39\x0b\x00\x36\xa0\x00\x00\
\x80\x8d\xd4\x69\x80\xbf\xe3\x34\x40\xd8\x80\x02\x00\x00\x36\xca\
\x32\x0a\xc0\x13\x6d\x2f\xd7\x06\x67\xc0\x6c\x14\x00\x00\xb0\x51\
\x56\x66\x8e\xac\x48\x2e\xd5\x06\x67\xc0\x6c\x14\x00\x00\xb0\x51\
\x97\x68\xae\x1c\x4a\x5a\xa4\x0d\xce\x80\xd9\x28\x00\x00\x60\x13\
\xb5\x02\xe0\x92\x8c\xfe\x52\xd7\xc4\xe0\x0c\x98\x8d\x02\x00\x00\
\x36\x51\x13\x00\xa7\x87\x87\x69\x03\x33\x60\x05\x0a\x00\x00\xd8\
\xa4\x73\x34\x47\x6e\x6b\x37\x5e\x1b\x98\x01\x2b\x50\x00\x00\xc0\
\x26\xdd\xa2\xb9\xf2\x62\x4a\xb1\x36\x30\x03\x56\xa0\x00\x00\x80\
\x0d\xd4\x21\x40\xe7\x45\x2f\x91\xbd\x49\x0b\xb4\x81\x19\xb0\x02\
\x05\x00\x00\x6c\xa0\xde\xff\x8f\x8c\xe4\x6b\x83\x32\x60\x15\x0a\
\x00\x00\xd8\xa0\x6b\x34\x57\x6e\x6a\x3f\x56\x1b\x94\x01\xab\x50\
\x00\x00\xc0\x06\x67\x47\x7b\xca\xab\x29\x33\xb5\x41\x19\xb0\x0a\
\x05\x00\x00\x2c\xa6\x0e\x00\xea\x9b\xde\x5f\x3e\x62\x03\x20\xd8\
\x88\x02\x00\x00\x16\x53\xb3\xff\x17\xa7\x8d\xd4\x06\x64\xc0\x4a\
\x14\x00\x00\xb0\xd8\xf7\xa2\xbd\xe4\xf9\x94\x19\xda\x80\x0c\x58\
\x89\x02\x00\x00\x16\x52\x8f\xff\x07\xa5\xe7\xc9\xa1\xa4\x85\xda\
\x80\x0c\x58\x89\x02\x00\x00\x16\x3a\x2b\xda\x53\x6e\x64\xf6\x3f\
\x1c\x80\x02\x00\x00\x16\x51\x9b\xff\x64\x67\xf4\x95\xe5\x41\x8e\
\xff\x85\xfd\x28\x00\x00\x60\x91\x2e\xd1\x1c\x99\x1a\x2a\xd0\x06\
\x62\xc0\x0e\x14\x00\x00\xb0\xc8\x0f\x33\x7a\xcb\x93\x6d\xa7\x69\
\x03\x31\x60\x07\x0a\x00\x00\x58\x20\x2b\x33\x5b\x8a\xc2\xf9\x72\
\x94\xb5\xff\x70\x08\x0a\x00\x00\x58\xe0\x02\xe3\xee\xff\x8f\xa9\
\x93\xb4\x41\x18\xb0\x0b\x05\x00\x00\x4c\xa6\x0e\xfe\x29\x8a\xe4\
\xcb\x01\x96\xfe\xc1\x41\x28\x00\x00\x60\xb2\x8b\x32\xfa\xc8\x9f\
\x53\xa7\x68\x03\x30\x60\x27\x0a\x00\x00\x98\x48\xdd\xfd\x5f\x16\
\x1e\x22\x87\x79\xf7\x0f\x87\xa1\x00\x00\x80\x89\x7a\xa5\xf7\x63\
\xe6\x3f\x1c\x89\x02\x00\x00\x26\xe9\x1a\xcd\x95\xf2\xd0\x08\xa9\
\x6d\x73\xa5\x36\xf8\x02\x76\xa3\x00\x00\x80\x49\x86\x45\x06\xca\
\xaa\x60\x99\x36\xf0\x02\x4e\x40\x01\x00\x00\x13\xa8\x4d\x7f\x7e\
\xd3\xee\x32\xa9\xe1\xee\x1f\x0e\x45\x01\x00\x80\x04\xcb\xca\xcc\
\x91\x99\xa1\x42\xd9\x97\xb4\x40\x1b\x74\x01\xa7\xa0\x00\x00\x40\
\x82\x15\x46\x06\xc9\x6b\xc9\x33\xa5\xae\x89\x41\x17\x70\x0a\x0a\
\x00\x00\x24\xd0\xc5\x19\x7d\xe5\x9e\xd4\x89\x72\x2c\x69\xb1\x36\
\xe0\x02\x4e\x42\x01\x00\x80\x04\xe9\x1e\xed\x29\x57\xa6\x15\xc9\
\xee\xc0\x7c\x6d\xb0\x05\x9c\x86\x02\x00\x00\x09\xd0\x21\x33\x5b\
\xa6\x84\x0b\x64\x75\xb0\x8c\x47\xff\x70\x05\x0a\x00\x00\x24\x40\
\x41\x64\xa0\x3c\x93\x32\x5d\xaa\x98\xf5\x0f\x97\xa0\x00\x00\x40\
\x2b\xe5\xa6\xf7\x95\xfb\x53\x27\xca\x21\x0e\xfb\x81\x8b\x50\x00\
\x00\xa0\x15\xd4\x31\xbf\xb7\xb5\x1b\x2f\x3b\x03\xf3\xb4\x01\x16\
\x70\x32\x0a\x00\x00\xc4\xe9\xfb\xd1\x4b\xe4\xe6\xf6\xe3\x64\x7b\
\x60\x2e\xef\xfd\xe1\x3a\x14\x00\x00\x88\xc3\x99\xd1\x9e\xf2\xe3\
\xb4\x22\x79\x3f\x38\x47\x1b\x58\x01\x37\xa0\x00\x00\x40\x0b\xf5\
\x30\xc2\x7f\x7e\x68\xa4\xbc\x17\x2c\xe3\xa0\x1f\xb8\x16\x05\x00\
\x00\x5a\xa0\x7b\x34\x57\xe6\x19\xe1\xbf\x2a\xb9\x4c\xaa\x09\x7f\
\xb8\x18\x05\x00\x00\x9a\xa9\x9b\x11\xfe\x73\x42\x23\x64\x25\xe1\
\x0f\x0f\xa0\x00\x00\x40\x33\xa8\xf0\x2f\x0f\x0d\x37\xc2\xbf\x94\
\xf0\x87\x27\x50\x00\x00\xe0\x14\xba\x1a\xe1\x5f\x46\xf8\xc3\x63\
\x28\x00\x00\x70\x12\xea\xce\xbf\xd4\x08\xff\x55\x41\x1e\xfb\xc3\
\x5b\x28\x00\x00\xf0\x19\xd4\x9d\xff\xac\x50\x61\x6c\xb6\x3f\xe1\
\x0f\xaf\xa1\x00\x00\x40\x13\xd4\x9d\x7f\x89\x71\xe7\xbf\x36\x58\
\x4e\xf8\xc3\x93\x28\x00\x00\xd0\x88\x5a\xea\x57\x6a\xdc\xf9\x6f\
\x0c\xce\x96\x1a\xc2\x1f\x1e\x45\x01\x00\x80\x4f\x69\x08\xff\xad\
\x81\x39\x6c\xf2\x03\x4f\xa3\x00\x00\xc0\x09\x3d\x4e\xcc\xf6\xdf\
\x11\x98\x4b\xf8\xc3\xf3\x28\x00\x00\x90\x59\x3f\xe1\xaf\x3c\x6d\
\xb8\x54\x06\xe6\x73\xb0\x0f\x7c\x81\x02\x00\xc0\xf7\xba\x44\x73\
\x64\x7a\x68\x98\xec\x49\x22\xfc\xe1\x1f\x14\x00\x00\xbe\xd6\xc9\
\x08\xff\xa9\xe1\x02\xd9\x9f\xb4\x90\xf0\x87\xaf\x50\x00\x00\xf8\
\x56\xa7\xcc\x1c\x19\x1b\x1e\x2c\x87\x92\x16\x69\x83\x23\xe0\x75\
\x14\x00\x00\xbe\xa4\xc2\xbf\x28\x92\x6f\xdc\xf9\x2f\xd0\x06\x46\
\xc0\x0f\x28\x00\x00\x7c\x47\x85\xff\x88\xc8\x20\xd9\x1b\x20\xfc\
\xe1\x5f\x14\x00\x00\xbe\x92\x65\x84\x7f\x41\x64\x60\x6c\xb6\x7f\
\xe3\x01\x11\xf0\x13\x0a\x00\x00\xdf\x50\xe1\x3f\xd4\x08\x7f\xb5\
\xce\xbf\xf1\x60\x08\xf8\x0d\x05\x00\x80\x2f\x64\x65\x66\xcb\xf0\
\xc8\x20\xf9\x30\x30\x4f\x1b\x08\x01\x3f\xa2\x00\x00\xf0\x3c\xf5\
\xce\x7f\x5c\x64\x88\xec\xe1\xb1\x3f\xf0\x09\x0a\x00\x00\x4f\x53\
\x9b\xfc\x4c\x0e\x0f\x65\x87\x3f\xa0\x11\x0a\x00\x00\xcf\xea\x6a\
\x84\xff\xb4\x50\x81\xec\x62\x87\x3f\x40\x43\x01\x00\xe0\x49\xdd\
\xa2\xb9\x32\x33\x54\x28\x15\x81\x79\x84\x3f\xd0\x04\x0a\x00\x00\
\xcf\xe9\x11\xed\x29\xe5\x9f\x9c\xea\xa7\x0f\x7c\x00\x28\x00\x00\
\x3c\xe6\x4c\x23\xfc\xe7\x85\x46\xca\x36\x8e\xf4\x05\x4e\x8a\x02\
\x00\xc0\x33\xce\x32\xc2\x7f\x41\xda\x48\xd9\x1a\x98\x43\xf8\x03\
\xa7\x40\x01\x00\xe0\x09\x2a\xfc\x17\xa5\x8d\x92\xf7\x09\x7f\xa0\
\x59\x28\x00\x00\x5c\xef\xec\x68\x2f\x59\x6c\x84\xff\xe6\xe0\x6c\
\xc2\x1f\x68\x26\x0a\x00\x00\x57\x53\xe1\x7f\x65\x5a\x91\x6c\x24\
\xfc\x81\x16\xa1\x00\x00\x70\x2d\x15\xfe\x57\x19\xe1\xbf\x81\xf0\
\x07\x5a\x8c\x02\x00\xc0\x95\xce\x39\x11\xfe\xeb\x83\xe5\x84\x3f\
\x10\x07\x0a\x00\x00\xd7\x39\x27\xda\x53\xae\x8e\x85\x3f\x77\xfe\
\x40\xbc\x28\x00\x00\x5c\x45\xdd\xf9\xd7\x87\x3f\x77\xfe\x40\x6b\
\x50\x00\x00\xb8\x46\x43\xf8\xaf\x23\xfc\x81\x56\xa3\x00\x00\x70\
\x85\x86\x09\x7f\x84\x3f\x90\x18\x14\x00\x00\x8e\xd7\x10\xfe\x3c\
\xf6\x07\x12\x87\x02\x00\xc0\xd1\x1a\xd6\xf9\xb3\xd4\x0f\x48\x2c\
\x0a\x00\x00\xc7\x52\xdb\xfb\xaa\x1d\xfe\xd8\xe4\x07\x48\x3c\x0a\
\x00\x00\x47\x6a\xd8\xdb\x9f\xed\x7d\x01\x73\x50\x00\x00\x38\x4e\
\xfd\xa9\x7e\x1c\xec\x03\x98\x89\x02\x00\xc0\x51\xba\x47\x73\x65\
\x7e\x68\x84\x7c\x10\x98\x6b\x84\xbf\x3e\x68\x01\x48\x0c\x0a\x00\
\x00\xc7\x50\xe1\x5f\x16\x1a\x2e\xdb\x62\xe1\xcf\x9d\x3f\x60\x26\
\x0a\x00\x00\x47\xe8\x66\x84\xff\xac\x50\xa1\xec\x08\xcc\xe3\xce\
\x1f\xb0\x00\x05\x00\x80\xed\xba\x1a\xe1\x5f\x6c\x84\xff\xce\xc0\
\x7c\xa9\x6b\x62\xa0\x02\x90\x78\x14\x00\x00\xb6\xea\x12\xcd\x91\
\xe9\xa1\x61\xb2\x3b\x89\xf0\x07\xac\x44\x01\x00\x60\x9b\xce\x46\
\xf8\x4f\x0d\x17\xc8\xfe\xa4\x85\x84\x3f\x60\x31\x0a\x00\x00\x5b\
\xa8\x3b\xff\x09\xe1\xa1\x72\x28\x69\x91\x36\x30\x01\x30\x1f\x05\
\x00\x80\xe5\x54\xf8\x5f\x16\x1e\x42\xf8\x03\x36\xa2\x00\x00\xb0\
\xd4\xbf\xc3\x7f\xa1\x36\x20\x01\xb0\x0e\x05\x00\x80\x65\xd4\x3b\
\xff\xb1\xe1\xc1\x84\x3f\xe0\x00\x14\x00\x00\x96\x68\x08\xff\xfd\
\x49\x0b\xb4\x81\x08\x80\xf5\x28\x00\x00\x4c\xd7\x29\x33\x47\x46\
\x47\x08\x7f\xc0\x49\x28\x00\x00\x4c\xd5\xd9\x08\xff\x4b\x23\x43\
\x64\x6f\x80\xf0\x07\x9c\x84\x02\x00\xc0\x34\x2a\xfc\x27\x86\x87\
\x4a\x25\x3b\xfc\x01\x8e\x43\x01\x00\x60\x0a\xf5\xce\x7f\x92\x11\
\xfe\x15\x81\x79\x84\x3f\xe0\x40\x14\x00\x00\x09\xa7\x96\xfa\x4d\
\x09\x17\xc8\xd6\xc0\x1c\x0e\xf6\x01\x1c\x8a\x02\x00\x20\xa1\x54\
\xf8\x4f\x33\xc2\x7f\x73\x70\x36\x47\xfa\x02\x0e\x46\x01\x00\x90\
\x30\xea\xb1\xff\xb4\xd0\x30\xd9\x60\x84\x7f\x0d\xe1\x0f\x38\x1a\
\x05\x00\x40\x42\xd4\x87\x7f\x81\xac\x09\x96\x11\xfe\x80\x0b\x50\
\x00\x00\xb4\x9a\x7a\xec\x3f\xc3\xb8\xf3\x5f\x6d\x84\x7f\x35\xe1\
\x0f\xb8\x02\x05\x00\x40\xab\xa8\xf0\x2f\x36\xc2\x7f\x65\xb0\x94\
\xf0\x07\x5c\x84\x02\x00\x20\x6e\x2a\xfc\x67\x86\x0a\x65\x85\x11\
\xfe\x55\x84\x3f\xe0\x2a\x14\x00\x00\x71\x51\xe1\x5f\x62\x84\xff\
\xbb\xc9\xb3\x08\x7f\xc0\x85\x28\x00\x00\x5a\x4c\x85\xff\x2c\xc2\
\x1f\x70\x35\x0a\x00\x80\x16\x69\x08\xff\x77\x08\x7f\xc0\xd5\x28\
\x00\x00\x9a\xad\x5b\x34\x57\x4a\x43\xc3\x4f\x84\xff\x62\x6d\x40\
\x01\xe0\x1e\x14\x00\x00\xcd\xa2\xc2\x7f\xb6\x11\xfe\xf5\x8f\xfd\
\x09\x7f\xc0\xed\x28\x00\x00\x4e\x49\x85\x7f\xb9\x11\xfe\x2b\x92\
\x59\xea\x07\x78\x05\x05\x00\xc0\x49\x75\x25\xfc\x01\x4f\xa2\x00\
\x00\xf8\x4c\x5d\xa3\x39\x52\x1a\x2a\x94\x95\x84\x3f\xe0\x39\x14\
\x00\x00\x4d\x52\x8f\xfd\xd5\x6c\xff\x55\xec\xf0\x07\x78\x12\x05\
\x00\x80\x46\x3d\xf6\x57\xb3\xfd\xdf\x63\x6f\x7f\xc0\xb3\x28\x00\
\x00\xfe\x83\x0a\xff\x12\x23\xfc\xd7\x05\xcb\x39\xd5\x0f\xf0\x30\
\x0a\x00\x80\x4f\xa8\xc7\xfe\xc5\xa1\x42\xd9\x18\x9c\x4d\xf8\x03\
\x1e\x47\x01\x00\x10\xa3\xee\xfc\xd5\xc1\x3e\xef\x13\xfe\x80\x2f\
\x50\x00\x00\xc4\x66\xfb\x5f\x11\x1a\x26\xdb\x02\x73\xa5\x96\xf0\
\x07\x7c\x81\x02\x00\xf8\x9c\xba\xf3\x9f\x16\x2a\x90\x8a\xc0\x3c\
\x23\xfc\xf5\x41\x02\x80\x37\x51\x00\x00\x1f\xeb\x6c\xdc\xf9\x4f\
\x37\xee\xfc\x77\x25\xcd\x93\xba\x26\x06\x08\x00\xde\x45\x01\x00\
\x7c\xaa\x93\x11\xfe\x13\xc3\x43\x65\x5f\xd2\x02\xc2\x1f\xf0\x21\
\x0a\x00\xe0\x43\x9d\x32\x73\x64\x6c\x78\xb0\x1c\x30\xc2\xbf\xf1\
\xa0\x00\xc0\x1f\x28\x00\x80\xcf\x74\x36\xc2\xbf\x28\x92\x2f\xfb\
\x09\x7f\xc0\xd7\x28\x00\x80\x8f\xa8\xf0\x1f\x65\x84\xff\xde\x00\
\xe1\x0f\xf8\x1d\x05\x00\xf0\x09\xc2\x1f\xc0\xa7\x51\x00\x00\x1f\
\x50\xef\xfc\x47\x44\x06\x11\xfe\x00\x3e\x41\x01\x00\x3c\x2e\x2b\
\x16\xfe\xf9\x52\x19\x98\xaf\x0d\x00\x00\xfc\x8b\x02\x00\x78\x98\
\x0a\x7f\xf5\xd8\x7f\x37\xe1\x0f\xa0\x11\x0a\x00\xe0\x51\xea\xb1\
\xff\x98\xf0\x60\xd9\x11\x98\xcb\x3a\x7f\x00\x1a\x0a\x00\xe0\x41\
\x6a\x93\x9f\x4b\xc3\x43\x64\x6b\x60\x0e\xe1\x0f\xa0\x49\x14\x00\
\xc0\x63\x54\xf8\x4f\x30\xc2\x7f\x73\x60\x36\x07\xfb\x00\xf8\x4c\
\x14\x00\xc0\x43\xd4\xde\xfe\x93\xc3\x43\x65\x03\x47\xfa\x02\x38\
\x05\x0a\x00\xe0\x11\x5d\x8c\xf0\x57\xa7\xfa\xad\x0b\x96\x13\xfe\
\x00\x4e\x89\x02\x00\x78\x40\x57\x23\xfc\x8b\x43\xc3\x08\x7f\x00\
\xcd\x46\x01\x00\x5c\x4e\x85\x7f\x49\xa8\x50\xd6\x04\xcb\x08\x7f\
\x00\xcd\x46\x01\x00\x5c\xac\x5b\x34\x57\x4a\x43\xc3\xe5\x3d\x23\
\xfc\xab\x09\x7f\x00\x2d\x40\x01\x00\x5c\x4a\x85\x7f\x79\x68\x04\
\xe1\x0f\x20\x2e\x14\x00\xc0\x85\x54\xf8\xcf\x36\xc2\x7f\x75\x32\
\xe1\x0f\x20\x3e\x14\x00\xc0\x65\x7a\x18\xe1\x3f\x2f\x6d\x84\xac\
\x22\xfc\x01\xb4\x02\x05\x00\x70\x91\x33\xa3\x3d\x65\x41\xda\x48\
\x59\xcd\x63\x7f\x00\xad\x44\x01\x00\x5c\x42\xdd\xf9\x2f\x34\xc2\
\x9f\x77\xfe\x00\x12\x81\x02\x00\xb8\x80\x0a\x7f\x75\xe7\xaf\xc2\
\x9f\xa5\x7e\x00\x12\x81\x02\x00\x38\x5c\xc3\x63\x7f\xc2\x1f\x40\
\x22\x51\x00\x00\x07\x53\xe1\xaf\x1e\xfb\xb3\xc9\x0f\x80\x44\xa3\
\x00\x00\x0e\xd5\x70\xe7\xcf\xf6\xbe\x00\xcc\x40\x01\x00\x1c\x48\
\xbd\xf3\x9f\x9f\x36\x42\xd6\x13\xfe\x00\x4c\x42\x01\x00\x1c\xa6\
\x61\x9d\xff\x46\xc2\x1f\x80\x89\x28\x00\x80\x83\x74\x37\xc2\x7f\
\x4e\xda\x70\xd9\x14\x98\x2d\xb5\x84\x3f\x00\x13\x51\x00\x00\x87\
\x50\xe1\x5f\x1e\x1a\x2e\x5b\x08\x7f\x00\x16\xa0\x00\x00\x0e\xa0\
\xc2\xbf\x34\x54\x28\x1f\x04\xe6\x10\xfe\x00\x2c\x41\x01\x00\x6c\
\xa6\x0e\xf6\x29\x33\xee\xfc\x77\x04\xe6\x12\xfe\x00\x2c\x43\x01\
\x00\x6c\xd4\xd5\x08\xff\x62\xe3\xce\x7f\x57\x60\xbe\xd4\x35\xf1\
\x05\x05\x00\xb3\x50\x00\x00\x9b\x74\x89\xe6\xc8\xf4\xd0\x30\xd9\
\x9d\x44\xf8\x03\xb0\x1e\x05\x00\xb0\x41\x67\x23\xfc\xa7\x86\x0b\
\x64\x7f\xd2\x42\xc2\x1f\x80\x2d\x28\x00\x80\xc5\xd4\x9d\xff\x84\
\xf0\x50\x39\x94\xb4\x48\xfb\x42\x02\x80\x55\x28\x00\x80\x85\x54\
\xf8\x5f\x16\x1e\x42\xf8\x03\xb0\x1d\x05\x00\xb0\x88\x7a\xec\x3f\
\x36\x3c\xd8\x08\xff\x85\xda\x17\x11\x00\xac\x46\x01\x00\x2c\xa0\
\xc2\x7f\x8c\x11\xfe\xfb\x93\x16\x68\x5f\x42\x00\xb0\x03\x05\x00\
\x30\x59\xc3\x9d\x3f\xe1\x0f\xc0\x49\x28\x00\x80\x89\x3a\x11\xfe\
\x00\x1c\x8a\x02\x00\x98\x44\xdd\xf9\x4f\x0c\x0f\x95\x03\x84\x3f\
\x00\x07\xa2\x00\x00\x26\x50\xb3\xfd\xa7\x86\x0a\x64\x2f\xe1\x0f\
\xc0\xa1\x28\x00\x40\x82\x75\x35\xc2\x7f\x9a\x11\xfe\xbb\xd8\xe1\
\x0f\x80\x83\x51\x00\x80\x04\x52\x7b\xfb\x5f\x11\x1a\x26\x15\x81\
\x79\x84\x3f\x00\x47\xa3\x00\x00\x09\xa2\x4e\xf5\x9b\x19\x2a\x94\
\x6d\xb1\x53\xfd\xf4\x2f\x1b\x00\x38\x09\x05\x00\x48\x00\x15\xfe\
\xa5\x46\xf8\x6f\x09\xcc\xe1\x48\x5f\x00\xae\x40\x01\x00\x5a\xa9\
\xbb\x11\xfe\xe5\x69\xc3\x65\x73\x60\x36\xe1\x0f\xc0\x35\x28\x00\
\x40\x2b\xa8\xf0\x9f\x6d\x84\xff\x46\xc2\x1f\x80\xcb\x50\x00\x80\
\x38\xf5\x30\xc2\x7f\x6e\xda\x08\x59\x1f\x2c\x97\x1a\xc2\x1f\x80\
\xcb\x50\x00\x80\x38\xa8\xf0\x9f\x67\x84\xff\x3a\xc2\x1f\x80\x4b\
\x51\x00\x80\x16\x52\xe1\x3f\xdf\x08\xff\x35\xc1\x32\xc2\x1f\x80\
\x6b\x51\x00\x80\x16\x38\x33\xda\x53\x16\xa6\x8d\x24\xfc\x01\xb8\
\x1e\x05\x00\x68\x26\x15\xfe\x8b\x08\x7f\x00\x1e\x41\x01\x00\x9a\
\x81\xf0\x07\xe0\x35\x14\x00\xe0\x14\x08\x7f\x00\x5e\x44\x01\x00\
\x4e\xe2\x6c\x23\xfc\x17\x13\xfe\x00\x3c\x88\x02\x00\x7c\x86\xb3\
\x8c\xf0\xbf\x32\xad\x88\xa5\x7e\x00\x3c\x89\x02\x00\x34\x41\x85\
\xff\xe2\xb4\x51\xb2\x21\xc8\x0e\x7f\x00\xbc\x89\x02\x00\x34\xa2\
\xc2\x7f\x91\x11\xfe\x1b\x09\x7f\x00\x1e\x46\x01\x00\x3e\xa5\x7e\
\x9d\xff\x28\xd9\x1c\xe4\x54\x3f\x00\xde\x46\x01\x00\x4e\x50\x77\
\xfe\x0b\xd2\x46\x9e\x38\xd2\x57\xff\xb2\x00\x80\x97\x50\x00\x80\
\xcc\xfa\xf0\x5f\x18\x1a\x29\xdb\x02\x73\x09\x7f\x00\xbe\x40\x01\
\x80\xef\xa9\xf0\x9f\x6f\x84\x7f\x45\x60\x9e\xd4\x35\xf1\x25\x01\
\x00\x2f\xa2\x00\xc0\xd7\xba\xc7\x0e\xf6\x19\x29\x95\x81\xf9\x84\
\x3f\x00\x5f\xa1\x00\xc0\xb7\xba\x19\xe1\x3f\x2b\x34\x5c\x76\x13\
\xfe\x00\x7c\xe8\xff\x01\x52\x46\x69\x0c\xf1\x6f\x08\x79\x00\x00\
\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x01\x1a\
\x3c\
\x73\x76\x67\x20\x78\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\
\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\
\x30\x2f\x73\x76\x67\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x34\
\x38\x70\x78\x22\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\
\x30\x20\x32\x34\x20\x32\x34\x22\x20\x77\x69\x64\x74\x68\x3d\x22\
\x34\x38\x70\x78\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x63\x30\x38\
\x38\x66\x66\x22\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\
\x20\x64\x3d\x22\x4d\x30\x20\x30\x68\x32\x34\x76\x32\x34\x48\x30\
\x56\x30\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\
\x2f\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\
\x22\x4d\x31\x39\x20\x36\x2e\x34\x31\x4c\x31\x37\x2e\x35\x39\x20\
\x35\x20\x31\x32\x20\x31\x30\x2e\x35\x39\x20\x36\x2e\x34\x31\x20\
\x35\x20\x35\x20\x36\x2e\x34\x31\x20\x31\x30\x2e\x35\x39\x20\x31\
\x32\x20\x35\x20\x31\x37\x2e\x35\x39\x20\x36\x2e\x34\x31\x20\x31\
\x39\x20\x31\x32\x20\x31\x33\x2e\x34\x31\x20\x31\x37\x2e\x35\x39\
\x20\x31\x39\x20\x31\x39\x20\x31\x37\x2e\x35\x39\x20\x31\x33\x2e\
\x34\x31\x20\x31\x32\x20\x31\x39\x20\x36\x2e\x34\x31\x7a\x22\x2f\
\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\
\x00\x00\x01\x33\
\x3c\
\x73\x76\x67\x20\x78\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\
\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\
\x30\x2f\x73\x76\x67\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x34\
\x38\x70\x78\x22\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\
\x30\x20\x32\x34\x20\x32\x34\x22\x20\x77\x69\x64\x74\x68\x3d\x22\
\x34\x38\x70\x78\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x63\x30\x38\
\x38\x66\x66\x22\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x30\
\x20\x30\x68\x32\x34\x76\x32\x34\x48\x30\x56\x30\x7a\x22\x20\x66\
\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x2f\x3e\x3c\x70\x61\x74\
\x68\x20\x64\x3d\x22\x4d\x31\x31\x20\x37\x68\x32\x76\x32\x68\x2d\
\x32\x7a\x6d\x30\x20\x34\x68\x32\x76\x36\x68\x2d\x32\x7a\x6d\x31\
\x2d\x39\x43\x36\x2e\x34\x38\x20\x32\x20\x32\x20\x36\x2e\x34\x38\
\x20\x32\x20\x31\x32\x73\x34\x2e\x34\x38\x20\x31\x30\x20\x31\x30\
\x20\x31\x30\x20\x31\x30\x2d\x34\x2e\x34\x38\x20\x31\x30\x2d\x31\
\x30\x53\x31\x37\x2e\x35\x32\x20\x32\x20\x31\x32\x20\x32\x7a\x6d\
\x30\x20\x31\x38\x63\x2d\x34\x2e\x34\x31\x20\x30\x2d\x38\x2d\x33\
\x2e\x35\x39\x2d\x38\x2d\x38\x73\x33\x2e\x35\x39\x2d\x38\x20\x38\
\x2d\x38\x20\x38\x20\x33\x2e\x35\x39\x20\x38\x20\x38\x2d\x33\x2e\
\x35\x39\x20\x38\x2d\x38\x20\x38\x7a\x22\x2f\x3e\x3c\x2f\x73\x76\
\x67\x3e\
\x00\x00\x01\x92\
\x3c\
\x73\x76\x67\x20\x78\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\
\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\
\x30\x2f\x73\x76\x67\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x34\
\x38\x70\x78\x22\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\
\x30\x20\x32\x34\x20\x32\x34\x22\x20\x77\x69\x64\x74\x68\x3d\x22\
\x34\x38\x70\x78\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x63\x30\x38\
\x38\x66\x66\x22\x3e\x3c\x70\x61\x74\x68\x20\x64\x3d\x22\x4d\x30\
\x20\x30\x68\x32\x34\x76\x32\x34\x48\x30\x56\x30\x7a\x22\x20\x66\
\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\x2f\x3e\x3c\x70\x61\x74\
\x68\x20\x64\x3d\x22\x4d\x31\x31\x20\x31\x38\x68\x32\x76\x2d\x32\
\x68\x2d\x32\x76\x32\x7a\x6d\x31\x2d\x31\x36\x43\x36\x2e\x34\x38\
\x20\x32\x20\x32\x20\x36\x2e\x34\x38\x20\x32\x20\x31\x32\x73\x34\
\x2e\x34\x38\x20\x31\x30\x20\x31\x30\x20\x31\x30\x20\x31\x30\x2d\
\x34\x2e\x34\x38\x20\x31\x30\x2d\x31\x30\x53\x31\x37\x2e\x35\x32\
\x20\x32\x20\x31\x32\x20\x32\x7a\x6d\x30\x20\x31\x38\x63\x2d\x34\
\x2e\x34\x31\x20\x30\x2d\x38\x2d\x33\x2e\x35\x39\x2d\x38\x2d\x38\
\x73\x33\x2e\x35\x39\x2d\x38\x20\x38\x2d\x38\x20\x38\x20\x33\x2e\
\x35\x39\x20\x38\x20\x38\x2d\x33\x2e\x35\x39\x20\x38\x2d\x38\x20\
\x38\x7a\x6d\x30\x2d\x31\x34\x63\x2d\x32\x2e\x32\x31\x20\x30\x2d\
\x34\x20\x31\x2e\x37\x39\x2d\x34\x20\x34\x68\x32\x63\x30\x2d\x31\
\x2e\x31\x2e\x39\x2d\x32\x20\x32\x2d\x32\x73\x32\x20\x2e\x39\x20\
\x32\x20\x32\x63\x30\x20\x32\x2d\x33\x20\x31\x2e\x37\x35\x2d\x33\
\x20\x35\x68\x32\x63\x30\x2d\x32\x2e\x32\x35\x20\x33\x2d\x32\x2e\
\x35\x20\x33\x2d\x35\x20\x30\x2d\x32\x2e\x32\x31\x2d\x31\x2e\x37\
\x39\x2d\x34\x2d\x34\x2d\x34\x7a\x22\x2f\x3e\x3c\x2f\x73\x76\x67\
\x3e\
\x00\x00\x00\xef\
\x3c\
\x73\x76\x67\x20\x78\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\
\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\
\x30\x2f\x73\x76\x67\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x34\
\x38\x70\x78\x22\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\
\x30\x20\x32\x34\x20\x32\x34\x22\x20\x77\x69\x64\x74\x68\x3d\x22\
\x34\x38\x70\x78\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x63\x30\x38\
\x38\x66\x66\x22\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\
\x20\x64\x3d\x22\x4d\x30\x20\x30\x68\x32\x34\x76\x32\x34\x48\x30\
\x56\x30\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\
\x2f\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\
\x22\x4d\x36\x20\x36\x68\x32\x76\x31\x32\x48\x36\x7a\x6d\x33\x2e\
\x35\x20\x36\x6c\x38\x2e\x35\x20\x36\x56\x36\x6c\x2d\x38\x2e\x35\
\x20\x36\x7a\x6d\x36\x2e\x35\x20\x32\x2e\x31\x34\x4c\x31\x32\x2e\
\x39\x37\x20\x31\x32\x20\x31\x36\x20\x39\x2e\x38\x36\x76\x34\x2e\
\x32\x38\x7a\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\
\x00\x00\x00\xcc\
\x3c\
\x73\x76\x67\x20\x78\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\
\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\
\x30\x2f\x73\x76\x67\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x34\
\x38\x70\x78\x22\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\
\x30\x20\x32\x34\x20\x32\x34\x22\x20\x77\x69\x64\x74\x68\x3d\x22\
\x34\x38\x70\x78\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x63\x30\x38\
\x38\x66\x66\x22\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\
\x20\x64\x3d\x22\x4d\x30\x20\x30\x68\x32\x34\x76\x32\x34\x48\x30\
\x56\x30\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\
\x2f\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\
\x22\x4d\x36\x20\x31\x39\x68\x34\x56\x35\x48\x36\x76\x31\x34\x7a\
\x6d\x38\x2d\x31\x34\x76\x31\x34\x68\x34\x56\x35\x68\x2d\x34\x7a\
\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\
\x00\x00\x03\x3e\
\x3c\
\x73\x76\x67\x20\x78\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\
\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\
\x30\x2f\x73\x76\x67\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x34\
\x38\x70\x78\x22\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\
\x30\x20\x32\x34\x20\x32\x34\x22\x20\x77\x69\x64\x74\x68\x3d\x22\
\x34\x38\x70\x78\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x63\x30\x38\
\x38\x66\x66\x22\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\
\x20\x64\x3d\x22\x4d\x30\x20\x30\x68\x32\x34\x76\x32\x34\x48\x30\
\x56\x30\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\
\x2f\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\
\x22\x4d\x31\x31\x2e\x39\x39\x20\x35\x56\x31\x6c\x2d\x35\x20\x35\
\x20\x35\x20\x35\x56\x37\x63\x33\x2e\x33\x31\x20\x30\x20\x36\x20\
\x32\x2e\x36\x39\x20\x36\x20\x36\x73\x2d\x32\x2e\x36\x39\x20\x36\
\x2d\x36\x20\x36\x2d\x36\x2d\x32\x2e\x36\x39\x2d\x36\x2d\x36\x68\
\x2d\x32\x63\x30\x20\x34\x2e\x34\x32\x20\x33\x2e\x35\x38\x20\x38\
\x20\x38\x20\x38\x73\x38\x2d\x33\x2e\x35\x38\x20\x38\x2d\x38\x2d\
\x33\x2e\x35\x38\x2d\x38\x2d\x38\x2d\x38\x7a\x6d\x2d\x31\x2e\x31\
\x20\x31\x31\x68\x2d\x2e\x38\x35\x76\x2d\x33\x2e\x32\x36\x6c\x2d\
\x31\x2e\x30\x31\x2e\x33\x31\x76\x2d\x2e\x36\x39\x6c\x31\x2e\x37\
\x37\x2d\x2e\x36\x33\x68\x2e\x30\x39\x56\x31\x36\x7a\x6d\x34\x2e\
\x32\x38\x2d\x31\x2e\x37\x36\x63\x30\x20\x2e\x33\x32\x2d\x2e\x30\
\x33\x2e\x36\x2d\x2e\x31\x2e\x38\x32\x73\x2d\x2e\x31\x37\x2e\x34\
\x32\x2d\x2e\x32\x39\x2e\x35\x37\x2d\x2e\x32\x38\x2e\x32\x36\x2d\
\x2e\x34\x35\x2e\x33\x33\x2d\x2e\x33\x37\x2e\x31\x2d\x2e\x35\x39\
\x2e\x31\x2d\x2e\x34\x31\x2d\x2e\x30\x33\x2d\x2e\x35\x39\x2d\x2e\
\x31\x2d\x2e\x33\x33\x2d\x2e\x31\x38\x2d\x2e\x34\x36\x2d\x2e\x33\
\x33\x2d\x2e\x32\x33\x2d\x2e\x33\x34\x2d\x2e\x33\x2d\x2e\x35\x37\
\x2d\x2e\x31\x31\x2d\x2e\x35\x2d\x2e\x31\x31\x2d\x2e\x38\x32\x76\
\x2d\x2e\x37\x34\x63\x30\x2d\x2e\x33\x32\x2e\x30\x33\x2d\x2e\x36\
\x2e\x31\x2d\x2e\x38\x32\x73\x2e\x31\x37\x2d\x2e\x34\x32\x2e\x32\
\x39\x2d\x2e\x35\x37\x2e\x32\x38\x2d\x2e\x32\x36\x2e\x34\x35\x2d\
\x2e\x33\x33\x2e\x33\x37\x2d\x2e\x31\x2e\x35\x39\x2d\x2e\x31\x2e\
\x34\x31\x2e\x30\x33\x2e\x35\x39\x2e\x31\x2e\x33\x33\x2e\x31\x38\
\x2e\x34\x36\x2e\x33\x33\x2e\x32\x33\x2e\x33\x34\x2e\x33\x2e\x35\
\x37\x2e\x31\x31\x2e\x35\x2e\x31\x31\x2e\x38\x32\x76\x2e\x37\x34\
\x7a\x6d\x2d\x2e\x38\x35\x2d\x2e\x38\x36\x63\x30\x2d\x2e\x31\x39\
\x2d\x2e\x30\x31\x2d\x2e\x33\x35\x2d\x2e\x30\x34\x2d\x2e\x34\x38\
\x73\x2d\x2e\x30\x37\x2d\x2e\x32\x33\x2d\x2e\x31\x32\x2d\x2e\x33\
\x31\x2d\x2e\x31\x31\x2d\x2e\x31\x34\x2d\x2e\x31\x39\x2d\x2e\x31\
\x37\x2d\x2e\x31\x36\x2d\x2e\x30\x35\x2d\x2e\x32\x35\x2d\x2e\x30\
\x35\x2d\x2e\x31\x38\x2e\x30\x32\x2d\x2e\x32\x35\x2e\x30\x35\x2d\
\x2e\x31\x34\x2e\x30\x39\x2d\x2e\x31\x39\x2e\x31\x37\x2d\x2e\x30\
\x39\x2e\x31\x38\x2d\x2e\x31\x32\x2e\x33\x31\x2d\x2e\x30\x34\x2e\
\x32\x39\x2d\x2e\x30\x34\x2e\x34\x38\x76\x2e\x39\x37\x63\x30\x20\
\x2e\x31\x39\x2e\x30\x31\x2e\x33\x35\x2e\x30\x34\x2e\x34\x38\x73\
\x2e\x30\x37\x2e\x32\x34\x2e\x31\x32\x2e\x33\x32\x2e\x31\x31\x2e\
\x31\x34\x2e\x31\x39\x2e\x31\x37\x2e\x31\x36\x2e\x30\x35\x2e\x32\
\x35\x2e\x30\x35\x2e\x31\x38\x2d\x2e\x30\x32\x2e\x32\x35\x2d\x2e\
\x30\x35\x2e\x31\x34\x2d\x2e\x30\x39\x2e\x31\x39\x2d\x2e\x31\x37\
\x2e\x30\x39\x2d\x2e\x31\x39\x2e\x31\x31\x2d\x2e\x33\x32\x2e\x30\
\x34\x2d\x2e\x32\x39\x2e\x30\x34\x2d\x2e\x34\x38\x76\x2d\x2e\x39\
\x37\x7a\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\
\x00\x02\x91\x44\
\x00\
\x01\x00\x00\x00\x12\x01\x00\x00\x04\x00\x20\x47\x44\x45\x46\xb4\
\x42\xb0\x82\x00\x02\x1b\x84\x00\x00\x02\x62\x47\x50\x4f\x53\xff\
\x1a\x12\xd7\x00\x02\x1d\xe8\x00\x00\x5d\xcc\x47\x53\x55\x42\xeb\
\x82\xe4\x59\x00\x02\x7b\xb4\x00\x00\x15\x90\x4f\x53\x2f\x32\x97\
\x82\xb1\xa8\x00\x02\x09\x6c\x00\x00\x00\x60\x63\x6d\x61\x70\xc6\
\xee\x51\x6d\x00\x02\x0e\xe4\x00\x00\x06\x82\x63\x76\x74\x20\x2b\
\xa8\x07\x9d\x00\x02\x18\x70\x00\x00\x00\x54\x66\x70\x67\x6d\x77\
\xf8\x60\xab\x00\x02\x15\x68\x00\x00\x01\xbc\x67\x61\x73\x70\x00\
\x08\x00\x13\x00\x02\x1b\x78\x00\x00\x00\x0c\x67\x6c\x79\x66\x26\
\xba\x0b\xf4\x00\x00\x01\x2c\x00\x01\xe9\x6c\x68\x64\x6d\x78\x55\
\x7a\x60\x7a\x00\x02\x09\xcc\x00\x00\x05\x18\x68\x65\x61\x64\xfc\
\x6a\xd2\x7a\x00\x01\xf4\xd8\x00\x00\x00\x36\x68\x68\x65\x61\x0a\
\xba\x0a\xae\x00\x02\x09\x48\x00\x00\x00\x24\x68\x6d\x74\x78\xae\
\x72\x8f\x97\x00\x01\xf5\x10\x00\x00\x14\x38\x6c\x6f\x63\x61\x80\
\x77\xff\xbb\x00\x01\xea\xb8\x00\x00\x0a\x1e\x6d\x61\x78\x70\x07\
\x3e\x03\x09\x00\x01\xea\x98\x00\x00\x00\x20\x6e\x61\x6d\x65\x36\
\x21\x61\xd6\x00\x02\x18\xc4\x00\x00\x02\x92\x70\x6f\x73\x74\xff\
\x6d\x00\x64\x00\x02\x1b\x58\x00\x00\x00\x20\x70\x72\x65\x70\xa2\
\x66\xfa\xc9\x00\x02\x17\x24\x00\x00\x01\x49\x00\x05\x00\x64\x00\
\x00\x03\x28\x05\xb0\x00\x03\x00\x06\x00\x09\x00\x0c\x00\x0f\x00\
\x71\xb2\x0c\x10\x11\x11\x12\x39\xb0\x0c\x10\xb0\x00\xd0\xb0\x0c\
\x10\xb0\x06\xd0\xb0\x0c\x10\xb0\x09\xd0\xb0\x0c\x10\xb0\x0d\xd0\
\x00\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1e\x3e\x59\xb0\x00\
\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb2\x04\x02\x00\x11\
\x12\x39\xb2\x05\x02\x00\x11\x12\x39\xb2\x07\x02\x00\x11\x12\x39\
\xb2\x08\x02\x00\x11\x12\x39\xb1\x0a\x0c\xf4\xb2\x0c\x02\x00\x11\
\x12\x39\xb2\x0d\x02\x00\x11\x12\x39\xb0\x02\x10\xb1\x0e\x0c\xf4\
\x30\x31\x21\x21\x11\x21\x03\x11\x01\x01\x11\x01\x03\x21\x01\x35\
\x01\x21\x03\x28\xfd\x3c\x02\xc4\x36\xfe\xee\xfe\xba\x01\x0c\xe4\
\x02\x03\xfe\xfe\x01\x02\xfd\xfd\x05\xb0\xfa\xa4\x05\x07\xfd\x7d\
\x02\x77\xfb\x11\x02\x78\xfd\x5e\x02\x5e\x88\x02\x5e\x00\x02\x00\
\xa0\xff\xf5\x01\x7b\x05\xb0\x00\x03\x00\x0c\x00\x30\x00\xb0\x00\
\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1e\x3e\x59\xb0\x00\x45\x58\xb0\
\x0b\x2f\x1b\xb1\x0b\x12\x3e\x59\xb1\x06\x05\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb2\x01\x06\x02\x11\x12\x39\x30\x31\x01\x23\x03\
\x33\x03\x34\x36\x32\x16\x14\x06\x22\x26\x01\x5b\xa7\x0d\xc2\xc9\
\x37\x6c\x38\x38\x6c\x37\x01\x9b\x04\x15\xfa\xad\x2d\x3d\x3d\x5a\
\x3b\x3b\x00\x00\x02\x00\x88\x04\x12\x02\x23\x06\x00\x00\x04\x00\
\x09\x00\x19\x00\xb0\x03\x2f\xb2\x02\x0a\x03\x11\x12\x39\xb0\x02\
\x2f\xb0\x07\xd0\xb0\x03\x10\xb0\x08\xd0\x30\x31\x01\x03\x23\x13\
\x33\x05\x03\x23\x13\x33\x01\x15\x1e\x6f\x01\x8c\x01\x0e\x1e\x6f\
\x01\x8c\x05\x78\xfe\x9a\x01\xee\x88\xfe\x9a\x01\xee\x00\x02\x00\
\x77\x00\x00\x04\xd3\x05\xb0\x00\x1b\x00\x1f\x00\x91\x00\xb0\x00\
\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x1e\x3e\x59\xb0\x00\x45\x58\xb0\
\x10\x2f\x1b\xb1\x10\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\
\xb1\x02\x12\x3e\x59\xb0\x00\x45\x58\xb0\x1a\x2f\x1b\xb1\x1a\x12\
\x3e\x59\xb2\x1d\x0c\x02\x11\x12\x39\x7c\xb0\x1d\x2f\x18\xb1\x00\
\x03\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\xd0\xb0\x1d\x10\
\xb0\x06\xd0\xb0\x1d\x10\xb0\x0b\xd0\xb0\x0b\x2f\xb1\x08\x03\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0b\x10\xb0\x0e\xd0\xb0\x0b\
\x10\xb0\x12\xd0\xb0\x08\x10\xb0\x14\xd0\xb0\x1d\x10\xb0\x16\xd0\
\xb0\x00\x10\xb0\x18\xd0\xb0\x08\x10\xb0\x1e\xd0\x30\x31\x01\x21\
\x03\x23\x13\x23\x35\x21\x13\x21\x35\x21\x13\x33\x03\x21\x13\x33\
\x03\x33\x15\x23\x03\x33\x15\x23\x03\x23\x03\x21\x13\x21\x02\xfd\
\xfe\xf8\x50\x8f\x50\xef\x01\x09\x45\xfe\xfe\x01\x1d\x52\x8f\x52\
\x01\x08\x52\x90\x52\xcc\xe7\x45\xe1\xfb\x50\x90\x9e\x01\x08\x45\
\xfe\xf8\x01\x9a\xfe\x66\x01\x9a\x89\x01\x62\x8b\x01\xa0\xfe\x60\
\x01\xa0\xfe\x60\x8b\xfe\x9e\x89\xfe\x66\x02\x23\x01\x62\x00\x00\
\x01\x00\x6e\xff\x30\x04\x11\x06\x9c\x00\x2b\x00\x69\x00\xb0\x00\
\x45\x58\xb0\x09\x2f\x1b\xb1\x09\x1e\x3e\x59\xb0\x00\x45\x58\xb0\
\x22\x2f\x1b\xb1\x22\x12\x3e\x59\xb2\x02\x22\x09\x11\x12\x39\xb0\
\x09\x10\xb0\x0c\xd0\xb0\x09\x10\xb0\x10\xd0\xb0\x09\x10\xb1\x13\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x02\x10\xb1\x19\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x22\x10\xb0\x1f\xd0\xb0\
\x22\x10\xb0\x26\xd0\xb0\x22\x10\xb1\x29\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\x30\x31\x01\x34\x26\x27\x26\x26\x35\x34\x36\x37\
\x35\x33\x15\x16\x16\x15\x23\x34\x26\x23\x22\x06\x15\x14\x16\x04\
\x16\x16\x15\x14\x06\x07\x15\x23\x35\x26\x26\x35\x33\x14\x16\x33\
\x32\x36\x03\x58\x81\x99\xd5\xc3\xbf\xa7\x95\xa8\xbb\xb8\x86\x72\
\x77\x7e\x85\x01\x31\xab\x51\xcb\xb7\x94\xba\xd3\xb9\x92\x86\x83\
\x96\x01\x77\x5c\x7e\x33\x41\xd1\xa1\xa4\xd2\x14\xdb\xdc\x17\xec\
\xcd\x8d\xa6\x7b\x6e\x66\x79\x63\x77\x9e\x6a\xa9\xce\x13\xbf\xbf\
\x11\xe7\xc6\x8b\x96\x7e\x00\x00\x05\x00\x69\xff\xeb\x05\x83\x05\
\xc5\x00\x0d\x00\x1a\x00\x26\x00\x34\x00\x38\x00\x7c\x00\xb0\x00\
\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1e\x3e\x59\xb0\x00\x45\x58\xb0\
\x23\x2f\x1b\xb1\x23\x12\x3e\x59\xb0\x03\x10\xb0\x0a\xd0\xb0\x0a\
\x2f\xb1\x11\x04\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\
\xb1\x18\x04\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x23\x10\xb0\
\x1d\xd0\xb0\x1d\x2f\xb0\x23\x10\xb1\x2a\x04\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb0\x1d\x10\xb1\x31\x04\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb2\x35\x23\x03\x11\x12\x39\xb0\x35\x2f\xb2\x37\x03\
\x23\x11\x12\x39\xb0\x37\x2f\x30\x31\x13\x34\x36\x33\x32\x16\x15\
\x15\x14\x06\x23\x22\x26\x35\x17\x14\x16\x33\x32\x36\x35\x35\x34\
\x26\x22\x06\x15\x01\x34\x36\x20\x16\x15\x15\x14\x06\x20\x26\x35\
\x17\x14\x16\x33\x32\x36\x35\x35\x34\x26\x23\x22\x06\x15\x05\x27\
\x01\x17\x69\xa7\x83\x85\xa5\xa7\x81\x82\xaa\x8a\x58\x4a\x47\x57\
\x56\x94\x56\x02\x3b\xa7\x01\x06\xa8\xa7\xfe\xfc\xaa\x8a\x58\x4a\
\x48\x56\x57\x49\x47\x59\xfe\x07\x69\x02\xc7\x69\x04\x98\x83\xaa\
\xab\x88\x47\x84\xa7\xa7\x8b\x07\x4e\x65\x62\x55\x49\x4e\x66\x66\
\x52\xfc\xd1\x83\xa9\xa8\x8b\x47\x83\xa9\xa7\x8b\x06\x4f\x65\x63\
\x55\x4a\x4f\x64\x63\x54\xf3\x42\x04\x72\x42\x00\x03\x00\x65\xff\
\xec\x04\xf3\x05\xc4\x00\x1e\x00\x27\x00\x33\x00\x87\x00\xb0\x00\
\x45\x58\xb0\x09\x2f\x1b\xb1\x09\x1e\x3e\x59\xb0\x00\x45\x58\xb0\
\x1c\x2f\x1b\xb1\x1c\x12\x3e\x59\xb0\x00\x45\x58\xb0\x18\x2f\x1b\
\xb1\x18\x12\x3e\x59\xb2\x22\x1c\x09\x11\x12\x39\xb2\x2a\x09\x1c\
\x11\x12\x39\xb2\x03\x22\x2a\x11\x12\x39\xb2\x10\x2a\x22\x11\x12\
\x39\xb2\x11\x09\x1c\x11\x12\x39\xb2\x13\x1c\x09\x11\x12\x39\xb2\
\x19\x1c\x09\x11\x12\x39\xb2\x16\x11\x19\x11\x12\x39\xb0\x1c\x10\
\xb1\x1f\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x21\x1f\x11\
\x11\x12\x39\xb0\x09\x10\xb1\x31\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\x30\x31\x13\x34\x36\x37\x26\x26\x35\x34\x36\x33\x32\x16\
\x15\x14\x06\x07\x07\x01\x36\x35\x33\x14\x07\x17\x23\x27\x06\x06\
\x23\x22\x24\x05\x32\x37\x01\x07\x06\x15\x14\x16\x03\x14\x17\x37\
\x36\x36\x35\x34\x26\x23\x22\x06\x65\x75\xa5\x61\x42\xc4\xa8\x96\
\xc4\x59\x6f\x6b\x01\x44\x44\xa7\x7b\xd0\xde\x61\x4a\xc7\x67\xd5\
\xfe\xfe\x01\xd7\x93\x7a\xfe\x9d\x21\xa7\x99\x22\x76\x76\x44\x32\
\x64\x4c\x52\x60\x01\x87\x69\xb0\x75\x76\x90\x47\xa6\xbc\xaf\x85\
\x58\x95\x52\x4f\xfe\x7d\x82\x9f\xff\xa8\xf9\x73\x42\x45\xe2\x4b\
\x70\x01\xa9\x18\x7b\x82\x76\x8e\x03\xe5\x60\x90\x53\x30\x57\x3e\
\x43\x59\x6f\x00\x01\x00\x67\x04\x21\x00\xfd\x06\x00\x00\x04\x00\
\x10\x00\xb0\x03\x2f\xb2\x02\x05\x03\x11\x12\x39\xb0\x02\x2f\x30\
\x31\x13\x03\x23\x13\x33\xfd\x15\x81\x01\x95\x05\x91\xfe\x90\x01\
\xdf\x00\x01\x00\x85\xfe\x2a\x02\x95\x06\x6b\x00\x11\x00\x09\x00\
\xb0\x0e\x2f\xb0\x04\x2f\x30\x31\x13\x34\x12\x12\x37\x17\x06\x02\
\x03\x07\x10\x13\x16\x17\x07\x26\x27\x02\x85\x79\xf0\x81\x26\x92\
\xbb\x09\x01\x8d\x55\x75\x26\x85\x79\xec\x02\x4f\xe2\x01\xa0\x01\
\x54\x46\x7a\x70\xfe\x34\xfe\xe3\x55\xfe\x7e\xfe\xe4\xaa\x60\x71\
\x4a\xae\x01\x54\x00\x00\x01\x00\x26\xfe\x2a\x02\x37\x06\x6b\x00\
\x11\x00\x09\x00\xb0\x0e\x2f\xb0\x04\x2f\x30\x31\x01\x14\x02\x02\
\x07\x27\x36\x12\x13\x35\x34\x02\x02\x27\x37\x16\x12\x12\x02\x37\
\x75\xf1\x84\x27\x9a\xbb\x02\x58\x9d\x62\x27\x84\xef\x77\x02\x45\
\xdf\xfe\x67\xfe\xa6\x49\x71\x76\x01\xf1\x01\x2f\x20\xd2\x01\x69\
\x01\x1e\x50\x71\x49\xfe\xaa\xfe\x64\x00\x01\x00\x1c\x02\x61\x03\
\x55\x05\xb0\x00\x0e\x00\x20\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\
\xb1\x04\x1e\x3e\x59\xb0\x00\xd0\x19\xb0\x00\x2f\x18\xb0\x09\xd0\
\x19\xb0\x09\x2f\x18\x30\x31\x01\x25\x37\x05\x03\x33\x03\x25\x17\
\x05\x13\x07\x03\x03\x27\x01\x4a\xfe\xd2\x2e\x01\x2e\x09\x99\x0a\
\x01\x29\x2e\xfe\xcd\xc6\x7c\xba\xb4\x7d\x03\xd7\x5a\x97\x70\x01\
\x58\xfe\xa3\x6e\x98\x5b\xfe\xf1\x5e\x01\x20\xfe\xe7\x5b\x00\x00\
\x01\x00\x4e\x00\x92\x04\x34\x04\xb6\x00\x0b\x00\x1b\x00\xb0\x09\
\x2f\xb0\x00\xd0\xb0\x09\x10\xb1\x06\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x03\xd0\x30\x31\x01\x21\x15\x21\x11\x23\x11\x21\
\x35\x21\x11\x33\x02\x9e\x01\x96\xfe\x6a\xba\xfe\x6a\x01\x96\xba\
\x03\x0d\xaf\xfe\x34\x01\xcc\xaf\x01\xa9\x00\x00\x01\x00\x1d\xfe\
\xde\x01\x34\x00\xdb\x00\x08\x00\x18\x00\xb0\x09\x2f\xb1\x04\x05\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x00\xd0\xb0\x00\x2f\x30\
\x31\x13\x27\x36\x37\x35\x33\x15\x14\x06\x86\x69\x5e\x04\xb5\x63\
\xfe\xde\x48\x83\x8b\xa7\x91\x65\xca\x00\x01\x00\x25\x02\x1f\x02\
\x0d\x02\xb6\x00\x03\x00\x12\x00\xb0\x02\x2f\xb1\x01\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x21\x35\x21\x02\x0d\xfe\
\x18\x01\xe8\x02\x1f\x97\x00\x00\x01\x00\x90\xff\xf5\x01\x76\x00\
\xd1\x00\x09\x00\x1c\x00\xb0\x00\x45\x58\xb0\x07\x2f\x1b\xb1\x07\
\x12\x3e\x59\xb1\x02\x05\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\
\x31\x37\x34\x36\x32\x16\x15\x14\x06\x22\x26\x90\x39\x72\x3b\x3b\
\x72\x39\x61\x30\x40\x40\x30\x2e\x3e\x3e\x00\x00\x01\x00\x12\xff\
\x83\x03\x10\x05\xb0\x00\x03\x00\x13\x00\xb0\x00\x2f\xb0\x00\x45\
\x58\xb0\x02\x2f\x1b\xb1\x02\x1e\x3e\x59\x30\x31\x17\x23\x01\x33\
\xb1\x9f\x02\x60\x9e\x7d\x06\x2d\x00\x00\x02\x00\x73\xff\xec\x04\
\x0a\x05\xc4\x00\x0d\x00\x1b\x00\x3b\x00\xb0\x00\x45\x58\xb0\x0a\
\x2f\x1b\xb1\x0a\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\
\x03\x12\x3e\x59\xb0\x0a\x10\xb1\x11\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x03\x10\xb1\x18\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\x30\x31\x01\x10\x02\x23\x22\x02\x03\x35\x10\x12\x33\x32\
\x12\x13\x27\x34\x26\x23\x22\x06\x07\x11\x14\x16\x33\x32\x36\x37\
\x04\x0a\xde\xec\xe9\xe0\x04\xde\xed\xeb\xde\x03\xb9\x84\x8f\x8e\
\x82\x02\x89\x8b\x89\x85\x03\x02\x6d\xfe\xbb\xfe\xc4\x01\x35\x01\
\x33\xf7\x01\x41\x01\x38\xfe\xd3\xfe\xc6\x0d\xeb\xd7\xd6\xde\xfe\
\xd8\xec\xe1\xd4\xe4\x00\x01\x00\xaa\x00\x00\x02\xd9\x05\xb7\x00\
\x06\x00\x3a\x00\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x1e\x3e\
\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb2\x04\
\x00\x05\x11\x12\x39\xb0\x04\x2f\xb1\x03\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb2\x02\x03\x05\x11\x12\x39\x30\x31\x21\x23\x11\
\x05\x35\x25\x33\x02\xd9\xba\xfe\x8b\x02\x12\x1d\x04\xd1\x89\xa8\
\xc7\x00\x01\x00\x5d\x00\x00\x04\x33\x05\xc4\x00\x17\x00\x4f\x00\
\xb0\x00\x45\x58\xb0\x10\x2f\x1b\xb1\x10\x1e\x3e\x59\xb0\x00\x45\
\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb1\x17\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x02\xd0\xb2\x03\x10\x17\x11\x12\x39\
\xb0\x10\x10\xb1\x09\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x10\x10\xb0\x0c\xd0\xb2\x15\x17\x10\x11\x12\x39\x30\x31\x21\x21\
\x35\x01\x36\x36\x35\x34\x26\x23\x22\x06\x15\x23\x34\x24\x33\x32\
\x16\x15\x14\x01\x01\x21\x04\x33\xfc\x46\x01\xf8\x70\x55\x8a\x73\
\x8a\x99\xb9\x01\x03\xd9\xcb\xec\xfe\xee\xfe\x7a\x02\xdb\x85\x02\
\x30\x7f\x9f\x55\x72\x92\x9d\x8c\xc9\xf8\xd5\xb1\xd7\xfe\xd7\xfe\
\x59\x00\x01\x00\x5e\xff\xec\x03\xf9\x05\xc4\x00\x26\x00\x7b\x00\
\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x1e\x3e\x59\xb0\x00\x45\
\x58\xb0\x19\x2f\x1b\xb1\x19\x12\x3e\x59\xb2\x00\x0d\x19\x11\x12\
\x39\xb0\x00\x2f\xb2\xcf\x00\x01\x5d\xb2\x9f\x00\x01\x71\xb2\x2f\
\x00\x01\x5d\xb2\x5f\x00\x01\x72\xb0\x0d\x10\xb1\x06\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0d\x10\xb0\x09\xd0\xb0\x00\x10\
\xb1\x26\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x13\x26\x00\
\x11\x12\x39\xb0\x19\x10\xb0\x1c\xd0\xb0\x19\x10\xb1\x1f\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x33\x36\x36\x35\x10\
\x23\x22\x06\x15\x23\x34\x36\x33\x32\x16\x15\x14\x06\x07\x16\x16\
\x15\x14\x04\x20\x24\x35\x33\x14\x16\x33\x32\x36\x35\x34\x26\x27\
\x23\x01\x86\x8b\x83\x96\xff\x78\x8f\xb9\xfd\xc3\xce\xea\x7b\x6a\
\x78\x83\xff\x00\xfe\x66\xfe\xff\xba\x96\x7e\x86\x8e\x9c\x93\x8b\
\x03\x32\x02\x86\x72\x01\x00\x89\x71\xad\xe5\xda\xc2\x5f\xb2\x2c\
\x26\xb0\x7f\xc4\xe6\xde\xb6\x73\x8a\x8c\x83\x7f\x88\x02\x00\x00\
\x02\x00\x35\x00\x00\x04\x50\x05\xb0\x00\x0a\x00\x0e\x00\x4a\x00\
\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\x09\x1e\x3e\x59\xb0\x00\x45\
\x58\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\x59\xb2\x01\x09\x04\x11\x12\
\x39\xb0\x01\x2f\xb1\x02\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb0\x06\xd0\xb0\x01\x10\xb0\x0b\xd0\xb2\x08\x06\x0b\x11\x12\x39\
\xb2\x0d\x09\x04\x11\x12\x39\x30\x31\x01\x33\x15\x23\x11\x23\x11\
\x21\x35\x01\x33\x01\x21\x11\x07\x03\x86\xca\xca\xba\xfd\x69\x02\
\x8c\xc5\xfd\x81\x01\xc5\x16\x01\xe9\x97\xfe\xae\x01\x52\x6d\x03\
\xf1\xfc\x39\x02\xca\x28\x00\x00\x01\x00\x9a\xff\xec\x04\x2d\x05\
\xb0\x00\x1d\x00\x64\x00\xb0\x00\x45\x58\xb0\x01\x2f\x1b\xb1\x01\
\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x12\x3e\x59\
\xb0\x01\x10\xb1\x04\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\
\x07\x0d\x01\x11\x12\x39\xb0\x07\x2f\xb1\x1a\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb2\x05\x07\x1a\x11\x12\x39\xb0\x0d\x10\xb0\
\x11\xd0\xb0\x0d\x10\xb1\x14\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x07\x10\xb0\x1d\xd0\x30\x31\x13\x13\x21\x15\x21\x03\x36\
\x33\x32\x12\x15\x14\x02\x23\x22\x26\x27\x33\x16\x16\x33\x32\x36\
\x35\x34\x26\x23\x22\x07\x07\xce\x4a\x02\xea\xfd\xb3\x2c\x6b\x88\
\xc7\xea\xf3\xda\xc1\xf4\x11\xaf\x11\x90\x76\x81\x93\x9f\x84\x79\
\x45\x31\x02\xda\x02\xd6\xab\xfe\x73\x3f\xfe\xf9\xe0\xe1\xfe\xfd\
\xd6\xbd\x7d\x7f\xb0\x9b\x92\xb1\x35\x28\x00\x00\x02\x00\x84\xff\
\xec\x04\x1c\x05\xb1\x00\x14\x00\x21\x00\x51\x00\xb0\x00\x45\x58\
\xb0\x00\x2f\x1b\xb1\x00\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x0d\x2f\
\x1b\xb1\x0d\x12\x3e\x59\xb0\x00\x10\xb1\x01\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb2\x07\x0d\x00\x11\x12\x39\xb0\x07\x2f\xb1\
\x15\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0d\x10\xb1\x1c\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x15\x23\x06\
\x04\x07\x36\x33\x32\x12\x15\x14\x02\x23\x22\x00\x35\x35\x10\x00\
\x25\x03\x22\x06\x07\x15\x14\x16\x33\x32\x36\x35\x34\x26\x03\x4f\
\x22\xd8\xff\x00\x14\x73\xc7\xbe\xe3\xf5\xce\xd1\xfe\xfc\x01\x57\
\x01\x53\xd2\x5f\xa0\x1f\xa2\x79\x7d\x8f\x91\x05\xb1\x9d\x04\xf8\
\xe1\x84\xfe\xf4\xd4\xe1\xfe\xf2\x01\x41\xfd\x47\x01\x92\x01\xa9\
\x05\xfd\x70\x72\x56\x44\xb4\xdc\xb8\x95\x96\xb9\x00\x00\x01\x00\
\x4d\x00\x00\x04\x25\x05\xb0\x00\x06\x00\x33\x00\xb0\x00\x45\x58\
\xb0\x05\x2f\x1b\xb1\x05\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x01\x2f\
\x1b\xb1\x01\x12\x3e\x59\xb0\x05\x10\xb1\x03\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb2\x00\x03\x05\x11\x12\x39\x30\x31\x01\x01\
\x23\x01\x21\x35\x21\x04\x25\xfd\xa5\xc2\x02\x59\xfc\xec\x03\xd8\
\x05\x48\xfa\xb8\x05\x18\x98\x00\x03\x00\x70\xff\xec\x04\x0e\x05\
\xc4\x00\x17\x00\x21\x00\x2b\x00\x64\x00\xb0\x00\x45\x58\xb0\x15\
\x2f\x1b\xb1\x15\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\
\x09\x12\x3e\x59\xb2\x27\x09\x15\x11\x12\x39\xb0\x27\x2f\xb2\xcf\
\x27\x01\x5d\xb1\x1a\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\
\x03\x1a\x27\x11\x12\x39\xb2\x0f\x27\x1a\x11\x12\x39\xb0\x09\x10\
\xb1\x1f\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x15\x10\xb1\
\x22\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x14\x06\
\x07\x16\x16\x15\x14\x06\x23\x22\x26\x35\x34\x36\x37\x26\x26\x35\
\x34\x36\x33\x32\x16\x03\x34\x26\x22\x06\x14\x16\x33\x32\x36\x01\
\x22\x06\x15\x14\x16\x32\x36\x34\x26\x03\xec\x73\x62\x72\x85\xff\
\xd0\xd2\xfd\x81\x72\x61\x70\xec\xc1\xc0\xed\x97\x9b\xfa\x97\x93\
\x83\x82\x94\xfe\xea\x6d\x87\x85\xde\x85\x8a\x04\x34\x6d\xaa\x30\
\x31\xbc\x77\xbd\xe0\xe1\xbc\x76\xbe\x31\x30\xaa\x6c\xb8\xd8\xd8\
\xfc\xa1\x7a\x9a\x98\xf8\x8e\x8f\x04\x1a\x87\x74\x6f\x89\x89\xde\
\x8c\x00\x02\x00\x64\xff\xff\x03\xf8\x05\xc4\x00\x17\x00\x24\x00\
\x5b\x00\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x1e\x3e\x59\xb0\
\x00\x45\x58\xb0\x13\x2f\x1b\xb1\x13\x12\x3e\x59\xb2\x03\x13\x0b\
\x11\x12\x39\xb0\x03\x2f\xb2\x00\x03\x0b\x11\x12\x39\xb0\x13\x10\
\xb1\x14\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\xb1\
\x18\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0b\x10\xb1\x1f\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x06\x06\x23\
\x22\x26\x26\x35\x34\x36\x36\x33\x32\x12\x11\x15\x10\x00\x05\x23\
\x35\x33\x36\x36\x25\x32\x36\x37\x35\x34\x26\x23\x22\x06\x15\x14\
\x16\x03\x3e\x3a\xa1\x60\x7e\xbb\x66\x6f\xcc\x88\xd8\xf9\xfe\xb0\
\xfe\xad\x24\x27\xe5\xf6\xfe\xee\x5d\x9d\x24\x9e\x79\x7a\x94\x8f\
\x02\x80\x45\x54\x7c\xe1\x88\x92\xea\x7c\xfe\xbd\xfe\xe9\x36\xfe\
\x57\xfe\x79\x05\x9c\x04\xe7\xfa\x72\x54\x4a\xb6\xe4\xbb\x99\x95\
\xc1\xff\xff\x00\x86\xff\xf5\x01\x6d\x04\x44\x00\x26\x00\x12\xf6\
\x00\x01\x07\x00\x12\xff\xf7\x03\x73\x00\x10\x00\xb0\x00\x45\x58\
\xb0\x0d\x2f\x1b\xb1\x0d\x1a\x3e\x59\x30\x31\xff\xff\x00\x29\xfe\
\xde\x01\x55\x04\x44\x00\x27\x00\x12\xff\xdf\x03\x73\x01\x06\x00\
\x10\x0c\x00\x00\x10\x00\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\
\x1a\x3e\x59\x30\x31\x00\x01\x00\x48\x00\xc3\x03\x7a\x04\x4a\x00\
\x06\x00\x16\x00\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x1a\x3e\
\x59\xb0\x02\xd0\xb0\x02\x2f\x30\x31\x01\x05\x15\x01\x35\x01\x15\
\x01\x08\x02\x72\xfc\xce\x03\x32\x02\x84\xfd\xc4\x01\x7b\x92\x01\
\x7a\xc4\x00\x00\x02\x00\x98\x01\x8f\x03\xda\x03\xcf\x00\x03\x00\
\x07\x00\x27\x00\xb0\x07\x2f\xb0\x03\xd0\xb0\x03\x2f\xb1\x00\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x07\x10\xb1\x04\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x21\x35\x21\x11\x21\
\x35\x21\x03\xda\xfc\xbe\x03\x42\xfc\xbe\x03\x42\x03\x2e\xa1\xfd\
\xc0\xa0\x00\x00\x01\x00\x86\x00\xc4\x03\xdc\x04\x4b\x00\x06\x00\
\x16\x00\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1a\x3e\x59\xb0\
\x05\xd0\xb0\x05\x2f\x30\x31\x01\x01\x35\x01\x15\x01\x35\x03\x1b\
\xfd\x6b\x03\x56\xfc\xaa\x02\x8a\x01\x03\xbe\xfe\x86\x92\xfe\x85\
\xc0\x00\x02\x00\x4b\xff\xf5\x03\x76\x05\xc4\x00\x18\x00\x21\x00\
\x53\x00\xb0\x00\x45\x58\xb0\x10\x2f\x1b\xb1\x10\x1e\x3e\x59\xb0\
\x00\x45\x58\xb0\x20\x2f\x1b\xb1\x20\x12\x3e\x59\xb1\x1b\x05\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x00\x1b\x10\x11\x12\x39\xb2\
\x04\x10\x00\x11\x12\x39\xb0\x10\x10\xb1\x09\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x10\x10\xb0\x0c\xd0\xb2\x15\x00\x10\x11\
\x12\x39\x30\x31\x01\x36\x36\x37\x37\x36\x35\x34\x26\x23\x22\x06\
\x15\x23\x36\x36\x33\x32\x16\x15\x14\x07\x07\x06\x15\x03\x34\x36\
\x32\x16\x14\x06\x22\x26\x01\x65\x02\x32\x4d\x83\x54\x6e\x69\x66\
\x7c\xb9\x02\xe3\xb6\xbd\xd3\xa2\x6d\x49\xc1\x37\x6c\x38\x38\x6c\
\x37\x01\x9a\x77\x8a\x54\x87\x5f\x6d\x69\x77\x6c\x5b\xa2\xc7\xcb\
\xb1\xaf\xaa\x6c\x51\x98\xfe\xc3\x2d\x3d\x3d\x5a\x3b\x3b\x00\x00\
\x02\x00\x6a\xfe\x3b\x06\xd6\x05\x97\x00\x35\x00\x42\x00\x6c\x00\
\xb0\x32\x2f\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x12\x3e\x59\
\xb0\x03\xd0\xb2\x0f\x32\x08\x11\x12\x39\xb0\x0f\x2f\xb2\x05\x08\
\x0f\x11\x12\x39\xb0\x08\x10\xb1\x39\x02\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x15\xd0\xb0\x32\x10\xb1\x1b\x02\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x08\x10\xb0\x2a\xd0\xb0\x2a\x2f\xb1\x23\
\x02\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0f\x10\xb1\x40\x02\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x06\x02\x23\x22\
\x27\x06\x06\x23\x22\x26\x37\x36\x12\x36\x33\x32\x16\x17\x03\x06\
\x33\x32\x36\x37\x12\x00\x21\x22\x04\x02\x07\x06\x12\x04\x33\x32\
\x36\x37\x17\x06\x06\x23\x22\x24\x02\x13\x12\x12\x24\x33\x32\x04\
\x12\x01\x06\x16\x33\x32\x36\x37\x37\x13\x26\x23\x22\x06\x06\xca\
\x0c\xd8\xb5\xbb\x35\x36\x8b\x4a\x8e\x92\x13\x0f\x79\xbf\x69\x51\
\x80\x50\x34\x13\x93\x71\x8c\x06\x13\xfe\xb9\xfe\xb2\xc9\xfe\xc8\
\xb4\x0b\x0c\x90\x01\x27\xd1\x5a\xb5\x3c\x25\x3e\xcd\x69\xfa\xfe\
\x98\xb3\x0c\x0c\xde\x01\x7c\xef\xf9\x01\x64\xae\xfb\xf2\x0e\x51\
\x58\x3c\x6f\x24\x01\x2e\x38\x40\x75\x99\x01\xf6\xf2\xfe\xe8\xa8\
\x55\x53\xe8\xcd\xa5\x01\x03\x94\x2b\x3f\xfd\xd6\xe7\xe0\xb4\x01\
\x85\x01\x98\xc7\xfe\x88\xf6\xf8\xfe\x93\xc1\x2c\x23\x73\x27\x32\
\xe1\x01\xa7\x01\x1b\x01\x13\x01\xb7\xef\xe0\xfe\x5a\xfe\x90\x8e\
\x98\x66\x5f\x09\x01\xf7\x1d\xee\x00\x00\x02\x00\x1c\x00\x00\x05\
\x1d\x05\xb0\x00\x07\x00\x0a\x00\x54\xb2\x0a\x0b\x0c\x11\x12\x39\
\xb0\x0a\x10\xb0\x04\xd0\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\
\x04\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\
\x59\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x12\x3e\x59\xb2\x08\
\x04\x02\x11\x12\x39\xb0\x08\x2f\xb1\x00\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb2\x0a\x04\x02\x11\x12\x39\x30\x31\x01\x21\x03\
\x23\x01\x33\x01\x23\x01\x21\x03\x03\xcd\xfd\x9e\x89\xc6\x02\x2c\
\xa8\x02\x2d\xc5\xfd\x4d\x01\xef\xf8\x01\x7c\xfe\x84\x05\xb0\xfa\
\x50\x02\x1a\x02\xa9\x00\x03\x00\xa9\x00\x00\x04\x88\x05\xb0\x00\
\x0e\x00\x16\x00\x1f\x00\x58\x00\xb0\x00\x45\x58\xb0\x01\x2f\x1b\
\xb1\x01\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\
\x3e\x59\xb2\x17\x00\x01\x11\x12\x39\xb0\x17\x2f\xb1\x0f\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x08\x0f\x17\x11\x12\x39\xb0\
\x00\x10\xb1\x10\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x01\
\x10\xb1\x1f\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x33\
\x11\x21\x32\x16\x15\x14\x06\x07\x16\x16\x15\x14\x06\x23\x01\x11\
\x21\x32\x36\x35\x10\x21\x25\x21\x32\x36\x35\x34\x26\x23\x21\xa9\
\x01\xdc\xed\xef\x74\x64\x76\x89\xfe\xe8\xfe\xc7\x01\x3d\x86\x9b\
\xfe\xe2\xfe\xc0\x01\x22\x7e\x97\x8c\x8f\xfe\xe4\x05\xb0\xc4\xc0\
\x66\x9d\x2b\x21\xb9\x80\xc4\xe0\x02\xa9\xfd\xf4\x8b\x7a\x01\x07\
\x9a\x7e\x6c\x78\x6d\x00\x01\x00\x77\xff\xec\x04\xd8\x05\xc4\x00\
\x1c\x00\x47\x00\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x1e\x3e\
\x59\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x12\x3e\x59\xb0\x0b\
\x10\xb0\x0f\xd0\xb0\x0b\x10\xb1\x12\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x03\x10\xb1\x19\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb0\x03\x10\xb0\x1c\xd0\x30\x31\x01\x06\x04\x23\x20\x00\
\x11\x35\x34\x12\x24\x33\x32\x00\x17\x23\x26\x26\x23\x22\x02\x15\
\x15\x14\x12\x33\x32\x36\x37\x04\xd8\x1b\xfe\xe1\xee\xfe\xfe\xfe\
\xc9\x91\x01\x0a\xaf\xe8\x01\x18\x17\xc1\x19\xa7\x96\xb8\xd1\xc6\
\xb2\xa0\xab\x1c\x01\xce\xe7\xfb\x01\x72\x01\x36\x8c\xcb\x01\x34\
\xa5\xfe\xfd\xe5\xae\x9c\xfe\xf0\xfb\x8d\xed\xfe\xe8\x91\xb4\x00\
\x02\x00\xa9\x00\x00\x04\xc6\x05\xb0\x00\x0b\x00\x15\x00\x3b\x00\
\xb0\x00\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x1e\x3e\x59\xb0\x00\x45\
\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb0\x01\x10\xb1\x0c\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x00\x10\xb1\x0d\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x33\x11\x21\x32\x04\x12\
\x17\x15\x14\x02\x04\x07\x03\x11\x33\x32\x12\x35\x35\x34\x02\x27\
\xa9\x01\x9b\xbe\x01\x24\x9f\x01\x9f\xfe\xd9\xc4\xd3\xca\xde\xf7\
\xe9\xd6\x05\xb0\xa8\xfe\xca\xc9\x5d\xce\xfe\xca\xa6\x02\x05\x12\
\xfb\x8b\x01\x14\xff\x55\xf8\x01\x13\x02\x00\x00\x01\x00\xa9\x00\
\x00\x04\x46\x05\xb0\x00\x0b\x00\x51\x00\xb0\x00\x45\x58\xb0\x06\
\x2f\x1b\xb1\x06\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\
\x04\x12\x3e\x59\xb2\x0b\x04\x06\x11\x12\x39\xb0\x0b\x2f\xb1\x00\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\x10\xb1\x02\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x06\x10\xb1\x08\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x21\x11\x21\x15\x21\
\x11\x21\x15\x21\x11\x21\x03\xe0\xfd\x89\x02\xdd\xfc\x63\x03\x93\
\xfd\x2d\x02\x77\x02\xa1\xfd\xfc\x9d\x05\xb0\x9e\xfe\x2c\x00\x00\
\x01\x00\xa9\x00\x00\x04\x2f\x05\xb0\x00\x09\x00\x42\x00\xb0\x00\
\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1e\x3e\x59\xb0\x00\x45\x58\xb0\
\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb2\x09\x02\x04\x11\x12\x39\xb0\
\x09\x2f\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\
\x10\xb1\x06\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\
\x21\x11\x23\x11\x21\x15\x21\x11\x21\x03\xcc\xfd\x9d\xc0\x03\x86\
\xfd\x3a\x02\x63\x02\x83\xfd\x7d\x05\xb0\x9e\xfe\x0e\x00\x01\x00\
\x7a\xff\xec\x04\xdc\x05\xc4\x00\x1f\x00\x6c\x00\xb0\x00\x45\x58\
\xb0\x0b\x2f\x1b\xb1\x0b\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x03\x2f\
\x1b\xb1\x03\x12\x3e\x59\xb0\x0b\x10\xb0\x0f\xd0\xb0\x0b\x10\xb1\
\x11\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\xb1\x18\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x1e\x03\x0b\x11\x12\
\x39\xb0\x1e\x2f\xb4\xbf\x1e\xcf\x1e\x02\x5d\xb4\x0f\x1e\x1f\x1e\
\x02\x5d\xb4\x3f\x1e\x4f\x1e\x02\x5d\xb1\x1d\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\x30\x31\x25\x06\x04\x23\x22\x24\x02\x27\x35\
\x10\x00\x21\x32\x04\x17\x23\x02\x21\x22\x02\x03\x15\x14\x12\x33\
\x32\x36\x37\x11\x21\x35\x21\x04\xdc\x4a\xfe\xf7\xb0\xb2\xfe\xec\
\x97\x02\x01\x33\x01\x16\xe4\x01\x16\x1f\xc0\x36\xfe\xde\xc1\xc7\
\x01\xe0\xbf\x6c\xa2\x35\xfe\xaf\x02\x10\xbf\x6a\x69\xa7\x01\x34\
\xcb\x7f\x01\x49\x01\x6a\xe9\xd6\x01\x21\xfe\xf1\xfe\xff\x77\xf5\
\xfe\xdf\x30\x39\x01\x47\x9c\x00\x01\x00\xa9\x00\x00\x05\x08\x05\
\xb0\x00\x0b\x00\x67\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\
\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1e\x3e\x59\
\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb0\x00\x45\
\x58\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\x59\xb0\x00\x10\xb0\x09\xd0\
\xb0\x09\x2f\xb2\xef\x09\x01\x5d\xb4\xcf\x09\xdf\x09\x02\x71\xb2\
\x8f\x09\x01\x71\xb2\x2f\x09\x01\x5d\xb2\x9f\x09\x01\x72\xb1\x02\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x21\x23\x11\x21\
\x11\x23\x11\x33\x11\x21\x11\x33\x05\x08\xc1\xfd\x22\xc0\xc0\x02\
\xde\xc1\x02\xa1\xfd\x5f\x05\xb0\xfd\x8e\x02\x72\x00\x00\x01\x00\
\xb7\x00\x00\x01\x77\x05\xb0\x00\x03\x00\x1d\x00\xb0\x00\x45\x58\
\xb0\x02\x2f\x1b\xb1\x02\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\
\x1b\xb1\x00\x12\x3e\x59\x30\x31\x21\x23\x11\x33\x01\x77\xc0\xc0\
\x05\xb0\x00\x00\x01\x00\x35\xff\xec\x03\xcc\x05\xb0\x00\x0f\x00\
\x2f\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1e\x3e\x59\xb0\
\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x12\x3e\x59\xb0\x09\xd0\xb0\
\x05\x10\xb1\x0c\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\
\x01\x33\x11\x14\x06\x23\x22\x26\x35\x33\x14\x16\x33\x32\x36\x37\
\x03\x0b\xc1\xfb\xd1\xd9\xf2\xc0\x89\x82\x77\x93\x01\x05\xb0\xfb\
\xf9\xd1\xec\xde\xc8\x7d\x8c\x96\x87\x00\x01\x00\xa9\x00\x00\x05\
\x05\x05\xb0\x00\x0b\x00\x74\x00\xb0\x00\x45\x58\xb0\x05\x2f\x1b\
\xb1\x05\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x1e\
\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb0\
\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x12\x3e\x59\xb2\x00\x02\x05\
\x11\x12\x39\x40\x11\x4a\x00\x5a\x00\x6a\x00\x7a\x00\x8a\x00\x9a\
\x00\xaa\x00\xba\x00\x08\x5d\xb2\x39\x00\x01\x5d\xb2\x06\x05\x02\
\x11\x12\x39\x40\x13\x36\x06\x46\x06\x56\x06\x66\x06\x76\x06\x86\
\x06\x96\x06\xa6\x06\xb6\x06\x09\x5d\x30\x31\x01\x07\x11\x23\x11\
\x33\x11\x01\x33\x01\x01\x23\x02\x1b\xb2\xc0\xc0\x02\x87\xe8\xfd\
\xc3\x02\x6a\xe6\x02\xa5\xb9\xfe\x14\x05\xb0\xfd\x30\x02\xd0\xfd\
\x7d\xfc\xd3\x00\x01\x00\xa9\x00\x00\x04\x1c\x05\xb0\x00\x05\x00\
\x29\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1e\x3e\x59\xb0\
\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb1\x00\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x25\x21\x15\x21\x11\x33\
\x01\x6a\x02\xb2\xfc\x8d\xc1\x9d\x9d\x05\xb0\x00\x01\x00\xa9\x00\
\x00\x06\x52\x05\xb0\x00\x0e\x00\x59\x00\xb0\x00\x45\x58\xb0\x00\
\x2f\x1b\xb1\x00\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\
\x02\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\
\x59\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x12\x3e\x59\xb0\x00\
\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x12\x3e\x59\xb2\x01\x00\x04\x11\
\x12\x39\xb2\x07\x00\x04\x11\x12\x39\xb2\x0a\x00\x04\x11\x12\x39\
\x30\x31\x09\x02\x33\x11\x23\x11\x13\x01\x23\x01\x13\x11\x23\x11\
\x01\xa1\x01\xdc\x01\xdc\xf9\xc0\x12\xfe\x22\x93\xfe\x23\x13\xc0\
\x05\xb0\xfb\x5c\x04\xa4\xfa\x50\x02\x37\x02\x64\xfb\x65\x04\x98\
\xfd\x9f\xfd\xc9\x05\xb0\x00\x00\x01\x00\xa9\x00\x00\x05\x08\x05\
\xb0\x00\x09\x00\x4c\xb2\x01\x0a\x0b\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x05\x2f\x1b\xb1\x05\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x08\
\x2f\x1b\xb1\x08\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\
\x00\x12\x3e\x59\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x12\x3e\
\x59\xb2\x02\x05\x00\x11\x12\x39\xb2\x07\x05\x00\x11\x12\x39\x30\
\x31\x21\x23\x01\x11\x23\x11\x33\x01\x11\x33\x05\x08\xc1\xfd\x23\
\xc1\xc1\x02\xdf\xbf\x04\x62\xfb\x9e\x05\xb0\xfb\x99\x04\x67\x00\
\x02\x00\x76\xff\xec\x05\x09\x05\xc4\x00\x11\x00\x1f\x00\x3b\x00\
\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x1e\x3e\x59\xb0\x00\x45\
\x58\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\x59\xb0\x0d\x10\xb1\x15\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\x10\xb1\x1c\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x14\x02\x04\x23\x22\
\x24\x02\x27\x35\x34\x12\x24\x33\x32\x04\x12\x15\x27\x10\x02\x23\
\x22\x02\x07\x15\x14\x12\x33\x32\x12\x37\x05\x09\x90\xfe\xf8\xb0\
\xac\xfe\xf6\x93\x02\x92\x01\x0b\xac\xaf\x01\x0b\x90\xbf\xd0\xbb\
\xb6\xd1\x03\xd3\xb9\xba\xcc\x03\x02\xa9\xd6\xfe\xc1\xa8\xa9\x01\
\x39\xce\x69\xd2\x01\x42\xab\xa9\xfe\xbf\xd5\x02\x01\x03\x01\x15\
\xfe\xeb\xf6\x6b\xfb\xfe\xe1\x01\x0f\xfd\x00\x00\x02\x00\xa9\x00\
\x00\x04\xc0\x05\xb0\x00\x0a\x00\x13\x00\x4f\xb2\x0a\x14\x15\x11\
\x12\x39\xb0\x0a\x10\xb0\x0c\xd0\x00\xb0\x00\x45\x58\xb0\x03\x2f\
\x1b\xb1\x03\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x01\x2f\x1b\xb1\x01\
\x12\x3e\x59\xb2\x0b\x03\x01\x11\x12\x39\xb0\x0b\x2f\xb1\x00\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\xb1\x12\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x11\x23\x11\x21\x32\
\x04\x15\x14\x04\x23\x25\x21\x32\x36\x35\x34\x26\x27\x21\x01\x69\
\xc0\x02\x19\xef\x01\x0f\xfe\xf7\xf7\xfe\xa9\x01\x59\x9a\xa4\xa4\
\x8f\xfe\x9c\x02\x3a\xfd\xc6\x05\xb0\xf4\xc9\xd4\xe5\x9d\x91\x89\
\x82\x9c\x03\x00\x02\x00\x6d\xff\x0a\x05\x06\x05\xc4\x00\x15\x00\
\x22\x00\x4f\xb2\x08\x23\x24\x11\x12\x39\xb0\x08\x10\xb0\x19\xd0\
\x00\xb0\x00\x45\x58\xb0\x11\x2f\x1b\xb1\x11\x1e\x3e\x59\xb0\x00\
\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x12\x3e\x59\xb2\x03\x08\x11\x11\
\x12\x39\xb0\x11\x10\xb1\x19\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x08\x10\xb1\x20\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\x30\x31\x01\x14\x02\x07\x05\x07\x25\x06\x23\x22\x24\x02\x27\x35\
\x34\x12\x24\x33\x32\x04\x12\x15\x27\x10\x02\x23\x22\x02\x07\x15\
\x14\x12\x20\x12\x37\x05\x01\x86\x79\x01\x04\x83\xfe\xcd\x48\x50\
\xac\xfe\xf6\x93\x02\x92\x01\x0b\xac\xb0\x01\x0b\x90\xc0\xcd\xbe\
\xb5\xd1\x03\xd1\x01\x74\xcc\x03\x02\xa9\xd3\xfe\xcf\x56\xcc\x79\
\xf4\x12\xa9\x01\x39\xce\x69\xd2\x01\x42\xab\xaa\xfe\xc1\xd5\x01\
\x01\x01\x01\x17\xfe\xeb\xf6\x6b\xfa\xfe\xe0\x01\x0f\xfd\x00\x00\
\x02\x00\xa8\x00\x00\x04\xc9\x05\xb0\x00\x0e\x00\x17\x00\x63\xb2\
\x05\x18\x19\x11\x12\x39\xb0\x05\x10\xb0\x16\xd0\x00\xb0\x00\x45\
\x58\xb0\x04\x2f\x1b\xb1\x04\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x02\
\x2f\x1b\xb1\x02\x12\x3e\x59\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\
\x0d\x12\x3e\x59\xb2\x10\x04\x02\x11\x12\x39\xb0\x10\x2f\xb1\x00\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x0b\x00\x04\x11\x12\
\x39\xb0\x04\x10\xb1\x16\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\x30\x31\x01\x21\x11\x23\x11\x21\x32\x04\x15\x14\x06\x07\x01\x15\
\x23\x01\x21\x32\x36\x35\x34\x26\x27\x21\x02\xbf\xfe\xaa\xc1\x01\
\xe2\xf6\x01\x09\x93\x83\x01\x56\xce\xfd\x6e\x01\x27\x8f\xa9\xa1\
\x98\xfe\xda\x02\x4d\xfd\xb3\x05\xb0\xe0\xd6\x88\xca\x32\xfd\x96\
\x0c\x02\xea\x94\x7c\x87\x90\x01\x00\x00\x01\x00\x50\xff\xec\x04\
\x72\x05\xc4\x00\x26\x00\x64\xb2\x00\x27\x28\x11\x12\x39\x00\xb0\
\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1e\x3e\x59\xb0\x00\x45\x58\
\xb0\x1a\x2f\x1b\xb1\x1a\x12\x3e\x59\xb0\x06\x10\xb0\x0b\xd0\xb0\
\x06\x10\xb1\x0e\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x26\
\x1a\x06\x11\x12\x39\xb0\x26\x10\xb1\x14\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb0\x1a\x10\xb0\x1f\xd0\xb0\x1a\x10\xb1\x22\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x26\x26\x35\x34\
\x24\x33\x32\x16\x16\x15\x23\x34\x26\x23\x22\x06\x15\x14\x16\x04\
\x16\x16\x15\x14\x04\x23\x22\x24\x26\x35\x33\x14\x16\x33\x32\x36\
\x34\x26\x02\x56\xf7\xe1\x01\x13\xdc\x96\xeb\x81\xc1\xa8\x99\x8e\
\x9f\x97\x01\x6b\xcd\x63\xfe\xec\xe7\x96\xfe\xfc\x8d\xc1\xc3\xa3\
\x98\xa2\x96\x02\x89\x47\xcf\x98\xac\xe1\x74\xcc\x79\x84\x97\x7d\
\x6f\x59\x7b\x66\x7b\xa4\x6f\xb1\xd5\x73\xc8\x7f\x84\x99\x7c\xd6\
\x75\x00\x01\x00\x31\x00\x00\x04\x97\x05\xb0\x00\x07\x00\x2f\x00\
\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1e\x3e\x59\xb0\x00\x45\
\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb0\x06\x10\xb1\x00\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\xd0\x30\x31\x01\x21\
\x11\x23\x11\x21\x35\x21\x04\x97\xfe\x2c\xbf\xfe\x2d\x04\x66\x05\
\x12\xfa\xee\x05\x12\x9e\x00\x00\x01\x00\x8c\xff\xec\x04\xaa\x05\
\xb0\x00\x12\x00\x3d\xb2\x05\x13\x14\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x00\x2f\x1b\xb1\x00\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x09\
\x2f\x1b\xb1\x09\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\
\x05\x12\x3e\x59\xb1\x0e\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\x30\x31\x01\x11\x06\x00\x07\x07\x22\x00\x27\x11\x33\x11\x14\x16\
\x33\x32\x36\x35\x11\x04\xaa\x01\xfe\xff\xdc\x33\xef\xfe\xe4\x02\
\xbe\xae\xa1\xa3\xad\x05\xb0\xfc\x22\xce\xfe\xfa\x10\x02\x01\x02\
\xe2\x03\xe0\xfc\x26\x9e\xaf\xae\x9e\x03\xdb\x00\x01\x00\x1c\x00\
\x00\x04\xfd\x05\xb0\x00\x06\x00\x38\xb2\x00\x07\x08\x11\x12\x39\
\x00\xb0\x00\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x1e\x3e\x59\xb0\x00\
\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x1e\x3e\x59\xb0\x00\x45\x58\xb0\
\x03\x2f\x1b\xb1\x03\x12\x3e\x59\xb2\x00\x01\x03\x11\x12\x39\x30\
\x31\x25\x01\x33\x01\x23\x01\x33\x02\x8b\x01\xa0\xd2\xfd\xe4\xaa\
\xfd\xe5\xd1\xff\x04\xb1\xfa\x50\x05\xb0\x00\x00\x01\x00\x3d\x00\
\x00\x06\xed\x05\xb0\x00\x12\x00\x59\x00\xb0\x00\x45\x58\xb0\x03\
\x2f\x1b\xb1\x03\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\
\x08\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x11\x2f\x1b\xb1\x11\x1e\x3e\
\x59\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x12\x3e\x59\xb0\x00\
\x45\x58\xb0\x0f\x2f\x1b\xb1\x0f\x12\x3e\x59\xb2\x01\x03\x0a\x11\
\x12\x39\xb2\x06\x03\x0a\x11\x12\x39\xb2\x0d\x03\x0a\x11\x12\x39\
\x30\x31\x01\x17\x37\x01\x33\x01\x17\x37\x13\x33\x01\x23\x01\x27\
\x07\x01\x23\x01\x33\x01\xe3\x1c\x29\x01\x20\xa2\x01\x19\x28\x1f\
\xe2\xc1\xfe\x9f\xaf\xfe\xd4\x17\x17\xfe\xc9\xaf\xfe\xa0\xc0\x01\
\xcb\xc0\xad\x03\xf8\xfc\x08\xb0\xc4\x03\xe4\xfa\x50\x04\x25\x6f\
\x6f\xfb\xdb\x05\xb0\x00\x01\x00\x39\x00\x00\x04\xce\x05\xb0\x00\
\x0b\x00\x6b\x00\xb0\x00\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x1e\x3e\
\x59\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1e\x3e\x59\xb0\x00\
\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\x59\xb0\x00\x45\x58\xb0\
\x07\x2f\x1b\xb1\x07\x12\x3e\x59\xb2\x00\x01\x04\x11\x12\x39\x40\
\x09\x86\x00\x96\x00\xa6\x00\xb6\x00\x04\x5d\xb2\x06\x01\x04\x11\
\x12\x39\x40\x09\x89\x06\x99\x06\xa9\x06\xb9\x06\x04\x5d\xb2\x03\
\x00\x06\x11\x12\x39\xb2\x09\x06\x00\x11\x12\x39\x30\x31\x01\x01\
\x33\x01\x01\x23\x01\x01\x23\x01\x01\x33\x02\x84\x01\x5d\xe2\xfe\
\x34\x01\xd7\xe4\xfe\x9a\xfe\x98\xe3\x01\xd8\xfe\x33\xe1\x03\x82\
\x02\x2e\xfd\x2e\xfd\x22\x02\x38\xfd\xc8\x02\xde\x02\xd2\x00\x00\
\x01\x00\x0f\x00\x00\x04\xbb\x05\xb0\x00\x08\x00\x31\x00\xb0\x00\
\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x1e\x3e\x59\xb0\x00\x45\x58\xb0\
\x07\x2f\x1b\xb1\x07\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x04\x2f\x1b\
\xb1\x04\x12\x3e\x59\xb2\x00\x01\x04\x11\x12\x39\x30\x31\x01\x01\
\x33\x01\x11\x23\x11\x01\x33\x02\x65\x01\x7c\xda\xfe\x0a\xc0\xfe\
\x0a\xdc\x02\xd5\x02\xdb\xfc\x6f\xfd\xe1\x02\x1f\x03\x91\x00\x00\
\x01\x00\x56\x00\x00\x04\x7a\x05\xb0\x00\x09\x00\x46\x00\xb0\x00\
\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x1e\x3e\x59\xb0\x00\x45\x58\xb0\
\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb1\x00\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb2\x04\x00\x02\x11\x12\x39\xb0\x07\x10\xb1\x05\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x09\x05\x07\x11\x12\
\x39\x30\x31\x25\x21\x15\x21\x35\x01\x21\x35\x21\x15\x01\x39\x03\
\x41\xfb\xdc\x03\x1e\xfc\xef\x03\xf7\x9d\x9d\x90\x04\x82\x9e\x8d\
\x00\x00\x01\x00\x92\xfe\xc8\x02\x0b\x06\x80\x00\x07\x00\x24\x00\
\xb0\x04\x2f\xb0\x07\x2f\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb0\x04\x10\xb1\x03\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\x30\x31\x01\x23\x11\x33\x15\x21\x11\x21\x02\x0b\xbf\xbf\xfe\
\x87\x01\x79\x05\xe8\xf9\x78\x98\x07\xb8\x00\x00\x01\x00\x28\xff\
\x83\x03\x38\x05\xb0\x00\x03\x00\x13\x00\xb0\x02\x2f\xb0\x00\x45\
\x58\xb0\x00\x2f\x1b\xb1\x00\x1e\x3e\x59\x30\x31\x13\x33\x01\x23\
\x28\xb0\x02\x60\xb0\x05\xb0\xf9\xd3\x00\x01\x00\x09\xfe\xc8\x01\
\x83\x06\x80\x00\x07\x00\x27\x00\xb0\x02\x2f\xb0\x01\x2f\xb0\x02\
\x10\xb1\x05\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x01\x10\
\xb1\x06\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x13\x21\
\x11\x21\x35\x33\x11\x23\x09\x01\x7a\xfe\x86\xc1\xc1\x06\x80\xf8\
\x48\x98\x06\x88\x00\x00\x01\x00\x40\x02\xd9\x03\x14\x05\xb0\x00\
\x06\x00\x27\xb2\x00\x07\x08\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\
\x03\x2f\x1b\xb1\x03\x1e\x3e\x59\xb0\x00\xd0\xb2\x01\x07\x03\x11\
\x12\x39\xb0\x01\x2f\xb0\x05\xd0\x30\x31\x01\x03\x23\x01\x33\x01\
\x23\x01\xaa\xbe\xac\x01\x2b\x7f\x01\x2a\xab\x04\xbb\xfe\x1e\x02\
\xd7\xfd\x29\x00\x01\x00\x04\xff\x69\x03\x98\x00\x00\x00\x03\x00\
\x1c\x00\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x12\x3e\x59\xb1\
\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x05\x21\x35\
\x21\x03\x98\xfc\x6c\x03\x94\x97\x97\x00\x01\x00\x39\x04\xda\x01\
\xda\x06\x00\x00\x03\x00\x23\x00\xb0\x01\x2f\xb2\x0f\x01\x01\x5d\
\xb0\x00\xd0\x19\xb0\x00\x2f\x18\xb0\x01\x10\xb0\x02\xd0\xb0\x02\
\x2f\xb4\x0f\x02\x1f\x02\x02\x5d\x30\x31\x01\x23\x01\x33\x01\xda\
\x9f\xfe\xfe\xdf\x04\xda\x01\x26\x00\x00\x02\x00\x6d\xff\xec\x03\
\xea\x04\x4e\x00\x1e\x00\x28\x00\x7c\xb2\x17\x29\x2a\x11\x12\x39\
\xb0\x17\x10\xb0\x20\xd0\x00\xb0\x00\x45\x58\xb0\x17\x2f\x1b\xb1\
\x17\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\
\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb2\x02\
\x17\x04\x11\x12\x39\xb2\x0b\x17\x04\x11\x12\x39\xb0\x0b\x2f\xb0\
\x17\x10\xb1\x0f\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x12\
\x0b\x17\x11\x12\x39\xb0\x04\x10\xb1\x1f\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb0\x0b\x10\xb1\x23\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\x30\x31\x21\x26\x27\x06\x23\x22\x26\x35\x34\x24\x33\
\x33\x35\x34\x26\x23\x22\x06\x15\x23\x34\x36\x36\x33\x32\x16\x17\
\x11\x14\x17\x15\x25\x32\x36\x37\x35\x23\x20\x15\x14\x16\x03\x28\
\x10\x0a\x81\xb3\xa0\xcd\x01\x01\xe9\xb4\x74\x71\x63\x86\xba\x73\
\xc5\x76\xbb\xd4\x04\x26\xfe\x0b\x57\x9c\x23\x91\xfe\xac\x74\x20\
\x52\x86\xb5\x8b\xa9\xbb\x55\x61\x73\x64\x47\x51\x97\x58\xbb\xa4\
\xfe\x0e\x95\x58\x10\x8d\x5a\x48\xde\xc7\x57\x62\x00\x00\x02\x00\
\x8c\xff\xec\x04\x20\x06\x00\x00\x0e\x00\x19\x00\x66\xb2\x12\x1a\
\x1b\x11\x12\x39\xb0\x12\x10\xb0\x03\xd0\x00\xb0\x08\x2f\xb0\x00\
\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x1a\x3e\x59\xb0\x00\x45\x58\xb0\
\x03\x2f\x1b\xb1\x03\x12\x3e\x59\xb0\x00\x45\x58\xb0\x06\x2f\x1b\
\xb1\x06\x12\x3e\x59\xb2\x05\x08\x03\x11\x12\x39\xb2\x0a\x0c\x03\
\x11\x12\x39\xb0\x0c\x10\xb1\x12\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb0\x03\x10\xb1\x17\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\x30\x31\x01\x14\x02\x23\x22\x27\x07\x23\x11\x33\x11\x36\x20\
\x12\x11\x27\x34\x26\x23\x22\x07\x11\x16\x33\x32\x36\x04\x20\xe4\
\xc0\xcd\x70\x09\xaa\xb9\x70\x01\x8a\xe1\xb9\x92\x89\xb7\x50\x55\
\xb4\x85\x94\x02\x11\xf8\xfe\xd3\x91\x7d\x06\x00\xfd\xc3\x8b\xfe\
\xd6\xfe\xfd\x05\xbd\xce\xaa\xfe\x2c\xaa\xce\x00\x01\x00\x5c\xff\
\xec\x03\xec\x04\x4e\x00\x1d\x00\x4b\xb2\x10\x1e\x1f\x11\x12\x39\
\x00\xb0\x00\x45\x58\xb0\x10\x2f\x1b\xb1\x10\x1a\x3e\x59\xb0\x00\
\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x12\x3e\x59\xb1\x00\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x08\x10\xb0\x03\xd0\xb0\x10\x10\
\xb0\x14\xd0\xb0\x10\x10\xb1\x17\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\x30\x31\x25\x32\x36\x37\x33\x0e\x02\x23\x22\x00\x11\x35\
\x34\x36\x36\x33\x32\x16\x17\x23\x26\x26\x23\x22\x06\x15\x15\x14\
\x16\x02\x3e\x63\x94\x08\xaf\x05\x76\xc5\x6e\xdd\xfe\xfb\x74\xd9\
\x94\xb6\xf1\x08\xaf\x08\x8f\x69\x8d\x9b\x9a\x83\x78\x5a\x5d\xa8\
\x64\x01\x27\x01\x00\x1f\x9e\xf6\x88\xda\xae\x69\x87\xcb\xc0\x23\
\xbb\xca\x00\x00\x02\x00\x5f\xff\xec\x03\xf0\x06\x00\x00\x0f\x00\
\x1a\x00\x66\xb2\x18\x1b\x1c\x11\x12\x39\xb0\x18\x10\xb0\x03\xd0\
\x00\xb0\x06\x2f\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1a\x3e\
\x59\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x12\x3e\x59\xb0\x00\
\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x12\x3e\x59\xb2\x05\x03\x0c\x11\
\x12\x39\xb2\x0a\x03\x0c\x11\x12\x39\xb0\x0c\x10\xb1\x13\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\xb1\x18\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x13\x34\x12\x33\x32\x17\x11\
\x33\x11\x23\x27\x06\x23\x22\x02\x35\x17\x14\x16\x33\x32\x37\x11\
\x26\x23\x22\x06\x5f\xec\xbf\xbe\x6f\xb9\xaa\x09\x6f\xc6\xbc\xed\
\xb9\x98\x86\xb0\x51\x53\xac\x88\x98\x02\x26\xf9\x01\x2f\x82\x02\
\x34\xfa\x00\x74\x88\x01\x34\xf8\x07\xb8\xd0\x9e\x01\xf1\x99\xd2\
\x00\x00\x02\x00\x5d\xff\xec\x03\xf3\x04\x4e\x00\x15\x00\x1d\x00\
\x6c\xb2\x08\x1e\x1f\x11\x12\x39\xb0\x08\x10\xb0\x16\xd0\x00\xb0\
\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1a\x3e\x59\xb0\x00\x45\x58\
\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb2\x1a\x08\x00\x11\x12\x39\
\xb0\x1a\x2f\xb4\xbf\x1a\xcf\x1a\x02\x5d\xb1\x0c\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x00\x10\xb1\x10\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb2\x13\x08\x00\x11\x12\x39\xb0\x08\x10\xb1\
\x16\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x05\x22\x00\
\x35\x35\x34\x36\x36\x33\x32\x12\x11\x15\x21\x16\x16\x33\x32\x36\
\x37\x17\x06\x01\x22\x06\x07\x21\x35\x26\x26\x02\x4d\xdc\xfe\xec\
\x7b\xdd\x81\xd3\xea\xfd\x23\x04\xb3\x8a\x62\x88\x33\x71\x88\xfe\
\xd9\x70\x98\x12\x02\x1e\x08\x88\x14\x01\x21\xf2\x22\xa1\xfd\x8f\
\xfe\xea\xfe\xfd\x4d\xa0\xc5\x50\x42\x58\xd1\x03\xca\xa3\x93\x0e\
\x8d\x9b\x00\x00\x01\x00\x3c\x00\x00\x02\xca\x06\x15\x00\x15\x00\
\x65\xb2\x0f\x16\x17\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x08\x2f\
\x1b\xb1\x08\x20\x3e\x59\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\
\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x11\x2f\x1b\xb1\x11\x1a\x3e\x59\
\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb0\x03\x10\
\xb1\x01\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x08\x10\xb1\
\x0d\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x01\x10\xb0\x13\
\xd0\xb0\x14\xd0\x30\x31\x33\x11\x23\x35\x33\x35\x34\x36\x33\x32\
\x17\x07\x26\x23\x22\x06\x15\x15\x33\x15\x23\x11\xe7\xab\xab\xba\
\xaa\x40\x3f\x0a\x2f\x35\x5a\x62\xe7\xe7\x03\xab\x8f\x6f\xae\xbe\
\x11\x96\x09\x69\x62\x72\x8f\xfc\x55\x00\x02\x00\x60\xfe\x56\x03\
\xf2\x04\x4e\x00\x19\x00\x24\x00\x86\xb2\x22\x25\x26\x11\x12\x39\
\xb0\x22\x10\xb0\x0b\xd0\x00\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\
\x03\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1a\x3e\
\x59\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x14\x3e\x59\xb0\x00\
\x45\x58\xb0\x17\x2f\x1b\xb1\x17\x12\x3e\x59\xb2\x05\x03\x17\x11\
\x12\x39\xb2\x0f\x17\x0b\x11\x12\x39\xb0\x0b\x10\xb1\x11\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x15\x03\x17\x11\x12\x39\xb0\
\x17\x10\xb1\x1d\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\
\x10\xb1\x22\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x13\
\x34\x12\x33\x32\x17\x37\x33\x11\x14\x06\x23\x22\x26\x27\x37\x16\
\x33\x32\x36\x35\x35\x06\x23\x22\x02\x37\x14\x16\x33\x32\x37\x11\
\x26\x23\x22\x06\x60\xea\xc1\xc6\x6f\x09\xa9\xf9\xd2\x75\xe0\x3b\
\x60\x77\xac\x87\x97\x6f\xc0\xbe\xeb\xba\x96\x87\xaf\x52\x55\xaa\
\x87\x98\x02\x26\xfd\x01\x2b\x8c\x78\xfb\xe0\xd2\xf2\x64\x57\x6f\
\x93\x98\x8a\x5d\x80\x01\x32\xf3\xb7\xd1\x9f\x01\xee\x9b\xd2\x00\
\x01\x00\x8c\x00\x00\x03\xdf\x06\x00\x00\x11\x00\x4a\xb2\x0a\x12\
\x13\x11\x12\x39\x00\xb0\x10\x2f\xb0\x00\x45\x58\xb0\x02\x2f\x1b\
\xb1\x02\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x12\
\x3e\x59\xb0\x00\x45\x58\xb0\x0e\x2f\x1b\xb1\x0e\x12\x3e\x59\xb2\
\x00\x02\x05\x11\x12\x39\xb0\x02\x10\xb1\x0a\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\x30\x31\x01\x36\x33\x20\x13\x11\x23\x11\x26\
\x26\x23\x22\x06\x07\x11\x23\x11\x33\x01\x45\x7b\xc5\x01\x57\x03\
\xb9\x01\x69\x6f\x5a\x88\x26\xb9\xb9\x03\xb7\x97\xfe\x7d\xfd\x35\
\x02\xcc\x75\x70\x60\x4e\xfc\xfd\x06\x00\x00\x00\x02\x00\x8d\x00\
\x00\x01\x68\x05\xc4\x00\x03\x00\x0c\x00\x3f\xb2\x06\x0d\x0e\x11\
\x12\x39\xb0\x06\x10\xb0\x01\xd0\x00\xb0\x00\x45\x58\xb0\x02\x2f\
\x1b\xb1\x02\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\
\x12\x3e\x59\xb0\x02\x10\xb0\x0a\xd0\xb0\x0a\x2f\xb1\x06\x05\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x21\x23\x11\x33\x03\x34\
\x36\x32\x16\x14\x06\x22\x26\x01\x55\xb9\xb9\xc8\x37\x6c\x38\x38\
\x6c\x37\x04\x3a\x01\x1f\x2d\x3e\x3e\x5a\x3c\x3c\x00\x00\x02\xff\
\xbf\xfe\x4b\x01\x59\x05\xc4\x00\x0c\x00\x16\x00\x4b\xb2\x10\x17\
\x18\x11\x12\x39\xb0\x10\x10\xb0\x00\xd0\x00\xb0\x00\x45\x58\xb0\
\x0c\x2f\x1b\xb1\x0c\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x03\x2f\x1b\
\xb1\x03\x14\x3e\x59\xb1\x08\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x0c\x10\xb0\x15\xd0\xb0\x15\x2f\xb1\x10\x05\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x11\x10\x21\x22\x27\x35\x16\
\x33\x32\x36\x35\x11\x03\x34\x36\x33\x32\x16\x14\x06\x22\x26\x01\
\x4b\xfe\xe5\x3d\x34\x20\x34\x3e\x41\x13\x37\x35\x36\x38\x38\x6c\
\x36\x04\x3a\xfb\x49\xfe\xc8\x12\x94\x08\x43\x53\x04\xbb\x01\x1f\
\x2c\x3f\x3e\x5a\x3c\x3c\x00\x00\x01\x00\x8d\x00\x00\x04\x0c\x06\
\x00\x00\x0c\x00\x75\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\
\x20\x3e\x59\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1a\x3e\x59\
\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb0\x00\x45\
\x58\xb0\x0b\x2f\x1b\xb1\x0b\x12\x3e\x59\xb2\x00\x08\x02\x11\x12\
\x39\x40\x15\x3a\x00\x4a\x00\x5a\x00\x6a\x00\x7a\x00\x8a\x00\x9a\
\x00\xaa\x00\xba\x00\xca\x00\x0a\x5d\xb2\x06\x08\x02\x11\x12\x39\
\x40\x15\x36\x06\x46\x06\x56\x06\x66\x06\x76\x06\x86\x06\x96\x06\
\xa6\x06\xb6\x06\xc6\x06\x0a\x5d\x30\x31\x01\x07\x11\x23\x11\x33\
\x11\x37\x01\x33\x01\x01\x23\x01\xba\x74\xb9\xb9\x63\x01\x51\xe1\
\xfe\x5b\x01\xd6\xd9\x01\xf5\x79\xfe\x84\x06\x00\xfc\x5f\x77\x01\
\x64\xfe\x3c\xfd\x8a\x00\x01\x00\x9c\x00\x00\x01\x55\x06\x00\x00\
\x03\x00\x1d\x00\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x20\x3e\
\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\x30\x31\
\x21\x23\x11\x33\x01\x55\xb9\xb9\x06\x00\x00\x00\x01\x00\x8b\x00\
\x00\x06\x78\x04\x4e\x00\x1d\x00\x78\xb2\x04\x1e\x1f\x11\x12\x39\
\x00\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1a\x3e\x59\xb0\x00\
\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1a\x3e\x59\xb0\x00\x45\x58\xb0\
\x00\x2f\x1b\xb1\x00\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\
\xb1\x0b\x12\x3e\x59\xb0\x00\x45\x58\xb0\x14\x2f\x1b\xb1\x14\x12\
\x3e\x59\xb0\x00\x45\x58\xb0\x1b\x2f\x1b\xb1\x1b\x12\x3e\x59\xb2\
\x01\x08\x0b\x11\x12\x39\xb2\x05\x08\x0b\x11\x12\x39\xb0\x08\x10\
\xb1\x10\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x18\xd0\x30\
\x31\x01\x17\x36\x33\x32\x17\x36\x36\x33\x20\x13\x11\x23\x11\x34\
\x26\x23\x22\x06\x07\x11\x23\x11\x34\x23\x22\x07\x11\x23\x11\x01\
\x3a\x05\x77\xca\xe3\x52\x36\xad\x76\x01\x64\x06\xb9\x6a\x7d\x67\
\x88\x0b\xba\xe7\xb6\x43\xb9\x04\x3a\x78\x8c\xae\x4e\x60\xfe\x87\
\xfd\x2b\x02\xca\x74\x73\x7b\x68\xfd\x32\x02\xc5\xec\x9b\xfc\xea\
\x04\x3a\x00\x00\x01\x00\x8c\x00\x00\x03\xdf\x04\x4e\x00\x11\x00\
\x54\xb2\x0b\x12\x13\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x03\x2f\
\x1b\xb1\x03\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\
\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x12\x3e\x59\
\xb0\x00\x45\x58\xb0\x0f\x2f\x1b\xb1\x0f\x12\x3e\x59\xb2\x01\x03\
\x06\x11\x12\x39\xb0\x03\x10\xb1\x0b\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\x30\x31\x01\x17\x36\x33\x20\x13\x11\x23\x11\x26\x26\
\x23\x22\x06\x07\x11\x23\x11\x01\x3b\x06\x7c\xc8\x01\x57\x03\xb9\
\x01\x69\x6f\x5a\x88\x26\xb9\x04\x3a\x88\x9c\xfe\x7d\xfd\x35\x02\
\xcc\x75\x70\x60\x4e\xfc\xfd\x04\x3a\x00\x02\x00\x5b\xff\xec\x04\
\x34\x04\x4e\x00\x0f\x00\x1b\x00\x45\xb2\x0c\x1c\x1d\x11\x12\x39\
\xb0\x0c\x10\xb0\x13\xd0\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\
\x04\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x12\x3e\
\x59\xb1\x13\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\x10\
\xb1\x19\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x13\x34\
\x36\x36\x33\x32\x00\x15\x15\x14\x06\x06\x23\x22\x00\x35\x17\x14\
\x16\x33\x32\x36\x35\x34\x26\x23\x22\x06\x5b\x7d\xdf\x8f\xdd\x01\
\x11\x79\xe1\x92\xdc\xfe\xef\xba\xa7\x8c\x8d\xa6\xa9\x8c\x89\xa8\
\x02\x27\x9f\xfe\x8a\xfe\xce\xfe\x0d\x9e\xfb\x8c\x01\x32\xfc\x09\
\xb4\xda\xdd\xc7\xb2\xdd\xda\x00\x02\x00\x8c\xfe\x60\x04\x1e\x04\
\x4e\x00\x0f\x00\x1a\x00\x70\xb2\x13\x1b\x1c\x11\x12\x39\xb0\x13\
\x10\xb0\x0c\xd0\x00\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x1a\
\x3e\x59\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\x09\x1a\x3e\x59\xb0\
\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x14\x3e\x59\xb0\x00\x45\x58\
\xb0\x03\x2f\x1b\xb1\x03\x12\x3e\x59\xb2\x05\x0c\x03\x11\x12\x39\
\xb2\x0a\x0c\x03\x11\x12\x39\xb0\x0c\x10\xb1\x13\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\xb1\x18\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\x30\x31\x01\x14\x02\x23\x22\x27\x11\x23\x11\
\x33\x17\x36\x33\x32\x12\x11\x27\x34\x26\x23\x22\x07\x11\x16\x33\
\x32\x36\x04\x1e\xe2\xc1\xc5\x71\xb9\xa9\x09\x71\xc9\xc3\xe3\xb9\
\x9c\x88\xa8\x54\x53\xab\x85\x9d\x02\x11\xf7\xfe\xd2\x7d\xfd\xf7\
\x05\xda\x78\x8c\xfe\xda\xfe\xfa\x04\xb7\xd4\x95\xfd\xfb\x94\xd3\
\x00\x00\x02\x00\x5f\xfe\x60\x03\xef\x04\x4e\x00\x0f\x00\x1a\x00\
\x6d\xb2\x18\x1b\x1c\x11\x12\x39\xb0\x18\x10\xb0\x03\xd0\x00\xb0\
\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1a\x3e\x59\xb0\x00\x45\x58\
\xb0\x06\x2f\x1b\xb1\x06\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x08\x2f\
\x1b\xb1\x08\x14\x3e\x59\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\
\x12\x3e\x59\xb2\x05\x03\x0c\x11\x12\x39\xb2\x0a\x03\x0c\x11\x12\
\x39\xb1\x13\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\
\xb1\x18\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x13\x34\
\x12\x33\x32\x17\x37\x33\x11\x23\x11\x06\x23\x22\x02\x35\x17\x14\
\x16\x33\x32\x37\x11\x26\x23\x22\x06\x5f\xea\xc5\xc0\x6f\x08\xaa\
\xb9\x70\xba\xc4\xe9\xb9\x9d\x85\xa5\x57\x58\xa2\x86\x9e\x02\x26\
\xff\x01\x29\x81\x6d\xfa\x26\x02\x04\x78\x01\x31\xfc\x08\xba\xd4\
\x92\x02\x12\x8f\xd5\x00\x01\x00\x8c\x00\x00\x02\x97\x04\x4e\x00\
\x0d\x00\x47\xb2\x04\x0e\x0f\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\
\x0b\x2f\x1b\xb1\x0b\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x08\x2f\x1b\
\xb1\x08\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x12\
\x3e\x59\xb0\x0b\x10\xb1\x02\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb2\x09\x0b\x05\x11\x12\x39\x30\x31\x01\x26\x23\x22\x07\x11\
\x23\x11\x33\x17\x36\x33\x32\x17\x02\x97\x2a\x31\xb6\x41\xb9\xb4\
\x03\x5b\xa7\x36\x1c\x03\x94\x07\x9b\xfd\x00\x04\x3a\x7d\x91\x0e\
\x00\x00\x01\x00\x5f\xff\xec\x03\xbb\x04\x4e\x00\x26\x00\x64\xb2\
\x09\x27\x28\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\
\x09\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x1c\x2f\x1b\xb1\x1c\x12\x3e\
\x59\xb2\x03\x1c\x09\x11\x12\x39\xb0\x09\x10\xb0\x0d\xd0\xb0\x09\
\x10\xb1\x10\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\
\xb1\x15\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x1c\x10\xb0\
\x21\xd0\xb0\x1c\x10\xb1\x24\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\x30\x31\x01\x34\x26\x24\x26\x26\x35\x34\x36\x33\x32\x16\x15\
\x23\x34\x26\x23\x22\x06\x15\x14\x16\x04\x16\x16\x15\x14\x06\x23\
\x22\x26\x26\x35\x33\x16\x16\x33\x32\x36\x03\x02\x71\xfe\xe7\xa5\
\x4f\xe1\xaf\xb8\xe5\xba\x81\x62\x65\x72\x6a\x01\x15\xac\x53\xe8\
\xb9\x82\xc8\x71\xb9\x05\x8b\x72\x69\x7f\x01\x1f\x4b\x53\x3c\x54\
\x74\x50\x85\xb8\xbe\x94\x4c\x6e\x58\x47\x43\x44\x3e\x56\x79\x57\
\x91\xaf\x5c\xa5\x60\x5d\x6d\x55\x00\x00\x01\x00\x09\xff\xec\x02\
\x56\x05\x40\x00\x15\x00\x61\xb2\x0e\x16\x17\x11\x12\x39\x00\xb0\
\x00\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x1a\x3e\x59\xb0\x00\x45\x58\
\xb0\x13\x2f\x1b\xb1\x13\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x0d\x2f\
\x1b\xb1\x0d\x12\x3e\x59\xb0\x01\x10\xb0\x00\xd0\xb0\x00\x2f\xb0\
\x01\x10\xb1\x03\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0d\
\x10\xb1\x08\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\
\xb0\x11\xd0\xb0\x12\xd0\x30\x31\x01\x11\x33\x15\x23\x11\x14\x16\
\x33\x32\x37\x15\x06\x23\x22\x26\x35\x11\x23\x35\x33\x11\x01\x87\
\xca\xca\x36\x41\x20\x38\x49\x45\x7c\x7e\xc5\xc5\x05\x40\xfe\xfa\
\x8f\xfd\x61\x41\x41\x0c\x96\x14\x96\x8a\x02\x9f\x8f\x01\x06\x00\
\x01\x00\x88\xff\xec\x03\xdc\x04\x3a\x00\x10\x00\x54\xb2\x0a\x11\
\x12\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1a\
\x3e\x59\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x1a\x3e\x59\xb0\
\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb0\x00\x45\x58\
\xb0\x10\x2f\x1b\xb1\x10\x12\x3e\x59\xb2\x00\x0d\x02\x11\x12\x39\
\xb0\x02\x10\xb1\x0a\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\
\x31\x25\x06\x23\x22\x26\x27\x11\x33\x11\x14\x33\x32\x37\x11\x33\
\x11\x23\x03\x28\x6c\xd1\xad\xb5\x01\xb9\xc8\xd4\x46\xb9\xb0\x6b\
\x7f\xc9\xc5\x02\xc0\xfd\x45\xf6\x9e\x03\x13\xfb\xc6\x00\x01\x00\
\x21\x00\x00\x03\xba\x04\x3a\x00\x06\x00\x38\xb2\x00\x07\x08\x11\
\x12\x39\x00\xb0\x00\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x1a\x3e\x59\
\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x1a\x3e\x59\xb0\x00\x45\
\x58\xb0\x03\x2f\x1b\xb1\x03\x12\x3e\x59\xb2\x00\x05\x03\x11\x12\
\x39\x30\x31\x25\x01\x33\x01\x23\x01\x33\x01\xf1\x01\x0c\xbd\xfe\
\x7c\x8d\xfe\x78\xbd\xfb\x03\x3f\xfb\xc6\x04\x3a\x00\x00\x01\x00\
\x2b\x00\x00\x05\xd3\x04\x3a\x00\x0c\x00\x60\xb2\x05\x0d\x0e\x11\
\x12\x39\x00\xb0\x00\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x1a\x3e\x59\
\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1a\x3e\x59\xb0\x00\x45\
\x58\xb0\x0b\x2f\x1b\xb1\x0b\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x03\
\x2f\x1b\xb1\x03\x12\x3e\x59\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\
\x06\x12\x3e\x59\xb2\x00\x0b\x03\x11\x12\x39\xb2\x05\x0b\x03\x11\
\x12\x39\xb2\x0a\x0b\x03\x11\x12\x39\x30\x31\x25\x13\x33\x01\x23\
\x01\x01\x23\x01\x33\x13\x13\x33\x04\x4a\xd0\xb9\xfe\xc5\x96\xfe\
\xf9\xff\x00\x96\xfe\xc6\xb8\xd5\xfc\x95\xff\x03\x3b\xfb\xc6\x03\
\x34\xfc\xcc\x04\x3a\xfc\xd6\x03\x2a\x00\x01\x00\x29\x00\x00\x03\
\xca\x04\x3a\x00\x0b\x00\x53\x00\xb0\x00\x45\x58\xb0\x01\x2f\x1b\
\xb1\x01\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1a\
\x3e\x59\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\x59\xb0\
\x00\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x12\x3e\x59\xb2\x00\x0a\x04\
\x11\x12\x39\xb2\x06\x0a\x04\x11\x12\x39\xb2\x03\x00\x06\x11\x12\
\x39\xb2\x09\x06\x00\x11\x12\x39\x30\x31\x01\x13\x33\x01\x01\x23\
\x03\x03\x23\x01\x01\x33\x01\xf7\xf0\xd8\xfe\x9e\x01\x6d\xd6\xfa\
\xfa\xd7\x01\x6d\xfe\x9e\xd6\x02\xaf\x01\x8b\xfd\xe9\xfd\xdd\x01\
\x95\xfe\x6b\x02\x23\x02\x17\x00\x01\x00\x16\xfe\x4b\x03\xb0\x04\
\x3a\x00\x0f\x00\x4a\xb2\x00\x10\x11\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x01\x2f\x1b\xb1\x01\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x0e\
\x2f\x1b\xb1\x0e\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\
\x05\x14\x3e\x59\xb2\x00\x0e\x05\x11\x12\x39\xb1\x09\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x00\x10\xb0\x0d\xd0\x30\x31\x01\
\x13\x33\x01\x02\x23\x27\x27\x35\x17\x32\x36\x37\x37\x01\x33\x01\
\xee\xfc\xc6\xfe\x4d\x65\xdc\x23\x45\x32\x5e\x69\x22\x29\xfe\x7e\
\xca\x01\x0f\x03\x2b\xfb\x1f\xfe\xf2\x03\x0d\x96\x04\x4c\x65\x6e\
\x04\x2e\x00\x00\x01\x00\x58\x00\x00\x03\xb3\x04\x3a\x00\x09\x00\
\x46\x00\xb0\x00\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x1a\x3e\x59\xb0\
\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb1\x00\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x04\x00\x02\x11\x12\x39\xb0\
\x07\x10\xb1\x05\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x09\
\x05\x07\x11\x12\x39\x30\x31\x25\x21\x15\x21\x35\x01\x21\x35\x21\
\x15\x01\x3a\x02\x79\xfc\xa5\x02\x55\xfd\xb4\x03\x34\x97\x97\x88\
\x03\x19\x99\x83\x00\x00\x01\x00\x40\xfe\x92\x02\x9e\x06\x3d\x00\
\x18\x00\x32\xb2\x13\x19\x1a\x11\x12\x39\x00\xb0\x0d\x2f\xb0\x00\
\x2f\xb2\x07\x0d\x00\x11\x12\x39\xb0\x07\x2f\xb2\x1f\x07\x01\x5d\
\xb1\x06\x03\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x13\x06\x07\
\x11\x12\x39\x30\x31\x01\x26\x26\x35\x35\x34\x23\x35\x32\x35\x35\
\x36\x36\x37\x17\x06\x11\x15\x14\x07\x16\x15\x15\x12\x17\x02\x78\
\xb1\xb3\xd4\xd4\x02\xaf\xb3\x26\xd1\xa7\xa7\x03\xce\xfe\x92\x32\
\xe5\xbc\xc7\xf3\x91\xf2\xd0\xb7\xe1\x33\x73\x43\xfe\xe6\xca\xe3\
\x59\x5a\xe5\xce\xfe\xed\x42\x00\x01\x00\xaf\xfe\xf2\x01\x44\x05\
\xb0\x00\x03\x00\x13\x00\xb0\x00\x2f\xb0\x00\x45\x58\xb0\x02\x2f\
\x1b\xb1\x02\x1e\x3e\x59\x30\x31\x01\x23\x11\x33\x01\x44\x95\x95\
\xfe\xf2\x06\xbe\x00\x00\x01\x00\x13\xfe\x92\x02\x72\x06\x3d\x00\
\x18\x00\x32\xb2\x05\x19\x1a\x11\x12\x39\x00\xb0\x0b\x2f\xb0\x18\
\x2f\xb2\x11\x0b\x18\x11\x12\x39\xb0\x11\x2f\xb2\x1f\x11\x01\x5d\
\xb1\x12\x03\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x05\x12\x11\
\x11\x12\x39\x30\x31\x17\x36\x13\x35\x34\x37\x26\x35\x35\x10\x27\
\x37\x16\x16\x17\x15\x14\x33\x15\x22\x15\x15\x14\x06\x07\x13\xcb\
\x07\xb5\xb5\xd1\x26\xb1\xb2\x01\xd4\xd4\xb5\xaf\xfb\x41\x01\x0a\
\xdc\xe7\x54\x52\xe9\xcb\x01\x1a\x43\x73\x32\xe1\xb9\xd2\xef\x91\
\xf3\xca\xbc\xe2\x32\x00\x01\x00\x83\x01\x92\x04\xef\x03\x22\x00\
\x17\x00\x44\xb2\x11\x18\x19\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\
\x0f\x2f\x1b\xb1\x0f\x18\x3e\x59\xb0\x00\xd0\xb0\x0f\x10\xb0\x14\
\xd0\xb0\x14\x2f\xb1\x03\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb0\x0f\x10\xb1\x08\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x03\x10\xb0\x0b\xd0\x30\x31\x01\x14\x06\x23\x22\x2e\x02\x23\x22\
\x06\x15\x07\x34\x36\x33\x32\x16\x16\x17\x17\x32\x36\x35\x04\xef\
\xbb\x89\x48\x80\xa9\x4a\x2a\x4e\x54\xa1\xb8\x8b\x4c\x8c\xb0\x40\
\x1d\x4c\x5f\x03\x09\x9e\xd9\x35\x94\x24\x6b\x5e\x02\xa0\xce\x40\
\xa1\x0a\x02\x74\x5f\x00\x02\x00\x8b\xfe\x98\x01\x66\x04\x4d\x00\
\x03\x00\x0c\x00\x33\xb2\x06\x0d\x0e\x11\x12\x39\xb0\x06\x10\xb0\
\x00\xd0\x00\xb0\x02\x2f\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\
\x1a\x3e\x59\xb1\x06\x05\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\
\x01\x02\x06\x11\x12\x39\x30\x31\x13\x33\x13\x23\x13\x14\x06\x22\
\x26\x34\x36\x32\x16\xaa\xa8\x0d\xc2\xc9\x37\x6c\x38\x38\x6c\x37\
\x02\xac\xfb\xec\x05\x4c\x2d\x3e\x3e\x5a\x3c\x3c\x00\x00\x01\x00\
\x69\xff\x0b\x03\xf9\x05\x26\x00\x21\x00\x54\xb2\x00\x22\x23\x11\
\x12\x39\x00\xb0\x00\x45\x58\xb0\x14\x2f\x1b\xb1\x14\x1a\x3e\x59\
\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x12\x3e\x59\xb0\x07\xd0\
\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0a\x10\xb0\
\x03\xd0\xb0\x14\x10\xb0\x11\xd0\xb0\x14\x10\xb0\x18\xd0\xb0\x14\
\x10\xb1\x1b\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x25\
\x32\x36\x37\x33\x06\x06\x07\x15\x23\x35\x26\x02\x35\x35\x34\x12\
\x37\x35\x33\x15\x16\x16\x17\x23\x26\x26\x23\x22\x06\x15\x15\x14\
\x16\x02\x4a\x64\x94\x08\xaf\x06\xc6\x90\xb9\xb3\xc8\xca\xb1\xb9\
\x96\xc0\x06\xaf\x08\x8f\x69\x8d\x9b\x9b\x83\x79\x59\x7e\xc9\x1a\
\xe9\xea\x22\x01\x1c\xdc\x23\xd4\x01\x1d\x21\xe2\xdf\x17\xd4\x96\
\x69\x87\xcb\xc0\x23\xbb\xca\x00\x01\x00\x5b\x00\x00\x04\x68\x05\
\xc4\x00\x21\x00\x7f\xb2\x1c\x22\x23\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x14\x2f\x1b\xb1\x14\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x05\
\x2f\x1b\xb1\x05\x12\x3e\x59\xb2\x1f\x14\x05\x11\x12\x39\xb0\x1f\
\x2f\xb2\x5f\x1f\x01\x72\xb2\x8f\x1f\x01\x71\xb2\xbf\x1f\x01\x5d\
\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x05\x10\xb1\
\x03\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x07\xd0\xb0\x08\
\xd0\xb0\x00\x10\xb0\x0d\xd0\xb0\x1f\x10\xb0\x0f\xd0\xb0\x14\x10\
\xb0\x18\xd0\xb0\x14\x10\xb1\x1b\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\x30\x31\x01\x17\x14\x07\x21\x07\x21\x35\x33\x36\x36\x37\
\x35\x27\x23\x35\x33\x03\x34\x36\x33\x32\x16\x15\x23\x34\x26\x23\
\x22\x06\x15\x13\x21\x15\x01\xc1\x08\x3e\x02\xdd\x01\xfb\xf8\x4d\
\x28\x32\x02\x08\xa5\xa0\x09\xf5\xc8\xbe\xde\xbf\x7f\x6f\x69\x82\
\x09\x01\x3f\x02\x6e\xdc\x9a\x5b\x9d\x9d\x09\x83\x60\x08\xdd\x9d\
\x01\x04\xc7\xee\xd4\xb1\x6b\x7c\x9a\x7d\xfe\xfc\x9d\x00\x02\x00\
\x69\xff\xe5\x05\x5b\x04\xf1\x00\x1b\x00\x2a\x00\x41\xb2\x02\x2b\
\x2c\x11\x12\x39\xb0\x02\x10\xb0\x27\xd0\x00\xb0\x00\x45\x58\xb0\
\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb0\x10\xd0\xb0\x10\x2f\xb0\x02\
\x10\xb1\x1f\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x10\x10\
\xb1\x27\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x25\x06\
\x23\x22\x27\x07\x27\x37\x26\x35\x34\x37\x27\x37\x17\x36\x33\x32\
\x17\x37\x17\x07\x16\x15\x14\x07\x17\x07\x01\x14\x16\x16\x32\x36\
\x36\x35\x34\x26\x26\x23\x22\x06\x06\x04\x4f\x9f\xd1\xcf\x9f\x86\
\x82\x8b\x68\x70\x93\x82\x93\x9e\xc3\xc4\x9f\x95\x84\x97\x6e\x66\
\x8f\x84\xfc\x60\x73\xc4\xe2\xc4\x71\x71\xc5\x70\x71\xc4\x73\x70\
\x84\x82\x88\x87\x8d\x9c\xca\xce\xa3\x97\x88\x96\x78\x79\x98\x89\
\x9a\xa3\xcb\xc4\x9f\x90\x88\x02\x7b\x7b\xd4\x7a\x7b\xd3\x7b\x7a\
\xd3\x79\x78\xd4\x00\x00\x01\x00\x0f\x00\x00\x04\x24\x05\xb0\x00\
\x16\x00\x71\xb2\x00\x17\x18\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\
\x01\x2f\x1b\xb1\x01\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\
\xb1\x0b\x12\x3e\x59\xb2\x00\x0b\x01\x11\x12\x39\xb2\x07\x01\x0b\
\x11\x12\x39\xb0\x07\x2f\xb0\x03\xd0\xb0\x03\x2f\xb1\x05\x02\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x07\x10\xb1\x09\x02\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0d\xd0\xb0\x07\x10\xb0\x0f\xd0\
\xb0\x05\x10\xb0\x11\xd0\xb0\x03\x10\xb0\x13\xd0\xb0\x01\x10\xb0\
\x15\xd0\x30\x31\x01\x01\x33\x01\x21\x15\x21\x15\x21\x15\x21\x11\
\x23\x11\x21\x35\x21\x35\x21\x35\x21\x01\x33\x02\x1b\x01\x34\xd5\
\xfe\x91\x01\x05\xfe\xbc\x01\x44\xfe\xbc\xc1\xfe\xc2\x01\x3e\xfe\
\xc2\x01\x07\xfe\x91\xd8\x03\x19\x02\x97\xfd\x30\x7d\xa5\x7c\xfe\
\xbe\x01\x42\x7c\xa5\x7d\x02\xd0\x00\x00\x02\x00\x93\xfe\xf2\x01\
\x4d\x05\xb0\x00\x03\x00\x07\x00\x18\x00\xb0\x00\x2f\xb0\x00\x45\
\x58\xb0\x06\x2f\x1b\xb1\x06\x1e\x3e\x59\xb2\x05\x01\x03\x2b\x30\
\x31\x13\x11\x33\x11\x11\x23\x11\x33\x93\xba\xba\xba\xfe\xf2\x03\
\x17\xfc\xe9\x03\xc8\x02\xf6\x00\x02\x00\x5a\xfe\x11\x04\x79\x05\
\xc4\x00\x34\x00\x44\x00\x84\xb2\x23\x45\x46\x11\x12\x39\xb0\x23\
\x10\xb0\x35\xd0\x00\xb0\x08\x2f\xb0\x00\x45\x58\xb0\x23\x2f\x1b\
\xb1\x23\x1e\x3e\x59\xb2\x16\x08\x23\x11\x12\x39\xb0\x16\x10\xb1\
\x3f\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x02\x16\x3f\x11\
\x12\x39\xb0\x08\x10\xb0\x0e\xd0\xb0\x08\x10\xb1\x11\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x30\x23\x08\x11\x12\x39\xb0\x30\
\x10\xb1\x37\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x1d\x37\
\x30\x11\x12\x39\xb0\x23\x10\xb0\x27\xd0\xb0\x23\x10\xb1\x2a\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x14\x07\x16\x16\
\x15\x14\x04\x23\x22\x26\x27\x26\x35\x37\x14\x16\x33\x32\x36\x35\
\x34\x26\x27\x2e\x02\x35\x34\x37\x26\x26\x35\x34\x24\x33\x32\x04\
\x15\x23\x34\x26\x23\x22\x06\x15\x14\x16\x16\x04\x1e\x02\x25\x26\
\x27\x06\x06\x15\x14\x16\x16\x04\x17\x36\x36\x35\x34\x26\x04\x79\
\xba\x45\x48\xfe\xfc\xe4\x70\xc9\x46\x8b\xba\xb4\x9c\x88\xa6\x8e\
\xd1\xb6\xc0\x5d\xb6\x42\x47\x01\x0b\xde\xe8\x01\x04\xb9\xa8\x8b\
\x8e\xa1\x38\x87\x01\x1f\xa9\x71\x3a\xfd\xe1\x5a\x4b\x50\x4b\x36\
\x85\x01\x1c\x2c\x4e\x54\x8b\x01\xaf\xbd\x55\x31\x88\x64\xa8\xc7\
\x38\x39\x71\xcd\x02\x82\x97\x75\x60\x59\x69\x3e\x30\x6f\x9b\x6f\
\xba\x58\x31\x88\x64\xa6\xc8\xe2\xcd\x7d\x9b\x73\x62\x45\x50\x41\
\x50\x48\x61\x81\xab\x18\x1b\x13\x65\x45\x46\x50\x42\x52\x11\x14\
\x65\x45\x58\x6d\x00\x00\x02\x00\x65\x04\xf0\x02\xee\x05\xc5\x00\
\x08\x00\x11\x00\x1e\x00\xb0\x07\x2f\xb1\x02\x05\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x0b\xd0\xb0\x07\x10\xb0\x10\xd0\xb0\x10\
\x2f\x30\x31\x13\x34\x36\x32\x16\x14\x06\x22\x26\x25\x34\x36\x32\
\x16\x14\x06\x22\x26\x65\x37\x6c\x38\x38\x6c\x37\x01\xae\x37\x6c\
\x38\x38\x6c\x37\x05\x5b\x2d\x3d\x3d\x5a\x3c\x3c\x2b\x2d\x3e\x3e\
\x5a\x3c\x3c\x00\x03\x00\x5b\xff\xeb\x05\xe6\x05\xc4\x00\x1b\x00\
\x2a\x00\x39\x00\x99\xb2\x27\x3a\x3b\x11\x12\x39\xb0\x27\x10\xb0\
\x03\xd0\xb0\x27\x10\xb0\x36\xd0\x00\xb0\x00\x45\x58\xb0\x2e\x2f\
\x1b\xb1\x2e\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x36\x2f\x1b\xb1\x36\
\x12\x3e\x59\xb2\x03\x36\x2e\x11\x12\x39\xb0\x03\x2f\xb4\x0f\x03\
\x1f\x03\x02\x5d\xb2\x0a\x2e\x36\x11\x12\x39\xb0\x0a\x2f\xb4\x00\
\x0a\x10\x0a\x02\x5d\xb2\x0e\x0a\x03\x11\x12\x39\xb1\x11\x02\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\xb1\x18\x02\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x1b\x03\x0a\x11\x12\x39\xb0\x36\
\x10\xb1\x20\x04\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x2e\x10\
\xb1\x27\x04\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x14\
\x06\x23\x22\x26\x35\x35\x34\x36\x33\x32\x16\x15\x23\x34\x26\x23\
\x22\x06\x15\x15\x14\x16\x33\x32\x36\x35\x25\x14\x12\x04\x20\x24\
\x12\x35\x34\x02\x24\x23\x22\x04\x02\x07\x34\x12\x24\x20\x04\x12\
\x15\x14\x02\x04\x23\x22\x24\x02\x04\x5f\xad\x9e\x9d\xbd\xbf\x9b\
\xa0\xac\x92\x5f\x5b\x5e\x6c\x6c\x5e\x5c\x5d\xfd\x01\xa0\x01\x13\
\x01\x40\x01\x12\xa0\x9e\xfe\xed\xa1\xa0\xfe\xec\x9f\x73\xbb\x01\
\x4b\x01\x80\x01\x4a\xbb\xb4\xfe\xb5\xc6\xc5\xfe\xb5\xb6\x02\x55\
\x99\xa1\xd3\xb6\x6e\xb0\xd3\xa4\x95\x63\x55\x8a\x7b\x71\x78\x8a\
\x54\x65\x84\xac\xfe\xdb\xa6\xa6\x01\x25\xac\xaa\x01\x22\xa7\xa5\
\xfe\xdc\xaa\xca\x01\x5a\xc7\xc7\xfe\xa6\xca\xc5\xfe\xa8\xd1\xcf\
\x01\x58\x00\x00\x02\x00\x93\x02\xb3\x03\x0f\x05\xc4\x00\x1b\x00\
\x25\x00\x6f\xb2\x0e\x26\x27\x11\x12\x39\xb0\x0e\x10\xb0\x1d\xd0\
\x00\xb0\x00\x45\x58\xb0\x15\x2f\x1b\xb1\x15\x1e\x3e\x59\xb2\x04\
\x26\x15\x11\x12\x39\xb0\x04\x2f\xb0\x00\xd0\xb2\x02\x04\x15\x11\
\x12\x39\xb2\x0b\x04\x15\x11\x12\x39\xb0\x0b\x2f\xb0\x15\x10\xb1\
\x0e\x03\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x11\x0b\x15\x11\
\x12\x39\xb0\x04\x10\xb1\x1c\x03\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x0b\x10\xb1\x20\x04\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\x30\x31\x01\x26\x27\x06\x23\x22\x26\x35\x34\x36\x33\x33\x35\x34\
\x23\x22\x06\x15\x27\x34\x36\x33\x32\x16\x15\x11\x14\x17\x25\x32\
\x36\x37\x35\x23\x06\x06\x15\x14\x02\x6a\x0c\x06\x4c\x80\x77\x82\
\xa7\xac\x6c\x7c\x45\x4f\xa1\xac\x89\x85\x9a\x1a\xfe\xa4\x2b\x58\
\x1c\x70\x53\x59\x02\xc1\x22\x26\x56\x7c\x67\x6f\x78\x34\x87\x36\
\x33\x0c\x67\x82\x8f\x86\xfe\xc4\x61\x51\x7b\x28\x1b\x8e\x01\x3f\
\x33\x5e\x00\xff\xff\x00\x66\x00\x97\x03\x64\x03\xb3\x00\x26\x01\
\x92\xfa\xfe\x00\x07\x01\x92\x01\x44\xff\xfe\x00\x01\x00\x7f\x01\
\x77\x03\xbe\x03\x20\x00\x05\x00\x1b\x00\xb0\x04\x2f\xb0\x01\xd0\
\xb0\x01\x2f\xb0\x04\x10\xb1\x02\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\x30\x31\x01\x23\x11\x21\x35\x21\x03\xbe\xba\xfd\x7b\x03\
\x3f\x01\x77\x01\x08\xa1\x00\x00\x04\x00\x5a\xff\xeb\x05\xe5\x05\
\xc4\x00\x0e\x00\x1e\x00\x34\x00\x3d\x00\xad\xb2\x36\x3e\x3f\x11\
\x12\x39\xb0\x36\x10\xb0\x0b\xd0\xb0\x36\x10\xb0\x13\xd0\xb0\x36\
\x10\xb0\x23\xd0\x00\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1e\
\x3e\x59\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x12\x3e\x59\xb1\
\x13\x04\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\xb1\x1b\
\x04\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x20\x0b\x03\x11\x12\
\x39\xb0\x20\x2f\xb2\x22\x03\x0b\x11\x12\x39\xb0\x22\x2f\xb4\x00\
\x22\x10\x22\x02\x5d\xb2\x35\x20\x22\x11\x12\x39\xb0\x35\x2f\xb2\
\xbf\x35\x01\x5d\xb4\x00\x35\x10\x35\x02\x5d\xb1\x1f\x02\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x28\x1f\x35\x11\x12\x39\xb0\x20\
\x10\xb0\x2f\xd0\xb0\x2f\x2f\xb0\x22\x10\xb1\x3d\x02\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\x30\x31\x13\x34\x12\x24\x20\x04\x12\x15\
\x14\x02\x04\x23\x22\x24\x02\x37\x14\x12\x04\x33\x32\x24\x12\x35\
\x34\x02\x24\x23\x22\x04\x02\x05\x11\x23\x11\x21\x32\x16\x15\x14\
\x07\x16\x17\x15\x14\x17\x15\x23\x26\x34\x27\x26\x27\x27\x33\x36\
\x36\x35\x34\x26\x23\x23\x5a\xbb\x01\x4b\x01\x80\x01\x4a\xbb\xb4\
\xfe\xb5\xc6\xc5\xfe\xb5\xb6\x73\xa0\x01\x13\xa0\xa1\x01\x14\x9d\
\x9d\xfe\xec\xa1\xa0\xfe\xec\x9f\x01\xc0\x8d\x01\x14\x99\xa9\x80\
\x7a\x01\x11\x91\x0e\x03\x10\x73\xb0\x9c\x48\x58\x4e\x64\x8a\x02\
\xd9\xca\x01\x5a\xc7\xc7\xfe\xa6\xca\xc5\xfe\xa8\xd1\xcf\x01\x58\
\xc7\xac\xfe\xdb\xa6\xa9\x01\x22\xac\xab\x01\x21\xa7\xa5\xfe\xdc\
\xf5\xfe\xae\x03\x51\x83\x7d\x7b\x41\x32\x9a\x3d\x56\x26\x10\x24\
\xb9\x11\x60\x04\x80\x02\x42\x36\x49\x3d\x00\x00\x01\x00\x8e\x05\
\x16\x03\x2e\x05\xa5\x00\x03\x00\x19\xb2\x01\x04\x05\x11\x12\x39\
\x00\xb0\x02\x2f\xb1\x00\x10\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\x30\x31\x01\x21\x35\x21\x03\x2e\xfd\x60\x02\xa0\x05\x16\x8f\x00\
\x02\x00\x82\x03\xc0\x02\x7c\x05\xc4\x00\x0b\x00\x16\x00\x31\x00\
\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1e\x3e\x59\xb0\x0c\xd0\
\xb0\x0c\x2f\xb1\x09\x02\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x03\x10\xb1\x12\x02\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\
\x13\x34\x36\x33\x32\x16\x15\x14\x06\x23\x22\x26\x17\x32\x36\x35\
\x34\x26\x23\x22\x06\x14\x16\x82\x95\x6a\x68\x93\x93\x68\x69\x96\
\xff\x36\x4a\x4a\x36\x37\x4b\x4b\x04\xc0\x68\x9c\x9b\x69\x6a\x96\
\x96\x16\x47\x39\x3a\x4b\x4f\x6c\x4a\x00\x02\x00\x61\x00\x00\x03\
\xf5\x04\xf3\x00\x0b\x00\x0f\x00\x48\x00\xb0\x09\x2f\xb0\x00\x45\
\x58\xb0\x0d\x2f\x1b\xb1\x0d\x12\x3e\x59\xb0\x09\x10\xb0\x00\xd0\
\xb0\x09\x10\xb1\x06\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x03\xd0\xb0\x0d\x10\xb1\x0e\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb2\x05\x0e\x06\x11\x12\x39\xb4\x0b\x05\x1b\x05\x02\x5d\x30\
\x31\x01\x21\x15\x21\x11\x23\x11\x21\x35\x21\x11\x33\x01\x21\x35\
\x21\x02\x89\x01\x6c\xfe\x94\xa7\xfe\x7f\x01\x81\xa7\x01\x41\xfc\
\xbd\x03\x43\x03\x56\x97\xfe\x62\x01\x9e\x97\x01\x9d\xfb\x0d\x98\
\x00\x00\x01\x00\x42\x02\x9b\x02\xab\x05\xbb\x00\x16\x00\x56\xb2\
\x08\x17\x18\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x0e\x2f\x1b\xb1\
\x0e\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x16\x3e\
\x59\xb1\x16\x02\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x02\xd0\
\xb2\x03\x0e\x16\x11\x12\x39\xb0\x0e\x10\xb1\x08\x02\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x0e\x10\xb0\x0b\xd0\xb2\x14\x16\x0e\
\x11\x12\x39\x30\x31\x01\x21\x35\x01\x36\x35\x34\x26\x23\x22\x06\
\x15\x23\x34\x36\x20\x16\x15\x14\x0f\x02\x21\x02\xab\xfd\xa9\x01\
\x2c\x6d\x40\x3c\x4b\x47\x9d\xa7\x01\x08\x9a\x6b\x54\xb0\x01\x8f\
\x02\x9b\x6c\x01\x1a\x66\x45\x31\x3d\x4c\x39\x72\x94\x7f\x6e\x68\
\x6b\x4f\x91\x00\x01\x00\x3e\x02\x90\x02\x9a\x05\xbb\x00\x26\x00\
\x8c\xb2\x20\x27\x28\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x0e\x2f\
\x1b\xb1\x0e\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x19\x2f\x1b\xb1\x19\
\x16\x3e\x59\xb2\x00\x19\x0e\x11\x12\x39\xb0\x00\x2f\xb6\x6f\x00\
\x7f\x00\x8f\x00\x03\x5d\xb2\x3f\x00\x01\x71\xb6\x0f\x00\x1f\x00\
\x2f\x00\x03\x5d\xb2\x5f\x00\x01\x72\xb0\x0e\x10\xb1\x07\x02\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x0a\x0e\x19\x11\x12\x39\xb0\
\x00\x10\xb1\x26\x04\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x14\
\x26\x00\x11\x12\x39\xb2\x1d\x19\x0e\x11\x12\x39\xb0\x19\x10\xb1\
\x20\x02\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x33\x32\
\x36\x35\x34\x26\x23\x22\x06\x15\x23\x34\x36\x33\x32\x16\x15\x14\
\x06\x07\x16\x15\x14\x06\x23\x22\x26\x35\x33\x14\x16\x33\x32\x36\
\x35\x34\x27\x23\x01\x09\x54\x4a\x48\x3f\x46\x39\x4b\x9d\xa3\x7c\
\x89\x9c\x46\x42\x95\xaa\x88\x84\xa6\x9e\x4f\x43\x46\x49\x9c\x58\
\x04\x66\x3d\x30\x2d\x3a\x33\x29\x62\x7b\x79\x68\x37\x5b\x19\x29\
\x8f\x6a\x7d\x7e\x6b\x2d\x3c\x3c\x33\x71\x02\x00\x01\x00\x7b\x04\
\xda\x02\x1c\x06\x00\x00\x03\x00\x23\x00\xb0\x02\x2f\xb2\x0f\x02\
\x01\x5d\xb0\x00\xd0\xb0\x00\x2f\xb4\x0f\x00\x1f\x00\x02\x5d\xb0\
\x02\x10\xb0\x03\xd0\x19\xb0\x03\x2f\x18\x30\x31\x01\x33\x01\x23\
\x01\x3c\xe0\xfe\xf4\x95\x06\x00\xfe\xda\x00\x00\x01\x00\x9a\xfe\
\x60\x03\xee\x04\x3a\x00\x12\x00\x51\xb2\x0d\x13\x14\x11\x12\x39\
\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1a\x3e\x59\xb0\x00\
\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x1a\x3e\x59\xb0\x00\x45\x58\xb0\
\x10\x2f\x1b\xb1\x10\x14\x3e\x59\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\
\xb1\x0d\x12\x3e\x59\xb1\x04\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb2\x0b\x07\x0d\x11\x12\x39\x30\x31\x01\x11\x16\x16\x33\x32\
\x37\x11\x33\x11\x23\x27\x06\x23\x22\x27\x11\x23\x11\x01\x53\x01\
\x67\x74\xc7\x3e\xba\xa7\x09\x5d\xaa\x93\x51\xb9\x04\x3a\xfd\x87\
\xa3\x9c\x98\x03\x20\xfb\xc6\x73\x87\x49\xfe\x2b\x05\xda\x00\x00\
\x01\x00\x43\x00\x00\x03\x40\x05\xb0\x00\x0a\x00\x2b\xb2\x02\x0b\
\x0c\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1e\
\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb2\
\x01\x00\x08\x11\x12\x39\x30\x31\x21\x11\x23\x22\x24\x35\x34\x24\
\x33\x21\x11\x02\x86\x54\xe6\xfe\xf7\x01\x0a\xe6\x01\x0d\x02\x08\
\xfe\xd6\xd5\xff\xfa\x50\x00\x00\x01\x00\x93\x02\x6b\x01\x79\x03\
\x49\x00\x09\x00\x17\xb2\x03\x0a\x0b\x11\x12\x39\x00\xb0\x02\x2f\
\xb0\x08\xb0\x0a\x2b\x58\xd8\x1b\xdc\x59\x30\x31\x13\x34\x36\x32\
\x16\x15\x14\x06\x22\x26\x93\x39\x72\x3b\x3b\x72\x39\x02\xd9\x30\
\x40\x40\x30\x2f\x3f\x3f\x00\x00\x01\x00\x74\xfe\x4d\x01\xaa\x00\
\x00\x00\x0e\x00\x42\xb2\x05\x0f\x10\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb0\x00\x45\x58\xb0\x06\
\x2f\x1b\xb1\x06\x14\x3e\x59\xb4\x13\x06\x23\x06\x02\x5d\xb2\x01\
\x06\x00\x11\x12\x39\xb0\x07\xb0\x0a\x2b\x58\xd8\x1b\xdc\x59\xb0\
\x01\x10\xb0\x0d\xd0\x30\x31\x21\x07\x16\x15\x14\x06\x23\x27\x32\
\x36\x35\x34\x26\x27\x37\x01\x1d\x0c\x99\xa0\x8f\x07\x4f\x57\x40\
\x62\x20\x34\x1b\x92\x61\x71\x6b\x34\x2f\x2c\x2a\x09\x86\x00\x00\
\x01\x00\x7a\x02\x9b\x01\xef\x05\xb0\x00\x06\x00\x41\xb2\x01\x07\
\x08\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x1e\
\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x16\x3e\x59\xb2\
\x04\x00\x05\x11\x12\x39\xb0\x04\x2f\xb1\x03\x02\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb2\x02\x03\x05\x11\x12\x39\x30\x31\x01\x23\
\x11\x07\x35\x25\x33\x01\xef\x9d\xd8\x01\x63\x12\x02\x9b\x02\x59\
\x39\x80\x75\x00\x02\x00\x7a\x02\xb2\x03\x27\x05\xc4\x00\x0c\x00\
\x1a\x00\x42\xb2\x03\x1b\x1c\x11\x12\x39\xb0\x03\x10\xb0\x10\xd0\
\x00\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1e\x3e\x59\xb2\x0a\
\x1b\x03\x11\x12\x39\xb0\x0a\x2f\xb1\x10\x03\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb0\x03\x10\xb1\x17\x03\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\x30\x31\x13\x34\x36\x33\x32\x16\x15\x15\x14\x06\x20\
\x26\x35\x17\x14\x16\x33\x32\x36\x35\x35\x34\x26\x23\x22\x06\x07\
\x7a\xbc\x9a\x9b\xbc\xbb\xfe\xcc\xbe\xa3\x61\x54\x53\x5f\x61\x53\
\x51\x60\x02\x04\x63\x9e\xc3\xc1\xa6\x4a\x9f\xc2\xc2\xa5\x06\x64\
\x72\x73\x65\x4e\x63\x72\x6e\x61\x00\xff\xff\x00\x66\x00\x98\x03\
\x78\x03\xb5\x00\x26\x01\x93\x0d\x00\x00\x07\x01\x93\x01\x6a\x00\
\x00\xff\xff\x00\x55\x00\x00\x05\x91\x05\xad\x00\x27\x01\xc6\xff\
\xdb\x02\x98\x00\x27\x01\x94\x01\x18\x00\x08\x01\x07\x02\x20\x02\
\xd6\x00\x00\x00\x10\x00\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\
\x1e\x3e\x59\x30\x31\xff\xff\x00\x50\x00\x00\x05\xc9\x05\xad\x00\
\x27\x01\x94\x00\xec\x00\x08\x00\x27\x01\xc6\xff\xd6\x02\x98\x01\
\x07\x01\xc5\x03\x1e\x00\x00\x00\x10\x00\xb0\x00\x45\x58\xb0\x09\
\x2f\x1b\xb1\x09\x1e\x3e\x59\x30\x31\xff\xff\x00\x6f\x00\x00\x05\
\xed\x05\xbb\x00\x27\x01\x94\x01\x97\x00\x08\x00\x27\x02\x20\x03\
\x32\x00\x00\x01\x07\x02\x1f\x00\x31\x02\x9b\x00\x10\x00\xb0\x00\
\x45\x58\xb0\x21\x2f\x1b\xb1\x21\x1e\x3e\x59\x30\x31\x00\x02\x00\
\x44\xfe\x7f\x03\x78\x04\x4d\x00\x18\x00\x22\x00\x59\xb2\x09\x23\
\x24\x11\x12\x39\xb0\x09\x10\xb0\x1c\xd0\x00\xb0\x10\x2f\xb0\x00\
\x45\x58\xb0\x21\x2f\x1b\xb1\x21\x1a\x3e\x59\xb2\x00\x10\x21\x11\
\x12\x39\xb2\x03\x10\x00\x11\x12\x39\xb0\x10\x10\xb1\x09\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x10\x10\xb0\x0c\xd0\xb2\x15\
\x00\x10\x11\x12\x39\xb0\x21\x10\xb1\x1b\x05\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\x30\x31\x01\x0e\x03\x07\x07\x14\x16\x33\x32\x36\
\x35\x33\x06\x06\x23\x22\x26\x35\x34\x37\x37\x36\x35\x13\x14\x06\
\x22\x26\x35\x34\x36\x32\x16\x02\x4c\x01\x29\x60\xb8\x0b\x02\x74\
\x6d\x64\x7d\xb9\x02\xe1\xb7\xc4\xd6\xa0\x6d\x42\xc1\x37\x6c\x38\
\x38\x6c\x37\x02\xa8\x6a\x7f\x76\xc1\x63\x25\x6d\x73\x71\x5b\xa1\
\xcc\xc9\xb3\xad\xaf\x71\x4e\x92\x01\x3d\x2d\x3e\x3e\x2d\x2c\x3c\
\x3c\x00\x02\xff\xf2\x00\x00\x07\x57\x05\xb0\x00\x0f\x00\x12\x00\
\x7b\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1e\x3e\x59\xb0\
\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb0\x00\x45\x58\
\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\x59\xb2\x11\x06\x00\x11\x12\x39\
\xb0\x11\x2f\xb1\x02\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x06\x10\xb1\x08\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x0b\
\x00\x06\x11\x12\x39\xb0\x0b\x2f\xb1\x0c\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb0\x00\x10\xb1\x0e\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb2\x12\x06\x00\x11\x12\x39\x30\x31\x21\x21\x03\x21\
\x03\x23\x01\x21\x15\x21\x13\x21\x15\x21\x13\x21\x01\x21\x03\x07\
\x57\xfc\x8d\x0f\xfd\xcc\xcd\xe2\x03\x70\x03\xb7\xfd\x4d\x14\x02\
\x4e\xfd\xb8\x16\x02\xc1\xfa\xaf\x01\xc8\x1f\x01\x61\xfe\x9f\x05\
\xb0\x98\xfe\x29\x97\xfd\xed\x01\x78\x02\xdd\x00\x01\x00\x59\x00\
\xce\x03\xdd\x04\x63\x00\x0b\x00\x38\x00\xb0\x03\x2f\xb2\x09\x0c\
\x03\x11\x12\x39\xb0\x09\x2f\xb2\x0a\x09\x03\x11\x12\x39\xb2\x04\
\x03\x09\x11\x12\x39\xb2\x01\x0a\x04\x11\x12\x39\xb0\x03\x10\xb0\
\x05\xd0\xb2\x07\x04\x0a\x11\x12\x39\xb0\x09\x10\xb0\x0b\xd0\x30\
\x31\x13\x01\x01\x37\x01\x01\x17\x01\x01\x07\x01\x01\x59\x01\x4a\
\xfe\xb8\x77\x01\x49\x01\x49\x77\xfe\xb8\x01\x4a\x77\xfe\xb5\xfe\
\xb5\x01\x49\x01\x50\x01\x4f\x7b\xfe\xb1\x01\x4f\x7b\xfe\xb1\xfe\
\xb0\x7b\x01\x51\xfe\xaf\x00\x00\x03\x00\x76\xff\xa3\x05\x1d\x05\
\xec\x00\x17\x00\x20\x00\x29\x00\x68\xb2\x04\x2a\x2b\x11\x12\x39\
\xb0\x04\x10\xb0\x1d\xd0\xb0\x04\x10\xb0\x26\xd0\x00\xb0\x00\x45\
\x58\xb0\x10\x2f\x1b\xb1\x10\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x04\
\x2f\x1b\xb1\x04\x12\x3e\x59\xb2\x1a\x10\x04\x11\x12\x39\xb2\x23\
\x10\x04\x11\x12\x39\xb0\x23\x10\xb0\x1b\xd0\xb0\x10\x10\xb1\x1d\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x1a\x10\xb0\x24\xd0\
\xb0\x04\x10\xb1\x26\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\
\x31\x01\x14\x02\x04\x23\x22\x27\x07\x23\x37\x26\x11\x35\x34\x12\
\x24\x33\x32\x17\x37\x33\x07\x16\x13\x05\x14\x17\x01\x26\x23\x22\
\x02\x07\x05\x34\x27\x01\x16\x33\x32\x12\x37\x05\x09\x90\xfe\xf8\
\xb0\xab\x83\x61\x8e\x90\xbe\x92\x01\x0b\xac\xd6\x94\x67\x8d\x9f\
\x89\x02\xfc\x2c\x62\x02\x34\x66\xa6\xb6\xd1\x03\x03\x15\x38\xfd\
\xdb\x5b\x79\xba\xcc\x03\x02\xa9\xd6\xfe\xc1\xa8\x52\x9b\xe7\xc0\
\x01\x68\x53\xd2\x01\x42\xab\x7d\xa5\xff\xbb\xfe\xda\x63\xf4\x8d\
\x03\x88\x6f\xfe\xeb\xf6\x0d\xb6\x83\xfc\x8f\x40\x01\x0f\xfd\x00\
\x02\x00\xa6\x00\x00\x04\x5d\x05\xb0\x00\x0d\x00\x16\x00\x59\xb2\
\x09\x17\x18\x11\x12\x39\xb0\x09\x10\xb0\x10\xd0\x00\xb0\x00\x45\
\x58\xb0\x00\x2f\x1b\xb1\x00\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x0b\
\x2f\x1b\xb1\x0b\x12\x3e\x59\xb2\x01\x00\x0b\x11\x12\x39\xb0\x01\
\x2f\xb2\x10\x00\x0b\x11\x12\x39\xb0\x10\x2f\xb1\x09\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x01\x10\xb1\x0e\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x11\x21\x32\x16\x16\x15\x14\
\x04\x23\x21\x11\x23\x11\x13\x11\x21\x32\x36\x35\x34\x26\x27\x01\
\x60\x01\x17\x93\xdc\x77\xfe\xf8\xe3\xfe\xee\xba\xba\x01\x15\x8e\
\xa0\xa0\x88\x05\xb0\xfe\xdb\x69\xc2\x7e\xc2\xe7\xfe\xc7\x05\xb0\
\xfe\x43\xfd\xde\x97\x78\x7b\x97\x01\x00\x01\x00\x8b\xff\xec\x04\
\x6a\x06\x12\x00\x2a\x00\x6b\xb2\x21\x2b\x2c\x11\x12\x39\x00\xb0\
\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x20\x3e\x59\xb0\x00\x45\x58\
\xb0\x13\x2f\x1b\xb1\x13\x12\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\
\x1b\xb1\x00\x12\x3e\x59\xb2\x0a\x13\x05\x11\x12\x39\xb2\x0e\x05\
\x13\x11\x12\x39\xb0\x13\x10\xb1\x1a\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb2\x20\x13\x05\x11\x12\x39\xb2\x23\x05\x13\x11\x12\
\x39\xb0\x05\x10\xb1\x28\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\x30\x31\x21\x23\x11\x34\x36\x33\x32\x16\x15\x14\x06\x15\x14\x1e\
\x02\x15\x14\x06\x23\x22\x26\x27\x37\x16\x16\x33\x32\x36\x35\x34\
\x2e\x02\x35\x34\x36\x35\x34\x26\x23\x22\x11\x01\x44\xb9\xcf\xba\
\xb4\xc5\x80\x4b\xbc\x56\xcb\xb6\x51\xb5\x26\x2b\x31\x87\x35\x6b\
\x71\x4a\xbd\x57\x8b\x68\x58\xda\x04\x57\xd0\xeb\xb3\x9f\x7d\xcb\
\x45\x33\x5f\x90\x88\x4c\x9f\xb2\x2c\x1c\x9b\x20\x2c\x5e\x52\x34\
\x60\x93\x8a\x51\x59\xcf\x54\x5e\x6b\xfe\xdb\x00\x03\x00\x4e\xff\
\xec\x06\x7c\x04\x4e\x00\x2a\x00\x35\x00\x3d\x00\xca\xb2\x02\x3e\
\x3f\x11\x12\x39\xb0\x02\x10\xb0\x2e\xd0\xb0\x02\x10\xb0\x39\xd0\
\x00\xb0\x00\x45\x58\xb0\x17\x2f\x1b\xb1\x17\x1a\x3e\x59\xb0\x00\
\x45\x58\xb0\x1d\x2f\x1b\xb1\x1d\x1a\x3e\x59\xb0\x00\x45\x58\xb0\
\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb0\x00\x45\x58\xb0\x05\x2f\x1b\
\xb1\x05\x12\x3e\x59\xb2\x02\x1d\x00\x11\x12\x39\xb2\x0c\x05\x17\
\x11\x12\x39\xb0\x0c\x2f\xb4\xbf\x0c\xcf\x0c\x02\x5d\xb0\x17\x10\
\xb1\x10\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x13\x0c\x17\
\x11\x12\x39\xb2\x1a\x1d\x00\x11\x12\x39\xb2\x3a\x1d\x00\x11\x12\
\x39\xb0\x3a\x2f\xb4\xbf\x3a\xcf\x3a\x02\x5d\xb1\x21\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x00\x10\xb1\x25\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb2\x28\x1d\x00\x11\x12\x39\xb0\x2b\xd0\
\xb0\x0c\x10\xb1\x2f\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x10\x10\xb0\x36\xd0\x30\x31\x05\x20\x27\x06\x06\x23\x22\x26\x35\
\x34\x36\x33\x33\x35\x34\x26\x23\x22\x06\x15\x27\x34\x36\x33\x32\
\x16\x17\x36\x36\x33\x32\x12\x15\x15\x21\x16\x16\x33\x32\x37\x37\
\x17\x06\x25\x32\x36\x37\x35\x23\x06\x06\x15\x14\x16\x01\x22\x06\
\x07\x21\x35\x34\x26\x04\xee\xfe\xfb\x88\x41\xe2\x8d\xa7\xbc\xe3\
\xdd\xdf\x6e\x68\x69\x8c\xb8\xf2\xbb\x73\xb0\x32\x3f\xae\x69\xd2\
\xe8\xfd\x28\x07\xae\x95\x94\x79\x2f\x40\x9e\xfc\x09\x48\x9e\x32\
\xe4\x75\x8c\x6a\x03\x50\x73\x95\x11\x02\x1a\x86\x14\xb4\x56\x5e\
\xad\x97\x9d\xae\x55\x6b\x7b\x6e\x51\x13\x8f\xb5\x53\x53\x4f\x57\
\xfe\xff\xe9\x73\xb0\xbf\x4c\x1f\x88\x79\x96\x4a\x36\xed\x02\x6e\
\x53\x4d\x5d\x03\x34\xab\x8b\x1f\x84\x93\x00\x00\x02\x00\x7e\xff\
\xec\x04\x2d\x06\x2c\x00\x1d\x00\x2b\x00\x56\xb2\x07\x2c\x2d\x11\
\x12\x39\xb0\x07\x10\xb0\x28\xd0\x00\xb0\x00\x45\x58\xb0\x19\x2f\
\x1b\xb1\x19\x20\x3e\x59\xb0\x00\x45\x58\xb0\x07\x2f\x1b\xb1\x07\
\x12\x3e\x59\xb2\x0f\x19\x07\x11\x12\x39\xb0\x0f\x2f\xb2\x11\x19\
\x07\x11\x12\x39\xb1\x22\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb0\x07\x10\xb1\x28\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\
\x31\x01\x12\x11\x15\x14\x06\x06\x23\x22\x26\x26\x35\x34\x36\x36\
\x33\x32\x17\x26\x27\x07\x27\x37\x26\x27\x37\x16\x17\x37\x17\x03\
\x27\x26\x26\x23\x22\x06\x15\x14\x16\x33\x32\x36\x35\x03\x34\xf9\
\x75\xd8\x86\x87\xdc\x79\x70\xcf\x81\xa3\x79\x30\x8d\xda\x49\xc0\
\x84\xb7\x39\xef\xaf\xbd\x49\x68\x02\x21\x8b\x5c\x91\xa2\xa7\x80\
\x7d\x99\x05\x15\xfe\xf8\xfe\x67\x5d\x9e\xfd\x90\x81\xe0\x86\x93\
\xe9\x82\x72\xc3\x8d\x94\x63\x83\x5b\x31\x9f\x36\x8b\x81\x64\xfc\
\xf3\x38\x3d\x49\xbf\xa7\x8c\xc4\xe2\xb8\x00\x00\x03\x00\x47\x00\
\xac\x04\x2d\x04\xba\x00\x03\x00\x0d\x00\x17\x00\x53\xb2\x07\x18\
\x19\x11\x12\x39\xb0\x07\x10\xb0\x00\xd0\xb0\x07\x10\xb0\x11\xd0\
\x00\xb0\x02\x2f\xb1\x01\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb0\x02\x10\xb0\x0c\xb0\x0a\x2b\x58\xd8\x1b\xdc\x59\xb0\x06\xb0\
\x0a\x2b\x58\xd8\x1b\xdc\x59\xb0\x01\x10\xb0\x10\xb0\x0a\x2b\x58\
\xd8\x1b\xdc\x59\xb0\x16\xb0\x0a\x2b\x58\xd8\x1b\xdc\x59\x30\x31\
\x01\x21\x35\x21\x01\x34\x36\x32\x16\x15\x14\x06\x22\x26\x11\x34\
\x36\x32\x16\x15\x14\x06\x22\x26\x04\x2d\xfc\x1a\x03\xe6\xfd\xa0\
\x39\x72\x3b\x3b\x72\x39\x39\x72\x3b\x3b\x72\x39\x02\x58\xb8\x01\
\x3a\x30\x40\x40\x30\x2f\x3e\x3e\xfc\xfe\x30\x40\x40\x30\x2e\x3f\
\x3f\x00\x03\x00\x5b\xff\x7a\x04\x34\x04\xb8\x00\x15\x00\x1d\x00\
\x26\x00\x65\xb2\x04\x27\x28\x11\x12\x39\xb0\x04\x10\xb0\x1b\xd0\
\xb0\x04\x10\xb0\x23\xd0\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\
\x04\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x0f\x2f\x1b\xb1\x0f\x12\x3e\
\x59\xb1\x23\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x21\x23\
\x04\x11\x12\x39\xb0\x21\x10\xb0\x18\xd0\xb0\x04\x10\xb1\x1b\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x19\x1b\x0f\x11\x12\x39\
\xb0\x19\x10\xb0\x20\xd0\x30\x31\x13\x34\x36\x36\x33\x32\x17\x37\
\x33\x07\x16\x11\x14\x06\x06\x23\x22\x27\x07\x23\x37\x26\x13\x14\
\x17\x01\x26\x23\x22\x06\x05\x34\x27\x01\x16\x33\x32\x36\x35\x5b\
\x7b\xe1\x8f\x6e\x5e\x49\x7c\x66\xc3\x7c\xe0\x90\x68\x56\x4a\x7c\
\x64\xcd\xb9\x61\x01\x57\x3e\x48\x8a\xa8\x02\x66\x57\xfe\xac\x37\
\x42\x8b\xa7\x02\x27\x9f\xfd\x8b\x2a\x94\xcd\x9a\xfe\xc0\x9e\xfe\
\x89\x23\x95\xcb\x95\x01\x37\xc2\x6f\x02\xb6\x20\xda\xb5\xb6\x6f\
\xfd\x50\x19\xdb\xb9\x00\x02\x00\x95\xfe\x60\x04\x27\x06\x00\x00\
\x0f\x00\x1a\x00\x66\xb2\x18\x1b\x1c\x11\x12\x39\xb0\x18\x10\xb0\
\x0c\xd0\x00\xb0\x08\x2f\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\
\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x14\x3e\x59\
\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x12\x3e\x59\xb2\x05\x0c\
\x03\x11\x12\x39\xb2\x0a\x0c\x03\x11\x12\x39\xb0\x0c\x10\xb1\x13\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\xb1\x18\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x14\x02\x23\x22\
\x27\x11\x23\x11\x33\x11\x36\x33\x32\x12\x11\x27\x34\x26\x23\x22\
\x07\x11\x16\x33\x32\x36\x04\x27\xe2\xc1\xc5\x71\xb9\xb9\x71\xc2\
\xc3\xe3\xb9\x9c\x88\xa8\x54\x53\xab\x85\x9d\x02\x11\xf7\xfe\xd2\
\x7d\xfd\xf7\x07\xa0\xfd\xca\x84\xfe\xda\xfe\xfa\x04\xb7\xd4\x95\
\xfd\xfb\x94\xd3\x00\x00\x02\x00\x5f\xff\xec\x04\xac\x06\x00\x00\
\x17\x00\x22\x00\x82\x00\xb0\x14\x2f\xb0\x00\x45\x58\xb0\x0d\x2f\
\x1b\xb1\x0d\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\
\x12\x3e\x59\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x12\x3e\x59\
\xb2\x0f\x14\x01\x5d\xb2\x2f\x14\x01\x5d\xb2\x13\x03\x14\x11\x12\
\x39\xb0\x13\x2f\xb1\x10\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb0\x01\xd0\xb2\x04\x06\x0d\x11\x12\x39\xb2\x0f\x0d\x06\x11\x12\
\x39\xb0\x13\x10\xb0\x16\xd0\xb0\x06\x10\xb1\x1b\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x0d\x10\xb1\x20\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\x30\x31\x01\x23\x11\x23\x27\x06\x23\x22\x02\
\x35\x35\x34\x12\x33\x32\x17\x11\x21\x35\x21\x35\x33\x15\x33\x01\
\x14\x16\x33\x32\x37\x11\x26\x23\x22\x06\x04\xac\xbc\xaa\x09\x6f\
\xc6\xbc\xed\xec\xbf\xbe\x6f\xfe\xf8\x01\x08\xb9\xbc\xfc\x6c\x98\
\x86\xb0\x51\x53\xac\x88\x98\x04\xd1\xfb\x2f\x74\x88\x01\x34\xf8\
\x0e\xf9\x01\x2f\x82\x01\x05\x97\x98\x98\xfc\xa9\xb8\xd0\x9e\x01\
\xf1\x99\xd2\x00\x02\x00\x1d\x00\x00\x05\x88\x05\xb0\x00\x13\x00\
\x17\x00\x6d\x00\xb0\x00\x45\x58\xb0\x0f\x2f\x1b\xb1\x0f\x1e\x3e\
\x59\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x12\x3e\x59\xb2\x14\
\x08\x0f\x11\x12\x39\xb0\x14\x2f\xb2\x10\x14\x0f\x11\x12\x39\xb0\
\x10\x2f\xb0\x00\xd0\xb0\x10\x10\xb1\x17\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb0\x03\xd0\xb0\x08\x10\xb0\x05\xd0\xb0\x14\x10\
\xb1\x07\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x17\x10\xb0\
\x0a\xd0\xb0\x10\x10\xb0\x0d\xd0\xb0\x0f\x10\xb0\x12\xd0\x30\x31\
\x01\x33\x15\x23\x11\x23\x11\x21\x11\x23\x11\x23\x35\x33\x11\x33\
\x11\x21\x11\x33\x01\x21\x35\x21\x05\x02\x86\x86\xc1\xfd\x23\xc1\
\x86\x86\xc1\x02\xdd\xc1\xfc\x62\x02\xdd\xfd\x23\x04\x8e\x8e\xfc\
\x00\x02\xa1\xfd\x5f\x04\x00\x8e\x01\x22\xfe\xde\x01\x22\xfd\x8e\
\xc2\x00\x01\x00\x9b\x00\x00\x01\x55\x04\x3a\x00\x03\x00\x1d\x00\
\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1a\x3e\x59\xb0\x00\x45\
\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\x30\x31\x21\x23\x11\x33\
\x01\x55\xba\xba\x04\x3a\x00\x00\x01\x00\x9a\x00\x00\x04\x3f\x04\
\x3a\x00\x0c\x00\x69\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\
\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1a\x3e\x59\
\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb0\x00\x45\
\x58\xb0\x0b\x2f\x1b\xb1\x0b\x12\x3e\x59\xb0\x02\x10\xb0\x06\xd0\
\xb0\x06\x2f\xb2\x9f\x06\x01\x5d\xb4\xbf\x06\xcf\x06\x02\x5d\xb2\
\x2f\x06\x01\x5d\xb2\xff\x06\x01\x5d\xb1\x01\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb2\x0a\x01\x06\x11\x12\x39\x30\x31\x01\x23\
\x11\x23\x11\x33\x11\x33\x01\x33\x01\x01\x23\x01\xbf\x6b\xba\xba\
\x5b\x01\x8d\xdf\xfe\x3c\x01\xe8\xe9\x01\xcd\xfe\x33\x04\x3a\xfe\
\x36\x01\xca\xfd\xf3\xfd\xd3\x00\x01\x00\x22\x00\x00\x04\x1b\x05\
\xb0\x00\x0d\x00\x5d\x00\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\
\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x12\x3e\x59\
\xb2\x01\x0c\x06\x11\x12\x39\xb0\x01\x2f\xb0\x00\xd0\xb0\x01\x10\
\xb1\x02\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\xd0\xb0\
\x06\x10\xb1\x04\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\
\x10\xb0\x08\xd0\xb0\x09\xd0\xb0\x00\x10\xb0\x0b\xd0\xb0\x0a\xd0\
\x30\x31\x01\x25\x15\x05\x11\x21\x15\x21\x11\x07\x35\x37\x11\x33\
\x01\x69\x01\x07\xfe\xf9\x02\xb2\xfc\x8d\x86\x86\xc1\x03\x4b\x54\
\x7d\x54\xfd\xcf\x9d\x02\x91\x2a\x7d\x2a\x02\xa2\x00\x00\x01\x00\
\x22\x00\x00\x02\x0a\x06\x00\x00\x0b\x00\x4b\x00\xb0\x00\x45\x58\
\xb0\x0a\x2f\x1b\xb1\x0a\x20\x3e\x59\xb0\x00\x45\x58\xb0\x04\x2f\
\x1b\xb1\x04\x12\x3e\x59\xb2\x01\x04\x0a\x11\x12\x39\xb0\x01\x2f\
\xb0\x00\xd0\xb0\x01\x10\xb1\x02\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb0\x03\xd0\xb0\x06\xd0\xb0\x07\xd0\xb0\x00\x10\xb0\x09\
\xd0\xb0\x08\xd0\x30\x31\x01\x37\x15\x07\x11\x23\x11\x07\x35\x37\
\x11\x33\x01\x6c\x9e\x9e\xba\x90\x90\xba\x03\x65\x3d\x7b\x3d\xfd\
\x16\x02\xa3\x37\x7b\x37\x02\xe2\x00\x00\x01\x00\xa2\xfe\x4b\x04\
\xf1\x05\xb0\x00\x13\x00\x5b\xb2\x06\x14\x15\x11\x12\x39\x00\xb0\
\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1e\x3e\x59\xb0\x00\x45\x58\
\xb0\x10\x2f\x1b\xb1\x10\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x04\x2f\
\x1b\xb1\x04\x14\x3e\x59\xb0\x00\x45\x58\xb0\x0e\x2f\x1b\xb1\x0e\
\x12\x3e\x59\xb0\x04\x10\xb1\x09\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb2\x0d\x0e\x10\x11\x12\x39\xb2\x12\x0e\x00\x11\x12\x39\
\x30\x31\x01\x11\x14\x06\x23\x22\x27\x37\x16\x33\x32\x35\x35\x01\
\x11\x23\x11\x33\x01\x11\x04\xf1\xab\x9c\x3d\x36\x0e\x25\x3d\x88\
\xfd\x33\xc0\xc0\x02\xcd\x05\xb0\xf9\xfd\xa8\xba\x12\x9a\x0e\xd0\
\x47\x04\x6a\xfb\x96\x05\xb0\xfb\x98\x04\x68\x00\x01\x00\x91\xfe\
\x4b\x03\xf0\x04\x4e\x00\x1a\x00\x63\xb2\x0d\x1b\x1c\x11\x12\x39\
\x00\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1a\x3e\x59\xb0\x00\
\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1a\x3e\x59\xb0\x00\x45\x58\xb0\
\x0a\x2f\x1b\xb1\x0a\x14\x3e\x59\xb0\x00\x45\x58\xb0\x18\x2f\x1b\
\xb1\x18\x12\x3e\x59\xb2\x01\x18\x03\x11\x12\x39\xb0\x0a\x10\xb1\
\x0f\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\xb1\x15\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x17\x36\x33\
\x32\x16\x17\x11\x14\x06\x23\x22\x27\x37\x16\x33\x32\x35\x11\x34\
\x26\x23\x22\x07\x11\x23\x11\x01\x37\x0d\x74\xcb\xb3\xb8\x02\xa7\
\x9b\x3d\x36\x0e\x23\x42\x89\x6f\x7d\xaf\x51\xba\x04\x3a\x9a\xae\
\xd0\xcb\xfc\xf4\xa4\xb8\x12\x9d\x0d\xc2\x02\xf7\x8b\x80\x85\xfc\
\xd4\x04\x3a\x00\x02\x00\x68\xff\xeb\x07\x09\x05\xc4\x00\x17\x00\
\x23\x00\x96\xb2\x01\x24\x25\x11\x12\x39\xb0\x01\x10\xb0\x1a\xd0\
\x00\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x1e\x3e\x59\xb0\x00\
\x45\x58\xb0\x0e\x2f\x1b\xb1\x0e\x1e\x3e\x59\xb0\x00\x45\x58\xb0\
\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb0\x00\x45\x58\xb0\x03\x2f\x1b\
\xb1\x03\x12\x3e\x59\xb0\x0e\x10\xb1\x10\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb2\x13\x00\x0e\x11\x12\x39\xb0\x13\x2f\xb1\x14\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x00\x10\xb1\x16\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\xb1\x18\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0c\x10\xb1\x1d\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x21\x21\x06\x23\x22\x26\x02\
\x27\x11\x34\x12\x36\x33\x32\x17\x21\x15\x21\x11\x21\x15\x21\x11\
\x21\x05\x32\x37\x11\x26\x23\x22\x06\x07\x11\x14\x16\x07\x09\xfc\
\xb0\xb2\x72\xa2\xfe\x8c\x01\x8b\xfe\xa2\x7c\xaa\x03\x46\xfd\x2d\
\x02\x77\xfd\x89\x02\xdd\xfb\x8c\x71\x66\x6d\x6c\xad\xc2\x02\xc3\
\x15\x96\x01\x0f\xab\x01\x35\xac\x01\x11\x97\x14\x9e\xfe\x2c\x9d\
\xfd\xfc\x1b\x0e\x04\x8e\x0f\xe5\xcf\xfe\xc7\xd3\xeb\x00\x03\x00\
\x61\xff\xec\x07\x00\x04\x4e\x00\x20\x00\x2c\x00\x34\x00\x99\xb2\
\x06\x35\x36\x11\x12\x39\xb0\x06\x10\xb0\x26\xd0\xb0\x06\x10\xb0\
\x30\xd0\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\x59\
\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1a\x3e\x59\xb0\x00\x45\
\x58\xb0\x17\x2f\x1b\xb1\x17\x12\x3e\x59\xb0\x00\x45\x58\xb0\x1d\
\x2f\x1b\xb1\x1d\x12\x3e\x59\xb2\x07\x0a\x17\x11\x12\x39\xb2\x31\
\x0a\x17\x11\x12\x39\xb0\x31\x2f\xb1\x0e\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb0\x17\x10\xb1\x12\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb2\x14\x0a\x17\x11\x12\x39\xb2\x1a\x0a\x17\x11\x12\
\x39\xb0\x24\xd0\xb0\x04\x10\xb1\x2a\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x2d\xd0\x30\x31\x13\x34\x36\x36\x33\x32\x16\x17\
\x36\x36\x33\x32\x16\x15\x15\x21\x16\x16\x33\x32\x37\x17\x06\x23\
\x22\x26\x27\x06\x06\x23\x22\x00\x35\x17\x14\x16\x33\x32\x36\x35\
\x34\x26\x23\x22\x06\x25\x22\x06\x07\x21\x35\x34\x26\x61\x79\xdb\
\x8e\x89\xc9\x3d\x41\xc4\x70\xcf\xea\xfd\x32\x07\xa4\x86\xbc\x78\
\x4a\x89\xf5\x87\xcd\x3f\x3e\xc7\x86\xdc\xfe\xf8\xb9\xa0\x8b\x89\
\xa0\xa1\x8a\x87\xa2\x04\x2d\x63\x96\x16\x02\x0e\x89\x02\x27\xa0\
\xfe\x89\x75\x64\x66\x73\xfe\xeb\x74\xaa\xc5\x6c\x7e\x84\x70\x64\
\x63\x71\x01\x30\xfe\x09\xb7\xd8\xd7\xce\xb6\xd9\xd6\xd6\xa3\x8a\
\x1a\x7d\x96\x00\x01\x00\xa0\x00\x00\x02\x82\x06\x15\x00\x0c\x00\
\x33\xb2\x03\x0d\x0e\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x04\x2f\
\x1b\xb1\x04\x20\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\
\x12\x3e\x59\xb0\x04\x10\xb1\x09\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\x30\x31\x33\x11\x36\x36\x33\x32\x17\x07\x26\x23\x22\x15\
\x11\xa0\x01\xb0\xa2\x3b\x54\x17\x28\x33\xb7\x04\xae\xa9\xbe\x15\
\x8e\x0b\xdd\xfb\x60\x00\x02\x00\x5d\xff\xec\x05\x12\x05\xc4\x00\
\x17\x00\x1f\x00\x5e\xb2\x00\x20\x21\x11\x12\x39\xb0\x18\xd0\x00\
\xb0\x00\x45\x58\xb0\x10\x2f\x1b\xb1\x10\x1e\x3e\x59\xb0\x00\x45\
\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb2\x05\x10\x00\x11\x12\
\x39\xb0\x05\x2f\xb0\x10\x10\xb1\x09\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x00\x10\xb1\x18\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb0\x05\x10\xb1\x1b\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\x30\x31\x05\x20\x00\x11\x35\x21\x35\x10\x02\x23\x22\x07\x07\
\x27\x37\x36\x33\x20\x00\x11\x15\x14\x02\x04\x27\x32\x12\x37\x21\
\x15\x14\x16\x02\xb9\xfe\xe3\xfe\xc1\x03\xf4\xf4\xdd\xa5\x8b\x3d\
\x2f\x16\x9e\xe8\x01\x2e\x01\x64\x9c\xfe\xea\xa7\xa9\xde\x0f\xfc\
\xcf\xd3\x14\x01\x59\x01\x45\x75\x07\x01\x02\x01\x1c\x3a\x1a\x8f\
\x0d\x58\xfe\x87\xfe\xb1\x54\xc5\xfe\xbf\xb6\x9e\x01\x05\xdb\x22\
\xda\xe4\x00\x00\x01\xff\xe4\xfe\x4b\x02\xbc\x06\x15\x00\x1e\x00\
\x74\xb2\x14\x1f\x20\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x15\x2f\
\x1b\xb1\x15\x20\x3e\x59\xb0\x00\x45\x58\xb0\x10\x2f\x1b\xb1\x10\
\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x1d\x2f\x1b\xb1\x1d\x1a\x3e\x59\
\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x14\x3e\x59\xb0\x1d\x10\
\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x05\x10\xb1\
\x0a\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x00\x10\xb0\x0e\
\xd0\xb0\x0f\xd0\xb0\x15\x10\xb1\x1a\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\x30\x31\x01\x23\x11\x14\x06\x23\x22\x27\x37\x16\x33\
\x32\x36\x35\x11\x23\x35\x33\x35\x36\x36\x33\x32\x17\x07\x26\x23\
\x22\x07\x15\x33\x02\x60\xcb\xa8\x9a\x3d\x32\x0e\x1e\x43\x41\x47\
\xab\xab\x02\xaf\xa1\x3b\x54\x16\x26\x3c\xab\x04\xcb\x03\xab\xfb\
\xfe\xa7\xb7\x12\x93\x0d\x68\x5c\x04\x04\x8f\x78\xa7\xbc\x15\x93\
\x0a\xc3\x7a\x00\x02\x00\x65\xff\xec\x05\x9d\x06\x37\x00\x17\x00\
\x25\x00\x55\xb2\x04\x26\x27\x11\x12\x39\xb0\x04\x10\xb0\x22\xd0\
\x00\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x1e\x3e\x59\xb0\x00\
\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\x59\xb2\x0f\x0d\x04\x11\
\x12\x39\xb0\x0f\x10\xb0\x15\xd0\xb0\x0d\x10\xb1\x1b\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\x10\xb1\x22\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x14\x02\x04\x23\x22\x24\x02\
\x27\x35\x34\x12\x24\x33\x32\x17\x36\x36\x35\x33\x10\x05\x16\x17\
\x07\x10\x02\x23\x22\x02\x07\x15\x14\x12\x33\x32\x12\x11\x04\xf8\
\x90\xfe\xf8\xb0\xab\xfe\xf6\x95\x01\x92\x01\x0b\xac\xf0\x9b\x60\
\x5d\xa7\xfe\xf9\x61\x01\xbe\xcf\xbd\xb6\xd1\x03\xd3\xb9\xbf\xcb\
\x02\xa9\xd6\xfe\xc1\xa8\xa8\x01\x3e\xcf\x64\xd2\x01\x41\xac\x9b\
\x07\x83\x84\xfe\xb3\x3d\xac\xf6\x04\x01\x02\x01\x16\xfe\xeb\xf6\
\x6b\xfb\xfe\xe1\x01\x1a\x01\x01\x00\x00\x02\x00\x5b\xff\xec\x04\
\xba\x04\xb0\x00\x16\x00\x23\x00\x55\xb2\x13\x24\x25\x11\x12\x39\
\xb0\x13\x10\xb0\x1a\xd0\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\
\x04\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x13\x2f\x1b\xb1\x13\x12\x3e\
\x59\xb2\x06\x04\x13\x11\x12\x39\xb0\x06\x10\xb0\x0c\xd0\xb0\x13\
\x10\xb1\x1a\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\x10\
\xb1\x21\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x13\x34\
\x36\x36\x33\x32\x17\x36\x36\x35\x33\x10\x07\x16\x15\x15\x14\x06\
\x06\x23\x22\x00\x35\x17\x14\x16\x33\x32\x36\x35\x35\x34\x26\x23\
\x22\x06\x5b\x7b\xe1\x8f\xcf\x88\x47\x40\x96\xcf\x49\x7c\xe0\x90\
\xde\xfe\xf1\xb9\xa7\x8d\x8b\xa7\xa9\x8b\x8a\xa8\x02\x27\x9f\xfd\
\x8b\x8a\x08\x64\x80\xfe\xdd\x33\x8a\xa9\x16\x9e\xfe\x89\x01\x33\
\xfb\x09\xb4\xda\xdb\xb9\x10\xb5\xda\xda\x00\x00\x01\x00\x8c\xff\
\xec\x06\x1d\x06\x02\x00\x1a\x00\x4d\xb2\x0c\x1b\x1c\x11\x12\x39\
\x00\xb0\x00\x45\x58\xb0\x12\x2f\x1b\xb1\x12\x1e\x3e\x59\xb0\x00\
\x45\x58\xb0\x1a\x2f\x1b\xb1\x1a\x1e\x3e\x59\xb0\x00\x45\x58\xb0\
\x0d\x2f\x1b\xb1\x0d\x12\x3e\x59\xb2\x01\x0d\x1a\x11\x12\x39\xb0\
\x01\x10\xb0\x08\xd0\xb0\x0d\x10\xb1\x16\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\x30\x31\x01\x15\x36\x36\x35\x33\x14\x06\x07\x11\
\x06\x02\x07\x07\x22\x00\x27\x11\x33\x11\x14\x16\x33\x32\x36\x35\
\x11\x04\xaa\x73\x61\x9f\xb1\xc2\x01\xf4\xd3\x49\xef\xfe\xe4\x02\
\xbe\xae\xa1\xa3\xad\x05\xb0\xd5\x0b\x89\x93\xd2\xd1\x0c\xfd\x7e\
\xc7\xfe\xfc\x16\x04\x01\x02\xe2\x03\xe0\xfc\x26\x9e\xaf\xae\x9e\
\x03\xdb\x00\x00\x01\x00\x88\xff\xec\x05\x0f\x04\x90\x00\x19\x00\
\x61\xb2\x07\x1a\x1b\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x13\x2f\
\x1b\xb1\x13\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\
\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x12\x3e\x59\
\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x12\x3e\x59\xb2\x15\x08\
\x13\x11\x12\x39\xb0\x15\x10\xb0\x03\xd0\xb2\x06\x08\x13\x11\x12\
\x39\xb0\x08\x10\xb1\x10\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\x30\x31\x01\x14\x06\x07\x11\x23\x27\x06\x23\x22\x26\x27\x11\x33\
\x11\x14\x33\x32\x37\x11\x33\x15\x3e\x02\x35\x05\x0f\x93\xa0\xb0\
\x04\x6c\xd1\xad\xb5\x01\xb9\xc8\xd4\x46\xb9\x44\x44\x1d\x04\x90\
\xb4\x93\x04\xfc\xbb\x6b\x7f\xc9\xc5\x02\xc0\xfd\x45\xf6\x9e\x03\
\x13\x83\x02\x23\x48\x6c\x00\x00\x01\xff\xb4\xfe\x4b\x01\x65\x04\
\x3a\x00\x0d\x00\x29\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\
\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x14\x3e\x59\
\xb1\x09\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x11\
\x14\x06\x23\x22\x27\x37\x16\x33\x32\x36\x35\x11\x01\x65\xaa\x98\
\x3b\x34\x0e\x1e\x43\x41\x48\x04\x3a\xfb\x6d\xaa\xb2\x12\x93\x0d\
\x68\x5c\x04\x93\x00\x00\x02\x00\x62\xff\xec\x03\xe9\x04\x4f\x00\
\x14\x00\x1c\x00\x68\xb2\x08\x1d\x1e\x11\x12\x39\xb0\x08\x10\xb0\
\x15\xd0\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1a\x3e\x59\
\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x12\x3e\x59\xb2\x0d\x00\
\x08\x11\x12\x39\xb0\x0d\x2f\xb0\x00\x10\xb1\x10\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb2\x12\x00\x08\x11\x12\x39\xb0\x08\x10\
\xb1\x15\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0d\x10\xb1\
\x18\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x32\x00\
\x15\x15\x14\x06\x06\x27\x22\x26\x35\x35\x21\x26\x26\x23\x22\x07\
\x27\x36\x01\x32\x36\x37\x21\x15\x14\x16\x01\xff\xdc\x01\x0e\x7c\
\xd8\x7a\xd0\xe9\x02\xcd\x07\xa1\x88\xba\x7b\x49\x8c\x01\x0e\x62\
\x97\x15\xfd\xf3\x89\x04\x4f\xfe\xd4\xf9\x24\x95\xf8\x8d\x01\xfe\
\xe9\x74\xa8\xc8\x6c\x7d\x86\xfc\x35\xa4\x89\x1a\x7d\x96\x00\x00\
\x01\x00\xa9\x04\xe4\x03\x06\x06\x00\x00\x08\x00\x34\x00\xb0\x04\
\x2f\xb0\x07\xd0\xb0\x07\x2f\xb4\x0f\x07\x1f\x07\x02\x5d\xb2\x05\
\x04\x07\x11\x12\x39\x19\xb0\x05\x2f\x18\xb0\x01\xd0\x19\xb0\x01\
\x2f\x18\xb0\x04\x10\xb0\x02\xd0\xb2\x03\x04\x07\x11\x12\x39\x30\
\x31\x01\x15\x23\x27\x07\x23\x35\x13\x33\x03\x06\x99\x96\x95\x99\
\xf6\x70\x04\xee\x0a\xaa\xaa\x0c\x01\x10\x00\x00\x01\x00\x8d\x04\
\xe3\x02\xf7\x05\xff\x00\x08\x00\x20\x00\xb0\x04\x2f\xb0\x01\xd0\
\xb0\x01\x2f\xb4\x0f\x01\x1f\x01\x02\x5d\xb2\x00\x04\x01\x11\x12\
\x39\xb0\x08\xd0\xb0\x08\x2f\x30\x31\x01\x37\x33\x15\x03\x23\x03\
\x35\x33\x01\xc1\x96\xa0\xfe\x71\xfb\x9d\x05\x55\xaa\x0a\xfe\xee\
\x01\x12\x0a\xff\xff\x00\x8e\x05\x16\x03\x2e\x05\xa5\x01\x06\x00\
\x70\x00\x00\x00\x0a\x00\xb0\x01\x2f\xb1\x02\x03\xf4\x30\x31\x00\
\x01\x00\x81\x04\xcb\x02\xd8\x05\xd7\x00\x0c\x00\x27\xb2\x09\x0d\
\x0e\x11\x12\x39\x00\xb0\x03\x2f\xb2\x0f\x03\x01\x5d\xb1\x09\x04\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x06\xd0\xb0\x06\x2f\xb0\
\x0c\xd0\x30\x31\x01\x14\x06\x20\x26\x35\x33\x14\x16\x33\x32\x36\
\x35\x02\xd8\xa5\xfe\xf4\xa6\x97\x4c\x49\x46\x4f\x05\xd7\x79\x93\
\x94\x78\x46\x4f\x4e\x47\x00\x00\x01\x00\x8d\x04\xee\x01\x68\x05\
\xc2\x00\x08\x00\x19\xb2\x02\x09\x0a\x11\x12\x39\x00\xb0\x07\x2f\
\xb1\x02\x05\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x13\x34\
\x36\x32\x16\x14\x06\x22\x26\x8d\x37\x6c\x38\x38\x6c\x37\x05\x57\
\x2d\x3e\x3e\x5a\x3c\x3c\x00\x00\x02\x00\x79\x04\xb4\x02\x27\x06\
\x50\x00\x09\x00\x14\x00\x2a\xb2\x03\x15\x16\x11\x12\x39\xb0\x03\
\x10\xb0\x0d\xd0\x00\xb0\x03\x2f\xb0\x07\xd0\xb0\x07\x2f\xb2\x3f\
\x07\x01\x5d\xb0\x03\x10\xb0\x0d\xd0\xb0\x07\x10\xb0\x12\xd0\x30\
\x31\x01\x14\x06\x23\x22\x26\x34\x36\x32\x16\x05\x14\x16\x33\x32\
\x36\x34\x26\x23\x22\x06\x02\x27\x7c\x5b\x5c\x7b\x7b\xb8\x7b\xfe\
\xb5\x43\x31\x30\x44\x43\x31\x32\x42\x05\x80\x57\x75\x76\xac\x7a\
\x7a\x56\x2f\x44\x42\x62\x45\x46\x00\x00\x01\x00\x32\xfe\x4f\x01\
\x92\x00\x38\x00\x10\x00\x32\xb2\x05\x11\x12\x11\x12\x39\x00\xb0\
\x10\x2f\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x14\x3e\x59\xb1\
\x05\x03\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x40\x09\x0f\x10\x1f\
\x10\x2f\x10\x3f\x10\x04\x5d\x30\x31\x21\x07\x06\x15\x14\x33\x32\
\x37\x17\x06\x23\x22\x26\x35\x34\x36\x37\x01\x7e\x3a\x71\x4e\x30\
\x34\x0d\x46\x5a\x59\x67\x86\x7b\x2d\x5b\x56\x48\x1a\x79\x2c\x68\
\x56\x59\x9a\x38\x00\x00\x01\x00\x7b\x04\xd9\x03\x3e\x05\xe8\x00\
\x17\x00\x40\x00\xb0\x03\x2f\xb0\x08\xd0\xb0\x08\x2f\xb4\x0f\x08\
\x1f\x08\x02\x5d\xb0\x03\x10\xb0\x0b\xd0\xb0\x0b\x2f\xb0\x08\x10\
\xb1\x0f\x03\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\xb1\
\x14\x03\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0f\x10\xb0\x17\
\xd0\x30\x31\x01\x14\x06\x23\x22\x2e\x02\x23\x22\x06\x15\x27\x34\
\x36\x33\x32\x1e\x02\x33\x32\x36\x35\x03\x3e\x7b\x5c\x29\x3c\x61\
\x2b\x1c\x29\x3a\x7c\x79\x5d\x23\x38\x60\x33\x1f\x2b\x39\x05\xdc\
\x6c\x86\x14\x3e\x0d\x3f\x31\x07\x6b\x8c\x14\x3a\x12\x44\x2d\x00\
\x02\x00\x5e\x04\xd0\x03\x2c\x05\xff\x00\x03\x00\x07\x00\x3b\x00\
\xb0\x02\x2f\xb0\x00\xd0\xb0\x00\x2f\xb4\x0f\x00\x1f\x00\x02\x5d\
\xb0\x02\x10\xb0\x03\xd0\x19\xb0\x03\x2f\x18\xb0\x00\x10\xb0\x05\
\xd0\xb0\x05\x2f\xb0\x02\x10\xb0\x06\xd0\xb0\x06\x2f\xb0\x03\x10\
\xb0\x07\xd0\x19\xb0\x07\x2f\x18\x30\x31\x01\x33\x01\x23\x03\x33\
\x03\x23\x02\x5d\xcf\xfe\xf3\xa9\x6d\xc5\xda\x96\x05\xff\xfe\xd1\
\x01\x2f\xfe\xd1\x00\x00\x02\x00\x7e\xfe\x6b\x01\xd5\xff\xb5\x00\
\x0b\x00\x16\x00\x34\x00\xb0\x03\x2f\x40\x0b\x00\x03\x10\x03\x20\
\x03\x30\x03\x40\x03\x05\x5d\xb0\x09\xd0\xb0\x09\x2f\x40\x09\x30\
\x09\x40\x09\x50\x09\x60\x09\x04\x5d\xb2\x00\x09\x01\x5d\xb0\x0e\
\xd0\xb0\x03\x10\xb0\x14\xd0\x30\x31\x17\x34\x36\x33\x32\x16\x15\
\x14\x06\x23\x22\x26\x37\x14\x16\x32\x36\x35\x34\x26\x23\x22\x06\
\x7e\x64\x4a\x47\x62\x60\x49\x4c\x62\x57\x34\x46\x30\x30\x23\x25\
\x32\xf2\x46\x61\x60\x47\x46\x5d\x5e\x45\x23\x30\x30\x23\x24\x32\
\x34\x00\x01\xfc\xa7\x04\xda\xfe\x48\x06\x00\x00\x03\x00\x1e\x00\
\xb0\x01\x2f\xb0\x00\xd0\x19\xb0\x00\x2f\x18\xb0\x01\x10\xb0\x02\
\xd0\xb0\x02\x2f\xb4\x0f\x02\x1f\x02\x02\x5d\x30\x31\x01\x23\x01\
\x33\xfe\x48\x9f\xfe\xfe\xe0\x04\xda\x01\x26\x00\x01\xfd\x6f\x04\
\xda\xff\x10\x06\x00\x00\x03\x00\x1e\x00\xb0\x02\x2f\xb0\x01\xd0\
\xb0\x01\x2f\xb4\x0f\x01\x1f\x01\x02\x5d\xb0\x02\x10\xb0\x03\xd0\
\x19\xb0\x03\x2f\x18\x30\x31\x01\x33\x01\x23\xfe\x30\xe0\xfe\xf4\
\x95\x06\x00\xfe\xda\xff\xff\xfc\x8b\x04\xd9\xff\x4e\x05\xe8\x00\
\x07\x00\xa5\xfc\x10\x00\x00\x00\x01\xfd\x5e\x04\xd9\xfe\x94\x06\
\x74\x00\x0e\x00\x2e\x00\xb0\x00\x2f\xb2\x0f\x00\x01\x5d\xb0\x07\
\xd0\xb0\x07\x2f\x40\x09\x0f\x07\x1f\x07\x2f\x07\x3f\x07\x04\x5d\
\xb0\x06\xd0\xb2\x01\x00\x06\x11\x12\x39\xb2\x0d\x00\x07\x11\x12\
\x39\x30\x31\x01\x27\x36\x36\x34\x26\x23\x37\x32\x16\x15\x14\x06\
\x07\x07\xfd\x74\x01\x4b\x46\x5b\x4b\x07\x95\x9a\x4e\x4d\x01\x04\
\xd9\x99\x05\x1e\x4e\x27\x6a\x67\x55\x3d\x50\x0b\x47\x00\x02\xfc\
\x27\x04\xe4\xff\x07\x05\xee\x00\x03\x00\x07\x00\x37\x00\xb0\x01\
\x2f\xb0\x00\xd0\x19\xb0\x00\x2f\x18\xb0\x01\x10\xb0\x05\xd0\xb0\
\x05\x2f\xb0\x06\xd0\xb0\x06\x2f\xb6\x0f\x06\x1f\x06\x2f\x06\x03\
\x5d\xb0\x03\xd0\xb0\x03\x2f\xb0\x00\x10\xb0\x04\xd0\x19\xb0\x04\
\x2f\x18\x30\x31\x01\x23\x01\x33\x01\x23\x03\x33\xfe\x02\xa9\xfe\
\xce\xe1\x01\xff\x96\xf6\xce\x04\xe4\x01\x0a\xfe\xf6\x01\x0a\x00\
\x01\xfd\x38\xfe\xa2\xfe\x13\xff\x76\x00\x08\x00\x12\x00\xb0\x02\
\x2f\xb1\x07\x05\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x05\
\x34\x36\x32\x16\x14\x06\x22\x26\xfd\x38\x37\x6c\x38\x38\x6c\x37\
\xf5\x2d\x3e\x3e\x5a\x3c\x3c\x00\x01\x00\xb7\x04\xee\x01\x9b\x06\
\x3f\x00\x03\x00\x1d\x00\xb0\x02\x2f\xb0\x00\xd0\xb0\x00\x2f\xb2\
\x0f\x00\x01\x5d\xb2\x03\x02\x00\x11\x12\x39\x19\xb0\x03\x2f\x18\
\x30\x31\x13\x33\x03\x23\xed\xae\x74\x70\x06\x3f\xfe\xaf\x00\x00\
\x03\x00\x71\x04\xf0\x03\x83\x06\x88\x00\x03\x00\x0c\x00\x15\x00\
\x38\x00\xb0\x0b\x2f\xb0\x02\xd0\xb0\x02\x2f\xb0\x01\xd0\xb0\x01\
\x2f\xb0\x02\x10\xb0\x03\xd0\x19\xb0\x03\x2f\x18\xb0\x0b\x10\xb1\
\x06\x05\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0f\xd0\xb0\x0b\
\x10\xb0\x14\xd0\xb0\x14\x2f\x30\x31\x01\x33\x03\x23\x05\x34\x36\
\x32\x16\x14\x06\x22\x26\x25\x34\x36\x32\x16\x14\x06\x22\x26\x01\
\xe1\xbc\x65\x87\xfe\xc0\x37\x6c\x38\x38\x6c\x37\x02\x37\x37\x6c\
\x38\x38\x6c\x37\x06\x88\xfe\xf8\x25\x2d\x3d\x3d\x5a\x3c\x3c\x2b\
\x2d\x3e\x3e\x5a\x3c\x3c\x00\xff\xff\x00\x93\x02\x6b\x01\x79\x03\
\x49\x01\x06\x00\x78\x00\x00\x00\x06\x00\xb0\x02\x2f\x30\x31\x00\
\x01\x00\xb1\x00\x00\x04\x30\x05\xb0\x00\x05\x00\x2c\x00\xb0\x00\
\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1e\x3e\x59\xb0\x00\x45\x58\xb0\
\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb0\x04\x10\xb1\x00\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x21\x11\x23\x11\x21\x04\
\x30\xfd\x42\xc1\x03\x7f\x05\x12\xfa\xee\x05\xb0\x00\x00\x02\x00\
\x1f\x00\x00\x05\x73\x05\xb0\x00\x03\x00\x06\x00\x30\x00\xb0\x00\
\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1e\x3e\x59\xb0\x00\x45\x58\xb0\
\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb1\x04\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb2\x06\x02\x00\x11\x12\x39\x30\x31\x01\x33\x01\
\x21\x25\x21\x01\x02\x86\xaa\x02\x43\xfa\xac\x01\x06\x03\x4c\xfe\
\x67\x05\xb0\xfa\x50\x9d\x04\x28\x00\x00\x03\x00\x67\xff\xec\x04\
\xfa\x05\xc4\x00\x03\x00\x15\x00\x23\x00\x7a\xb2\x08\x24\x25\x11\
\x12\x39\xb0\x08\x10\xb0\x01\xd0\xb0\x08\x10\xb0\x20\xd0\x00\xb0\
\x00\x45\x58\xb0\x11\x2f\x1b\xb1\x11\x1e\x3e\x59\xb0\x00\x45\x58\
\xb0\x08\x2f\x1b\xb1\x08\x12\x3e\x59\xb2\x02\x08\x11\x11\x12\x39\
\xb0\x02\x2f\xb2\xcf\x02\x01\x5d\xb2\xff\x02\x01\x5d\xb2\x2f\x02\
\x01\x5d\xb4\xbf\x02\xcf\x02\x02\x71\xb1\x01\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x11\x10\xb1\x19\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb0\x08\x10\xb1\x20\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\x30\x31\x01\x21\x35\x21\x05\x14\x02\x04\x23\x22\x24\
\x02\x27\x35\x34\x12\x24\x33\x32\x04\x12\x17\x07\x10\x02\x23\x22\
\x02\x07\x15\x14\x12\x33\x32\x12\x37\x03\xc0\xfd\xfb\x02\x05\x01\
\x3a\x8f\xfe\xf8\xb1\xac\xfe\xf6\x93\x02\x92\x01\x0b\xac\xaf\x01\
\x08\x91\x02\xbf\xd0\xbb\xb6\xd1\x03\xd1\xbb\xba\xcc\x03\x02\x93\
\x98\x82\xd5\xfe\xc2\xaa\xa9\x01\x39\xce\x69\xd2\x01\x42\xab\xa8\
\xfe\xc5\xcf\x0b\x01\x03\x01\x15\xfe\xeb\xf6\x6b\xfa\xfe\xe0\x01\
\x0f\xfd\x00\x00\x01\x00\x32\x00\x00\x05\x03\x05\xb0\x00\x06\x00\
\x31\x00\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1e\x3e\x59\xb0\
\x00\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x12\x3e\x59\xb0\x00\x45\x58\
\xb0\x05\x2f\x1b\xb1\x05\x12\x3e\x59\xb2\x00\x03\x01\x11\x12\x39\
\x30\x31\x01\x01\x23\x01\x33\x01\x23\x02\x9a\xfe\x66\xce\x02\x12\
\xac\x02\x13\xcf\x04\x89\xfb\x77\x05\xb0\xfa\x50\x00\x00\x03\x00\
\x78\x00\x00\x04\x21\x05\xb0\x00\x03\x00\x07\x00\x0b\x00\x52\x00\
\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1e\x3e\x59\xb0\x00\x45\
\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb1\x00\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x02\x10\xb0\x05\xd0\xb0\x05\x2f\xb2\
\x2f\x05\x01\x5d\xb1\x06\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb0\x08\x10\xb1\x0a\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\
\x31\x37\x21\x15\x21\x13\x21\x15\x21\x03\x21\x15\x21\x78\x03\xa9\
\xfc\x57\x57\x02\xf2\xfd\x0e\x53\x03\x94\xfc\x6c\x9d\x9d\x03\x3f\
\x9d\x03\x0e\x9e\x00\x00\x01\x00\xb2\x00\x00\x05\x01\x05\xb0\x00\
\x07\x00\x39\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1e\x3e\
\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb0\x00\
\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\x59\xb0\x06\x10\xb1\x02\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x21\x23\x11\x21\
\x11\x23\x11\x21\x05\x01\xc1\xfd\x32\xc0\x04\x4f\x05\x12\xfa\xee\
\x05\xb0\x00\x00\x01\x00\x45\x00\x00\x04\x44\x05\xb0\x00\x0c\x00\
\x3e\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1e\x3e\x59\xb0\
\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x12\x3e\x59\xb1\x01\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x05\xd0\xb0\x08\x10\xb1\x0a\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x07\xd0\x30\x31\x01\
\x01\x21\x15\x21\x35\x01\x01\x35\x21\x15\x21\x01\x02\xf2\xfe\x43\
\x03\x0f\xfc\x01\x01\xe1\xfe\x1f\x03\xce\xfd\x24\x01\xbb\x02\xce\
\xfd\xcf\x9d\x8f\x02\x4a\x02\x47\x90\x9e\xfd\xd4\x00\x00\x03\x00\
\x4d\x00\x00\x05\x74\x05\xb0\x00\x15\x00\x1c\x00\x23\x00\x6e\xb2\
\x0a\x24\x25\x11\x12\x39\xb0\x0a\x10\xb0\x19\xd0\xb0\x0a\x10\xb0\
\x20\xd0\x00\xb0\x00\x45\x58\xb0\x14\x2f\x1b\xb1\x14\x1e\x3e\x59\
\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\x09\x12\x3e\x59\xb2\x13\x14\
\x09\x11\x12\x39\xb0\x13\x2f\xb0\x00\xd0\xb2\x08\x09\x14\x11\x12\
\x39\xb0\x08\x2f\xb0\x0b\xd0\xb0\x08\x10\xb1\x21\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x19\xd0\xb0\x13\x10\xb1\x1a\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x20\xd0\x30\x31\x01\x16\x04\
\x16\x15\x14\x06\x06\x07\x15\x23\x35\x26\x00\x35\x34\x36\x37\x36\
\x37\x35\x33\x01\x14\x16\x17\x11\x06\x06\x05\x34\x26\x27\x11\x36\
\x36\x03\x42\xa1\x01\x01\x90\x8f\xff\xa4\xc2\xfb\xfe\xc8\x7d\x74\
\x8b\xb7\xc2\xfd\xca\xc2\xb2\xb4\xc0\x03\xa9\xc1\xb2\xb4\xbf\x04\
\xf7\x03\x8a\xfa\x9c\x9e\xfa\x89\x04\xaf\xaf\x04\x01\x2f\xf0\x94\
\xee\x49\x57\x03\xb9\xfd\x22\xb8\xc8\x04\x03\x09\x04\xca\xb5\xb5\
\xca\x04\xfc\xf7\x04\xcb\x00\x00\x01\x00\x5a\x00\x00\x05\x21\x05\
\xb0\x00\x18\x00\x5d\xb2\x00\x19\x1a\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x04\x2f\x1b\xb1\x04\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x11\
\x2f\x1b\xb1\x11\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x17\x2f\x1b\xb1\
\x17\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x12\x3e\
\x59\xb2\x16\x04\x0b\x11\x12\x39\xb0\x16\x2f\xb0\x00\xd0\xb0\x16\
\x10\xb1\x0d\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0a\xd0\
\x30\x31\x01\x36\x36\x35\x11\x33\x11\x14\x06\x06\x07\x11\x23\x11\
\x26\x00\x27\x11\x33\x11\x16\x16\x17\x11\x33\x03\x16\x9c\xae\xc1\
\x7f\xed\x9f\xc1\xe7\xfe\xef\x03\xc0\x01\xa5\x95\xc1\x02\x0b\x17\
\xd7\xaa\x02\x0d\xfd\xf0\x9f\xf5\x93\x0f\xfe\x96\x01\x6a\x17\x01\
\x2a\xed\x02\x18\xfd\xef\xa3\xd7\x19\x03\xa4\x00\x01\x00\x71\x00\
\x00\x04\xcb\x05\xc4\x00\x24\x00\x5e\xb2\x19\x25\x26\x11\x12\x39\
\x00\xb0\x00\x45\x58\xb0\x19\x2f\x1b\xb1\x19\x1e\x3e\x59\xb0\x00\
\x45\x58\xb0\x0e\x2f\x1b\xb1\x0e\x12\x3e\x59\xb0\x00\x45\x58\xb0\
\x23\x2f\x1b\xb1\x23\x12\x3e\x59\xb0\x0e\x10\xb1\x10\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0d\xd0\xb0\x00\xd0\xb0\x19\x10\
\xb1\x06\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x10\x10\xb0\
\x21\xd0\xb0\x22\xd0\x30\x31\x25\x36\x12\x37\x35\x34\x26\x20\x06\
\x15\x15\x14\x12\x17\x15\x21\x35\x33\x26\x02\x35\x35\x34\x12\x36\
\x33\x32\x16\x12\x17\x15\x14\x02\x07\x33\x15\x21\x02\xe1\x8a\x9a\
\x03\xc2\xfe\xae\xc0\x9d\x91\xfe\x14\xdd\x6a\x78\x8d\xfe\xa1\xa0\
\xfd\x8e\x03\x78\x6a\xdc\xfe\x1c\xa2\x1b\x01\x1c\xea\x86\xe7\xf6\
\xfa\xe5\x71\xf0\xfe\xd8\x1c\xa2\x9d\x66\x01\x33\xa2\x6f\xba\x01\
\x24\x9f\x9c\xfe\xe4\xb4\x82\xa0\xfe\xcd\x66\x9d\x00\x00\x02\x00\
\x64\xff\xeb\x04\x77\x04\x4e\x00\x16\x00\x21\x00\x7f\xb2\x1f\x22\
\x23\x11\x12\x39\xb0\x1f\x10\xb0\x13\xd0\x00\xb0\x00\x45\x58\xb0\
\x13\x2f\x1b\xb1\x13\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x16\x2f\x1b\
\xb1\x16\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x12\
\x3e\x59\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x12\x3e\x59\xb0\
\x08\x10\xb1\x03\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x0a\
\x13\x08\x11\x12\x39\xb2\x15\x13\x08\x11\x12\x39\xb0\x0c\x10\xb1\
\x1a\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x13\x10\xb1\x1f\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x11\x16\x33\
\x32\x37\x17\x06\x23\x22\x27\x06\x23\x22\x02\x35\x35\x10\x12\x33\
\x32\x17\x37\x01\x14\x16\x33\x32\x37\x11\x26\x23\x22\x06\x03\xee\
\x02\x4e\x13\x0f\x17\x30\x4a\x93\x26\x6b\xd1\xc0\xe4\xe2\xc4\xcb\
\x6b\x11\xfd\xcc\x92\x87\xad\x52\x55\xa8\x86\x95\x04\x3a\xfc\xe3\
\x8c\x05\x89\x22\xa5\xa5\x01\x1b\xf4\x0f\x01\x08\x01\x3d\xa1\x8d\
\xfd\xba\xaf\xc3\xba\x01\xbe\xbc\xe3\x00\x02\x00\xa0\xfe\x80\x04\
\x4d\x05\xc4\x00\x14\x00\x2a\x00\x6c\xb2\x00\x2b\x2c\x11\x12\x39\
\xb0\x18\xd0\x00\xb0\x0f\x2f\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\
\x00\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x12\x3e\
\x59\xb2\x28\x00\x0c\x11\x12\x39\xb0\x28\x2f\xb1\x25\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x06\x25\x28\x11\x12\x39\xb2\x0e\
\x0c\x00\x11\x12\x39\xb0\x00\x10\xb1\x18\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb0\x0c\x10\xb1\x1f\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\x30\x31\x01\x32\x16\x15\x14\x06\x07\x16\x16\x15\x14\
\x06\x23\x22\x27\x11\x23\x11\x34\x36\x36\x01\x34\x26\x23\x22\x06\
\x07\x11\x16\x16\x33\x32\x36\x35\x34\x26\x27\x23\x35\x33\x32\x36\
\x02\x5d\xc1\xeb\x62\x58\x7b\x83\xf9\xcd\xb5\x78\xba\x7a\xcf\x01\
\x67\x88\x6b\x6c\x96\x01\x2c\x90\x5e\x86\x9a\x8c\x6d\x96\x55\x78\
\x7e\x05\xc4\xdb\xae\x5b\x98\x2e\x2d\xc3\x82\xcd\xef\x5f\xfe\x35\
\x05\xb1\x6c\xbc\x6b\xfe\x7b\x66\x87\x8e\x6b\xfc\xc3\x34\x3f\xa0\
\x81\x76\xa5\x03\x98\x77\x00\x00\x01\x00\x2e\xfe\x60\x03\xdf\x04\
\x3a\x00\x08\x00\x38\xb2\x00\x09\x0a\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x01\x2f\x1b\xb1\x01\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x07\
\x2f\x1b\xb1\x07\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\
\x04\x14\x3e\x59\xb2\x00\x07\x04\x11\x12\x39\x30\x31\x01\x01\x33\
\x01\x11\x23\x11\x01\x33\x02\x0a\x01\x18\xbd\xfe\x85\xba\xfe\x84\
\xbd\x01\x14\x03\x26\xfb\xff\xfe\x27\x01\xe0\x03\xfa\x00\x02\x00\
\x60\xff\xec\x04\x27\x06\x1c\x00\x1e\x00\x2a\x00\x61\xb2\x14\x2b\
\x2c\x11\x12\x39\xb0\x14\x10\xb0\x22\xd0\x00\xb0\x00\x45\x58\xb0\
\x03\x2f\x1b\xb1\x03\x20\x3e\x59\xb0\x00\x45\x58\xb0\x14\x2f\x1b\
\xb1\x14\x12\x3e\x59\xb0\x03\x10\xb1\x08\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb2\x1b\x14\x03\x11\x12\x39\xb0\x1b\x2f\xb1\x28\
\x0b\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0c\xd0\xb0\x14\x10\
\xb1\x22\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x13\x34\
\x36\x33\x32\x17\x07\x26\x23\x22\x06\x15\x14\x04\x12\x17\x15\x14\
\x06\x06\x23\x22\x00\x35\x35\x34\x12\x37\x27\x26\x26\x13\x14\x16\
\x33\x32\x36\x35\x34\x26\x27\x22\x06\xdd\xcb\xaf\x8b\x86\x02\x97\
\x7c\x56\x65\x01\xbb\xcf\x05\x76\xdb\x91\xde\xfe\xf9\xbc\x90\x01\
\x63\x6b\x3e\xa1\x89\x88\xa0\xa9\x7d\x88\xa4\x04\xf5\x88\x9f\x37\
\xa0\x3b\x48\x3e\x6c\x99\xfe\xf3\xc4\x27\x99\xf3\x85\x01\x27\xf2\
\x0d\xa5\x01\x08\x23\x05\x27\x8c\xfd\x63\xb0\xcb\xca\xc6\x88\xdb\
\x19\xcd\x00\x00\x01\x00\x63\xff\xec\x03\xec\x04\x4d\x00\x25\x00\
\x72\xb2\x03\x26\x27\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x15\x2f\
\x1b\xb1\x15\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\
\x12\x3e\x59\xb1\x03\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x0a\x10\xb0\x06\xd0\xb0\x0a\x10\xb0\x22\xd0\xb0\x22\x2f\xb2\x2f\
\x22\x01\x5d\xb2\xbf\x22\x01\x5d\xb1\x23\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb2\x0f\x23\x22\x11\x12\x39\xb2\x19\x15\x22\x11\
\x12\x39\xb0\x15\x10\xb1\x1c\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\x30\x31\x01\x14\x16\x33\x32\x36\x35\x33\x14\x06\x23\x22\x26\
\x35\x34\x37\x26\x26\x35\x34\x36\x33\x32\x16\x15\x23\x34\x26\x23\
\x22\x06\x15\x14\x33\x33\x15\x23\x06\x01\x1e\x93\x76\x71\x9b\xb9\
\xff\xc6\xcc\xf8\xcd\x58\x62\xe7\xca\xba\xf9\xb9\x8f\x6b\x70\x87\
\xf4\xc4\xe0\xea\x01\x30\x4d\x62\x6e\x51\x9b\xb9\xb1\x93\xba\x42\
\x24\x7a\x49\x94\xa6\xb3\x8e\x46\x65\x5b\x4a\xa0\x94\x06\x00\x00\
\x01\x00\x6d\xfe\x81\x03\xc3\x05\xb0\x00\x1f\x00\x4d\xb2\x08\x20\
\x21\x11\x12\x39\x00\xb0\x0f\x2f\xb0\x00\x45\x58\xb0\x00\x2f\x1b\
\xb1\x00\x1e\x3e\x59\xb1\x1d\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x01\xd0\xb2\x15\x20\x00\x11\x12\x39\xb2\x02\x15\x00\x11\
\x12\x39\xb0\x15\x10\xb1\x07\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb2\x1c\x00\x15\x11\x12\x39\x30\x31\x01\x15\x01\x06\x06\x15\
\x14\x16\x17\x17\x16\x16\x15\x06\x06\x07\x27\x36\x36\x35\x34\x24\
\x27\x26\x26\x35\x34\x12\x37\x01\x21\x35\x03\xc3\xfe\xa2\x8a\x66\
\x43\x52\xf7\x51\x47\x02\x6c\x43\x62\x2f\x33\xfe\xcc\x36\x67\x5b\
\x92\x7f\x01\x1d\xfd\x83\x05\xb0\x78\xfe\x55\xa1\xe5\x85\x5a\x61\
\x19\x48\x18\x58\x4e\x45\xac\x36\x54\x35\x55\x2d\x44\x4e\x18\x2d\
\x99\x81\x82\x01\x40\x96\x01\x43\x98\x00\x01\x00\x91\xfe\x61\x03\
\xf0\x04\x4e\x00\x12\x00\x54\xb2\x0c\x13\x14\x11\x12\x39\x00\xb0\
\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1a\x3e\x59\xb0\x00\x45\x58\
\xb0\x00\x2f\x1b\xb1\x00\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x07\x2f\
\x1b\xb1\x07\x14\x3e\x59\xb0\x00\x45\x58\xb0\x10\x2f\x1b\xb1\x10\
\x12\x3e\x59\xb2\x01\x10\x03\x11\x12\x39\xb0\x03\x10\xb1\x0c\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x17\x36\x33\x32\
\x16\x17\x11\x23\x11\x34\x26\x23\x22\x06\x07\x11\x23\x11\x01\x38\
\x0b\x78\xc8\xbe\xae\x01\xb9\x6c\x80\x5c\x82\x22\xba\x04\x3a\x88\
\x9c\xc5\xcc\xfb\xa4\x04\x51\x88\x7c\x57\x4e\xfc\xef\x04\x3a\x00\
\x03\x00\x7a\xff\xec\x04\x12\x05\xc4\x00\x0d\x00\x16\x00\x1e\x00\
\x95\xb2\x03\x1f\x20\x11\x12\x39\xb0\x03\x10\xb0\x13\xd0\xb0\x03\
\x10\xb0\x1b\xd0\x00\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1e\
\x3e\x59\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x12\x3e\x59\xb2\
\x0e\x03\x0a\x11\x12\x39\xb0\x0e\x2f\xb2\x5f\x0e\x01\x5d\xb2\xff\
\x0e\x01\x5d\xb4\x8f\x0e\x9f\x0e\x02\x71\xb4\xbf\x0e\xcf\x0e\x02\
\x71\xb2\x2f\x0e\x01\x71\xb2\xcf\x0e\x01\x5d\xb2\x2f\x0e\x01\x5d\
\xb4\xef\x0e\xff\x0e\x02\x71\xb0\x0a\x10\xb1\x13\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x0e\x10\xb1\x18\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x03\x10\xb1\x1b\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\x30\x31\x01\x10\x02\x23\x22\x02\x03\x35\x10\x12\
\x33\x32\x12\x13\x05\x21\x35\x34\x26\x23\x22\x06\x15\x05\x21\x15\
\x14\x16\x20\x36\x37\x04\x12\xec\xdf\xdb\xee\x04\xec\xdf\xde\xeb\
\x04\xfd\x21\x02\x25\x8b\x88\x86\x8c\x02\x25\xfd\xdb\x92\x01\x04\
\x8d\x02\x02\x80\xfe\xbf\xfe\xad\x01\x4c\x01\x34\xcd\x01\x3d\x01\
\x4e\xfe\xbc\xfe\xcd\x2c\x37\xe3\xf1\xf1\xe3\xcf\x27\xe5\xfa\xf0\
\xe3\x00\x01\x00\xc3\xff\xf4\x02\x4b\x04\x3a\x00\x0c\x00\x29\x00\
\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1a\x3e\x59\xb0\x00\x45\
\x58\xb0\x09\x2f\x1b\xb1\x09\x12\x3e\x59\xb1\x04\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x11\x14\x16\x33\x32\x37\x17\
\x06\x23\x22\x11\x11\x01\x7c\x37\x40\x30\x27\x01\x46\x49\xf9\x04\
\x3a\xfc\xd7\x3f\x40\x0c\x97\x13\x01\x26\x03\x20\x00\x00\x01\x00\
\x25\xff\xef\x04\x3b\x05\xee\x00\x1a\x00\x52\xb2\x10\x1b\x1c\x11\
\x12\x39\x00\xb0\x00\x2f\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\
\x12\x3e\x59\xb0\x00\x45\x58\xb0\x11\x2f\x1b\xb1\x11\x12\x3e\x59\
\xb0\x0b\x10\xb1\x07\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\
\x10\x00\x0b\x11\x12\x39\xb0\x10\x10\xb0\x13\xd0\xb0\x00\x10\xb1\
\x17\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x32\x16\
\x17\x01\x16\x16\x33\x37\x17\x06\x23\x22\x26\x26\x27\x03\x01\x23\
\x01\x27\x26\x26\x23\x07\x27\x36\x01\x05\x62\x78\x21\x01\xab\x14\
\x2d\x23\x26\x06\x24\x2a\x4d\x4e\x3e\x1d\xe6\xfe\xe2\xce\x01\x8a\
\x60\x17\x35\x2d\x2f\x01\x2a\x05\xee\x50\x5f\xfb\xab\x33\x27\x03\
\x98\x0c\x25\x56\x50\x02\x51\xfc\xf5\x04\x05\xeb\x38\x2e\x02\x8e\
\x0c\x00\x01\x00\x65\xfe\x77\x03\xa9\x05\xc4\x00\x2d\x00\x59\xb2\
\x03\x2e\x2f\x11\x12\x39\x00\xb0\x17\x2f\xb0\x00\x45\x58\xb0\x2b\
\x2f\x1b\xb1\x2b\x1e\x3e\x59\xb1\x02\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb2\x08\x2e\x2b\x11\x12\x39\xb0\x08\x2f\xb1\x09\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x1e\x2e\x2b\x11\x12\x39\
\xb0\x1e\x10\xb1\x0f\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\
\x25\x09\x08\x11\x12\x39\x30\x31\x01\x26\x23\x22\x06\x15\x14\x21\
\x33\x15\x23\x06\x06\x15\x14\x16\x04\x16\x17\x16\x15\x14\x06\x07\
\x27\x37\x36\x35\x34\x2e\x04\x35\x34\x36\x37\x26\x26\x35\x34\x24\
\x33\x32\x17\x03\x72\x84\x61\x8d\xa0\x01\x4d\x85\x96\xb6\xc7\x90\
\x01\x0f\x7c\x20\x4f\x68\x48\x6b\x39\x31\x4c\xe6\xa9\x77\x41\xa4\
\x96\x76\x83\x01\x02\xe4\x91\x70\x05\x08\x24\x67\x55\xdb\x98\x02\
\x9c\xa3\x70\x9d\x41\x25\x14\x31\x69\x40\xa7\x3d\x54\x40\x3c\x3e\
\x27\x2e\x33\x42\x69\x99\x6f\x91\xcb\x2e\x2a\x98\x60\x9f\xb9\x27\
\x00\x00\x01\x00\x29\xff\xf4\x04\xa4\x04\x3a\x00\x14\x00\x5e\xb2\
\x0b\x15\x16\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x13\x2f\x1b\xb1\
\x13\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x12\x3e\
\x59\xb0\x00\x45\x58\xb0\x0f\x2f\x1b\xb1\x0f\x12\x3e\x59\xb0\x13\
\x10\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0a\x10\
\xb1\x05\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x00\x10\xb0\
\x0d\xd0\xb0\x0e\xd0\xb0\x11\xd0\xb0\x12\xd0\x30\x31\x01\x23\x11\
\x14\x16\x33\x32\x37\x17\x06\x23\x22\x11\x11\x21\x11\x23\x11\x23\
\x35\x21\x04\x71\x9c\x36\x41\x30\x27\x01\x46\x49\xf9\xfe\x6f\xb9\
\xa9\x04\x48\x03\xa1\xfd\x72\x40\x41\x0c\x97\x13\x01\x26\x02\x87\
\xfc\x5f\x03\xa1\x99\x00\x02\x00\x91\xfe\x60\x04\x1f\x04\x4e\x00\
\x0f\x00\x1b\x00\x59\xb2\x12\x1c\x1d\x11\x12\x39\xb0\x12\x10\xb0\
\x00\xd0\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1a\x3e\x59\
\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x14\x3e\x59\xb0\x00\x45\
\x58\xb0\x07\x2f\x1b\xb1\x07\x12\x3e\x59\xb2\x09\x00\x07\x11\x12\
\x39\xb1\x12\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x00\x10\
\xb1\x18\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x32\
\x12\x17\x17\x14\x02\x23\x22\x27\x11\x23\x11\x34\x36\x36\x03\x16\
\x33\x32\x36\x35\x34\x26\x23\x22\x06\x15\x02\x50\xcf\xf4\x0b\x01\
\xe0\xbf\xc3\x72\xba\x71\xcd\x84\x53\xab\x87\x96\x91\x85\x75\x90\
\x04\x4e\xfe\xe6\xfe\x42\xf0\xfe\xe8\x7c\xfd\xf8\x03\xe4\x9e\xec\
\x80\xfc\xc8\x93\xc3\xc3\xcd\xe0\xd8\xa9\x00\x00\x01\x00\x65\xfe\
\x8a\x03\xe1\x04\x4e\x00\x22\x00\x4b\xb2\x00\x23\x24\x11\x12\x39\
\x00\xb0\x14\x2f\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1a\x3e\
\x59\xb0\x00\x45\x58\xb0\x1b\x2f\x1b\xb1\x1b\x12\x3e\x59\xb0\x00\
\x10\xb0\x04\xd0\xb0\x00\x10\xb1\x07\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x1b\x10\xb1\x0d\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\x30\x31\x01\x32\x16\x15\x23\x34\x26\x23\x22\x06\x15\x15\
\x10\x05\x17\x16\x16\x15\x06\x06\x07\x27\x37\x36\x35\x34\x26\x27\
\x26\x02\x35\x35\x34\x36\x36\x02\x3d\xbd\xe7\xaf\x86\x6f\x84\x9b\
\x01\x40\x86\x62\x50\x02\x63\x4a\x62\x2f\x31\x46\x56\xec\xf8\x77\
\xd7\x04\x4e\xd5\xb4\x6e\x83\xdb\xb3\x20\xfe\xfc\x63\x26\x1d\x60\
\x50\x3f\xa7\x3e\x55\x36\x3c\x46\x2b\x2b\x13\x34\x01\x01\xd3\x2a\
\x98\xfb\x89\x00\x02\x00\x60\xff\xec\x04\x7b\x04\x3a\x00\x11\x00\
\x1d\x00\x4e\xb2\x08\x1e\x1f\x11\x12\x39\xb0\x08\x10\xb0\x15\xd0\
\x00\xb0\x00\x45\x58\xb0\x10\x2f\x1b\xb1\x10\x1a\x3e\x59\xb0\x00\
\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x12\x3e\x59\xb0\x10\x10\xb1\x00\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x08\x10\xb1\x15\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x00\x10\xb0\x1b\xd0\x30\
\x31\x01\x21\x16\x11\x15\x14\x06\x06\x23\x22\x00\x35\x35\x34\x36\
\x36\x37\x21\x01\x14\x16\x33\x32\x36\x35\x34\x26\x23\x22\x06\x04\
\x7b\xfe\xe4\xc8\x7a\xdd\x8c\xda\xfe\xf6\x76\xd9\x8c\x02\x40\xfc\
\x9f\xa0\x8a\x8b\x9f\xa1\x8b\x89\x9f\x03\xa1\x94\xfe\xef\x11\x8c\
\xeb\x88\x01\x2f\xff\x0d\x98\xf2\x88\x01\xfd\xd7\xb7\xd7\xd9\xcb\
\xac\xce\xcc\x00\x01\x00\x51\xff\xec\x03\xd9\x04\x3a\x00\x10\x00\
\x4b\xb2\x0a\x11\x12\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x0f\x2f\
\x1b\xb1\x0f\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\x09\
\x12\x3e\x59\xb0\x0f\x10\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb0\x09\x10\xb1\x04\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x00\x10\xb0\x0d\xd0\xb0\x0e\xd0\x30\x31\x01\x21\x11\x14\
\x33\x32\x37\x17\x06\x23\x22\x26\x27\x11\x21\x35\x21\x03\xd9\xfe\
\x8d\x69\x2b\x31\x2a\x4c\x6a\x7d\x75\x01\xfe\xa5\x03\x88\x03\xa4\
\xfd\x69\x85\x1a\x82\x34\x93\x92\x02\x93\x96\x00\x01\x00\x8f\xff\
\xec\x03\xf6\x04\x3a\x00\x12\x00\x3d\xb2\x0e\x13\x14\x11\x12\x39\
\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1a\x3e\x59\xb0\x00\
\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1a\x3e\x59\xb0\x00\x45\x58\xb0\
\x0e\x2f\x1b\xb1\x0e\x12\x3e\x59\xb1\x03\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\x30\x31\x01\x11\x10\x33\x32\x36\x35\x26\x03\x33\
\x16\x11\x10\x00\x23\x22\x26\x27\x11\x01\x49\xc9\x81\xaa\x05\x76\
\xc3\x71\xfe\xff\xda\xc2\xc8\x02\x04\x3a\xfd\x79\xfe\xcf\xfa\xb6\
\xe7\x01\x21\xf1\xfe\xe9\xfe\xf9\xfe\xc1\xe0\xd7\x02\x97\x00\x00\
\x02\x00\x57\xfe\x22\x05\x4c\x04\x3a\x00\x19\x00\x22\x00\x5e\xb2\
\x0f\x23\x24\x11\x12\x39\xb0\x0f\x10\xb0\x1a\xd0\x00\xb0\x18\x2f\
\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1a\x3e\x59\xb0\x00\x45\
\x58\xb0\x10\x2f\x1b\xb1\x10\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x17\
\x2f\x1b\xb1\x17\x12\x3e\x59\xb0\x00\xd0\xb0\x17\x10\xb1\x1a\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0c\xd0\xb0\x10\x10\xb1\
\x20\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x05\x24\x00\
\x35\x34\x12\x37\x17\x06\x07\x14\x16\x17\x11\x34\x36\x33\x32\x16\
\x16\x15\x14\x00\x05\x11\x23\x13\x36\x36\x35\x26\x26\x23\x22\x15\
\x02\x6c\xff\x00\xfe\xeb\x81\x7f\x65\xa1\x0a\xb5\xa6\x8a\x71\x82\
\xe1\x82\xfe\xde\xfe\xfb\xb9\xb9\xaa\xc4\x05\xa5\x82\x42\x11\x17\
\x01\x33\xfb\xa8\x01\x07\x57\x85\x8c\xf5\xad\xe5\x1a\x02\xcc\x69\
\x7d\x8d\xf8\x95\xf3\xfe\xd7\x15\xfe\x33\x02\x66\x16\xde\xa4\xa9\
\xd8\x52\x00\x00\x01\x00\x5f\xfe\x28\x05\x43\x04\x3a\x00\x19\x00\
\x59\xb2\x00\x1a\x1b\x11\x12\x39\x00\xb0\x0d\x2f\xb0\x00\x45\x58\
\xb0\x00\x2f\x1b\xb1\x00\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x06\x2f\
\x1b\xb1\x06\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x13\x2f\x1b\xb1\x13\
\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x12\x3e\x59\
\xb1\x01\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0c\x10\xb0\
\x0f\xd0\xb0\x01\x10\xb0\x18\xd0\x30\x31\x01\x11\x36\x36\x35\x26\
\x03\x33\x16\x11\x10\x00\x05\x11\x23\x11\x26\x00\x11\x11\x33\x11\
\x16\x16\x17\x11\x03\x1c\xab\xc3\x05\x7a\xc2\x76\xfe\xe3\xfe\xf6\
\xb9\xff\xfe\xfb\xba\x02\xa6\xa2\x04\x3a\xfc\x4e\x18\xe5\xb2\xe8\
\x01\x1b\xec\xfe\xe9\xfe\xfd\xfe\xd0\x15\xfe\x39\x01\xc9\x1a\x01\
\x36\x01\x13\x01\xe6\xfe\x0e\xc2\xe4\x19\x03\xb1\x00\x00\x01\x00\
\x7a\xff\xec\x06\x19\x04\x3a\x00\x23\x00\x5b\xb2\x1b\x24\x25\x11\
\x12\x39\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1a\x3e\x59\
\xb0\x00\x45\x58\xb0\x13\x2f\x1b\xb1\x13\x1a\x3e\x59\xb0\x00\x45\
\x58\xb0\x19\x2f\x1b\xb1\x19\x12\x3e\x59\xb0\x00\x45\x58\xb0\x1e\
\x2f\x1b\xb1\x1e\x12\x3e\x59\xb1\x05\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb2\x09\x00\x1e\x11\x12\x39\xb0\x0e\xd0\xb2\x1b\x13\
\x19\x11\x12\x39\x30\x31\x01\x02\x07\x14\x16\x33\x32\x36\x35\x11\
\x33\x11\x16\x16\x33\x32\x36\x35\x26\x03\x33\x16\x11\x10\x02\x23\
\x22\x27\x06\x06\x23\x22\x02\x11\x10\x37\x01\xc4\x8a\x07\x72\x6a\
\x6c\x71\xbb\x01\x71\x6b\x6a\x72\x07\x8a\xc3\x87\xcf\xbc\xf0\x55\
\x29\xa4\x77\xbc\xcf\x87\x04\x3a\xfe\xe5\xef\xcb\xe3\xad\xa6\x01\
\x2d\xfe\xce\xa4\xaa\xe2\xcc\xef\x01\x1b\xf4\xfe\xea\xfe\xed\xfe\
\xcf\xee\x75\x79\x01\x31\x01\x13\x01\x1f\xeb\x00\x02\x00\x79\xff\
\xec\x04\x79\x05\xc6\x00\x1f\x00\x28\x00\x71\xb2\x14\x29\x2a\x11\
\x12\x39\xb0\x14\x10\xb0\x26\xd0\x00\xb0\x00\x45\x58\xb0\x19\x2f\
\x1b\xb1\x19\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\
\x12\x3e\x59\xb2\x1d\x19\x06\x11\x12\x39\xb0\x1d\x2f\xb1\x02\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x0b\x19\x06\x11\x12\x39\
\xb0\x06\x10\xb1\x0f\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x02\x10\xb0\x13\xd0\xb0\x1d\x10\xb0\x23\xd0\xb0\x19\x10\xb1\x26\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x06\x07\x15\
\x06\x06\x23\x22\x26\x35\x11\x37\x11\x14\x16\x33\x32\x36\x35\x35\
\x26\x00\x35\x34\x36\x33\x32\x16\x15\x11\x36\x37\x01\x14\x16\x17\
\x11\x26\x23\x22\x15\x04\x79\x3c\x53\x02\xe5\xc8\xcb\xf7\xba\x8c\
\x7c\x74\x82\xd9\xfe\xf3\xb8\x96\x9f\xb2\x3f\x48\xfd\x94\xa2\x8a\
\x05\x93\x94\x02\x73\x17\x09\xa6\xd3\xee\xf7\xd7\x01\x47\x02\xfe\
\xb0\x8f\x9b\x92\x98\xa6\x1f\x01\x1a\xd9\xa0\xbb\xc5\xb2\xfe\xa1\
\x05\x13\x01\x52\x85\xbd\x1e\x01\x68\xc6\xc4\x00\x01\xff\xda\x00\
\x00\x04\x6e\x05\xbc\x00\x1a\x00\x4a\xb2\x00\x1b\x1c\x11\x12\x39\
\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1e\x3e\x59\xb0\x00\
\x45\x58\xb0\x17\x2f\x1b\xb1\x17\x1e\x3e\x59\xb0\x00\x45\x58\xb0\
\x0d\x2f\x1b\xb1\x0d\x12\x3e\x59\xb2\x00\x04\x0d\x11\x12\x39\xb0\
\x04\x10\xb1\x09\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x12\
\xd0\x30\x31\x01\x13\x36\x36\x33\x32\x17\x07\x26\x23\x22\x07\x01\
\x11\x23\x11\x01\x26\x23\x22\x07\x27\x36\x33\x32\x16\x17\x02\x24\
\xe1\x2b\x6b\x57\x48\x34\x24\x0d\x27\x46\x24\xfe\xd7\xbf\xfe\xd8\
\x27\x43\x27\x0d\x24\x34\x47\x58\x6b\x2a\x03\x06\x01\xfb\x63\x58\
\x1b\x97\x08\x4f\xfd\x77\xfd\xc6\x02\x3c\x02\x87\x4f\x08\x96\x1c\
\x54\x5d\x00\x00\x02\x00\x4a\xff\xec\x06\x1b\x04\x3a\x00\x12\x00\
\x26\x00\x72\xb2\x08\x27\x28\x11\x12\x39\xb0\x08\x10\xb0\x1e\xd0\
\x00\xb0\x00\x45\x58\xb0\x11\x2f\x1b\xb1\x11\x1a\x3e\x59\xb0\x00\
\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x12\x3e\x59\xb0\x00\x45\x58\xb0\
\x0a\x2f\x1b\xb1\x0a\x12\x3e\x59\xb0\x11\x10\xb1\x00\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x08\x11\x06\x11\x12\x39\xb0\x0f\
\xd0\xb0\x10\xd0\xb0\x15\xd0\xb0\x16\xd0\xb0\x0a\x10\xb1\x1b\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x1f\x0a\x11\x11\x12\x39\
\xb0\x24\xd0\x30\x31\x01\x23\x16\x15\x10\x02\x23\x22\x27\x06\x23\
\x22\x02\x11\x34\x37\x23\x35\x21\x01\x26\x27\x21\x06\x07\x14\x16\
\x33\x32\x36\x37\x11\x33\x11\x16\x16\x33\x32\x36\x06\x1b\x88\x40\
\xbc\xab\xf1\x53\x53\xf0\xaa\xbd\x40\x74\x05\xd1\xfe\xfe\x04\x4a\
\xfc\xbb\x4b\x04\x60\x58\x69\x71\x02\xbb\x02\x71\x6a\x56\x60\x03\
\xa1\xac\xc5\xfe\xef\xfe\xcd\xef\xef\x01\x30\x01\x14\xbf\xb2\x99\
\xfd\xf6\xaa\xc7\xc8\xa9\xcb\xe3\xa7\xa2\x01\x07\xfe\xf9\xa2\xa7\
\xe2\x00\x01\x00\x2a\xff\xf5\x05\xb1\x05\xb0\x00\x18\x00\x64\xb2\
\x11\x19\x1a\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x17\x2f\x1b\xb1\
\x17\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\x09\x12\x3e\
\x59\xb0\x17\x10\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb2\x04\x17\x09\x11\x12\x39\xb0\x04\x2f\xb0\x09\x10\xb1\x0a\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\x10\xb1\x10\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x00\x10\xb0\x15\xd0\xb0\x16\
\xd0\x30\x31\x01\x21\x11\x36\x33\x32\x04\x10\x04\x23\x27\x32\x36\
\x35\x26\x26\x23\x22\x07\x11\x23\x11\x21\x35\x21\x04\x94\xfd\xf6\
\x9d\x84\xf4\x01\x12\xfe\xfc\xed\x02\x9b\x98\x02\xa3\xa2\x96\x8a\
\xc1\xfe\x61\x04\x6a\x05\x12\xfe\x39\x30\xf1\xfe\x4e\xe3\x96\x91\
\x94\x8e\x96\x2e\xfd\x5a\x05\x12\x9e\x00\x01\x00\x7b\xff\xec\x04\
\xdc\x05\xc4\x00\x1f\x00\x89\xb2\x03\x20\x21\x11\x12\x39\x00\xb0\
\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x1e\x3e\x59\xb0\x00\x45\x58\
\xb0\x03\x2f\x1b\xb1\x03\x12\x3e\x59\xb0\x0b\x10\xb0\x0f\xd0\xb0\
\x0b\x10\xb1\x12\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x16\
\x03\x0b\x11\x12\x39\xb0\x16\x2f\xb4\xbf\x16\xcf\x16\x02\x71\xb2\
\xcf\x16\x01\x5d\xb2\x9f\x16\x01\x71\xb2\xff\x16\x01\x5d\xb2\x2f\
\x16\x01\x5d\xb2\x5f\x16\x01\x72\xb2\x8f\x16\x01\x72\xb1\x17\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\xb1\x1c\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\xb0\x1f\xd0\x30\x31\
\x01\x06\x04\x23\x20\x00\x11\x35\x34\x12\x24\x33\x32\x00\x17\x23\
\x26\x26\x23\x22\x02\x07\x21\x15\x21\x15\x14\x12\x33\x32\x36\x37\
\x04\xdc\x1b\xfe\xe1\xee\xfe\xfe\xfe\xc9\x8f\x01\x0b\xb0\xe8\x01\
\x18\x17\xc0\x19\xa7\x97\xb9\xce\x02\x02\x3a\xfd\xc6\xc6\xb2\xa0\
\xab\x1c\x01\xce\xe7\xfb\x01\x72\x01\x36\x8b\xc9\x01\x35\xa7\xfe\
\xfd\xe5\xac\x9e\xfe\xf1\xea\x9d\x02\xed\xfe\xe8\x91\xb4\x00\x00\
\x02\x00\x31\x00\x00\x08\x3b\x05\xb0\x00\x18\x00\x21\x00\x77\xb2\
\x09\x22\x23\x11\x12\x39\xb0\x09\x10\xb0\x19\xd0\x00\xb0\x00\x45\
\x58\xb0\x00\x2f\x1b\xb1\x00\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x08\
\x2f\x1b\xb1\x08\x12\x3e\x59\xb0\x00\x45\x58\xb0\x10\x2f\x1b\xb1\
\x10\x12\x3e\x59\xb2\x01\x00\x08\x11\x12\x39\xb0\x01\x2f\xb0\x00\
\x10\xb1\x0a\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x10\x10\
\xb1\x12\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x01\x10\xb1\
\x19\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x12\x10\xb0\x1a\
\xd0\xb0\x1b\xd0\x30\x31\x01\x11\x21\x16\x04\x15\x14\x04\x07\x21\
\x11\x21\x03\x02\x02\x06\x07\x23\x35\x37\x3e\x02\x37\x13\x01\x11\
\x21\x32\x36\x35\x34\x26\x27\x04\xee\x01\x69\xde\x01\x06\xfe\xfe\
\xde\xfd\xd3\xfe\x00\x1a\x0f\x59\xac\x90\x3f\x28\x5d\x64\x34\x0b\
\x1e\x03\x77\x01\x5f\x8c\xa2\x9d\x8a\x05\xb0\xfd\xcb\x03\xf0\xcb\
\xc6\xf3\x04\x05\x12\xfd\xbf\xfe\xde\xfe\xdc\x89\x02\x9d\x02\x07\
\x6b\xea\xf3\x02\xc2\xfd\x2d\xfd\xc0\x9e\x84\x80\x9c\x02\x00\x00\
\x02\x00\xb1\x00\x00\x08\x4d\x05\xb0\x00\x12\x00\x1b\x00\x85\xb2\
\x01\x1c\x1d\x11\x12\x39\xb0\x01\x10\xb0\x13\xd0\x00\xb0\x00\x45\
\x58\xb0\x12\x2f\x1b\xb1\x12\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x02\
\x2f\x1b\xb1\x02\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x0f\x2f\x1b\xb1\
\x0f\x12\x3e\x59\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x12\x3e\
\x59\xb2\x00\x02\x0f\x11\x12\x39\xb0\x00\x2f\xb2\x04\x0c\x02\x11\
\x12\x39\xb0\x04\x2f\xb0\x00\x10\xb1\x0e\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb0\x04\x10\xb1\x13\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x0c\x10\xb1\x14\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\x30\x31\x01\x21\x11\x33\x11\x21\x16\x04\x15\x14\x04\x07\
\x21\x11\x21\x11\x23\x11\x33\x01\x11\x21\x32\x36\x35\x34\x26\x27\
\x01\x72\x02\xce\xc0\x01\x6a\xe2\x01\x01\xfe\xff\xdf\xfd\xd3\xfd\
\x32\xc1\xc1\x03\x8e\x01\x5f\x8e\xa0\x98\x8a\x03\x39\x02\x77\xfd\
\x9e\x03\xe2\xbd\xbf\xe9\x04\x02\x9c\xfd\x64\x05\xb0\xfd\x01\xfd\
\xf5\x8e\x7a\x74\x8c\x03\x00\x00\x01\x00\x3e\x00\x00\x05\xd4\x05\
\xb0\x00\x15\x00\x5f\xb2\x0e\x16\x17\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x14\x2f\x1b\xb1\x14\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x08\
\x2f\x1b\xb1\x08\x12\x3e\x59\xb0\x00\x45\x58\xb0\x10\x2f\x1b\xb1\
\x10\x12\x3e\x59\xb0\x14\x10\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb2\x04\x14\x08\x11\x12\x39\xb0\x04\x2f\xb1\x0d\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x00\x10\xb0\x12\xd0\xb0\
\x13\xd0\x30\x31\x01\x21\x11\x36\x33\x32\x16\x17\x11\x23\x11\x26\
\x26\x23\x22\x07\x11\x23\x11\x21\x35\x21\x04\xa6\xfd\xf0\xa0\xaf\
\xfa\xf2\x03\xc1\x01\x89\xa4\xa9\xa6\xc0\xfe\x68\x04\x68\x05\x12\
\xfe\x50\x28\xda\xdd\xfe\x2d\x01\xce\x98\x86\x2a\xfd\x3e\x05\x12\
\x9e\x00\x01\x00\xb0\xfe\x99\x04\xff\x05\xb0\x00\x0b\x00\x49\x00\
\xb0\x09\x2f\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1e\x3e\x59\
\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1e\x3e\x59\xb0\x00\x45\
\x58\xb0\x06\x2f\x1b\xb1\x06\x12\x3e\x59\xb0\x00\x45\x58\xb0\x0a\
\x2f\x1b\xb1\x0a\x12\x3e\x59\xb1\x02\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x03\xd0\x30\x31\x13\x33\x11\x21\x11\x33\x11\x21\
\x11\x23\x11\x21\xb0\xc1\x02\xce\xc0\xfe\x40\xc1\xfe\x32\x05\xb0\
\xfa\xed\x05\x13\xfa\x50\xfe\x99\x01\x67\x00\x00\x02\x00\xa2\x00\
\x00\x04\xb1\x05\xb0\x00\x0c\x00\x15\x00\x5e\xb2\x0f\x16\x17\x11\
\x12\x39\xb0\x0f\x10\xb0\x03\xd0\x00\xb0\x00\x45\x58\xb0\x0b\x2f\
\x1b\xb1\x0b\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\x09\
\x12\x3e\x59\xb0\x0b\x10\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb2\x02\x0b\x09\x11\x12\x39\xb0\x02\x2f\xb1\x0d\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x09\x10\xb1\x0e\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x21\x11\x21\x16\x04\x15\
\x14\x04\x07\x21\x11\x21\x01\x11\x21\x32\x36\x35\x34\x26\x27\x04\
\x21\xfd\x42\x01\x6a\xe4\x01\x00\xfe\xfe\xdf\xfd\xd2\x03\x7f\xfd\
\x42\x01\x5f\x8f\x9f\x99\x8d\x05\x12\xfe\x4c\x03\xe4\xc4\xc5\xea\
\x04\x05\xb0\xfd\x10\xfd\xdd\x98\x80\x7b\x8e\x02\x00\x00\x02\x00\
\x32\xfe\x9a\x05\xc9\x05\xb0\x00\x0e\x00\x15\x00\x5d\xb2\x12\x16\
\x17\x11\x12\x39\xb0\x12\x10\xb0\x0b\xd0\x00\xb0\x04\x2f\xb0\x00\
\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x1e\x3e\x59\xb0\x00\x45\x58\xb0\
\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb0\x04\x10\xb0\x01\xd0\xb0\x02\
\x10\xb1\x06\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0d\xd0\
\xb0\x0e\xd0\xb0\x0f\xd0\xb0\x10\xd0\xb0\x0b\x10\xb1\x11\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x23\x11\x21\x11\x23\
\x03\x33\x36\x12\x37\x13\x21\x11\x33\x21\x21\x11\x21\x03\x06\x02\
\x05\xc7\xbf\xfb\xeb\xc0\x01\x77\x5e\x6f\x0e\x20\x03\x67\xbe\xfb\
\xbb\x02\xc6\xfe\x13\x15\x0d\x6b\xfe\x9b\x01\x65\xfe\x9a\x02\x03\
\x6a\x01\x65\xd5\x02\x6f\xfa\xed\x04\x75\xfe\x54\xfb\xfe\x9e\x00\
\x01\x00\x1b\x00\x00\x07\x35\x05\xb0\x00\x15\x00\x87\x00\xb0\x00\
\x45\x58\xb0\x09\x2f\x1b\xb1\x09\x1e\x3e\x59\xb0\x00\x45\x58\xb0\
\x0d\x2f\x1b\xb1\x0d\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x11\x2f\x1b\
\xb1\x11\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x12\
\x3e\x59\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x12\x3e\x59\xb0\
\x00\x45\x58\xb0\x14\x2f\x1b\xb1\x14\x12\x3e\x59\xb0\x02\x10\xb0\
\x10\xd0\xb0\x10\x2f\xb2\x2f\x10\x01\x5d\xb2\xcf\x10\x01\x5d\xb1\
\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\xd0\xb2\x08\
\x10\x00\x11\x12\x39\xb0\x10\x10\xb0\x0b\xd0\xb2\x13\x00\x10\x11\
\x12\x39\x30\x31\x01\x23\x11\x23\x11\x23\x01\x23\x01\x01\x33\x01\
\x33\x11\x33\x11\x33\x01\x33\x01\x01\x23\x04\xa8\x9c\xc0\xa5\xfe\
\x64\xf0\x01\xea\xfe\x3c\xe3\x01\x83\xa5\xc0\x9e\x01\x83\xe2\xfe\
\x3c\x01\xea\xef\x02\x98\xfd\x68\x02\x98\xfd\x68\x03\x00\x02\xb0\
\xfd\x88\x02\x78\xfd\x88\x02\x78\xfd\x51\xfc\xff\x00\x00\x01\x00\
\x50\xff\xec\x04\x6a\x05\xc4\x00\x28\x00\x75\xb2\x03\x29\x2a\x11\
\x12\x39\x00\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x1e\x3e\x59\
\xb0\x00\x45\x58\xb0\x16\x2f\x1b\xb1\x16\x12\x3e\x59\xb0\x0b\x10\
\xb1\x03\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0b\x10\xb0\
\x06\xd0\xb2\x25\x16\x0b\x11\x12\x39\xb0\x25\x2f\xb2\xcf\x25\x01\
\x5d\xb2\x9f\x25\x01\x71\xb1\x24\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb2\x11\x24\x25\x11\x12\x39\xb0\x16\x10\xb0\x1b\xd0\xb0\
\x16\x10\xb1\x1e\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\
\x01\x34\x26\x23\x22\x06\x15\x23\x34\x36\x36\x33\x32\x04\x15\x14\
\x06\x07\x04\x15\x14\x04\x23\x22\x26\x26\x35\x33\x14\x16\x33\x32\
\x36\x35\x10\x25\x23\x35\x33\x36\x36\x03\x94\xa9\x99\x80\xad\xc0\
\x7f\xe4\x8a\xf4\x01\x0e\x7c\x6f\x01\x01\xfe\xdc\xf4\x91\xed\x84\
\xc0\xb6\x8c\x9d\xbb\xfe\xc3\xb4\xb3\x92\x96\x04\x29\x74\x89\x8d\
\x68\x74\xb8\x67\xdb\xc3\x65\xa6\x30\x56\xff\xc4\xe6\x67\xbe\x83\
\x73\x99\x92\x78\x01\x00\x05\x9e\x03\x7e\x00\x00\x01\x00\xb1\x00\
\x00\x04\xff\x05\xb0\x00\x09\x00\x5d\x00\xb0\x00\x45\x58\xb0\x00\
\x2f\x1b\xb1\x00\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x07\x2f\x1b\xb1\
\x07\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\
\x59\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x12\x3e\x59\xb2\x04\
\x00\x02\x11\x12\x39\x40\x09\x8a\x04\x9a\x04\xaa\x04\xba\x04\x04\
\x5d\xb2\x09\x00\x02\x11\x12\x39\x40\x09\x85\x09\x95\x09\xa5\x09\
\xb5\x09\x04\x5d\x30\x31\x01\x33\x11\x23\x11\x01\x23\x11\x33\x11\
\x04\x3f\xc0\xc0\xfd\x33\xc1\xc1\x05\xb0\xfa\x50\x04\x62\xfb\x9e\
\x05\xb0\xfb\x9e\x00\x00\x01\x00\x2f\x00\x00\x04\xf6\x05\xb0\x00\
\x11\x00\x4f\xb2\x04\x12\x13\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\
\x00\x2f\x1b\xb1\x00\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x01\x2f\x1b\
\xb1\x01\x12\x3e\x59\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\x09\x12\
\x3e\x59\xb0\x00\x10\xb1\x03\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x09\x10\xb1\x0b\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\x30\x31\x01\x11\x23\x11\x21\x03\x02\x02\x06\x07\x23\x35\x37\x3e\
\x02\x37\x13\x04\xf6\xc0\xfd\xf6\x1a\x0f\x59\xac\x90\x3f\x28\x5d\
\x64\x34\x0b\x1e\x05\xb0\xfa\x50\x05\x12\xfd\xbf\xfe\xde\xfe\xdc\
\x89\x02\x9d\x02\x07\x6b\xea\xf3\x02\xc2\x00\x00\x01\x00\x4d\xff\
\xeb\x04\xcb\x05\xb0\x00\x11\x00\x4b\xb2\x04\x12\x13\x11\x12\x39\
\x00\xb0\x00\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x1e\x3e\x59\xb0\x00\
\x45\x58\xb0\x10\x2f\x1b\xb1\x10\x1e\x3e\x59\xb0\x00\x45\x58\xb0\
\x07\x2f\x1b\xb1\x07\x12\x3e\x59\xb2\x00\x01\x07\x11\x12\x39\xb1\
\x0b\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x0f\x07\x10\x11\
\x12\x39\x30\x31\x01\x01\x33\x01\x0e\x02\x23\x22\x27\x37\x17\x32\
\x3f\x02\x01\x33\x02\x9d\x01\x4f\xdf\xfd\xfd\x34\x5a\x79\x5b\x4f\
\x16\x06\x5b\x69\x33\x19\x26\xfe\x10\xd7\x02\x63\x03\x4d\xfb\x43\
\x74\x61\x33\x09\x98\x04\x65\x34\x59\x04\x36\x00\x03\x00\x53\xff\
\xc4\x05\xe3\x05\xec\x00\x18\x00\x21\x00\x2a\x00\x5d\xb2\x0c\x2b\
\x2c\x11\x12\x39\xb0\x0c\x10\xb0\x20\xd0\xb0\x0c\x10\xb0\x22\xd0\
\x00\xb0\x0b\x2f\xb0\x17\x2f\xb2\x15\x17\x0b\x11\x12\x39\xb0\x15\
\x2f\xb0\x00\xd0\xb2\x09\x0b\x17\x11\x12\x39\xb0\x09\x2f\xb0\x0d\
\xd0\xb0\x15\x10\xb1\x19\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb0\x09\x10\xb1\x24\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x1f\xd0\xb0\x19\x10\xb0\x22\xd0\x30\x31\x01\x33\x16\x04\x12\x15\
\x14\x02\x04\x07\x23\x15\x23\x35\x23\x22\x24\x02\x10\x12\x24\x33\
\x33\x35\x33\x03\x22\x06\x15\x14\x16\x33\x33\x11\x33\x11\x33\x32\
\x36\x35\x34\x26\x23\x03\x78\x1f\xa5\x01\x10\x97\x98\xfe\xf4\xa4\
\x23\xba\x1c\xa7\xfe\xef\x97\x97\x01\x11\xa7\x1c\xba\xd6\xbc\xdb\
\xda\xbf\x1a\xba\x1c\xbf\xd7\xd7\xc3\x05\x1e\x01\x98\xfe\xf5\xa5\
\xa6\xfe\xf2\x97\x02\xc4\xc4\x98\x01\x0c\x01\x4e\x01\x0c\x98\xce\
\xfe\x9b\xe7\xcd\xce\xe5\x03\x67\xfc\x99\xeb\xca\xc8\xea\x00\x00\
\x01\x00\xaf\xfe\xa1\x05\x97\x05\xb0\x00\x0b\x00\x3c\x00\xb0\x09\
\x2f\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1e\x3e\x59\xb0\x00\
\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1e\x3e\x59\xb0\x00\x45\x58\xb0\
\x0a\x2f\x1b\xb1\x0a\x12\x3e\x59\xb1\x02\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb0\x06\xd0\x30\x31\x13\x33\x11\x21\x11\x33\x11\
\x33\x03\x23\x11\x21\xaf\xc1\x02\xce\xc0\x99\x12\xad\xfb\xd7\x05\
\xb0\xfa\xed\x05\x13\xfa\xf1\xfe\x00\x01\x5f\x00\x01\x00\x96\x00\
\x00\x04\xc8\x05\xb0\x00\x12\x00\x47\xb2\x05\x13\x14\x11\x12\x39\
\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1e\x3e\x59\xb0\x00\
\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1e\x3e\x59\xb0\x00\x45\x58\xb0\
\x01\x2f\x1b\xb1\x01\x12\x3e\x59\xb2\x0f\x00\x01\x11\x12\x39\xb0\
\x0f\x2f\xb1\x06\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\
\x01\x11\x23\x11\x06\x06\x23\x22\x26\x27\x11\x33\x11\x16\x16\x33\
\x32\x37\x11\x04\xc8\xc1\x69\xac\x6e\xf9\xf2\x03\xc1\x01\x89\xa3\
\xbe\xc5\x05\xb0\xfa\x50\x02\x5b\x1e\x17\xd8\xdf\x01\xd3\xfe\x32\
\x98\x86\x36\x02\xb6\x00\x01\x00\xb0\x00\x00\x06\xd7\x05\xb0\x00\
\x0b\x00\x49\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1e\x3e\
\x59\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1e\x3e\x59\xb0\x00\
\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x1e\x3e\x59\xb0\x00\x45\x58\xb0\
\x09\x2f\x1b\xb1\x09\x12\x3e\x59\xb1\x01\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb0\x05\xd0\xb0\x06\xd0\x30\x31\x01\x11\x21\x11\
\x33\x11\x21\x11\x33\x11\x21\x11\x01\x71\x01\xf5\xbf\x01\xf2\xc0\
\xf9\xd9\x05\xb0\xfa\xed\x05\x13\xfa\xed\x05\x13\xfa\x50\x05\xb0\
\x00\x00\x01\x00\xb0\xfe\xa1\x07\x6a\x05\xb0\x00\x0f\x00\x55\x00\
\xb0\x0b\x2f\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1e\x3e\x59\
\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1e\x3e\x59\xb0\x00\x45\
\x58\xb0\x07\x2f\x1b\xb1\x07\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x0d\
\x2f\x1b\xb1\x0d\x12\x3e\x59\xb1\x01\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x05\xd0\xb0\x06\xd0\xb0\x09\xd0\xb0\x0a\xd0\xb0\
\x02\xd0\x30\x31\x01\x11\x21\x11\x33\x11\x21\x11\x33\x11\x33\x03\
\x23\x11\x21\x11\x01\x71\x01\xf5\xbf\x01\xf2\xc0\x93\x12\xa5\xf9\
\xfd\x05\xb0\xfa\xed\x05\x13\xfa\xed\x05\x13\xfa\xe7\xfe\x0a\x01\
\x5f\x05\xb0\x00\x02\x00\x10\x00\x00\x05\xb8\x05\xb0\x00\x0c\x00\
\x15\x00\x61\xb2\x01\x16\x17\x11\x12\x39\xb0\x01\x10\xb0\x0d\xd0\
\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1e\x3e\x59\xb0\x00\
\x45\x58\xb0\x09\x2f\x1b\xb1\x09\x12\x3e\x59\xb2\x02\x00\x09\x11\
\x12\x39\xb0\x02\x2f\xb0\x00\x10\xb1\x0b\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb0\x02\x10\xb1\x0d\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x09\x10\xb1\x0e\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\x30\x31\x13\x21\x11\x21\x32\x04\x15\x14\x04\x07\x21\x11\
\x21\x01\x11\x21\x32\x36\x35\x34\x26\x27\x10\x02\x5b\x01\x5a\xef\
\x01\x04\xfe\xfe\xe2\xfd\xd6\xfe\x66\x02\x5b\x01\x5f\x8e\x9f\x99\
\x8c\x05\xb0\xfd\xae\xe5\xc6\xc5\xeb\x03\x05\x18\xfd\xa8\xfd\xdd\
\x98\x80\x7b\x8e\x02\x00\x03\x00\xb2\x00\x00\x06\x30\x05\xb0\x00\
\x0a\x00\x13\x00\x17\x00\x6f\xb2\x12\x18\x19\x11\x12\x39\xb0\x12\
\x10\xb0\x06\xd0\xb0\x12\x10\xb0\x15\xd0\x00\xb0\x00\x45\x58\xb0\
\x09\x2f\x1b\xb1\x09\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x16\x2f\x1b\
\xb1\x16\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x12\
\x3e\x59\xb0\x00\x45\x58\xb0\x14\x2f\x1b\xb1\x14\x12\x3e\x59\xb2\
\x00\x09\x07\x11\x12\x39\xb0\x00\x2f\xb1\x0b\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x07\x10\xb1\x0c\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\x30\x31\x01\x21\x16\x04\x15\x14\x04\x07\x21\x11\
\x33\x11\x11\x21\x32\x36\x35\x34\x26\x27\x01\x23\x11\x33\x01\x72\
\x01\x6a\xe4\x01\x00\xfe\xfe\xdf\xfd\xd3\xc0\x01\x5f\x8f\x9f\x99\
\x8d\x03\x57\xc0\xc0\x03\x5e\x03\xe4\xc4\xc5\xea\x04\x05\xb0\xfd\
\x10\xfd\xdd\x98\x80\x7b\x8e\x02\xfd\x40\x05\xb0\x00\x00\x02\x00\
\xa3\x00\x00\x04\xb1\x05\xb0\x00\x0a\x00\x13\x00\x4f\xb2\x0d\x14\
\x15\x11\x12\x39\xb0\x0d\x10\xb0\x01\xd0\x00\xb0\x00\x45\x58\xb0\
\x09\x2f\x1b\xb1\x09\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x07\x2f\x1b\
\xb1\x07\x12\x3e\x59\xb2\x00\x09\x07\x11\x12\x39\xb0\x00\x2f\xb1\
\x0b\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x07\x10\xb1\x0c\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x21\x16\x04\
\x15\x14\x04\x07\x21\x11\x33\x11\x11\x21\x32\x36\x35\x34\x26\x27\
\x01\x63\x01\x6a\xe4\x01\x00\xfe\xfe\xdf\xfd\xd3\xc0\x01\x5f\x8f\
\x9f\x99\x8d\x03\x5e\x03\xe4\xc4\xc5\xea\x04\x05\xb0\xfd\x10\xfd\
\xdd\x98\x80\x7b\x8e\x02\x00\x00\x01\x00\x93\xff\xec\x04\xf4\x05\
\xc4\x00\x1f\x00\x92\xb2\x0c\x20\x21\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x13\x2f\x1b\xb1\x13\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x1c\
\x2f\x1b\xb1\x1c\x12\x3e\x59\xb0\x00\xd0\xb0\x1c\x10\xb1\x03\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x08\x1c\x13\x11\x12\x39\
\xb0\x08\x2f\xb4\xef\x08\xff\x08\x02\x71\xb2\xcf\x08\x01\x5d\xb2\
\x2f\x08\x01\x71\xb4\xbf\x08\xcf\x08\x02\x71\xb2\x9f\x08\x01\x71\
\xb2\xff\x08\x01\x5d\xb2\x2f\x08\x01\x5d\xb2\x5f\x08\x01\x72\xb2\
\x8f\x08\x01\x72\xb1\x06\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb0\x13\x10\xb1\x0c\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x13\x10\xb0\x0f\xd0\x30\x31\x01\x16\x16\x33\x32\x12\x37\x21\x35\
\x21\x34\x02\x23\x22\x06\x07\x23\x36\x00\x33\x32\x04\x12\x15\x15\
\x14\x02\x04\x23\x22\x24\x27\x01\x54\x1c\xab\xa0\xad\xc9\x02\xfd\
\xc3\x02\x3d\xcf\xba\x96\xa7\x19\xc1\x17\x01\x18\xe8\xb0\x01\x0b\
\x8f\x8e\xfe\xfd\xa8\xee\xfe\xe1\x1b\x01\xce\xb4\x91\x01\x0e\xf0\
\x9e\xed\x01\x14\x9c\xae\xe5\x01\x03\xa7\xfe\xcb\xc9\x91\xc9\xfe\
\xcc\xa5\xfb\xe7\x00\x00\x02\x00\xb7\xff\xec\x06\xda\x05\xc4\x00\
\x17\x00\x25\x00\xa4\xb2\x21\x26\x27\x11\x12\x39\xb0\x21\x10\xb0\
\x12\xd0\x00\xb0\x00\x45\x58\xb0\x13\x2f\x1b\xb1\x13\x1e\x3e\x59\
\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x1e\x3e\x59\xb0\x00\x45\
\x58\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\x59\xb0\x00\x45\x58\xb0\x0a\
\x2f\x1b\xb1\x0a\x12\x3e\x59\xb2\x0f\x0a\x0d\x11\x12\x39\xb0\x0f\
\x2f\xb2\x5f\x0f\x01\x5d\xb2\xff\x0f\x01\x5d\xb4\x4f\x0f\x5f\x0f\
\x02\x71\xb4\x8f\x0f\x9f\x0f\x02\x71\xb2\x2f\x0f\x01\x71\xb2\xcf\
\x0f\x01\x5d\xb2\x2f\x0f\x01\x5d\xb2\xcf\x0f\x01\x71\xb1\x08\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x13\x10\xb1\x1b\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\x10\xb1\x22\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x14\x02\x04\x23\x22\x24\
\x02\x27\x23\x11\x23\x11\x33\x11\x33\x36\x12\x24\x33\x32\x04\x12\
\x15\x27\x10\x02\x23\x22\x02\x07\x15\x14\x12\x33\x32\x12\x37\x06\
\xda\x90\xfe\xf8\xb0\xa6\xfe\xf9\x95\x08\xd1\xc0\xc0\xd0\x03\x90\
\x01\x0a\xac\xaf\x01\x0b\x90\xbf\xd0\xbb\xb6\xd1\x03\xd3\xb9\xba\
\xcc\x03\x02\xa9\xd6\xfe\xc1\xa8\xa0\x01\x2a\xc7\xfd\x83\x05\xb0\
\xfd\x64\xce\x01\x37\xab\xa9\xfe\xbf\xd5\x02\x01\x03\x01\x15\xfe\
\xeb\xf6\x6b\xfb\xfe\xe1\x01\x0f\xfd\x00\x02\x00\x59\x00\x00\x04\
\x64\x05\xb0\x00\x0c\x00\x15\x00\x63\xb2\x10\x16\x17\x11\x12\x39\
\xb0\x10\x10\xb0\x0a\xd0\x00\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\
\x0a\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\
\x59\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x12\x3e\x59\xb2\x11\
\x0a\x00\x11\x12\x39\xb0\x11\x2f\xb1\x01\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb2\x05\x01\x0a\x11\x12\x39\xb0\x0a\x10\xb1\x12\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x21\x11\x21\x01\
\x23\x01\x24\x11\x34\x24\x33\x21\x11\x01\x14\x16\x17\x21\x11\x21\
\x22\x06\x03\xa3\xfe\xb0\xfe\xd3\xcd\x01\x52\xfe\xe6\x01\x11\xf3\
\x01\xcf\xfc\xed\xa5\x93\x01\x1a\xfe\xef\x9c\xa5\x02\x37\xfd\xc9\
\x02\x6c\x6f\x01\x1e\xd0\xe7\xfa\x50\x03\xf9\x84\xa0\x01\x02\x3e\
\x94\x00\x02\x00\x61\xff\xec\x04\x28\x06\x11\x00\x1b\x00\x28\x00\
\x64\xb2\x1c\x29\x2a\x11\x12\x39\xb0\x1c\x10\xb0\x08\xd0\x00\xb0\
\x00\x45\x58\xb0\x12\x2f\x1b\xb1\x12\x20\x3e\x59\xb0\x00\x45\x58\
\xb0\x08\x2f\x1b\xb1\x08\x12\x3e\x59\xb2\x00\x12\x08\x11\x12\x39\
\xb0\x00\x2f\xb2\x17\x00\x12\x11\x12\x39\xb2\x0f\x12\x17\x11\x12\
\x39\xb2\x1a\x00\x08\x11\x12\x39\xb1\x1c\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb0\x08\x10\xb1\x23\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\x30\x31\x01\x32\x12\x15\x15\x14\x06\x06\x23\x22\x00\
\x35\x35\x10\x12\x37\x36\x36\x35\x33\x14\x06\x07\x07\x06\x06\x07\
\x36\x17\x22\x06\x15\x15\x14\x16\x33\x32\x36\x35\x34\x26\x02\x67\
\xcc\xf5\x76\xdd\x90\xda\xfe\xf6\xfd\xf7\x8c\x62\x98\x71\x7c\x8a\
\xa5\xa5\x19\x93\xaf\x88\xa0\xa1\x89\x8a\xa0\xa1\x03\xfc\xfe\xef\
\xdf\x11\x99\xf1\x85\x01\x23\xf5\x5a\x01\x55\x01\x92\x2c\x19\x48\
\x3f\x7d\x8c\x1d\x1f\x27\xb9\x9a\xaa\x98\xb7\xa2\x10\xae\xcb\xcc\
\xc4\x99\xb9\x00\x03\x00\x9d\x00\x00\x04\x29\x04\x3a\x00\x0e\x00\
\x16\x00\x1c\x00\x91\xb2\x18\x1d\x1e\x11\x12\x39\xb0\x18\x10\xb0\
\x02\xd0\xb0\x18\x10\xb0\x16\xd0\x00\xb0\x00\x45\x58\xb0\x01\x2f\
\x1b\xb1\x01\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\
\x12\x3e\x59\xb2\x17\x01\x00\x11\x12\x39\xb0\x17\x2f\xb4\xbf\x17\
\xcf\x17\x02\x5d\xb4\x9f\x17\xaf\x17\x02\x71\xb2\xff\x17\x01\x5d\
\xb2\x0f\x17\x01\x71\xb4\x2f\x17\x3f\x17\x02\x5d\xb4\x6f\x17\x7f\
\x17\x02\x72\xb1\x0f\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\
\x08\x0f\x17\x11\x12\x39\xb0\x00\x10\xb1\x10\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x01\x10\xb1\x1b\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\x30\x31\x33\x11\x21\x32\x16\x15\x14\x06\x07\x16\
\x16\x15\x14\x06\x23\x01\x11\x21\x32\x36\x35\x34\x23\x25\x33\x20\
\x10\x27\x23\x9d\x01\xa6\xd8\xe7\x5a\x58\x62\x77\xdb\xc8\xfe\xd0\
\x01\x32\x74\x73\xee\xfe\xd5\xef\x01\x04\xf6\xfd\x04\x3a\x97\x92\
\x4b\x79\x20\x17\x86\x5d\x95\x9e\x01\xdb\xfe\xba\x56\x4e\xa2\x94\
\x01\x30\x05\x00\x01\x00\x9a\x00\x00\x03\x47\x04\x3a\x00\x05\x00\
\x2c\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\x59\xb0\
\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb0\x04\x10\xb1\
\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x21\x11\
\x23\x11\x21\x03\x47\xfe\x0d\xba\x02\xad\x03\xa1\xfc\x5f\x04\x3a\
\x00\x00\x02\x00\x2e\xfe\xc2\x04\x93\x04\x3a\x00\x0e\x00\x14\x00\
\x5d\xb2\x12\x15\x16\x11\x12\x39\xb0\x12\x10\xb0\x04\xd0\x00\xb0\
\x0c\x2f\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\x59\xb0\
\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x12\x3e\x59\xb1\x00\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x06\xd0\xb0\x07\xd0\xb0\x0c\
\x10\xb0\x09\xd0\xb0\x07\x10\xb0\x0f\xd0\xb0\x10\xd0\xb0\x04\x10\
\xb1\x11\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x37\x37\
\x36\x13\x13\x21\x11\x33\x11\x23\x11\x21\x11\x23\x13\x21\x21\x11\
\x21\x03\x02\x83\x40\x6c\x0f\x11\x02\xb9\x8b\xb9\xfd\x0d\xb9\x01\
\x01\x2f\x01\xf1\xfe\xb3\x0b\x11\x97\x4f\x8c\x01\x18\x01\xb0\xfc\
\x5d\xfe\x2b\x01\x3e\xfe\xc2\x01\xd5\x02\xf8\xfe\xfe\xfe\xbd\x00\
\x01\x00\x15\x00\x00\x06\x04\x04\x3a\x00\x15\x00\x91\x00\xb0\x00\
\x45\x58\xb0\x09\x2f\x1b\xb1\x09\x1a\x3e\x59\xb0\x00\x45\x58\xb0\
\x0d\x2f\x1b\xb1\x0d\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x11\x2f\x1b\
\xb1\x11\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x12\
\x3e\x59\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x12\x3e\x59\xb0\
\x00\x45\x58\xb0\x14\x2f\x1b\xb1\x14\x12\x3e\x59\xb0\x02\x10\xb0\
\x10\xd0\xb0\x10\x2f\xb2\xbf\x10\x01\x5d\xb2\xff\x10\x01\x5d\xb2\
\x2f\x10\x01\x5d\xb2\xcf\x10\x01\x71\xb1\x00\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x04\xd0\xb2\x08\x10\x00\x11\x12\x39\xb0\
\x10\x10\xb0\x0b\xd0\xb2\x13\x00\x10\x11\x12\x39\x30\x31\x01\x23\
\x11\x23\x11\x23\x01\x23\x01\x01\x33\x01\x33\x11\x33\x11\x33\x01\
\x33\x01\x01\x23\x03\xeb\x82\xb9\x82\xfe\xd1\xea\x01\x83\xfe\xa2\
\xe0\x01\x17\x7f\xb9\x7e\x01\x19\xe0\xfe\xa1\x01\x83\xea\x01\xd6\
\xfe\x2a\x01\xd6\xfe\x2a\x02\x30\x02\x0a\xfe\x40\x01\xc0\xfe\x40\
\x01\xc0\xfd\xf5\xfd\xd1\x00\x00\x01\x00\x58\xff\xed\x03\xac\x04\
\x4d\x00\x26\x00\x89\xb2\x03\x27\x28\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x15\
\x2f\x1b\xb1\x15\x12\x3e\x59\xb0\x0a\x10\xb1\x03\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb2\x25\x0a\x15\x11\x12\x39\xb0\x25\x2f\
\xb4\x2f\x25\x3f\x25\x02\x5d\xb4\xbf\x25\xcf\x25\x02\x5d\xb4\x9f\
\x25\xaf\x25\x02\x71\xb4\x6f\x25\x7f\x25\x02\x72\xb2\x06\x25\x0a\
\x11\x12\x39\xb1\x22\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\
\x10\x22\x25\x11\x12\x39\xb2\x19\x15\x0a\x11\x12\x39\xb0\x15\x10\
\xb1\x1c\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x34\
\x26\x23\x22\x06\x15\x23\x34\x36\x33\x32\x16\x15\x14\x06\x07\x16\
\x15\x14\x06\x23\x22\x26\x35\x33\x14\x16\x33\x32\x36\x35\x34\x26\
\x23\x23\x35\x33\x36\x02\xdf\x74\x65\x62\x83\xb8\xec\xb1\xbe\xd4\
\x58\x51\xbd\xe6\xc0\xbb\xf3\xb8\x8d\x69\x6a\x82\x6d\x73\xb9\xc9\
\xbd\x03\x12\x4c\x59\x66\x45\x8d\xb4\xa3\x97\x49\x7a\x24\x40\xbc\
\x95\xae\xb7\x9c\x4f\x71\x62\x4e\x5b\x4f\x9c\x05\x00\x00\x01\x00\
\x9c\x00\x00\x04\x01\x04\x3a\x00\x09\x00\x45\x00\xb0\x00\x45\x58\
\xb0\x00\x2f\x1b\xb1\x00\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x07\x2f\
\x1b\xb1\x07\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\
\x12\x3e\x59\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x12\x3e\x59\
\xb2\x04\x07\x02\x11\x12\x39\xb2\x09\x07\x02\x11\x12\x39\x30\x31\
\x01\x33\x11\x23\x11\x01\x23\x11\x33\x11\x03\x48\xb9\xb9\xfe\x0d\
\xb9\xb9\x04\x3a\xfb\xc6\x03\x15\xfc\xeb\x04\x3a\xfc\xea\x00\x00\
\x01\x00\x9c\x00\x00\x04\x3f\x04\x3a\x00\x0c\x00\x78\x00\xb0\x00\
\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\x59\xb0\x00\x45\x58\xb0\
\x08\x2f\x1b\xb1\x08\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\
\xb1\x02\x12\x3e\x59\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x12\
\x3e\x59\xb0\x02\x10\xb0\x06\xd0\xb0\x06\x2f\xb2\x9f\x06\x01\x5d\
\xb2\xff\x06\x01\x5d\xb2\xcf\x06\x01\x71\xb2\x9f\x06\x01\x71\xb4\
\xbf\x06\xcf\x06\x02\x5d\xb2\x2f\x06\x01\x5d\xb2\x6f\x06\x01\x72\
\xb1\x01\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x0a\x01\x06\
\x11\x12\x39\x30\x31\x01\x23\x11\x23\x11\x33\x11\x33\x01\x33\x01\
\x01\x23\x01\xdd\x87\xba\xba\x79\x01\x6c\xe0\xfe\x54\x01\xd0\xeb\
\x01\xcd\xfe\x33\x04\x3a\xfe\x36\x01\xca\xfd\xf8\xfd\xce\x00\x00\
\x01\x00\x2c\x00\x00\x04\x03\x04\x3a\x00\x0f\x00\x4f\xb2\x04\x10\
\x11\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1a\
\x3e\x59\xb0\x00\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x12\x3e\x59\xb0\
\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x12\x3e\x59\xb0\x00\x10\xb1\
\x03\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x08\x10\xb1\x0a\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x11\x23\x11\
\x21\x03\x02\x06\x07\x23\x35\x37\x36\x36\x37\x13\x04\x03\xba\xfe\
\x90\x16\x12\x97\xa4\x4a\x35\x5a\x4e\x0b\x14\x04\x3a\xfb\xc6\x03\
\xa1\xfe\x6b\xfe\xe9\xf0\x05\xa3\x04\x0a\xbc\xfe\x01\xcf\x00\x00\
\x01\x00\x9d\x00\x00\x05\x52\x04\x3a\x00\x0c\x00\x59\x00\xb0\x00\
\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x1a\x3e\x59\xb0\x00\x45\x58\xb0\
\x0b\x2f\x1b\xb1\x0b\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x03\x2f\x1b\
\xb1\x03\x12\x3e\x59\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x12\
\x3e\x59\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\x09\x12\x3e\x59\xb2\
\x00\x0b\x03\x11\x12\x39\xb2\x05\x0b\x03\x11\x12\x39\xb2\x08\x0b\
\x03\x11\x12\x39\x30\x31\x25\x01\x33\x11\x23\x11\x01\x23\x01\x11\
\x23\x11\x33\x02\xfb\x01\x70\xe7\xb9\xfe\xa2\x80\xfe\x9b\xb9\xf0\
\xf5\x03\x45\xfb\xc6\x03\x13\xfc\xed\x03\x24\xfc\xdc\x04\x3a\x00\
\x01\x00\x9c\x00\x00\x04\x00\x04\x3a\x00\x0b\x00\x8b\x00\xb0\x00\
\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1a\x3e\x59\xb0\x00\x45\x58\xb0\
\x0a\x2f\x1b\xb1\x0a\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\
\xb1\x00\x12\x3e\x59\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x12\
\x3e\x59\xb0\x00\x10\xb0\x09\xd0\xb0\x09\x2f\xb2\x6f\x09\x01\x5d\
\xb4\xbf\x09\xcf\x09\x02\x5d\xb2\x3f\x09\x01\x71\xb4\xcf\x09\xdf\
\x09\x02\x71\xb2\x0f\x09\x01\x72\xb4\x9f\x09\xaf\x09\x02\x71\xb2\
\xff\x09\x01\x5d\xb2\x0f\x09\x01\x71\xb2\x9f\x09\x01\x5d\xb2\x2f\
\x09\x01\x5d\xb4\x6f\x09\x7f\x09\x02\x72\xb1\x02\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\x30\x31\x21\x23\x11\x21\x11\x23\x11\x33\
\x11\x21\x11\x33\x04\x00\xb9\xfe\x0f\xba\xba\x01\xf1\xb9\x01\xce\
\xfe\x32\x04\x3a\xfe\x2b\x01\xd5\x00\x00\x01\x00\x9c\x00\x00\x04\
\x01\x04\x3a\x00\x07\x00\x39\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\
\xb1\x06\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\
\x3e\x59\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\x59\xb0\
\x06\x10\xb1\x02\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\
\x21\x23\x11\x21\x11\x23\x11\x21\x04\x01\xb9\xfe\x0e\xba\x03\x65\
\x03\xa1\xfc\x5f\x04\x3a\x00\x00\x01\x00\x28\x00\x00\x03\xb0\x04\
\x3a\x00\x07\x00\x32\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\
\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\
\xb0\x06\x10\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x04\xd0\xb0\x05\xd0\x30\x31\x01\x21\x11\x23\x11\x21\x35\x21\x03\
\xb0\xfe\x95\xb9\xfe\x9c\x03\x88\x03\xa4\xfc\x5c\x03\xa4\x96\x00\
\x03\x00\x64\xfe\x60\x05\x69\x06\x00\x00\x1a\x00\x25\x00\x30\x00\
\x81\xb2\x07\x31\x32\x11\x12\x39\xb0\x07\x10\xb0\x20\xd0\xb0\x07\
\x10\xb0\x2b\xd0\x00\xb0\x06\x2f\xb0\x00\x45\x58\xb0\x03\x2f\x1b\
\xb1\x03\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1a\
\x3e\x59\xb0\x00\x45\x58\xb0\x13\x2f\x1b\xb1\x13\x14\x3e\x59\xb0\
\x00\x45\x58\xb0\x10\x2f\x1b\xb1\x10\x12\x3e\x59\xb0\x00\x45\x58\
\xb0\x17\x2f\x1b\xb1\x17\x12\x3e\x59\xb0\x0a\x10\xb1\x1e\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x10\x10\xb1\x23\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x29\xd0\xb0\x1e\x10\xb0\x2e\xd0\
\x30\x31\x13\x10\x12\x33\x32\x17\x11\x33\x11\x36\x33\x32\x12\x11\
\x14\x02\x23\x22\x27\x11\x23\x11\x06\x23\x22\x02\x35\x25\x34\x26\
\x23\x22\x07\x11\x16\x33\x32\x36\x25\x14\x16\x33\x32\x37\x11\x26\
\x23\x22\x06\x64\xd2\xb7\x55\x40\xb9\x46\x5e\xb8\xd2\xd1\xb7\x61\
\x45\xb9\x42\x55\xb6\xd1\x04\x4c\x8c\x7b\x3f\x2f\x2d\x43\x7c\x89\
\xfc\x6d\x82\x7a\x3a\x2f\x2a\x3d\x7a\x84\x02\x09\x01\x0f\x01\x36\
\x1d\x01\xcf\xfe\x2b\x23\xfe\xca\xfe\xdc\xef\xfe\xe6\x20\xfe\x55\
\x01\xa8\x1d\x01\x1a\xf5\x0f\xcc\xe1\x14\xfc\xf1\x11\xc0\xb2\xb6\
\xbc\x12\x03\x11\x11\xda\x00\x00\x01\x00\x9c\xfe\xbf\x04\x82\x04\
\x3a\x00\x0b\x00\x3c\x00\xb0\x08\x2f\xb0\x00\x45\x58\xb0\x00\x2f\
\x1b\xb1\x00\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\
\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x12\x3e\x59\
\xb1\x02\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x06\xd0\x30\
\x31\x13\x33\x11\x21\x11\x33\x11\x33\x03\x23\x11\x21\x9c\xba\x01\
\xf2\xb9\x81\x12\xa6\xfc\xd2\x04\x3a\xfc\x5d\x03\xa3\xfc\x5d\xfe\
\x28\x01\x41\x00\x01\x00\x67\x00\x00\x03\xbd\x04\x3b\x00\x10\x00\
\x47\xb2\x04\x11\x12\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x08\x2f\
\x1b\xb1\x08\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x0f\x2f\x1b\xb1\x0f\
\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\
\xb2\x0c\x0f\x00\x11\x12\x39\xb0\x0c\x2f\xb1\x04\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\x30\x31\x21\x23\x11\x06\x23\x22\x26\x27\
\x11\x33\x11\x16\x33\x32\x37\x11\x33\x03\xbd\xba\x7a\x80\xcb\xd5\
\x02\xb9\x05\xe4\x80\x7a\xba\x01\x88\x20\xd0\xc0\x01\x43\xfe\xb7\
\xf2\x20\x02\x1a\x00\x00\x01\x00\x9c\x00\x00\x05\xe0\x04\x3a\x00\
\x0b\x00\x49\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1a\x3e\
\x59\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1a\x3e\x59\xb0\x00\
\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x1a\x3e\x59\xb0\x00\x45\x58\xb0\
\x09\x2f\x1b\xb1\x09\x12\x3e\x59\xb1\x01\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb0\x05\xd0\xb0\x06\xd0\x30\x31\x01\x11\x21\x11\
\x33\x11\x21\x11\x33\x11\x21\x11\x01\x56\x01\x8c\xb9\x01\x8b\xba\
\xfa\xbc\x04\x3a\xfc\x5d\x03\xa3\xfc\x5d\x03\xa3\xfb\xc6\x04\x3a\
\x00\x00\x01\x00\x91\xfe\xbf\x06\x6d\x04\x3a\x00\x0f\x00\x4c\x00\
\xb0\x0c\x2f\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1a\x3e\x59\
\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1a\x3e\x59\xb0\x00\x45\
\x58\xb0\x07\x2f\x1b\xb1\x07\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x0d\
\x2f\x1b\xb1\x0d\x12\x3e\x59\xb1\x01\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x05\xd0\xb0\x09\xd0\x30\x31\x01\x11\x21\x11\x33\
\x11\x21\x11\x33\x11\x33\x03\x23\x11\x21\x11\x01\x4b\x01\x8c\xb9\
\x01\x8b\xba\x98\x12\xa6\xfa\xdc\x04\x3a\xfc\x5d\x03\xa3\xfc\x5d\
\x03\xa3\xfc\x5d\xfe\x28\x01\x41\x04\x3a\x00\x00\x02\x00\x1e\x00\
\x00\x04\xbf\x04\x3a\x00\x0c\x00\x15\x00\x61\xb2\x01\x16\x17\x11\
\x12\x39\xb0\x01\x10\xb0\x0d\xd0\x00\xb0\x00\x45\x58\xb0\x00\x2f\
\x1b\xb1\x00\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\x09\
\x12\x3e\x59\xb2\x02\x00\x09\x11\x12\x39\xb0\x02\x2f\xb0\x00\x10\
\xb1\x0b\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x02\x10\xb1\
\x0d\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x09\x10\xb1\x0e\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x13\x21\x11\x21\
\x16\x16\x15\x14\x06\x23\x21\x11\x21\x01\x11\x21\x32\x36\x35\x34\
\x26\x27\x1e\x01\xfa\x01\x19\xb8\xd6\xdc\xba\xfe\x36\xfe\xbf\x01\
\xfa\x01\x13\x68\x72\x6f\x64\x04\x3a\xfe\x8b\x02\xbc\xa1\xa2\xc4\
\x03\xa2\xfe\x8c\xfe\x69\x6b\x5d\x5a\x73\x02\x00\x03\x00\x9d\x00\
\x00\x05\x7f\x04\x3a\x00\x0a\x00\x0e\x00\x17\x00\x6f\xb2\x06\x18\
\x19\x11\x12\x39\xb0\x06\x10\xb0\x0c\xd0\xb0\x06\x10\xb0\x13\xd0\
\x00\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\x09\x1a\x3e\x59\xb0\x00\
\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x1a\x3e\x59\xb0\x00\x45\x58\xb0\
\x07\x2f\x1b\xb1\x07\x12\x3e\x59\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\
\xb1\x0b\x12\x3e\x59\xb2\x00\x0d\x07\x11\x12\x39\xb0\x00\x2f\xb1\
\x0f\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x07\x10\xb1\x10\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x21\x16\x16\
\x15\x14\x06\x23\x21\x11\x33\x01\x23\x11\x33\x01\x11\x21\x32\x36\
\x35\x34\x26\x27\x01\x56\x01\x19\xb8\xd6\xdc\xba\xfe\x36\xb9\x04\
\x29\xba\xba\xfb\xd7\x01\x13\x68\x72\x6f\x64\x02\xc5\x02\xbc\xa1\
\xa2\xc4\x04\x3a\xfb\xc6\x04\x3a\xfd\xf4\xfe\x69\x6b\x5d\x5a\x73\
\x02\x00\x02\x00\x9d\x00\x00\x03\xfd\x04\x3a\x00\x0a\x00\x13\x00\
\x4f\xb2\x07\x14\x15\x11\x12\x39\xb0\x07\x10\xb0\x0d\xd0\x00\xb0\
\x00\x45\x58\xb0\x09\x2f\x1b\xb1\x09\x1a\x3e\x59\xb0\x00\x45\x58\
\xb0\x07\x2f\x1b\xb1\x07\x12\x3e\x59\xb2\x00\x09\x07\x11\x12\x39\
\xb0\x00\x2f\xb1\x0b\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x07\x10\xb1\x0c\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\
\x01\x21\x16\x16\x15\x14\x06\x23\x21\x11\x33\x11\x11\x21\x32\x36\
\x35\x34\x26\x27\x01\x56\x01\x19\xb8\xd6\xdc\xba\xfe\x36\xb9\x01\
\x13\x68\x72\x6f\x64\x02\xc5\x02\xbc\xa1\xa2\xc4\x04\x3a\xfd\xf4\
\xfe\x69\x6b\x5d\x5a\x73\x02\x00\x01\x00\x64\xff\xec\x03\xe0\x04\
\x4e\x00\x1f\x00\x85\xb2\x00\x20\x21\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x08\x2f\x1b\xb1\x08\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x10\
\x2f\x1b\xb1\x10\x12\x3e\x59\xb0\x08\x10\xb1\x00\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb2\x1d\x08\x10\x11\x12\x39\xb0\x1d\x2f\
\xb4\x2f\x1d\x3f\x1d\x02\x5d\xb4\xbf\x1d\xcf\x1d\x02\x5d\xb4\x9f\
\x1d\xaf\x1d\x02\x71\xb4\x6f\x1d\x7f\x1d\x02\x72\xb2\x03\x08\x1d\
\x11\x12\x39\xb2\x14\x10\x08\x11\x12\x39\xb0\x10\x10\xb1\x17\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x1d\x10\xb1\x1a\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x22\x06\x15\x23\x34\
\x36\x36\x33\x32\x00\x15\x15\x14\x06\x06\x23\x22\x26\x35\x33\x14\
\x16\x33\x32\x36\x37\x21\x35\x21\x26\x26\x02\x08\x63\x91\xb0\x76\
\xc4\x6a\xd3\x01\x05\x77\xd7\x8a\xb4\xf0\xb0\x8e\x66\x77\x9a\x0c\
\xfe\x6a\x01\x94\x0e\x96\x03\xb6\x7e\x56\x5d\xaa\x65\xfe\xcf\xf6\
\x1f\x98\xfb\x89\xe0\xa7\x66\x8b\xb8\xa1\x98\x92\xb1\x00\x02\x00\
\x9d\xff\xec\x06\x30\x04\x4e\x00\x14\x00\x1f\x00\xa0\xb2\x0d\x20\
\x21\x11\x12\x39\xb0\x0d\x10\xb0\x15\xd0\x00\xb0\x00\x45\x58\xb0\
\x14\x2f\x1b\xb1\x14\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x04\x2f\x1b\
\xb1\x04\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x11\x2f\x1b\xb1\x11\x12\
\x3e\x59\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x12\x3e\x59\xb2\
\x00\x11\x14\x11\x12\x39\xb0\x00\x2f\xb4\xbf\x00\xcf\x00\x02\x5d\
\xb4\x9f\x00\xaf\x00\x02\x71\xb2\xff\x00\x01\x5d\xb2\x0f\x00\x01\
\x71\xb4\x2f\x00\x3f\x00\x02\x5d\xb6\x5f\x00\x6f\x00\x7f\x00\x03\
\x72\xb1\x10\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0c\x10\
\xb1\x18\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\x10\xb1\
\x1d\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x21\x36\
\x00\x33\x32\x00\x17\x17\x14\x06\x06\x23\x22\x00\x27\x21\x11\x23\
\x11\x33\x01\x14\x16\x20\x36\x35\x34\x26\x23\x22\x06\x01\x56\x01\
\x04\x15\x01\x09\xca\xd4\x01\x0e\x0b\x01\x7c\xe0\x90\xd1\xfe\xf6\
\x10\xfe\xfd\xb9\xb9\x01\xba\xa7\x01\x1a\xa5\xa8\x8c\x8a\xa8\x02\
\x6f\xd8\x01\x07\xfe\xe2\xe5\x3a\x9e\xfe\x89\x01\x11\xda\xfe\x29\
\x04\x3a\xfd\xd7\xb4\xda\xde\xc6\xb1\xde\xda\x00\x02\x00\x2f\x00\
\x00\x03\xc7\x04\x3a\x00\x0d\x00\x16\x00\x63\xb2\x14\x17\x18\x11\
\x12\x39\xb0\x14\x10\xb0\x0d\xd0\x00\xb0\x00\x45\x58\xb0\x00\x2f\
\x1b\xb1\x00\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x01\x2f\x1b\xb1\x01\
\x12\x3e\x59\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x12\x3e\x59\
\xb2\x12\x00\x01\x11\x12\x39\xb0\x12\x2f\xb1\x03\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb2\x07\x03\x00\x11\x12\x39\xb0\x00\x10\
\xb1\x13\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x11\
\x23\x11\x21\x03\x23\x01\x26\x26\x35\x34\x36\x37\x03\x14\x16\x17\
\x21\x11\x21\x22\x06\x03\xc7\xba\xfe\xe9\xff\xc8\x01\x10\x68\x6f\
\xde\xba\xde\x6c\x59\x01\x26\xfe\xf6\x67\x7a\x04\x3a\xfb\xc6\x01\
\xa5\xfe\x5b\x01\xc1\x26\x9f\x6a\x94\xb5\x01\xfe\xb4\x4f\x61\x01\
\x01\x67\x65\x00\x01\xff\xe8\xfe\x4b\x03\xdf\x06\x00\x00\x22\x00\
\x87\xb2\x0d\x23\x24\x11\x12\x39\x00\xb0\x1f\x2f\xb0\x00\x45\x58\
\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x19\x2f\
\x1b\xb1\x19\x12\x3e\x59\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\
\x14\x3e\x59\xb2\xbf\x1f\x01\x5d\xb2\x2f\x1f\x01\x5d\xb2\x0f\x1f\
\x01\x5d\xb2\x1e\x19\x1f\x11\x12\x39\xb0\x1e\x2f\xb0\x21\xd0\xb1\
\x01\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x02\x19\x04\x11\
\x12\x39\xb0\x0a\x10\xb1\x0f\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x04\x10\xb1\x15\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb0\x01\x10\xb0\x1b\xd0\x30\x31\x01\x21\x11\x36\x33\x20\x13\x11\
\x14\x06\x23\x22\x27\x37\x16\x32\x36\x35\x11\x34\x26\x23\x22\x06\
\x07\x11\x23\x11\x23\x35\x33\x35\x33\x15\x21\x02\x63\xfe\xe2\x7b\
\xc5\x01\x57\x03\xaa\x98\x3d\x36\x0f\x23\x82\x48\x69\x70\x5a\x88\
\x26\xb9\xa4\xa4\xb9\x01\x1e\x04\xb9\xfe\xfe\x97\xfe\x7d\xfc\xdc\
\xaa\xb2\x12\x93\x0d\x68\x5c\x03\x20\x78\x72\x60\x4e\xfc\xfd\x04\
\xb9\x98\xaf\xaf\x00\x00\x01\x00\x67\xff\xec\x03\xf7\x04\x4e\x00\
\x1f\x00\x9f\xb2\x00\x20\x21\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\
\x10\x2f\x1b\xb1\x10\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x08\x2f\x1b\
\xb1\x08\x12\x3e\x59\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb2\x03\x08\x10\x11\x12\x39\xb2\x1b\x10\x08\x11\x12\x39\xb0\
\x1b\x2f\xb4\x0f\x1b\x1f\x1b\x02\x72\xb4\xbf\x1b\xcf\x1b\x02\x5d\
\xb4\x9f\x1b\xaf\x1b\x02\x71\xb4\xcf\x1b\xdf\x1b\x02\x71\xb2\xff\
\x1b\x01\x5d\xb2\x0f\x1b\x01\x71\xb4\x2f\x1b\x3f\x1b\x02\x5d\xb4\
\x6f\x1b\x7f\x1b\x02\x72\xb2\xbf\x1b\x01\x72\xb2\x14\x10\x1b\x11\
\x12\x39\xb0\x10\x10\xb1\x17\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x1b\x10\xb1\x1c\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\x30\x31\x25\x32\x36\x37\x33\x0e\x02\x23\x22\x00\x11\x35\x34\x36\
\x36\x33\x32\x16\x17\x23\x26\x26\x23\x22\x06\x07\x21\x15\x21\x16\
\x16\x02\x48\x63\x94\x08\xb0\x05\x78\xc4\x6e\xde\xfe\xfd\x75\xd8\
\x94\xb6\xf1\x08\xb0\x08\x8f\x68\x82\x9a\x0a\x01\x94\xfe\x6c\x0a\
\x99\x83\x78\x5a\x5e\xa8\x63\x01\x28\x01\x00\x1e\x9f\xf7\x86\xda\
\xae\x69\x87\xb1\x9d\x98\xa0\xad\x00\x00\x02\x00\x27\x00\x00\x06\
\x86\x04\x3a\x00\x16\x00\x1f\x00\x7d\xb2\x09\x20\x21\x11\x12\x39\
\xb0\x09\x10\xb0\x17\xd0\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\
\x00\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x12\x3e\
\x59\xb0\x00\x45\x58\xb0\x0f\x2f\x1b\xb1\x0f\x12\x3e\x59\xb2\x01\
\x00\x08\x11\x12\x39\xb0\x01\x2f\xb0\x00\x10\xb1\x0a\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0f\x10\xb1\x11\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x01\x10\xb1\x17\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x08\x10\xb1\x18\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\x30\x31\x01\x11\x21\x16\x16\x15\x14\x06\x07\x21\
\x11\x21\x03\x02\x06\x07\x23\x35\x37\x36\x36\x37\x13\x01\x11\x21\
\x32\x36\x35\x34\x26\x27\x03\xdf\x01\x1e\xb6\xd3\xd3\xb7\xfe\x29\
\xfe\xaf\x17\x14\x9c\xa5\x41\x36\x55\x4d\x0d\x17\x02\xbc\x01\x13\
\x65\x75\x72\x63\x04\x3a\xfe\x64\x03\xb5\x94\x93\xbc\x03\x03\xa1\
\xfe\x5a\xfe\xeb\xe4\x02\xa3\x04\x0a\xa7\xd3\x02\x0f\xfd\xcc\xfe\
\x8f\x69\x56\x51\x60\x01\x00\x00\x02\x00\x9c\x00\x00\x06\xa7\x04\
\x3a\x00\x12\x00\x1b\x00\x7e\xb2\x01\x1c\x1d\x11\x12\x39\xb0\x01\
\x10\xb0\x13\xd0\x00\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1a\
\x3e\x59\xb0\x00\x45\x58\xb0\x11\x2f\x1b\xb1\x11\x1a\x3e\x59\xb0\
\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x12\x3e\x59\xb0\x00\x45\x58\
\xb0\x0f\x2f\x1b\xb1\x0f\x12\x3e\x59\xb2\x01\x11\x0b\x11\x12\x39\
\xb0\x01\x2f\xb0\x04\xd0\xb0\x01\x10\xb1\x0d\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x04\x10\xb1\x13\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb0\x0b\x10\xb1\x14\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\x30\x31\x01\x21\x11\x33\x11\x21\x16\x16\x15\x14\x06\
\x23\x21\x11\x21\x11\x23\x11\x33\x01\x11\x21\x32\x36\x35\x34\x26\
\x27\x01\x56\x01\xf1\xb9\x01\x22\xb4\xd1\xd9\xbd\xfe\x36\xfe\x0f\
\xba\xba\x02\xaa\x01\x13\x65\x75\x72\x63\x02\xa1\x01\x99\xfe\x63\
\x04\xb1\x96\x97\xbb\x02\x0a\xfd\xf6\x04\x3a\xfd\xcc\xfe\x8f\x69\
\x56\x51\x60\x01\x00\x00\x01\xff\xfd\x00\x00\x03\xdf\x06\x00\x00\
\x19\x00\x7b\xb2\x0c\x1a\x1b\x11\x12\x39\x00\xb0\x16\x2f\xb0\x00\
\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\x59\xb0\x00\x45\x58\xb0\
\x07\x2f\x1b\xb1\x07\x12\x3e\x59\xb0\x00\x45\x58\xb0\x10\x2f\x1b\
\xb1\x10\x12\x3e\x59\xb2\xbf\x16\x01\x5d\xb2\x2f\x16\x01\x5d\xb2\
\x0f\x16\x01\x5d\xb2\x19\x10\x16\x11\x12\x39\xb0\x19\x2f\xb1\x00\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x02\x04\x07\x11\x12\
\x39\xb0\x04\x10\xb1\x0c\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb0\x00\x10\xb0\x12\xd0\xb0\x19\x10\xb0\x14\xd0\x30\x31\x01\x21\
\x11\x36\x33\x20\x13\x11\x23\x11\x26\x26\x23\x22\x06\x07\x11\x23\
\x11\x23\x35\x33\x35\x33\x15\x21\x02\x79\xfe\xcc\x7b\xc5\x01\x57\
\x03\xb9\x01\x69\x6f\x5a\x88\x26\xb9\x8f\x8f\xb9\x01\x34\x04\xbe\
\xfe\xf9\x97\xfe\x7d\xfd\x35\x02\xcc\x75\x70\x60\x4e\xfc\xfd\x04\
\xbe\x97\xab\xab\x00\x00\x01\x00\x9c\xfe\x9c\x04\x01\x04\x3a\x00\
\x0b\x00\x46\x00\xb0\x08\x2f\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\
\x00\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1a\x3e\
\x59\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x12\x3e\x59\xb0\x00\
\x45\x58\xb0\x09\x2f\x1b\xb1\x09\x12\x3e\x59\xb1\x01\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x11\x21\x11\x33\x11\x21\
\x11\x23\x11\x21\x11\x01\x56\x01\xf2\xb9\xfe\xad\xb9\xfe\xa7\x04\
\x3a\xfc\x5d\x03\xa3\xfb\xc6\xfe\x9c\x01\x64\x04\x3a\x00\x01\x00\
\x9c\xff\xec\x06\x75\x05\xb0\x00\x20\x00\x61\xb2\x07\x21\x22\x11\
\x12\x39\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1e\x3e\x59\
\xb0\x00\x45\x58\xb0\x0e\x2f\x1b\xb1\x0e\x1e\x3e\x59\xb0\x00\x45\
\x58\xb0\x17\x2f\x1b\xb1\x17\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x04\
\x2f\x1b\xb1\x04\x12\x3e\x59\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\
\x0a\x12\x3e\x59\xb2\x07\x00\x04\x11\x12\x39\xb1\x13\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x1c\xd0\x30\x31\x01\x11\x14\x06\
\x23\x22\x26\x27\x06\x06\x23\x22\x26\x27\x11\x33\x11\x14\x16\x33\
\x32\x36\x35\x11\x33\x11\x14\x16\x33\x32\x36\x35\x11\x06\x75\xe1\
\xc3\x6d\xab\x31\x34\xb2\x71\xbd\xd7\x01\xc1\x72\x62\x72\x82\xc7\
\x7c\x69\x6a\x7a\x05\xb0\xfb\xde\xc6\xdc\x57\x59\x59\x57\xdb\xc3\
\x04\x26\xfb\xdd\x7b\x8a\x89\x7c\x04\x23\xfb\xdd\x7d\x88\x89\x7d\
\x04\x22\x00\x00\x01\x00\x81\xff\xeb\x05\xad\x04\x3a\x00\x1e\x00\
\x61\xb2\x06\x1f\x20\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x00\x2f\
\x1b\xb1\x00\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\
\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x15\x2f\x1b\xb1\x15\x1a\x3e\x59\
\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\x59\xb0\x00\x45\
\x58\xb0\x08\x2f\x1b\xb1\x08\x12\x3e\x59\xb2\x06\x15\x04\x11\x12\
\x39\xb1\x11\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x1a\xd0\
\x30\x31\x01\x11\x14\x06\x23\x22\x27\x06\x23\x22\x26\x27\x11\x33\
\x11\x16\x16\x33\x32\x36\x35\x11\x33\x11\x14\x16\x33\x32\x36\x37\
\x11\x05\xad\xca\xae\xc6\x59\x5f\xce\xa7\xc0\x01\xb9\x01\x5b\x53\
\x62\x6f\xba\x65\x5c\x59\x65\x01\x04\x3a\xfd\x27\xb0\xc6\x94\x94\
\xc3\xb0\x02\xdc\xfd\x23\x66\x75\x78\x67\x02\xd9\xfd\x27\x67\x78\
\x75\x66\x02\xdd\x00\x00\x02\xff\xdc\x00\x00\x03\xfc\x06\x16\x00\
\x11\x00\x1a\x00\x74\xb2\x14\x1b\x1c\x11\x12\x39\xb0\x14\x10\xb0\
\x03\xd0\x00\xb0\x00\x45\x58\xb0\x0e\x2f\x1b\xb1\x0e\x20\x3e\x59\
\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x12\x3e\x59\xb2\x11\x0e\
\x08\x11\x12\x39\xb0\x11\x2f\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb2\x02\x0e\x08\x11\x12\x39\xb0\x02\x2f\xb0\x00\x10\
\xb0\x0a\xd0\xb0\x11\x10\xb0\x0c\xd0\xb0\x02\x10\xb1\x12\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x08\x10\xb1\x13\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x21\x11\x21\x16\x16\x10\
\x06\x07\x21\x11\x23\x35\x33\x11\x33\x11\x21\x01\x11\x21\x32\x36\
\x35\x34\x26\x27\x02\x96\xfe\xbf\x01\x18\xbb\xd4\xd4\xb7\xfe\x2a\
\xbf\xbf\xba\x01\x41\xfe\xbf\x01\x12\x69\x71\x6f\x64\x04\x3a\xfe\
\xb0\x02\xca\xfe\xb6\xd1\x03\x04\x3a\x97\x01\x45\xfe\xbb\xfd\x81\
\xfe\x45\x77\x64\x61\x7d\x02\x00\x01\x00\xb7\xff\xed\x06\xa0\x05\
\xc5\x00\x26\x00\x8a\xb2\x1e\x27\x28\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x05\x2f\x1b\xb1\x05\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x26\
\x2f\x1b\xb1\x26\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x1d\x2f\x1b\xb1\
\x1d\x12\x3e\x59\xb0\x00\x45\x58\xb0\x23\x2f\x1b\xb1\x23\x12\x3e\
\x59\xb2\x10\x05\x1d\x11\x12\x39\xb0\x10\x2f\xb0\x00\xd0\xb0\x05\
\x10\xb0\x09\xd0\xb0\x05\x10\xb1\x0c\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x10\x10\xb1\x11\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb0\x1d\x10\xb1\x16\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x1d\x10\xb0\x19\xd0\xb0\x11\x10\xb0\x21\xd0\x30\x31\x01\
\x33\x36\x12\x24\x33\x32\x00\x17\x23\x26\x26\x23\x22\x02\x07\x21\
\x15\x21\x15\x14\x12\x33\x32\x36\x37\x33\x06\x04\x23\x20\x00\x11\
\x35\x23\x11\x23\x11\x33\x01\x78\xc7\x05\x93\x01\x06\xac\xe6\x01\
\x19\x18\xc0\x19\xa7\x97\xb4\xcf\x06\x02\x1e\xfd\xe2\xc6\xb2\xa3\
\xa9\x1c\xc0\x1b\xfe\xe1\xee\xfe\xfe\xfe\xc9\xc7\xc1\xc1\x03\x40\
\xc1\x01\x26\x9e\xff\x00\xe8\xac\x9e\xfe\xfb\xe2\x97\x1a\xed\xfe\
\xe8\x93\xb2\xe7\xfb\x01\x72\x01\x36\x14\xfd\x57\x05\xb0\x00\x00\
\x01\x00\x99\xff\xec\x05\xa1\x04\x4e\x00\x24\x00\xc7\xb2\x03\x25\
\x26\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1a\
\x3e\x59\xb0\x00\x45\x58\xb0\x24\x2f\x1b\xb1\x24\x1a\x3e\x59\xb0\
\x00\x45\x58\xb0\x21\x2f\x1b\xb1\x21\x12\x3e\x59\xb0\x00\x45\x58\
\xb0\x1c\x2f\x1b\xb1\x1c\x12\x3e\x59\xb2\x0f\x1c\x04\x11\x12\x39\
\xb0\x0f\x2f\xb4\xbf\x0f\xcf\x0f\x02\x5d\xb4\x3f\x0f\x4f\x0f\x02\
\x71\xb4\xcf\x0f\xdf\x0f\x02\x71\xb4\x0f\x0f\x1f\x0f\x02\x72\xb4\
\x9f\x0f\xaf\x0f\x02\x71\xb2\xff\x0f\x01\x5d\xb2\x0f\x0f\x01\x71\
\xb4\x2f\x0f\x3f\x0f\x02\x5d\xb4\x6f\x0f\x7f\x0f\x02\x72\xb0\x00\
\xd0\xb2\x08\x0f\x04\x11\x12\x39\xb0\x04\x10\xb1\x0b\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0f\x10\xb1\x10\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x1c\x10\xb1\x14\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb2\x17\x1c\x04\x11\x12\x39\xb0\x10\x10\xb0\
\x1f\xd0\x30\x31\x01\x33\x36\x12\x33\x32\x16\x17\x23\x26\x26\x23\
\x22\x06\x07\x21\x15\x21\x16\x16\x33\x32\x36\x37\x33\x0e\x02\x23\
\x22\x02\x27\x23\x11\x23\x11\x33\x01\x53\xbf\x10\xff\xd1\xb6\xf1\
\x08\xb0\x08\x8f\x68\x84\x98\x0a\x01\xb5\xfe\x4b\x0a\x99\x83\x63\
\x94\x08\xb0\x05\x78\xc4\x6e\xd1\xfe\x10\xc0\xba\xba\x02\x67\xdf\
\x01\x08\xda\xae\x69\x87\xb1\x9e\x97\xa0\xad\x78\x5a\x5e\xa8\x63\
\x01\x06\xde\xfe\x30\x04\x3a\x00\x02\x00\x28\x00\x00\x04\xe4\x05\
\xb0\x00\x0b\x00\x0e\x00\x57\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\
\xb1\x08\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x12\
\x3e\x59\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x12\x3e\x59\xb0\
\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x12\x3e\x59\xb2\x0d\x08\x02\
\x11\x12\x39\xb0\x0d\x2f\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb0\x04\xd0\xb2\x0e\x08\x02\x11\x12\x39\x30\x31\x01\x23\
\x11\x23\x11\x23\x03\x23\x01\x33\x01\x23\x01\x21\x03\x03\x89\xaa\
\xbc\x9e\x98\xc5\x02\x0d\xab\x02\x04\xc5\xfd\x9f\x01\x93\xc7\x01\
\xb6\xfe\x4a\x01\xb6\xfe\x4a\x05\xb0\xfa\x50\x02\x5a\x02\x49\x00\
\x02\x00\x0f\x00\x00\x04\x25\x04\x3a\x00\x0b\x00\x10\x00\x57\x00\
\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1a\x3e\x59\xb0\x00\x45\
\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb0\x00\x45\x58\xb0\x06\
\x2f\x1b\xb1\x06\x12\x3e\x59\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\
\x0a\x12\x3e\x59\xb2\x0d\x02\x08\x11\x12\x39\xb0\x0d\x2f\xb1\x01\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\xd0\xb2\x0f\x08\
\x02\x11\x12\x39\x30\x31\x01\x23\x11\x23\x11\x23\x03\x23\x01\x33\
\x01\x23\x01\x21\x03\x27\x07\x02\xed\x75\xb9\x7c\x77\xbd\x01\xba\
\x9f\x01\xbd\xbe\xfe\x19\x01\x2f\x80\x18\x18\x01\x29\xfe\xd7\x01\
\x29\xfe\xd7\x04\x3a\xfb\xc6\x01\xc1\x01\x3b\x59\x59\x00\x02\x00\
\xc9\x00\x00\x06\xf5\x05\xb0\x00\x13\x00\x16\x00\x7d\x00\xb0\x00\
\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1e\x3e\x59\xb0\x00\x45\x58\xb0\
\x12\x2f\x1b\xb1\x12\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x04\x2f\x1b\
\xb1\x04\x12\x3e\x59\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x12\
\x3e\x59\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x12\x3e\x59\xb0\
\x00\x45\x58\xb0\x10\x2f\x1b\xb1\x10\x12\x3e\x59\xb2\x15\x02\x04\
\x11\x12\x39\xb0\x15\x2f\xb0\x00\xd0\xb0\x15\x10\xb1\x06\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0a\xd0\xb0\x06\x10\xb0\x0e\
\xd0\xb2\x16\x02\x04\x11\x12\x39\x30\x31\x01\x21\x01\x33\x01\x23\
\x03\x23\x11\x23\x11\x23\x03\x23\x13\x21\x11\x23\x11\x33\x01\x21\
\x03\x01\x8a\x01\x87\x01\x35\xab\x02\x04\xc5\x96\xaa\xbc\x9e\x98\
\xc5\x9e\xfe\xb3\xc1\xc1\x02\x45\x01\x93\xc7\x02\x59\x03\x57\xfa\
\x50\x01\xb6\xfe\x4a\x01\xb6\xfe\x4a\x01\xb8\xfe\x48\x05\xb0\xfc\
\xaa\x02\x49\x00\x02\x00\xbc\x00\x00\x05\xe4\x04\x3a\x00\x13\x00\
\x18\x00\x80\x00\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1a\x3e\
\x59\xb0\x00\x45\x58\xb0\x12\x2f\x1b\xb1\x12\x1a\x3e\x59\xb0\x00\
\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\x59\xb0\x00\x45\x58\xb0\
\x08\x2f\x1b\xb1\x08\x12\x3e\x59\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\
\xb1\x0c\x12\x3e\x59\xb0\x00\x45\x58\xb0\x10\x2f\x1b\xb1\x10\x12\
\x3e\x59\xb2\x00\x10\x12\x11\x12\x39\xb0\x00\x2f\xb0\x01\xd0\xb1\
\x0e\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0b\xd0\xb0\x07\
\xd0\xb0\x01\x10\xb0\x14\xd0\xb0\x15\xd0\xb2\x17\x12\x04\x11\x12\
\x39\x30\x31\x01\x21\x01\x33\x01\x23\x03\x23\x11\x23\x11\x23\x03\
\x23\x13\x23\x11\x23\x11\x33\x01\x21\x03\x27\x07\x01\x76\x01\x0f\
\x01\x03\x9f\x01\xbd\xbe\x7a\x75\xb9\x7c\x77\xbd\x79\xd1\xba\xba\
\x01\xc9\x01\x2f\x80\x18\x18\x01\xc1\x02\x79\xfb\xc6\x01\x29\xfe\
\xd7\x01\x29\xfe\xd7\x01\x28\xfe\xd8\x04\x3a\xfd\x87\x01\x3b\x59\
\x59\x00\x02\x00\x93\x00\x00\x06\x3f\x05\xb0\x00\x1d\x00\x21\x00\
\x78\xb2\x1e\x22\x23\x11\x12\x39\xb0\x1e\x10\xb0\x0e\xd0\x00\xb0\
\x00\x45\x58\xb0\x1c\x2f\x1b\xb1\x1c\x1e\x3e\x59\xb0\x00\x45\x58\
\xb0\x05\x2f\x1b\xb1\x05\x12\x3e\x59\xb0\x00\x45\x58\xb0\x0d\x2f\
\x1b\xb1\x0d\x12\x3e\x59\xb0\x00\x45\x58\xb0\x15\x2f\x1b\xb1\x15\
\x12\x3e\x59\xb2\x01\x0d\x1c\x11\x12\x39\xb0\x01\x2f\xb1\x0a\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x10\xd0\xb0\x01\x10\xb0\
\x1a\xd0\xb0\x01\x10\xb0\x1e\xd0\xb0\x1c\x10\xb1\x20\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x33\x32\x16\x17\x11\x23\
\x11\x26\x26\x27\x23\x07\x11\x23\x11\x27\x23\x22\x06\x07\x11\x23\
\x11\x36\x36\x33\x33\x01\x21\x01\x33\x01\x21\x04\x41\x1b\xf4\xec\
\x03\xc1\x01\x7c\x9a\x85\x15\xc1\x0d\x88\x9e\x82\x04\xc0\x03\xec\
\xf3\x2a\xfe\x78\x04\xb2\xfd\x9f\x10\x01\x1a\xfd\xbb\x03\x2a\xd4\
\xd8\xfe\x82\x01\x78\x90\x82\x02\x23\xfd\x97\x02\x76\x16\x7b\x8d\
\xfe\x7c\x01\x7e\xd8\xd4\x02\x86\xfd\x7a\x01\xe8\x00\x00\x02\x00\
\x96\x00\x00\x05\x4b\x04\x3a\x00\x1b\x00\x1f\x00\x75\xb2\x1c\x20\
\x21\x11\x12\x39\xb0\x1c\x10\xb0\x14\xd0\x00\xb0\x00\x45\x58\xb0\
\x06\x2f\x1b\xb1\x06\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x1b\x2f\x1b\
\xb1\x1b\x12\x3e\x59\xb0\x00\x45\x58\xb0\x14\x2f\x1b\xb1\x14\x12\
\x3e\x59\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x12\x3e\x59\xb2\
\x1c\x14\x06\x11\x12\x39\xb0\x1c\x2f\xb0\x04\xd0\xb0\x1c\x10\xb0\
\x07\xd0\xb1\x10\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x17\
\xd0\xb0\x06\x10\xb1\x1e\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\x30\x31\x33\x35\x36\x36\x37\x01\x21\x01\x16\x16\x17\x15\x23\x35\
\x26\x26\x23\x23\x07\x11\x23\x11\x27\x23\x22\x06\x07\x15\x01\x33\
\x13\x21\x96\x04\xca\xd2\xfe\xe1\x03\xbf\xfe\xe0\xce\xc5\x02\xba\
\x02\x73\x8c\x35\x0b\xb9\x06\x3e\x8c\x75\x02\x01\xa2\x08\xb7\xfe\
\x8b\xb6\xcd\xd2\x06\x01\xdf\xfe\x21\x0b\xd3\xd0\xad\xb1\x92\x81\
\x13\xfe\x4f\x01\xbb\x09\x7e\x95\xb1\x02\x5c\x01\x46\x00\x02\x00\
\xb6\x00\x00\x08\x72\x05\xb0\x00\x22\x00\x26\x00\x95\xb2\x26\x27\
\x28\x11\x12\x39\xb0\x26\x10\xb0\x1e\xd0\x00\xb0\x00\x45\x58\xb0\
\x08\x2f\x1b\xb1\x08\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\
\xb1\x0b\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x12\
\x3e\x59\xb0\x00\x45\x58\xb0\x22\x2f\x1b\xb1\x22\x12\x3e\x59\xb0\
\x00\x45\x58\xb0\x1b\x2f\x1b\xb1\x1b\x12\x3e\x59\xb0\x00\x45\x58\
\xb0\x13\x2f\x1b\xb1\x13\x12\x3e\x59\xb2\x09\x05\x08\x11\x12\x39\
\xb0\x09\x2f\xb1\x04\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x09\x10\xb0\x23\xd0\xb0\x0d\xd0\xb0\x04\x10\xb0\x1e\xd0\xb0\x18\
\xd0\xb0\x0b\x10\xb1\x26\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\x30\x31\x21\x11\x36\x37\x21\x11\x23\x11\x33\x11\x21\x01\x21\x01\
\x33\x32\x16\x17\x11\x23\x11\x26\x26\x27\x23\x07\x11\x23\x11\x27\
\x23\x22\x06\x07\x11\x01\x33\x01\x21\x02\xc5\x01\x4f\xfe\x62\xc1\
\xc1\x03\x59\xfe\x79\x04\xb3\xfe\x78\x1b\xf4\xec\x03\xc1\x01\x7c\
\x9a\x85\x16\xc0\x0e\x87\x9e\x82\x04\x02\x15\x10\x01\x1a\xfd\xbb\
\x01\x78\xb3\x69\xfd\x6c\x05\xb0\xfd\x7c\x02\x84\xfd\x7a\xd4\xd8\
\xfe\x82\x01\x78\x90\x82\x02\x25\xfd\x99\x02\x75\x17\x7b\x8d\xfe\
\x7c\x03\x2a\x01\xe8\x00\x02\x00\x9b\x00\x00\x07\x3b\x04\x3a\x00\
\x21\x00\x25\x00\x98\xb2\x1e\x26\x27\x11\x12\x39\xb0\x1e\x10\xb0\
\x25\xd0\x00\xb0\x00\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x1a\x3e\x59\
\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x1a\x3e\x59\xb0\x00\x45\
\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb0\x00\x45\x58\xb0\x05\
\x2f\x1b\xb1\x05\x12\x3e\x59\xb0\x00\x45\x58\xb0\x11\x2f\x1b\xb1\
\x11\x12\x3e\x59\xb0\x00\x45\x58\xb0\x19\x2f\x1b\xb1\x19\x12\x3e\
\x59\xb2\x0a\x0b\x00\x11\x12\x39\xb0\x0a\x2f\xb1\x1d\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\xd0\xb0\x0a\x10\xb0\x0d\xd0\
\xb0\x1d\x10\xb0\x16\xd0\xb0\x0a\x10\xb0\x22\xd0\xb0\x0b\x10\xb1\
\x24\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x21\x35\x36\
\x37\x21\x11\x23\x11\x33\x11\x21\x01\x21\x01\x16\x16\x17\x15\x23\
\x35\x26\x26\x23\x23\x07\x11\x23\x11\x27\x23\x06\x06\x07\x15\x01\
\x33\x13\x21\x02\x86\x02\x46\xfe\x87\xba\xba\x02\xd1\xfe\xe1\x03\
\xbf\xfe\xe0\xce\xc5\x02\xba\x02\x73\x8c\x35\x0b\xb9\x06\x4b\x85\
\x6f\x02\x01\xa2\x08\xb7\xfe\x8b\xaf\xad\x68\xfe\x3c\x04\x3a\xfe\
\x22\x01\xde\xfe\x21\x0b\xd3\xd0\xad\xb1\x92\x81\x13\xfe\x4f\x01\
\xbb\x09\x02\x80\x93\xaf\x02\x5c\x01\x46\x00\x00\x02\x00\x50\xfe\
\x46\x03\xaa\x07\x86\x00\x29\x00\x32\x00\x8a\xb2\x2a\x33\x34\x11\
\x12\x39\xb0\x2a\x10\xb0\x02\xd0\x00\xb0\x19\x2f\xb0\x2e\x2f\xb0\
\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x1e\x3e\x59\xb0\x00\x45\x58\
\xb0\x12\x2f\x1b\xb1\x12\x12\x3e\x59\xb0\x05\x10\xb1\x03\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x28\x05\x12\x11\x12\x39\xb0\
\x28\x2f\xb1\x25\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x0c\
\x25\x28\x11\x12\x39\xb0\x12\x10\xb1\x1f\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb2\x0f\x2e\x01\x5d\xb0\x2e\x10\xb0\x2b\xd0\xb0\
\x2b\x2f\xb4\x0f\x2b\x1f\x2b\x02\x5d\xb2\x2a\x2e\x2b\x11\x12\x39\
\xb0\x32\xd0\x30\x31\x01\x34\x26\x23\x21\x35\x21\x32\x04\x15\x14\
\x06\x07\x16\x16\x15\x14\x04\x23\x23\x06\x15\x14\x17\x17\x07\x26\
\x26\x35\x34\x36\x37\x33\x36\x36\x35\x10\x25\x23\x35\x33\x20\x03\
\x37\x33\x15\x03\x23\x03\x35\x33\x02\xda\x9d\x87\xfe\xce\x01\x2b\
\xde\x01\x06\x81\x73\x82\x89\xfe\xf7\xe0\x34\x8d\x82\x1f\x4a\x7a\
\x8d\xa5\xa2\x34\x86\x9f\xfe\xbe\x99\x86\x01\x3f\xbb\x97\xa0\xfe\
\x72\xfa\x9d\x04\x2a\x6e\x80\x98\xd8\xb2\x67\xa4\x2d\x29\xad\x82\
\xc4\xe5\x03\x6d\x69\x42\x0f\x7d\x35\xa8\x63\x7a\x83\x01\x01\x94\
\x79\x01\x08\x05\x98\x03\xa5\xaa\x0a\xfe\xee\x01\x12\x0a\x00\x00\
\x02\x00\x4c\xfe\x46\x03\x76\x06\x30\x00\x29\x00\x32\x00\x9f\xb2\
\x2e\x33\x34\x11\x12\x39\xb0\x2e\x10\xb0\x1f\xd0\x00\xb0\x18\x2f\
\xb0\x2e\x2f\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x1a\x3e\x59\
\xb0\x00\x45\x58\xb0\x11\x2f\x1b\xb1\x11\x12\x3e\x59\xb0\x05\x10\
\xb1\x03\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x28\x05\x11\
\x11\x12\x39\xb0\x28\x2f\xb2\x2f\x28\x01\x5d\xb4\xbf\x28\xcf\x28\
\x02\x5d\xb4\x9f\x28\xaf\x28\x02\x71\xb4\x6f\x28\x7f\x28\x02\x72\
\xb1\x25\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x0c\x25\x28\
\x11\x12\x39\xb0\x11\x10\xb1\x1e\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb0\x2e\x10\xb0\x2b\xd0\xb0\x2b\x2f\xb4\x0f\x2b\x1f\x2b\
\x02\x5d\xb2\x2a\x2e\x2b\x11\x12\x39\xb0\x32\xd0\x30\x31\x01\x34\
\x26\x27\x21\x35\x21\x32\x16\x15\x14\x06\x07\x16\x15\x14\x06\x23\
\x23\x06\x15\x14\x17\x17\x07\x26\x26\x35\x34\x36\x37\x33\x36\x37\
\x36\x35\x34\x25\x23\x35\x33\x20\x03\x37\x33\x15\x03\x23\x03\x35\
\x33\x02\xa7\x7f\x70\xfe\xc9\x01\x27\xca\xee\x66\x5b\xd7\xf3\xc8\
\x32\x8d\x82\x1f\x4b\x7c\x8a\xa5\xa2\x36\x72\x43\x3f\xfe\xe8\x99\
\x88\x01\x13\xd9\x97\xa0\xfe\x72\xfa\x9d\x03\x09\x43\x53\x02\x99\
\xaa\x8b\x49\x77\x24\x42\xaf\x94\xaf\x03\x6d\x69\x42\x0f\x7d\x37\
\xa8\x61\x7a\x83\x01\x02\x30\x2e\x48\xa2\x03\x98\x03\x1d\xaa\x0a\
\xfe\xee\x01\x12\x0a\x00\x03\x00\x67\xff\xec\x04\xfa\x05\xc4\x00\
\x11\x00\x18\x00\x1f\x00\x8c\xb2\x04\x20\x21\x11\x12\x39\xb0\x04\
\x10\xb0\x12\xd0\xb0\x04\x10\xb0\x19\xd0\x00\xb0\x00\x45\x58\xb0\
\x0d\x2f\x1b\xb1\x0d\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x04\x2f\x1b\
\xb1\x04\x12\x3e\x59\xb0\x0d\x10\xb1\x12\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb2\x16\x0d\x04\x11\x12\x39\xb0\x16\x2f\xb2\x2f\
\x16\x01\x5d\xb2\xcf\x16\x01\x5d\xb2\x2f\x16\x01\x71\xb2\xff\x16\
\x01\x5d\xb2\x5f\x16\x01\x5d\xb4\x4f\x16\x5f\x16\x02\x71\xb2\x9f\
\x16\x01\x71\xb0\x04\x10\xb1\x19\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb0\x16\x10\xb1\x1c\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\x30\x31\x01\x14\x02\x04\x23\x22\x24\x02\x27\x35\x34\x12\x24\
\x33\x32\x04\x12\x17\x01\x22\x02\x07\x21\x26\x02\x03\x32\x12\x37\
\x21\x16\x12\x04\xfa\x8f\xfe\xf8\xb1\xac\xfe\xf6\x93\x02\x92\x01\
\x0b\xac\xaf\x01\x08\x91\x02\xfd\xb6\xb6\xd0\x04\x03\x14\x04\xce\
\xb6\xb6\xca\x08\xfc\xec\x08\xd3\x02\xa9\xd5\xfe\xc2\xaa\xa9\x01\
\x39\xce\x69\xd2\x01\x42\xab\xa8\xfe\xc5\xcf\x02\x0d\xfe\xed\xf2\
\xf8\x01\x0d\xfb\x70\x01\x00\xf4\xec\xfe\xf8\x00\x03\x00\x5b\xff\
\xec\x04\x34\x04\x4e\x00\x0f\x00\x15\x00\x1c\x00\x8a\xb2\x04\x1d\
\x1e\x11\x12\x39\xb0\x04\x10\xb0\x13\xd0\xb0\x04\x10\xb0\x16\xd0\
\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\x59\xb0\x00\
\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x12\x3e\x59\xb2\x1a\x0c\x04\x11\
\x12\x39\xb0\x1a\x2f\xb4\xbf\x1a\xcf\x1a\x02\x5d\xb4\x9f\x1a\xaf\
\x1a\x02\x71\xb2\xff\x1a\x01\x5d\xb2\x0f\x1a\x01\x71\xb4\x2f\x1a\
\x3f\x1a\x02\x5d\xb4\xcf\x1a\xdf\x1a\x02\x71\xb1\x10\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0c\x10\xb1\x14\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x04\x10\xb1\x16\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\x30\x31\x13\x34\x36\x36\x33\x32\x00\x17\x17\
\x14\x06\x06\x23\x22\x00\x35\x05\x21\x16\x16\x20\x36\x01\x22\x06\
\x07\x21\x26\x26\x5b\x7b\xe1\x8f\xd4\x01\x0e\x0b\x01\x7c\xe0\x90\
\xde\xfe\xf1\x03\x1c\xfd\x9f\x0d\xa4\x01\x02\xa1\xfe\xdc\x7d\xa2\
\x0f\x02\x5e\x12\xa3\x02\x27\x9f\xfd\x8b\xfe\xe2\xe5\x3a\x9e\xfe\
\x89\x01\x33\xfb\x44\x9b\xb8\xba\x02\x79\xb5\x93\x97\xb1\x00\x00\
\x01\x00\x16\x00\x00\x04\xdd\x05\xc3\x00\x0f\x00\x47\xb2\x02\x10\
\x11\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1e\
\x3e\x59\xb0\x00\x45\x58\xb0\x0f\x2f\x1b\xb1\x0f\x1e\x3e\x59\xb0\
\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x12\x3e\x59\xb2\x01\x06\x0c\
\x11\x12\x39\xb0\x06\x10\xb1\x08\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\x30\x31\x01\x17\x37\x01\x36\x36\x33\x17\x07\x22\x06\x07\
\x01\x23\x01\x33\x02\x43\x21\x23\x01\x08\x33\x86\x67\x2e\x01\x40\
\x40\x1f\xfe\x7c\xaa\xfe\x07\xd0\x01\x76\x82\x81\x03\x3f\x97\x78\
\x01\xab\x3c\x54\xfb\x79\x05\xb0\x00\x00\x01\x00\x2e\x00\x00\x04\
\x0b\x04\x4d\x00\x11\x00\x47\xb2\x02\x12\x13\x11\x12\x39\x00\xb0\
\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x1a\x3e\x59\xb0\x00\x45\x58\
\xb0\x11\x2f\x1b\xb1\x11\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x0e\x2f\
\x1b\xb1\x0e\x12\x3e\x59\xb2\x01\x05\x0e\x11\x12\x39\xb0\x05\x10\
\xb1\x0a\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x17\
\x37\x13\x36\x33\x32\x17\x07\x26\x23\x22\x06\x07\x01\x23\x01\x33\
\x01\xdb\x17\x19\x9d\x4d\xac\x47\x23\x15\x0d\x1d\x1f\x3c\x10\xfe\
\xd7\x8d\xfe\x83\xbd\x01\x3c\x64\x64\x02\x1f\xf2\x18\x94\x08\x30\
\x2d\xfc\xb4\x04\x3a\x00\x02\x00\x67\xff\x73\x04\xfa\x06\x34\x00\
\x13\x00\x27\x00\x54\xb2\x05\x28\x29\x11\x12\x39\xb0\x05\x10\xb0\
\x19\xd0\x00\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x1e\x3e\x59\
\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x12\x3e\x59\xb0\x06\xd0\
\xb0\x0d\x10\xb0\x10\xd0\xb1\x17\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb0\x1a\xd0\xb0\x03\x10\xb1\x24\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb0\x21\xd0\x30\x31\x01\x10\x00\x07\x15\x23\x35\
\x26\x00\x03\x35\x10\x00\x37\x35\x33\x15\x16\x00\x11\x27\x34\x02\
\x27\x15\x23\x35\x06\x02\x15\x15\x14\x12\x17\x35\x33\x15\x36\x12\
\x35\x04\xfa\xfe\xfe\xe3\xb9\xe5\xfe\xf1\x01\x01\x0e\xe7\xb9\xe2\
\x01\x03\xbf\x99\x8d\xb9\x93\xa3\xa4\x92\xb9\x8f\x97\x02\xa9\xfe\
\xdd\xfe\x91\x23\x81\x7f\x1f\x01\x71\x01\x23\x60\x01\x24\x01\x76\
\x1f\x76\x78\x25\xfe\x90\xfe\xd9\x07\xe0\x01\x09\x23\x61\x64\x1f\
\xfe\xee\xdf\x5d\xde\xfe\xec\x1f\x66\x64\x22\x01\x0b\xe2\x00\x00\
\x02\x00\x5b\xff\x89\x04\x34\x04\xb5\x00\x13\x00\x25\x00\x5a\xb2\
\x03\x26\x27\x11\x12\x39\xb0\x03\x10\xb0\x1c\xd0\x00\xb0\x00\x45\
\x58\xb0\x03\x2f\x1b\xb1\x03\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x10\
\x2f\x1b\xb1\x10\x12\x3e\x59\xb0\x03\x10\xb0\x06\xd0\xb0\x10\x10\
\xb0\x0d\xd0\xb0\x10\x10\xb1\x23\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb0\x14\xd0\xb0\x03\x10\xb1\x1d\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb0\x1a\xd0\x30\x31\x13\x34\x12\x37\x35\x33\x15\
\x16\x12\x15\x15\x14\x02\x07\x15\x23\x35\x26\x02\x35\x01\x36\x36\
\x35\x34\x26\x27\x15\x23\x35\x06\x06\x15\x14\x16\x17\x35\x33\x5b\
\xd4\xb9\xb9\xba\xd9\xdd\xb6\xb9\xb4\xd9\x02\x46\x63\x76\x74\x65\
\xb9\x62\x72\x71\x63\xb9\x02\x27\xd2\x01\x2a\x22\x70\x6f\x20\xfe\
\xd8\xdd\x10\xd8\xfe\xd8\x1d\x6b\x6c\x1f\x01\x27\xdc\xfe\x79\x1f\
\xcd\xab\x91\xd0\x20\x62\x61\x21\xd0\xa5\x92\xcb\x22\x66\x00\x00\
\x03\x00\x9c\xff\xeb\x06\x6f\x07\x51\x00\x2c\x00\x40\x00\x49\x00\
\xaa\xb2\x0a\x4a\x4b\x11\x12\x39\xb0\x0a\x10\xb0\x32\xd0\xb0\x0a\
\x10\xb0\x49\xd0\x00\xb0\x00\x45\x58\xb0\x14\x2f\x1b\xb1\x14\x1e\
\x3e\x59\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x12\x3e\x59\xb0\
\x14\x10\xb0\x00\xd0\xb0\x0d\x10\xb0\x07\xd0\xb2\x0a\x0d\x14\x11\
\x12\x39\xb0\x14\x10\xb1\x15\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x0d\x10\xb1\x1c\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb2\x20\x14\x0d\x11\x12\x39\xb0\x25\xd0\xb0\x15\x10\xb0\x2c\xd0\
\xb0\x14\x10\xb0\x38\xd0\xb0\x38\x2f\xb0\x2f\xd0\xb1\x2d\x02\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x2f\x10\xb0\x34\xd0\xb0\x34\
\x2f\xb1\x3c\x02\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x38\x10\
\xb0\x44\xd0\xb0\x49\xd0\xb0\x49\x2f\x30\x31\x01\x32\x16\x15\x11\
\x14\x06\x23\x22\x26\x27\x06\x06\x23\x22\x26\x27\x11\x34\x36\x33\
\x15\x22\x06\x15\x11\x14\x16\x33\x32\x36\x35\x11\x33\x11\x14\x16\
\x33\x32\x36\x35\x11\x34\x26\x23\x13\x15\x23\x22\x2e\x02\x23\x22\
\x15\x15\x23\x35\x34\x36\x33\x32\x1e\x02\x01\x36\x37\x35\x33\x15\
\x14\x06\x07\x04\xdb\xbb\xd9\xd9\xbb\x70\xb2\x34\x34\xb0\x70\xb9\
\xd8\x04\xd8\xbd\x63\x71\x72\x62\x72\x82\xc1\x82\x73\x63\x70\x6f\
\x64\x68\x2b\x50\x82\xb8\x34\x18\x71\x80\x7f\x6e\x28\x48\xbf\x6a\
\xfe\x40\x42\x03\x9d\x5b\x3b\x05\xaf\xf0\xd6\xfd\xc6\xd4\xf0\x55\
\x58\x58\x55\xe8\xcd\x02\x4a\xd4\xf1\x9e\x9d\x89\xfd\xc4\x8c\x9b\
\x89\x7c\x01\xac\xfe\x54\x7a\x8b\x9c\x8c\x02\x3a\x88\x9f\x01\xc2\
\x7f\x22\x50\x0c\x70\x0f\x24\x6e\x6c\x11\x52\x1b\xfe\x90\x50\x3c\
\x69\x66\x32\x75\x20\x00\x03\x00\x7e\xff\xeb\x05\xaa\x05\xf1\x00\
\x2b\x00\x3f\x00\x48\x00\xb0\xb2\x09\x49\x4a\x11\x12\x39\xb0\x09\
\x10\xb0\x3c\xd0\xb0\x09\x10\xb0\x48\xd0\x00\xb0\x00\x45\x58\xb0\
\x13\x2f\x1b\xb1\x13\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\
\xb1\x0c\x12\x3e\x59\xb0\x13\x10\xb0\x00\xd0\xb0\x0c\x10\xb0\x07\
\xd0\xb2\x09\x0c\x13\x11\x12\x39\xb0\x13\x10\xb1\x14\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0c\x10\xb1\x1b\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb2\x1f\x13\x0c\x11\x12\x39\xb0\x24\xd0\
\xb0\x14\x10\xb0\x2b\xd0\xb0\x13\x10\xb0\x37\xd0\xb0\x37\x2f\xb0\
\x2d\xd0\xb0\x2d\x2f\xb1\x2c\x02\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x2d\x10\xb0\x33\xd0\xb0\x33\x2f\xb1\x3b\x02\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x37\x10\xb0\x43\xd0\xb0\x43\x2f\xb0\
\x48\xd0\xb0\x48\x2f\x30\x31\x01\x32\x16\x15\x11\x14\x06\x23\x22\
\x27\x06\x06\x23\x22\x26\x27\x11\x34\x36\x33\x15\x22\x06\x15\x11\
\x14\x16\x33\x32\x36\x35\x35\x33\x15\x16\x16\x33\x32\x36\x35\x11\
\x34\x26\x23\x13\x15\x23\x22\x2e\x02\x23\x22\x15\x15\x23\x35\x34\
\x36\x33\x32\x1e\x02\x01\x36\x37\x35\x33\x15\x14\x06\x07\x04\x42\
\xa8\xc0\xc0\xa8\xd0\x5f\x2f\x9c\x62\xa3\xc1\x04\xc0\xa8\x52\x5d\
\x5c\x53\x62\x6f\xb9\x01\x70\x61\x51\x5d\x5d\x51\xaa\x2c\x4f\x7e\
\xc0\x30\x18\x72\x80\x7f\x6f\x29\x4a\xb7\x6d\xfe\x41\x41\x03\x9e\
\x5b\x3b\x04\x44\xdb\xc2\xfe\xdf\xc1\xda\x95\x4b\x4a\xd0\xbb\x01\
\x32\xc1\xdb\x98\x88\x7c\xfe\xde\x7b\x89\x78\x67\xeb\xee\x67\x75\
\x88\x7d\x01\x21\x7c\x88\x01\xc7\x7f\x20\x52\x0b\x6f\x0f\x24\x6e\
\x6c\x12\x50\x1c\xfe\x86\x4e\x3f\x68\x66\x32\x75\x20\x00\x02\x00\
\x9c\xff\xec\x06\x75\x07\x03\x00\x20\x00\x28\x00\x84\xb2\x07\x29\
\x2a\x11\x12\x39\xb0\x07\x10\xb0\x27\xd0\x00\xb0\x00\x45\x58\xb0\
\x0f\x2f\x1b\xb1\x0f\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x17\x2f\x1b\
\xb1\x17\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x20\x2f\x1b\xb1\x20\x1e\
\x3e\x59\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x12\x3e\x59\xb0\
\x04\xd0\xb2\x07\x0a\x0f\x11\x12\x39\xb0\x0a\x10\xb1\x13\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x1c\xd0\xb0\x0f\x10\xb0\x27\
\xd0\xb0\x27\x2f\xb0\x28\xd0\xb0\x28\x2f\xb1\x22\x06\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x28\x10\xb0\x25\xd0\xb0\x25\x2f\x30\
\x31\x01\x11\x14\x06\x23\x22\x26\x27\x06\x06\x23\x22\x26\x27\x11\
\x33\x11\x14\x16\x33\x32\x36\x35\x11\x33\x11\x14\x16\x33\x32\x36\
\x35\x11\x25\x35\x21\x17\x21\x15\x23\x35\x06\x75\xe1\xc3\x6d\xab\
\x31\x34\xb2\x71\xbd\xd7\x01\xc1\x72\x62\x72\x82\xc7\x7c\x69\x6a\
\x7a\xfc\x42\x03\x2c\x01\xfe\xb5\xa8\x05\xb0\xfb\xde\xc6\xdc\x57\
\x59\x59\x57\xdb\xc3\x04\x26\xfb\xdd\x7b\x8a\x89\x7c\x04\x23\xfb\
\xdd\x7d\x88\x89\x7d\x04\x22\xe8\x6b\x6b\x7d\x7d\x00\x00\x02\x00\
\x81\xff\xeb\x05\xad\x05\xb0\x00\x1e\x00\x26\x00\x87\xb2\x06\x27\
\x28\x11\x12\x39\xb0\x06\x10\xb0\x23\xd0\x00\xb0\x00\x45\x58\xb0\
\x0d\x2f\x1b\xb1\x0d\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x15\x2f\x1b\
\xb1\x15\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x1e\x2f\x1b\xb1\x1e\x1a\
\x3e\x59\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x12\x3e\x59\xb0\
\x04\xd0\xb0\x04\x2f\xb2\x06\x08\x0d\x11\x12\x39\xb0\x08\x10\xb1\
\x11\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x1a\xd0\xb0\x0d\
\x10\xb0\x25\xd0\xb0\x25\x2f\xb0\x26\xd0\xb0\x26\x2f\xb1\x20\x06\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x26\x10\xb0\x23\xd0\xb0\
\x23\x2f\x30\x31\x01\x11\x14\x06\x23\x22\x27\x06\x23\x22\x26\x27\
\x11\x33\x11\x16\x16\x33\x32\x36\x35\x11\x33\x11\x14\x16\x33\x32\
\x36\x37\x11\x01\x35\x21\x17\x21\x15\x23\x35\x05\xad\xca\xae\xc6\
\x59\x5f\xce\xa7\xc0\x01\xb9\x01\x5b\x53\x62\x6f\xba\x65\x5c\x59\
\x65\x01\xfc\x93\x03\x2c\x03\xfe\xb3\xa9\x04\x3a\xfd\x27\xb0\xc6\
\x94\x94\xc3\xb0\x02\xdc\xfd\x23\x66\x75\x78\x67\x02\xd9\xfd\x27\
\x67\x78\x75\x66\x02\xdd\x01\x0b\x6b\x6b\x80\x80\x00\x00\x01\x00\
\x75\xfe\x84\x04\xbc\x05\xc5\x00\x19\x00\x4b\xb2\x18\x1a\x1b\x11\
\x12\x39\x00\xb0\x00\x2f\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\
\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\
\xb0\x0a\x10\xb0\x0e\xd0\xb0\x0a\x10\xb1\x11\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x02\x10\xb1\x19\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\x30\x31\x01\x23\x11\x26\x00\x35\x35\x34\x12\x24\
\x33\x32\x00\x17\x23\x26\x26\x23\x22\x02\x15\x15\x14\x12\x17\x33\
\x03\x14\xbf\xd8\xfe\xf8\x8e\x01\x00\xa0\xf7\x01\x20\x02\xc1\x02\
\xb5\xa1\xa0\xcd\xc5\x9d\x7c\xfe\x84\x01\x6c\x1c\x01\x56\xff\xf4\
\xb1\x01\x20\x9f\xfe\xf8\xe0\x9e\xac\xfe\xfc\xd4\xf4\xca\xfe\xfb\
\x04\x00\x01\x00\x64\xfe\x82\x03\xe0\x04\x4e\x00\x19\x00\x4b\xb2\
\x18\x1a\x1b\x11\x12\x39\x00\xb0\x00\x2f\xb0\x00\x45\x58\xb0\x0a\
\x2f\x1b\xb1\x0a\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\
\x02\x12\x3e\x59\xb0\x0a\x10\xb0\x0e\xd0\xb0\x0a\x10\xb1\x11\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x02\x10\xb1\x18\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x23\x11\x26\x02\x35\
\x35\x34\x36\x36\x33\x32\x16\x15\x23\x34\x26\x23\x22\x06\x15\x15\
\x14\x16\x17\x33\x02\xa2\xb9\xb1\xd4\x77\xd7\x8b\xb3\xf0\xaf\x8f\
\x65\x84\x9c\x96\x82\x6d\xfe\x82\x01\x70\x1e\x01\x26\xd9\x23\x99\
\xf9\x8a\xe1\xa8\x65\x8c\xda\xb5\x1f\xa8\xdb\x03\x00\x00\x01\x00\
\x74\x00\x00\x04\x90\x05\x3e\x00\x13\x00\x13\x00\xb0\x0e\x2f\xb0\
\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\x59\x30\x31\x01\x05\
\x07\x25\x03\x23\x13\x25\x37\x05\x13\x25\x37\x05\x13\x33\x03\x05\
\x07\x25\x02\x58\x01\x21\x44\xfe\xdd\xb6\xa8\xe1\xfe\xdf\x44\x01\
\x25\xcd\xfe\xde\x46\x01\x23\xbc\xa5\xe7\x01\x25\x48\xfe\xe0\x01\
\xbe\xac\x7b\xaa\xfe\xbf\x01\x8e\xab\x7b\xab\x01\x6d\xab\x7d\xab\
\x01\x4b\xfe\x68\xab\x7a\xaa\x00\x01\xfc\x67\x04\xa6\xff\x27\x05\
\xfc\x00\x07\x00\x12\x00\xb0\x00\x2f\xb1\x03\x06\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\x30\x31\x01\x15\x27\x37\x21\x27\x17\x15\xfd\
\x0d\xa6\x01\x02\x1b\x01\xa5\x05\x23\x7d\x01\xe9\x6c\x01\xd8\x00\
\x01\xfc\x71\x05\x17\xff\x64\x06\x15\x00\x13\x00\x30\x00\xb0\x0e\
\x2f\xb0\x08\xd0\xb0\x08\x2f\xb1\x00\x02\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x0e\x10\xb0\x05\xd0\xb0\x05\x2f\xb0\x0e\x10\xb1\
\x0f\x02\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x32\x16\
\x15\x15\x23\x35\x34\x23\x22\x07\x07\x06\x07\x23\x35\x32\x3e\x02\
\xfe\x76\x6f\x7f\x80\x72\x2a\x2d\x6f\x89\x76\x3c\x6c\x6a\xc1\x47\
\x06\x15\x6c\x6e\x24\x0e\x70\x12\x2f\x3a\x02\x7e\x1b\x53\x11\x00\
\x01\xfd\x66\x05\x16\xfe\x54\x06\x57\x00\x05\x00\x0c\x00\xb0\x01\
\x2f\xb0\x05\xd0\xb0\x05\x2f\x30\x31\x01\x35\x33\x15\x17\x07\xfd\
\x66\xb3\x3b\x4d\x05\xdc\x7b\x8c\x74\x41\x00\x00\x01\xfd\xa4\x05\
\x16\xfe\x93\x06\x57\x00\x05\x00\x0c\x00\xb0\x03\x2f\xb0\x00\xd0\
\xb0\x00\x2f\x30\x31\x01\x27\x37\x27\x33\x15\xfd\xf1\x4d\x3b\x01\
\xb5\x05\x16\x41\x74\x8c\x7b\x00\x08\xfa\x1b\xfe\xc4\x01\xb6\x05\
\xaf\x00\x0c\x00\x1a\x00\x27\x00\x35\x00\x42\x00\x4f\x00\x5c\x00\
\x6a\x00\x7f\x00\xb0\x45\x2f\xb0\x53\x2f\xb0\x60\x2f\xb0\x38\x2f\
\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1e\x3e\x59\xb1\x09\x0b\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x45\x10\xb0\x10\xd0\xb0\
\x45\x10\xb1\x4c\x0b\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x17\
\xd0\xb0\x53\x10\xb0\x1e\xd0\xb0\x53\x10\xb1\x5a\x0b\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x25\xd0\xb0\x60\x10\xb0\x2b\xd0\xb0\
\x60\x10\xb1\x67\x0b\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x32\
\xd0\xb0\x38\x10\xb1\x3f\x0b\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\x30\x31\x01\x34\x36\x32\x16\x15\x23\x34\x26\x23\x22\x06\x15\x01\
\x34\x36\x33\x32\x16\x15\x23\x34\x26\x23\x22\x06\x15\x13\x34\x36\
\x33\x32\x16\x15\x23\x34\x26\x22\x06\x15\x01\x34\x36\x33\x32\x16\
\x15\x23\x34\x26\x23\x22\x06\x15\x01\x34\x36\x32\x16\x15\x23\x34\
\x26\x23\x22\x06\x15\x01\x34\x36\x32\x16\x15\x23\x34\x26\x23\x22\
\x06\x15\x01\x34\x36\x33\x32\x16\x15\x23\x34\x26\x22\x06\x15\x13\
\x34\x36\x33\x32\x16\x15\x23\x34\x26\x23\x22\x06\x15\xfd\x08\x73\
\xbe\x74\x70\x33\x30\x2e\x33\x01\xde\x74\x5d\x5f\x75\x71\x35\x2e\
\x2c\x33\x48\x75\x5d\x5f\x74\x70\x35\x5c\x33\xfe\xcb\x74\x5d\x5f\
\x74\x70\x35\x2e\x2d\x33\xfd\x4f\x73\xbe\x74\x70\x33\x30\x2e\x33\
\xfd\x4d\x74\xbe\x74\x70\x33\x30\x2e\x33\xfe\xde\x75\x5d\x5f\x74\
\x70\x35\x5c\x33\x35\x75\x5d\x5f\x75\x71\x35\x2e\x2d\x33\x04\xf3\
\x54\x68\x68\x54\x2e\x37\x35\x30\xfe\xeb\x54\x68\x67\x55\x31\x34\
\x35\x30\xfe\x09\x55\x67\x68\x54\x31\x34\x37\x2e\xfd\xf9\x54\x68\
\x68\x54\x31\x34\x37\x2e\xfe\xe4\x54\x68\x68\x54\x2e\x37\x37\x2e\
\x05\x1a\x54\x68\x68\x54\x2e\x37\x35\x30\xfe\x09\x55\x67\x68\x54\
\x31\x34\x37\x2e\xfd\xf9\x55\x67\x67\x55\x31\x34\x35\x30\x00\x00\
\x08\xfa\x2c\xfe\x63\x01\x6b\x05\xc6\x00\x04\x00\x09\x00\x0e\x00\
\x13\x00\x18\x00\x1d\x00\x22\x00\x27\x00\x39\x00\xb0\x21\x2f\xb0\
\x12\x2f\xb0\x0b\x2f\xb0\x1b\x2f\xb0\x26\x2f\xb0\x00\x45\x58\xb0\
\x07\x2f\x1b\xb1\x07\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x16\x2f\x1b\
\xb1\x16\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x14\
\x3e\x59\x30\x31\x05\x17\x03\x23\x13\x03\x27\x13\x33\x03\x01\x37\
\x05\x15\x25\x05\x07\x25\x35\x05\x01\x37\x25\x17\x05\x01\x07\x05\
\x27\x25\x03\x27\x03\x37\x13\x01\x17\x13\x07\x03\xfe\x2f\x0b\x7a\
\x60\x46\x3a\x0c\x7a\x60\x46\x02\x1d\x0d\x01\x4d\xfe\xa6\xfb\x75\
\x0d\xfe\xb3\x01\x5a\x03\x9c\x02\x01\x40\x44\xfe\xdb\xfc\xf3\x02\
\xfe\xc0\x45\x01\x26\x2b\x11\x94\x41\xc6\x03\x60\x11\x94\x42\xc4\
\x3c\x0e\xfe\xad\x01\x61\x04\xa2\x0e\x01\x52\xfe\xa0\xfe\x11\x0c\
\x7c\x62\x47\x3b\x0c\x7c\x62\x47\x01\xae\x10\x99\x44\xc8\xfc\x8e\
\x11\x99\x45\xc8\x02\xe4\x02\x01\x46\x45\xfe\xd5\xfc\xe3\x02\xfe\
\xbb\x47\x01\x2b\x00\xff\xff\x00\xb1\xfe\x9b\x05\xb3\x07\x19\x00\
\x26\x00\xdc\x00\x00\x00\x27\x00\xa1\x01\x31\x01\x42\x01\x07\x00\
\x10\x04\x7f\xff\xbd\x00\x13\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\
\xb1\x08\x1e\x3e\x59\xb0\x0d\xdc\x30\x31\x00\xff\xff\x00\x9c\xfe\
\x9b\x04\xb5\x05\xc3\x00\x26\x00\xf0\x00\x00\x00\x27\x00\xa1\x00\
\xa1\xff\xec\x01\x07\x00\x10\x03\x81\xff\xbd\x00\x13\x00\xb0\x00\
\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1a\x3e\x59\xb0\x0d\xdc\x30\x31\
\x00\x00\x02\xff\xdc\x00\x00\x03\xfc\x06\x71\x00\x11\x00\x1a\x00\
\x77\xb2\x14\x1b\x1c\x11\x12\x39\xb0\x14\x10\xb0\x03\xd0\x00\xb0\
\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x1e\x3e\x59\xb0\x00\x45\x58\
\xb0\x10\x2f\x1b\xb1\x10\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x08\x2f\
\x1b\xb1\x08\x12\x3e\x59\xb0\x10\x10\xb1\x00\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb2\x02\x0c\x08\x11\x12\x39\xb0\x02\x2f\xb0\
\x00\x10\xb0\x0a\xd0\xb0\x0b\xd0\xb0\x02\x10\xb1\x12\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x08\x10\xb1\x13\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x21\x11\x21\x16\x16\x10\x06\
\x07\x21\x11\x23\x35\x33\x35\x33\x15\x21\x01\x11\x21\x32\x36\x35\
\x34\x26\x27\x02\x96\xfe\xbf\x01\x18\xbb\xd4\xd4\xb7\xfe\x2a\xbf\
\xbf\xba\x01\x41\xfe\xbf\x01\x12\x69\x71\x6f\x64\x05\x18\xfd\xd2\
\x02\xca\xfe\xb6\xd1\x03\x05\x18\x98\xc1\xc1\xfc\xa2\xfe\x45\x77\
\x64\x61\x7d\x02\x00\x00\x02\x00\xa8\x00\x00\x04\xd7\x05\xb0\x00\
\x0e\x00\x1b\x00\x56\xb2\x04\x1c\x1d\x11\x12\x39\xb0\x04\x10\xb0\
\x17\xd0\x00\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1e\x3e\x59\
\xb0\x00\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x12\x3e\x59\xb2\x16\x03\
\x01\x11\x12\x39\xb0\x16\x2f\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb2\x09\x00\x03\x11\x12\x39\xb0\x03\x10\xb1\x14\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x11\x23\x11\x21\
\x32\x04\x15\x14\x07\x17\x07\x27\x06\x23\x01\x36\x35\x34\x26\x27\
\x21\x11\x21\x32\x37\x27\x37\x01\x69\xc1\x02\x19\xec\x01\x13\x67\
\x7e\x6d\x8b\x76\xa8\x01\x19\x25\xa5\x91\xfe\xa0\x01\x58\x62\x45\
\x6e\x6e\x02\x3a\xfd\xc6\x05\xb0\xf2\xcb\xba\x70\x8a\x67\x99\x37\
\x01\x1b\x41\x5b\x82\x9d\x02\xfd\xc5\x1d\x79\x66\x00\x00\x02\x00\
\x8c\xfe\x60\x04\x23\x04\x4e\x00\x13\x00\x22\x00\x77\xb2\x1c\x23\
\x24\x11\x12\x39\xb0\x1c\x10\xb0\x10\xd0\x00\xb0\x00\x45\x58\xb0\
\x10\x2f\x1b\xb1\x10\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\
\xb1\x0d\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x14\
\x3e\x59\xb0\x00\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x12\x3e\x59\xb2\
\x02\x07\x10\x11\x12\x39\xb2\x09\x10\x07\x11\x12\x39\xb2\x0e\x10\
\x07\x11\x12\x39\xb0\x10\x10\xb1\x17\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x07\x10\xb1\x1c\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\x30\x31\x01\x14\x07\x17\x07\x27\x06\x23\x22\x27\x11\x23\
\x11\x33\x17\x36\x33\x32\x12\x11\x27\x34\x26\x23\x22\x07\x11\x16\
\x33\x32\x37\x27\x37\x17\x36\x04\x1e\x6a\x6f\x6e\x6e\x59\x73\xc5\
\x71\xb9\xa9\x09\x71\xc9\xc3\xe3\xb9\x9c\x88\xa8\x54\x53\xab\x52\
\x3c\x66\x6e\x5a\x32\x02\x11\xee\x97\x7d\x66\x7b\x38\x7d\xfd\xf7\
\x05\xda\x78\x8c\xfe\xda\xfe\xfa\x04\xb7\xd4\x95\xfd\xfb\x94\x27\
\x73\x67\x67\x62\x00\x00\x01\x00\xa2\x00\x00\x04\x23\x07\x00\x00\
\x09\x00\x36\xb2\x03\x0a\x0b\x11\x12\x39\x00\xb0\x08\x2f\xb0\x00\
\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1e\x3e\x59\xb0\x00\x45\x58\xb0\
\x04\x2f\x1b\xb1\x04\x12\x3e\x59\xb0\x06\x10\xb1\x02\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x23\x15\x21\x11\x23\x11\
\x21\x11\x33\x04\x23\x03\xfd\x42\xc0\x02\xc8\xb9\x05\x18\x06\xfa\
\xee\x05\xb0\x01\x50\x00\x01\x00\x91\x00\x00\x03\x42\x05\x76\x00\
\x07\x00\x2f\x00\xb0\x06\x2f\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\
\x04\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\
\x59\xb0\x04\x10\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\x30\x31\x01\x21\x11\x23\x11\x21\x11\x33\x03\x42\xfe\x09\xba\x01\
\xf8\xb9\x03\xa1\xfc\x5f\x04\x3a\x01\x3c\x00\x00\x01\x00\xb1\xfe\
\xdf\x04\x7c\x05\xb0\x00\x15\x00\x5e\xb2\x0a\x16\x17\x11\x12\x39\
\x00\xb0\x09\x2f\xb0\x00\x45\x58\xb0\x14\x2f\x1b\xb1\x14\x1e\x3e\
\x59\xb0\x00\x45\x58\xb0\x12\x2f\x1b\xb1\x12\x12\x3e\x59\xb0\x14\
\x10\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x03\x14\
\x09\x11\x12\x39\xb0\x03\x2f\xb0\x09\x10\xb1\x0a\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\xb1\x10\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\x30\x31\x01\x21\x11\x33\x20\x00\x11\x10\x02\
\x23\x27\x32\x36\x35\x26\x26\x23\x23\x11\x23\x11\x21\x04\x30\xfd\
\x42\xb2\x01\x1c\x01\x3c\xf5\xe4\x02\x91\x90\x01\xcc\xce\xb5\xc1\
\x03\x7f\x05\x12\xfe\x2f\xfe\xcf\xfe\xf0\xfe\xf8\xfe\xe7\x93\xc3\
\xcb\xcb\xd4\xfd\x61\x05\xb0\x00\x01\x00\x91\xfe\xe5\x03\xbe\x04\
\x3a\x00\x16\x00\x5e\xb2\x0b\x17\x18\x11\x12\x39\x00\xb0\x0a\x2f\
\xb0\x00\x45\x58\xb0\x15\x2f\x1b\xb1\x15\x1a\x3e\x59\xb0\x00\x45\
\x58\xb0\x13\x2f\x1b\xb1\x13\x12\x3e\x59\xb0\x15\x10\xb1\x00\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x03\x15\x0a\x11\x12\x39\
\xb0\x03\x2f\xb0\x0a\x10\xb1\x0b\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb0\x03\x10\xb1\x11\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\x30\x31\x01\x21\x11\x33\x32\x00\x15\x14\x06\x06\x07\x27\x36\
\x36\x35\x34\x26\x23\x23\x11\x23\x11\x21\x03\x3e\xfe\x0d\x6c\xef\
\x01\x18\x62\xaa\x75\x30\x80\x78\xb2\x98\x70\xba\x02\xad\x03\xa1\
\xfe\xe4\xfe\xfc\xd7\x62\xc8\x86\x15\x92\x21\x99\x79\x91\xa8\xfe\
\x1d\x04\x3a\xff\xff\x00\x1b\xfe\x99\x07\x82\x05\xb0\x00\x26\x00\
\xda\x00\x00\x00\x07\x02\x51\x06\x61\x00\x00\xff\xff\x00\x15\xfe\
\x99\x06\x3d\x04\x3a\x00\x26\x00\xee\x00\x00\x00\x07\x02\x51\x05\
\x1c\x00\x00\xff\xff\x00\xb2\xfe\x97\x05\x44\x05\xb0\x00\x26\x02\
\x2c\x00\x00\x00\x07\x02\x51\x04\x23\xff\xfe\xff\xff\x00\x9c\xfe\
\x99\x04\x81\x04\x3a\x00\x26\x00\xf1\x00\x00\x00\x07\x02\x51\x03\
\x60\x00\x00\x00\x01\x00\xa3\x00\x00\x04\xff\x05\xb0\x00\x14\x00\
\x63\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1e\x3e\x59\xb0\
\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x1e\x3e\x59\xb0\x00\x45\x58\
\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb0\x00\x45\x58\xb0\x0a\x2f\
\x1b\xb1\x0a\x12\x3e\x59\xb0\x0f\xd0\xb0\x0f\x2f\xb2\x2f\x0f\x01\
\x5d\xb2\xcf\x0f\x01\x5d\xb1\x08\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb2\x01\x08\x0f\x11\x12\x39\xb0\x05\xd0\xb0\x0f\x10\xb0\
\x12\xd0\x30\x31\x09\x02\x23\x01\x23\x15\x23\x35\x23\x11\x23\x11\
\x33\x11\x33\x11\x33\x11\x33\x01\x04\xd2\xfe\x70\x01\xbd\xf1\xfe\
\xa2\x50\x94\x68\xc1\xc1\x68\x94\x4d\x01\x43\x05\xb0\xfd\x4e\xfd\
\x02\x02\x8e\xf4\xf4\xfd\x72\x05\xb0\xfd\x7f\x01\x00\xff\x00\x02\
\x81\x00\x01\x00\x9a\x00\x00\x04\x7f\x04\x3a\x00\x14\x00\x7c\x00\
\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x1a\x3e\x59\xb0\x00\x45\
\x58\xb0\x14\x2f\x1b\xb1\x14\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x0a\
\x2f\x1b\xb1\x0a\x12\x3e\x59\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\
\x03\x12\x3e\x59\xb0\x0a\x10\xb0\x0e\xd0\xb0\x0e\x2f\xb2\x9f\x0e\
\x01\x5d\xb2\xff\x0e\x01\x5d\xb2\x9f\x0e\x01\x71\xb4\xbf\x0e\xcf\
\x0e\x02\x5d\xb2\x2f\x0e\x01\x5d\xb2\x6f\x0e\x01\x72\xb1\x09\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x01\x09\x0e\x11\x12\x39\
\xb0\x05\xd0\xb0\x0e\x10\xb0\x12\xd0\x30\x31\x09\x02\x23\x01\x23\
\x15\x23\x35\x23\x11\x23\x11\x33\x11\x33\x35\x33\x15\x33\x01\x04\
\x5a\xfe\xae\x01\x77\xeb\xfe\xeb\x32\x94\x65\xba\xba\x65\x94\x2a\
\x01\x03\x04\x3a\xfd\xfe\xfd\xc8\x01\xcd\xc2\xc2\xfe\x33\x04\x3a\
\xfe\x36\xd5\xd5\x01\xca\x00\x00\x01\x00\x44\x00\x00\x06\x8b\x05\
\xb0\x00\x0e\x00\x6d\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\
\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1e\x3e\x59\
\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb0\x00\x45\
\x58\xb0\x0d\x2f\x1b\xb1\x0d\x12\x3e\x59\xb2\x08\x06\x02\x11\x12\
\x39\xb0\x08\x2f\xb2\x2f\x08\x01\x5d\xb2\xcf\x08\x01\x5d\xb1\x01\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x06\x10\xb1\x04\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x0c\x01\x08\x11\x12\x39\
\x30\x31\x01\x23\x11\x23\x11\x21\x35\x21\x11\x33\x01\x33\x01\x01\
\x23\x03\x90\xb0\xc1\xfe\x25\x02\x9c\x96\x01\xfc\xef\xfd\xd4\x02\
\x56\xec\x02\x8e\xfd\x72\x05\x18\x98\xfd\x7e\x02\x82\xfd\x3f\xfd\
\x11\x00\x01\x00\x3e\x00\x00\x05\x7d\x04\x3a\x00\x0e\x00\x82\x00\
\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1a\x3e\x59\xb0\x00\x45\
\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x02\
\x2f\x1b\xb1\x02\x12\x3e\x59\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\
\x0d\x12\x3e\x59\xb0\x02\x10\xb0\x09\xd0\xb0\x09\x2f\xb2\x9f\x09\
\x01\x5d\xb2\xff\x09\x01\x5d\xb2\x9f\x09\x01\x71\xb4\xbf\x09\xcf\
\x09\x02\x5d\xb2\x2f\x09\x01\x5d\xb2\x6f\x09\x01\x72\xb1\x00\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x06\x10\xb1\x04\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x0c\x00\x09\x11\x12\x39\x30\
\x31\x01\x23\x11\x23\x11\x21\x35\x21\x11\x33\x01\x33\x01\x01\x23\
\x03\x1b\x88\xba\xfe\x65\x02\x55\x7a\x01\x6b\xe1\xfe\x53\x01\xd1\
\xeb\x01\xcd\xfe\x33\x03\xa1\x99\xfe\x36\x01\xca\xfd\xf8\xfd\xce\
\x00\xff\xff\x00\xa9\xfe\x99\x05\xa9\x05\xb0\x00\x26\x00\x2c\x00\
\x00\x00\x07\x02\x51\x04\x88\x00\x00\xff\xff\x00\x9c\xfe\x99\x04\
\xa2\x04\x3a\x00\x26\x00\xf4\x00\x00\x00\x07\x02\x51\x03\x81\x00\
\x00\x00\x01\x00\xa8\x00\x00\x07\x84\x05\xb0\x00\x0d\x00\x60\x00\
\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1e\x3e\x59\xb0\x00\x45\
\x58\xb0\x0c\x2f\x1b\xb1\x0c\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x06\
\x2f\x1b\xb1\x06\x12\x3e\x59\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\
\x0a\x12\x3e\x59\xb0\x01\xd0\xb0\x01\x2f\xb2\x2f\x01\x01\x5d\xb0\
\x02\x10\xb1\x04\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x01\
\x10\xb1\x08\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\
\x21\x11\x21\x15\x21\x11\x23\x11\x21\x11\x23\x11\x33\x01\x69\x02\
\xde\x03\x3d\xfd\x83\xc0\xfd\x22\xc1\xc1\x03\x3e\x02\x72\x98\xfa\
\xe8\x02\xa1\xfd\x5f\x05\xb0\x00\x01\x00\x91\x00\x00\x05\x69\x04\
\x3a\x00\x0d\x00\x9d\x00\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\
\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x1a\x3e\x59\
\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x12\x3e\x59\xb0\x00\x45\
\x58\xb0\x0a\x2f\x1b\xb1\x0a\x12\x3e\x59\xb0\x06\x10\xb0\x01\xd0\
\xb0\x01\x2f\xb2\x6f\x01\x01\x5d\xb4\xbf\x01\xcf\x01\x02\x5d\xb2\
\x3f\x01\x01\x71\xb4\xcf\x01\xdf\x01\x02\x71\xb2\x0f\x01\x01\x72\
\xb4\x9f\x01\xaf\x01\x02\x71\xb2\xff\x01\x01\x5d\xb2\x0f\x01\x01\
\x71\xb2\x9f\x01\x01\x5d\xb2\x2f\x01\x01\x5d\xb4\x6f\x01\x7f\x01\
\x02\x72\xb0\x02\x10\xb1\x04\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x01\x10\xb1\x08\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\x30\x31\x01\x21\x11\x21\x15\x21\x11\x23\x11\x21\x11\x23\x11\x33\
\x01\x4b\x01\xf1\x02\x2d\xfe\x8c\xb9\xfe\x0f\xba\xba\x02\x65\x01\
\xd5\x99\xfc\x5f\x01\xce\xfe\x32\x04\x3a\x00\x00\x01\x00\xb0\xfe\
\xdf\x07\xcd\x05\xb0\x00\x17\x00\x6b\xb2\x11\x18\x19\x11\x12\x39\
\x00\xb0\x07\x2f\xb0\x00\x45\x58\xb0\x16\x2f\x1b\xb1\x16\x1e\x3e\
\x59\xb0\x00\x45\x58\xb0\x14\x2f\x1b\xb1\x14\x12\x3e\x59\xb0\x00\
\x45\x58\xb0\x11\x2f\x1b\xb1\x11\x12\x3e\x59\xb2\x01\x16\x07\x11\
\x12\x39\xb0\x01\x2f\xb0\x07\x10\xb1\x08\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb0\x01\x10\xb1\x0e\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x16\x10\xb1\x12\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\x30\x31\x01\x33\x20\x00\x11\x10\x02\x23\x27\x32\x36\x35\
\x26\x26\x23\x23\x11\x23\x11\x21\x11\x23\x11\x21\x04\xff\x76\x01\
\x1c\x01\x3c\xf5\xe4\x02\x91\x90\x01\xcc\xce\x79\xc1\xfd\x32\xc0\
\x04\x4f\x03\x41\xfe\xcf\xfe\xf0\xfe\xf8\xfe\xe7\x93\xc3\xcb\xcb\
\xd4\xfd\x61\x05\x12\xfa\xee\x05\xb0\x00\x01\x00\x91\xfe\xe5\x06\
\xb0\x04\x3a\x00\x18\x00\x6b\xb2\x12\x19\x1a\x11\x12\x39\x00\xb0\
\x08\x2f\xb0\x00\x45\x58\xb0\x17\x2f\x1b\xb1\x17\x1a\x3e\x59\xb0\
\x00\x45\x58\xb0\x15\x2f\x1b\xb1\x15\x12\x3e\x59\xb0\x00\x45\x58\
\xb0\x12\x2f\x1b\xb1\x12\x12\x3e\x59\xb2\x01\x17\x08\x11\x12\x39\
\xb0\x01\x2f\xb0\x08\x10\xb1\x09\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb0\x01\x10\xb1\x0f\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x17\x10\xb1\x13\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\x30\x31\x01\x33\x32\x00\x15\x07\x06\x06\x07\x27\x36\x36\x35\x34\
\x26\x23\x23\x11\x23\x11\x21\x11\x23\x11\x21\x03\xf6\xa0\xf8\x01\
\x22\x03\x14\xd1\x99\x30\x7c\x7b\xbc\xa0\xa4\xb9\xfe\x0e\xba\x03\
\x65\x02\x85\xfe\xfc\xd7\x26\xa3\xe1\x1b\x92\x20\x96\x7d\x92\xa7\
\xfe\x1d\x03\xa1\xfc\x5f\x04\x3a\x00\x00\x02\x00\x71\xff\xe4\x05\
\xa2\x05\xc5\x00\x28\x00\x36\x00\xa0\xb2\x18\x37\x38\x11\x12\x39\
\xb0\x18\x10\xb0\x29\xd0\x00\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\
\x0d\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x1f\x2f\x1b\xb1\x1f\x1e\x3e\
\x59\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\x59\xb0\x00\
\xd0\xb0\x00\x2f\xb2\x02\x04\x1f\x11\x12\x39\xb0\x02\x2f\xb0\x0d\
\x10\xb1\x0e\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\x10\
\xb1\x15\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x02\x10\xb1\
\x2c\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x17\x02\x2c\x11\
\x12\x39\xb2\x26\x2c\x02\x11\x12\x39\xb0\x00\x10\xb1\x28\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x1f\x10\xb1\x33\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x05\x22\x27\x06\x23\x22\x24\
\x02\x35\x35\x34\x12\x36\x33\x17\x22\x06\x15\x15\x14\x12\x33\x32\
\x37\x26\x02\x35\x35\x34\x36\x36\x33\x32\x12\x15\x15\x14\x02\x07\
\x16\x33\x01\x14\x16\x17\x36\x36\x35\x35\x34\x26\x23\x22\x06\x15\
\x05\xa2\xd7\xb3\x8e\xac\xb2\xfe\xe4\x9f\x75\xd2\x84\x01\x76\x94\
\xec\xbf\x46\x38\x79\x84\x68\xbd\x76\xb6\xe6\x6f\x66\x68\x79\xfd\
\x7d\x78\x75\x62\x68\x79\x63\x61\x7a\x1c\x49\x42\xb2\x01\x42\xc4\
\xac\xb1\x01\x22\xa3\xa5\xfe\xd9\xa6\xec\xfe\xd7\x0d\x61\x01\x15\
\xaa\xe3\x9a\xfd\x8d\xfe\xcc\xfd\xeb\x9e\xfe\xf6\x5f\x1a\x02\x34\
\x98\xed\x4a\x48\xe7\x8d\xf9\xb1\xce\xd2\xb2\x00\x02\x00\x6d\xff\
\xeb\x04\x9c\x04\x4f\x00\x24\x00\x2f\x00\xa7\xb2\x04\x30\x31\x11\
\x12\x39\xb0\x04\x10\xb0\x25\xd0\x00\xb0\x00\x45\x58\xb0\x0c\x2f\
\x1b\xb1\x0c\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x1c\x2f\x1b\xb1\x1c\
\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\x59\
\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb2\x02\x04\
\x1c\x11\x12\x39\xb0\x02\x2f\xb0\x0c\x10\xb1\x0d\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x04\x10\xb1\x14\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x02\x10\xb1\x27\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb2\x16\x14\x27\x11\x12\x39\xb0\x00\x10\xb1\x24\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x22\x27\x24\x11\x12\
\x39\xb0\x1c\x10\xb1\x2c\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\x30\x31\x05\x22\x27\x06\x23\x22\x26\x02\x35\x35\x34\x12\x33\x15\
\x22\x06\x15\x15\x14\x16\x33\x32\x37\x26\x11\x35\x34\x36\x33\x32\
\x16\x15\x15\x14\x07\x16\x33\x01\x14\x17\x36\x37\x35\x34\x26\x22\
\x06\x07\x04\x9c\xb2\x8c\x76\x8f\x8c\xe1\x7f\xc5\x9b\x49\x5d\xa9\
\x89\x2e\x2c\xc1\xad\x8f\x8c\xb2\x80\x4f\x61\xfe\x0f\x9f\x66\x03\
\x49\x78\x46\x01\x0c\x39\x42\x95\x01\x12\xa7\x3a\xcd\x01\x0e\x9e\
\xad\x92\x38\xc1\xf0\x0b\xa2\x01\x11\x5e\xc0\xeb\xf9\xce\x62\xe3\
\x9d\x15\x01\xa9\xd6\x74\x73\xba\x75\x82\x9e\x8d\x7a\xff\xff\x00\
\x39\xfe\x99\x04\xf8\x05\xb0\x00\x26\x00\x3c\x00\x00\x00\x07\x02\
\x51\x03\xd7\x00\x00\xff\xff\x00\x29\xfe\x99\x04\x06\x04\x3a\x00\
\x26\x00\x5c\x00\x00\x00\x07\x02\x51\x02\xe5\x00\x00\x00\x01\x00\
\x34\xfe\xa1\x06\x93\x05\xb0\x00\x13\x00\x5d\x00\xb0\x11\x2f\xb0\
\x00\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x1e\x3e\x59\xb0\x00\x45\x58\
\xb0\x0c\x2f\x1b\xb1\x0c\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x13\x2f\
\x1b\xb1\x13\x12\x3e\x59\xb0\x07\x10\xb1\x08\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x00\xd0\xb0\x07\x10\xb0\x05\xd0\xb0\x03\
\xd0\xb0\x02\xd0\xb0\x13\x10\xb1\x0a\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x0e\xd0\x30\x31\x01\x21\x35\x21\x35\x33\x15\x21\
\x15\x21\x11\x21\x11\x33\x11\x33\x03\x23\x11\x21\x01\xab\xfe\x89\
\x01\x77\xc1\x01\x81\xfe\x7f\x02\xce\xc1\x98\x12\xac\xfb\xd6\x05\
\x18\x97\x01\x01\x97\xfb\x85\x05\x13\xfa\xf1\xfe\x00\x01\x5f\x00\
\x01\x00\x1f\xfe\xbf\x05\x16\x04\x3a\x00\x0f\x00\x4d\x00\xb0\x0d\
\x2f\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1a\x3e\x59\xb0\x00\
\x45\x58\xb0\x0f\x2f\x1b\xb1\x0f\x12\x3e\x59\xb0\x03\x10\xb1\x04\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x00\xd0\xb0\x0f\x10\
\xb1\x06\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\xb0\
\x08\xd0\xb0\x06\x10\xb0\x0a\xd0\x30\x31\x01\x21\x35\x21\x15\x23\
\x11\x21\x11\x33\x11\x33\x03\x23\x11\x21\x01\x31\xfe\xee\x02\xc4\
\xf9\x01\xf2\xba\x80\x12\xa5\xfc\xd2\x03\xa3\x97\x97\xfc\xf4\x03\
\xa3\xfc\x5d\xfe\x28\x01\x41\xff\xff\x00\x96\xfe\x99\x05\x67\x05\
\xb0\x00\x26\x00\xe1\x00\x00\x00\x07\x02\x51\x04\x46\x00\x00\xff\
\xff\x00\x67\xfe\x99\x04\x5f\x04\x3b\x00\x26\x00\xf9\x00\x00\x00\
\x07\x02\x51\x03\x3e\x00\x00\x00\x01\x00\x96\x00\x00\x04\xc8\x05\
\xb0\x00\x17\x00\x50\xb2\x04\x18\x19\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x00\x2f\x1b\xb1\x00\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x0a\
\x2f\x1b\xb1\x0a\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\
\x0c\x12\x3e\x59\xb2\x07\x00\x0c\x11\x12\x39\xb0\x07\x2f\xb0\x04\
\xd0\xb0\x07\x10\xb1\x10\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb0\x13\xd0\x30\x31\x01\x11\x16\x16\x33\x11\x33\x11\x36\x37\x11\
\x33\x11\x23\x11\x06\x07\x15\x23\x35\x22\x26\x27\x11\x01\x57\x01\
\x89\xa0\x95\x79\x78\xc1\xc1\x72\x7f\x95\xf8\xef\x04\x05\xb0\xfe\
\x32\x9a\x84\x01\x36\xfe\xd2\x0d\x21\x02\xb6\xfa\x50\x02\x5b\x22\
\x0d\xee\xe8\xd9\xda\x01\xd7\x00\x01\x00\x83\x00\x00\x03\xd9\x04\
\x3b\x00\x16\x00\x50\xb2\x06\x17\x18\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x0b\x2f\x1b\xb1\x0b\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x15\
\x2f\x1b\xb1\x15\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\
\x00\x12\x3e\x59\xb2\x0f\x15\x00\x11\x12\x39\xb0\x0f\x2f\xb1\x07\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\xd0\xb0\x0f\x10\
\xb0\x12\xd0\x30\x31\x21\x23\x11\x06\x07\x15\x23\x35\x26\x26\x27\
\x11\x33\x11\x16\x17\x11\x33\x11\x36\x37\x11\x33\x03\xd9\xba\x46\
\x53\x96\xb0\xbb\x02\xb9\x05\xaf\x96\x54\x45\xba\x01\x88\x13\x09\
\x87\x85\x0d\xcc\xb5\x01\x43\xfe\xb5\xd3\x1a\x01\x18\xfe\xea\x0a\
\x11\x02\x1a\x00\x01\x00\x89\x00\x00\x04\xba\x05\xb0\x00\x11\x00\
\x47\xb2\x05\x12\x13\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x01\x2f\
\x1b\xb1\x01\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\
\x12\x3e\x59\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\x09\x12\x3e\x59\
\xb2\x05\x01\x00\x11\x12\x39\xb0\x05\x2f\xb1\x0e\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\x30\x31\x33\x11\x33\x11\x36\x33\x32\x16\
\x17\x11\x23\x11\x26\x26\x23\x22\x07\x11\x89\xc0\xb9\xcb\xf8\xf2\
\x03\xc0\x01\x89\xa3\xbc\xc8\x05\xb0\xfd\xa4\x35\xd8\xdf\xfe\x2e\
\x01\xcd\x98\x86\x37\xfd\x4c\x00\x02\x00\x3f\xff\xea\x05\xbd\x05\
\xc3\x00\x1d\x00\x25\x00\x67\xb2\x17\x26\x27\x11\x12\x39\xb0\x17\
\x10\xb0\x24\xd0\x00\xb0\x00\x45\x58\xb0\x0f\x2f\x1b\xb1\x0f\x1e\
\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb2\
\x1f\x0f\x00\x11\x12\x39\xb0\x1f\x2f\xb1\x13\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x04\xd0\xb0\x1f\x10\xb0\x0b\xd0\xb0\x00\
\x10\xb1\x18\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0f\x10\
\xb1\x23\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x05\x20\
\x00\x11\x35\x26\x26\x35\x33\x14\x16\x17\x34\x12\x36\x33\x20\x00\
\x11\x15\x21\x15\x14\x16\x33\x32\x37\x17\x06\x06\x01\x21\x35\x34\
\x26\x23\x22\x02\x03\xe9\xfe\xe2\xfe\xb3\x99\xa6\x98\x50\x57\x8e\
\xfd\x96\x01\x02\x01\x1c\xfc\x82\xde\xcc\xb3\xa6\x2f\x40\xd2\xfd\
\xe0\x02\xbe\xb3\xab\x9e\xc2\x16\x01\x51\x01\x29\x5b\x13\xc5\xa2\
\x5a\x7d\x14\xb4\x01\x1f\xa2\xfe\xa3\xfe\xbe\x6c\x5d\xdc\xf7\x53\
\x8f\x2d\x35\x03\x5a\x21\xd9\xe5\xfe\xfd\x00\x00\x02\xff\xde\xff\
\xec\x04\x63\x04\x4e\x00\x19\x00\x21\x00\x75\xb2\x14\x22\x23\x11\
\x12\x39\xb0\x14\x10\xb0\x1b\xd0\x00\xb0\x00\x45\x58\xb0\x0d\x2f\
\x1b\xb1\x0d\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\
\x12\x3e\x59\xb2\x1e\x0d\x00\x11\x12\x39\xb0\x1e\x2f\xb4\xbf\x1e\
\xcf\x1e\x02\x5d\xb1\x11\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb0\x03\xd0\xb0\x1e\x10\xb0\x09\xd0\xb0\x00\x10\xb1\x15\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x17\x0d\x00\x11\x12\x39\xb0\
\x0d\x10\xb1\x1a\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\
\x05\x22\x00\x35\x26\x26\x35\x33\x14\x17\x3e\x02\x33\x32\x12\x11\
\x15\x21\x16\x16\x33\x32\x37\x17\x06\x01\x22\x06\x07\x21\x35\x26\
\x26\x02\xbd\xdc\xfe\xec\x78\x77\x93\x65\x14\x84\xc8\x70\xd3\xea\
\xfd\x23\x04\xb3\x8a\xae\x6f\x71\x88\xfe\xd9\x70\x98\x12\x02\x1e\
\x08\x88\x14\x01\x21\xfa\x1d\xae\x86\x93\x30\x82\xc9\x6e\xfe\xea\
\xfe\xfd\x4d\xa0\xc5\x92\x58\xd1\x03\xca\xa3\x93\x0e\x8d\x9b\x00\
\x01\x00\xa3\xfe\xd6\x04\xcc\x05\xb0\x00\x16\x00\x5f\xb2\x15\x17\
\x18\x11\x12\x39\x00\xb0\x0e\x2f\xb0\x00\x45\x58\xb0\x02\x2f\x1b\
\xb1\x02\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1e\
\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb2\
\x04\x00\x02\x11\x12\x39\xb0\x04\x2f\xb0\x08\xd0\xb0\x0e\x10\xb1\
\x0f\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\x10\xb1\x16\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x21\x23\x11\x33\
\x11\x33\x01\x33\x01\x16\x00\x15\x10\x02\x23\x27\x32\x36\x35\x26\
\x26\x27\x21\x01\x64\xc1\xc1\x85\x02\x01\xe2\xfd\xf8\xf8\x01\x0d\
\xf9\xe6\x02\x90\x90\x02\xc7\xc7\xfe\xec\x05\xb0\xfd\x8f\x02\x71\
\xfd\x88\x16\xfe\xd2\xfa\xfe\xf8\xfe\xe4\x98\xc1\xc9\xca\xd2\x01\
\x00\x00\x01\x00\x9a\xfe\xfe\x04\x19\x04\x3a\x00\x16\x00\x7b\xb2\
\x0d\x17\x18\x11\x12\x39\x00\xb0\x07\x2f\xb0\x00\x45\x58\xb0\x11\
\x2f\x1b\xb1\x11\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x15\x2f\x1b\xb1\
\x15\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x0f\x2f\x1b\xb1\x0f\x12\x3e\
\x59\xb0\x13\xd0\xb0\x13\x2f\xb2\x9f\x13\x01\x5d\xb2\xff\x13\x01\
\x5d\xb2\x9f\x13\x01\x71\xb4\xbf\x13\xcf\x13\x02\x5d\xb2\x2f\x13\
\x01\x5d\xb2\xcf\x13\x01\x71\xb0\x00\xd0\xb0\x07\x10\xb1\x08\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x13\x10\xb1\x0e\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x16\x16\x15\x14\x06\
\x06\x07\x27\x36\x35\x34\x26\x27\x23\x11\x23\x11\x33\x11\x33\x01\
\x33\x02\x7f\xc3\xce\x64\xac\x70\x30\xf8\xad\xa5\xb2\xba\xba\x5b\
\x01\x8a\xe0\x02\x64\x1f\xe2\xb4\x5d\xc5\x7c\x13\x92\x39\xe6\x8a\
\x92\x02\xfe\x33\x04\x3a\xfe\x36\x01\xca\x00\xff\xff\x00\x2f\xfe\
\x9b\x05\xa8\x05\xb0\x00\x26\x00\xdd\x00\x00\x00\x07\x00\x10\x04\
\x74\xff\xbd\xff\xff\x00\x2c\xfe\x9b\x04\xb7\x04\x3a\x00\x26\x00\
\xf2\x00\x00\x00\x07\x00\x10\x03\x83\xff\xbd\x00\x01\x00\xb1\xfe\
\x4b\x04\xfe\x05\xb0\x00\x15\x00\xa9\xb2\x0a\x16\x17\x11\x12\x39\
\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1e\x3e\x59\xb0\x00\
\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1e\x3e\x59\xb0\x00\x45\x58\xb0\
\x08\x2f\x1b\xb1\x08\x14\x3e\x59\xb0\x00\x45\x58\xb0\x13\x2f\x1b\
\xb1\x13\x12\x3e\x59\xb0\x02\xd0\xb0\x02\x2f\xb2\x5f\x02\x01\x5d\
\xb2\xcf\x02\x01\x5d\xb2\x1f\x02\x01\x71\xb4\x6f\x02\x7f\x02\x02\
\x71\xb4\xbf\x02\xcf\x02\x02\x71\xb4\x0f\x02\x1f\x02\x02\x72\xb2\
\xef\x02\x01\x71\xb2\x9f\x02\x01\x71\xb2\x4f\x02\x01\x71\xb2\xff\
\x02\x01\x5d\xb2\xaf\x02\x01\x5d\xb2\x2f\x02\x01\x5d\xb2\x3f\x02\
\x01\x72\xb0\x08\x10\xb1\x0d\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x02\x10\xb1\x11\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\x30\x31\x01\x11\x21\x11\x33\x11\x14\x06\x23\x22\x27\x37\x16\x33\
\x32\x36\x35\x11\x21\x11\x23\x11\x01\x72\x02\xcc\xc0\xab\x9c\x3c\
\x36\x0e\x25\x3d\x41\x48\xfd\x34\xc1\x05\xb0\xfd\x6e\x02\x92\xf9\
\xfd\xa8\xba\x12\x9a\x0e\x67\x5c\x02\xd5\xfd\x7f\x05\xb0\x00\x00\
\x01\x00\x91\xfe\x4b\x03\xf5\x04\x3a\x00\x16\x00\xa1\xb2\x0a\x17\
\x18\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1a\
\x3e\x59\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1a\x3e\x59\xb0\
\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x14\x3e\x59\xb0\x00\x45\x58\
\xb0\x14\x2f\x1b\xb1\x14\x12\x3e\x59\xb0\x02\xd0\xb0\x02\x2f\xb2\
\x6f\x02\x01\x5d\xb4\xbf\x02\xcf\x02\x02\x5d\xb2\x3f\x02\x01\x71\
\xb4\xcf\x02\xdf\x02\x02\x71\xb2\x0f\x02\x01\x72\xb4\x9f\x02\xaf\
\x02\x02\x71\xb2\xff\x02\x01\x5d\xb2\x0f\x02\x01\x71\xb2\x9f\x02\
\x01\x5d\xb2\x2f\x02\x01\x5d\xb4\x6f\x02\x7f\x02\x02\x72\xb0\x08\
\x10\xb1\x0e\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x02\x10\
\xb1\x12\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x11\
\x21\x11\x33\x11\x14\x06\x23\x22\x27\x37\x16\x17\x17\x32\x36\x35\
\x11\x21\x11\x23\x11\x01\x4b\x01\xf1\xb9\xab\x98\x3c\x34\x0f\x11\
\x3c\x14\x42\x48\xfe\x0f\xba\x04\x3a\xfe\x2b\x01\xd5\xfb\x6d\xaa\
\xb2\x12\x93\x07\x05\x01\x68\x5c\x02\x27\xfe\x32\x04\x3a\x00\xff\
\xff\x00\xa9\xfe\x9b\x05\xbb\x05\xb0\x00\x26\x00\x2c\x00\x00\x00\
\x07\x00\x10\x04\x87\xff\xbd\xff\xff\x00\x9c\xfe\x9b\x04\xb4\x04\
\x3a\x00\x26\x00\xf4\x00\x00\x00\x07\x00\x10\x03\x80\xff\xbd\xff\
\xff\x00\xa9\xfe\x9b\x06\xf9\x05\xb0\x00\x26\x00\x31\x00\x00\x00\
\x07\x00\x10\x05\xc5\xff\xbd\xff\xff\x00\x9d\xfe\x9b\x06\x07\x04\
\x3a\x00\x26\x00\xf3\x00\x00\x00\x07\x00\x10\x04\xd3\xff\xbd\x00\
\x02\x00\x5d\xff\xec\x05\x12\x05\xc4\x00\x17\x00\x1f\x00\x61\xb2\
\x08\x20\x21\x11\x12\x39\xb0\x08\x10\xb0\x18\xd0\x00\xb0\x00\x45\
\x58\xb0\x00\x2f\x1b\xb1\x00\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x08\
\x2f\x1b\xb1\x08\x12\x3e\x59\xb2\x0d\x00\x08\x11\x12\x39\xb0\x0d\
\x2f\xb0\x00\x10\xb1\x11\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb0\x08\x10\xb1\x18\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x0d\x10\xb1\x1b\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\
\x01\x20\x00\x11\x15\x14\x02\x04\x23\x20\x00\x11\x35\x21\x35\x10\
\x02\x23\x22\x07\x07\x27\x37\x36\x01\x32\x12\x37\x21\x15\x14\x16\
\x02\x80\x01\x2e\x01\x64\x9c\xfe\xea\xa7\xfe\xe3\xfe\xc1\x03\xf4\
\xf4\xdd\xa5\x8b\x3d\x2f\x16\x9e\x01\x21\xa9\xde\x0f\xfc\xcf\xd3\
\x05\xc4\xfe\x87\xfe\xb1\x54\xc5\xfe\xbf\xb6\x01\x59\x01\x45\x75\
\x07\x01\x02\x01\x1c\x3a\x1a\x8f\x0d\x58\xfa\xc6\x01\x05\xdb\x22\
\xda\xe4\x00\x00\x01\x00\x68\xff\xeb\x04\x2c\x05\xb0\x00\x1b\x00\
\x6a\xb2\x0b\x1c\x1d\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x02\x2f\
\x1b\xb1\x02\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\
\x12\x3e\x59\xb0\x02\x10\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb0\x04\xd0\xb2\x05\x02\x0b\x11\x12\x39\xb0\x05\x2f\xb0\
\x0b\x10\xb0\x10\xd0\xb0\x0b\x10\xb1\x13\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb0\x05\x10\xb1\x19\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x05\x10\xb0\x1b\xd0\x30\x31\x01\x21\x35\x21\x17\
\x01\x16\x16\x15\x14\x04\x23\x22\x26\x26\x35\x33\x14\x16\x33\x32\
\x36\x35\x34\x26\x23\x23\x35\x03\x1d\xfd\x76\x03\x6b\x01\xfe\x6b\
\xd9\xe9\xfe\xf3\xe0\x86\xdb\x76\xc0\x9c\x7b\x89\xa3\xa6\x9e\x8d\
\x05\x12\x9e\x7d\xfe\x1e\x0e\xe7\xc6\xc3\xe8\x69\xbe\x82\x72\x9a\
\x92\x78\x9d\x8e\x97\x00\x01\x00\x69\xfe\x75\x04\x28\x04\x3a\x00\
\x1a\x00\x5d\xb2\x0b\x1b\x1c\x11\x12\x39\x00\xb0\x0b\x2f\xb0\x00\
\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1a\x3e\x59\xb1\x00\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\xd0\xb2\x05\x02\x0b\x11\x12\
\x39\xb0\x05\x2f\xb0\x0b\x10\xb0\x10\xd0\xb0\x0b\x10\xb1\x13\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x05\x10\xb1\x18\x03\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x05\x10\xb0\x1a\xd0\x30\x31\
\x01\x21\x35\x21\x17\x01\x16\x16\x15\x14\x04\x23\x22\x26\x26\x35\
\x33\x14\x16\x33\x32\x36\x35\x10\x25\x23\x35\x03\x0c\xfd\x88\x03\
\x65\x01\xfe\x72\xd4\xe8\xfe\xf4\xde\x84\xd7\x7a\xba\x9e\x7d\x8d\
\xa4\xfe\xc9\xa0\x03\xa1\x99\x76\xfe\x11\x10\xe1\xc5\xc3\xe7\x66\
\xbf\x83\x71\x9f\x95\x79\x01\x22\x08\x97\x00\xff\xff\x00\x3a\xfe\
\x4b\x04\x74\x05\xb0\x00\x26\x00\xb1\x44\x00\x00\x26\x02\x26\xab\
\x40\x00\x07\x02\x54\x00\xf0\x00\x00\xff\xff\x00\x3b\xfe\x4b\x03\
\x96\x04\x3a\x00\x26\x00\xec\x4f\x00\x00\x26\x02\x26\xac\x8e\x01\
\x07\x02\x54\x00\xe1\x00\x00\x00\x08\x00\xb2\x00\x06\x01\x5d\x30\
\x31\xff\xff\x00\x39\xfe\x4b\x05\x0e\x05\xb0\x00\x26\x00\x3c\x00\
\x00\x00\x07\x02\x54\x03\xa7\x00\x00\xff\xff\x00\x29\xfe\x4b\x04\
\x1c\x04\x3a\x00\x26\x00\x5c\x00\x00\x00\x07\x02\x54\x02\xb5\x00\
\x00\x00\x02\x00\x57\x00\x00\x04\x65\x05\xb0\x00\x0a\x00\x13\x00\
\x52\xb2\x04\x14\x15\x11\x12\x39\xb0\x04\x10\xb0\x0d\xd0\x00\xb0\
\x00\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x1e\x3e\x59\xb0\x00\x45\x58\
\xb0\x03\x2f\x1b\xb1\x03\x12\x3e\x59\xb2\x00\x01\x03\x11\x12\x39\
\xb0\x00\x2f\xb0\x03\x10\xb1\x0b\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb0\x00\x10\xb1\x0c\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\x30\x31\x01\x11\x33\x11\x21\x22\x24\x35\x34\x36\x37\x01\x11\
\x21\x22\x06\x15\x14\x16\x17\x03\xa3\xc2\xfd\xdf\xe4\xfe\xf7\xff\
\xe0\x01\x6d\xfe\xa1\x8c\xa1\x9f\x8a\x03\x73\x02\x3d\xfa\x50\xf2\
\xcb\xc7\xeb\x04\xfd\x2a\x02\x38\x96\x80\x82\x9f\x01\x00\x02\x00\
\x59\x00\x00\x06\x67\x05\xb0\x00\x17\x00\x1f\x00\x5c\xb2\x07\x20\
\x21\x11\x12\x39\xb0\x07\x10\xb0\x18\xd0\x00\xb0\x00\x45\x58\xb0\
\x08\x2f\x1b\xb1\x08\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\
\xb1\x00\x12\x3e\x59\xb2\x07\x08\x00\x11\x12\x39\xb0\x07\x2f\xb0\
\x00\x10\xb1\x18\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0a\
\xd0\xb2\x10\x00\x08\x11\x12\x39\xb0\x07\x10\xb1\x19\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x21\x22\x24\x35\x34\x24\x37\
\x21\x11\x33\x11\x37\x36\x36\x37\x36\x27\x33\x17\x16\x07\x06\x06\
\x23\x25\x11\x21\x22\x06\x14\x16\x17\x02\x47\xe5\xfe\xf7\x01\x01\
\xe3\x01\x6a\xc1\x58\x6f\x72\x03\x04\x40\xba\x16\x2f\x03\x04\xe5\
\xc3\xfe\xef\xfe\xa0\x8e\x9e\x98\x85\xf4\xc9\xc6\xed\x03\x02\x3d\
\xfa\xeb\x01\x02\x92\x7b\xa2\xa7\x44\x97\x6e\xc3\xe8\x9d\x02\x38\
\x97\xfe\x9f\x04\x00\x00\x02\x00\x64\xff\xe7\x06\x6e\x06\x18\x00\
\x1f\x00\x2b\x00\x86\xb2\x1a\x2c\x2d\x11\x12\x39\xb0\x1a\x10\xb0\
\x2a\xd0\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x20\x3e\x59\
\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1a\x3e\x59\xb0\x00\x45\
\x58\xb0\x18\x2f\x1b\xb1\x18\x12\x3e\x59\xb0\x00\x45\x58\xb0\x1c\
\x2f\x1b\xb1\x1c\x12\x3e\x59\xb2\x05\x03\x18\x11\x12\x39\xb0\x18\
\x10\xb1\x0b\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x11\x03\
\x18\x11\x12\x39\xb2\x1a\x03\x18\x11\x12\x39\xb0\x03\x10\xb1\x22\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x1c\x10\xb1\x28\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x13\x10\x12\x33\x32\
\x17\x11\x33\x11\x06\x16\x33\x36\x36\x37\x36\x27\x37\x16\x16\x07\
\x0e\x02\x23\x06\x27\x06\x23\x22\x02\x35\x01\x26\x23\x22\x06\x15\
\x14\x16\x33\x32\x37\x27\x64\xe2\xc4\xb7\x6a\xb9\x02\x5f\x4e\x89\
\x97\x04\x04\x41\xb3\x1c\x29\x02\x02\x79\xd9\x89\xf2\x4e\x6c\xdb\
\xc0\xe4\x02\xc7\x52\xa1\x87\x94\x91\x88\xa7\x53\x05\x02\x09\x01\
\x08\x01\x3d\x83\x02\x4d\xfb\x41\x5f\x78\x02\xd0\xbd\xba\xd8\x01\
\x66\xc7\x66\xa9\xf9\x84\x04\xba\xb6\x01\x1b\xf4\x01\x31\x86\xdf\
\xde\xad\xbf\x93\x3e\x00\x01\x00\x36\xff\xe3\x05\xd5\x05\xb0\x00\
\x27\x00\x66\xb2\x10\x28\x29\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\
\x09\x2f\x1b\xb1\x09\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x21\x2f\x1b\
\xb1\x21\x12\x3e\x59\xb2\x01\x28\x09\x11\x12\x39\xb0\x01\x2f\xb1\
\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x09\x10\xb1\x07\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x0f\x00\x01\x11\x12\
\x39\xb0\x21\x10\xb1\x15\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb2\x1a\x21\x09\x11\x12\x39\x30\x31\x13\x35\x33\x36\x36\x35\x34\
\x21\x21\x35\x21\x16\x16\x15\x14\x07\x16\x13\x15\x14\x16\x33\x36\
\x36\x37\x36\x27\x33\x17\x16\x07\x06\x02\x23\x04\x03\x35\x34\x26\
\x27\xfe\x9b\x9f\x93\xfe\xcb\xfe\xa0\x01\x6b\xef\xfc\xed\xdb\x05\
\x53\x41\x74\x86\x04\x04\x41\xba\x17\x30\x03\x04\xf6\xc7\xfe\xbd\
\x0f\x87\x75\x02\x79\x9e\x02\x7b\x83\xfb\x9e\x01\xd1\xc9\xe8\x62\
\x45\xfe\xfc\x50\x4f\x5b\x02\xce\xb9\xbb\xd8\x58\xbb\x80\xfd\xfe\
\xd7\x08\x01\x4d\x40\x78\x90\x01\x00\x00\x01\x00\x31\xff\xe3\x04\
\xe8\x04\x3a\x00\x27\x00\x63\xb2\x0f\x28\x29\x11\x12\x39\x00\xb0\
\x00\x45\x58\xb0\x1f\x2f\x1b\xb1\x1f\x1a\x3e\x59\xb0\x00\x45\x58\
\xb0\x0e\x2f\x1b\xb1\x0e\x12\x3e\x59\xb1\x02\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb2\x07\x0e\x1f\x11\x12\x39\xb2\x17\x28\x1f\
\x11\x12\x39\xb0\x17\x2f\xb1\x14\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb0\x1f\x10\xb1\x1d\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb2\x25\x14\x17\x11\x12\x39\x30\x31\x25\x06\x33\x36\x36\x37\
\x36\x27\x33\x16\x16\x07\x06\x06\x23\x06\x26\x27\x35\x34\x23\x23\
\x27\x33\x36\x36\x35\x34\x26\x23\x21\x27\x21\x16\x16\x15\x14\x07\
\x16\x17\x02\xe7\x02\x5f\x70\x76\x03\x04\x42\xb4\x2d\x18\x01\x04\
\xe7\xb8\x87\x89\x07\xd8\xcd\x02\xc0\x7a\x6e\x7d\x75\xfe\xfb\x06\
\x01\x18\xc4\xdc\xbc\xb6\x04\xd5\x58\x02\x9b\x89\x99\xa6\x86\x80\
\x39\xcd\xf0\x03\x70\x83\x47\x9d\x96\x01\x57\x4a\x55\x5d\x96\x03\
\xa7\x98\x9d\x4a\x34\xb2\x00\x00\x01\x00\x52\xfe\xd7\x03\xf5\x05\
\xaf\x00\x21\x00\x60\xb2\x20\x22\x23\x11\x12\x39\x00\xb0\x17\x2f\
\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\x09\x1e\x3e\x59\xb0\x00\x45\
\x58\xb0\x1a\x2f\x1b\xb1\x1a\x12\x3e\x59\xb2\x01\x22\x09\x11\x12\
\x39\xb0\x01\x2f\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb0\x09\x10\xb1\x07\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\
\x0f\x00\x01\x11\x12\x39\xb0\x1a\x10\xb0\x12\xb0\x0a\x2b\x58\xd8\
\x1b\xdc\x59\x30\x31\x13\x35\x33\x36\x36\x35\x10\x21\x21\x35\x21\
\x16\x16\x15\x14\x07\x16\x13\x15\x33\x15\x14\x06\x07\x27\x36\x37\
\x23\x26\x27\x35\x34\x26\x23\xaf\xa9\xa4\x9b\xfe\xca\xfe\xf1\x01\
\x21\xe8\xf4\xe5\xde\x04\xa9\x61\x4d\x6a\x51\x0e\x6b\x3c\x03\x92\
\x77\x02\x79\x97\x01\x7d\x85\x01\x05\x97\x03\xd2\xc9\xe2\x64\x46\
\xfe\xf8\xa9\x94\x61\xc8\x40\x48\x73\x6e\x34\xab\x8f\x7e\x8d\x00\
\x01\x00\x79\xfe\xc7\x03\xd9\x04\x3a\x00\x20\x00\x60\xb2\x20\x21\
\x22\x11\x12\x39\x00\xb0\x17\x2f\xb0\x00\x45\x58\xb0\x08\x2f\x1b\
\xb1\x08\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x1a\x2f\x1b\xb1\x1a\x12\
\x3e\x59\xb2\x01\x21\x08\x11\x12\x39\xb0\x01\x2f\xb1\x00\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x08\x10\xb1\x06\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x0f\x00\x01\x11\x12\x39\xb0\x1a\
\x10\xb0\x12\xb0\x0a\x2b\x58\xd8\x1b\xdc\x59\x30\x31\x13\x27\x33\
\x36\x35\x34\x23\x21\x35\x21\x16\x17\x16\x15\x14\x07\x16\x17\x15\
\x33\x15\x14\x06\x07\x27\x36\x37\x23\x26\x27\x35\x34\x23\xc2\x01\
\xdb\xe9\xf5\xfe\xe9\x01\x27\xdd\x6c\x56\xbe\xbd\x01\x9a\x62\x4d\
\x69\x54\x0d\x67\x33\x02\xda\x01\xb8\x97\x02\xa1\xb2\x96\x03\x67\
\x53\x84\xa1\x49\x35\xca\x4c\x94\x61\xca\x3e\x48\x74\x7d\x21\x85\
\x5e\xb4\x00\x00\x01\x00\x44\xff\xeb\x07\x70\x05\xb0\x00\x23\x00\
\x65\xb2\x00\x24\x25\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x0e\x2f\
\x1b\xb1\x0e\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x20\x2f\x1b\xb1\x20\
\x12\x3e\x59\xb0\x00\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x12\x3e\x59\
\xb0\x0e\x10\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x07\x10\xb1\x08\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x20\
\x10\xb1\x13\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x19\x0e\
\x20\x11\x12\x39\x30\x31\x01\x21\x03\x02\x02\x06\x07\x23\x35\x37\
\x3e\x02\x37\x13\x21\x11\x14\x16\x33\x32\x36\x37\x36\x27\x37\x16\
\x16\x07\x06\x02\x07\x07\x22\x26\x35\x04\x27\xfe\x1a\x1a\x0f\x59\
\xac\x90\x3f\x28\x5d\x64\x34\x0b\x1e\x03\x5f\x59\x4f\x82\x97\x04\
\x02\x3f\xba\x1c\x29\x02\x03\xe9\xc3\x2e\xb3\xb7\x05\x12\xfd\xbf\
\xfe\xde\xfe\xdc\x89\x02\x9d\x02\x07\x6b\xea\xf3\x02\xc2\xfb\xac\
\x60\x74\xcd\xbc\xc0\xd2\x01\x66\xc7\x66\xec\xfe\xda\x12\x02\xba\
\xb4\x00\x01\x00\x3f\xff\xeb\x06\x3a\x04\x3a\x00\x21\x00\x65\xb2\
\x20\x22\x23\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\
\x0c\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x1e\x2f\x1b\xb1\x1e\x12\x3e\
\x59\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x12\x3e\x59\xb0\x0c\
\x10\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x06\x10\
\xb1\x07\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x1e\x10\xb1\
\x11\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x16\x1e\x0c\x11\
\x12\x39\x30\x31\x01\x21\x03\x02\x06\x07\x23\x35\x37\x36\x36\x37\
\x13\x21\x11\x14\x16\x33\x32\x36\x37\x36\x27\x33\x17\x16\x07\x0e\
\x02\x23\x22\x26\x27\x03\x31\xfe\xbb\x17\x14\x9c\xa5\x41\x36\x55\
\x4d\x0d\x17\x02\xaf\x5a\x4f\x6c\x7b\x04\x04\x41\xb3\x16\x30\x03\
\x02\x6c\xbe\x78\xae\xb3\x01\x03\xa1\xfe\x5a\xfe\xeb\xe4\x02\xa3\
\x04\x0a\xa7\xd3\x02\x0f\xfd\x21\x60\x79\xb7\xab\xb2\xcb\x50\xb1\
\x7c\x9a\xe6\x79\xb8\xb1\x00\x00\x01\x00\xa9\xff\xe7\x07\x71\x05\
\xb0\x00\x1d\x00\xb0\xb2\x14\x1e\x1f\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x00\x2f\x1b\xb1\x00\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x19\
\x2f\x1b\xb1\x19\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x11\x2f\x1b\xb1\
\x11\x12\x3e\x59\xb0\x00\x45\x58\xb0\x17\x2f\x1b\xb1\x17\x12\x3e\
\x59\xb0\x11\x10\xb1\x04\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb2\x0a\x00\x11\x11\x12\x39\xb0\x17\x10\xb0\x1c\xd0\xb0\x1c\x2f\
\xb2\xef\x1c\x01\x71\xb2\x5f\x1c\x01\x5d\xb2\xcf\x1c\x01\x5d\xb2\
\x1f\x1c\x01\x71\xb4\x6f\x1c\x7f\x1c\x02\x71\xb4\xbf\x1c\xcf\x1c\
\x02\x71\xb2\x9f\x1c\x01\x71\xb2\x4f\x1c\x01\x71\xb2\xff\x1c\x01\
\x5d\xb2\xaf\x1c\x01\x5d\xb2\x2f\x1c\x01\x5d\xb4\x0f\x1c\x1f\x1c\
\x02\x72\xb2\x3f\x1c\x01\x72\xb1\x15\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\x30\x31\x01\x11\x14\x16\x33\x36\x36\x37\x36\x27\x37\
\x16\x16\x07\x0e\x02\x23\x06\x26\x27\x11\x21\x11\x23\x11\x33\x11\
\x21\x11\x04\xe9\x5d\x4a\x86\x94\x04\x04\x42\xbb\x1b\x2b\x02\x02\
\x7b\xd8\x8a\xab\xb5\x08\xfd\x42\xc1\xc1\x02\xbe\x05\xb0\xfb\xac\
\x65\x6f\x02\xcd\xba\xb7\xdb\x01\x62\xca\x67\xa8\xfb\x83\x04\xb8\
\xbb\x01\x27\xfd\x7f\x05\xb0\xfd\x6e\x02\x92\x00\x01\x00\x90\xff\
\xe7\x06\x4d\x04\x3a\x00\x1c\x00\xa5\xb2\x1b\x1d\x1e\x11\x12\x39\
\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\x59\xb0\x00\
\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1a\x3e\x59\xb0\x00\x45\x58\xb0\
\x19\x2f\x1b\xb1\x19\x12\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\
\xb1\x02\x12\x3e\x59\xb0\x07\xd0\xb0\x07\x2f\xb2\x6f\x07\x01\x5d\
\xb4\xbf\x07\xcf\x07\x02\x5d\xb2\x3f\x07\x01\x71\xb4\xcf\x07\xdf\
\x07\x02\x71\xb2\x0f\x07\x01\x72\xb4\x9f\x07\xaf\x07\x02\x71\xb2\
\xff\x07\x01\x5d\xb2\x0f\x07\x01\x71\xb2\x9f\x07\x01\x5d\xb2\x2f\
\x07\x01\x5d\xb4\x6f\x07\x7f\x07\x02\x72\xb1\x00\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x19\x10\xb1\x0d\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb2\x12\x19\x08\x11\x12\x39\x30\x31\x01\x21\
\x11\x23\x11\x33\x11\x21\x11\x33\x11\x14\x16\x33\x36\x36\x37\x36\
\x27\x33\x17\x16\x07\x06\x02\x23\x06\x26\x27\x03\x43\xfe\x06\xb9\
\xb9\x01\xfa\xb9\x5c\x4d\x6c\x7c\x04\x04\x41\xb2\x17\x30\x03\x04\
\xe6\xbb\xa7\xb3\x08\x01\xcd\xfe\x33\x04\x3a\xfe\x2a\x01\xd6\xfd\
\x21\x64\x75\x02\xb5\xab\xac\xd1\x53\xb1\x79\xea\xfe\xf1\x04\xb7\
\xbb\x00\x01\x00\x76\xff\xeb\x04\xa0\x05\xc5\x00\x22\x00\x49\xb2\
\x15\x23\x24\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\
\x09\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\
\x59\xb0\x09\x10\xb1\x0e\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb0\x00\x10\xb1\x16\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\
\x1b\x00\x09\x11\x12\x39\x30\x31\x05\x22\x24\x02\x27\x11\x34\x12\
\x24\x33\x32\x17\x07\x26\x23\x22\x02\x15\x15\x14\x16\x16\x33\x36\
\x36\x37\x36\x27\x33\x17\x16\x07\x0e\x02\x02\xb9\xa4\xfe\xf8\x95\
\x02\x94\x01\x0a\xa5\xdc\x87\x3b\x86\xa2\xac\xd7\x62\xb0\x71\x8d\
\x96\x03\x03\x35\xba\x26\x13\x01\x02\x7b\xde\x15\x9b\x01\x18\xad\
\x01\x10\xaf\x01\x1e\x9d\x58\x8a\x44\xfe\xfe\xd2\xfe\x83\xd5\x75\
\x02\x99\x86\x9a\xcf\xb3\x5b\x5b\x88\xc9\x6d\x00\x01\x00\x65\xff\
\xeb\x03\xc7\x04\x4e\x00\x1e\x00\x46\xb2\x13\x1f\x20\x11\x12\x39\
\x00\xb0\x00\x45\x58\xb0\x13\x2f\x1b\xb1\x13\x1a\x3e\x59\xb0\x00\
\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x12\x3e\x59\xb1\x00\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x05\x0b\x13\x11\x12\x39\xb0\x13\
\x10\xb1\x18\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x25\
\x36\x36\x37\x34\x27\x33\x16\x07\x06\x06\x23\x22\x00\x35\x35\x34\
\x36\x36\x33\x32\x17\x07\x26\x23\x22\x06\x15\x15\x14\x16\x02\x51\
\x60\x5a\x02\x14\xb2\x1c\x01\x04\xc4\xad\xdc\xfe\xf0\x76\xd6\x8b\
\xb9\x60\x2c\x63\x8a\x83\x9b\xa6\x82\x02\x50\x59\x7a\x72\x96\x56\
\x99\xa9\x01\x32\xf7\x1e\x97\xf9\x8c\x42\x90\x3a\xdc\xb3\x1f\xab\
\xdb\x00\x01\x00\x23\xff\xe7\x05\x47\x05\xb0\x00\x18\x00\x4f\xb2\
\x05\x19\x1a\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\
\x02\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x15\x2f\x1b\xb1\x15\x12\x3e\
\x59\xb0\x02\x10\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb0\x04\xd0\xb0\x05\xd0\xb0\x15\x10\xb1\x09\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb2\x0e\x02\x15\x11\x12\x39\x30\x31\x01\x21\
\x35\x21\x15\x21\x11\x14\x16\x33\x36\x36\x12\x27\x37\x16\x16\x07\
\x0e\x02\x23\x06\x26\x27\x01\xfe\xfe\x25\x04\x80\xfe\x1c\x5c\x4c\
\x86\x94\x08\x42\xba\x1b\x2b\x03\x02\x79\xd9\x89\xaa\xb7\x08\x05\
\x12\x9e\x9e\xfc\x48\x60\x72\x02\xd0\x01\x6e\xdb\x01\x62\xca\x67\
\xa9\xf9\x84\x04\xb7\xbc\x00\x00\x01\x00\x46\xff\xe7\x04\xb7\x04\
\x3a\x00\x18\x00\x4f\xb2\x16\x19\x1a\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x02\x2f\x1b\xb1\x02\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x15\
\x2f\x1b\xb1\x15\x12\x3e\x59\xb0\x02\x10\xb1\x00\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x04\xd0\xb0\x05\xd0\xb0\x15\x10\xb1\
\x09\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x0e\x15\x02\x11\
\x12\x39\x30\x31\x01\x21\x35\x21\x15\x21\x11\x14\x16\x33\x36\x36\
\x37\x36\x27\x33\x16\x16\x07\x06\x06\x23\x06\x26\x27\x01\xac\xfe\
\x9a\x03\x8b\xfe\x95\x5e\x4d\x71\x77\x03\x04\x40\xb2\x2a\x1b\x01\
\x04\xe8\xb9\xaa\xb3\x08\x03\xa4\x96\x96\xfd\xb5\x63\x74\x02\x9d\
\x89\x97\xae\x7d\x8c\x3c\xd0\xef\x04\xb9\xb9\x00\x01\x00\x96\xff\
\xec\x04\xff\x05\xc5\x00\x29\x00\x72\xb2\x24\x2a\x2b\x11\x12\x39\
\x00\xb0\x00\x45\x58\xb0\x16\x2f\x1b\xb1\x16\x1e\x3e\x59\xb0\x00\
\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x12\x3e\x59\xb1\x03\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0b\x10\xb0\x06\xd0\xb2\x25\x0b\
\x16\x11\x12\x39\xb0\x25\x2f\xb2\xcf\x25\x01\x5d\xb2\x9f\x25\x01\
\x71\xb1\x26\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x10\x26\
\x25\x11\x12\x39\xb0\x16\x10\xb0\x1b\xd0\xb0\x16\x10\xb1\x1e\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x14\x16\x33\x32\
\x36\x35\x33\x14\x06\x06\x23\x20\x24\x35\x34\x25\x26\x26\x35\x34\
\x24\x21\x32\x16\x16\x15\x23\x34\x26\x23\x22\x06\x15\x14\x16\x17\
\x33\x15\x23\x06\x06\x01\x58\xcf\xb0\x9b\xcc\xc1\x8d\xfe\x9d\xfe\
\xfb\xfe\xc4\x01\x14\x78\x86\x01\x25\x01\x06\x93\xf5\x8c\xc1\xc1\
\x92\xa7\xc2\xad\xa3\xc4\xc4\xb1\xb5\x01\x92\x78\x92\x98\x74\x83\
\xbe\x67\xe5\xc5\xff\x56\x30\xa6\x65\xc4\xdb\x65\xba\x75\x67\x8f\
\x88\x76\x75\x7d\x02\x9e\x02\x7e\x00\xff\xff\x00\x2f\xfe\x4b\x05\
\xac\x05\xb0\x00\x26\x00\xdd\x00\x00\x00\x07\x02\x54\x04\x45\x00\
\x00\xff\xff\x00\x2c\xfe\x4b\x04\xbb\x04\x3a\x00\x26\x00\xf2\x00\
\x00\x00\x07\x02\x54\x03\x54\x00\x00\x00\x02\x00\x6f\x04\x70\x02\
\xc9\x05\xd6\x00\x05\x00\x0d\x00\x23\x00\xb0\x0b\x2f\xb0\x07\xd0\
\xb0\x07\x2f\xb0\x01\xd0\xb0\x01\x2f\xb0\x0b\x10\xb0\x04\xd0\xb0\
\x04\x2f\xb0\x05\xd0\x19\xb0\x05\x2f\x18\x30\x31\x01\x13\x33\x15\
\x03\x23\x01\x33\x15\x16\x17\x07\x26\x35\x01\x91\x74\xc4\xdf\x59\
\xfe\xde\xa8\x03\x50\x49\xb2\x04\x94\x01\x42\x15\xfe\xc3\x01\x52\
\x5b\x7b\x55\x3b\x5f\xbb\x00\xff\xff\x00\x25\x02\x1f\x02\x0d\x02\
\xb6\x00\x06\x00\x11\x00\x00\xff\xff\x00\x25\x02\x1f\x02\x0d\x02\
\xb6\x00\x06\x00\x11\x00\x00\xff\xff\x00\xa3\x02\x8b\x04\x8d\x03\
\x22\x00\x46\x01\xaf\xd9\x00\x4c\xcd\x40\x00\xff\xff\x00\x91\x02\
\x8b\x05\xc9\x03\x22\x00\x46\x01\xaf\x84\x00\x66\x66\x40\x00\x00\
\x02\x00\x0d\xfe\x6b\x03\xa1\x00\x00\x00\x03\x00\x07\x00\x08\x00\
\xb2\x05\x02\x03\x2b\x30\x31\x01\x21\x35\x21\x35\x21\x35\x21\x03\
\xa1\xfc\x6c\x03\x94\xfc\x6c\x03\x94\xfe\x6b\x97\x67\x97\x00\x00\
\x01\x00\x60\x04\x31\x01\x78\x06\x13\x00\x08\x00\x21\xb2\x08\x09\
\x0a\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x20\
\x3e\x59\xb2\x05\x09\x00\x11\x12\x39\xb0\x05\x2f\x30\x31\x01\x17\
\x06\x07\x15\x23\x35\x34\x36\x01\x0e\x6a\x5d\x03\xb8\x61\x06\x13\
\x48\x7f\x93\x88\x74\x66\xc8\x00\x01\x00\x30\x04\x16\x01\x47\x06\
\x00\x00\x08\x00\x21\xb2\x08\x09\x0a\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x04\x2f\x1b\xb1\x04\x20\x3e\x59\xb2\x00\x09\x04\x11\x12\
\x39\xb0\x00\x2f\x30\x31\x13\x27\x36\x37\x35\x33\x15\x06\x06\x99\
\x69\x5d\x03\xb7\x01\x61\x04\x16\x48\x82\x90\x90\x82\x64\xc7\x00\
\x01\x00\x24\xfe\xe5\x01\x3b\x00\xb5\x00\x08\x00\x1f\xb2\x08\x09\
\x0a\x11\x12\x39\x00\xb0\x09\x2f\xb1\x04\x05\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb0\x00\xd0\xb0\x00\x2f\x30\x31\x13\x27\x36\x37\
\x35\x33\x15\x14\x06\x8d\x69\x5b\x03\xb9\x63\xfe\xe5\x49\x7f\x92\
\x76\x64\x65\xca\x00\x00\x01\x00\x4f\x04\x16\x01\x67\x06\x00\x00\
\x08\x00\x0c\x00\xb0\x08\x2f\xb0\x04\xd0\xb0\x04\x2f\x30\x31\x01\
\x15\x16\x17\x07\x26\x26\x27\x35\x01\x06\x04\x5d\x6a\x4d\x5f\x02\
\x06\x00\x93\x90\x7f\x48\x40\xc2\x61\x87\x00\xff\xff\x00\x68\x04\
\x31\x02\xbb\x06\x13\x00\x26\x01\x84\x08\x00\x00\x07\x01\x84\x01\
\x43\x00\x00\xff\xff\x00\x3c\x04\x16\x02\x86\x06\x00\x00\x26\x01\
\x85\x0c\x00\x00\x07\x01\x85\x01\x3f\x00\x00\x00\x02\x00\x24\xfe\
\xd3\x02\x64\x00\xf6\x00\x08\x00\x11\x00\x31\xb2\x0a\x12\x13\x11\
\x12\x39\xb0\x0a\x10\xb0\x05\xd0\x00\xb0\x12\x2f\xb1\x04\x05\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x00\xd0\xb0\x00\x2f\xb0\x09\
\xd0\xb0\x09\x2f\xb0\x04\x10\xb0\x0d\xd0\x30\x31\x13\x27\x36\x37\
\x35\x33\x15\x14\x06\x17\x27\x36\x37\x35\x33\x15\x14\x06\x8d\x69\
\x5b\x03\xb9\x63\xdd\x69\x5b\x03\xba\x61\xfe\xd3\x48\x89\x99\xb9\
\xa4\x6c\xd3\x40\x48\x89\x99\xb9\xa4\x6b\xd1\x00\x01\x00\x46\x00\
\x00\x04\x24\x05\xb0\x00\x0b\x00\x4c\x00\xb0\x00\x45\x58\xb0\x08\
\x2f\x1b\xb1\x08\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\
\x06\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1a\x3e\
\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb0\x0a\
\x10\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\xd0\
\xb0\x05\xd0\x30\x31\x01\x21\x11\x23\x11\x21\x35\x21\x11\x33\x11\
\x21\x04\x24\xfe\x6c\xba\xfe\x70\x01\x90\xba\x01\x94\x03\xa1\xfc\
\x5f\x03\xa1\x99\x01\x76\xfe\x8a\x00\x00\x01\x00\x57\xfe\x60\x04\
\x34\x05\xb0\x00\x13\x00\x7e\x00\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\
\xb1\x0c\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1a\
\x3e\x59\xb0\x00\x45\x58\xb0\x0e\x2f\x1b\xb1\x0e\x1a\x3e\x59\xb0\
\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x14\x3e\x59\xb0\x00\x45\x58\
\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb0\x00\x45\x58\xb0\x04\x2f\
\x1b\xb1\x04\x12\x3e\x59\xb1\x06\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb0\x0e\x10\xb1\x08\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x09\xd0\xb0\x10\xd0\xb0\x11\xd0\xb0\x06\x10\xb0\x12\xd0\
\xb0\x13\xd0\x30\x31\x21\x21\x11\x23\x11\x21\x35\x21\x11\x21\x35\
\x21\x11\x33\x11\x21\x15\x21\x11\x21\x04\x34\xfe\x6a\xba\xfe\x73\
\x01\x8d\xfe\x73\x01\x8d\xba\x01\x96\xfe\x6a\x01\x96\xfe\x60\x01\
\xa0\x97\x03\x0a\x99\x01\x76\xfe\x8a\x99\xfc\xf6\x00\x00\x01\x00\
\x8a\x02\x17\x02\x22\x03\xcb\x00\x0d\x00\x17\xb2\x0a\x0e\x0f\x11\
\x12\x39\x00\xb0\x03\x2f\xb0\x0a\xb0\x0a\x2b\x58\xd8\x1b\xdc\x59\
\x30\x31\x13\x34\x36\x33\x32\x16\x15\x15\x14\x06\x23\x22\x26\x35\
\x8a\x6f\x5c\x5b\x72\x6e\x5e\x5d\x6f\x03\x04\x57\x70\x6d\x5d\x25\
\x57\x6e\x6f\x58\x00\xff\xff\x00\x94\xff\xf5\x03\x2f\x00\xd1\x00\
\x26\x00\x12\x04\x00\x00\x07\x00\x12\x01\xb9\x00\x00\xff\xff\x00\
\x94\xff\xf5\x04\xce\x00\xd1\x00\x26\x00\x12\x04\x00\x00\x27\x00\
\x12\x01\xb9\x00\x00\x00\x07\x00\x12\x03\x58\x00\x00\x00\x01\x00\
\x52\x02\x02\x01\x2c\x02\xd5\x00\x0b\x00\x19\xb2\x03\x0c\x0d\x11\
\x12\x39\x00\xb0\x03\x2f\xb1\x09\x05\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\x30\x31\x13\x34\x36\x33\x32\x16\x15\x14\x06\x23\x22\x26\
\x52\x36\x36\x36\x38\x38\x36\x36\x36\x02\x6b\x2d\x3d\x3d\x2d\x2d\
\x3c\x3c\x00\x00\x06\x00\x44\xff\xeb\x07\x57\x05\xc5\x00\x15\x00\
\x23\x00\x27\x00\x35\x00\x43\x00\x51\x00\xbc\xb2\x02\x52\x53\x11\
\x12\x39\xb0\x02\x10\xb0\x1b\xd0\xb0\x02\x10\xb0\x26\xd0\xb0\x02\
\x10\xb0\x28\xd0\xb0\x02\x10\xb0\x36\xd0\xb0\x02\x10\xb0\x49\xd0\
\x00\xb0\x00\x45\x58\xb0\x19\x2f\x1b\xb1\x19\x1e\x3e\x59\xb0\x00\
\x45\x58\xb0\x12\x2f\x1b\xb1\x12\x12\x3e\x59\xb0\x03\xd0\xb0\x03\
\x2f\xb0\x07\xd0\xb0\x07\x2f\xb0\x12\x10\xb0\x0e\xd0\xb0\x0e\x2f\
\xb0\x19\x10\xb0\x20\xd0\xb0\x20\x2f\xb2\x24\x12\x19\x11\x12\x39\
\xb0\x24\x2f\xb2\x26\x19\x12\x11\x12\x39\xb0\x26\x2f\xb0\x12\x10\
\xb1\x2b\x04\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\xb1\
\x32\x04\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x2b\x10\xb0\x39\
\xd0\xb0\x32\x10\xb0\x40\xd0\xb0\x20\x10\xb1\x47\x04\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x19\x10\xb1\x4e\x04\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\x30\x31\x01\x34\x36\x33\x32\x17\x36\x33\x32\
\x16\x15\x15\x14\x06\x23\x22\x27\x06\x23\x22\x26\x35\x01\x34\x36\
\x33\x32\x16\x15\x15\x14\x06\x23\x22\x26\x35\x01\x27\x01\x17\x03\
\x14\x16\x33\x32\x36\x35\x35\x34\x26\x23\x22\x06\x15\x05\x14\x16\
\x33\x32\x36\x35\x35\x34\x26\x23\x22\x06\x15\x01\x14\x16\x33\x32\
\x36\x35\x35\x34\x26\x23\x22\x06\x15\x03\x37\xa7\x83\x98\x4d\x4f\
\x97\x83\xa8\xa7\x82\x99\x4f\x4c\x97\x82\xaa\xfd\x0d\xa7\x83\x84\
\xa7\xa5\x84\x82\xaa\x01\x69\x68\x02\xc7\x68\xb3\x58\x4a\x48\x56\
\x57\x49\x47\x59\x01\xcb\x58\x49\x48\x56\x57\x49\x48\x57\xfb\x42\
\x58\x4a\x47\x57\x56\x4a\x48\x58\x01\x65\x83\xa9\x79\x79\xa8\x8b\
\x47\x83\xa9\x78\x78\xa7\x8b\x03\x7b\x83\xaa\xaa\x88\x48\x81\xaa\
\xa7\x8b\xfc\x1c\x42\x04\x72\x42\xfc\x37\x4f\x65\x63\x55\x4a\x4f\
\x64\x63\x54\x4a\x4f\x65\x66\x52\x4a\x4f\x64\x64\x53\x02\xea\x4e\
\x65\x62\x55\x49\x4e\x66\x65\x53\x00\x00\x01\x00\x6c\x00\x99\x02\
\x20\x03\xb5\x00\x06\x00\x10\x00\xb0\x05\x2f\xb2\x02\x07\x05\x11\
\x12\x39\xb0\x02\x2f\x30\x31\x01\x01\x23\x01\x35\x01\x33\x01\x1e\
\x01\x02\x8d\xfe\xd9\x01\x27\x8d\x02\x26\xfe\x73\x01\x84\x13\x01\
\x85\x00\x01\x00\x59\x00\x98\x02\x0e\x03\xb5\x00\x06\x00\x10\x00\
\xb0\x00\x2f\xb2\x03\x07\x00\x11\x12\x39\xb0\x03\x2f\x30\x31\x13\
\x01\x15\x01\x23\x01\x01\xe7\x01\x27\xfe\xd9\x8e\x01\x02\xfe\xfe\
\x03\xb5\xfe\x7b\x13\xfe\x7b\x01\x8e\x01\x8f\x00\x01\x00\x3b\x00\
\x6e\x03\x6a\x05\x22\x00\x03\x00\x09\x00\xb0\x00\x2f\xb0\x02\x2f\
\x30\x31\x37\x27\x01\x17\xa3\x68\x02\xc7\x68\x6e\x42\x04\x72\x42\
\x00\xff\xff\x00\x36\x02\x9b\x02\xbb\x05\xb0\x03\x07\x02\x20\x00\
\x00\x02\x9b\x00\x13\x00\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\x09\
\x1e\x3e\x59\xb0\x0d\xd0\x30\x31\x00\x00\x01\x00\x7a\x02\x8b\x02\
\xf8\x05\xba\x00\x0f\x00\x54\xb2\x0a\x10\x11\x11\x12\x39\x00\xb0\
\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1e\x3e\x59\xb0\x00\x45\x58\
\xb0\x03\x2f\x1b\xb1\x03\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x0d\x2f\
\x1b\xb1\x0d\x16\x3e\x59\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\
\x16\x3e\x59\xb2\x01\x0d\x03\x11\x12\x39\xb0\x03\x10\xb1\x0a\x03\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x13\x17\x36\x33\x20\
\x11\x11\x23\x11\x26\x23\x22\x07\x11\x23\x11\xfa\x1e\x4a\x92\x01\
\x04\xaa\x03\x8d\x6e\x2c\xaa\x05\xab\x7b\x8a\xfe\xc6\xfe\x0b\x01\
\xe6\xb9\x6d\xfd\xce\x03\x20\x00\x01\x00\x5b\x00\x00\x04\x68\x05\
\xc4\x00\x29\x00\x9a\xb2\x21\x2a\x2b\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x19\x2f\x1b\xb1\x19\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x06\
\x2f\x1b\xb1\x06\x12\x3e\x59\xb2\x29\x19\x06\x11\x12\x39\xb0\x29\
\x2f\xb1\x00\x02\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x06\x10\
\xb1\x04\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x08\xd0\xb0\
\x09\xd0\xb0\x00\x10\xb0\x0e\xd0\xb0\x29\x10\xb0\x10\xd0\xb0\x29\
\x10\xb0\x15\xd0\xb0\x15\x2f\xb6\x0f\x15\x1f\x15\x2f\x15\x03\x5d\
\xb1\x12\x02\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x19\x10\xb0\
\x1d\xd0\xb0\x19\x10\xb1\x20\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x15\x10\xb0\x24\xd0\xb0\x12\x10\xb0\x26\xd0\x30\x31\x01\
\x21\x17\x14\x07\x21\x07\x21\x35\x33\x36\x36\x37\x35\x27\x23\x35\
\x33\x27\x23\x35\x33\x27\x34\x36\x33\x32\x16\x15\x23\x34\x26\x23\
\x22\x06\x15\x17\x21\x15\x21\x17\x21\x03\x15\xfe\xb1\x03\x3e\x02\
\xdd\x01\xfb\xf8\x4d\x28\x32\x02\x03\xaa\xa6\x04\xa2\x9d\x06\xf5\
\xc8\xbe\xde\xbf\x7f\x6f\x69\x82\x06\x01\x5c\xfe\xa9\x04\x01\x53\
\x01\xd6\x44\x9a\x5b\x9d\x9d\x09\x83\x60\x08\x45\x7d\x88\x7d\xb7\
\xc7\xee\xd4\xb1\x6b\x7c\x9a\x7d\xb7\x7d\x88\x00\x05\x00\x1f\x00\
\x00\x06\x36\x05\xb0\x00\x1b\x00\x1f\x00\x23\x00\x26\x00\x29\x00\
\xb3\x00\xb0\x00\x45\x58\xb0\x17\x2f\x1b\xb1\x17\x1e\x3e\x59\xb0\
\x00\x45\x58\xb0\x1a\x2f\x1b\xb1\x1a\x1e\x3e\x59\xb0\x00\x45\x58\
\xb0\x0c\x2f\x1b\xb1\x0c\x12\x3e\x59\xb0\x00\x45\x58\xb0\x09\x2f\
\x1b\xb1\x09\x12\x3e\x59\xb2\x10\x0c\x17\x11\x12\x39\xb0\x10\x2f\
\xb0\x14\xd0\xb0\x14\x2f\xb4\x0f\x14\x1f\x14\x02\x5d\xb0\x24\xd0\
\xb0\x24\x2f\xb0\x18\xd0\xb0\x18\x2f\xb0\x00\xd0\xb0\x00\x2f\xb0\
\x14\x10\xb1\x13\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x1f\
\xd0\xb0\x23\xd0\xb0\x03\xd0\xb0\x10\x10\xb0\x1c\xd0\xb0\x1c\x2f\
\xb0\x20\xd0\xb0\x20\x2f\xb0\x04\xd0\xb0\x04\x2f\xb0\x10\x10\xb1\
\x0f\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0b\xd0\xb0\x29\
\xd0\xb0\x07\xd0\xb2\x26\x17\x0c\x11\x12\x39\xb2\x27\x09\x1a\x11\
\x12\x39\x30\x31\x01\x33\x15\x23\x15\x33\x15\x23\x11\x23\x01\x21\
\x11\x23\x11\x23\x35\x33\x35\x23\x35\x33\x11\x33\x01\x21\x11\x33\
\x01\x21\x27\x23\x05\x33\x35\x21\x25\x33\x27\x01\x35\x23\x05\x57\
\xdf\xdf\xdf\xdf\xc2\xfe\xc1\xfe\x62\xc0\xd9\xd9\xd9\xd9\xc0\x01\
\x51\x01\x8f\xbf\xfc\x61\x01\x3b\x61\xda\x02\x14\xcc\xfe\xd4\xfe\
\x4c\x77\x77\x02\xe0\x68\x03\xac\x98\x94\x98\xfe\x18\x01\xe8\xfe\
\x18\x01\xe8\x98\x94\x98\x02\x04\xfd\xfc\x02\x04\xfc\xd0\x94\x94\
\x94\x98\xb6\xfc\xe7\x9f\x00\x00\x02\x00\xa7\xff\xec\x06\x03\x05\
\xb0\x00\x1f\x00\x28\x00\xa6\xb2\x23\x29\x2a\x11\x12\x39\xb0\x23\
\x10\xb0\x11\xd0\x00\xb0\x00\x45\x58\xb0\x16\x2f\x1b\xb1\x16\x1e\
\x3e\x59\xb0\x00\x45\x58\xb0\x1a\x2f\x1b\xb1\x1a\x1a\x3e\x59\xb0\
\x00\x45\x58\xb0\x1e\x2f\x1b\xb1\x1e\x1a\x3e\x59\xb0\x00\x45\x58\
\xb0\x0a\x2f\x1b\xb1\x0a\x12\x3e\x59\xb0\x00\x45\x58\xb0\x14\x2f\
\x1b\xb1\x14\x12\x3e\x59\xb0\x1e\x10\xb1\x00\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x0a\x10\xb1\x05\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb0\x00\x10\xb0\x0e\xd0\xb0\x0f\xd0\xb2\x21\x14\
\x16\x11\x12\x39\xb0\x21\x2f\xb1\x12\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x1e\x10\xb0\x1d\xd0\xb0\x1d\x2f\xb0\x16\x10\xb1\
\x27\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x23\x11\
\x14\x16\x33\x32\x37\x17\x06\x23\x22\x26\x35\x11\x23\x06\x06\x07\
\x23\x11\x23\x11\x21\x32\x16\x17\x33\x11\x33\x11\x33\x01\x33\x32\
\x36\x35\x34\x26\x27\x23\x05\xfe\xca\x36\x41\x23\x34\x01\x49\x46\
\x7c\x7e\x8f\x14\xe7\xc7\xc9\xb9\x01\x79\xca\xed\x14\x8f\xba\xca\
\xfb\x62\xc0\x8b\x8b\x87\x84\xcb\x03\xab\xfd\x61\x41\x41\x0c\x96\
\x14\x96\x8a\x02\x9f\xb7\xbd\x02\xfd\xcb\x05\xb0\xc0\xb6\x01\x06\
\xfe\xfa\xfe\x92\x8d\x97\x98\x8e\x02\xff\xff\x00\xa8\xff\xec\x08\
\x10\x05\xb0\x00\x26\x00\x36\x00\x00\x00\x07\x00\x57\x04\x55\x00\
\x00\x00\x07\x00\x1f\x00\x00\x05\xcc\x05\xb0\x00\x1f\x00\x23\x00\
\x27\x00\x2b\x00\x30\x00\x35\x00\x3a\x00\xfe\xb2\x39\x3b\x3c\x11\
\x12\x39\xb0\x39\x10\xb0\x1e\xd0\xb0\x39\x10\xb0\x22\xd0\xb0\x39\
\x10\xb0\x27\xd0\xb0\x39\x10\xb0\x2b\xd0\xb0\x39\x10\xb0\x2d\xd0\
\xb0\x39\x10\xb0\x33\xd0\x00\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\
\x02\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x12\x3e\
\x59\xb0\x00\x45\x58\xb0\x10\x2f\x1b\xb1\x10\x12\x3e\x59\xb2\x08\
\x02\x0c\x11\x12\x39\xb0\x08\x2f\xb0\x04\xd0\xb0\x04\x2f\xb0\x00\
\xd0\xb0\x04\x10\xb1\x06\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb0\x08\x10\xb1\x0a\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x0e\xd0\xb0\x0a\x10\xb0\x12\xd0\xb0\x08\x10\xb0\x14\xd0\xb0\x06\
\x10\xb0\x16\xd0\xb0\x04\x10\xb0\x18\xd0\xb0\x02\x10\xb0\x1a\xd0\
\xb0\x04\x10\xb0\x1c\xd0\xb0\x02\x10\xb0\x1e\xd0\xb0\x08\x10\xb0\
\x20\xd0\xb0\x06\x10\xb0\x22\xd0\xb0\x08\x10\xb0\x24\xd0\xb0\x06\
\x10\xb0\x26\xd0\xb0\x08\x10\xb0\x28\xd0\xb0\x06\x10\xb0\x2a\xd0\
\xb0\x0a\x10\xb0\x2d\xd0\xb2\x30\x02\x0c\x11\x12\x39\xb0\x0a\x10\
\xb0\x32\xd0\xb2\x35\x02\x0c\x11\x12\x39\xb0\x04\x10\xb0\x36\xd0\
\xb2\x39\x02\x0c\x11\x12\x39\x30\x31\x01\x33\x13\x33\x03\x33\x15\
\x23\x07\x33\x15\x23\x03\x23\x03\x23\x03\x23\x03\x23\x35\x33\x27\
\x23\x35\x33\x03\x33\x13\x33\x13\x33\x01\x33\x37\x23\x05\x33\x37\
\x23\x05\x33\x27\x23\x03\x37\x23\x17\x17\x25\x37\x23\x17\x17\x01\
\x33\x27\x27\x07\x03\xa7\xea\x58\xc1\x65\x87\xa8\x29\xd1\xf1\x66\
\xb8\x56\xe5\x58\xb8\x67\xec\xcc\x29\xa3\x82\x65\xc0\x5b\xf1\x56\
\xb3\xfe\x48\x70\x23\xb8\x02\x71\x6c\x24\xb3\xfe\xdc\xae\x22\x68\
\xd6\x02\x37\x01\x17\x02\x65\x01\x35\x02\x1b\xfe\xc0\x32\x01\x18\
\x18\x03\xd4\x01\xdc\xfe\x24\x98\xc2\x98\xfe\x1e\x01\xe2\xfe\x1e\
\x01\xe2\x98\xc2\x98\x01\xdc\xfe\x24\x01\xdc\xfc\xca\xc2\xc2\xc2\
\xc2\xc2\xfe\x9c\x0a\x06\xd2\xd2\x06\x07\xcb\x02\xc4\x07\xad\xb1\
\x00\x00\x02\x00\x8c\x00\x00\x05\x9e\x04\x3a\x00\x0d\x00\x1b\x00\
\x66\x00\xb0\x00\x45\x58\xb0\x16\x2f\x1b\xb1\x16\x1a\x3e\x59\xb0\
\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1a\x3e\x59\xb0\x00\x45\x58\
\xb0\x0b\x2f\x1b\xb1\x0b\x12\x3e\x59\xb0\x00\x45\x58\xb0\x0e\x2f\
\x1b\xb1\x0e\x12\x3e\x59\xb1\x11\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb2\x05\x11\x00\x11\x12\x39\xb0\x05\x2f\xb0\x00\x10\xb1\
\x0a\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x0f\x0a\x0b\x11\
\x12\x39\xb0\x0f\x2f\x30\x31\x01\x32\x16\x17\x11\x23\x11\x34\x26\
\x27\x21\x11\x23\x11\x01\x11\x33\x11\x21\x32\x36\x37\x11\x33\x11\
\x06\x06\x07\x02\xba\xaf\xa8\x04\xb9\x65\x6f\xfe\xbd\xb9\x01\x89\
\xb9\x01\x3e\x71\x67\x01\xb9\x02\xa5\xad\x04\x3a\xc1\xbf\xfe\xa3\
\x01\x4c\x7f\x78\x01\xfc\x5f\x04\x3a\xfb\xc6\x02\xdd\xfd\xbb\x75\
\x7e\x02\xaf\xfd\x4e\xc2\xc4\x02\x00\x00\x01\x00\x5f\xff\xec\x04\
\x1c\x05\xc4\x00\x23\x00\x8b\xb2\x15\x24\x25\x11\x12\x39\x00\xb0\
\x00\x45\x58\xb0\x16\x2f\x1b\xb1\x16\x1e\x3e\x59\xb0\x00\x45\x58\
\xb0\x09\x2f\x1b\xb1\x09\x12\x3e\x59\xb2\x23\x09\x16\x11\x12\x39\
\xb0\x23\x2f\xb1\x00\x02\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x09\x10\xb1\x04\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x00\
\x10\xb0\x0c\xd0\xb0\x23\x10\xb0\x0f\xd0\xb0\x23\x10\xb0\x1f\xd0\
\xb0\x1f\x2f\xb6\x0f\x1f\x1f\x1f\x2f\x1f\x03\x5d\xb1\x20\x02\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x10\xd0\xb0\x1f\x10\xb0\x13\
\xd0\xb0\x16\x10\xb1\x1b\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\x30\x31\x01\x21\x16\x16\x33\x32\x37\x17\x06\x23\x22\x00\x03\x23\
\x35\x33\x35\x23\x35\x33\x12\x00\x33\x32\x17\x07\x26\x23\x22\x06\
\x07\x21\x15\x21\x15\x21\x03\x51\xfe\x80\x04\xb4\xa5\x74\x66\x14\
\x78\x78\xf8\xfe\xe3\x06\xb2\xb2\xb2\xb2\x0a\x01\x1d\xf3\x6a\x87\
\x14\x6d\x6e\xa4\xb1\x06\x01\x7f\xfe\x80\x01\x80\x02\x1d\xc3\xd2\
\x22\xa0\x1e\x01\x25\x01\x0c\x7c\x89\x7d\x01\x06\x01\x1f\x1f\xa2\
\x23\xcb\xbc\x7d\x89\x00\x04\x00\x1f\x00\x00\x05\xbc\x05\xb0\x00\
\x19\x00\x1e\x00\x23\x00\x28\x00\xbc\x00\xb0\x00\x45\x58\xb0\x0b\
\x2f\x1b\xb1\x0b\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x01\x2f\x1b\xb1\
\x01\x12\x3e\x59\xb0\x0b\x10\xb1\x28\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb2\x24\x28\x01\x11\x12\x39\xb0\x24\x2f\xb2\x70\x24\
\x01\x71\xb6\x00\x24\x10\x24\x20\x24\x03\x5d\xb1\x1c\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x1d\xd0\xb0\x1d\x2f\xb2\x70\x1d\
\x01\x71\xb6\x00\x1d\x10\x1d\x20\x1d\x03\x5d\xb1\x20\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x21\xd0\xb0\x21\x2f\xb2\x70\x21\
\x01\x71\xb2\x20\x21\x01\x5d\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x20\x10\xb0\x03\xd0\xb0\x1d\x10\xb0\x06\xd0\xb0\
\x06\x2f\xb0\x1c\x10\xb0\x07\xd0\xb0\x24\x10\xb0\x0a\xd0\xb0\x24\
\x10\xb0\x0f\xd0\xb0\x1c\x10\xb0\x12\xd0\xb0\x1d\x10\xb0\x14\xd0\
\xb0\x14\x2f\x30\x31\x01\x11\x23\x11\x23\x35\x33\x35\x23\x35\x33\
\x35\x21\x32\x16\x17\x33\x15\x23\x17\x07\x33\x15\x23\x06\x21\x01\
\x27\x21\x15\x21\x07\x21\x15\x21\x32\x01\x21\x26\x23\x21\x01\xa5\
\xc0\xc6\xc6\xc6\xc6\x02\x19\xb1\xeb\x36\xec\xc3\x03\x02\xc2\xe5\
\x6b\xfe\x8c\x01\x44\x04\xfd\x6d\x02\x95\x3f\xfd\xaa\x01\x59\xac\
\xfd\xfb\x02\x4a\x54\x9e\xfe\xa8\x02\x3a\xfd\xc6\x03\x30\x97\x5e\
\x97\xf4\x84\x70\x97\x32\x2c\x97\xf6\x01\xb7\x34\x5e\x97\x59\x01\
\xe5\x56\x00\x00\x01\x00\x2a\x00\x00\x03\xf8\x05\xb0\x00\x1a\x00\
\x69\x00\xb0\x00\x45\x58\xb0\x19\x2f\x1b\xb1\x19\x1e\x3e\x59\xb0\
\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x12\x3e\x59\xb0\x19\x10\xb1\
\x18\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x01\xd0\xb0\x18\
\x10\xb0\x14\xd0\xb0\x14\x2f\xb0\x03\xd0\xb0\x14\x10\xb1\x13\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x06\xd0\xb0\x13\x10\xb0\
\x0e\xd0\xb0\x0e\x2f\xb1\x09\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb2\x0d\x09\x0e\x11\x12\x39\x30\x31\x01\x23\x16\x17\x33\x07\
\x23\x06\x06\x23\x01\x15\x23\x01\x27\x33\x36\x36\x37\x21\x37\x21\
\x26\x27\x21\x37\x21\x03\xca\xec\x40\x11\xc9\x2e\x98\x12\xf6\xdb\
\x01\xed\xe3\xfd\xee\x01\xf9\x7d\x9c\x15\xfd\xbd\x2e\x02\x13\x30\
\xf6\xfe\xe7\x2f\x03\x9d\x05\x12\x51\x75\x9e\xb2\xb4\xfd\xc4\x0c\
\x02\x69\x7d\x01\x6b\x5c\x9e\xbe\x08\x9e\x00\x00\x01\x00\x20\xff\
\xee\x04\x1a\x05\xb0\x00\x1e\x00\x90\x00\xb0\x00\x45\x58\xb0\x11\
\x2f\x1b\xb1\x11\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\
\x05\x12\x3e\x59\xb2\x13\x11\x05\x11\x12\x39\xb0\x13\x2f\xb0\x17\
\xd0\xb0\x17\x2f\xb2\x00\x17\x01\x5d\xb1\x18\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x19\xd0\xb0\x08\xd0\xb0\x09\xd0\xb0\x17\
\x10\xb0\x16\xd0\xb0\x0b\xd0\xb0\x0a\xd0\xb0\x13\x10\xb1\x14\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x15\xd0\xb0\x0c\xd0\xb0\
\x0d\xd0\xb0\x13\x10\xb0\x12\xd0\xb0\x0f\xd0\xb0\x0e\xd0\xb0\x05\
\x10\xb1\x1a\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x1e\x05\
\x11\x11\x12\x39\xb0\x1e\x2f\x30\x31\x01\x15\x06\x02\x04\x23\x22\
\x27\x11\x07\x35\x37\x35\x07\x35\x37\x11\x33\x11\x37\x15\x07\x15\
\x37\x15\x07\x11\x36\x12\x11\x35\x04\x1a\x02\x90\xfe\xf7\xaf\x50\
\x6c\xf4\xf4\xf4\xf4\xc0\xfb\xfb\xfb\xfb\xbe\xc9\x03\x03\x64\xd2\
\xfe\xc7\xa6\x12\x02\x5a\x6f\xb2\x6f\x99\x6f\xb2\x6f\x01\x59\xfe\
\xff\x73\xb2\x73\x99\x73\xb2\x73\xfd\xde\x02\x01\x10\x01\x09\x58\
\x00\x00\x01\x00\x5d\x00\x00\x04\xeb\x04\x3a\x00\x17\x00\x5d\xb2\
\x00\x18\x19\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x16\x2f\x1b\xb1\
\x16\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\
\x59\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x12\x3e\x59\xb0\x00\
\x45\x58\xb0\x10\x2f\x1b\xb1\x10\x12\x3e\x59\xb2\x00\x0a\x16\x11\
\x12\x39\xb0\x00\x2f\xb1\x09\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x0c\xd0\xb0\x00\x10\xb0\x15\xd0\x30\x31\x01\x16\x00\x11\
\x15\x23\x35\x26\x02\x27\x11\x23\x11\x06\x02\x07\x15\x23\x35\x12\
\x00\x37\x35\x33\x02\xff\xe7\x01\x05\xb9\x02\x9e\x93\xb9\x8f\x9f\
\x02\xb9\x03\x01\x07\xdf\xb9\x03\x71\x21\xfe\x8d\xfe\xda\xb7\xc8\
\xdf\x01\x05\x20\xfd\x34\x02\xca\x21\xfe\xf5\xd8\xc6\xc5\x01\x1d\
\x01\x6d\x22\xc9\x00\x00\x02\x00\x1f\x00\x00\x05\x03\x05\xb0\x00\
\x16\x00\x1f\x00\x70\x00\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\
\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x12\x3e\x59\
\xb2\x06\x03\x0c\x11\x12\x39\xb0\x06\x2f\xb1\x05\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x01\xd0\xb0\x06\x10\xb0\x0a\xd0\xb0\
\x0a\x2f\xb4\x0f\x0a\x1f\x0a\x02\x5d\xb1\x09\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x14\xd0\xb0\x06\x10\xb0\x15\xd0\xb0\x0a\
\x10\xb0\x17\xd0\xb0\x0c\x10\xb1\x1f\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\x30\x31\x01\x21\x11\x23\x11\x23\x35\x33\x35\x23\x35\
\x33\x11\x21\x32\x04\x15\x14\x04\x07\x21\x15\x21\x01\x21\x32\x36\
\x35\x34\x26\x27\x21\x02\xfc\xfe\xb1\xbf\xcf\xcf\xcf\xcf\x02\x19\
\xea\x01\x12\xfe\xf9\xf2\xfe\xa3\x01\x4f\xfe\xb1\x01\x5a\x9b\xa2\
\xa8\x8f\xfe\xa0\x01\x13\xfe\xed\x01\x13\x9e\x89\x9d\x02\xd9\xee\
\xcb\xd5\xe7\x01\x89\x01\x26\x92\x8c\x7f\x9d\x01\x00\x00\x04\x00\
\x7a\xff\xeb\x05\x83\x05\xc5\x00\x1b\x00\x27\x00\x35\x00\x39\x00\
\xbb\xb2\x1c\x3a\x3b\x11\x12\x39\xb0\x1c\x10\xb0\x00\xd0\xb0\x1c\
\x10\xb0\x28\xd0\xb0\x1c\x10\xb0\x38\xd0\x00\xb0\x00\x45\x58\xb0\
\x0a\x2f\x1b\xb1\x0a\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x25\x2f\x1b\
\xb1\x25\x12\x3e\x59\xb0\x0a\x10\xb0\x03\xd0\xb0\x03\x2f\xb2\x0e\
\x0a\x03\x11\x12\x39\xb6\x2a\x0e\x3a\x0e\x4a\x0e\x03\x5d\xb0\x0a\
\x10\xb1\x11\x04\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\
\xb1\x18\x04\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x1b\x03\x0a\
\x11\x12\x39\xb4\x36\x1b\x46\x1b\x02\x5d\xb2\x25\x1b\x01\x5d\xb0\
\x25\x10\xb0\x1f\xd0\xb0\x1f\x2f\xb0\x25\x10\xb1\x2b\x04\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x1f\x10\xb1\x32\x04\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb2\x36\x25\x0a\x11\x12\x39\xb0\x36\x2f\
\xb2\x38\x0a\x25\x11\x12\x39\xb0\x38\x2f\x30\x31\x01\x14\x06\x23\
\x22\x26\x35\x35\x34\x36\x33\x32\x16\x15\x23\x34\x26\x23\x22\x06\
\x15\x15\x14\x16\x33\x32\x36\x35\x01\x34\x36\x20\x16\x15\x15\x14\
\x06\x20\x26\x35\x17\x14\x16\x33\x32\x36\x35\x35\x34\x26\x23\x22\
\x06\x15\x05\x27\x01\x17\x02\xa8\x98\x7b\x7a\xa1\x9e\x7b\x79\x9c\
\x8a\x49\x42\x41\x4d\x4f\x41\x3d\x4c\x01\x10\xa7\x01\x06\xa8\xa7\
\xfe\xfc\xaa\x8a\x58\x4a\x48\x56\x57\x49\x47\x59\xfe\x06\x69\x02\
\xc7\x69\x04\x1e\x6e\x90\xa8\x89\x47\x82\xab\x91\x6f\x3a\x4d\x66\
\x52\x49\x4e\x65\x4c\x3a\xfd\x47\x83\xa9\xa8\x8b\x47\x83\xa9\xa7\
\x8b\x06\x4f\x65\x63\x55\x4a\x4f\x64\x63\x54\xf3\x42\x04\x72\x42\
\x00\x00\x02\x00\x68\xff\xeb\x03\x6a\x06\x13\x00\x17\x00\x21\x00\
\x67\xb2\x13\x22\x23\x11\x12\x39\xb0\x13\x10\xb0\x18\xd0\x00\xb0\
\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x20\x3e\x59\xb0\x00\x45\x58\
\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb2\x06\x0c\x00\x11\x12\x39\
\xb0\x06\x2f\xb1\x05\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x13\xd0\xb0\x00\x10\xb1\x17\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x06\x10\xb0\x18\xd0\xb0\x0c\x10\xb1\x1f\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\x30\x31\x05\x22\x26\x35\x06\x23\x35\x32\
\x37\x11\x36\x36\x33\x32\x16\x15\x15\x14\x02\x07\x15\x14\x16\x33\
\x03\x36\x36\x35\x35\x34\x26\x23\x22\x07\x02\xcc\xc2\xd2\x62\x6e\
\x71\x5f\x01\x9d\x85\x78\x97\xce\xab\x6b\x70\xdb\x59\x67\x30\x26\
\x67\x03\x15\xea\xeb\x1c\xb0\x23\x02\x24\xb2\xc6\xad\x93\x25\xc1\
\xfe\x8f\x6b\x62\x9a\x8d\x02\x63\x55\xf5\x7b\x27\x52\x4c\xd1\x00\
\x04\x00\xa2\x00\x00\x07\xc6\x05\xc0\x00\x03\x00\x10\x00\x1e\x00\
\x28\x00\xa6\xb2\x1f\x29\x2a\x11\x12\x39\xb0\x1f\x10\xb0\x01\xd0\
\xb0\x1f\x10\xb0\x04\xd0\xb0\x1f\x10\xb0\x11\xd0\x00\xb0\x00\x45\
\x58\xb0\x27\x2f\x1b\xb1\x27\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x25\
\x2f\x1b\xb1\x25\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x07\x2f\x1b\xb1\
\x07\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x22\x2f\x1b\xb1\x22\x12\x3e\
\x59\xb0\x00\x45\x58\xb0\x20\x2f\x1b\xb1\x20\x12\x3e\x59\xb0\x07\
\x10\xb0\x0d\xd0\xb0\x02\xd0\xb0\x02\x2f\xb2\x10\x02\x01\x5d\xb1\
\x01\x03\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0d\x10\xb1\x14\
\x03\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x07\x10\xb1\x1b\x03\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x21\x25\x20\x11\x12\x39\
\xb2\x26\x20\x25\x11\x12\x39\x30\x31\x01\x21\x35\x21\x01\x34\x36\
\x20\x16\x15\x15\x14\x06\x23\x22\x26\x35\x17\x14\x16\x33\x32\x36\
\x37\x35\x34\x26\x23\x22\x06\x15\x01\x23\x01\x11\x23\x11\x33\x01\
\x11\x33\x07\xa4\xfd\x99\x02\x67\xfd\x75\xba\x01\x38\xbb\xb9\x9c\
\x9e\xba\xa3\x5f\x56\x54\x5d\x01\x5f\x55\x54\x5f\xfe\xbc\xcc\xfd\
\xaf\xb9\xcb\x02\x54\xb7\x01\x9c\x8e\x02\x3d\x9b\xbe\xbb\xa3\x5d\
\x9d\xba\xbb\xa1\x05\x62\x6b\x6a\x60\x65\x61\x6b\x6b\x63\xfb\x9b\
\x04\x6e\xfb\x92\x05\xb0\xfb\x8f\x04\x71\x00\x00\x02\x00\x67\x03\
\x97\x04\x38\x05\xb0\x00\x0c\x00\x14\x00\x6e\x00\xb0\x00\x45\x58\
\xb0\x06\x2f\x1b\xb1\x06\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x09\x2f\
\x1b\xb1\x09\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x13\x2f\x1b\xb1\x13\
\x1e\x3e\x59\xb2\x01\x15\x06\x11\x12\x39\xb0\x01\x2f\xb2\x00\x09\
\x01\x11\x12\x39\xb2\x03\x01\x06\x11\x12\x39\xb0\x04\xd0\xb2\x08\
\x01\x09\x11\x12\x39\xb0\x01\x10\xb0\x0b\xd0\xb0\x06\x10\xb0\x0d\
\xb0\x0a\x2b\x58\xd8\x1b\xdc\x59\xb0\x01\x10\xb0\x0f\xd0\xb0\x0d\
\x10\xb0\x11\xd0\xb0\x12\xd0\x30\x31\x01\x03\x23\x03\x11\x23\x11\
\x33\x13\x13\x33\x11\x23\x01\x23\x11\x23\x11\x23\x35\x21\x03\xde\
\x8c\x34\x8c\x5a\x70\x90\x90\x70\x5a\xfe\x0b\x93\x5b\x94\x01\x82\
\x05\x21\xfe\x76\x01\x89\xfe\x77\x02\x19\xfe\x71\x01\x8f\xfd\xe7\
\x01\xc8\xfe\x38\x01\xc8\x51\x00\x02\x00\x98\xff\xec\x04\x93\x04\
\x4e\x00\x15\x00\x1c\x00\x65\xb2\x02\x1d\x1e\x11\x12\x39\xb0\x02\
\x10\xb0\x16\xd0\x00\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1a\
\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb2\
\x1a\x0a\x02\x11\x12\x39\xb0\x1a\x2f\xb1\x0f\x0a\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x02\x10\xb1\x13\x0a\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb2\x15\x0a\x02\x11\x12\x39\xb0\x0a\x10\xb1\x16\
\x0a\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x25\x06\x23\x22\
\x26\x02\x35\x34\x12\x36\x33\x32\x16\x16\x17\x15\x21\x11\x16\x33\
\x32\x37\x01\x22\x07\x11\x21\x11\x26\x04\x16\xb7\xbb\x91\xf4\x87\
\x90\xf8\x84\x85\xe3\x84\x03\xfd\x00\x77\x9a\xc4\xac\xfe\x90\x97\
\x7a\x02\x1c\x73\x5e\x72\x9d\x01\x01\x93\x8f\x01\x03\x9f\x8b\xf3\
\x90\x3e\xfe\xb8\x6e\x7a\x03\x2a\x7a\xfe\xeb\x01\x1e\x71\x00\xff\
\xff\x00\x54\xff\xf5\x05\xb3\x05\x9b\x00\x27\x01\xc6\xff\xda\x02\
\x86\x00\x27\x01\x94\x00\xe6\x00\x00\x01\x07\x02\x24\x03\x14\x00\
\x00\x00\x10\x00\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x1e\x3e\
\x59\x30\x31\xff\xff\x00\x64\xff\xf5\x06\x53\x05\xb4\x00\x27\x02\
\x1f\x00\x26\x02\x94\x00\x27\x01\x94\x01\xa5\x00\x00\x01\x07\x02\
\x24\x03\xb4\x00\x00\x00\x10\x00\xb0\x00\x45\x58\xb0\x0e\x2f\x1b\
\xb1\x0e\x1e\x3e\x59\x30\x31\xff\xff\x00\x63\xff\xf5\x06\x49\x05\
\xa4\x00\x27\x02\x21\x00\x08\x02\x8f\x00\x27\x01\x94\x01\x83\x00\
\x00\x01\x07\x02\x24\x03\xaa\x00\x00\x00\x10\x00\xb0\x00\x45\x58\
\xb0\x01\x2f\x1b\xb1\x01\x1e\x3e\x59\x30\x31\xff\xff\x00\x59\xff\
\xf5\x05\xfd\x05\xa4\x00\x27\x02\x23\x00\x1f\x02\x8f\x00\x27\x01\
\x94\x01\x20\x00\x00\x01\x07\x02\x24\x03\x5e\x00\x00\x00\x10\x00\
\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x1e\x3e\x59\x30\x31\x00\
\x02\x00\x6a\xff\xeb\x04\x32\x05\xec\x00\x1b\x00\x2a\x00\x5e\xb2\
\x15\x2b\x2c\x11\x12\x39\xb0\x15\x10\xb0\x23\xd0\x00\xb0\x0d\x2f\
\xb0\x00\x45\x58\xb0\x15\x2f\x1b\xb1\x15\x12\x3e\x59\xb2\x00\x0d\
\x15\x11\x12\x39\xb0\x00\x2f\xb2\x03\x00\x15\x11\x12\x39\xb0\x0d\
\x10\xb1\x07\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x00\x10\
\xb1\x1c\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x15\x10\xb1\
\x23\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x32\x16\
\x17\x2e\x02\x23\x22\x07\x27\x37\x36\x33\x20\x00\x11\x15\x14\x02\
\x06\x23\x22\x00\x35\x35\x34\x00\x17\x22\x06\x15\x15\x14\x16\x33\
\x32\x36\x35\x35\x27\x26\x26\x02\x3c\x5d\xa6\x3a\x0e\x69\xa6\x60\
\x81\x9b\x10\x31\x74\x97\x01\x07\x01\x1f\x78\xde\x90\xda\xfe\xf8\
\x01\x00\xe4\x8c\x9f\x9f\x8a\x8e\x9f\x04\x1c\xa0\x03\xfe\x4d\x44\
\x8c\xd9\x79\x3b\x97\x15\x30\xfe\x4e\xfe\x6e\x32\xbc\xfe\xd6\xa5\
\x01\x23\xf6\x0e\xdc\x01\x10\x98\xbb\xa0\x10\xaa\xcf\xf9\xdb\x3d\
\x0f\x5a\x6a\x00\x01\x00\xa9\xff\x2b\x04\xe5\x05\xb0\x00\x07\x00\
\x28\x00\xb0\x04\x2f\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1e\
\x3e\x59\xb0\x04\x10\xb0\x01\xd0\xb0\x06\x10\xb1\x02\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x05\x23\x11\x21\x11\x23\x11\
\x21\x04\xe5\xb9\xfd\x36\xb9\x04\x3c\xd5\x05\xed\xfa\x13\x06\x85\
\x00\x00\x01\x00\x45\xfe\xf3\x04\xab\x05\xb0\x00\x0c\x00\x37\x00\
\xb0\x03\x2f\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1e\x3e\x59\
\xb0\x03\x10\xb1\x02\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x05\xd0\xb0\x08\x10\xb1\x0a\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x07\xd0\x30\x31\x01\x01\x21\x15\x21\x35\x01\x01\x35\x21\
\x15\x21\x01\x03\x6b\xfd\xbb\x03\x85\xfb\x9a\x02\x61\xfd\x9f\x04\
\x19\xfc\xc7\x02\x46\x02\x41\xfd\x4a\x98\x8f\x02\xcc\x02\xd2\x90\
\x98\xfd\x42\x00\x01\x00\xa8\x02\x8b\x03\xeb\x03\x22\x00\x03\x00\
\x1c\x00\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x18\x3e\x59\xb1\
\x01\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x21\x35\
\x21\x03\xeb\xfc\xbd\x03\x43\x02\x8b\x97\x00\x00\x01\x00\x3f\x00\
\x00\x04\x98\x05\xb0\x00\x08\x00\x3d\xb2\x03\x09\x0a\x11\x12\x39\
\x00\xb0\x07\x2f\xb0\x00\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x1e\x3e\
\x59\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x12\x3e\x59\xb2\x00\
\x01\x03\x11\x12\x39\xb0\x07\x10\xb1\x06\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\x30\x31\x01\x01\x33\x01\x23\x03\x23\x35\x21\x02\
\x30\x01\xab\xbd\xfd\xe2\x8d\xf5\xb9\x01\x3b\x01\x1c\x04\x94\xfa\
\x50\x02\x74\x9a\x00\x00\x03\x00\x62\xff\xeb\x07\xcb\x04\x4e\x00\
\x1c\x00\x2c\x00\x3c\x00\x71\xb2\x07\x3d\x3e\x11\x12\x39\xb0\x07\
\x10\xb0\x24\xd0\xb0\x07\x10\xb0\x34\xd0\x00\xb0\x00\x45\x58\xb0\
\x04\x2f\x1b\xb1\x04\x12\x3e\x59\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\
\xb1\x0a\x12\x3e\x59\xb0\x13\xd0\xb0\x13\x2f\xb0\x19\xd0\xb0\x19\
\x2f\xb2\x07\x19\x04\x11\x12\x39\xb2\x16\x19\x04\x11\x12\x39\xb0\
\x0a\x10\xb1\x20\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x13\
\x10\xb1\x29\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x30\xd0\
\xb0\x20\x10\xb0\x39\xd0\x30\x31\x01\x14\x02\x06\x23\x22\x26\x27\
\x06\x06\x23\x22\x26\x02\x35\x35\x34\x12\x36\x33\x32\x16\x17\x36\
\x36\x33\x32\x00\x15\x05\x14\x16\x33\x32\x36\x37\x37\x35\x2e\x02\
\x23\x22\x06\x15\x25\x34\x26\x23\x22\x06\x07\x07\x15\x1e\x02\x33\
\x32\x36\x35\x07\xcb\x7e\xdf\x89\x91\xee\x50\x51\xec\x90\x89\xde\
\x80\x7e\xdf\x88\x91\xed\x51\x50\xef\x92\xce\x01\x16\xf9\x50\xa6\
\x88\x72\xb9\x34\x0b\x18\x72\x92\x50\x86\xa6\x05\xf7\xa6\x85\x73\
\xbc\x35\x09\x16\x75\x90\x50\x88\xa5\x02\x0f\x93\xff\x00\x91\xb8\
\xb1\xb3\xb6\x8f\x01\x00\x97\x18\x93\x01\x00\x92\xb7\xb3\xb1\xb9\
\xfe\xc1\xf3\x0d\xb1\xdc\xbc\xa3\x27\x2a\x63\xc0\x61\xdc\xb9\x08\
\xae\xdf\xbd\xa8\x1f\x2a\x61\xc5\x60\xde\xb8\x00\x01\xff\xb0\xfe\
\x4b\x02\x8e\x06\x15\x00\x15\x00\x3f\xb2\x02\x16\x17\x11\x12\x39\
\x00\xb0\x00\x45\x58\xb0\x0e\x2f\x1b\xb1\x0e\x20\x3e\x59\xb0\x00\
\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x14\x3e\x59\xb1\x08\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0e\x10\xb1\x13\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\x30\x31\x05\x14\x06\x23\x22\x27\x37\x16\
\x33\x32\x35\x11\x34\x36\x33\x32\x17\x07\x26\x23\x22\x15\x01\x65\
\xa4\x9e\x39\x3a\x12\x2e\x21\x9b\xb1\xa1\x3c\x54\x18\x25\x36\xb6\
\x6b\xa2\xa8\x14\x91\x0d\xb1\x05\x19\xaa\xbe\x15\x8e\x0b\xdb\x00\
\x02\x00\x65\x01\x18\x04\x0b\x03\xf4\x00\x15\x00\x2b\x00\x91\xb2\
\x1c\x2c\x2d\x11\x12\x39\xb0\x1c\x10\xb0\x05\xd0\x00\xb0\x03\x2f\
\xb2\x0f\x03\x01\x5d\xb0\x0d\xd0\xb0\x0d\x2f\xb2\x00\x0d\x01\x5d\
\xb1\x08\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\xb0\
\x0a\xd0\xb0\x0a\x2f\xb0\x03\x10\xb1\x12\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb0\x0d\x10\xb0\x15\xd0\xb0\x15\x2f\xb0\x0d\x10\
\xb0\x19\xd0\xb0\x19\x2f\xb0\x23\xd0\xb0\x23\x2f\xb2\x00\x23\x01\
\x5d\xb1\x1e\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x19\x10\
\xb0\x20\xd0\xb0\x20\x2f\xb0\x19\x10\xb1\x28\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x23\x10\xb0\x2b\xd0\xb0\x2b\x2f\x30\x31\
\x13\x36\x36\x33\x36\x17\x17\x16\x33\x32\x37\x15\x06\x23\x22\x27\
\x27\x26\x07\x22\x06\x07\x07\x36\x36\x33\x36\x17\x17\x16\x33\x32\
\x37\x17\x06\x23\x22\x27\x27\x26\x07\x22\x06\x07\x66\x30\x83\x42\
\x52\x4a\x98\x42\x4e\x86\x66\x67\x85\x4e\x42\xa1\x44\x4f\x42\x83\
\x30\x01\x30\x82\x42\x52\x4a\x95\x44\x50\x85\x66\x01\x67\x85\x4e\
\x42\x98\x4a\x52\x42\x83\x30\x03\x85\x33\x3a\x02\x23\x4e\x1f\x80\
\xbe\x6d\x1f\x53\x1f\x02\x44\x3c\xe5\x33\x3b\x02\x23\x4d\x21\x80\
\xbd\x6d\x1f\x4e\x23\x02\x44\x3c\x00\x00\x01\x00\x98\x00\x9b\x03\
\xda\x04\xd5\x00\x13\x00\x39\x00\xb0\x13\x2f\xb1\x00\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\xd0\xb0\x13\x10\xb0\x07\xd0\
\xb0\x13\x10\xb0\x0f\xd0\xb0\x0f\x2f\xb1\x10\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x08\xd0\xb0\x0f\x10\xb0\x0b\xd0\x30\x31\
\x01\x21\x07\x27\x37\x23\x35\x21\x37\x21\x35\x21\x13\x17\x07\x33\
\x15\x21\x07\x21\x03\xda\xfd\xed\x8e\x5f\x6c\xae\x01\x0b\x95\xfe\
\x60\x01\xfe\x99\x5f\x77\xc3\xfe\xdf\x94\x01\xb5\x01\x8f\xf4\x3b\
\xb9\xa0\xff\xa1\x01\x06\x3b\xcb\xa1\xff\x00\xff\xff\x00\x3e\x00\
\x02\x03\x81\x04\x3d\x00\x66\x00\x20\x00\x61\x40\x00\x39\x9a\x01\
\x07\x01\xaf\xff\x96\xfd\x77\x00\x1d\x00\xb0\x00\x45\x58\xb0\x05\
\x2f\x1b\xb1\x05\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\
\x08\x12\x3e\x59\x30\x31\x00\xff\xff\x00\x85\x00\x01\x03\xdc\x04\
\x50\x00\x66\x00\x22\x00\x73\x40\x00\x39\x9a\x01\x07\x01\xaf\xff\
\xdd\xfd\x76\x00\x1d\x00\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\
\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x12\x3e\x59\
\x30\x31\x00\x00\x02\x00\x2b\x00\x00\x03\xdc\x05\xb0\x00\x05\x00\
\x09\x00\x38\xb2\x08\x0a\x0b\x11\x12\x39\xb0\x08\x10\xb0\x01\xd0\
\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1e\x3e\x59\xb0\x00\
\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x12\x3e\x59\xb2\x06\x00\x03\x11\
\x12\x39\xb2\x08\x00\x03\x11\x12\x39\x30\x31\x01\x33\x01\x01\x23\
\x09\x04\x01\xbc\x8c\x01\x94\xfe\x70\x8d\xfe\x6c\x01\xd6\xfe\xe9\
\x01\x1c\x01\x18\x05\xb0\xfd\x27\xfd\x29\x02\xd7\x02\x0f\xfd\xf1\
\xfd\xf2\x02\x0e\x00\xff\xff\x00\xb5\x00\xa7\x01\x9b\x04\xf5\x00\
\x27\x00\x12\x00\x25\x00\xb2\x00\x07\x00\x12\x00\x25\x04\x24\x00\
\x02\x00\x6e\x02\x79\x02\x33\x04\x3a\x00\x03\x00\x07\x00\x2c\x00\
\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1a\x3e\x59\xb0\x00\x45\
\x58\xb0\x06\x2f\x1b\xb1\x06\x1a\x3e\x59\xb0\x02\x10\xb0\x00\xd0\
\xb0\x00\x2f\xb0\x04\xd0\xb0\x05\xd0\x30\x31\x13\x23\x11\x33\x01\
\x23\x11\x33\xfb\x8d\x8d\x01\x38\x8d\x8d\x02\x79\x01\xc1\xfe\x3f\
\x01\xc1\x00\x00\x01\x00\x5c\xff\x5f\x01\x57\x00\xef\x00\x08\x00\
\x20\xb2\x08\x09\x0a\x11\x12\x39\x00\xb0\x09\x2f\xb0\x04\xd0\xb0\
\x04\x2f\xb4\x40\x04\x50\x04\x02\x5d\xb0\x00\xd0\xb0\x00\x2f\x30\
\x31\x17\x27\x36\x37\x35\x33\x15\x14\x06\xc5\x69\x48\x02\xb1\x4f\
\xa1\x48\x6d\x7f\x5c\x4c\x5b\xb3\x00\xff\xff\x00\x3c\x00\x00\x04\
\xf6\x06\x15\x00\x26\x00\x4a\x00\x00\x00\x07\x00\x4a\x02\x2c\x00\
\x00\x00\x02\x00\x1f\x00\x00\x03\xcd\x06\x15\x00\x15\x00\x19\x00\
\x85\xb2\x08\x1a\x1b\x11\x12\x39\xb0\x08\x10\xb0\x17\xd0\x00\xb0\
\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x20\x3e\x59\xb0\x00\x45\x58\
\xb0\x03\x2f\x1b\xb1\x03\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x11\x2f\
\x1b\xb1\x11\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x18\x2f\x1b\xb1\x18\
\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\
\xb0\x00\x45\x58\xb0\x16\x2f\x1b\xb1\x16\x12\x3e\x59\xb0\x03\x10\
\xb1\x01\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x08\x10\xb1\
\x0d\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x01\x10\xb0\x13\
\xd0\xb0\x14\xd0\x30\x31\x33\x11\x23\x35\x33\x35\x34\x36\x33\x32\
\x17\x07\x26\x23\x22\x06\x15\x15\x33\x15\x23\x11\x21\x23\x11\x33\
\xca\xab\xab\xcf\xbd\x70\xab\x1f\x7d\x71\x77\x69\xdd\xdd\x02\x49\
\xba\xba\x03\xab\x8f\x5c\xb5\xca\x3d\x9c\x32\x6b\x6b\x5e\x8f\xfc\
\x55\x04\x3a\x00\x01\x00\x3c\x00\x00\x03\xe9\x06\x15\x00\x16\x00\
\x5e\x00\xb0\x00\x45\x58\xb0\x12\x2f\x1b\xb1\x12\x20\x3e\x59\xb0\
\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1a\x3e\x59\xb0\x00\x45\x58\
\xb0\x09\x2f\x1b\xb1\x09\x12\x3e\x59\xb0\x00\x45\x58\xb0\x16\x2f\
\x1b\xb1\x16\x12\x3e\x59\xb0\x12\x10\xb1\x02\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x06\x10\xb1\x07\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb0\x0b\xd0\xb0\x06\x10\xb0\x0e\xd0\x30\x31\x01\
\x26\x23\x22\x15\x15\x33\x15\x23\x11\x23\x11\x23\x35\x33\x35\x36\
\x36\x33\x32\x05\x11\x23\x03\x30\x7c\x4c\xc8\xe7\xe7\xb9\xab\xab\
\x01\xc0\xb1\x65\x01\x2b\xb9\x05\x63\x14\xd2\x6b\x8f\xfc\x55\x03\
\xab\x8f\x76\xad\xb8\x3d\xfa\x28\x00\x00\x02\x00\x3c\x00\x00\x06\
\x32\x06\x15\x00\x27\x00\x2b\x00\x9f\x00\xb0\x00\x45\x58\xb0\x16\
\x2f\x1b\xb1\x16\x20\x3e\x59\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\
\x08\x20\x3e\x59\xb0\x00\x45\x58\xb0\x20\x2f\x1b\xb1\x20\x1a\x3e\
\x59\xb0\x00\x45\x58\xb0\x12\x2f\x1b\xb1\x12\x1a\x3e\x59\xb0\x00\
\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\x59\xb0\x00\x45\x58\xb0\
\x2a\x2f\x1b\xb1\x2a\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x29\x2f\x1b\
\xb1\x29\x12\x3e\x59\xb0\x00\x45\x58\xb0\x23\x2f\x1b\xb1\x23\x12\
\x3e\x59\xb0\x00\x45\x58\xb0\x27\x2f\x1b\xb1\x27\x12\x3e\x59\xb0\
\x20\x10\xb1\x21\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x25\
\xd0\xb0\x01\xd0\xb0\x08\x10\xb1\x0d\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x1b\xd0\x30\x31\x33\x11\x23\x35\x33\x35\x34\x36\
\x33\x32\x17\x07\x26\x23\x22\x06\x15\x15\x21\x35\x34\x36\x33\x32\
\x17\x07\x26\x23\x22\x06\x15\x15\x33\x15\x23\x11\x23\x11\x21\x11\
\x21\x23\x11\x33\xe7\xab\xab\xba\xaa\x40\x3f\x0a\x2f\x35\x5a\x62\
\x01\x90\xcf\xbd\x70\xab\x1f\x7d\x72\x77\x69\xde\xde\xb9\xfe\x70\
\x04\x92\xb9\xb9\x03\xab\x8f\x6f\xae\xbe\x11\x96\x09\x69\x62\x72\
\x5c\xb5\xca\x3d\x9c\x32\x6a\x6c\x5e\x8f\xfc\x55\x03\xab\xfc\x55\
\x04\x3a\x00\x00\x01\x00\x3c\x00\x00\x06\x32\x06\x15\x00\x28\x00\
\x6c\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x20\x3e\x59\xb0\
\x00\x45\x58\xb0\x21\x2f\x1b\xb1\x21\x1a\x3e\x59\xb0\x00\x45\x58\
\xb0\x28\x2f\x1b\xb1\x28\x12\x3e\x59\xb0\x21\x10\xb1\x22\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x26\xd0\xb0\x01\xd0\xb0\x21\
\x10\xb0\x12\xd0\xb0\x04\xd0\xb0\x08\x10\xb1\x0d\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x08\x10\xb0\x16\xd0\xb0\x28\x10\xb0\
\x25\xd0\xb0\x1a\xd0\xb0\x0d\x10\xb0\x1d\xd0\x30\x31\x33\x11\x23\
\x35\x33\x35\x34\x36\x33\x32\x17\x07\x26\x23\x22\x06\x15\x15\x21\
\x35\x36\x36\x33\x32\x05\x11\x23\x11\x26\x23\x22\x15\x15\x33\x15\
\x23\x11\x23\x11\x21\x11\xe7\xab\xab\xba\xaa\x40\x3f\x0a\x2f\x35\
\x5a\x62\x01\x90\x01\xc0\xb1\x65\x01\x2b\xb9\x7c\x4c\xc8\xe7\xe7\
\xb9\xfe\x70\x03\xab\x8f\x6f\xae\xbe\x11\x96\x09\x69\x62\x72\x76\
\xad\xb8\x3d\xfa\x28\x05\x63\x14\xd2\x6b\x8f\xfc\x55\x03\xab\xfc\
\x55\x00\x01\x00\x3c\xff\xec\x04\x9b\x06\x15\x00\x26\x00\x76\x00\
\xb0\x00\x45\x58\xb0\x21\x2f\x1b\xb1\x21\x20\x3e\x59\xb0\x00\x45\
\x58\xb0\x1d\x2f\x1b\xb1\x1d\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x18\
\x2f\x1b\xb1\x18\x12\x3e\x59\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\
\x0a\x12\x3e\x59\xb0\x1d\x10\xb0\x10\xd0\xb0\x25\xd0\xb1\x01\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0a\x10\xb1\x05\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x01\x10\xb0\x0e\xd0\xb0\x21\
\x10\xb1\x15\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0e\x10\
\xb0\x1a\xd0\x30\x31\x01\x23\x11\x14\x16\x33\x32\x37\x17\x06\x23\
\x22\x26\x35\x11\x23\x35\x33\x11\x26\x27\x27\x22\x15\x11\x23\x11\
\x23\x35\x33\x35\x34\x36\x33\x32\x16\x17\x11\x33\x04\x96\xca\x36\
\x41\x23\x34\x01\x49\x46\x7c\x7e\xc5\xc5\x3d\x66\x18\xb7\xb9\xab\
\xab\xb3\xa0\x5d\xdb\x5a\xca\x03\xab\xfd\x61\x41\x41\x0c\x96\x14\
\x96\x8a\x02\x9f\x8f\x01\x1f\x1c\x07\x01\xdd\xfb\x60\x03\xab\x8f\
\x70\xad\xbe\x39\x2c\xfe\x8a\x00\x01\x00\x5f\xff\xec\x06\x54\x06\
\x11\x00\x4c\x00\xcd\xb2\x16\x4d\x4e\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x47\x2f\x1b\xb1\x47\x20\x3e\x59\xb0\x00\x45\x58\xb0\x0f\
\x2f\x1b\xb1\x0f\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x4b\x2f\x1b\xb1\
\x4b\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x40\x2f\x1b\xb1\x40\x1a\x3e\
\x59\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\x09\x12\x3e\x59\xb0\x00\
\x45\x58\xb0\x2c\x2f\x1b\xb1\x2c\x12\x3e\x59\xb0\x4b\x10\xb1\x01\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x09\x10\xb1\x04\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x01\x10\xb0\x0d\xd0\xb0\
\x47\x10\xb1\x14\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x1d\
\x40\x2c\x11\x12\x39\xb0\x40\x10\xb1\x20\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb2\x3a\x2c\x40\x11\x12\x39\xb0\x3a\x10\xb1\x25\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x31\x2c\x40\x11\x12\
\x39\xb0\x2c\x10\xb1\x34\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\x30\x31\x01\x23\x11\x14\x33\x32\x37\x17\x06\x23\x22\x26\x35\x11\
\x23\x35\x33\x35\x34\x26\x23\x22\x06\x15\x14\x1e\x02\x15\x23\x34\
\x26\x23\x22\x06\x15\x14\x16\x04\x16\x16\x15\x14\x06\x23\x22\x26\
\x26\x35\x33\x16\x16\x33\x32\x36\x35\x34\x26\x24\x26\x26\x35\x34\
\x36\x33\x32\x17\x26\x35\x34\x36\x33\x32\x16\x15\x15\x33\x06\x4f\
\xca\x77\x23\x34\x01\x4d\x42\x76\x84\xbc\xbc\x66\x62\x58\x5c\x1f\
\x25\x1e\xba\x81\x62\x65\x72\x6a\x01\x15\xac\x53\xe8\xb9\x82\xc8\
\x71\xb9\x05\x8b\x72\x69\x7f\x71\xfe\xe7\xa5\x4f\xe1\xaf\x60\x56\
\x2c\xca\x9b\xb9\xc9\xca\x03\xab\xfd\x7e\x9f\x0c\x96\x14\xa6\x97\
\x02\x82\x8f\x55\x72\x75\x58\x46\x3b\x69\x70\x7c\x4c\x4c\x6e\x58\
\x47\x43\x44\x3e\x56\x79\x57\x91\xaf\x5c\xa5\x60\x5d\x6d\x55\x47\
\x4b\x53\x3c\x54\x74\x50\x85\xb8\x1e\x6e\x52\x7c\xa5\xc7\xc3\x4d\
\x00\x00\x16\x00\x5b\xfe\x72\x07\xee\x05\xae\x00\x0d\x00\x1a\x00\
\x28\x00\x37\x00\x3d\x00\x43\x00\x49\x00\x4f\x00\x56\x00\x5a\x00\
\x5e\x00\x62\x00\x66\x00\x6a\x00\x6e\x00\x76\x00\x7a\x00\x7e\x00\
\x82\x00\x86\x00\x8a\x00\x8e\x01\xc6\xb2\x10\x8f\x90\x11\x12\x39\
\xb0\x10\x10\xb0\x00\xd0\xb0\x10\x10\xb0\x1b\xd0\xb0\x10\x10\xb0\
\x30\xd0\xb0\x10\x10\xb0\x3c\xd0\xb0\x10\x10\xb0\x3e\xd0\xb0\x10\
\x10\xb0\x46\xd0\xb0\x10\x10\xb0\x4a\xd0\xb0\x10\x10\xb0\x50\xd0\
\xb0\x10\x10\xb0\x57\xd0\xb0\x10\x10\xb0\x5b\xd0\xb0\x10\x10\xb0\
\x61\xd0\xb0\x10\x10\xb0\x63\xd0\xb0\x10\x10\xb0\x67\xd0\xb0\x10\
\x10\xb0\x6d\xd0\xb0\x10\x10\xb0\x70\xd0\xb0\x10\x10\xb0\x77\xd0\
\xb0\x10\x10\xb0\x7b\xd0\xb0\x10\x10\xb0\x7f\xd0\xb0\x10\x10\xb0\
\x84\xd0\xb0\x10\x10\xb0\x88\xd0\xb0\x10\x10\xb0\x8c\xd0\x00\xb0\
\x3d\x2f\xb0\x00\x45\x58\xb0\x46\x2f\x1b\xb1\x46\x1e\x3e\x59\xb2\
\x7e\x49\x03\x2b\xb2\x7a\x7b\x03\x2b\xb2\x82\x77\x03\x2b\xb2\x7f\
\x3a\x03\x2b\xb2\x0a\x3d\x46\x11\x12\x39\xb0\x0a\x2f\xb0\x03\xd0\
\xb0\x03\x2f\xb0\x0e\xd0\xb0\x0e\x2f\xb0\x0a\x10\xb0\x0f\xd0\xb0\
\x0f\x2f\xb2\x50\x0e\x0f\x11\x12\x39\xb0\x50\x2f\xb1\x6f\x07\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x15\x50\x6f\x11\x12\x39\xb0\
\x0a\x10\xb1\x1e\x07\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\
\x10\xb1\x25\x07\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0f\x10\
\xb0\x29\xd0\xb0\x29\x2f\xb0\x0e\x10\xb0\x2e\xd0\xb0\x2e\x2f\xb1\
\x34\x07\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x3d\x10\xb1\x3c\
\x0a\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x3d\x10\xb0\x6b\xd0\
\xb0\x67\xd0\xb0\x63\xd0\xb0\x3e\xd0\xb0\x3c\x10\xb0\x6c\xd0\xb0\
\x68\xd0\xb0\x64\xd0\xb0\x3f\xd0\xb0\x3a\x10\xb0\x41\xd0\xb0\x46\
\x10\xb0\x60\xd0\xb0\x5c\xd0\xb0\x58\xd0\xb0\x4b\xd0\xb1\x4a\x0a\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x5a\xd0\xb0\x5e\xd0\xb0\
\x62\xd0\xb0\x47\xd0\xb0\x49\x10\xb0\x4e\xd0\xb0\x0e\x10\xb1\x51\
\x07\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0f\x10\xb1\x76\x07\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x77\x10\xb0\x84\xd0\xb0\
\x7a\x10\xb0\x85\xd0\xb0\x7b\x10\xb0\x88\xd0\xb0\x7e\x10\xb0\x89\
\xd0\xb0\x7f\x10\xb0\x8c\xd0\xb0\x82\x10\xb0\x8d\xd0\x30\x31\x01\
\x14\x06\x23\x22\x26\x27\x35\x34\x36\x33\x32\x16\x17\x13\x11\x33\
\x32\x16\x15\x14\x07\x16\x16\x15\x14\x23\x01\x34\x26\x23\x22\x06\
\x15\x15\x14\x16\x33\x32\x36\x35\x01\x33\x11\x14\x06\x23\x22\x26\
\x35\x33\x14\x33\x32\x36\x35\x01\x11\x33\x15\x33\x15\x21\x35\x33\
\x35\x33\x11\x01\x11\x21\x15\x23\x15\x25\x35\x21\x11\x23\x35\x01\
\x15\x33\x32\x35\x34\x27\x13\x35\x21\x15\x21\x35\x21\x15\x21\x35\
\x21\x15\x01\x35\x21\x15\x21\x35\x21\x15\x21\x35\x21\x15\x13\x33\
\x32\x35\x34\x26\x23\x23\x01\x23\x35\x33\x35\x23\x35\x33\x11\x23\
\x35\x33\x25\x23\x35\x33\x35\x23\x35\x33\x11\x23\x35\x33\x03\x39\
\x81\x64\x66\x80\x02\x7e\x68\x65\x80\x02\x43\xbc\x62\x72\x54\x32\
\x34\xd0\xfe\x8f\x4a\x41\x40\x4a\x4a\x42\x40\x49\x03\xba\x5c\x69\
\x52\x58\x6d\x5d\x68\x29\x36\xf9\xc4\x71\xc4\x05\x28\xc7\x6f\xf8\
\x6d\x01\x35\xc4\x05\xec\x01\x36\x6f\xfc\x5c\x7e\x67\x62\xcb\x01\
\x16\xfd\x5b\x01\x15\xfd\x5c\x01\x14\x02\x0a\x01\x16\xfd\x5b\x01\
\x15\xfd\x5c\x01\x14\xbc\x5d\x76\x3a\x3c\x5d\xfc\xf1\x71\x71\x71\
\x71\x71\x71\x07\x22\x6f\x6f\x6f\x6f\x6f\x6f\x01\xd4\x62\x79\x78\
\x5e\x75\x5f\x7c\x78\x5e\xfe\xb3\x02\x25\x49\x4d\x54\x20\x0d\x46\
\x2d\x9b\x01\x48\x45\x4e\x4e\x45\x70\x45\x4e\x4e\x45\x01\x4f\xfe\
\x86\x4e\x5d\x51\x53\x5b\x36\x2c\xfc\xc9\x01\x3b\xca\x71\x71\xca\
\xfe\xc5\x06\x1f\x01\x1d\x74\xa9\xa9\x74\xfe\xe3\xa9\xfc\xb6\xa9\
\x53\x52\x04\x03\x4a\x74\x74\x74\x74\x74\x74\xf9\x38\x71\x71\x71\
\x71\x71\x71\x03\xc4\x50\x29\x1e\xfe\xd3\xfc\x7e\xfa\xfc\x15\xf9\
\x7e\xfc\x7e\xfa\xfc\x15\xf9\x00\x05\x00\x5c\xfd\xd5\x07\xd7\x08\
\x73\x00\x03\x00\x1c\x00\x20\x00\x24\x00\x28\x00\x52\xb3\x11\x11\
\x10\x04\x2b\xb3\x04\x11\x1c\x04\x2b\xb3\x0a\x11\x17\x04\x2b\xb0\
\x04\x10\xb0\x1d\xd0\xb0\x1c\x10\xb0\x1e\xd0\x00\xb0\x21\x2f\xb0\
\x25\x2f\xb2\x1c\x1e\x03\x2b\xb0\x25\x10\xb0\x00\xd0\xb0\x00\x2f\
\xb0\x21\x10\xb0\x02\xd0\xb0\x02\x2f\xb2\x0d\x00\x02\x11\x12\x39\
\xb0\x0d\x2f\xb2\x1f\x1e\x02\x11\x12\x39\xb0\x1f\x2f\x30\x31\x09\
\x03\x05\x34\x36\x37\x36\x36\x35\x34\x26\x23\x22\x06\x07\x33\x36\
\x36\x33\x32\x16\x15\x14\x07\x06\x06\x15\x17\x23\x15\x33\x03\x33\
\x15\x23\x03\x33\x15\x23\x04\x18\x03\xbf\xfc\x41\xfc\x44\x04\x0f\
\x1e\x24\x4a\x5c\xa7\x95\x90\xa0\x02\xcb\x02\x3a\x2b\x39\x38\x5d\
\x5b\x2f\xca\xca\xca\x4b\x04\x04\x02\x04\x04\x06\x52\xfc\x31\xfc\
\x31\x03\xcf\xf1\x3a\x3a\x18\x27\x87\x4a\x80\x97\x8b\x7f\x33\x34\
\x40\x34\x5f\x3c\x41\x5c\x4c\x5b\xaa\xfd\x4c\x04\x0a\x9e\x04\x00\
\x01\x00\x42\x00\x00\x02\xab\x03\x20\x00\x16\x00\x56\xb2\x08\x17\
\x18\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x0e\x2f\x1b\xb1\x0e\x18\
\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb1\
\x15\x02\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x02\xd0\xb2\x14\
\x15\x0e\x11\x12\x39\xb2\x03\x0e\x14\x11\x12\x39\xb0\x0e\x10\xb1\
\x08\x02\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0e\x10\xb0\x0b\
\xd0\x30\x31\x21\x21\x35\x01\x36\x35\x34\x26\x23\x22\x06\x15\x23\
\x34\x36\x20\x16\x15\x14\x0f\x02\x21\x02\xab\xfd\xa9\x01\x2c\x6d\
\x40\x3c\x4b\x47\x9d\xa7\x01\x08\x9a\x6b\x54\xb0\x01\x8f\x6c\x01\
\x1a\x66\x45\x31\x3d\x4c\x39\x72\x94\x7f\x6e\x68\x6b\x4f\x91\x00\
\x01\x00\x7a\x00\x00\x01\xef\x03\x15\x00\x06\x00\x36\x00\xb0\x00\
\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x18\x3e\x59\xb0\x00\x45\x58\xb0\
\x01\x2f\x1b\xb1\x01\x12\x3e\x59\xb2\x04\x05\x01\x11\x12\x39\xb0\
\x04\x2f\xb1\x03\x02\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x02\
\xd0\x30\x31\x21\x23\x11\x07\x35\x25\x33\x01\xef\x9d\xd8\x01\x63\
\x12\x02\x59\x39\x80\x75\x00\x00\x02\x00\x50\xff\xf5\x02\x9d\x03\
\x20\x00\x0d\x00\x17\x00\x48\xb2\x03\x18\x19\x11\x12\x39\xb0\x03\
\x10\xb0\x10\xd0\x00\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x18\
\x3e\x59\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x12\x3e\x59\xb0\
\x0a\x10\xb1\x10\x02\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\
\x10\xb1\x15\x02\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\
\x14\x06\x23\x22\x26\x27\x35\x34\x36\x33\x32\x16\x17\x27\x34\x23\
\x22\x07\x15\x14\x33\x32\x37\x02\x9d\x98\x8d\x8b\x9c\x01\x9b\x8b\
\x8d\x98\x02\x9d\x8a\x85\x04\x8b\x84\x04\x01\x45\xa2\xae\xac\xa0\
\x8e\xa3\xae\xac\x9d\x07\xc0\xb4\xb3\xc2\xb5\x00\x02\x00\x55\xff\
\xfa\x03\x9a\x04\x9d\x00\x13\x00\x20\x00\x54\x00\xb0\x00\x45\x58\
\xb0\x08\x2f\x1b\xb1\x08\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x10\x2f\
\x1b\xb1\x10\x12\x3e\x59\xb2\x02\x10\x08\x11\x12\x39\xb0\x02\x2f\
\xb0\x10\x10\xb1\x11\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x02\x10\xb1\x14\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x08\
\x10\xb1\x1b\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\
\x06\x23\x22\x26\x35\x34\x36\x33\x32\x16\x15\x15\x10\x00\x05\x23\
\x35\x33\x24\x03\x32\x36\x37\x35\x34\x26\x23\x22\x06\x15\x14\x16\
\x02\xdf\x65\xab\xae\xcc\xe5\xba\xc6\xe0\xfe\xcc\xfe\xd4\x29\x23\
\x01\x94\xd7\x4f\x83\x1e\x84\x69\x68\x7f\x7c\x01\xec\x6e\xd7\xb0\
\xb4\xe4\xfe\xe2\x3f\xfe\xc1\xfe\xc0\x05\x98\x07\x01\x78\x4f\x40\
\x42\x84\x9e\x8f\x6c\x6d\x8b\x00\x03\x00\x60\xff\xf0\x03\xad\x04\
\x9d\x00\x15\x00\x21\x00\x2c\x00\x65\x00\xb0\x00\x45\x58\xb0\x13\
\x2f\x1b\xb1\x13\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\
\x09\x12\x3e\x59\xb0\x2a\xd0\xb0\x2a\x2f\xb2\xdf\x2a\x01\x5d\xb2\
\x1f\x2a\x01\x5d\xb1\x19\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb2\x03\x2a\x19\x11\x12\x39\xb2\x0e\x19\x2a\x11\x12\x39\xb0\x09\
\x10\xb1\x1f\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x13\x10\
\xb1\x25\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x14\
\x06\x07\x16\x16\x15\x14\x06\x20\x26\x35\x34\x36\x37\x26\x26\x35\
\x34\x36\x20\x16\x03\x34\x26\x23\x22\x06\x15\x14\x16\x33\x32\x36\
\x03\x34\x26\x23\x22\x06\x15\x14\x16\x32\x36\x03\x90\x63\x55\x62\
\x73\xe8\xfe\x84\xe9\x71\x62\x55\x60\xd6\x01\x62\xda\x9c\x83\x6c\
\x6b\x80\x7f\x6e\x6d\x80\x1e\x74\x5d\x5e\x6e\x6f\xbe\x70\x03\x5a\
\x56\x87\x26\x26\x93\x62\x97\xb5\xb3\x99\x63\x92\x27\x26\x86\x56\
\x94\xaf\xaf\xfd\x58\x56\x6e\x6c\x58\x5b\x64\x67\x02\x65\x4e\x64\
\x61\x51\x50\x62\x63\x00\x01\x00\x42\x00\x00\x03\xc0\x04\x8d\x00\
\x06\x00\x3a\xb2\x01\x07\x08\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\
\x05\x2f\x1b\xb1\x05\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x01\x2f\x1b\
\xb1\x01\x12\x3e\x59\xb0\x05\x10\xb1\x03\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb2\x00\x05\x03\x11\x12\x39\x30\x31\x01\x01\x23\
\x01\x21\x35\x21\x03\xc0\xfd\xe8\xc3\x02\x17\xfd\x46\x03\x7e\x04\
\x24\xfb\xdc\x03\xf4\x99\x00\x00\x02\x00\x72\xff\xf0\x03\xbb\x04\
\x93\x00\x15\x00\x20\x00\x65\xb2\x07\x21\x22\x11\x12\x39\xb0\x07\
\x10\xb0\x16\xd0\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1c\
\x3e\x59\xb0\x00\x45\x58\xb0\x0e\x2f\x1b\xb1\x0e\x12\x3e\x59\xb0\
\x00\x10\xb1\x01\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x08\
\x0e\x00\x11\x12\x39\xb0\x08\x2f\xb2\x05\x08\x0e\x11\x12\x39\xb1\
\x16\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0e\x10\xb1\x1c\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x15\x23\x06\
\x06\x07\x36\x36\x33\x32\x16\x15\x14\x06\x23\x22\x26\x35\x35\x10\
\x00\x21\x03\x22\x06\x07\x15\x14\x16\x32\x36\x34\x26\x03\x00\x1e\
\xc8\xe0\x0e\x34\x96\x4e\xae\xc9\xdf\xbe\xc2\xea\x01\x40\x01\x3c\
\xd0\x50\x83\x20\x89\xd2\x7e\x7b\x04\x93\x9c\x03\xb8\xb1\x39\x3f\
\xd7\xae\xb0\xde\xfb\xd4\x4b\x01\x3f\x01\x4a\xfd\xd8\x4d\x40\x28\
\x8a\xa4\x85\xd8\x86\x00\x01\x00\x80\xff\xf0\x03\xc5\x04\x8d\x00\
\x1d\x00\x6b\xb2\x1a\x1e\x1f\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\
\x01\x2f\x1b\xb1\x01\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\
\xb1\x0d\x12\x3e\x59\xb0\x01\x10\xb1\x03\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb2\x07\x01\x0d\x11\x12\x39\xb0\x07\x2f\xb1\x1a\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x05\x07\x1a\x11\x12\
\x39\xb0\x0d\x10\xb0\x11\xd0\xb0\x0d\x10\xb1\x14\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x07\x10\xb0\x1d\xd0\x30\x31\x13\x13\
\x21\x15\x21\x03\x36\x33\x32\x16\x15\x14\x06\x23\x22\x26\x27\x33\
\x16\x16\x33\x32\x36\x35\x34\x26\x23\x22\x07\x07\xa4\x45\x02\xa8\
\xfd\xf4\x25\x63\x73\xb8\xd7\xdf\xc4\xab\xea\x0d\xb2\x0e\x80\x62\
\x70\x79\x8c\x73\x69\x42\x29\x02\x43\x02\x4a\xa2\xfe\xdf\x30\xd2\
\xb4\xb2\xd2\xb1\x97\x5b\x56\x82\x71\x6a\x7f\x2a\x1b\x00\x02\x00\
\x30\x00\x00\x03\xe4\x04\x8d\x00\x0a\x00\x0e\x00\x50\xb2\x0e\x0f\
\x10\x11\x12\x39\xb0\x0e\x10\xb0\x09\xd0\x00\xb0\x00\x45\x58\xb0\
\x09\x2f\x1b\xb1\x09\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x04\x2f\x1b\
\xb1\x04\x12\x3e\x59\xb2\x01\x09\x04\x11\x12\x39\xb0\x01\x2f\xb1\
\x02\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x06\xd0\xb0\x01\
\x10\xb0\x0b\xd0\xb2\x0d\x09\x04\x11\x12\x39\x30\x31\x01\x33\x15\
\x23\x11\x23\x11\x21\x27\x01\x33\x01\x21\x11\x07\x03\x35\xaf\xaf\
\xba\xfd\xb8\x03\x02\x42\xc3\xfd\xc1\x01\x85\x1a\x01\x9d\x97\xfe\
\xfa\x01\x06\x73\x03\x14\xfd\x10\x01\xfc\x2f\x00\x01\x00\x4e\xff\
\xf0\x03\x9f\x04\x9d\x00\x26\x00\x8f\xb2\x20\x27\x28\x11\x12\x39\
\x00\xb0\x00\x45\x58\xb0\x0e\x2f\x1b\xb1\x0e\x1c\x3e\x59\xb0\x00\
\x45\x58\xb0\x19\x2f\x1b\xb1\x19\x12\x3e\x59\xb2\x01\x0e\x19\x11\
\x12\x39\xb0\x01\x2f\xb2\xbf\x01\x01\x5d\xb4\xaf\x01\xbf\x01\x02\
\x71\xb4\xdf\x01\xef\x01\x02\x5d\xb4\x1f\x01\x2f\x01\x02\x5d\xb4\
\x6f\x01\x7f\x01\x02\x72\xb0\x0e\x10\xb1\x07\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x0e\x10\xb0\x0a\xd0\xb0\x01\x10\xb1\x25\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x14\x25\x01\x11\x12\
\x39\xb0\x19\x10\xb0\x1d\xd0\xb0\x19\x10\xb1\x20\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x33\x32\x36\x35\x34\x26\x23\
\x22\x06\x15\x23\x34\x36\x33\x32\x16\x15\x14\x06\x07\x16\x15\x14\
\x06\x23\x22\x26\x35\x33\x14\x16\x33\x32\x36\x35\x34\x21\x23\x01\
\x60\x7a\x76\x81\x6c\x70\x62\x7f\xb9\xe6\xb3\xbc\xda\x65\x5b\xd5\
\xe9\xc1\xbd\xea\xb9\x83\x6c\x70\x7f\xfe\xec\x71\x02\x9b\x63\x54\
\x53\x60\x5b\x4d\x8c\xb4\xaf\x9c\x4f\x89\x25\x40\xd1\x9a\xba\xb3\
\x96\x4f\x63\x62\x5b\xc3\x00\x00\x01\x00\x4e\x00\x00\x03\xca\x04\
\x9d\x00\x18\x00\x56\xb2\x09\x19\x1a\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x10\x2f\x1b\xb1\x10\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x00\
\x2f\x1b\xb1\x00\x12\x3e\x59\xb1\x17\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x02\xd0\xb2\x03\x10\x00\x11\x12\x39\xb0\x10\x10\
\xb1\x09\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x10\x10\xb0\
\x0c\xd0\xb2\x16\x00\x10\x11\x12\x39\x30\x31\x21\x21\x35\x01\x36\
\x36\x35\x34\x26\x23\x22\x06\x15\x23\x34\x36\x33\x32\x16\x15\x14\
\x06\x07\x01\x21\x03\xca\xfc\x9f\x01\xab\x67\x5d\x74\x5e\x79\x85\
\xba\xf5\xc3\xb6\xd6\x63\x9b\xfe\xb8\x02\x7e\x83\x01\x9d\x5e\x8b\
\x41\x52\x69\x70\x6b\xa5\xce\xba\x95\x51\xae\xa1\xfe\xe9\x00\x00\
\x01\x00\x98\x00\x00\x02\x9d\x04\x90\x00\x06\x00\x41\xb2\x01\x07\
\x08\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x1c\
\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb2\
\x04\x00\x05\x11\x12\x39\xb0\x04\x2f\xb1\x03\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb2\x02\x03\x05\x11\x12\x39\x30\x31\x21\x23\
\x11\x05\x35\x25\x33\x02\x9d\xba\xfe\xb5\x01\xeb\x1a\x03\xaf\x63\
\x9f\xa5\x00\x00\x02\x00\x63\xff\xf0\x03\xab\x04\x9d\x00\x0d\x00\
\x18\x00\x48\xb2\x03\x19\x1a\x11\x12\x39\xb0\x03\x10\xb0\x10\xd0\
\x00\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1c\x3e\x59\xb0\x00\
\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x12\x3e\x59\xb0\x0a\x10\xb1\x10\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\xb1\x16\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x14\x02\x23\x22\
\x02\x27\x35\x34\x12\x33\x32\x12\x17\x27\x10\x23\x22\x11\x15\x14\
\x16\x33\x32\x11\x03\xab\xd8\xcb\xc9\xda\x02\xd9\xca\xcb\xd7\x03\
\xba\xeb\xea\x7a\x72\xe9\x01\xf1\xf8\xfe\xf7\x01\x05\xf4\xb6\xf9\
\x01\x05\xfe\xfe\xef\x0f\x01\x49\xfe\xb3\xe1\xa7\xa8\x01\x53\x00\
\x01\x00\x47\x00\x00\x03\xe0\x04\x8d\x00\x09\x00\x46\x00\xb0\x00\
\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x1c\x3e\x59\xb0\x00\x45\x58\xb0\
\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb1\x00\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb2\x04\x00\x02\x11\x12\x39\xb0\x07\x10\xb1\x05\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x09\x05\x07\x11\x12\
\x39\x30\x31\x25\x21\x15\x21\x35\x01\x21\x35\x21\x15\x01\x2f\x02\
\xb1\xfc\x67\x02\x98\xfd\x71\x03\x78\x97\x97\x7c\x03\x78\x99\x79\
\x00\x00\x01\x00\x0d\x00\x00\x04\x1c\x04\x8d\x00\x08\x00\x31\x00\
\xb0\x00\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x1c\x3e\x59\xb0\x00\x45\
\x58\xb0\x07\x2f\x1b\xb1\x07\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x04\
\x2f\x1b\xb1\x04\x12\x3e\x59\xb2\x00\x01\x04\x11\x12\x39\x30\x31\
\x01\x01\x33\x01\x11\x23\x11\x01\x33\x02\x14\x01\x38\xd0\xfe\x52\
\xb9\xfe\x58\xd0\x02\x4a\x02\x43\xfd\x0a\xfe\x69\x01\xa2\x02\xeb\
\x00\x00\x01\x00\x26\x00\x00\x04\x31\x04\x8d\x00\x0b\x00\x53\x00\
\xb0\x00\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x1c\x3e\x59\xb0\x00\x45\
\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x04\
\x2f\x1b\xb1\x04\x12\x3e\x59\xb0\x00\x45\x58\xb0\x07\x2f\x1b\xb1\
\x07\x12\x3e\x59\xb2\x00\x01\x04\x11\x12\x39\xb2\x06\x01\x04\x11\
\x12\x39\xb2\x03\x00\x06\x11\x12\x39\xb2\x09\x06\x00\x11\x12\x39\
\x30\x31\x01\x01\x33\x01\x01\x23\x01\x01\x23\x01\x01\x33\x02\x28\
\x01\x1f\xdc\xfe\x75\x01\x99\xdc\xfe\xd5\xfe\xd8\xdc\x01\x96\xfe\
\x73\xdb\x02\xda\x01\xb3\xfd\xbe\xfd\xb5\x01\xbb\xfe\x45\x02\x4b\
\x02\x42\x00\x00\x01\x00\x31\x00\x00\x05\xf1\x04\x8d\x00\x12\x00\
\x60\xb2\x0e\x13\x14\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x03\x2f\
\x1b\xb1\x03\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\
\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x11\x2f\x1b\xb1\x11\x1c\x3e\x59\
\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x12\x3e\x59\xb0\x00\x45\
\x58\xb0\x0f\x2f\x1b\xb1\x0f\x12\x3e\x59\xb2\x01\x03\x0a\x11\x12\
\x39\xb2\x06\x03\x0a\x11\x12\x39\xb2\x0d\x03\x0a\x11\x12\x39\x30\
\x31\x01\x17\x37\x13\x33\x13\x17\x37\x13\x33\x01\x23\x01\x27\x07\
\x01\x23\x01\x33\x01\xaf\x0b\x0f\xf8\xa5\xf4\x0d\x0c\xc6\xb8\xfe\
\xd6\xae\xfe\xfc\x01\x01\xfe\xf4\xad\xfe\xd7\xb7\x01\x26\x50\x40\
\x03\x77\xfc\x86\x3b\x50\x03\x65\xfb\x73\x03\x95\x05\x05\xfc\x6b\
\x04\x8d\x00\x00\x01\x00\x14\x00\x00\x04\x53\x04\x8d\x00\x08\x00\
\x31\x00\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1c\x3e\x59\xb0\
\x00\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x1c\x3e\x59\xb0\x00\x45\x58\
\xb0\x05\x2f\x1b\xb1\x05\x12\x3e\x59\xb2\x01\x03\x05\x11\x12\x39\
\x30\x31\x01\x17\x37\x01\x33\x01\x23\x01\x33\x02\x1a\x19\x1a\x01\
\x40\xc6\xfe\x37\xad\xfe\x37\xc7\x01\x24\x5e\x5c\x03\x6b\xfb\x73\
\x04\x8d\x00\x00\x01\x00\x74\xff\xf0\x04\x0a\x04\x8d\x00\x11\x00\
\x3d\xb2\x04\x12\x13\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x00\x2f\
\x1b\xb1\x00\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\
\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\x59\
\xb1\x0d\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x11\
\x14\x06\x23\x22\x26\x27\x11\x33\x11\x14\x16\x33\x32\x36\x35\x11\
\x04\x0a\xfa\xd1\xd2\xf6\x03\xb7\x8f\x85\x83\x8f\x04\x8d\xfc\xf4\
\xb6\xdb\xd3\xb6\x03\x14\xfc\xf4\x79\x81\x7f\x7b\x03\x0c\x00\x00\
\x01\x00\x28\x00\x00\x03\xfd\x04\x8d\x00\x07\x00\x2f\x00\xb0\x00\
\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1c\x3e\x59\xb0\x00\x45\x58\xb0\
\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb0\x06\x10\xb1\x00\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\xd0\x30\x31\x01\x21\x11\x23\
\x11\x21\x35\x21\x03\xfd\xfe\x71\xb9\xfe\x73\x03\xd5\x03\xf4\xfc\
\x0c\x03\xf4\x99\x00\x00\x01\x00\x43\xff\xf0\x03\xdd\x04\x9d\x00\
\x25\x00\x5d\x00\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\x09\x1c\x3e\
\x59\xb0\x00\x45\x58\xb0\x1c\x2f\x1b\xb1\x1c\x12\x3e\x59\xb2\x02\
\x1c\x09\x11\x12\x39\xb0\x09\x10\xb0\x0d\xd0\xb0\x09\x10\xb1\x10\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x02\x10\xb1\x16\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x1c\x10\xb0\x20\xd0\xb0\
\x1c\x10\xb1\x23\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\
\x01\x34\x26\x24\x27\x26\x35\x34\x36\x33\x32\x16\x15\x23\x34\x26\
\x23\x22\x06\x15\x14\x16\x04\x16\x16\x15\x14\x06\x23\x22\x24\x35\
\x33\x14\x16\x33\x32\x36\x03\x23\x79\xfe\xda\x56\xc3\xf3\xbf\xc4\
\xf9\xb9\x8d\x79\x71\x86\x7b\x01\x38\xb0\x56\xf3\xc7\xcf\xfe\xef\
\xba\x9a\x8c\x7e\x82\x01\x2a\x50\x58\x4a\x2b\x62\xb3\x8f\xb2\xc8\
\x9c\x62\x6b\x59\x50\x41\x58\x50\x65\x88\x5b\x93\xa9\xcb\xa2\x66\
\x72\x5b\x00\x00\x02\x00\x8a\x00\x00\x04\x25\x04\x8d\x00\x0d\x00\
\x16\x00\x63\xb2\x15\x17\x18\x11\x12\x39\xb0\x15\x10\xb0\x05\xd0\
\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1c\x3e\x59\xb0\x00\
\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb0\x00\x45\x58\xb0\
\x0c\x2f\x1b\xb1\x0c\x12\x3e\x59\xb2\x0f\x04\x02\x11\x12\x39\xb0\
\x0f\x2f\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x0a\
\x00\x04\x11\x12\x39\xb0\x04\x10\xb1\x15\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\x30\x31\x01\x21\x11\x23\x11\x21\x32\x16\x15\x14\
\x07\x01\x15\x23\x01\x33\x32\x36\x35\x34\x26\x23\x23\x02\x5a\xfe\
\xe9\xb9\x01\xaa\xd5\xe7\xeb\x01\x20\xc6\xfd\xe4\xf6\x75\x89\x86\
\x7e\xf0\x01\xc1\xfe\x3f\x04\x8d\xba\xaa\xe4\x59\xfe\x1e\x0a\x02\
\x58\x6d\x5d\x64\x6e\x00\x02\x00\x59\xff\x36\x04\x57\x04\x9d\x00\
\x13\x00\x21\x00\x4f\xb2\x08\x22\x23\x11\x12\x39\xb0\x08\x10\xb0\
\x1e\xd0\x00\xb0\x00\x45\x58\xb0\x10\x2f\x1b\xb1\x10\x1c\x3e\x59\
\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x12\x3e\x59\xb2\x03\x08\
\x10\x11\x12\x39\xb0\x10\x10\xb1\x17\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x08\x10\xb1\x1e\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\x30\x31\x01\x14\x06\x07\x17\x07\x25\x06\x23\x22\x00\x11\
\x35\x34\x12\x36\x33\x32\x00\x11\x27\x34\x26\x23\x22\x06\x07\x15\
\x14\x16\x33\x32\x36\x35\x04\x55\x70\x66\xd8\x7c\xfe\xf9\x36\x46\
\xe4\xfe\xe5\x7f\xe8\x96\xea\x01\x15\xb7\xac\x9c\x94\xac\x04\xae\
\x98\x9c\xaa\x02\x24\xa6\xf3\x46\xa0\x6f\xc7\x0d\x01\x31\x01\x08\
\x3e\xa9\x01\x03\x8a\xfe\xcd\xfe\xf9\x06\xc6\xd2\xcf\xb9\x55\xc2\
\xd8\xd3\xc7\x00\x02\x00\x8a\x00\x00\x04\x1b\x04\x8d\x00\x0a\x00\
\x13\x00\x4f\xb2\x0a\x14\x15\x11\x12\x39\xb0\x0a\x10\xb0\x0c\xd0\
\x00\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1c\x3e\x59\xb0\x00\
\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x12\x3e\x59\xb2\x0b\x03\x01\x11\
\x12\x39\xb0\x0b\x2f\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x03\x10\xb1\x12\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\x30\x31\x01\x11\x23\x11\x21\x32\x16\x15\x14\x06\x23\x25\x21\x32\
\x36\x35\x34\x26\x27\x21\x01\x43\xb9\x01\xd3\xcc\xf2\xea\xd6\xfe\
\xe8\x01\x1a\x7c\x88\x88\x77\xfe\xe1\x01\xb6\xfe\x4a\x04\x8d\xc7\
\xa8\xaa\xbe\x98\x6a\x64\x60\x77\x01\x00\x02\x00\x60\xff\xf0\x04\
\x5a\x04\x9d\x00\x0d\x00\x1b\x00\x48\xb2\x03\x1c\x1d\x11\x12\x39\
\xb0\x03\x10\xb0\x11\xd0\x00\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\
\x0a\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x12\x3e\
\x59\xb0\x0a\x10\xb1\x11\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb0\x03\x10\xb1\x18\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\
\x31\x01\x10\x00\x23\x22\x00\x11\x35\x10\x00\x33\x32\x00\x17\x07\
\x34\x26\x23\x22\x06\x15\x15\x14\x16\x33\x32\x36\x35\x04\x5a\xfe\
\xec\xe8\xe5\xfe\xe7\x01\x17\xe5\xe9\x01\x13\x02\xb7\xac\x9b\x96\
\xaf\xb0\x97\x9c\xa9\x02\x24\xfe\xfb\xfe\xd1\x01\x32\x01\x07\x3e\
\x01\x02\x01\x34\xfe\xd0\xff\x05\xc6\xd2\xd6\xc5\x42\xc3\xd7\xd3\
\xc7\x00\x01\x00\x8a\x00\x00\x04\x58\x04\x8d\x00\x09\x00\x45\x00\
\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x1c\x3e\x59\xb0\x00\x45\
\x58\xb0\x08\x2f\x1b\xb1\x08\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x00\
\x2f\x1b\xb1\x00\x12\x3e\x59\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\
\x03\x12\x3e\x59\xb2\x02\x05\x00\x11\x12\x39\xb2\x07\x05\x00\x11\
\x12\x39\x30\x31\x21\x23\x01\x11\x23\x11\x33\x01\x11\x33\x04\x58\
\xb8\xfd\xa3\xb9\xb9\x02\x5d\xb8\x03\x6c\xfc\x94\x04\x8d\xfc\x93\
\x03\x6d\x00\x00\x01\x00\x8a\x00\x00\x05\x77\x04\x8d\x00\x0e\x00\
\x60\xb2\x01\x0f\x10\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x00\x2f\
\x1b\xb1\x00\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\
\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\x59\
\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x12\x3e\x59\xb0\x00\x45\
\x58\xb0\x0c\x2f\x1b\xb1\x0c\x12\x3e\x59\xb2\x01\x00\x04\x11\x12\
\x39\xb2\x07\x00\x04\x11\x12\x39\xb2\x0a\x00\x04\x11\x12\x39\x30\
\x31\x09\x02\x33\x11\x23\x11\x13\x01\x23\x01\x13\x11\x23\x11\x01\
\x7a\x01\x87\x01\x85\xf1\xb8\x13\xfe\x72\x88\xfe\x73\x13\xb8\x04\
\x8d\xfc\x71\x03\x8f\xfb\x73\x01\x91\x02\x15\xfc\x5a\x03\xa2\xfd\
\xef\xfe\x6f\x04\x8d\x00\x01\x00\x8a\x00\x00\x03\x8b\x04\x8d\x00\
\x05\x00\x29\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1c\x3e\
\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb1\x00\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x25\x21\x15\x21\
\x11\x33\x01\x43\x02\x48\xfc\xff\xb9\x97\x97\x04\x8d\x00\x01\x00\
\x8a\x00\x00\x04\x57\x04\x8d\x00\x0c\x00\x4c\x00\xb0\x00\x45\x58\
\xb0\x04\x2f\x1b\xb1\x04\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x08\x2f\
\x1b\xb1\x08\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\
\x12\x3e\x59\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x12\x3e\x59\
\xb2\x00\x02\x08\x11\x12\x39\xb2\x06\x02\x04\x11\x12\x39\xb2\x0a\
\x02\x08\x11\x12\x39\x30\x31\x01\x07\x11\x23\x11\x33\x11\x37\x01\
\x33\x01\x01\x23\x01\xd6\x93\xb9\xb9\x82\x01\x8d\xe3\xfe\x21\x02\
\x01\xe1\x02\x07\x8e\xfe\x87\x04\x8d\xfd\xd5\x90\x01\x9b\xfd\xf9\
\xfd\x7a\x00\x00\x01\x00\x2b\xff\xf0\x03\x4d\x04\x8d\x00\x0f\x00\
\x36\xb2\x05\x10\x11\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x00\x2f\
\x1b\xb1\x00\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\
\x12\x3e\x59\xb0\x09\xd0\xb0\x05\x10\xb1\x0c\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\x30\x31\x01\x33\x11\x14\x06\x23\x22\x26\x35\
\x33\x14\x16\x33\x32\x36\x35\x02\x92\xbb\xd4\xb1\xc2\xdb\xba\x71\
\x72\x5c\x6e\x04\x8d\xfc\xc5\x9d\xc5\xb7\xa4\x5e\x66\x6d\x5f\x00\
\x01\x00\x97\x00\x00\x01\x51\x04\x8d\x00\x03\x00\x1d\x00\xb0\x00\
\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1c\x3e\x59\xb0\x00\x45\x58\xb0\
\x00\x2f\x1b\xb1\x00\x12\x3e\x59\x30\x31\x21\x23\x11\x33\x01\x51\
\xba\xba\x04\x8d\x00\x00\x01\x00\x8a\x00\x00\x04\x58\x04\x8d\x00\
\x0b\x00\x54\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1c\x3e\
\x59\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1c\x3e\x59\xb0\x00\
\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb0\x00\x45\x58\xb0\
\x04\x2f\x1b\xb1\x04\x12\x3e\x59\xb2\x09\x00\x0a\x11\x12\x39\x7c\
\xb0\x09\x2f\x18\xb2\xa3\x09\x01\x5d\xb1\x02\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\x30\x31\x21\x23\x11\x21\x11\x23\x11\x33\x11\
\x21\x11\x33\x04\x58\xb9\xfd\xa4\xb9\xb9\x02\x5c\xb9\x01\xf2\xfe\
\x0e\x04\x8d\xfd\xfd\x02\x03\x00\x01\x00\x63\xff\xf0\x04\x35\x04\
\x9d\x00\x1d\x00\x62\xb2\x0a\x1e\x1f\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x03\
\x2f\x1b\xb1\x03\x12\x3e\x59\xb2\x1d\x0a\x03\x11\x12\x39\xb0\x1d\
\x2f\xb2\x0d\x1d\x0a\x11\x12\x39\xb0\x0a\x10\xb1\x10\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\xb1\x17\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x1d\x10\xb1\x1a\x03\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\x30\x31\x25\x06\x06\x23\x22\x00\x27\x35\x10\
\x00\x33\x32\x16\x17\x23\x26\x23\x22\x06\x15\x15\x14\x16\x33\x32\
\x37\x35\x21\x35\x21\x04\x35\x42\xe9\x97\xee\xfe\xe0\x02\x01\x0b\
\xf2\xc8\xf2\x1b\xb8\x26\xf5\x9f\xa6\xb9\xa0\xb6\x51\xfe\xe7\x01\
\xd1\x96\x53\x53\x01\x2a\xfc\x5a\x01\x06\x01\x27\xbc\xb5\xd9\xce\
\xc7\x54\xbe\xd7\x4a\xee\x90\x00\x01\x00\x8a\x00\x00\x03\x9b\x04\
\x8d\x00\x09\x00\x43\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\
\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\
\xb0\x09\xd0\xb0\x09\x2f\xb2\x1f\x09\x01\x5d\xb1\x00\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\x10\xb1\x06\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x21\x11\x23\x11\x21\x15\x21\
\x11\x21\x03\x4b\xfd\xf8\xb9\x03\x11\xfd\xa8\x02\x08\x01\xf3\xfe\
\x0d\x04\x8d\x99\xfe\x98\x00\x00\x01\x00\x43\xff\x13\x03\xdd\x05\
\x73\x00\x2b\x00\x69\x00\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\x09\
\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x22\x2f\x1b\xb1\x22\x12\x3e\x59\
\xb2\x02\x22\x09\x11\x12\x39\xb0\x09\x10\xb0\x0c\xd0\xb0\x09\x10\
\xb0\x10\xd0\xb0\x09\x10\xb1\x13\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb0\x02\x10\xb1\x19\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x22\x10\xb0\x1f\xd0\xb0\x22\x10\xb0\x26\xd0\xb0\x22\x10\
\xb1\x29\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x34\
\x26\x24\x27\x26\x35\x34\x36\x37\x35\x33\x15\x16\x16\x15\x23\x34\
\x26\x23\x22\x06\x15\x14\x16\x04\x16\x16\x15\x14\x06\x07\x15\x23\
\x35\x26\x26\x35\x33\x14\x16\x33\x32\x36\x03\x23\x79\xfe\xda\x56\
\xc3\xcb\xa6\x95\xa3\xc6\xb9\x8d\x79\x71\x86\x7b\x01\x38\xb0\x56\
\xc3\xa9\x95\xba\xdf\xba\x9a\x8c\x7e\x82\x01\x2a\x50\x58\x4a\x2b\
\x62\xb3\x82\xac\x10\xd9\xdb\x15\xc2\x88\x62\x6b\x59\x50\x41\x58\
\x50\x65\x88\x5b\x82\xa6\x10\xe1\xe1\x13\xc2\x94\x66\x72\x5b\x00\
\x01\x00\x30\x00\x00\x03\xef\x04\x9d\x00\x20\x00\x63\x00\xb0\x00\
\x45\x58\xb0\x14\x2f\x1b\xb1\x14\x1c\x3e\x59\xb0\x00\x45\x58\xb0\
\x07\x2f\x1b\xb1\x07\x12\x3e\x59\xb2\x0f\x07\x14\x11\x12\x39\xb0\
\x0f\x2f\xb1\x0e\x04\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x01\
\xd0\xb0\x07\x10\xb1\x04\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb0\x08\xd0\xb0\x14\x10\xb0\x18\xd0\xb0\x14\x10\xb1\x1b\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0f\x10\xb0\x1f\xd0\x30\x31\
\x01\x21\x17\x16\x07\x21\x07\x21\x35\x33\x36\x37\x37\x27\x23\x35\
\x33\x27\x26\x36\x33\x32\x16\x15\x23\x34\x26\x23\x22\x06\x17\x17\
\x21\x03\x1d\xfe\x70\x01\x05\x38\x02\x94\x01\xfc\x84\x0a\x4f\x09\
\x01\x01\xa4\xa0\x04\x06\xcb\xb5\xb7\xca\xb9\x68\x60\x5d\x68\x04\
\x04\x01\x94\x01\xf4\x22\xcb\x6f\x98\x98\x17\xdd\x46\x22\x79\x7b\
\xc9\xec\xcc\xb7\x70\x77\x8f\x8a\x7b\x00\x01\x00\x0d\x00\x00\x03\
\x92\x04\x8d\x00\x17\x00\x6d\xb2\x00\x18\x19\x11\x12\x39\x00\xb0\
\x00\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x1c\x3e\x59\xb0\x00\x45\x58\
\xb0\x0c\x2f\x1b\xb1\x0c\x12\x3e\x59\xb2\x00\x0c\x01\x11\x12\x39\
\xb2\x08\x01\x0c\x11\x12\x39\xb0\x08\x2f\xb0\x03\xd0\xb0\x03\x2f\
\xb0\x05\xb0\x0a\x2b\x58\xd8\x1b\xdc\x59\xb0\x08\x10\xb0\x0a\xb0\
\x0a\x2b\x58\xd8\x1b\xdc\x59\xb0\x0e\xd0\xb0\x08\x10\xb0\x10\xd0\
\xb0\x05\x10\xb0\x12\xd0\xb0\x03\x10\xb0\x14\xd0\xb0\x01\x10\xb0\
\x16\xd0\x30\x31\x01\x13\x33\x01\x33\x15\x21\x07\x15\x21\x15\x21\
\x15\x23\x35\x21\x35\x21\x35\x21\x35\x33\x01\x33\x01\xd1\xfd\xc4\
\xfe\xd4\xd5\xfe\xf1\x03\x01\x12\xfe\xee\xb9\xfe\xee\x01\x12\xfe\
\xee\xdb\xfe\xd4\xc7\x02\x4d\x02\x40\xfd\x8c\x79\x07\x44\x78\xdd\
\xdd\x78\x4b\x79\x02\x74\x00\x00\x01\x00\x8a\x00\x00\x03\x85\x04\
\x8d\x00\x05\x00\x33\xb2\x01\x06\x07\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x04\x2f\x1b\xb1\x04\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x02\
\x2f\x1b\xb1\x02\x12\x3e\x59\xb0\x04\x10\xb1\x00\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x21\x11\x23\x11\x21\x03\x85\
\xfd\xbe\xb9\x02\xfb\x03\xf4\xfc\x0c\x04\x8d\x00\x02\x00\x14\x00\
\x00\x04\x53\x04\x8d\x00\x03\x00\x08\x00\x3d\xb2\x05\x09\x0a\x11\
\x12\x39\xb0\x05\x10\xb0\x02\xd0\x00\xb0\x00\x45\x58\xb0\x02\x2f\
\x1b\xb1\x02\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\
\x12\x3e\x59\xb2\x05\x02\x00\x11\x12\x39\xb1\x07\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\x30\x31\x21\x21\x01\x33\x03\x27\x07\x01\
\x21\x04\x53\xfb\xc1\x01\xc9\xad\x3d\x1a\x19\xfe\xf8\x02\x43\x04\
\x8d\xfe\xdd\x5c\x5e\xfd\x30\x00\x03\x00\x60\xff\xf0\x04\x5a\x04\
\x9d\x00\x03\x00\x11\x00\x1f\x00\x61\x00\xb0\x00\x45\x58\xb0\x0e\
\x2f\x1b\xb1\x0e\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x07\x2f\x1b\xb1\
\x07\x12\x3e\x59\xb2\x02\x07\x0e\x11\x12\x39\x7c\xb0\x02\x2f\x18\
\xb4\x60\x02\x70\x02\x02\x71\xb4\x60\x02\x70\x02\x02\x5d\xb1\x01\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0e\x10\xb1\x15\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x07\x10\xb1\x1c\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x21\x35\x21\x05\x10\
\x00\x23\x22\x00\x11\x35\x10\x00\x33\x32\x00\x17\x07\x34\x26\x23\
\x22\x06\x15\x15\x14\x16\x33\x32\x36\x35\x03\x55\xfe\x1f\x01\xe1\
\x01\x05\xfe\xec\xe8\xe5\xfe\xe7\x01\x17\xe5\xe9\x01\x13\x02\xb7\
\xac\x9b\x96\xaf\xb0\x97\x9c\xa9\x01\xf9\x99\x6e\xfe\xfb\xfe\xd1\
\x01\x32\x01\x07\x3e\x01\x02\x01\x34\xfe\xd0\xff\x05\xc6\xd2\xd6\
\xc5\x42\xc3\xd7\xd3\xc7\x00\x00\x01\x00\x14\x00\x00\x04\x53\x04\
\x8d\x00\x08\x00\x38\xb2\x07\x09\x0a\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x02\x2f\x1b\xb1\x02\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x00\
\x2f\x1b\xb1\x00\x12\x3e\x59\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\
\x04\x12\x3e\x59\xb2\x07\x02\x00\x11\x12\x39\x30\x31\x33\x23\x01\
\x33\x01\x23\x01\x27\x07\xdb\xc7\x01\xc9\xad\x01\xc9\xc6\xfe\xc0\
\x1a\x19\x04\x8d\xfb\x73\x03\x6a\x5c\x5e\x00\x00\x03\x00\x3e\x00\
\x00\x03\x4b\x04\x8d\x00\x03\x00\x07\x00\x0b\x00\x66\xb2\x04\x0c\
\x0d\x11\x12\x39\xb0\x04\x10\xb0\x01\xd0\xb0\x04\x10\xb0\x09\xd0\
\x00\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1c\x3e\x59\xb0\x00\
\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb1\x02\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x07\x0a\x00\x11\x12\x39\xb0\x07\
\x2f\xb2\xbf\x07\x01\x5d\xb1\x04\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb0\x0a\x10\xb1\x08\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\x30\x31\x21\x21\x35\x21\x03\x21\x35\x21\x13\x21\x35\x21\x03\
\x4b\xfc\xf3\x03\x0d\x43\xfd\x77\x02\x89\x43\xfc\xf3\x03\x0d\x98\
\x01\x7b\x98\x01\x49\x99\x00\x00\x01\x00\x8a\x00\x00\x04\x44\x04\
\x8d\x00\x07\x00\x40\xb2\x01\x08\x09\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x06\x2f\x1b\xb1\x06\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x00\
\x2f\x1b\xb1\x00\x12\x3e\x59\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\
\x04\x12\x3e\x59\xb0\x06\x10\xb1\x02\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\x30\x31\x21\x23\x11\x21\x11\x23\x11\x21\x04\x44\xba\
\xfd\xb9\xb9\x03\xba\x03\xf4\xfc\x0c\x04\x8d\x00\x01\x00\x3f\x00\
\x00\x03\xc8\x04\x8d\x00\x0c\x00\x45\xb2\x06\x0d\x0e\x11\x12\x39\
\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1c\x3e\x59\xb0\x00\
\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x12\x3e\x59\xb1\x01\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x05\xd0\xb0\x08\x10\xb1\x0a\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x07\xd0\x30\x31\x01\x01\
\x21\x15\x21\x35\x01\x01\x35\x21\x15\x21\x01\x02\x6f\xfe\xb6\x02\
\xa3\xfc\x77\x01\x51\xfe\xaf\x03\x57\xfd\x8f\x01\x4a\x02\x3a\xfe\
\x5f\x99\x90\x01\xb7\x01\xb6\x90\x99\xfe\x5f\x00\x03\x00\x60\x00\
\x00\x05\x06\x04\x8d\x00\x11\x00\x17\x00\x1e\x00\x5e\x00\xb0\x00\
\x45\x58\xb0\x10\x2f\x1b\xb1\x10\x1c\x3e\x59\xb0\x00\x45\x58\xb0\
\x08\x2f\x1b\xb1\x08\x12\x3e\x59\xb2\x0f\x10\x08\x11\x12\x39\xb0\
\x0f\x2f\xb0\x00\xd0\xb2\x09\x08\x10\x11\x12\x39\xb0\x09\x2f\xb0\
\x06\xd0\xb0\x09\x10\xb1\x14\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x0f\x10\xb1\x15\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb0\x1b\xd0\xb0\x14\x10\xb0\x1c\xd0\x30\x31\x01\x16\x04\x15\x14\
\x04\x07\x15\x23\x35\x26\x24\x35\x34\x24\x37\x35\x33\x01\x10\x05\
\x11\x06\x06\x05\x34\x26\x27\x11\x36\x36\x03\x10\xe6\x01\x10\xfe\
\xed\xe3\xb9\xea\xfe\xf3\x01\x10\xe7\xb9\xfe\x08\x01\x3f\x9a\xa5\
\x03\x36\xa6\x98\x98\xa6\x04\x16\x0d\xfa\xcb\xcd\xfc\x0d\x6e\x6e\
\x0d\xfd\xca\xcc\xfc\x0d\x76\xfd\xb5\xfe\xd8\x11\x02\x72\x09\x96\
\x98\x99\x95\x09\xfd\x8e\x0a\x96\x00\x00\x01\x00\x60\x00\x00\x04\
\xb6\x04\x8d\x00\x15\x00\x5d\xb2\x00\x16\x17\x11\x12\x39\x00\xb0\
\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1c\x3e\x59\xb0\x00\x45\x58\
\xb0\x0f\x2f\x1b\xb1\x0f\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x14\x2f\
\x1b\xb1\x14\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\x09\
\x12\x3e\x59\xb2\x13\x03\x09\x11\x12\x39\xb0\x13\x2f\xb0\x00\xd0\
\xb0\x13\x10\xb1\x0b\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x08\xd0\x30\x31\x01\x24\x11\x11\x33\x11\x06\x02\x07\x11\x23\x11\
\x26\x02\x27\x11\x33\x11\x10\x05\x11\x33\x02\xe8\x01\x15\xb9\x03\
\xf2\xd9\xba\xd9\xf0\x05\xba\x01\x14\xba\x01\xbb\x33\x01\x6b\x01\
\x34\xfe\xbd\xf3\xfe\xe2\x18\xfe\xdf\x01\x1f\x14\x01\x1d\xf2\x01\
\x4b\xfe\xcb\xfe\x8e\x2d\x02\xd4\x00\x00\x01\x00\x75\x00\x00\x04\
\x7e\x04\x9d\x00\x21\x00\x5e\xb2\x07\x22\x23\x11\x12\x39\x00\xb0\
\x00\x45\x58\xb0\x18\x2f\x1b\xb1\x18\x1c\x3e\x59\xb0\x00\x45\x58\
\xb0\x0f\x2f\x1b\xb1\x0f\x12\x3e\x59\xb0\x00\x45\x58\xb0\x20\x2f\
\x1b\xb1\x20\x12\x3e\x59\xb0\x0f\x10\xb1\x11\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x0e\xd0\xb0\x00\xd0\xb0\x18\x10\xb1\x07\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x11\x10\xb0\x1e\xd0\
\xb0\x1f\xd0\x30\x31\x25\x36\x36\x35\x35\x34\x26\x23\x22\x06\x15\
\x15\x14\x16\x17\x15\x21\x35\x33\x26\x11\x35\x34\x00\x33\x32\x00\
\x15\x15\x10\x07\x33\x15\x21\x02\xbb\x88\x7f\xae\x9d\x9c\xac\x8d\
\x7f\xfe\x3e\xaf\xb3\x01\x1b\xe7\xe8\x01\x1c\xb2\xb5\xfe\x3d\x9d\
\x1f\xdf\xcd\x26\xb3\xc0\xc1\xb7\x21\xcc\xdf\x20\x9d\x97\x9d\x01\
\x3a\x1e\xee\x01\x23\xfe\xdc\xf5\x1c\xfe\xcb\x9c\x97\x00\x01\x00\
\x26\xff\xec\x05\x2c\x04\x8d\x00\x19\x00\x6e\xb2\x16\x1a\x1b\x11\
\x12\x39\x00\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1c\x3e\x59\
\xb0\x00\x45\x58\xb0\x0e\x2f\x1b\xb1\x0e\x12\x3e\x59\xb0\x00\x45\
\x58\xb0\x18\x2f\x1b\xb1\x18\x12\x3e\x59\xb0\x02\x10\xb1\x00\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\xd0\xb0\x05\xd0\xb2\
\x08\x02\x0e\x11\x12\x39\xb0\x08\x2f\xb0\x0e\x10\xb1\x0f\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x08\x10\xb1\x15\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x21\x35\x21\x15\x21\x11\
\x36\x33\x32\x16\x15\x14\x06\x23\x35\x32\x36\x35\x34\x26\x23\x22\
\x07\x11\x23\x01\x8a\xfe\x9c\x03\x89\xfe\x94\x97\x9c\xd4\xe2\xe5\
\xe0\x8d\x7f\x7d\x80\x9d\x96\xb9\x03\xf4\x99\x99\xfe\xd7\x31\xd0\
\xc4\xbe\xbe\x97\x6d\x78\x83\x79\x32\xfd\xce\x00\x01\x00\x60\xff\
\xf0\x04\x30\x04\x9d\x00\x1e\x00\x80\xb2\x03\x1f\x20\x11\x12\x39\
\x00\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x1c\x3e\x59\xb0\x00\
\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x12\x3e\x59\xb2\x0f\x0b\x03\x11\
\x12\x39\xb0\x0b\x10\xb1\x12\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb2\x16\x0b\x03\x11\x12\x39\x7c\xb0\x16\x2f\x18\xb2\xa0\x16\
\x01\x5d\xb4\x60\x16\x70\x16\x02\x5d\xb2\x30\x16\x01\x71\xb4\x60\
\x16\x70\x16\x02\x71\xb1\x17\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x03\x10\xb1\x1b\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb2\x1e\x03\x0b\x11\x12\x39\x30\x31\x01\x06\x06\x23\x22\x00\x11\
\x35\x34\x36\x36\x33\x32\x16\x17\x23\x26\x26\x23\x22\x06\x07\x21\
\x15\x21\x16\x16\x33\x32\x36\x37\x04\x30\x14\xfc\xd1\xe0\xfe\xf1\
\x7b\xe7\x98\xcc\xf7\x13\xb9\x12\x8d\x7e\x99\xa2\x06\x01\xbf\xfe\
\x41\x04\xa1\x91\x87\x8d\x14\x01\x79\xbb\xce\x01\x27\x01\x03\x5e\
\xa4\xf9\x88\xd3\xbb\x82\x74\xc3\xaf\x98\xb2\xc2\x6f\x83\x00\x00\
\x02\x00\x27\x00\x00\x06\xfb\x04\x8d\x00\x17\x00\x20\x00\x7a\xb2\
\x04\x21\x22\x11\x12\x39\xb0\x04\x10\xb0\x18\xd0\x00\xb0\x00\x45\
\x58\xb0\x12\x2f\x1b\xb1\x12\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x03\
\x2f\x1b\xb1\x03\x12\x3e\x59\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\
\x0b\x12\x3e\x59\xb0\x12\x10\xb1\x05\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x0b\x10\xb1\x0e\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb2\x14\x12\x03\x11\x12\x39\xb0\x14\x2f\xb1\x18\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\xb1\x19\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x14\x06\x07\x21\x11\x21\
\x03\x0e\x02\x07\x23\x37\x37\x36\x36\x13\x13\x21\x11\x21\x16\x16\
\x25\x11\x21\x32\x36\x35\x34\x26\x23\x06\xfb\xe6\xc3\xfe\x2b\xfe\
\x5e\x0f\x0b\x4d\x97\x7b\x3b\x04\x2e\x60\x51\x0a\x14\x03\x0e\x01\
\x24\xc1\xe0\xfd\x3b\x01\x15\x72\x84\x83\x73\x01\x6e\xa5\xc7\x02\
\x03\xf4\xfe\x65\xed\xf6\x75\x01\xa5\x01\x04\xbe\x01\x09\x02\x1c\
\xfe\x4a\x04\xc1\x2d\xfe\x59\x75\x63\x5f\x70\x00\x02\x00\x8a\x00\
\x00\x07\x09\x04\x8d\x00\x12\x00\x1b\x00\x8c\xb2\x01\x1c\x1d\x11\
\x12\x39\xb0\x01\x10\xb0\x13\xd0\x00\xb0\x00\x45\x58\xb0\x02\x2f\
\x1b\xb1\x02\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x11\x2f\x1b\xb1\x11\
\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x12\x3e\x59\
\xb0\x00\x45\x58\xb0\x0f\x2f\x1b\xb1\x0f\x12\x3e\x59\xb2\x01\x02\
\x0b\x11\x12\x39\x7c\xb0\x01\x2f\x18\xb2\xa0\x01\x01\x5d\xb2\x04\
\x02\x0b\x11\x12\x39\xb0\x04\x2f\xb0\x01\x10\xb1\x0d\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\x10\xb1\x13\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x0b\x10\xb1\x14\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\x30\x31\x01\x21\x11\x33\x11\x21\x16\x16\x15\
\x14\x06\x07\x21\x11\x21\x11\x23\x11\x33\x01\x11\x21\x32\x36\x35\
\x34\x26\x27\x01\x43\x02\x48\xb9\x01\x24\xc1\xe0\xe6\xc3\xfe\x2b\
\xfd\xb8\xb9\xb9\x03\x01\x01\x15\x73\x84\x7d\x6e\x02\x8a\x02\x03\
\xfe\x4a\x04\xc1\xa4\xa5\xc7\x02\x01\xf2\xfe\x0e\x04\x8d\xfd\xb2\
\xfe\x59\x77\x61\x5b\x71\x03\x00\x01\x00\x28\x00\x00\x05\x2e\x04\
\x8d\x00\x15\x00\x5c\xb2\x07\x16\x17\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x02\x2f\x1b\xb1\x02\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x0c\
\x2f\x1b\xb1\x0c\x12\x3e\x59\xb0\x00\x45\x58\xb0\x14\x2f\x1b\xb1\
\x14\x12\x3e\x59\xb0\x02\x10\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x04\xd0\xb0\x05\xd0\xb2\x08\x02\x0c\x11\x12\x39\
\xb0\x08\x2f\xb1\x11\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\
\x31\x01\x21\x35\x21\x15\x21\x11\x36\x33\x32\x16\x17\x11\x23\x11\
\x34\x26\x23\x22\x07\x11\x23\x01\x8b\xfe\x9d\x03\x89\xfe\x94\x93\
\xa0\xd4\xde\x04\xba\x7d\x7f\x9d\x96\xba\x03\xf4\x99\x99\xfe\xd7\
\x31\xca\xc1\xfe\x8f\x01\x64\x87\x79\x32\xfd\xce\x00\x00\x01\x00\
\x8a\xfe\x9b\x04\x43\x04\x8d\x00\x0b\x00\x50\xb2\x03\x0c\x0d\x11\
\x12\x39\x00\xb0\x02\x2f\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\
\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1c\x3e\x59\
\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb0\x00\x45\
\x58\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\x59\xb1\x08\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x09\xd0\x30\x31\x21\x21\x11\x23\x11\
\x21\x11\x33\x11\x21\x11\x33\x04\x43\xfe\x81\xb9\xfe\x7f\xb9\x02\
\x47\xb9\xfe\x9b\x01\x65\x04\x8d\xfc\x0b\x03\xf5\x00\x00\x02\x00\
\x8a\x00\x00\x04\x08\x04\x8d\x00\x0c\x00\x15\x00\x61\xb2\x03\x16\
\x17\x11\x12\x39\xb0\x03\x10\xb0\x0d\xd0\x00\xb0\x00\x45\x58\xb0\
\x0b\x2f\x1b\xb1\x0b\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x09\x2f\x1b\
\xb1\x09\x12\x3e\x59\xb0\x0b\x10\xb1\x00\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb2\x03\x0b\x09\x11\x12\x39\xb0\x03\x2f\xb0\x09\
\x10\xb1\x0d\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\
\xb1\x13\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x21\
\x11\x21\x32\x16\x15\x14\x06\x07\x21\x11\x21\x01\x32\x36\x35\x34\
\x26\x27\x21\x11\x03\x95\xfd\xae\x01\x11\xce\xe6\xe4\xc5\xfe\x2b\
\x03\x0b\xfe\xc3\x73\x84\x7d\x6e\xfe\xdf\x03\xf7\xfe\xe0\xc4\xa5\
\xa4\xc8\x02\x04\x8d\xfc\x0b\x77\x61\x5b\x71\x03\xfe\x59\x00\x00\
\x02\x00\x2e\xfe\xac\x04\xe7\x04\x8d\x00\x0f\x00\x15\x00\x5d\xb2\
\x13\x16\x17\x11\x12\x39\xb0\x13\x10\xb0\x05\xd0\x00\xb0\x09\x2f\
\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x1c\x3e\x59\xb0\x00\x45\
\x58\xb0\x0b\x2f\x1b\xb1\x0b\x12\x3e\x59\xb1\x00\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x07\xd0\xb0\x08\xd0\xb0\x09\x10\xb0\
\x0d\xd0\xb0\x08\x10\xb0\x10\xd0\xb0\x11\xd0\xb0\x05\x10\xb1\x12\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x37\x37\x36\x36\
\x37\x13\x21\x11\x33\x11\x23\x11\x21\x11\x23\x13\x21\x21\x11\x21\
\x03\x02\x85\x29\x47\x47\x07\x0e\x03\x07\x8f\xb9\xfc\xba\xba\x01\
\x01\x2e\x02\x42\xfe\x64\x0c\x11\x98\x31\x56\xfd\xd8\x01\x99\xfc\
\x0b\xfe\x14\x01\x54\xfe\xad\x01\xeb\x03\x5c\xfe\xc8\xfe\x99\x00\
\x01\x00\x1f\x00\x00\x05\xeb\x04\x8d\x00\x15\x00\x92\xb2\x01\x16\
\x17\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\x09\x1c\
\x3e\x59\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x1c\x3e\x59\xb0\
\x00\x45\x58\xb0\x11\x2f\x1b\xb1\x11\x1c\x3e\x59\xb0\x00\x45\x58\
\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb0\x00\x45\x58\xb0\x06\x2f\
\x1b\xb1\x06\x12\x3e\x59\xb0\x00\x45\x58\xb0\x14\x2f\x1b\xb1\x14\
\x12\x3e\x59\xb2\x10\x09\x02\x11\x12\x39\x7c\xb0\x10\x2f\x18\xb2\
\xa0\x10\x01\x5d\xb4\x60\x10\x70\x10\x02\x5d\xb1\x00\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\xd0\xb2\x13\x10\x00\x11\x12\
\x39\xb0\x13\x10\xb0\x08\xd0\xb0\x10\x10\xb0\x0b\xd0\x30\x31\x01\
\x23\x11\x23\x11\x23\x01\x23\x01\x01\x33\x01\x33\x11\x33\x11\x33\
\x01\x33\x01\x01\x23\x03\xc5\x63\xba\x64\xfe\xc5\xea\x01\x86\xfe\
\x9e\xe0\x01\x2c\x59\xba\x59\x01\x2c\xe0\xfe\x9c\x01\x88\xea\x01\
\xf6\xfe\x0a\x01\xf6\xfe\x0a\x02\x51\x02\x3c\xfe\x03\x01\xfd\xfe\
\x03\x01\xfd\xfd\xcd\xfd\xa6\x00\x01\x00\x47\xff\xf0\x03\xd4\x04\
\x9d\x00\x28\x00\x80\xb2\x24\x29\x2a\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x16\
\x2f\x1b\xb1\x16\x12\x3e\x59\xb0\x0a\x10\xb1\x03\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb2\x06\x0a\x16\x11\x12\x39\xb2\x27\x0a\
\x16\x11\x12\x39\xb0\x27\x2f\xb4\x1f\x27\x2f\x27\x02\x5d\xb2\xbf\
\x27\x01\x5d\xb4\xdf\x27\xef\x27\x02\x5d\xb1\x24\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb2\x10\x24\x27\x11\x12\x39\xb2\x1c\x16\
\x0a\x11\x12\x39\xb0\x16\x10\xb1\x1f\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\x30\x31\x01\x34\x26\x23\x22\x06\x15\x23\x34\x36\x33\
\x32\x16\x15\x14\x06\x07\x16\x16\x15\x14\x06\x23\x22\x26\x27\x26\
\x35\x33\x16\x16\x33\x32\x36\x35\x34\x25\x23\x35\x33\x36\x03\x08\
\x8a\x7d\x6e\x81\xba\xed\xbc\xd3\xee\x6e\x67\x76\x71\xfe\xd5\x5b\
\xa9\x3d\x79\xb9\x05\x83\x79\x88\x92\xfe\xff\x9d\x9c\xef\x03\x50\
\x54\x5d\x58\x4f\x8e\xb5\xa8\x96\x56\x8d\x29\x24\x92\x5b\x9e\xb4\
\x2c\x2e\x59\x9d\x56\x60\x60\x58\xc1\x05\x98\x05\x00\x00\x01\x00\
\x8a\x00\x00\x04\x61\x04\x8d\x00\x09\x00\x4c\xb2\x00\x0a\x0b\x11\
\x12\x39\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1c\x3e\x59\
\xb0\x00\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x1c\x3e\x59\xb0\x00\x45\
\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb0\x00\x45\x58\xb0\x05\
\x2f\x1b\xb1\x05\x12\x3e\x59\xb2\x04\x00\x02\x11\x12\x39\xb2\x09\
\x00\x02\x11\x12\x39\x30\x31\x01\x33\x11\x23\x11\x01\x23\x11\x33\
\x11\x03\xa8\xb9\xb9\xfd\x9b\xb9\xb9\x04\x8d\xfb\x73\x03\x74\xfc\
\x8c\x04\x8d\xfc\x8c\x00\x01\x00\x8b\x00\x00\x04\x2c\x04\x8d\x00\
\x0c\x00\x69\xb2\x0a\x0d\x0e\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\
\x04\x2f\x1b\xb1\x04\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x08\x2f\x1b\
\xb1\x08\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x12\
\x3e\x59\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x12\x3e\x59\xb2\
\x06\x02\x04\x11\x12\x39\x7c\xb0\x06\x2f\x18\xb2\xa0\x06\x01\x5d\
\xb4\x60\x06\x70\x06\x02\x5d\xb1\x01\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb2\x0a\x01\x06\x11\x12\x39\x30\x31\x01\x23\x11\x23\
\x11\x33\x11\x33\x01\x33\x01\x01\x23\x01\xae\x6a\xb9\xb9\x64\x01\
\x85\xdf\xfe\x35\x01\xeb\xef\x01\xf6\xfe\x0a\x04\x8d\xfe\x03\x01\
\xfd\xfd\xc5\xfd\xae\x00\x01\x00\x27\x00\x00\x04\x36\x04\x8d\x00\
\x0f\x00\x4f\xb2\x04\x10\x11\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\
\x00\x2f\x1b\xb1\x00\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x01\x2f\x1b\
\xb1\x01\x12\x3e\x59\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x12\
\x3e\x59\xb0\x00\x10\xb1\x03\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x08\x10\xb1\x0a\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\x30\x31\x01\x11\x23\x11\x21\x03\x02\x02\x07\x23\x37\x37\x36\x36\
\x37\x13\x04\x36\xb9\xfe\x5e\x0f\x0d\xa4\xb0\x44\x04\x29\x5e\x50\
\x0d\x19\x04\x8d\xfb\x73\x03\xf4\xfe\x82\xfe\xaa\xfe\xe5\x05\xa5\
\x03\x07\x9e\xe2\x02\x5e\x00\x00\x01\x00\x22\xff\xec\x04\x0b\x04\
\x8d\x00\x11\x00\x44\xb2\x01\x12\x13\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x02\x2f\x1b\xb1\x02\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x10\
\x2f\x1b\xb1\x10\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\
\x08\x12\x3e\x59\xb2\x01\x08\x02\x11\x12\x39\xb1\x0c\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x17\x01\x33\x01\x07\x06\
\x07\x07\x22\x27\x37\x17\x32\x36\x37\x01\x33\x01\xf5\x2d\x01\x14\
\xd5\xfe\x5e\x25\x50\xaa\x26\x50\x14\x06\x5c\x31\x49\x20\xfe\x66\
\xd6\x02\x30\x78\x02\xd5\xfc\x45\x49\x91\x0b\x01\x08\x93\x05\x31\
\x3b\x03\x9f\x00\x01\x00\x8a\xfe\xac\x04\xf1\x04\x8d\x00\x0b\x00\
\x46\xb2\x09\x0c\x0d\x11\x12\x39\x00\xb0\x02\x2f\xb0\x00\x45\x58\
\xb0\x06\x2f\x1b\xb1\x06\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x0a\x2f\
\x1b\xb1\x0a\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\
\x12\x3e\x59\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x08\xd0\xb0\x09\xd0\x30\x31\x25\x33\x03\x23\x11\x21\x11\x33\x11\
\x21\x11\x33\x04\x44\xad\x12\xa5\xfc\x50\xb9\x02\x47\xba\x98\xfe\
\x14\x01\x54\x04\x8d\xfc\x0b\x03\xf5\x00\x01\x00\x3d\x00\x00\x03\
\xdf\x04\x8d\x00\x11\x00\x47\xb2\x04\x12\x13\x11\x12\x39\x00\xb0\
\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1c\x3e\x59\xb0\x00\x45\x58\
\xb0\x10\x2f\x1b\xb1\x10\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\
\x1b\xb1\x00\x12\x3e\x59\xb2\x0d\x08\x00\x11\x12\x39\xb0\x0d\x2f\
\xb1\x04\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x21\x23\
\x11\x06\x23\x22\x26\x27\x11\x33\x11\x14\x16\x33\x32\x37\x11\x33\
\x03\xdf\xb9\x90\xa3\xd4\xde\x04\xb9\x7e\x7f\x9d\x96\xb9\x01\xc2\
\x30\xca\xc1\x01\x70\xfe\x9d\x87\x79\x32\x02\x31\x00\x00\x01\x00\
\x8a\x00\x00\x05\xc6\x04\x8d\x00\x0b\x00\x50\xb2\x05\x0c\x0d\x11\
\x12\x39\x00\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1c\x3e\x59\
\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1c\x3e\x59\xb0\x00\x45\
\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x00\
\x2f\x1b\xb1\x00\x12\x3e\x59\xb1\x04\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x08\xd0\xb0\x09\xd0\x30\x31\x21\x21\x11\x33\x11\
\x21\x11\x33\x11\x21\x11\x33\x05\xc6\xfa\xc4\xb9\x01\x88\xba\x01\
\x88\xb9\x04\x8d\xfc\x0b\x03\xf5\xfc\x0b\x03\xf5\x00\x00\x01\x00\
\x8a\xfe\xac\x06\x75\x04\x8d\x00\x0f\x00\x59\xb2\x0b\x10\x11\x11\
\x12\x39\x00\xb0\x02\x2f\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\
\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1c\x3e\x59\
\xb0\x00\x45\x58\xb0\x0e\x2f\x1b\xb1\x0e\x1c\x3e\x59\xb0\x00\x45\
\x58\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\x59\xb1\x00\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x08\xd0\xb0\x09\xd0\xb0\x0c\xd0\xb0\
\x0d\xd0\x30\x31\x25\x33\x03\x23\x11\x21\x11\x33\x11\x21\x11\x33\
\x11\x21\x11\x33\x05\xc7\xae\x12\xa6\xfa\xcd\xb9\x01\x88\xba\x01\
\x88\xba\x98\xfe\x14\x01\x54\x04\x8d\xfc\x0b\x03\xf5\xfc\x0b\x03\
\xf5\x00\x02\x00\x08\x00\x00\x04\xd6\x04\x8d\x00\x0d\x00\x16\x00\
\x61\xb2\x08\x17\x18\x11\x12\x39\xb0\x08\x10\xb0\x15\xd0\x00\xb0\
\x00\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x1c\x3e\x59\xb0\x00\x45\x58\
\xb0\x03\x2f\x1b\xb1\x03\x12\x3e\x59\xb0\x07\x10\xb1\x05\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x0a\x07\x03\x11\x12\x39\xb0\
\x0a\x2f\xb0\x03\x10\xb1\x0e\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x0a\x10\xb1\x14\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\x30\x31\x01\x14\x06\x07\x21\x11\x21\x35\x21\x11\x21\x32\x16\x16\
\x01\x32\x36\x35\x34\x26\x23\x21\x11\x04\xd6\xe4\xc4\xfe\x2a\xfe\
\xb0\x02\x0a\x01\x16\x84\xc2\x68\xfe\x51\x72\x84\x83\x73\xfe\xeb\
\x01\x6e\xa4\xc8\x02\x03\xf4\x99\xfe\x4a\x58\xa3\xfe\xbc\x75\x63\
\x5f\x70\xfe\x59\x00\xff\xff\x00\x8a\x00\x00\x05\x67\x04\x8d\x00\
\x26\x02\x08\x00\x00\x00\x07\x01\xe3\x04\x16\x00\x00\x00\x02\x00\
\x8a\x00\x00\x04\x08\x04\x8d\x00\x0a\x00\x13\x00\x52\xb2\x08\x14\
\x15\x11\x12\x39\xb0\x08\x10\xb0\x0b\xd0\x00\xb0\x00\x45\x58\xb0\
\x05\x2f\x1b\xb1\x05\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x03\x2f\x1b\
\xb1\x03\x12\x3e\x59\xb2\x08\x05\x03\x11\x12\x39\xb0\x08\x2f\xb0\
\x03\x10\xb1\x0b\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x08\
\x10\xb1\x11\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\
\x14\x06\x07\x21\x11\x33\x11\x21\x32\x16\x01\x32\x36\x35\x34\x26\
\x27\x21\x11\x04\x08\xe4\xc5\xfe\x2b\xb9\x01\x11\xce\xe6\xfe\x50\
\x73\x84\x7d\x6e\xfe\xdf\x01\x6e\xa4\xc8\x02\x04\x8d\xfe\x4a\xc4\
\xfe\x85\x77\x61\x5b\x71\x03\xfe\x59\x00\x01\x00\x4b\xff\xf0\x04\
\x1b\x04\x9d\x00\x1e\x00\x7d\xb2\x03\x1f\x20\x11\x12\x39\x00\xb0\
\x00\x45\x58\xb0\x13\x2f\x1b\xb1\x13\x1c\x3e\x59\xb0\x00\x45\x58\
\xb0\x1b\x2f\x1b\xb1\x1b\x12\x3e\x59\xb2\x00\x1b\x13\x11\x12\x39\
\xb1\x03\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x09\x13\x1b\
\x11\x12\x39\x7c\xb0\x09\x2f\x18\xb2\xa0\x09\x01\x5d\xb4\x60\x09\
\x70\x09\x02\x5d\xb2\x30\x09\x01\x71\xb4\x60\x09\x70\x09\x02\x71\
\xb1\x06\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x13\x10\xb1\
\x0c\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x0f\x13\x1b\x11\
\x12\x39\x30\x31\x01\x16\x16\x33\x32\x36\x37\x21\x35\x21\x26\x26\
\x23\x22\x06\x07\x23\x36\x36\x33\x32\x00\x17\x15\x14\x06\x06\x23\
\x22\x26\x27\x01\x04\x14\x8d\x87\x8d\xa2\x07\xfe\x41\x01\xbe\x05\
\xa3\x98\x7e\x8d\x12\xb9\x13\xf7\xcc\xe4\x01\x11\x05\x78\xe2\x95\
\xcf\xfe\x14\x01\x79\x83\x6f\xbb\xb9\x98\xaf\xc3\x74\x82\xbb\xd3\
\xfe\xdf\xf4\x75\xa3\xf9\x87\xce\xbb\x00\x02\x00\x8a\xff\xf0\x06\
\x15\x04\x9d\x00\x13\x00\x21\x00\x8d\xb2\x04\x22\x23\x11\x12\x39\
\xb0\x04\x10\xb0\x18\xd0\x00\xb0\x00\x45\x58\xb0\x10\x2f\x1b\xb1\
\x10\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x1c\x3e\
\x59\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x12\x3e\x59\xb0\x00\
\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x12\x3e\x59\xb2\x0d\x08\x0b\x11\
\x12\x39\x7c\xb0\x0d\x2f\x18\xb4\x60\x0d\x70\x0d\x02\x71\xb2\xa0\
\x0d\x01\x5d\xb4\x60\x0d\x70\x0d\x02\x5d\xb1\x06\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x10\x10\xb1\x17\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x03\x10\xb1\x1e\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\x30\x31\x01\x10\x00\x23\x22\x00\x27\x23\x11\x23\
\x11\x33\x11\x33\x36\x00\x33\x32\x00\x17\x07\x34\x26\x23\x22\x06\
\x15\x15\x14\x16\x33\x32\x36\x35\x06\x15\xfe\xec\xe8\xdd\xfe\xeb\
\x0c\xd8\xb9\xb9\xd8\x0e\x01\x14\xda\xe9\x01\x13\x02\xb7\xac\x9b\
\x96\xaf\xb0\x97\x9c\xa9\x02\x24\xfe\xfb\xfe\xd1\x01\x1c\xf2\xfe\
\x02\x04\x8d\xfe\x09\xf1\x01\x16\xfe\xd0\xff\x05\xc6\xd2\xd6\xc5\
\x42\xc3\xd7\xd3\xc7\x00\x02\x00\x50\x00\x00\x03\xfc\x04\x8d\x00\
\x0d\x00\x14\x00\x63\xb2\x13\x15\x16\x11\x12\x39\xb0\x13\x10\xb0\
\x07\xd0\x00\xb0\x00\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x1c\x3e\x59\
\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb0\x00\x45\
\x58\xb0\x09\x2f\x1b\xb1\x09\x12\x3e\x59\xb2\x11\x07\x00\x11\x12\
\x39\xb0\x11\x2f\xb1\x0b\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb2\x01\x0b\x07\x11\x12\x39\xb0\x07\x10\xb1\x12\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\x30\x31\x33\x01\x26\x26\x35\x34\x36\x37\
\x21\x11\x23\x11\x21\x03\x13\x14\x17\x21\x11\x21\x22\x50\x01\x22\
\x7a\x71\xdc\xc8\x01\xd1\xb9\xfe\xd0\xff\x2e\xe6\x01\x1b\xfe\xef\
\xf0\x02\x0d\x26\x9d\x68\xa1\xb2\x02\xfb\x73\x01\xdf\xfe\x21\x03\
\x30\xb4\x04\x01\x7c\x00\x01\x00\x0b\x00\x00\x03\xe7\x04\x8d\x00\
\x0d\x00\x52\xb2\x01\x0e\x0f\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\
\x08\x2f\x1b\xb1\x08\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\
\xb1\x02\x12\x3e\x59\xb2\x0d\x08\x02\x11\x12\x39\xb0\x0d\x2f\xb1\
\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\xd0\xb0\x0d\
\x10\xb0\x06\xd0\xb0\x08\x10\xb1\x0a\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\x30\x31\x01\x23\x11\x23\x11\x23\x35\x33\x11\x21\x15\
\x21\x11\x33\x02\x87\xe2\xb9\xe1\xe1\x02\xfb\xfd\xbe\xe2\x01\xfd\
\xfe\x03\x01\xfd\x97\x01\xf9\x99\xfe\xa0\x00\x00\x01\x00\x1f\xfe\
\xac\x06\x22\x04\x8d\x00\x19\x00\xac\xb2\x08\x1a\x1b\x11\x12\x39\
\x00\xb0\x00\x45\x58\xb0\x10\x2f\x1b\xb1\x10\x1c\x3e\x59\xb0\x00\
\x45\x58\xb0\x14\x2f\x1b\xb1\x14\x1c\x3e\x59\xb0\x00\x45\x58\xb0\
\x18\x2f\x1b\xb1\x18\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\
\xb1\x0d\x12\x3e\x59\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x12\
\x3e\x59\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x12\x3e\x59\xb2\
\x17\x0a\x18\x11\x12\x39\x7c\xb0\x17\x2f\x18\xb2\xa0\x17\x01\x5d\
\xb4\x60\x17\x70\x17\x02\x5d\xb4\x60\x17\x70\x17\x02\x71\xb1\x07\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x00\x07\x17\x11\x12\
\x39\xb0\x05\x10\xb1\x01\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb0\x07\x10\xb0\x0b\xd0\xb2\x0f\x17\x07\x11\x12\x39\xb0\x17\x10\
\xb0\x12\xd0\x30\x31\x01\x01\x33\x11\x23\x11\x23\x01\x23\x11\x23\
\x11\x23\x01\x23\x01\x01\x33\x01\x33\x11\x33\x11\x33\x01\x33\x04\
\x63\x01\x26\x99\xa7\x7a\xfe\xc4\x63\xba\x64\xfe\xc5\xea\x01\x86\
\xfe\x9e\xe0\x01\x2c\x59\xba\x59\x01\x2c\xe0\x02\x5a\xfe\x3c\xfe\
\x16\x01\x54\x01\xf6\xfe\x0a\x01\xf6\xfe\x0a\x02\x51\x02\x3c\xfe\
\x03\x01\xfd\xfe\x03\x01\xfd\x00\x01\x00\x8b\xfe\xac\x04\x4e\x04\
\x8d\x00\x10\x00\x82\xb2\x00\x11\x12\x11\x12\x39\x00\xb0\x03\x2f\
\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x1c\x3e\x59\xb0\x00\x45\
\x58\xb0\x0f\x2f\x1b\xb1\x0f\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x09\
\x2f\x1b\xb1\x09\x12\x3e\x59\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\
\x05\x12\x3e\x59\xb2\x0d\x09\x0b\x11\x12\x39\x7c\xb0\x0d\x2f\x18\
\xb4\x60\x0d\x70\x0d\x02\x71\xb2\xa0\x0d\x01\x5d\xb4\x60\x0d\x70\
\x0d\x02\x5d\xb1\x08\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\
\x00\x08\x0d\x11\x12\x39\xb0\x05\x10\xb1\x01\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\x30\x31\x01\x01\x33\x11\x23\x11\x23\x01\x23\
\x11\x23\x11\x33\x11\x33\x01\x33\x02\x41\x01\x6f\x9e\xa8\x69\xfe\
\x71\x6a\xb9\xb9\x64\x01\x85\xdf\x02\x52\xfe\x44\xfe\x16\x01\x54\
\x01\xf6\xfe\x0a\x04\x8d\xfe\x03\x01\xfd\x00\x00\x01\x00\x8b\x00\
\x00\x04\xe7\x04\x8d\x00\x14\x00\x79\xb2\x0b\x15\x16\x11\x12\x39\
\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1c\x3e\x59\xb0\x00\
\x45\x58\xb0\x13\x2f\x1b\xb1\x13\x1c\x3e\x59\xb0\x00\x45\x58\xb0\
\x09\x2f\x1b\xb1\x09\x12\x3e\x59\xb0\x00\x45\x58\xb0\x11\x2f\x1b\
\xb1\x11\x12\x3e\x59\xb2\x00\x11\x13\x11\x12\x39\x7c\xb0\x00\x2f\
\x18\xb2\xa0\x00\x01\x5d\xb4\x60\x00\x70\x00\x02\x5d\xb4\x60\x00\
\x70\x00\x02\x71\xb0\x04\xd0\xb0\x00\x10\xb1\x10\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb2\x08\x10\x00\x11\x12\x39\xb0\x0c\xd0\
\x30\x31\x01\x33\x35\x33\x15\x33\x01\x33\x01\x01\x23\x01\x23\x15\
\x23\x35\x23\x11\x23\x11\x33\x01\x44\x50\x94\x3c\x01\x84\xe0\xfe\
\x34\x01\xeb\xef\xfe\x71\x41\x94\x50\xb9\xb9\x02\x90\xe4\xe4\x01\
\xfd\xfd\xc5\xfd\xae\x01\xf6\xce\xce\xfe\x0a\x04\x8d\x00\x01\x00\
\x23\x00\x00\x05\x15\x04\x8d\x00\x0e\x00\x7f\xb2\x00\x0f\x10\x11\
\x12\x39\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1c\x3e\x59\
\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1c\x3e\x59\xb0\x00\x45\
\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb0\x00\x45\x58\xb0\x0d\
\x2f\x1b\xb1\x0d\x12\x3e\x59\xb2\x08\x02\x06\x11\x12\x39\x7c\xb0\
\x08\x2f\x18\xb2\xa0\x08\x01\x5d\xb4\x60\x08\x70\x08\x02\x5d\xb4\
\x60\x08\x70\x08\x02\x71\xb1\x01\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb0\x06\x10\xb1\x04\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb2\x0c\x01\x08\x11\x12\x39\x30\x31\x01\x23\x11\x23\x11\x21\
\x35\x21\x11\x33\x01\x33\x01\x01\x23\x02\x97\x69\xba\xfe\xaf\x02\
\x0b\x63\x01\x85\xe0\xfe\x34\x01\xeb\xef\x01\xf6\xfe\x0a\x03\xf5\
\x98\xfe\x03\x01\xfd\xfd\xc5\xfd\xae\x00\x02\x00\x60\xff\xeb\x05\
\x5b\x04\x9f\x00\x23\x00\x2e\x00\x98\xb2\x14\x2f\x30\x11\x12\x39\
\xb0\x14\x10\xb0\x24\xd0\x00\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\
\x0b\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x1b\x2f\x1b\xb1\x1b\x1c\x3e\
\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb0\x00\
\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\x59\xb2\x02\x04\x1b\x11\
\x12\x39\xb0\x02\x2f\xb0\x0b\x10\xb1\x0c\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb0\x04\x10\xb1\x13\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x02\x10\xb1\x26\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb2\x15\x13\x26\x11\x12\x39\xb2\x21\x02\x26\x11\x12\x39\
\xb0\x1b\x10\xb1\x2c\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\
\x31\x05\x22\x27\x06\x23\x20\x00\x11\x35\x10\x12\x33\x17\x22\x06\
\x15\x15\x14\x16\x33\x32\x37\x26\x03\x35\x34\x12\x33\x32\x12\x15\
\x15\x10\x07\x16\x33\x01\x10\x17\x36\x11\x35\x34\x26\x23\x22\x03\
\x05\x5b\xd9\xa6\x89\xa3\xfe\xea\xfe\xc6\xf4\xd2\x01\x7e\x90\xd0\
\xc7\x36\x32\xe3\x01\xcf\xb5\xb8\xcd\xb6\x5e\x76\xfd\x92\xe1\xb6\
\x62\x6a\xc6\x05\x14\x3b\x3c\x01\x45\x01\x2a\x1a\x01\x03\x01\x28\
\x9e\xc3\xc8\x21\xe8\xe5\x08\xb2\x01\x45\x27\xeb\x01\x04\xfe\xff\
\xf1\x38\xfe\xda\xb2\x12\x01\xfd\xfe\xcc\x79\x81\x01\x1e\x38\xac\
\xa3\xfe\xc3\xff\xff\x00\x0d\x00\x00\x04\x1c\x04\x8d\x00\x26\x01\
\xd3\x00\x00\x01\x07\x02\x26\x00\x44\xfe\xde\x00\x08\x00\xb2\x00\
\x0a\x01\x5d\x30\x31\x00\x01\x00\x26\xfe\xac\x04\x71\x04\x8d\x00\
\x10\x00\x6c\xb2\x0b\x11\x12\x11\x12\x39\x00\xb0\x07\x2f\xb0\x00\
\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x1c\x3e\x59\xb0\x00\x45\x58\xb0\
\x0f\x2f\x1b\xb1\x0f\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x09\x2f\x1b\
\xb1\x09\x12\x3e\x59\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x12\
\x3e\x59\xb2\x00\x01\x0c\x11\x12\x39\xb2\x0b\x0c\x01\x11\x12\x39\
\xb2\x03\x0b\x00\x11\x12\x39\xb0\x09\x10\xb1\x04\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb2\x0e\x00\x0b\x11\x12\x39\x30\x31\x01\
\x01\x33\x01\x01\x35\x33\x11\x23\x11\x23\x01\x01\x23\x01\x01\x33\
\x02\x28\x01\x1f\xdc\xfe\x75\x01\x31\xa8\xa8\x74\xfe\xd5\xfe\xd8\
\xdc\x01\x96\xfe\x73\xdb\x02\xda\x01\xb3\xfd\xbe\xfe\x4a\x01\xfe\
\x16\x01\x54\x01\xbb\xfe\x45\x02\x4b\x02\x42\x00\x01\x00\x26\xfe\
\xac\x05\xf2\x04\x8d\x00\x0f\x00\x5e\xb2\x09\x10\x11\x11\x12\x39\
\x00\xb0\x02\x2f\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1c\x3e\
\x59\xb0\x00\x45\x58\xb0\x0e\x2f\x1b\xb1\x0e\x1c\x3e\x59\xb0\x00\
\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\x59\xb1\x00\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x08\x10\xb1\x06\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x0a\xd0\xb0\x0b\xd0\xb0\x00\x10\xb0\
\x0c\xd0\xb0\x0d\xd0\x30\x31\x25\x33\x03\x23\x11\x21\x11\x21\x35\
\x21\x15\x21\x11\x21\x11\x33\x05\x44\xae\x12\xa5\xfc\x50\xfe\x9b\
\x03\x89\xfe\x95\x02\x46\xba\x98\xfe\x14\x01\x54\x03\xf4\x99\x99\
\xfc\xa4\x03\xf5\x00\x00\x01\x00\x3d\x00\x00\x03\xdf\x04\x8d\x00\
\x17\x00\x50\xb2\x04\x18\x19\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\
\x0b\x2f\x1b\xb1\x0b\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x16\x2f\x1b\
\xb1\x16\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\
\x3e\x59\xb2\x10\x0b\x00\x11\x12\x39\xb0\x10\x2f\xb1\x07\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\xd0\xb0\x10\x10\xb0\x13\
\xd0\x30\x31\x21\x23\x11\x06\x07\x15\x23\x35\x26\x26\x27\x11\x33\
\x11\x14\x16\x17\x35\x33\x15\x36\x37\x11\x33\x03\xdf\xb9\x63\x69\
\x95\xbc\xc9\x03\xb9\x67\x68\x95\x67\x65\xb9\x01\xc2\x21\x0b\xc6\
\xc3\x0a\xc9\xba\x01\x6d\xfe\x9d\x7b\x78\x0b\xf0\xed\x0b\x22\x02\
\x31\x00\x01\x00\x8a\x00\x00\x04\x2c\x04\x8d\x00\x11\x00\x47\xb2\
\x04\x12\x13\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\
\x00\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x12\x3e\
\x59\xb0\x00\x45\x58\xb0\x10\x2f\x1b\xb1\x10\x12\x3e\x59\xb2\x04\
\x00\x08\x11\x12\x39\xb0\x04\x2f\xb1\x0d\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\x30\x31\x13\x33\x11\x36\x33\x32\x16\x17\x11\x23\
\x11\x34\x26\x23\x22\x07\x11\x23\x8a\xb9\x9a\x99\xd4\xde\x04\xb9\
\x7e\x7f\x98\x9b\xb9\x04\x8d\xfe\x3e\x31\xca\xc1\xfe\x8f\x01\x64\
\x87\x79\x33\xfd\xcf\x00\x02\x00\x02\xff\xf0\x05\x6b\x04\x9d\x00\
\x1c\x00\x24\x00\x6c\xb2\x15\x25\x26\x11\x12\x39\xb0\x15\x10\xb0\
\x1e\xd0\x00\xb0\x00\x45\x58\xb0\x0e\x2f\x1b\xb1\x0e\x1c\x3e\x59\
\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb2\x21\x0e\
\x00\x11\x12\x39\xb0\x21\x2f\xb2\xbf\x21\x01\x5d\xb1\x12\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\xd0\xb0\x21\x10\xb0\x0a\
\xd0\xb0\x00\x10\xb1\x16\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb0\x0e\x10\xb1\x1d\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\
\x31\x05\x22\x00\x35\x26\x26\x35\x33\x14\x16\x17\x3e\x02\x33\x32\
\x00\x11\x15\x21\x14\x16\x33\x32\x36\x37\x17\x06\x06\x03\x22\x06\
\x07\x21\x35\x34\x26\x03\x91\xff\xfe\xce\xa6\xb8\x99\x5f\x66\x05\
\x87\xe9\x8e\xf8\x01\x10\xfc\xae\xc1\xb7\x4c\x87\x50\x39\x3c\xb8\
\x96\x8f\xb5\x06\x02\x99\xae\x10\x01\x22\xf3\x0b\xc6\xa8\x5e\x77\
\x0c\x93\xec\x81\xfe\xeb\xfe\xfd\x82\xb1\xc0\x1f\x28\x92\x28\x2f\
\x04\x11\xc2\xa4\x1b\xa1\xaa\x00\x02\x00\x5e\xff\xf0\x04\x69\x04\
\x9d\x00\x16\x00\x1e\x00\x61\xb2\x08\x1f\x20\x11\x12\x39\xb0\x08\
\x10\xb0\x17\xd0\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1c\
\x3e\x59\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x12\x3e\x59\xb2\
\x0d\x00\x08\x11\x12\x39\xb0\x0d\x2f\xb0\x00\x10\xb1\x11\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x08\x10\xb1\x17\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0d\x10\xb1\x1a\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x32\x00\x17\x15\x14\x06\x06\
\x23\x22\x00\x11\x35\x21\x35\x34\x26\x23\x22\x07\x27\x36\x36\x13\
\x32\x36\x37\x21\x15\x14\x16\x02\x47\xf7\x01\x29\x02\x84\xec\x93\
\xf8\xfe\xf0\x03\x52\xc1\xb7\x93\x90\x39\x41\xc0\x89\x91\xb3\x06\
\xfd\x67\xad\x04\x9d\xfe\xe0\xef\x88\x99\xf4\x89\x01\x15\x01\x01\
\x82\x01\xb1\xc1\x48\x92\x29\x2f\xfb\xed\xc6\xa1\x1b\xa0\xac\x00\
\x01\x00\x47\xff\xed\x03\xd4\x04\x8d\x00\x1c\x00\x70\xb2\x1a\x1d\
\x1e\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1c\
\x3e\x59\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x12\x3e\x59\xb0\
\x02\x10\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x04\
\x00\x02\x11\x12\x39\xb2\x05\x0b\x02\x11\x12\x39\xb0\x05\x2f\xb2\
\x11\x0b\x02\x11\x12\x39\xb0\x0b\x10\xb1\x14\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x05\x10\xb1\x1a\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb2\x1c\x05\x1a\x11\x12\x39\x30\x31\x01\x21\x35\
\x21\x17\x01\x16\x16\x15\x14\x06\x23\x22\x26\x27\x26\x35\x33\x16\
\x16\x33\x32\x36\x35\x34\x26\x23\x23\x35\x02\xb3\xfd\xbc\x03\x38\
\x02\xfe\xa9\xb1\xd1\xfc\xd7\x59\xab\x3c\x7a\xb9\x05\x89\x73\x88\
\x92\x8a\x86\x80\x03\xf4\x99\x76\xfe\x9b\x10\xc5\x8b\xa7\xbe\x2d\
\x2e\x5a\x9e\x59\x64\x68\x6a\x5f\x6a\xa5\x00\x00\x03\x00\x60\xff\
\xf0\x04\x5a\x04\x9d\x00\x0d\x00\x14\x00\x1b\x00\x76\xb2\x03\x1c\
\x1d\x11\x12\x39\xb0\x03\x10\xb0\x0e\xd0\xb0\x03\x10\xb0\x15\xd0\
\x00\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1c\x3e\x59\xb0\x00\
\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x12\x3e\x59\xb1\x0e\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x19\x0a\x03\x11\x12\x39\x7c\xb0\
\x19\x2f\x18\xb2\xa0\x19\x01\x5d\xb4\x60\x19\x70\x19\x02\x5d\xb4\
\x60\x19\x70\x19\x02\x71\xb1\x11\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb0\x0a\x10\xb1\x15\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\x30\x31\x01\x10\x00\x23\x22\x00\x11\x35\x10\x00\x33\x32\x00\
\x17\x01\x32\x36\x37\x21\x16\x16\x13\x22\x06\x07\x21\x26\x26\x04\
\x5a\xfe\xec\xe8\xe5\xfe\xe7\x01\x17\xe5\xe9\x01\x13\x02\xfe\x04\
\x93\xa8\x09\xfd\x76\x0a\xad\x8d\x91\xab\x08\x02\x8a\x09\xaa\x02\
\x24\xfe\xfb\xfe\xd1\x01\x32\x01\x07\x3e\x01\x02\x01\x34\xfe\xd0\
\xff\xfe\x1c\xbc\xb4\xb0\xc0\x03\x77\xc3\xac\xb3\xbc\x00\x01\x00\
\x30\x00\x00\x03\xef\x04\x9d\x00\x27\x00\xb2\xb2\x1d\x28\x29\x11\
\x12\x39\x00\xb0\x00\x45\x58\xb0\x1d\x2f\x1b\xb1\x1d\x1c\x3e\x59\
\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x12\x3e\x59\xb2\x06\x1d\
\x0c\x11\x12\x39\xb0\x06\x2f\xb2\x0f\x06\x01\x71\xb2\x0f\x06\x01\
\x5d\xb2\x4f\x06\x01\x71\xb0\x01\xd0\xb0\x01\x2f\x40\x09\x1f\x01\
\x2f\x01\x3f\x01\x4f\x01\x04\x5d\xb2\x00\x01\x01\x5d\xb1\x02\x04\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x06\x10\xb1\x07\x04\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0c\x10\xb1\x0a\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0e\xd0\xb0\x0f\xd0\xb0\x07\x10\
\xb0\x11\xd0\xb0\x06\x10\xb0\x13\xd0\xb0\x02\x10\xb0\x16\xd0\xb0\
\x01\x10\xb0\x18\xd0\xb2\x21\x01\x1d\x11\x12\x39\xb0\x1d\x10\xb1\
\x24\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x21\x15\
\x21\x17\x15\x21\x15\x21\x06\x07\x21\x07\x21\x35\x33\x36\x37\x23\
\x35\x33\x35\x27\x23\x35\x33\x27\x26\x36\x33\x32\x16\x15\x23\x34\
\x26\x23\x22\x06\x17\x01\x87\x01\x96\xfe\x6e\x03\x01\x8f\xfe\x6c\
\x0a\x24\x02\x94\x01\xfc\x84\x0a\x3f\x14\x9f\xa5\x03\xa2\x9e\x02\
\x06\xcb\xb5\xb7\xca\xb9\x68\x60\x5d\x68\x04\x02\xa8\x79\x5d\x10\
\x79\x6a\x47\x98\x98\x12\x9f\x79\x10\x5d\x79\x40\xc9\xec\xcc\xb7\
\x70\x77\x8f\x8a\x00\x00\x01\x00\x42\xff\xf0\x03\x9e\x04\x9d\x00\
\x21\x00\xa2\xb2\x14\x22\x23\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\
\x15\x2f\x1b\xb1\x15\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x08\x2f\x1b\
\xb1\x08\x12\x3e\x59\xb2\x21\x15\x08\x11\x12\x39\xb0\x21\x2f\xb2\
\x0f\x21\x01\x5d\xb4\x10\x21\x20\x21\x02\x5d\xb1\x00\x04\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x08\x10\xb1\x03\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x00\x10\xb0\x0b\xd0\xb0\x21\x10\xb0\
\x0d\xd0\xb0\x21\x10\xb0\x12\xd0\xb0\x12\x2f\x40\x09\x1f\x12\x2f\
\x12\x3f\x12\x4f\x12\x04\x5d\xb2\x00\x12\x01\x5d\xb1\x0f\x04\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x15\x10\xb1\x1a\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x12\x10\xb0\x1c\xd0\xb0\x0f\x10\
\xb0\x1e\xd0\x30\x31\x01\x21\x12\x21\x32\x37\x17\x06\x23\x22\x26\
\x27\x23\x35\x33\x35\x23\x35\x33\x36\x36\x33\x32\x17\x07\x26\x23\
\x20\x03\x21\x15\x21\x15\x21\x03\x2f\xfe\x68\x20\x01\x02\x62\x68\
\x1b\x76\x6f\xd3\xf5\x14\x9b\x97\x97\x9b\x16\xf5\xcf\x60\x87\x15\
\x59\x79\xff\x00\x20\x01\x98\xfe\x64\x01\x9c\x01\x96\xfe\xf1\x1c\
\x95\x1e\xda\xcc\x79\x6d\x79\xcc\xdc\x1f\x95\x1c\xfe\xf0\x79\x6d\
\x00\x00\x04\x00\x8a\x00\x00\x07\xad\x04\x9d\x00\x03\x00\x10\x00\
\x1e\x00\x28\x00\xab\xb2\x1f\x29\x2a\x11\x12\x39\xb0\x1f\x10\xb0\
\x01\xd0\xb0\x1f\x10\xb0\x04\xd0\xb0\x1f\x10\xb0\x11\xd0\x00\xb0\
\x00\x45\x58\xb0\x27\x2f\x1b\xb1\x27\x1c\x3e\x59\xb0\x00\x45\x58\
\xb0\x25\x2f\x1b\xb1\x25\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x07\x2f\
\x1b\xb1\x07\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x22\x2f\x1b\xb1\x22\
\x12\x3e\x59\xb0\x00\x45\x58\xb0\x20\x2f\x1b\xb1\x20\x12\x3e\x59\
\xb0\x07\x10\xb0\x0d\xd0\xb0\x0d\x2f\xb0\x02\xd0\xb0\x02\x2f\xb4\
\x00\x02\x10\x02\x02\x5d\xb1\x01\x03\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb0\x0d\x10\xb1\x14\x03\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x07\x10\xb1\x1b\x03\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb2\x21\x27\x20\x11\x12\x39\xb2\x26\x20\x27\x11\x12\x39\x30\x31\
\x25\x21\x35\x21\x01\x34\x36\x20\x16\x15\x15\x14\x06\x23\x22\x26\
\x35\x17\x14\x16\x33\x32\x36\x35\x35\x34\x26\x23\x22\x06\x15\x01\
\x23\x01\x11\x23\x11\x33\x01\x11\x33\x07\x6e\xfd\xd3\x02\x2d\xfd\
\x92\xbc\x01\x34\xbd\xbe\x97\x99\xbf\xa3\x5e\x57\x54\x5e\x61\x53\
\x52\x61\xfe\xb5\xb8\xfd\xa3\xb9\xb9\x02\x5d\xb8\xbd\x8e\x02\x03\
\x95\xba\xb8\x9b\x50\x98\xb6\xb7\x9c\x05\x59\x6a\x69\x5c\x52\x5a\
\x68\x67\x5e\xfc\xb5\x03\x6c\xfc\x94\x04\x8d\xfc\x93\x03\x6d\x00\
\x02\x00\x28\x00\x00\x04\x66\x04\x8d\x00\x16\x00\x1f\x00\x86\xb2\
\x00\x20\x21\x11\x12\x39\xb0\x18\xd0\x00\xb0\x00\x45\x58\xb0\x0c\
\x2f\x1b\xb1\x0c\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\
\x02\x12\x3e\x59\xb2\x16\x0c\x02\x11\x12\x39\xb0\x16\x2f\xb1\x00\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\xd0\xb0\x16\x10\
\xb0\x06\xd0\xb0\x16\x10\xb0\x0b\xd0\xb0\x0b\x2f\x40\x09\x0f\x0b\
\x1f\x0b\x2f\x0b\x3f\x0b\x04\x5d\xb4\xbf\x0b\xcf\x0b\x02\x5d\xb1\
\x08\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x13\xd0\xb0\x0b\
\x10\xb0\x17\xd0\xb0\x0c\x10\xb1\x1e\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\x30\x31\x25\x21\x15\x23\x35\x23\x35\x33\x35\x23\x35\
\x33\x11\x21\x32\x16\x15\x14\x06\x07\x21\x15\x21\x25\x21\x32\x36\
\x35\x34\x26\x23\x21\x02\xa4\xfe\xfe\xba\xc0\xc0\xc0\xc0\x01\xcf\
\xc5\xea\xe3\xbe\xfe\xdd\x01\x02\xfe\xfe\x01\x15\x72\x83\x84\x70\
\xfe\xea\xb4\xb4\xb4\x98\x59\x98\x02\x50\xcc\xa8\xa5\xcb\x04\x59\
\xf1\x78\x62\x64\x7a\x00\x01\x00\x3e\xff\xf5\x02\x9a\x03\x20\x00\
\x26\x00\x74\x00\xb0\x00\x45\x58\xb0\x0e\x2f\x1b\xb1\x0e\x18\x3e\
\x59\xb0\x00\x45\x58\xb0\x19\x2f\x1b\xb1\x19\x12\x3e\x59\xb2\x00\
\x19\x0e\x11\x12\x39\x7c\xb0\x00\x2f\x18\xb6\x80\x00\x90\x00\xa0\
\x00\x03\x5d\xb0\x0e\x10\xb1\x07\x02\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb2\x0a\x00\x07\x11\x12\x39\xb0\x00\x10\xb1\x26\x02\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x14\x26\x00\x11\x12\x39\xb0\
\x19\x10\xb1\x20\x02\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x1d\
\x26\x20\x11\x12\x39\x30\x31\x01\x33\x32\x36\x35\x34\x26\x23\x22\
\x06\x15\x23\x34\x36\x33\x32\x16\x15\x14\x06\x07\x16\x15\x14\x06\
\x23\x22\x26\x35\x33\x14\x16\x33\x32\x36\x35\x34\x27\x23\x01\x09\
\x54\x4a\x48\x3f\x46\x39\x4b\x9d\xa3\x7c\x89\x9c\x46\x42\x95\xaa\
\x88\x84\xa6\x9e\x4f\x43\x46\x49\x9c\x58\x01\xcb\x3d\x30\x2d\x3a\
\x33\x29\x62\x7b\x79\x68\x37\x5b\x19\x29\x8f\x6a\x7d\x7e\x6b\x2d\
\x3c\x3c\x33\x71\x02\x00\x02\x00\x36\x00\x00\x02\xbb\x03\x15\x00\
\x0a\x00\x0e\x00\x4a\x00\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\x09\
\x18\x3e\x59\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\x59\
\xb2\x01\x09\x04\x11\x12\x39\xb0\x01\x2f\xb1\x02\x02\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x06\xd0\xb0\x01\x10\xb0\x0b\xd0\xb2\
\x08\x0b\x06\x11\x12\x39\xb2\x0d\x09\x04\x11\x12\x39\x30\x31\x01\
\x33\x15\x23\x15\x23\x35\x21\x27\x01\x33\x01\x33\x11\x07\x02\x50\
\x6b\x6b\x9d\xfe\x89\x06\x01\x79\xa1\xfe\x84\xdf\x11\x01\x2b\x82\
\xa9\xa9\x66\x02\x06\xfe\x16\x01\x21\x1c\x00\x00\x01\x00\x5b\xff\
\xf5\x02\xa7\x03\x15\x00\x1b\x00\x64\x00\xb0\x00\x45\x58\xb0\x01\
\x2f\x1b\xb1\x01\x18\x3e\x59\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\
\x0d\x12\x3e\x59\xb0\x01\x10\xb1\x04\x09\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb2\x07\x0d\x01\x11\x12\x39\xb0\x07\x2f\xb1\x19\x02\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x05\x07\x19\x11\x12\x39\
\xb0\x0d\x10\xb0\x11\xd0\xb0\x0d\x10\xb1\x13\x02\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x07\x10\xb0\x1b\xd0\x30\x31\x13\x13\x21\
\x15\x21\x07\x36\x33\x32\x16\x15\x14\x06\x23\x22\x26\x27\x33\x16\
\x33\x32\x36\x35\x34\x26\x23\x22\x07\x70\x32\x01\xde\xfe\xa3\x16\
\x41\x4a\x80\x8f\xa0\x86\x79\xa7\x06\x9b\x0a\x81\x41\x48\x4e\x4a\
\x49\x3b\x01\x83\x01\x92\x84\xaa\x1d\x89\x79\x7c\x91\x7e\x65\x63\
\x4b\x44\x3e\x4d\x2b\x00\x02\x00\x56\xff\xf5\x02\xab\x03\x1e\x00\
\x13\x00\x1f\x00\x51\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\
\x18\x3e\x59\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x12\x3e\x59\
\xb0\x00\x10\xb1\x01\x02\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\
\x06\x0c\x00\x11\x12\x39\xb0\x06\x2f\xb1\x14\x02\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x0c\x10\xb1\x1b\x02\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\x30\x31\x01\x15\x23\x04\x07\x36\x33\x32\x16\x15\
\x14\x06\x23\x22\x26\x35\x35\x34\x36\x37\x03\x22\x06\x07\x15\x14\
\x16\x33\x32\x36\x34\x26\x02\x28\x11\xfe\xf4\x17\x48\x72\x76\x87\
\x9f\x84\x8b\xa7\xde\xcd\x7e\x33\x4d\x11\x53\x3f\x3d\x4e\x47\x03\
\x1e\x83\x02\xdb\x4d\x91\x77\x74\x9a\xa6\x97\x33\xd0\xe4\x05\xfe\
\x6e\x2c\x20\x22\x54\x55\x4f\x7c\x4c\x00\x01\x00\x3a\x00\x00\x02\
\xa5\x03\x15\x00\x06\x00\x33\x00\xb0\x00\x45\x58\xb0\x05\x2f\x1b\
\xb1\x05\x18\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x12\
\x3e\x59\xb0\x05\x10\xb1\x04\x02\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb2\x00\x05\x04\x11\x12\x39\x30\x31\x01\x01\x23\x01\x21\x35\
\x21\x02\xa5\xfe\xa3\xa6\x01\x5d\xfe\x3b\x02\x6b\x02\xbb\xfd\x45\
\x02\x93\x82\x00\x03\x00\x4f\xff\xf5\x02\x9f\x03\x20\x00\x13\x00\
\x1e\x00\x28\x00\x7d\x00\xb0\x00\x45\x58\xb0\x11\x2f\x1b\xb1\x11\
\x18\x3e\x59\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x12\x3e\x59\
\xb2\x24\x06\x11\x11\x12\x39\xb0\x24\x2f\xb6\xdf\x24\xef\x24\xff\
\x24\x03\x5d\xb6\x0f\x24\x1f\x24\x2f\x24\x03\x5d\xb2\xff\x24\x01\
\x71\xb4\x0f\x24\x1f\x24\x02\x72\xb1\x17\x02\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb2\x02\x24\x17\x11\x12\x39\xb2\x0c\x17\x24\x11\
\x12\x39\xb0\x06\x10\xb1\x1d\x02\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x11\x10\xb1\x1f\x02\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\x30\x31\x01\x14\x07\x16\x15\x14\x06\x20\x26\x35\x34\x36\x37\x26\
\x35\x34\x36\x33\x32\x16\x03\x34\x26\x23\x22\x06\x15\x14\x16\x32\
\x36\x03\x22\x06\x15\x14\x16\x32\x36\x34\x26\x02\x8b\x77\x8b\xa0\
\xfe\xf0\xa0\x4a\x40\x77\x97\x7d\x7e\x97\x89\x4e\x3e\x3f\x4b\x4c\
\x7e\x4c\x8c\x37\x3f\x3f\x70\x3f\x40\x02\x43\x76\x37\x3b\x83\x6a\
\x79\x79\x6a\x42\x61\x1b\x37\x76\x67\x76\x76\xfe\x3a\x34\x3a\x3a\
\x34\x35\x3a\x3a\x01\xf0\x35\x30\x2e\x38\x38\x5c\x37\x00\x02\x00\
\x49\xff\xf9\x02\x95\x03\x20\x00\x12\x00\x1e\x00\x5d\x00\xb0\x00\
\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x18\x3e\x59\xb0\x00\x45\x58\xb0\
\x0f\x2f\x1b\xb1\x0f\x12\x3e\x59\xb2\x02\x0f\x08\x11\x12\x39\xb0\
\x02\x2f\xb6\x0f\x02\x1f\x02\x2f\x02\x03\x5d\xb0\x0f\x10\xb1\x10\
\x02\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x02\x10\xb1\x13\x02\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x08\x10\xb1\x19\x02\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x06\x23\x22\x26\x35\
\x34\x36\x33\x32\x16\x17\x15\x10\x05\x07\x35\x32\x36\x27\x32\x37\
\x35\x34\x26\x23\x22\x06\x15\x14\x16\x01\xf6\x45\x65\x76\x8d\xa3\
\x81\x89\x9c\x03\xfe\x73\x37\x96\x84\x7b\x5e\x2a\x4f\x3c\x3b\x4c\
\x4a\x01\x40\x41\x8a\x7e\x79\xa0\xa5\x94\x3d\xfe\x64\x14\x01\x7f\
\x62\x9e\x47\x3c\x53\x50\x54\x43\x41\x4e\x00\x00\x01\x00\x8f\x02\
\x8b\x03\x0b\x03\x22\x00\x03\x00\x12\x00\xb0\x02\x2f\xb1\x01\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x21\x35\x21\x03\
\x0b\xfd\x84\x02\x7c\x02\x8b\x97\x00\x00\x03\x00\x9e\x04\x40\x02\
\x6e\x06\x72\x00\x03\x00\x0f\x00\x1b\x00\x74\x00\xb0\x00\x45\x58\
\xb0\x0d\x2f\x1b\xb1\x0d\x1a\x3e\x59\xb0\x07\xd0\xb0\x07\x2f\x40\
\x09\x3f\x07\x4f\x07\x5f\x07\x6f\x07\x04\x5d\xb0\x02\xd0\xb0\x02\
\x2f\xb6\x3f\x02\x4f\x02\x5f\x02\x03\x5d\xb0\x00\xd0\xb0\x00\x2f\
\x40\x11\x0f\x00\x1f\x00\x2f\x00\x3f\x00\x4f\x00\x5f\x00\x6f\x00\
\x7f\x00\x08\x5d\xb0\x02\x10\xb0\x03\xd0\x19\xb0\x03\x2f\x18\xb0\
\x0d\x10\xb1\x13\x07\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x07\
\x10\xb1\x19\x07\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\
\x33\x07\x23\x07\x34\x36\x33\x32\x16\x15\x14\x06\x23\x22\x26\x37\
\x14\x16\x33\x32\x36\x35\x34\x26\x23\x22\x06\x01\xb1\xbd\xdc\x72\
\x82\x64\x48\x44\x63\x61\x46\x48\x64\x55\x33\x24\x23\x30\x30\x23\
\x25\x32\x06\x72\xb8\xd7\x46\x61\x5e\x49\x47\x5c\x5e\x45\x23\x32\
\x31\x24\x26\x32\x34\x00\x01\x00\x8a\x00\x00\x03\xae\x04\x8d\x00\
\x0b\x00\x57\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1c\x3e\
\x59\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\x59\xb0\x0b\
\xd0\xb0\x0b\x2f\xb2\xdf\x0b\x01\x5d\xb2\x1f\x0b\x01\x5d\xb1\x00\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\x10\xb1\x02\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x06\x10\xb1\x08\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x21\x11\x21\x15\x21\
\x11\x21\x15\x21\x11\x21\x03\x57\xfd\xec\x02\x6b\xfc\xdc\x03\x1e\
\xfd\x9b\x02\x14\x02\x0e\xfe\x89\x97\x04\x8d\x99\xfe\xb2\x00\x00\
\x03\x00\x1e\xfe\x4a\x04\x11\x04\x4e\x00\x29\x00\x37\x00\x44\x00\
\x94\x00\xb0\x00\x45\x58\xb0\x26\x2f\x1b\xb1\x26\x1a\x3e\x59\xb0\
\x00\x45\x58\xb0\x16\x2f\x1b\xb1\x16\x14\x3e\x59\xb0\x26\x10\xb0\
\x29\xd0\xb0\x29\x2f\xb1\x00\x03\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb2\x08\x16\x26\x11\x12\x39\xb0\x08\x2f\xb2\x0e\x08\x16\x11\
\x12\x39\xb0\x0e\x2f\xb4\x90\x0e\xa0\x0e\x02\x5d\xb1\x37\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x1c\x37\x0e\x11\x12\x39\xb2\
\x20\x08\x26\x11\x12\x39\xb0\x16\x10\xb1\x30\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x08\x10\xb1\x3b\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb0\x26\x10\xb1\x42\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\x30\x31\x01\x23\x16\x17\x15\x14\x06\x06\x23\x22\x27\
\x06\x15\x14\x17\x33\x16\x16\x15\x14\x06\x06\x23\x22\x26\x35\x34\
\x36\x37\x26\x35\x34\x37\x26\x35\x35\x34\x36\x33\x32\x17\x21\x01\
\x06\x06\x15\x14\x16\x33\x32\x36\x35\x34\x26\x27\x23\x03\x14\x16\
\x33\x32\x36\x35\x35\x34\x26\x22\x06\x15\x04\x11\x97\x3a\x01\x6f\
\xc3\x78\x4f\x49\x34\x7a\xb7\xc8\xce\x8d\xf4\x97\xd1\xff\x5e\x54\
\x38\x73\xae\xf1\xbb\x50\x47\x01\x6f\xfd\x3c\x38\x3c\x94\x83\x92\
\xcd\x68\x6c\xef\x74\x8c\x69\x67\x8a\x8a\xd2\x8a\x03\xa7\x54\x69\
\x19\x62\xa6\x5e\x15\x2a\x40\x50\x02\x01\x95\x8f\x54\xa1\x60\x9b\
\x7a\x53\x8a\x2a\x2f\x4a\x7c\x52\x6a\xc5\x0b\x9d\xca\x14\xfb\xf8\
\x1a\x5d\x37\x4a\x59\x72\x4c\x4a\x41\x02\x02\xa5\x53\x7b\x7a\x58\
\x12\x57\x78\x78\x5a\x00\x02\x00\x64\xff\xeb\x04\x58\x04\x4e\x00\
\x10\x00\x1c\x00\x63\x00\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\x09\
\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x1a\x3e\x59\
\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb0\x00\x45\
\x58\xb0\x10\x2f\x1b\xb1\x10\x12\x3e\x59\xb2\x00\x02\x09\x11\x12\
\x39\xb2\x0b\x09\x02\x11\x12\x39\xb0\x02\x10\xb1\x14\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x09\x10\xb1\x1a\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\x30\x31\x25\x02\x21\x22\x02\x35\x35\x10\
\x12\x33\x20\x13\x37\x33\x03\x13\x23\x01\x14\x16\x33\x32\x13\x35\
\x26\x26\x23\x22\x06\x03\x82\x6c\xfe\xf2\xc0\xe4\xe2\xc4\x01\x09\
\x6c\x22\xb0\x6a\x71\xb0\xfd\x75\x92\x87\xd3\x48\x1c\x92\x6b\x86\
\x95\xf1\xfe\xfa\x01\x1b\xf4\x0f\x01\x08\x01\x3d\xfe\xff\xed\xfd\
\xe2\xfd\xe4\x01\xf4\xaf\xc3\x01\x87\x24\xbe\xcb\xe3\x00\x02\x00\
\xb1\x00\x00\x04\xe3\x05\xaf\x00\x16\x00\x1e\x00\x63\xb2\x18\x1f\
\x20\x11\x12\x39\xb0\x18\x10\xb0\x04\xd0\x00\xb0\x00\x45\x58\xb0\
\x03\x2f\x1b\xb1\x03\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x01\x2f\x1b\
\xb1\x01\x12\x3e\x59\xb0\x00\x45\x58\xb0\x0f\x2f\x1b\xb1\x0f\x12\
\x3e\x59\xb2\x17\x03\x01\x11\x12\x39\xb0\x17\x2f\xb1\x00\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x09\x17\x00\x11\x12\x39\xb0\
\x03\x10\xb1\x1d\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\
\x01\x11\x23\x11\x21\x32\x16\x15\x14\x07\x16\x13\x15\x16\x17\x15\
\x23\x26\x27\x35\x34\x26\x23\x25\x21\x32\x36\x35\x10\x21\x21\x01\
\x72\xc1\x02\x0e\xf0\xfb\xed\xde\x05\x02\x41\xc6\x3b\x03\x8c\x7f\
\xfe\x9e\x01\x39\xa2\x9d\xfe\xcf\xfe\xb9\x02\x74\xfd\x8c\x05\xaf\
\xd2\xcc\xe5\x63\x45\xfe\xfa\x9c\x8d\x3d\x18\x36\xac\x8b\x78\x8f\
\x9d\x7c\x84\x01\x00\x00\x01\x00\xb2\x00\x00\x05\x1d\x05\xb0\x00\
\x0c\x00\x69\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1e\x3e\
\x59\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1e\x3e\x59\xb0\x00\
\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb0\x00\x45\x58\xb0\
\x0b\x2f\x1b\xb1\x0b\x12\x3e\x59\xb2\x06\x02\x04\x11\x12\x39\x7c\
\xb0\x06\x2f\x18\xb4\x63\x06\x73\x06\x02\x5d\xb4\x33\x06\x43\x06\
\x02\x5d\xb2\x93\x06\x01\x5d\xb1\x01\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb2\x0a\x01\x06\x11\x12\x39\x30\x31\x01\x23\x11\x23\
\x11\x33\x11\x33\x01\x33\x01\x01\x23\x02\x23\xb1\xc0\xc0\x96\x01\
\xfd\xef\xfd\xd4\x02\x55\xeb\x02\x8e\xfd\x72\x05\xb0\xfd\x7e\x02\
\x82\xfd\x3e\xfd\x12\x00\x01\x00\x92\x00\x00\x04\x14\x06\x00\x00\
\x0c\x00\x54\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x20\x3e\
\x59\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1a\x3e\x59\xb0\x00\
\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb0\x00\x45\x58\xb0\
\x0b\x2f\x1b\xb1\x0b\x12\x3e\x59\xb2\x07\x08\x02\x11\x12\x39\xb0\
\x07\x2f\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x0a\
\x00\x07\x11\x12\x39\x30\x31\x01\x23\x11\x23\x11\x33\x11\x33\x01\
\x33\x01\x01\x23\x01\xcc\x80\xba\xba\x7e\x01\x3b\xdb\xfe\x86\x01\
\xae\xdb\x01\xf5\xfe\x0b\x06\x00\xfc\x8e\x01\xac\xfe\x13\xfd\xb3\
\x00\x00\x01\x00\xb2\x00\x00\x04\xfa\x05\xb0\x00\x0b\x00\x4c\x00\
\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1e\x3e\x59\xb0\x00\x45\
\x58\xb0\x07\x2f\x1b\xb1\x07\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x01\
\x2f\x1b\xb1\x01\x12\x3e\x59\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\
\x0a\x12\x3e\x59\xb2\x00\x03\x01\x11\x12\x39\xb2\x05\x03\x01\x11\
\x12\x39\xb2\x09\x00\x05\x11\x12\x39\x30\x31\x01\x11\x23\x11\x33\
\x11\x33\x01\x33\x01\x01\x23\x01\x72\xc0\xc0\x0c\x02\x63\xf1\xfd\
\x6b\x02\xbd\xed\x02\xb5\xfd\x4b\x05\xb0\xfd\x79\x02\x87\xfd\x3b\
\xfd\x15\x00\x00\x01\x00\x92\x00\x00\x03\xf1\x06\x18\x00\x0c\x00\
\x4c\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x20\x3e\x59\xb0\
\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1a\x3e\x59\xb0\x00\x45\x58\
\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb0\x00\x45\x58\xb0\x0b\x2f\
\x1b\xb1\x0b\x12\x3e\x59\xb2\x00\x08\x02\x11\x12\x39\xb2\x06\x08\
\x02\x11\x12\x39\xb2\x0a\x06\x00\x11\x12\x39\x30\x31\x01\x23\x11\
\x23\x11\x33\x11\x33\x01\x33\x01\x01\x23\x01\x50\x04\xba\xba\x01\
\x01\x8a\xf0\xfe\x2b\x01\xff\xe4\x01\xf3\xfe\x0d\x06\x18\xfc\x75\
\x01\xad\xfe\x0d\xfd\xb9\x00\x00\x02\x00\x8a\x00\x00\x04\x1f\x04\
\x8d\x00\x0a\x00\x14\x00\x48\xb2\x02\x15\x16\x11\x12\x39\xb0\x02\
\x10\xb0\x14\xd0\x00\xb0\x00\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x1c\
\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb0\
\x01\x10\xb1\x0b\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x00\
\x10\xb1\x0c\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x33\
\x11\x21\x32\x16\x16\x17\x15\x14\x00\x21\x03\x11\x33\x32\x36\x35\
\x35\x34\x26\x23\x8a\x01\x69\xa2\xfb\x8c\x03\xfe\xc9\xfe\xf9\x9e\
\xa4\xba\xc6\xbd\xb7\x04\x8d\x85\xf6\x9f\x4d\xfc\xfe\xd6\x03\xf4\
\xfc\xa3\xd0\xc0\x40\xc0\xcd\x00\x01\x00\x60\xff\xf0\x04\x30\x04\
\x9d\x00\x1c\x00\x4e\xb2\x03\x1d\x1e\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x0b\x2f\x1b\xb1\x0b\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x03\
\x2f\x1b\xb1\x03\x12\x3e\x59\xb0\x0b\x10\xb0\x0f\xd0\xb0\x0b\x10\
\xb1\x12\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\xb1\
\x19\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\xb0\x1c\
\xd0\x30\x31\x01\x06\x06\x23\x22\x00\x11\x35\x34\x36\x36\x33\x32\
\x16\x17\x23\x26\x26\x23\x22\x06\x07\x15\x14\x16\x33\x32\x36\x37\
\x04\x30\x14\xfc\xd1\xe0\xfe\xf1\x7b\xe7\x98\xcc\xf7\x13\xb9\x12\
\x8d\x7e\x99\xa7\x01\x9f\x97\x87\x8d\x14\x01\x79\xbb\xce\x01\x27\
\x01\x03\x5e\xa4\xf9\x88\xd3\xbb\x82\x74\xcb\xbd\x6a\xbd\xcf\x6f\
\x83\x00\x03\x00\x8a\x00\x00\x03\xef\x04\x8d\x00\x0e\x00\x16\x00\
\x1e\x00\x6b\x00\xb0\x00\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x1c\x3e\
\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb2\x17\
\x00\x01\x11\x12\x39\xb0\x17\x2f\xb2\xbf\x17\x01\x5d\xb4\x1f\x17\
\x2f\x17\x02\x5d\xb4\xdf\x17\xef\x17\x02\x5d\xb1\x0f\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x08\x0f\x17\x11\x12\x39\xb0\x00\
\x10\xb1\x10\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x01\x10\
\xb1\x1e\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x33\x11\
\x21\x32\x16\x15\x14\x06\x07\x16\x16\x15\x14\x06\x07\x01\x11\x21\
\x32\x36\x35\x34\x23\x25\x33\x32\x36\x35\x34\x27\x23\x8a\x01\x96\
\xd1\xde\x5f\x58\x63\x74\xda\xc9\xfe\xf7\x01\x06\x73\x7a\xeb\xfe\
\xf8\xea\x6c\x7c\xe5\xed\x04\x8d\xa3\x9b\x51\x7e\x21\x18\x95\x65\
\x9e\xae\x01\x02\x12\xfe\x85\x62\x55\xc4\x8d\x55\x53\xa8\x05\x00\
\x02\x00\x13\x00\x00\x04\x70\x04\x8d\x00\x07\x00\x0a\x00\x47\x00\
\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1c\x3e\x59\xb0\x00\x45\
\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb0\x00\x45\x58\xb0\x06\
\x2f\x1b\xb1\x06\x12\x3e\x59\xb2\x09\x04\x02\x11\x12\x39\xb0\x09\
\x2f\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x0a\x04\
\x02\x11\x12\x39\x30\x31\x01\x21\x03\x23\x01\x33\x01\x23\x01\x21\
\x03\x03\x46\xfd\xf8\x6e\xbd\x01\xdf\xa6\x01\xd8\xbc\xfd\xc6\x01\
\x91\xc7\x01\x17\xfe\xe9\x04\x8d\xfb\x73\x01\xae\x01\xfd\x00\x00\
\x01\x00\x9f\x04\x8e\x01\x96\x06\x3b\x00\x08\x00\x0c\x00\xb0\x00\
\x2f\xb0\x04\xd0\xb0\x04\x2f\x30\x31\x01\x17\x06\x07\x15\x23\x35\
\x34\x36\x01\x2b\x6b\x3b\x03\xb9\x54\x06\x3b\x53\x63\x6f\x88\x82\
\x4d\xad\x00\x00\x02\x00\x81\x04\xdf\x02\xe0\x06\x8a\x00\x0d\x00\
\x11\x00\x60\x00\xb0\x03\x2f\xb0\x07\xd0\xb0\x07\x2f\x40\x0d\x0f\
\x07\x1f\x07\x2f\x07\x3f\x07\x4f\x07\x5f\x07\x06\x5d\xb0\x03\x10\
\xb1\x0a\x04\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x07\x10\xb0\
\x0d\xd0\xb0\x0d\x2f\xb0\x07\x10\xb0\x11\xd0\xb0\x11\x2f\xb0\x0f\
\xd0\xb0\x0f\x2f\x40\x0f\x0f\x0f\x1f\x0f\x2f\x0f\x3f\x0f\x4f\x0f\
\x5f\x0f\x6f\x0f\x07\x5d\xb0\x11\x10\xb0\x10\xd0\x19\xb0\x10\x2f\
\x18\x30\x31\x01\x14\x06\x23\x22\x26\x35\x33\x14\x16\x33\x32\x36\
\x35\x25\x33\x17\x23\x02\xe0\xa8\x87\x88\xa8\x98\x4f\x49\x47\x4f\
\xfe\xa6\x9a\x70\x65\x05\xb0\x5f\x72\x72\x5f\x37\x3d\x3f\x35\xda\
\xc6\x00\x02\xfc\xa4\x04\xbc\xfe\xcc\x06\x93\x00\x14\x00\x18\x00\
\x9a\x00\xb0\x03\x2f\xb2\x0f\x03\x01\x5d\xb2\xff\x03\x01\x5d\xb2\
\x70\x03\x01\x5d\xb0\x07\xd0\xb0\x07\x2f\x40\x0b\x0f\x07\x1f\x07\
\x2f\x07\x3f\x07\x4f\x07\x05\x5d\xb0\x03\x10\xb0\x0a\xd0\xb0\x0a\
\x2f\xb0\x07\x10\xb1\x0e\x03\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb0\x03\x10\xb1\x11\x03\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x0e\x10\xb0\x14\xd0\xb0\x0e\x10\xb0\x17\xd0\xb0\x17\x2f\x40\x19\
\x3f\x17\x4f\x17\x5f\x17\x6f\x17\x7f\x17\x8f\x17\x9f\x17\xaf\x17\
\xbf\x17\xcf\x17\xdf\x17\xef\x17\x0c\x5d\xb0\x15\xd0\xb0\x15\x2f\
\x40\x0b\x0f\x15\x1f\x15\x2f\x15\x3f\x15\x4f\x15\x05\x5d\xb0\x17\
\x10\xb0\x18\xd0\x19\xb0\x18\x2f\x18\x30\x31\x01\x14\x06\x23\x22\
\x26\x26\x23\x22\x06\x15\x27\x34\x36\x33\x32\x16\x33\x32\x36\x35\
\x27\x33\x07\x23\xfe\xcc\x60\x46\x35\x71\x22\x14\x23\x2f\x54\x60\
\x46\x2f\x81\x2c\x23\x30\x8d\xab\xb6\x78\x05\x7d\x4a\x69\x42\x09\
\x33\x26\x15\x4b\x6b\x4b\x33\x26\xfe\xe1\x00\x00\x02\x00\x6e\x04\
\xe1\x04\x58\x06\x95\x00\x06\x00\x0a\x00\x5d\x00\xb0\x03\x2f\xb2\
\x0f\x03\x01\x5d\xb0\x05\xd0\xb0\x05\x2f\xb0\x00\xd0\xb0\x00\x2f\
\xb6\x0f\x00\x1f\x00\x2f\x00\x03\x5d\xb0\x03\x10\xb0\x02\xd0\x19\
\xb0\x02\x2f\x18\xb2\x04\x03\x00\x11\x12\x39\xb0\x06\xd0\x19\xb0\
\x06\x2f\x18\xb0\x03\x10\xb0\x09\xd0\xb0\x09\x2f\xb0\x07\xd0\xb0\
\x07\x2f\xb6\x0f\x07\x1f\x07\x2f\x07\x03\x5d\xb0\x09\x10\xb0\x0a\
\xd0\x19\xb0\x0a\x2f\x18\x30\x31\x01\x33\x01\x23\x27\x07\x23\x01\
\x33\x03\x23\x01\x92\x98\x01\x22\xc5\xa9\xaa\xc6\x03\x22\xc8\xc9\
\x8d\x05\xe8\xfe\xf9\x9f\x9f\x01\xb4\xfe\xfd\x00\x02\xff\x5e\x04\
\xcf\x03\x46\x06\x82\x00\x06\x00\x0a\x00\x5d\x00\xb0\x03\x2f\xb2\
\x0f\x03\x01\x5d\xb0\x04\xd0\x19\xb0\x04\x2f\x18\xb0\x00\xd0\x19\
\xb0\x00\x2f\x18\xb0\x03\x10\xb0\x01\xd0\xb0\x01\x2f\xb0\x06\xd0\
\xb0\x06\x2f\xb6\x0f\x06\x1f\x06\x2f\x06\x03\x5d\xb2\x02\x03\x06\
\x11\x12\x39\xb0\x03\x10\xb0\x08\xd0\xb0\x08\x2f\xb0\x07\xd0\x19\
\xb0\x07\x2f\x18\xb0\x08\x10\xb0\x0a\xd0\xb0\x0a\x2f\xb6\x0f\x0a\
\x1f\x0a\x2f\x0a\x03\x5d\x30\x31\x01\x23\x27\x07\x23\x01\x33\x05\
\x23\x03\x33\x03\x46\xc5\xaa\xaa\xc4\x01\x22\x98\xfe\x8f\x8c\xc8\
\xc7\x04\xcf\x9e\x9e\x01\x06\x55\x01\x02\x00\x00\x02\x00\x69\x04\
\xe4\x03\xec\x06\xcf\x00\x06\x00\x15\x00\x73\x00\xb0\x03\x2f\xb0\
\x05\xd0\xb0\x05\x2f\xb6\x0f\x05\x1f\x05\x2f\x05\x03\x5d\xb2\x04\
\x03\x05\x11\x12\x39\x19\xb0\x04\x2f\x18\xb0\x00\xd0\xb0\x03\x10\
\xb0\x01\xd0\xb0\x01\x2f\xb2\x02\x05\x03\x11\x12\x39\xb0\x07\xd0\
\x7c\xb0\x07\x2f\x18\x40\x0d\x0f\x07\x1f\x07\x2f\x07\x3f\x07\x4f\
\x07\x5f\x07\x06\x5d\xb0\x0e\xd0\xb0\x0e\x2f\x40\x0d\x0f\x0e\x1f\
\x0e\x2f\x0e\x3f\x0e\x4f\x0e\x5f\x0e\x06\x5d\xb0\x0d\xd0\xb2\x08\
\x07\x0d\x11\x12\x39\xb2\x14\x0e\x07\x11\x12\x39\x30\x31\x01\x23\
\x27\x07\x23\x01\x33\x17\x27\x36\x36\x35\x34\x23\x37\x32\x16\x15\
\x14\x06\x07\x07\x03\x46\xaa\xc5\xc5\xa9\x01\x10\xbc\xbe\x01\x41\
\x3b\x8d\x05\x80\x86\x4a\x3c\x01\x04\xe4\xba\xba\x01\x06\x7c\x83\
\x04\x1a\x21\x43\x5c\x58\x49\x3b\x42\x07\x3c\x00\x02\x00\x69\x04\
\xe4\x03\x46\x06\xd4\x00\x06\x00\x1a\x00\x87\x00\xb0\x03\x2f\xb0\
\x01\xd0\xb0\x01\x2f\xb0\x06\xd0\xb0\x06\x2f\x40\x09\x0f\x06\x1f\
\x06\x2f\x06\x3f\x06\x04\x5d\xb2\x04\x03\x06\x11\x12\x39\x19\xb0\
\x04\x2f\x18\xb0\x00\xd0\xb2\x02\x06\x01\x11\x12\x39\xb0\x06\x10\
\xb0\x0a\xd0\xb0\x0a\x2f\xb4\x3f\x0a\x4f\x0a\x02\x5d\xb0\x0d\xd0\
\xb0\x0d\x2f\x40\x0d\x0f\x0d\x1f\x0d\x2f\x0d\x3f\x0d\x4f\x0d\x5f\
\x0d\x06\x5d\xb0\x0a\x10\xb0\x10\xd0\xb0\x10\x2f\xb0\x0d\x10\xb1\
\x14\x04\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0a\x10\xb1\x17\
\x04\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x14\x10\xb0\x1a\xd0\
\x30\x31\x01\x23\x27\x07\x23\x25\x33\x37\x14\x06\x23\x22\x26\x23\
\x22\x06\x15\x27\x34\x36\x33\x32\x16\x33\x32\x36\x35\x03\x46\xaa\
\xc5\xc5\xa9\x01\x2d\x83\xc3\x60\x41\x36\x6e\x28\x1d\x36\x4d\x60\
\x40\x2a\x7c\x26\x1f\x34\x04\xe4\x9e\x9e\xf4\xe5\x3e\x5e\x47\x2e\
\x1d\x13\x3f\x62\x46\x2d\x1c\x00\x01\x00\x8a\x00\x00\x03\x85\x05\
\xc4\x00\x07\x00\x33\xb2\x03\x08\x09\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x06\x2f\x1b\xb1\x06\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x04\
\x2f\x1b\xb1\x04\x12\x3e\x59\xb0\x06\x10\xb1\x02\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x33\x11\x21\x11\x23\x11\x21\
\x02\xcc\xb9\xfd\xbe\xb9\x02\x42\x05\xc4\xfe\x30\xfc\x0c\x04\x8d\
\x00\x00\x02\x00\x81\x04\xdf\x02\xe0\x06\x8a\x00\x0d\x00\x11\x00\
\x60\x00\xb0\x03\x2f\xb0\x07\xd0\xb0\x07\x2f\x40\x0d\x0f\x07\x1f\
\x07\x2f\x07\x3f\x07\x4f\x07\x5f\x07\x06\x5d\xb0\x03\x10\xb1\x0a\
\x04\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x07\x10\xb0\x0d\xd0\
\xb0\x0d\x2f\xb0\x07\x10\xb0\x10\xd0\xb0\x10\x2f\xb0\x0f\xd0\xb0\
\x0f\x2f\x40\x0f\x0f\x0f\x1f\x0f\x2f\x0f\x3f\x0f\x4f\x0f\x5f\x0f\
\x6f\x0f\x07\x5d\xb0\x10\x10\xb0\x11\xd0\x19\xb0\x11\x2f\x18\x30\
\x31\x01\x14\x06\x23\x22\x26\x35\x33\x14\x16\x33\x32\x36\x35\x27\
\x33\x07\x23\x02\xe0\xa8\x87\x88\xa8\x98\x4f\x49\x47\x4f\x60\x99\
\xa4\x66\x05\xb0\x5f\x72\x72\x5f\x37\x3d\x3f\x35\xda\xc6\x00\x00\
\x02\x00\x81\x04\xe0\x02\xca\x07\x03\x00\x0d\x00\x1c\x00\x66\x00\
\xb0\x03\x2f\xb0\x07\xd0\xb0\x07\x2f\x40\x0d\x0f\x07\x1f\x07\x2f\
\x07\x3f\x07\x4f\x07\x5f\x07\x06\x5d\xb0\x03\x10\xb1\x0a\x04\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x07\x10\xb0\x0d\xd0\xb0\x0d\
\x2f\xb0\x07\x10\xb0\x0e\xd0\xb0\x0e\x2f\xb0\x15\xd0\xb0\x15\x2f\
\x40\x0f\x0f\x15\x1f\x15\x2f\x15\x3f\x15\x4f\x15\x5f\x15\x6f\x15\
\x07\x5d\xb0\x14\xd0\xb2\x0f\x14\x0e\x11\x12\x39\xb2\x1b\x0e\x15\
\x11\x12\x39\x30\x31\x01\x14\x06\x23\x22\x26\x35\x33\x14\x16\x33\
\x32\x36\x35\x27\x27\x36\x36\x35\x34\x23\x37\x32\x16\x15\x14\x06\
\x07\x07\x02\xca\xa1\x83\x84\xa1\x92\x4a\x49\x45\x4c\xc9\x01\x4a\
\x42\xa0\x07\x90\x94\x51\x44\x01\x05\xb0\x5e\x72\x73\x5d\x35\x3e\
\x3d\x36\x11\x7c\x04\x18\x1d\x3b\x52\x4e\x42\x32\x3b\x07\x3e\xff\
\xff\x00\x50\x02\x8d\x02\x9d\x05\xb8\x03\x07\x01\xc7\x00\x00\x02\
\x98\x00\x13\x00\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1e\x3e\
\x59\xb0\x10\xd0\x30\x31\x00\xff\xff\x00\x36\x02\x98\x02\xbb\x05\
\xad\x03\x07\x02\x20\x00\x00\x02\x98\x00\x13\x00\xb0\x00\x45\x58\
\xb0\x09\x2f\x1b\xb1\x09\x1e\x3e\x59\xb0\x0d\xd0\x30\x31\x00\xff\
\xff\x00\x5b\x02\x8d\x02\xa7\x05\xad\x03\x07\x02\x21\x00\x00\x02\
\x98\x00\x10\x00\xb0\x00\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x1e\x3e\
\x59\x30\x31\xff\xff\x00\x56\x02\x8d\x02\xab\x05\xb6\x03\x07\x02\
\x22\x00\x00\x02\x98\x00\x13\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\
\xb1\x00\x1e\x3e\x59\xb0\x14\xd0\x30\x31\x00\xff\xff\x00\x3a\x02\
\x98\x02\xa5\x05\xad\x03\x07\x02\x23\x00\x00\x02\x98\x00\x10\x00\
\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x1e\x3e\x59\x30\x31\xff\
\xff\x00\x4f\x02\x8d\x02\x9f\x05\xb8\x03\x07\x02\x24\x00\x00\x02\
\x98\x00\x19\x00\xb0\x00\x45\x58\xb0\x11\x2f\x1b\xb1\x11\x1e\x3e\
\x59\xb0\x17\xd0\xb0\x11\x10\xb0\x1f\xd0\x30\x31\x00\xff\xff\x00\
\x49\x02\x91\x02\x95\x05\xb8\x03\x07\x02\x25\x00\x00\x02\x98\x00\
\x13\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1e\x3e\x59\xb0\
\x19\xd0\x30\x31\x00\x00\x01\x00\x7e\xff\xeb\x05\x1d\x05\xc5\x00\
\x1e\x00\x4e\xb2\x0c\x1f\x20\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\
\x0c\x2f\x1b\xb1\x0c\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x03\x2f\x1b\
\xb1\x03\x12\x3e\x59\xb0\x0c\x10\xb0\x10\xd0\xb0\x0c\x10\xb1\x13\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\xb1\x1b\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\xb0\x1e\xd0\x30\
\x31\x01\x06\x00\x23\x22\x24\x02\x27\x35\x34\x12\x24\x33\x32\x00\
\x17\x23\x26\x26\x23\x22\x02\x11\x15\x14\x12\x16\x33\x32\x36\x37\
\x05\x1c\x18\xfe\xdb\xee\xb1\xfe\xe1\xa2\x01\x9d\x01\x1b\xb2\xed\
\x01\x2f\x19\xc1\x18\xbf\x9d\xc0\xea\x6e\xc8\x7d\xa1\xb0\x1a\x01\
\xce\xdf\xfe\xfc\xb4\x01\x47\xcb\x44\xd3\x01\x4a\xb3\xfe\xfa\xe3\
\xa3\xa8\xfe\xcb\xfe\xfe\x37\xa1\xff\x00\x90\x9d\xa9\x00\x01\x00\
\x7e\xff\xeb\x05\x1e\x05\xc4\x00\x22\x00\x70\xb2\x0c\x23\x24\x11\
\x12\x39\x00\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x1e\x3e\x59\
\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x12\x3e\x59\xb2\x10\x03\
\x0c\x11\x12\x39\xb0\x10\x2f\xb0\x0c\x10\xb1\x13\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\xb1\x1b\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb2\x22\x0c\x03\x11\x12\x39\xb0\x22\x2f\xb4\
\x3f\x22\x4f\x22\x02\x5d\xb4\x0f\x22\x1f\x22\x02\x5d\xb1\x1f\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x25\x06\x04\x23\x22\
\x24\x02\x27\x35\x34\x12\x24\x33\x32\x04\x17\x23\x26\x26\x23\x22\
\x02\x07\x07\x14\x12\x16\x33\x32\x36\x37\x11\x21\x35\x21\x05\x1e\
\x43\xfe\xe3\xb0\xbb\xfe\xd6\xa8\x03\x9b\x01\x1c\xb5\xf1\x01\x21\
\x22\xc0\x1e\xba\x9c\xb5\xec\x0a\x01\x78\xd3\x85\x72\xb5\x2a\xfe\
\xb0\x02\x0f\xbe\x61\x72\xb4\x01\x47\xd2\x2d\xdb\x01\x4e\xb6\xe5\
\xda\x95\x8c\xfe\xdc\xf2\x46\xac\xfe\xf6\x8c\x3a\x30\x01\x46\x9b\
\x00\x00\x02\x00\xb2\x00\x00\x05\x11\x05\xb0\x00\x0b\x00\x15\x00\
\x48\xb2\x03\x16\x17\x11\x12\x39\xb0\x03\x10\xb0\x15\xd0\x00\xb0\
\x00\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x1e\x3e\x59\xb0\x00\x45\x58\
\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb0\x01\x10\xb1\x0c\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x00\x10\xb1\x0d\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x33\x11\x21\x32\x04\x12\x17\
\x15\x14\x02\x04\x07\x03\x11\x33\x32\x00\x11\x35\x34\x00\x23\xb2\
\x01\xb1\xc1\x01\x38\xb1\x04\xad\xfe\xc2\xcb\xe9\xdf\xea\x01\x13\
\xfe\xf7\xe8\x05\xb0\xac\xfe\xc4\xc8\x3e\xd0\xfe\xc1\xb1\x02\x05\
\x12\xfb\x8b\x01\x2a\x01\x03\x24\xfc\x01\x28\x00\x02\x00\x7e\xff\
\xeb\x05\x5f\x05\xc5\x00\x11\x00\x22\x00\x48\xb2\x04\x23\x24\x11\
\x12\x39\xb0\x04\x10\xb0\x1f\xd0\x00\xb0\x00\x45\x58\xb0\x0d\x2f\
\x1b\xb1\x0d\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\
\x12\x3e\x59\xb0\x0d\x10\xb1\x16\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb0\x04\x10\xb1\x1f\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\x30\x31\x01\x14\x02\x04\x23\x22\x24\x02\x27\x35\x34\x12\x24\
\x33\x32\x04\x12\x17\x07\x34\x02\x26\x23\x22\x06\x06\x07\x15\x14\
\x12\x16\x33\x32\x12\x35\x05\x5f\xa2\xfe\xe2\xaf\xab\xfe\xe1\xa6\
\x02\xa4\x01\x21\xab\xad\x01\x20\xa3\x01\xbf\x6e\xc7\x7d\x78\xc6\
\x72\x01\x71\xc9\x79\xc1\xef\x02\xc2\xce\xfe\xb0\xb9\xb9\x01\x4a\
\xc8\x37\xcd\x01\x4f\xbc\xb9\xfe\xb4\xcc\x05\xa2\x01\x00\x8f\x8f\
\xfe\x9c\x35\xa0\xfe\xfe\x92\x01\x3b\xff\x00\x00\x02\x00\x7e\xff\
\x04\x05\x5f\x05\xc5\x00\x15\x00\x26\x00\x4f\xb2\x08\x27\x28\x11\
\x12\x39\xb0\x08\x10\xb0\x23\xd0\x00\xb0\x00\x45\x58\xb0\x11\x2f\
\x1b\xb1\x11\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\
\x12\x3e\x59\xb2\x03\x08\x11\x11\x12\x39\xb0\x11\x10\xb1\x1a\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x08\x10\xb1\x23\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x14\x02\x07\x17\x07\
\x25\x06\x23\x22\x24\x02\x27\x35\x34\x12\x24\x33\x32\x04\x12\x15\
\x27\x34\x02\x26\x23\x22\x06\x06\x07\x15\x14\x12\x16\x33\x32\x12\
\x35\x05\x5f\xa9\x94\xfa\x83\xfe\xcc\x39\x3c\xab\xfe\xe0\xa4\x03\
\xa2\x01\x22\xac\xae\x01\x21\xa2\xbf\x6e\xc7\x7d\x78\xc7\x71\x01\
\x71\xc9\x79\xc1\xef\x02\xc2\xd4\xfe\xac\x5a\xc3\x79\xf3\x0c\xba\
\x01\x46\xc6\x3a\xcc\x01\x50\xbe\xbb\xfe\xb0\xce\x01\xa3\x01\x01\
\x8f\x90\xff\x9c\x33\xa0\xfe\xfe\x92\x01\x3b\xff\x00\x00\x01\x00\
\xa0\x00\x00\x02\xc9\x04\x8d\x00\x06\x00\x33\x00\xb0\x00\x45\x58\
\xb0\x05\x2f\x1b\xb1\x05\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\
\x1b\xb1\x00\x12\x3e\x59\xb2\x04\x00\x05\x11\x12\x39\xb0\x04\x2f\
\xb1\x03\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x21\x23\
\x11\x05\x35\x25\x33\x02\xc9\xb9\xfe\x90\x02\x0a\x1f\x03\xa6\x8b\
\xa8\xca\x00\x00\x01\x00\x83\x00\x00\x04\x20\x04\xa0\x00\x18\x00\
\x56\xb2\x09\x19\x1a\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\x11\x2f\
\x1b\xb1\x11\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\
\x12\x3e\x59\xb1\x17\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x02\xd0\xb2\x16\x17\x11\x11\x12\x39\xb2\x03\x11\x16\x11\x12\x39\
\xb0\x11\x10\xb1\x09\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x11\x10\xb0\x0c\xd0\x30\x31\x21\x21\x35\x01\x36\x37\x37\x34\x26\
\x23\x22\x06\x15\x23\x34\x36\x36\x33\x32\x16\x15\x14\x07\x01\x21\
\x04\x20\xfc\x87\x01\xfd\x7d\x0a\x03\x7d\x66\x7a\x95\xb9\x78\xd2\
\x7e\xbb\xe1\xc5\xfe\x86\x02\x78\x83\x01\xc9\x73\x54\x35\x54\x6c\
\x8e\x75\x70\xbf\x6c\xb8\x98\xb1\xb4\xfe\xac\x00\x01\x00\x0f\xfe\
\xa3\x03\xde\x04\x8d\x00\x18\x00\x51\x00\xb0\x0b\x2f\xb0\x00\x45\
\x58\xb0\x02\x2f\x1b\xb1\x02\x1c\x3e\x59\xb1\x01\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x04\xd0\xb2\x05\x0b\x02\x11\x12\x39\
\xb0\x05\x2f\xb0\x0b\x10\xb1\x10\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb0\x05\x10\xb1\x17\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb2\x18\x17\x05\x11\x12\x39\x30\x31\x01\x21\x35\x21\x15\x01\
\x16\x16\x15\x14\x00\x23\x22\x27\x37\x16\x33\x32\x36\x35\x34\x26\
\x23\x23\x35\x02\xe4\xfd\x74\x03\x72\xfe\x80\xb2\xe2\xfe\xcc\xff\
\xca\xd2\x34\xa5\xb1\xb4\xd7\xb9\xc0\x3c\x03\xf4\x99\x76\xfe\x6c\
\x18\xf6\xb3\xf9\xfe\xda\x67\x8b\x58\xca\xa5\xab\xa5\x67\x00\x00\
\x02\x00\x3e\xfe\xb6\x04\xa0\x04\x8d\x00\x0a\x00\x0e\x00\x4c\x00\
\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\x09\x1c\x3e\x59\xb0\x00\x45\
\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb0\x00\x45\x58\xb0\x06\
\x2f\x1b\xb1\x06\x12\x3e\x59\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x06\x10\xb0\x05\xd0\xb0\x05\x2f\xb0\x00\x10\xb0\
\x0c\xd0\xb2\x0d\x09\x02\x11\x12\x39\x30\x31\x25\x33\x15\x23\x11\
\x23\x11\x21\x35\x01\x33\x01\x21\x11\x07\x03\xdb\xc5\xc5\xba\xfd\
\x1d\x02\xd6\xc7\xfd\x3c\x02\x0a\x1c\x96\x97\xfe\xb7\x01\x49\x6d\
\x04\x21\xfc\x09\x02\xfc\x35\x00\x01\x00\x65\xfe\xa0\x04\x05\x04\
\x8c\x00\x1b\x00\x51\x00\xb0\x0d\x2f\xb0\x00\x45\x58\xb0\x01\x2f\
\x1b\xb1\x01\x1c\x3e\x59\xb1\x04\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb2\x07\x0d\x01\x11\x12\x39\xb0\x07\x2f\xb1\x18\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x05\x07\x18\x11\x12\x39\xb0\
\x0d\x10\xb1\x12\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x07\
\x10\xb0\x1b\xd0\x30\x31\x13\x13\x21\x15\x21\x03\x36\x37\x36\x12\
\x15\x14\x00\x23\x22\x27\x37\x16\x33\x32\x36\x35\x34\x26\x23\x22\
\x06\x07\x86\x66\x03\x14\xfd\x7e\x36\x6f\x95\xc8\xf1\xfe\xe0\xf1\
\xe0\xaf\x3a\x82\xd3\x99\xbf\xa5\x87\x6a\x75\x22\x01\x74\x03\x18\
\xab\xfe\x74\x40\x02\x02\xfe\xf5\xe1\xef\xfe\xe2\x72\x8b\x65\xcf\
\xa4\x8f\xb6\x3a\x53\x00\x01\x00\x4a\xfe\xb6\x03\xf2\x04\x8d\x00\
\x06\x00\x26\x00\xb0\x01\x2f\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\
\x05\x1c\x3e\x59\xb1\x03\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb2\x00\x03\x05\x11\x12\x39\x30\x31\x01\x01\x23\x01\x21\x35\x21\
\x03\xf2\xfd\xa0\xba\x02\x57\xfd\x1b\x03\xa8\x04\x23\xfa\x93\x05\
\x3f\x98\x00\x00\x02\x00\x83\x04\xd9\x02\xd2\x06\xd0\x00\x0d\x00\
\x21\x00\x7e\x00\xb0\x03\x2f\xb0\x07\xd0\xb0\x07\x2f\x40\x0d\x0f\
\x07\x1f\x07\x2f\x07\x3f\x07\x4f\x07\x5f\x07\x06\x5d\xb0\x03\x10\
\xb1\x0a\x04\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x07\x10\xb0\
\x0d\xd0\xb0\x0d\x2f\xb0\x07\x10\xb0\x11\xd0\xb0\x11\x2f\xb0\x14\
\xd0\xb0\x14\x2f\x40\x0b\x0f\x14\x1f\x14\x2f\x14\x3f\x14\x4f\x14\
\x05\x5d\xb0\x11\x10\xb0\x17\xd0\xb0\x17\x2f\xb0\x14\x10\xb1\x1b\
\x04\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x11\x10\xb1\x1e\x04\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x1b\x10\xb0\x21\xd0\x30\
\x31\x01\x14\x06\x23\x22\x26\x35\x33\x14\x16\x33\x32\x36\x35\x13\
\x14\x06\x23\x22\x26\x23\x22\x06\x15\x27\x34\x36\x33\x32\x16\x33\
\x32\x36\x35\x02\xd2\xa1\x86\x87\xa1\x96\x4a\x48\x47\x4a\x8d\x60\
\x46\x3a\x77\x2c\x22\x30\x53\x60\x45\x30\x81\x2c\x23\x30\x05\xae\
\x5f\x76\x76\x5f\x36\x40\x40\x36\x01\x0a\x4a\x69\x4b\x33\x26\x15\
\x4b\x6b\x4b\x33\x26\x00\x01\x00\x67\xfe\x99\x01\x21\x00\x99\x00\
\x03\x00\x12\x00\xb0\x04\x2f\xb0\x02\xd0\xb0\x02\x2f\xb0\x01\xd0\
\xb0\x01\x2f\x30\x31\x01\x23\x11\x33\x01\x21\xba\xba\xfe\x99\x02\
\x00\x00\x02\x00\x60\xff\xf0\x06\x6d\x04\x9d\x00\x13\x00\x1d\x00\
\x9f\xb2\x15\x1e\x1f\x11\x12\x39\xb0\x15\x10\xb0\x0a\xd0\x00\xb0\
\x00\x45\x58\xb0\x09\x2f\x1b\xb1\x09\x1c\x3e\x59\xb0\x00\x45\x58\
\xb0\x0b\x2f\x1b\xb1\x0b\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\
\x1b\xb1\x02\x12\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\
\x12\x3e\x59\xb0\x0b\x10\xb1\x0c\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb0\x00\x10\xb0\x0f\xd0\xb0\x0f\x2f\xb2\x1f\x0f\x01\x5d\
\xb2\xdf\x0f\x01\x5d\xb1\x10\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x00\x10\xb1\x13\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb0\x02\x10\xb1\x14\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x09\x10\xb1\x17\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\
\x21\x21\x05\x22\x00\x11\x35\x10\x00\x33\x05\x21\x15\x21\x11\x21\
\x15\x21\x11\x21\x05\x37\x11\x27\x22\x06\x15\x15\x14\x16\x06\x6d\
\xfd\x63\xfe\x8e\xe5\xfe\xe7\x01\x17\xe5\x01\x5b\x02\xaf\xfd\x9b\
\x02\x14\xfd\xec\x02\x6c\xfb\xf1\xea\xec\x96\xaf\xb0\x10\x01\x32\
\x01\x07\x3e\x01\x02\x01\x34\x10\x99\xfe\xb2\x98\xfe\x89\x0d\x07\
\x03\x67\x09\xd6\xc5\x42\xc3\xd7\x00\x00\x02\x00\x82\xfe\xa9\x04\
\x3f\x04\xa1\x00\x18\x00\x25\x00\x4e\x00\xb0\x14\x2f\xb0\x00\x45\
\x58\xb0\x0c\x2f\x1b\xb1\x0c\x1c\x3e\x59\xb0\x14\x10\xb1\x00\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x05\x14\x0c\x11\x12\x39\
\xb0\x05\x2f\xb2\x03\x05\x0c\x11\x12\x39\xb1\x1a\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x0c\x10\xb1\x20\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\x30\x31\x05\x32\x36\x37\x06\x23\x22\x02\x35\
\x34\x36\x36\x33\x32\x00\x13\x15\x14\x02\x04\x23\x22\x27\x37\x16\
\x13\x32\x36\x37\x35\x34\x26\x23\x22\x06\x15\x14\x16\x01\xdf\xb1\
\xdc\x15\x77\xb7\xd2\xff\x75\xd2\x84\xeb\x01\x05\x02\x92\xfe\xf3\
\xaf\x9f\x76\x26\x7a\xe0\x69\x9f\x22\xa1\x92\x7f\x98\xa3\xbf\xf4\
\xd9\x69\x01\x14\xe2\x9c\xec\x7e\xfe\xdc\xfe\xf6\xfa\xdc\xfe\xba\
\xae\x3c\x8e\x32\x01\xfc\x5c\x52\x94\xc5\xc5\xc3\xab\x95\xc9\x00\
\x01\xff\xb6\xfe\x4b\x01\x67\x00\x98\x00\x0c\x00\x28\x00\xb0\x0d\
\x2f\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x14\x3e\x59\xb1\x09\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0d\x10\xb0\x0c\xd0\
\xb0\x0c\x2f\x30\x31\x25\x15\x06\x06\x23\x22\x27\x37\x16\x33\x32\
\x35\x35\x01\x67\x01\xaa\x97\x3b\x34\x0e\x1e\x43\x89\x98\xf5\xa8\
\xb0\x12\x9d\x0d\xc2\xe9\x00\xff\xff\x00\x3b\xfe\xa3\x04\x0a\x04\
\x8d\x01\x06\x02\x4c\x2c\x00\x00\x10\x00\xb0\x00\x45\x58\xb0\x02\
\x2f\x1b\xb1\x02\x1c\x3e\x59\x30\x31\xff\xff\x00\x73\xfe\xa0\x04\
\x13\x04\x8c\x01\x06\x02\x4e\x0e\x00\x00\x10\x00\xb0\x00\x45\x58\
\xb0\x01\x2f\x1b\xb1\x01\x1c\x3e\x59\x30\x31\xff\xff\x00\x23\xfe\
\xb6\x04\x85\x04\x8d\x01\x06\x02\x4d\xe5\x00\x00\x13\x00\xb0\x00\
\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x12\x3e\x59\xb0\x0c\xd0\x30\x31\
\x00\xff\xff\x00\x77\x00\x00\x04\x14\x04\xa0\x01\x06\x02\x4b\xf4\
\x00\x00\x10\x00\xb0\x00\x45\x58\xb0\x11\x2f\x1b\xb1\x11\x1c\x3e\
\x59\x30\x31\xff\xff\x00\x76\xfe\xb6\x04\x1e\x04\x8d\x01\x06\x02\
\x4f\x2c\x00\x00\x10\x00\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\
\x1c\x3e\x59\x30\x31\xff\xff\x00\x37\xff\xeb\x04\x48\x04\xa1\x01\
\x06\x02\x65\xbf\x00\x00\x13\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\
\xb1\x08\x1c\x3e\x59\xb0\x0f\xd0\x30\x31\x00\xff\xff\x00\x7e\xff\
\xec\x04\x16\x05\xb1\x01\x06\x00\x1a\xfa\x00\x00\x13\x00\xb0\x00\
\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1e\x3e\x59\xb0\x15\xd0\x30\x31\
\x00\xff\xff\x00\x5f\xfe\xa9\x04\x1c\x04\xa1\x01\x06\x02\x53\xdd\
\x00\x00\x13\x00\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x1c\x3e\
\x59\xb0\x20\xd0\x30\x31\x00\xff\xff\x00\x70\xff\xec\x04\x0e\x05\
\xc4\x01\x06\x00\x1c\x00\x00\x00\x19\x00\xb0\x00\x45\x58\xb0\x15\
\x2f\x1b\xb1\x15\x1e\x3e\x59\xb0\x1b\xd0\xb0\x15\x10\xb0\x22\xd0\
\x30\x31\x00\xff\xff\x00\xf4\x00\x00\x03\x1d\x04\x8d\x00\x06\x02\
\x4a\x54\x00\xff\xff\xff\xb4\xfe\x4b\x01\x65\x04\x3a\x00\x06\x00\
\x9c\x00\x00\xff\xff\xff\xb4\xfe\x4b\x01\x65\x04\x3a\x00\x06\x00\
\x9c\x00\x00\xff\xff\x00\x9b\x00\x00\x01\x55\x04\x3a\x01\x06\x00\
\x8d\x00\x00\x00\x10\x00\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\
\x1a\x3e\x59\x30\x31\xff\xff\xff\xfa\xfe\x59\x01\x5a\x04\x3a\x00\
\x26\x00\x8d\x00\x00\x00\x06\x00\xa4\xc8\x0a\xff\xff\x00\x9b\x00\
\x00\x01\x55\x04\x3a\x00\x06\x00\x8d\x00\x00\x00\x01\x00\x8a\xff\
\xec\x03\xf9\x04\x9d\x00\x21\x00\x66\x00\xb0\x00\x45\x58\xb0\x15\
\x2f\x1b\xb1\x15\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x10\x2f\x1b\xb1\
\x10\x12\x3e\x59\xb0\x00\x45\x58\xb0\x1f\x2f\x1b\xb1\x1f\x12\x3e\
\x59\xb1\x02\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x19\x1f\
\x15\x11\x12\x39\xb0\x19\x2f\xb4\x1f\x19\x2f\x19\x02\x5d\xb0\x08\
\xb0\x0a\x2b\x58\xd8\x1b\xdc\x59\xb0\x19\x10\xb0\x0a\xd0\xb0\x15\
\x10\xb1\x0d\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x25\
\x16\x33\x32\x36\x35\x34\x26\x23\x23\x35\x13\x26\x23\x22\x03\x11\
\x23\x11\x36\x36\x33\x32\x16\x17\x01\x16\x16\x15\x14\x06\x23\x22\
\x27\x01\xc3\x52\x58\x61\x72\x88\x87\x54\xed\x4e\x63\xd3\x04\xb8\
\x01\xc5\xc9\x6b\xc3\x65\xfe\xee\xa9\xb6\xd7\xb5\x77\x68\xb5\x33\
\x7b\x63\x62\x55\x89\x01\x27\x3e\xfe\xf5\xfd\x06\x02\xf5\xd2\xd6\
\x55\x62\xfe\xb6\x0f\xa3\x86\xac\xcc\x31\x00\x00\x02\x00\x78\xff\
\xeb\x04\x89\x04\xa1\x00\x0b\x00\x19\x00\x3b\x00\xb0\x00\x45\x58\
\xb0\x08\x2f\x1b\xb1\x08\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x03\x2f\
\x1b\xb1\x03\x12\x3e\x59\xb0\x08\x10\xb1\x0f\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x03\x10\xb1\x16\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\x30\x31\x01\x10\x00\x20\x00\x03\x35\x10\x00\x20\
\x00\x13\x27\x34\x26\x23\x22\x06\x07\x15\x14\x16\x33\x32\x36\x37\
\x04\x89\xfe\xe8\xfe\x22\xfe\xe6\x01\x01\x19\x01\xde\x01\x19\x01\
\xba\xb2\x9d\x9b\xb2\x02\xb6\x9b\x9a\xb1\x02\x02\x3c\xfe\xea\xfe\
\xc5\x01\x3c\x01\x14\x14\x01\x14\x01\x3e\xfe\xc4\xfe\xeb\x0d\xca\
\xe2\xe0\xc5\x34\xc9\xe5\xdd\xca\x00\x00\x01\x00\x3b\x00\x00\x03\
\xd2\x05\xb0\x00\x06\x00\x33\x00\xb0\x00\x45\x58\xb0\x05\x2f\x1b\
\xb1\x05\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x12\
\x3e\x59\xb0\x05\x10\xb1\x03\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb2\x00\x03\x05\x11\x12\x39\x30\x31\x01\x01\x23\x01\x21\x35\
\x21\x03\xd2\xfd\xbe\xba\x02\x40\xfd\x25\x03\x97\x05\x48\xfa\xb8\
\x05\x18\x98\x00\x02\x00\x8c\xff\xec\x04\x34\x06\x00\x00\x10\x00\
\x1b\x00\x66\xb2\x14\x1c\x1d\x11\x12\x39\xb0\x14\x10\xb0\x0d\xd0\
\x00\xb0\x09\x2f\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x1a\x3e\
\x59\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\x59\xb0\x00\
\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x12\x3e\x59\xb2\x06\x0d\x04\x11\
\x12\x39\xb2\x0b\x0d\x04\x11\x12\x39\xb0\x0d\x10\xb1\x14\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\x10\xb1\x19\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x14\x06\x06\x23\x22\x27\
\x07\x23\x11\x33\x11\x36\x33\x32\x12\x11\x27\x34\x26\x23\x22\x07\
\x11\x16\x33\x32\x36\x04\x34\x6f\xc9\x80\xd1\x70\x0f\xa0\xb9\x70\
\xc5\xc9\xf1\xb9\xa3\x8c\xb7\x50\x55\xb4\x8a\xa3\x02\x12\x9f\xfc\
\x8b\x95\x81\x06\x00\xfd\xc3\x8b\xfe\xd3\xfe\xff\x07\xb4\xd6\xaa\
\xfe\x2c\xab\xd8\x00\x00\x01\x00\x5c\xff\xec\x03\xef\x04\x4e\x00\
\x1d\x00\x4b\xb2\x00\x1e\x1f\x11\x12\x39\x00\xb0\x00\x45\x58\xb0\
\x10\x2f\x1b\xb1\x10\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x08\x2f\x1b\
\xb1\x08\x12\x3e\x59\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x08\x10\xb0\x03\xd0\xb0\x10\x10\xb0\x14\xd0\xb0\x10\x10\
\xb1\x17\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x25\x32\
\x36\x37\x33\x0e\x02\x23\x22\x00\x35\x35\x34\x36\x36\x33\x32\x16\
\x17\x23\x26\x26\x23\x22\x06\x15\x15\x14\x16\x02\x40\x63\x94\x08\
\xb0\x05\x78\xc4\x6e\xdf\xfe\xfb\x76\xdb\x93\xb6\xf1\x08\xb0\x08\
\x8f\x68\x8f\x9b\x9d\x83\x78\x5a\x5e\xa8\x63\x01\x2a\xfc\x20\x9d\
\xf9\x86\xda\xae\x69\x87\xce\xbf\x21\xbc\xc9\x00\x02\x00\x5b\xff\
\xec\x04\x00\x06\x00\x00\x11\x00\x1c\x00\x66\xb2\x1a\x1d\x1e\x11\
\x12\x39\xb0\x1a\x10\xb0\x04\xd0\x00\xb0\x07\x2f\xb0\x00\x45\x58\
\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x0d\x2f\
\x1b\xb1\x0d\x12\x3e\x59\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\x09\
\x12\x3e\x59\xb2\x06\x04\x0d\x11\x12\x39\xb2\x0b\x04\x0d\x11\x12\
\x39\xb0\x0d\x10\xb1\x15\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb0\x04\x10\xb1\x1a\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\
\x31\x13\x34\x36\x36\x33\x32\x17\x11\x33\x11\x23\x27\x06\x23\x22\
\x26\x26\x27\x37\x14\x16\x33\x32\x37\x11\x26\x23\x22\x06\x5b\x71\
\xce\x80\xbe\x6f\xb9\xa1\x0e\x6f\xca\x7c\xcb\x75\x01\xb9\xa8\x8a\
\xaf\x52\x53\xac\x8d\xa7\x02\x26\x9f\xfc\x8d\x82\x02\x34\xfa\x00\
\x78\x8c\x8c\xfb\x98\x06\xb1\xd8\x9f\x01\xf1\x99\xd6\x00\x02\x00\
\x5b\xfe\x56\x04\x00\x04\x4e\x00\x1b\x00\x26\x00\x7f\xb2\x1f\x27\
\x28\x11\x12\x39\xb0\x1f\x10\xb0\x0b\xd0\x00\xb0\x00\x45\x58\xb0\
\x03\x2f\x1b\xb1\x03\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x06\x2f\x1b\
\xb1\x06\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x14\
\x3e\x59\xb0\x00\x45\x58\xb0\x18\x2f\x1b\xb1\x18\x12\x3e\x59\xb2\
\x05\x03\x18\x11\x12\x39\xb0\x0b\x10\xb1\x12\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb2\x16\x03\x18\x11\x12\x39\xb0\x18\x10\xb1\
\x1f\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\xb1\x24\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x13\x34\x12\x33\
\x32\x17\x37\x33\x11\x06\x02\x23\x22\x26\x27\x37\x16\x16\x33\x32\
\x36\x35\x35\x06\x23\x22\x02\x35\x17\x14\x16\x33\x32\x37\x11\x26\
\x23\x22\x06\x5b\xf8\xc6\xcc\x6f\x0f\x9d\x02\xf4\xe0\x56\xc8\x48\
\x37\x3f\x9f\x4f\x95\x8a\x6f\xc1\xc2\xfa\xb9\xa6\x8b\xaf\x53\x53\
\xad\x8e\xa5\x02\x26\xf6\x01\x32\x94\x80\xfc\x0e\xef\xfe\xfd\x37\
\x32\x8a\x2a\x32\xb0\xa8\x28\x81\x01\x38\xf4\x07\xb0\xd9\xa1\x01\
\xeb\x9d\xd7\x00\x02\x00\x5a\xff\xec\x04\x44\x04\x4e\x00\x10\x00\
\x1c\x00\x38\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\
\x59\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x12\x3e\x59\xb1\x14\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\x10\xb1\x1a\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x13\x34\x36\x36\x33\
\x32\x00\x15\x15\x14\x06\x06\x23\x22\x26\x26\x27\x37\x14\x16\x33\
\x32\x36\x35\x34\x26\x23\x22\x06\x5a\x80\xe3\x90\xdd\x01\x1a\x7e\
\xe5\x92\x8f\xe3\x81\x02\xb9\xaf\x8d\x8e\xae\xb1\x8d\x8b\xaf\x02\
\x27\x9c\xff\x8c\xfe\xcc\xfb\x0e\x9d\xfc\x8c\x88\xf9\x9a\x0a\xb0\
\xde\xe0\xc4\xaf\xe0\xde\x00\x00\x02\x00\x8c\xfe\x60\x04\x32\x04\
\x4e\x00\x10\x00\x1b\x00\x70\xb2\x19\x1c\x1d\x11\x12\x39\xb0\x19\
\x10\xb0\x0d\xd0\x00\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x1a\
\x3e\x59\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1a\x3e\x59\xb0\
\x00\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x14\x3e\x59\xb0\x00\x45\x58\
\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\x59\xb2\x06\x0d\x04\x11\x12\x39\
\xb2\x0b\x0d\x04\x11\x12\x39\xb0\x0d\x10\xb1\x14\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x04\x10\xb1\x19\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\x30\x31\x01\x14\x06\x06\x23\x22\x27\x11\x23\
\x11\x33\x17\x36\x33\x32\x12\x17\x07\x34\x26\x23\x22\x07\x11\x16\
\x33\x32\x36\x04\x32\x6e\xc8\x81\xc5\x71\xb9\x9f\x0f\x74\xca\xc1\
\xee\x0a\xb8\xa9\x8f\xa8\x54\x53\xab\x8c\xaa\x02\x11\x9e\xfc\x8b\
\x7d\xfd\xf7\x05\xda\x7d\x91\xfe\xe9\xea\x27\xb0\xdb\x95\xfd\xfb\
\x94\xdf\x00\x00\x02\x00\x5b\xfe\x60\x03\xff\x04\x4e\x00\x0f\x00\
\x1a\x00\x6d\xb2\x18\x1b\x1c\x11\x12\x39\xb0\x18\x10\xb0\x03\xd0\
\x00\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1a\x3e\x59\xb0\x00\
\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1a\x3e\x59\xb0\x00\x45\x58\xb0\
\x08\x2f\x1b\xb1\x08\x14\x3e\x59\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\
\xb1\x0c\x12\x3e\x59\xb2\x05\x03\x0c\x11\x12\x39\xb2\x0a\x03\x0c\
\x11\x12\x39\xb1\x13\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x03\x10\xb1\x18\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\
\x13\x34\x12\x33\x32\x17\x37\x33\x11\x23\x11\x06\x23\x22\x02\x35\
\x17\x14\x16\x33\x32\x37\x11\x26\x23\x22\x06\x5b\xf7\xcc\xc4\x6f\
\x0e\xa0\xb9\x70\xba\xc7\xfa\xb9\xaa\x8c\xa6\x56\x58\xa2\x8e\xaa\
\x02\x25\xf5\x01\x34\x86\x72\xfa\x26\x02\x04\x78\x01\x35\xf6\x07\
\xae\xdf\x93\x02\x11\x8f\xdf\x00\x02\x00\x5d\xff\xec\x03\xf3\x04\
\x4e\x00\x14\x00\x1c\x00\x65\xb2\x08\x1d\x1e\x11\x12\x39\xb0\x08\
\x10\xb0\x15\xd0\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1a\
\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\xb2\
\x19\x08\x00\x11\x12\x39\xb0\x19\x2f\xb4\xbf\x19\xcf\x19\x02\x5d\
\xb1\x0c\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x00\x10\xb1\
\x10\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x08\x10\xb1\x15\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x05\x22\x00\x27\
\x27\x34\x36\x36\x33\x32\x12\x15\x15\x21\x16\x16\x33\x32\x37\x17\
\x06\x01\x22\x06\x07\x21\x35\x34\x26\x02\x71\xe5\xfe\xdd\x0b\x01\
\x7c\xdd\x80\xd5\xe8\xfd\x24\x08\xc2\x99\xa0\x78\x39\x83\xfe\xee\
\x73\x98\x11\x02\x20\x89\x14\x01\x17\xe3\x4e\x9b\xf5\x8a\xfe\xfe\
\xf0\x74\x9d\xc8\x5a\x7f\x72\x03\xca\xa0\x96\x19\x83\x9a\x00\x00\
\x02\x00\x60\xfe\x56\x03\xf2\x04\x4e\x00\x1a\x00\x25\x00\x7f\xb2\
\x23\x26\x27\x11\x12\x39\xb0\x23\x10\xb0\x0b\xd0\x00\xb0\x00\x45\
\x58\xb0\x03\x2f\x1b\xb1\x03\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x06\
\x2f\x1b\xb1\x06\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\
\x0b\x14\x3e\x59\xb0\x00\x45\x58\xb0\x17\x2f\x1b\xb1\x17\x12\x3e\
\x59\xb2\x05\x03\x17\x11\x12\x39\xb0\x0b\x10\xb1\x11\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x15\x03\x17\x11\x12\x39\xb0\x17\
\x10\xb1\x1e\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x03\x10\
\xb1\x23\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x13\x34\
\x12\x33\x32\x17\x37\x33\x11\x14\x06\x23\x22\x26\x27\x37\x16\x33\
\x32\x36\x35\x35\x06\x23\x22\x02\x35\x17\x14\x16\x33\x32\x37\x11\
\x26\x23\x22\x06\x60\xe8\xc3\xca\x70\x10\x9d\xf5\xe1\x52\xaf\x41\
\x37\x7a\x8f\x95\x89\x6f\xc0\xbe\xeb\xba\x95\x88\xaf\x52\x55\xaa\
\x89\x96\x02\x25\xfa\x01\x2f\x93\x7f\xfc\x05\xea\xff\x2d\x29\x8a\
\x49\xa7\x9e\x3a\x80\x01\x32\xfa\x08\xb5\xd3\xa0\x01\xee\x9b\xd0\
\x00\xff\xff\x00\x57\x00\x00\x02\x86\x05\xb7\x00\x06\x00\x15\xad\
\x00\x00\x03\x00\x67\xff\xf0\x04\x91\x04\x9d\x00\x1d\x00\x26\x00\
\x32\x00\x9a\xb2\x2c\x33\x34\x11\x12\x39\xb0\x2c\x10\xb0\x0e\xd0\
\xb0\x2c\x10\xb0\x1f\xd0\x00\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\
\x0d\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\
\x59\xb0\x00\x45\x58\xb0\x1a\x2f\x1b\xb1\x1a\x12\x3e\x59\xb2\x2a\
\x0d\x1a\x11\x12\x39\xb2\x21\x0d\x1a\x11\x12\x39\xb2\x07\x2a\x21\
\x11\x12\x39\xb2\x13\x21\x2a\x11\x12\x39\xb0\x00\x10\xb1\x1e\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x14\x1e\x0d\x11\x12\x39\
\xb2\x16\x0d\x00\x11\x12\x39\xb2\x1c\x00\x0d\x11\x12\x39\xb2\x19\
\x14\x1c\x11\x12\x39\xb2\x20\x1e\x14\x11\x12\x39\xb0\x0d\x10\xb1\
\x30\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x05\x22\x26\
\x35\x34\x36\x37\x37\x27\x26\x35\x34\x36\x33\x32\x16\x15\x14\x07\
\x07\x01\x36\x35\x33\x14\x07\x17\x23\x27\x06\x27\x32\x37\x01\x07\
\x06\x15\x14\x16\x03\x14\x17\x17\x37\x36\x35\x34\x26\x23\x22\x06\
\x01\xe8\xab\xd6\x4e\x68\x4b\x4b\x5d\xad\x90\x86\xb1\x9b\x49\x01\
\x0c\x45\xa8\x7f\xc7\xd2\x5e\x97\xd1\x91\x6a\xfe\xdb\x64\x4c\x6b\
\x15\x3f\x36\x42\x53\x48\x42\x38\x48\x10\xa5\x81\x56\x86\x4b\x36\
\x4f\x68\x6c\x73\x94\x96\x70\x90\x6f\x34\xfe\xe3\x74\x9d\xe0\xa6\
\xd2\x61\x71\x99\x4b\x01\x33\x49\x3b\x54\x49\x5d\x03\x00\x3a\x46\
\x39\x30\x3c\x4d\x34\x45\x46\x00\x01\x00\x00\x00\x00\x03\x8b\x04\
\x8d\x00\x0d\x00\x61\xb2\x00\x0e\x0f\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x04\
\x2f\x1b\xb1\x04\x12\x3e\x59\xb2\x0d\x04\x0a\x11\x12\x39\xb0\x0d\
\x2f\xb1\x00\x02\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x01\xd0\
\xb0\x04\x10\xb1\x02\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x01\x10\xb0\x06\xd0\xb0\x07\xd0\xb0\x0d\x10\xb0\x0c\xd0\xb0\x09\
\xd0\xb0\x08\xd0\x30\x31\x01\x05\x11\x21\x15\x21\x11\x07\x35\x37\
\x11\x33\x11\x25\x02\x4d\xfe\xf6\x02\x48\xfc\xff\x8a\x8a\xb9\x01\
\x0a\x02\x91\x55\xfe\x5b\x97\x02\x02\x2c\x7d\x2c\x02\x0e\xfe\x2c\
\x55\x00\x02\x00\x09\x00\x00\x05\xf1\x04\x8d\x00\x0f\x00\x12\x00\
\x88\xb2\x05\x13\x14\x11\x12\x39\xb0\x05\x10\xb0\x11\xd0\x00\xb0\
\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1c\x3e\x59\xb0\x00\x45\x58\
\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\x59\xb0\x00\x45\x58\xb0\x08\x2f\
\x1b\xb1\x08\x12\x3e\x59\xb2\x0f\x0a\x04\x11\x12\x39\xb0\x0f\x2f\
\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\x10\xb1\
\x02\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x11\x0a\x04\x11\
\x12\x39\xb0\x11\x2f\xb1\x06\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x0a\x10\xb1\x0c\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb2\x12\x0a\x04\x11\x12\x39\x30\x31\x01\x21\x13\x21\x15\x21\x03\
\x21\x03\x23\x01\x21\x15\x21\x13\x21\x05\x21\x03\x05\x88\xfe\x35\
\x0e\x02\x26\xfd\x26\x0b\xfe\x66\xa3\xc6\x02\x96\x03\x29\xfd\xe4\
\x0c\x01\xd0\xfc\x3b\x01\x44\x13\x02\x15\xfe\x80\x95\x01\x2d\xfe\
\xd3\x04\x8d\x96\xfe\xb4\xe7\x02\x32\x00\x02\x00\x8a\x00\x00\x03\
\xb7\x04\x8d\x00\x0c\x00\x15\x00\x59\xb2\x15\x16\x17\x11\x12\x39\
\xb0\x15\x10\xb0\x09\xd0\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\
\x00\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x12\x3e\
\x59\xb2\x02\x00\x0b\x11\x12\x39\xb0\x02\x2f\xb2\x0f\x00\x0b\x11\
\x12\x39\xb0\x0f\x2f\xb1\x09\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb0\x02\x10\xb1\x0d\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\x30\x31\x13\x33\x15\x33\x16\x16\x15\x14\x06\x23\x23\x15\x23\x13\
\x11\x33\x32\x36\x35\x34\x26\x27\x8a\xb9\xc5\xc4\xeb\xea\xd6\xb4\
\xb9\xb9\xb6\x80\x84\x88\x77\x04\x8d\xcb\x04\xc5\xa6\xa9\xbe\xec\
\x03\x2a\xfe\x5a\x6c\x62\x60\x77\x01\x00\x03\x00\x60\xff\xc7\x04\
\x5a\x04\xb6\x00\x15\x00\x1e\x00\x27\x00\x6a\xb2\x06\x28\x29\x11\
\x12\x39\xb0\x06\x10\xb0\x1b\xd0\xb0\x06\x10\xb0\x24\xd0\x00\xb0\
\x00\x45\x58\xb0\x11\x2f\x1b\xb1\x11\x1c\x3e\x59\xb0\x00\x45\x58\
\xb0\x06\x2f\x1b\xb1\x06\x12\x3e\x59\xb2\x18\x11\x06\x11\x12\x39\
\xb2\x19\x11\x06\x11\x12\x39\xb0\x11\x10\xb1\x1b\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb2\x21\x11\x06\x11\x12\x39\xb2\x22\x06\
\x11\x11\x12\x39\xb0\x06\x10\xb1\x24\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\x30\x31\x01\x16\x11\x15\x10\x00\x23\x22\x27\x07\x23\
\x37\x26\x11\x35\x10\x00\x33\x32\x17\x37\x33\x01\x14\x17\x01\x26\
\x23\x22\x06\x15\x25\x34\x27\x01\x16\x33\x32\x36\x35\x03\xd6\x84\
\xfe\xec\xe8\x9a\x74\x4b\x95\x7f\x8f\x01\x17\xe5\xa1\x7b\x45\x95\
\xfc\xc5\x3d\x01\xc9\x4f\x72\x96\xaf\x02\x8c\x34\xfe\x3b\x4a\x6a\
\x9c\xa9\x03\xfc\x99\xfe\xff\x3e\xfe\xfb\xfe\xd1\x47\x70\xbe\x9a\
\x01\x09\x3f\x01\x02\x01\x34\x4e\x67\xfd\x6e\x9f\x69\x02\xaa\x3b\
\xd6\xc5\x03\x97\x62\xfd\x5c\x34\xd3\xc7\x00\x00\x02\x00\x30\x00\
\x00\x04\xb3\x04\x8d\x00\x13\x00\x17\x00\x8d\xb2\x03\x18\x19\x11\
\x12\x39\xb0\x03\x10\xb0\x14\xd0\x00\xb0\x00\x45\x58\xb0\x0c\x2f\
\x1b\xb1\x0c\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x10\x2f\x1b\xb1\x10\
\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\
\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x12\x3e\x59\xb2\x13\x0c\
\x02\x11\x12\x39\xb0\x13\x2f\xb2\x0f\x13\x01\x5d\xb1\x00\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x15\x0c\x02\x11\x12\x39\xb0\
\x15\x2f\xb1\x04\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x00\
\x10\xb0\x08\xd0\xb0\x13\x10\xb0\x0a\xd0\xb0\x13\x10\xb0\x0e\xd0\
\xb0\x00\x10\xb0\x16\xd0\x30\x31\x01\x23\x11\x23\x11\x21\x11\x23\
\x11\x23\x35\x33\x35\x33\x15\x21\x35\x33\x15\x33\x01\x21\x35\x21\
\x04\xb3\x5b\xb9\xfd\xa4\xb9\x5a\x5a\xb9\x02\x5c\xb9\x5b\xfc\x90\
\x02\x5c\xfd\xa4\x03\x4f\xfc\xb1\x01\xf2\xfe\x0e\x03\x4f\x97\xa7\
\xa7\xa7\xa7\xfe\xa4\xc5\x00\x00\x01\x00\x8a\xfe\x4b\x04\x58\x04\
\x8d\x00\x13\x00\x5b\xb2\x02\x14\x15\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x0c\x2f\x1b\xb1\x0c\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x0f\
\x2f\x1b\xb1\x0f\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\
\x00\x14\x3e\x59\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x12\x3e\
\x59\xb0\x00\x10\xb1\x05\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb2\x09\x0c\x0a\x11\x12\x39\xb2\x0e\x0a\x0c\x11\x12\x39\x30\x31\
\x01\x22\x27\x37\x16\x33\x32\x35\x35\x01\x11\x23\x11\x33\x01\x11\
\x33\x11\x14\x06\x03\x17\x3c\x34\x0d\x23\x40\x88\xfd\xa4\xb9\xb9\
\x02\x5d\xb8\xaa\xfe\x4b\x12\x9d\x0d\xc3\x51\x03\x6b\xfc\x94\x04\
\x8d\xfc\x93\x03\x6d\xfb\x1a\xa9\xb3\xff\xff\x00\x25\x02\x1f\x02\
\x0d\x02\xb6\x02\x06\x00\x11\x00\x00\x00\x02\x00\x07\x00\x00\x04\
\xe4\x05\xb0\x00\x0f\x00\x1d\x00\x69\x00\xb0\x00\x45\x58\xb0\x05\
\x2f\x1b\xb1\x05\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\
\x00\x12\x3e\x59\xb2\x04\x00\x05\x11\x12\x39\xb0\x04\x2f\xb2\xcf\
\x04\x01\x5d\xb2\x2f\x04\x01\x5d\xb2\x9f\x04\x01\x71\xb1\x01\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x11\xd0\xb0\x00\x10\xb1\
\x12\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x05\x10\xb1\x1b\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\x10\xb0\x1c\xd0\
\x30\x31\x33\x11\x23\x35\x33\x11\x21\x32\x04\x12\x17\x15\x14\x02\
\x04\x07\x13\x23\x11\x33\x32\x12\x37\x35\x34\x02\x27\x23\x11\x33\
\xc7\xc0\xc0\x01\x9b\xbe\x01\x24\x9f\x01\x9f\xfe\xd9\xc4\x29\xfc\
\xc9\xde\xf7\x01\xe9\xd6\xe0\xfc\x02\x9a\x97\x02\x7f\xa8\xfe\xca\
\xc9\x5d\xce\xfe\xca\xa6\x02\x02\x9a\xfe\x03\x01\x12\xf9\x5d\xf8\
\x01\x13\x02\xfe\x1f\x00\x02\x00\x07\x00\x00\x04\xe4\x05\xb0\x00\
\x0f\x00\x1d\x00\x69\x00\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\
\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x12\x3e\x59\
\xb2\x04\x00\x05\x11\x12\x39\xb0\x04\x2f\xb2\xcf\x04\x01\x5d\xb2\
\x2f\x04\x01\x5d\xb2\x9f\x04\x01\x71\xb1\x01\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x11\xd0\xb0\x00\x10\xb1\x12\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x05\x10\xb1\x1b\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x04\x10\xb0\x1c\xd0\x30\x31\x33\x11\
\x23\x35\x33\x11\x21\x32\x04\x12\x17\x15\x14\x02\x04\x07\x13\x23\
\x11\x33\x32\x12\x37\x35\x34\x02\x27\x23\x11\x33\xc7\xc0\xc0\x01\
\x9b\xbe\x01\x24\x9f\x01\x9f\xfe\xd9\xc4\x29\xfc\xc9\xde\xf7\x01\
\xe9\xd6\xe0\xfc\x02\x9a\x97\x02\x7f\xa8\xfe\xca\xc9\x5d\xce\xfe\
\xca\xa6\x02\x02\x9a\xfe\x03\x01\x12\xf9\x5d\xf8\x01\x13\x02\xfe\
\x1f\x00\x01\xff\xe2\x00\x00\x03\xfd\x06\x00\x00\x19\x00\x6c\x00\
\xb0\x17\x2f\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\x59\
\xb0\x00\x45\x58\xb0\x10\x2f\x1b\xb1\x10\x12\x3e\x59\xb0\x00\x45\
\x58\xb0\x08\x2f\x1b\xb1\x08\x12\x3e\x59\xb2\x2f\x17\x01\x5d\xb2\
\x0f\x17\x01\x5d\xb2\x15\x10\x17\x11\x12\x39\xb0\x15\x2f\xb1\x12\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x01\xd0\xb2\x02\x10\
\x04\x11\x12\x39\xb0\x04\x10\xb1\x0c\x01\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x15\x10\xb0\x18\xd0\x30\x31\x01\x23\x11\x36\x33\
\x20\x13\x11\x23\x11\x26\x26\x23\x22\x06\x07\x11\x23\x11\x23\x35\
\x33\x35\x33\x15\x33\x02\x5e\xfb\x7b\xc5\x01\x57\x03\xb9\x01\x69\
\x6f\x5a\x88\x26\xb9\xc8\xc8\xb9\xfb\x04\xd2\xfe\xe5\x97\xfe\x7d\
\xfd\x35\x02\xcc\x75\x70\x60\x4e\xfc\xfd\x04\xd2\x97\x97\x97\x00\
\x01\x00\x31\x00\x00\x04\x97\x05\xb0\x00\x0f\x00\x4e\x00\xb0\x00\
\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1e\x3e\x59\xb0\x00\x45\x58\xb0\
\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb2\x0f\x0a\x02\x11\x12\x39\xb0\
\x0f\x2f\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\
\xd0\xb0\x0f\x10\xb0\x06\xd0\xb0\x0a\x10\xb1\x08\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x0c\xd0\x30\x31\x01\x23\x11\x23\x11\
\x23\x35\x33\x11\x21\x35\x21\x15\x21\x11\x33\x03\xaa\xe7\xbf\xd6\
\xd6\xfe\x2d\x04\x66\xfe\x2c\xe7\x03\x37\xfc\xc9\x03\x37\x97\x01\
\x44\x9e\x9e\xfe\xbc\x00\x01\xff\xf4\xff\xec\x02\x70\x05\x40\x00\
\x1d\x00\x76\x00\xb0\x00\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x1a\x3e\
\x59\xb0\x00\x45\x58\xb0\x11\x2f\x1b\xb1\x11\x12\x3e\x59\xb0\x01\
\x10\xb0\x00\xd0\xb0\x00\x2f\xb0\x01\x10\xb1\x04\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x01\x10\xb0\x05\xd0\xb0\x05\x2f\xb2\
\x00\x05\x01\x5d\xb1\x08\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb0\x11\x10\xb1\x0c\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x08\x10\xb0\x15\xd0\xb0\x05\x10\xb0\x18\xd0\xb0\x04\x10\xb0\x19\
\xd0\xb0\x01\x10\xb0\x1c\xd0\x30\x31\x01\x11\x33\x15\x23\x15\x33\
\x15\x23\x11\x14\x16\x33\x32\x37\x15\x06\x23\x22\x26\x35\x11\x23\
\x35\x33\x35\x23\x35\x33\x11\x01\x87\xca\xca\xe9\xe9\x36\x41\x20\
\x38\x49\x45\x7c\x7e\xda\xda\xc5\xc5\x05\x40\xfe\xfa\x8f\xba\x97\
\xfe\xb2\x41\x41\x0c\x96\x14\x96\x8a\x01\x4e\x97\xba\x8f\x01\x06\
\x00\xff\xff\x00\x1c\x00\x00\x05\x1d\x07\x36\x02\x26\x00\x25\x00\
\x00\x01\x07\x00\x44\x01\x30\x01\x36\x00\x14\x00\xb0\x00\x45\x58\
\xb0\x04\x2f\x1b\xb1\x04\x1e\x3e\x59\xb1\x0c\x08\xf4\x30\x31\xff\
\xff\x00\x1c\x00\x00\x05\x1d\x07\x36\x02\x26\x00\x25\x00\x00\x01\
\x07\x00\x75\x01\xbf\x01\x36\x00\x14\x00\xb0\x00\x45\x58\xb0\x05\
\x2f\x1b\xb1\x05\x1e\x3e\x59\xb1\x0d\x08\xf4\x30\x31\xff\xff\x00\
\x1c\x00\x00\x05\x1d\x07\x36\x02\x26\x00\x25\x00\x00\x01\x07\x00\
\x9e\x00\xc9\x01\x36\x00\x14\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\
\xb1\x04\x1e\x3e\x59\xb1\x0f\x06\xf4\x30\x31\xff\xff\x00\x1c\x00\
\x00\x05\x1d\x07\x22\x02\x26\x00\x25\x00\x00\x01\x07\x00\xa5\x00\
\xc5\x01\x3a\x00\x14\x00\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\
\x1e\x3e\x59\xb1\x0e\x04\xf4\x30\x31\xff\xff\x00\x1c\x00\x00\x05\
\x1d\x06\xfb\x02\x26\x00\x25\x00\x00\x01\x07\x00\x6a\x00\xf9\x01\
\x36\x00\x17\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1e\x3e\
\x59\xb1\x11\x04\xf4\xb0\x1b\xd0\x30\x31\x00\xff\xff\x00\x1c\x00\
\x00\x05\x1d\x07\x91\x02\x26\x00\x25\x00\x00\x01\x07\x00\xa3\x01\
\x50\x01\x41\x00\x17\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\
\x1e\x3e\x59\xb1\x0e\x06\xf4\xb0\x18\xd0\x30\x31\x00\xff\xff\x00\
\x1c\x00\x00\x05\x1d\x07\x94\x02\x26\x00\x25\x00\x00\x00\x07\x02\
\x27\x01\x5a\x01\x22\xff\xff\x00\x77\xfe\x44\x04\xd8\x05\xc4\x02\
\x26\x00\x27\x00\x00\x00\x07\x00\x79\x01\xd2\xff\xf7\xff\xff\x00\
\xa9\x00\x00\x04\x46\x07\x42\x02\x26\x00\x29\x00\x00\x01\x07\x00\
\x44\x00\xfb\x01\x42\x00\x14\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\
\xb1\x06\x1e\x3e\x59\xb1\x0d\x08\xf4\x30\x31\xff\xff\x00\xa9\x00\
\x00\x04\x46\x07\x42\x02\x26\x00\x29\x00\x00\x01\x07\x00\x75\x01\
\x8a\x01\x42\x00\x14\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\
\x1e\x3e\x59\xb1\x0e\x08\xf4\x30\x31\xff\xff\x00\xa9\x00\x00\x04\
\x46\x07\x42\x02\x26\x00\x29\x00\x00\x01\x07\x00\x9e\x00\x94\x01\
\x42\x00\x14\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1e\x3e\
\x59\xb1\x10\x06\xf4\x30\x31\xff\xff\x00\xa9\x00\x00\x04\x46\x07\
\x07\x02\x26\x00\x29\x00\x00\x01\x07\x00\x6a\x00\xc4\x01\x42\x00\
\x17\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1e\x3e\x59\xb1\
\x12\x04\xf4\xb0\x1b\xd0\x30\x31\x00\xff\xff\xff\xe0\x00\x00\x01\
\x81\x07\x42\x02\x26\x00\x2d\x00\x00\x01\x07\x00\x44\xff\xa7\x01\
\x42\x00\x14\x00\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1e\x3e\
\x59\xb1\x05\x08\xf4\x30\x31\xff\xff\x00\xb0\x00\x00\x02\x51\x07\
\x42\x02\x26\x00\x2d\x00\x00\x01\x07\x00\x75\x00\x35\x01\x42\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1e\x3e\x59\xb1\
\x06\x08\xf4\x30\x31\xff\xff\xff\xe9\x00\x00\x02\x46\x07\x42\x02\
\x26\x00\x2d\x00\x00\x01\x07\x00\x9e\xff\x40\x01\x42\x00\x14\x00\
\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1e\x3e\x59\xb1\x08\x06\
\xf4\x30\x31\xff\xff\xff\xd5\x00\x00\x02\x5e\x07\x07\x02\x26\x00\
\x2d\x00\x00\x01\x07\x00\x6a\xff\x70\x01\x42\x00\x17\x00\xb0\x00\
\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1e\x3e\x59\xb1\x0a\x04\xf4\xb0\
\x14\xd0\x30\x31\x00\xff\xff\x00\xa9\x00\x00\x05\x08\x07\x22\x02\
\x26\x00\x32\x00\x00\x01\x07\x00\xa5\x00\xfb\x01\x3a\x00\x14\x00\
\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1e\x3e\x59\xb1\x0d\x04\
\xf4\x30\x31\xff\xff\x00\x76\xff\xec\x05\x09\x07\x38\x02\x26\x00\
\x33\x00\x00\x01\x07\x00\x44\x01\x52\x01\x38\x00\x14\x00\xb0\x00\
\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x1e\x3e\x59\xb1\x21\x08\xf4\x30\
\x31\xff\xff\x00\x76\xff\xec\x05\x09\x07\x38\x02\x26\x00\x33\x00\
\x00\x01\x07\x00\x75\x01\xe1\x01\x38\x00\x14\x00\xb0\x00\x45\x58\
\xb0\x0d\x2f\x1b\xb1\x0d\x1e\x3e\x59\xb1\x22\x08\xf4\x30\x31\xff\
\xff\x00\x76\xff\xec\x05\x09\x07\x38\x02\x26\x00\x33\x00\x00\x01\
\x07\x00\x9e\x00\xeb\x01\x38\x00\x14\x00\xb0\x00\x45\x58\xb0\x0d\
\x2f\x1b\xb1\x0d\x1e\x3e\x59\xb1\x22\x06\xf4\x30\x31\xff\xff\x00\
\x76\xff\xec\x05\x09\x07\x24\x02\x26\x00\x33\x00\x00\x01\x07\x00\
\xa5\x00\xe7\x01\x3c\x00\x14\x00\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\
\xb1\x0d\x1e\x3e\x59\xb1\x23\x04\xf4\x30\x31\xff\xff\x00\x76\xff\
\xec\x05\x09\x06\xfd\x02\x26\x00\x33\x00\x00\x01\x07\x00\x6a\x01\
\x1b\x01\x38\x00\x17\x00\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\
\x1e\x3e\x59\xb1\x27\x04\xf4\xb0\x30\xd0\x30\x31\x00\xff\xff\x00\
\x8c\xff\xec\x04\xaa\x07\x36\x02\x26\x00\x39\x00\x00\x01\x07\x00\
\x44\x01\x2b\x01\x36\x00\x14\x00\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\
\xb1\x0a\x1e\x3e\x59\xb1\x14\x08\xf4\x30\x31\xff\xff\x00\x8c\xff\
\xec\x04\xaa\x07\x36\x02\x26\x00\x39\x00\x00\x01\x07\x00\x75\x01\
\xba\x01\x36\x00\x14\x00\xb0\x00\x45\x58\xb0\x12\x2f\x1b\xb1\x12\
\x1e\x3e\x59\xb1\x15\x08\xf4\x30\x31\xff\xff\x00\x8c\xff\xec\x04\
\xaa\x07\x36\x02\x26\x00\x39\x00\x00\x01\x07\x00\x9e\x00\xc4\x01\
\x36\x00\x14\x00\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1e\x3e\
\x59\xb1\x17\x06\xf4\x30\x31\xff\xff\x00\x8c\xff\xec\x04\xaa\x06\
\xfb\x02\x26\x00\x39\x00\x00\x01\x07\x00\x6a\x00\xf4\x01\x36\x00\
\x17\x00\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1e\x3e\x59\xb1\
\x19\x04\xf4\xb0\x23\xd0\x30\x31\x00\xff\xff\x00\x0f\x00\x00\x04\
\xbb\x07\x36\x02\x26\x00\x3d\x00\x00\x01\x07\x00\x75\x01\x88\x01\
\x36\x00\x14\x00\xb0\x00\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x1e\x3e\
\x59\xb1\x0b\x08\xf4\x30\x31\xff\xff\x00\x6d\xff\xec\x03\xea\x06\
\x00\x02\x26\x00\x45\x00\x00\x01\x07\x00\x44\x00\xd5\x00\x00\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x17\x2f\x1b\xb1\x17\x1a\x3e\x59\xb1\
\x2a\x09\xf4\x30\x31\xff\xff\x00\x6d\xff\xec\x03\xea\x06\x00\x02\
\x26\x00\x45\x00\x00\x01\x07\x00\x75\x01\x64\x00\x00\x00\x14\x00\
\xb0\x00\x45\x58\xb0\x17\x2f\x1b\xb1\x17\x1a\x3e\x59\xb1\x2b\x09\
\xf4\x30\x31\xff\xff\x00\x6d\xff\xec\x03\xea\x06\x00\x02\x26\x00\
\x45\x00\x00\x01\x06\x00\x9e\x6e\x00\x00\x14\x00\xb0\x00\x45\x58\
\xb0\x17\x2f\x1b\xb1\x17\x1a\x3e\x59\xb1\x2b\x01\xf4\x30\x31\xff\
\xff\x00\x6d\xff\xec\x03\xea\x05\xec\x02\x26\x00\x45\x00\x00\x01\
\x06\x00\xa5\x6a\x04\x00\x14\x00\xb0\x00\x45\x58\xb0\x17\x2f\x1b\
\xb1\x17\x1a\x3e\x59\xb1\x2c\x01\xf4\x30\x31\xff\xff\x00\x6d\xff\
\xec\x03\xea\x05\xc5\x02\x26\x00\x45\x00\x00\x01\x07\x00\x6a\x00\
\x9e\x00\x00\x00\x17\x00\xb0\x00\x45\x58\xb0\x17\x2f\x1b\xb1\x17\
\x1a\x3e\x59\xb1\x30\x01\xf4\xb0\x39\xd0\x30\x31\x00\xff\xff\x00\
\x6d\xff\xec\x03\xea\x06\x5b\x02\x26\x00\x45\x00\x00\x01\x07\x00\
\xa3\x00\xf5\x00\x0b\x00\x17\x00\xb0\x00\x45\x58\xb0\x17\x2f\x1b\
\xb1\x17\x1a\x3e\x59\xb1\x2c\x04\xf4\xb0\x36\xd0\x30\x31\x00\xff\
\xff\x00\x6d\xff\xec\x03\xea\x06\x5f\x02\x26\x00\x45\x00\x00\x00\
\x07\x02\x27\x00\xff\xff\xed\xff\xff\x00\x5c\xfe\x44\x03\xec\x04\
\x4e\x02\x26\x00\x47\x00\x00\x00\x07\x00\x79\x01\x3f\xff\xf7\xff\
\xff\x00\x5d\xff\xec\x03\xf3\x06\x00\x02\x26\x00\x49\x00\x00\x01\
\x07\x00\x44\x00\xc5\x00\x00\x00\x14\x00\xb0\x00\x45\x58\xb0\x08\
\x2f\x1b\xb1\x08\x1a\x3e\x59\xb1\x1f\x09\xf4\x30\x31\xff\xff\x00\
\x5d\xff\xec\x03\xf3\x06\x00\x02\x26\x00\x49\x00\x00\x01\x07\x00\
\x75\x01\x54\x00\x00\x00\x14\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\
\xb1\x08\x1a\x3e\x59\xb1\x20\x09\xf4\x30\x31\xff\xff\x00\x5d\xff\
\xec\x03\xf3\x06\x00\x02\x26\x00\x49\x00\x00\x01\x06\x00\x9e\x5e\
\x00\x00\x14\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1a\x3e\
\x59\xb1\x20\x01\xf4\x30\x31\xff\xff\x00\x5d\xff\xec\x03\xf3\x05\
\xc5\x02\x26\x00\x49\x00\x00\x01\x07\x00\x6a\x00\x8e\x00\x00\x00\
\x17\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1a\x3e\x59\xb1\
\x25\x01\xf4\xb0\x2e\xd0\x30\x31\x00\xff\xff\xff\xc6\x00\x00\x01\
\x67\x05\xff\x02\x26\x00\x8d\x00\x00\x01\x06\x00\x44\x8d\xff\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1a\x3e\x59\xb1\
\x05\x09\xf4\x30\x31\xff\xff\x00\x96\x00\x00\x02\x37\x05\xff\x02\
\x26\x00\x8d\x00\x00\x01\x06\x00\x75\x1b\xff\x00\x14\x00\xb0\x00\
\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1a\x3e\x59\xb1\x06\x09\xf4\x30\
\x31\xff\xff\xff\xcf\x00\x00\x02\x2c\x05\xff\x02\x26\x00\x8d\x00\
\x00\x01\x07\x00\x9e\xff\x26\xff\xff\x00\x14\x00\xb0\x00\x45\x58\
\xb0\x02\x2f\x1b\xb1\x02\x1a\x3e\x59\xb1\x08\x01\xf4\x30\x31\xff\
\xff\xff\xbb\x00\x00\x02\x44\x05\xc4\x02\x26\x00\x8d\x00\x00\x01\
\x07\x00\x6a\xff\x56\xff\xff\x00\x17\x00\xb0\x00\x45\x58\xb0\x02\
\x2f\x1b\xb1\x02\x1a\x3e\x59\xb1\x0b\x01\xf4\xb0\x14\xd0\x30\x31\
\x00\xff\xff\x00\x8c\x00\x00\x03\xdf\x05\xec\x02\x26\x00\x52\x00\
\x00\x01\x06\x00\xa5\x61\x04\x00\x14\x00\xb0\x00\x45\x58\xb0\x03\
\x2f\x1b\xb1\x03\x1a\x3e\x59\xb1\x15\x01\xf4\x30\x31\xff\xff\x00\
\x5b\xff\xec\x04\x34\x06\x00\x02\x26\x00\x53\x00\x00\x01\x07\x00\
\x44\x00\xcf\x00\x00\x00\x14\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\
\xb1\x04\x1a\x3e\x59\xb1\x1d\x09\xf4\x30\x31\xff\xff\x00\x5b\xff\
\xec\x04\x34\x06\x00\x02\x26\x00\x53\x00\x00\x01\x07\x00\x75\x01\
\x5e\x00\x00\x00\x14\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\
\x1a\x3e\x59\xb1\x1e\x09\xf4\x30\x31\xff\xff\x00\x5b\xff\xec\x04\
\x34\x06\x00\x02\x26\x00\x53\x00\x00\x01\x06\x00\x9e\x68\x00\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\x59\xb1\
\x1e\x01\xf4\x30\x31\xff\xff\x00\x5b\xff\xec\x04\x34\x05\xec\x02\
\x26\x00\x53\x00\x00\x01\x06\x00\xa5\x64\x04\x00\x14\x00\xb0\x00\
\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\x59\xb1\x1f\x01\xf4\x30\
\x31\xff\xff\x00\x5b\xff\xec\x04\x34\x05\xc5\x02\x26\x00\x53\x00\
\x00\x01\x07\x00\x6a\x00\x98\x00\x00\x00\x17\x00\xb0\x00\x45\x58\
\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\x59\xb1\x23\x01\xf4\xb0\x2c\xd0\
\x30\x31\x00\xff\xff\x00\x88\xff\xec\x03\xdc\x06\x00\x02\x26\x00\
\x59\x00\x00\x01\x07\x00\x44\x00\xc7\x00\x00\x00\x14\x00\xb0\x00\
\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x1a\x3e\x59\xb1\x12\x09\xf4\x30\
\x31\xff\xff\x00\x88\xff\xec\x03\xdc\x06\x00\x02\x26\x00\x59\x00\
\x00\x01\x07\x00\x75\x01\x56\x00\x00\x00\x14\x00\xb0\x00\x45\x58\
\xb0\x0d\x2f\x1b\xb1\x0d\x1a\x3e\x59\xb1\x13\x09\xf4\x30\x31\xff\
\xff\x00\x88\xff\xec\x03\xdc\x06\x00\x02\x26\x00\x59\x00\x00\x01\
\x06\x00\x9e\x60\x00\x00\x14\x00\xb0\x00\x45\x58\xb0\x07\x2f\x1b\
\xb1\x07\x1a\x3e\x59\xb1\x15\x01\xf4\x30\x31\xff\xff\x00\x88\xff\
\xec\x03\xdc\x05\xc5\x02\x26\x00\x59\x00\x00\x01\x07\x00\x6a\x00\
\x90\x00\x00\x00\x17\x00\xb0\x00\x45\x58\xb0\x07\x2f\x1b\xb1\x07\
\x1a\x3e\x59\xb1\x18\x01\xf4\xb0\x21\xd0\x30\x31\x00\xff\xff\x00\
\x16\xfe\x4b\x03\xb0\x06\x00\x02\x26\x00\x5d\x00\x00\x01\x07\x00\
\x75\x01\x1b\x00\x00\x00\x14\x00\xb0\x00\x45\x58\xb0\x01\x2f\x1b\
\xb1\x01\x1a\x3e\x59\xb1\x12\x09\xf4\x30\x31\xff\xff\x00\x16\xfe\
\x4b\x03\xb0\x05\xc5\x02\x26\x00\x5d\x00\x00\x01\x06\x00\x6a\x55\
\x00\x00\x17\x00\xb0\x00\x45\x58\xb0\x0f\x2f\x1b\xb1\x0f\x1a\x3e\
\x59\xb1\x17\x01\xf4\xb0\x20\xd0\x30\x31\x00\xff\xff\x00\x1c\x00\
\x00\x05\x1d\x06\xe3\x02\x26\x00\x25\x00\x00\x01\x07\x00\x70\x00\
\xc7\x01\x3e\x00\x13\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\
\x1e\x3e\x59\xb0\x0c\xdc\x30\x31\x00\xff\xff\x00\x6d\xff\xec\x03\
\xea\x05\xad\x02\x26\x00\x45\x00\x00\x01\x06\x00\x70\x6c\x08\x00\
\x13\x00\xb0\x00\x45\x58\xb0\x17\x2f\x1b\xb1\x17\x1a\x3e\x59\xb0\
\x2a\xdc\x30\x31\x00\xff\xff\x00\x1c\x00\x00\x05\x1d\x07\x0e\x02\
\x26\x00\x25\x00\x00\x01\x07\x00\xa1\x00\xf4\x01\x37\x00\x13\x00\
\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1e\x3e\x59\xb0\x0d\xdc\
\x30\x31\x00\xff\xff\x00\x6d\xff\xec\x03\xea\x05\xd8\x02\x26\x00\
\x45\x00\x00\x01\x07\x00\xa1\x00\x99\x00\x01\x00\x13\x00\xb0\x00\
\x45\x58\xb0\x17\x2f\x1b\xb1\x17\x1a\x3e\x59\xb0\x2b\xdc\x30\x31\
\x00\x00\x02\x00\x1c\xfe\x4f\x05\x1d\x05\xb0\x00\x16\x00\x19\x00\
\x69\x00\xb0\x00\x45\x58\xb0\x16\x2f\x1b\xb1\x16\x1e\x3e\x59\xb0\
\x00\x45\x58\xb0\x14\x2f\x1b\xb1\x14\x12\x3e\x59\xb0\x00\x45\x58\
\xb0\x01\x2f\x1b\xb1\x01\x12\x3e\x59\xb0\x00\x45\x58\xb0\x0c\x2f\
\x1b\xb1\x0c\x14\x3e\x59\xb1\x07\x03\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb0\x01\x10\xb0\x11\xd0\xb0\x11\x2f\xb2\x17\x14\x16\x11\
\x12\x39\xb0\x17\x2f\xb1\x13\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb2\x19\x16\x14\x11\x12\x39\x30\x31\x01\x01\x23\x07\x06\x15\
\x14\x33\x32\x37\x17\x06\x23\x22\x26\x35\x34\x37\x03\x21\x03\x23\
\x01\x03\x21\x03\x02\xf0\x02\x2d\x26\x3a\x71\x4e\x30\x34\x0d\x46\
\x5a\x59\x67\xa9\x87\xfd\x9e\x89\xc6\x02\x2c\xa3\x01\xef\xf8\x05\
\xb0\xfa\x50\x2d\x5b\x56\x48\x1a\x79\x2c\x68\x56\x90\x6c\x01\x73\
\xfe\x84\x05\xb0\xfc\x6a\x02\xa9\x00\x00\x02\x00\x6d\xfe\x4f\x03\
\xea\x04\x4e\x00\x2d\x00\x37\x00\x94\x00\xb0\x00\x45\x58\xb0\x17\
\x2f\x1b\xb1\x17\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\
\x04\x12\x3e\x59\xb0\x00\x45\x58\xb0\x1e\x2f\x1b\xb1\x1e\x12\x3e\
\x59\xb0\x00\x45\x58\xb0\x29\x2f\x1b\xb1\x29\x14\x3e\x59\xb0\x1e\
\x10\xb0\x00\xd0\xb0\x00\x2f\xb2\x02\x04\x17\x11\x12\x39\xb2\x0b\
\x17\x04\x11\x12\x39\xb0\x0b\x2f\xb0\x17\x10\xb1\x0f\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x12\x0b\x17\x11\x12\x39\xb0\x29\
\x10\xb1\x24\x03\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x04\x10\
\xb1\x2e\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0b\x10\xb1\
\x33\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x25\x26\x27\
\x06\x23\x22\x26\x35\x34\x24\x33\x33\x35\x34\x26\x23\x22\x06\x15\
\x23\x34\x36\x36\x33\x32\x16\x17\x11\x14\x17\x15\x23\x07\x06\x15\
\x14\x33\x32\x37\x17\x06\x23\x22\x26\x35\x34\x27\x32\x36\x37\x35\
\x23\x20\x15\x14\x16\x03\x24\x0f\x07\x81\xb3\xa0\xcd\x01\x01\xe9\
\xb4\x74\x71\x63\x86\xba\x73\xc5\x76\xbb\xd4\x04\x26\x21\x3a\x71\
\x4e\x30\x34\x0d\x46\x5a\x59\x67\x88\x57\x9c\x23\x91\xfe\xac\x74\
\x07\x26\x45\x86\xb5\x8b\xa9\xbb\x55\x61\x73\x64\x47\x51\x97\x58\
\xbb\xa4\xfe\x0e\x95\x58\x10\x2d\x5b\x56\x48\x1a\x79\x2c\x68\x56\
\x90\xf0\x5a\x48\xde\xc7\x57\x62\x00\xff\xff\x00\x77\xff\xec\x04\
\xd8\x07\x57\x02\x26\x00\x27\x00\x00\x01\x07\x00\x75\x01\xc6\x01\
\x57\x00\x14\x00\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x1e\x3e\
\x59\xb1\x1f\x08\xf4\x30\x31\xff\xff\x00\x5c\xff\xec\x03\xec\x06\
\x00\x02\x26\x00\x47\x00\x00\x01\x07\x00\x75\x01\x33\x00\x00\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x10\x2f\x1b\xb1\x10\x1a\x3e\x59\xb1\
\x20\x09\xf4\x30\x31\xff\xff\x00\x77\xff\xec\x04\xd8\x07\x57\x02\
\x26\x00\x27\x00\x00\x01\x07\x00\x9e\x00\xd0\x01\x57\x00\x14\x00\
\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x1e\x3e\x59\xb1\x1f\x06\
\xf4\x30\x31\xff\xff\x00\x5c\xff\xec\x03\xec\x06\x00\x02\x26\x00\
\x47\x00\x00\x01\x06\x00\x9e\x3d\x00\x00\x14\x00\xb0\x00\x45\x58\
\xb0\x10\x2f\x1b\xb1\x10\x1a\x3e\x59\xb1\x20\x01\xf4\x30\x31\xff\
\xff\x00\x77\xff\xec\x04\xd8\x07\x19\x02\x26\x00\x27\x00\x00\x01\
\x07\x00\xa2\x01\xad\x01\x57\x00\x14\x00\xb0\x00\x45\x58\xb0\x0b\
\x2f\x1b\xb1\x0b\x1e\x3e\x59\xb1\x23\x04\xf4\x30\x31\xff\xff\x00\
\x5c\xff\xec\x03\xec\x05\xc2\x02\x26\x00\x47\x00\x00\x01\x07\x00\
\xa2\x01\x1a\x00\x00\x00\x14\x00\xb0\x00\x45\x58\xb0\x10\x2f\x1b\
\xb1\x10\x1a\x3e\x59\xb1\x24\x01\xf4\x30\x31\xff\xff\x00\x77\xff\
\xec\x04\xd8\x07\x57\x02\x26\x00\x27\x00\x00\x01\x07\x00\x9f\x00\
\xe5\x01\x58\x00\x14\x00\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\
\x1e\x3e\x59\xb1\x21\x06\xf4\x30\x31\xff\xff\x00\x5c\xff\xec\x03\
\xec\x06\x00\x02\x26\x00\x47\x00\x00\x01\x06\x00\x9f\x52\x01\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x10\x2f\x1b\xb1\x10\x1a\x3e\x59\xb1\
\x22\x01\xf4\x30\x31\xff\xff\x00\xa9\x00\x00\x04\xc6\x07\x42\x02\
\x26\x00\x28\x00\x00\x01\x07\x00\x9f\x00\x9e\x01\x43\x00\x14\x00\
\xb0\x00\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x1e\x3e\x59\xb1\x1b\x06\
\xf4\x30\x31\xff\xff\x00\x5f\xff\xec\x05\x2b\x06\x02\x00\x26\x00\
\x48\x00\x00\x01\x07\x01\xba\x03\xd4\x05\x13\x00\x48\x00\xb2\xf0\
\x1f\x01\x72\xb2\x1f\x1f\x01\x5d\xb2\x9f\x1f\x01\x5d\xb2\x1f\x1f\
\x01\x71\xb4\xcf\x1f\xdf\x1f\x02\x71\xb2\xdf\x1f\x01\x72\xb2\x5f\
\x1f\x01\x72\xb2\x4f\x1f\x01\x71\xb2\xcf\x1f\x01\x5d\xb4\x4f\x1f\
\x5f\x1f\x02\x5d\xb2\x60\x1f\x01\x5d\xb2\xe0\x1f\x01\x71\xb2\xe0\
\x1f\x01\x5d\x30\x31\xff\xff\x00\xa9\x00\x00\x04\x46\x06\xef\x02\
\x26\x00\x29\x00\x00\x01\x07\x00\x70\x00\x92\x01\x4a\x00\x13\x00\
\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1e\x3e\x59\xb0\x0d\xdc\
\x30\x31\x00\xff\xff\x00\x5d\xff\xec\x03\xf3\x05\xad\x02\x26\x00\
\x49\x00\x00\x01\x06\x00\x70\x5c\x08\x00\x13\x00\xb0\x00\x45\x58\
\xb0\x08\x2f\x1b\xb1\x08\x1a\x3e\x59\xb0\x1f\xdc\x30\x31\x00\xff\
\xff\x00\xa9\x00\x00\x04\x46\x07\x1a\x02\x26\x00\x29\x00\x00\x01\
\x07\x00\xa1\x00\xbf\x01\x43\x00\x13\x00\xb0\x00\x45\x58\xb0\x06\
\x2f\x1b\xb1\x06\x1e\x3e\x59\xb0\x0f\xdc\x30\x31\x00\xff\xff\x00\
\x5d\xff\xec\x03\xf3\x05\xd8\x02\x26\x00\x49\x00\x00\x01\x07\x00\
\xa1\x00\x89\x00\x01\x00\x13\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\
\xb1\x08\x1a\x3e\x59\xb0\x21\xdc\x30\x31\x00\xff\xff\x00\xa9\x00\
\x00\x04\x46\x07\x04\x02\x26\x00\x29\x00\x00\x01\x07\x00\xa2\x01\
\x71\x01\x42\x00\x14\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\
\x1e\x3e\x59\xb1\x13\x04\xf4\x30\x31\xff\xff\x00\x5d\xff\xec\x03\
\xf3\x05\xc2\x02\x26\x00\x49\x00\x00\x01\x07\x00\xa2\x01\x3b\x00\
\x00\x00\x14\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1a\x3e\
\x59\xb1\x25\x01\xf4\x30\x31\x00\x01\x00\xa9\xfe\x4f\x04\x46\x05\
\xb0\x00\x1b\x00\x7a\x00\xb0\x00\x45\x58\xb0\x16\x2f\x1b\xb1\x16\
\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x15\x2f\x1b\xb1\x15\x12\x3e\x59\
\xb0\x00\x45\x58\xb0\x0f\x2f\x1b\xb1\x0f\x14\x3e\x59\xb0\x00\x45\
\x58\xb0\x04\x2f\x1b\xb1\x04\x12\x3e\x59\xb2\x1a\x15\x16\x11\x12\
\x39\xb0\x1a\x2f\xb1\x01\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb0\x15\x10\xb1\x02\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x0f\x10\xb1\x0a\x03\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x16\
\x10\xb1\x19\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\
\x21\x11\x21\x15\x23\x07\x06\x15\x14\x33\x32\x37\x17\x06\x23\x22\
\x26\x35\x34\x37\x21\x11\x21\x15\x21\x11\x21\x03\xe0\xfd\x89\x02\
\xdd\x49\x3a\x71\x4e\x30\x34\x0d\x46\x5a\x59\x67\x9b\xfd\x5d\x03\
\x93\xfd\x2d\x02\x77\x02\xa1\xfd\xfc\x9d\x2d\x5b\x56\x48\x1a\x79\
\x2c\x68\x56\x8a\x69\x05\xb0\x9e\xfe\x2c\x00\x00\x02\x00\x5d\xfe\
\x68\x03\xf3\x04\x4e\x00\x25\x00\x2d\x00\x7e\x00\xb0\x00\x45\x58\
\xb0\x1a\x2f\x1b\xb1\x1a\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x0d\x2f\
\x1b\xb1\x0d\x14\x3e\x59\xb0\x00\x45\x58\xb0\x12\x2f\x1b\xb1\x12\
\x12\x3e\x59\xb0\x04\xd0\xb0\x0d\x10\xb1\x08\x03\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb2\x2a\x12\x1a\x11\x12\x39\xb0\x2a\x2f\xb4\
\xbf\x2a\xcf\x2a\x02\x5d\xb1\x1e\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb0\x12\x10\xb1\x22\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb2\x25\x12\x1a\x11\x12\x39\xb0\x1a\x10\xb1\x26\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x25\x06\x07\x33\x07\x06\x15\
\x14\x33\x32\x37\x17\x06\x23\x22\x26\x35\x34\x37\x26\x00\x35\x35\
\x34\x36\x36\x33\x32\x12\x11\x15\x21\x16\x16\x33\x32\x36\x37\x01\
\x22\x06\x07\x21\x35\x26\x26\x03\xe5\x47\x73\x01\x3a\x71\x4e\x30\
\x34\x0d\x46\x5a\x59\x67\x62\xda\xfe\xf5\x7b\xdd\x81\xd3\xea\xfd\
\x23\x04\xb3\x8a\x62\x88\x33\xfe\xc2\x70\x98\x12\x02\x1e\x08\x88\
\xbd\x6e\x36\x2d\x5b\x56\x48\x1a\x79\x2c\x68\x56\x6c\x5a\x04\x01\
\x21\xef\x21\xa1\xfd\x8f\xfe\xea\xfe\xfd\x4d\xa0\xc5\x50\x42\x02\
\xa1\xa3\x93\x0e\x8d\x9b\x00\xff\xff\x00\xa9\x00\x00\x04\x46\x07\
\x42\x02\x26\x00\x29\x00\x00\x01\x07\x00\x9f\x00\xa9\x01\x43\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1e\x3e\x59\xb1\
\x11\x06\xf4\x30\x31\xff\xff\x00\x5d\xff\xec\x03\xf3\x06\x00\x02\
\x26\x00\x49\x00\x00\x01\x06\x00\x9f\x73\x01\x00\x14\x00\xb0\x00\
\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1a\x3e\x59\xb1\x22\x01\xf4\x30\
\x31\xff\xff\x00\x7a\xff\xec\x04\xdc\x07\x57\x02\x26\x00\x2b\x00\
\x00\x01\x07\x00\x9e\x00\xc8\x01\x57\x00\x14\x00\xb0\x00\x45\x58\
\xb0\x0b\x2f\x1b\xb1\x0b\x1e\x3e\x59\xb1\x22\x06\xf4\x30\x31\xff\
\xff\x00\x60\xfe\x56\x03\xf2\x06\x00\x02\x26\x00\x4b\x00\x00\x01\
\x06\x00\x9e\x55\x00\x00\x14\x00\xb0\x00\x45\x58\xb0\x03\x2f\x1b\
\xb1\x03\x1a\x3e\x59\xb1\x27\x01\xf4\x30\x31\xff\xff\x00\x7a\xff\
\xec\x04\xdc\x07\x2f\x02\x26\x00\x2b\x00\x00\x01\x07\x00\xa1\x00\
\xf3\x01\x58\x00\x13\x00\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\
\x1e\x3e\x59\xb0\x22\xdc\x30\x31\x00\xff\xff\x00\x60\xfe\x56\x03\
\xf2\x05\xd8\x02\x26\x00\x4b\x00\x00\x01\x07\x00\xa1\x00\x80\x00\
\x01\x00\x13\x00\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1a\x3e\
\x59\xb0\x27\xdc\x30\x31\x00\xff\xff\x00\x7a\xff\xec\x04\xdc\x07\
\x19\x02\x26\x00\x2b\x00\x00\x01\x07\x00\xa2\x01\xa5\x01\x57\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x1e\x3e\x59\xb1\
\x27\x04\xf4\x30\x31\xff\xff\x00\x60\xfe\x56\x03\xf2\x05\xc2\x02\
\x26\x00\x4b\x00\x00\x01\x07\x00\xa2\x01\x32\x00\x00\x00\x14\x00\
\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1a\x3e\x59\xb1\x2c\x01\
\xf4\x30\x31\xff\xff\x00\x7a\xfd\xf6\x04\xdc\x05\xc4\x02\x26\x00\
\x2b\x00\x00\x00\x07\x01\xba\x01\xda\xfe\x97\xff\xff\x00\x60\xfe\
\x56\x03\xf2\x06\x93\x02\x26\x00\x4b\x00\x00\x01\x07\x02\x34\x01\
\x2b\x00\x58\x00\x13\x00\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\
\x1a\x3e\x59\xb0\x2a\xdc\x30\x31\x00\xff\xff\x00\xa9\x00\x00\x05\
\x08\x07\x42\x02\x26\x00\x2c\x00\x00\x01\x07\x00\x9e\x00\xf1\x01\
\x42\x00\x14\x00\xb0\x00\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x1e\x3e\
\x59\xb1\x10\x06\xf4\x30\x31\xff\xff\x00\x8c\x00\x00\x03\xdf\x07\
\x41\x02\x26\x00\x4c\x00\x00\x01\x07\x00\x9e\x00\x1d\x01\x41\x00\
\x09\x00\xb0\x11\x2f\xb0\x14\xdc\x30\x31\x00\xff\xff\xff\xb7\x00\
\x00\x02\x7a\x07\x2e\x02\x26\x00\x2d\x00\x00\x01\x07\x00\xa5\xff\
\x3c\x01\x46\x00\x14\x00\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\
\x1e\x3e\x59\xb1\x07\x04\xf4\x30\x31\xff\xff\xff\x9d\x00\x00\x02\
\x60\x05\xea\x02\x26\x00\x8d\x00\x00\x01\x07\x00\xa5\xff\x22\x00\
\x02\x00\x14\x00\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1a\x3e\
\x59\xb1\x07\x01\xf4\x30\x31\xff\xff\xff\xcc\x00\x00\x02\x6c\x06\
\xef\x02\x26\x00\x2d\x00\x00\x01\x07\x00\x70\xff\x3e\x01\x4a\x00\
\x13\x00\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1e\x3e\x59\xb0\
\x05\xdc\x30\x31\x00\xff\xff\xff\xb2\x00\x00\x02\x52\x05\xab\x02\
\x26\x00\x8d\x00\x00\x01\x07\x00\x70\xff\x24\x00\x06\x00\x13\x00\
\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1a\x3e\x59\xb0\x05\xdc\
\x30\x31\x00\xff\xff\xff\xec\x00\x00\x02\x43\x07\x1a\x02\x26\x00\
\x2d\x00\x00\x01\x07\x00\xa1\xff\x6b\x01\x43\x00\x13\x00\xb0\x00\
\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1e\x3e\x59\xb0\x07\xdc\x30\x31\
\x00\xff\xff\xff\xd2\x00\x00\x02\x29\x05\xd7\x02\x26\x00\x8d\x00\
\x00\x01\x07\x00\xa1\xff\x51\x00\x00\x00\x13\x00\xb0\x00\x45\x58\
\xb0\x02\x2f\x1b\xb1\x02\x1a\x3e\x59\xb0\x07\xdc\x30\x31\x00\xff\
\xff\x00\x18\xfe\x58\x01\x78\x05\xb0\x02\x26\x00\x2d\x00\x00\x00\
\x06\x00\xa4\xe6\x09\xff\xff\xff\xfb\xfe\x4f\x01\x68\x05\xc4\x02\
\x26\x00\x4d\x00\x00\x00\x06\x00\xa4\xc9\x00\xff\xff\x00\xa9\x00\
\x00\x01\x84\x07\x04\x02\x26\x00\x2d\x00\x00\x01\x07\x00\xa2\x00\
\x1c\x01\x42\x00\x14\x00\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\
\x1e\x3e\x59\xb1\x0b\x04\xf4\x30\x31\xff\xff\x00\xb7\xff\xec\x05\
\xf9\x05\xb0\x00\x26\x00\x2d\x00\x00\x00\x07\x00\x2e\x02\x2d\x00\
\x00\xff\xff\x00\x8d\xfe\x4b\x03\x4a\x05\xc4\x00\x26\x00\x4d\x00\
\x00\x00\x07\x00\x4e\x01\xf1\x00\x00\xff\xff\x00\x35\xff\xec\x04\
\x82\x07\x35\x02\x26\x00\x2e\x00\x00\x01\x07\x00\x9e\x01\x7c\x01\
\x35\x00\x14\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1e\x3e\
\x59\xb1\x14\x06\xf4\x30\x31\xff\xff\xff\xb4\xfe\x4b\x02\x39\x05\
\xd8\x02\x26\x00\x9c\x00\x00\x01\x07\x00\x9e\xff\x33\xff\xd8\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x1a\x3e\x59\xb1\
\x12\x04\xf4\x30\x31\xff\xff\x00\xa9\xfe\x58\x05\x05\x05\xb0\x02\
\x26\x00\x2f\x00\x00\x00\x07\x01\xba\x01\x94\xfe\xf9\xff\xff\x00\
\x8d\xfe\x45\x04\x0c\x06\x00\x02\x26\x00\x4f\x00\x00\x00\x07\x01\
\xba\x01\x11\xfe\xe6\xff\xff\x00\xa1\x00\x00\x04\x1c\x07\x31\x02\
\x26\x00\x30\x00\x00\x01\x07\x00\x75\x00\x26\x01\x31\x00\x14\x00\
\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x1e\x3e\x59\xb1\x08\x08\
\xf4\x30\x31\xff\xff\x00\x93\x00\x00\x02\x34\x07\x96\x02\x26\x00\
\x50\x00\x00\x01\x07\x00\x75\x00\x18\x01\x96\x00\x14\x00\xb0\x00\
\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x20\x3e\x59\xb1\x06\x09\xf4\x30\
\x31\xff\xff\x00\xa9\xfe\x09\x04\x1c\x05\xb0\x02\x26\x00\x30\x00\
\x00\x00\x07\x01\xba\x01\x6c\xfe\xaa\xff\xff\x00\x57\xfe\x09\x01\
\x55\x06\x00\x02\x26\x00\x50\x00\x00\x00\x07\x01\xba\xff\xfb\xfe\
\xaa\xff\xff\x00\xa9\x00\x00\x04\x1c\x05\xb1\x02\x26\x00\x30\x00\
\x00\x01\x07\x01\xba\x01\xd5\x04\xc2\x00\x10\x00\xb0\x00\x45\x58\
\xb0\x0a\x2f\x1b\xb1\x0a\x1e\x3e\x59\x30\x31\xff\xff\x00\x9c\x00\
\x00\x02\xad\x06\x02\x00\x26\x00\x50\x00\x00\x01\x07\x01\xba\x01\
\x56\x05\x13\x00\x50\x00\xb2\x1f\x08\x01\x5d\xb2\x9f\x08\x01\x5d\
\xb4\x1f\x08\x2f\x08\x02\x71\xb2\xaf\x08\x01\x71\xb4\x2f\x08\x3f\
\x08\x02\x72\xb2\xdf\x08\x01\x72\xb6\x5f\x08\x6f\x08\x7f\x08\x03\
\x72\xb4\xcf\x08\xdf\x08\x02\x71\xb2\x4f\x08\x01\x71\xb2\xcf\x08\
\x01\x5d\xb4\x4f\x08\x5f\x08\x02\x5d\xb2\x60\x08\x01\x5d\xb2\xf0\
\x08\x01\x72\x30\x31\xff\xff\x00\xa9\x00\x00\x04\x1c\x05\xb0\x02\
\x26\x00\x30\x00\x00\x00\x07\x00\xa2\x01\xbc\xfd\xc5\xff\xff\x00\
\x9c\x00\x00\x02\xa0\x06\x00\x00\x26\x00\x50\x00\x00\x00\x07\x00\
\xa2\x01\x38\xfd\xb6\xff\xff\x00\xa9\x00\x00\x05\x08\x07\x36\x02\
\x26\x00\x32\x00\x00\x01\x07\x00\x75\x01\xf5\x01\x36\x00\x14\x00\
\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1e\x3e\x59\xb1\x0c\x08\
\xf4\x30\x31\xff\xff\x00\x8c\x00\x00\x03\xdf\x06\x00\x02\x26\x00\
\x52\x00\x00\x01\x07\x00\x75\x01\x5b\x00\x00\x00\x14\x00\xb0\x00\
\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1a\x3e\x59\xb1\x14\x09\xf4\x30\
\x31\xff\xff\x00\xa9\xfe\x09\x05\x08\x05\xb0\x02\x26\x00\x32\x00\
\x00\x00\x07\x01\xba\x01\xd0\xfe\xaa\xff\xff\x00\x8c\xfe\x09\x03\
\xdf\x04\x4e\x02\x26\x00\x52\x00\x00\x00\x07\x01\xba\x01\x33\xfe\
\xaa\xff\xff\x00\xa9\x00\x00\x05\x08\x07\x36\x02\x26\x00\x32\x00\
\x00\x01\x07\x00\x9f\x01\x14\x01\x37\x00\x14\x00\xb0\x00\x45\x58\
\xb0\x06\x2f\x1b\xb1\x06\x1e\x3e\x59\xb1\x0f\x06\xf4\x30\x31\xff\
\xff\x00\x8c\x00\x00\x03\xdf\x06\x00\x02\x26\x00\x52\x00\x00\x01\
\x06\x00\x9f\x7a\x01\x00\x14\x00\xb0\x00\x45\x58\xb0\x03\x2f\x1b\
\xb1\x03\x1a\x3e\x59\xb1\x16\x01\xf4\x30\x31\xff\xff\xff\xbc\x00\
\x00\x03\xdf\x06\x04\x02\x26\x00\x52\x00\x00\x01\x07\x01\xba\xff\
\x60\x05\x15\x00\x10\x00\xb0\x17\x2f\xb2\x4f\x17\x01\x5d\xb2\x9f\
\x17\x01\x5d\x30\x31\xff\xff\x00\x76\xff\xec\x05\x09\x06\xe5\x02\
\x26\x00\x33\x00\x00\x01\x07\x00\x70\x00\xe9\x01\x40\x00\x13\x00\
\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x1e\x3e\x59\xb0\x21\xdc\
\x30\x31\x00\xff\xff\x00\x5b\xff\xec\x04\x34\x05\xad\x02\x26\x00\
\x53\x00\x00\x01\x06\x00\x70\x66\x08\x00\x13\x00\xb0\x00\x45\x58\
\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\x59\xb0\x1d\xdc\x30\x31\x00\xff\
\xff\x00\x76\xff\xec\x05\x09\x07\x10\x02\x26\x00\x33\x00\x00\x01\
\x07\x00\xa1\x01\x16\x01\x39\x00\x13\x00\xb0\x00\x45\x58\xb0\x0d\
\x2f\x1b\xb1\x0d\x1e\x3e\x59\xb0\x22\xdc\x30\x31\x00\xff\xff\x00\
\x5b\xff\xec\x04\x34\x05\xd8\x02\x26\x00\x53\x00\x00\x01\x07\x00\
\xa1\x00\x93\x00\x01\x00\x13\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\
\xb1\x04\x1a\x3e\x59\xb0\x1f\xdc\x30\x31\x00\xff\xff\x00\x76\xff\
\xec\x05\x09\x07\x37\x02\x26\x00\x33\x00\x00\x01\x07\x00\xa6\x01\
\x6b\x01\x38\x00\x17\x00\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\
\x1e\x3e\x59\xb1\x26\x08\xf4\xb0\x22\xd0\x30\x31\x00\xff\xff\x00\
\x5b\xff\xec\x04\x34\x05\xff\x02\x26\x00\x53\x00\x00\x01\x07\x00\
\xa6\x00\xe8\x00\x00\x00\x17\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\
\xb1\x04\x1a\x3e\x59\xb1\x22\x09\xf4\xb0\x1e\xd0\x30\x31\x00\xff\
\xff\x00\xa8\x00\x00\x04\xc9\x07\x36\x02\x26\x00\x36\x00\x00\x01\
\x07\x00\x75\x01\x80\x01\x36\x00\x14\x00\xb0\x00\x45\x58\xb0\x04\
\x2f\x1b\xb1\x04\x1e\x3e\x59\xb1\x1a\x08\xf4\x30\x31\xff\xff\x00\
\x8c\x00\x00\x02\xd2\x06\x00\x02\x26\x00\x56\x00\x00\x01\x07\x00\
\x75\x00\xb6\x00\x00\x00\x14\x00\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\
\xb1\x0b\x1a\x3e\x59\xb1\x10\x09\xf4\x30\x31\xff\xff\x00\xa8\xfe\
\x09\x04\xc9\x05\xb0\x02\x26\x00\x36\x00\x00\x00\x07\x01\xba\x01\
\x63\xfe\xaa\xff\xff\x00\x53\xfe\x09\x02\x97\x04\x4e\x02\x26\x00\
\x56\x00\x00\x00\x07\x01\xba\xff\xf7\xfe\xaa\xff\xff\x00\xa8\x00\
\x00\x04\xc9\x07\x36\x02\x26\x00\x36\x00\x00\x01\x07\x00\x9f\x00\
\x9f\x01\x37\x00\x14\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\
\x1e\x3e\x59\xb1\x1d\x06\xf4\x30\x31\xff\xff\x00\x63\x00\x00\x02\
\xcd\x06\x00\x02\x26\x00\x56\x00\x00\x01\x06\x00\x9f\xd6\x01\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x1a\x3e\x59\xb1\
\x12\x01\xf4\x30\x31\xff\xff\x00\x50\xff\xec\x04\x72\x07\x38\x02\
\x26\x00\x37\x00\x00\x01\x07\x00\x75\x01\x8d\x01\x38\x00\x14\x00\
\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1e\x3e\x59\xb1\x29\x08\
\xf4\x30\x31\xff\xff\x00\x5f\xff\xec\x03\xbb\x06\x00\x02\x26\x00\
\x57\x00\x00\x01\x07\x00\x75\x01\x51\x00\x00\x00\x14\x00\xb0\x00\
\x45\x58\xb0\x09\x2f\x1b\xb1\x09\x1a\x3e\x59\xb1\x29\x09\xf4\x30\
\x31\xff\xff\x00\x50\xff\xec\x04\x72\x07\x38\x02\x26\x00\x37\x00\
\x00\x01\x07\x00\x9e\x00\x97\x01\x38\x00\x14\x00\xb0\x00\x45\x58\
\xb0\x06\x2f\x1b\xb1\x06\x1e\x3e\x59\xb1\x29\x06\xf4\x30\x31\xff\
\xff\x00\x5f\xff\xec\x03\xbb\x06\x00\x02\x26\x00\x57\x00\x00\x01\
\x06\x00\x9e\x5b\x00\x00\x14\x00\xb0\x00\x45\x58\xb0\x09\x2f\x1b\
\xb1\x09\x1a\x3e\x59\xb1\x29\x01\xf4\x30\x31\xff\xff\x00\x50\xfe\
\x4d\x04\x72\x05\xc4\x02\x26\x00\x37\x00\x00\x00\x07\x00\x79\x01\
\x9f\x00\x00\xff\xff\x00\x5f\xfe\x45\x03\xbb\x04\x4e\x02\x26\x00\
\x57\x00\x00\x00\x07\x00\x79\x01\x5d\xff\xf8\xff\xff\x00\x50\xfd\
\xff\x04\x72\x05\xc4\x02\x26\x00\x37\x00\x00\x00\x07\x01\xba\x01\
\x75\xfe\xa0\xff\xff\x00\x5f\xfd\xf6\x03\xbb\x04\x4e\x02\x26\x00\
\x57\x00\x00\x00\x07\x01\xba\x01\x33\xfe\x97\xff\xff\x00\x50\xff\
\xec\x04\x72\x07\x38\x02\x26\x00\x37\x00\x00\x01\x07\x00\x9f\x00\
\xac\x01\x39\x00\x14\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\
\x1e\x3e\x59\xb1\x2b\x06\xf4\x30\x31\xff\xff\x00\x5f\xff\xec\x03\
\xbb\x06\x00\x02\x26\x00\x57\x00\x00\x01\x06\x00\x9f\x70\x01\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\x09\x1a\x3e\x59\xb1\
\x2b\x01\xf4\x30\x31\xff\xff\x00\x31\xfd\xff\x04\x97\x05\xb0\x02\
\x26\x00\x38\x00\x00\x00\x07\x01\xba\x01\x66\xfe\xa0\xff\xff\x00\
\x09\xfd\xff\x02\x56\x05\x40\x02\x26\x00\x58\x00\x00\x00\x07\x01\
\xba\x00\xc5\xfe\xa0\xff\xff\x00\x31\xfe\x4d\x04\x97\x05\xb0\x02\
\x26\x00\x38\x00\x00\x00\x07\x00\x79\x01\x90\x00\x00\xff\xff\x00\
\x09\xfe\x4d\x02\x99\x05\x40\x02\x26\x00\x58\x00\x00\x00\x07\x00\
\x79\x00\xef\x00\x00\xff\xff\x00\x31\x00\x00\x04\x97\x07\x36\x02\
\x26\x00\x38\x00\x00\x01\x07\x00\x9f\x00\xa1\x01\x37\x00\x14\x00\
\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1e\x3e\x59\xb1\x0d\x06\
\xf4\x30\x31\xff\xff\x00\x09\xff\xec\x02\xec\x06\x79\x00\x26\x00\
\x58\x00\x00\x01\x07\x01\xba\x01\x95\x05\x8a\x00\x12\x00\xb2\x0f\
\x1a\x01\x5d\xb2\x9f\x1a\x01\x5d\xb2\x4f\x1a\x01\x5d\x30\x31\xff\
\xff\x00\x8c\xff\xec\x04\xaa\x07\x22\x02\x26\x00\x39\x00\x00\x01\
\x07\x00\xa5\x00\xc0\x01\x3a\x00\x14\x00\xb0\x00\x45\x58\xb0\x12\
\x2f\x1b\xb1\x12\x1e\x3e\x59\xb1\x16\x04\xf4\x30\x31\xff\xff\x00\
\x88\xff\xec\x03\xdc\x05\xec\x02\x26\x00\x59\x00\x00\x01\x06\x00\
\xa5\x5c\x04\x00\x14\x00\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\
\x1a\x3e\x59\xb1\x14\x01\xf4\x30\x31\xff\xff\x00\x8c\xff\xec\x04\
\xaa\x06\xe3\x02\x26\x00\x39\x00\x00\x01\x07\x00\x70\x00\xc2\x01\
\x3e\x00\x13\x00\xb0\x00\x45\x58\xb0\x12\x2f\x1b\xb1\x12\x1e\x3e\
\x59\xb0\x13\xdc\x30\x31\x00\xff\xff\x00\x88\xff\xec\x03\xdc\x05\
\xad\x02\x26\x00\x59\x00\x00\x01\x06\x00\x70\x5e\x08\x00\x13\x00\
\xb0\x00\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x1a\x3e\x59\xb0\x12\xdc\
\x30\x31\x00\xff\xff\x00\x8c\xff\xec\x04\xaa\x07\x0e\x02\x26\x00\
\x39\x00\x00\x01\x07\x00\xa1\x00\xef\x01\x37\x00\x13\x00\xb0\x00\
\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1e\x3e\x59\xb0\x16\xdc\x30\x31\
\x00\xff\xff\x00\x88\xff\xec\x03\xdc\x05\xd8\x02\x26\x00\x59\x00\
\x00\x01\x07\x00\xa1\x00\x8b\x00\x01\x00\x13\x00\xb0\x00\x45\x58\
\xb0\x07\x2f\x1b\xb1\x07\x1a\x3e\x59\xb0\x14\xdc\x30\x31\x00\xff\
\xff\x00\x8c\xff\xec\x04\xaa\x07\x91\x02\x26\x00\x39\x00\x00\x01\
\x07\x00\xa3\x01\x4b\x01\x41\x00\x17\x00\xb0\x00\x45\x58\xb0\x0a\
\x2f\x1b\xb1\x0a\x1e\x3e\x59\xb1\x16\x06\xf4\xb0\x20\xd0\x30\x31\
\x00\xff\xff\x00\x88\xff\xec\x03\xdc\x06\x5b\x02\x26\x00\x59\x00\
\x00\x01\x07\x00\xa3\x00\xe7\x00\x0b\x00\x17\x00\xb0\x00\x45\x58\
\xb0\x07\x2f\x1b\xb1\x07\x1a\x3e\x59\xb1\x14\x04\xf4\xb0\x1e\xd0\
\x30\x31\x00\xff\xff\x00\x8c\xff\xec\x04\xaa\x07\x35\x02\x26\x00\
\x39\x00\x00\x01\x07\x00\xa6\x01\x44\x01\x36\x00\x17\x00\xb0\x00\
\x45\x58\xb0\x12\x2f\x1b\xb1\x12\x1e\x3e\x59\xb1\x15\x08\xf4\xb0\
\x19\xd0\x30\x31\x00\xff\xff\x00\x88\xff\xec\x04\x0c\x05\xff\x02\
\x26\x00\x59\x00\x00\x01\x07\x00\xa6\x00\xe0\x00\x00\x00\x17\x00\
\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x1a\x3e\x59\xb1\x13\x09\
\xf4\xb0\x17\xd0\x30\x31\x00\x00\x01\x00\x8c\xfe\x7b\x04\xaa\x05\
\xb0\x00\x20\x00\x55\x00\xb0\x00\x45\x58\xb0\x18\x2f\x1b\xb1\x18\
\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x14\x3e\x59\
\xb0\x00\x45\x58\xb0\x13\x2f\x1b\xb1\x13\x12\x3e\x59\xb0\x18\x10\
\xb0\x20\xd0\xb2\x04\x13\x20\x11\x12\x39\xb0\x0d\x10\xb1\x08\x03\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x13\x10\xb1\x1c\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x11\x06\x06\x07\x06\
\x15\x14\x33\x32\x37\x17\x06\x23\x22\x26\x35\x34\x37\x07\x22\x00\
\x27\x11\x33\x11\x14\x16\x33\x32\x36\x35\x11\x04\xaa\x01\x8a\x83\
\x9b\x4e\x30\x34\x0d\x46\x5a\x59\x67\x4f\x16\xef\xfe\xe4\x02\xbe\
\xae\xa1\xa3\xad\x05\xb0\xfc\x21\x94\xe2\x3b\x72\x60\x48\x1a\x79\
\x2c\x68\x56\x61\x53\x01\x01\x02\xe2\x03\xe0\xfc\x26\x9e\xaf\xae\
\x9e\x03\xdb\x00\x01\x00\x88\xfe\x4f\x03\xe6\x04\x3a\x00\x1f\x00\
\x6f\x00\xb0\x00\x45\x58\xb0\x17\x2f\x1b\xb1\x17\x1a\x3e\x59\xb0\
\x00\x45\x58\xb0\x1d\x2f\x1b\xb1\x1d\x1a\x3e\x59\xb0\x00\x45\x58\
\xb0\x1f\x2f\x1b\xb1\x1f\x12\x3e\x59\xb0\x00\x45\x58\xb0\x12\x2f\
\x1b\xb1\x12\x12\x3e\x59\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\
\x14\x3e\x59\xb1\x05\x03\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x1f\x10\xb0\x0f\xd0\xb0\x0f\x2f\xb2\x10\x12\x1d\x11\x12\x39\xb0\
\x12\x10\xb1\x1a\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\
\x21\x07\x06\x15\x14\x33\x32\x37\x17\x06\x23\x22\x26\x35\x34\x37\
\x27\x06\x23\x22\x26\x27\x11\x33\x11\x14\x33\x32\x37\x11\x33\x11\
\x03\xd2\x3a\x71\x4e\x30\x34\x0d\x46\x5a\x59\x67\xa6\x04\x6c\xd1\
\xad\xb5\x01\xb9\xc8\xd4\x46\xb9\x2d\x5b\x56\x48\x1a\x79\x2c\x68\
\x56\x8f\x6a\x65\x7f\xc9\xc5\x02\xc0\xfd\x45\xf6\x9e\x03\x13\xfb\
\xc6\xff\xff\x00\x3d\x00\x00\x06\xed\x07\x36\x02\x26\x00\x3b\x00\
\x00\x01\x07\x00\x9e\x01\xc5\x01\x36\x00\x14\x00\xb0\x00\x45\x58\
\xb0\x03\x2f\x1b\xb1\x03\x1e\x3e\x59\xb1\x17\x06\xf4\x30\x31\xff\
\xff\x00\x2b\x00\x00\x05\xd3\x06\x00\x02\x26\x00\x5b\x00\x00\x01\
\x07\x00\x9e\x01\x24\x00\x00\x00\x14\x00\xb0\x00\x45\x58\xb0\x0c\
\x2f\x1b\xb1\x0c\x1a\x3e\x59\xb1\x0f\x01\xf4\x30\x31\xff\xff\x00\
\x0f\x00\x00\x04\xbb\x07\x36\x02\x26\x00\x3d\x00\x00\x01\x07\x00\
\x9e\x00\x92\x01\x36\x00\x14\x00\xb0\x00\x45\x58\xb0\x01\x2f\x1b\
\xb1\x01\x1e\x3e\x59\xb1\x0b\x06\xf4\x30\x31\xff\xff\x00\x16\xfe\
\x4b\x03\xb0\x06\x00\x02\x26\x00\x5d\x00\x00\x01\x06\x00\x9e\x25\
\x00\x00\x14\x00\xb0\x00\x45\x58\xb0\x0f\x2f\x1b\xb1\x0f\x1a\x3e\
\x59\xb1\x14\x01\xf4\x30\x31\xff\xff\x00\x0f\x00\x00\x04\xbb\x06\
\xfb\x02\x26\x00\x3d\x00\x00\x01\x07\x00\x6a\x00\xc2\x01\x36\x00\
\x17\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1e\x3e\x59\xb1\
\x10\x04\xf4\xb0\x19\xd0\x30\x31\x00\xff\xff\x00\x56\x00\x00\x04\
\x7a\x07\x36\x02\x26\x00\x3e\x00\x00\x01\x07\x00\x75\x01\x87\x01\
\x36\x00\x14\x00\xb0\x00\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x1e\x3e\
\x59\xb1\x0c\x08\xf4\x30\x31\xff\xff\x00\x58\x00\x00\x03\xb3\x06\
\x00\x02\x26\x00\x5e\x00\x00\x01\x07\x00\x75\x01\x21\x00\x00\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x1a\x3e\x59\xb1\
\x0c\x09\xf4\x30\x31\xff\xff\x00\x56\x00\x00\x04\x7a\x06\xf8\x02\
\x26\x00\x3e\x00\x00\x01\x07\x00\xa2\x01\x6e\x01\x36\x00\x14\x00\
\xb0\x00\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x1e\x3e\x59\xb1\x11\x04\
\xf4\x30\x31\xff\xff\x00\x58\x00\x00\x03\xb3\x05\xc2\x02\x26\x00\
\x5e\x00\x00\x01\x07\x00\xa2\x01\x08\x00\x00\x00\x14\x00\xb0\x00\
\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x1a\x3e\x59\xb1\x11\x01\xf4\x30\
\x31\xff\xff\x00\x56\x00\x00\x04\x7a\x07\x36\x02\x26\x00\x3e\x00\
\x00\x01\x07\x00\x9f\x00\xa6\x01\x37\x00\x14\x00\xb0\x00\x45\x58\
\xb0\x07\x2f\x1b\xb1\x07\x1e\x3e\x59\xb1\x0f\x06\xf4\x30\x31\xff\
\xff\x00\x58\x00\x00\x03\xb3\x06\x00\x02\x26\x00\x5e\x00\x00\x01\
\x06\x00\x9f\x40\x01\x00\x14\x00\xb0\x00\x45\x58\xb0\x07\x2f\x1b\
\xb1\x07\x1a\x3e\x59\xb1\x0f\x01\xf4\x30\x31\xff\xff\xff\xf2\x00\
\x00\x07\x57\x07\x42\x02\x26\x00\x81\x00\x00\x01\x07\x00\x75\x02\
\xc9\x01\x42\x00\x14\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\
\x1e\x3e\x59\xb1\x15\x08\xf4\x30\x31\xff\xff\x00\x4e\xff\xec\x06\
\x7c\x06\x01\x02\x26\x00\x86\x00\x00\x01\x07\x00\x75\x02\x7a\x00\
\x01\x00\x14\x00\xb0\x00\x45\x58\xb0\x1d\x2f\x1b\xb1\x1d\x1a\x3e\
\x59\xb1\x40\x09\xf4\x30\x31\xff\xff\x00\x76\xff\xa3\x05\x1d\x07\
\x80\x02\x26\x00\x83\x00\x00\x01\x07\x00\x75\x01\xe9\x01\x80\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x10\x2f\x1b\xb1\x10\x1e\x3e\x59\xb1\
\x2c\x08\xf4\x30\x31\xff\xff\x00\x5b\xff\x7a\x04\x34\x06\x00\x02\
\x26\x00\x89\x00\x00\x01\x07\x00\x75\x01\x37\x00\x00\x00\x14\x00\
\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\x59\xb1\x29\x09\
\xf4\x30\x31\xff\xff\xff\xbe\x00\x00\x04\x1f\x04\x8d\x02\x26\x02\
\x30\x00\x00\x01\x07\x02\x26\xff\x2f\xff\x78\x00\x2c\x00\xb2\x1f\
\x18\x01\x71\xb4\xdf\x18\xef\x18\x02\x71\xb4\x1f\x18\x2f\x18\x02\
\x5d\xb2\x1f\x18\x01\x72\xb2\x4f\x18\x01\x71\xb4\xef\x18\xff\x18\
\x02\x5d\xb2\x5f\x18\x01\x5d\x30\x31\xff\xff\xff\xbe\x00\x00\x04\
\x1f\x04\x8d\x02\x26\x02\x30\x00\x00\x01\x07\x02\x26\xff\x2f\xff\
\x78\x00\x36\x00\xb4\xef\x17\xff\x17\x02\x5d\xb2\x4f\x17\x01\x71\
\xb2\x1f\x17\x01\x72\xb2\xdf\x17\x01\x72\xb2\x6f\x17\x01\x72\xb4\
\xdf\x17\xef\x17\x02\x71\xb2\x1f\x17\x01\x71\xb2\x5f\x17\x01\x5d\
\xb4\x1f\x17\x2f\x17\x02\x5d\x30\x31\xff\xff\x00\x28\x00\x00\x03\
\xfd\x04\x8d\x02\x26\x01\xd8\x00\x00\x01\x06\x02\x26\x45\xe0\x00\
\x0d\x00\xb2\x03\x0a\x01\x5d\xb2\xb0\x0a\x01\x5d\x30\x31\x00\xff\
\xff\x00\x13\x00\x00\x04\x70\x06\x1e\x02\x26\x02\x33\x00\x00\x01\
\x07\x00\x44\x00\xd5\x00\x1e\x00\x14\x00\xb0\x00\x45\x58\xb0\x04\
\x2f\x1b\xb1\x04\x1c\x3e\x59\xb1\x0c\x06\xf4\x30\x31\xff\xff\x00\
\x13\x00\x00\x04\x70\x06\x1e\x02\x26\x02\x33\x00\x00\x01\x07\x00\
\x75\x01\x64\x00\x1e\x00\x14\x00\xb0\x00\x45\x58\xb0\x05\x2f\x1b\
\xb1\x05\x1c\x3e\x59\xb1\x0d\x06\xf4\x30\x31\xff\xff\x00\x13\x00\
\x00\x04\x70\x06\x1e\x02\x26\x02\x33\x00\x00\x01\x06\x00\x9e\x6e\
\x1e\x00\x14\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1c\x3e\
\x59\xb1\x0f\x04\xf4\x30\x31\xff\xff\x00\x13\x00\x00\x04\x70\x06\
\x0a\x02\x26\x02\x33\x00\x00\x01\x06\x00\xa5\x6a\x22\x00\x14\x00\
\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x1c\x3e\x59\xb1\x0e\x02\
\xf4\x30\x31\xff\xff\x00\x13\x00\x00\x04\x70\x05\xe3\x02\x26\x02\
\x33\x00\x00\x01\x07\x00\x6a\x00\x9e\x00\x1e\x00\x17\x00\xb0\x00\
\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1c\x3e\x59\xb1\x12\x02\xf4\xb0\
\x1b\xd0\x30\x31\x00\xff\xff\x00\x13\x00\x00\x04\x70\x06\x79\x02\
\x26\x02\x33\x00\x00\x01\x07\x00\xa3\x00\xf5\x00\x29\x00\x17\x00\
\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1c\x3e\x59\xb1\x0e\x06\
\xf4\xb0\x18\xd0\x30\x31\x00\xff\xff\x00\x13\x00\x00\x04\x70\x06\
\x7c\x02\x26\x02\x33\x00\x00\x00\x07\x02\x27\x00\xff\x00\x0a\xff\
\xff\x00\x60\xfe\x4a\x04\x30\x04\x9d\x02\x26\x02\x31\x00\x00\x00\
\x07\x00\x79\x01\x74\xff\xfd\xff\xff\x00\x8a\x00\x00\x03\xae\x06\
\x1e\x02\x26\x02\x28\x00\x00\x01\x07\x00\x44\x00\xa8\x00\x1e\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1c\x3e\x59\xb1\
\x0d\x06\xf4\x30\x31\xff\xff\x00\x8a\x00\x00\x03\xae\x06\x1e\x02\
\x26\x02\x28\x00\x00\x01\x07\x00\x75\x01\x37\x00\x1e\x00\x14\x00\
\xb0\x00\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x1c\x3e\x59\xb1\x0e\x06\
\xf4\x30\x31\xff\xff\x00\x8a\x00\x00\x03\xae\x06\x1e\x02\x26\x02\
\x28\x00\x00\x01\x06\x00\x9e\x41\x1e\x00\x14\x00\xb0\x00\x45\x58\
\xb0\x06\x2f\x1b\xb1\x06\x1c\x3e\x59\xb1\x10\x04\xf4\x30\x31\xff\
\xff\x00\x8a\x00\x00\x03\xae\x05\xe3\x02\x26\x02\x28\x00\x00\x01\
\x06\x00\x6a\x71\x1e\x00\x17\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\
\xb1\x06\x1c\x3e\x59\xb1\x13\x02\xf4\xb0\x1c\xd0\x30\x31\x00\xff\
\xff\xff\xbe\x00\x00\x01\x5f\x06\x1e\x02\x26\x01\xe3\x00\x00\x01\
\x06\x00\x44\x85\x1e\x00\x14\x00\xb0\x00\x45\x58\xb0\x02\x2f\x1b\
\xb1\x02\x1c\x3e\x59\xb1\x05\x06\xf4\x30\x31\xff\xff\x00\x8e\x00\
\x00\x02\x2f\x06\x1e\x02\x26\x01\xe3\x00\x00\x01\x06\x00\x75\x13\
\x1e\x00\x14\x00\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1c\x3e\
\x59\xb1\x06\x06\xf4\x30\x31\xff\xff\xff\xc7\x00\x00\x02\x24\x06\
\x1e\x02\x26\x01\xe3\x00\x00\x01\x07\x00\x9e\xff\x1e\x00\x1e\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1c\x3e\x59\xb1\
\x08\x04\xf4\x30\x31\xff\xff\xff\xb3\x00\x00\x02\x3c\x05\xe3\x02\
\x26\x01\xe3\x00\x00\x01\x07\x00\x6a\xff\x4e\x00\x1e\x00\x17\x00\
\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1c\x3e\x59\xb1\x0b\x02\
\xf4\xb0\x14\xd0\x30\x31\x00\xff\xff\x00\x8a\x00\x00\x04\x58\x06\
\x0a\x02\x26\x01\xde\x00\x00\x01\x07\x00\xa5\x00\x95\x00\x22\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1c\x3e\x59\xb1\
\x0d\x02\xf4\x30\x31\xff\xff\x00\x60\xff\xf0\x04\x5a\x06\x1e\x02\
\x26\x01\xdd\x00\x00\x01\x07\x00\x44\x00\xee\x00\x1e\x00\x14\x00\
\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1c\x3e\x59\xb1\x1d\x06\
\xf4\x30\x31\xff\xff\x00\x60\xff\xf0\x04\x5a\x06\x1e\x02\x26\x01\
\xdd\x00\x00\x01\x07\x00\x75\x01\x7d\x00\x1e\x00\x14\x00\xb0\x00\
\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1c\x3e\x59\xb1\x1e\x06\xf4\x30\
\x31\xff\xff\x00\x60\xff\xf0\x04\x5a\x06\x1e\x02\x26\x01\xdd\x00\
\x00\x01\x07\x00\x9e\x00\x87\x00\x1e\x00\x14\x00\xb0\x00\x45\x58\
\xb0\x0a\x2f\x1b\xb1\x0a\x1c\x3e\x59\xb1\x20\x04\xf4\x30\x31\xff\
\xff\x00\x60\xff\xf0\x04\x5a\x06\x0a\x02\x26\x01\xdd\x00\x00\x01\
\x07\x00\xa5\x00\x83\x00\x22\x00\x14\x00\xb0\x00\x45\x58\xb0\x0a\
\x2f\x1b\xb1\x0a\x1c\x3e\x59\xb1\x1f\x02\xf4\x30\x31\xff\xff\x00\
\x60\xff\xf0\x04\x5a\x05\xe3\x02\x26\x01\xdd\x00\x00\x01\x07\x00\
\x6a\x00\xb7\x00\x1e\x00\x17\x00\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\
\xb1\x0a\x1c\x3e\x59\xb1\x23\x02\xf4\xb0\x2c\xd0\x30\x31\x00\xff\
\xff\x00\x74\xff\xf0\x04\x0a\x06\x1e\x02\x26\x01\xd7\x00\x00\x01\
\x07\x00\x44\x00\xcf\x00\x1e\x00\x14\x00\xb0\x00\x45\x58\xb0\x09\
\x2f\x1b\xb1\x09\x1c\x3e\x59\xb1\x13\x06\xf4\x30\x31\xff\xff\x00\
\x74\xff\xf0\x04\x0a\x06\x1e\x02\x26\x01\xd7\x00\x00\x01\x07\x00\
\x75\x01\x5e\x00\x1e\x00\x14\x00\xb0\x00\x45\x58\xb0\x11\x2f\x1b\
\xb1\x11\x1c\x3e\x59\xb1\x14\x06\xf4\x30\x31\xff\xff\x00\x74\xff\
\xf0\x04\x0a\x06\x1e\x02\x26\x01\xd7\x00\x00\x01\x06\x00\x9e\x68\
\x1e\x00\x14\x00\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\x09\x1c\x3e\
\x59\xb1\x16\x04\xf4\x30\x31\xff\xff\x00\x74\xff\xf0\x04\x0a\x05\
\xe3\x02\x26\x01\xd7\x00\x00\x01\x07\x00\x6a\x00\x98\x00\x1e\x00\
\x17\x00\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\x09\x1c\x3e\x59\xb1\
\x19\x02\xf4\xb0\x22\xd0\x30\x31\x00\xff\xff\x00\x0d\x00\x00\x04\
\x1c\x06\x1e\x02\x26\x01\xd3\x00\x00\x01\x07\x00\x75\x01\x33\x00\
\x1e\x00\x14\x00\xb0\x00\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x1c\x3e\
\x59\xb1\x0b\x06\xf4\x30\x31\xff\xff\x00\x13\x00\x00\x04\x70\x05\
\xcb\x02\x26\x02\x33\x00\x00\x01\x06\x00\x70\x6c\x26\x00\x13\x00\
\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1c\x3e\x59\xb0\x0c\xdc\
\x30\x31\x00\xff\xff\x00\x13\x00\x00\x04\x70\x05\xf6\x02\x26\x02\
\x33\x00\x00\x01\x07\x00\xa1\x00\x99\x00\x1f\x00\x14\x00\xb0\x00\
\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1c\x3e\x59\xb1\x0e\x08\xf4\x30\
\x31\x00\x02\x00\x13\xfe\x4f\x04\x70\x04\x8d\x00\x16\x00\x19\x00\
\x69\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1c\x3e\x59\xb0\
\x00\x45\x58\xb0\x14\x2f\x1b\xb1\x14\x12\x3e\x59\xb0\x00\x45\x58\
\xb0\x01\x2f\x1b\xb1\x01\x12\x3e\x59\xb0\x00\x45\x58\xb0\x0c\x2f\
\x1b\xb1\x0c\x14\x3e\x59\xb1\x07\x03\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb0\x01\x10\xb0\x11\xd0\xb0\x11\x2f\xb2\x17\x14\x00\x11\
\x12\x39\xb0\x17\x2f\xb1\x13\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\
\x59\xb2\x19\x00\x14\x11\x12\x39\x30\x31\x01\x01\x23\x07\x06\x15\
\x14\x33\x32\x37\x17\x06\x23\x22\x26\x35\x34\x37\x03\x21\x03\x23\
\x01\x03\x21\x03\x02\x98\x01\xd8\x26\x3a\x71\x4e\x30\x34\x0d\x46\
\x5a\x59\x67\xb0\x68\xfd\xf8\x6e\xbd\x01\xdf\x78\x01\x91\xc7\x04\
\x8d\xfb\x73\x2d\x5b\x56\x48\x1a\x79\x2c\x68\x56\x94\x6c\x01\x0a\
\xfe\xe9\x04\x8d\xfd\x21\x01\xfd\x00\xff\xff\x00\x60\xff\xf0\x04\
\x30\x06\x1e\x02\x26\x02\x31\x00\x00\x01\x07\x00\x75\x01\x69\x00\
\x1e\x00\x14\x00\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x1c\x3e\
\x59\xb1\x1f\x06\xf4\x30\x31\xff\xff\x00\x60\xff\xf0\x04\x30\x06\
\x1e\x02\x26\x02\x31\x00\x00\x01\x06\x00\x9e\x73\x1e\x00\x14\x00\
\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x1c\x3e\x59\xb1\x21\x04\
\xf4\x30\x31\xff\xff\x00\x60\xff\xf0\x04\x30\x05\xe0\x02\x26\x02\
\x31\x00\x00\x01\x07\x00\xa2\x01\x50\x00\x1e\x00\x14\x00\xb0\x00\
\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x1c\x3e\x59\xb1\x23\x02\xf4\x30\
\x31\xff\xff\x00\x60\xff\xf0\x04\x30\x06\x1e\x02\x26\x02\x31\x00\
\x00\x01\x07\x00\x9f\x00\x88\x00\x1f\x00\x14\x00\xb0\x00\x45\x58\
\xb0\x0b\x2f\x1b\xb1\x0b\x1c\x3e\x59\xb1\x21\x06\xf4\x30\x31\xff\
\xff\x00\x8a\x00\x00\x04\x1f\x06\x1e\x02\x26\x02\x30\x00\x00\x01\
\x06\x00\x9f\x31\x1f\x00\x14\x00\xb0\x00\x45\x58\xb0\x01\x2f\x1b\
\xb1\x01\x1c\x3e\x59\xb1\x1a\x06\xf4\x30\x31\xff\xff\x00\x8a\x00\
\x00\x03\xae\x05\xcb\x02\x26\x02\x28\x00\x00\x01\x06\x00\x70\x3f\
\x26\x00\x13\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1c\x3e\
\x59\xb0\x0d\xdc\x30\x31\x00\xff\xff\x00\x8a\x00\x00\x03\xae\x05\
\xf6\x02\x26\x02\x28\x00\x00\x01\x06\x00\xa1\x6c\x1f\x00\x14\x00\
\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1c\x3e\x59\xb1\x0f\x08\
\xf4\x30\x31\xff\xff\x00\x8a\x00\x00\x03\xae\x05\xe0\x02\x26\x02\
\x28\x00\x00\x01\x07\x00\xa2\x01\x1e\x00\x1e\x00\x14\x00\xb0\x00\
\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1c\x3e\x59\xb1\x13\x02\xf4\x30\
\x31\x00\x01\x00\x8a\xfe\x4f\x03\xae\x04\x8d\x00\x1b\x00\x7c\x00\
\xb0\x00\x45\x58\xb0\x16\x2f\x1b\xb1\x16\x1c\x3e\x59\xb0\x00\x45\
\x58\xb0\x14\x2f\x1b\xb1\x14\x12\x3e\x59\xb0\x00\x45\x58\xb0\x0f\
\x2f\x1b\xb1\x0f\x14\x3e\x59\xb0\x14\x10\xb0\x1b\xd0\xb0\x1b\x2f\
\xb2\x1f\x1b\x01\x5d\xb2\xdf\x1b\x01\x5d\xb1\x00\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x14\x10\xb1\x02\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb0\x14\x10\xb0\x05\xd0\xb0\x0f\x10\xb1\x0a\
\x03\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x16\x10\xb1\x19\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x21\x11\x21\x15\
\x23\x07\x06\x15\x14\x33\x32\x37\x17\x06\x23\x22\x26\x35\x34\x37\
\x21\x11\x21\x15\x21\x11\x21\x03\x57\xfd\xec\x02\x6b\x3d\x3a\x71\
\x4e\x30\x34\x0d\x46\x5a\x59\x67\x9b\xfd\xca\x03\x1e\xfd\x9b\x02\
\x14\x02\x0e\xfe\x89\x97\x2d\x5b\x56\x48\x1a\x79\x2c\x68\x56\x8a\
\x69\x04\x8d\x99\xfe\xb2\x00\xff\xff\x00\x8a\x00\x00\x03\xae\x06\
\x1e\x02\x26\x02\x28\x00\x00\x01\x06\x00\x9f\x56\x1f\x00\x14\x00\
\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1c\x3e\x59\xb1\x11\x06\
\xf4\x30\x31\xff\xff\x00\x63\xff\xf0\x04\x35\x06\x1e\x02\x26\x01\
\xe5\x00\x00\x01\x06\x00\x9e\x71\x1e\x00\x14\x00\xb0\x00\x45\x58\
\xb0\x0a\x2f\x1b\xb1\x0a\x1c\x3e\x59\xb1\x20\x04\xf4\x30\x31\xff\
\xff\x00\x63\xff\xf0\x04\x35\x05\xf6\x02\x26\x01\xe5\x00\x00\x01\
\x07\x00\xa1\x00\x9c\x00\x1f\x00\x14\x00\xb0\x00\x45\x58\xb0\x0a\
\x2f\x1b\xb1\x0a\x1c\x3e\x59\xb1\x20\x08\xf4\x30\x31\xff\xff\x00\
\x63\xff\xf0\x04\x35\x05\xe0\x02\x26\x01\xe5\x00\x00\x01\x07\x00\
\xa2\x01\x4e\x00\x1e\x00\x14\x00\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\
\xb1\x0a\x1c\x3e\x59\xb1\x25\x02\xf4\x30\x31\xff\xff\x00\x63\xfd\
\xfc\x04\x35\x04\x9d\x02\x26\x01\xe5\x00\x00\x00\x07\x01\xba\x01\
\x4f\xfe\x9d\xff\xff\x00\x8a\x00\x00\x04\x58\x06\x1e\x02\x26\x01\
\xe4\x00\x00\x01\x07\x00\x9e\x00\x90\x00\x1e\x00\x14\x00\xb0\x00\
\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x1c\x3e\x59\xb1\x10\x04\xf4\x30\
\x31\xff\xff\xff\x95\x00\x00\x02\x58\x06\x0a\x02\x26\x01\xe3\x00\
\x00\x01\x07\x00\xa5\xff\x1a\x00\x22\x00\x14\x00\xb0\x00\x45\x58\
\xb0\x03\x2f\x1b\xb1\x03\x1c\x3e\x59\xb1\x07\x02\xf4\x30\x31\xff\
\xff\xff\xaa\x00\x00\x02\x4a\x05\xcb\x02\x26\x01\xe3\x00\x00\x01\
\x07\x00\x70\xff\x1c\x00\x26\x00\x13\x00\xb0\x00\x45\x58\xb0\x02\
\x2f\x1b\xb1\x02\x1c\x3e\x59\xb0\x05\xdc\x30\x31\x00\xff\xff\xff\
\xca\x00\x00\x02\x21\x05\xf6\x02\x26\x01\xe3\x00\x00\x01\x07\x00\
\xa1\xff\x49\x00\x1f\x00\x14\x00\xb0\x00\x45\x58\xb0\x02\x2f\x1b\
\xb1\x02\x1c\x3e\x59\xb1\x07\x08\xf4\x30\x31\xff\xff\x00\x06\xfe\
\x4f\x01\x66\x04\x8d\x02\x26\x01\xe3\x00\x00\x00\x06\x00\xa4\xd4\
\x00\xff\xff\x00\x88\x00\x00\x01\x63\x05\xe0\x02\x26\x01\xe3\x00\
\x00\x01\x06\x00\xa2\xfb\x1e\x00\x14\x00\xb0\x00\x45\x58\xb0\x02\
\x2f\x1b\xb1\x02\x1c\x3e\x59\xb1\x0b\x02\xf4\x30\x31\xff\xff\x00\
\x2b\xff\xf0\x04\x0d\x06\x1e\x02\x26\x01\xe2\x00\x00\x01\x07\x00\
\x9e\x01\x07\x00\x1e\x00\x14\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\
\xb1\x00\x1c\x3e\x59\xb1\x14\x04\xf4\x30\x31\xff\xff\x00\x8a\xfe\
\x05\x04\x57\x04\x8d\x02\x26\x01\xe1\x00\x00\x00\x07\x01\xba\x01\
\x14\xfe\xa6\xff\xff\x00\x82\x00\x00\x03\x8b\x06\x1e\x02\x26\x01\
\xe0\x00\x00\x01\x06\x00\x75\x07\x1e\x00\x14\x00\xb0\x00\x45\x58\
\xb0\x05\x2f\x1b\xb1\x05\x1c\x3e\x59\xb1\x08\x06\xf4\x30\x31\xff\
\xff\x00\x8a\xfe\x07\x03\x8b\x04\x8d\x02\x26\x01\xe0\x00\x00\x00\
\x07\x01\xba\x01\x10\xfe\xa8\xff\xff\x00\x8a\x00\x00\x03\x8b\x04\
\x8e\x02\x26\x01\xe0\x00\x00\x01\x07\x01\xba\x01\x7e\x03\x9f\x00\
\x10\x00\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1c\x3e\x59\x30\
\x31\xff\xff\x00\x8a\x00\x00\x03\x8b\x04\x8d\x02\x26\x01\xe0\x00\
\x00\x00\x07\x00\xa2\x01\x66\xfd\x37\xff\xff\x00\x8a\x00\x00\x04\
\x58\x06\x1e\x02\x26\x01\xde\x00\x00\x01\x07\x00\x75\x01\x8f\x00\
\x1e\x00\x14\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1c\x3e\
\x59\xb1\x0c\x06\xf4\x30\x31\xff\xff\x00\x8a\xfe\x03\x04\x58\x04\
\x8d\x02\x26\x01\xde\x00\x00\x00\x07\x01\xba\x01\x6c\xfe\xa4\xff\
\xff\x00\x8a\x00\x00\x04\x58\x06\x1e\x02\x26\x01\xde\x00\x00\x01\
\x07\x00\x9f\x00\xae\x00\x1f\x00\x14\x00\xb0\x00\x45\x58\xb0\x06\
\x2f\x1b\xb1\x06\x1c\x3e\x59\xb1\x0f\x06\xf4\x30\x31\xff\xff\x00\
\x60\xff\xf0\x04\x5a\x05\xcb\x02\x26\x01\xdd\x00\x00\x01\x07\x00\
\x70\x00\x85\x00\x26\x00\x13\x00\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\
\xb1\x0a\x1c\x3e\x59\xb0\x1d\xdc\x30\x31\x00\xff\xff\x00\x60\xff\
\xf0\x04\x5a\x05\xf6\x02\x26\x01\xdd\x00\x00\x01\x07\x00\xa1\x00\
\xb2\x00\x1f\x00\x14\x00\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\
\x1c\x3e\x59\xb1\x1f\x08\xf4\x30\x31\xff\xff\x00\x60\xff\xf0\x04\
\x5a\x06\x1d\x02\x26\x01\xdd\x00\x00\x01\x07\x00\xa6\x01\x07\x00\
\x1e\x00\x17\x00\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1c\x3e\
\x59\xb1\x1e\x06\xf4\xb0\x22\xd0\x30\x31\x00\xff\xff\x00\x8a\x00\
\x00\x04\x25\x06\x1e\x02\x26\x01\xda\x00\x00\x01\x07\x00\x75\x01\
\x27\x00\x1e\x00\x14\x00\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\
\x1c\x3e\x59\xb1\x19\x06\xf4\x30\x31\xff\xff\x00\x8a\xfe\x07\x04\
\x25\x04\x8d\x02\x26\x01\xda\x00\x00\x00\x07\x01\xba\x01\x0d\xfe\
\xa8\xff\xff\x00\x8a\x00\x00\x04\x25\x06\x1e\x02\x26\x01\xda\x00\
\x00\x01\x06\x00\x9f\x46\x1f\x00\x14\x00\xb0\x00\x45\x58\xb0\x04\
\x2f\x1b\xb1\x04\x1c\x3e\x59\xb1\x1c\x06\xf4\x30\x31\xff\xff\x00\
\x43\xff\xf0\x03\xdd\x06\x1e\x02\x26\x01\xd9\x00\x00\x01\x07\x00\
\x75\x01\x3e\x00\x1e\x00\x14\x00\xb0\x00\x45\x58\xb0\x09\x2f\x1b\
\xb1\x09\x1c\x3e\x59\xb1\x28\x06\xf4\x30\x31\xff\xff\x00\x43\xff\
\xf0\x03\xdd\x06\x1e\x02\x26\x01\xd9\x00\x00\x01\x06\x00\x9e\x48\
\x1e\x00\x14\x00\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\x09\x1c\x3e\
\x59\xb1\x2a\x04\xf4\x30\x31\xff\xff\x00\x43\xfe\x4d\x03\xdd\x04\
\x9d\x02\x26\x01\xd9\x00\x00\x00\x07\x00\x79\x01\x53\x00\x00\xff\
\xff\x00\x43\xff\xf0\x03\xdd\x06\x1e\x02\x26\x01\xd9\x00\x00\x01\
\x06\x00\x9f\x5d\x1f\x00\x14\x00\xb0\x00\x45\x58\xb0\x09\x2f\x1b\
\xb1\x09\x1c\x3e\x59\xb1\x2a\x06\xf4\x30\x31\xff\xff\x00\x28\xfe\
\x01\x03\xfd\x04\x8d\x02\x26\x01\xd8\x00\x00\x00\x07\x01\xba\x01\
\x14\xfe\xa2\xff\xff\x00\x28\x00\x00\x03\xfd\x06\x1e\x02\x26\x01\
\xd8\x00\x00\x01\x06\x00\x9f\x50\x1f\x00\x14\x00\xb0\x00\x45\x58\
\xb0\x06\x2f\x1b\xb1\x06\x1c\x3e\x59\xb1\x0d\x06\xf4\x30\x31\xff\
\xff\x00\x28\xfe\x4f\x03\xfd\x04\x8d\x02\x26\x01\xd8\x00\x00\x00\
\x07\x00\x79\x01\x3e\x00\x02\xff\xff\x00\x74\xff\xf0\x04\x0a\x06\
\x0a\x02\x26\x01\xd7\x00\x00\x01\x06\x00\xa5\x64\x22\x00\x14\x00\
\xb0\x00\x45\x58\xb0\x11\x2f\x1b\xb1\x11\x1c\x3e\x59\xb1\x15\x02\
\xf4\x30\x31\xff\xff\x00\x74\xff\xf0\x04\x0a\x05\xcb\x02\x26\x01\
\xd7\x00\x00\x01\x06\x00\x70\x66\x26\x00\x13\x00\xb0\x00\x45\x58\
\xb0\x09\x2f\x1b\xb1\x09\x1c\x3e\x59\xb0\x13\xdc\x30\x31\x00\xff\
\xff\x00\x74\xff\xf0\x04\x0a\x05\xf6\x02\x26\x01\xd7\x00\x00\x01\
\x07\x00\xa1\x00\x93\x00\x1f\x00\x14\x00\xb0\x00\x45\x58\xb0\x09\
\x2f\x1b\xb1\x09\x1c\x3e\x59\xb1\x15\x08\xf4\x30\x31\xff\xff\x00\
\x74\xff\xf0\x04\x0a\x06\x79\x02\x26\x01\xd7\x00\x00\x01\x07\x00\
\xa3\x00\xef\x00\x29\x00\x17\x00\xb0\x00\x45\x58\xb0\x09\x2f\x1b\
\xb1\x09\x1c\x3e\x59\xb1\x15\x06\xf4\xb0\x1f\xd0\x30\x31\x00\xff\
\xff\x00\x74\xff\xf0\x04\x14\x06\x1d\x02\x26\x01\xd7\x00\x00\x01\
\x07\x00\xa6\x00\xe8\x00\x1e\x00\x17\x00\xb0\x00\x45\x58\xb0\x11\
\x2f\x1b\xb1\x11\x1c\x3e\x59\xb1\x14\x06\xf4\xb0\x18\xd0\x30\x31\
\x00\x00\x01\x00\x74\xfe\x74\x04\x0a\x04\x8d\x00\x20\x00\x55\x00\
\xb0\x00\x45\x58\xb0\x18\x2f\x1b\xb1\x18\x1c\x3e\x59\xb0\x00\x45\
\x58\xb0\x0e\x2f\x1b\xb1\x0e\x14\x3e\x59\xb0\x00\x45\x58\xb0\x13\
\x2f\x1b\xb1\x13\x12\x3e\x59\xb0\x18\x10\xb0\x20\xd0\xb2\x05\x13\
\x20\x11\x12\x39\xb0\x0e\x10\xb1\x09\x03\xb0\x0a\x2b\x58\x21\xd8\
\x1b\xf4\x59\xb0\x13\x10\xb1\x1c\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\x30\x31\x01\x11\x14\x06\x07\x07\x06\x15\x14\x33\x32\x37\
\x17\x06\x23\x22\x26\x35\x34\x37\x22\x26\x27\x11\x33\x11\x14\x16\
\x33\x32\x36\x35\x11\x04\x0a\x78\x6f\x32\x6c\x4e\x30\x34\x0d\x46\
\x5a\x59\x67\x5a\xcd\xf9\x04\xb7\x8f\x85\x83\x8f\x04\x8d\xfc\xf3\
\x7a\xba\x30\x28\x5b\x52\x48\x1a\x79\x2c\x68\x56\x68\x56\xce\xb8\
\x03\x17\xfc\xf4\x79\x81\x7f\x7b\x03\x0c\x00\xff\xff\x00\x31\x00\
\x00\x05\xf1\x06\x1e\x02\x26\x01\xd5\x00\x00\x01\x07\x00\x9e\x01\
\x3b\x00\x1e\x00\x14\x00\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\
\x1c\x3e\x59\xb1\x17\x04\xf4\x30\x31\xff\xff\x00\x0d\x00\x00\x04\
\x1c\x06\x1e\x02\x26\x01\xd3\x00\x00\x01\x06\x00\x9e\x3d\x1e\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1c\x3e\x59\xb1\
\x0d\x04\xf4\x30\x31\xff\xff\x00\x0d\x00\x00\x04\x1c\x05\xe3\x02\
\x26\x01\xd3\x00\x00\x01\x06\x00\x6a\x6d\x1e\x00\x17\x00\xb0\x00\
\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1c\x3e\x59\xb1\x10\x02\xf4\xb0\
\x19\xd0\x30\x31\x00\xff\xff\x00\x47\x00\x00\x03\xe0\x06\x1e\x02\
\x26\x01\xd2\x00\x00\x01\x07\x00\x75\x01\x33\x00\x1e\x00\x14\x00\
\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1c\x3e\x59\xb1\x0c\x06\
\xf4\x30\x31\xff\xff\x00\x47\x00\x00\x03\xe0\x05\xe0\x02\x26\x01\
\xd2\x00\x00\x01\x07\x00\xa2\x01\x1a\x00\x1e\x00\x14\x00\xb0\x00\
\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x1c\x3e\x59\xb1\x11\x02\xf4\x30\
\x31\xff\xff\x00\x47\x00\x00\x03\xe0\x06\x1e\x02\x26\x01\xd2\x00\
\x00\x01\x06\x00\x9f\x52\x1f\x00\x14\x00\xb0\x00\x45\x58\xb0\x07\
\x2f\x1b\xb1\x07\x1c\x3e\x59\xb1\x0f\x06\xf4\x30\x31\xff\xff\x00\
\x1c\x00\x00\x05\x1d\x06\x3f\x02\x26\x00\x25\x00\x00\x00\x06\x00\
\xae\x04\x00\xff\xff\xff\x29\x00\x00\x04\x46\x06\x3f\x02\x26\x00\
\x29\x00\x00\x00\x07\x00\xae\xfe\x72\x00\x00\xff\xff\xff\x37\x00\
\x00\x05\x08\x06\x41\x02\x26\x00\x2c\x00\x00\x00\x07\x00\xae\xfe\
\x80\x00\x02\xff\xff\xff\x3d\x00\x00\x01\x77\x06\x40\x02\x26\x00\
\x2d\x00\x00\x00\x07\x00\xae\xfe\x86\x00\x01\xff\xff\xff\xe6\xff\
\xec\x05\x1d\x06\x3f\x00\x26\x00\x33\x14\x00\x00\x07\x00\xae\xff\
\x2f\x00\x00\xff\xff\xff\x14\x00\x00\x05\x1f\x06\x3f\x00\x26\x00\
\x3d\x64\x00\x00\x07\x00\xae\xfe\x5d\x00\x00\xff\xff\xff\xe9\x00\
\x00\x04\xdf\x06\x3f\x00\x26\x00\xba\x14\x00\x00\x07\x00\xae\xff\
\x32\x00\x00\xff\xff\xff\x9b\xff\xf4\x02\xad\x06\x74\x02\x26\x00\
\xc3\x00\x00\x01\x07\x00\xaf\xff\x2a\xff\xec\x00\x1d\x00\xb0\x00\
\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x1a\x3e\x59\xb1\x18\x01\xf4\xb0\
\x0f\xd0\xb0\x18\x10\xb0\x21\xd0\x30\x31\x00\xff\xff\x00\x1c\x00\
\x00\x05\x1d\x05\xb0\x02\x06\x00\x25\x00\x00\xff\xff\x00\xa9\x00\
\x00\x04\x88\x05\xb0\x02\x06\x00\x26\x00\x00\xff\xff\x00\xa9\x00\
\x00\x04\x46\x05\xb0\x02\x06\x00\x29\x00\x00\xff\xff\x00\x56\x00\
\x00\x04\x7a\x05\xb0\x02\x06\x00\x3e\x00\x00\xff\xff\x00\xa9\x00\
\x00\x05\x08\x05\xb0\x02\x06\x00\x2c\x00\x00\xff\xff\x00\xb7\x00\
\x00\x01\x77\x05\xb0\x02\x06\x00\x2d\x00\x00\xff\xff\x00\xa9\x00\
\x00\x05\x05\x05\xb0\x02\x06\x00\x2f\x00\x00\xff\xff\x00\xa9\x00\
\x00\x06\x52\x05\xb0\x02\x06\x00\x31\x00\x00\xff\xff\x00\xa9\x00\
\x00\x05\x08\x05\xb0\x02\x06\x00\x32\x00\x00\xff\xff\x00\x76\xff\
\xec\x05\x09\x05\xc4\x02\x06\x00\x33\x00\x00\xff\xff\x00\xa9\x00\
\x00\x04\xc0\x05\xb0\x02\x06\x00\x34\x00\x00\xff\xff\x00\x31\x00\
\x00\x04\x97\x05\xb0\x02\x06\x00\x38\x00\x00\xff\xff\x00\x0f\x00\
\x00\x04\xbb\x05\xb0\x02\x06\x00\x3d\x00\x00\xff\xff\x00\x39\x00\
\x00\x04\xce\x05\xb0\x02\x06\x00\x3c\x00\x00\xff\xff\xff\xd5\x00\
\x00\x02\x5e\x07\x07\x02\x26\x00\x2d\x00\x00\x01\x07\x00\x6a\xff\
\x70\x01\x42\x00\x17\x00\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\
\x1e\x3e\x59\xb1\x0b\x04\xf4\xb0\x14\xd0\x30\x31\x00\xff\xff\x00\
\x0f\x00\x00\x04\xbb\x06\xfb\x02\x26\x00\x3d\x00\x00\x01\x07\x00\
\x6a\x00\xc2\x01\x36\x00\x17\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\
\xb1\x08\x1e\x3e\x59\xb1\x10\x04\xf4\xb0\x19\xd0\x30\x31\x00\xff\
\xff\x00\x64\xff\xeb\x04\x77\x06\x3a\x02\x26\x00\xbb\x00\x00\x01\
\x07\x00\xae\x01\x75\xff\xfb\x00\x14\x00\xb0\x00\x45\x58\xb0\x13\
\x2f\x1b\xb1\x13\x1a\x3e\x59\xb1\x24\x01\xf4\x30\x31\xff\xff\x00\
\x63\xff\xec\x03\xec\x06\x39\x02\x26\x00\xbf\x00\x00\x01\x07\x00\
\xae\x01\x2b\xff\xfa\x00\x14\x00\xb0\x00\x45\x58\xb0\x15\x2f\x1b\
\xb1\x15\x1a\x3e\x59\xb1\x28\x01\xf4\x30\x31\xff\xff\x00\x91\xfe\
\x61\x03\xf0\x06\x3a\x02\x26\x00\xc1\x00\x00\x01\x07\x00\xae\x01\
\x46\xff\xfb\x00\x14\x00\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\
\x1a\x3e\x59\xb1\x15\x01\xf4\x30\x31\xff\xff\x00\xc3\xff\xf4\x02\
\x4b\x06\x25\x02\x26\x00\xc3\x00\x00\x01\x06\x00\xae\x2a\xe6\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\x1a\x3e\x59\xb1\
\x0f\x01\xf4\x30\x31\xff\xff\x00\x8f\xff\xec\x03\xf6\x06\x74\x02\
\x26\x00\xcb\x00\x00\x01\x06\x00\xaf\x21\xec\x00\x1d\x00\xb0\x00\
\x45\x58\xb0\x00\x2f\x1b\xb1\x00\x1a\x3e\x59\xb1\x1d\x01\xf4\xb0\
\x15\xd0\xb0\x1d\x10\xb0\x27\xd0\x30\x31\x00\xff\xff\x00\x9a\x00\
\x00\x04\x3f\x04\x3a\x02\x06\x00\x8e\x00\x00\xff\xff\x00\x5b\xff\
\xec\x04\x34\x04\x4e\x02\x06\x00\x53\x00\x00\xff\xff\x00\x9a\xfe\
\x60\x03\xee\x04\x3a\x02\x06\x00\x76\x00\x00\xff\xff\x00\x21\x00\
\x00\x03\xba\x04\x3a\x02\x06\x00\x5a\x00\x00\x00\x01\x00\x5a\xfe\
\x4c\x04\x74\x04\x49\x00\x1b\x00\x6e\x00\xb0\x00\x45\x58\xb0\x04\
\x2f\x1b\xb1\x04\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\xb1\
\x00\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x13\x2f\x1b\xb1\x13\x14\x3e\
\x59\xb0\x00\x45\x58\xb0\x0e\x2f\x1b\xb1\x0e\x14\x3e\x59\xb2\x03\
\x04\x13\x11\x12\x39\xb2\x12\x13\x04\x11\x12\x39\xb2\x06\x03\x12\
\x11\x12\x39\xb1\x09\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\
\x15\x12\x03\x11\x12\x39\xb0\x00\x10\xb1\x18\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\x30\x31\x13\x32\x17\x13\x13\x33\x01\x13\x16\
\x17\x33\x37\x07\x06\x23\x22\x26\x27\x03\x01\x23\x01\x03\x26\x23\
\x07\x27\x36\xc2\xae\x58\x95\xff\xbb\xfe\xa0\xda\x3d\x44\x1a\x48\
\x2f\x18\x25\x5b\x78\x3e\xa2\xfe\xe7\xc4\x01\x83\xa8\x49\x6b\x44\
\x01\x44\x04\x49\xc0\xfe\xad\x02\x04\xfd\x2f\xfe\x0e\x80\x03\x05\
\x9e\x0f\x5e\x86\x01\x72\xfd\xbf\x03\x10\x01\x83\xb7\x05\x94\x0f\
\x00\xff\xff\xff\xe5\xff\xf4\x02\x6e\x05\xb1\x02\x26\x00\xc3\x00\
\x00\x01\x06\x00\x6a\x80\xec\x00\x17\x00\xb0\x00\x45\x58\xb0\x0c\
\x2f\x1b\xb1\x0c\x1a\x3e\x59\xb1\x14\x01\xf4\xb0\x1d\xd0\x30\x31\
\x00\xff\xff\x00\x8f\xff\xec\x03\xf6\x05\xb1\x02\x26\x00\xcb\x00\
\x00\x01\x06\x00\x6a\x77\xec\x00\x17\x00\xb0\x00\x45\x58\xb0\x00\
\x2f\x1b\xb1\x00\x1a\x3e\x59\xb1\x1a\x01\xf4\xb0\x23\xd0\x30\x31\
\x00\xff\xff\x00\x5b\xff\xec\x04\x34\x06\x3a\x02\x26\x00\x53\x00\
\x00\x01\x07\x00\xae\x01\x43\xff\xfb\x00\x14\x00\xb0\x00\x45\x58\
\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\x59\xb1\x1e\x01\xf4\x30\x31\xff\
\xff\x00\x8f\xff\xec\x03\xf6\x06\x25\x02\x26\x00\xcb\x00\x00\x01\
\x07\x00\xae\x01\x22\xff\xe6\x00\x14\x00\xb0\x00\x45\x58\xb0\x00\
\x2f\x1b\xb1\x00\x1a\x3e\x59\xb1\x15\x01\xf4\x30\x31\xff\xff\x00\
\x7a\xff\xec\x06\x19\x06\x22\x02\x26\x00\xce\x00\x00\x01\x07\x00\
\xae\x02\x53\xff\xe3\x00\x14\x00\xb0\x00\x45\x58\xb0\x00\x2f\x1b\
\xb1\x00\x1a\x3e\x59\xb1\x26\x01\xf4\x30\x31\xff\xff\x00\xa9\x00\
\x00\x04\x46\x07\x07\x02\x26\x00\x29\x00\x00\x01\x07\x00\x6a\x00\
\xc4\x01\x42\x00\x17\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\
\x1e\x3e\x59\xb1\x13\x04\xf4\xb0\x1c\xd0\x30\x31\x00\xff\xff\x00\
\xb1\x00\x00\x04\x30\x07\x42\x02\x26\x00\xb1\x00\x00\x01\x07\x00\
\x75\x01\x90\x01\x42\x00\x14\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\
\xb1\x04\x1e\x3e\x59\xb1\x08\x08\xf4\x30\x31\x00\x01\x00\x50\xff\
\xec\x04\x72\x05\xc4\x00\x26\x00\x64\xb2\x00\x27\x28\x11\x12\x39\
\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1e\x3e\x59\xb0\x00\
\x45\x58\xb0\x1a\x2f\x1b\xb1\x1a\x12\x3e\x59\xb0\x06\x10\xb0\x0b\
\xd0\xb0\x06\x10\xb1\x0e\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb2\x26\x1a\x06\x11\x12\x39\xb0\x26\x10\xb1\x14\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x1a\x10\xb0\x1f\xd0\xb0\x1a\x10\xb1\
\x22\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x26\x26\
\x35\x34\x24\x33\x32\x16\x16\x15\x23\x34\x26\x23\x22\x06\x15\x14\
\x16\x04\x16\x16\x15\x14\x04\x23\x22\x24\x26\x35\x33\x14\x16\x33\
\x32\x36\x34\x26\x02\x56\xf7\xe1\x01\x13\xdc\x96\xeb\x81\xc1\xa8\
\x99\x8e\x9f\x97\x01\x6b\xcd\x63\xfe\xec\xe7\x96\xfe\xfc\x8d\xc1\
\xc3\xa3\x98\xa2\x96\x02\x89\x47\xcf\x98\xac\xe1\x74\xcc\x79\x84\
\x97\x7d\x6f\x59\x7b\x66\x7b\xa4\x6f\xb1\xd5\x73\xc8\x7f\x84\x99\
\x7c\xd6\x75\xff\xff\x00\xb7\x00\x00\x01\x77\x05\xb0\x02\x06\x00\
\x2d\x00\x00\xff\xff\xff\xd5\x00\x00\x02\x5e\x07\x07\x02\x26\x00\
\x2d\x00\x00\x01\x07\x00\x6a\xff\x70\x01\x42\x00\x17\x00\xb0\x00\
\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1e\x3e\x59\xb1\x0b\x04\xf4\xb0\
\x14\xd0\x30\x31\x00\xff\xff\x00\x35\xff\xec\x03\xcc\x05\xb0\x02\
\x06\x00\x2e\x00\x00\xff\xff\x00\xb2\x00\x00\x05\x1d\x05\xb0\x02\
\x06\x02\x2c\x00\x00\xff\xff\x00\xa9\x00\x00\x05\x05\x07\x30\x02\
\x26\x00\x2f\x00\x00\x01\x07\x00\x75\x01\x7b\x01\x30\x00\x14\x00\
\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x1e\x3e\x59\xb1\x0e\x08\
\xf4\x30\x31\xff\xff\x00\x4d\xff\xeb\x04\xcb\x07\x1a\x02\x26\x00\
\xde\x00\x00\x01\x07\x00\xa1\x00\xda\x01\x43\x00\x13\x00\xb0\x00\
\x45\x58\xb0\x11\x2f\x1b\xb1\x11\x1e\x3e\x59\xb0\x15\xdc\x30\x31\
\x00\xff\xff\x00\x1c\x00\x00\x05\x1d\x05\xb0\x02\x06\x00\x25\x00\
\x00\xff\xff\x00\xa9\x00\x00\x04\x88\x05\xb0\x02\x06\x00\x26\x00\
\x00\xff\xff\x00\xb1\x00\x00\x04\x30\x05\xb0\x02\x06\x00\xb1\x00\
\x00\xff\xff\x00\xa9\x00\x00\x04\x46\x05\xb0\x02\x06\x00\x29\x00\
\x00\xff\xff\x00\xb1\x00\x00\x04\xff\x07\x1a\x02\x26\x00\xdc\x00\
\x00\x01\x07\x00\xa1\x01\x31\x01\x43\x00\x13\x00\xb0\x00\x45\x58\
\xb0\x08\x2f\x1b\xb1\x08\x1e\x3e\x59\xb0\x0d\xdc\x30\x31\x00\xff\
\xff\x00\xa9\x00\x00\x06\x52\x05\xb0\x02\x06\x00\x31\x00\x00\xff\
\xff\x00\xa9\x00\x00\x05\x08\x05\xb0\x02\x06\x00\x2c\x00\x00\xff\
\xff\x00\x76\xff\xec\x05\x09\x05\xc4\x02\x06\x00\x33\x00\x00\xff\
\xff\x00\xb2\x00\x00\x05\x01\x05\xb0\x02\x06\x00\xb6\x00\x00\xff\
\xff\x00\xa9\x00\x00\x04\xc0\x05\xb0\x02\x06\x00\x34\x00\x00\xff\
\xff\x00\x77\xff\xec\x04\xd8\x05\xc4\x02\x06\x00\x27\x00\x00\xff\
\xff\x00\x31\x00\x00\x04\x97\x05\xb0\x02\x06\x00\x38\x00\x00\xff\
\xff\x00\x39\x00\x00\x04\xce\x05\xb0\x02\x06\x00\x3c\x00\x00\xff\
\xff\x00\x6d\xff\xec\x03\xea\x04\x4e\x02\x06\x00\x45\x00\x00\xff\
\xff\x00\x5d\xff\xec\x03\xf3\x04\x4e\x02\x06\x00\x49\x00\x00\xff\
\xff\x00\x9c\x00\x00\x04\x01\x05\xc4\x02\x26\x00\xf0\x00\x00\x01\
\x07\x00\xa1\x00\xa2\xff\xed\x00\x13\x00\xb0\x00\x45\x58\xb0\x08\
\x2f\x1b\xb1\x08\x1a\x3e\x59\xb0\x0d\xdc\x30\x31\x00\xff\xff\x00\
\x5b\xff\xec\x04\x34\x04\x4e\x02\x06\x00\x53\x00\x00\xff\xff\x00\
\x8c\xfe\x60\x04\x1e\x04\x4e\x02\x06\x00\x54\x00\x00\x00\x01\x00\
\x5c\xff\xec\x03\xec\x04\x4e\x00\x1d\x00\x4b\xb2\x10\x1e\x1f\x11\
\x12\x39\x00\xb0\x00\x45\x58\xb0\x10\x2f\x1b\xb1\x10\x1a\x3e\x59\
\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x12\x3e\x59\xb1\x00\x01\
\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x08\x10\xb0\x03\xd0\xb0\
\x10\x10\xb0\x14\xd0\xb0\x10\x10\xb1\x17\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\x30\x31\x25\x32\x36\x37\x33\x0e\x02\x23\x22\x00\
\x11\x35\x34\x36\x36\x33\x32\x16\x17\x23\x26\x26\x23\x22\x06\x15\
\x15\x14\x16\x02\x3e\x63\x94\x08\xaf\x05\x76\xc5\x6e\xdd\xfe\xfb\
\x74\xd9\x94\xb6\xf1\x08\xaf\x08\x8f\x69\x8d\x9b\x9a\x83\x78\x5a\
\x5d\xa8\x64\x01\x27\x01\x00\x1f\x9e\xf6\x88\xda\xae\x69\x87\xcb\
\xc0\x23\xbb\xca\x00\xff\xff\x00\x16\xfe\x4b\x03\xb0\x04\x3a\x02\
\x06\x00\x5d\x00\x00\xff\xff\x00\x29\x00\x00\x03\xca\x04\x3a\x02\
\x06\x00\x5c\x00\x00\xff\xff\x00\x5d\xff\xec\x03\xf3\x05\xc5\x02\
\x26\x00\x49\x00\x00\x01\x07\x00\x6a\x00\x8e\x00\x00\x00\x17\x00\
\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1a\x3e\x59\xb1\x25\x01\
\xf4\xb0\x2e\xd0\x30\x31\x00\xff\xff\x00\x9a\x00\x00\x03\x47\x05\
\xec\x02\x26\x00\xec\x00\x00\x01\x07\x00\x75\x00\xcd\xff\xec\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\x59\xb1\
\x08\x09\xf4\x30\x31\xff\xff\x00\x5f\xff\xec\x03\xbb\x04\x4e\x02\
\x06\x00\x57\x00\x00\xff\xff\x00\x8d\x00\x00\x01\x68\x05\xc4\x02\
\x06\x00\x4d\x00\x00\xff\xff\xff\xbb\x00\x00\x02\x44\x05\xc4\x02\
\x26\x00\x8d\x00\x00\x01\x07\x00\x6a\xff\x56\xff\xff\x00\x17\x00\
\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1a\x3e\x59\xb1\x0b\x01\
\xf4\xb0\x14\xd0\x30\x31\x00\xff\xff\xff\xbf\xfe\x4b\x01\x59\x05\
\xc4\x02\x06\x00\x4e\x00\x00\xff\xff\x00\x9c\x00\x00\x04\x3f\x05\
\xeb\x02\x26\x00\xf1\x00\x00\x01\x07\x00\x75\x01\x3b\xff\xeb\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\x59\xb1\
\x0f\x09\xf4\x30\x31\xff\xff\x00\x16\xfe\x4b\x03\xb0\x05\xd8\x02\
\x26\x00\x5d\x00\x00\x01\x06\x00\xa1\x50\x01\x00\x13\x00\xb0\x00\
\x45\x58\xb0\x0f\x2f\x1b\xb1\x0f\x1a\x3e\x59\xb0\x13\xdc\x30\x31\
\x00\xff\xff\x00\x3d\x00\x00\x06\xed\x07\x36\x02\x26\x00\x3b\x00\
\x00\x01\x07\x00\x44\x02\x2c\x01\x36\x00\x14\x00\xb0\x00\x45\x58\
\xb0\x03\x2f\x1b\xb1\x03\x1e\x3e\x59\xb1\x14\x08\xf4\x30\x31\xff\
\xff\x00\x2b\x00\x00\x05\xd3\x06\x00\x02\x26\x00\x5b\x00\x00\x01\
\x07\x00\x44\x01\x8b\x00\x00\x00\x14\x00\xb0\x00\x45\x58\xb0\x0b\
\x2f\x1b\xb1\x0b\x1a\x3e\x59\xb1\x0e\x09\xf4\x30\x31\xff\xff\x00\
\x3d\x00\x00\x06\xed\x07\x36\x02\x26\x00\x3b\x00\x00\x01\x07\x00\
\x75\x02\xbb\x01\x36\x00\x14\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\
\xb1\x04\x1e\x3e\x59\xb1\x15\x08\xf4\x30\x31\xff\xff\x00\x2b\x00\
\x00\x05\xd3\x06\x00\x02\x26\x00\x5b\x00\x00\x01\x07\x00\x75\x02\
\x1a\x00\x00\x00\x14\x00\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\xb1\x0c\
\x1a\x3e\x59\xb1\x0f\x09\xf4\x30\x31\xff\xff\x00\x3d\x00\x00\x06\
\xed\x06\xfb\x02\x26\x00\x3b\x00\x00\x01\x07\x00\x6a\x01\xf5\x01\
\x36\x00\x17\x00\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1e\x3e\
\x59\xb1\x1a\x04\xf4\xb0\x23\xd0\x30\x31\x00\xff\xff\x00\x2b\x00\
\x00\x05\xd3\x05\xc5\x02\x26\x00\x5b\x00\x00\x01\x07\x00\x6a\x01\
\x54\x00\x00\x00\x17\x00\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\
\x1a\x3e\x59\xb1\x14\x01\xf4\xb0\x1d\xd0\x30\x31\x00\xff\xff\x00\
\x0f\x00\x00\x04\xbb\x07\x36\x02\x26\x00\x3d\x00\x00\x01\x07\x00\
\x44\x00\xf9\x01\x36\x00\x14\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\
\xb1\x08\x1e\x3e\x59\xb1\x0a\x08\xf4\x30\x31\xff\xff\x00\x16\xfe\
\x4b\x03\xb0\x06\x00\x02\x26\x00\x5d\x00\x00\x01\x07\x00\x44\x00\
\x8c\x00\x00\x00\x14\x00\xb0\x00\x45\x58\xb0\x0f\x2f\x1b\xb1\x0f\
\x1a\x3e\x59\xb1\x11\x09\xf4\x30\x31\xff\xff\x00\x67\x04\x21\x00\
\xfd\x06\x00\x02\x06\x00\x0b\x00\x00\xff\xff\x00\x88\x04\x12\x02\
\x23\x06\x00\x02\x06\x00\x06\x00\x00\xff\xff\x00\xa0\xff\xf5\x03\
\x8a\x05\xb0\x00\x26\x00\x05\x00\x00\x00\x07\x00\x05\x02\x0f\x00\
\x00\xff\xff\xff\xb4\xfe\x4b\x02\x3f\x05\xd8\x02\x26\x00\x9c\x00\
\x00\x01\x07\x00\x9f\xff\x48\xff\xd9\x00\x14\x00\xb0\x00\x45\x58\
\xb0\x0d\x2f\x1b\xb1\x0d\x1a\x3e\x59\xb1\x13\x01\xf4\x30\x31\xff\
\xff\x00\x30\x04\x16\x01\x47\x06\x00\x02\x06\x01\x85\x00\x00\xff\
\xff\x00\xa9\x00\x00\x06\x52\x07\x36\x02\x26\x00\x31\x00\x00\x01\
\x07\x00\x75\x02\x99\x01\x36\x00\x14\x00\xb0\x00\x45\x58\xb0\x02\
\x2f\x1b\xb1\x02\x1e\x3e\x59\xb1\x11\x08\xf4\x30\x31\xff\xff\x00\
\x8b\x00\x00\x06\x78\x06\x00\x02\x26\x00\x51\x00\x00\x01\x07\x00\
\x75\x02\xad\x00\x00\x00\x14\x00\xb0\x00\x45\x58\xb0\x03\x2f\x1b\
\xb1\x03\x1a\x3e\x59\xb1\x20\x09\xf4\x30\x31\xff\xff\x00\x1c\xfe\
\x6b\x05\x1d\x05\xb0\x02\x26\x00\x25\x00\x00\x00\x07\x00\xa7\x01\
\x7f\x00\x00\xff\xff\x00\x6d\xfe\x6b\x03\xea\x04\x4e\x02\x26\x00\
\x45\x00\x00\x00\x07\x00\xa7\x00\xc7\x00\x00\xff\xff\x00\xa9\x00\
\x00\x04\x46\x07\x42\x02\x26\x00\x29\x00\x00\x01\x07\x00\x44\x00\
\xfb\x01\x42\x00\x14\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\
\x1e\x3e\x59\xb1\x0d\x08\xf4\x30\x31\xff\xff\x00\xb1\x00\x00\x04\
\xff\x07\x42\x02\x26\x00\xdc\x00\x00\x01\x07\x00\x44\x01\x6d\x01\
\x42\x00\x14\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1e\x3e\
\x59\xb1\x0b\x08\xf4\x30\x31\xff\xff\x00\x5d\xff\xec\x03\xf3\x06\
\x00\x02\x26\x00\x49\x00\x00\x01\x07\x00\x44\x00\xc5\x00\x00\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1a\x3e\x59\xb1\
\x1f\x09\xf4\x30\x31\xff\xff\x00\x9c\x00\x00\x04\x01\x05\xec\x02\
\x26\x00\xf0\x00\x00\x01\x07\x00\x44\x00\xde\xff\xec\x00\x14\x00\
\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1a\x3e\x59\xb1\x0b\x09\
\xf4\x30\x31\xff\xff\x00\x5a\x00\x00\x05\x21\x05\xb0\x02\x06\x00\
\xb9\x00\x00\xff\xff\x00\x5f\xfe\x28\x05\x43\x04\x3a\x02\x06\x00\
\xcd\x00\x00\xff\xff\x00\x16\x00\x00\x04\xdd\x06\xe8\x02\x26\x01\
\x19\x00\x00\x01\x07\x00\xac\x04\x39\x00\xfa\x00\x17\x00\xb0\x00\
\x45\x58\xb0\x0f\x2f\x1b\xb1\x0f\x1e\x3e\x59\xb1\x11\x08\xf4\xb0\
\x15\xd0\x30\x31\x00\xff\xff\xff\xfb\x00\x00\x04\x0b\x05\xc1\x02\
\x26\x01\x1a\x00\x00\x01\x07\x00\xac\x03\xd4\xff\xd3\x00\x17\x00\
\xb0\x00\x45\x58\xb0\x11\x2f\x1b\xb1\x11\x1a\x3e\x59\xb1\x13\x09\
\xf4\xb0\x17\xd0\x30\x31\x00\xff\xff\x00\x5b\xfe\x4b\x08\x40\x04\
\x4e\x00\x26\x00\x53\x00\x00\x00\x07\x00\x5d\x04\x90\x00\x00\xff\
\xff\x00\x76\xfe\x4b\x09\x30\x05\xc4\x00\x26\x00\x33\x00\x00\x00\
\x07\x00\x5d\x05\x80\x00\x00\xff\xff\x00\x50\xfe\x51\x04\x6a\x05\
\xc4\x02\x26\x00\xdb\x00\x00\x00\x07\x02\x51\x01\x9c\xff\xb8\xff\
\xff\x00\x58\xfe\x52\x03\xac\x04\x4d\x02\x26\x00\xef\x00\x00\x00\
\x07\x02\x51\x01\x43\xff\xb9\xff\xff\x00\x77\xfe\x51\x04\xd8\x05\
\xc4\x02\x26\x00\x27\x00\x00\x00\x07\x02\x51\x01\xe5\xff\xb8\xff\
\xff\x00\x5c\xfe\x51\x03\xec\x04\x4e\x02\x26\x00\x47\x00\x00\x00\
\x07\x02\x51\x01\x52\xff\xb8\xff\xff\x00\x0f\x00\x00\x04\xbb\x05\
\xb0\x02\x06\x00\x3d\x00\x00\xff\xff\x00\x2e\xfe\x60\x03\xdf\x04\
\x3a\x02\x06\x00\xbd\x00\x00\xff\xff\x00\xb7\x00\x00\x01\x77\x05\
\xb0\x02\x06\x00\x2d\x00\x00\xff\xff\x00\x1b\x00\x00\x07\x35\x07\
\x1a\x02\x26\x00\xda\x00\x00\x01\x07\x00\xa1\x01\xf8\x01\x43\x00\
\x13\x00\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x1e\x3e\x59\xb0\
\x19\xdc\x30\x31\x00\xff\xff\x00\x15\x00\x00\x06\x04\x05\xc4\x02\
\x26\x00\xee\x00\x00\x01\x07\x00\xa1\x01\x5f\xff\xed\x00\x13\x00\
\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x1a\x3e\x59\xb0\x19\xdc\
\x30\x31\x00\xff\xff\x00\xb7\x00\x00\x01\x77\x05\xb0\x02\x06\x00\
\x2d\x00\x00\xff\xff\x00\x1c\x00\x00\x05\x1d\x07\x0e\x02\x26\x00\
\x25\x00\x00\x01\x07\x00\xa1\x00\xf4\x01\x37\x00\x13\x00\xb0\x00\
\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1e\x3e\x59\xb0\x0e\xdc\x30\x31\
\x00\xff\xff\x00\x6d\xff\xec\x03\xea\x05\xd8\x02\x26\x00\x45\x00\
\x00\x01\x07\x00\xa1\x00\x99\x00\x01\x00\x13\x00\xb0\x00\x45\x58\
\xb0\x17\x2f\x1b\xb1\x17\x1a\x3e\x59\xb0\x2c\xdc\x30\x31\x00\xff\
\xff\x00\x1c\x00\x00\x05\x1d\x06\xfb\x02\x26\x00\x25\x00\x00\x01\
\x07\x00\x6a\x00\xf9\x01\x36\x00\x17\x00\xb0\x00\x45\x58\xb0\x04\
\x2f\x1b\xb1\x04\x1e\x3e\x59\xb1\x12\x04\xf4\xb0\x1b\xd0\x30\x31\
\x00\xff\xff\x00\x6d\xff\xec\x03\xea\x05\xc5\x02\x26\x00\x45\x00\
\x00\x01\x07\x00\x6a\x00\x9e\x00\x00\x00\x17\x00\xb0\x00\x45\x58\
\xb0\x17\x2f\x1b\xb1\x17\x1a\x3e\x59\xb1\x30\x01\xf4\xb0\x39\xd0\
\x30\x31\x00\xff\xff\xff\xf2\x00\x00\x07\x57\x05\xb0\x02\x06\x00\
\x81\x00\x00\xff\xff\x00\x4e\xff\xec\x06\x7c\x04\x4e\x02\x06\x00\
\x86\x00\x00\xff\xff\x00\xa9\x00\x00\x04\x46\x07\x1a\x02\x26\x00\
\x29\x00\x00\x01\x07\x00\xa1\x00\xbf\x01\x43\x00\x13\x00\xb0\x00\
\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1e\x3e\x59\xb0\x0f\xdc\x30\x31\
\x00\xff\xff\x00\x5d\xff\xec\x03\xf3\x05\xd8\x02\x26\x00\x49\x00\
\x00\x01\x07\x00\xa1\x00\x89\x00\x01\x00\x13\x00\xb0\x00\x45\x58\
\xb0\x08\x2f\x1b\xb1\x08\x1a\x3e\x59\xb0\x21\xdc\x30\x31\x00\xff\
\xff\x00\x5d\xff\xec\x05\x12\x06\xd9\x02\x26\x01\x58\x00\x00\x01\
\x07\x00\x6a\x00\xd3\x01\x14\x00\x17\x00\xb0\x00\x45\x58\xb0\x00\
\x2f\x1b\xb1\x00\x1e\x3e\x59\xb1\x27\x04\xf4\xb0\x30\xd0\x30\x31\
\x00\xff\xff\x00\x62\xff\xec\x03\xe9\x04\x4f\x02\x06\x00\x9d\x00\
\x00\xff\xff\x00\x62\xff\xec\x03\xe9\x05\xc6\x02\x26\x00\x9d\x00\
\x00\x01\x07\x00\x6a\x00\x87\x00\x01\x00\x17\x00\xb0\x00\x45\x58\
\xb0\x00\x2f\x1b\xb1\x00\x1a\x3e\x59\xb1\x24\x01\xf4\xb0\x2d\xd0\
\x30\x31\x00\xff\xff\x00\x1b\x00\x00\x07\x35\x07\x07\x02\x26\x00\
\xda\x00\x00\x01\x07\x00\x6a\x01\xfd\x01\x42\x00\x17\x00\xb0\x00\
\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x1e\x3e\x59\xb1\x1d\x04\xf4\xb0\
\x26\xd0\x30\x31\x00\xff\xff\x00\x15\x00\x00\x06\x04\x05\xb1\x02\
\x26\x00\xee\x00\x00\x01\x07\x00\x6a\x01\x64\xff\xec\x00\x17\x00\
\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x1a\x3e\x59\xb1\x1d\x01\
\xf4\xb0\x26\xd0\x30\x31\x00\xff\xff\x00\x50\xff\xec\x04\x6a\x07\
\x1c\x02\x26\x00\xdb\x00\x00\x01\x07\x00\x6a\x00\xb7\x01\x57\x00\
\x17\x00\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x1e\x3e\x59\xb1\
\x30\x04\xf4\xb0\x39\xd0\x30\x31\x00\xff\xff\x00\x58\xff\xed\x03\
\xac\x05\xc5\x02\x26\x00\xef\x00\x00\x01\x06\x00\x6a\x5e\x00\x00\
\x17\x00\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1a\x3e\x59\xb1\
\x2e\x01\xf4\xb0\x37\xd0\x30\x31\x00\xff\xff\x00\xb1\x00\x00\x04\
\xff\x06\xef\x02\x26\x00\xdc\x00\x00\x01\x07\x00\x70\x01\x04\x01\
\x4a\x00\x13\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1e\x3e\
\x59\xb0\x0b\xdc\x30\x31\x00\xff\xff\x00\x9c\x00\x00\x04\x01\x05\
\x99\x02\x26\x00\xf0\x00\x00\x01\x06\x00\x70\x75\xf4\x00\x13\x00\
\xb0\x00\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x1a\x3e\x59\xb0\x0b\xdc\
\x30\x31\x00\xff\xff\x00\xb1\x00\x00\x04\xff\x07\x07\x02\x26\x00\
\xdc\x00\x00\x01\x07\x00\x6a\x01\x36\x01\x42\x00\x17\x00\xb0\x00\
\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1e\x3e\x59\xb1\x11\x04\xf4\xb0\
\x1a\xd0\x30\x31\x00\xff\xff\x00\x9c\x00\x00\x04\x01\x05\xb1\x02\
\x26\x00\xf0\x00\x00\x01\x07\x00\x6a\x00\xa7\xff\xec\x00\x17\x00\
\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1a\x3e\x59\xb1\x11\x01\
\xf4\xb0\x1a\xd0\x30\x31\x00\xff\xff\x00\x76\xff\xec\x05\x09\x06\
\xfd\x02\x26\x00\x33\x00\x00\x01\x07\x00\x6a\x01\x1b\x01\x38\x00\
\x17\x00\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x1e\x3e\x59\xb1\
\x27\x04\xf4\xb0\x30\xd0\x30\x31\x00\xff\xff\x00\x5b\xff\xec\x04\
\x34\x05\xc5\x02\x26\x00\x53\x00\x00\x01\x07\x00\x6a\x00\x98\x00\
\x00\x00\x17\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\
\x59\xb1\x23\x01\xf4\xb0\x2c\xd0\x30\x31\x00\xff\xff\x00\x67\xff\
\xec\x04\xfa\x05\xc4\x02\x06\x01\x17\x00\x00\xff\xff\x00\x5b\xff\
\xec\x04\x34\x04\x4e\x02\x06\x01\x18\x00\x00\xff\xff\x00\x67\xff\
\xec\x04\xfa\x07\x02\x02\x26\x01\x17\x00\x00\x01\x07\x00\x6a\x01\
\x27\x01\x3d\x00\x17\x00\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\
\x1e\x3e\x59\xb1\x27\x04\xf4\xb0\x30\xd0\x30\x31\x00\xff\xff\x00\
\x5b\xff\xec\x04\x34\x05\xc7\x02\x26\x01\x18\x00\x00\x01\x07\x00\
\x6a\x00\x88\x00\x02\x00\x17\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\
\xb1\x04\x1a\x3e\x59\xb1\x24\x01\xf4\xb0\x2d\xd0\x30\x31\x00\xff\
\xff\x00\x93\xff\xec\x04\xf4\x07\x1d\x02\x26\x00\xe7\x00\x00\x01\
\x07\x00\x6a\x01\x0d\x01\x58\x00\x17\x00\xb0\x00\x45\x58\xb0\x13\
\x2f\x1b\xb1\x13\x1e\x3e\x59\xb1\x27\x04\xf4\xb0\x30\xd0\x30\x31\
\x00\xff\xff\x00\x64\xff\xec\x03\xe0\x05\xc5\x02\x26\x00\xff\x00\
\x00\x01\x06\x00\x6a\x7c\x00\x00\x17\x00\xb0\x00\x45\x58\xb0\x08\
\x2f\x1b\xb1\x08\x1a\x3e\x59\xb1\x27\x01\xf4\xb0\x30\xd0\x30\x31\
\x00\xff\xff\x00\x4d\xff\xeb\x04\xcb\x06\xef\x02\x26\x00\xde\x00\
\x00\x01\x07\x00\x70\x00\xad\x01\x4a\x00\x13\x00\xb0\x00\x45\x58\
\xb0\x11\x2f\x1b\xb1\x11\x1e\x3e\x59\xb0\x13\xdc\x30\x31\x00\xff\
\xff\x00\x16\xfe\x4b\x03\xb0\x05\xad\x02\x26\x00\x5d\x00\x00\x01\
\x06\x00\x70\x23\x08\x00\x13\x00\xb0\x00\x45\x58\xb0\x0e\x2f\x1b\
\xb1\x0e\x1a\x3e\x59\xb0\x11\xdc\x30\x31\x00\xff\xff\x00\x4d\xff\
\xeb\x04\xcb\x07\x07\x02\x26\x00\xde\x00\x00\x01\x07\x00\x6a\x00\
\xdf\x01\x42\x00\x17\x00\xb0\x00\x45\x58\xb0\x11\x2f\x1b\xb1\x11\
\x1e\x3e\x59\xb1\x19\x04\xf4\xb0\x22\xd0\x30\x31\x00\xff\xff\x00\
\x16\xfe\x4b\x03\xb0\x05\xc5\x02\x26\x00\x5d\x00\x00\x01\x06\x00\
\x6a\x55\x00\x00\x17\x00\xb0\x00\x45\x58\xb0\x0f\x2f\x1b\xb1\x0f\
\x1a\x3e\x59\xb1\x17\x01\xf4\xb0\x20\xd0\x30\x31\x00\xff\xff\x00\
\x4d\xff\xeb\x04\xcb\x07\x41\x02\x26\x00\xde\x00\x00\x01\x07\x00\
\xa6\x01\x2f\x01\x42\x00\x17\x00\xb0\x00\x45\x58\xb0\x01\x2f\x1b\
\xb1\x01\x1e\x3e\x59\xb1\x14\x08\xf4\xb0\x18\xd0\x30\x31\x00\xff\
\xff\x00\x16\xfe\x4b\x03\xd1\x05\xff\x02\x26\x00\x5d\x00\x00\x01\
\x07\x00\xa6\x00\xa5\x00\x00\x00\x17\x00\xb0\x00\x45\x58\xb0\x0f\
\x2f\x1b\xb1\x0f\x1a\x3e\x59\xb1\x16\x09\xf4\xb0\x12\xd0\x30\x31\
\x00\xff\xff\x00\x96\x00\x00\x04\xc8\x07\x07\x02\x26\x00\xe1\x00\
\x00\x01\x07\x00\x6a\x01\x09\x01\x42\x00\x17\x00\xb0\x00\x45\x58\
\xb0\x0b\x2f\x1b\xb1\x0b\x1e\x3e\x59\xb1\x1a\x04\xf4\xb0\x23\xd0\
\x30\x31\x00\xff\xff\x00\x67\x00\x00\x03\xbd\x05\xb1\x02\x26\x00\
\xf9\x00\x00\x01\x06\x00\x6a\x64\xec\x00\x17\x00\xb0\x00\x45\x58\
\xb0\x09\x2f\x1b\xb1\x09\x1a\x3e\x59\xb1\x18\x01\xf4\xb0\x21\xd0\
\x30\x31\x00\xff\xff\x00\xb2\x00\x00\x06\x30\x07\x07\x00\x26\x00\
\xe6\x0f\x00\x00\x27\x00\x2d\x04\xb9\x00\x00\x01\x07\x00\x6a\x01\
\xd3\x01\x42\x00\x17\x00\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\
\x1e\x3e\x59\xb1\x1f\x04\xf4\xb0\x28\xd0\x30\x31\x00\xff\xff\x00\
\x9d\x00\x00\x05\x7f\x05\xb1\x00\x26\x00\xfe\x00\x00\x00\x27\x00\
\x8d\x04\x2a\x00\x00\x01\x07\x00\x6a\x01\x6d\xff\xec\x00\x17\x00\
\xb0\x00\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1a\x3e\x59\xb1\x1f\x01\
\xf4\xb0\x28\xd0\x30\x31\x00\xff\xff\x00\x5f\xff\xec\x03\xf0\x06\
\x00\x02\x06\x00\x48\x00\x00\xff\xff\x00\x1c\xfe\xa2\x05\x1d\x05\
\xb0\x02\x26\x00\x25\x00\x00\x00\x07\x00\xad\x05\x02\x00\x00\xff\
\xff\x00\x6d\xfe\xa2\x03\xea\x04\x4e\x02\x26\x00\x45\x00\x00\x00\
\x07\x00\xad\x04\x4a\x00\x00\xff\xff\x00\x1c\x00\x00\x05\x1d\x07\
\xba\x02\x26\x00\x25\x00\x00\x01\x07\x00\xab\x04\xee\x01\x46\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1e\x3e\x59\xb1\
\x0b\x08\xf4\x30\x31\xff\xff\x00\x6d\xff\xec\x03\xea\x06\x84\x02\
\x26\x00\x45\x00\x00\x01\x07\x00\xab\x04\x93\x00\x10\x00\x14\x00\
\xb0\x00\x45\x58\xb0\x17\x2f\x1b\xb1\x17\x1a\x3e\x59\xb1\x29\x01\
\xf4\x30\x31\xff\xff\x00\x1c\x00\x00\x05\x1d\x07\xc3\x02\x26\x00\
\x25\x00\x00\x01\x07\x02\x37\x00\xc3\x01\x2e\x00\x17\x00\xb0\x00\
\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x1e\x3e\x59\xb1\x0e\x0c\xf4\xb0\
\x14\xd0\x30\x31\x00\xff\xff\x00\x6d\xff\xec\x04\xc0\x06\x8e\x02\
\x26\x00\x45\x00\x00\x01\x06\x02\x37\x68\xf9\x00\x17\x00\xb0\x00\
\x45\x58\xb0\x17\x2f\x1b\xb1\x17\x1a\x3e\x59\xb1\x2c\x08\xf4\xb0\
\x32\xd0\x30\x31\x00\xff\xff\x00\x1c\x00\x00\x05\x1d\x07\xbf\x02\
\x26\x00\x25\x00\x00\x01\x07\x02\x38\x00\xc7\x01\x3d\x00\x17\x00\
\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1e\x3e\x59\xb1\x0e\x0c\
\xf4\xb0\x13\xd0\x30\x31\x00\xff\xff\xff\xca\xff\xec\x03\xea\x06\
\x89\x02\x26\x00\x45\x00\x00\x01\x06\x02\x38\x6c\x07\x00\x17\x00\
\xb0\x00\x45\x58\xb0\x17\x2f\x1b\xb1\x17\x1a\x3e\x59\xb1\x2c\x08\
\xf4\xb0\x31\xd0\x30\x31\x00\xff\xff\x00\x1c\x00\x00\x05\x1d\x07\
\xea\x02\x26\x00\x25\x00\x00\x01\x07\x02\x39\x00\xc8\x01\x1b\x00\
\x17\x00\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x1e\x3e\x59\xb1\
\x0c\x0c\xf4\xb0\x20\xd0\x30\x31\x00\xff\xff\x00\x6d\xff\xec\x04\
\x59\x06\xb5\x02\x26\x00\x45\x00\x00\x01\x06\x02\x39\x6d\xe6\x00\
\x17\x00\xb0\x00\x45\x58\xb0\x17\x2f\x1b\xb1\x17\x1a\x3e\x59\xb1\
\x2a\x08\xf4\xb0\x30\xd0\x30\x31\x00\xff\xff\x00\x1c\x00\x00\x05\
\x1d\x07\xda\x02\x26\x00\x25\x00\x00\x01\x07\x02\x3a\x00\xc7\x01\
\x06\x00\x17\x00\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x1e\x3e\
\x59\xb1\x0c\x0c\xf4\xb0\x15\xd0\x30\x31\x00\xff\xff\x00\x6d\xff\
\xec\x03\xea\x06\xa5\x02\x26\x00\x45\x00\x00\x01\x06\x02\x3a\x6c\
\xd1\x00\x17\x00\xb0\x00\x45\x58\xb0\x17\x2f\x1b\xb1\x17\x1a\x3e\
\x59\xb1\x2a\x08\xf4\xb0\x33\xd0\x30\x31\x00\xff\xff\x00\x1c\xfe\
\xa2\x05\x1d\x07\x36\x02\x26\x00\x25\x00\x00\x00\x27\x00\x9e\x00\
\xc9\x01\x36\x01\x07\x00\xad\x05\x02\x00\x00\x00\x14\x00\xb0\x00\
\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1e\x3e\x59\xb1\x0f\x06\xf4\x30\
\x31\xff\xff\x00\x6d\xfe\xa2\x03\xea\x06\x00\x02\x26\x00\x45\x00\
\x00\x00\x26\x00\x9e\x6e\x00\x01\x07\x00\xad\x04\x4a\x00\x00\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x17\x2f\x1b\xb1\x17\x1a\x3e\x59\xb1\
\x2d\x01\xf4\x30\x31\xff\xff\x00\x1c\x00\x00\x05\x1d\x07\xb7\x02\
\x26\x00\x25\x00\x00\x01\x07\x02\x3c\x00\xea\x01\x2d\x00\x17\x00\
\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1e\x3e\x59\xb1\x0e\x07\
\xf4\xb0\x1b\xd0\x30\x31\x00\xff\xff\x00\x6d\xff\xec\x03\xea\x06\
\x82\x02\x26\x00\x45\x00\x00\x01\x07\x02\x3c\x00\x8f\xff\xf8\x00\
\x17\x00\xb0\x00\x45\x58\xb0\x17\x2f\x1b\xb1\x17\x1a\x3e\x59\xb1\
\x2c\x04\xf4\xb0\x39\xd0\x30\x31\x00\xff\xff\x00\x1c\x00\x00\x05\
\x1d\x07\xb7\x02\x26\x00\x25\x00\x00\x01\x07\x02\x35\x00\xea\x01\
\x2d\x00\x17\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1e\x3e\
\x59\xb1\x0e\x07\xf4\xb0\x1c\xd0\x30\x31\x00\xff\xff\x00\x6d\xff\
\xec\x03\xea\x06\x82\x02\x26\x00\x45\x00\x00\x01\x07\x02\x35\x00\
\x8f\xff\xf8\x00\x17\x00\xb0\x00\x45\x58\xb0\x17\x2f\x1b\xb1\x17\
\x1a\x3e\x59\xb1\x2c\x04\xf4\xb0\x3a\xd0\x30\x31\x00\xff\xff\x00\
\x1c\x00\x00\x05\x1d\x08\x40\x02\x26\x00\x25\x00\x00\x01\x07\x02\
\x3d\x00\xee\x01\x3d\x00\x17\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\
\xb1\x04\x1e\x3e\x59\xb1\x0e\x07\xf4\xb0\x27\xd0\x30\x31\x00\xff\
\xff\x00\x6d\xff\xec\x03\xea\x07\x0a\x02\x26\x00\x45\x00\x00\x01\
\x07\x02\x3d\x00\x93\x00\x07\x00\x17\x00\xb0\x00\x45\x58\xb0\x17\
\x2f\x1b\xb1\x17\x1a\x3e\x59\xb1\x2c\x04\xf4\xb0\x45\xd0\x30\x31\
\x00\xff\xff\x00\x1c\x00\x00\x05\x1d\x08\x15\x02\x26\x00\x25\x00\
\x00\x01\x07\x02\x50\x00\xee\x01\x45\x00\x17\x00\xb0\x00\x45\x58\
\xb0\x04\x2f\x1b\xb1\x04\x1e\x3e\x59\xb1\x0e\x07\xf4\xb0\x1c\xd0\
\x30\x31\x00\xff\xff\x00\x6d\xff\xec\x03\xea\x06\xdf\x02\x26\x00\
\x45\x00\x00\x01\x07\x02\x50\x00\x93\x00\x0f\x00\x17\x00\xb0\x00\
\x45\x58\xb0\x17\x2f\x1b\xb1\x17\x1a\x3e\x59\xb1\x2c\x04\xf4\xb0\
\x3a\xd0\x30\x31\x00\xff\xff\x00\x1c\xfe\xa2\x05\x1d\x07\x0e\x02\
\x26\x00\x25\x00\x00\x00\x27\x00\xa1\x00\xf4\x01\x37\x01\x07\x00\
\xad\x05\x02\x00\x00\x00\x13\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\
\xb1\x04\x1e\x3e\x59\xb0\x0e\xdc\x30\x31\x00\xff\xff\x00\x6d\xfe\
\xa2\x03\xea\x05\xd8\x02\x26\x00\x45\x00\x00\x00\x27\x00\xa1\x00\
\x99\x00\x01\x01\x07\x00\xad\x04\x4a\x00\x00\x00\x13\x00\xb0\x00\
\x45\x58\xb0\x17\x2f\x1b\xb1\x17\x1a\x3e\x59\xb0\x2c\xdc\x30\x31\
\x00\xff\xff\x00\xa9\xfe\xac\x04\x46\x05\xb0\x02\x26\x00\x29\x00\
\x00\x00\x07\x00\xad\x04\xc0\x00\x0a\xff\xff\x00\x5d\xfe\xa2\x03\
\xf3\x04\x4e\x02\x26\x00\x49\x00\x00\x00\x07\x00\xad\x04\x8c\x00\
\x00\xff\xff\x00\xa9\x00\x00\x04\x46\x07\xc6\x02\x26\x00\x29\x00\
\x00\x01\x07\x00\xab\x04\xb9\x01\x52\x00\x14\x00\xb0\x00\x45\x58\
\xb0\x06\x2f\x1b\xb1\x06\x1e\x3e\x59\xb1\x0c\x08\xf4\x30\x31\xff\
\xff\x00\x5d\xff\xec\x03\xf3\x06\x84\x02\x26\x00\x49\x00\x00\x01\
\x07\x00\xab\x04\x83\x00\x10\x00\x14\x00\xb0\x00\x45\x58\xb0\x08\
\x2f\x1b\xb1\x08\x1a\x3e\x59\xb1\x1e\x01\xf4\x30\x31\xff\xff\x00\
\xa9\x00\x00\x04\x46\x07\x2e\x02\x26\x00\x29\x00\x00\x01\x07\x00\
\xa5\x00\x90\x01\x46\x00\x14\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\
\xb1\x06\x1e\x3e\x59\xb1\x0f\x04\xf4\x30\x31\xff\xff\x00\x5d\xff\
\xec\x03\xf3\x05\xec\x02\x26\x00\x49\x00\x00\x01\x06\x00\xa5\x5a\
\x04\x00\x14\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1a\x3e\
\x59\xb1\x21\x01\xf4\x30\x31\xff\xff\x00\xa9\x00\x00\x04\xe6\x07\
\xcf\x02\x26\x00\x29\x00\x00\x01\x07\x02\x37\x00\x8e\x01\x3a\x00\
\x17\x00\xb0\x00\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x1e\x3e\x59\xb1\
\x0f\x0c\xf4\xb0\x15\xd0\x30\x31\x00\xff\xff\x00\x5d\xff\xec\x04\
\xb0\x06\x8e\x02\x26\x00\x49\x00\x00\x01\x06\x02\x37\x58\xf9\x00\
\x17\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1a\x3e\x59\xb1\
\x21\x08\xf4\xb0\x27\xd0\x30\x31\x00\xff\xff\xff\xf0\x00\x00\x04\
\x46\x07\xcb\x02\x26\x00\x29\x00\x00\x01\x07\x02\x38\x00\x92\x01\
\x49\x00\x17\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1e\x3e\
\x59\xb1\x0f\x0c\xf4\xb0\x14\xd0\x30\x31\x00\xff\xff\xff\xba\xff\
\xec\x03\xf3\x06\x89\x02\x26\x00\x49\x00\x00\x01\x06\x02\x38\x5c\
\x07\x00\x17\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1a\x3e\
\x59\xb1\x21\x08\xf4\xb0\x26\xd0\x30\x31\x00\xff\xff\x00\xa9\x00\
\x00\x04\x7f\x07\xf6\x02\x26\x00\x29\x00\x00\x01\x07\x02\x39\x00\
\x93\x01\x27\x00\x17\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\
\x1e\x3e\x59\xb1\x0f\x0c\xf4\xb0\x13\xd0\x30\x31\x00\xff\xff\x00\
\x5d\xff\xec\x04\x49\x06\xb5\x02\x26\x00\x49\x00\x00\x01\x06\x02\
\x39\x5d\xe6\x00\x17\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\
\x1a\x3e\x59\xb1\x1f\x08\xf4\xb0\x25\xd0\x30\x31\x00\xff\xff\x00\
\xa9\x00\x00\x04\x46\x07\xe6\x02\x26\x00\x29\x00\x00\x01\x07\x02\
\x3a\x00\x92\x01\x12\x00\x17\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\
\xb1\x06\x1e\x3e\x59\xb1\x0f\x0c\xf4\xb0\x16\xd0\x30\x31\x00\xff\
\xff\x00\x5d\xff\xec\x03\xf3\x06\xa5\x02\x26\x00\x49\x00\x00\x01\
\x06\x02\x3a\x5c\xd1\x00\x17\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\
\xb1\x08\x1a\x3e\x59\xb1\x21\x08\xf4\xb0\x28\xd0\x30\x31\x00\xff\
\xff\x00\xa9\xfe\xac\x04\x46\x07\x42\x02\x26\x00\x29\x00\x00\x00\
\x27\x00\x9e\x00\x94\x01\x42\x01\x07\x00\xad\x04\xc0\x00\x0a\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1e\x3e\x59\xb1\
\x10\x06\xf4\x30\x31\xff\xff\x00\x5d\xfe\xa2\x03\xf3\x06\x00\x02\
\x26\x00\x49\x00\x00\x00\x26\x00\x9e\x5e\x00\x01\x07\x00\xad\x04\
\x8c\x00\x00\x00\x14\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\
\x1a\x3e\x59\xb1\x20\x01\xf4\x30\x31\xff\xff\x00\xb7\x00\x00\x01\
\xf8\x07\xc6\x02\x26\x00\x2d\x00\x00\x01\x07\x00\xab\x03\x64\x01\
\x52\x00\x14\x00\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1e\x3e\
\x59\xb1\x04\x08\xf4\x30\x31\xff\xff\x00\x9b\x00\x00\x01\xde\x06\
\x82\x02\x26\x00\x8d\x00\x00\x01\x07\x00\xab\x03\x4a\x00\x0e\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1a\x3e\x59\xb1\
\x04\x01\xf4\x30\x31\xff\xff\x00\xa3\xfe\xab\x01\x7e\x05\xb0\x02\
\x26\x00\x2d\x00\x00\x00\x07\x00\xad\x03\x6b\x00\x09\xff\xff\x00\
\x85\xfe\xac\x01\x68\x05\xc4\x02\x26\x00\x4d\x00\x00\x00\x07\x00\
\xad\x03\x4d\x00\x0a\xff\xff\x00\x76\xfe\xa2\x05\x09\x05\xc4\x02\
\x26\x00\x33\x00\x00\x00\x07\x00\xad\x05\x18\x00\x00\xff\xff\x00\
\x5b\xfe\xa2\x04\x34\x04\x4e\x02\x26\x00\x53\x00\x00\x00\x07\x00\
\xad\x04\x9d\x00\x00\xff\xff\x00\x76\xff\xec\x05\x09\x07\xbc\x02\
\x26\x00\x33\x00\x00\x01\x07\x00\xab\x05\x10\x01\x48\x00\x14\x00\
\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x1e\x3e\x59\xb1\x2e\x08\
\xf4\x30\x31\xff\xff\x00\x5b\xff\xec\x04\x34\x06\x84\x02\x26\x00\
\x53\x00\x00\x01\x07\x00\xab\x04\x8d\x00\x10\x00\x14\x00\xb0\x00\
\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\x59\xb1\x2a\x01\xf4\x30\
\x31\xff\xff\x00\x76\xff\xec\x05\x3d\x07\xc5\x02\x26\x00\x33\x00\
\x00\x01\x07\x02\x37\x00\xe5\x01\x30\x00\x17\x00\xb0\x00\x45\x58\
\xb0\x0d\x2f\x1b\xb1\x0d\x1e\x3e\x59\xb1\x23\x0c\xf4\xb0\x29\xd0\
\x30\x31\x00\xff\xff\x00\x5b\xff\xec\x04\xba\x06\x8e\x02\x26\x00\
\x53\x00\x00\x01\x06\x02\x37\x62\xf9\x00\x17\x00\xb0\x00\x45\x58\
\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\x59\xb1\x1f\x08\xf4\xb0\x25\xd0\
\x30\x31\x00\xff\xff\x00\x47\xff\xec\x05\x09\x07\xc1\x02\x26\x00\
\x33\x00\x00\x01\x07\x02\x38\x00\xe9\x01\x3f\x00\x17\x00\xb0\x00\
\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x1e\x3e\x59\xb1\x21\x0c\xf4\xb0\
\x28\xd0\x30\x31\x00\xff\xff\xff\xc4\xff\xec\x04\x34\x06\x89\x02\
\x26\x00\x53\x00\x00\x01\x06\x02\x38\x66\x07\x00\x17\x00\xb0\x00\
\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\x59\xb1\x1d\x08\xf4\xb0\
\x24\xd0\x30\x31\x00\xff\xff\x00\x76\xff\xec\x05\x09\x07\xec\x02\
\x26\x00\x33\x00\x00\x01\x07\x02\x39\x00\xea\x01\x1d\x00\x17\x00\
\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x1e\x3e\x59\xb1\x21\x0c\
\xf4\xb0\x27\xd0\x30\x31\x00\xff\xff\x00\x5b\xff\xec\x04\x53\x06\
\xb5\x02\x26\x00\x53\x00\x00\x01\x06\x02\x39\x67\xe6\x00\x17\x00\
\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\x59\xb1\x1d\x08\
\xf4\xb0\x23\xd0\x30\x31\x00\xff\xff\x00\x76\xff\xec\x05\x09\x07\
\xdc\x02\x26\x00\x33\x00\x00\x01\x07\x02\x3a\x00\xe9\x01\x08\x00\
\x17\x00\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x1e\x3e\x59\xb1\
\x21\x0c\xf4\xb0\x2a\xd0\x30\x31\x00\xff\xff\x00\x5b\xff\xec\x04\
\x34\x06\xa5\x02\x26\x00\x53\x00\x00\x01\x06\x02\x3a\x66\xd1\x00\
\x17\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\x59\xb1\
\x1d\x08\xf4\xb0\x26\xd0\x30\x31\x00\xff\xff\x00\x76\xfe\xa2\x05\
\x09\x07\x38\x02\x26\x00\x33\x00\x00\x00\x27\x00\x9e\x00\xeb\x01\
\x38\x01\x07\x00\xad\x05\x18\x00\x00\x00\x14\x00\xb0\x00\x45\x58\
\xb0\x0d\x2f\x1b\xb1\x0d\x1e\x3e\x59\xb1\x22\x06\xf4\x30\x31\xff\
\xff\x00\x5b\xfe\xa2\x04\x34\x06\x00\x02\x26\x00\x53\x00\x00\x00\
\x26\x00\x9e\x68\x00\x01\x07\x00\xad\x04\x9d\x00\x00\x00\x14\x00\
\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\x59\xb1\x1e\x01\
\xf4\x30\x31\xff\xff\x00\x65\xff\xec\x05\x9d\x07\x31\x02\x26\x00\
\x98\x00\x00\x01\x07\x00\x75\x01\xdd\x01\x31\x00\x14\x00\xb0\x00\
\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x1e\x3e\x59\xb1\x28\x08\xf4\x30\
\x31\xff\xff\x00\x5b\xff\xec\x04\xba\x06\x00\x02\x26\x00\x99\x00\
\x00\x01\x07\x00\x75\x01\x65\x00\x00\x00\x14\x00\xb0\x00\x45\x58\
\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\x59\xb1\x26\x09\xf4\x30\x31\xff\
\xff\x00\x65\xff\xec\x05\x9d\x07\x31\x02\x26\x00\x98\x00\x00\x01\
\x07\x00\x44\x01\x4e\x01\x31\x00\x14\x00\xb0\x00\x45\x58\xb0\x0d\
\x2f\x1b\xb1\x0d\x1e\x3e\x59\xb1\x27\x08\xf4\x30\x31\xff\xff\x00\
\x5b\xff\xec\x04\xba\x06\x00\x02\x26\x00\x99\x00\x00\x01\x07\x00\
\x44\x00\xd6\x00\x00\x00\x14\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\
\xb1\x04\x1a\x3e\x59\xb1\x25\x09\xf4\x30\x31\xff\xff\x00\x65\xff\
\xec\x05\x9d\x07\xb5\x02\x26\x00\x98\x00\x00\x01\x07\x00\xab\x05\
\x0c\x01\x41\x00\x14\x00\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\
\x1e\x3e\x59\xb1\x34\x08\xf4\x30\x31\xff\xff\x00\x5b\xff\xec\x04\
\xba\x06\x84\x02\x26\x00\x99\x00\x00\x01\x07\x00\xab\x04\x94\x00\
\x10\x00\x14\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\
\x59\xb1\x32\x01\xf4\x30\x31\xff\xff\x00\x65\xff\xec\x05\x9d\x07\
\x1d\x02\x26\x00\x98\x00\x00\x01\x07\x00\xa5\x00\xe3\x01\x35\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x1e\x3e\x59\xb1\
\x29\x04\xf4\x30\x31\xff\xff\x00\x5b\xff\xec\x04\xba\x05\xec\x02\
\x26\x00\x99\x00\x00\x01\x06\x00\xa5\x6b\x04\x00\x14\x00\xb0\x00\
\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1a\x3e\x59\xb1\x27\x01\xf4\x30\
\x31\xff\xff\x00\x65\xfe\xa2\x05\x9d\x06\x37\x02\x26\x00\x98\x00\
\x00\x00\x07\x00\xad\x05\x09\x00\x00\xff\xff\x00\x5b\xfe\x99\x04\
\xba\x04\xb0\x02\x26\x00\x99\x00\x00\x00\x07\x00\xad\x04\x9b\xff\
\xf7\xff\xff\x00\x8c\xfe\xa2\x04\xaa\x05\xb0\x02\x26\x00\x39\x00\
\x00\x00\x07\x00\xad\x04\xee\x00\x00\xff\xff\x00\x88\xfe\xa2\x03\
\xdc\x04\x3a\x02\x26\x00\x59\x00\x00\x00\x07\x00\xad\x04\x51\x00\
\x00\xff\xff\x00\x8c\xff\xec\x04\xaa\x07\xba\x02\x26\x00\x39\x00\
\x00\x01\x07\x00\xab\x04\xe9\x01\x46\x00\x14\x00\xb0\x00\x45\x58\
\xb0\x0a\x2f\x1b\xb1\x0a\x1e\x3e\x59\xb1\x13\x08\xf4\x30\x31\xff\
\xff\x00\x88\xff\xec\x03\xdc\x06\x84\x02\x26\x00\x59\x00\x00\x01\
\x07\x00\xab\x04\x85\x00\x10\x00\x14\x00\xb0\x00\x45\x58\xb0\x07\
\x2f\x1b\xb1\x07\x1a\x3e\x59\xb1\x11\x01\xf4\x30\x31\xff\xff\x00\
\x8c\xff\xec\x06\x1d\x07\x42\x02\x26\x00\x9a\x00\x00\x01\x07\x00\
\x75\x01\xd4\x01\x42\x00\x14\x00\xb0\x00\x45\x58\xb0\x1a\x2f\x1b\
\xb1\x1a\x1e\x3e\x59\xb1\x1d\x08\xf4\x30\x31\xff\xff\x00\x88\xff\
\xec\x05\x0f\x05\xec\x02\x26\x00\x9b\x00\x00\x01\x07\x00\x75\x01\
\x63\xff\xec\x00\x14\x00\xb0\x00\x45\x58\xb0\x13\x2f\x1b\xb1\x13\
\x1a\x3e\x59\xb1\x1c\x09\xf4\x30\x31\xff\xff\x00\x8c\xff\xec\x06\
\x1d\x07\x42\x02\x26\x00\x9a\x00\x00\x01\x07\x00\x44\x01\x45\x01\
\x42\x00\x14\x00\xb0\x00\x45\x58\xb0\x12\x2f\x1b\xb1\x12\x1e\x3e\
\x59\xb1\x1c\x08\xf4\x30\x31\xff\xff\x00\x88\xff\xec\x05\x0f\x05\
\xec\x02\x26\x00\x9b\x00\x00\x01\x07\x00\x44\x00\xd4\xff\xec\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\x1a\x3e\x59\xb1\
\x1b\x09\xf4\x30\x31\xff\xff\x00\x8c\xff\xec\x06\x1d\x07\xc6\x02\
\x26\x00\x9a\x00\x00\x01\x07\x00\xab\x05\x03\x01\x52\x00\x14\x00\
\xb0\x00\x45\x58\xb0\x1a\x2f\x1b\xb1\x1a\x1e\x3e\x59\xb1\x29\x08\
\xf4\x30\x31\xff\xff\x00\x88\xff\xec\x05\x0f\x06\x70\x02\x26\x00\
\x9b\x00\x00\x01\x07\x00\xab\x04\x92\xff\xfc\x00\x14\x00\xb0\x00\
\x45\x58\xb0\x13\x2f\x1b\xb1\x13\x1a\x3e\x59\xb1\x28\x01\xf4\x30\
\x31\xff\xff\x00\x8c\xff\xec\x06\x1d\x07\x2e\x02\x26\x00\x9a\x00\
\x00\x01\x07\x00\xa5\x00\xda\x01\x46\x00\x14\x00\xb0\x00\x45\x58\
\xb0\x12\x2f\x1b\xb1\x12\x1e\x3e\x59\xb1\x1e\x04\xf4\x30\x31\xff\
\xff\x00\x88\xff\xec\x05\x0f\x05\xd8\x02\x26\x00\x9b\x00\x00\x01\
\x06\x00\xa5\x69\xf0\x00\x14\x00\xb0\x00\x45\x58\xb0\x13\x2f\x1b\
\xb1\x13\x1a\x3e\x59\xb1\x1d\x01\xf4\x30\x31\xff\xff\x00\x8c\xfe\
\x9a\x06\x1d\x06\x02\x02\x26\x00\x9a\x00\x00\x00\x07\x00\xad\x05\
\x09\xff\xf8\xff\xff\x00\x88\xfe\xa2\x05\x0f\x04\x90\x02\x26\x00\
\x9b\x00\x00\x00\x07\x00\xad\x04\x87\x00\x00\xff\xff\x00\x0f\xfe\
\xa2\x04\xbb\x05\xb0\x02\x26\x00\x3d\x00\x00\x00\x07\x00\xad\x04\
\xbb\x00\x00\xff\xff\x00\x16\xfe\x05\x03\xb0\x04\x3a\x02\x26\x00\
\x5d\x00\x00\x00\x07\x00\xad\x05\x1c\xff\x63\xff\xff\x00\x0f\x00\
\x00\x04\xbb\x07\xba\x02\x26\x00\x3d\x00\x00\x01\x07\x00\xab\x04\
\xb7\x01\x46\x00\x14\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\
\x1e\x3e\x59\xb1\x09\x08\xf4\x30\x31\xff\xff\x00\x16\xfe\x4b\x03\
\xb0\x06\x84\x02\x26\x00\x5d\x00\x00\x01\x07\x00\xab\x04\x4a\x00\
\x10\x00\x14\x00\xb0\x00\x45\x58\xb0\x0f\x2f\x1b\xb1\x0f\x1a\x3e\
\x59\xb1\x10\x01\xf4\x30\x31\xff\xff\x00\x0f\x00\x00\x04\xbb\x07\
\x22\x02\x26\x00\x3d\x00\x00\x01\x07\x00\xa5\x00\x8e\x01\x3a\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x1e\x3e\x59\xb1\
\x0c\x04\xf4\x30\x31\xff\xff\x00\x16\xfe\x4b\x03\xb0\x05\xec\x02\
\x26\x00\x5d\x00\x00\x01\x06\x00\xa5\x21\x04\x00\x14\x00\xb0\x00\
\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x1a\x3e\x59\xb1\x13\x01\xf4\x30\
\x31\xff\xff\x00\x5f\xfe\xcd\x04\xac\x06\x00\x00\x26\x00\x48\x00\
\x00\x00\x27\x02\x26\x01\xa1\x02\x47\x01\x07\x00\x43\x00\x9f\xff\
\x64\x00\x08\x00\xb2\x2f\x1e\x01\x5d\x30\x31\xff\xff\x00\x31\xfe\
\x99\x04\x97\x05\xb0\x02\x26\x00\x38\x00\x00\x00\x07\x02\x51\x02\
\x3f\x00\x00\xff\xff\x00\x28\xfe\x99\x03\xb0\x04\x3a\x02\x26\x00\
\xf6\x00\x00\x00\x07\x02\x51\x01\xc6\x00\x00\xff\xff\x00\x96\xfe\
\x99\x04\xc8\x05\xb0\x02\x26\x00\xe1\x00\x00\x00\x07\x02\x51\x02\
\xfe\x00\x00\xff\xff\x00\x67\xfe\x99\x03\xbd\x04\x3b\x02\x26\x00\
\xf9\x00\x00\x00\x07\x02\x51\x01\xf5\x00\x00\xff\xff\x00\xb1\xfe\
\x99\x04\x30\x05\xb0\x02\x26\x00\xb1\x00\x00\x00\x07\x02\x51\x00\
\xef\x00\x00\xff\xff\x00\x9a\xfe\x99\x03\x47\x04\x3a\x02\x26\x00\
\xec\x00\x00\x00\x07\x02\x51\x00\xd5\x00\x00\xff\xff\x00\x3f\xfe\
\x55\x05\xbd\x05\xc3\x02\x26\x01\x4c\x00\x00\x00\x07\x02\x51\x03\
\x06\xff\xbc\xff\xff\xff\xde\xfe\x59\x04\x63\x04\x4e\x02\x26\x01\
\x4d\x00\x00\x00\x07\x02\x51\x02\x01\xff\xc0\xff\xff\x00\x8c\x00\
\x00\x03\xdf\x06\x00\x02\x06\x00\x4c\x00\x00\x00\x02\xff\xd4\x00\
\x00\x04\xb1\x05\xb0\x00\x12\x00\x1b\x00\x64\x00\xb0\x00\x45\x58\
\xb0\x0f\x2f\x1b\xb1\x0f\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x0a\x2f\
\x1b\xb1\x0a\x12\x3e\x59\xb2\x02\x0a\x0f\x11\x12\x39\xb0\x02\x2f\
\xb2\x0e\x0f\x02\x11\x12\x39\xb0\x0e\x2f\xb1\x0b\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x01\xd0\xb0\x0e\x10\xb0\x11\xd0\xb0\
\x02\x10\xb1\x13\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0a\
\x10\xb1\x14\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\
\x23\x15\x21\x16\x04\x15\x14\x04\x07\x21\x11\x23\x35\x33\x35\x33\
\x15\x33\x03\x11\x21\x32\x36\x35\x34\x26\x27\x02\x50\xed\x01\x6a\
\xe4\x01\x00\xfe\xfe\xdf\xfd\xd3\xcf\xcf\xc0\xed\xed\x01\x5f\x8f\
\x9f\x99\x8d\x04\x50\xf2\x03\xe4\xc4\xc5\xea\x04\x04\x50\x97\xc9\
\xc9\xfd\xd9\xfd\xdd\x98\x80\x7b\x8e\x02\x00\x00\x02\xff\xd4\x00\
\x00\x04\xb1\x05\xb0\x00\x12\x00\x1b\x00\x64\x00\xb0\x00\x45\x58\
\xb0\x10\x2f\x1b\xb1\x10\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x0a\x2f\
\x1b\xb1\x0a\x12\x3e\x59\xb2\x02\x0a\x10\x11\x12\x39\xb0\x02\x2f\
\xb2\x11\x02\x10\x11\x12\x39\xb0\x11\x2f\xb1\x01\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb0\x0b\xd0\xb0\x11\x10\xb0\x0e\xd0\xb0\
\x02\x10\xb1\x13\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x0a\
\x10\xb1\x14\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\
\x23\x15\x21\x16\x04\x15\x14\x04\x07\x21\x11\x23\x35\x33\x35\x33\
\x15\x33\x03\x11\x21\x32\x36\x35\x34\x26\x27\x02\x50\xed\x01\x6a\
\xe4\x01\x00\xfe\xfe\xdf\xfd\xd3\xcf\xcf\xc0\xed\xed\x01\x5f\x8f\
\x9f\x99\x8d\x04\x50\xf2\x03\xe4\xc4\xc5\xea\x04\x04\x50\x97\xc9\
\xc9\xfd\xd9\xfd\xdd\x98\x80\x7b\x8e\x02\x00\x00\x01\x00\x03\x00\
\x00\x04\x30\x05\xb0\x00\x0d\x00\x50\x00\xb0\x00\x45\x58\xb0\x08\
\x2f\x1b\xb1\x08\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\
\x02\x12\x3e\x59\xb2\x0d\x08\x02\x11\x12\x39\xb0\x0d\x2f\xb2\x7a\
\x0d\x01\x5d\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x04\xd0\xb0\x0d\x10\xb0\x06\xd0\xb0\x08\x10\xb1\x0a\x01\xb0\x0a\
\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x21\x11\x23\x11\x23\x35\
\x33\x11\x21\x15\x21\x11\x21\x02\x7f\xfe\xf3\xc1\xae\xae\x03\x7f\
\xfd\x42\x01\x0d\x02\xac\xfd\x54\x02\xac\x97\x02\x6d\x9e\xfe\x31\
\x00\x00\x01\xff\xfc\x00\x00\x03\x47\x04\x3a\x00\x0d\x00\x4b\x00\
\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1a\x3e\x59\xb0\x00\x45\
\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb2\x0d\x08\x02\x11\x12\
\x39\xb0\x0d\x2f\xb1\x00\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb0\x04\xd0\xb0\x0d\x10\xb0\x06\xd0\xb0\x08\x10\xb1\x0a\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x21\x11\x23\x11\x23\
\x35\x33\x11\x21\x15\x21\x11\x21\x02\x78\xfe\xdc\xba\x9e\x9e\x02\
\xad\xfe\x0d\x01\x24\x01\xdf\xfe\x21\x01\xdf\x97\x01\xc4\x99\xfe\
\xd5\x00\x01\xff\xf7\x00\x00\x05\x31\x05\xb0\x00\x14\x00\x80\x00\
\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1e\x3e\x59\xb0\x00\x45\
\x58\xb0\x10\x2f\x1b\xb1\x10\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x02\
\x2f\x1b\xb1\x02\x12\x3e\x59\xb0\x00\x45\x58\xb0\x13\x2f\x1b\xb1\
\x13\x12\x3e\x59\xb2\x0e\x08\x02\x11\x12\x39\xb0\x0e\x2f\xb2\x2f\
\x0e\x01\x5d\xb2\xcf\x0e\x01\x5d\xb1\x01\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb2\x07\x08\x02\x11\x12\x39\xb0\x07\x2f\xb1\x04\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x07\x10\xb0\x0a\xd0\
\xb0\x04\x10\xb0\x0c\xd0\xb2\x12\x01\x0e\x11\x12\x39\x30\x31\x01\
\x23\x11\x23\x11\x23\x35\x33\x35\x33\x15\x33\x15\x23\x11\x33\x01\
\x33\x01\x01\x23\x02\x37\xb1\xc0\xcf\xcf\xc0\xed\xed\x96\x01\xfd\
\xef\xfd\xd4\x02\x55\xeb\x02\x8e\xfd\x72\x04\x37\x97\xe2\xe2\x97\
\xfe\xf7\x02\x82\xfd\x3e\xfd\x12\x00\x00\x01\xff\xbf\x00\x00\x04\
\x28\x06\x00\x00\x14\x00\x76\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\
\xb1\x08\x20\x3e\x59\xb0\x00\x45\x58\xb0\x10\x2f\x1b\xb1\x10\x1a\
\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\x59\xb0\
\x00\x45\x58\xb0\x13\x2f\x1b\xb1\x13\x12\x3e\x59\xb2\x0e\x10\x02\
\x11\x12\x39\xb0\x0e\x2f\xb1\x01\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\
\xf4\x59\xb2\x07\x08\x10\x11\x12\x39\xb0\x07\x2f\xb1\x04\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x07\x10\xb0\x0a\xd0\xb0\x04\
\x10\xb0\x0c\xd0\xb2\x12\x01\x0e\x11\x12\x39\x30\x31\x01\x23\x11\
\x23\x11\x23\x35\x33\x35\x33\x15\x33\x15\x23\x11\x33\x01\x33\x01\
\x01\x23\x01\xe0\x80\xba\xe7\xe7\xba\xdb\xdb\x7e\x01\x3b\xdb\xfe\
\x86\x01\xae\xdb\x01\xf5\xfe\x0b\x04\xc1\x97\xa8\xa8\x97\xfd\xcd\
\x01\xac\xfe\x13\xfd\xb3\x00\x00\x01\x00\x0f\x00\x00\x04\xbb\x05\
\xb0\x00\x0e\x00\x57\xb2\x0a\x0f\x10\x11\x12\x39\x00\xb0\x00\x45\
\x58\xb0\x08\x2f\x1b\xb1\x08\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x0b\
\x2f\x1b\xb1\x0b\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\
\x02\x12\x3e\x59\xb2\x06\x08\x02\x11\x12\x39\xb0\x06\x2f\xb1\x05\
\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x00\xd0\xb2\x0a\x08\
\x02\x11\x12\x39\xb0\x06\x10\xb0\x0e\xd0\x30\x31\x01\x23\x11\x23\
\x11\x23\x35\x33\x01\x33\x01\x01\x33\x01\x33\x03\xa6\xe1\xc0\xdb\
\x94\xfe\x51\xdc\x01\x7a\x01\x7c\xda\xfe\x51\x9a\x02\x09\xfd\xf7\
\x02\x09\x97\x03\x10\xfd\x25\x02\xdb\xfc\xf0\x00\x01\x00\x2e\xfe\
\x60\x03\xdf\x04\x3a\x00\x0e\x00\x64\xb2\x0a\x0f\x10\x11\x12\x39\
\x00\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1a\x3e\x59\xb0\x00\
\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x1a\x3e\x59\xb0\x00\x45\x58\xb0\
\x02\x2f\x1b\xb1\x02\x14\x3e\x59\xb0\x00\x45\x58\xb0\x00\x2f\x1b\
\xb1\x00\x12\x3e\x59\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x12\
\x3e\x59\xb1\x06\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb2\x0a\
\x0b\x00\x11\x12\x39\xb0\x0d\xd0\xb0\x0e\xd0\x30\x31\x05\x23\x11\
\x23\x11\x23\x35\x33\x01\x33\x01\x01\x33\x01\x33\x03\x4a\xe6\xba\
\xdc\xbf\xfe\xa1\xbd\x01\x1f\x01\x18\xbd\xfe\xa3\xc8\x0b\xfe\x6b\
\x01\x95\x97\x03\xae\xfc\xda\x03\x26\xfc\x52\x00\x01\x00\x39\x00\
\x00\x04\xce\x05\xb0\x00\x11\x00\x64\x00\xb0\x00\x45\x58\xb0\x0b\
\x2f\x1b\xb1\x0b\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x0e\x2f\x1b\xb1\
\x0e\x1e\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x12\x3e\
\x59\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x12\x3e\x59\xb2\x11\
\x0b\x02\x11\x12\x39\xb0\x11\x2f\xb1\x00\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb2\x04\x0b\x02\x11\x12\x39\xb0\x07\xd0\xb0\x11\
\x10\xb0\x09\xd0\xb2\x0d\x0b\x02\x11\x12\x39\x30\x31\x01\x23\x01\
\x23\x01\x01\x23\x01\x23\x35\x33\x01\x33\x01\x01\x33\x01\x33\x03\
\xc4\xa4\x01\xae\xe4\xfe\x9a\xfe\x98\xe3\x01\xaf\xa0\x91\xfe\x6b\
\xe1\x01\x5f\x01\x5d\xe2\xfe\x6b\x96\x02\x9e\xfd\x62\x02\x38\xfd\
\xc8\x02\x9e\x97\x02\x7b\xfd\xd2\x02\x2e\xfd\x85\x00\x00\x01\x00\
\x29\x00\x00\x03\xca\x04\x3a\x00\x11\x00\x64\x00\xb0\x00\x45\x58\
\xb0\x0b\x2f\x1b\xb1\x0b\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x0e\x2f\
\x1b\xb1\x0e\x1a\x3e\x59\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\
\x12\x3e\x59\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x12\x3e\x59\
\xb2\x11\x0e\x02\x11\x12\x39\xb0\x11\x2f\xb1\x00\x01\xb0\x0a\x2b\
\x58\x21\xd8\x1b\xf4\x59\xb2\x04\x0e\x02\x11\x12\x39\xb0\x07\xd0\
\xb0\x11\x10\xb0\x09\xd0\xb2\x0d\x0e\x02\x11\x12\x39\x30\x31\x01\
\x23\x01\x23\x03\x03\x23\x01\x23\x35\x33\x01\x33\x13\x13\x33\x01\
\x33\x03\x3c\xb3\x01\x41\xd6\xfa\xfa\xd7\x01\x41\xaa\x9e\xfe\xd6\
\xd6\xed\xf0\xd8\xfe\xd6\xa7\x01\xe1\xfe\x1f\x01\x95\xfe\x6b\x01\
\xe1\x97\x01\xc2\xfe\x75\x01\x8b\xfe\x3e\x00\xff\xff\x00\x63\xff\
\xec\x03\xec\x04\x4d\x02\x06\x00\xbf\x00\x00\xff\xff\x00\x12\x00\
\x00\x04\x2f\x05\xb0\x02\x26\x00\x2a\x00\x00\x00\x07\x02\x26\xff\
\x83\xfe\x7f\xff\xff\x00\x91\x02\x8b\x05\xc9\x03\x22\x00\x46\x01\
\xaf\x84\x00\x66\x66\x40\x00\xff\xff\x00\x5d\x00\x00\x04\x33\x05\
\xc4\x02\x06\x00\x16\x00\x00\xff\xff\x00\x5e\xff\xec\x03\xf9\x05\
\xc4\x02\x06\x00\x17\x00\x00\xff\xff\x00\x35\x00\x00\x04\x50\x05\
\xb0\x02\x06\x00\x18\x00\x00\xff\xff\x00\x9a\xff\xec\x04\x2d\x05\
\xb0\x02\x06\x00\x19\x00\x00\xff\xff\x00\x98\xff\xec\x04\x30\x05\
\xb1\x00\x06\x00\x1a\x14\x00\xff\xff\x00\x84\xff\xec\x04\x22\x05\
\xc4\x00\x06\x00\x1c\x14\x00\xff\xff\x00\x64\xff\xff\x03\xf8\x05\
\xc4\x00\x06\x00\x1d\x00\x00\xff\xff\x00\x87\xff\xec\x04\x1e\x05\
\xc4\x00\x06\x00\x14\x14\x00\xff\xff\x00\x7a\xff\xec\x04\xdc\x07\
\x57\x02\x26\x00\x2b\x00\x00\x01\x07\x00\x75\x01\xbe\x01\x57\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x0b\x2f\x1b\xb1\x0b\x1e\x3e\x59\xb1\
\x22\x08\xf4\x30\x31\xff\xff\x00\x60\xfe\x56\x03\xf2\x06\x00\x02\
\x26\x00\x4b\x00\x00\x01\x07\x00\x75\x01\x4b\x00\x00\x00\x14\x00\
\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x1a\x3e\x59\xb1\x27\x09\
\xf4\x30\x31\xff\xff\x00\xa9\x00\x00\x05\x08\x07\x36\x02\x26\x00\
\x32\x00\x00\x01\x07\x00\x44\x01\x66\x01\x36\x00\x14\x00\xb0\x00\
\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1e\x3e\x59\xb1\x0b\x08\xf4\x30\
\x31\xff\xff\x00\x8c\x00\x00\x03\xdf\x06\x00\x02\x26\x00\x52\x00\
\x00\x01\x07\x00\x44\x00\xcc\x00\x00\x00\x14\x00\xb0\x00\x45\x58\
\xb0\x03\x2f\x1b\xb1\x03\x1a\x3e\x59\xb1\x13\x09\xf4\x30\x31\xff\
\xff\x00\x1c\x00\x00\x05\x1d\x07\x20\x02\x26\x00\x25\x00\x00\x01\
\x07\x00\xac\x04\x6d\x01\x32\x00\x17\x00\xb0\x00\x45\x58\xb0\x04\
\x2f\x1b\xb1\x04\x1e\x3e\x59\xb1\x0c\x08\xf4\xb0\x10\xd0\x30\x31\
\x00\xff\xff\x00\x39\xff\xec\x03\xea\x05\xeb\x02\x26\x00\x45\x00\
\x00\x01\x07\x00\xac\x04\x12\xff\xfd\x00\x17\x00\xb0\x00\x45\x58\
\xb0\x17\x2f\x1b\xb1\x17\x1a\x3e\x59\xb1\x2a\x09\xf4\xb0\x2e\xd0\
\x30\x31\x00\xff\xff\x00\x5f\x00\x00\x04\x46\x07\x2c\x02\x26\x00\
\x29\x00\x00\x01\x07\x00\xac\x04\x38\x01\x3e\x00\x17\x00\xb0\x00\
\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1e\x3e\x59\xb1\x0d\x08\xf4\xb0\
\x11\xd0\x30\x31\x00\xff\xff\x00\x29\xff\xec\x03\xf3\x05\xeb\x02\
\x26\x00\x49\x00\x00\x01\x07\x00\xac\x04\x02\xff\xfd\x00\x17\x00\
\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1a\x3e\x59\xb1\x1f\x09\
\xf4\xb0\x23\xd0\x30\x31\x00\xff\xff\xff\x0a\x00\x00\x01\xea\x07\
\x2c\x02\x26\x00\x2d\x00\x00\x01\x07\x00\xac\x02\xe3\x01\x3e\x00\
\x17\x00\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1e\x3e\x59\xb1\
\x05\x08\xf4\xb0\x09\xd0\x30\x31\x00\xff\xff\xfe\xf0\x00\x00\x01\
\xd0\x05\xe9\x02\x26\x00\x8d\x00\x00\x01\x07\x00\xac\x02\xc9\xff\
\xfb\x00\x17\x00\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1a\x3e\
\x59\xb1\x05\x09\xf4\xb0\x09\xd0\x30\x31\x00\xff\xff\x00\x76\xff\
\xec\x05\x09\x07\x22\x02\x26\x00\x33\x00\x00\x01\x07\x00\xac\x04\
\x8f\x01\x34\x00\x17\x00\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\
\x1e\x3e\x59\xb1\x21\x08\xf4\xb0\x25\xd0\x30\x31\x00\xff\xff\x00\
\x33\xff\xec\x04\x34\x05\xeb\x02\x26\x00\x53\x00\x00\x01\x07\x00\
\xac\x04\x0c\xff\xfd\x00\x17\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\
\xb1\x04\x1a\x3e\x59\xb1\x1d\x09\xf4\xb0\x21\xd0\x30\x31\x00\xff\
\xff\x00\x55\x00\x00\x04\xc9\x07\x20\x02\x26\x00\x36\x00\x00\x01\
\x07\x00\xac\x04\x2e\x01\x32\x00\x17\x00\xb0\x00\x45\x58\xb0\x04\
\x2f\x1b\xb1\x04\x1e\x3e\x59\xb1\x19\x08\xf4\xb0\x1d\xd0\x30\x31\
\x00\xff\xff\xff\x8b\x00\x00\x02\x97\x05\xeb\x02\x26\x00\x56\x00\
\x00\x01\x07\x00\xac\x03\x64\xff\xfd\x00\x17\x00\xb0\x00\x45\x58\
\xb0\x0b\x2f\x1b\xb1\x0b\x1a\x3e\x59\xb1\x0f\x09\xf4\xb0\x13\xd0\
\x30\x31\x00\xff\xff\x00\x8c\xff\xec\x04\xaa\x07\x20\x02\x26\x00\
\x39\x00\x00\x01\x07\x00\xac\x04\x68\x01\x32\x00\x17\x00\xb0\x00\
\x45\x58\xb0\x09\x2f\x1b\xb1\x09\x1e\x3e\x59\xb1\x14\x08\xf4\xb0\
\x18\xd0\x30\x31\x00\xff\xff\x00\x2b\xff\xec\x03\xdc\x05\xeb\x02\
\x26\x00\x59\x00\x00\x01\x07\x00\xac\x04\x04\xff\xfd\x00\x17\x00\
\xb0\x00\x45\x58\xb0\x07\x2f\x1b\xb1\x07\x1a\x3e\x59\xb1\x12\x09\
\xf4\xb0\x16\xd0\x30\x31\x00\xff\xff\xfe\xd6\x00\x00\x04\xd2\x06\
\x3f\x00\x26\x00\xd0\x64\x00\x00\x07\x00\xae\xfe\x1f\x00\x00\xff\
\xff\x00\xa9\xfe\xac\x04\x88\x05\xb0\x02\x26\x00\x26\x00\x00\x00\
\x07\x00\xad\x04\xba\x00\x0a\xff\xff\x00\x8c\xfe\x99\x04\x20\x06\
\x00\x02\x26\x00\x46\x00\x00\x00\x07\x00\xad\x04\xab\xff\xf7\xff\
\xff\x00\xa9\xfe\xac\x04\xc6\x05\xb0\x02\x26\x00\x28\x00\x00\x00\
\x07\x00\xad\x04\xb9\x00\x0a\xff\xff\x00\x5f\xfe\xa2\x03\xf0\x06\
\x00\x02\x26\x00\x48\x00\x00\x00\x07\x00\xad\x04\xbd\x00\x00\xff\
\xff\x00\xa9\xfe\x09\x04\xc6\x05\xb0\x02\x26\x00\x28\x00\x00\x01\
\x07\x01\xba\x01\x65\xfe\xaa\x00\x08\x00\xb2\x00\x1a\x01\x5d\x30\
\x31\xff\xff\x00\x5f\xfd\xff\x03\xf0\x06\x00\x02\x26\x00\x48\x00\
\x00\x00\x07\x01\xba\x01\x69\xfe\xa0\xff\xff\x00\xa9\xfe\xac\x05\
\x08\x05\xb0\x02\x26\x00\x2c\x00\x00\x00\x07\x00\xad\x05\x1f\x00\
\x0a\xff\xff\x00\x8c\xfe\xac\x03\xdf\x06\x00\x02\x26\x00\x4c\x00\
\x00\x00\x07\x00\xad\x04\xa1\x00\x0a\xff\xff\x00\xa9\x00\x00\x05\
\x05\x07\x30\x02\x26\x00\x2f\x00\x00\x01\x07\x00\x75\x01\x7b\x01\
\x30\x00\x14\x00\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x1e\x3e\
\x59\xb1\x0e\x08\xf4\x30\x31\xff\xff\x00\x8d\x00\x00\x04\x0c\x07\
\x41\x02\x26\x00\x4f\x00\x00\x01\x07\x00\x75\x01\x44\x01\x41\x00\
\x09\x00\xb0\x05\x2f\xb0\x0f\xdc\x30\x31\x00\xff\xff\x00\xa9\xfe\
\xfb\x05\x05\x05\xb0\x02\x26\x00\x2f\x00\x00\x00\x07\x00\xad\x04\
\xe8\x00\x59\xff\xff\x00\x8d\xfe\xe8\x04\x0c\x06\x00\x02\x26\x00\
\x4f\x00\x00\x00\x07\x00\xad\x04\x65\x00\x46\xff\xff\x00\xa9\xfe\
\xac\x04\x1c\x05\xb0\x02\x26\x00\x30\x00\x00\x00\x07\x00\xad\x04\
\xc0\x00\x0a\xff\xff\x00\x86\xfe\xac\x01\x61\x06\x00\x02\x26\x00\
\x50\x00\x00\x00\x07\x00\xad\x03\x4e\x00\x0a\xff\xff\x00\xa9\xfe\
\xac\x06\x52\x05\xb0\x02\x26\x00\x31\x00\x00\x00\x07\x00\xad\x05\
\xd2\x00\x0a\xff\xff\x00\x8b\xfe\xac\x06\x78\x04\x4e\x02\x26\x00\
\x51\x00\x00\x00\x07\x00\xad\x05\xd6\x00\x0a\xff\xff\x00\xa9\xfe\
\xac\x05\x08\x05\xb0\x02\x26\x00\x32\x00\x00\x00\x07\x00\xad\x05\
\x24\x00\x0a\xff\xff\x00\x8c\xfe\xac\x03\xdf\x04\x4e\x02\x26\x00\
\x52\x00\x00\x00\x07\x00\xad\x04\x87\x00\x0a\xff\xff\x00\x76\xff\
\xec\x05\x09\x07\xe6\x02\x26\x00\x33\x00\x00\x01\x07\x02\x36\x05\
\x0b\x01\x53\x00\x2a\x00\xb0\x00\x45\x58\xb0\x0d\x2f\x1b\xb1\x0d\
\x1e\x3e\x59\xb0\x23\xdc\xb2\x7f\x23\x01\x71\xb2\xef\x23\x01\x71\
\xb2\x4f\x23\x01\x71\xb2\x2f\x23\x01\x71\xb0\x37\xd0\x30\x31\xff\
\xff\x00\xa9\x00\x00\x04\xc0\x07\x42\x02\x26\x00\x34\x00\x00\x01\
\x07\x00\x75\x01\x7c\x01\x42\x00\x14\x00\xb0\x00\x45\x58\xb0\x03\
\x2f\x1b\xb1\x03\x1e\x3e\x59\xb1\x16\x08\xf4\x30\x31\xff\xff\x00\
\x8c\xfe\x60\x04\x1e\x05\xf7\x02\x26\x00\x54\x00\x00\x01\x07\x00\
\x75\x01\x93\xff\xf7\x00\x14\x00\xb0\x00\x45\x58\xb0\x0c\x2f\x1b\
\xb1\x0c\x1a\x3e\x59\xb1\x1d\x09\xf4\x30\x31\xff\xff\x00\xa8\xfe\
\xac\x04\xc9\x05\xb0\x02\x26\x00\x36\x00\x00\x00\x07\x00\xad\x04\
\xb7\x00\x0a\xff\xff\x00\x82\xfe\xac\x02\x97\x04\x4e\x02\x26\x00\
\x56\x00\x00\x00\x07\x00\xad\x03\x4a\x00\x0a\xff\xff\x00\x50\xfe\
\xa2\x04\x72\x05\xc4\x02\x26\x00\x37\x00\x00\x00\x07\x00\xad\x04\
\xc9\x00\x00\xff\xff\x00\x5f\xfe\x9a\x03\xbb\x04\x4e\x02\x26\x00\
\x57\x00\x00\x00\x07\x00\xad\x04\x87\xff\xf8\xff\xff\x00\x31\xfe\
\xa2\x04\x97\x05\xb0\x02\x26\x00\x38\x00\x00\x00\x07\x00\xad\x04\
\xba\x00\x00\xff\xff\x00\x09\xfe\xa2\x02\x56\x05\x40\x02\x26\x00\
\x58\x00\x00\x00\x07\x00\xad\x04\x19\x00\x00\xff\xff\x00\x8c\xff\
\xec\x04\xaa\x07\xe4\x02\x26\x00\x39\x00\x00\x01\x07\x02\x36\x04\
\xe4\x01\x51\x00\x16\x00\xb0\x00\x45\x58\xb0\x12\x2f\x1b\xb1\x12\
\x1e\x3e\x59\xb0\x16\xdc\xb0\x2a\xd0\x30\x31\xff\xff\x00\x1c\x00\
\x00\x04\xfd\x07\x2e\x02\x26\x00\x3a\x00\x00\x01\x07\x00\xa5\x00\
\xb4\x01\x46\x00\x14\x00\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\
\x1e\x3e\x59\xb1\x0a\x04\xf4\x30\x31\xff\xff\x00\x21\x00\x00\x03\
\xba\x05\xe3\x02\x26\x00\x5a\x00\x00\x01\x06\x00\xa5\x1d\xfb\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x01\x2f\x1b\xb1\x01\x1a\x3e\x59\xb1\
\x0a\x01\xf4\x30\x31\xff\xff\x00\x1c\xfe\xac\x04\xfd\x05\xb0\x02\
\x26\x00\x3a\x00\x00\x00\x07\x00\xad\x04\xe4\x00\x0a\xff\xff\x00\
\x21\xfe\xac\x03\xba\x04\x3a\x02\x26\x00\x5a\x00\x00\x00\x07\x00\
\xad\x04\x4d\x00\x0a\xff\xff\x00\x3d\xfe\xac\x06\xed\x05\xb0\x02\
\x26\x00\x3b\x00\x00\x00\x07\x00\xad\x05\xef\x00\x0a\xff\xff\x00\
\x2b\xfe\xac\x05\xd3\x04\x3a\x02\x26\x00\x5b\x00\x00\x00\x07\x00\
\xad\x05\x53\x00\x0a\xff\xff\x00\x56\xfe\xac\x04\x7a\x05\xb0\x02\
\x26\x00\x3e\x00\x00\x00\x07\x00\xad\x04\xba\x00\x0a\xff\xff\x00\
\x58\xfe\xac\x03\xb3\x04\x3a\x02\x26\x00\x5e\x00\x00\x00\x07\x00\
\xad\x04\x62\x00\x0a\xff\xff\xfe\x32\xff\xec\x05\x4f\x05\xd6\x00\
\x26\x00\x33\x46\x00\x00\x07\x01\x71\xfd\xc3\x00\x00\xff\xff\x00\
\x13\x00\x00\x04\x70\x05\x1c\x02\x26\x02\x33\x00\x00\x00\x07\x00\
\xae\xff\xdc\xfe\xdd\xff\xff\xff\x63\x00\x00\x03\xea\x05\x1f\x00\
\x26\x02\x28\x3c\x00\x00\x07\x00\xae\xfe\xac\xfe\xe0\xff\xff\xff\
\x80\x00\x00\x04\x94\x05\x1c\x00\x26\x01\xe4\x3c\x00\x00\x07\x00\
\xae\xfe\xc9\xfe\xdd\xff\xff\xff\x84\x00\x00\x01\x8d\x05\x1e\x00\
\x26\x01\xe3\x3c\x00\x00\x07\x00\xae\xfe\xcd\xfe\xdf\xff\xff\xff\
\xd5\xff\xf0\x04\x64\x05\x1c\x00\x26\x01\xdd\x0a\x00\x00\x07\x00\
\xae\xff\x1e\xfe\xdd\xff\xff\xff\x1b\x00\x00\x04\x58\x05\x1c\x00\
\x26\x01\xd3\x3c\x00\x00\x07\x00\xae\xfe\x64\xfe\xdd\xff\xff\xff\
\xee\x00\x00\x04\x88\x05\x1b\x00\x26\x01\xf3\x0a\x00\x00\x07\x00\
\xae\xff\x37\xfe\xdc\xff\xff\x00\x13\x00\x00\x04\x70\x04\x8d\x02\
\x06\x02\x33\x00\x00\xff\xff\x00\x8a\x00\x00\x03\xef\x04\x8d\x02\
\x06\x02\x32\x00\x00\xff\xff\x00\x8a\x00\x00\x03\xae\x04\x8d\x02\
\x06\x02\x28\x00\x00\xff\xff\x00\x47\x00\x00\x03\xe0\x04\x8d\x02\
\x06\x01\xd2\x00\x00\xff\xff\x00\x8a\x00\x00\x04\x58\x04\x8d\x02\
\x06\x01\xe4\x00\x00\xff\xff\x00\x97\x00\x00\x01\x51\x04\x8d\x02\
\x06\x01\xe3\x00\x00\xff\xff\x00\x8a\x00\x00\x04\x57\x04\x8d\x02\
\x06\x01\xe1\x00\x00\xff\xff\x00\x8a\x00\x00\x05\x77\x04\x8d\x02\
\x06\x01\xdf\x00\x00\xff\xff\x00\x8a\x00\x00\x04\x58\x04\x8d\x02\
\x06\x01\xde\x00\x00\xff\xff\x00\x60\xff\xf0\x04\x5a\x04\x9d\x02\
\x06\x01\xdd\x00\x00\xff\xff\x00\x8a\x00\x00\x04\x1b\x04\x8d\x02\
\x06\x01\xdc\x00\x00\xff\xff\x00\x28\x00\x00\x03\xfd\x04\x8d\x02\
\x06\x01\xd8\x00\x00\xff\xff\x00\x0d\x00\x00\x04\x1c\x04\x8d\x02\
\x06\x01\xd3\x00\x00\xff\xff\x00\x26\x00\x00\x04\x31\x04\x8d\x02\
\x06\x01\xd4\x00\x00\xff\xff\xff\xb3\x00\x00\x02\x3c\x05\xe3\x02\
\x26\x01\xe3\x00\x00\x01\x07\x00\x6a\xff\x4e\x00\x1e\x00\x17\x00\
\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1c\x3e\x59\xb1\x0b\x02\
\xf4\xb0\x14\xd0\x30\x31\x00\xff\xff\x00\x0d\x00\x00\x04\x1c\x05\
\xe3\x02\x26\x01\xd3\x00\x00\x01\x06\x00\x6a\x6d\x1e\x00\x17\x00\
\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1c\x3e\x59\xb1\x10\x02\
\xf4\xb0\x19\xd0\x30\x31\x00\xff\xff\x00\x8a\x00\x00\x03\xae\x05\
\xe3\x02\x26\x02\x28\x00\x00\x01\x06\x00\x6a\x71\x1e\x00\x17\x00\
\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x1c\x3e\x59\xb1\x13\x02\
\xf4\xb0\x1c\xd0\x30\x31\x00\xff\xff\x00\x8a\x00\x00\x03\x85\x06\
\x1e\x02\x26\x01\xea\x00\x00\x01\x07\x00\x75\x01\x34\x00\x1e\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x04\x2f\x1b\xb1\x04\x1c\x3e\x59\xb1\
\x08\x06\xf4\x30\x31\xff\xff\x00\x43\xff\xf0\x03\xdd\x04\x9d\x02\
\x06\x01\xd9\x00\x00\xff\xff\x00\x97\x00\x00\x01\x51\x04\x8d\x02\
\x06\x01\xe3\x00\x00\xff\xff\xff\xb3\x00\x00\x02\x3c\x05\xe3\x02\
\x26\x01\xe3\x00\x00\x01\x07\x00\x6a\xff\x4e\x00\x1e\x00\x17\x00\
\xb0\x00\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1c\x3e\x59\xb1\x0b\x02\
\xf4\xb0\x14\xd0\x30\x31\x00\xff\xff\x00\x2b\xff\xf0\x03\x4d\x04\
\x8d\x02\x06\x01\xe2\x00\x00\xff\xff\x00\x8a\x00\x00\x04\x57\x06\
\x1e\x02\x26\x01\xe1\x00\x00\x01\x07\x00\x75\x01\x25\x00\x1e\x00\
\x14\x00\xb0\x00\x45\x58\xb0\x05\x2f\x1b\xb1\x05\x1c\x3e\x59\xb1\
\x0f\x06\xf4\x30\x31\xff\xff\x00\x22\xff\xec\x04\x0b\x05\xf6\x02\
\x26\x02\x01\x00\x00\x01\x06\x00\xa1\x67\x1f\x00\x14\x00\xb0\x00\
\x45\x58\xb0\x02\x2f\x1b\xb1\x02\x1c\x3e\x59\xb1\x14\x08\xf4\x30\
\x31\xff\xff\x00\x13\x00\x00\x04\x70\x04\x8d\x02\x06\x02\x33\x00\
\x00\xff\xff\x00\x8a\x00\x00\x03\xef\x04\x8d\x02\x06\x02\x32\x00\
\x00\xff\xff\x00\x8a\x00\x00\x03\x85\x04\x8d\x02\x06\x01\xea\x00\
\x00\xff\xff\x00\x8a\x00\x00\x03\xae\x04\x8d\x02\x06\x02\x28\x00\
\x00\xff\xff\x00\x8a\x00\x00\x04\x61\x05\xf6\x02\x26\x01\xfe\x00\
\x00\x01\x07\x00\xa1\x00\xc9\x00\x1f\x00\x14\x00\xb0\x00\x45\x58\
\xb0\x08\x2f\x1b\xb1\x08\x1c\x3e\x59\xb1\x0d\x08\xf4\x30\x31\xff\
\xff\x00\x8a\x00\x00\x05\x77\x04\x8d\x02\x06\x01\xdf\x00\x00\xff\
\xff\x00\x8a\x00\x00\x04\x58\x04\x8d\x02\x06\x01\xe4\x00\x00\xff\
\xff\x00\x60\xff\xf0\x04\x5a\x04\x9d\x02\x06\x01\xdd\x00\x00\xff\
\xff\x00\x8a\x00\x00\x04\x44\x04\x8d\x02\x06\x01\xef\x00\x00\xff\
\xff\x00\x8a\x00\x00\x04\x1b\x04\x8d\x02\x06\x01\xdc\x00\x00\xff\
\xff\x00\x60\xff\xf0\x04\x30\x04\x9d\x02\x06\x02\x31\x00\x00\xff\
\xff\x00\x28\x00\x00\x03\xfd\x04\x8d\x02\x06\x01\xd8\x00\x00\xff\
\xff\x00\x26\x00\x00\x04\x31\x04\x8d\x02\x06\x01\xd4\x00\x00\x00\
\x01\x00\x47\xfe\x50\x03\xd4\x04\x9d\x00\x29\x00\x9d\x00\xb0\x00\
\x45\x58\xb0\x0a\x2f\x1b\xb1\x0a\x1c\x3e\x59\xb0\x00\x45\x58\xb0\
\x19\x2f\x1b\xb1\x19\x12\x3e\x59\xb0\x00\x45\x58\xb0\x18\x2f\x1b\
\xb1\x18\x14\x3e\x59\xb0\x0a\x10\xb1\x03\x01\xb0\x0a\x2b\x58\x21\
\xd8\x1b\xf4\x59\xb2\x06\x0a\x19\x11\x12\x39\xb2\x27\x19\x0a\x11\
\x12\x39\x7c\xb0\x27\x2f\x18\xb2\xf0\x27\x01\x5d\xb2\x00\x27\x01\
\x71\xb2\xa0\x27\x01\x5d\xb4\x60\x27\x70\x27\x02\x5d\xb2\x30\x27\
\x01\x71\xb4\x60\x27\x70\x27\x02\x71\xb1\x26\x01\xb0\x0a\x2b\x58\
\x21\xd8\x1b\xf4\x59\xb2\x10\x26\x27\x11\x12\x39\xb0\x19\x10\xb0\
\x16\xd0\xb2\x1d\x19\x0a\x11\x12\x39\xb0\x19\x10\xb1\x20\x01\xb0\
\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\x30\x31\x01\x34\x26\x23\x22\x06\
\x15\x23\x34\x36\x33\x32\x16\x15\x14\x06\x07\x16\x16\x15\x14\x06\
\x07\x11\x23\x11\x26\x26\x35\x33\x16\x16\x33\x32\x36\x35\x34\x25\
\x23\x35\x33\x36\x03\x08\x8a\x7d\x6e\x81\xba\xed\xbc\xd3\xee\x6e\
\x67\x76\x71\xcb\xaf\xba\xa3\xb6\xb9\x05\x83\x79\x88\x92\xfe\xff\
\x9d\x9c\xef\x03\x50\x54\x5d\x58\x4f\x8e\xb5\xa8\x96\x56\x8d\x29\
\x24\x92\x5b\x8c\xaf\x12\xfe\x5b\x01\xa7\x14\xad\x88\x56\x60\x60\
\x58\xc1\x05\x98\x05\x00\x01\x00\x8a\xfe\x99\x04\xfa\x04\x8d\x00\
\x0f\x00\x5f\x00\xb0\x01\x2f\xb0\x00\x45\x58\xb0\x09\x2f\x1b\xb1\
\x09\x1c\x3e\x59\xb0\x00\x45\x58\xb0\x03\x2f\x1b\xb1\x03\x12\x3e\
\x59\xb0\x00\x45\x58\xb0\x06\x2f\x1b\xb1\x06\x12\x3e\x59\xb2\x0b\
\x03\x09\x11\x12\x39\x7c\xb0\x0b\x2f\x18\xb2\xa0\x0b\x01\x5d\xb1\
\x04\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\x09\x10\xb0\x0c\
\xd0\xb0\x03\x10\xb1\x0e\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\x30\x31\x01\x23\x11\x23\x11\x21\x11\x23\x11\x33\x11\x21\x11\x33\
\x11\x33\x04\xfa\xba\xa1\xfd\xa4\xb9\xb9\x02\x5c\xb9\xa2\xfe\x99\
\x01\x67\x01\xf2\xfe\x0e\x04\x8d\xfd\xfd\x02\x03\xfc\x0c\x00\x00\
\x01\x00\x60\xfe\x56\x04\x30\x04\x9d\x00\x1f\x00\x5a\x00\xb0\x00\
\x45\x58\xb0\x0e\x2f\x1b\xb1\x0e\x1c\x3e\x59\xb0\x00\x45\x58\xb0\
\x03\x2f\x1b\xb1\x03\x12\x3e\x59\xb0\x00\x45\x58\xb0\x05\x2f\x1b\
\xb1\x05\x14\x3e\x59\xb0\x03\x10\xb0\x06\xd0\xb0\x0e\x10\xb0\x12\
\xd0\xb0\x0e\x10\xb1\x15\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\
\xb0\x03\x10\xb1\x1c\x01\xb0\x0a\x2b\x58\x21\xd8\x1b\xf4\x59\xb0\
\x03\x10\xb0\x1f\xd0\x30\x31\x01\x06\x06\x07\x11\x23\x11\x26\x02\
\x35\x35\x34\x36\x36\x33\x32\x16\x17\x23\x26\x26\x23\x22\x06\x07\
\x15\x14\x16\x33\x32\x36\x37\x04\x30\x14\xcb\xa9\xba\xb7\xd7\x7b\
\xe7\x98\xcc\xf7\x13\xb9\x12\x8d\x7e\x99\xa7\x01\x9f\x97\x87\x8d\
\x14\x01\x79\xa8\xc7\x14\xfe\x60\x01\xa2\x1e\x01\x1e\xe3\x61\xa4\
\xf9\x88\xd3\xbb\x82\x74\xcb\xbd\x6a\xbd\xcf\x6f\x83\xff\xff\x00\
\x0d\x00\x00\x04\x1c\x04\x8d\x02\x06\x01\xd3\x00\x00\xff\xff\x00\
\x02\xfe\x51\x05\x6b\x04\x9d\x02\x26\x02\x17\x00\x00\x00\x07\x02\
\x51\x02\xbc\xff\xb8\xff\xff\x00\x8a\x00\x00\x04\x61\x05\xcb\x02\
\x26\x01\xfe\x00\x00\x01\x07\x00\x70\x00\x9c\x00\x26\x00\x13\x00\
\xb0\x00\x45\x58\xb0\x08\x2f\x1b\xb1\x08\x1c\x3e\x59\xb0\x0b\xdc\
\x30\x31\x00\xff\xff\x00\x22\xff\xec\x04\x0b\x05\xcb\x02\x26\x02\
\x01\x00\x00\x01\x06\x00\x70\x3a\x26\x00\x13\x00\xb0\x00\x45\x58\
\xb0\x11\x2f\x1b\xb1\x11\x1c\x3e\x59\xb0\x13\xdc\x30\x31\x00\xff\
\xff\x00\x60\x00\x00\x05\x06\x04\x8d\x02\x06\x01\xf1\x00\x00\xff\
\xff\x00\x97\xff\xf0\x05\x35\x04\x8d\x00\x26\x01\xe3\x00\x00\x00\
\x07\x01\xe2\x01\xe8\x00\x00\xff\xff\x00\x09\x00\x00\x05\xf1\x06\
\x00\x02\x26\x02\x73\x00\x00\x00\x07\x00\x75\x02\x9e\x00\x00\xff\
\xff\x00\x60\xff\xc7\x04\x5a\x06\x1e\x02\x26\x02\x75\x00\x00\x00\
\x07\x00\x75\x01\x7d\x00\x1e\xff\xff\x00\x43\xfd\xff\x03\xdd\x04\
\x9d\x02\x26\x01\xd9\x00\x00\x00\x07\x01\xba\x01\x29\xfe\xa0\xff\
\xff\x00\x31\x00\x00\x05\xf1\x06\x1e\x02\x26\x01\xd5\x00\x00\x00\
\x07\x00\x44\x01\xa2\x00\x1e\xff\xff\x00\x31\x00\x00\x05\xf1\x06\
\x1e\x02\x26\x01\xd5\x00\x00\x00\x07\x00\x75\x02\x31\x00\x1e\xff\
\xff\x00\x31\x00\x00\x05\xf1\x05\xe3\x02\x26\x01\xd5\x00\x00\x00\
\x07\x00\x6a\x01\x6b\x00\x1e\xff\xff\x00\x0d\x00\x00\x04\x1c\x06\
\x1e\x02\x26\x01\xd3\x00\x00\x00\x07\x00\x44\x00\xa4\x00\x1e\xff\
\xff\x00\x1c\xfe\x4f\x05\x1d\x05\xb0\x02\x26\x00\x25\x00\x00\x00\
\x07\x00\xa4\x01\x7c\x00\x00\xff\xff\x00\x6d\xfe\x4f\x03\xea\x04\
\x4e\x02\x26\x00\x45\x00\x00\x00\x07\x00\xa4\x00\xc4\x00\x00\xff\
\xff\x00\xa9\xfe\x59\x04\x46\x05\xb0\x02\x26\x00\x29\x00\x00\x00\
\x07\x00\xa4\x01\x3a\x00\x0a\xff\xff\x00\x5d\xfe\x4f\x03\xf3\x04\
\x4e\x02\x26\x00\x49\x00\x00\x00\x07\x00\xa4\x01\x06\x00\x00\xff\
\xff\x00\x13\xfe\x4f\x04\x70\x04\x8d\x02\x26\x02\x33\x00\x00\x00\
\x07\x00\xa4\x01\x1e\x00\x00\xff\xff\x00\x8a\xfe\x57\x03\xae\x04\
\x8d\x02\x26\x02\x28\x00\x00\x00\x07\x00\xa4\x00\xe7\x00\x08\xff\
\xff\x00\x85\xfe\xac\x01\x60\x04\x3a\x02\x26\x00\x8d\x00\x00\x00\
\x07\x00\xad\x03\x4d\x00\x0a\x00\x01\x00\x00\x05\x0e\x00\x8f\x00\
\x16\x00\x54\x00\x05\x00\x01\x00\x00\x00\x00\x00\x0e\x00\x00\x02\
\x00\x02\x24\x00\x06\x00\x01\x00\x00\x00\x61\x00\x61\x00\x61\x00\
\x61\x00\x61\x00\x94\x00\xb9\x01\x3a\x01\xae\x02\x40\x02\xd4\x02\
\xeb\x03\x15\x03\x3f\x03\x72\x03\x98\x03\xb7\x03\xce\x03\xf0\x04\
\x07\x04\x55\x04\x83\x04\xd3\x05\x4a\x05\x8e\x05\xf0\x06\x51\x06\
\x7e\x06\xf3\x07\x5b\x07\x70\x07\x85\x07\xa4\x07\xcc\x07\xeb\x08\
\x4a\x08\xef\x09\x35\x09\x95\x09\xea\x0a\x30\x0a\x72\x0a\xa9\x0b\
\x16\x0b\x61\x0b\x7c\x0b\xaf\x0c\x04\x0c\x28\x0c\x76\x0c\xb2\x0d\
\x08\x0d\x54\x0d\xba\x0e\x17\x0e\x83\x0e\xae\x0e\xf0\x0f\x20\x0f\
\x75\x0f\xca\x0f\xfa\x10\x33\x10\x58\x10\x6f\x10\x95\x10\xbc\x10\
\xd7\x10\xf7\x11\x71\x11\xd0\x12\x24\x12\x83\x12\xec\x13\x3f\x13\
\xba\x14\x00\x14\x39\x14\x86\x14\xdd\x14\xf8\x15\x64\x15\xaf\x15\
\xfe\x16\x63\x16\xc5\x17\x03\x17\x6f\x17\xc2\x18\x09\x18\x39\x18\
\x87\x18\xce\x19\x14\x19\x4d\x19\x8e\x19\xa5\x19\xe5\x1a\x2d\x1a\
\x61\x1a\xbe\x1b\x31\x1b\x95\x1b\xf7\x1c\x16\x1c\xbd\x1c\xec\x1d\
\x94\x1e\x04\x1e\x10\x1e\x2e\x1e\xe8\x1f\x02\x1f\x3f\x1f\x83\x1f\
\xd4\x20\x50\x20\x70\x20\xba\x20\xe6\x21\x06\x21\x42\x21\x74\x21\
\xbf\x21\xcb\x21\xe5\x21\xff\x22\x19\x22\x7b\x22\xe0\x23\x1e\x23\
\x9a\x23\xef\x24\x60\x25\x20\x25\x90\x25\xe3\x26\x55\x26\xb5\x27\
\x2c\x27\x8b\x27\xa6\x27\xf6\x28\x41\x28\x7f\x28\xd0\x29\x2c\x29\
\xb1\x2a\x4c\x2a\x7d\x2a\xe4\x2b\x4c\x2b\xb7\x2c\x18\x2c\x6c\x2c\
\xc6\x2c\xf5\x2d\x5a\x2d\x88\x2d\xac\x2d\xba\x2d\xe6\x2e\x06\x2e\
\x3f\x2e\x75\x2e\xba\x2e\xed\x2f\x2b\x2f\x48\x2f\x65\x2f\x6e\x2f\
\xa1\x2f\xd2\x2f\xee\x30\x0a\x30\x4e\x30\x5a\x30\x81\x30\xaf\x31\
\x2c\x31\x59\x31\x9d\x31\xcc\x32\x09\x32\x7e\x32\xd8\x33\x41\x33\
\xb7\x34\x2e\x34\x61\x34\xd4\x35\x42\x35\x9f\x35\xea\x36\x6b\x36\
\x99\x36\xf3\x37\x63\x37\xb5\x38\x10\x38\x6c\x38\xc4\x39\x08\x39\
\x4a\x39\xb4\x3a\x11\x3a\x78\x3a\xf0\x3b\x44\x3b\xbb\x3c\x17\x3c\
\x92\x3d\x0a\x3d\x7e\x3d\xd3\x3e\x10\x3e\x69\x3e\xc2\x3f\x31\x3f\
\xa8\x3f\xed\x40\x38\x40\x80\x40\xf2\x41\x28\x41\x6d\x41\xab\x41\
\xf4\x42\x4d\x42\xb1\x42\xfe\x43\x7d\x44\x0f\x44\x6b\x44\xdc\x45\
\x54\x45\x7b\x45\xd2\x46\x46\x46\xc1\x46\xfa\x47\x52\x47\x9a\x47\
\xe2\x48\x3f\x48\x6e\x48\x9a\x49\x26\x49\x5c\x49\x9d\x49\xdb\x4a\
\x20\x4a\x78\x4a\xdb\x4b\x26\x4b\x99\x4c\x20\x4c\x7c\x4c\xf5\x4d\
\x77\x4d\xee\x4e\x5d\x4e\xc5\x4f\x01\x4f\x64\x4f\xc5\x50\x2e\x50\
\xb2\x51\x4e\x51\x9a\x51\xe9\x52\x54\x52\xc3\x53\x39\x53\xa9\x54\
\x35\x54\xc0\x55\x52\x55\xed\x56\x70\x56\xea\x57\x2f\x57\x75\x57\
\xe2\x58\x4a\x59\x05\x59\xc1\x5a\x41\x5a\xc1\x5b\x13\x5b\x61\x5b\
\x96\x5b\xb2\x5b\xea\x5c\x00\x5c\x16\x5c\xea\x5d\x5d\x5d\x78\x5d\
\x93\x5d\xfd\x5e\x59\x5e\xcd\x5e\xfd\x5f\x28\x5f\x7e\x5f\xd4\x5f\
\xe0\x5f\xec\x5f\xf8\x60\x04\x60\x5b\x60\xbe\x61\x13\x61\x73\x61\
\x7f\x61\x8b\x61\xd6\x62\x40\x62\x9f\x62\xff\x63\xa0\x64\x39\x64\
\x45\x64\x51\x64\xa2\x64\xe6\x64\xf2\x64\xfe\x65\x4e\x65\x9c\x65\
\xde\x66\x50\x66\xc2\x67\x1b\x67\x80\x67\x8c\x67\x98\x68\x12\x68\
\x8a\x68\x96\x68\xa2\x68\xae\x68\xba\x69\x24\x69\x85\x69\xe0\x69\
\xef\x6a\x03\x6a\x0f\x6a\x1b\x6a\x69\x6a\xcd\x6b\x55\x6b\xc7\x6c\
\x36\x6c\x9a\x6c\xfc\x6d\x6b\x6d\xd6\x6e\x60\x6e\xe3\x6f\x40\x6f\
\x93\x6f\xe6\x70\x38\x70\xaf\x70\xbb\x70\xc7\x70\xf6\x70\xf6\x70\
\xf6\x70\xf6\x70\xf6\x70\xf6\x70\xf6\x70\xf6\x70\xf6\x70\xf6\x70\
\xf6\x70\xf6\x70\xf6\x70\xf6\x70\xfe\x71\x06\x71\x10\x71\x1a\x71\
\x32\x71\x56\x71\x7a\x71\x9d\x71\xb8\x71\xc4\x71\xd0\x72\x08\x72\
\x47\x72\xa9\x72\xcd\x72\xd9\x72\xe9\x73\x0c\x73\xdf\x73\xfb\x74\
\x18\x74\x2b\x74\x3f\x74\x86\x75\x10\x75\xae\x76\x3f\x76\x4b\x77\
\x2b\x77\x8f\x78\x0d\x78\xac\x79\x10\x79\x8b\x79\xe5\x7a\x51\x7b\
\x03\x7b\x6a\x7c\x00\x7c\x5e\x7c\xc2\x7c\xdc\x7c\xf6\x7d\x10\x7d\
\x2a\x7d\x9c\x7d\xc3\x7d\xfc\x7e\x18\x7e\x4d\x7e\xe0\x7f\x22\x7f\
\xaf\x7f\xf0\x80\x0e\x80\x2c\x80\x65\x80\x72\x80\x9c\x80\xbf\x80\
\xcb\x81\x34\x81\x87\x82\x14\x82\x83\x82\xf6\x83\xc3\x83\xc3\x85\
\x76\x85\xe2\x86\x32\x86\x5e\x86\xa8\x87\x06\x87\x7d\x87\xae\x88\
\x15\x88\x79\x88\xc0\x89\x3e\x89\x92\x89\xc4\x8a\x12\x8a\x4b\x8a\
\x7b\x8a\xc4\x8b\x1c\x8b\x4c\x8b\x8a\x8b\xb5\x8c\x1c\x8c\x75\x8c\
\xd4\x8d\x1f\x8d\x73\x8d\xac\x8d\xfd\x8e\x21\x8e\x64\x8e\x9a\x8e\
\xb5\x8e\xf6\x8f\x56\x8f\x8e\x90\x02\x90\x67\x90\xc6\x90\xf0\x91\
\x26\x91\x8e\x91\xc0\x92\x0e\x92\x40\x92\x80\x92\xe7\x93\x3f\x93\
\xa1\x94\x00\x94\x72\x94\xe8\x95\x5e\x95\xb1\x95\xf1\x96\x4a\x96\
\xa2\x97\x16\x97\x91\x97\xcd\x98\x1d\x98\x66\x98\xac\x98\xe7\x99\
\x29\x99\x69\x99\xb3\x9a\x0d\x9a\x19\x9a\x67\x9a\xd7\x9b\x55\x9b\
\xad\x9b\xf0\x9c\x76\x9c\xd8\x9d\x39\x9d\x97\x9e\x2c\x9e\x3d\x9e\
\x98\x9e\xe5\x9f\x33\x9f\x75\x9f\xe6\xa0\x4a\xa0\xb0\xa1\x21\xa1\
\xb5\xa2\x3b\xa2\xd2\xa3\x45\xa3\xb5\xa3\xf8\xa4\x55\xa4\xaf\xa4\
\xdc\xa5\x59\xa5\xb8\xa5\xcf\xa6\x35\xa6\x7a\xa7\x25\xa7\x89\xa7\
\xed\xa8\x3d\xa8\x83\xa8\xc4\xa9\x06\xa9\x4e\xa9\xa3\xaa\x0a\xaa\
\x4a\xaa\x64\xaa\xb3\xab\x28\xab\x70\xab\xb8\xac\x18\xac\x86\xac\
\xb3\xad\x02\xad\x62\xad\x76\xad\x8a\xad\x9c\xad\xb0\xad\xc2\xad\
\xd9\xad\xed\xae\x49\xae\xbb\xaf\x08\xaf\x68\xaf\xd1\xaf\xfc\xb0\
\x50\xb0\xa2\xb0\xe6\xb1\x3d\xb1\x64\xb1\xd5\xb1\xeb\xb2\x6f\xb2\
\xd2\xb2\xfe\xb3\x0f\xb3\x20\xb3\x33\xb3\x44\xb3\x55\xb3\x68\xb3\
\x7b\xb3\x8e\xb3\xa4\xb3\xac\xb3\xb4\xb3\xbc\xb3\xcd\xb3\xd8\xb3\
\xe0\xb4\x48\xb4\x97\xb4\xc4\xb5\x25\xb5\x78\xb5\xd9\xb6\x54\xb6\
\x9e\xb7\x04\xb7\x66\xb7\xca\xb8\x43\xb8\x4b\xb8\xe6\xb9\x33\xb9\
\x9f\xb9\xef\xba\x68\xba\xd6\xbb\x27\xbb\x27\xbb\x2f\xbb\x95\xbb\
\xfb\xbc\x5a\xbc\x9d\xbd\x03\xbd\x1a\xbd\x31\xbd\x48\xbd\x5f\xbd\
\x78\xbd\x91\xbd\x9d\xbd\xa9\xbd\xc0\xbd\xd7\xbd\xee\xbe\x07\xbe\
\x1e\xbe\x35\xbe\x4c\xbe\x65\xbe\x7c\xbe\x93\xbe\xaa\xbe\xc1\xbe\
\xd8\xbe\xf1\xbf\x08\xbf\x1f\xbf\x36\xbf\x4f\xbf\x66\xbf\x7d\xbf\
\x94\xbf\xaa\xbf\xc0\xbf\xd9\xbf\xf2\xbf\xfe\xc0\x0a\xc0\x21\xc0\
\x38\xc0\x4e\xc0\x67\xc0\x7d\xc0\x93\xc0\xaa\xc0\xc3\xc0\xd9\xc0\
\xf0\xc1\x07\xc1\x1d\xc1\x33\xc1\x4c\xc1\x63\xc1\x7a\xc1\x90\xc1\
\xa9\xc1\xc0\xc1\xd8\xc1\xef\xc2\x05\xc2\x1c\xc2\x33\xc2\x97\xc3\
\x2f\xc3\x46\xc3\x5d\xc3\x74\xc3\x8a\xc3\xa1\xc3\xb8\xc3\xcf\xc3\
\xe5\xc3\xfc\xc4\x2d\xc4\x44\xc4\x5a\xc4\x71\xc4\x88\xc4\x9f\xc4\
\xb6\xc5\x20\xc5\xa6\xc5\xbd\xc5\xd3\xc5\xea\xc6\x00\xc6\x17\xc6\
\x2e\xc6\x45\xc6\x5c\xc6\x68\xc6\x7f\xc6\x96\xc6\xa8\xc6\xbf\xc6\
\xd6\xc6\xed\xc7\x04\xc7\x1b\xc7\x32\xc7\x3d\xc7\x48\xc7\x5f\xc7\
\x6b\xc7\x77\xc7\x8e\xc7\xa5\xc7\xb1\xc7\xbd\xc7\xd4\xc7\xeb\xc7\
\xf7\xc8\x03\xc8\x18\xc8\x4d\xc8\x59\xc8\x65\xc8\x7c\xc8\x93\xc8\
\x9f\xc8\xab\xc8\xc2\xc8\xd8\xc8\xed\xc9\x04\xc9\x1a\xc9\x31\xc9\
\x48\xc9\x61\xc9\x7a\xc9\x91\xc9\xa8\xc9\xb4\xc9\xc0\xc9\xd7\xc9\
\xed\xca\x04\xca\x1b\xca\x32\xca\x48\xca\x54\xca\x60\xca\x6c\xca\
\x78\xca\x8f\xca\xa5\xca\xb1\xca\xbd\xca\xc9\xca\xd5\xca\xec\xcb\
\x02\xcb\x19\xcb\x2f\xcb\x46\xcb\x5c\xcb\x73\xcb\x8a\xcb\xa3\xcb\
\xbc\xcb\xd5\xcb\xee\xcc\x4c\xcc\xb3\xcc\xca\xcc\xe1\xcc\xf8\xcd\
\x0e\xcd\x27\xcd\x3e\xcd\x55\xcd\x6c\xcd\x83\xcd\x9a\xcd\xb0\xcd\
\xc7\xcd\xde\xcd\xf5\xce\x0c\xce\x2f\xce\x57\xce\x6a\xce\x81\xce\
\x98\xce\xae\xce\xc4\xce\xdd\xce\xf6\xcf\x02\xcf\x0e\xcf\x25\xcf\
\x3c\xcf\x52\xcf\x6a\xcf\x80\xcf\x96\xcf\xad\xcf\xc6\xcf\xdd\xcf\
\xf4\xd0\x0b\xd0\x22\xd0\x39\xd0\x52\xd0\x69\xd0\x80\xd0\x96\xd0\
\xaf\xd0\xc6\xd0\xdc\xd0\xf3\xd1\x57\xd1\x6e\xd1\x84\xd1\x9b\xd1\
\xb2\xd1\xc8\xd1\xde\xd1\xf4\xd2\x0b\xd2\x76\xd2\x8c\xd2\xa2\xd2\
\xb9\xd2\xd0\xd2\xdc\xd2\xf3\xd3\x0a\xd3\x21\xd3\x38\xd3\x43\xd3\
\x59\xd3\x70\xd3\x7c\xd3\x92\xd3\x9e\xd3\xb3\xd3\xbf\xd3\xd6\xd3\
\xe2\xd3\xf9\xd4\x10\xd4\x27\xd4\x40\xd4\x57\xd4\x63\xd4\x79\xd4\
\x90\xd4\xa6\xd4\xb2\xd4\xc8\xd4\xd4\xd4\xea\xd4\xf6\xd5\x0c\xd5\
\x22\xd5\x39\xd5\x52\xd5\x6b\xd5\xc8\xd5\xdf\xd5\xf5\xd6\x0d\xd6\
\x24\xd6\x3b\xd6\x51\xd6\x5c\xd6\x68\xd6\x74\xd6\x80\xd6\x8c\xd6\
\x98\xd6\xa4\xd6\xc0\xd6\xc8\xd6\xd0\xd6\xd8\xd6\xe0\xd6\xe8\xd6\
\xf0\xd6\xf8\xd7\x00\xd7\x08\xd7\x10\xd7\x18\xd7\x20\xd7\x28\xd7\
\x30\xd7\x49\xd7\x62\xd7\x79\xd7\x90\xd7\xa7\xd7\xbd\xd7\xd8\xd7\
\xe0\xd7\xe8\xd7\xf0\xd7\xf8\xd8\x63\xd8\x7b\xd8\x93\xd8\xaa\xd8\
\xc1\xd8\xd8\xd8\xf1\xd9\x08\xd9\x74\xd9\x7c\xd9\x95\xd9\x9d\xd9\
\xa5\xd9\xbc\xd9\xd3\xd9\xdb\xd9\xe3\xd9\xeb\xd9\xf3\xda\x0a\xda\
\x12\xda\x1a\xda\x22\xda\x2a\xda\x32\xda\x3a\xda\x42\xda\x4a\xda\
\x52\xda\x5a\xda\x71\xda\x79\xda\x81\xda\xd5\xda\xdd\xda\xe5\xda\
\xfe\xdb\x15\xdb\x1d\xdb\x25\xdb\x3e\xdb\x46\xdb\x5d\xdb\x73\xdb\
\x8a\xdb\xa1\xdb\xb8\xdb\xcf\xdb\xe8\xdc\x01\xdc\x18\xdc\x2f\xdc\
\x37\xdc\x3f\xdc\x4b\xdc\x62\xdc\x6a\xdc\x81\xdc\x98\xdc\xa4\xdc\
\xb0\xdc\xc7\xdc\xde\xdc\xf5\xdd\x0c\xdd\x14\xdd\x1c\xdd\x35\xdd\
\x4e\xdd\x5a\xdd\x66\xdd\x72\xdd\x7e\xdd\x8a\xdd\x96\xdd\x9e\xdd\
\xa6\xdd\xae\xdd\xc5\xdd\xdc\xdd\xe4\xdd\xfb\xde\x12\xde\x2b\xde\
\x44\xde\x4c\xde\x54\xde\x6b\xde\x82\xde\x9b\xde\xa3\xde\xbc\xde\
\xd5\xde\xee\xdf\x07\xdf\x1f\xdf\x36\xdf\x4c\xdf\x65\xdf\x7e\xdf\
\x97\xdf\xb0\xdf\xb8\xdf\xc0\xdf\xd9\xdf\xf2\xe0\x0b\xe0\x23\xe0\
\x3a\xe0\x50\xe0\x69\xe0\x81\xe0\x9a\xe0\xb3\xe0\xcc\xe0\xe4\xe1\
\x01\xe1\x1e\xe1\x26\xe1\x32\xe1\x3e\xe1\x55\xe1\x6c\xe1\x85\xe1\
\x9d\xe1\xb6\xe1\xce\xe1\xe7\xe1\xff\xe2\x18\xe2\x30\xe2\x4b\xe2\
\x65\xe2\x7e\xe2\x97\xe2\xb0\xe2\xc9\xe2\xe2\xe2\xfb\xe3\x14\xe3\
\x2d\xe3\x48\xe3\x63\xe3\x6f\xe3\x7b\xe3\x92\xe3\xa9\xe3\xc0\xe3\
\xd6\xe3\xef\xe4\x07\xe4\x20\xe4\x38\xe4\x51\xe4\x69\xe4\x82\xe4\
\x9a\xe4\xb5\xe4\xcf\xe4\xe6\xe4\xfd\xe5\x09\xe5\x15\xe5\x21\xe5\
\x2d\xe5\x44\xe5\x5b\xe5\x74\xe5\x8c\xe5\xa5\xe5\xbd\xe5\xd6\xe5\
\xee\xe6\x07\xe6\x1f\xe6\x3a\xe6\x54\xe6\x6b\xe6\x82\xe6\x99\xe6\
\xb0\xe6\xc7\xe6\xde\xe6\xf5\xe7\x0b\xe7\x17\xe7\x23\xe7\x2f\xe7\
\x3b\xe7\x52\xe7\x69\xe7\x80\xe7\x97\xe7\xae\xe7\xc5\xe7\xdc\xe7\
\xf3\xe8\x0a\xe8\x20\xe8\x2c\xe8\x38\xe8\x44\xe8\x50\xe8\x67\xe8\
\x7e\xe8\x95\xe8\xab\xe8\xc0\xe8\xcc\xe8\xd8\xe8\xe4\xe8\xf0\xe8\
\xfc\xe9\x08\xe9\x14\xe9\x20\xe9\x28\xe9\x88\xe9\xe8\xea\x2b\xea\
\x6b\xea\xcf\xeb\x2e\xeb\x78\xeb\xc8\xec\x21\xec\x78\xec\x80\xec\
\x8c\xec\x96\xec\x9e\xec\xa6\xec\xae\xec\xb6\xec\xbe\xec\xc6\xec\
\xce\xec\xd6\xec\xed\xed\x04\xed\x1b\xed\x32\xed\x4b\xed\x64\xed\
\x7d\xed\x96\xed\xaf\xed\xc8\xed\xe1\xed\xfa\xee\x13\xee\x2c\xee\
\x45\xee\x5e\xee\x6a\xee\x76\xee\x82\xee\x8e\xee\x9a\xee\xab\xee\
\xb7\xee\xc3\xee\xcf\xee\xe6\xee\xf8\xef\x04\xef\x10\xef\x1c\xef\
\x28\xef\x34\xef\x40\xef\x4c\xef\x58\xef\x7a\xef\x91\xef\xa8\xef\
\xb4\xef\xc0\xef\xcc\xef\xd8\xef\xe4\xef\xf0\xf0\x08\xf0\x1f\xf0\
\x35\xf0\x41\xf0\x4d\xf0\x59\xf0\x65\xf0\x71\xf0\x7d\xf0\x89\xf0\
\x95\xf0\xa1\xf0\xad\xf0\xb9\xf0\xc5\xf0\xd1\xf0\xdd\xf0\xe5\xf0\
\xed\xf0\xf5\xf0\xfd\xf1\x05\xf1\x0d\xf1\x15\xf1\x1d\xf1\x25\xf1\
\x2d\xf1\x35\xf1\x3d\xf1\x45\xf1\x4d\xf1\x66\xf1\x7e\xf1\x96\xf1\
\xad\xf1\xb5\xf1\xbd\xf1\xd6\xf1\xde\xf1\xf5\xf2\x0b\xf2\x13\xf2\
\x1b\xf2\x23\xf2\x2b\xf2\x42\xf2\x4a\xf2\x52\xf2\x5a\xf2\x62\xf2\
\x6a\xf2\x72\xf2\x7a\xf2\x82\xf3\x0d\xf3\x5a\xf3\xb9\xf3\xc1\xf3\
\xcd\xf3\xe4\xf3\xfa\xf4\x02\xf4\x0e\xf4\x1a\xf4\x26\xf4\x32\xf4\
\x3e\xf4\x4a\xf4\x56\xf4\x62\xf4\x6e\xf4\x7a\xf4\x86\xf4\x92\xf4\
\x9e\xf4\xaa\xf4\xb6\x00\x00\x00\x01\x00\x00\x00\x02\x23\x12\x60\
\x82\x43\x3c\x5f\x0f\x3c\xf5\x00\x19\x08\x00\x00\x00\x00\x00\xc4\
\xf0\x11\x2e\x00\x00\x00\x00\xd5\x01\x52\xf4\xfa\x1b\xfd\xd5\x09\
\x30\x08\x73\x00\x00\x00\x09\x00\x02\x00\x00\x00\x00\x00\x00\x03\
\x8c\x00\x64\x00\x00\x00\x00\x00\x00\x00\x00\x01\xfb\x00\x00\x01\
\xfb\x00\x00\x02\x0f\x00\xa0\x02\x8f\x00\x88\x04\xed\x00\x77\x04\
\x7e\x00\x6e\x05\xdc\x00\x69\x04\xf9\x00\x65\x01\x65\x00\x67\x02\
\xbc\x00\x85\x02\xc8\x00\x26\x03\x72\x00\x1c\x04\x89\x00\x4e\x01\
\x92\x00\x1d\x02\x35\x00\x25\x02\x1b\x00\x90\x03\x4c\x00\x12\x04\
\x7e\x00\x73\x04\x7e\x00\xaa\x04\x7e\x00\x5d\x04\x7e\x00\x5e\x04\
\x7e\x00\x35\x04\x7e\x00\x9a\x04\x7e\x00\x84\x04\x7e\x00\x4d\x04\
\x7e\x00\x70\x04\x7e\x00\x64\x01\xf0\x00\x86\x01\xb1\x00\x29\x04\
\x11\x00\x48\x04\x64\x00\x98\x04\x2e\x00\x86\x03\xc7\x00\x4b\x07\
\x2f\x00\x6a\x05\x38\x00\x1c\x04\xfb\x00\xa9\x05\x35\x00\x77\x05\
\x3f\x00\xa9\x04\x8c\x00\xa9\x04\x6c\x00\xa9\x05\x73\x00\x7a\x05\
\xb4\x00\xa9\x02\x2d\x00\xb7\x04\x6a\x00\x35\x05\x04\x00\xa9\x04\
\x4e\x00\xa9\x06\xfc\x00\xa9\x05\xb4\x00\xa9\x05\x80\x00\x76\x05\
\x0c\x00\xa9\x05\x80\x00\x6d\x04\xed\x00\xa8\x04\xbf\x00\x50\x04\
\xc6\x00\x31\x05\x30\x00\x8c\x05\x17\x00\x1c\x07\x19\x00\x3d\x05\
\x04\x00\x39\x04\xce\x00\x0f\x04\xca\x00\x56\x02\x1f\x00\x92\x03\
\x48\x00\x28\x02\x1f\x00\x09\x03\x58\x00\x40\x03\x9c\x00\x04\x02\
\x79\x00\x39\x04\x5a\x00\x6d\x04\x7d\x00\x8c\x04\x30\x00\x5c\x04\
\x83\x00\x5f\x04\x3d\x00\x5d\x02\xc7\x00\x3c\x04\x7d\x00\x60\x04\
\x68\x00\x8c\x01\xf1\x00\x8d\x01\xe9\xff\xbf\x04\x0e\x00\x8d\x01\
\xf1\x00\x9c\x07\x03\x00\x8b\x04\x6a\x00\x8c\x04\x90\x00\x5b\x04\
\x7d\x00\x8c\x04\x8c\x00\x5f\x02\xb5\x00\x8c\x04\x20\x00\x5f\x02\
\x9d\x00\x09\x04\x69\x00\x88\x03\xe0\x00\x21\x06\x03\x00\x2b\x03\
\xf7\x00\x29\x03\xc9\x00\x16\x03\xf7\x00\x58\x02\xb5\x00\x40\x01\
\xf3\x00\xaf\x02\xb5\x00\x13\x05\x71\x00\x83\x01\xf3\x00\x8b\x04\
\x60\x00\x69\x04\xa6\x00\x5b\x05\xb4\x00\x69\x04\x33\x00\x0f\x01\
\xeb\x00\x93\x04\xe8\x00\x5a\x03\x58\x00\x65\x06\x49\x00\x5b\x03\
\x93\x00\x93\x03\xc1\x00\x66\x04\x6e\x00\x7f\x06\x4a\x00\x5a\x03\
\xaa\x00\x8e\x02\xfd\x00\x82\x04\x46\x00\x61\x02\xef\x00\x42\x02\
\xef\x00\x3e\x02\x82\x00\x7b\x04\x88\x00\x9a\x03\xe9\x00\x43\x02\
\x16\x00\x93\x01\xfb\x00\x74\x02\xef\x00\x7a\x03\xa3\x00\x7a\x03\
\xc0\x00\x66\x05\xdc\x00\x55\x06\x35\x00\x50\x06\x39\x00\x6f\x03\
\xc9\x00\x44\x07\x7a\xff\xf2\x04\x44\x00\x59\x05\x80\x00\x76\x04\
\xba\x00\xa6\x04\xc2\x00\x8b\x06\xc1\x00\x4e\x04\xb0\x00\x7e\x04\
\x91\x00\x47\x04\x88\x00\x5b\x04\x9c\x00\x95\x04\xc7\x00\x5f\x05\
\x9a\x00\x1d\x01\xfa\x00\x9b\x04\x73\x00\x9a\x04\x4f\x00\x22\x02\
\x29\x00\x22\x05\x8b\x00\xa2\x04\x88\x00\x91\x07\xa1\x00\x68\x07\
\x44\x00\x61\x01\xfc\x00\xa0\x05\x87\x00\x5d\x02\xb9\xff\xe4\x05\
\x7e\x00\x65\x04\x92\x00\x5b\x05\x90\x00\x8c\x04\xf3\x00\x88\x02\
\x03\xff\xb4\x04\x37\x00\x62\x03\xc4\x00\xa9\x03\x8d\x00\x8d\x03\
\xab\x00\x8e\x03\x6a\x00\x81\x01\xf1\x00\x8d\x02\xad\x00\x79\x02\
\x2a\x00\x32\x03\xc6\x00\x7b\x02\xfc\x00\x5e\x02\x5a\x00\x7e\x00\
\x00\xfc\xa7\x00\x00\xfd\x6f\x00\x00\xfc\x8b\x00\x00\xfd\x5e\x00\
\x00\xfc\x27\x00\x00\xfd\x38\x02\x0d\x00\xb7\x04\x0b\x00\x71\x02\
\x17\x00\x93\x04\x73\x00\xb1\x05\xa4\x00\x1f\x05\x71\x00\x67\x05\
\x3e\x00\x32\x04\x91\x00\x78\x05\xb5\x00\xb2\x04\x91\x00\x45\x05\
\xbb\x00\x4d\x05\x89\x00\x5a\x05\x52\x00\x71\x04\x85\x00\x64\x04\
\xbd\x00\xa0\x04\x02\x00\x2e\x04\x88\x00\x60\x04\x50\x00\x63\x04\
\x25\x00\x6d\x04\x88\x00\x91\x04\x8e\x00\x7a\x02\x97\x00\xc3\x04\
\x6e\x00\x25\x03\xec\x00\x65\x04\xc4\x00\x29\x04\x88\x00\x91\x04\
\x4d\x00\x65\x04\x88\x00\x60\x04\x2c\x00\x51\x04\x5d\x00\x8f\x05\
\xa3\x00\x57\x05\x9a\x00\x5f\x06\x97\x00\x7a\x04\xa1\x00\x79\x04\
\x42\xff\xda\x06\x48\x00\x4a\x05\xff\x00\x2a\x05\x64\x00\x7b\x08\
\x91\x00\x31\x08\xa4\x00\xb1\x06\x82\x00\x3e\x05\xb4\x00\xb0\x05\
\x0b\x00\xa2\x06\x04\x00\x32\x07\x43\x00\x1b\x04\xbf\x00\x50\x05\
\xb4\x00\xb1\x05\xa9\x00\x2f\x05\x07\x00\x4d\x06\x2c\x00\x53\x05\
\xd9\x00\xaf\x05\x7a\x00\x96\x07\x87\x00\xb0\x07\xc0\x00\xb0\x06\
\x12\x00\x10\x06\xeb\x00\xb2\x05\x05\x00\xa3\x05\x64\x00\x93\x07\
\x27\x00\xb7\x05\x18\x00\x59\x04\x6c\x00\x61\x04\x92\x00\x9d\x03\
\x5b\x00\x9a\x04\xd4\x00\x2e\x06\x20\x00\x15\x04\x10\x00\x58\x04\
\x9e\x00\x9c\x04\x52\x00\x9c\x04\xa0\x00\x2c\x05\xef\x00\x9d\x04\
\x9d\x00\x9c\x04\x9e\x00\x9c\x03\xd8\x00\x28\x05\xcd\x00\x64\x04\
\xbd\x00\x9c\x04\x59\x00\x67\x06\x78\x00\x9c\x06\x9e\x00\x91\x04\
\xf7\x00\x1e\x06\x36\x00\x9d\x04\x58\x00\x9d\x04\x4d\x00\x64\x06\
\x87\x00\x9d\x04\x64\x00\x2f\x04\x68\xff\xe8\x04\x4d\x00\x67\x06\
\xc9\x00\x27\x06\xe4\x00\x9c\x04\x89\xff\xfd\x04\x9e\x00\x9c\x07\
\x08\x00\x9c\x06\x2b\x00\x81\x04\x56\xff\xdc\x07\x2b\x00\xb7\x05\
\xf8\x00\x99\x04\xd2\x00\x28\x04\x46\x00\x0f\x07\x0b\x00\xc9\x06\
\x0b\x00\xbc\x06\xd1\x00\x93\x05\xe1\x00\x96\x09\x04\x00\xb6\x07\
\xd1\x00\x9b\x04\x23\x00\x50\x03\xdb\x00\x4c\x05\x71\x00\x67\x04\
\x8b\x00\x5b\x05\x0a\x00\x16\x04\x03\x00\x2e\x05\x71\x00\x67\x04\
\x88\x00\x5b\x07\x01\x00\x9c\x06\x24\x00\x7e\x07\x08\x00\x9c\x06\
\x2b\x00\x81\x05\x32\x00\x75\x04\x47\x00\x64\x04\xfd\x00\x74\x00\
\x00\xfc\x67\x00\x00\xfc\x71\x00\x00\xfd\x66\x00\x00\xfd\xa4\x00\
\x00\xfa\x1b\x00\x00\xfa\x2c\x06\x09\x00\xb1\x04\xed\x00\x9c\x04\
\x56\xff\xdc\x05\x1b\x00\xa8\x04\x89\x00\x8c\x04\x63\x00\xa2\x03\
\x90\x00\x91\x04\xdb\x00\xb1\x04\x05\x00\x91\x07\xa2\x00\x1b\x06\
\x61\x00\x15\x05\x9a\x00\xb2\x04\xb8\x00\x9c\x05\x09\x00\xa3\x04\
\x7e\x00\x9a\x06\x8c\x00\x44\x05\x83\x00\x3e\x05\xff\x00\xa9\x04\
\xd9\x00\x9c\x07\xcf\x00\xa8\x05\xb4\x00\x91\x08\x31\x00\xb0\x06\
\xf4\x00\x91\x05\xee\x00\x71\x04\xd3\x00\x6d\x05\x18\x00\x39\x04\
\x2a\x00\x29\x07\x2c\x00\x34\x05\x5c\x00\x1f\x05\xbc\x00\x96\x04\
\x96\x00\x67\x05\x6f\x00\x96\x04\x6a\x00\x83\x05\x6f\x00\x89\x06\
\x2f\x00\x3f\x04\xbd\xff\xde\x05\x09\x00\xa3\x04\x5a\x00\x9a\x05\
\xfe\x00\x2f\x04\xef\x00\x2c\x05\xb2\x00\xb1\x04\x88\x00\x91\x06\
\x12\x00\xa9\x04\xec\x00\x9c\x07\x4f\x00\xa9\x06\x3e\x00\x9d\x05\
\x87\x00\x5d\x04\xa8\x00\x68\x04\xa8\x00\x69\x04\xb7\x00\x3a\x03\
\xab\x00\x3b\x05\x2e\x00\x39\x04\x40\x00\x29\x04\xf6\x00\x57\x06\
\x94\x00\x59\x06\xe4\x00\x64\x06\x56\x00\x36\x05\x2b\x00\x31\x04\
\x49\x00\x52\x04\x07\x00\x79\x07\xc1\x00\x44\x06\x75\x00\x3f\x07\
\xfb\x00\xa9\x06\xa1\x00\x90\x04\xf6\x00\x76\x04\x1d\x00\x65\x05\
\xad\x00\x23\x05\x20\x00\x46\x05\x64\x00\x96\x06\x02\x00\x2f\x04\
\xf2\x00\x2c\x03\x20\x00\x6f\x04\x14\x00\x00\x08\x29\x00\x00\x04\
\x14\x00\x00\x08\x29\x00\x00\x02\xb9\x00\x00\x02\x0a\x00\x00\x01\
\x5c\x00\x00\x04\x7f\x00\x00\x02\x30\x00\x00\x01\xa2\x00\x00\x01\
\x00\x00\x00\x00\xd1\x00\x00\x00\x00\x00\x00\x02\x34\x00\x25\x02\
\x34\x00\x25\x05\x40\x00\xa2\x06\x3f\x00\x90\x03\xa5\x00\x0d\x01\
\x99\x00\x60\x01\x99\x00\x30\x01\x97\x00\x24\x01\x99\x00\x4f\x02\
\xd4\x00\x68\x02\xdb\x00\x3c\x02\xc1\x00\x24\x04\x69\x00\x46\x04\
\x8f\x00\x57\x02\xb2\x00\x8a\x03\xc4\x00\x94\x05\x5a\x00\x94\x01\
\x7e\x00\x52\x07\xaa\x00\x44\x02\x66\x00\x6c\x02\x66\x00\x59\x03\
\xa3\x00\x3b\x02\xef\x00\x36\x03\x60\x00\x7a\x04\xa6\x00\x5b\x06\
\x55\x00\x1f\x06\x90\x00\xa7\x08\x76\x00\xa8\x05\xeb\x00\x1f\x06\
\x2b\x00\x8c\x04\x7e\x00\x5f\x05\xda\x00\x1f\x04\x22\x00\x2a\x04\
\x74\x00\x20\x05\x48\x00\x5d\x05\x4f\x00\x1f\x05\xe7\x00\x7a\x03\
\xce\x00\x68\x08\x3a\x00\xa2\x05\x01\x00\x67\x05\x17\x00\x98\x06\
\x26\x00\x54\x06\xd7\x00\x64\x06\xcf\x00\x63\x06\x6a\x00\x59\x04\
\x8f\x00\x6a\x05\x8e\x00\xa9\x04\xaf\x00\x45\x04\x92\x00\xa8\x04\
\xc5\x00\x3f\x08\x3a\x00\x62\x02\x0c\xff\xb0\x04\x82\x00\x65\x04\
\x64\x00\x98\x04\x11\x00\x3e\x04\x2f\x00\x85\x04\x08\x00\x2b\x02\
\x4c\x00\xb5\x02\x8f\x00\x6e\x02\x03\x00\x5c\x04\xf3\x00\x3c\x04\
\x6e\x00\x1f\x04\x8b\x00\x3c\x06\xd4\x00\x3c\x06\xd4\x00\x3c\x04\
\xee\x00\x3c\x06\x9b\x00\x5f\x00\x00\x00\x00\x08\x33\x00\x5b\x08\
\x35\x00\x5c\x02\xef\x00\x42\x02\xef\x00\x7a\x02\xef\x00\x50\x04\
\x0f\x00\x55\x04\x0f\x00\x60\x04\x0f\x00\x42\x04\x0e\x00\x72\x04\
\x0f\x00\x80\x04\x0f\x00\x30\x04\x0f\x00\x4e\x04\x0f\x00\x4e\x04\
\x0f\x00\x98\x04\x0f\x00\x63\x04\x23\x00\x47\x04\x2b\x00\x0d\x04\
\x54\x00\x26\x06\x15\x00\x31\x04\x67\x00\x14\x04\x7c\x00\x74\x04\
\x26\x00\x28\x04\x20\x00\x43\x04\x4a\x00\x8a\x04\xbb\x00\x59\x04\
\x5c\x00\x8a\x04\xbb\x00\x60\x04\xe3\x00\x8a\x06\x02\x00\x8a\x03\
\xb4\x00\x8a\x04\x54\x00\x8a\x03\xcf\x00\x2b\x01\xe8\x00\x97\x04\
\xe3\x00\x8a\x04\xac\x00\x63\x03\xcb\x00\x8a\x04\x20\x00\x43\x04\
\x33\x00\x30\x03\xa1\x00\x0d\x03\xaf\x00\x8a\x04\x67\x00\x14\x04\
\xbb\x00\x60\x04\x67\x00\x14\x03\x89\x00\x3e\x04\xce\x00\x8a\x03\
\xef\x00\x3f\x05\x67\x00\x60\x05\x17\x00\x60\x04\xf2\x00\x75\x05\
\x72\x00\x26\x04\x7c\x00\x60\x07\x41\x00\x27\x07\x4f\x00\x8a\x05\
\x74\x00\x28\x04\xcd\x00\x8a\x04\x59\x00\x8a\x05\x24\x00\x2e\x06\
\x0b\x00\x1f\x04\x3f\x00\x47\x04\xec\x00\x8a\x04\x4e\x00\x8b\x04\
\xc1\x00\x27\x04\x1f\x00\x22\x05\x28\x00\x8a\x04\x6a\x00\x3d\x06\
\x51\x00\x8a\x06\xac\x00\x8a\x05\x1d\x00\x08\x05\xf1\x00\x8a\x04\
\x4e\x00\x8a\x04\x7b\x00\x4b\x06\x76\x00\x8a\x04\x87\x00\x50\x04\
\x11\x00\x0b\x06\x47\x00\x1f\x04\x79\x00\x8b\x05\x09\x00\x8b\x05\
\x37\x00\x23\x05\xc2\x00\x60\x04\x5f\x00\x0d\x04\xa8\x00\x26\x06\
\x61\x00\x26\x04\x6a\x00\x3d\x04\x6a\x00\x8a\x05\xc3\x00\x02\x04\
\xca\x00\x5e\x04\x3f\x00\x47\x04\xbb\x00\x60\x04\x33\x00\x30\x03\
\xe3\x00\x42\x08\x22\x00\x8a\x04\xab\x00\x28\x02\xef\x00\x3e\x02\
\xef\x00\x36\x02\xef\x00\x5b\x02\xef\x00\x56\x02\xef\x00\x3a\x02\
\xef\x00\x4f\x02\xef\x00\x49\x03\x96\x00\x8f\x02\xb5\x00\x9e\x03\
\xe6\x00\x8a\x04\x3a\x00\x1e\x04\xc3\x00\x64\x05\x4c\x00\xb1\x05\
\x24\x00\xb2\x04\x13\x00\x92\x05\x3d\x00\xb2\x04\x0f\x00\x92\x04\
\x80\x00\x8a\x04\x7c\x00\x60\x04\x50\x00\x8a\x04\x85\x00\x13\x01\
\xfd\x00\x9f\x03\xa4\x00\x81\x00\x00\xfc\xa4\x03\xef\x00\x6e\x03\
\xf3\xff\x5e\x04\x0e\x00\x69\x03\xf4\x00\x69\x03\xaf\x00\x8a\x03\
\x9f\x00\x81\x03\x9e\x00\x81\x02\xef\x00\x50\x02\xef\x00\x36\x02\
\xef\x00\x5b\x02\xef\x00\x56\x02\xef\x00\x3a\x02\xef\x00\x4f\x02\
\xef\x00\x49\x05\x81\x00\x7e\x05\xae\x00\x7e\x05\x93\x00\xb2\x05\
\xe0\x00\x7e\x05\xe3\x00\x7e\x03\xd5\x00\xa0\x04\x82\x00\x83\x04\
\x58\x00\x0f\x04\xcf\x00\x3e\x04\x6b\x00\x65\x04\x2e\x00\x4a\x03\
\xa4\x00\x83\x01\x91\x00\x67\x06\xa4\x00\x60\x04\xb9\x00\x82\x01\
\xfc\xff\xb6\x04\x7f\x00\x3b\x04\x7f\x00\x73\x04\x7f\x00\x23\x04\
\x7f\x00\x77\x04\x7f\x00\x76\x04\x7f\x00\x37\x04\x7f\x00\x7e\x04\
\x7f\x00\x5f\x04\x7f\x00\x70\x04\x7f\x00\xf4\x02\x06\xff\xb4\x02\
\x04\xff\xb4\x01\xfb\x00\x9b\x01\xfb\xff\xfa\x01\xfb\x00\x9b\x04\
\x50\x00\x8a\x05\x00\x00\x78\x04\x20\x00\x3b\x04\x7d\x00\x8c\x04\
\x32\x00\x5c\x04\x93\x00\x5b\x04\x8c\x00\x5b\x04\x9e\x00\x5a\x04\
\x8d\x00\x8c\x04\x9c\x00\x5b\x04\x3d\x00\x5d\x04\x7d\x00\x60\x03\
\x79\x00\x57\x04\xd6\x00\x67\x03\xb4\x00\x00\x06\x39\x00\x09\x03\
\xf8\x00\x8a\x04\xbb\x00\x60\x04\xe3\x00\x30\x04\xe3\x00\x8a\x01\
\xfb\x00\x00\x02\x35\x00\x25\x05\x5d\x00\x07\x05\x5d\x00\x07\x04\
\x86\xff\xe2\x04\xc6\x00\x31\x02\x9d\xff\xf4\x05\x38\x00\x1c\x05\
\x38\x00\x1c\x05\x38\x00\x1c\x05\x38\x00\x1c\x05\x38\x00\x1c\x05\
\x38\x00\x1c\x05\x38\x00\x1c\x05\x35\x00\x77\x04\x8c\x00\xa9\x04\
\x8c\x00\xa9\x04\x8c\x00\xa9\x04\x8c\x00\xa9\x02\x2d\xff\xe0\x02\
\x2d\x00\xb0\x02\x2d\xff\xe9\x02\x2d\xff\xd5\x05\xb4\x00\xa9\x05\
\x80\x00\x76\x05\x80\x00\x76\x05\x80\x00\x76\x05\x80\x00\x76\x05\
\x80\x00\x76\x05\x30\x00\x8c\x05\x30\x00\x8c\x05\x30\x00\x8c\x05\
\x30\x00\x8c\x04\xce\x00\x0f\x04\x5a\x00\x6d\x04\x5a\x00\x6d\x04\
\x5a\x00\x6d\x04\x5a\x00\x6d\x04\x5a\x00\x6d\x04\x5a\x00\x6d\x04\
\x5a\x00\x6d\x04\x30\x00\x5c\x04\x3d\x00\x5d\x04\x3d\x00\x5d\x04\
\x3d\x00\x5d\x04\x3d\x00\x5d\x01\xfa\xff\xc6\x01\xfa\x00\x96\x01\
\xfa\xff\xcf\x01\xfa\xff\xbb\x04\x6a\x00\x8c\x04\x90\x00\x5b\x04\
\x90\x00\x5b\x04\x90\x00\x5b\x04\x90\x00\x5b\x04\x90\x00\x5b\x04\
\x69\x00\x88\x04\x69\x00\x88\x04\x69\x00\x88\x04\x69\x00\x88\x03\
\xc9\x00\x16\x03\xc9\x00\x16\x05\x38\x00\x1c\x04\x5a\x00\x6d\x05\
\x38\x00\x1c\x04\x5a\x00\x6d\x05\x38\x00\x1c\x04\x5a\x00\x6d\x05\
\x35\x00\x77\x04\x30\x00\x5c\x05\x35\x00\x77\x04\x30\x00\x5c\x05\
\x35\x00\x77\x04\x30\x00\x5c\x05\x35\x00\x77\x04\x30\x00\x5c\x05\
\x3f\x00\xa9\x05\x19\x00\x5f\x04\x8c\x00\xa9\x04\x3d\x00\x5d\x04\
\x8c\x00\xa9\x04\x3d\x00\x5d\x04\x8c\x00\xa9\x04\x3d\x00\x5d\x04\
\x8c\x00\xa9\x04\x3d\x00\x5d\x04\x8c\x00\xa9\x04\x3d\x00\x5d\x05\
\x73\x00\x7a\x04\x7d\x00\x60\x05\x73\x00\x7a\x04\x7d\x00\x60\x05\
\x73\x00\x7a\x04\x7d\x00\x60\x05\x73\x00\x7a\x04\x7d\x00\x60\x05\
\xb4\x00\xa9\x04\x68\x00\x8c\x02\x2d\xff\xb7\x01\xfa\xff\x9d\x02\
\x2d\xff\xcc\x01\xfa\xff\xb2\x02\x2d\xff\xec\x01\xfa\xff\xd2\x02\
\x2d\x00\x18\x01\xf1\xff\xfb\x02\x2d\x00\xa9\x06\x97\x00\xb7\x03\
\xda\x00\x8d\x04\x6a\x00\x35\x02\x03\xff\xb4\x05\x04\x00\xa9\x04\
\x0e\x00\x8d\x04\x4e\x00\xa1\x01\xf1\x00\x93\x04\x4e\x00\xa9\x01\
\xf1\x00\x57\x04\x4e\x00\xa9\x02\x87\x00\x9c\x04\x4e\x00\xa9\x02\
\xcd\x00\x9c\x05\xb4\x00\xa9\x04\x6a\x00\x8c\x05\xb4\x00\xa9\x04\
\x6a\x00\x8c\x05\xb4\x00\xa9\x04\x6a\x00\x8c\x04\x6a\xff\xbc\x05\
\x80\x00\x76\x04\x90\x00\x5b\x05\x80\x00\x76\x04\x90\x00\x5b\x05\
\x80\x00\x76\x04\x90\x00\x5b\x04\xed\x00\xa8\x02\xb5\x00\x8c\x04\
\xed\x00\xa8\x02\xb5\x00\x53\x04\xed\x00\xa8\x02\xb5\x00\x63\x04\
\xbf\x00\x50\x04\x20\x00\x5f\x04\xbf\x00\x50\x04\x20\x00\x5f\x04\
\xbf\x00\x50\x04\x20\x00\x5f\x04\xbf\x00\x50\x04\x20\x00\x5f\x04\
\xbf\x00\x50\x04\x20\x00\x5f\x04\xc6\x00\x31\x02\x9d\x00\x09\x04\
\xc6\x00\x31\x02\x9d\x00\x09\x04\xc6\x00\x31\x02\xc5\x00\x09\x05\
\x30\x00\x8c\x04\x69\x00\x88\x05\x30\x00\x8c\x04\x69\x00\x88\x05\
\x30\x00\x8c\x04\x69\x00\x88\x05\x30\x00\x8c\x04\x69\x00\x88\x05\
\x30\x00\x8c\x04\x69\x00\x88\x05\x30\x00\x8c\x04\x69\x00\x88\x07\
\x19\x00\x3d\x06\x03\x00\x2b\x04\xce\x00\x0f\x03\xc9\x00\x16\x04\
\xce\x00\x0f\x04\xca\x00\x56\x03\xf7\x00\x58\x04\xca\x00\x56\x03\
\xf7\x00\x58\x04\xca\x00\x56\x03\xf7\x00\x58\x07\x7a\xff\xf2\x06\
\xc1\x00\x4e\x05\x80\x00\x76\x04\x88\x00\x5b\x04\x80\xff\xbe\x04\
\x80\xff\xbe\x04\x26\x00\x28\x04\x85\x00\x13\x04\x85\x00\x13\x04\
\x85\x00\x13\x04\x85\x00\x13\x04\x85\x00\x13\x04\x85\x00\x13\x04\
\x85\x00\x13\x04\x7c\x00\x60\x03\xe6\x00\x8a\x03\xe6\x00\x8a\x03\
\xe6\x00\x8a\x03\xe6\x00\x8a\x01\xe8\xff\xbe\x01\xe8\x00\x8e\x01\
\xe8\xff\xc7\x01\xe8\xff\xb3\x04\xe3\x00\x8a\x04\xbb\x00\x60\x04\
\xbb\x00\x60\x04\xbb\x00\x60\x04\xbb\x00\x60\x04\xbb\x00\x60\x04\
\x7c\x00\x74\x04\x7c\x00\x74\x04\x7c\x00\x74\x04\x7c\x00\x74\x04\
\x2b\x00\x0d\x04\x85\x00\x13\x04\x85\x00\x13\x04\x85\x00\x13\x04\
\x7c\x00\x60\x04\x7c\x00\x60\x04\x7c\x00\x60\x04\x7c\x00\x60\x04\
\x80\x00\x8a\x03\xe6\x00\x8a\x03\xe6\x00\x8a\x03\xe6\x00\x8a\x03\
\xe6\x00\x8a\x03\xe6\x00\x8a\x04\xac\x00\x63\x04\xac\x00\x63\x04\
\xac\x00\x63\x04\xac\x00\x63\x04\xe3\x00\x8a\x01\xe8\xff\x95\x01\
\xe8\xff\xaa\x01\xe8\xff\xca\x01\xe8\x00\x06\x01\xe8\x00\x88\x03\
\xcf\x00\x2b\x04\x54\x00\x8a\x03\xb4\x00\x82\x03\xb4\x00\x8a\x03\
\xb4\x00\x8a\x03\xb4\x00\x8a\x04\xe3\x00\x8a\x04\xe3\x00\x8a\x04\
\xe3\x00\x8a\x04\xbb\x00\x60\x04\xbb\x00\x60\x04\xbb\x00\x60\x04\
\x4a\x00\x8a\x04\x4a\x00\x8a\x04\x4a\x00\x8a\x04\x20\x00\x43\x04\
\x20\x00\x43\x04\x20\x00\x43\x04\x20\x00\x43\x04\x26\x00\x28\x04\
\x26\x00\x28\x04\x26\x00\x28\x04\x7c\x00\x74\x04\x7c\x00\x74\x04\
\x7c\x00\x74\x04\x7c\x00\x74\x04\x7c\x00\x74\x04\x7c\x00\x74\x06\
\x15\x00\x31\x04\x2b\x00\x0d\x04\x2b\x00\x0d\x04\x23\x00\x47\x04\
\x23\x00\x47\x04\x23\x00\x47\x05\x38\x00\x1c\x04\x8c\xff\x29\x05\
\xb4\xff\x37\x02\x2d\xff\x3d\x05\x94\xff\xe6\x05\x32\xff\x14\x05\
\x66\xff\xe9\x02\x97\xff\x9b\x05\x38\x00\x1c\x04\xfb\x00\xa9\x04\
\x8c\x00\xa9\x04\xca\x00\x56\x05\xb4\x00\xa9\x02\x2d\x00\xb7\x05\
\x04\x00\xa9\x06\xfc\x00\xa9\x05\xb4\x00\xa9\x05\x80\x00\x76\x05\
\x0c\x00\xa9\x04\xc6\x00\x31\x04\xce\x00\x0f\x05\x04\x00\x39\x02\
\x2d\xff\xd5\x04\xce\x00\x0f\x04\x85\x00\x64\x04\x50\x00\x63\x04\
\x88\x00\x91\x02\x97\x00\xc3\x04\x5d\x00\x8f\x04\x73\x00\x9a\x04\
\x90\x00\x5b\x04\x88\x00\x9a\x03\xe0\x00\x21\x03\xf7\x00\x29\x02\
\x97\xff\xe5\x04\x5d\x00\x8f\x04\x90\x00\x5b\x04\x5d\x00\x8f\x06\
\x97\x00\x7a\x04\x8c\x00\xa9\x04\x73\x00\xb1\x04\xbf\x00\x50\x02\
\x2d\x00\xb7\x02\x2d\xff\xd5\x04\x6a\x00\x35\x05\x24\x00\xb2\x05\
\x04\x00\xa9\x05\x07\x00\x4d\x05\x38\x00\x1c\x04\xfb\x00\xa9\x04\
\x73\x00\xb1\x04\x8c\x00\xa9\x05\xb4\x00\xb1\x06\xfc\x00\xa9\x05\
\xb4\x00\xa9\x05\x80\x00\x76\x05\xb5\x00\xb2\x05\x0c\x00\xa9\x05\
\x35\x00\x77\x04\xc6\x00\x31\x05\x04\x00\x39\x04\x5a\x00\x6d\x04\
\x3d\x00\x5d\x04\x9e\x00\x9c\x04\x90\x00\x5b\x04\x7d\x00\x8c\x04\
\x30\x00\x5c\x03\xc9\x00\x16\x03\xf7\x00\x29\x04\x3d\x00\x5d\x03\
\x5b\x00\x9a\x04\x20\x00\x5f\x01\xf1\x00\x8d\x01\xfa\xff\xbb\x01\
\xe9\xff\xbf\x04\x52\x00\x9c\x03\xc9\x00\x16\x07\x19\x00\x3d\x06\
\x03\x00\x2b\x07\x19\x00\x3d\x06\x03\x00\x2b\x07\x19\x00\x3d\x06\
\x03\x00\x2b\x04\xce\x00\x0f\x03\xc9\x00\x16\x01\x65\x00\x67\x02\
\x8f\x00\x88\x04\x1e\x00\xa0\x02\x03\xff\xb4\x01\x99\x00\x30\x06\
\xfc\x00\xa9\x07\x03\x00\x8b\x05\x38\x00\x1c\x04\x5a\x00\x6d\x04\
\x8c\x00\xa9\x05\xb4\x00\xb1\x04\x3d\x00\x5d\x04\x9e\x00\x9c\x05\
\x89\x00\x5a\x05\x9a\x00\x5f\x05\x0a\x00\x16\x04\x03\xff\xfb\x08\
\x59\x00\x5b\x09\x49\x00\x76\x04\xbf\x00\x50\x04\x10\x00\x58\x05\
\x35\x00\x77\x04\x30\x00\x5c\x04\xce\x00\x0f\x04\x02\x00\x2e\x02\
\x2d\x00\xb7\x07\x43\x00\x1b\x06\x20\x00\x15\x02\x2d\x00\xb7\x05\
\x38\x00\x1c\x04\x5a\x00\x6d\x05\x38\x00\x1c\x04\x5a\x00\x6d\x07\
\x7a\xff\xf2\x06\xc1\x00\x4e\x04\x8c\x00\xa9\x04\x3d\x00\x5d\x05\
\x87\x00\x5d\x04\x37\x00\x62\x04\x37\x00\x62\x07\x43\x00\x1b\x06\
\x20\x00\x15\x04\xbf\x00\x50\x04\x10\x00\x58\x05\xb4\x00\xb1\x04\
\x9e\x00\x9c\x05\xb4\x00\xb1\x04\x9e\x00\x9c\x05\x80\x00\x76\x04\
\x90\x00\x5b\x05\x71\x00\x67\x04\x8b\x00\x5b\x05\x71\x00\x67\x04\
\x8b\x00\x5b\x05\x64\x00\x93\x04\x4d\x00\x64\x05\x07\x00\x4d\x03\
\xc9\x00\x16\x05\x07\x00\x4d\x03\xc9\x00\x16\x05\x07\x00\x4d\x03\
\xc9\x00\x16\x05\x7a\x00\x96\x04\x59\x00\x67\x06\xeb\x00\xb2\x06\
\x36\x00\x9d\x04\x83\x00\x5f\x05\x38\x00\x1c\x04\x5a\x00\x6d\x05\
\x38\x00\x1c\x04\x5a\x00\x6d\x05\x38\x00\x1c\x04\x5a\x00\x6d\x05\
\x38\x00\x1c\x04\x5a\xff\xca\x05\x38\x00\x1c\x04\x5a\x00\x6d\x05\
\x38\x00\x1c\x04\x5a\x00\x6d\x05\x38\x00\x1c\x04\x5a\x00\x6d\x05\
\x38\x00\x1c\x04\x5a\x00\x6d\x05\x38\x00\x1c\x04\x5a\x00\x6d\x05\
\x38\x00\x1c\x04\x5a\x00\x6d\x05\x38\x00\x1c\x04\x5a\x00\x6d\x05\
\x38\x00\x1c\x04\x5a\x00\x6d\x04\x8c\x00\xa9\x04\x3d\x00\x5d\x04\
\x8c\x00\xa9\x04\x3d\x00\x5d\x04\x8c\x00\xa9\x04\x3d\x00\x5d\x04\
\x8c\x00\xa9\x04\x3d\x00\x5d\x04\x8c\xff\xf0\x04\x3d\xff\xba\x04\
\x8c\x00\xa9\x04\x3d\x00\x5d\x04\x8c\x00\xa9\x04\x3d\x00\x5d\x04\
\x8c\x00\xa9\x04\x3d\x00\x5d\x02\x2d\x00\xb7\x01\xfa\x00\x9b\x02\
\x2d\x00\xa3\x01\xf1\x00\x85\x05\x80\x00\x76\x04\x90\x00\x5b\x05\
\x80\x00\x76\x04\x90\x00\x5b\x05\x80\x00\x76\x04\x90\x00\x5b\x05\
\x80\x00\x47\x04\x90\xff\xc4\x05\x80\x00\x76\x04\x90\x00\x5b\x05\
\x80\x00\x76\x04\x90\x00\x5b\x05\x80\x00\x76\x04\x90\x00\x5b\x05\
\x7e\x00\x65\x04\x92\x00\x5b\x05\x7e\x00\x65\x04\x92\x00\x5b\x05\
\x7e\x00\x65\x04\x92\x00\x5b\x05\x7e\x00\x65\x04\x92\x00\x5b\x05\
\x7e\x00\x65\x04\x92\x00\x5b\x05\x30\x00\x8c\x04\x69\x00\x88\x05\
\x30\x00\x8c\x04\x69\x00\x88\x05\x90\x00\x8c\x04\xf3\x00\x88\x05\
\x90\x00\x8c\x04\xf3\x00\x88\x05\x90\x00\x8c\x04\xf3\x00\x88\x05\
\x90\x00\x8c\x04\xf3\x00\x88\x05\x90\x00\x8c\x04\xf3\x00\x88\x04\
\xce\x00\x0f\x03\xc9\x00\x16\x04\xce\x00\x0f\x03\xc9\x00\x16\x04\
\xce\x00\x0f\x03\xc9\x00\x16\x04\xa1\x00\x5f\x04\xc6\x00\x31\x03\
\xd8\x00\x28\x05\x7a\x00\x96\x04\x59\x00\x67\x04\x73\x00\xb1\x03\
\x5b\x00\x9a\x06\x2f\x00\x3f\x04\xbd\xff\xde\x04\x68\x00\x8c\x05\
\x05\xff\xd4\x05\x05\xff\xd4\x04\x73\x00\x03\x03\x5b\xff\xfc\x05\
\x38\xff\xf7\x04\x27\xff\xbf\x04\xce\x00\x0f\x04\x02\x00\x2e\x05\
\x04\x00\x39\x03\xf7\x00\x29\x04\x50\x00\x63\x04\x6c\x00\x12\x06\
\x3f\x00\x90\x04\x7e\x00\x5d\x04\x7e\x00\x5e\x04\x7e\x00\x35\x04\
\x7e\x00\x9a\x04\x92\x00\x98\x04\xa6\x00\x84\x04\x92\x00\x64\x04\
\xa6\x00\x87\x05\x73\x00\x7a\x04\x7d\x00\x60\x05\xb4\x00\xa9\x04\
\x6a\x00\x8c\x05\x38\x00\x1c\x04\x5a\x00\x39\x04\x8c\x00\x5f\x04\
\x3d\x00\x29\x02\x2d\xff\x0a\x01\xfa\xfe\xf0\x05\x80\x00\x76\x04\
\x90\x00\x33\x04\xed\x00\x55\x02\xb5\xff\x8b\x05\x30\x00\x8c\x04\
\x69\x00\x2b\x04\xa6\xfe\xd6\x04\xfb\x00\xa9\x04\x7d\x00\x8c\x05\
\x3f\x00\xa9\x04\x83\x00\x5f\x05\x3f\x00\xa9\x04\x83\x00\x5f\x05\
\xb4\x00\xa9\x04\x68\x00\x8c\x05\x04\x00\xa9\x04\x0e\x00\x8d\x05\
\x04\x00\xa9\x04\x0e\x00\x8d\x04\x4e\x00\xa9\x01\xf1\x00\x86\x06\
\xfc\x00\xa9\x07\x03\x00\x8b\x05\xb4\x00\xa9\x04\x6a\x00\x8c\x05\
\x80\x00\x76\x05\x0c\x00\xa9\x04\x7d\x00\x8c\x04\xed\x00\xa8\x02\
\xb5\x00\x82\x04\xbf\x00\x50\x04\x20\x00\x5f\x04\xc6\x00\x31\x02\
\x9d\x00\x09\x05\x30\x00\x8c\x05\x17\x00\x1c\x03\xe0\x00\x21\x05\
\x17\x00\x1c\x03\xe0\x00\x21\x07\x19\x00\x3d\x06\x03\x00\x2b\x04\
\xca\x00\x56\x03\xf7\x00\x58\x05\xc6\xfe\x32\x04\x85\x00\x13\x04\
\x22\xff\x63\x05\x1f\xff\x80\x02\x24\xff\x84\x04\xc5\xff\xd5\x04\
\x67\xff\x1b\x04\xfc\xff\xee\x04\x85\x00\x13\x04\x50\x00\x8a\x03\
\xe6\x00\x8a\x04\x23\x00\x47\x04\xe3\x00\x8a\x01\xe8\x00\x97\x04\
\x54\x00\x8a\x06\x02\x00\x8a\x04\xe3\x00\x8a\x04\xbb\x00\x60\x04\
\x5c\x00\x8a\x04\x26\x00\x28\x04\x2b\x00\x0d\x04\x54\x00\x26\x01\
\xe8\xff\xb3\x04\x2b\x00\x0d\x03\xe6\x00\x8a\x03\xaf\x00\x8a\x04\
\x20\x00\x43\x01\xe8\x00\x97\x01\xe8\xff\xb3\x03\xcf\x00\x2b\x04\
\x54\x00\x8a\x04\x1f\x00\x22\x04\x85\x00\x13\x04\x50\x00\x8a\x03\
\xaf\x00\x8a\x03\xe6\x00\x8a\x04\xec\x00\x8a\x06\x02\x00\x8a\x04\
\xe3\x00\x8a\x04\xbb\x00\x60\x04\xce\x00\x8a\x04\x5c\x00\x8a\x04\
\x7c\x00\x60\x04\x26\x00\x28\x04\x54\x00\x26\x04\x3f\x00\x47\x04\
\xe3\x00\x8a\x04\x7c\x00\x60\x04\x2b\x00\x0d\x05\xc3\x00\x02\x04\
\xec\x00\x8a\x04\x1f\x00\x22\x05\x67\x00\x60\x05\xb7\x00\x97\x06\
\x39\x00\x09\x04\xbb\x00\x60\x04\x20\x00\x43\x06\x15\x00\x31\x06\
\x15\x00\x31\x06\x15\x00\x31\x04\x2b\x00\x0d\x05\x38\x00\x1c\x04\
\x5a\x00\x6d\x04\x8c\x00\xa9\x04\x3d\x00\x5d\x04\x85\x00\x13\x03\
\xe6\x00\x8a\x01\xfa\x00\x85\x00\x01\x00\x00\x07\x6c\xfe\x0c\x00\
\x00\x09\x49\xfa\x1b\xfe\x4a\x09\x30\x00\x01\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x0e\x00\x03\x04\x86\x01\
\x90\x00\x05\x00\x00\x05\x9a\x05\x33\x00\x00\x01\x1f\x05\x9a\x05\
\x33\x00\x00\x03\xd1\x00\x66\x02\x00\x00\x00\x02\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\xe0\x00\x02\xff\x50\x00\x20\x5b\x00\x00\x00\
\x20\x00\x00\x00\x00\x47\x4f\x4f\x47\x00\x40\x00\x00\xff\xfd\x06\
\x00\xfe\x00\x00\x66\x07\x9a\x02\x00\x20\x00\x01\x9f\x00\x00\x00\
\x00\x04\x3a\x05\xb0\x00\x20\x00\x20\x00\x03\x00\x00\x00\x01\x00\
\x00\x05\x10\x09\x0a\x04\x00\x00\x02\x02\x02\x03\x06\x05\x07\x06\
\x02\x03\x03\x04\x05\x02\x02\x02\x04\x05\x05\x05\x05\x05\x05\x05\
\x05\x05\x05\x02\x02\x05\x05\x05\x04\x08\x06\x06\x06\x06\x05\x05\
\x06\x06\x02\x05\x06\x05\x08\x06\x06\x06\x06\x06\x05\x05\x06\x06\
\x08\x06\x05\x05\x02\x04\x02\x04\x04\x03\x05\x05\x05\x05\x05\x03\
\x05\x05\x02\x02\x05\x02\x08\x05\x05\x05\x05\x03\x05\x03\x05\x04\
\x07\x04\x04\x04\x03\x02\x03\x06\x02\x05\x05\x06\x05\x02\x06\x04\
\x07\x04\x04\x05\x07\x04\x03\x05\x03\x03\x03\x05\x04\x02\x02\x03\
\x04\x04\x07\x07\x07\x04\x08\x05\x06\x05\x05\x08\x05\x05\x05\x05\
\x05\x06\x02\x05\x05\x02\x06\x05\x09\x08\x02\x06\x03\x06\x05\x06\
\x06\x02\x05\x04\x04\x04\x04\x02\x03\x02\x04\x03\x03\x00\x00\x00\
\x00\x00\x00\x02\x05\x02\x05\x06\x06\x06\x05\x06\x05\x06\x06\x06\
\x05\x05\x05\x05\x05\x05\x05\x05\x03\x05\x04\x05\x05\x05\x05\x05\
\x05\x06\x06\x07\x05\x05\x07\x07\x06\x0a\x0a\x07\x06\x06\x07\x08\
\x05\x06\x06\x06\x07\x07\x06\x08\x09\x07\x08\x06\x06\x08\x06\x05\
\x05\x04\x05\x07\x05\x05\x05\x05\x07\x05\x05\x04\x07\x05\x05\x07\
\x07\x06\x07\x05\x05\x07\x05\x05\x05\x08\x08\x05\x05\x08\x07\x05\
\x08\x07\x05\x05\x08\x07\x08\x07\x0a\x09\x05\x04\x06\x05\x06\x05\
\x06\x05\x08\x07\x08\x07\x06\x05\x06\x00\x00\x00\x00\x00\x00\x07\
\x06\x05\x06\x05\x05\x04\x05\x05\x09\x07\x06\x05\x06\x05\x07\x06\
\x07\x05\x09\x06\x09\x08\x07\x05\x06\x05\x08\x06\x06\x05\x06\x05\
\x06\x07\x05\x06\x05\x07\x06\x06\x05\x07\x06\x08\x07\x06\x05\x05\
\x05\x04\x06\x05\x06\x07\x08\x07\x06\x05\x05\x09\x07\x09\x07\x06\
\x05\x06\x06\x06\x07\x06\x04\x05\x09\x05\x09\x03\x02\x02\x05\x02\
\x02\x01\x01\x00\x02\x02\x06\x07\x04\x02\x02\x02\x02\x03\x03\x03\
\x05\x05\x03\x04\x06\x02\x09\x03\x03\x04\x03\x04\x05\x07\x07\x0a\
\x07\x07\x05\x07\x05\x05\x06\x06\x07\x04\x09\x06\x06\x07\x08\x08\
\x07\x05\x06\x05\x05\x05\x09\x02\x05\x05\x05\x05\x05\x03\x03\x02\
\x06\x05\x05\x08\x08\x06\x07\x00\x09\x09\x03\x03\x03\x05\x05\x05\
\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x07\x05\x05\x05\x05\x05\
\x05\x05\x05\x06\x07\x04\x05\x04\x02\x06\x05\x04\x05\x05\x04\x04\
\x05\x05\x05\x04\x05\x04\x06\x06\x06\x06\x05\x08\x08\x06\x05\x05\
\x06\x07\x05\x06\x05\x05\x05\x06\x05\x07\x08\x06\x07\x05\x05\x07\
\x05\x05\x07\x05\x06\x06\x06\x05\x05\x07\x05\x05\x06\x05\x05\x05\
\x05\x04\x09\x05\x03\x03\x03\x03\x03\x03\x03\x04\x03\x04\x05\x05\
\x06\x06\x05\x06\x05\x05\x05\x05\x05\x02\x04\x00\x04\x04\x05\x04\
\x04\x04\x04\x03\x03\x03\x03\x03\x03\x03\x06\x06\x06\x07\x07\x04\
\x05\x05\x05\x05\x05\x04\x02\x07\x05\x02\x05\x05\x05\x05\x05\x05\
\x05\x05\x05\x05\x02\x02\x02\x02\x02\x05\x06\x05\x05\x05\x05\x05\
\x05\x05\x05\x05\x05\x04\x05\x04\x07\x04\x05\x06\x06\x02\x02\x06\
\x06\x05\x05\x03\x06\x06\x06\x06\x06\x06\x06\x06\x05\x05\x05\x05\
\x02\x02\x02\x02\x06\x06\x06\x06\x06\x06\x06\x06\x06\x06\x05\x05\
\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x02\x02\x02\x02\x05\
\x05\x05\x05\x05\x05\x05\x05\x05\x05\x04\x04\x06\x05\x06\x05\x06\
\x05\x06\x05\x06\x05\x06\x05\x06\x05\x06\x06\x05\x05\x05\x05\x05\
\x05\x05\x05\x05\x05\x06\x05\x06\x05\x06\x05\x06\x05\x06\x05\x02\
\x02\x02\x02\x02\x02\x02\x02\x02\x07\x04\x05\x02\x06\x05\x05\x02\
\x05\x02\x05\x03\x05\x03\x06\x05\x06\x05\x06\x05\x05\x06\x05\x06\
\x05\x06\x05\x06\x03\x06\x03\x06\x03\x05\x05\x05\x05\x05\x05\x05\
\x05\x05\x05\x05\x03\x05\x03\x05\x03\x06\x05\x06\x05\x06\x05\x06\
\x05\x06\x05\x06\x05\x08\x07\x05\x04\x05\x05\x04\x05\x04\x05\x04\
\x08\x08\x06\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x04\
\x04\x04\x04\x02\x02\x02\x02\x06\x05\x05\x05\x05\x05\x05\x05\x05\
\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x04\x04\x04\x04\x04\x05\
\x05\x05\x05\x06\x02\x02\x02\x02\x02\x04\x05\x04\x04\x04\x04\x06\
\x06\x06\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\
\x05\x05\x05\x05\x05\x07\x05\x05\x05\x05\x05\x06\x05\x06\x02\x06\
\x06\x06\x03\x06\x06\x05\x05\x06\x02\x06\x08\x06\x06\x06\x05\x05\
\x06\x02\x05\x05\x05\x05\x03\x05\x05\x05\x05\x04\x04\x03\x05\x05\
\x05\x07\x05\x05\x05\x02\x02\x05\x06\x06\x06\x06\x06\x05\x05\x06\
\x08\x06\x06\x06\x06\x06\x05\x06\x05\x05\x05\x05\x05\x05\x04\x04\
\x05\x04\x05\x02\x02\x02\x05\x04\x08\x07\x08\x07\x08\x07\x05\x04\
\x02\x03\x05\x02\x02\x08\x08\x06\x05\x05\x06\x05\x05\x06\x06\x06\
\x05\x09\x0a\x05\x05\x06\x05\x05\x05\x02\x08\x07\x02\x06\x05\x06\
\x05\x08\x08\x05\x05\x06\x05\x05\x08\x07\x05\x05\x06\x05\x06\x05\
\x06\x05\x06\x05\x06\x05\x06\x05\x06\x04\x06\x04\x06\x04\x06\x05\
\x08\x07\x05\x06\x05\x06\x05\x06\x05\x06\x05\x06\x05\x06\x05\x06\
\x05\x06\x05\x06\x05\x06\x05\x06\x05\x06\x05\x05\x05\x05\x05\x05\
\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x05\x02\x02\x02\x02\x06\
\x05\x06\x05\x06\x05\x06\x05\x06\x05\x06\x05\x06\x05\x06\x05\x06\
\x05\x06\x05\x06\x05\x06\x05\x06\x05\x06\x05\x06\x06\x06\x06\x06\
\x06\x06\x06\x06\x06\x05\x04\x05\x04\x05\x04\x05\x05\x04\x06\x05\
\x05\x04\x07\x05\x05\x06\x06\x05\x04\x06\x05\x05\x05\x06\x04\x05\
\x05\x07\x05\x05\x05\x05\x05\x05\x05\x05\x06\x05\x06\x05\x06\x05\
\x05\x05\x02\x02\x06\x05\x06\x03\x06\x05\x05\x06\x05\x06\x05\x06\
\x05\x06\x05\x06\x05\x06\x05\x05\x02\x08\x08\x06\x05\x06\x06\x05\
\x06\x03\x05\x05\x05\x03\x06\x06\x04\x06\x04\x08\x07\x05\x04\x07\
\x05\x05\x06\x02\x05\x05\x06\x05\x05\x04\x05\x06\x02\x05\x07\x06\
\x05\x05\x05\x05\x05\x02\x05\x04\x04\x05\x02\x02\x04\x05\x05\x05\
\x05\x04\x04\x06\x07\x06\x05\x05\x05\x05\x05\x05\x05\x06\x05\x05\
\x06\x06\x05\x06\x06\x07\x05\x05\x07\x07\x07\x05\x06\x05\x05\x05\
\x05\x04\x02\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x14\x00\
\x03\x00\x01\x00\x00\x00\x14\x00\x04\x06\x6e\x00\x00\x00\xf4\x00\
\x80\x00\x06\x00\x74\x00\x00\x00\x02\x00\x0d\x00\x7e\x00\xa0\x00\
\xac\x00\xad\x00\xbf\x00\xc6\x00\xcf\x00\xe6\x00\xef\x00\xfe\x01\
\x0f\x01\x11\x01\x25\x01\x27\x01\x30\x01\x53\x01\x5f\x01\x67\x01\
\x7e\x01\x7f\x01\x8f\x01\x92\x01\xa1\x01\xb0\x01\xf0\x01\xff\x02\
\x1b\x02\x37\x02\x59\x02\xbc\x02\xc7\x02\xc9\x02\xdd\x02\xf3\x03\
\x01\x03\x03\x03\x09\x03\x0f\x03\x23\x03\x8a\x03\x8c\x03\x92\x03\
\xa1\x03\xb0\x03\xb9\x03\xc9\x03\xce\x03\xd2\x03\xd6\x04\x25\x04\
\x2f\x04\x45\x04\x4f\x04\x62\x04\x6f\x04\x79\x04\x86\x04\x9f\x04\
\xa9\x04\xb1\x04\xba\x04\xce\x04\xd7\x04\xe1\x04\xf5\x05\x01\x05\
\x10\x05\x13\x1e\x01\x1e\x3f\x1e\x85\x1e\xf1\x1e\xf3\x1e\xf9\x1f\
\x4d\x20\x09\x20\x0b\x20\x11\x20\x15\x20\x1e\x20\x22\x20\x27\x20\
\x30\x20\x33\x20\x3a\x20\x3c\x20\x44\x20\x74\x20\x7f\x20\xa4\x20\
\xaa\x20\xac\x20\xb1\x20\xba\x20\xbd\x21\x05\x21\x13\x21\x16\x21\
\x22\x21\x26\x21\x2e\x21\x5e\x22\x02\x22\x06\x22\x0f\x22\x12\x22\
\x1a\x22\x1e\x22\x2b\x22\x48\x22\x60\x22\x65\x25\xca\xee\x02\xf6\
\xc3\xfb\x04\xfe\xff\xff\xfd\xff\xff\x00\x00\x00\x00\x00\x02\x00\
\x0d\x00\x20\x00\xa0\x00\xa1\x00\xad\x00\xae\x00\xc0\x00\xc7\x00\
\xd0\x00\xe7\x00\xf0\x00\xff\x01\x10\x01\x12\x01\x26\x01\x28\x01\
\x31\x01\x54\x01\x60\x01\x68\x01\x7f\x01\x8f\x01\x92\x01\xa0\x01\
\xaf\x01\xf0\x01\xfa\x02\x18\x02\x37\x02\x59\x02\xbc\x02\xc6\x02\
\xc9\x02\xd8\x02\xf3\x03\x00\x03\x03\x03\x09\x03\x0f\x03\x23\x03\
\x84\x03\x8c\x03\x8e\x03\x93\x03\xa3\x03\xb1\x03\xba\x03\xca\x03\
\xd1\x03\xd6\x04\x00\x04\x26\x04\x30\x04\x46\x04\x50\x04\x63\x04\
\x70\x04\x7a\x04\x88\x04\xa0\x04\xaa\x04\xb2\x04\xbb\x04\xcf\x04\
\xd8\x04\xe2\x04\xf6\x05\x02\x05\x11\x1e\x00\x1e\x3e\x1e\x80\x1e\
\xa0\x1e\xf2\x1e\xf4\x1f\x4d\x20\x00\x20\x0a\x20\x10\x20\x13\x20\
\x17\x20\x20\x20\x25\x20\x30\x20\x32\x20\x39\x20\x3c\x20\x44\x20\
\x74\x20\x7f\x20\xa3\x20\xa6\x20\xab\x20\xb1\x20\xb9\x20\xbc\x21\
\x05\x21\x13\x21\x16\x21\x22\x21\x26\x21\x2e\x21\x5b\x22\x02\x22\
\x06\x22\x0f\x22\x11\x22\x1a\x22\x1e\x22\x2b\x22\x48\x22\x60\x22\
\x64\x25\xca\xee\x01\xf6\xc3\xfb\x01\xfe\xff\xff\xfc\xff\xff\x00\
\x01\x00\x00\xff\xf6\xff\xe4\x01\xd8\xff\xc2\x01\xcc\xff\xc1\x00\
\x00\x01\xbf\x00\x00\x01\xba\x00\x00\x01\xb6\x00\x00\x01\xb4\x00\
\x00\x01\xb2\x00\x00\x01\xaa\x00\x00\x01\xac\xff\x16\xff\x07\xff\
\x05\xfe\xf8\xfe\xeb\x01\xee\x00\x00\x00\x00\xfe\x65\xfe\x44\x01\
\x23\xfd\xd8\xfd\xd7\xfd\xc9\xfd\xb4\xfd\xa8\xfd\xa7\xfd\xa2\xfd\
\x9d\xfd\x8a\x00\x00\xff\xfe\xff\xfd\x00\x00\x00\x00\xfd\x0a\x00\
\x00\xff\xde\xfc\xfe\xfc\xfb\x00\x00\xfc\xba\x00\x00\xfc\xb2\x00\
\x00\xfc\xa7\x00\x00\xfc\xa1\x00\x00\xfc\x99\x00\x00\xfc\x91\x00\
\x00\xff\x28\x00\x00\xff\x25\x00\x00\xfc\x5e\x00\x00\xe5\xe2\xe5\
\xa2\xe5\x53\xe5\x7e\xe4\xe7\xe5\x7c\xe5\x7d\xe1\x72\xe1\x73\xe1\
\x6f\x00\x00\xe1\x6c\xe1\x6b\xe1\x69\xe1\x61\xe3\xa9\xe1\x59\xe3\
\xa1\xe1\x50\xe1\x21\xe1\x17\x00\x00\xe0\xf2\x00\x00\xe0\xed\xe0\
\xe6\xe0\xe5\xe0\x9e\xe0\x91\xe0\x8f\xe0\x84\xdf\x94\xe0\x79\xe0\
\x4d\xdf\xaa\xde\xac\xdf\x9e\xdf\x9d\xdf\x96\xdf\x93\xdf\x87\xdf\
\x6b\xdf\x54\xdf\x51\xdb\xed\x13\xb7\x0a\xf7\x06\xbb\x02\xc3\x01\
\xc7\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\xe4\x00\x00\x00\xee\x00\x00\x01\x18\x00\x00\x01\
\x32\x00\x00\x01\x32\x00\x00\x01\x32\x00\x00\x01\x74\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x74\x01\x7e\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x01\x6c\x00\x00\x00\x00\x01\x74\x01\
\x90\x00\x00\x01\xa8\x00\x00\x00\x00\x00\x00\x01\xc0\x00\x00\x02\
\x08\x00\x00\x02\x30\x00\x00\x02\x52\x00\x00\x02\x62\x00\x00\x02\
\x8e\x00\x00\x02\x9a\x00\x00\x02\xbe\x00\x00\x02\xce\x00\x00\x02\
\xe2\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x02\xd2\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\xc2\x00\x00\x02\
\xc2\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x02\x7f\x02\x80\x02\x81\x02\x82\x02\
\x83\x02\x84\x00\x81\x02\x7b\x02\x8f\x02\x90\x02\x91\x02\x92\x02\
\x93\x02\x94\x00\x82\x00\x83\x02\x95\x02\x96\x02\x97\x02\x98\x02\
\x99\x00\x84\x00\x85\x02\x9a\x02\x9b\x02\x9c\x02\x9d\x02\x9e\x02\
\x9f\x00\x86\x00\x87\x02\xaa\x02\xab\x02\xac\x02\xad\x02\xae\x02\
\xaf\x00\x88\x00\x89\x02\xb0\x02\xb1\x02\xb2\x02\xb3\x02\xb4\x00\
\x8a\x02\x7a\x00\x8b\x00\x8c\x02\x7c\x00\x8d\x02\xe3\x02\xe4\x02\
\xe5\x02\xe6\x02\xe7\x02\xe8\x00\x8e\x02\xe9\x02\xea\x02\xeb\x02\
\xec\x02\xed\x02\xee\x02\xef\x02\xf0\x00\x8f\x00\x90\x02\xf1\x02\
\xf2\x02\xf3\x02\xf4\x02\xf5\x02\xf6\x02\xf7\x00\x91\x00\x92\x02\
\xf8\x02\xf9\x02\xfa\x02\xfb\x02\xfc\x02\xfd\x00\x93\x00\x94\x03\
\x0c\x03\x0d\x03\x10\x03\x11\x03\x12\x03\x13\x02\x7d\x02\x7e\x02\
\x85\x02\xa0\x03\x2b\x03\x2c\x03\x2d\x03\x2e\x03\x0a\x03\x0b\x03\
\x0e\x03\x0f\x00\xae\x00\xaf\x03\x86\x00\xb0\x03\x87\x03\x88\x03\
\x89\x00\xb1\x00\xb2\x03\x90\x03\x91\x03\x92\x00\xb3\x03\x93\x03\
\x94\x00\xb4\x03\x95\x03\x96\x00\xb5\x03\x97\x00\xb6\x03\x98\x00\
\xb7\x03\x99\x03\x9a\x00\xb8\x03\x9b\x00\xb9\x00\xba\x03\x9c\x03\
\x9d\x03\x9e\x03\x9f\x03\xa0\x03\xa1\x03\xa2\x03\xa3\x00\xc4\x03\
\xa5\x03\xa6\x00\xc5\x03\xa4\x00\xc6\x00\xc7\x00\xc8\x00\xc9\x00\
\xca\x00\xcb\x00\xcc\x03\xa7\x00\xcd\x00\xce\x03\xe4\x03\xad\x00\
\xd2\x03\xae\x00\xd3\x03\xaf\x03\xb0\x03\xb1\x03\xb2\x00\xd4\x00\
\xd5\x00\xd6\x03\xb4\x03\xe5\x03\xb5\x00\xd7\x03\xb6\x00\xd8\x03\
\xb7\x03\xb8\x00\xd9\x03\xb9\x00\xda\x00\xdb\x00\xdc\x03\xba\x03\
\xb3\x00\xdd\x03\xbb\x03\xbc\x03\xbd\x03\xbe\x03\xbf\x03\xc0\x03\
\xc1\x00\xde\x00\xdf\x03\xc2\x03\xc3\x00\xea\x00\xeb\x00\xec\x00\
\xed\x03\xc4\x00\xee\x00\xef\x00\xf0\x03\xc5\x00\xf1\x00\xf2\x00\
\xf3\x00\xf4\x03\xc6\x00\xf5\x03\xc7\x03\xc8\x00\xf6\x03\xc9\x00\
\xf7\x03\xca\x03\xe6\x03\xcb\x01\x02\x03\xcc\x01\x03\x03\xcd\x03\
\xce\x03\xcf\x03\xd0\x01\x04\x01\x05\x01\x06\x03\xd1\x03\xe7\x03\
\xd2\x01\x07\x01\x08\x01\x09\x04\x81\x03\xe8\x03\xe9\x01\x17\x01\
\x18\x01\x19\x01\x1a\x03\xea\x03\xeb\x03\xed\x03\xec\x01\x28\x01\
\x29\x01\x2a\x01\x2b\x04\x80\x01\x2c\x01\x2d\x01\x2e\x01\x2f\x01\
\x30\x04\x82\x04\x83\x01\x31\x01\x32\x01\x33\x01\x34\x03\xee\x03\
\xef\x01\x35\x01\x36\x01\x37\x01\x38\x04\x84\x04\x85\x03\xf0\x03\
\xf1\x04\x77\x04\x78\x03\xf2\x03\xf3\x04\x86\x04\x87\x04\x7f\x01\
\x4c\x01\x4d\x04\x7d\x04\x7e\x03\xf4\x03\xf5\x03\xf6\x01\x4e\x01\
\x4f\x01\x50\x01\x51\x01\x52\x01\x53\x01\x54\x01\x55\x04\x79\x04\
\x7a\x01\x56\x01\x57\x01\x58\x04\x01\x04\x00\x04\x02\x04\x03\x04\
\x04\x04\x05\x04\x06\x01\x59\x01\x5a\x04\x7b\x04\x7c\x04\x1b\x04\
\x1c\x01\x5b\x01\x5c\x01\x5d\x01\x5e\x04\x88\x04\x89\x01\x5f\x04\
\x1d\x04\x8a\x01\x6f\x01\x70\x01\x81\x01\x82\x04\x8c\x04\x8b\x01\
\x97\x04\x76\x01\x9d\x00\x00\xb0\x00\x2c\x4b\xb0\x09\x50\x58\xb1\
\x01\x01\x8e\x59\xb8\x01\xff\x85\xb0\x84\x1d\xb1\x09\x03\x5f\x5e\
\x2d\xb0\x01\x2c\x20\x20\x45\x69\x44\xb0\x01\x60\x2d\xb0\x02\x2c\
\xb0\x01\x2a\x21\x2d\xb0\x03\x2c\x20\x46\xb0\x03\x25\x46\x52\x58\
\x23\x59\x20\x8a\x20\x8a\x49\x64\x8a\x20\x46\x20\x68\x61\x64\xb0\
\x04\x25\x46\x20\x68\x61\x64\x52\x58\x23\x65\x8a\x59\x2f\x20\xb0\
\x00\x53\x58\x69\x20\xb0\x00\x54\x58\x21\xb0\x40\x59\x1b\x69\x20\
\xb0\x00\x54\x58\x21\xb0\x40\x65\x59\x59\x3a\x2d\xb0\x04\x2c\x20\
\x46\xb0\x04\x25\x46\x52\x58\x23\x8a\x59\x20\x46\x20\x6a\x61\x64\
\xb0\x04\x25\x46\x20\x6a\x61\x64\x52\x58\x23\x8a\x59\x2f\xfd\x2d\
\xb0\x05\x2c\x4b\x20\xb0\x03\x26\x50\x58\x51\x58\xb0\x80\x44\x1b\
\xb0\x40\x44\x59\x1b\x21\x21\x20\x45\xb0\xc0\x50\x58\xb0\xc0\x44\
\x1b\x21\x59\x59\x2d\xb0\x06\x2c\x20\x20\x45\x69\x44\xb0\x01\x60\
\x20\x20\x45\x7d\x69\x18\x44\xb0\x01\x60\x2d\xb0\x07\x2c\xb0\x06\
\x2a\x2d\xb0\x08\x2c\x4b\x20\xb0\x03\x26\x53\x58\xb0\x40\x1b\xb0\
\x00\x59\x8a\x8a\x20\xb0\x03\x26\x53\x58\x23\x21\xb0\x80\x8a\x8a\
\x1b\x8a\x23\x59\x20\xb0\x03\x26\x53\x58\x23\x21\xb0\xc0\x8a\x8a\
\x1b\x8a\x23\x59\x20\xb0\x03\x26\x53\x58\x23\x21\xb8\x01\x00\x8a\
\x8a\x1b\x8a\x23\x59\x20\xb0\x03\x26\x53\x58\x23\x21\xb8\x01\x40\
\x8a\x8a\x1b\x8a\x23\x59\x20\xb0\x03\x26\x53\x58\xb0\x03\x25\x45\
\xb8\x01\x80\x50\x58\x23\x21\xb8\x01\x80\x23\x21\x1b\xb0\x03\x25\
\x45\x23\x21\x23\x21\x59\x1b\x21\x59\x44\x2d\xb0\x09\x2c\x4b\x53\
\x58\x45\x44\x1b\x21\x21\x59\x2d\xb0\x0a\x2c\xb0\x28\x45\x2d\xb0\
\x0b\x2c\xb0\x29\x45\x2d\xb0\x0c\x2c\xb1\x27\x01\x88\x20\x8a\x53\
\x58\xb9\x40\x00\x04\x00\x63\xb8\x08\x00\x88\x54\x58\xb9\x00\x28\
\x03\xe8\x70\x59\x1b\xb0\x23\x53\x58\xb0\x20\x88\xb8\x10\x00\x54\
\x58\xb9\x00\x28\x03\xe8\x70\x59\x59\x59\x2d\xb0\x0d\x2c\xb0\x40\
\x88\xb8\x20\x00\x5a\x58\xb1\x29\x00\x44\x1b\xb9\x00\x29\x03\xe8\
\x44\x59\x2d\xb0\x0c\x2b\xb0\x00\x2b\x00\xb2\x01\x10\x02\x2b\x01\
\xb2\x11\x01\x02\x2b\x01\xb7\x11\x3a\x30\x25\x1b\x10\x00\x08\x2b\
\x00\xb7\x01\x48\x3b\x2e\x21\x14\x00\x08\x2b\xb7\x02\x58\x48\x38\
\x28\x14\x00\x08\x2b\xb7\x03\x52\x43\x34\x25\x16\x00\x08\x2b\xb7\
\x04\x5e\x4d\x3c\x2b\x19\x00\x08\x2b\xb7\x05\x36\x2c\x22\x19\x0f\
\x00\x08\x2b\xb7\x06\x71\x5d\x46\x32\x1b\x00\x08\x2b\xb7\x07\x91\
\x77\x5c\x3a\x23\x00\x08\x2b\xb7\x08\x7e\x67\x50\x39\x1a\x00\x08\
\x2b\xb7\x09\x54\x45\x36\x26\x14\x00\x08\x2b\xb7\x0a\x76\x60\x4b\
\x36\x1d\x00\x08\x2b\xb7\x0b\x83\x64\x4e\x3a\x23\x00\x08\x2b\xb7\
\x0c\xd9\xb2\x8a\x63\x3c\x00\x08\x2b\xb7\x0d\x14\x10\x0c\x09\x06\
\x00\x08\x2b\xb7\x0e\x3c\x32\x27\x1c\x11\x00\x08\x2b\xb7\x0f\x40\
\x34\x29\x1d\x14\x00\x08\x2b\xb7\x10\x50\x41\x2e\x21\x14\x00\x08\
\x2b\x00\xb2\x12\x0b\x07\x2b\xb0\x00\x20\x45\x7d\x69\x18\x44\xb2\
\x3f\x1a\x01\x73\xb2\x5f\x1a\x01\x73\xb2\x7f\x1a\x01\x73\xb2\x2f\
\x1a\x01\x74\xb2\x4f\x1a\x01\x74\xb2\x6f\x1a\x01\x74\xb2\x8f\x1a\
\x01\x74\xb2\xaf\x1a\x01\x74\xb2\xff\x1a\x01\x74\xb2\x1f\x1a\x01\
\x75\xb2\x3f\x1a\x01\x75\xb2\x5f\x1a\x01\x75\xb2\x7f\x1a\x01\x75\
\xb2\x0f\x1e\x01\x73\xb2\x7f\x1e\x01\x73\xb2\xef\x1e\x01\x73\xb2\
\x1f\x1e\x01\x74\xb2\x5f\x1e\x01\x74\xb2\x8f\x1e\x01\x74\xb2\xcf\
\x1e\x01\x74\xb2\xff\x1e\x01\x74\xb2\x3f\x1e\x01\x75\xb2\x6f\x1e\
\x01\x75\xb2\x2f\x20\x01\x73\xb2\x6f\x20\x01\x73\x00\x00\x00\x00\
\x2a\x00\x9d\x00\x80\x00\x8a\x00\x78\x00\xd4\x00\x64\x00\x4e\x00\
\x5a\x00\x87\x00\x60\x00\x56\x00\x34\x02\x3c\x00\xbc\x00\xb2\x00\
\x8e\x00\xc4\x00\x00\x00\x14\xfe\x60\x00\x14\x02\x9b\x00\x20\x03\
\x21\x00\x0b\x04\x3a\x00\x14\x04\x8d\x00\x10\x05\xb0\x00\x14\x06\
\x18\x00\x15\x01\xa6\x00\x11\x06\xc0\x00\x0e\x06\xd9\x00\x06\x00\
\x00\x00\x00\x00\x00\x00\x0d\x00\xa2\x00\x03\x00\x01\x04\x09\x00\
\x00\x00\x5e\x00\x00\x00\x03\x00\x01\x04\x09\x00\x01\x00\x0c\x00\
\x5e\x00\x03\x00\x01\x04\x09\x00\x02\x00\x0e\x00\x6a\x00\x03\x00\
\x01\x04\x09\x00\x03\x00\x0c\x00\x5e\x00\x03\x00\x01\x04\x09\x00\
\x04\x00\x0c\x00\x5e\x00\x03\x00\x01\x04\x09\x00\x05\x00\x26\x00\
\x78\x00\x03\x00\x01\x04\x09\x00\x06\x00\x1c\x00\x9e\x00\x03\x00\
\x01\x04\x09\x00\x07\x00\x40\x00\xba\x00\x03\x00\x01\x04\x09\x00\
\x09\x00\x0c\x00\xfa\x00\x03\x00\x01\x04\x09\x00\x0b\x00\x14\x01\
\x06\x00\x03\x00\x01\x04\x09\x00\x0c\x00\x26\x01\x1a\x00\x03\x00\
\x01\x04\x09\x00\x0d\x00\x5c\x01\x40\x00\x03\x00\x01\x04\x09\x00\
\x0e\x00\x54\x01\x9c\x00\x43\x00\x6f\x00\x70\x00\x79\x00\x72\x00\
\x69\x00\x67\x00\x68\x00\x74\x00\x20\x00\x32\x00\x30\x00\x31\x00\
\x31\x00\x20\x00\x47\x00\x6f\x00\x6f\x00\x67\x00\x6c\x00\x65\x00\
\x20\x00\x49\x00\x6e\x00\x63\x00\x2e\x00\x20\x00\x41\x00\x6c\x00\
\x6c\x00\x20\x00\x52\x00\x69\x00\x67\x00\x68\x00\x74\x00\x73\x00\
\x20\x00\x52\x00\x65\x00\x73\x00\x65\x00\x72\x00\x76\x00\x65\x00\
\x64\x00\x2e\x00\x52\x00\x6f\x00\x62\x00\x6f\x00\x74\x00\x6f\x00\
\x52\x00\x65\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x72\x00\x56\x00\
\x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x32\x00\
\x2e\x00\x31\x00\x33\x00\x37\x00\x3b\x00\x20\x00\x32\x00\x30\x00\
\x31\x00\x37\x00\x52\x00\x6f\x00\x62\x00\x6f\x00\x74\x00\x6f\x00\
\x2d\x00\x52\x00\x65\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x72\x00\
\x52\x00\x6f\x00\x62\x00\x6f\x00\x74\x00\x6f\x00\x20\x00\x69\x00\
\x73\x00\x20\x00\x61\x00\x20\x00\x74\x00\x72\x00\x61\x00\x64\x00\
\x65\x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x20\x00\x6f\x00\x66\x00\
\x20\x00\x47\x00\x6f\x00\x6f\x00\x67\x00\x6c\x00\x65\x00\x2e\x00\
\x47\x00\x6f\x00\x6f\x00\x67\x00\x6c\x00\x65\x00\x47\x00\x6f\x00\
\x6f\x00\x67\x00\x6c\x00\x65\x00\x2e\x00\x63\x00\x6f\x00\x6d\x00\
\x43\x00\x68\x00\x72\x00\x69\x00\x73\x00\x74\x00\x69\x00\x61\x00\
\x6e\x00\x20\x00\x52\x00\x6f\x00\x62\x00\x65\x00\x72\x00\x74\x00\
\x73\x00\x6f\x00\x6e\x00\x4c\x00\x69\x00\x63\x00\x65\x00\x6e\x00\
\x73\x00\x65\x00\x64\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x65\x00\
\x72\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x41\x00\x70\x00\
\x61\x00\x63\x00\x68\x00\x65\x00\x20\x00\x4c\x00\x69\x00\x63\x00\
\x65\x00\x6e\x00\x73\x00\x65\x00\x2c\x00\x20\x00\x56\x00\x65\x00\
\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x32\x00\x2e\x00\
\x30\x00\x68\x00\x74\x00\x74\x00\x70\x00\x3a\x00\x2f\x00\x2f\x00\
\x77\x00\x77\x00\x77\x00\x2e\x00\x61\x00\x70\x00\x61\x00\x63\x00\
\x68\x00\x65\x00\x2e\x00\x6f\x00\x72\x00\x67\x00\x2f\x00\x6c\x00\
\x69\x00\x63\x00\x65\x00\x6e\x00\x73\x00\x65\x00\x73\x00\x2f\x00\
\x4c\x00\x49\x00\x43\x00\x45\x00\x4e\x00\x53\x00\x45\x00\x2d\x00\
\x32\x00\x2e\x00\x30\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\xff\
\x6a\x00\x64\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x08\x00\x02\xff\
\xff\x00\x0f\x00\x01\x00\x02\x00\x0e\x00\x00\x00\x00\x00\x00\x02\
\x28\x00\x02\x00\x59\x00\x25\x00\x3e\x00\x01\x00\x45\x00\x5e\x00\
\x01\x00\x79\x00\x79\x00\x01\x00\x81\x00\x81\x00\x01\x00\x83\x00\
\x83\x00\x01\x00\x86\x00\x86\x00\x01\x00\x89\x00\x89\x00\x01\x00\
\x8b\x00\x96\x00\x01\x00\x98\x00\x9d\x00\x01\x00\xa4\x00\xa4\x00\
\x01\x00\xa8\x00\xad\x00\x03\x00\xb1\x00\xb1\x00\x01\x00\xba\x00\
\xbb\x00\x01\x00\xbf\x00\xbf\x00\x01\x00\xc1\x00\xc1\x00\x01\x00\
\xc3\x00\xc3\x00\x01\x00\xc7\x00\xc7\x00\x01\x00\xcb\x00\xcb\x00\
\x01\x00\xcd\x00\xce\x00\x01\x00\xd0\x00\xd1\x00\x01\x00\xd3\x00\
\xd3\x00\x01\x00\xda\x00\xde\x00\x01\x00\xe1\x00\xe1\x00\x01\x00\
\xe5\x00\xe5\x00\x01\x00\xe7\x00\xe9\x00\x01\x00\xeb\x00\xfb\x00\
\x01\x00\xfd\x00\xfd\x00\x01\x00\xff\x01\x01\x00\x01\x01\x03\x01\
\x03\x00\x01\x01\x08\x01\x09\x00\x01\x01\x16\x01\x1a\x00\x01\x01\
\x1c\x01\x1c\x00\x01\x01\x20\x01\x22\x00\x01\x01\x24\x01\x25\x00\
\x03\x01\x2a\x01\x2b\x00\x01\x01\x33\x01\x34\x00\x01\x01\x36\x01\
\x36\x00\x01\x01\x3b\x01\x3c\x00\x01\x01\x41\x01\x44\x00\x01\x01\
\x47\x01\x48\x00\x01\x01\x4b\x01\x4d\x00\x01\x01\x51\x01\x51\x00\
\x01\x01\x54\x01\x58\x00\x01\x01\x5d\x01\x5e\x00\x01\x01\x62\x01\
\x62\x00\x01\x01\x64\x01\x64\x00\x01\x01\x68\x01\x68\x00\x01\x01\
\x6a\x01\x6c\x00\x01\x01\x6e\x01\x6e\x00\x01\x01\x70\x01\x70\x00\
\x01\x01\xba\x01\xba\x00\x03\x01\xbb\x01\xc1\x00\x02\x01\xd2\x01\
\xe6\x00\x01\x01\xea\x01\xea\x00\x01\x01\xf3\x01\xf3\x00\x01\x01\
\xf5\x01\xf5\x00\x01\x01\xfc\x01\xfe\x00\x01\x02\x00\x02\x01\x00\
\x01\x02\x03\x02\x03\x00\x01\x02\x07\x02\x07\x00\x01\x02\x09\x02\
\x0b\x00\x01\x02\x11\x02\x11\x00\x01\x02\x16\x02\x18\x00\x01\x02\
\x1a\x02\x1a\x00\x01\x02\x28\x02\x28\x00\x01\x02\x2b\x02\x2b\x00\
\x01\x02\x2d\x02\x2d\x00\x01\x02\x30\x02\x33\x00\x01\x02\x5f\x02\
\x63\x00\x01\x02\x7a\x02\xe2\x00\x01\x02\xe5\x03\x8b\x00\x01\x03\
\x8d\x03\xa4\x00\x01\x03\xa6\x03\xb2\x00\x01\x03\xb4\x03\xbd\x00\
\x01\x03\xbf\x03\xda\x00\x01\x03\xde\x03\xde\x00\x01\x03\xe0\x03\
\xe7\x00\x01\x03\xe9\x03\xeb\x00\x01\x03\xee\x03\xf2\x00\x01\x03\
\xf4\x04\x7c\x00\x01\x04\x7f\x04\x7f\x00\x01\x04\x82\x04\x83\x00\
\x01\x04\x85\x04\x86\x00\x01\x04\x88\x04\x8b\x00\x01\x04\x95\x04\
\xd0\x00\x01\x04\xd2\x04\xf1\x00\x01\x04\xf3\x04\xfa\x00\x01\x04\
\xfc\x04\xfd\x00\x01\x05\x07\x05\x0d\x00\x01\x00\x01\x00\x02\x00\
\x00\x00\x0c\x00\x00\x00\x2c\x00\x01\x00\x0e\x00\xa8\x00\xa8\x00\
\xa9\x00\xa9\x00\xaa\x00\xaa\x00\xab\x00\xab\x00\xac\x00\xac\x01\
\x24\x01\x25\x01\x26\x01\x27\x00\x01\x00\x05\x00\x79\x00\xa4\x00\
\xad\x00\xad\x01\xba\x00\x00\x00\x01\x00\x00\x00\x0a\x00\x32\x00\
\x4c\x00\x04\x44\x46\x4c\x54\x00\x1a\x63\x79\x72\x6c\x00\x1a\x67\
\x72\x65\x6b\x00\x1a\x6c\x61\x74\x6e\x00\x1a\x00\x04\x00\x00\x00\
\x00\xff\xff\x00\x02\x00\x00\x00\x01\x00\x02\x63\x70\x73\x70\x00\
\x0e\x6b\x65\x72\x6e\x00\x14\x00\x00\x00\x01\x00\x00\x00\x00\x00\
\x01\x00\x01\x00\x02\x00\x06\x02\x10\x00\x01\x00\x00\x00\x01\x00\
\x08\x00\x01\x00\x0a\x00\x05\x00\x24\x00\x48\x00\x01\x00\xfa\x00\
\x08\x00\x0a\x00\x14\x00\x15\x00\x16\x00\x17\x00\x18\x00\x19\x00\
\x1a\x00\x1b\x00\x1c\x00\x1d\x00\x25\x00\x26\x00\x27\x00\x28\x00\
\x29\x00\x2a\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\
\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x37\x00\x38\x00\
\x39\x00\x3a\x00\x3b\x00\x3c\x00\x3d\x00\x3e\x00\x65\x00\x67\x00\
\x81\x00\x83\x00\x84\x00\x8c\x00\x8f\x00\x91\x00\x93\x00\xb1\x00\
\xb2\x00\xb3\x00\xb4\x00\xb5\x00\xb6\x00\xb7\x00\xb8\x00\xb9\x00\
\xba\x00\xd2\x00\xd3\x00\xd4\x00\xd5\x00\xd6\x00\xd7\x00\xd8\x00\
\xd9\x00\xda\x00\xdb\x00\xdc\x00\xdd\x00\xde\x00\xdf\x00\xe0\x00\
\xe1\x00\xe2\x00\xe3\x00\xe4\x00\xe5\x00\xe6\x00\xe7\x00\xe8\x00\
\xe9\x01\x2f\x01\x33\x01\x35\x01\x37\x01\x39\x01\x3b\x01\x41\x01\
\x43\x01\x45\x01\x49\x01\x4b\x01\x4c\x01\x58\x01\x59\x01\x97\x01\
\x9d\x01\xa2\x01\xa5\x02\x7a\x02\x7b\x02\x7d\x02\x7f\x02\x80\x02\
\x81\x02\x82\x02\x83\x02\x84\x02\x85\x02\x86\x02\x87\x02\x88\x02\
\x89\x02\x8a\x02\x8b\x02\x8c\x02\x8d\x02\x8e\x02\x8f\x02\x90\x02\
\x91\x02\x92\x02\x93\x02\x94\x02\x95\x02\x96\x02\x97\x02\x98\x02\
\x99\x02\xb6\x02\xb8\x02\xba\x02\xbc\x02\xbe\x02\xc0\x02\xc2\x02\
\xc4\x02\xc6\x02\xc8\x02\xca\x02\xcc\x02\xce\x02\xd0\x02\xd2\x02\
\xd4\x02\xd6\x02\xd8\x02\xda\x02\xdc\x02\xde\x02\xe0\x02\xe2\x02\
\xe3\x02\xe5\x02\xe7\x02\xe9\x02\xeb\x02\xed\x02\xef\x02\xf1\x02\
\xf3\x02\xf5\x02\xf8\x02\xfa\x02\xfc\x02\xfe\x03\x00\x03\x02\x03\
\x04\x03\x06\x03\x08\x03\x0a\x03\x0c\x03\x0e\x03\x10\x03\x12\x03\
\x14\x03\x16\x03\x18\x03\x1a\x03\x1c\x03\x1e\x03\x20\x03\x22\x03\
\x24\x03\x25\x03\x27\x03\x29\x03\x2b\x03\x2d\x03\x86\x03\x87\x03\
\x88\x03\x89\x03\x8a\x03\x8b\x03\x8c\x03\x8e\x03\x8f\x03\x90\x03\
\x91\x03\x92\x03\x93\x03\x94\x03\x95\x03\x96\x03\x97\x03\x98\x03\
\x99\x03\x9a\x03\x9b\x03\x9c\x03\x9d\x03\xad\x03\xae\x03\xaf\x03\
\xb0\x03\xb1\x03\xb2\x03\xb3\x03\xb4\x03\xb5\x03\xb6\x03\xb7\x03\
\xb8\x03\xb9\x03\xba\x03\xbb\x03\xbc\x03\xbd\x03\xbe\x03\xbf\x03\
\xc0\x03\xc1\x03\xc2\x03\xd3\x03\xd5\x03\xd7\x03\xd9\x03\xee\x03\
\xf0\x03\xf2\x04\x07\x04\x0d\x04\x13\x04\x7d\x04\x82\x04\x86\x05\
\x07\x05\x09\x00\x02\x00\x00\x00\x02\x00\x0a\x3a\x18\x00\x01\x03\
\xf2\x00\x04\x00\x00\x01\xf4\x07\xce\x34\xc6\x34\xc6\x07\xfc\x08\
\x5e\x36\xfe\x37\xae\x34\xcc\x39\xcc\x37\x7a\x08\x64\x38\x18\x38\
\x18\x37\xb8\x38\x02\x38\x18\x38\x18\x39\xcc\x38\x44\x0c\x02\x0c\
\xd0\x38\x8a\x39\x58\x39\x94\x34\xde\x36\x84\x39\xb2\x0d\x46\x37\
\x5c\x38\x66\x35\x8c\x0d\x8c\x38\x3a\x0e\xc2\x38\x3a\x38\x3a\x37\
\x88\x38\x66\x38\x7c\x0f\xc4\x39\x76\x10\x26\x35\x3c\x39\x76\x10\
\x40\x38\x66\x39\xcc\x10\x86\x35\xc6\x36\xfe\x39\xcc\x36\xfe\x11\
\x08\x12\x06\x13\x08\x13\xea\x14\x8c\x39\x76\x14\x92\x14\x9c\x38\
\x3a\x17\x86\x19\x78\x1a\x6a\x1b\x70\x1b\x86\x1b\x8c\x1b\x92\x1e\
\x8c\x1e\x92\x1e\xcc\x1f\x02\x1f\x8c\x35\xa0\x35\xa0\x21\xbe\x38\
\x18\x22\x60\x23\x5e\x34\xde\x25\xc0\x38\x18\x38\x18\x35\x42\x38\
\x18\x38\x18\x38\x18\x26\x96\x35\xa0\x38\x18\x35\xa0\x28\x40\x29\
\x06\x29\x98\x29\xfa\x2a\xe0\x35\x96\x2b\x6e\x35\x3c\x33\x46\x2b\
\x98\x2d\x72\x38\x66\x31\x00\x31\x3a\x33\x24\x33\x24\x38\x66\x32\
\x70\x32\xfa\x33\x24\x33\x24\x33\x24\x36\xfe\x37\x88\x39\x58\x39\
\x76\x33\x46\x38\x66\x35\xc6\x35\x96\x34\xde\x35\x3c\x37\xb8\x37\
\xb8\x37\xb8\x38\x18\x34\xde\x35\x3c\x38\x18\x38\x18\x39\xcc\x35\
\x96\x34\xde\x35\x3c\x34\xc6\x33\x70\x34\xc6\x34\xc6\x34\xc6\x3a\
\x08\x34\x12\x34\x60\x3a\x02\x34\xbc\x39\xea\x39\xf0\x3a\x02\x39\
\xf0\x39\xea\x39\xea\x39\xea\x39\xea\x34\xae\x39\xf0\x34\xcc\x39\
\xcc\x39\xcc\x39\xcc\x39\xcc\x38\x8a\x36\xfe\x36\xfe\x36\xfe\x36\
\xfe\x36\xfe\x36\xfe\x36\xfe\x34\xcc\x37\x7a\x37\x7a\x37\x7a\x37\
\x7a\x38\x18\x38\x18\x38\x18\x38\x18\x38\x18\x39\xcc\x39\xcc\x39\
\xcc\x39\xcc\x39\xcc\x36\x84\x37\x5c\x37\x5c\x37\x5c\x37\x5c\x37\
\x5c\x37\x5c\x37\x5c\x35\x8c\x35\x8c\x35\x8c\x35\x8c\x38\x3a\x37\
\x88\x37\x88\x37\x88\x37\x88\x37\x88\x39\x76\x39\x76\x36\xfe\x37\
\x5c\x36\xfe\x37\x5c\x36\xfe\x37\x5c\x34\xcc\x34\xcc\x34\xcc\x34\
\xcc\x39\xcc\x37\x7a\x35\x8c\x37\x7a\x35\x8c\x37\x7a\x35\x8c\x37\
\x7a\x35\x8c\x37\x7a\x35\x8c\x38\x18\x38\x3a\x38\x18\x38\x18\x38\
\x18\x38\x18\x38\x18\x37\xb8\x38\x02\x38\x02\x38\x02\x38\x02\x38\
\x18\x38\x3a\x38\x18\x38\x3a\x38\x18\x38\x3a\x38\x3a\x39\xcc\x37\
\x88\x39\xcc\x37\x88\x39\xcc\x37\x88\x38\x7c\x38\x7c\x38\x7c\x38\
\x8a\x38\x8a\x38\x8a\x39\x94\x36\x84\x39\x76\x36\x84\x39\xb2\x39\
\xb2\x39\xb2\x3a\x02\x3a\x02\x3a\x08\x39\xf0\x39\xf0\x39\xf0\x39\
\xf0\x39\xf0\x39\xf0\x39\xf0\x3a\x02\x3a\x02\x3a\x02\x3a\x02\x3a\
\x02\x39\xf0\x39\xf0\x39\xf0\x3a\x02\x39\xea\x34\xbc\x34\xbc\x34\
\xbc\x34\xbc\x3a\x02\x3a\x02\x3a\x02\x3a\x08\x36\xfe\x37\x7a\x38\
\x18\x38\x18\x39\xcc\x36\x84\x36\xfe\x37\xae\x37\x7a\x39\xb2\x38\
\x18\x38\x18\x37\xb8\x38\x18\x38\x18\x39\xcc\x38\x44\x38\x8a\x36\
\x84\x34\xde\x38\x18\x36\x84\x38\x3a\x37\x88\x39\x76\x37\x88\x37\
\x7a\x35\xc6\x38\x18\x38\x18\x37\xb8\x37\xb8\x35\x42\x36\xfe\x37\
\xae\x35\xc6\x37\x7a\x38\x18\x38\x18\x39\xcc\x38\x44\x34\xcc\x38\
\x8a\x34\xde\x37\x5c\x35\x8c\x37\x88\x38\x66\x39\x76\x35\x3c\x35\
\x8c\x35\x96\x39\x76\x39\x94\x39\x94\x39\x94\x36\x84\x39\x76\x34\
\xc6\x34\xc6\x34\xc6\x38\x18\x38\x3a\x36\xfe\x37\x5c\x37\x7a\x35\
\x8c\x39\x58\x39\x76\x34\xcc\x36\x84\x39\x76\x38\x18\x34\xde\x35\
\x3c\x38\x18\x36\xfe\x37\x5c\x36\xfe\x37\x5c\x37\x7a\x35\x8c\x35\
\x8c\x35\x8c\x34\xde\x35\x3c\x39\xcc\x37\x88\x37\x88\x38\x66\x35\
\x42\x39\x76\x35\x42\x39\x76\x35\x42\x39\x76\x36\xfe\x37\x5c\x36\
\xfe\x37\x5c\x36\xfe\x37\x5c\x36\xfe\x37\x5c\x36\xfe\x37\x5c\x36\
\xfe\x37\x5c\x36\xfe\x37\x5c\x36\xfe\x37\x5c\x36\xfe\x37\x5c\x36\
\xfe\x37\x5c\x36\xfe\x37\x5c\x36\xfe\x37\x5c\x37\x7a\x35\x8c\x37\
\x7a\x35\x8c\x37\x7a\x35\x8c\x37\x7a\x35\x8c\x37\x7a\x35\x8c\x37\
\x7a\x35\x8c\x37\x7a\x35\x8c\x37\x7a\x35\x8c\x38\x18\x38\x18\x39\
\xcc\x37\x88\x39\xcc\x37\x88\x39\xcc\x37\x88\x39\xcc\x37\x88\x39\
\xcc\x37\x88\x39\xcc\x37\x88\x39\xcc\x37\x88\x37\x88\x36\x84\x39\
\x76\x36\x84\x39\x76\x36\x84\x39\x76\x38\x8a\x35\xc6\x35\x96\x38\
\x3a\x35\xa0\x35\xc6\x37\xb8\x36\x84\x38\x18\x38\x3a\x36\xfe\x37\
\x5c\x37\x7a\x38\x18\x39\xcc\x37\x88\x38\x7c\x37\xae\x38\x66\x39\
\xcc\x39\xcc\x38\x18\x38\x3a\x37\xb8\x37\xb8\x38\x02\x38\x18\x38\
\x3a\x38\x18\x38\x3a\x39\xcc\x38\x44\x38\x66\x38\x7c\x38\x8a\x39\
\x58\x39\x76\x39\x58\x39\x76\x39\x94\x39\xb2\x39\xcc\x39\xf0\x3a\
\x02\x39\xf0\x39\xea\x3a\x08\x39\xea\x39\xf0\x3a\x02\x3a\x08\x00\
\x02\x00\xa4\x00\x04\x00\x04\x00\x00\x00\x06\x00\x06\x00\x01\x00\
\x0b\x00\x0c\x00\x02\x00\x13\x00\x13\x00\x04\x00\x25\x00\x2a\x00\
\x05\x00\x2c\x00\x2d\x00\x0b\x00\x2f\x00\x36\x00\x0d\x00\x38\x00\
\x38\x00\x15\x00\x3a\x00\x3f\x00\x16\x00\x45\x00\x46\x00\x1c\x00\
\x49\x00\x4a\x00\x1e\x00\x4c\x00\x4c\x00\x20\x00\x4f\x00\x4f\x00\
\x21\x00\x51\x00\x54\x00\x22\x00\x56\x00\x56\x00\x26\x00\x58\x00\
\x58\x00\x27\x00\x5a\x00\x5d\x00\x28\x00\x5f\x00\x5f\x00\x2c\x00\
\x8a\x00\x8a\x00\x2d\x00\x96\x00\x96\x00\x2e\x00\x9d\x00\x9d\x00\
\x2f\x00\xb1\x00\xb5\x00\x30\x00\xb7\x00\xb9\x00\x35\x00\xbb\x00\
\xbb\x00\x38\x00\xbd\x00\xbe\x00\x39\x00\xc0\x00\xc1\x00\x3b\x00\
\xc3\x00\xc5\x00\x3d\x00\xc7\x00\xce\x00\x40\x00\xd2\x00\xd2\x00\
\x48\x00\xd4\x00\xde\x00\x49\x00\xe0\x00\xef\x00\x54\x00\xf1\x00\
\xf1\x00\x64\x00\xf6\x00\xf8\x00\x65\x00\xfb\x00\xfc\x00\x68\x00\
\xfe\x01\x00\x00\x6a\x01\x03\x01\x05\x00\x6d\x01\x0a\x01\x0a\x00\
\x70\x01\x0d\x01\x0d\x00\x71\x01\x18\x01\x1a\x00\x72\x01\x22\x01\
\x22\x00\x75\x01\x2e\x01\x30\x00\x76\x01\x33\x01\x35\x00\x79\x01\
\x37\x01\x37\x00\x7c\x01\x39\x01\x39\x00\x7d\x01\x3b\x01\x3b\x00\
\x7e\x01\x43\x01\x44\x00\x7f\x01\x54\x01\x54\x00\x81\x01\x56\x01\
\x56\x00\x82\x01\x58\x01\x58\x00\x83\x01\x5c\x01\x5e\x00\x84\x01\
\x84\x01\x85\x00\x87\x01\x87\x01\x89\x00\x89\x01\xd8\x01\xd8\x00\
\x8c\x01\xda\x01\xdb\x00\x8d\x01\xdd\x01\xdd\x00\x8f\x01\xe0\x01\
\xe1\x00\x90\x01\xeb\x01\xed\x00\x92\x01\xff\x01\xff\x00\x95\x02\
\x0e\x02\x10\x00\x96\x02\x30\x02\x30\x00\x99\x02\x33\x02\x33\x00\
\x9a\x02\x45\x02\x45\x00\x9b\x02\x47\x02\x48\x00\x9c\x02\x7a\x02\
\x7b\x00\x9e\x02\x7d\x02\x7d\x00\xa0\x02\x7f\x02\x94\x00\xa1\x02\
\x99\x02\xa0\x00\xb7\x02\xa2\x02\xa5\x00\xbf\x02\xaa\x02\xaf\x00\
\xc3\x02\xb4\x02\xbc\x00\xc9\x02\xbe\x02\xbe\x00\xd2\x02\xc0\x02\
\xc0\x00\xd3\x02\xc2\x02\xc2\x00\xd4\x02\xc4\x02\xc4\x00\xd5\x02\
\xc6\x02\xcf\x00\xd6\x02\xd8\x02\xda\x00\xe0\x02\xdc\x02\xdc\x00\
\xe3\x02\xde\x02\xde\x00\xe4\x02\xe0\x02\xe0\x00\xe5\x02\xe2\x02\
\xe2\x00\xe6\x02\xe7\x02\xe7\x00\xe7\x02\xe9\x02\xe9\x00\xe8\x02\
\xeb\x02\xeb\x00\xe9\x02\xed\x02\xed\x00\xea\x02\xef\x02\xef\x00\
\xeb\x02\xf1\x02\xfd\x00\xec\x02\xff\x02\xff\x00\xf9\x03\x01\x03\
\x01\x00\xfa\x03\x03\x03\x03\x00\xfb\x03\x0e\x03\x0e\x00\xfc\x03\
\x10\x03\x10\x00\xfd\x03\x12\x03\x12\x00\xfe\x03\x20\x03\x20\x00\
\xff\x03\x22\x03\x25\x01\x00\x03\x27\x03\x27\x01\x04\x03\x29\x03\
\x29\x01\x05\x03\x2f\x03\x38\x01\x06\x03\x43\x03\x47\x01\x10\x03\
\x4d\x03\x4f\x01\x15\x03\x54\x03\x54\x01\x18\x03\x65\x03\x69\x01\
\x19\x03\x6d\x03\x6f\x01\x1e\x03\x78\x03\x78\x01\x21\x03\x86\x03\
\x8b\x01\x22\x03\x8e\x03\x9d\x01\x28\x03\xa0\x03\xa0\x01\x38\x03\
\xa4\x03\xa4\x01\x39\x03\xa6\x03\xa6\x01\x3a\x03\xaa\x03\xaa\x01\
\x3b\x03\xad\x03\xae\x01\x3c\x03\xb0\x03\xb1\x01\x3e\x03\xb3\x03\
\xb9\x01\x40\x03\xbb\x03\xbd\x01\x47\x03\xbf\x03\xc4\x01\x4a\x03\
\xc6\x03\xc7\x01\x50\x03\xc9\x03\xcc\x01\x52\x03\xd2\x03\xd3\x01\
\x56\x03\xd5\x03\xd5\x01\x58\x03\xd7\x03\xd7\x01\x59\x03\xd9\x03\
\xdc\x01\x5a\x03\xdf\x03\xe4\x01\x5e\x03\xe6\x03\xe6\x01\x64\x03\
\xea\x03\xeb\x01\x65\x03\xf0\x03\xf0\x01\x67\x03\xf2\x03\xfb\x01\
\x68\x03\xfe\x03\xff\x01\x72\x04\x01\x04\x04\x01\x74\x04\x0b\x04\
\x0c\x01\x78\x04\x10\x04\x10\x01\x7a\x04\x12\x04\x18\x01\x7b\x04\
\x1e\x04\x46\x01\x82\x04\x48\x04\x48\x01\xab\x04\x4a\x04\x57\x01\
\xac\x04\x5f\x04\x5f\x01\xba\x04\x70\x04\x75\x01\xbb\x04\x77\x04\
\x77\x01\xc1\x04\x7b\x04\x7c\x01\xc2\x04\x7f\x04\x7f\x01\xc4\x04\
\x81\x04\x82\x01\xc5\x04\x84\x04\x84\x01\xc7\x04\x86\x04\x86\x01\
\xc8\x04\x97\x04\x9b\x01\xc9\x04\x9d\x04\x9d\x01\xce\x04\x9f\x04\
\xa0\x01\xcf\x04\xa2\x04\xa2\x01\xd1\x04\xa6\x04\xa8\x01\xd2\x04\
\xaa\x04\xaa\x01\xd5\x04\xac\x04\xae\x01\xd6\x04\xb0\x04\xb0\x01\
\xd9\x04\xb2\x04\xb2\x01\xda\x04\xb4\x04\xba\x01\xdb\x04\xbc\x04\
\xbc\x01\xe2\x04\xbf\x04\xbf\x01\xe3\x04\xc2\x04\xc6\x01\xe4\x04\
\xc8\x04\xc8\x01\xe9\x04\xca\x04\xcb\x01\xea\x04\xcf\x04\xcf\x01\
\xec\x04\xd2\x04\xd2\x01\xed\x04\xd8\x04\xd8\x01\xee\x04\xdd\x04\
\xdd\x01\xef\x04\xe8\x04\xe8\x01\xf0\x04\xea\x04\xea\x01\xf1\x04\
\xf1\x04\xf1\x01\xf2\x04\xf5\x04\xf5\x01\xf3\x00\x0b\x00\x38\xff\
\xd8\x00\xd2\xff\xd8\x00\xd6\xff\xd8\x01\x39\xff\xd8\x01\x45\xff\
\xd8\x03\x0e\xff\xd8\x03\x10\xff\xd8\x03\x12\xff\xd8\x03\xc1\xff\
\xd8\x04\x77\xff\xd8\x04\xbf\xff\xd8\x00\x18\x00\x3a\x00\x14\x00\
\x3b\x00\x12\x00\x3d\x00\x16\x01\x19\x00\x14\x02\x99\x00\x16\x03\
\x20\x00\x12\x03\x22\x00\x16\x03\x24\x00\x16\x03\x8b\x00\x16\x03\
\x9a\x00\x16\x03\x9d\x00\x16\x03\xd3\x00\x12\x03\xd5\x00\x12\x03\
\xd7\x00\x12\x03\xd9\x00\x16\x03\xea\x00\x14\x03\xf2\x00\x16\x04\
\x70\x00\x16\x04\x72\x00\x16\x04\x74\x00\x16\x04\x86\x00\x16\x04\
\xc2\x00\x14\x04\xc4\x00\x14\x04\xc6\x00\x12\x00\x01\x00\x13\xff\
\x20\x00\xe7\x00\x10\xff\x16\x00\x12\xff\x16\x00\x25\xff\x56\x00\
\x2e\xfe\xf8\x00\x38\x00\x14\x00\x45\xff\xde\x00\x47\xff\xeb\x00\
\x48\xff\xeb\x00\x49\xff\xeb\x00\x4b\xff\xeb\x00\x53\xff\xeb\x00\
\x55\xff\xeb\x00\x56\xff\xe6\x00\x59\xff\xea\x00\x5a\xff\xe8\x00\
\x5d\xff\xe8\x00\x94\xff\xeb\x00\x99\xff\xeb\x00\x9b\xff\xea\x00\
\xb2\xff\x56\x00\xb4\xff\x56\x00\xbb\xff\xeb\x00\xbd\xff\xe8\x00\
\xc8\xff\xeb\x00\xc9\xff\xeb\x00\xcb\xff\xea\x00\xd2\x00\x14\x00\
\xd6\x00\x14\x00\xf7\xff\xeb\x01\x03\xff\xeb\x01\x0d\xff\x56\x01\
\x18\xff\xeb\x01\x1a\xff\xe8\x01\x1e\xff\xeb\x01\x22\xff\xeb\x01\
\x39\x00\x14\x01\x42\xff\xeb\x01\x45\x00\x14\x01\x60\xff\xeb\x01\
\x61\xff\xeb\x01\x6b\xff\xeb\x01\x86\xff\x16\x01\x8a\xff\x16\x01\
\x8e\xff\x16\x01\x8f\xff\x16\x01\xeb\xff\xc0\x01\xed\xff\xc0\x02\
\x33\xff\xc0\x02\x7f\xff\x56\x02\x80\xff\x56\x02\x81\xff\x56\x02\
\x82\xff\x56\x02\x83\xff\x56\x02\x84\xff\x56\x02\x85\xff\x56\x02\
\x9a\xff\xde\x02\x9b\xff\xde\x02\x9c\xff\xde\x02\x9d\xff\xde\x02\
\x9e\xff\xde\x02\x9f\xff\xde\x02\xa0\xff\xde\x02\xa1\xff\xeb\x02\
\xa2\xff\xeb\x02\xa3\xff\xeb\x02\xa4\xff\xeb\x02\xa5\xff\xeb\x02\
\xab\xff\xeb\x02\xac\xff\xeb\x02\xad\xff\xeb\x02\xae\xff\xeb\x02\
\xaf\xff\xeb\x02\xb0\xff\xea\x02\xb1\xff\xea\x02\xb2\xff\xea\x02\
\xb3\xff\xea\x02\xb4\xff\xe8\x02\xb5\xff\xe8\x02\xb6\xff\x56\x02\
\xb7\xff\xde\x02\xb8\xff\x56\x02\xb9\xff\xde\x02\xba\xff\x56\x02\
\xbb\xff\xde\x02\xbd\xff\xeb\x02\xbf\xff\xeb\x02\xc1\xff\xeb\x02\
\xc3\xff\xeb\x02\xc5\xff\xeb\x02\xc7\xff\xeb\x02\xc9\xff\xeb\x02\
\xcb\xff\xeb\x02\xcd\xff\xeb\x02\xcf\xff\xeb\x02\xd1\xff\xeb\x02\
\xd3\xff\xeb\x02\xd5\xff\xeb\x02\xd7\xff\xeb\x02\xe5\xfe\xf8\x02\
\xf9\xff\xeb\x02\xfb\xff\xeb\x02\xfd\xff\xeb\x03\x0e\x00\x14\x03\
\x10\x00\x14\x03\x12\x00\x14\x03\x15\xff\xea\x03\x17\xff\xea\x03\
\x19\xff\xea\x03\x1b\xff\xea\x03\x1d\xff\xea\x03\x1f\xff\xea\x03\
\x23\xff\xe8\x03\x32\xff\xc0\x03\x33\xff\xc0\x03\x34\xff\xc0\x03\
\x35\xff\xc0\x03\x36\xff\xc0\x03\x37\xff\xc0\x03\x38\xff\xc0\x03\
\x4d\xff\xc0\x03\x4e\xff\xc0\x03\x4f\xff\xc0\x03\x86\xff\x56\x03\
\x8e\xff\x56\x03\x9e\xff\xeb\x03\xa2\xff\xea\x03\xa4\xff\xeb\x03\
\xa6\xff\xe8\x03\xa9\xff\xea\x03\xaa\xff\xeb\x03\xab\xff\xea\x03\
\xb2\xfe\xf8\x03\xb6\xff\x56\x03\xc1\x00\x14\x03\xc3\xff\xde\x03\
\xc4\xff\xeb\x03\xc6\xff\xeb\x03\xc8\xff\xeb\x03\xc9\xff\xe8\x03\
\xcb\xff\xeb\x03\xd2\xff\xe8\x03\xda\xff\xe8\x03\xe2\xff\x56\x03\
\xe3\xff\xde\x03\xe6\xff\xeb\x03\xeb\xff\xe8\x03\xec\xff\xeb\x03\
\xf1\xff\xeb\x03\xf3\xff\xe8\x03\xf8\xff\x56\x03\xf9\xff\xde\x03\
\xfa\xff\x56\x03\xfb\xff\xde\x03\xff\xff\xeb\x04\x01\xff\xeb\x04\
\x02\xff\xeb\x04\x0c\xff\xeb\x04\x0e\xff\xeb\x04\x10\xff\xeb\x04\
\x14\xff\xe8\x04\x16\xff\xe8\x04\x18\xff\xe8\x04\x1d\xff\xeb\x04\
\x1e\xff\x56\x04\x1f\xff\xde\x04\x20\xff\x56\x04\x21\xff\xde\x04\
\x22\xff\x56\x04\x23\xff\xde\x04\x24\xff\x56\x04\x25\xff\xde\x04\
\x26\xff\x56\x04\x27\xff\xde\x04\x28\xff\x56\x04\x29\xff\xde\x04\
\x2a\xff\x56\x04\x2b\xff\xde\x04\x2c\xff\x56\x04\x2d\xff\xde\x04\
\x2e\xff\x56\x04\x2f\xff\xde\x04\x30\xff\x56\x04\x31\xff\xde\x04\
\x32\xff\x56\x04\x33\xff\xde\x04\x34\xff\x56\x04\x35\xff\xde\x04\
\x37\xff\xeb\x04\x39\xff\xeb\x04\x3b\xff\xeb\x04\x3d\xff\xeb\x04\
\x3f\xff\xeb\x04\x41\xff\xeb\x04\x43\xff\xeb\x04\x45\xff\xeb\x04\
\x4b\xff\xeb\x04\x4d\xff\xeb\x04\x4f\xff\xeb\x04\x51\xff\xeb\x04\
\x53\xff\xeb\x04\x55\xff\xeb\x04\x57\xff\xeb\x04\x59\xff\xeb\x04\
\x5b\xff\xeb\x04\x5d\xff\xeb\x04\x5f\xff\xeb\x04\x61\xff\xeb\x04\
\x63\xff\xea\x04\x65\xff\xea\x04\x67\xff\xea\x04\x69\xff\xea\x04\
\x6b\xff\xea\x04\x6d\xff\xea\x04\x6f\xff\xea\x04\x71\xff\xe8\x04\
\x73\xff\xe8\x04\x75\xff\xe8\x04\x77\x00\x14\x04\x99\xff\x56\x04\
\x9a\xff\xde\x04\x9c\xff\xeb\x04\xa0\xff\xeb\x04\xa4\xff\xea\x04\
\xa9\xff\xeb\x04\xab\xff\xeb\x04\xbf\x00\x14\x04\xc3\xff\xe8\x04\
\xc5\xff\xe8\x04\xcb\xff\xc0\x04\xd2\xff\xc0\x04\xea\xff\xc0\x00\
\x33\x00\x38\xff\xd5\x00\x3a\xff\xe4\x00\x3b\xff\xec\x00\x3d\xff\
\xdd\x00\xd2\xff\xd5\x00\xd6\xff\xd5\x01\x19\xff\xe4\x01\x39\xff\
\xd5\x01\x45\xff\xd5\x01\xeb\x00\x0e\x01\xed\x00\x0e\x02\x33\x00\
\x0e\x02\x99\xff\xdd\x03\x0e\xff\xd5\x03\x10\xff\xd5\x03\x12\xff\
\xd5\x03\x20\xff\xec\x03\x22\xff\xdd\x03\x24\xff\xdd\x03\x32\x00\
\x0e\x03\x33\x00\x0e\x03\x34\x00\x0e\x03\x35\x00\x0e\x03\x36\x00\
\x0e\x03\x37\x00\x0e\x03\x38\x00\x0e\x03\x4d\x00\x0e\x03\x4e\x00\
\x0e\x03\x4f\x00\x0e\x03\x8b\xff\xdd\x03\x9a\xff\xdd\x03\x9d\xff\
\xdd\x03\xc1\xff\xd5\x03\xd3\xff\xec\x03\xd5\xff\xec\x03\xd7\xff\
\xec\x03\xd9\xff\xdd\x03\xea\xff\xe4\x03\xf2\xff\xdd\x04\x70\xff\
\xdd\x04\x72\xff\xdd\x04\x74\xff\xdd\x04\x77\xff\xd5\x04\x86\xff\
\xdd\x04\xbf\xff\xd5\x04\xc2\xff\xe4\x04\xc4\xff\xe4\x04\xc6\xff\
\xec\x04\xcb\x00\x0e\x04\xd2\x00\x0e\x04\xea\x00\x0e\x00\x1d\x00\
\x38\xff\xb0\x00\x3a\xff\xed\x00\x3d\xff\xd0\x00\xd2\xff\xb0\x00\
\xd6\xff\xb0\x01\x19\xff\xed\x01\x39\xff\xb0\x01\x45\xff\xb0\x02\
\x99\xff\xd0\x03\x0e\xff\xb0\x03\x10\xff\xb0\x03\x12\xff\xb0\x03\
\x22\xff\xd0\x03\x24\xff\xd0\x03\x8b\xff\xd0\x03\x9a\xff\xd0\x03\
\x9d\xff\xd0\x03\xc1\xff\xb0\x03\xd9\xff\xd0\x03\xea\xff\xed\x03\
\xf2\xff\xd0\x04\x70\xff\xd0\x04\x72\xff\xd0\x04\x74\xff\xd0\x04\
\x77\xff\xb0\x04\x86\xff\xd0\x04\xbf\xff\xb0\x04\xc2\xff\xed\x04\
\xc4\xff\xed\x00\x11\x00\x2e\xff\xee\x00\x39\xff\xee\x02\x95\xff\
\xee\x02\x96\xff\xee\x02\x97\xff\xee\x02\x98\xff\xee\x02\xe5\xff\
\xee\x03\x14\xff\xee\x03\x16\xff\xee\x03\x18\xff\xee\x03\x1a\xff\
\xee\x03\x1c\xff\xee\x03\x1e\xff\xee\x03\xb2\xff\xee\x04\x62\xff\
\xee\x04\x64\xff\xee\x04\xc1\xff\xee\x00\x4d\x00\x06\x00\x10\x00\
\x0b\x00\x10\x00\x0d\x00\x14\x00\x41\x00\x12\x00\x47\xff\xe8\x00\
\x48\xff\xe8\x00\x49\xff\xe8\x00\x4b\xff\xe8\x00\x55\xff\xe8\x00\
\x61\x00\x13\x00\x94\xff\xe8\x00\x99\xff\xe8\x00\xbb\xff\xe8\x00\
\xc8\xff\xe8\x00\xc9\xff\xe8\x00\xf7\xff\xe8\x01\x03\xff\xe8\x01\
\x1e\xff\xe8\x01\x22\xff\xe8\x01\x42\xff\xe8\x01\x60\xff\xe8\x01\
\x61\xff\xe8\x01\x6b\xff\xe8\x01\x84\x00\x10\x01\x85\x00\x10\x01\
\x87\x00\x10\x01\x88\x00\x10\x01\x89\x00\x10\x02\xa1\xff\xe8\x02\
\xa2\xff\xe8\x02\xa3\xff\xe8\x02\xa4\xff\xe8\x02\xa5\xff\xe8\x02\
\xbd\xff\xe8\x02\xbf\xff\xe8\x02\xc1\xff\xe8\x02\xc3\xff\xe8\x02\
\xc5\xff\xe8\x02\xc7\xff\xe8\x02\xc9\xff\xe8\x02\xcb\xff\xe8\x02\
\xcd\xff\xe8\x02\xcf\xff\xe8\x02\xd1\xff\xe8\x02\xd3\xff\xe8\x02\
\xd5\xff\xe8\x02\xd7\xff\xe8\x03\x9e\xff\xe8\x03\xc4\xff\xe8\x03\
\xc8\xff\xe8\x03\xcb\xff\xe8\x03\xdb\x00\x10\x03\xdc\x00\x10\x03\
\xdf\x00\x10\x03\xe6\xff\xe8\x03\xec\xff\xe8\x03\xf1\xff\xe8\x03\
\xff\xff\xe8\x04\x01\xff\xe8\x04\x02\xff\xe8\x04\x0e\xff\xe8\x04\
\x1d\xff\xe8\x04\x37\xff\xe8\x04\x39\xff\xe8\x04\x3b\xff\xe8\x04\
\x3d\xff\xe8\x04\x3f\xff\xe8\x04\x41\xff\xe8\x04\x43\xff\xe8\x04\
\x45\xff\xe8\x04\x59\xff\xe8\x04\x5b\xff\xe8\x04\x5d\xff\xe8\x04\
\x61\xff\xe8\x04\x9c\xff\xe8\x04\xa9\xff\xe8\x04\xab\xff\xe8\x00\
\x40\x00\x47\xff\xec\x00\x48\xff\xec\x00\x49\xff\xec\x00\x4b\xff\
\xec\x00\x55\xff\xec\x00\x94\xff\xec\x00\x99\xff\xec\x00\xbb\xff\
\xec\x00\xc8\xff\xec\x00\xc9\xff\xec\x00\xf7\xff\xec\x01\x03\xff\
\xec\x01\x1e\xff\xec\x01\x22\xff\xec\x01\x42\xff\xec\x01\x60\xff\
\xec\x01\x61\xff\xec\x01\x6b\xff\xec\x02\xa1\xff\xec\x02\xa2\xff\
\xec\x02\xa3\xff\xec\x02\xa4\xff\xec\x02\xa5\xff\xec\x02\xbd\xff\
\xec\x02\xbf\xff\xec\x02\xc1\xff\xec\x02\xc3\xff\xec\x02\xc5\xff\
\xec\x02\xc7\xff\xec\x02\xc9\xff\xec\x02\xcb\xff\xec\x02\xcd\xff\
\xec\x02\xcf\xff\xec\x02\xd1\xff\xec\x02\xd3\xff\xec\x02\xd5\xff\
\xec\x02\xd7\xff\xec\x03\x9e\xff\xec\x03\xc4\xff\xec\x03\xc8\xff\
\xec\x03\xcb\xff\xec\x03\xe6\xff\xec\x03\xec\xff\xec\x03\xf1\xff\
\xec\x03\xff\xff\xec\x04\x01\xff\xec\x04\x02\xff\xec\x04\x0e\xff\
\xec\x04\x1d\xff\xec\x04\x37\xff\xec\x04\x39\xff\xec\x04\x3b\xff\
\xec\x04\x3d\xff\xec\x04\x3f\xff\xec\x04\x41\xff\xec\x04\x43\xff\
\xec\x04\x45\xff\xec\x04\x59\xff\xec\x04\x5b\xff\xec\x04\x5d\xff\
\xec\x04\x61\xff\xec\x04\x9c\xff\xec\x04\xa9\xff\xec\x04\xab\xff\
\xec\x00\x18\x00\x53\xff\xec\x01\x18\xff\xec\x02\xab\xff\xec\x02\
\xac\xff\xec\x02\xad\xff\xec\x02\xae\xff\xec\x02\xaf\xff\xec\x02\
\xf9\xff\xec\x02\xfb\xff\xec\x02\xfd\xff\xec\x03\xa4\xff\xec\x03\
\xaa\xff\xec\x03\xc6\xff\xec\x04\x0c\xff\xec\x04\x10\xff\xec\x04\
\x4b\xff\xec\x04\x4d\xff\xec\x04\x4f\xff\xec\x04\x51\xff\xec\x04\
\x53\xff\xec\x04\x55\xff\xec\x04\x57\xff\xec\x04\x5f\xff\xec\x04\
\xa0\xff\xec\x00\x06\x00\x10\xff\x84\x00\x12\xff\x84\x01\x86\xff\
\x84\x01\x8a\xff\x84\x01\x8e\xff\x84\x01\x8f\xff\x84\x00\x11\x00\
\x2e\xff\xec\x00\x39\xff\xec\x02\x95\xff\xec\x02\x96\xff\xec\x02\
\x97\xff\xec\x02\x98\xff\xec\x02\xe5\xff\xec\x03\x14\xff\xec\x03\
\x16\xff\xec\x03\x18\xff\xec\x03\x1a\xff\xec\x03\x1c\xff\xec\x03\
\x1e\xff\xec\x03\xb2\xff\xec\x04\x62\xff\xec\x04\x64\xff\xec\x04\
\xc1\xff\xec\x00\x20\x00\x06\xff\xf2\x00\x0b\xff\xf2\x00\x5a\xff\
\xf3\x00\x5d\xff\xf3\x00\xbd\xff\xf3\x00\xf6\xff\xf5\x01\x1a\xff\
\xf3\x01\x84\xff\xf2\x01\x85\xff\xf2\x01\x87\xff\xf2\x01\x88\xff\
\xf2\x01\x89\xff\xf2\x02\xb4\xff\xf3\x02\xb5\xff\xf3\x03\x23\xff\
\xf3\x03\xa6\xff\xf3\x03\xc9\xff\xf3\x03\xd2\xff\xf3\x03\xda\xff\
\xf3\x03\xdb\xff\xf2\x03\xdc\xff\xf2\x03\xdf\xff\xf2\x03\xeb\xff\
\xf3\x03\xf3\xff\xf3\x04\x14\xff\xf3\x04\x16\xff\xf3\x04\x18\xff\
\xf3\x04\x71\xff\xf3\x04\x73\xff\xf3\x04\x75\xff\xf3\x04\xc3\xff\
\xf3\x04\xc5\xff\xf3\x00\x3f\x00\x27\xff\xf3\x00\x2b\xff\xf3\x00\
\x33\xff\xf3\x00\x35\xff\xf3\x00\x83\xff\xf3\x00\x93\xff\xf3\x00\
\x98\xff\xf3\x00\xb3\xff\xf3\x00\xc4\x00\x0d\x00\xd3\xff\xf3\x01\
\x08\xff\xf3\x01\x17\xff\xf3\x01\x1b\xff\xf3\x01\x1d\xff\xf3\x01\
\x1f\xff\xf3\x01\x21\xff\xf3\x01\x41\xff\xf3\x01\x6a\xff\xf3\x02\
\x45\xff\xf3\x02\x46\xff\xf3\x02\x48\xff\xf3\x02\x49\xff\xf3\x02\
\x86\xff\xf3\x02\x90\xff\xf3\x02\x91\xff\xf3\x02\x92\xff\xf3\x02\
\x93\xff\xf3\x02\x94\xff\xf3\x02\xbc\xff\xf3\x02\xbe\xff\xf3\x02\
\xc0\xff\xf3\x02\xc2\xff\xf3\x02\xd0\xff\xf3\x02\xd2\xff\xf3\x02\
\xd4\xff\xf3\x02\xd6\xff\xf3\x02\xf8\xff\xf3\x02\xfa\xff\xf3\x02\
\xfc\xff\xf3\x03\x2d\xff\xf3\x03\x8a\xff\xf3\x03\x97\xff\xf3\x03\
\xbd\xff\xf3\x03\xc0\xff\xf3\x03\xed\xff\xf3\x03\xf0\xff\xf3\x04\
\x0b\xff\xf3\x04\x0d\xff\xf3\x04\x0f\xff\xf3\x04\x4a\xff\xf3\x04\
\x4c\xff\xf3\x04\x4e\xff\xf3\x04\x50\xff\xf3\x04\x52\xff\xf3\x04\
\x54\xff\xf3\x04\x56\xff\xf3\x04\x58\xff\xf3\x04\x5a\xff\xf3\x04\
\x5c\xff\xf3\x04\x5e\xff\xf3\x04\x60\xff\xf3\x04\x9f\xff\xf3\x04\
\xb8\xff\xf3\x00\x40\x00\x27\xff\xe6\x00\x2b\xff\xe6\x00\x33\xff\
\xe6\x00\x35\xff\xe6\x00\x83\xff\xe6\x00\x93\xff\xe6\x00\x98\xff\
\xe6\x00\xb3\xff\xe6\x00\xb8\xff\xc2\x00\xc4\x00\x10\x00\xd3\xff\
\xe6\x01\x08\xff\xe6\x01\x17\xff\xe6\x01\x1b\xff\xe6\x01\x1d\xff\
\xe6\x01\x1f\xff\xe6\x01\x21\xff\xe6\x01\x41\xff\xe6\x01\x6a\xff\
\xe6\x02\x45\xff\xe6\x02\x46\xff\xe6\x02\x48\xff\xe6\x02\x49\xff\
\xe6\x02\x86\xff\xe6\x02\x90\xff\xe6\x02\x91\xff\xe6\x02\x92\xff\
\xe6\x02\x93\xff\xe6\x02\x94\xff\xe6\x02\xbc\xff\xe6\x02\xbe\xff\
\xe6\x02\xc0\xff\xe6\x02\xc2\xff\xe6\x02\xd0\xff\xe6\x02\xd2\xff\
\xe6\x02\xd4\xff\xe6\x02\xd6\xff\xe6\x02\xf8\xff\xe6\x02\xfa\xff\
\xe6\x02\xfc\xff\xe6\x03\x2d\xff\xe6\x03\x8a\xff\xe6\x03\x97\xff\
\xe6\x03\xbd\xff\xe6\x03\xc0\xff\xe6\x03\xed\xff\xe6\x03\xf0\xff\
\xe6\x04\x0b\xff\xe6\x04\x0d\xff\xe6\x04\x0f\xff\xe6\x04\x4a\xff\
\xe6\x04\x4c\xff\xe6\x04\x4e\xff\xe6\x04\x50\xff\xe6\x04\x52\xff\
\xe6\x04\x54\xff\xe6\x04\x56\xff\xe6\x04\x58\xff\xe6\x04\x5a\xff\
\xe6\x04\x5c\xff\xe6\x04\x5e\xff\xe6\x04\x60\xff\xe6\x04\x9f\xff\
\xe6\x04\xb8\xff\xe6\x00\x38\x00\x25\xff\xe4\x00\x3c\xff\xd2\x00\
\x3d\xff\xd3\x00\xb2\xff\xe4\x00\xb4\xff\xe4\x00\xc4\xff\xe2\x00\
\xda\xff\xd2\x01\x0d\xff\xe4\x01\x33\xff\xd2\x01\x43\xff\xd2\x01\
\x5d\xff\xd2\x02\x7f\xff\xe4\x02\x80\xff\xe4\x02\x81\xff\xe4\x02\
\x82\xff\xe4\x02\x83\xff\xe4\x02\x84\xff\xe4\x02\x85\xff\xe4\x02\
\x99\xff\xd3\x02\xb6\xff\xe4\x02\xb8\xff\xe4\x02\xba\xff\xe4\x03\
\x22\xff\xd3\x03\x24\xff\xd3\x03\x86\xff\xe4\x03\x8b\xff\xd3\x03\
\x8e\xff\xe4\x03\x9a\xff\xd3\x03\x9b\xff\xd2\x03\x9d\xff\xd3\x03\
\xb6\xff\xe4\x03\xc2\xff\xd2\x03\xd9\xff\xd3\x03\xe2\xff\xe4\x03\
\xf2\xff\xd3\x03\xf5\xff\xd2\x03\xf8\xff\xe4\x03\xfa\xff\xe4\x04\
\x03\xff\xd2\x04\x1e\xff\xe4\x04\x20\xff\xe4\x04\x22\xff\xe4\x04\
\x24\xff\xe4\x04\x26\xff\xe4\x04\x28\xff\xe4\x04\x2a\xff\xe4\x04\
\x2c\xff\xe4\x04\x2e\xff\xe4\x04\x30\xff\xe4\x04\x32\xff\xe4\x04\
\x34\xff\xe4\x04\x70\xff\xd3\x04\x72\xff\xd3\x04\x74\xff\xd3\x04\
\x86\xff\xd3\x04\x99\xff\xe4\x00\x28\x00\x10\xff\x1e\x00\x12\xff\
\x1e\x00\x25\xff\xcd\x00\xb2\xff\xcd\x00\xb4\xff\xcd\x00\xc7\xff\
\xf2\x01\x0d\xff\xcd\x01\x86\xff\x1e\x01\x8a\xff\x1e\x01\x8e\xff\
\x1e\x01\x8f\xff\x1e\x02\x7f\xff\xcd\x02\x80\xff\xcd\x02\x81\xff\
\xcd\x02\x82\xff\xcd\x02\x83\xff\xcd\x02\x84\xff\xcd\x02\x85\xff\
\xcd\x02\xb6\xff\xcd\x02\xb8\xff\xcd\x02\xba\xff\xcd\x03\x86\xff\
\xcd\x03\x8e\xff\xcd\x03\xb6\xff\xcd\x03\xe2\xff\xcd\x03\xf8\xff\
\xcd\x03\xfa\xff\xcd\x04\x1e\xff\xcd\x04\x20\xff\xcd\x04\x22\xff\
\xcd\x04\x24\xff\xcd\x04\x26\xff\xcd\x04\x28\xff\xcd\x04\x2a\xff\
\xcd\x04\x2c\xff\xcd\x04\x2e\xff\xcd\x04\x30\xff\xcd\x04\x32\xff\
\xcd\x04\x34\xff\xcd\x04\x99\xff\xcd\x00\x01\x00\xc4\x00\x0e\x00\
\x02\x00\xca\xff\xed\x00\xf6\xff\xc0\x00\xba\x00\x47\xff\xdc\x00\
\x48\xff\xdc\x00\x49\xff\xdc\x00\x4b\xff\xdc\x00\x51\xff\xf3\x00\
\x52\xff\xf3\x00\x53\xff\xd6\x00\x54\xff\xf3\x00\x55\xff\xdc\x00\
\x59\xff\xdd\x00\x5a\xff\xe1\x00\x5d\xff\xe1\x00\x94\xff\xdc\x00\
\x99\xff\xdc\x00\x9b\xff\xdd\x00\xbb\xff\xdc\x00\xbd\xff\xe1\x00\
\xbe\xff\xee\x00\xbf\xff\xe6\x00\xc1\xff\xf3\x00\xc2\xff\xeb\x00\
\xc3\xff\xe9\x00\xc5\xff\xf0\x00\xc6\xff\xe7\x00\xc8\xff\xdc\x00\
\xc9\xff\xdc\x00\xca\xff\xe3\x00\xcb\xff\xdd\x00\xcc\xff\xce\x00\
\xcd\xff\xd4\x00\xce\xff\xdb\x00\xec\xff\xf3\x00\xf0\xff\xf3\x00\
\xf1\xff\xf3\x00\xf3\xff\xf3\x00\xf4\xff\xf3\x00\xf5\xff\xf3\x00\
\xf7\xff\xdc\x00\xf8\xff\xf3\x00\xfa\xff\xf3\x00\xfb\xff\xf3\x00\
\xfe\xff\xf3\x01\x00\xff\xf3\x01\x03\xff\xdc\x01\x05\xff\xf3\x01\
\x18\xff\xd6\x01\x1a\xff\xe1\x01\x1e\xff\xdc\x01\x22\xff\xdc\x01\
\x2b\xff\xf3\x01\x36\xff\xf3\x01\x3c\xff\xf3\x01\x3e\xff\xf3\x01\
\x42\xff\xdc\x01\x53\xff\xf3\x01\x55\xff\xf3\x01\x57\xff\xf3\x01\
\x5c\xff\xf3\x01\x60\xff\xdc\x01\x61\xff\xdc\x01\x6b\xff\xdc\x02\
\xa1\xff\xdc\x02\xa2\xff\xdc\x02\xa3\xff\xdc\x02\xa4\xff\xdc\x02\
\xa5\xff\xdc\x02\xaa\xff\xf3\x02\xab\xff\xd6\x02\xac\xff\xd6\x02\
\xad\xff\xd6\x02\xae\xff\xd6\x02\xaf\xff\xd6\x02\xb0\xff\xdd\x02\
\xb1\xff\xdd\x02\xb2\xff\xdd\x02\xb3\xff\xdd\x02\xb4\xff\xe1\x02\
\xb5\xff\xe1\x02\xbd\xff\xdc\x02\xbf\xff\xdc\x02\xc1\xff\xdc\x02\
\xc3\xff\xdc\x02\xc5\xff\xdc\x02\xc7\xff\xdc\x02\xc9\xff\xdc\x02\
\xcb\xff\xdc\x02\xcd\xff\xdc\x02\xcf\xff\xdc\x02\xd1\xff\xdc\x02\
\xd3\xff\xdc\x02\xd5\xff\xdc\x02\xd7\xff\xdc\x02\xf2\xff\xf3\x02\
\xf4\xff\xf3\x02\xf6\xff\xf3\x02\xf7\xff\xf3\x02\xf9\xff\xd6\x02\
\xfb\xff\xd6\x02\xfd\xff\xd6\x03\x15\xff\xdd\x03\x17\xff\xdd\x03\
\x19\xff\xdd\x03\x1b\xff\xdd\x03\x1d\xff\xdd\x03\x1f\xff\xdd\x03\
\x23\xff\xe1\x03\x9e\xff\xdc\x03\xa0\xff\xf3\x03\xa2\xff\xdd\x03\
\xa4\xff\xd6\x03\xa6\xff\xe1\x03\xa9\xff\xdd\x03\xaa\xff\xd6\x03\
\xab\xff\xdd\x03\xc4\xff\xdc\x03\xc5\xff\xf3\x03\xc6\xff\xd6\x03\
\xc7\xff\xf3\x03\xc8\xff\xdc\x03\xc9\xff\xe1\x03\xcb\xff\xdc\x03\
\xcc\xff\xf3\x03\xd1\xff\xf3\x03\xd2\xff\xe1\x03\xda\xff\xe1\x03\
\xe1\xff\xf3\x03\xe6\xff\xdc\x03\xe7\xff\xf3\x03\xeb\xff\xe1\x03\
\xec\xff\xdc\x03\xf1\xff\xdc\x03\xf3\xff\xe1\x03\xff\xff\xdc\x04\
\x01\xff\xdc\x04\x02\xff\xdc\x04\x08\xff\xf3\x04\x0a\xff\xf3\x04\
\x0c\xff\xd6\x04\x0e\xff\xdc\x04\x10\xff\xd6\x04\x14\xff\xe1\x04\
\x16\xff\xe1\x04\x18\xff\xe1\x04\x1c\xff\xf3\x04\x1d\xff\xdc\x04\
\x37\xff\xdc\x04\x39\xff\xdc\x04\x3b\xff\xdc\x04\x3d\xff\xdc\x04\
\x3f\xff\xdc\x04\x41\xff\xdc\x04\x43\xff\xdc\x04\x45\xff\xdc\x04\
\x4b\xff\xd6\x04\x4d\xff\xd6\x04\x4f\xff\xd6\x04\x51\xff\xd6\x04\
\x53\xff\xd6\x04\x55\xff\xd6\x04\x57\xff\xd6\x04\x59\xff\xdc\x04\
\x5b\xff\xdc\x04\x5d\xff\xdc\x04\x5f\xff\xd6\x04\x61\xff\xdc\x04\
\x63\xff\xdd\x04\x65\xff\xdd\x04\x67\xff\xdd\x04\x69\xff\xdd\x04\
\x6b\xff\xdd\x04\x6d\xff\xdd\x04\x6f\xff\xdd\x04\x71\xff\xe1\x04\
\x73\xff\xe1\x04\x75\xff\xe1\x04\x7c\xff\xf3\x04\x98\xff\xf3\x04\
\x9c\xff\xdc\x04\xa0\xff\xd6\x04\xa4\xff\xdd\x04\xa9\xff\xdc\x04\
\xab\xff\xdc\x04\xb5\xff\xf3\x04\xb7\xff\xf3\x04\xc3\xff\xe1\x04\
\xc5\xff\xe1\x00\x7c\x00\x06\xff\xda\x00\x0b\xff\xda\x00\x47\xff\
\xf0\x00\x48\xff\xf0\x00\x49\xff\xf0\x00\x4b\xff\xf0\x00\x55\xff\
\xf0\x00\x59\xff\xef\x00\x5a\xff\xdc\x00\x5d\xff\xdc\x00\x94\xff\
\xf0\x00\x99\xff\xf0\x00\x9b\xff\xef\x00\xbb\xff\xf0\x00\xbd\xff\
\xdc\x00\xc2\xff\xec\x00\xc4\x00\x0f\x00\xc6\xff\xea\x00\xc8\xff\
\xf0\x00\xc9\xff\xf0\x00\xca\xff\xc4\x00\xcb\xff\xef\x00\xcc\xff\
\xe7\x00\xf7\xff\xf0\x01\x03\xff\xf0\x01\x1a\xff\xdc\x01\x1e\xff\
\xf0\x01\x22\xff\xf0\x01\x42\xff\xf0\x01\x60\xff\xf0\x01\x61\xff\
\xf0\x01\x6b\xff\xf0\x01\x84\xff\xda\x01\x85\xff\xda\x01\x87\xff\
\xda\x01\x88\xff\xda\x01\x89\xff\xda\x02\xa1\xff\xf0\x02\xa2\xff\
\xf0\x02\xa3\xff\xf0\x02\xa4\xff\xf0\x02\xa5\xff\xf0\x02\xb0\xff\
\xef\x02\xb1\xff\xef\x02\xb2\xff\xef\x02\xb3\xff\xef\x02\xb4\xff\
\xdc\x02\xb5\xff\xdc\x02\xbd\xff\xf0\x02\xbf\xff\xf0\x02\xc1\xff\
\xf0\x02\xc3\xff\xf0\x02\xc5\xff\xf0\x02\xc7\xff\xf0\x02\xc9\xff\
\xf0\x02\xcb\xff\xf0\x02\xcd\xff\xf0\x02\xcf\xff\xf0\x02\xd1\xff\
\xf0\x02\xd3\xff\xf0\x02\xd5\xff\xf0\x02\xd7\xff\xf0\x03\x15\xff\
\xef\x03\x17\xff\xef\x03\x19\xff\xef\x03\x1b\xff\xef\x03\x1d\xff\
\xef\x03\x1f\xff\xef\x03\x23\xff\xdc\x03\x9e\xff\xf0\x03\xa2\xff\
\xef\x03\xa6\xff\xdc\x03\xa9\xff\xef\x03\xab\xff\xef\x03\xc4\xff\
\xf0\x03\xc8\xff\xf0\x03\xc9\xff\xdc\x03\xcb\xff\xf0\x03\xd2\xff\
\xdc\x03\xda\xff\xdc\x03\xdb\xff\xda\x03\xdc\xff\xda\x03\xdf\xff\
\xda\x03\xe6\xff\xf0\x03\xeb\xff\xdc\x03\xec\xff\xf0\x03\xf1\xff\
\xf0\x03\xf3\xff\xdc\x03\xff\xff\xf0\x04\x01\xff\xf0\x04\x02\xff\
\xf0\x04\x0e\xff\xf0\x04\x14\xff\xdc\x04\x16\xff\xdc\x04\x18\xff\
\xdc\x04\x1d\xff\xf0\x04\x37\xff\xf0\x04\x39\xff\xf0\x04\x3b\xff\
\xf0\x04\x3d\xff\xf0\x04\x3f\xff\xf0\x04\x41\xff\xf0\x04\x43\xff\
\xf0\x04\x45\xff\xf0\x04\x59\xff\xf0\x04\x5b\xff\xf0\x04\x5d\xff\
\xf0\x04\x61\xff\xf0\x04\x63\xff\xef\x04\x65\xff\xef\x04\x67\xff\
\xef\x04\x69\xff\xef\x04\x6b\xff\xef\x04\x6d\xff\xef\x04\x6f\xff\
\xef\x04\x71\xff\xdc\x04\x73\xff\xdc\x04\x75\xff\xdc\x04\x9c\xff\
\xf0\x04\xa4\xff\xef\x04\xa9\xff\xf0\x04\xab\xff\xf0\x04\xc3\xff\
\xdc\x04\xc5\xff\xdc\x00\x3c\x00\x06\xff\xa0\x00\x0b\xff\xa0\x00\
\x4a\xff\xe9\x00\x59\xff\xf1\x00\x5a\xff\xc5\x00\x5d\xff\xc5\x00\
\x9b\xff\xf1\x00\xbd\xff\xc5\x00\xc2\xff\xee\x00\xc4\x00\x10\x00\
\xc6\xff\xec\x00\xca\xff\x20\x00\xcb\xff\xf1\x01\x1a\xff\xc5\x01\
\x84\xff\xa0\x01\x85\xff\xa0\x01\x87\xff\xa0\x01\x88\xff\xa0\x01\
\x89\xff\xa0\x02\xb0\xff\xf1\x02\xb1\xff\xf1\x02\xb2\xff\xf1\x02\
\xb3\xff\xf1\x02\xb4\xff\xc5\x02\xb5\xff\xc5\x03\x15\xff\xf1\x03\
\x17\xff\xf1\x03\x19\xff\xf1\x03\x1b\xff\xf1\x03\x1d\xff\xf1\x03\
\x1f\xff\xf1\x03\x23\xff\xc5\x03\xa2\xff\xf1\x03\xa6\xff\xc5\x03\
\xa9\xff\xf1\x03\xab\xff\xf1\x03\xc9\xff\xc5\x03\xd2\xff\xc5\x03\
\xda\xff\xc5\x03\xdb\xff\xa0\x03\xdc\xff\xa0\x03\xdf\xff\xa0\x03\
\xeb\xff\xc5\x03\xf3\xff\xc5\x04\x14\xff\xc5\x04\x16\xff\xc5\x04\
\x18\xff\xc5\x04\x63\xff\xf1\x04\x65\xff\xf1\x04\x67\xff\xf1\x04\
\x69\xff\xf1\x04\x6b\xff\xf1\x04\x6d\xff\xf1\x04\x6f\xff\xf1\x04\
\x71\xff\xc5\x04\x73\xff\xc5\x04\x75\xff\xc5\x04\xa4\xff\xf1\x04\
\xc3\xff\xc5\x04\xc5\xff\xc5\x00\x41\x00\x47\xff\xe7\x00\x48\xff\
\xe7\x00\x49\xff\xe7\x00\x4b\xff\xe7\x00\x55\xff\xe7\x00\x94\xff\
\xe7\x00\x99\xff\xe7\x00\xbb\xff\xe7\x00\xc4\x00\x0f\x00\xc8\xff\
\xe7\x00\xc9\xff\xe7\x00\xf7\xff\xe7\x01\x03\xff\xe7\x01\x1e\xff\
\xe7\x01\x22\xff\xe7\x01\x42\xff\xe7\x01\x60\xff\xe7\x01\x61\xff\
\xe7\x01\x6b\xff\xe7\x02\xa1\xff\xe7\x02\xa2\xff\xe7\x02\xa3\xff\
\xe7\x02\xa4\xff\xe7\x02\xa5\xff\xe7\x02\xbd\xff\xe7\x02\xbf\xff\
\xe7\x02\xc1\xff\xe7\x02\xc3\xff\xe7\x02\xc5\xff\xe7\x02\xc7\xff\
\xe7\x02\xc9\xff\xe7\x02\xcb\xff\xe7\x02\xcd\xff\xe7\x02\xcf\xff\
\xe7\x02\xd1\xff\xe7\x02\xd3\xff\xe7\x02\xd5\xff\xe7\x02\xd7\xff\
\xe7\x03\x9e\xff\xe7\x03\xc4\xff\xe7\x03\xc8\xff\xe7\x03\xcb\xff\
\xe7\x03\xe6\xff\xe7\x03\xec\xff\xe7\x03\xf1\xff\xe7\x03\xff\xff\
\xe7\x04\x01\xff\xe7\x04\x02\xff\xe7\x04\x0e\xff\xe7\x04\x1d\xff\
\xe7\x04\x37\xff\xe7\x04\x39\xff\xe7\x04\x3b\xff\xe7\x04\x3d\xff\
\xe7\x04\x3f\xff\xe7\x04\x41\xff\xe7\x04\x43\xff\xe7\x04\x45\xff\
\xe7\x04\x59\xff\xe7\x04\x5b\xff\xe7\x04\x5d\xff\xe7\x04\x61\xff\
\xe7\x04\x9c\xff\xe7\x04\xa9\xff\xe7\x04\xab\xff\xe7\x00\x05\x00\
\xca\xff\xea\x00\xed\xff\xee\x00\xf6\xff\xab\x01\x3a\xff\xec\x01\
\x6d\xff\xec\x00\x01\x00\xf6\xff\xd5\x00\x01\x00\xca\x00\x0b\x00\
\xbe\x00\x06\x00\x0c\x00\x0b\x00\x0c\x00\x47\xff\xe8\x00\x48\xff\
\xe8\x00\x49\xff\xe8\x00\x4a\x00\x0c\x00\x4b\xff\xe8\x00\x53\xff\
\xea\x00\x55\xff\xe8\x00\x5a\x00\x0b\x00\x5d\x00\x0b\x00\x94\xff\
\xe8\x00\x99\xff\xe8\x00\xbb\xff\xe8\x00\xbd\x00\x0b\x00\xbe\xff\
\xed\x00\xc6\x00\x0b\x00\xc8\xff\xe8\x00\xc9\xff\xe8\x00\xca\x00\
\x0c\x00\xf7\xff\xe8\x01\x03\xff\xe8\x01\x18\xff\xea\x01\x1a\x00\
\x0b\x01\x1e\xff\xe8\x01\x22\xff\xe8\x01\x42\xff\xe8\x01\x60\xff\
\xe8\x01\x61\xff\xe8\x01\x6b\xff\xe8\x01\x84\x00\x0c\x01\x85\x00\
\x0c\x01\x87\x00\x0c\x01\x88\x00\x0c\x01\x89\x00\x0c\x01\xd3\x00\
\x0d\x01\xd6\x00\x0d\x01\xd8\x00\x0e\x01\xd9\xff\xf5\x01\xdb\xff\
\xec\x01\xdd\xff\xed\x01\xe5\xff\xec\x01\xeb\xff\xbf\x01\xec\xff\
\xed\x01\xed\xff\xbf\x01\xf4\x00\x0e\x01\xf5\xff\xed\x01\xf8\x00\
\x0e\x02\x10\x00\x0e\x02\x11\xff\xed\x02\x12\x00\x0d\x02\x14\x00\
\x0e\x02\x1a\xff\xed\x02\x31\xff\xee\x02\x33\xff\xbf\x02\xa1\xff\
\xe8\x02\xa2\xff\xe8\x02\xa3\xff\xe8\x02\xa4\xff\xe8\x02\xa5\xff\
\xe8\x02\xab\xff\xea\x02\xac\xff\xea\x02\xad\xff\xea\x02\xae\xff\
\xea\x02\xaf\xff\xea\x02\xb4\x00\x0b\x02\xb5\x00\x0b\x02\xbd\xff\
\xe8\x02\xbf\xff\xe8\x02\xc1\xff\xe8\x02\xc3\xff\xe8\x02\xc5\xff\
\xe8\x02\xc7\xff\xe8\x02\xc9\xff\xe8\x02\xcb\xff\xe8\x02\xcd\xff\
\xe8\x02\xcf\xff\xe8\x02\xd1\xff\xe8\x02\xd3\xff\xe8\x02\xd5\xff\
\xe8\x02\xd7\xff\xe8\x02\xf9\xff\xea\x02\xfb\xff\xea\x02\xfd\xff\
\xea\x03\x23\x00\x0b\x03\x32\xff\xbf\x03\x33\xff\xbf\x03\x34\xff\
\xbf\x03\x35\xff\xbf\x03\x36\xff\xbf\x03\x37\xff\xbf\x03\x38\xff\
\xbf\x03\x39\xff\xed\x03\x43\xff\xed\x03\x44\xff\xed\x03\x45\xff\
\xed\x03\x46\xff\xed\x03\x47\xff\xed\x03\x4c\x00\x0d\x03\x4d\xff\
\xbf\x03\x4e\xff\xbf\x03\x4f\xff\xbf\x03\x50\xff\xed\x03\x51\xff\
\xed\x03\x52\xff\xed\x03\x53\xff\xed\x03\x5a\xff\xed\x03\x5b\xff\
\xed\x03\x5c\xff\xed\x03\x5d\xff\xed\x03\x6d\xff\xed\x03\x6e\xff\
\xed\x03\x6f\xff\xed\x03\x73\xff\xf5\x03\x74\xff\xf5\x03\x75\xff\
\xf5\x03\x76\xff\xf5\x03\x78\x00\x0e\x03\x81\x00\x0d\x03\x82\x00\
\x0d\x03\x9e\xff\xe8\x03\xa4\xff\xea\x03\xa6\x00\x0b\x03\xaa\xff\
\xea\x03\xc4\xff\xe8\x03\xc6\xff\xea\x03\xc8\xff\xe8\x03\xc9\x00\
\x0b\x03\xcb\xff\xe8\x03\xd2\x00\x0b\x03\xda\x00\x0b\x03\xdb\x00\
\x0c\x03\xdc\x00\x0c\x03\xdf\x00\x0c\x03\xe6\xff\xe8\x03\xeb\x00\
\x0b\x03\xec\xff\xe8\x03\xf1\xff\xe8\x03\xf3\x00\x0b\x03\xff\xff\
\xe8\x04\x01\xff\xe8\x04\x02\xff\xe8\x04\x0c\xff\xea\x04\x0e\xff\
\xe8\x04\x10\xff\xea\x04\x14\x00\x0b\x04\x16\x00\x0b\x04\x18\x00\
\x0b\x04\x1d\xff\xe8\x04\x37\xff\xe8\x04\x39\xff\xe8\x04\x3b\xff\
\xe8\x04\x3d\xff\xe8\x04\x3f\xff\xe8\x04\x41\xff\xe8\x04\x43\xff\
\xe8\x04\x45\xff\xe8\x04\x4b\xff\xea\x04\x4d\xff\xea\x04\x4f\xff\
\xea\x04\x51\xff\xea\x04\x53\xff\xea\x04\x55\xff\xea\x04\x57\xff\
\xea\x04\x59\xff\xe8\x04\x5b\xff\xe8\x04\x5d\xff\xe8\x04\x5f\xff\
\xea\x04\x61\xff\xe8\x04\x71\x00\x0b\x04\x73\x00\x0b\x04\x75\x00\
\x0b\x04\x9c\xff\xe8\x04\xa0\xff\xea\x04\xa9\xff\xe8\x04\xab\xff\
\xe8\x04\xc3\x00\x0b\x04\xc5\x00\x0b\x04\xcb\xff\xbf\x04\xcf\xff\
\xed\x04\xd0\x00\x0d\x04\xd2\xff\xbf\x04\xde\x00\x0d\x04\xe1\x00\
\x0d\x04\xea\xff\xbf\x04\xf1\xff\xed\x04\xf4\xff\xed\x04\xf5\x00\
\x0e\x04\xf9\xff\xed\x04\xfa\x00\x0d\x00\x01\x00\xf6\xff\xd8\x00\
\x0e\x00\x5c\xff\xed\x00\x5e\xff\xed\x00\xee\xff\xed\x00\xf6\xff\
\xaa\x01\x34\xff\xed\x01\x44\xff\xed\x01\x5e\xff\xed\x03\x26\xff\
\xed\x03\x28\xff\xed\x03\x2a\xff\xed\x03\xca\xff\xed\x03\xf6\xff\
\xed\x04\x04\xff\xed\x04\xc9\xff\xed\x00\x0d\x00\x5c\xff\xf2\x00\
\x5e\xff\xf2\x00\xee\xff\xf2\x01\x34\xff\xf2\x01\x44\xff\xf2\x01\
\x5e\xff\xf2\x03\x26\xff\xf2\x03\x28\xff\xf2\x03\x2a\xff\xf2\x03\
\xca\xff\xf2\x03\xf6\xff\xf2\x04\x04\xff\xf2\x04\xc9\xff\xf2\x00\
\x22\x00\x5a\xff\xf4\x00\x5c\xff\xf2\x00\x5d\xff\xf4\x00\x5e\xff\
\xf3\x00\xbd\xff\xf4\x00\xee\xff\xf2\x01\x1a\xff\xf4\x01\x34\xff\
\xf2\x01\x44\xff\xf2\x01\x5e\xff\xf2\x02\xb4\xff\xf4\x02\xb5\xff\
\xf4\x03\x23\xff\xf4\x03\x26\xff\xf3\x03\x28\xff\xf3\x03\x2a\xff\
\xf3\x03\xa6\xff\xf4\x03\xc9\xff\xf4\x03\xca\xff\xf2\x03\xd2\xff\
\xf4\x03\xda\xff\xf4\x03\xeb\xff\xf4\x03\xf3\xff\xf4\x03\xf6\xff\
\xf2\x04\x04\xff\xf2\x04\x14\xff\xf4\x04\x16\xff\xf4\x04\x18\xff\
\xf4\x04\x71\xff\xf4\x04\x73\xff\xf4\x04\x75\xff\xf4\x04\xc3\xff\
\xf4\x04\xc5\xff\xf4\x04\xc9\xff\xf3\x00\x8c\x00\x06\xff\xca\x00\
\x0b\xff\xca\x00\x38\xff\xd2\x00\x3a\xff\xd4\x00\x3c\xff\xf4\x00\
\x3d\xff\xd3\x00\x51\xff\xd1\x00\x52\xff\xd1\x00\x54\xff\xd1\x00\
\x5a\xff\xe6\x00\x5c\xff\xef\x00\x5d\xff\xe6\x00\xbd\xff\xe6\x00\
\xc1\xff\xd1\x00\xd2\xff\xd2\x00\xd6\xff\xd2\x00\xda\xff\xf4\x00\
\xde\xff\xed\x00\xe1\xff\xe1\x00\xe6\xff\xd4\x00\xec\xff\xd1\x00\
\xee\xff\xef\x00\xf0\xff\xd1\x00\xf1\xff\xd1\x00\xf3\xff\xd1\x00\
\xf4\xff\xd1\x00\xf5\xff\xd1\x00\xf6\xff\xc9\x00\xf8\xff\xd1\x00\
\xfa\xff\xd1\x00\xfb\xff\xd1\x00\xfe\xff\xd1\x01\x00\xff\xd1\x01\
\x05\xff\xd1\x01\x09\xff\xe5\x01\x19\xff\xd4\x01\x1a\xff\xe6\x01\
\x20\xff\xe3\x01\x2b\xff\xd1\x01\x33\xff\xf4\x01\x34\xff\xef\x01\
\x36\xff\xd1\x01\x39\xff\xd2\x01\x3a\xff\xc4\x01\x3c\xff\xd1\x01\
\x3e\xff\xd1\x01\x43\xff\xf4\x01\x44\xff\xef\x01\x45\xff\xd2\x01\
\x47\xff\xe1\x01\x49\xff\xe1\x01\x53\xff\xd1\x01\x55\xff\xd1\x01\
\x57\xff\xd1\x01\x5c\xff\xd1\x01\x5d\xff\xf4\x01\x5e\xff\xef\x01\
\x62\xff\xd4\x01\x63\xff\xf5\x01\x64\xff\xe7\x01\x6c\xff\xd2\x01\
\x6d\xff\xc9\x01\x84\xff\xca\x01\x85\xff\xca\x01\x87\xff\xca\x01\
\x88\xff\xca\x01\x89\xff\xca\x02\x99\xff\xd3\x02\xaa\xff\xd1\x02\
\xb4\xff\xe6\x02\xb5\xff\xe6\x02\xf2\xff\xd1\x02\xf4\xff\xd1\x02\
\xf6\xff\xd1\x02\xf7\xff\xd1\x03\x0e\xff\xd2\x03\x10\xff\xd2\x03\
\x12\xff\xd2\x03\x22\xff\xd3\x03\x23\xff\xe6\x03\x24\xff\xd3\x03\
\x8b\xff\xd3\x03\x9a\xff\xd3\x03\x9b\xff\xf4\x03\x9d\xff\xd3\x03\
\xa0\xff\xd1\x03\xa6\xff\xe6\x03\xb5\xff\xed\x03\xc1\xff\xd2\x03\
\xc2\xff\xf4\x03\xc5\xff\xd1\x03\xc7\xff\xd1\x03\xc9\xff\xe6\x03\
\xca\xff\xef\x03\xcc\xff\xd1\x03\xd1\xff\xd1\x03\xd2\xff\xe6\x03\
\xd9\xff\xd3\x03\xda\xff\xe6\x03\xdb\xff\xca\x03\xdc\xff\xca\x03\
\xdf\xff\xca\x03\xe1\xff\xd1\x03\xe7\xff\xd1\x03\xea\xff\xd4\x03\
\xeb\xff\xe6\x03\xf2\xff\xd3\x03\xf3\xff\xe6\x03\xf5\xff\xf4\x03\
\xf6\xff\xef\x04\x03\xff\xf4\x04\x04\xff\xef\x04\x08\xff\xd1\x04\
\x0a\xff\xd1\x04\x13\xff\xed\x04\x14\xff\xe6\x04\x15\xff\xed\x04\
\x16\xff\xe6\x04\x17\xff\xed\x04\x18\xff\xe6\x04\x19\xff\xe1\x04\
\x1c\xff\xd1\x04\x70\xff\xd3\x04\x71\xff\xe6\x04\x72\xff\xd3\x04\
\x73\xff\xe6\x04\x74\xff\xd3\x04\x75\xff\xe6\x04\x77\xff\xd2\x04\
\x79\xff\xe1\x04\x7c\xff\xd1\x04\x86\xff\xd3\x04\x98\xff\xd1\x04\
\xb5\xff\xd1\x04\xb7\xff\xd1\x04\xbf\xff\xd2\x04\xc2\xff\xd4\x04\
\xc3\xff\xe6\x04\xc4\xff\xd4\x04\xc5\xff\xe6\x00\x28\x00\x38\xff\
\xbe\x00\x5a\xff\xef\x00\x5d\xff\xef\x00\xbd\xff\xef\x00\xd2\xff\
\xbe\x00\xd6\xff\xbe\x00\xe6\xff\xc9\x00\xf6\xff\xdf\x01\x09\xff\
\xed\x01\x1a\xff\xef\x01\x20\xff\xeb\x01\x39\xff\xbe\x01\x3a\xff\
\xdf\x01\x45\xff\xbe\x01\x4c\xff\xe9\x01\x63\xff\xf5\x01\x6d\xff\
\xe0\x02\xb4\xff\xef\x02\xb5\xff\xef\x03\x0e\xff\xbe\x03\x10\xff\
\xbe\x03\x12\xff\xbe\x03\x23\xff\xef\x03\xa6\xff\xef\x03\xc1\xff\
\xbe\x03\xc9\xff\xef\x03\xd2\xff\xef\x03\xda\xff\xef\x03\xeb\xff\
\xef\x03\xf3\xff\xef\x04\x14\xff\xef\x04\x16\xff\xef\x04\x18\xff\
\xef\x04\x71\xff\xef\x04\x73\xff\xef\x04\x75\xff\xef\x04\x77\xff\
\xbe\x04\xbf\xff\xbe\x04\xc3\xff\xef\x04\xc5\xff\xef\x00\x3f\x00\
\x38\xff\xe6\x00\x3a\xff\xe7\x00\x3c\xff\xf2\x00\x3d\xff\xe7\x00\
\x5c\xff\xf1\x00\xd2\xff\xe6\x00\xd6\xff\xe6\x00\xda\xff\xf2\x00\
\xde\xff\xee\x00\xe1\xff\xe8\x00\xe6\xff\xe6\x00\xee\xff\xf1\x00\
\xf6\xff\xd0\x01\x19\xff\xe7\x01\x33\xff\xf2\x01\x34\xff\xf1\x01\
\x39\xff\xe6\x01\x3a\xff\xce\x01\x43\xff\xf2\x01\x44\xff\xf1\x01\
\x45\xff\xe6\x01\x47\xff\xe8\x01\x49\xff\xe8\x01\x5d\xff\xf2\x01\
\x5e\xff\xf1\x01\x62\xff\xe7\x01\x64\xff\xed\x01\x6c\xff\xe6\x01\
\x6d\xff\xd0\x02\x99\xff\xe7\x03\x0e\xff\xe6\x03\x10\xff\xe6\x03\
\x12\xff\xe6\x03\x22\xff\xe7\x03\x24\xff\xe7\x03\x8b\xff\xe7\x03\
\x9a\xff\xe7\x03\x9b\xff\xf2\x03\x9d\xff\xe7\x03\xb5\xff\xee\x03\
\xc1\xff\xe6\x03\xc2\xff\xf2\x03\xca\xff\xf1\x03\xd9\xff\xe7\x03\
\xea\xff\xe7\x03\xf2\xff\xe7\x03\xf5\xff\xf2\x03\xf6\xff\xf1\x04\
\x03\xff\xf2\x04\x04\xff\xf1\x04\x13\xff\xee\x04\x15\xff\xee\x04\
\x17\xff\xee\x04\x19\xff\xe8\x04\x70\xff\xe7\x04\x72\xff\xe7\x04\
\x74\xff\xe7\x04\x77\xff\xe6\x04\x79\xff\xe8\x04\x86\xff\xe7\x04\
\xbf\xff\xe6\x04\xc2\xff\xe7\x04\xc4\xff\xe7\x00\x98\x00\x25\x00\
\x10\x00\x27\xff\xe8\x00\x2b\xff\xe8\x00\x33\xff\xe8\x00\x35\xff\
\xe8\x00\x38\xff\xe0\x00\x3a\xff\xe0\x00\x3d\xff\xdf\x00\x83\xff\
\xe8\x00\x93\xff\xe8\x00\x98\xff\xe8\x00\xb2\x00\x10\x00\xb3\xff\
\xe8\x00\xb4\x00\x10\x00\xd2\xff\xe0\x00\xd3\xff\xe8\x00\xd4\x00\
\x10\x00\xd6\xff\xe0\x00\xd9\x00\x14\x00\xdd\x00\x10\x00\xe1\xff\
\xe1\x00\xe6\xff\xe0\x00\xed\x00\x13\x00\xf2\x00\x10\x00\xf9\xff\
\xe0\x01\x04\x00\x10\x01\x08\xff\xe8\x01\x0d\x00\x10\x01\x17\xff\
\xe8\x01\x19\xff\xe0\x01\x1b\xff\xe8\x01\x1d\xff\xe8\x01\x1f\xff\
\xe8\x01\x21\xff\xe8\x01\x39\xff\xe0\x01\x41\xff\xe8\x01\x45\xff\
\xe0\x01\x47\xff\xe1\x01\x48\xff\xe0\x01\x49\xff\xe1\x01\x4a\xff\
\xe0\x01\x4d\xff\xe1\x01\x50\x00\x10\x01\x51\x00\x10\x01\x58\xff\
\xe9\x01\x62\xff\xdf\x01\x64\xff\xde\x01\x66\x00\x10\x01\x6a\xff\
\xe8\x01\x6c\xff\xdf\x01\x6e\xff\xf2\x01\x6f\x00\x10\x01\x70\x00\
\x10\x02\x45\xff\xe8\x02\x46\xff\xe8\x02\x48\xff\xe8\x02\x49\xff\
\xe8\x02\x7f\x00\x10\x02\x80\x00\x10\x02\x81\x00\x10\x02\x82\x00\
\x10\x02\x83\x00\x10\x02\x84\x00\x10\x02\x85\x00\x10\x02\x86\xff\
\xe8\x02\x90\xff\xe8\x02\x91\xff\xe8\x02\x92\xff\xe8\x02\x93\xff\
\xe8\x02\x94\xff\xe8\x02\x99\xff\xdf\x02\xb6\x00\x10\x02\xb8\x00\
\x10\x02\xba\x00\x10\x02\xbc\xff\xe8\x02\xbe\xff\xe8\x02\xc0\xff\
\xe8\x02\xc2\xff\xe8\x02\xd0\xff\xe8\x02\xd2\xff\xe8\x02\xd4\xff\
\xe8\x02\xd6\xff\xe8\x02\xf8\xff\xe8\x02\xfa\xff\xe8\x02\xfc\xff\
\xe8\x03\x0e\xff\xe0\x03\x10\xff\xe0\x03\x12\xff\xe0\x03\x22\xff\
\xdf\x03\x24\xff\xdf\x03\x2d\xff\xe8\x03\x86\x00\x10\x03\x8a\xff\
\xe8\x03\x8b\xff\xdf\x03\x8e\x00\x10\x03\x97\xff\xe8\x03\x9a\xff\
\xdf\x03\x9d\xff\xdf\x03\xb6\x00\x10\x03\xbd\xff\xe8\x03\xc0\xff\
\xe8\x03\xc1\xff\xe0\x03\xd9\xff\xdf\x03\xe2\x00\x10\x03\xea\xff\
\xe0\x03\xed\xff\xe8\x03\xf0\xff\xe8\x03\xf2\xff\xdf\x03\xf8\x00\
\x10\x03\xfa\x00\x10\x04\x0b\xff\xe8\x04\x0d\xff\xe8\x04\x0f\xff\
\xe8\x04\x19\xff\xe1\x04\x1a\xff\xe0\x04\x1e\x00\x10\x04\x20\x00\
\x10\x04\x22\x00\x10\x04\x24\x00\x10\x04\x26\x00\x10\x04\x28\x00\
\x10\x04\x2a\x00\x10\x04\x2c\x00\x10\x04\x2e\x00\x10\x04\x30\x00\
\x10\x04\x32\x00\x10\x04\x34\x00\x10\x04\x4a\xff\xe8\x04\x4c\xff\
\xe8\x04\x4e\xff\xe8\x04\x50\xff\xe8\x04\x52\xff\xe8\x04\x54\xff\
\xe8\x04\x56\xff\xe8\x04\x58\xff\xe8\x04\x5a\xff\xe8\x04\x5c\xff\
\xe8\x04\x5e\xff\xe8\x04\x60\xff\xe8\x04\x70\xff\xdf\x04\x72\xff\
\xdf\x04\x74\xff\xdf\x04\x77\xff\xe0\x04\x79\xff\xe1\x04\x7a\xff\
\xe0\x04\x86\xff\xdf\x04\x99\x00\x10\x04\x9f\xff\xe8\x04\xb8\xff\
\xe8\x04\xbf\xff\xe0\x04\xc2\xff\xe0\x04\xc4\xff\xe0\x00\x35\x00\
\x1b\xff\xf2\x00\x38\xff\xf1\x00\x3a\xff\xf4\x00\x3c\xff\xf4\x00\
\x3d\xff\xf0\x00\xd2\xff\xf1\x00\xd4\xff\xf5\x00\xd6\xff\xf1\x00\
\xda\xff\xf4\x00\xdd\xff\xf5\x00\xde\xff\xf3\x00\xe6\xff\xf1\x01\
\x19\xff\xf4\x01\x33\xff\xf4\x01\x39\xff\xf1\x01\x43\xff\xf4\x01\
\x45\xff\xf1\x01\x50\xff\xf5\x01\x5d\xff\xf4\x01\x62\xff\xf2\x01\
\x64\xff\xf2\x01\x66\xff\xf5\x01\x6c\xff\xf2\x01\x6f\xff\xf5\x02\
\x99\xff\xf0\x03\x0e\xff\xf1\x03\x10\xff\xf1\x03\x12\xff\xf1\x03\
\x22\xff\xf0\x03\x24\xff\xf0\x03\x8b\xff\xf0\x03\x9a\xff\xf0\x03\
\x9b\xff\xf4\x03\x9d\xff\xf0\x03\xb5\xff\xf3\x03\xc1\xff\xf1\x03\
\xc2\xff\xf4\x03\xd9\xff\xf0\x03\xea\xff\xf4\x03\xf2\xff\xf0\x03\
\xf5\xff\xf4\x04\x03\xff\xf4\x04\x13\xff\xf3\x04\x15\xff\xf3\x04\
\x17\xff\xf3\x04\x70\xff\xf0\x04\x72\xff\xf0\x04\x74\xff\xf0\x04\
\x77\xff\xf1\x04\x86\xff\xf0\x04\xbf\xff\xf1\x04\xc2\xff\xf4\x04\
\xc4\xff\xf4\x00\x6a\x00\x25\x00\x0f\x00\x38\xff\xe6\x00\x3a\xff\
\xe6\x00\x3c\x00\x0e\x00\x3d\xff\xe6\x00\xb2\x00\x0f\x00\xb4\x00\
\x0f\x00\xd2\xff\xe6\x00\xd4\x00\x0e\x00\xd6\xff\xe6\x00\xd9\x00\
\x13\x00\xda\x00\x0e\x00\xdd\x00\x0e\x00\xde\x00\x0b\x00\xe1\xff\
\xe5\x00\xe6\xff\xe6\x00\xe7\xff\xf4\x00\xed\x00\x12\x00\xf2\x00\
\x0f\x00\xf6\xff\xe7\x00\xf9\xff\xe8\x01\x04\x00\x0f\x01\x0d\x00\
\x0f\x01\x19\xff\xe6\x01\x33\x00\x0e\x01\x39\xff\xe6\x01\x3a\xff\
\xe7\x01\x43\x00\x0e\x01\x45\xff\xe6\x01\x47\xff\xe5\x01\x48\xff\
\xe8\x01\x49\xff\xe5\x01\x4a\xff\xe8\x01\x4c\xff\xe4\x01\x50\x00\
\x0e\x01\x51\x00\x0f\x01\x5d\x00\x0e\x01\x62\xff\xe6\x01\x64\xff\
\xe6\x01\x66\x00\x0e\x01\x6c\xff\xe6\x01\x6d\xff\xe7\x01\x6f\x00\
\x0e\x01\x70\x00\x0f\x02\x7f\x00\x0f\x02\x80\x00\x0f\x02\x81\x00\
\x0f\x02\x82\x00\x0f\x02\x83\x00\x0f\x02\x84\x00\x0f\x02\x85\x00\
\x0f\x02\x99\xff\xe6\x02\xb6\x00\x0f\x02\xb8\x00\x0f\x02\xba\x00\
\x0f\x03\x0e\xff\xe6\x03\x10\xff\xe6\x03\x12\xff\xe6\x03\x22\xff\
\xe6\x03\x24\xff\xe6\x03\x86\x00\x0f\x03\x8b\xff\xe6\x03\x8e\x00\
\x0f\x03\x9a\xff\xe6\x03\x9b\x00\x0e\x03\x9d\xff\xe6\x03\xb5\x00\
\x0b\x03\xb6\x00\x0f\x03\xc1\xff\xe6\x03\xc2\x00\x0e\x03\xd9\xff\
\xe6\x03\xe2\x00\x0f\x03\xea\xff\xe6\x03\xf2\xff\xe6\x03\xf5\x00\
\x0e\x03\xf8\x00\x0f\x03\xfa\x00\x0f\x04\x03\x00\x0e\x04\x13\x00\
\x0b\x04\x15\x00\x0b\x04\x17\x00\x0b\x04\x19\xff\xe5\x04\x1a\xff\
\xe8\x04\x1e\x00\x0f\x04\x20\x00\x0f\x04\x22\x00\x0f\x04\x24\x00\
\x0f\x04\x26\x00\x0f\x04\x28\x00\x0f\x04\x2a\x00\x0f\x04\x2c\x00\
\x0f\x04\x2e\x00\x0f\x04\x30\x00\x0f\x04\x32\x00\x0f\x04\x34\x00\
\x0f\x04\x70\xff\xe6\x04\x72\xff\xe6\x04\x74\xff\xe6\x04\x77\xff\
\xe6\x04\x79\xff\xe5\x04\x7a\xff\xe8\x04\x86\xff\xe6\x04\x99\x00\
\x0f\x04\xbf\xff\xe6\x04\xc2\xff\xe6\x04\xc4\xff\xe6\x00\x31\x00\
\x38\xff\xe3\x00\x3c\xff\xe5\x00\x3d\xff\xe4\x00\xd2\xff\xe3\x00\
\xd4\xff\xe5\x00\xd6\xff\xe3\x00\xd9\xff\xe2\x00\xda\xff\xe5\x00\
\xdd\xff\xe5\x00\xde\xff\xe9\x00\xf2\xff\xea\x01\x04\xff\xea\x01\
\x33\xff\xe5\x01\x39\xff\xe3\x01\x43\xff\xe5\x01\x45\xff\xe3\x01\
\x50\xff\xe5\x01\x51\xff\xea\x01\x5d\xff\xe5\x01\x66\xff\xe5\x01\
\x6c\xff\xe4\x01\x6f\xff\xe5\x01\x70\xff\xea\x02\x99\xff\xe4\x03\
\x0e\xff\xe3\x03\x10\xff\xe3\x03\x12\xff\xe3\x03\x22\xff\xe4\x03\
\x24\xff\xe4\x03\x8b\xff\xe4\x03\x9a\xff\xe4\x03\x9b\xff\xe5\x03\
\x9d\xff\xe4\x03\xb5\xff\xe9\x03\xc1\xff\xe3\x03\xc2\xff\xe5\x03\
\xd9\xff\xe4\x03\xf2\xff\xe4\x03\xf5\xff\xe5\x04\x03\xff\xe5\x04\
\x13\xff\xe9\x04\x15\xff\xe9\x04\x17\xff\xe9\x04\x70\xff\xe4\x04\
\x72\xff\xe4\x04\x74\xff\xe4\x04\x77\xff\xe3\x04\x86\xff\xe4\x04\
\xbf\xff\xe3\x00\x24\x00\x38\xff\xe2\x00\x3c\xff\xe4\x00\xd2\xff\
\xe2\x00\xd4\xff\xe4\x00\xd6\xff\xe2\x00\xd9\xff\xe1\x00\xda\xff\
\xe4\x00\xdd\xff\xe4\x00\xde\xff\xe9\x00\xed\xff\xe4\x00\xf2\xff\
\xeb\x01\x04\xff\xeb\x01\x33\xff\xe4\x01\x39\xff\xe2\x01\x43\xff\
\xe4\x01\x45\xff\xe2\x01\x50\xff\xe4\x01\x51\xff\xeb\x01\x5d\xff\
\xe4\x01\x66\xff\xe4\x01\x6f\xff\xe4\x01\x70\xff\xeb\x03\x0e\xff\
\xe2\x03\x10\xff\xe2\x03\x12\xff\xe2\x03\x9b\xff\xe4\x03\xb5\xff\
\xe9\x03\xc1\xff\xe2\x03\xc2\xff\xe4\x03\xf5\xff\xe4\x04\x03\xff\
\xe4\x04\x13\xff\xe9\x04\x15\xff\xe9\x04\x17\xff\xe9\x04\x77\xff\
\xe2\x04\xbf\xff\xe2\x00\x18\x00\x38\xff\xeb\x00\x3d\xff\xf3\x00\
\xd2\xff\xeb\x00\xd6\xff\xeb\x01\x39\xff\xeb\x01\x45\xff\xeb\x02\
\x99\xff\xf3\x03\x0e\xff\xeb\x03\x10\xff\xeb\x03\x12\xff\xeb\x03\
\x22\xff\xf3\x03\x24\xff\xf3\x03\x8b\xff\xf3\x03\x9a\xff\xf3\x03\
\x9d\xff\xf3\x03\xc1\xff\xeb\x03\xd9\xff\xf3\x03\xf2\xff\xf3\x04\
\x70\xff\xf3\x04\x72\xff\xf3\x04\x74\xff\xf3\x04\x77\xff\xeb\x04\
\x86\xff\xf3\x04\xbf\xff\xeb\x00\x39\x00\x51\xff\xef\x00\x52\xff\
\xef\x00\x54\xff\xef\x00\x5c\xff\xf0\x00\xc1\xff\xef\x00\xec\xff\
\xef\x00\xed\xff\xee\x00\xee\xff\xf0\x00\xf0\xff\xef\x00\xf1\xff\
\xef\x00\xf3\xff\xef\x00\xf4\xff\xef\x00\xf5\xff\xef\x00\xf6\xff\
\xee\x00\xf8\xff\xef\x00\xfa\xff\xef\x00\xfb\xff\xef\x00\xfe\xff\
\xef\x01\x00\xff\xef\x01\x05\xff\xef\x01\x09\xff\xf4\x01\x20\xff\
\xf1\x01\x2b\xff\xef\x01\x34\xff\xf0\x01\x36\xff\xef\x01\x3a\xff\
\xef\x01\x3c\xff\xef\x01\x3e\xff\xef\x01\x44\xff\xf0\x01\x53\xff\
\xef\x01\x55\xff\xef\x01\x57\xff\xef\x01\x5c\xff\xef\x01\x5e\xff\
\xf0\x01\x6d\xff\xef\x02\xaa\xff\xef\x02\xf2\xff\xef\x02\xf4\xff\
\xef\x02\xf6\xff\xef\x02\xf7\xff\xef\x03\xa0\xff\xef\x03\xc5\xff\
\xef\x03\xc7\xff\xef\x03\xca\xff\xf0\x03\xcc\xff\xef\x03\xd1\xff\
\xef\x03\xe1\xff\xef\x03\xe7\xff\xef\x03\xf6\xff\xf0\x04\x04\xff\
\xf0\x04\x08\xff\xef\x04\x0a\xff\xef\x04\x1c\xff\xef\x04\x7c\xff\
\xef\x04\x98\xff\xef\x04\xb5\xff\xef\x04\xb7\xff\xef\x00\x23\x00\
\x06\xff\xf2\x00\x0b\xff\xf2\x00\x5a\xff\xf5\x00\x5d\xff\xf5\x00\
\xbd\xff\xf5\x00\xf6\xff\xf4\x01\x09\xff\xf5\x01\x1a\xff\xf5\x01\
\x3a\xff\xf5\x01\x6d\xff\xf5\x01\x84\xff\xf2\x01\x85\xff\xf2\x01\
\x87\xff\xf2\x01\x88\xff\xf2\x01\x89\xff\xf2\x02\xb4\xff\xf5\x02\
\xb5\xff\xf5\x03\x23\xff\xf5\x03\xa6\xff\xf5\x03\xc9\xff\xf5\x03\
\xd2\xff\xf5\x03\xda\xff\xf5\x03\xdb\xff\xf2\x03\xdc\xff\xf2\x03\
\xdf\xff\xf2\x03\xeb\xff\xf5\x03\xf3\xff\xf5\x04\x14\xff\xf5\x04\
\x16\xff\xf5\x04\x18\xff\xf5\x04\x71\xff\xf5\x04\x73\xff\xf5\x04\
\x75\xff\xf5\x04\xc3\xff\xf5\x04\xc5\xff\xf5\x00\x0a\x00\xed\x00\
\x14\x00\xf6\xff\xed\x00\xf9\xff\xed\x00\xfc\xff\xe2\x01\x3a\xff\
\xed\x01\x48\xff\xed\x01\x4a\xff\xed\x01\x6d\xff\xed\x04\x1a\xff\
\xed\x04\x7a\xff\xed\x00\x76\x00\x47\xff\xf0\x00\x48\xff\xf0\x00\
\x49\xff\xf0\x00\x4b\xff\xf0\x00\x53\xff\xeb\x00\x55\xff\xf0\x00\
\x94\xff\xf0\x00\x99\xff\xf0\x00\xbb\xff\xf0\x00\xc8\xff\xf0\x00\
\xc9\xff\xf0\x00\xf7\xff\xf0\x01\x03\xff\xf0\x01\x18\xff\xeb\x01\
\x1c\xff\xeb\x01\x1e\xff\xf0\x01\x22\xff\xf0\x01\x42\xff\xf0\x01\
\x60\xff\xf0\x01\x61\xff\xf0\x01\x6b\xff\xf0\x01\xdb\xff\xeb\x01\
\xdd\xff\xeb\x01\xe5\xff\xe9\x01\xec\xff\xeb\x01\xf5\xff\xeb\x02\
\x11\xff\xeb\x02\x1a\xff\xeb\x02\x31\xff\xeb\x02\xa1\xff\xf0\x02\
\xa2\xff\xf0\x02\xa3\xff\xf0\x02\xa4\xff\xf0\x02\xa5\xff\xf0\x02\
\xab\xff\xeb\x02\xac\xff\xeb\x02\xad\xff\xeb\x02\xae\xff\xeb\x02\
\xaf\xff\xeb\x02\xbd\xff\xf0\x02\xbf\xff\xf0\x02\xc1\xff\xf0\x02\
\xc3\xff\xf0\x02\xc5\xff\xf0\x02\xc7\xff\xf0\x02\xc9\xff\xf0\x02\
\xcb\xff\xf0\x02\xcd\xff\xf0\x02\xcf\xff\xf0\x02\xd1\xff\xf0\x02\
\xd3\xff\xf0\x02\xd5\xff\xf0\x02\xd7\xff\xf0\x02\xf9\xff\xeb\x02\
\xfb\xff\xeb\x02\xfd\xff\xeb\x03\x39\xff\xeb\x03\x43\xff\xeb\x03\
\x44\xff\xeb\x03\x45\xff\xeb\x03\x46\xff\xeb\x03\x47\xff\xeb\x03\
\x50\xff\xeb\x03\x51\xff\xeb\x03\x52\xff\xeb\x03\x53\xff\xeb\x03\
\x5a\xff\xeb\x03\x5b\xff\xeb\x03\x5c\xff\xeb\x03\x5d\xff\xeb\x03\
\x6d\xff\xeb\x03\x6e\xff\xeb\x03\x6f\xff\xeb\x03\x9e\xff\xf0\x03\
\xa4\xff\xeb\x03\xaa\xff\xeb\x03\xc4\xff\xf0\x03\xc6\xff\xeb\x03\
\xc8\xff\xf0\x03\xcb\xff\xf0\x03\xe6\xff\xf0\x03\xec\xff\xf0\x03\
\xf1\xff\xf0\x03\xff\xff\xf0\x04\x01\xff\xf0\x04\x02\xff\xf0\x04\
\x0c\xff\xeb\x04\x0e\xff\xf0\x04\x10\xff\xeb\x04\x1d\xff\xf0\x04\
\x37\xff\xf0\x04\x39\xff\xf0\x04\x3b\xff\xf0\x04\x3d\xff\xf0\x04\
\x3f\xff\xf0\x04\x41\xff\xf0\x04\x43\xff\xf0\x04\x45\xff\xf0\x04\
\x4b\xff\xeb\x04\x4d\xff\xeb\x04\x4f\xff\xeb\x04\x51\xff\xeb\x04\
\x53\xff\xeb\x04\x55\xff\xeb\x04\x57\xff\xeb\x04\x59\xff\xf0\x04\
\x5b\xff\xf0\x04\x5d\xff\xf0\x04\x5f\xff\xeb\x04\x61\xff\xf0\x04\
\x9c\xff\xf0\x04\xa0\xff\xeb\x04\xa9\xff\xf0\x04\xab\xff\xf0\x04\
\xcf\xff\xeb\x04\xf1\xff\xeb\x04\xf4\xff\xeb\x04\xf9\xff\xeb\x00\
\xe3\x00\x06\x00\x0d\x00\x0b\x00\x0d\x00\x45\xff\xf0\x00\x47\xff\
\xb0\x00\x48\xff\xb0\x00\x49\xff\xb0\x00\x4a\x00\x0d\x00\x4b\xff\
\xb0\x00\x53\xff\xd6\x00\x55\xff\xb0\x00\x5a\x00\x0b\x00\x5d\x00\
\x0b\x00\x94\xff\xb0\x00\x99\xff\xb0\x00\xbb\xff\xb0\x00\xbd\x00\
\x0b\x00\xbe\xff\xb0\x00\xc7\xff\xab\x00\xc8\xff\xc0\x00\xc9\xff\
\xb0\x00\xcc\xff\xd5\x00\xed\xff\xaa\x00\xf2\xff\xaf\x00\xf7\xff\
\xb0\x01\x03\xff\xb0\x01\x04\xff\xaf\x01\x18\xff\xd6\x01\x1a\x00\
\x0b\x01\x1c\xff\xe2\x01\x1e\xff\xb0\x01\x20\x00\x0c\x01\x22\xff\
\xb0\x01\x42\xff\xb0\x01\x51\xff\xaf\x01\x60\xff\xb0\x01\x61\xff\
\xb0\x01\x63\x00\x0b\x01\x65\x00\x0b\x01\x6b\xff\xb0\x01\x70\xff\
\xaf\x01\x84\x00\x0d\x01\x85\x00\x0d\x01\x87\x00\x0d\x01\x88\x00\
\x0d\x01\x89\x00\x0d\x01\xd3\x00\x0d\x01\xd6\x00\x0d\x01\xd8\x00\
\x0e\x01\xd9\xff\xf5\x01\xdb\xff\xec\x01\xdd\xff\xed\x01\xe5\xff\
\xec\x01\xeb\xff\xbf\x01\xec\xff\xed\x01\xed\xff\xbf\x01\xf4\x00\
\x0e\x01\xf5\xff\xed\x01\xf8\x00\x0e\x02\x10\x00\x0e\x02\x11\xff\
\xed\x02\x12\x00\x0d\x02\x14\x00\x0e\x02\x1a\xff\xed\x02\x31\xff\
\xee\x02\x33\xff\xbf\x02\x9a\xff\xf0\x02\x9b\xff\xf0\x02\x9c\xff\
\xf0\x02\x9d\xff\xf0\x02\x9e\xff\xf0\x02\x9f\xff\xf0\x02\xa0\xff\
\xf0\x02\xa1\xff\xb0\x02\xa2\xff\xb0\x02\xa3\xff\xb0\x02\xa4\xff\
\xb0\x02\xa5\xff\xb0\x02\xab\xff\xd6\x02\xac\xff\xd6\x02\xad\xff\
\xd6\x02\xae\xff\xd6\x02\xaf\xff\xd6\x02\xb4\x00\x0b\x02\xb5\x00\
\x0b\x02\xb7\xff\xf0\x02\xb9\xff\xf0\x02\xbb\xff\xf0\x02\xbd\xff\
\xb0\x02\xbf\xff\xb0\x02\xc1\xff\xb0\x02\xc3\xff\xb0\x02\xc5\xff\
\xb0\x02\xc7\xff\xb0\x02\xc9\xff\xb0\x02\xcb\xff\xb0\x02\xcd\xff\
\xb0\x02\xcf\xff\xb0\x02\xd1\xff\xb0\x02\xd3\xff\xb0\x02\xd5\xff\
\xb0\x02\xd7\xff\xb0\x02\xf9\xff\xd6\x02\xfb\xff\xd6\x02\xfd\xff\
\xd6\x03\x23\x00\x0b\x03\x32\xff\xbf\x03\x33\xff\xbf\x03\x34\xff\
\xbf\x03\x35\xff\xbf\x03\x36\xff\xbf\x03\x37\xff\xbf\x03\x38\xff\
\xbf\x03\x39\xff\xed\x03\x43\xff\xed\x03\x44\xff\xed\x03\x45\xff\
\xed\x03\x46\xff\xed\x03\x47\xff\xed\x03\x4c\x00\x0d\x03\x4d\xff\
\xbf\x03\x4e\xff\xbf\x03\x4f\xff\xbf\x03\x50\xff\xed\x03\x51\xff\
\xed\x03\x52\xff\xed\x03\x53\xff\xed\x03\x5a\xff\xed\x03\x5b\xff\
\xed\x03\x5c\xff\xed\x03\x5d\xff\xed\x03\x6d\xff\xed\x03\x6e\xff\
\xed\x03\x6f\xff\xed\x03\x73\xff\xf5\x03\x74\xff\xf5\x03\x75\xff\
\xf5\x03\x76\xff\xf5\x03\x78\x00\x0e\x03\x81\x00\x0d\x03\x82\x00\
\x0d\x03\x9e\xff\xb0\x03\xa4\xff\xd6\x03\xa6\x00\x0b\x03\xaa\xff\
\xd6\x03\xc3\xff\xf0\x03\xc4\xff\xb0\x03\xc6\xff\xd6\x03\xc8\xff\
\xb0\x03\xc9\x00\x0b\x03\xcb\xff\xb0\x03\xd2\x00\x0b\x03\xda\x00\
\x0b\x03\xdb\x00\x0d\x03\xdc\x00\x0d\x03\xdf\x00\x0d\x03\xe3\xff\
\xf0\x03\xe6\xff\xb0\x03\xeb\x00\x0b\x03\xec\xff\xb0\x03\xf1\xff\
\xb0\x03\xf3\x00\x0b\x03\xf9\xff\xf0\x03\xfb\xff\xf0\x03\xff\xff\
\xb0\x04\x01\xff\xb0\x04\x02\xff\xb0\x04\x0c\xff\xd6\x04\x0e\xff\
\xb0\x04\x10\xff\xd6\x04\x14\x00\x0b\x04\x16\x00\x0b\x04\x18\x00\
\x0b\x04\x1d\xff\xb0\x04\x1f\xff\xf0\x04\x21\xff\xf0\x04\x23\xff\
\xf0\x04\x25\xff\xf0\x04\x27\xff\xf0\x04\x29\xff\xf0\x04\x2b\xff\
\xf0\x04\x2d\xff\xf0\x04\x2f\xff\xf0\x04\x31\xff\xf0\x04\x33\xff\
\xf0\x04\x35\xff\xf0\x04\x37\xff\xb0\x04\x39\xff\xb0\x04\x3b\xff\
\xb0\x04\x3d\xff\xb0\x04\x3f\xff\xb0\x04\x41\xff\xb0\x04\x43\xff\
\xb0\x04\x45\xff\xb0\x04\x4b\xff\xd6\x04\x4d\xff\xd6\x04\x4f\xff\
\xd6\x04\x51\xff\xd6\x04\x53\xff\xd6\x04\x55\xff\xd6\x04\x57\xff\
\xd6\x04\x59\xff\xb0\x04\x5b\xff\xb0\x04\x5d\xff\xb0\x04\x5f\xff\
\xd6\x04\x61\xff\xb0\x04\x71\x00\x0b\x04\x73\x00\x0b\x04\x75\x00\
\x0b\x04\x9a\xff\xf0\x04\x9c\xff\xb0\x04\xa0\xff\xd6\x04\xa9\xff\
\xb0\x04\xab\xff\xb0\x04\xc3\x00\x0b\x04\xc5\x00\x0b\x04\xcb\xff\
\xbf\x04\xcf\xff\xed\x04\xd0\x00\x0d\x04\xd2\xff\xbf\x04\xde\x00\
\x0d\x04\xe1\x00\x0d\x04\xea\xff\xbf\x04\xf1\xff\xed\x04\xf4\xff\
\xed\x04\xf5\x00\x0e\x04\xf9\xff\xed\x04\xfa\x00\x0d\x00\x0e\x00\
\xed\x00\x14\x00\xf2\x00\x10\x00\xf6\xff\xf0\x00\xf9\xff\xf0\x01\
\x01\x00\x0c\x01\x04\x00\x10\x01\x3a\xff\xf0\x01\x48\xff\xf0\x01\
\x4a\xff\xe6\x01\x51\x00\x10\x01\x6d\xff\xf0\x01\x70\x00\x10\x04\
\x1a\xff\xf0\x04\x7a\xff\xf0\x00\x4d\x00\x47\x00\x0c\x00\x48\x00\
\x0c\x00\x49\x00\x0c\x00\x4b\x00\x0c\x00\x55\x00\x0c\x00\x94\x00\
\x0c\x00\x99\x00\x0c\x00\xbb\x00\x0c\x00\xc8\x00\x0c\x00\xc9\x00\
\x0c\x00\xed\x00\x3a\x00\xf2\x00\x18\x00\xf6\xff\xe3\x00\xf7\x00\
\x0c\x00\xf9\xff\xf7\x01\x03\x00\x0c\x01\x04\x00\x18\x01\x1e\x00\
\x0c\x01\x22\x00\x0c\x01\x3a\xff\xe2\x01\x42\x00\x0c\x01\x48\xff\
\xf7\x01\x4a\xff\xe3\x01\x51\x00\x18\x01\x60\x00\x0c\x01\x61\x00\
\x0c\x01\x6b\x00\x0c\x01\x6d\xff\xe3\x01\x70\x00\x18\x02\xa1\x00\
\x0c\x02\xa2\x00\x0c\x02\xa3\x00\x0c\x02\xa4\x00\x0c\x02\xa5\x00\
\x0c\x02\xbd\x00\x0c\x02\xbf\x00\x0c\x02\xc1\x00\x0c\x02\xc3\x00\
\x0c\x02\xc5\x00\x0c\x02\xc7\x00\x0c\x02\xc9\x00\x0c\x02\xcb\x00\
\x0c\x02\xcd\x00\x0c\x02\xcf\x00\x0c\x02\xd1\x00\x0c\x02\xd3\x00\
\x0c\x02\xd5\x00\x0c\x02\xd7\x00\x0c\x03\x9e\x00\x0c\x03\xc4\x00\
\x0c\x03\xc8\x00\x0c\x03\xcb\x00\x0c\x03\xe6\x00\x0c\x03\xec\x00\
\x0c\x03\xf1\x00\x0c\x03\xff\x00\x0c\x04\x01\x00\x0c\x04\x02\x00\
\x0c\x04\x0e\x00\x0c\x04\x1a\xff\xf7\x04\x1d\x00\x0c\x04\x37\x00\
\x0c\x04\x39\x00\x0c\x04\x3b\x00\x0c\x04\x3d\x00\x0c\x04\x3f\x00\
\x0c\x04\x41\x00\x0c\x04\x43\x00\x0c\x04\x45\x00\x0c\x04\x59\x00\
\x0c\x04\x5b\x00\x0c\x04\x5d\x00\x0c\x04\x61\x00\x0c\x04\x7a\xff\
\xf7\x04\x9c\x00\x0c\x04\xa9\x00\x0c\x04\xab\x00\x0c\x00\x22\x00\
\x5a\xff\xf4\x00\x5c\xff\xf0\x00\x5d\xff\xf4\x00\xbd\xff\xf4\x00\
\xed\xff\xef\x00\xee\xff\xf0\x00\xf2\xff\xf3\x01\x04\xff\xf3\x01\
\x1a\xff\xf4\x01\x34\xff\xf0\x01\x44\xff\xf0\x01\x51\xff\xf3\x01\
\x5e\xff\xf0\x01\x70\xff\xf3\x02\xb4\xff\xf4\x02\xb5\xff\xf4\x03\
\x23\xff\xf4\x03\xa6\xff\xf4\x03\xc9\xff\xf4\x03\xca\xff\xf0\x03\
\xd2\xff\xf4\x03\xda\xff\xf4\x03\xeb\xff\xf4\x03\xf3\xff\xf4\x03\
\xf6\xff\xf0\x04\x04\xff\xf0\x04\x14\xff\xf4\x04\x16\xff\xf4\x04\
\x18\xff\xf4\x04\x71\xff\xf4\x04\x73\xff\xf4\x04\x75\xff\xf4\x04\
\xc3\xff\xf4\x04\xc5\xff\xf4\x00\x0a\x00\x06\xff\xd6\x00\x0b\xff\
\xd6\x01\x84\xff\xd6\x01\x85\xff\xd6\x01\x87\xff\xd6\x01\x88\xff\
\xd6\x01\x89\xff\xd6\x03\xdb\xff\xd6\x03\xdc\xff\xd6\x03\xdf\xff\
\xd6\x00\x08\x00\xf6\xff\xba\x01\x09\xff\xcf\x01\x20\xff\xdb\x01\
\x3a\xff\x50\x01\x4a\xff\x9d\x01\x63\xff\xf0\x01\x65\xff\xf2\x01\
\x6d\xff\x4c\x00\x0a\x00\x06\xff\xf5\x00\x0b\xff\xf5\x01\x84\xff\
\xf5\x01\x85\xff\xf5\x01\x87\xff\xf5\x01\x88\xff\xf5\x01\x89\xff\
\xf5\x03\xdb\xff\xf5\x03\xdc\xff\xf5\x03\xdf\xff\xf5\x00\x28\x00\
\x4c\x00\x20\x00\x4f\x00\x20\x00\x50\x00\x20\x00\x53\xff\x80\x00\
\x57\xff\x90\x00\x5b\x00\x0b\x01\x18\xff\x80\x01\xc1\xff\x90\x02\
\xab\xff\x80\x02\xac\xff\x80\x02\xad\xff\x80\x02\xae\xff\x80\x02\
\xaf\xff\x80\x02\xf9\xff\x80\x02\xfb\xff\x80\x02\xfd\xff\x80\x03\
\x05\xff\x90\x03\x07\xff\x90\x03\x09\xff\x90\x03\x0b\xff\x90\x03\
\x0d\xff\x90\x03\xa4\xff\x80\x03\xaa\xff\x80\x03\xc6\xff\x80\x03\
\xcd\xff\x90\x04\x0c\xff\x80\x04\x10\xff\x80\x04\x4b\xff\x80\x04\
\x4d\xff\x80\x04\x4f\xff\x80\x04\x51\xff\x80\x04\x53\xff\x80\x04\
\x55\xff\x80\x04\x57\xff\x80\x04\x5f\xff\x80\x04\xa0\xff\x80\x04\
\xad\x00\x20\x04\xaf\x00\x20\x04\xb1\x00\x20\x04\xbe\xff\x90\x00\
\x13\x01\xd3\xff\xee\x01\xd5\xff\xf5\x01\xd6\xff\xf1\x01\xd8\xff\
\xf2\x01\xf4\xff\xf2\x01\xf8\xff\xf2\x02\x10\xff\xf2\x02\x12\xff\
\xee\x02\x14\xff\xf2\x03\x4c\xff\xee\x03\x78\xff\xf2\x03\x80\xff\
\xf5\x03\x81\xff\xee\x03\x82\xff\xee\x04\xd0\xff\xee\x04\xde\xff\
\xee\x04\xe1\xff\xee\x04\xf5\xff\xf2\x04\xfa\xff\xee\x00\x13\x01\
\xd3\xff\xe5\x01\xd5\xff\xf1\x01\xd6\xff\xeb\x01\xd8\xff\xe9\x01\
\xf4\xff\xe9\x01\xf8\xff\xe9\x02\x10\xff\xe9\x02\x12\xff\xe5\x02\
\x14\xff\xe9\x03\x4c\xff\xe5\x03\x78\xff\xe9\x03\x80\xff\xf1\x03\
\x81\xff\xe5\x03\x82\xff\xe5\x04\xd0\xff\xe5\x04\xde\xff\xe5\x04\
\xe1\xff\xe5\x04\xf5\xff\xe9\x04\xfa\xff\xe5\x00\x03\x01\xd5\xff\
\xf5\x01\xd6\xff\xee\x03\x80\xff\xf5\x00\x02\x01\xd6\xff\xb7\x01\
\xdb\xff\xf0\x00\x01\x00\x5b\x00\x0b\x00\x04\x00\x0d\xff\xe6\x00\
\x41\xff\xf4\x00\x61\xff\xef\x01\x4d\xff\xed\x00\x17\x00\xb8\xff\
\xd4\x00\xbe\xff\xf0\x00\xc2\xff\xed\x00\xc4\x00\x11\x00\xca\xff\
\xe0\x00\xcc\xff\xe7\x00\xcd\xff\xe5\x00\xce\xff\xee\x00\xd9\x00\
\x12\x00\xea\xff\xe9\x00\xf6\xff\xd7\x01\x3a\xff\xd7\x01\x4a\xff\
\xd3\x01\x4c\xff\xd6\x01\x4d\xff\xc5\x01\x58\xff\xe7\x01\x62\x00\
\x0d\x01\x64\x00\x0c\x01\x6d\xff\xd6\x01\x6e\xff\xf2\x01\xdb\xff\
\xe9\x01\xe5\xff\xe7\x02\x31\xff\xe9\x00\x01\x01\x1c\xff\xf1\x00\
\x12\x00\xd9\xff\xae\x00\xe6\x00\x12\x00\xeb\xff\xe0\x00\xed\xff\
\xad\x00\xef\xff\xd6\x00\xfd\xff\xdf\x01\x01\xff\xd2\x01\x07\xff\
\xe0\x01\x1c\xff\xce\x01\x2e\xff\xdd\x01\x30\xff\xe2\x01\x38\xff\
\xe0\x01\x40\xff\xe0\x01\x4a\xff\xe9\x01\x4d\xff\xda\x01\x5f\xff\
\xbd\x01\x69\xff\xdf\x01\x6c\x00\x11\x00\x02\x00\xf6\xff\xf5\x01\
\x85\xff\xb0\x00\x02\x00\xed\xff\xc9\x01\x1c\xff\xee\x00\x09\x00\
\xe6\xff\xc3\x00\xf6\xff\xcf\x01\x3a\xff\xce\x01\x49\xff\xe7\x01\
\x4c\xff\xdf\x01\x62\xff\xd1\x01\x64\xff\xec\x01\x6c\xff\xa0\x01\
\x6d\xff\xd1\x00\x2f\x00\x56\xff\x6d\x00\x5b\xff\x8c\x00\x6d\xfd\
\xbf\x00\x7c\xfe\x7d\x00\x81\xfe\xbc\x00\x86\xff\x2b\x00\x89\xff\
\x4b\x00\xb8\xff\x61\x00\xbe\xff\x8f\x00\xbf\xff\x0f\x00\xc3\xfe\
\xe8\x00\xc6\xff\x1f\x00\xc7\xfe\xe5\x00\xca\xff\x46\x00\xcc\xfe\
\xed\x00\xcd\xfe\xfd\x00\xce\xfe\xd9\x00\xd9\xff\x52\x00\xe6\x00\
\x05\x00\xea\xff\xbd\x00\xeb\xff\x49\x00\xed\xfe\xfe\x00\xef\xff\
\x13\x00\xf6\xff\x68\x00\xfd\xff\x0e\x00\xff\xff\x13\x01\x01\xff\
\x07\x01\x07\xff\x0e\x01\x09\xff\x11\x01\x1c\xff\x3c\x01\x20\xff\
\xac\x01\x2e\xff\x15\x01\x30\xff\x3c\x01\x38\xff\x0e\x01\x3a\xff\
\x6a\x01\x40\xff\x49\x01\x4a\xff\x0c\x01\x4c\xff\x3f\x01\x4d\xfe\
\xf1\x01\x58\xff\xc0\x01\x5f\xfe\xef\x01\x63\xff\x31\x01\x65\xff\
\x5f\x01\x69\xff\x0a\x01\x6c\x00\x05\x01\x6d\xff\x30\x01\x6e\xff\
\xd5\x00\x1e\x00\x0a\xff\xe2\x00\x0d\x00\x14\x00\x0e\xff\xcf\x00\
\x41\x00\x12\x00\x4a\xff\xea\x00\x56\xff\xd8\x00\x58\xff\xea\x00\
\x61\x00\x13\x00\x6d\xff\xae\x00\x7c\xff\xcd\x00\x81\xff\xa0\x00\
\x86\xff\xc1\x00\x89\xff\xc0\x00\xb8\xff\xd0\x00\xbc\xff\xea\x00\
\xbe\xff\xee\x00\xbf\xff\xc6\x00\xc0\x00\x0d\x00\xc2\xff\xe9\x00\
\xc3\xff\xd6\x00\xc6\xff\xe8\x00\xc7\xff\xba\x00\xca\xff\xe9\x00\
\xcc\xff\xcb\x00\xcd\xff\xda\x00\xce\xff\xc7\x01\x8d\xff\xd3\x01\
\xdb\xff\xcb\x01\xe5\xff\xcb\x02\x31\xff\xcd\x00\x17\x00\x23\xff\
\xc3\x00\x58\xff\xef\x00\x5b\xff\xdf\x00\x9a\xff\xee\x00\xb8\xff\
\xe5\x00\xb9\xff\xd1\x00\xc4\x00\x11\x00\xca\xff\xc8\x00\xd9\x00\
\x13\x00\xe6\xff\xc5\x00\xf6\xff\xca\x01\x3a\xff\x9f\x01\x49\xff\
\x51\x01\x4a\xff\x7b\x01\x4c\xff\xca\x01\x4d\xff\xdd\x01\x58\xff\
\xf2\x01\x62\xff\x75\x01\x64\xff\xca\x01\x6c\xff\x4f\x01\x6d\xff\
\x8c\x01\xd6\xff\xcd\x01\xe5\xff\xf5\x00\x07\x00\xf6\xff\xf0\x01\
\x09\xff\xf1\x01\x20\xff\xf3\x01\x3a\xff\xf1\x01\x63\xff\xf3\x01\
\x65\xff\xe9\x01\x6d\xff\xd3\x00\x03\x00\x4a\xff\xee\x00\x5b\xff\
\xea\x01\xd6\xff\xf0\x00\x09\x00\xca\xff\xea\x00\xed\xff\xb8\x00\
\xf6\xff\xea\x01\x09\xff\xf0\x01\x20\xff\xf1\x01\x3a\xff\xeb\x01\
\x63\xff\xf5\x01\x6d\xff\xec\x01\x85\xff\xb0\x00\x02\x01\x11\x00\
\x0b\x01\x6c\xff\xe6\x00\x12\x00\x5b\xff\xc1\x00\xb8\xff\xc5\x00\
\xca\xff\xb4\x00\xea\xff\xd7\x00\xf6\xff\xb9\x01\x09\xff\xb2\x01\
\x1c\xff\xd2\x01\x20\xff\xc8\x01\x3a\xff\xa0\x01\x4a\xff\xc5\x01\
\x58\xff\xe4\x01\x63\xff\xcc\x01\x65\xff\xcc\x01\x6d\xff\xcb\x01\
\x6e\xff\xef\x01\xdb\xff\xe7\x01\xe5\xff\xe6\x02\x31\xff\xe8\x00\
\x05\x00\x5b\xff\xa4\x01\xd6\xff\x54\x01\xdb\xff\xf1\x01\xe5\xff\
\xf1\x02\x31\xff\xf3\x00\x08\x00\xd9\x00\x15\x00\xed\x00\x15\x01\
\x49\xff\xe4\x01\x4a\xff\xe5\x01\x4c\xff\xe4\x01\x62\xff\xe3\x01\
\x64\xff\xe2\x01\x6c\xff\xe4\x00\x02\x00\xf6\xff\xc0\x01\x85\xff\
\xb0\x00\x08\x00\x58\x00\x0e\x00\x81\xff\x9f\x00\xbe\xff\xf5\x00\
\xc4\xff\xde\x00\xc7\xff\xe5\x00\xd9\xff\xa8\x00\xed\xff\xca\x01\
\x5f\xff\xe3\x00\x05\x00\xca\xff\xea\x00\xed\xff\xee\x00\xf6\xff\
\xb0\x01\x3a\xff\xec\x01\x6d\xff\xec\x00\x03\x00\x4a\x00\x0f\x00\
\x58\x00\x32\x00\x5b\x00\x11\x00\x33\x00\x04\xff\xd8\x00\x56\xff\
\xb5\x00\x5b\xff\xc7\x00\x6d\xfe\xb8\x00\x7c\xff\x28\x00\x81\xff\
\x4d\x00\x86\xff\x8e\x00\x89\xff\xa1\x00\xb8\xff\xae\x00\xbe\xff\
\xc9\x00\xbf\xff\x7e\x00\xc3\xff\x67\x00\xc6\xff\x87\x00\xc7\xff\
\x65\x00\xca\xff\x9e\x00\xcc\xff\x6a\x00\xcd\xff\x73\x00\xce\xff\
\x5e\x00\xd9\xff\xa5\x00\xe6\x00\x0f\x00\xea\xff\xe4\x00\xeb\xff\
\xa0\x00\xed\xff\x74\x00\xef\xff\x80\x00\xf6\xff\xb2\x00\xfd\xff\
\x7d\x00\xff\xff\x80\x01\x01\xff\x79\x01\x07\xff\x7d\x01\x09\xff\
\x7f\x01\x1c\xff\x98\x01\x20\xff\xda\x01\x2e\xff\x81\x01\x30\xff\
\x98\x01\x38\xff\x7d\x01\x3a\xff\xb3\x01\x40\xff\xa0\x01\x4a\xff\
\x7c\x01\x4c\xff\x9a\x01\x4d\xff\x6c\x01\x58\xff\xe6\x01\x5f\xff\
\x6b\x01\x63\xff\x92\x01\x65\xff\xad\x01\x69\xff\x7b\x01\x6c\x00\
\x0f\x01\x6d\xff\x91\x01\x6e\xff\xf2\x01\xdb\xff\xb9\x01\xe5\xff\
\xb9\x02\x31\xff\xb9\x00\x07\x00\x0d\x00\x14\x00\x41\x00\x11\x00\
\x56\xff\xe2\x00\x61\x00\x13\x01\xdb\xff\xd9\x01\xe5\xff\xd9\x02\
\x31\xff\xd9\x00\x07\x00\x4a\x00\x0d\x00\xbe\xff\xf5\x00\xc6\x00\
\x0b\x00\xc7\xff\xea\x00\xca\x00\x0c\x00\xed\xff\xc8\x01\x1c\xff\
\xf1\x00\x07\x00\x0d\x00\x0f\x00\x41\x00\x0c\x00\x56\xff\xeb\x00\
\x61\x00\x0e\x01\xdb\xff\xe7\x01\xe5\xff\xe7\x02\x31\xff\xe9\x00\
\x06\x00\x5b\xff\xe5\x00\xb8\xff\xcb\x00\xcd\xff\xe4\x01\xdb\xff\
\xec\x01\xe5\xff\xeb\x02\x31\xff\xed\x00\x07\x00\x81\xff\xdf\x00\
\xb5\xff\xf3\x00\xb7\xff\xf0\x00\xc4\xff\xea\x00\xd9\xff\xdf\x00\
\xe6\xff\xe0\x01\x6c\xff\xe0\x00\x01\x01\xdb\xff\xeb\x00\x04\x01\
\xd6\xff\xc7\x01\xdb\xff\xf2\x01\xe5\xff\xf2\x02\x31\xff\xf2\x00\
\x01\x01\xd6\xff\xf1\x00\x01\x01\xd6\x00\x0d\x00\x02\x0b\x0c\x00\
\x04\x00\x00\x0e\xac\x17\x68\x00\x26\x00\x25\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\
\x00\xff\xe3\xff\xe4\x00\x00\x00\x00\x00\x00\x00\x00\x00\x11\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x11\x00\
\x00\x00\x11\x00\x00\x00\x00\x00\x00\x00\x00\xff\xe4\xff\xe5\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\xff\xeb\x00\x00\x00\x00\x00\x00\x00\x00\xff\xe5\xff\xd5\xff\
\xed\x00\x00\x00\x00\x00\x00\xff\xea\x00\x00\xff\xe9\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\xff\xe1\xff\x9a\x00\x00\xff\xf5\xff\
\xea\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\xff\xf5\x00\x00\xff\xf4\xff\xf5\x00\x00\x00\x00\xff\
\xf5\xff\xce\xff\xef\xff\x7f\xff\xa2\x00\x00\x00\x00\x00\x0c\x00\
\x00\x00\x00\xff\xf1\x00\x00\xff\x88\x00\x00\xff\xbb\xff\xc4\xff\
\xc7\x00\x11\x00\x00\x00\x12\x00\x00\xff\xa9\x00\x00\x00\x00\xff\
\xc9\xff\x8f\x00\x00\x00\x00\xff\xdd\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xf1\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\xff\xf0\x00\x00\x00\x00\x00\x00\x00\
\x00\xff\x78\xff\xeb\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\
\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x98\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\
\xed\x00\x00\x00\x00\xff\xed\xff\xef\x00\x00\x00\x00\x00\x00\xff\
\xe6\x00\x00\x00\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xf0\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\xff\xed\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xf1\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\
\xbd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\xff\xf5\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\
\xf1\x00\x00\x00\x00\x00\x00\x00\x00\xff\xe3\xff\xf1\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\xff\xf2\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xf3\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\xff\xf2\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\xff\xf3\x00\x00\x00\x00\xff\xf1\x00\
\x00\x00\x00\xff\xf1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0f\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x95\xff\xd7\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xea\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xeb\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xe6\xff\xe1\xff\
\xe9\xff\xe5\xff\xe9\x00\x00\x00\x00\xff\xe7\xff\xd8\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\xff\xc0\x00\x00\xff\xa3\x00\x00\x00\
\x00\x00\x00\x00\x00\xff\xbf\xff\xe3\xff\xd8\xff\xbf\xff\xd9\xff\
\xa2\xff\xb7\xff\xcb\xff\xec\xff\xa0\x00\x11\x00\x12\xff\xab\xff\
\xc6\xff\xe2\xff\xf0\x00\x0d\x00\x00\x00\x00\x00\x00\xff\xe9\x00\
\x11\x00\x00\xff\xf3\x00\x00\xff\x2d\x00\x00\xff\xef\x00\x12\x00\
\x00\xff\xcc\x00\x00\x00\x00\x00\x00\xff\xa0\xff\xf3\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xea\xff\xee\x00\
\x00\x00\x00\x00\x00\xff\xec\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x9d\xff\xe4\xff\x93\xff\
\x9d\xff\xa1\xff\xb1\xff\x8f\xff\xb9\xff\xb8\x00\x00\x00\x10\x00\
\x10\xff\xaf\xff\x8c\xff\xc4\xff\xf0\x00\x00\x00\x00\x00\x00\x00\
\x00\xff\xb3\x00\x0f\x00\x00\xff\xf1\xff\xcb\xff\x26\xff\x7e\xff\
\xed\x00\x10\xff\xbc\xff\x18\x00\x00\xff\x7c\x00\x00\xff\x10\xff\
\xf1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\xff\xf2\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\xff\xec\x00\x00\x00\x00\x00\x00\x00\x00\xff\
\xbf\xff\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xd8\x00\x00\xff\xf0\x00\
\x00\x00\x00\xff\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\xff\xeb\xff\xe6\x00\x00\xff\xeb\xff\
\xed\x00\x0d\x00\x00\xff\xec\xff\xe5\x00\x00\x00\x00\x00\x00\x00\
\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\xff\xe6\xff\xe7\x00\x00\xff\xeb\xff\xeb\x00\x00\x00\x00\xff\
\xe7\xff\xe1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x11\x00\x00\x00\x11\x00\x00\x00\x0e\x00\x00\xff\xd2\x00\
\x00\xff\xd1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\
\xe3\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\xff\xec\x00\x00\x00\x00\xff\xec\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\
\xed\x00\x00\x00\x00\xff\xec\x00\x00\x00\x00\xff\xd8\x00\x00\x00\
\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\xff\x85\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xf3\x00\x00\x00\x00\xff\
\xf3\x00\x00\xff\x76\xff\xf5\x00\x00\x00\x0f\x00\x00\x00\x00\x00\
\x00\xff\xc6\x00\x00\x00\x00\x00\x00\xff\xe1\x00\x00\xff\xe6\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xc9\xfe\xbc\xff\xd9\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x38\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xf5\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\
\xbf\x00\x00\x00\x00\xff\xd4\x00\x13\x00\x00\xff\xf2\xff\x7b\xff\
\xca\xfe\xed\xff\x11\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\xff\
\xda\x00\x00\xfe\xb0\x00\x00\xff\x71\xff\x3f\xff\x3b\x00\x00\x00\
\x00\x00\x00\x00\x00\xff\x51\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\xff\x91\x00\x00\xff\xc5\x00\x00\xff\xec\xff\xc3\x00\
\x00\xff\x88\xff\xce\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\xff\xb0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x95\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\xff\xec\x00\x00\x00\x00\xff\xec\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\xff\xd8\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xe1\x00\x00\x00\
\x00\xff\xe1\xff\xed\xff\xd5\xff\xdf\xff\xe7\x00\x00\x00\x00\x00\
\x0e\x00\x00\xff\xcb\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x85\x00\
\x00\x00\x00\x00\x00\x00\x00\xff\xc4\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xe5\xff\xc9\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xe8\x00\
\x00\x00\x00\x00\x00\x00\x00\xff\xf3\x00\x00\x00\x00\x00\x00\xff\
\xd4\xff\xf3\x00\x00\xff\xd2\xff\xe4\xff\xb5\xff\xd2\xff\xd9\xff\
\xf5\x00\x00\x00\x00\x00\x00\xff\xb4\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\xff\x1f\x00\x00\x00\x00\x00\x00\x00\x00\xff\xdb\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\xff\xeb\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\xff\xdd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x79\xff\xf5\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\xff\xd9\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\xfe\xf5\xff\xad\x00\x00\x00\x00\x00\x00\x00\x00\xff\xf0\x00\
\x00\x00\x00\xff\xc0\xff\xc9\x00\x00\x00\x00\x00\x00\xff\xf5\x00\
\x00\x00\x00\x00\x00\xff\xc8\x00\x00\x00\x00\xff\xe7\x00\x00\xff\
\xeb\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x56\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\xff\x44\xff\xbd\xff\x33\xff\x44\xff\x4b\xff\x3e\xff\x2c\x00\
\x00\xff\x72\x00\x00\x00\x07\x00\x07\x00\x00\xff\x27\xff\x86\xff\
\xd1\x00\x00\x00\x00\x00\x00\x00\x00\xff\x6a\x00\x05\x00\x00\x00\
\x00\xff\x92\xfe\x7a\xff\x0f\x00\x00\x00\x07\x00\x00\xfe\x62\x00\
\x00\xff\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x0d\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\xff\xef\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\xff\xec\x00\x00\x00\x00\x00\x00\x00\
\x00\xff\xb4\xff\xbb\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xd5\x00\x00\xff\
\xbd\xff\xe9\xff\x9a\xff\xbd\x00\x00\xff\xa5\xff\x91\x00\x00\x00\
\x00\x00\x00\x00\x12\x00\x12\x00\x00\xff\xd2\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\
\xca\xfe\x6d\xff\xbb\x00\x00\x00\x00\x00\x00\xff\x89\x00\x00\xff\
\xe9\x00\x00\x00\x00\x00\x00\x00\x02\x00\x9a\x00\x06\x00\x06\x00\
\x00\x00\x0b\x00\x0b\x00\x01\x00\x10\x00\x10\x00\x02\x00\x12\x00\
\x12\x00\x03\x00\x25\x00\x29\x00\x04\x00\x2c\x00\x34\x00\x09\x00\
\x38\x00\x3e\x00\x12\x00\x45\x00\x47\x00\x19\x00\x49\x00\x49\x00\
\x1c\x00\x4c\x00\x4c\x00\x1d\x00\x51\x00\x54\x00\x1e\x00\x56\x00\
\x56\x00\x22\x00\x5a\x00\x5a\x00\x23\x00\x5c\x00\x5e\x00\x24\x00\
\x8a\x00\x8a\x00\x27\x00\x96\x00\x96\x00\x28\x00\xb1\x00\xb4\x00\
\x29\x00\xbd\x00\xbd\x00\x2d\x00\xc1\x00\xc1\x00\x2e\x00\xc7\x00\
\xc7\x00\x2f\x00\xd4\x00\xd5\x00\x30\x00\xd7\x00\xd7\x00\x32\x00\
\xda\x00\xda\x00\x33\x00\xdc\x00\xde\x00\x34\x00\xe0\x00\xe6\x00\
\x37\x00\xec\x00\xec\x00\x3e\x00\xee\x00\xee\x00\x3f\x00\xf7\x00\
\xf7\x00\x40\x00\xfc\x00\xfc\x00\x41\x00\xfe\x00\xff\x00\x42\x01\
\x04\x01\x05\x00\x44\x01\x0a\x01\x0a\x00\x46\x01\x0d\x01\x0d\x00\
\x47\x01\x18\x01\x1a\x00\x48\x01\x2e\x01\x30\x00\x4b\x01\x33\x01\
\x35\x00\x4e\x01\x37\x01\x37\x00\x51\x01\x39\x01\x39\x00\x52\x01\
\x3b\x01\x3b\x00\x53\x01\x43\x01\x44\x00\x54\x01\x54\x01\x54\x00\
\x56\x01\x56\x01\x56\x00\x57\x01\x58\x01\x58\x00\x58\x01\x5c\x01\
\x5e\x00\x59\x01\x84\x01\x8a\x00\x5c\x01\x8e\x01\x8f\x00\x63\x01\
\xd8\x01\xd8\x00\x65\x01\xdd\x01\xdd\x00\x66\x01\xe0\x01\xe1\x00\
\x67\x01\xeb\x01\xed\x00\x69\x01\xff\x01\xff\x00\x6c\x02\x0e\x02\
\x10\x00\x6d\x02\x30\x02\x30\x00\x70\x02\x33\x02\x33\x00\x71\x02\
\x45\x02\x45\x00\x72\x02\x47\x02\x48\x00\x73\x02\x7a\x02\x7b\x00\
\x75\x02\x7d\x02\x7d\x00\x77\x02\x7f\x02\xa5\x00\x78\x02\xaa\x02\
\xaf\x00\x9f\x02\xb4\x02\xc4\x00\xa5\x02\xc6\x02\xcf\x00\xb6\x02\
\xd8\x02\xda\x00\xc0\x02\xdc\x02\xdc\x00\xc3\x02\xde\x02\xde\x00\
\xc4\x02\xe0\x02\xe0\x00\xc5\x02\xe2\x02\xe2\x00\xc6\x02\xe5\x02\
\xe5\x00\xc7\x02\xe7\x02\xe7\x00\xc8\x02\xe9\x02\xe9\x00\xc9\x02\
\xeb\x02\xeb\x00\xca\x02\xed\x02\xed\x00\xcb\x02\xef\x02\xef\x00\
\xcc\x02\xf1\x02\xfd\x00\xcd\x02\xff\x02\xff\x00\xda\x03\x01\x03\
\x01\x00\xdb\x03\x03\x03\x03\x00\xdc\x03\x0e\x03\x0e\x00\xdd\x03\
\x10\x03\x10\x00\xde\x03\x12\x03\x12\x00\xdf\x03\x14\x03\x14\x00\
\xe0\x03\x16\x03\x16\x00\xe1\x03\x18\x03\x18\x00\xe2\x03\x1a\x03\
\x1a\x00\xe3\x03\x1c\x03\x1c\x00\xe4\x03\x1e\x03\x1e\x00\xe5\x03\
\x20\x03\x20\x00\xe6\x03\x22\x03\x2a\x00\xe7\x03\x2f\x03\x38\x00\
\xf0\x03\x43\x03\x47\x00\xfa\x03\x4d\x03\x4f\x00\xff\x03\x54\x03\
\x54\x01\x02\x03\x65\x03\x69\x01\x03\x03\x6d\x03\x6f\x01\x08\x03\
\x78\x03\x78\x01\x0b\x03\x86\x03\x8b\x01\x0c\x03\x8e\x03\x9d\x01\
\x12\x03\xa0\x03\xa0\x01\x22\x03\xa4\x03\xa4\x01\x23\x03\xa6\x03\
\xa6\x01\x24\x03\xaa\x03\xaa\x01\x25\x03\xad\x03\xae\x01\x26\x03\
\xb0\x03\xb9\x01\x28\x03\xbb\x03\xbd\x01\x32\x03\xbf\x03\xc4\x01\
\x35\x03\xc6\x03\xcc\x01\x3b\x03\xd2\x03\xd3\x01\x42\x03\xd5\x03\
\xd5\x01\x44\x03\xd7\x03\xd7\x01\x45\x03\xd9\x03\xdc\x01\x46\x03\
\xdf\x03\xe4\x01\x4a\x03\xe6\x03\xe6\x01\x50\x03\xea\x03\xeb\x01\
\x51\x03\xf0\x03\xfb\x01\x53\x03\xfe\x03\xff\x01\x5f\x04\x01\x04\
\x04\x01\x61\x04\x0b\x04\x0c\x01\x65\x04\x10\x04\x10\x01\x67\x04\
\x12\x04\x18\x01\x68\x04\x1e\x04\x46\x01\x6f\x04\x48\x04\x48\x01\
\x98\x04\x4a\x04\x57\x01\x99\x04\x5f\x04\x5f\x01\xa7\x04\x62\x04\
\x62\x01\xa8\x04\x64\x04\x64\x01\xa9\x04\x70\x04\x75\x01\xaa\x04\
\x77\x04\x77\x01\xb0\x04\x7b\x04\x7c\x01\xb1\x04\x7f\x04\x7f\x01\
\xb3\x04\x81\x04\x82\x01\xb4\x04\x84\x04\x84\x01\xb6\x04\x86\x04\
\x86\x01\xb7\x04\x97\x04\x9b\x01\xb8\x04\x9d\x04\x9d\x01\xbd\x04\
\x9f\x04\xa0\x01\xbe\x04\xa2\x04\xa2\x01\xc0\x04\xa6\x04\xa8\x01\
\xc1\x04\xaa\x04\xaa\x01\xc4\x04\xac\x04\xae\x01\xc5\x04\xb0\x04\
\xb0\x01\xc8\x04\xb2\x04\xb2\x01\xc9\x04\xb4\x04\xba\x01\xca\x04\
\xbc\x04\xbc\x01\xd1\x04\xbf\x04\xbf\x01\xd2\x04\xc1\x04\xc6\x01\
\xd3\x04\xc8\x04\xcb\x01\xd9\x04\xcf\x04\xcf\x01\xdd\x04\xd2\x04\
\xd2\x01\xde\x04\xd8\x04\xd8\x01\xdf\x04\xdd\x04\xdd\x01\xe0\x04\
\xe8\x04\xe8\x01\xe1\x04\xea\x04\xea\x01\xe2\x04\xf1\x04\xf1\x01\
\xe3\x04\xf5\x04\xf5\x01\xe4\x00\x02\x01\x74\x00\x06\x00\x06\x00\
\x19\x00\x0b\x00\x0b\x00\x19\x00\x10\x00\x10\x00\x21\x00\x12\x00\
\x12\x00\x21\x00\x25\x00\x25\x00\x02\x00\x26\x00\x26\x00\x1c\x00\
\x27\x00\x27\x00\x13\x00\x28\x00\x28\x00\x01\x00\x29\x00\x29\x00\
\x05\x00\x2e\x00\x2e\x00\x0a\x00\x2f\x00\x2f\x00\x0b\x00\x30\x00\
\x30\x00\x18\x00\x33\x00\x33\x00\x01\x00\x34\x00\x34\x00\x16\x00\
\x38\x00\x38\x00\x0e\x00\x39\x00\x39\x00\x0a\x00\x3a\x00\x3a\x00\
\x1d\x00\x3b\x00\x3b\x00\x1b\x00\x3c\x00\x3c\x00\x12\x00\x3d\x00\
\x3d\x00\x0c\x00\x3e\x00\x3e\x00\x11\x00\x45\x00\x45\x00\x06\x00\
\x46\x00\x46\x00\x07\x00\x47\x00\x47\x00\x17\x00\x49\x00\x49\x00\
\x08\x00\x4c\x00\x4c\x00\x04\x00\x51\x00\x52\x00\x04\x00\x53\x00\
\x53\x00\x03\x00\x54\x00\x54\x00\x07\x00\x56\x00\x56\x00\x15\x00\
\x5a\x00\x5a\x00\x09\x00\x5c\x00\x5c\x00\x14\x00\x5d\x00\x5d\x00\
\x09\x00\x5e\x00\x5e\x00\x10\x00\x8a\x00\x8a\x00\x07\x00\x96\x00\
\x96\x00\x01\x00\xb1\x00\xb1\x00\x22\x00\xb2\x00\xb2\x00\x02\x00\
\xb3\x00\xb3\x00\x01\x00\xb4\x00\xb4\x00\x02\x00\xbd\x00\xbd\x00\
\x09\x00\xc1\x00\xc1\x00\x04\x00\xc7\x00\xc7\x00\x07\x00\xd4\x00\
\xd5\x00\x20\x00\xda\x00\xda\x00\x12\x00\xde\x00\xde\x00\x25\x00\
\xe4\x00\xe4\x00\x20\x00\xe6\x00\xe6\x00\x20\x00\xec\x00\xec\x00\
\x1a\x00\xee\x00\xee\x00\x14\x00\xf7\x00\xf7\x00\x07\x00\xfc\x00\
\xfc\x00\x1f\x00\xfe\x00\xfe\x00\x1f\x00\xff\x00\xff\x00\x07\x01\
\x04\x01\x05\x00\x1f\x01\x0a\x01\x0a\x00\x1f\x01\x0d\x01\x0d\x00\
\x02\x01\x18\x01\x18\x00\x03\x01\x19\x01\x19\x00\x1d\x01\x1a\x01\
\x1a\x00\x09\x01\x2e\x01\x2e\x00\x07\x01\x2f\x01\x2f\x00\x22\x01\
\x30\x01\x30\x00\x1a\x01\x33\x01\x33\x00\x12\x01\x34\x01\x34\x00\
\x14\x01\x35\x01\x35\x00\x0b\x01\x37\x01\x37\x00\x0b\x01\x39\x01\
\x39\x00\x0b\x01\x43\x01\x43\x00\x12\x01\x44\x01\x44\x00\x14\x01\
\x58\x01\x58\x00\x01\x01\x5c\x01\x5c\x00\x1a\x01\x5d\x01\x5d\x00\
\x12\x01\x5e\x01\x5e\x00\x14\x01\x84\x01\x85\x00\x19\x01\x86\x01\
\x86\x00\x21\x01\x87\x01\x89\x00\x19\x01\x8a\x01\x8a\x00\x21\x01\
\x8e\x01\x8f\x00\x21\x01\xd8\x01\xd8\x00\x23\x01\xdd\x01\xdd\x00\
\x0d\x01\xe0\x01\xe0\x00\x24\x01\xe1\x01\xe1\x00\x1e\x01\xeb\x01\
\xeb\x00\x0f\x01\xec\x01\xec\x00\x0d\x01\xed\x01\xed\x00\x0f\x01\
\xff\x01\xff\x00\x1e\x02\x0e\x02\x10\x00\x1e\x02\x30\x02\x30\x00\
\x0d\x02\x33\x02\x33\x00\x0f\x02\x45\x02\x45\x00\x13\x02\x47\x02\
\x48\x00\x01\x02\x7a\x02\x7b\x00\x01\x02\x7d\x02\x7d\x00\x0e\x02\
\x7f\x02\x85\x00\x02\x02\x86\x02\x86\x00\x13\x02\x87\x02\x8a\x00\
\x05\x02\x90\x02\x94\x00\x01\x02\x95\x02\x98\x00\x0a\x02\x99\x02\
\x99\x00\x0c\x02\x9a\x02\xa0\x00\x06\x02\xa1\x02\xa1\x00\x17\x02\
\xa2\x02\xa5\x00\x08\x02\xaa\x02\xaa\x00\x04\x02\xab\x02\xaf\x00\
\x03\x02\xb4\x02\xb5\x00\x09\x02\xb6\x02\xb6\x00\x02\x02\xb7\x02\
\xb7\x00\x06\x02\xb8\x02\xb8\x00\x02\x02\xb9\x02\xb9\x00\x06\x02\
\xba\x02\xba\x00\x02\x02\xbb\x02\xbb\x00\x06\x02\xbc\x02\xbc\x00\
\x13\x02\xbd\x02\xbd\x00\x17\x02\xbe\x02\xbe\x00\x13\x02\xbf\x02\
\xbf\x00\x17\x02\xc0\x02\xc0\x00\x13\x02\xc1\x02\xc1\x00\x17\x02\
\xc2\x02\xc2\x00\x13\x02\xc3\x02\xc3\x00\x17\x02\xc4\x02\xc4\x00\
\x01\x02\xc6\x02\xc6\x00\x05\x02\xc7\x02\xc7\x00\x08\x02\xc8\x02\
\xc8\x00\x05\x02\xc9\x02\xc9\x00\x08\x02\xca\x02\xca\x00\x05\x02\
\xcb\x02\xcb\x00\x08\x02\xcc\x02\xcc\x00\x05\x02\xcd\x02\xcd\x00\
\x08\x02\xce\x02\xce\x00\x05\x02\xcf\x02\xcf\x00\x08\x02\xd9\x02\
\xd9\x00\x04\x02\xe5\x02\xe5\x00\x0a\x02\xe7\x02\xe7\x00\x0b\x02\
\xe9\x02\xe9\x00\x18\x02\xeb\x02\xeb\x00\x18\x02\xed\x02\xed\x00\
\x18\x02\xef\x02\xef\x00\x18\x02\xf2\x02\xf2\x00\x04\x02\xf4\x02\
\xf4\x00\x04\x02\xf6\x02\xf7\x00\x04\x02\xf8\x02\xf8\x00\x01\x02\
\xf9\x02\xf9\x00\x03\x02\xfa\x02\xfa\x00\x01\x02\xfb\x02\xfb\x00\
\x03\x02\xfc\x02\xfc\x00\x01\x02\xfd\x02\xfd\x00\x03\x02\xff\x02\
\xff\x00\x15\x03\x01\x03\x01\x00\x15\x03\x03\x03\x03\x00\x15\x03\
\x0e\x03\x0e\x00\x0e\x03\x10\x03\x10\x00\x0e\x03\x12\x03\x12\x00\
\x0e\x03\x14\x03\x14\x00\x0a\x03\x16\x03\x16\x00\x0a\x03\x18\x03\
\x18\x00\x0a\x03\x1a\x03\x1a\x00\x0a\x03\x1c\x03\x1c\x00\x0a\x03\
\x1e\x03\x1e\x00\x0a\x03\x20\x03\x20\x00\x1b\x03\x22\x03\x22\x00\
\x0c\x03\x23\x03\x23\x00\x09\x03\x24\x03\x24\x00\x0c\x03\x25\x03\
\x25\x00\x11\x03\x26\x03\x26\x00\x10\x03\x27\x03\x27\x00\x11\x03\
\x28\x03\x28\x00\x10\x03\x29\x03\x29\x00\x11\x03\x2a\x03\x2a\x00\
\x10\x03\x2f\x03\x30\x00\x0d\x03\x31\x03\x31\x00\x23\x03\x32\x03\
\x38\x00\x0f\x03\x43\x03\x47\x00\x0d\x03\x4d\x03\x4f\x00\x0f\x03\
\x54\x03\x54\x00\x0d\x03\x65\x03\x65\x00\x1e\x03\x66\x03\x69\x00\
\x24\x03\x6d\x03\x6f\x00\x0d\x03\x78\x03\x78\x00\x23\x03\x86\x03\
\x86\x00\x02\x03\x87\x03\x87\x00\x05\x03\x8a\x03\x8a\x00\x01\x03\
\x8b\x03\x8b\x00\x0c\x03\x8e\x03\x8e\x00\x02\x03\x8f\x03\x8f\x00\
\x1c\x03\x90\x03\x90\x00\x05\x03\x91\x03\x91\x00\x11\x03\x94\x03\
\x94\x00\x0b\x03\x97\x03\x97\x00\x01\x03\x98\x03\x98\x00\x16\x03\
\x99\x03\x99\x00\x0e\x03\x9a\x03\x9a\x00\x0c\x03\x9b\x03\x9b\x00\
\x12\x03\x9d\x03\x9d\x00\x0c\x03\xa0\x03\xa0\x00\x04\x03\xa4\x03\
\xa4\x00\x03\x03\xa6\x03\xa6\x00\x09\x03\xaa\x03\xaa\x00\x03\x03\
\xad\x03\xad\x00\x05\x03\xae\x03\xae\x00\x22\x03\xb2\x03\xb2\x00\
\x0a\x03\xb3\x03\xb4\x00\x0b\x03\xb5\x03\xb5\x00\x25\x03\xb6\x03\
\xb6\x00\x02\x03\xb7\x03\xb7\x00\x1c\x03\xb8\x03\xb8\x00\x22\x03\
\xb9\x03\xb9\x00\x05\x03\xbd\x03\xbd\x00\x01\x03\xbf\x03\xbf\x00\
\x16\x03\xc0\x03\xc0\x00\x13\x03\xc1\x03\xc1\x00\x0e\x03\xc2\x03\
\xc2\x00\x12\x03\xc3\x03\xc3\x00\x06\x03\xc4\x03\xc4\x00\x08\x03\
\xc6\x03\xc6\x00\x03\x03\xc7\x03\xc7\x00\x07\x03\xc8\x03\xc8\x00\
\x17\x03\xc9\x03\xc9\x00\x09\x03\xca\x03\xca\x00\x14\x03\xcb\x03\
\xcb\x00\x08\x03\xcc\x03\xcc\x00\x1a\x03\xd2\x03\xd2\x00\x09\x03\
\xd3\x03\xd3\x00\x1b\x03\xd5\x03\xd5\x00\x1b\x03\xd7\x03\xd7\x00\
\x1b\x03\xd9\x03\xd9\x00\x0c\x03\xda\x03\xda\x00\x09\x03\xdb\x03\
\xdc\x00\x19\x03\xdf\x03\xdf\x00\x19\x03\xe1\x03\xe1\x00\x04\x03\
\xe2\x03\xe2\x00\x02\x03\xe3\x03\xe3\x00\x06\x03\xe4\x03\xe4\x00\
\x05\x03\xe6\x03\xe6\x00\x08\x03\xea\x03\xea\x00\x1d\x03\xeb\x03\
\xeb\x00\x09\x03\xf0\x03\xf0\x00\x13\x03\xf1\x03\xf1\x00\x17\x03\
\xf2\x03\xf2\x00\x0c\x03\xf3\x03\xf3\x00\x09\x03\xf5\x03\xf5\x00\
\x12\x03\xf6\x03\xf6\x00\x14\x03\xf8\x03\xf8\x00\x02\x03\xf9\x03\
\xf9\x00\x06\x03\xfa\x03\xfa\x00\x02\x03\xfb\x03\xfb\x00\x06\x03\
\xfe\x03\xfe\x00\x05\x03\xff\x03\xff\x00\x08\x04\x01\x04\x02\x00\
\x08\x04\x03\x04\x03\x00\x12\x04\x04\x04\x04\x00\x14\x04\x0b\x04\
\x0b\x00\x01\x04\x0c\x04\x0c\x00\x03\x04\x10\x04\x10\x00\x03\x04\
\x12\x04\x12\x00\x07\x04\x13\x04\x13\x00\x25\x04\x14\x04\x14\x00\
\x09\x04\x15\x04\x15\x00\x25\x04\x16\x04\x16\x00\x09\x04\x17\x04\
\x17\x00\x25\x04\x18\x04\x18\x00\x09\x04\x1e\x04\x1e\x00\x02\x04\
\x1f\x04\x1f\x00\x06\x04\x20\x04\x20\x00\x02\x04\x21\x04\x21\x00\
\x06\x04\x22\x04\x22\x00\x02\x04\x23\x04\x23\x00\x06\x04\x24\x04\
\x24\x00\x02\x04\x25\x04\x25\x00\x06\x04\x26\x04\x26\x00\x02\x04\
\x27\x04\x27\x00\x06\x04\x28\x04\x28\x00\x02\x04\x29\x04\x29\x00\
\x06\x04\x2a\x04\x2a\x00\x02\x04\x2b\x04\x2b\x00\x06\x04\x2c\x04\
\x2c\x00\x02\x04\x2d\x04\x2d\x00\x06\x04\x2e\x04\x2e\x00\x02\x04\
\x2f\x04\x2f\x00\x06\x04\x30\x04\x30\x00\x02\x04\x31\x04\x31\x00\
\x06\x04\x32\x04\x32\x00\x02\x04\x33\x04\x33\x00\x06\x04\x34\x04\
\x34\x00\x02\x04\x35\x04\x35\x00\x06\x04\x36\x04\x36\x00\x05\x04\
\x37\x04\x37\x00\x08\x04\x38\x04\x38\x00\x05\x04\x39\x04\x39\x00\
\x08\x04\x3a\x04\x3a\x00\x05\x04\x3b\x04\x3b\x00\x08\x04\x3c\x04\
\x3c\x00\x05\x04\x3d\x04\x3d\x00\x08\x04\x3e\x04\x3e\x00\x05\x04\
\x3f\x04\x3f\x00\x08\x04\x40\x04\x40\x00\x05\x04\x41\x04\x41\x00\
\x08\x04\x42\x04\x42\x00\x05\x04\x43\x04\x43\x00\x08\x04\x44\x04\
\x44\x00\x05\x04\x45\x04\x45\x00\x08\x04\x4a\x04\x4a\x00\x01\x04\
\x4b\x04\x4b\x00\x03\x04\x4c\x04\x4c\x00\x01\x04\x4d\x04\x4d\x00\
\x03\x04\x4e\x04\x4e\x00\x01\x04\x4f\x04\x4f\x00\x03\x04\x50\x04\
\x50\x00\x01\x04\x51\x04\x51\x00\x03\x04\x52\x04\x52\x00\x01\x04\
\x53\x04\x53\x00\x03\x04\x54\x04\x54\x00\x01\x04\x55\x04\x55\x00\
\x03\x04\x56\x04\x56\x00\x01\x04\x57\x04\x57\x00\x03\x04\x5f\x04\
\x5f\x00\x03\x04\x62\x04\x62\x00\x0a\x04\x64\x04\x64\x00\x0a\x04\
\x70\x04\x70\x00\x0c\x04\x71\x04\x71\x00\x09\x04\x72\x04\x72\x00\
\x0c\x04\x73\x04\x73\x00\x09\x04\x74\x04\x74\x00\x0c\x04\x75\x04\
\x75\x00\x09\x04\x77\x04\x77\x00\x0e\x04\x7b\x04\x7b\x00\x22\x04\
\x7c\x04\x7c\x00\x1a\x04\x7f\x04\x7f\x00\x04\x04\x81\x04\x81\x00\
\x20\x04\x82\x04\x82\x00\x22\x04\x84\x04\x84\x00\x0b\x04\x86\x04\
\x86\x00\x0c\x04\x98\x04\x98\x00\x04\x04\x99\x04\x99\x00\x02\x04\
\x9a\x04\x9a\x00\x06\x04\x9b\x04\x9b\x00\x05\x04\x9f\x04\x9f\x00\
\x01\x04\xa0\x04\xa0\x00\x03\x04\xa2\x04\xa2\x00\x15\x04\xa6\x04\
\xa6\x00\x1c\x04\xa7\x04\xa7\x00\x07\x04\xa8\x04\xa8\x00\x01\x04\
\xaa\x04\xaa\x00\x01\x04\xad\x04\xad\x00\x04\x04\xae\x04\xae\x00\
\x0b\x04\xb0\x04\xb0\x00\x0b\x04\xb2\x04\xb2\x00\x18\x04\xb5\x04\
\xb5\x00\x04\x04\xb7\x04\xb7\x00\x04\x04\xb8\x04\xb8\x00\x01\x04\
\xb9\x04\xb9\x00\x16\x04\xba\x04\xba\x00\x07\x04\xbc\x04\xbc\x00\
\x15\x04\xbf\x04\xbf\x00\x0e\x04\xc1\x04\xc1\x00\x0a\x04\xc2\x04\
\xc2\x00\x1d\x04\xc3\x04\xc3\x00\x09\x04\xc4\x04\xc4\x00\x1d\x04\
\xc5\x04\xc5\x00\x09\x04\xc6\x04\xc6\x00\x1b\x04\xc8\x04\xc8\x00\
\x11\x04\xc9\x04\xc9\x00\x10\x04\xca\x04\xca\x00\x01\x04\xcb\x04\
\xcb\x00\x0f\x04\xcf\x04\xcf\x00\x0d\x04\xd2\x04\xd2\x00\x0f\x04\
\xd8\x04\xd8\x00\x1e\x04\xdd\x04\xdd\x00\x23\x04\xe8\x04\xe8\x00\
\x1e\x04\xea\x04\xea\x00\x0f\x04\xf1\x04\xf1\x00\x0d\x04\xf5\x04\
\xf5\x00\x23\x00\x01\x00\x06\x04\xf5\x00\x14\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1a\x00\
\x1f\x00\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x02\x00\x00\x00\
\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x23\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x10\x00\x0b\x00\
\x0a\x00\x1d\x00\x16\x00\x11\x00\x0c\x00\x13\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x07\x00\x00\x00\x01\x00\x01\x00\
\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x03\x00\x03\x00\x04\x00\x03\x00\x01\x00\x00\x00\x0e\x00\x00\x00\
\x05\x00\x09\x00\x00\x00\x15\x00\x09\x00\x0f\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\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\x02\x00\x01\x00\x00\x00\x00\x00\x00\x00\x02\x00\
\x01\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x06\x00\x02\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x01\x00\x00\x00\x09\x00\x00\x00\x00\x00\x00\x00\
\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\
\x01\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x0b\x00\x02\x00\x19\x00\x00\x00\x0b\x00\x00\x00\x00\x00\
\x00\x00\x11\x00\x00\x00\x00\x00\x19\x00\x22\x00\x00\x00\x00\x00\
\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x15\x00\x00\x00\x03\x00\
\x03\x00\x1b\x00\x03\x00\x03\x00\x03\x00\x00\x00\x01\x00\x03\x00\
\x21\x00\x03\x00\x03\x00\x00\x00\x00\x00\x03\x00\x00\x00\x03\x00\
\x00\x00\x00\x00\x01\x00\x1b\x00\x03\x00\x00\x00\x00\x00\x02\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x04\x00\
\x1d\x00\x09\x00\x02\x00\x00\x00\x02\x00\x01\x00\x02\x00\x00\x00\
\x02\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x11\x00\x15\x00\x00\x00\x03\x00\x00\x00\x00\x00\
\x0b\x00\x00\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00\x00\x00\
\x02\x00\x01\x00\x11\x00\x15\x00\x0b\x00\x00\x00\x20\x00\x21\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x19\x00\
\x1b\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x03\x00\x11\x00\x15\x00\x00\x00\x01\x00\
\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x19\x00\x00\x00\x00\x00\
\x00\x00\x02\x00\x01\x00\x00\x00\x00\x00\x00\x00\x19\x00\x1b\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x1f\x00\x1f\x00\x00\x00\x14\x00\x14\x00\x1a\x00\x14\x00\x14\x00\
\x14\x00\x1a\x00\x00\x00\x00\x00\x00\x00\x1a\x00\x1a\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x17\x00\x1c\x00\x24\x00\x00\x00\x12\x00\x18\x00\
\x1e\x00\x00\x00\x08\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x0d\x00\x08\x00\x0d\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x18\x00\x08\x00\x00\x00\x00\x00\x18\x00\
\x00\x00\x00\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x18\x00\
\x08\x00\x17\x00\x1c\x00\x18\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x08\x00\x00\x00\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x02\x00\x00\x00\x02\x00\
\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\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x06\x00\
\x06\x00\x06\x00\x06\x00\x06\x00\x06\x00\x02\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\
\x02\x00\x02\x00\x02\x00\x02\x00\x0a\x00\x0a\x00\x0a\x00\x0a\x00\
\x0c\x00\x07\x00\x07\x00\x07\x00\x07\x00\x07\x00\x07\x00\x07\x00\
\x01\x00\x01\x00\x01\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x03\x00\x04\x00\x04\x00\x04\x00\x04\x00\x04\x00\x05\x00\
\x05\x00\x05\x00\x05\x00\x09\x00\x09\x00\x06\x00\x07\x00\x06\x00\
\x07\x00\x06\x00\x07\x00\x02\x00\x01\x00\x02\x00\x01\x00\x02\x00\
\x01\x00\x02\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\
\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x02\x00\
\x01\x00\x02\x00\x01\x00\x02\x00\x01\x00\x02\x00\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\x23\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00\x03\x00\x03\x00\x02\x00\
\x04\x00\x02\x00\x04\x00\x02\x00\x04\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x10\x00\x0e\x00\x10\x00\x0e\x00\x10\x00\
\x0e\x00\x10\x00\x0e\x00\x10\x00\x0e\x00\x0b\x00\x00\x00\x0b\x00\
\x00\x00\x0b\x00\x00\x00\x0a\x00\x05\x00\x0a\x00\x05\x00\x0a\x00\
\x05\x00\x0a\x00\x05\x00\x0a\x00\x05\x00\x0a\x00\x05\x00\x16\x00\
\x00\x00\x0c\x00\x09\x00\x0c\x00\x13\x00\x0f\x00\x13\x00\x0f\x00\
\x13\x00\x0f\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x0d\x00\x0d\x00\x0d\x00\x0d\x00\x0d\x00\x0d\x00\x0d\x00\
\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x08\x00\x08\x00\x08\x00\x08\x00\x08\x00\x12\x00\
\x12\x00\x12\x00\x12\x00\x17\x00\x0d\x00\x0d\x00\x0d\x00\x08\x00\
\x08\x00\x08\x00\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x08\x00\x08\x00\x08\x00\x08\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00\x08\x00\x08\x00\x00\x00\
\x00\x00\x00\x00\x1e\x00\x1e\x00\x1e\x00\x1e\x00\x00\x00\x18\x00\
\x00\x00\x12\x00\x12\x00\x12\x00\x12\x00\x12\x00\x12\x00\x24\x00\
\x17\x00\x17\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\
\x00\x00\x02\x00\x0c\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\
\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\
\x00\x00\x0c\x00\x11\x00\x00\x00\x0c\x00\x01\x00\x00\x00\x03\x00\
\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\x09\x00\x00\x00\x00\x00\
\x05\x00\x04\x00\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x23\x00\x00\x00\x00\x00\x22\x00\x06\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x02\x00\
\x0b\x00\x11\x00\x07\x00\x01\x00\x03\x00\x04\x00\x03\x00\x01\x00\
\x09\x00\x15\x00\x01\x00\x03\x00\x0e\x00\x00\x00\x00\x00\x00\x00\
\x03\x00\x09\x00\x16\x00\x00\x00\x16\x00\x00\x00\x16\x00\x00\x00\
\x0c\x00\x09\x00\x14\x00\x14\x00\x00\x00\x00\x00\x14\x00\x00\x00\
\x03\x00\x06\x00\x07\x00\x00\x00\x00\x00\x01\x00\x03\x00\x00\x00\
\x00\x00\x1d\x00\x09\x00\x01\x00\x02\x00\x00\x00\x00\x00\x02\x00\
\x01\x00\x0c\x00\x09\x00\x00\x00\x11\x00\x15\x00\x00\x00\x06\x00\
\x07\x00\x06\x00\x07\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\
\x01\x00\x01\x00\x11\x00\x15\x00\x00\x00\x00\x00\x00\x00\x03\x00\
\x00\x00\x03\x00\x02\x00\x04\x00\x02\x00\x01\x00\x02\x00\x04\x00\
\x00\x00\x00\x00\x22\x00\x09\x00\x22\x00\x09\x00\x22\x00\x09\x00\
\x20\x00\x21\x00\x00\x00\x03\x00\x01\x00\x06\x00\x07\x00\x06\x00\
\x07\x00\x06\x00\x07\x00\x06\x00\x07\x00\x06\x00\x07\x00\x06\x00\
\x07\x00\x06\x00\x07\x00\x06\x00\x07\x00\x06\x00\x07\x00\x06\x00\
\x07\x00\x06\x00\x07\x00\x06\x00\x07\x00\x00\x00\x01\x00\x00\x00\
\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\
\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x02\x00\x04\x00\x02\x00\x04\x00\x02\x00\x04\x00\x02\x00\
\x04\x00\x02\x00\x04\x00\x02\x00\x04\x00\x02\x00\x04\x00\x02\x00\
\x01\x00\x02\x00\x01\x00\x02\x00\x01\x00\x02\x00\x04\x00\x02\x00\
\x01\x00\x0a\x00\x05\x00\x0a\x00\x05\x00\x00\x00\x05\x00\x00\x00\
\x05\x00\x00\x00\x05\x00\x00\x00\x05\x00\x00\x00\x05\x00\x0c\x00\
\x09\x00\x0c\x00\x09\x00\x0c\x00\x09\x00\x00\x00\x0b\x00\x00\x00\
\x20\x00\x21\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0c\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\
\x06\x00\x07\x00\x00\x00\x01\x00\x00\x00\x00\x00\x02\x00\x04\x00\
\x00\x00\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x01\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x03\x00\x02\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\x0e\x00\x0b\x00\x00\x00\
\x0a\x00\x1d\x00\x09\x00\x1d\x00\x09\x00\x16\x00\x00\x00\x13\x00\
\x0f\x00\x00\x00\x0d\x00\x00\x00\x00\x00\x00\x00\x08\x00\x17\x00\
\x00\x00\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x17\x00\x1c\x00\x00\x00\
\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x08\x00\x00\x00\x00\x00\x08\x00\x18\x00\x1c\x00\x00\x00\x00\x00\
\x08\x00\x17\x00\x01\x00\x00\x00\x0a\x01\x62\x02\x92\x00\x04\x44\
\x46\x4c\x54\x00\x1a\x63\x79\x72\x6c\x00\x1a\x67\x72\x65\x6b\x00\
\x1a\x6c\x61\x74\x6e\x00\x48\x00\x04\x00\x00\x00\x00\xff\xff\x00\
\x12\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x08\x00\x0c\x00\
\x0d\x00\x0e\x00\x0f\x00\x10\x00\x11\x00\x12\x00\x13\x00\x14\x00\
\x15\x00\x16\x00\x17\x00\x2e\x00\x07\x41\x5a\x45\x20\x00\xe4\x43\
\x52\x54\x20\x00\xe4\x46\x52\x41\x20\x00\x5a\x4d\x4f\x4c\x20\x00\
\xb6\x4e\x41\x56\x20\x00\x88\x52\x4f\x4d\x20\x00\xb6\x54\x52\x4b\
\x20\x00\xe4\x00\x00\xff\xff\x00\x13\x00\x00\x00\x01\x00\x02\x00\
\x03\x00\x04\x00\x07\x00\x08\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\
\x10\x00\x11\x00\x12\x00\x13\x00\x14\x00\x15\x00\x16\x00\x17\x00\
\x00\xff\xff\x00\x14\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\
\x06\x00\x08\x00\x09\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x10\x00\
\x11\x00\x12\x00\x13\x00\x14\x00\x15\x00\x16\x00\x17\x00\x00\xff\
\xff\x00\x14\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x06\x00\
\x08\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x10\x00\x11\x00\
\x12\x00\x13\x00\x14\x00\x15\x00\x16\x00\x17\x00\x00\xff\xff\x00\
\x14\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x06\x00\x08\x00\
\x0a\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x10\x00\x11\x00\x12\x00\
\x13\x00\x14\x00\x15\x00\x16\x00\x17\x00\x00\xff\xff\x00\x13\x00\
\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x05\x00\x08\x00\x0c\x00\
\x0d\x00\x0e\x00\x0f\x00\x10\x00\x11\x00\x12\x00\x13\x00\x14\x00\
\x15\x00\x16\x00\x17\x00\x18\x63\x32\x73\x63\x00\x92\x63\x63\x6d\
\x70\x00\x98\x64\x6c\x69\x67\x00\xa0\x64\x6e\x6f\x6d\x00\xa6\x66\
\x72\x61\x63\x00\xac\x6c\x69\x67\x61\x00\xb6\x6c\x69\x67\x61\x00\
\xbc\x6c\x69\x67\x61\x00\xc8\x6c\x6e\x75\x6d\x00\xd0\x6c\x6f\x63\
\x6c\x00\xd6\x6c\x6f\x63\x6c\x00\xdc\x6c\x6f\x63\x6c\x00\xe2\x6e\
\x75\x6d\x72\x00\xe8\x6f\x6e\x75\x6d\x00\xee\x70\x6e\x75\x6d\x00\
\xf4\x73\x6d\x63\x70\x00\xfa\x73\x73\x30\x31\x01\x00\x73\x73\x30\
\x32\x01\x06\x73\x73\x30\x33\x01\x0c\x73\x73\x30\x34\x01\x12\x73\
\x73\x30\x35\x01\x18\x73\x73\x30\x36\x01\x1e\x73\x73\x30\x37\x01\
\x24\x74\x6e\x75\x6d\x01\x2a\x00\x00\x00\x01\x00\x00\x00\x00\x00\
\x02\x00\x02\x00\x04\x00\x00\x00\x01\x00\x0a\x00\x00\x00\x01\x00\
\x18\x00\x00\x00\x03\x00\x16\x00\x17\x00\x19\x00\x00\x00\x01\x00\
\x09\x00\x00\x00\x04\x00\x08\x00\x09\x00\x08\x00\x09\x00\x00\x00\
\x02\x00\x08\x00\x09\x00\x00\x00\x01\x00\x15\x00\x00\x00\x01\x00\
\x07\x00\x00\x00\x01\x00\x05\x00\x00\x00\x01\x00\x06\x00\x00\x00\
\x01\x00\x19\x00\x00\x00\x01\x00\x12\x00\x00\x00\x01\x00\x13\x00\
\x00\x00\x01\x00\x01\x00\x00\x00\x01\x00\x0b\x00\x00\x00\x01\x00\
\x0c\x00\x00\x00\x01\x00\x0d\x00\x00\x00\x01\x00\x0e\x00\x00\x00\
\x01\x00\x0f\x00\x00\x00\x01\x00\x10\x00\x00\x00\x01\x00\x11\x00\
\x00\x00\x01\x00\x14\x00\x1a\x00\x36\x04\x30\x07\xee\x08\xa0\x08\
\xca\x0f\x6e\x0f\x84\x0f\xae\x0f\xc2\x0f\xe6\x10\x10\x10\x4c\x10\
\x60\x10\x74\x10\x88\x10\x9a\x10\xb4\x10\xf6\x11\x14\x11\x66\x11\
\xac\x12\x0e\x12\x6c\x12\x80\x12\xb0\x12\xd2\x00\x01\x00\x00\x00\
\x01\x00\x08\x00\x02\x01\xfa\x00\xfa\x01\xe7\x02\x71\x01\xd1\x01\
\xd0\x01\xcf\x01\xce\x01\xcd\x01\xcc\x01\xcb\x01\xca\x01\xc9\x01\
\xc8\x02\x33\x02\x32\x02\x31\x02\x30\x02\x28\x01\xe6\x01\xe5\x01\
\xe4\x01\xe3\x01\xe2\x01\xe1\x01\xe0\x01\xdf\x01\xde\x01\xdd\x01\
\xdc\x01\xdb\x01\xda\x01\xd9\x01\xd8\x01\xd7\x01\xd6\x01\xd5\x01\
\xd4\x01\xd3\x01\xd2\x01\xe8\x01\xe9\x02\x73\x02\x75\x02\x74\x02\
\x76\x02\x72\x02\x77\x02\x52\x01\xea\x01\xeb\x01\xec\x01\xed\x01\
\xee\x01\xef\x01\xf0\x01\xf1\x01\xf2\x01\xf3\x01\xf4\x01\xf5\x01\
\xf6\x01\xf7\x01\xf8\x01\xf9\x01\xfa\x01\xfb\x01\xfc\x01\xfd\x01\
\xfe\x02\x00\x02\x01\x04\xfe\x02\x02\x02\x03\x02\x04\x02\x05\x02\
\x06\x02\x07\x02\x08\x02\x09\x02\x0a\x02\x0b\x02\x3b\x02\x0d\x02\
\x0e\x02\x0f\x02\x10\x04\xf8\x02\x11\x02\x13\x02\x14\x02\x15\x02\
\x16\x02\x17\x02\x18\x02\x19\x02\x1b\x02\x1c\x02\x1e\x02\x1d\x03\
\x2f\x03\x30\x03\x31\x03\x32\x03\x33\x03\x34\x03\x35\x03\x36\x03\
\x37\x03\x38\x03\x39\x03\x3a\x03\x3b\x03\x3c\x03\x3d\x03\x3e\x03\
\x3f\x03\x40\x03\x41\x03\x42\x03\x43\x03\x44\x03\x45\x03\x46\x03\
\x47\x03\x48\x03\x49\x03\x4a\x03\x4b\x03\x4c\x03\x4d\x03\x4e\x03\
\x4f\x03\x50\x03\x51\x03\x52\x03\x53\x03\x54\x03\x55\x03\x56\x03\
\x57\x03\x58\x03\x59\x03\x5a\x03\x5b\x03\x5c\x03\x5d\x03\x5e\x03\
\x5f\x03\x60\x03\x61\x03\x62\x03\x63\x04\xff\x03\x64\x03\x65\x03\
\x66\x03\x67\x03\x68\x03\x69\x03\x6a\x03\x6b\x03\x6c\x03\x6d\x03\
\x6e\x03\x6f\x03\x70\x03\x71\x03\x72\x03\x73\x03\x74\x03\x75\x05\
\x02\x03\x76\x03\x77\x03\x79\x03\x78\x03\x7a\x03\x7b\x03\x7c\x03\
\x7d\x03\x7e\x03\x7f\x03\x80\x03\x81\x03\x82\x03\x83\x03\x84\x03\
\x85\x05\x00\x05\x01\x04\xcb\x04\xcc\x04\xcd\x04\xce\x04\xcf\x04\
\xd0\x04\xd1\x04\xd2\x04\xd3\x04\xd4\x04\xd5\x04\xd6\x04\xd7\x04\
\xd8\x04\xd9\x04\xda\x04\xdb\x04\xdc\x04\xdd\x04\xde\x04\xdf\x04\
\xe0\x04\xe1\x04\xe2\x04\xe3\x04\xe4\x04\xe5\x04\xe6\x04\xe7\x01\
\xff\x04\xe8\x04\xe9\x04\xea\x04\xeb\x04\xec\x04\xed\x04\xee\x04\
\xef\x04\xf0\x04\xf1\x04\xf2\x04\xf3\x04\xf4\x04\xf5\x04\xf6\x05\
\x03\x05\x04\x05\x05\x05\x06\x04\xf7\x04\xf9\x04\xfa\x04\xfc\x02\
\x1a\x04\xfd\x04\xfb\x02\x0c\x02\x12\x05\x0b\x05\x0c\x00\x01\x00\
\xfa\x00\x08\x00\x0a\x00\x14\x00\x15\x00\x16\x00\x17\x00\x18\x00\
\x19\x00\x1a\x00\x1b\x00\x1c\x00\x1d\x00\x25\x00\x26\x00\x27\x00\
\x28\x00\x29\x00\x2a\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\
\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x37\x00\
\x38\x00\x39\x00\x3a\x00\x3b\x00\x3c\x00\x3d\x00\x3e\x00\x65\x00\
\x67\x00\x81\x00\x83\x00\x84\x00\x8c\x00\x8f\x00\x91\x00\x93\x00\
\xb1\x00\xb2\x00\xb3\x00\xb4\x00\xb5\x00\xb6\x00\xb7\x00\xb8\x00\
\xb9\x00\xba\x00\xd2\x00\xd3\x00\xd4\x00\xd5\x00\xd6\x00\xd7\x00\
\xd8\x00\xd9\x00\xda\x00\xdb\x00\xdc\x00\xdd\x00\xde\x00\xdf\x00\
\xe0\x00\xe1\x00\xe2\x00\xe3\x00\xe4\x00\xe5\x00\xe6\x00\xe7\x00\
\xe8\x00\xe9\x01\x2f\x01\x33\x01\x35\x01\x37\x01\x39\x01\x3b\x01\
\x41\x01\x43\x01\x45\x01\x49\x01\x4b\x01\x4c\x01\x58\x01\x59\x01\
\x97\x01\x9d\x01\xa2\x01\xa5\x02\x7a\x02\x7b\x02\x7d\x02\x7f\x02\
\x80\x02\x81\x02\x82\x02\x83\x02\x84\x02\x85\x02\x86\x02\x87\x02\
\x88\x02\x89\x02\x8a\x02\x8b\x02\x8c\x02\x8d\x02\x8e\x02\x8f\x02\
\x90\x02\x91\x02\x92\x02\x93\x02\x94\x02\x95\x02\x96\x02\x97\x02\
\x98\x02\x99\x02\xb6\x02\xb8\x02\xba\x02\xbc\x02\xbe\x02\xc0\x02\
\xc2\x02\xc4\x02\xc6\x02\xc8\x02\xca\x02\xcc\x02\xce\x02\xd0\x02\
\xd2\x02\xd4\x02\xd6\x02\xd8\x02\xda\x02\xdc\x02\xde\x02\xe0\x02\
\xe2\x02\xe3\x02\xe5\x02\xe7\x02\xe9\x02\xeb\x02\xed\x02\xef\x02\
\xf1\x02\xf3\x02\xf5\x02\xf8\x02\xfa\x02\xfc\x02\xfe\x03\x00\x03\
\x02\x03\x04\x03\x06\x03\x08\x03\x0a\x03\x0c\x03\x0e\x03\x10\x03\
\x12\x03\x14\x03\x16\x03\x18\x03\x1a\x03\x1c\x03\x1e\x03\x20\x03\
\x22\x03\x24\x03\x25\x03\x27\x03\x29\x03\x2b\x03\x2d\x03\x86\x03\
\x87\x03\x88\x03\x89\x03\x8a\x03\x8b\x03\x8c\x03\x8e\x03\x8f\x03\
\x90\x03\x91\x03\x92\x03\x93\x03\x94\x03\x95\x03\x96\x03\x97\x03\
\x98\x03\x99\x03\x9a\x03\x9b\x03\x9c\x03\x9d\x03\xad\x03\xae\x03\
\xaf\x03\xb0\x03\xb1\x03\xb2\x03\xb3\x03\xb4\x03\xb5\x03\xb6\x03\
\xb7\x03\xb8\x03\xb9\x03\xba\x03\xbb\x03\xbc\x03\xbd\x03\xbe\x03\
\xbf\x03\xc0\x03\xc1\x03\xc2\x03\xd3\x03\xd5\x03\xd7\x03\xd9\x03\
\xee\x03\xf0\x03\xf2\x04\x07\x04\x0d\x04\x13\x04\x7d\x04\x82\x04\
\x86\x05\x07\x05\x09\x00\x01\x00\x00\x00\x01\x00\x08\x00\x02\x01\
\xdc\x00\xeb\x02\x71\x02\x33\x02\x32\x02\x31\x02\x30\x02\x28\x01\
\xe6\x01\xe5\x01\xe4\x01\xe3\x01\xe2\x01\xe1\x01\xe0\x01\xdf\x01\
\xde\x01\xdd\x01\xdc\x01\xdb\x01\xda\x01\xd9\x01\xd8\x01\xd7\x01\
\xd6\x01\xd5\x01\xd4\x01\xd3\x01\xd2\x02\x64\x02\x73\x03\x30\x02\
\x75\x02\x74\x03\x2f\x01\xe3\x02\x72\x02\x77\x02\x52\x04\xd2\x04\
\xd3\x01\xea\x01\xeb\x04\xd4\x04\xd5\x04\xd6\x01\xec\x04\xd7\x01\
\xed\x01\xee\x01\xef\x04\xdc\x01\xf0\x01\xf0\x04\xdd\x04\xde\x01\
\xf1\x01\xf2\x01\xf3\x01\xfa\x04\xeb\x04\xec\x01\xfb\x01\xfc\x01\
\xfd\x01\xfe\x01\xff\x02\x00\x04\xef\x04\xf0\x04\xf2\x04\xf5\x04\
\xfe\x02\x02\x02\x03\x02\x04\x02\x05\x02\x06\x02\x07\x02\x08\x02\
\x09\x02\x0a\x02\x0b\x01\xf4\x01\xf5\x01\xf6\x01\xf7\x01\xf8\x01\
\xf9\x02\x3b\x02\x0d\x02\x0e\x02\x0f\x02\x10\x04\xf8\x02\x11\x02\
\x13\x02\x14\x02\x15\x02\x17\x02\x19\x02\x76\x03\x31\x03\x32\x03\
\x33\x03\x34\x03\x35\x03\x36\x03\x37\x03\x38\x03\x39\x03\x3a\x03\
\x3b\x03\x3c\x03\x3d\x03\x3e\x03\x3f\x03\x40\x03\x41\x03\x42\x03\
\x43\x03\x44\x03\x45\x03\x46\x03\x47\x03\x48\x03\x49\x03\x4a\x03\
\x4b\x03\x4c\x03\x82\x03\x4d\x03\x4e\x03\x4f\x03\x50\x03\x51\x03\
\x52\x03\x53\x03\x54\x03\x55\x03\x56\x03\x57\x03\x58\x03\x59\x03\
\x5a\x03\x5b\x03\x5c\x03\x5d\x03\x5e\x03\x5f\x03\x60\x03\x61\x03\
\x62\x04\xff\x03\x64\x03\x65\x03\x66\x03\x67\x03\x68\x03\x69\x03\
\x6a\x03\x6b\x03\x6c\x03\x6d\x03\x6e\x03\x6f\x03\x70\x03\x71\x03\
\x72\x03\x73\x03\x74\x03\x75\x05\x02\x03\x76\x03\x77\x03\x79\x03\
\x78\x03\x7a\x03\x7b\x03\x7c\x03\x7d\x03\x7e\x03\x7f\x03\x80\x03\
\x81\x03\x83\x03\x84\x03\x85\x05\x00\x05\x01\x04\xcb\x04\xcc\x04\
\xcd\x04\xce\x04\xd8\x04\xdb\x04\xd9\x04\xda\x04\xdf\x04\xe0\x04\
\xe1\x04\xcf\x04\xd0\x04\xd1\x04\xea\x04\xed\x04\xee\x04\xf1\x04\
\xf3\x04\xf4\x02\x01\x04\xf6\x04\xe2\x04\xe3\x04\xe4\x04\xe5\x04\
\xe6\x04\xe7\x04\xe8\x04\xe9\x05\x03\x05\x04\x05\x05\x05\x06\x04\
\xf7\x04\xf9\x04\xfa\x02\x18\x04\xfc\x02\x1a\x04\xfd\x04\xfb\x02\
\x16\x02\x0c\x02\x12\x05\x0b\x05\x0c\x00\x01\x00\xeb\x00\x0a\x00\
\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\
\x4d\x00\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\x53\x00\x54\x00\
\x55\x00\x56\x00\x57\x00\x58\x00\x59\x00\x5a\x00\x5b\x00\x5c\x00\
\x5d\x00\x5e\x00\x85\x00\x86\x00\x87\x00\x89\x00\x8a\x00\x8b\x00\
\x8d\x00\x90\x00\x92\x00\x94\x00\xbb\x00\xbc\x00\xbd\x00\xbe\x00\
\xbf\x00\xc0\x00\xc1\x00\xc2\x00\xc3\x00\xc4\x00\xc5\x00\xc6\x00\
\xc7\x00\xc8\x00\xc9\x00\xca\x00\xcb\x00\xcc\x00\xcd\x00\xce\x00\
\xea\x00\xeb\x00\xec\x00\xed\x00\xee\x00\xef\x00\xf0\x00\xf1\x00\
\xf2\x00\xf3\x00\xf4\x00\xf5\x00\xf6\x00\xf7\x00\xf8\x00\xf9\x00\
\xfa\x00\xfb\x00\xfc\x00\xfd\x00\xfe\x00\xff\x01\x00\x01\x01\x01\
\x02\x01\x03\x01\x04\x01\x05\x01\x06\x01\x07\x01\x30\x01\x34\x01\
\x36\x01\x38\x01\x3a\x01\x3c\x01\x42\x01\x44\x01\x46\x01\x4a\x01\
\x4d\x01\x5a\x02\x7c\x02\x7e\x02\x9a\x02\x9b\x02\x9c\x02\x9d\x02\
\x9e\x02\x9f\x02\xa0\x02\xa1\x02\xa2\x02\xa3\x02\xa4\x02\xa5\x02\
\xa6\x02\xa7\x02\xa8\x02\xa9\x02\xaa\x02\xab\x02\xac\x02\xad\x02\
\xae\x02\xaf\x02\xb0\x02\xb1\x02\xb2\x02\xb3\x02\xb4\x02\xb5\x02\
\xb7\x02\xb9\x02\xbb\x02\xbd\x02\xbf\x02\xc1\x02\xc3\x02\xc5\x02\
\xc7\x02\xc9\x02\xcb\x02\xcd\x02\xcf\x02\xd1\x02\xd3\x02\xd5\x02\
\xd7\x02\xd9\x02\xdb\x02\xdd\x02\xdf\x02\xe1\x02\xe4\x02\xe6\x02\
\xe8\x02\xea\x02\xec\x02\xee\x02\xf0\x02\xf2\x02\xf4\x02\xf6\x02\
\xf9\x02\xfb\x02\xfd\x02\xff\x03\x01\x03\x03\x03\x05\x03\x07\x03\
\x09\x03\x0b\x03\x0d\x03\x0f\x03\x11\x03\x13\x03\x15\x03\x17\x03\
\x19\x03\x1b\x03\x1d\x03\x1f\x03\x21\x03\x23\x03\x26\x03\x28\x03\
\x2a\x03\x2c\x03\x2e\x03\x9e\x03\x9f\x03\xa0\x03\xa1\x03\xa3\x03\
\xa4\x03\xa5\x03\xa6\x03\xa7\x03\xa8\x03\xa9\x03\xaa\x03\xab\x03\
\xac\x03\xc3\x03\xc4\x03\xc5\x03\xc6\x03\xc7\x03\xc8\x03\xc9\x03\
\xca\x03\xcb\x03\xcc\x03\xcd\x03\xce\x03\xcf\x03\xd0\x03\xd1\x03\
\xd2\x03\xd4\x03\xd6\x03\xd8\x03\xda\x03\xef\x03\xf1\x03\xf3\x04\
\x01\x04\x08\x04\x0e\x04\x14\x04\x7e\x04\x7f\x04\x83\x04\x87\x05\
\x08\x05\x0a\x00\x06\x00\x00\x00\x06\x00\x12\x00\x2a\x00\x42\x00\
\x5a\x00\x72\x00\x8a\x00\x03\x00\x00\x00\x01\x00\x12\x00\x01\x00\
\x90\x00\x01\x00\x00\x00\x03\x00\x01\x00\x01\x00\x4d\x00\x03\x00\
\x00\x00\x01\x00\x12\x00\x01\x00\x78\x00\x01\x00\x00\x00\x03\x00\
\x01\x00\x01\x00\x4e\x00\x03\x00\x00\x00\x01\x00\x12\x00\x01\x00\
\x60\x00\x01\x00\x00\x00\x03\x00\x01\x00\x01\x02\xe1\x00\x03\x00\
\x00\x00\x01\x00\x12\x00\x01\x00\x48\x00\x01\x00\x00\x00\x03\x00\
\x01\x00\x01\x03\xce\x00\x03\x00\x00\x00\x01\x00\x12\x00\x01\x00\
\x30\x00\x01\x00\x00\x00\x03\x00\x01\x00\x01\x03\xd0\x00\x03\x00\
\x00\x00\x01\x00\x12\x00\x01\x00\x18\x00\x01\x00\x00\x00\x03\x00\
\x01\x00\x01\x04\x49\x00\x02\x00\x02\x00\xa8\x00\xac\x00\x00\x01\
\x24\x01\x27\x00\x05\x00\x01\x00\x00\x00\x01\x00\x08\x00\x02\x00\
\x12\x00\x06\x02\x61\x02\x5f\x02\x62\x02\x63\x02\x60\x05\x0d\x00\
\x01\x00\x06\x00\x4d\x00\x4e\x02\xe1\x03\xce\x03\xd0\x04\x49\x00\
\x04\x00\x00\x00\x01\x00\x08\x00\x01\x06\x32\x00\x36\x00\x72\x00\
\xa4\x00\xae\x00\xb8\x00\xca\x00\xfc\x01\x0e\x01\x18\x01\x4a\x01\
\x64\x01\x7e\x01\x90\x01\xba\x01\xf6\x02\x00\x02\x22\x02\x3c\x02\
\x4e\x02\x8a\x02\x9c\x02\xb6\x02\xe0\x02\xf2\x03\x24\x03\x2e\x03\
\x38\x03\x4a\x03\x7c\x03\x86\x03\x90\x03\x9a\x03\xb4\x03\xce\x03\
\xe0\x04\x0a\x04\x3c\x04\x46\x04\x68\x04\x82\x04\x94\x04\xc6\x04\
\xd8\x04\xf2\x05\x1c\x05\x2e\x05\x38\x05\x42\x05\x4c\x05\x56\x05\
\x80\x05\xaa\x05\xd4\x05\xfe\x06\x28\x00\x06\x00\x0e\x00\x14\x00\
\x1a\x00\x20\x00\x26\x00\x2c\x02\x80\x00\x02\x00\xa9\x04\x1e\x00\
\x02\x00\xad\x02\x7f\x00\x02\x00\xa8\x04\x20\x00\x02\x00\xab\x02\
\x82\x00\x02\x00\xaa\x04\x99\x00\x02\x00\xac\x00\x01\x00\x04\x04\
\xa6\x00\x02\x00\xad\x00\x01\x00\x04\x02\xbc\x00\x02\x00\xa9\x00\
\x02\x00\x06\x00\x0c\x04\xaa\x00\x02\x01\xba\x04\xa8\x00\x02\x00\
\xad\x00\x06\x00\x0e\x00\x14\x00\x1a\x00\x20\x00\x26\x00\x2c\x02\
\x88\x00\x02\x00\xa9\x04\x36\x00\x02\x00\xad\x02\x87\x00\x02\x00\
\xa8\x04\x38\x00\x02\x00\xab\x04\x3a\x00\x02\x00\xaa\x04\x9b\x00\
\x02\x00\xac\x00\x02\x00\x06\x00\x0c\x04\x95\x00\x02\x00\xa9\x02\
\xd6\x00\x02\x01\xba\x00\x01\x00\x04\x04\xac\x00\x02\x00\xad\x00\
\x06\x00\x0e\x00\x14\x00\x1a\x00\x20\x00\x26\x00\x2c\x02\x8c\x00\
\x02\x00\xa9\x04\x48\x00\x02\x00\xad\x02\x8b\x00\x02\x00\xa8\x04\
\x46\x00\x02\x00\xab\x02\xda\x00\x02\x00\xaa\x04\x9d\x00\x02\x00\
\xac\x00\x03\x00\x08\x00\x0e\x00\x14\x04\xae\x00\x02\x00\xa9\x02\
\xe7\x00\x02\x01\xba\x04\xb0\x00\x02\x00\xad\x00\x03\x00\x08\x00\
\x0e\x00\x14\x02\xe9\x00\x02\x00\xa9\x02\xeb\x00\x02\x01\xba\x04\
\xb2\x00\x02\x00\xad\x00\x02\x00\x06\x00\x0c\x03\xe0\x00\x02\x00\
\xa9\x04\xb4\x00\x02\x00\xad\x00\x05\x00\x0c\x00\x12\x00\x18\x00\
\x1e\x00\x24\x02\xf1\x00\x02\x00\xa9\x02\xf3\x00\x02\x01\xba\x04\
\xb6\x00\x02\x00\xad\x04\x97\x00\x02\x00\xa8\x02\x8f\x00\x02\x00\
\xaa\x00\x07\x00\x10\x00\x18\x00\x1e\x00\x24\x00\x2a\x00\x30\x00\
\x36\x04\xb8\x00\x03\x00\xaa\x00\xa9\x02\x91\x00\x02\x00\xa9\x04\
\x4a\x00\x02\x00\xad\x02\x90\x00\x02\x00\xa8\x04\x4c\x00\x02\x00\
\xab\x02\x93\x00\x02\x00\xaa\x04\x9f\x00\x02\x00\xac\x00\x01\x00\
\x04\x04\xb9\x00\x02\x00\xa9\x00\x04\x00\x0a\x00\x10\x00\x16\x00\
\x1c\x02\xfe\x00\x02\x00\xa9\x03\x00\x00\x02\x01\xba\x04\xbb\x00\
\x02\x00\xad\x04\xa1\x00\x02\x00\xac\x00\x03\x00\x08\x00\x0e\x00\
\x14\x03\x04\x00\x02\x00\xa9\x03\x0a\x00\x02\x01\xba\x04\xbd\x00\
\x02\x00\xad\x00\x02\x00\x06\x00\x0c\x03\x0e\x00\x02\x01\xba\x04\
\xbf\x00\x02\x00\xad\x00\x07\x00\x10\x00\x18\x00\x1e\x00\x24\x00\
\x2a\x00\x30\x00\x36\x04\xc1\x00\x03\x00\xaa\x00\xa9\x02\x96\x00\
\x02\x00\xa9\x04\x62\x00\x02\x00\xad\x02\x95\x00\x02\x00\xa8\x04\
\x64\x00\x02\x00\xab\x03\x14\x00\x02\x00\xaa\x04\xa3\x00\x02\x00\
\xac\x00\x02\x00\x06\x00\x0c\x04\xc4\x00\x02\x00\xad\x04\xc2\x00\
\x02\x00\xaa\x00\x03\x00\x08\x00\x0e\x00\x14\x03\xd5\x00\x02\x00\
\xa9\x04\xc6\x00\x02\x00\xad\x03\xd3\x00\x02\x00\xa8\x00\x05\x00\
\x0c\x00\x12\x00\x18\x00\x1e\x00\x24\x02\x99\x00\x02\x00\xa9\x04\
\x70\x00\x02\x00\xad\x03\xd9\x00\x02\x00\xa8\x04\x72\x00\x02\x00\
\xab\x04\x74\x00\x02\x00\xaa\x00\x02\x00\x06\x00\x0c\x03\x25\x00\
\x02\x00\xa9\x04\xc8\x00\x02\x00\xad\x00\x06\x00\x0e\x00\x14\x00\
\x1a\x00\x20\x00\x26\x00\x2c\x02\x9b\x00\x02\x00\xa9\x04\x1f\x00\
\x02\x00\xad\x02\x9a\x00\x02\x00\xa8\x04\x21\x00\x02\x00\xab\x02\
\x9d\x00\x02\x00\xaa\x04\x9a\x00\x02\x00\xac\x00\x01\x00\x04\x04\
\xa7\x00\x02\x00\xad\x00\x01\x00\x04\x02\xbd\x00\x02\x00\xa9\x00\
\x02\x00\x06\x00\x0c\x04\xab\x00\x02\x01\xba\x04\xa9\x00\x02\x00\
\xad\x00\x06\x00\x0e\x00\x14\x00\x1a\x00\x20\x00\x26\x00\x2c\x02\
\xa3\x00\x02\x00\xa9\x04\x37\x00\x02\x00\xad\x02\xa2\x00\x02\x00\
\xa8\x04\x39\x00\x02\x00\xab\x04\x3b\x00\x02\x00\xaa\x04\x9c\x00\
\x02\x00\xac\x00\x01\x00\x04\x04\x96\x00\x02\x00\xa9\x00\x01\x00\
\x04\x04\xad\x00\x02\x00\xad\x00\x01\x00\x04\x04\x49\x00\x02\x00\
\xad\x00\x03\x00\x08\x00\x0e\x00\x14\x04\xaf\x00\x02\x00\xa9\x02\
\xe8\x00\x02\x01\xba\x04\xb1\x00\x02\x00\xad\x00\x03\x00\x08\x00\
\x0e\x00\x14\x02\xea\x00\x02\x00\xa9\x02\xec\x00\x02\x01\xba\x04\
\xb3\x00\x02\x00\xad\x00\x02\x00\x06\x00\x0c\x03\xe1\x00\x02\x00\
\xa9\x04\xb5\x00\x02\x00\xad\x00\x05\x00\x0c\x00\x12\x00\x18\x00\
\x1e\x00\x24\x02\xf2\x00\x02\x00\xa9\x02\xf4\x00\x02\x01\xba\x04\
\xb7\x00\x02\x00\xad\x04\x98\x00\x02\x00\xa8\x02\xaa\x00\x02\x00\
\xaa\x00\x06\x00\x0e\x00\x14\x00\x1a\x00\x20\x00\x26\x00\x2c\x02\
\xac\x00\x02\x00\xa9\x04\x4b\x00\x02\x00\xad\x02\xab\x00\x02\x00\
\xa8\x04\x4d\x00\x02\x00\xab\x02\xae\x00\x02\x00\xaa\x04\xa0\x00\
\x02\x00\xac\x00\x01\x00\x04\x04\xba\x00\x02\x00\xa9\x00\x04\x00\
\x0a\x00\x10\x00\x16\x00\x1c\x02\xff\x00\x02\x00\xa9\x03\x01\x00\
\x02\x01\xba\x04\xbc\x00\x02\x00\xad\x04\xa2\x00\x02\x00\xac\x00\
\x03\x00\x08\x00\x0e\x00\x14\x03\x05\x00\x02\x00\xa9\x03\x0b\x00\
\x02\x01\xba\x04\xbe\x00\x02\x00\xad\x00\x02\x00\x06\x00\x0c\x03\
\x0f\x00\x02\x01\xba\x04\xc0\x00\x02\x00\xad\x00\x06\x00\x0e\x00\
\x14\x00\x1a\x00\x20\x00\x26\x00\x2c\x02\xb1\x00\x02\x00\xa9\x04\
\x63\x00\x02\x00\xad\x02\xb0\x00\x02\x00\xa8\x04\x65\x00\x02\x00\
\xab\x03\x15\x00\x02\x00\xaa\x04\xa4\x00\x02\x00\xac\x00\x02\x00\
\x06\x00\x0c\x04\xc5\x00\x02\x00\xad\x04\xc3\x00\x02\x00\xaa\x00\
\x03\x00\x08\x00\x0e\x00\x14\x03\xd6\x00\x02\x00\xa9\x04\xc7\x00\
\x02\x00\xad\x03\xd4\x00\x02\x00\xa8\x00\x05\x00\x0c\x00\x12\x00\
\x18\x00\x1e\x00\x24\x02\xb4\x00\x02\x00\xa9\x04\x71\x00\x02\x00\
\xad\x03\xda\x00\x02\x00\xa8\x04\x73\x00\x02\x00\xab\x04\x75\x00\
\x02\x00\xaa\x00\x02\x00\x06\x00\x0c\x03\x26\x00\x02\x00\xa9\x04\
\xc9\x00\x02\x00\xad\x00\x01\x00\x04\x03\x2b\x00\x02\x00\xa9\x00\
\x01\x00\x04\x03\x2d\x00\x02\x00\xa9\x00\x01\x00\x04\x03\x2c\x00\
\x02\x00\xa9\x00\x01\x00\x04\x03\x2e\x00\x02\x00\xa9\x00\x05\x00\
\x0c\x00\x12\x00\x18\x00\x1e\x00\x24\x02\xa7\x00\x02\x00\xa9\x02\
\xa6\x00\x02\x00\xa8\x04\x47\x00\x02\x00\xab\x02\xdb\x00\x02\x00\
\xaa\x04\x9e\x00\x02\x00\xac\x00\x05\x00\x0c\x00\x12\x00\x18\x00\
\x1e\x00\x24\x04\x58\x00\x02\x00\xa9\x04\x60\x00\x02\x00\xad\x04\
\x5a\x00\x02\x00\xa8\x04\x5c\x00\x02\x00\xab\x04\x5e\x00\x02\x00\
\xaa\x00\x05\x00\x0c\x00\x12\x00\x18\x00\x1e\x00\x24\x04\x59\x00\
\x02\x00\xa9\x04\x61\x00\x02\x00\xad\x04\x5b\x00\x02\x00\xa8\x04\
\x5d\x00\x02\x00\xab\x04\x5f\x00\x02\x00\xaa\x00\x05\x00\x0c\x00\
\x12\x00\x18\x00\x1e\x00\x24\x04\x66\x00\x02\x00\xa9\x04\x6e\x00\
\x02\x00\xad\x04\x68\x00\x02\x00\xa8\x04\x6a\x00\x02\x00\xab\x04\
\x6c\x00\x02\x00\xaa\x00\x05\x00\x0c\x00\x12\x00\x18\x00\x1e\x00\
\x24\x04\x67\x00\x02\x00\xa9\x04\x6f\x00\x02\x00\xad\x04\x69\x00\
\x02\x00\xa8\x04\x6b\x00\x02\x00\xab\x04\x6d\x00\x02\x00\xaa\x00\
\x01\x00\x04\x04\xa5\x00\x02\x00\xa9\x00\x02\x00\x11\x00\x25\x00\
\x29\x00\x00\x00\x2b\x00\x2d\x00\x05\x00\x2f\x00\x34\x00\x08\x00\
\x36\x00\x3b\x00\x0e\x00\x3d\x00\x3e\x00\x14\x00\x45\x00\x49\x00\
\x16\x00\x4b\x00\x4d\x00\x1b\x00\x4f\x00\x54\x00\x1e\x00\x56\x00\
\x5b\x00\x24\x00\x5d\x00\x5e\x00\x2a\x00\x81\x00\x81\x00\x2c\x00\
\x83\x00\x83\x00\x2d\x00\x86\x00\x86\x00\x2e\x00\x89\x00\x89\x00\
\x2f\x00\x8d\x00\x8d\x00\x30\x00\x98\x00\x9b\x00\x31\x00\xd0\x00\
\xd0\x00\x35\x00\x01\x00\x00\x00\x01\x00\x08\x00\x01\x00\x06\x00\
\x02\x00\x01\x00\x02\x03\x08\x03\x09\x00\x01\x00\x00\x00\x01\x00\
\x08\x00\x02\x00\x12\x00\x06\x05\x07\x05\x08\x05\x09\x05\x0a\x05\
\x0b\x05\x0c\x00\x01\x00\x06\x02\xba\x02\xbb\x02\xcc\x02\xcd\x03\
\x4f\x03\x58\x00\x01\x00\x00\x00\x01\x00\x08\x00\x01\x00\x06\x00\
\x01\x00\x01\x00\x01\x01\x7b\x00\x04\x00\x00\x00\x01\x00\x08\x00\
\x01\x00\x40\x00\x01\x00\x08\x00\x02\x00\x06\x00\x0e\x01\xbe\x00\
\x03\x00\x4a\x00\x4d\x01\xbc\x00\x02\x00\x4d\x00\x04\x00\x00\x00\
\x01\x00\x08\x00\x01\x00\x1c\x00\x01\x00\x08\x00\x02\x00\x06\x00\
\x0e\x01\xbf\x00\x03\x00\x4a\x00\x50\x01\xbd\x00\x02\x00\x50\x00\
\x01\x00\x01\x00\x4a\x00\x04\x00\x00\x00\x01\x00\x08\x00\x01\x00\
\x2a\x00\x03\x00\x0c\x00\x16\x00\x20\x00\x01\x00\x04\x01\xbb\x00\
\x02\x00\x4a\x00\x01\x00\x04\x01\xc1\x00\x02\x00\x58\x00\x01\x00\
\x04\x01\xc0\x00\x02\x00\x58\x00\x01\x00\x03\x00\x4a\x00\x57\x00\
\x95\x00\x01\x00\x00\x00\x01\x00\x08\x00\x01\x00\x06\x01\xde\x00\
\x01\x00\x01\x00\x4b\x00\x01\x00\x00\x00\x01\x00\x08\x00\x01\x00\
\x06\x01\x6f\x00\x01\x00\x01\x00\xbb\x00\x01\x00\x00\x00\x01\x00\
\x08\x00\x01\x00\x06\x01\xf5\x00\x01\x00\x01\x00\x36\x00\x01\x00\
\x00\x00\x01\x00\x08\x00\x02\x00\x1c\x00\x02\x02\x2c\x02\x2d\x00\
\x01\x00\x00\x00\x01\x00\x08\x00\x02\x00\x0a\x00\x02\x02\x2e\x02\
\x2f\x00\x01\x00\x02\x00\x2f\x00\x4f\x00\x01\x00\x00\x00\x01\x00\
\x08\x00\x02\x00\x1e\x00\x0c\x02\x45\x02\x47\x02\x46\x02\x48\x02\
\x49\x02\x67\x02\x68\x02\x69\x02\x6a\x02\x6b\x02\x6c\x02\x6d\x00\
\x01\x00\x0c\x00\x27\x00\x28\x00\x2b\x00\x33\x00\x35\x00\x46\x00\
\x47\x00\x48\x00\x4b\x00\x53\x00\x54\x00\x55\x00\x01\x00\x00\x00\
\x01\x00\x08\x00\x02\x00\x0c\x00\x03\x02\x6e\x02\x6f\x02\x6f\x00\
\x01\x00\x03\x00\x49\x00\x4b\x02\x6a\x00\x01\x00\x00\x00\x01\x00\
\x08\x00\x02\x00\x2e\x00\x14\x02\x5a\x02\x5e\x02\x58\x02\x55\x02\
\x57\x02\x56\x02\x5b\x02\x59\x02\x5d\x02\x5c\x02\x4f\x02\x4a\x02\
\x4b\x02\x4c\x02\x4d\x02\x4e\x00\x1a\x00\x1c\x02\x53\x02\x65\x00\
\x02\x00\x04\x00\x14\x00\x1d\x00\x00\x02\x66\x02\x66\x00\x0a\x02\
\x70\x02\x70\x00\x0b\x04\x8d\x04\x94\x00\x0c\x00\x01\x00\x00\x00\
\x01\x00\x08\x00\x02\x00\x2e\x00\x14\x04\x94\x02\x70\x04\x8d\x04\
\x8e\x04\x8f\x04\x90\x04\x91\x02\x66\x04\x92\x04\x93\x02\x4c\x02\
\x4e\x02\x4d\x02\x4b\x02\x4f\x02\x65\x00\x1a\x02\x53\x00\x1c\x02\
\x4a\x00\x02\x00\x02\x00\x14\x00\x1d\x00\x00\x02\x55\x02\x5e\x00\
\x0a\x00\x01\x00\x00\x00\x01\x00\x08\x00\x02\x00\x2e\x00\x14\x02\
\x5b\x02\x5d\x02\x5e\x02\x58\x02\x55\x02\x57\x02\x56\x02\x59\x02\
\x5c\x02\x5a\x00\x1b\x00\x15\x00\x16\x00\x17\x00\x18\x00\x19\x00\
\x1a\x00\x1c\x00\x1d\x00\x14\x00\x01\x00\x14\x00\x1a\x00\x1c\x02\
\x4a\x02\x4b\x02\x4c\x02\x4d\x02\x4e\x02\x4f\x02\x53\x02\x65\x02\
\x66\x02\x70\x04\x8d\x04\x8e\x04\x8f\x04\x90\x04\x91\x04\x92\x04\
\x93\x04\x94\x00\x01\x00\x00\x00\x01\x00\x08\x00\x02\x00\x2e\x00\
\x14\x04\x91\x04\x92\x02\x70\x04\x8d\x04\x8e\x04\x8f\x04\x90\x02\
\x66\x04\x93\x00\x17\x00\x19\x00\x18\x00\x16\x00\x1b\x00\x14\x00\
\x1a\x00\x1d\x00\x1c\x00\x15\x04\x94\x00\x02\x00\x06\x00\x1a\x00\
\x1a\x00\x00\x00\x1c\x00\x1c\x00\x01\x02\x4a\x02\x4f\x00\x02\x02\
\x53\x02\x53\x00\x08\x02\x55\x02\x5e\x00\x09\x02\x65\x02\x65\x00\
\x13\x00\x01\x00\x00\x00\x01\x00\x08\x00\x01\x00\x06\x01\x81\x00\
\x01\x00\x01\x00\x13\x00\x06\x00\x00\x00\x01\x00\x08\x00\x03\x00\
\x01\x00\x12\x00\x01\x00\x6c\x00\x00\x00\x01\x00\x00\x00\x18\x00\
\x02\x00\x03\x01\x94\x01\x94\x00\x00\x01\xc5\x01\xc7\x00\x01\x02\
\x1f\x02\x25\x00\x04\x00\x01\x00\x00\x00\x01\x00\x08\x00\x02\x00\
\x3c\x00\x0a\x01\xc7\x01\xc6\x01\xc5\x02\x1f\x02\x20\x02\x21\x02\
\x22\x02\x23\x02\x24\x02\x25\x00\x01\x00\x00\x00\x01\x00\x08\x00\
\x02\x00\x1a\x00\x0a\x02\x3e\x00\x7a\x00\x73\x00\x74\x02\x3f\x02\
\x40\x02\x41\x02\x42\x02\x43\x02\x44\x00\x02\x00\x01\x00\x14\x00\
\x1d\x00\x00\
\x00\x00\x01\x2b\
\x3c\
\x73\x76\x67\x20\x78\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\
\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\
\x30\x2f\x73\x76\x67\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x34\
\x38\x70\x78\x22\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\
\x30\x20\x32\x34\x20\x32\x34\x22\x20\x77\x69\x64\x74\x68\x3d\x22\
\x34\x38\x70\x78\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x63\x30\x38\
\x38\x66\x66\x22\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\
\x20\x64\x3d\x22\x4d\x30\x20\x30\x68\x32\x34\x76\x32\x34\x48\x30\
\x56\x30\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\
\x2f\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\
\x22\x4d\x31\x36\x20\x37\x2e\x39\x37\x76\x38\x2e\x30\x35\x63\x31\
\x2e\x34\x38\x2d\x2e\x37\x33\x20\x32\x2e\x35\x2d\x32\x2e\x32\x35\
\x20\x32\x2e\x35\x2d\x34\x2e\x30\x32\x20\x30\x2d\x31\x2e\x37\x37\
\x2d\x31\x2e\x30\x32\x2d\x33\x2e\x32\x39\x2d\x32\x2e\x35\x2d\x34\
\x2e\x30\x33\x7a\x4d\x35\x20\x39\x76\x36\x68\x34\x6c\x35\x20\x35\
\x56\x34\x4c\x39\x20\x39\x48\x35\x7a\x6d\x37\x2d\x2e\x31\x37\x76\
\x36\x2e\x33\x34\x4c\x39\x2e\x38\x33\x20\x31\x33\x48\x37\x76\x2d\
\x32\x68\x32\x2e\x38\x33\x4c\x31\x32\x20\x38\x2e\x38\x33\x7a\x22\
\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\
\x00\x00\x00\xec\
\x3c\
\x73\x76\x67\x20\x78\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\
\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\
\x30\x2f\x73\x76\x67\x22\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x34\
\x38\x70\x78\x22\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\
\x30\x20\x32\x34\x20\x32\x34\x22\x20\x77\x69\x64\x74\x68\x3d\x22\
\x34\x38\x70\x78\x22\x20\x66\x69\x6c\x6c\x3d\x22\x23\x63\x30\x38\
\x38\x66\x66\x22\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\
\x20\x64\x3d\x22\x4d\x30\x20\x30\x68\x32\x34\x76\x32\x34\x48\x30\
\x56\x30\x7a\x22\x20\x66\x69\x6c\x6c\x3d\x22\x6e\x6f\x6e\x65\x22\
\x2f\x3e\x0d\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x20\x64\x3d\
\x22\x4d\x31\x34\x20\x38\x2e\x38\x33\x76\x36\x2e\x33\x34\x4c\x31\
\x31\x2e\x38\x33\x20\x31\x33\x48\x39\x76\x2d\x32\x68\x32\x2e\x38\
\x33\x4c\x31\x34\x20\x38\x2e\x38\x33\x4d\x31\x36\x20\x34\x6c\x2d\
\x35\x20\x35\x48\x37\x76\x36\x68\x34\x6c\x35\x20\x35\x56\x34\x7a\
\x22\x2f\x3e\x0d\x0a\x3c\x2f\x73\x76\x67\x3e\
"
qt_resource_name = b"\
\x00\x07\
\x0a\x43\x4f\x7f\
\x00\x73\
\x00\x6d\x00\x70\x00\x2e\x00\x69\x00\x63\x00\x6f\
\x00\x19\
\x06\xbe\xa3\xe7\
\x00\x66\
\x00\x75\x00\x6c\x00\x6c\x00\x73\x00\x63\x00\x72\x00\x65\x00\x65\x00\x6e\x00\x5f\x00\x62\x00\x6c\x00\x61\x00\x63\x00\x6b\x00\x5f\
\x00\x34\x00\x38\x00\x64\x00\x70\x00\x2e\x00\x73\x00\x76\x00\x67\
\x00\x18\
\x04\x51\xdb\x27\
\x00\x73\
\x00\x6b\x00\x69\x00\x70\x00\x5f\x00\x6e\x00\x65\x00\x78\x00\x74\x00\x5f\x00\x62\x00\x6c\x00\x61\x00\x63\x00\x6b\x00\x5f\x00\x34\
\x00\x38\x00\x64\x00\x70\x00\x2e\x00\x73\x00\x76\x00\x67\
\x00\x19\
\x09\x9f\x2a\xc7\
\x00\x66\
\x00\x6f\x00\x72\x00\x77\x00\x61\x00\x72\x00\x64\x00\x5f\x00\x33\x00\x30\x00\x5f\x00\x62\x00\x6c\x00\x61\x00\x63\x00\x6b\x00\x5f\
\x00\x34\x00\x38\x00\x64\x00\x70\x00\x2e\x00\x73\x00\x76\x00\x67\
\x00\x19\
\x05\x43\x83\x47\
\x00\x70\
\x00\x6c\x00\x61\x00\x79\x00\x5f\x00\x61\x00\x72\x00\x72\x00\x6f\x00\x77\x00\x5f\x00\x62\x00\x6c\x00\x61\x00\x63\x00\x6b\x00\x5f\
\x00\x34\x00\x38\x00\x64\x00\x70\x00\x2e\x00\x73\x00\x76\x00\x67\
\x00\x18\
\x09\x46\x09\xc7\
\x00\x76\
\x00\x6f\x00\x6c\x00\x75\x00\x6d\x00\x65\x00\x5f\x00\x75\x00\x70\x00\x5f\x00\x62\x00\x6c\x00\x61\x00\x63\x00\x6b\x00\x5f\x00\x34\
\x00\x38\x00\x64\x00\x70\x00\x2e\x00\x73\x00\x76\x00\x67\
\x00\x18\
\x05\x75\x33\x27\
\x00\x66\
\x00\x69\x00\x6c\x00\x65\x00\x5f\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x5f\x00\x62\x00\x6c\x00\x61\x00\x63\x00\x6b\x00\x5f\x00\x34\
\x00\x38\x00\x64\x00\x70\x00\x2e\x00\x73\x00\x76\x00\x67\
\x00\x07\
\x0a\x43\x57\xa7\
\x00\x73\
\x00\x6d\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x14\
\x07\xe9\x9d\x67\
\x00\x63\
\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x5f\x00\x62\x00\x6c\x00\x61\x00\x63\x00\x6b\x00\x5f\x00\x34\x00\x38\x00\x64\x00\x70\x00\x2e\
\x00\x73\x00\x76\x00\x67\
\x00\x13\
\x0b\x7a\x2b\xe7\
\x00\x69\
\x00\x6e\x00\x66\x00\x6f\x00\x5f\x00\x62\x00\x6c\x00\x61\x00\x63\x00\x6b\x00\x5f\x00\x34\x00\x38\x00\x64\x00\x70\x00\x2e\x00\x73\
\x00\x76\x00\x67\
\x00\x1b\
\x0b\x68\x21\xc7\
\x00\x68\
\x00\x65\x00\x6c\x00\x70\x00\x5f\x00\x6f\x00\x75\x00\x74\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x5f\x00\x62\x00\x6c\x00\x61\x00\x63\
\x00\x6b\x00\x5f\x00\x34\x00\x38\x00\x64\x00\x70\x00\x2e\x00\x73\x00\x76\x00\x67\
\x00\x1c\
\x08\xbb\x6e\x47\
\x00\x73\
\x00\x6b\x00\x69\x00\x70\x00\x5f\x00\x70\x00\x72\x00\x65\x00\x76\x00\x69\x00\x6f\x00\x75\x00\x73\x00\x5f\x00\x62\x00\x6c\x00\x61\
\x00\x63\x00\x6b\x00\x5f\x00\x34\x00\x38\x00\x64\x00\x70\x00\x2e\x00\x73\x00\x76\x00\x67\
\x00\x14\
\x09\x69\x93\x27\
\x00\x70\
\x00\x61\x00\x75\x00\x73\x00\x65\x00\x5f\x00\x62\x00\x6c\x00\x61\x00\x63\x00\x6b\x00\x5f\x00\x34\x00\x38\x00\x64\x00\x70\x00\x2e\
\x00\x73\x00\x76\x00\x67\
\x00\x18\
\x0a\xb4\x7c\x67\
\x00\x72\
\x00\x65\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x5f\x00\x31\x00\x30\x00\x5f\x00\x62\x00\x6c\x00\x61\x00\x63\x00\x6b\x00\x5f\x00\x34\
\x00\x38\x00\x64\x00\x70\x00\x2e\x00\x73\x00\x76\x00\x67\
\x00\x12\
\x08\x82\x7c\x46\
\x00\x52\
\x00\x6f\x00\x62\x00\x6f\x00\x74\x00\x6f\x00\x2d\x00\x52\x00\x65\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x72\x00\x2e\x00\x74\x00\x74\
\x00\x66\
\x00\x1a\
\x06\x1e\xcf\xc7\
\x00\x76\
\x00\x6f\x00\x6c\x00\x75\x00\x6d\x00\x65\x00\x5f\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x5f\x00\x62\x00\x6c\x00\x61\x00\x63\x00\x6b\
\x00\x5f\x00\x34\x00\x38\x00\x64\x00\x70\x00\x2e\x00\x73\x00\x76\x00\x67\
\x00\x1a\
\x08\x8c\x00\x27\
\x00\x76\
\x00\x6f\x00\x6c\x00\x75\x00\x6d\x00\x65\x00\x5f\x00\x6d\x00\x75\x00\x74\x00\x65\x00\x5f\x00\x62\x00\x6c\x00\x61\x00\x63\x00\x6b\
\x00\x5f\x00\x34\x00\x38\x00\x64\x00\x70\x00\x2e\x00\x73\x00\x76\x00\x67\
"
qt_resource_struct_v1 = b"\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x11\x00\x00\x00\x01\
\x00\x00\x00\x4c\x00\x00\x00\x00\x00\x01\x00\x00\x03\x6d\
\x00\x00\x00\xba\x00\x00\x00\x00\x00\x01\x00\x00\x0a\x47\
\x00\x00\x01\x28\x00\x00\x00\x00\x00\x01\x00\x00\x0c\xc1\
\x00\x00\x02\xd4\x00\x00\x00\x00\x00\x01\x00\x02\xd5\x9b\
\x00\x00\x00\x14\x00\x00\x00\x00\x00\x01\x00\x00\x02\x6e\
\x00\x00\x01\x72\x00\x00\x00\x00\x00\x01\x00\x00\x3b\x63\
\x00\x00\x02\xaa\x00\x00\x00\x00\x00\x01\x00\x00\x44\x53\
\x00\x00\x03\x0e\x00\x00\x00\x00\x00\x01\x00\x02\xd6\xca\
\x00\x00\x02\x08\x00\x00\x00\x00\x00\x01\x00\x00\x3f\x4e\
\x00\x00\x00\xf2\x00\x00\x00\x00\x00\x01\x00\x00\x0b\x28\
\x00\x00\x02\x46\x00\x00\x00\x00\x00\x01\x00\x00\x40\x41\
\x00\x00\x00\x82\x00\x00\x00\x00\x00\x01\x00\x00\x04\x5d\
\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x00\
\x00\x00\x01\x5e\x00\x00\x00\x00\x00\x01\x00\x00\x0e\x44\
\x00\x00\x02\x74\x00\x00\x00\x00\x00\x01\x00\x00\x41\x11\
\x00\x00\x01\xcc\x00\x00\x00\x00\x00\x01\x00\x00\x3d\xb8\
\x00\x00\x01\xa0\x00\x00\x00\x00\x00\x01\x00\x00\x3c\x81\
"
qt_resource_struct_v2 = b"\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x11\x00\x00\x00\x01\
\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x4c\x00\x00\x00\x00\x00\x01\x00\x00\x03\x6d\
\x00\x00\x01\x80\x84\x76\x70\xf3\
\x00\x00\x00\xba\x00\x00\x00\x00\x00\x01\x00\x00\x0a\x47\
\x00\x00\x01\x80\x84\x76\x70\xf3\
\x00\x00\x01\x28\x00\x00\x00\x00\x00\x01\x00\x00\x0c\xc1\
\x00\x00\x01\x80\x89\x7b\x5d\x7b\
\x00\x00\x02\xd4\x00\x00\x00\x00\x00\x01\x00\x02\xd5\x9b\
\x00\x00\x01\x80\x84\x76\x70\xfb\
\x00\x00\x00\x14\x00\x00\x00\x00\x00\x01\x00\x00\x02\x6e\
\x00\x00\x01\x80\x84\x76\x70\xeb\
\x00\x00\x01\x72\x00\x00\x00\x00\x00\x01\x00\x00\x3b\x63\
\x00\x00\x01\x80\x84\x76\x70\xf3\
\x00\x00\x02\xaa\x00\x00\x00\x00\x00\x01\x00\x00\x44\x53\
\x00\x00\x01\x80\x89\x92\x59\x4a\
\x00\x00\x03\x0e\x00\x00\x00\x00\x00\x01\x00\x02\xd6\xca\
\x00\x00\x01\x80\x84\x76\x70\xfb\
\x00\x00\x02\x08\x00\x00\x00\x00\x00\x01\x00\x00\x3f\x4e\
\x00\x00\x01\x80\x84\x76\x70\xf3\
\x00\x00\x00\xf2\x00\x00\x00\x00\x00\x01\x00\x00\x0b\x28\
\x00\x00\x01\x80\x84\x76\x70\xfb\
\x00\x00\x02\x46\x00\x00\x00\x00\x00\x01\x00\x00\x40\x41\
\x00\x00\x01\x80\x84\x76\x70\xeb\
\x00\x00\x00\x82\x00\x00\x00\x00\x00\x01\x00\x00\x04\x5d\
\x00\x00\x01\x80\x84\x76\x70\xeb\
\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x00\
\x00\x00\x01\x80\x84\x76\x70\xfb\
\x00\x00\x01\x5e\x00\x00\x00\x00\x00\x01\x00\x00\x0e\x44\
\x00\x00\x01\x80\x84\x76\x70\xfb\
\x00\x00\x02\x74\x00\x00\x00\x00\x00\x01\x00\x00\x41\x11\
\x00\x00\x01\x80\x84\x76\x70\xf3\
\x00\x00\x01\xcc\x00\x00\x00\x00\x00\x01\x00\x00\x3d\xb8\
\x00\x00\x01\x80\x89\x7b\x5d\x7b\
\x00\x00\x01\xa0\x00\x00\x00\x00\x00\x01\x00\x00\x3c\x81\
\x00\x00\x01\x80\x89\x7b\x5d\x91\
"
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()
|
# Link --> https://www.hackerrank.com/challenges/maximum-element/problem
# Code:
def getMax(operations):
maximum = 0
temp = []
answer = []
for i in operations:
if i != '2' and i != '3':
numbers = i.split()
number = int(numbers[1])
temp.append(number)
if number > maximum:
maximum = number
elif i == '2':
temp.pop()
if len(temp) != 0:
maximum = max(temp)
else:
maximum = 0
else:
answer.append(maximum)
return answer
|
Print("hello world");
print("Testing");
print("Salam")
print("Walikum as Salam")
print("testing Change");
print("New Change")
|
# Program to find the longest common prefix
def findMinLength(array, size):
minimum = len(array[0])
for i in range(1,size):
if (len(array[i])< minimum):
minimum = len(array[i])
return(minimum)
# A Function that returns the longest common prefix from the array of strings
def commonPrefix(array, size):
minimmum_length = findMinLength(array, size)
result =""
for i in range(minimmum_length):
common_char = array[0][i]
for j in range(1,size):
if (array[j][i] != common_char):
return result
# Append to result
result = result+common_char
return (result)
array = []
size = int(input("Enter size:"))
for i in range(size):
item=input()
array.append(item)
answer = commonPrefix (array, size)
if (len(answer)):
print("The longest common prefix is ",answer)
else:
print("There is no common prefix")
'''
Sample I/O:
Input:
Enter size: 3
star
start
stardom
Output:
The longest Common Prefix is : star
Time Complexity: O(size*M) (M = Length of the largest string)
Space Complexity:O(1)
'''
|
#!/usr/bin/env python
#############################################################################
### Natom_vs_Nsmichars.py
###
### Counts alphabet chars in SMILES for comparison with the atom count.
### Using Prestwick (from PubChem search, 1271 SMILES), the Spearman
### correlation coefficient is .997. This is useful since the char count
### can be performed very fast and without a chemical toolkit, and can
### be used for example to measure the fraction of a molecule contained
### by a scaffold.
###
### Jeremy Yang
### 18 Apr 2012
#############################################################################
import sys,os,re
import numpy
import openeye.oechem as oechem
if len(sys.argv)<2:
oechem.OEThrow.Usage("%s <infile> [<outfile>]"%sys.argv[0])
ims=oechem.oemolistream()
ims.open(sys.argv[1])
if len(sys.argv)>2:
oms=oechem.oemolostream()
oms.open(sys.argv[2])
else:
oms=None
natoms = []
nchars = []
for mol in ims.GetOEGraphMols():
na = mol.NumAtoms()
smi = oechem.OECreateSmiString(mol)
nc = len(re.sub(r'[^a-zA-Z]','',smi))
natoms.append(na)
nchars.append(nc)
if oms:
mol.SetTitle("%d\t%d"%(na,nc))
oechem.OEWriteMolecule(oms, mol)
ims.close()
if oms:
oms.close()
A=numpy.array(natoms)
C=numpy.array(nchars)
print "%s: N: %d"%(sys.argv[0],len(natoms))
print "%s: correlation coefficient: %.5f"%(sys.argv[0],numpy.corrcoef([A,C])[0][1])
|
from typing import Union, List, Dict
from nonebot import MessageSegment
from hoshino.log import new_logger
import base64, aiohttp, traceback
from .data import Data
from .config import config
from .api import Get_Random_Imginfo, Get_Imginfo
logger = new_logger('setu_download')
def b2b64(bytes: bytes) -> str:
base64_str = 'base64://' + base64.b64encode(bytes).decode()
return base64_str
async def Img_Download(project: str, url: str, pid: int) -> Union[bytes, bool]:
try:
headers = None
proxy = None
msg = f'Start Downloading Image With Pixiv.re -> PID: {pid}'
if project == 'lolicon' and config.lolicon_direct:
headers = {
'referer': f'https://www.pixiv.net/member_illust.php?mode=medium&illust_id={pid}'
}
proxy = config.proxy_url if config.lolicon_proxy else None
msg = f'Start Downloading Image With Pixiv.net -> PID: {pid}'
elif project == 'pixiv' and config.pixiv_direct:
headers = {
'referer': f'https://www.pixiv.net/member_illust.php?mode=medium&illust_id={pid}'
}
proxy = config.proxy_url if config.pixiv_proxy else None
msg = f'Start Downloading Image With Pixiv.net -> PID: {pid}'
logger.info(msg)
async with aiohttp.ClientSession(headers=headers, timeout=10) as session:
async with session.get(url, proxy=proxy) as req:
if req.status != 200:
data = False
else:
data = await req.read()
except:
logger.error(traceback.print_exc())
data = False
return data
async def get_random_setu(r18: int, limit: int, mode: int) -> Union[List[MessageSegment], bool]:
msg: list[MessageSegment] = []
setu = await Get_Random_Imginfo(r18, limit)
if setu['error']:
return setu['error']
elif not setu['data']:
return False
for data in setu['data']:
msg.append(await img_data(Data(**data), mode))
return msg
async def get_serach_setu(r18: int, limit: int, keyword: list, mode: int) -> Union[Dict[str, MessageSegment], bool]:
msg: list[MessageSegment] = []
setu = await Get_Imginfo(r18, keyword, limit)
if setu['error']:
return setu['error']
elif not setu['data']:
return False
for data in setu['data']:
msg.append(await img_data(Data(**data), mode))
return msg
async def img_data(data: Data, mode: int) -> Union[bool, list]:
url = data.urls['original'].replace('i.pixiv.cat', 'i.pixiv.re')
if mode != 2:
img = await Img_Download('lolicon', url, data.pid)
if not img:
logger.error('Image Download Fail')
return img
imgb64 = b2b64(img)
msg = f'''Title: {data.title}
Author: {data.author}
PixivID: {data.pid}'''
setu = MessageSegment.image(imgb64)
data = [msg, setu]
else:
data = [data.pid, url]
return data
|
import FWCore.ParameterSet.Config as cms
import copy
# AlCaReco for Bad Component Identification
OutALCARECOEcalTestPulsesRaw_noDrop = cms.PSet(
SelectEvents=cms.untracked.PSet(
SelectEvents=cms.vstring('pathALCARECOEcalTestPulsesRaw')
),
outputCommands=cms.untracked.vstring(
'keep FEDRawDataCollection_hltEcalCalibrationRaw_*_HLT',
'keep edmTriggerResults_*_*_HLT')
)
OutALCARECOEcalTestPulsesRaw = copy.deepcopy(OutALCARECOEcalTestPulsesRaw_noDrop)
OutALCARECOEcalTestPulsesRaw.outputCommands.insert(0, "drop *")
|
# Copyright 2018 Digital Domain 3.0
#
# Licensed under the Apache License, Version 2.0 (the "Apache License")
# with the following modification; you may not use this file except in
# compliance with the Apache License and the following modification to it:
# Section 6. Trademarks. is deleted and replaced with:
#
# 6. Trademarks. This License does not grant permission to use the trade
# names, trademarks, service marks, or product names of the Licensor
# and its affiliates, except as required to comply with Section 4(c) of
# the License and to reproduce the content of the NOTICE file.
#
# You may obtain a copy of the Apache License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the Apache License with the above modification is
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the Apache License for the specific
# language governing permissions and limitations under the Apache License.
"""
The imports module is designed to fix the import statements.
"""
import traceback
from qt_py_convert.general import ALIAS_DICT, change, supported_binding
from qt_py_convert.color import color_text, ANSI
from qt_py_convert.log import get_logger
EXPAND_STARS_LOG = get_logger("expand_stars")
class Processes(object):
"""Processes class for expand_stars"""
@staticmethod
def _get_children(binding, levels=None):
"""
You have done the following:
>>> from <binding>.<levels> import *
And I hate you a little bit.
I am changing it to the following:
>>> from <binding> import <levels>
But I don't know what the heck you used in the *
So I am just getting everything bootstrapped in. Sorry-not-sorry
"""
def _module_filtering(key):
import __builtin__
if key.startswith("__"):
return False
elif key in dir(__builtin__):
return False
return True
def _members(_mappings, _module_, module_name):
members = filter(_module_filtering, dir(_module))
for member in members:
mappings[member] = "{mod}.{member}".format(
mod=module_name,
member=member
)
mappings = {}
if levels is None:
levels = []
try:
_temp = __import__(binding, fromlist=levels)
except ImportError as err:
strerr = str(err).replace("No module named", "")
msg = (
"Attempting to resolve a * import from the {mod} "
"module failed.\n"
"This is usually because the module could not be imported. "
"Please check that this script can import it. The error was:\n"
"{err}"
).format(mod=strerr, err=str(err))
traceback.print_exc()
raise ImportError(msg)
if not levels:
_module = _temp
_members(mappings, _module, module_name=binding)
else:
for level in levels:
_module = getattr(_temp, level)
_members(mappings, _module, module_name=level)
return mappings
@classmethod
def _process_star(cls, red, stars, skip_lineno=False):
"""
_process_star is designed to replace from X import * methods.
:param red: redbaron process. Unused in this method.
:type red: redbardon.RedBaron
:param stars: List of redbaron nodes that matched for this proc.
:type stars: list
"""
mappings = {}
for star in stars:
from_import = star.parent
binding = from_import.value[0]
second_level_modules = None
if len(star.parent.value) > 1:
second_level_modules = [star.parent.value[1].dumps()]
if len(star.parent.value) > 2:
pass
children = cls._get_children(binding.dumps(), second_level_modules)
if second_level_modules is None:
second_level_modules = children
text = "from {binding} import {slm}".format(
binding="Qt",
slm=", ".join([name for name in second_level_modules])
)
change(
logger=EXPAND_STARS_LOG,
node=star.parent,
replacement=text,
skip_lineno=skip_lineno
)
mappings.update(children)
# star.replace(
# text
# )
return mappings
EXPAND_STR = "EXPAND"
EXPAND = _process_star
def star_process(store):
"""
star_process is one of the more complex handlers for the _modules.
:param store: Store is the issues dict defined in "process"
:type store: dict
:return: The filter_function callable.
:rtype: callable
"""
def filter_function(value):
for target in value.parent.targets:
if target.type == "star" and supported_binding(value.dumps()):
store[Processes.EXPAND_STR].add(value)
return True
return filter_function
def process(red, skip_lineno=False, **kwargs):
"""
process is the main function for the import process.
:param red: Redbaron ast.
:type red: redbaron.redbaron
:param skip_lineno: An optional performance flag. By default, when the
script replaces something, it will tell you which line it is
replacing on. This can be useful for tracking the places that
changes occurred. When you turn this flag on however, it will not
show the line numbers. This can give great performance increases
because redbaron has trouble calculating the line number sometimes.
:type skip_lineno: bool
:param kwargs: Any other kwargs will be ignored.
:type kwargs: dict
"""
issues = {
Processes.EXPAND_STR: set(),
}
EXPAND_STARS_LOG.warning(color_text(
text="\"import star\" used. We are bootstrapping code!",
color=ANSI.colors.red,
))
EXPAND_STARS_LOG.warning(color_text(
text="This will be very slow. It's your own fault.",
color=ANSI.colors.red,
))
values = red.find_all("FromImportNode", value=star_process(issues))
mappings = getattr(Processes, Processes.EXPAND_STR)(
red, issues[Processes.EXPAND_STR], skip_lineno=skip_lineno
)
return ALIAS_DICT, mappings
|
"""Object utilities."""
from __future__ import absolute_import, unicode_literals
from copy import copy
from .connection import maybe_channel
from .exceptions import NotBoundError
from .five import python_2_unicode_compatible
from .utils.functional import ChannelPromise
__all__ = ('Object', 'MaybeChannelBound')
def unpickle_dict(cls, kwargs):
return cls(**kwargs)
def _any(v):
return v
class Object(object):
"""Common base class.
Supports automatic kwargs->attributes handling, and cloning.
"""
attrs = ()
def __init__(self, *args, **kwargs):
for name, type_ in self.attrs:
value = kwargs.get(name)
if value is not None:
setattr(self, name, (type_ or _any)(value))
else:
try:
getattr(self, name)
except AttributeError:
setattr(self, name, None)
def as_dict(self, recurse=False):
def f(obj, type):
if recurse and isinstance(obj, Object):
return obj.as_dict(recurse=True)
return type(obj) if type and obj is not None else obj
return {
attr: f(getattr(self, attr), type) for attr, type in self.attrs
}
def __reduce__(self):
return unpickle_dict, (self.__class__, self.as_dict())
def __copy__(self):
return self.__class__(**self.as_dict())
@python_2_unicode_compatible
class MaybeChannelBound(Object):
"""Mixin for classes that can be bound to an AMQP channel."""
_channel = None
_is_bound = False
#: Defines whether maybe_declare can skip declaring this entity twice.
can_cache_declaration = False
def __call__(self, channel):
"""`self(channel) -> self.bind(channel)`."""
return self.bind(channel)
def bind(self, channel):
"""Create copy of the instance that is bound to a channel."""
return copy(self).maybe_bind(channel)
def maybe_bind(self, channel):
"""Bind instance to channel if not already bound."""
if not self.is_bound and channel:
self._channel = maybe_channel(channel)
self.when_bound()
self._is_bound = True
return self
def revive(self, channel):
"""Revive channel after the connection has been re-established.
Used by :meth:`~kombu.Connection.ensure`.
"""
if self.is_bound:
self._channel = channel
self.when_bound()
def when_bound(self):
"""Callback called when the class is bound."""
pass
def __repr__(self):
return self._repr_entity(type(self).__name__)
def _repr_entity(self, item=''):
item = item or type(self).__name__
if self.is_bound:
return '<{0} bound to chan:{1}>'.format(
item or type(self).__name__, self.channel.channel_id)
return '<unbound {0}>'.format(item)
@property
def is_bound(self):
"""Flag set if the channel is bound."""
return self._is_bound and self._channel is not None
@property
def channel(self):
"""Current channel if the object is bound."""
channel = self._channel
if channel is None:
raise NotBoundError(
"Can't call method on {0} not bound to a channel".format(
type(self).__name__))
if isinstance(channel, ChannelPromise):
channel = self._channel = channel()
return channel
|
from qiwi_handler.utils.methods import MakeDict
class MobilePinInfo(MakeDict):
def __init__(self,
mobile_pin_used: bool = None,
last_mobile_pin_change: bool = None,
next_mobile_pin_change: str = None,
):
self.mobilePinUsed = mobile_pin_used
self.lastMobilePinChange = last_mobile_pin_change
self.nextMobilePinChange = next_mobile_pin_change
|
def increase_number_roundness(n):
return '0' in str(n).rstrip('0')
if __name__ == '__main__':
n = 902200100
print(increase_number_roundness(n))
|
# -*- coding: utf-8 -*-
# _ __
# | |/ /___ ___ _ __ ___ _ _ ®
# | ' </ -_) -_) '_ \/ -_) '_|
# |_|\_\___\___| .__/\___|_|
# |_|
#
# Keeper Commander
# Copyright 2018 Keeper Security Inc.
# Contact: ops@keepersecurity.com
#
from ldap3 import Server, Connection, ALL
"""Commander Plugin for Active Directory
Dependencies:
pip3 install ldap3
"""
def rotate(record, newpassword):
result = False
old_password = record.password
host = record.get('cmdr:host')
port = record.get('cmdr:port') or '389'
user_dn = record.get('cmdr:userdn')
use_ssl = record.get('cmdr:use_ssl')
try:
# print('Connecting to ' + host)
server = Server(
host=host,
port=int(port),
use_ssl=(use_ssl in ['True','true','yes','Yes','y','Y','T','t']),
get_info=ALL)
conn = Connection(
server=server,
user=user_dn,
password=record.password,
auto_bind=True)
# print('Connection: ' + str(conn))
# print('Server Info: ' + str(server.info))
# print('Whoami: ' + str(conn.extend.standard.who_am_i()))
changePwdResult = conn.extend.microsoft.modify_password(
user=user_dn, new_password=newpassword, old_password=old_password)
if (changePwdResult == True):
print('Password changed successfully')
record.password = newpassword
result = True
else:
print('Error with adpasswd change: ' + conn.result)
conn.unbind()
except Exception as e:
print("Error during connection to AD server: %s" % e)
return result
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.