file_name
stringlengths 3
137
| prefix
stringlengths 0
918k
| suffix
stringlengths 0
962k
| middle
stringlengths 0
812k
|
---|---|---|---|
views.py | # vim: tabstop=4 shiftwidth=4 softtabstop=4
# Copyright 2011 United States Government as represented by the
# Administrator of the National Aeronautics and Space Administration.
# All Rights Reserved.
#
# Copyright 2011 Fourth Paradigm Development, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import logging
from django import template
from django import shortcuts
from django.contrib import messages
from django_openstack import api
from django_openstack import forms
from openstackx.api import exceptions as api_exceptions
LOG = logging.getLogger('django_openstack.auth')
class Login(forms.SelfHandlingForm):
username = forms.CharField(max_length="20", label="User Name")
password = forms.CharField(max_length="20", label="Password",
widget=forms.PasswordInput(render_value=False))
def handle(self, request, data):
try:
token = api.token_create(request,
data.get('tenant', ''),
data['username'],
data['password'])
info = api.token_info(request, token)
request.session['token'] = token.id
request.session['user'] = info['user']
request.session['tenant'] = data.get('tenant', info['tenant'])
request.session['admin'] = info['admin']
request.session['serviceCatalog'] = token.serviceCatalog
LOG.info('Login form for user "%s". Service Catalog data:\n%s' %
(data['username'], token.serviceCatalog))
return shortcuts.redirect('dash_overview')
except api_exceptions.Unauthorized as e: | msg = 'Error authenticating: %s' % e.message
LOG.error(msg, exc_info=True)
messages.error(request, msg)
except api_exceptions.ApiException as e:
messages.error(request, 'Error authenticating with keystone: %s' %
e.message)
class LoginWithTenant(Login):
username = forms.CharField(max_length="20",
widget=forms.TextInput(attrs={'readonly':'readonly'}))
tenant = forms.CharField(widget=forms.HiddenInput())
def login(request):
if request.user and request.user.is_authenticated():
if request.user.is_admin():
return shortcuts.redirect('syspanel_overview')
else:
return shortcuts.redirect('dash_overview')
form, handled = Login.maybe_handle(request)
if handled:
return handled
return shortcuts.render_to_response('splash.html', {
'form': form,
}, context_instance=template.RequestContext(request))
def switch_tenants(request, tenant_id):
form, handled = LoginWithTenant.maybe_handle(
request, initial={'tenant': tenant_id,
'username': request.user.username})
if handled:
return handled
return shortcuts.render_to_response('switch_tenants.html', {
'to_tenant': tenant_id,
'form': form,
}, context_instance=template.RequestContext(request))
def logout(request):
request.session.clear()
return shortcuts.redirect('splash') | |
ios_lob_app_provisioning_configuration_assignment.go | package models
import (
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91 "github.com/microsoft/kiota-abstractions-go/serialization"
)
// IosLobAppProvisioningConfigurationAssignment
type IosLobAppProvisioningConfigurationAssignment struct {
Entity
// The target group assignment defined by the admin.
target DeviceAndAppManagementAssignmentTargetable
}
// NewIosLobAppProvisioningConfigurationAssignment instantiates a new iosLobAppProvisioningConfigurationAssignment and sets the default values.
func NewIosLobAppProvisioningConfigurationAssignment()(*IosLobAppProvisioningConfigurationAssignment) {
m := &IosLobAppProvisioningConfigurationAssignment{
Entity: *NewEntity(),
}
return m
}
// CreateIosLobAppProvisioningConfigurationAssignmentFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value
func | (parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) {
return NewIosLobAppProvisioningConfigurationAssignment(), nil
}
// GetFieldDeserializers the deserialization information for the current model
func (m *IosLobAppProvisioningConfigurationAssignment) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) {
res := m.Entity.GetFieldDeserializers()
res["target"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetObjectValue(CreateDeviceAndAppManagementAssignmentTargetFromDiscriminatorValue)
if err != nil {
return err
}
if val != nil {
m.SetTarget(val.(DeviceAndAppManagementAssignmentTargetable))
}
return nil
}
return res
}
// GetTarget gets the target property value. The target group assignment defined by the admin.
func (m *IosLobAppProvisioningConfigurationAssignment) GetTarget()(DeviceAndAppManagementAssignmentTargetable) {
if m == nil {
return nil
} else {
return m.target
}
}
// Serialize serializes information the current object
func (m *IosLobAppProvisioningConfigurationAssignment) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) {
err := m.Entity.Serialize(writer)
if err != nil {
return err
}
{
err = writer.WriteObjectValue("target", m.GetTarget())
if err != nil {
return err
}
}
return nil
}
// SetTarget sets the target property value. The target group assignment defined by the admin.
func (m *IosLobAppProvisioningConfigurationAssignment) SetTarget(value DeviceAndAppManagementAssignmentTargetable)() {
if m != nil {
m.target = value
}
}
| CreateIosLobAppProvisioningConfigurationAssignmentFromDiscriminatorValue |
index.js | /**
* Copyright © INOVUA TRADING.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import React, { cloneElement } from 'react';
import PropTypes from 'prop-types';
import Region from '../../../packages/region';
import shallowequal, { equalReturnKey } from '../../../packages/shallowequal';
import autoBind from '../../../packages/react-class/autoBind';
import RENDER_HEADER from './renderHeader';
import renderGroupTool from './renderGroupTool';
import renderNodeTool from './renderNodeTool';
import sealedObjectFactory from '../../../utils/sealedObjectFactory';
import join from '../../../packages/join';
import isFocusable from '../../../utils/isFocusable';
import bemFactory from '../../../bemFactory';
import renderSortTool from './renderSortTool';
import { id as REORDER_COLUMN_ID } from '../../../normalizeColumns/defaultRowReorderColumnId';
import TextEditor from './editors/Text';
// import diff from '../../../packages/shallow-changes';
const cellBem = bemFactory('InovuaReactDataGrid__cell');
const headerBem = bemFactory('InovuaReactDataGrid__column-header');
const emptyObject = Object.freeze ? Object.freeze({}) : {};
const emptyFn = () => { };
const CELL_RENDER_OBJECT = sealedObjectFactory({
empty: null,
value: null,
data: null,
columnIndex: null,
rowIndex: null,
remoteRowIndex: null,
rowIndexInGroup: null,
nodeProps: null,
rowSelected: null,
rowExpanded: null,
treeColumn: null,
setRowSelected: null,
setRowExpanded: null,
isRowExpandable: null,
toggleRowExpand: null,
toggleNodeExpand: null,
loadNodeAsync: null,
toggleGroup: null,
cellProps: null,
totalDataCount: null,
rendersInlineEditor: null,
});
const CELL_RENDER_SECOND_OBJ = sealedObjectFactory({
cellProps: null,
column: null,
headerProps: null,
});
const wrapInContent = (value) => (React.createElement("div", { key: "content", className: "InovuaReactDataGrid__cell__content", children: value }));
export default class InovuaDataGridCell extends React.Component {
constructor(props) {
super(props);
this.toggleGroup = event => {
if (event && event.preventDefault) {
event.preventDefault();
}
const props = this.getProps();
if (typeof props.onGroupToggle === 'function') {
const { data } = props;
props.onGroupToggle(data.keyPath, props, event);
}
};
this.domRef = React.createRef();
this.state = { props };
autoBind(this);
if (props.headerCell) {
this.state.left = 0;
}
this.isCancelled = false;
}
UNSAFE_componentWillReceiveProps(nextProps) {
this.updateProps(nextProps);
}
getProps() {
return this.state.props;
}
setStateProps(stateProps) {
if (this.unmounted) {
return;
}
const newProps = Object.assign({}, InovuaDataGridCell.defaultProps, stateProps);
if (!shallowequal(newProps, this.getProps())) {
this.updateProps(newProps);
}
}
updateProps(props, callback) {
const newState = { props };
this.updateState(newState, callback);
}
onUpdate() {
if (this.props.onUpdate) {
this.props.onUpdate(this.getProps(), this);
}
}
componentDidMount() {
this.node = this.getDOMNode();
if (this.props.onMount) {
this.props.onMount(this.props, this);
}
if (this.props.naturalRowHeight) {
// this.cleanupResizeObserver = setupResizeObserver(this.node, size => {
// this.props.onResize?.({
// cell: this,
// props: this.getProps(),
// size,
// });
// });
}
}
componentWillUnmount() {
if (this.cleanupResizeObserver) {
this.cleanupResizeObserver();
}
if (this.props.onUnmount) {
this.props.onUnmount(this.props, this);
}
this.unmounted = true;
}
shouldComponentUpdate(nextProps, nextState) {
let areEqual = equalReturnKey(nextProps, this.props, {
computedActiveIndex: 1,
activeRowRef: 1,
active: 1,
remoteRowIndex: 1,
onResizeMouseDown: 1,
onResizeTouchStart: 1,
onFocus: 1,
onSortClick: 1,
onTouchStart: 1,
});
const equalProps = areEqual.result;
if (!areEqual.result) {
// console.log(
// 'UPDATE CELL',
// areEqual.key,
// // this.props[areEqual.key!],
// // nextProps[areEqual.key!],
// diff(nextProps, this.props)
// );
return true;
}
if (equalProps && !this.updating) {
return false;
}
const equal = this.state
? equalProps && shallowequal(nextState, this.state)
: equalProps;
return !equal;
}
prepareStyle(props) {
const { maxWidth, minRowHeight, computedLocked, virtualizeColumns, computedWidth, computedOffset, rowHeight, initialRowHeight, naturalRowHeight, headerCell, hidden, rtl, inTransition, inShowTransition, computedRowspan, zIndex, } = props;
const style = {};
if (typeof props.style === 'function') {
if (!headerCell) {
Object.assign(style, props.style(props));
}
}
else {
Object.assign(style, props.style);
}
style.width = computedWidth;
style.minWidth = computedWidth;
if (minRowHeight) {
style.minHeight = minRowHeight;
}
if (headerCell) {
style.maxWidth = computedWidth;
}
if (maxWidth) {
style.maxWidth = maxWidth;
}
if (!headerCell) {
if (rowHeight && !naturalRowHeight) {
style.height = rowHeight;
}
if (naturalRowHeight) {
style.minHeight = minRowHeight;
}
else {
if (initialRowHeight) {
style.height = initialRowHeight;
}
if (rowHeight && computedRowspan > 1) {
style.height = (initialRowHeight || rowHeight) * computedRowspan;
}
}
}
if (hidden) {
style.display = 'none';
}
if (!headerCell && !computedLocked) {
// style.position = naturalRowHeight ? 'relative' : 'absolute';
style.position = naturalRowHeight ? 'relative' : 'absolute';
style.top = 0;
if (!naturalRowHeight) {
if (rtl) {
style.right = computedOffset;
}
else {
style.left = computedOffset;
}
}
}
if (this.state && this.state.dragging) {
if (rtl) {
style.right = this.state.right || 0;
}
else {
style.left = this.state.left || 0;
}
style.top = this.state.top || 0;
style.height = this.state.height || '';
if (!props.computedResizable && props.computedFilterable) {
if (rtl) {
style.right = 0;
}
else {
style.left = 0;
}
style.top = 0;
}
style.position = 'absolute';
style.zIndex = 100;
}
if (zIndex) {
style.zIndex = zIndex;
}
if (computedWidth === 0) {
style.paddingLeft = 0;
style.paddingRight = 0;
}
if (inTransition) {
let duration = inShowTransition
? props.showTransitionDuration
: props.hideTransitionDuration;
duration = duration || props.visibilityTransitionDuration;
style.transitionDuration =
typeof duration == 'number' ? `${duration}ms` : duration;
}
return style;
}
prepareClassName(props) {
const { groupCell: isGroupCell, groupTitleCell, groupExpandCell, headerCell: isHeaderCell, headerCellDefaultClassName, cellDefaultClassName, computedGroupBy, depth, computedVisibleIndex, headerCell, headerEllipsis, groupProps, hidden, showBorderRight, showBorderTop, showBorderBottom, showBorderLeft, firstInSection, lastInSection, noBackground, computedLocked, computedWidth, inTransition, rowSelected, computedRowspan, cellSelected, cellActive, groupSpacerColumn, computedPivot, computedResizable, groupColumnVisible, lockable, computedFilterable, rtl, inEdit, } = props;
let { userSelect, headerUserSelect } = props;
if (typeof userSelect === 'boolean') {
userSelect = userSelect ? 'text' : 'none';
}
if (typeof headerUserSelect === 'boolean') {
headerUserSelect = headerUserSelect ? 'text' : 'none';
}
const nested = depth != null &&
computedVisibleIndex == 0 &&
!headerCell &&
!groupColumnVisible;
const baseClassName = isHeaderCell
? headerCellDefaultClassName
: cellDefaultClassName;
const commonClassName = join(!computedLocked && `${baseClassName}--unlocked`, computedLocked && `${baseClassName}--locked`, computedLocked && `${baseClassName}--locked-${computedLocked}`);
const last = props.last ||
props.computedVisibleIndex == props.computedVisibleCount - 1;
let className = join(typeof props.className === 'function'
? props.className(props)
: props.className, baseClassName, commonClassName, !isHeaderCell && props.cellClassName, (nested || hidden) && `${baseClassName}--no-padding`, hidden && `${baseClassName}--hidden`, `${baseClassName}--direction-${rtl ? 'rtl' : 'ltr'}`, computedRowspan > 1 && `${baseClassName}--rowspan`, inTransition && `${baseClassName}--transition`, inTransition && computedWidth && `${baseClassName}--showing`, inTransition && !computedWidth && `${baseClassName}--hiding`, computedWidth === 0 && `${baseClassName}--no-size`, nested && `${baseClassName}--stretch`, (isHeaderCell && headerUserSelect == null) || !isHeaderCell
? userSelect && `${baseClassName}--user-select-${userSelect}`
: null, groupExpandCell && `${baseClassName}--group-expand-cell`, groupTitleCell && `${baseClassName}--group-title-cell`, rowSelected && `${baseClassName}--selected`, groupProps && `${baseClassName}--group-cell`, computedPivot && `${baseClassName}--pivot-enabled`, groupSpacerColumn && `${baseClassName}--group-column-cell`, inEdit && `${baseClassName}--in-edit`, cellSelected && `${baseClassName}--cell-selected`, cellActive && `${baseClassName}--cell-active`, props.textAlign &&
(isHeaderCell ? !props.headerAlign : true) &&
`${baseClassName}--align-${props.textAlign}`, props.textVerticalAlign &&
(isHeaderCell ? !props.headerVerticalAlign : true) &&
`${baseClassName}--vertical-align-${props.textVerticalAlign}`, props.virtualizeColumns && `${baseClassName}--virtualize-columns`, props.computedVisibleIndex === 0 && `${baseClassName}--first`, props.rowIndexInGroup === 0 && `${baseClassName}--first-row-in-group`, last && `${baseClassName}--last`, showBorderLeft &&
computedWidth !== 0 &&
(!isHeaderCell || !(computedResizable || computedFilterable)) &&
`${baseClassName}--show-border-${rtl ? 'right' : 'left'}`, firstInSection && `${baseClassName}--first-in-section`, lastInSection && `${baseClassName}--last-in-section`, showBorderRight &&
computedWidth !== 0 &&
(!isHeaderCell || !(computedResizable || computedFilterable)) &&
`${baseClassName}--show-border-${rtl ? 'left' : 'right'}`, showBorderTop && `${baseClassName}--show-border-top`, showBorderBottom && `${baseClassName}--show-border-bottom`, noBackground && `${baseClassName}--no-background`);
if (cellSelected) {
className = join(className, props.hasTopSelectedSibling &&
`${baseClassName}--cell-has-top-selected-sibling`, props.hasBottomSelectedSibling &&
`${baseClassName}--cell-has-bottom-selected-sibling`, props.hasLeftSelectedSibling &&
`${baseClassName}--cell-has-${rtl ? 'right' : 'left'}-selected-sibling`, props.hasRightSelectedSibling &&
`${baseClassName}--cell-has-${rtl ? 'left' : 'right'}-selected-sibling`);
}
if (isHeaderCell) {
className = join(className, commonClassName, props.headerClassName, props.titleClassName, this.state && this.state.dragging && `${baseClassName}--dragging`, this.state && this.state.left && `${baseClassName}--reordered`, props.computedSortable && `${baseClassName}--sortable`, headerUserSelect && `${baseClassName}--user-select-${headerUserSelect}`, last && !headerEllipsis && `${baseClassName}--overflow-hidden`, `${baseClassName}--align-${props.headerAlign || 'start'}`, props.group
? `${baseClassName}--has-group`
: `${baseClassName}--has-no-group`, props.headerVerticalAlign &&
`${baseClassName}--vertical-align-${props.headerVerticalAlign}`, props.computedResizable
? `${baseClassName}--resizable`
: `${baseClassName}--unresizable`, props.computedLockable
? `${baseClassName}--lockable`
: `${baseClassName}--unlockable`, props.lastInGroup && `${baseClassName}--last-in-group`);
}
else {
className = join(className, (groupProps
? groupProps.depth == computedVisibleIndex
: computedGroupBy
? computedGroupBy.length === computedVisibleIndex
: computedVisibleIndex === 0) &&
`${baseClassName}--active-row-left-border`);
}
if (isGroupCell) {
className = join(className, 'InovuaReactDataGrid__group-cell');
}
return className;
}
setDragging(dragging, callback) {
const newState = { dragging };
if (!dragging) {
newState.top = 0;
if (this.props.rtl) {
newState.right = 0;
}
else {
newState.left = 0;
}
}
this.updateState(newState, callback);
}
updateState(state, callback) {
this.updating = true;
this.setState(state, () => {
this.updating = false;
if (callback && typeof callback === 'function') {
callback();
}
});
}
setLeft(left) {
this.updateState({ left });
}
setRight(right) {
this.updateState({ right });
}
setTop(top) {
this.updateState({ top });
}
setHeight(height) {
this.updateState({ height });
}
setWidth(width) {
this.updateState({ width });
}
getInitialIndex() {
return this.props.computedVisibleIndex;
}
getcomputedVisibleIndex() {
return this.getProps().computedVisibleIndex;
}
render() {
const props = this.getProps();
const { cellActive, cellSelected, data, empty, groupProps, headerCell, hidden, name, onCellEnter, onRender, treeColumn, groupSpacerColumn, groupColumn, loadNodeAsync, groupColumnVisible, rowIndex, remoteRowIndex, rowSelected, rowExpanded, setRowSelected, setRowExpanded, isRowExpandable, toggleRowExpand, toggleNodeExpand, totalDataCount, computedVisibleIndex, inEdit, } = props;
let { value, render: renderCell, renderSummary } = props;
const className = this.prepareClassName(props);
const style = this.prepareStyle(props);
const headerProps = headerCell ? props.headerProps || emptyObject : null;
if (!headerCell &&
groupSpacerColumn &&
groupProps &&
groupProps.depth == computedVisibleIndex) {
value = this.renderGroupTool();
}
const children = value;
let cellProps = Object.assign({}, props, headerCell ? headerProps : props.cellProps, {
instance: this,
value,
name,
columnIndex: computedVisibleIndex,
children,
onClick: this.onClick,
onDoubleClick: this.onDoubleClick,
onContextMenu: this.onContextMenu,
onMouseDown: this.onMouseDown,
onTouchStart: this.onTouchStart,
});
cellProps.className = headerCell
? headerProps.className
? `${className} ${headerProps.className}`
: className
: props.cellProps && props.cellProps.className
? typeof props.cellProps.className === 'function'
? `${className} ${props.cellProps.className(cellProps)}`
: `${className} ${props.cellProps.className}`
: className;
if (!headerCell) {
CELL_RENDER_OBJECT.empty = empty;
CELL_RENDER_OBJECT.value = value;
CELL_RENDER_OBJECT.data = data;
CELL_RENDER_OBJECT.cellProps = cellProps;
CELL_RENDER_OBJECT.columnIndex = computedVisibleIndex;
CELL_RENDER_OBJECT.treeColumn = treeColumn;
CELL_RENDER_OBJECT.rowIndex = rowIndex;
CELL_RENDER_OBJECT.remoteRowIndex = remoteRowIndex;
CELL_RENDER_OBJECT.rowIndexInGroup = props.rowIndexInGroup;
CELL_RENDER_OBJECT.rowSelected = rowSelected;
CELL_RENDER_OBJECT.rowExpanded = rowExpanded;
CELL_RENDER_OBJECT.nodeProps = data ? data.__nodeProps : emptyObject;
CELL_RENDER_OBJECT.setRowSelected = setRowSelected;
CELL_RENDER_OBJECT.setRowExpanded = setRowExpanded;
CELL_RENDER_OBJECT.toggleGroup = this.toggleGroup;
CELL_RENDER_OBJECT.toggleRowExpand = toggleRowExpand;
CELL_RENDER_OBJECT.toggleNodeExpand = toggleNodeExpand;
CELL_RENDER_OBJECT.loadNodeAsync = loadNodeAsync;
CELL_RENDER_OBJECT.isRowExpandable = isRowExpandable; | }
let rendersInlineEditor = headerCell
? false
: cellProps.rendersInlineEditor;
if (rendersInlineEditor && typeof rendersInlineEditor === 'function') {
rendersInlineEditor = cellProps.rendersInlineEditor(CELL_RENDER_OBJECT);
}
CELL_RENDER_OBJECT.rendersInlineEditor = rendersInlineEditor;
cellProps.style = headerCell
? headerProps.style
? Object.assign({}, style, headerProps.style)
: style
: props.cellProps && props.cellProps.style
? typeof props.cellProps.style === 'function'
? Object.assign({}, style, props.cellProps.style(cellProps))
: Object.assign({}, style, props.cellProps.style)
: style;
if (inEdit || rendersInlineEditor) {
cellProps.editProps = {
inEdit,
startEdit: this.startEdit,
value: props.editValue,
onClick: this.onEditorClick,
onChange: this.onEditValueChange,
onComplete: this.onEditorComplete,
onCancel: this.onEditorCancel,
onEnterNavigation: this.onEditorEnterNavigation,
onTabNavigation: this.onEditorTabNavigation,
gotoNext: this.gotoNextEditor,
gotoPrev: this.gotoPrevEditor,
};
}
if (onCellEnter) {
cellProps.onMouseEnter = this.onCellEnter;
}
if (headerCell) {
cellProps.onFocus = this.onHeaderCellFocus;
}
if (headerCell) {
cellProps = this.prepareHeaderCellProps(cellProps);
}
else {
if (data &&
(data.__summary || (data.__group && data.groupColumnSummary)) &&
renderSummary) {
renderCell = renderSummary;
}
if (renderCell) {
// reuse the same sealed object in order to have better perf
CELL_RENDER_SECOND_OBJ.cellProps = cellProps;
CELL_RENDER_SECOND_OBJ.column = cellProps;
CELL_RENDER_SECOND_OBJ.headerProps = null;
if (data && (!data.__group || groupColumnVisible)) {
// group rendering is handled in renderGroupTitle (see adjustCellProps)
cellProps.children = renderCell(CELL_RENDER_OBJECT, CELL_RENDER_SECOND_OBJ);
}
}
if (!hidden &&
cellProps.children != null &&
cellProps.textEllipsis !== false) {
cellProps.children = wrapInContent(cellProps.children);
}
if (onRender) {
onRender(cellProps, CELL_RENDER_OBJECT);
}
if (cellSelected || cellActive || inEdit || rendersInlineEditor) {
cellProps.children = [
cellProps.children,
this.renderSelectionBox(cellProps),
inEdit && !rendersInlineEditor ? this.renderEditor(cellProps) : null,
];
}
if (treeColumn) {
if (Array.isArray(cellProps.children)) {
cellProps.children = [
this.renderNodeTool(props),
...cellProps.children,
];
}
else {
cellProps.children = [this.renderNodeTool(props), cellProps.children];
}
}
}
const initialDOMProps = this.getInitialDOMProps();
const domProps = Object.assign({}, initialDOMProps, {
onFocus: cellProps.onFocus || initialDOMProps.onFocus,
onClick: cellProps.onClick || initialDOMProps.onClick,
onContextMenu: cellProps.onContextMenu || initialDOMProps.onContextMenu,
onDoubleClick: cellProps.onDoubleClick || initialDOMProps.onDoubleClick,
onMouseDown: cellProps.onMouseDown || initialDOMProps.onMouseDown,
onTouchStart: cellProps.onTouchStart || initialDOMProps.onTouchStart,
onMouseEnter: cellProps.onMouseEnter || initialDOMProps.onMouseEnter,
style: initialDOMProps.style
? Object.assign({}, initialDOMProps.style, cellProps.style)
: cellProps.style,
className: join(initialDOMProps.className, cellProps.className),
});
domProps.ref = this.domRef;
return headerCell ? (RENDER_HEADER(cellProps, domProps, this, this.state)) : (React.createElement("div", Object.assign({}, domProps, { children: cellProps.children, id: null, name: null, value: null, title: null, data: null })));
}
renderNodeTool(props) {
const { data } = props;
const nodeProps = data.__nodeProps || emptyObject;
const leafNode = nodeProps.leafNode;
const loading = nodeProps.loading;
const expanded = nodeProps.expanded;
const collapsed = !expanded;
const style = {
[this.props.rtl ? 'marginRight' : 'marginLeft']: (nodeProps.depth || 0) * props.treeNestingSize,
};
if (this.props.rtl && collapsed) {
style.transform = 'rotate(180deg)';
}
const element = renderNodeTool({
render: props.renderNodeTool,
nodeExpanded: expanded,
nodeCollapsed: collapsed,
nodeLoading: loading,
leafNode: leafNode,
nodeProps,
node: data,
rtl: this.props.rtl,
size: 20,
style,
toggleNodeExpand: props.toggleNodeExpand,
}, props);
return cloneElement(element, { key: 'nodeTool' });
}
getInitialDOMProps() {
const props = this.getProps();
let domProps = props.domProps;
let specificDomProps = props.headerCell
? props.headerDOMProps
: props.cellDOMProps;
if (typeof domProps == 'function') {
domProps = domProps(props);
}
if (typeof specificDomProps == 'function') {
specificDomProps = specificDomProps(props);
}
return Object.assign({}, domProps, specificDomProps);
}
renderEditor() {
const props = this.getProps();
const editorProps = {
nativeScroll: props.nativeScroll,
...props.editorProps,
editorProps: props.editorProps,
cell: this,
cellProps: props,
value: props.editValue,
theme: props.theme,
autoFocus: true,
onChange: this.onEditValueChange,
onComplete: this.onEditorComplete,
onCancel: this.onEditorCancel,
onEnterNavigation: this.onEditorEnterNavigation,
onTabNavigation: this.onEditorTabNavigation,
gotoNext: this.gotoNextEditor,
gotoPrev: this.gotoPrevEditor,
key: 'editor',
onClick: this.onEditorClick,
};
const Editor = props.editor;
if (Editor) {
return React.createElement(Editor, Object.assign({}, editorProps));
}
if (props.renderEditor) {
return props.renderEditor(editorProps, editorProps.cellProps, this);
}
return React.createElement(TextEditor, Object.assign({}, editorProps));
}
isInEdit() {
return this.getProps().inEdit;
}
getEditable(editValue, props = this.getProps()) {
if (props.groupSpacerColumn || props.groupProps) {
return Promise.resolve(false);
}
const { computedEditable: editable } = props;
if (typeof editable === 'function') {
return Promise.resolve(editable(editValue, props));
}
return Promise.resolve(editable);
}
onEditorTabLeave(direction) { }
gotoNextEditor() {
this.props.tryRowCellEdit(this.getProps().computedVisibleIndex + 1, +1);
}
gotoPrevEditor() {
this.props.tryRowCellEdit(this.getProps().computedVisibleIndex - 1, -1);
}
onEditorEnterNavigation(complete, dir) {
const props = this.getProps();
if (typeof dir !== 'number') {
dir = 0;
}
const newIndex = props.rowIndex + dir;
if (!complete) {
this.stopEdit();
if (newIndex != props.rowIndex) {
this.props.tryNextRowEdit(dir, props.columnIndex, true);
props.setActiveIndex(newIndex);
}
}
else {
this.onEditorComplete();
if (newIndex != props.rowIndex) {
this.props.tryNextRowEdit(dir, props.columnIndex, true);
props.setActiveIndex(newIndex);
}
}
}
onEditorTabNavigation(complete, dir) {
const props = this.getProps();
if (typeof dir !== 'number') {
dir = 0;
}
const newIndex = props.computedVisibleIndex + dir;
if (!complete) {
this.stopEdit();
if (newIndex != props.computedVisibleIndex) {
this.props.tryRowCellEdit(newIndex, dir);
}
}
else {
this.onEditorComplete();
if (newIndex != props.computedVisibleIndex) {
this.props.tryRowCellEdit(newIndex, dir);
}
}
}
onEditorClick(event) {
event.stopPropagation();
}
onEditorCancel() {
this.cancelEdit();
}
startEdit(editValue, errBack) {
const props = this.getProps();
this.isCancelled = false;
const editValuePromise = editValue === undefined
? this.getEditStartValue(props)
: Promise.resolve(editValue);
return (editValuePromise
.then(editValue => {
return this.getEditable(editValue, props).then(editable => {
if (!editable) {
return Promise.reject(editable);
}
if (props.onEditStart) {
props.onEditStart(editValue, props);
}
if (props.onEditStartForRow) {
props.onEditStartForRow(editValue, props);
}
return editValue;
});
})
// in order to not show console.error message in console
.catch(errBack || (err => { })));
}
stopEdit(editValue = this.getCurrentEditValue()) {
const props = this.getProps();
if (this.props.onEditStop) {
this.props.onEditStop(editValue, props);
}
if (this.props.onEditStopForRow) {
this.props.onEditStopForRow(editValue, props);
}
}
cancelEdit() {
this.isCancelled = true;
this.stopEdit();
const props = this.getProps();
if (this.props.onEditCancel) {
this.props.onEditCancel(props);
}
if (this.props.onEditCancelForRow) {
this.props.onEditCancelForRow(props);
}
}
onEditorComplete() {
const now = Date.now();
if (this.lastEditCompleteTimestamp &&
now - this.lastEditCompleteTimestamp < 50) {
return;
}
this.lastEditCompleteTimestamp = now;
if (!this.isCancelled) {
this.completeEdit();
}
this.isCancelled = false;
}
completeEdit(completeValue = this.getEditCompleteValue()) {
const props = this.getProps();
this.stopEdit();
if (this.props.onEditComplete) {
this.props.onEditComplete(completeValue, props);
}
if (this.props.onEditCompleteForRow) {
this.props.onEditCompleteForRow(completeValue, props);
}
}
getCurrentEditValue() {
return this.getProps().editValue;
}
getEditCompleteValue(value = this.getCurrentEditValue()) {
if (this.props.getEditCompleteValue) {
return this.props.getEditCompleteValue(value, this.getProps());
}
return value;
}
onFilterValueChange(filterValue) {
const props = this.getProps();
if (props.onFilterValueChange) {
props.onFilterValueChange(filterValue, props);
}
}
onEditValueChange(e) {
const value = e && e.target ? e.target.value : e;
const props = this.getProps();
if (this.props.onEditValueChange) {
this.props.onEditValueChange(value, props);
}
if (this.props.onEditValueChangeForRow) {
this.props.onEditValueChangeForRow(value, props);
}
}
renderSelectionBox() {
const props = this.getProps();
const { inTransition, inShowTransition, cellSelected, cellActive } = props;
if (!cellSelected && !cellActive) {
return null;
}
const style = {};
if (inTransition) {
let duration = inShowTransition
? props.showTransitionDuration
: props.hideTransitionDuration;
duration = duration || props.visibilityTransitionDuration;
style.transitionDuration =
typeof duration == 'number' ? `${duration}ms` : duration;
}
return (React.createElement("div", { key: "selectionBox", style: style, className: "InovuaReactDataGrid__cell__selection" }, this.props.lastInRange &&
this.props.computedCellMultiSelectionEnabled && (React.createElement("div", { className: `InovuaReactDataGrid__cell__selection-dragger InovuaReactDataGrid__cell__selection-dragger--direction-${this.props.rtl ? 'rtl' : 'ltr'}`, onMouseDown: this.onCellSelectionDraggerMouseDown }))));
}
onHeaderCellFocus(event) {
const props = this.getProps();
if (props.onFocus) {
props.onFocus(event, props);
}
const initialProps = this.getInitialDOMProps();
if (initialProps.onFocus) {
initialProps.onFocus(event, props);
}
}
onCellEnter(event) {
const props = this.getProps();
if (props.onCellEnter) {
props.onCellEnter(event, props);
}
const initialProps = this.getInitialDOMProps();
if (initialProps.onMouseEnter) {
initialProps.onMouseEnter(event, props);
}
}
onCellSelectionDraggerMouseDown(event) {
event.preventDefault();
event.stopPropagation();
// in order for onCellMouseDown not to be triggered
// as well since the dragger has a bit different behavior
if (this.props.onCellSelectionDraggerMouseDown) {
this.props.onCellSelectionDraggerMouseDown(event, this.getProps());
}
}
prepareHeaderCellProps(cellProps) {
const props = this.getProps();
const { children, computedSortInfo } = cellProps;
const { computedSortable } = props;
const sortTools = computedSortable
? this.getSortTools(computedSortInfo ? computedSortInfo.dir : null, cellProps)
: null;
if (sortTools) {
cellProps.children = [
children && children.props
? cloneElement(children, { key: 'content' })
: children,
sortTools,
];
if (props.headerAlign === 'end' ||
(!props.headerAlign && props.textAlign == 'end')) {
// make sort tool come first
cellProps.children.reverse();
}
}
if (cellProps.renderHeader) {
if (!Array.isArray(cellProps.children)) {
cellProps.children = [cellProps.children];
}
cellProps.children = cellProps.renderHeader(cellProps);
}
if (computedSortInfo && computedSortInfo.dir) {
const dirName = computedSortInfo.dir === 1 ? 'asc' : 'desc';
cellProps.className = join(cellProps.className, `${props.headerCellDefaultClassName}--sort-${dirName}`);
}
cellProps.onResizeMouseDown = this.onResizeMouseDown.bind(this, cellProps);
cellProps.onResizeTouchStart = this.onResizeTouchStart.bind(this, cellProps);
return cellProps;
}
onMouseDown(event) {
const props = this.getProps();
const initialDOMProps = this.getInitialDOMProps();
if (props.onMouseDown) {
props.onMouseDown(props, event);
}
if (initialDOMProps.onMouseDown) {
initialDOMProps.onMouseDown(event, props);
}
if (props.onCellMouseDown) {
props.onCellMouseDown(event, props);
}
if (props.onDragRowMouseDown && props.id === REORDER_COLUMN_ID) {
props.onDragRowMouseDown(event, props.rowIndex, this.domRef);
}
// event.preventDefault() // DO NOT prevent default,
// since this makes keyboard navigation unusable because
// the grid does not get focus any more
// event.stopPropagation();
}
onContextMenu(event) {
const props = this.getProps();
const initialDOMProps = this.getInitialDOMProps();
if (event.nativeEvent) {
event.nativeEvent.__cellProps = props;
}
if (props.onContextMenu) {
props.onContextMenu(event, props);
}
if (initialDOMProps.onContextMenu) {
initialDOMProps.onContextMenu(event, props);
}
}
onTouchStart(event) {
const props = this.getProps();
const initialDOMProps = this.getInitialDOMProps();
if (props.onTouchStart) {
props.onTouchStart(props, event);
}
if (initialDOMProps.onTouchStart) {
initialDOMProps.onTouchStart(event, props);
}
if (props.onCellTouchStart) {
props.onCellTouchStart(event, props);
}
if (props.onDragRowMouseDown && props.id === REORDER_COLUMN_ID) {
props.onDragRowMouseDown(event, props.rowIndex, this.domRef);
}
// event.preventDefault() // DO NOT prevent default,
// since this makes keyboard navigation unusable because
// the grid does not get focus any more
event.stopPropagation();
}
onResizeMouseDown(cellProps, event) {
const props = this.getProps();
if (props.onResizeMouseDown) {
const node = this.getDOMNode();
props.onResizeMouseDown(cellProps, {
colHeaderNode: node,
event,
});
}
}
onResizeTouchStart(cellProps, event) {
const props = this.getProps();
if (props.onResizeTouchStart) {
props.onResizeTouchStart(cellProps, {
colHeaderNode: this.getDOMNode(),
event,
});
}
}
getDOMNode() {
return this.domRef.current;
}
onClick(event) {
const props = this.getProps();
const initialDOMProps = this.getInitialDOMProps();
if (props.onClick) {
props.onClick(event, props);
}
if (initialDOMProps.onClick) {
initialDOMProps.onClick(event, props);
}
if (!this.props.headerCell && props.onCellClick) {
props.onCellClick(event, props);
}
if (!this.props.headerCell) {
if (props.computedEditable &&
!props.inEdit &&
(props.editStartEvent === 'onClick' || props.editStartEvent === 'click')) {
this.startEdit();
}
return;
}
if (this.props.preventSortOnClick) {
if (this.props.preventSortOnClick(event, props) === true) {
return;
}
}
if (!props.sortDelay || props.sortDelay < 1) {
return this.onSortClick();
}
if (this.sortTimeoutId) {
clearTimeout(this.sortTimeoutId);
this.sortTimeoutId = null;
}
this.sortTimeoutId = setTimeout(() => {
this.onSortClick();
this.sortTimeoutId = null;
}, parseInt(props.sortDelay, 10));
return undefined;
}
onDoubleClick(event) {
const props = this.getProps();
const initialDOMProps = this.getInitialDOMProps();
if (props.onDoubleClick) {
props.onDoubleClick(event, props);
}
if (initialDOMProps.onDoubleClick) {
initialDOMProps.onDoubleClick(event, props);
}
const { headerProps, headerCell } = props;
if (!headerCell) {
if (props.computedEditable &&
!props.inEdit &&
(props.editStartEvent === 'onDoubleClick' ||
props.editStartEvent === 'dblclick' ||
props.editStartEvent === 'doubleclick')) {
this.startEdit();
}
return;
}
if (headerProps && headerProps.onDoubleClick) {
headerProps.onDoubleClick(event, props);
}
if (this.sortTimeoutId) {
clearTimeout(this.sortTimeoutId);
this.sortTimeoutId = null;
}
}
getEditStartValue(props = this.getProps()) {
if (typeof props.getEditStartValue == 'function') {
return Promise.resolve(props.getEditStartValue(props.value, props));
}
return Promise.resolve(props.value);
}
onSortClick() {
const props = this.getProps();
if (props.headerCell && props.computedSortable) {
if (props.onSortClick) {
props.onSortClick(props);
}
}
}
// direction can be 1, -1 or null
getSortTools(direction = null, cellProps) {
const { computedSortable, renderSortTool: render } = this.getProps();
return renderSortTool({ sortable: computedSortable, direction, renderSortTool: render }, cellProps);
}
showFilterContextMenu(node) {
if (this.props.showColumnFilterContextMenu) {
this.props.showColumnFilterContextMenu(node, this.getProps());
}
}
showContextMenu(menuTool, onHide) {
if (this.props.showColumnContextMenu) {
this.props.showColumnContextMenu(menuTool ? (menuTool.domRef ? menuTool.domRef.current : null) : null, this.getProps(), this, onHide);
}
}
getProxyRegion() {
const node = this.getDOMNode();
const { computedResizable, computedFilterable } = this.getProps();
return computedFilterable
? Region.from(node.firstChild)
: Region.from(computedResizable ? node.firstChild : node);
}
renderGroupTool() {
const props = this.getProps();
const { rtl, collapsed, groupProps } = props;
return renderGroupTool({
render: groupProps.renderGroupTool,
collapsed,
rtl,
size: 20,
toggleGroup: this.toggleGroup,
});
}
}
InovuaDataGridCell.defaultProps = {
cellDefaultClassName: cellBem(),
headerCellDefaultClassName: headerBem(),
computedMinWidth: 40,
groupNestingSize: 10,
treeNestingSize: 10,
checkboxTabIndex: null,
onSortClick: emptyFn,
preventSortOnClick: event => {
const target = event.target;
return isFocusable(target);
},
};
InovuaDataGridCell.propTypes = {
computedAbsoluteIndex: PropTypes.number,
checkboxTabIndex: PropTypes.number,
cellActive: PropTypes.bool,
cellClassName: PropTypes.string,
cellDefaultClassName: PropTypes.string,
cellDOMProps: PropTypes.oneOfType([PropTypes.object, PropTypes.func]),
computedCellMultiSelectionEnabled: PropTypes.bool,
cellSelectable: PropTypes.bool,
cellSelected: PropTypes.bool,
checkboxColumn: PropTypes.any,
collapsed: PropTypes.bool,
computedColspan: PropTypes.number,
computedRowspan: PropTypes.number,
columnIndex: PropTypes.number,
columnResizeHandleWidth: PropTypes.oneOfType([
PropTypes.number,
PropTypes.string,
]),
computedLocked: PropTypes.oneOf([false, 'start', 'end']),
computedWidth: PropTypes.number,
data: PropTypes.oneOfType([PropTypes.shape({}), PropTypes.array]),
defaultWidth: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
depth: PropTypes.number,
deselectAll: PropTypes.func,
domProps: PropTypes.object,
empty: PropTypes.bool,
first: PropTypes.bool,
firstInSection: PropTypes.bool,
computedFlex: PropTypes.number,
flex: PropTypes.number,
group: PropTypes.string,
computedGroupBy: PropTypes.any,
groupCell: PropTypes.bool,
groupSpacerColumn: PropTypes.bool,
groupNestingSize: PropTypes.number,
groupProps: PropTypes.object,
hasBottomSelectedSibling: PropTypes.bool,
hasLeftSelectedSibling: PropTypes.bool,
hasLockedStart: PropTypes.bool,
hasRightSelectedSibling: PropTypes.bool,
hasTopSelectedSibling: PropTypes.bool,
header: PropTypes.any,
headerAlign: PropTypes.oneOf(['start', 'center', 'end']),
headerCell: PropTypes.bool,
headerCellDefaultClassName: PropTypes.string,
headerClassName: PropTypes.string,
headerDOMProps: PropTypes.object,
headerEllipsis: PropTypes.bool,
headerHeight: PropTypes.number,
headerProps: PropTypes.any,
headerUserSelect: PropTypes.oneOf([true, false, 'text', 'none']),
headerVerticalAlign: PropTypes.oneOf([
'top',
'middle',
'center',
'bottom',
'start',
'end',
]),
headerWrapperClassName: PropTypes.string,
hidden: PropTypes.bool,
hideIntermediateState: PropTypes.bool,
hideTransitionDuration: PropTypes.number,
hiding: PropTypes.bool,
id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
inHideTransition: PropTypes.bool,
inShowTransition: PropTypes.bool,
inTransition: PropTypes.oneOfType([PropTypes.bool, PropTypes.number]),
index: PropTypes.number,
initialIndex: PropTypes.number,
isColumn: PropTypes.bool,
last: PropTypes.bool,
lastInRange: PropTypes.bool,
lastInSection: PropTypes.bool,
lastRowInGroup: PropTypes.bool,
lastUnlocked: PropTypes.bool,
locked: PropTypes.oneOfType([PropTypes.bool, PropTypes.string]),
maxWidth: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
computedMaxWidth: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
minWidth: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
computedMinWidth: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
minRowHeight: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
multiSelect: PropTypes.bool,
name: PropTypes.string,
nativeScroll: PropTypes.bool,
nextBorderLeft: PropTypes.bool,
noBackground: PropTypes.bool,
onCellClick: PropTypes.func,
onCellEnter: PropTypes.func,
onCellMouseDown: PropTypes.func,
preventSortOnClick: PropTypes.func,
onCellSelectionDraggerMouseDown: PropTypes.func,
onGroupToggle: PropTypes.func,
onMount: PropTypes.func,
onRender: PropTypes.func,
onResizeMouseDown: PropTypes.func,
onResizeTouchStart: PropTypes.func,
onSortClick: PropTypes.func,
onUnmount: PropTypes.func,
prevBorderRight: PropTypes.bool,
render: PropTypes.func,
renderCheckbox: PropTypes.func,
renderGroupTitle: PropTypes.func,
renderHeader: PropTypes.func,
renderSortTool: PropTypes.func,
computedResizable: PropTypes.bool,
lockable: PropTypes.bool,
resizeProxyStyle: PropTypes.object,
rowActive: PropTypes.bool,
rowHeight: PropTypes.number,
initialRowHeight: PropTypes.number,
rowIndex: PropTypes.number,
rowIndexInGroup: PropTypes.number,
rowRenderIndex: PropTypes.number,
rowSelected: PropTypes.bool,
scrollbarWidth: PropTypes.number,
indexInHeaderGroup: PropTypes.number,
parentGroups: PropTypes.array,
selectAll: PropTypes.func,
selectedCount: PropTypes.number,
selection: PropTypes.any,
setRowSelected: PropTypes.func,
setRowExpanded: PropTypes.func,
toggleRowExpand: PropTypes.func,
toggleNodeExpand: PropTypes.func,
shouldComponentUpdate: PropTypes.func,
showBorderBottom: PropTypes.bool,
showBorderLeft: PropTypes.bool,
showBorderRight: PropTypes.any,
showBorderTop: PropTypes.bool,
showColumnContextMenu: PropTypes.func,
showColumnMenuSortOptions: PropTypes.bool,
showColumnMenuFilterOptions: PropTypes.bool,
showColumnMenuLockOptions: PropTypes.bool,
showColumnMenuGroupOptions: PropTypes.bool,
showTransitionDuration: PropTypes.number,
sort: PropTypes.any,
sortDelay: PropTypes.number,
computedSortInfo: PropTypes.any,
computedSortable: PropTypes.bool,
textAlign: PropTypes.oneOf(['start', 'center', 'end']),
textEllipsis: PropTypes.bool,
textVerticalAlign: PropTypes.oneOf([
'top',
'middle',
'center',
'bottom',
'start',
'end',
]),
titleClassName: PropTypes.string,
tryRowCellEdit: PropTypes.func,
totalCount: PropTypes.number,
totalDataCount: PropTypes.number,
unselectedCount: PropTypes.number,
userSelect: PropTypes.oneOf([true, false, 'text', 'none']),
value: PropTypes.any,
virtualizeColumns: PropTypes.bool,
visibilityTransitionDuration: PropTypes.oneOfType([
PropTypes.bool,
PropTypes.number,
]),
computedVisible: PropTypes.bool,
computedVisibleCount: PropTypes.number,
computedVisibleIndex: PropTypes.number,
indexInColumns: PropTypes.number,
width: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
editable: PropTypes.oneOfType([PropTypes.bool, PropTypes.func]),
onEditStop: PropTypes.func,
onEditStart: PropTypes.func,
onEditCancel: PropTypes.func,
onEditValueChange: PropTypes.func,
onEditComplete: PropTypes.func,
onEditStopForRow: PropTypes.func,
onEditStartForRow: PropTypes.func,
onEditCancelForRow: PropTypes.func,
onEditValueChangeForRow: PropTypes.func,
onEditCompleteForRow: PropTypes.func,
onDragRowMouseDown: PropTypes.func,
isRowExpandable: PropTypes.func,
editorProps: PropTypes.any,
editValue: PropTypes.any,
Editor: PropTypes.func,
renderEditor: PropTypes.func,
zIndex: PropTypes.number,
computedOffset: PropTypes.number,
groupTitleCell: PropTypes.bool,
groupExpandCell: PropTypes.bool,
rendersInlineEditor: PropTypes.oneOfType([PropTypes.bool, PropTypes.func]),
groupColumn: PropTypes.bool,
treeColumn: PropTypes.bool,
renderNodeTool: PropTypes.func,
showInContextMenu: PropTypes.bool,
naturalRowHeight: PropTypes.bool,
rtl: PropTypes.bool,
computedFilterable: PropTypes.bool,
computedEditable: PropTypes.oneOfType([PropTypes.bool, PropTypes.func]),
groupColumnVisible: PropTypes.bool,
filterTypes: PropTypes.any,
filterDelay: PropTypes.oneOfType([PropTypes.bool, PropTypes.number]),
getFilterValue: PropTypes.func,
onFilterValueChange: PropTypes.func,
getEditStartValue: PropTypes.func,
getEditCompleteValue: PropTypes.func,
editStartEvent: PropTypes.string,
setActiveIndex: PropTypes.func,
}; | CELL_RENDER_OBJECT.totalDataCount = totalDataCount; |
moveFocusAfterComboboxAndSetValueToAlabama.jsonp.js | window[document.currentScript.getAttribute("jsonpFunction") || "scriptsJsonpLoaded"]({
moveFocusAfterComboboxAndSetValueToAlabama(testPageDocument) {
// sets focus on a link after the Combobox, and sets the combobox value to 'Alabama'
testPageDocument.querySelector('#cb1-button').style.display = 'none';
testPageDocument.defaultView.comboboxController.setValue('Alabama');
testPageDocument.querySelector('#afterlink').focus(); | }
}); | |
pending-book-list.component.ts | import { Component, ViewEncapsulation, ViewChild } from "@angular/core";
import { Location } from "@angular/common";
import { PurchaseOrderService } from "../putchase-order.service";
import 'style-loader!../../../datepick.css';
import { ModalDirective } from 'ng2-bootstrap';
import { Subject } from 'rxjs';
import { InventoryStore } from '../../../inventory.store';
@Component({
selector: 'pending-book-list',
templateUrl: './pending-book-list.html',
styleUrls: ['./pending-book-list.scss']
})
export class PendingBookListComponent extends InventoryStore {
@ViewChild('changeSupplierModal') changeSupplierModal: ModalDirective;
@ViewChild('purchaseItemsModal') purchaseItemsModal: ModalDirective;
loading: boolean;
products: Array<any> = [];
query: any = {};
dtRange: any = {};
selected_purchase_items: any = {};
purchase_data: any = { convenience: 0, courier_charge: 0, purchase_mode: 'Cash', purchase_date: new Date() };
res_pending: boolean;
supplierSearchTerm$ = new Subject<string>();
public supplierList: any = [];
new_supplier: any = {};
isClear: boolean;
public alerts: any = [];
constructor(
private location: Location,
private _purchaseOrderService: PurchaseOrderService
) { super(); }
ngOnInit() {
this.getBooks();
this._purchaseOrderService.getSupplierSearched(this.supplierSearchTerm$)
.subscribe(results => {
this.supplierList = results.supplier;
});
}
getBooks() {
this.loading = true;
this._purchaseOrderService.getPendingPurchaseBookList(this.query).subscribe(result => {
this.loading = false;
if (result.success) {
this.products = result.data.map(prod => {
prod.orders = prod.order_no.join(', ');
prod.purchased_qty = 0;
if (prod.supplier && prod.supplier._id) {
prod.supplier = { _id: prod.supplier._id, name: prod.supplier.name }
}
return prod;
})
this.dtRange = [new Date(result.date.from), new Date(result.date.to)]
}
});
}
dateChanged() {
this.query.from_date = new Date(this.dtRange[0]);
this.query.to_date = new Date(this.dtRange[1]);
this.getBooks();
}
new_supp_item_index: number;
addSupp(item, index) {
this.new_supp_item_index = index;
this.changeSupplierModal.show();
}
getSelectedSupplier(data) {
this.new_supplier = data;
| }
changeSupp() {
if (this.new_supplier._id) {
this.products[this.new_supp_item_index].supplier = {
_id: this.new_supplier._id,
name: this.new_supplier.name
}
this.changeSupplierModal.hide();
this.new_supplier = {};
this.isClear = true;
setTimeout(() => {
this.isClear = false;
}, 500);
} else {
this.alerts.push({
type: 'danger',
msg: "No supplier found.",
timeout: 4000
});
}
}
closeSuppModal() {
this.changeSupplierModal.hide();
}
openPurchaseModal() {
this.selected_purchase_items = this.products.filter(prod => {
return prod.purchased_qty > 0 && prod.last_pprice > 0 && prod.supplier && prod.supplier.name
})
this.purchaseItemsModal.show();
}
purchase() {
alert("This part is under devcelopment.")
// this.res_pending = true;
// let total_book = 0;
// let net_amount = 0;
// let data = this.purchase_data;
// data.items = this.selected_purchase_items.map(itm => {
// net_amount += (itm.purchased_qty * itm.last_pprice);
// total_book += itm.purchased_qty;
// return {
// authors_id: itm.authors_id,
// price: (itm.purchased_qty * itm.last_pprice),
// product_id: itm._id,
// product_name: itm.book_name,
// publisher: itm.publisher,
// publisher_id: itm.publisher_id,
// quantity: itm.purchased_qty,
// rate: itm.last_pprice,
// supplier: itm.supplier._id,
// supplier_name: itm.supplier.name,
// order_id:itm.order_id
// }
// });
// data.total_book=total_book;
// data.net_amount=net_amount;
// data.convenience = data.convenience && data.convenience != '' ? data.convenience : 0;
// data.courier_charge = data.courier_charge && data.courier_charge != '' ? data.courier_charge : 0;
// data.purchase_cost = (net_amount + data.convenience + data.courier_charge)
// this._purchaseOrderService.purchasePendingBook(data).subscribe((result: any) => {
// console.log(result);
// this.res_pending = false;
// })
}
} | |
PageDocument.spec.js | /**
* Hydrogen Nucleus API
* The Hydrogen Nucleus API | * OpenAPI spec version: 1.9.5
* Contact: [email protected]
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
*
* Swagger Codegen version: 2.2.3
*
* Do not edit the class manually.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD.
define(['expect.js', '../../src/index'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.HydrogenNucleusApi);
}
}(this, function(expect, HydrogenNucleusApi) {
'use strict';
var instance;
beforeEach(function() {
instance = new HydrogenNucleusApi.PageDocument();
});
var getProperty = function(object, getter, property) {
// Use getter method if present; otherwise, get the property directly.
if (typeof object[getter] === 'function')
return object[getter]();
else
return object[property];
}
var setProperty = function(object, setter, property, value) {
// Use setter method if present; otherwise, set the property directly.
if (typeof object[setter] === 'function')
object[setter](value);
else
object[property] = value;
}
describe('PageDocument', function() {
it('should create an instance of PageDocument', function() {
// uncomment below and update the code to test PageDocument
//var instane = new HydrogenNucleusApi.PageDocument();
//expect(instance).to.be.a(HydrogenNucleusApi.PageDocument);
});
it('should have the property content (base name: "content")', function() {
// uncomment below and update the code to test the property content
//var instane = new HydrogenNucleusApi.PageDocument();
//expect(instance).to.be();
});
it('should have the property first (base name: "first")', function() {
// uncomment below and update the code to test the property first
//var instane = new HydrogenNucleusApi.PageDocument();
//expect(instance).to.be();
});
it('should have the property last (base name: "last")', function() {
// uncomment below and update the code to test the property last
//var instane = new HydrogenNucleusApi.PageDocument();
//expect(instance).to.be();
});
it('should have the property _number (base name: "number")', function() {
// uncomment below and update the code to test the property _number
//var instane = new HydrogenNucleusApi.PageDocument();
//expect(instance).to.be();
});
it('should have the property numberOfElements (base name: "number_of_elements")', function() {
// uncomment below and update the code to test the property numberOfElements
//var instane = new HydrogenNucleusApi.PageDocument();
//expect(instance).to.be();
});
it('should have the property size (base name: "size")', function() {
// uncomment below and update the code to test the property size
//var instane = new HydrogenNucleusApi.PageDocument();
//expect(instance).to.be();
});
it('should have the property sort (base name: "sort")', function() {
// uncomment below and update the code to test the property sort
//var instane = new HydrogenNucleusApi.PageDocument();
//expect(instance).to.be();
});
it('should have the property totalElements (base name: "total_elements")', function() {
// uncomment below and update the code to test the property totalElements
//var instane = new HydrogenNucleusApi.PageDocument();
//expect(instance).to.be();
});
it('should have the property totalPages (base name: "total_pages")', function() {
// uncomment below and update the code to test the property totalPages
//var instane = new HydrogenNucleusApi.PageDocument();
//expect(instance).to.be();
});
});
})); | * |
registers.rs | use core::convert::TryFrom;
use bitflags::bitflags;
// Register addresses
pub const REG0: u8 = 0x00;
pub const REG1: u8 = 0x01;
pub const REG2: u8 = 0x02;
pub const REG3: u8 = 0x03;
pub const REG4: u8 = 0x04;
pub const REG6: u8 = 0x06;
pub const REG8: u8 = 0x08;
pub const REG14: u8 = 0x0E;
// REG0 bitflags
bitflags! {
pub struct R0: u8 {
const PE = 0b0000_0001;
const PDX = 0b0000_0010;
const MUTE = 0b0000_0100;
const EM = 0b0001_0000;
const EMS = 0b0010_0000;
const AG = 0b1100_0000;
}
}
// REG1 bitflags
bitflags! {
pub struct R1: u8 {
const PLT = 0b0000_1000;
const SUBC = 0b0100_0000;
}
}
// REG2 bitflags
bitflags! {
pub struct R2: u8 {
const PL = 0b0000_0011;
const ULD = 0b0000_0100;
}
}
// REG6 bitflags
bitflags! {
pub struct R6: u8 {
const CIA = 0b0000_0110;
const CIB = 0b0001_1000;
}
}
// REG8 bitflags
bitflags! {
pub struct R8: u8 {
const CEX = 0b0000_0011;
}
}
/// Pre-emphasis values
#[derive(Copy, Clone, Debug)]
pub enum PreEmphasis {
/// No pre-emphasis
Disabled,
/// European country (50μs)
Pe50us,
/// Other country, like USA (75μs)
Pe75us,
}
/// Audio input level values
#[derive(Copy, Clone, Debug)]
pub enum InputLevel {
/// Low input volume (100mV)
Low = 0x0,
/// Medium input volume (140mV)
Medium = 0x40,
/// High input volume (200mV)
High = 0x80,
}
/// Transmit power level values
#[derive(Copy, Clone, Debug)]
pub enum TransmitPowerLevel {
/// Low power output (0.5mW)
Low = 0x1,
/// Medium power output (1.0mW)
Medium = 0x2,
/// High power output (2.0mW)
High = 0x3,
}
/// Charge pump values
#[derive(Copy, Clone, Debug)]
pub enum ChargePump {
/// Charge pumps at 1.25μA
Cp1_25uA = 0x1,
/// Charge pumps at 80μA
Cp80uA = 0x3,
}
#[derive(Copy, Clone, Debug)]
pub enum FrequencyBand {
Band0 = 0x0,
Band1 = 0x1,
Band2 = 0x2,
Band3 = 0x3,
}
impl TryFrom<u64> for FrequencyBand {
type Error = ();
fn try_from(frequency: u64) -> Result<Self, Self::Error> {
use FrequencyBand::*;
const MIN_FREQ: u64 = 87_500_000; // 87.5Mhz
const MAX_FREQ: u64 = 108_000_000; // 108MHz
if frequency < MIN_FREQ || frequency > MAX_FREQ {
| let band = if frequency < 88_500_000 {
Band3
} else if frequency < 97_900_000 {
Band2
} else if frequency < 103_000_000 {
Band1
} else {
Band0
};
Ok(band)
}
}
| return Err(());
}
|
message.py | # -*- coding: utf-8 -*-
__author__ = 'CubexX'
from datetime import datetime
from app import db
class Message(db.Model):
__table__ = 'messages'
__timestamps__ = False
__fillable__ = ['uid', 'cid', 'date']
@staticmethod
def today_chat_count(cid):
t = datetime.today()
today = int(datetime(t.year, t.month, t.day, 0).timestamp())
return db.select('SELECT COUNT(*) AS count FROM messages'
' WHERE cid = {} AND date >= {}'.format(cid, today))[0]['count']
@staticmethod
def today_all_count():
t = datetime.today()
today = int(datetime(t.year, t.month, t.day, 0).timestamp())
return db.select('SELECT COUNT(*) AS count FROM messages'
' WHERE date >= {}'.format(today))[0]['count']
@staticmethod
def count_in_chat(cid):
return db.select('SELECT COUNT(*) AS count FROM messages' | ' WHERE cid = {}'.format(cid))[0]['count'] |
|
soundcloud-api.js | /**
* Created by chandransh on 7/12/16. | */
var SC=SC||{};SC.Widget=function(n){function t(r){if(e[r])return e[r].exports;var o=e[r]={exports:{},id:r,loaded:!1};return n[r].call(o.exports,o,o.exports,t),o.loaded=!0,o.exports}var e={};return t.m=n,t.c=e,t.p="",t(0)}([function(n,t,e){function r(n){return!!(""===n||n&&n.charCodeAt&&n.substr)}function o(n){return!!(n&&n.constructor&&n.call&&n.apply)}function i(n){return!(!n||1!==n.nodeType||"IFRAME"!==n.nodeName.toUpperCase())}function a(n){var t,e=!1;for(t in b)if(b.hasOwnProperty(t)&&b[t]===n){e=!0;break}return e}function s(n){var t,e,r;for(t=0,e=I.length;t<e&&(r=n(I[t]),r!==!1);t++);}function u(n){var t,e,r,o="";for("//"===n.substr(0,2)&&(n=window.location.protocol+n),r=n.split("/"),t=0,e=r.length;t<e&&t<3;t++)o+=r[t],t<2&&(o+="/");return o}function c(n){return n.contentWindow?n.contentWindow:n.contentDocument&&"parentWindow"in n.contentDocument?n.contentDocument.parentWindow:null}function l(n){var t,e=[];for(t in n)n.hasOwnProperty(t)&&e.push(n[t]);return e}function d(n,t,e){e.callbacks[n]=e.callbacks[n]||[],e.callbacks[n].push(t)}function E(n,t){var e,r=!0;return t.callbacks[n]=[],s(function(t){if(e=t.callbacks[n]||[],e.length)return r=!1,!1}),r}function f(n,t,e){var r,o,i=c(e);return!!i.postMessage&&(r=e.getAttribute("src").split("?")[0],o=JSON.stringify({method:n,value:t}),"//"===r.substr(0,2)&&(r=window.location.protocol+r),r=r.replace(/http:\/\/(w|wt).soundcloud.com/,"https://$1.soundcloud.com"),void i.postMessage(o,r))}function p(n){var t;return s(function(e){if(e.instance===n)return t=e,!1}),t}function h(n){var t;return s(function(e){if(c(e.element)===n)return t=e,!1}),t}function v(n,t){return function(e){var r=o(e),i=p(this),a=!r&&t?e:null,s=r&&!t?e:null;return s&&d(n,s,i),f(n,a,i.element),this}}function S(n,t,e){var r,o,i;for(r=0,o=t.length;r<o;r++)i=t[r],n[i]=v(i,e)}function R(n,t,e){return n+"?url="+t+"&"+g(e)}function g(n){var t,e,r=[];for(t in n)n.hasOwnProperty(t)&&(e=n[t],r.push(t+"="+("start_track"===t?parseInt(e,10):e?"true":"false")));return r.join("&")}function m(n,t,e){var r,o,i=n.callbacks[t]||[];for(r=0,o=i.length;r<o;r++)i[r].apply(n.instance,e);(a(t)||t===L.READY)&&(n.callbacks[t]=[])}function w(n){var t,e,r,o,i;try{e=JSON.parse(n.data)}catch(a){return!1}return t=h(n.source),r=e.method,o=e.value,(!t||A(n.origin)===A(t.domain))&&(t?(r===L.READY&&(t.isReady=!0,m(t,C),E(C,t)),r!==L.PLAY||t.playEventFired||(t.playEventFired=!0),r!==L.PLAY_PROGRESS||t.playEventFired||(t.playEventFired=!0,m(t,L.PLAY,[o])),i=[],void 0!==o&&i.push(o),void m(t,r,i)):(r===L.READY&&T.push(n.source),!1))}function A(n){return n.replace(Y,"")}var _,y,O,D=e(1),b=e(2),P=e(3),L=D.api,N=D.bridge,T=[],I=[],C="__LATE_BINDING__",k="http://wt.soundcloud.dev:9200/",Y=/^http(?:s?)/;window.addEventListener?window.addEventListener("message",w,!1):window.attachEvent("onmessage",w),n.exports=O=function(n,t,e){if(r(n)&&(n=document.getElementById(n)),!i(n))throw new Error("SC.Widget function should be given either iframe element or a string specifying id attribute of iframe element.");t&&(e=e||{},n.src=R(k,t,e));var o,a,s=h(c(n));return s&&s.instance?s.instance:(o=T.indexOf(c(n))>-1,a=new _(n),I.push(new y(a,n,o)),a)},O.Events=L,window.SC=window.SC||{},window.SC.Widget=O,y=function(n,t,e){this.instance=n,this.element=t,this.domain=u(t.getAttribute("src")),this.isReady=!!e,this.callbacks={}},_=function(){},_.prototype={constructor:_,load:function(n,t){if(n){t=t||{};var e=this,r=p(this),o=r.element,i=o.src,a=i.substr(0,i.indexOf("?"));r.isReady=!1,r.playEventFired=!1,o.onload=function(){e.bind(L.READY,function(){var n,e=r.callbacks;for(n in e)e.hasOwnProperty(n)&&n!==L.READY&&f(N.ADD_LISTENER,n,r.element);t.callback&&t.callback()})},o.src=R(a,n,t)}},bind:function(n,t){var e=this,r=p(this);return r&&r.element&&(n===L.READY&&r.isReady?setTimeout(t,1):r.isReady?(d(n,t,r),f(N.ADD_LISTENER,n,r.element)):d(C,function(){e.bind(n,t)},r)),this},unbind:function(n){var t,e=p(this);e&&e.element&&(t=E(n,e),n!==L.READY&&t&&f(N.REMOVE_LISTENER,n,e.element))}},S(_.prototype,l(b)),S(_.prototype,l(P),!0)},function(n,t){t.api={LOAD_PROGRESS:"loadProgress",PLAY_PROGRESS:"playProgress",PLAY:"play",PAUSE:"pause",FINISH:"finish",SEEK:"seek",READY:"ready",OPEN_SHARE_PANEL:"sharePanelOpened",CLICK_DOWNLOAD:"downloadClicked",CLICK_BUY:"buyClicked",ERROR:"error"},t.bridge={REMOVE_LISTENER:"removeEventListener",ADD_LISTENER:"addEventListener"}},function(n,t){n.exports={GET_VOLUME:"getVolume",GET_DURATION:"getDuration",GET_POSITION:"getPosition",GET_SOUNDS:"getSounds",GET_CURRENT_SOUND:"getCurrentSound",GET_CURRENT_SOUND_INDEX:"getCurrentSoundIndex",IS_PAUSED:"isPaused"}},function(n,t){n.exports={PLAY:"play",PAUSE:"pause",TOGGLE:"toggle",SEEK_TO:"seekTo",SET_VOLUME:"setVolume",NEXT:"next",PREV:"prev",SKIP:"skip"}}]); |
|
store.rs | use futures::stream::poll_fn;
use futures::{Async, Future, Poll, Stream};
use graphql_parser::schema as s;
use lazy_static::lazy_static;
use mockall::predicate::*;
use mockall::*;
use serde::{Deserialize, Serialize};
use stable_hash::prelude::*;
use std::collections::{BTreeMap, HashMap, HashSet};
use std::env;
use std::fmt;
use std::str::FromStr;
use std::sync::atomic::{AtomicUsize, Ordering};
use std::sync::{Arc, RwLock};
use std::time::{Duration, Instant};
use thiserror::Error;
use web3::types::{Address, H256};
use crate::data::subgraph::status;
use crate::data::{query::QueryTarget, subgraph::schema::*};
use crate::data::{store::*, subgraph::Source};
use crate::prelude::*;
use crate::util::lfu_cache::LfuCache;
use crate::components::server::index_node::VersionInfo;
lazy_static! {
pub static ref SUBSCRIPTION_THROTTLE_INTERVAL: Duration =
env::var("SUBSCRIPTION_THROTTLE_INTERVAL")
.ok()
.map(|s| u64::from_str(&s).unwrap_or_else(|_| panic!(
"failed to parse env var SUBSCRIPTION_THROTTLE_INTERVAL"
)))
.map(Duration::from_millis)
.unwrap_or_else(|| Duration::from_millis(1000));
}
/// The type name of an entity. This is the string that is used in the
/// subgraph's GraphQL schema as `type NAME @entity { .. }`
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct EntityType(String);
impl EntityType {
/// Construct a new entity type. Ideally, this is only called when
/// `entity_type` either comes from the GraphQL schema, or from
/// the database from fields that are known to contain a valid entity type
pub fn new(entity_type: String) -> Self {
Self(entity_type)
}
pub fn as_str(&self) -> &str {
&self.0
}
pub fn into_string(self) -> String {
self.0
}
}
impl fmt::Display for EntityType {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.0)
}
}
impl<'a> From<&s::ObjectType<'a, String>> for EntityType {
fn from(object_type: &s::ObjectType<'a, String>) -> Self {
EntityType::new(object_type.name.to_owned())
}
}
impl<'a> From<&s::InterfaceType<'a, String>> for EntityType {
fn | (interface_type: &s::InterfaceType<'a, String>) -> Self {
EntityType::new(interface_type.name.to_owned())
}
}
// This conversion should only be used in tests since it makes it too
// easy to convert random strings into entity types
#[cfg(debug_assertions)]
impl From<&str> for EntityType {
fn from(s: &str) -> Self {
EntityType::new(s.to_owned())
}
}
impl CheapClone for EntityType {}
// Note: Do not modify fields without making a backward compatible change to
// the StableHash impl (below)
/// Key by which an individual entity in the store can be accessed.
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct EntityKey {
/// ID of the subgraph.
pub subgraph_id: SubgraphDeploymentId,
/// Name of the entity type.
pub entity_type: EntityType,
/// ID of the individual entity.
pub entity_id: String,
}
impl StableHash for EntityKey {
fn stable_hash<H: StableHasher>(&self, mut sequence_number: H::Seq, state: &mut H) {
self.subgraph_id
.stable_hash(sequence_number.next_child(), state);
self.entity_type
.as_str()
.stable_hash(sequence_number.next_child(), state);
self.entity_id
.stable_hash(sequence_number.next_child(), state);
}
}
impl EntityKey {
pub fn data(subgraph_id: SubgraphDeploymentId, entity_type: String, entity_id: String) -> Self {
Self {
subgraph_id,
entity_type: EntityType::new(entity_type),
entity_id,
}
}
}
#[test]
fn key_stable_hash() {
use stable_hash::crypto::SetHasher;
use stable_hash::utils::stable_hash;
#[track_caller]
fn hashes_to(key: &EntityKey, exp: &str) {
let hash = hex::encode(stable_hash::<SetHasher, _>(&key));
assert_eq!(exp, hash.as_str());
}
let id = SubgraphDeploymentId::new("QmP9MRvVzwHxr3sGvujihbvJzcTz2LYLMfi5DyihBg6VUd").unwrap();
let key = EntityKey::data(id.clone(), "Account".to_string(), "0xdeadbeef".to_string());
hashes_to(
&key,
"905b57035d6f98cff8281e7b055e10570a2bd31190507341c6716af2d3c1ad98",
);
}
/// Supported types of store filters.
#[derive(Clone, Debug, PartialEq)]
pub enum EntityFilter {
And(Vec<EntityFilter>),
Or(Vec<EntityFilter>),
Equal(Attribute, Value),
Not(Attribute, Value),
GreaterThan(Attribute, Value),
LessThan(Attribute, Value),
GreaterOrEqual(Attribute, Value),
LessOrEqual(Attribute, Value),
In(Attribute, Vec<Value>),
NotIn(Attribute, Vec<Value>),
Contains(Attribute, Value),
NotContains(Attribute, Value),
StartsWith(Attribute, Value),
NotStartsWith(Attribute, Value),
EndsWith(Attribute, Value),
NotEndsWith(Attribute, Value),
}
// Define some convenience methods
impl EntityFilter {
pub fn new_equal(
attribute_name: impl Into<Attribute>,
attribute_value: impl Into<Value>,
) -> Self {
EntityFilter::Equal(attribute_name.into(), attribute_value.into())
}
pub fn new_in(
attribute_name: impl Into<Attribute>,
attribute_values: Vec<impl Into<Value>>,
) -> Self {
EntityFilter::In(
attribute_name.into(),
attribute_values.into_iter().map(Into::into).collect(),
)
}
pub fn and_maybe(self, other: Option<Self>) -> Self {
use EntityFilter as f;
match other {
Some(other) => match (self, other) {
(f::And(mut fs1), f::And(mut fs2)) => {
fs1.append(&mut fs2);
f::And(fs1)
}
(f::And(mut fs1), f2) => {
fs1.push(f2);
f::And(fs1)
}
(f1, f::And(mut fs2)) => {
fs2.push(f1);
f::And(fs2)
}
(f1, f2) => f::And(vec![f1, f2]),
},
None => self,
}
}
}
/// The order in which entities should be restored from a store.
#[derive(Clone, Debug, PartialEq)]
pub enum EntityOrder {
/// Order ascending by the given attribute. Use `id` as a tie-breaker
Ascending(String, ValueType),
/// Order descending by the given attribute. Use `id` as a tie-breaker
Descending(String, ValueType),
/// Order by the `id` of the entities
Default,
/// Do not order at all. This speeds up queries where we know that
/// order does not matter
Unordered,
}
/// How many entities to return, how many to skip etc.
#[derive(Clone, Debug, PartialEq)]
pub struct EntityRange {
/// Limit on how many entities to return.
pub first: Option<u32>,
/// How many entities to skip.
pub skip: u32,
}
impl EntityRange {
/// Query for the first `n` entities.
pub fn first(n: u32) -> Self {
Self {
first: Some(n),
skip: 0,
}
}
}
/// The attribute we want to window by in an `EntityWindow`. We have to
/// distinguish between scalar and list attributes since we need to use
/// different queries for them, and the JSONB storage scheme can not
/// determine that by itself
#[derive(Clone, Debug, PartialEq)]
pub enum WindowAttribute {
Scalar(String),
List(String),
}
impl WindowAttribute {
pub fn name(&self) -> &str {
match self {
WindowAttribute::Scalar(name) => name,
WindowAttribute::List(name) => name,
}
}
}
/// How to connect children to their parent when the child table does not
/// store parent id's
#[derive(Clone, Debug, PartialEq)]
pub enum ParentLink {
/// The parent stores a list of child ids. The ith entry in the outer
/// vector contains the id of the children for `EntityWindow.ids[i]`
List(Vec<Vec<String>>),
/// The parent stores the id of one child. The ith entry in the
/// vector contains the id of the child of the parent with id
/// `EntityWindow.ids[i]`
Scalar(Vec<String>),
}
/// How many children a parent can have when the child stores
/// the id of the parent
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum ChildMultiplicity {
Single,
Many,
}
/// How to select children for their parents depending on whether the
/// child stores parent ids (`Direct`) or the parent
/// stores child ids (`Parent`)
#[derive(Clone, Debug, PartialEq)]
pub enum EntityLink {
/// The parent id is stored in this child attribute
Direct(WindowAttribute, ChildMultiplicity),
/// Join with the parents table to get at the parent id
Parent(ParentLink),
}
/// Window results of an `EntityQuery` query along the parent's id:
/// the `order_by`, `order_direction`, and `range` of the query apply to
/// entities that belong to the same parent. Only entities that belong to
/// one of the parents listed in `ids` will be included in the query result.
///
/// Note that different windows can vary both by the entity type and id of
/// the children, but also by how to get from a child to its parent, i.e.,
/// it is possible that two windows access the same entity type, but look
/// at different attributes to connect to parent entities
#[derive(Clone, Debug, PartialEq)]
pub struct EntityWindow {
/// The entity type for this window
pub child_type: EntityType,
/// The ids of parents that should be considered for this window
pub ids: Vec<String>,
/// How to get the parent id
pub link: EntityLink,
}
/// The base collections from which we are going to get entities for use in
/// `EntityQuery`; the result of the query comes from applying the query's
/// filter and order etc. to the entities described in this collection. For
/// a windowed collection order and range are applied to each individual
/// window
#[derive(Clone, Debug, PartialEq)]
pub enum EntityCollection {
/// Use all entities of the given types
All(Vec<EntityType>),
/// Use entities according to the windows. The set of entities that we
/// apply order and range to is formed by taking all entities matching
/// the window, and grouping them by the attribute of the window. Entities
/// that have the same value in the `attribute` field of their window are
/// grouped together. Note that it is possible to have one window for
/// entity type `A` and attribute `a`, and another for entity type `B` and
/// column `b`; they will be grouped by using `A.a` and `B.b` as the keys
Window(Vec<EntityWindow>),
}
/// The type we use for block numbers. This has to be a signed integer type
/// since Postgres does not support unsigned integer types. But 2G ought to
/// be enough for everybody
pub type BlockNumber = i32;
pub const BLOCK_NUMBER_MAX: BlockNumber = std::i32::MAX;
/// A query for entities in a store.
///
/// Details of how query generation for `EntityQuery` works can be found
/// at https://github.com/graphprotocol/rfcs/blob/master/engineering-plans/0001-graphql-query-prefetching.md
#[derive(Clone, Debug)]
pub struct EntityQuery {
/// ID of the subgraph.
pub subgraph_id: SubgraphDeploymentId,
/// The block height at which to execute the query. Set this to
/// `BLOCK_NUMBER_MAX` to run the query at the latest available block.
/// If the subgraph uses JSONB storage, anything but `BLOCK_NUMBER_MAX`
/// will cause an error as JSONB storage does not support querying anything
/// but the latest block
pub block: BlockNumber,
/// The names of the entity types being queried. The result is the union
/// (with repetition) of the query for each entity.
pub collection: EntityCollection,
/// Filter to filter entities by.
pub filter: Option<EntityFilter>,
/// How to order the entities
pub order: EntityOrder,
/// A range to limit the size of the result.
pub range: EntityRange,
/// Optional logger for anything related to this query
pub logger: Option<Logger>,
pub query_id: Option<String>,
_force_use_of_new: (),
}
impl EntityQuery {
pub fn new(
subgraph_id: SubgraphDeploymentId,
block: BlockNumber,
collection: EntityCollection,
) -> Self {
EntityQuery {
subgraph_id,
block,
collection,
filter: None,
order: EntityOrder::Default,
range: EntityRange::first(100),
logger: None,
query_id: None,
_force_use_of_new: (),
}
}
pub fn filter(mut self, filter: EntityFilter) -> Self {
self.filter = Some(filter);
self
}
pub fn order(mut self, order: EntityOrder) -> Self {
self.order = order;
self
}
pub fn range(mut self, range: EntityRange) -> Self {
self.range = range;
self
}
pub fn first(mut self, first: u32) -> Self {
self.range.first = Some(first);
self
}
pub fn skip(mut self, skip: u32) -> Self {
self.range.skip = skip;
self
}
pub fn simplify(mut self) -> Self {
// If there is one window, with one id, in a direct relation to the
// entities, we can simplify the query by changing the filter and
// getting rid of the window
if let EntityCollection::Window(windows) = &self.collection {
if windows.len() == 1 {
let window = windows.first().expect("we just checked");
if window.ids.len() == 1 {
let id = window.ids.first().expect("we just checked");
if let EntityLink::Direct(attribute, _) = &window.link {
let filter = match attribute {
WindowAttribute::Scalar(name) => {
EntityFilter::Equal(name.to_owned(), id.into())
}
WindowAttribute::List(name) => {
EntityFilter::Contains(name.to_owned(), Value::from(vec![id]))
}
};
self.filter = Some(filter.and_maybe(self.filter));
self.collection = EntityCollection::All(vec![window.child_type.to_owned()]);
}
}
}
}
self
}
}
/// Operation types that lead to entity changes.
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq, Eq, Hash)]
#[serde(rename_all = "lowercase")]
pub enum EntityChangeOperation {
/// An entity was added or updated
Set,
/// An existing entity was removed.
Removed,
}
/// Entity change events emitted by [Store](trait.Store.html) implementations.
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq, Eq, Hash)]
pub enum EntityChange {
Data {
subgraph_id: SubgraphDeploymentId,
/// Entity type name of the changed entity.
entity_type: EntityType,
},
Assignment {
subgraph_id: SubgraphDeploymentId,
operation: EntityChangeOperation,
},
}
impl EntityChange {
pub fn for_data(key: EntityKey) -> Self {
Self::Data {
subgraph_id: key.subgraph_id,
entity_type: key.entity_type,
}
}
pub fn for_assignment(
subgraph_id: SubgraphDeploymentId,
operation: EntityChangeOperation,
) -> Self {
Self::Assignment {
subgraph_id,
operation,
}
}
pub fn as_filter(&self) -> SubscriptionFilter {
use EntityChange::*;
match self {
Data {
subgraph_id,
entity_type,
..
} => SubscriptionFilter::Entities(subgraph_id.clone(), entity_type.clone()),
Assignment { .. } => SubscriptionFilter::Assignment,
}
}
}
#[derive(Clone, Debug, Serialize, Deserialize)]
/// The store emits `StoreEvents` to indicate that some entities have changed.
/// For block-related data, at most one `StoreEvent` is emitted for each block
/// that is processed. The `changes` vector contains the details of what changes
/// were made, and to which entity.
///
/// Since the 'subgraph of subgraphs' is special, and not directly related to
/// any specific blocks, `StoreEvents` for it are generated as soon as they are
/// written to the store.
pub struct StoreEvent {
// The tag is only there to make it easier to track StoreEvents in the
// logs as they flow through the system
pub tag: usize,
pub changes: HashSet<EntityChange>,
}
impl<'a> FromIterator<&'a EntityModification> for StoreEvent {
fn from_iter<I: IntoIterator<Item = &'a EntityModification>>(mods: I) -> Self {
let changes: Vec<_> = mods
.into_iter()
.map(|op| {
use self::EntityModification::*;
match op {
Insert { key, .. } | Overwrite { key, .. } | Remove { key } => {
EntityChange::for_data(key.clone())
}
}
})
.collect();
StoreEvent::new(changes)
}
}
impl StoreEvent {
pub fn new(changes: Vec<EntityChange>) -> StoreEvent {
static NEXT_TAG: AtomicUsize = AtomicUsize::new(0);
let tag = NEXT_TAG.fetch_add(1, Ordering::Relaxed);
let changes = changes.into_iter().collect();
StoreEvent { tag, changes }
}
/// Extend `ev1` with `ev2`. If `ev1` is `None`, just set it to `ev2`
fn accumulate(logger: &Logger, ev1: &mut Option<StoreEvent>, ev2: StoreEvent) {
if let Some(e) = ev1 {
trace!(logger, "Adding changes to event";
"from" => ev2.tag, "to" => e.tag);
e.changes.extend(ev2.changes);
} else {
*ev1 = Some(ev2);
}
}
pub fn extend(mut self, other: StoreEvent) -> Self {
self.changes.extend(other.changes);
self
}
}
impl fmt::Display for StoreEvent {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(
f,
"StoreEvent[{}](changes: {})",
self.tag,
self.changes.len()
)
}
}
impl PartialEq for StoreEvent {
fn eq(&self, other: &StoreEvent) -> bool {
// Ignore tag for equality
self.changes == other.changes
}
}
/// A `StoreEventStream` produces the `StoreEvents`. Various filters can be applied
/// to it to reduce which and how many events are delivered by the stream.
pub struct StoreEventStream<S> {
source: S,
}
/// A boxed `StoreEventStream`
pub type StoreEventStreamBox =
StoreEventStream<Box<dyn Stream<Item = Arc<StoreEvent>, Error = ()> + Send>>;
impl<S> Stream for StoreEventStream<S>
where
S: Stream<Item = Arc<StoreEvent>, Error = ()> + Send,
{
type Item = Arc<StoreEvent>;
type Error = ();
fn poll(&mut self) -> Result<Async<Option<Self::Item>>, Self::Error> {
self.source.poll()
}
}
impl<S> StoreEventStream<S>
where
S: Stream<Item = Arc<StoreEvent>, Error = ()> + Send + 'static,
{
// Create a new `StoreEventStream` from another such stream
pub fn new(source: S) -> Self {
StoreEventStream { source }
}
/// Filter a `StoreEventStream` by subgraph and entity. Only events that have
/// at least one change to one of the given (subgraph, entity) combinations
/// will be delivered by the filtered stream.
pub fn filter_by_entities(self, filters: Vec<SubscriptionFilter>) -> StoreEventStreamBox {
let source = self.source.filter(move |event| {
event
.changes
.iter()
.any(|change| filters.iter().any(|filter| filter.matches(change)))
});
StoreEventStream::new(Box::new(source))
}
/// Reduce the frequency with which events are generated while a
/// subgraph deployment is syncing. While the given `deployment` is not
/// synced yet, events from `source` are reported at most every
/// `interval`. At the same time, no event is held for longer than
/// `interval`. The `StoreEvents` that arrive during an interval appear
/// on the returned stream as a single `StoreEvent`; the events are
/// combined by using the maximum of all sources and the concatenation
/// of the changes of the `StoreEvents` received during the interval.
pub fn throttle_while_syncing(
self,
logger: &Logger,
store: Arc<dyn QueryStore>,
deployment: SubgraphDeploymentId,
interval: Duration,
) -> StoreEventStreamBox {
// We refresh the synced flag every SYNC_REFRESH_FREQ*interval to
// avoid hitting the database too often to see if the subgraph has
// been synced in the meantime. The only downside of this approach is
// that we might continue throttling subscription updates for a little
// bit longer than we really should
static SYNC_REFRESH_FREQ: u32 = 4;
// Check whether a deployment is marked as synced in the store
let check_synced = |store: &dyn QueryStore, deployment: &SubgraphDeploymentId| {
store.is_deployment_synced(deployment).unwrap_or(false)
};
let mut synced = check_synced(&*store, &deployment);
let synced_check_interval = interval.checked_mul(SYNC_REFRESH_FREQ).unwrap();
let mut synced_last_refreshed = Instant::now();
let mut pending_event: Option<StoreEvent> = None;
let mut source = self.source.fuse();
let mut had_err = false;
let mut delay = tokio::time::delay_for(interval).unit_error().compat();
let logger = logger.clone();
let source = Box::new(poll_fn(move || -> Poll<Option<Arc<StoreEvent>>, ()> {
if had_err {
// We had an error the last time through, but returned the pending
// event first. Indicate the error now
had_err = false;
return Err(());
}
if !synced && synced_last_refreshed.elapsed() > synced_check_interval {
synced = check_synced(&*store, &deployment);
synced_last_refreshed = Instant::now();
}
if synced {
return source.poll();
}
// Check if interval has passed since the last time we sent something.
// If it has, start a new delay timer
let should_send = match futures::future::Future::poll(&mut delay) {
Ok(Async::NotReady) => false,
// Timer errors are harmless. Treat them as if the timer had
// become ready.
Ok(Async::Ready(())) | Err(_) => {
delay = tokio::time::delay_for(interval).unit_error().compat();
true
}
};
// Get as many events as we can off of the source stream
loop {
match source.poll() {
Ok(Async::NotReady) => {
if should_send && pending_event.is_some() {
let event = pending_event.take().map(|event| Arc::new(event));
return Ok(Async::Ready(event));
} else {
return Ok(Async::NotReady);
}
}
Ok(Async::Ready(None)) => {
let event = pending_event.take().map(|event| Arc::new(event));
return Ok(Async::Ready(event));
}
Ok(Async::Ready(Some(event))) => {
StoreEvent::accumulate(&logger, &mut pending_event, (*event).clone());
}
Err(()) => {
// Before we report the error, deliver what we have accumulated so far.
// We will report the error the next time poll() is called
if pending_event.is_some() {
had_err = true;
let event = pending_event.take().map(|event| Arc::new(event));
return Ok(Async::Ready(event));
} else {
return Err(());
}
}
};
}
}));
StoreEventStream::new(source)
}
}
/// An entity operation that can be transacted into the store.
#[derive(Clone, Debug, PartialEq)]
pub enum EntityOperation {
/// Locates the entity specified by `key` and sets its attributes according to the contents of
/// `data`. If no entity exists with this key, creates a new entity.
Set { key: EntityKey, data: Entity },
/// Removes an entity with the specified key, if one exists.
Remove { key: EntityKey },
}
#[derive(Error, Debug)]
pub enum StoreError {
#[error("store error: {0}")]
Unknown(Error),
#[error(
"tried to set entity of type `{0}` with ID \"{1}\" but an entity of type `{2}`, \
which has an interface in common with `{0}`, exists with the same ID"
)]
ConflictingId(String, String, String), // (entity, id, conflicting_entity)
#[error("unknown field '{0}'")]
UnknownField(String),
#[error("unknown table '{0}'")]
UnknownTable(String),
#[error("malformed directive '{0}'")]
MalformedDirective(String),
#[error("query execution failed: {0}")]
QueryExecutionError(String),
#[error("invalid identifier: {0}")]
InvalidIdentifier(String),
#[error(
"subgraph `{0}` has already processed block `{1}`; \
there are most likely two (or more) nodes indexing this subgraph"
)]
DuplicateBlockProcessing(SubgraphDeploymentId, BlockNumber),
/// An internal error where we expected the application logic to enforce
/// some constraint, e.g., that subgraph names are unique, but found that
/// constraint to not hold
#[error("internal constraint violated: {0}")]
ConstraintViolation(String),
#[error("deployment not found: {0}")]
DeploymentNotFound(String),
#[error("shard not found: {0} (this usually indicates a misconfiguration)")]
UnknownShard(String),
#[error("Fulltext search not yet deterministic")]
FulltextSearchNonDeterministic,
}
// Convenience to report a constraint violation
#[macro_export]
macro_rules! constraint_violation {
($msg:expr) => {{
StoreError::ConstraintViolation(format!("{}", $msg))
}};
($fmt:expr, $($arg:tt)*) => {{
StoreError::ConstraintViolation(format!($fmt, $($arg)*))
}}
}
impl From<::diesel::result::Error> for StoreError {
fn from(e: ::diesel::result::Error) -> Self {
StoreError::Unknown(e.into())
}
}
impl From<::diesel::r2d2::PoolError> for StoreError {
fn from(e: ::diesel::r2d2::PoolError) -> Self {
StoreError::Unknown(e.into())
}
}
impl From<Error> for StoreError {
fn from(e: Error) -> Self {
StoreError::Unknown(e)
}
}
impl From<serde_json::Error> for StoreError {
fn from(e: serde_json::Error) -> Self {
StoreError::Unknown(e.into())
}
}
impl From<QueryExecutionError> for StoreError {
fn from(e: QueryExecutionError) -> Self {
StoreError::QueryExecutionError(e.to_string())
}
}
pub struct StoredDynamicDataSource {
pub name: String,
pub source: Source,
pub context: Option<String>,
pub creation_block: Option<BlockNumber>,
}
impl From<&DataSource> for StoredDynamicDataSource {
fn from(ds: &DataSource) -> Self {
Self {
name: ds.name.clone(),
source: ds.source.clone(),
context: ds
.context
.as_ref()
.as_ref()
.map(|ctx| serde_json::to_string(&ctx).unwrap()),
creation_block: ds.creation_block,
}
}
}
pub trait SubscriptionManager: Send + Sync + 'static {
/// Subscribe to changes for specific subgraphs and entities.
///
/// Returns a stream of store events that match the input arguments.
fn subscribe(&self, entities: Vec<SubscriptionFilter>) -> StoreEventStreamBox;
}
/// Common trait for store implementations.
#[async_trait]
pub trait SubgraphStore: Send + Sync + 'static {
/// Get a pointer to the most recently processed block in the subgraph.
fn block_ptr(
&self,
subgraph_id: &SubgraphDeploymentId,
) -> Result<Option<EthereumBlockPointer>, Error>;
fn supports_proof_of_indexing<'a>(
self: Arc<Self>,
subgraph_id: &'a SubgraphDeploymentId,
) -> DynTryFuture<'a, bool>;
/// A value of None indicates that the table is not available. Re-deploying
/// the subgraph fixes this. It is undesirable to force everything to
/// re-sync from scratch, so existing deployments will continue without a
/// Proof of Indexing. Once all subgraphs have been re-deployed the Option
/// can be removed.
fn get_proof_of_indexing<'a>(
self: Arc<Self>,
subgraph_id: &'a SubgraphDeploymentId,
indexer: &'a Option<Address>,
block: EthereumBlockPointer,
) -> DynTryFuture<'a, Option<[u8; 32]>>;
/// Looks up an entity using the given store key at the latest block.
fn get(&self, key: EntityKey) -> Result<Option<Entity>, QueryExecutionError>;
/// Look up multiple entities as of the latest block. Returns a map of
/// entities by type.
fn get_many(
&self,
subgraph_id: &SubgraphDeploymentId,
ids_for_type: BTreeMap<&EntityType, Vec<&str>>,
) -> Result<BTreeMap<EntityType, Vec<Entity>>, StoreError>;
/// Queries the store for entities that match the store query.
fn find(&self, query: EntityQuery) -> Result<Vec<Entity>, QueryExecutionError>;
/// Queries the store for a single entity matching the store query.
fn find_one(&self, query: EntityQuery) -> Result<Option<Entity>, QueryExecutionError>;
/// Find the reverse of keccak256 for `hash` through looking it up in the
/// rainbow table.
fn find_ens_name(&self, _hash: &str) -> Result<Option<String>, QueryExecutionError>;
/// Transact the entity changes from a single block atomically into the store, and update the
/// subgraph block pointer to `block_ptr_to`.
///
/// `block_ptr_to` must point to a child block of the current subgraph block pointer.
fn transact_block_operations(
&self,
subgraph_id: SubgraphDeploymentId,
block_ptr_to: EthereumBlockPointer,
mods: Vec<EntityModification>,
stopwatch: StopwatchMetrics,
data_sources: Vec<StoredDynamicDataSource>,
deterministic_errors: Vec<SubgraphError>,
) -> Result<(), StoreError>;
/// Revert the entity changes from a single block atomically in the store, and update the
/// subgraph block pointer to `block_ptr_to`.
///
/// `block_ptr_to` must point to the parent block of the subgraph block pointer.
fn revert_block_operations(
&self,
subgraph_id: SubgraphDeploymentId,
block_ptr_to: EthereumBlockPointer,
) -> Result<(), StoreError>;
/// Find the deployment for the current version of subgraph `name` and
/// return details about it needed for executing queries
async fn deployment_state_from_name(
&self,
name: SubgraphName,
) -> Result<DeploymentState, StoreError>;
/// Find the deployment for the subgraph deployment `id` and
/// return details about it needed for executing queries
async fn deployment_state_from_id(
&self,
id: SubgraphDeploymentId,
) -> Result<DeploymentState, StoreError>;
/// Set subgraph status to failed with the given error as the cause.
async fn fail_subgraph(
&self,
id: SubgraphDeploymentId,
error: SubgraphError,
) -> Result<(), StoreError>;
/// Check if the store is accepting queries for the specified subgraph.
/// May return true even if the specified subgraph is not currently assigned to an indexing
/// node, as the store will still accept queries.
fn is_deployed(&self, id: &SubgraphDeploymentId) -> Result<bool, Error> {
self.block_ptr(id).map(|ptr| ptr.is_some())
}
/// Return true if the deployment with the given id is fully synced,
/// and return false otherwise. Errors from the store are passed back up
fn is_deployment_synced(&self, id: &SubgraphDeploymentId) -> Result<bool, Error>;
/// The deployment `id` finished syncing, mark it as synced in the database
/// and promote it to the current version in the subgraphs where it was the
/// pending version so far
fn deployment_synced(&self, id: &SubgraphDeploymentId) -> Result<(), Error>;
/// Create a new deployment for the subgraph `name`. If the deployment
/// already exists (as identified by the `schema.id`), reuse that, otherwise
/// create a new deployment, and point the current or pending version of
/// `name` at it, depending on the `mode`
fn create_subgraph_deployment(
&self,
name: SubgraphName,
schema: &Schema,
deployment: SubgraphDeploymentEntity,
node_id: NodeId,
network: String,
mode: SubgraphVersionSwitchingMode,
) -> Result<(), StoreError>;
/// Create a new subgraph with the given name. If one already exists, use
/// the existing one. Return the `id` of the newly created or existing
/// subgraph
fn create_subgraph(&self, name: SubgraphName) -> Result<String, StoreError>;
/// Remove a subgraph and all its versions; if deployments that were used
/// by this subgraph do not need to be indexed anymore, also remove
/// their assignment, but keep the deployments themselves around
fn remove_subgraph(&self, name: SubgraphName) -> Result<(), StoreError>;
/// Assign the subgraph with `id` to the node `node_id`. If there is no
/// assignment for the given deployment, report an error.
fn reassign_subgraph(
&self,
id: &SubgraphDeploymentId,
node_id: &NodeId,
) -> Result<(), StoreError>;
fn unassign_subgraph(&self, id: &SubgraphDeploymentId) -> Result<(), StoreError>;
/// Start an existing subgraph deployment.
fn start_subgraph_deployment(
&self,
logger: &Logger,
subgraph_id: &SubgraphDeploymentId,
) -> Result<(), StoreError>;
/// Remove the fatal error from a subgraph and check if it is healthy or unhealthy.
fn unfail(&self, subgraph_id: &SubgraphDeploymentId) -> Result<(), StoreError>;
/// Load the dynamic data sources for the given deployment
async fn load_dynamic_data_sources(
&self,
subgraph_id: SubgraphDeploymentId,
) -> Result<Vec<StoredDynamicDataSource>, StoreError>;
fn assigned_node(
&self,
subgraph_id: &SubgraphDeploymentId,
) -> Result<Option<NodeId>, StoreError>;
fn assignments(&self, node: &NodeId) -> Result<Vec<SubgraphDeploymentId>, StoreError>;
/// Return `true` if a subgraph `name` exists, regardless of whether the
/// subgraph has any deployments attached to it
fn subgraph_exists(&self, name: &SubgraphName) -> Result<bool, StoreError>;
/// Return the GraphQL schema supplied by the user
fn input_schema(&self, subgraph_id: &SubgraphDeploymentId) -> Result<Arc<Schema>, StoreError>;
/// Return the GraphQL schema that was derived from the user's schema by
/// adding a root query type etc. to it
fn api_schema(&self, subgraph_id: &SubgraphDeploymentId) -> Result<Arc<ApiSchema>, StoreError>;
/// Return the name of the network that the subgraph is indexing from. The
/// names returned are things like `mainnet` or `ropsten`
fn network_name(&self, subgraph_id: &SubgraphDeploymentId) -> Result<String, StoreError>;
}
#[async_trait]
pub trait QueryStoreManager: Send + Sync + 'static {
/// Get a new `QueryStore`. A `QueryStore` is tied to a DB replica, so if Graph Node is
/// configured to use secondary DB servers the queries will be distributed between servers.
///
/// The query store is specific to a deployment, and `id` must indicate
/// which deployment will be queried. It is not possible to use the id of the
/// metadata subgraph, though the resulting store can be used to query
/// metadata about the deployment `id` (but not metadata about other deployments).
///
/// If `for_subscription` is true, the main replica will always be used.
async fn query_store(
&self,
target: QueryTarget,
for_subscription: bool,
) -> Result<Arc<dyn QueryStore + Send + Sync>, QueryExecutionError>;
}
mock! {
pub Store {
fn get_many_mock<'a>(
&self,
_subgraph_id: &SubgraphDeploymentId,
_ids_for_type: BTreeMap<&'a EntityType, Vec<&'a str>>,
) -> Result<BTreeMap<EntityType, Vec<Entity>>, StoreError>;
}
}
// The type that the connection pool uses to track wait times for
// connection checkouts
pub type PoolWaitStats = Arc<RwLock<MovingStats>>;
// The store trait must be implemented manually because mockall does not support async_trait, nor borrowing from arguments.
#[async_trait]
impl SubgraphStore for MockStore {
fn block_ptr(
&self,
_subgraph_id: &SubgraphDeploymentId,
) -> Result<Option<EthereumBlockPointer>, Error> {
unimplemented!();
}
fn supports_proof_of_indexing<'a>(
self: Arc<Self>,
_subgraph_id: &'a SubgraphDeploymentId,
) -> DynTryFuture<'a, bool> {
unimplemented!();
}
fn get_proof_of_indexing<'a>(
self: Arc<Self>,
_subgraph_id: &'a SubgraphDeploymentId,
_indexer: &'a Option<Address>,
_block: EthereumBlockPointer,
) -> DynTryFuture<'a, Option<[u8; 32]>> {
unimplemented!();
}
fn get(&self, _key: EntityKey) -> Result<Option<Entity>, QueryExecutionError> {
unimplemented!()
}
fn get_many(
&self,
subgraph_id: &SubgraphDeploymentId,
ids_for_type: BTreeMap<&EntityType, Vec<&str>>,
) -> Result<BTreeMap<EntityType, Vec<Entity>>, StoreError> {
self.get_many_mock(subgraph_id, ids_for_type)
}
fn find(&self, _query: EntityQuery) -> Result<Vec<Entity>, QueryExecutionError> {
unimplemented!()
}
fn find_one(&self, _query: EntityQuery) -> Result<Option<Entity>, QueryExecutionError> {
unimplemented!()
}
fn find_ens_name(&self, _hash: &str) -> Result<Option<String>, QueryExecutionError> {
unimplemented!()
}
fn transact_block_operations(
&self,
_subgraph_id: SubgraphDeploymentId,
_block_ptr_to: EthereumBlockPointer,
_mods: Vec<EntityModification>,
_stopwatch: StopwatchMetrics,
_data_sources: Vec<StoredDynamicDataSource>,
_deterministic_errors: Vec<SubgraphError>,
) -> Result<(), StoreError> {
unimplemented!()
}
fn revert_block_operations(
&self,
_subgraph_id: SubgraphDeploymentId,
_block_ptr_to: EthereumBlockPointer,
) -> Result<(), StoreError> {
unimplemented!()
}
async fn deployment_state_from_name(
&self,
_: SubgraphName,
) -> Result<DeploymentState, StoreError> {
unimplemented!()
}
async fn deployment_state_from_id(
&self,
_: SubgraphDeploymentId,
) -> Result<DeploymentState, StoreError> {
unimplemented!()
}
async fn fail_subgraph(
&self,
_: SubgraphDeploymentId,
_: SubgraphError,
) -> Result<(), StoreError> {
unimplemented!()
}
fn create_subgraph_deployment(
&self,
_: SubgraphName,
_: &Schema,
_: SubgraphDeploymentEntity,
_: NodeId,
_: String,
_: SubgraphVersionSwitchingMode,
) -> Result<(), StoreError> {
unimplemented!()
}
fn create_subgraph(&self, _: SubgraphName) -> Result<String, StoreError> {
unimplemented!()
}
fn remove_subgraph(&self, _: SubgraphName) -> Result<(), StoreError> {
unimplemented!()
}
fn reassign_subgraph(&self, _: &SubgraphDeploymentId, _: &NodeId) -> Result<(), StoreError> {
unimplemented!()
}
fn unassign_subgraph(&self, _: &SubgraphDeploymentId) -> Result<(), StoreError> {
unimplemented!()
}
fn start_subgraph_deployment(
&self,
_logger: &Logger,
_subgraph_id: &SubgraphDeploymentId,
) -> Result<(), StoreError> {
unimplemented!()
}
fn unfail(&self, _: &SubgraphDeploymentId) -> Result<(), StoreError> {
unimplemented!()
}
fn is_deployment_synced(&self, _: &SubgraphDeploymentId) -> Result<bool, Error> {
unimplemented!()
}
fn deployment_synced(&self, _: &SubgraphDeploymentId) -> Result<(), Error> {
unimplemented!()
}
async fn load_dynamic_data_sources(
&self,
_subgraph_id: SubgraphDeploymentId,
) -> Result<Vec<StoredDynamicDataSource>, StoreError> {
unimplemented!()
}
fn assigned_node(&self, _: &SubgraphDeploymentId) -> Result<Option<NodeId>, StoreError> {
unimplemented!()
}
fn assignments(&self, _: &NodeId) -> Result<Vec<SubgraphDeploymentId>, StoreError> {
unimplemented!()
}
fn subgraph_exists(&self, _: &SubgraphName) -> Result<bool, StoreError> {
unimplemented!()
}
fn input_schema(&self, _: &SubgraphDeploymentId) -> Result<Arc<Schema>, StoreError> {
unimplemented!()
}
fn api_schema(&self, _: &SubgraphDeploymentId) -> Result<Arc<ApiSchema>, StoreError> {
unimplemented!()
}
fn network_name(&self, _: &SubgraphDeploymentId) -> Result<String, StoreError> {
unimplemented!()
}
}
pub trait BlockStore: Send + Sync + 'static {
type ChainStore: ChainStore;
fn chain_store(&self, network: &str) -> Option<Arc<Self::ChainStore>>;
}
pub trait CallCache: Send + Sync + 'static {
type EthereumCallCache: EthereumCallCache;
fn ethereum_call_cache(&self, network: &str) -> Option<Arc<Self::EthereumCallCache>>;
}
/// Common trait for blockchain store implementations.
#[automock]
pub trait ChainStore: Send + Sync + 'static {
/// Get a pointer to this blockchain's genesis block.
fn genesis_block_ptr(&self) -> Result<EthereumBlockPointer, Error>;
/// Insert blocks into the store (or update if they are already present).
fn upsert_blocks<B, E>(
&self,
_blocks: B,
) -> Box<dyn Future<Item = (), Error = E> + Send + 'static>
where
B: Stream<Item = EthereumBlock, Error = E> + Send + 'static,
E: From<Error> + Send + 'static,
Self: Sized,
{
unimplemented!()
}
fn upsert_light_blocks(&self, blocks: Vec<LightEthereumBlock>) -> Result<(), Error>;
/// Try to update the head block pointer to the block with the highest block number.
///
/// Only updates pointer if there is a block with a higher block number than the current head
/// block, and the `ancestor_count` most recent ancestors of that block are in the store.
/// Note that this means if the Ethereum node returns a different "latest block" with a
/// different hash but same number, we do not update the chain head pointer.
/// This situation can happen on e.g. Infura where requests are load balanced across many
/// Ethereum nodes, in which case it's better not to continuously revert and reapply the latest
/// blocks.
///
/// If the pointer was updated, returns `Ok(vec![])`, and fires a HeadUpdateEvent.
///
/// If no block has a number higher than the current head block, returns `Ok(vec![])`.
///
/// If the candidate new head block had one or more missing ancestors, returns
/// `Ok(missing_blocks)`, where `missing_blocks` is a nonexhaustive list of missing blocks.
fn attempt_chain_head_update(&self, ancestor_count: BlockNumber) -> Result<Vec<H256>, Error>;
/// Subscribe to chain head updates.
fn chain_head_updates(&self) -> ChainHeadUpdateStream;
/// Get the current head block pointer for this chain.
/// Any changes to the head block pointer will be to a block with a larger block number, never
/// to a block with a smaller or equal block number.
///
/// The head block pointer will be None on initial set up.
fn chain_head_ptr(&self) -> Result<Option<EthereumBlockPointer>, Error>;
/// Returns the blocks present in the store.
fn blocks(&self, hashes: Vec<H256>) -> Result<Vec<LightEthereumBlock>, Error>;
/// Get the `offset`th ancestor of `block_hash`, where offset=0 means the block matching
/// `block_hash` and offset=1 means its parent. Returns None if unable to complete due to
/// missing blocks in the chain store.
///
/// Returns an error if the offset would reach past the genesis block.
fn ancestor_block(
&self,
block_ptr: EthereumBlockPointer,
offset: BlockNumber,
) -> Result<Option<EthereumBlock>, Error>;
/// Remove old blocks from the cache we maintain in the database and
/// return a pair containing the number of the oldest block retained
/// and the number of blocks deleted.
/// We will never remove blocks that are within `ancestor_count` of
/// the chain head.
fn cleanup_cached_blocks(
&self,
ancestor_count: BlockNumber,
) -> Result<(BlockNumber, usize), Error>;
/// Return the hashes of all blocks with the given number
fn block_hashes_by_block_number(&self, number: BlockNumber) -> Result<Vec<H256>, Error>;
/// Confirm that block number `number` has hash `hash` and that the store
/// may purge any other blocks with that number
fn confirm_block_hash(&self, number: BlockNumber, hash: &H256) -> Result<usize, Error>;
/// Find the block with `block_hash` and return the network name and number
fn block_number(&self, block_hash: H256) -> Result<Option<(String, BlockNumber)>, StoreError>;
}
pub trait EthereumCallCache: Send + Sync + 'static {
/// Cached return value.
fn get_call(
&self,
contract_address: ethabi::Address,
encoded_call: &[u8],
block: EthereumBlockPointer,
) -> Result<Option<Vec<u8>>, Error>;
// Add entry to the cache.
fn set_call(
&self,
contract_address: ethabi::Address,
encoded_call: &[u8],
block: EthereumBlockPointer,
return_value: &[u8],
) -> Result<(), Error>;
}
/// Store operations used when serving queries for a specific deployment
#[async_trait]
pub trait QueryStore: Send + Sync {
fn find_query_values(
&self,
query: EntityQuery,
) -> Result<Vec<BTreeMap<String, q::Value>>, QueryExecutionError>;
fn is_deployment_synced(&self, id: &SubgraphDeploymentId) -> Result<bool, Error>;
fn block_ptr(
&self,
subgraph_id: SubgraphDeploymentId,
) -> Result<Option<EthereumBlockPointer>, Error>;
fn block_number(&self, block_hash: H256) -> Result<Option<BlockNumber>, StoreError>;
fn wait_stats(&self) -> &PoolWaitStats;
/// If `block` is `None`, assumes the latest block.
async fn has_non_fatal_errors(
&self,
id: SubgraphDeploymentId,
block: Option<BlockNumber>,
) -> Result<bool, StoreError>;
/// Find the current state for the subgraph deployment `id` and
/// return details about it needed for executing queries
async fn deployment_state(&self) -> Result<DeploymentState, QueryExecutionError>;
fn api_schema(&self) -> Result<Arc<ApiSchema>, QueryExecutionError>;
fn network_name(&self) -> &str;
}
/// A view of the store that can provide information about the indexing status
/// of any subgraph and any deployment
pub trait StatusStore: Send + Sync + 'static {
fn status(&self, filter: status::Filter) -> Result<Vec<status::Info>, StoreError>;
/// Support for the explorer-specific API
fn version_info(&self, version_id: &str) -> Result<VersionInfo, StoreError>;
/// Support for the explorer-specific API; note that `subgraph_id` must be
/// the id of an entry in `subgraphs.subgraph`, not that of a deployment.
/// The return values are the ids of the `subgraphs.subgraph_version` for
/// the current and pending versions of the subgraph
fn versions_for_subgraph_id(
&self,
subgraph_id: &str,
) -> Result<(Option<String>, Option<String>), StoreError>;
fn supports_proof_of_indexing<'a>(
self: Arc<Self>,
subgraph_id: &'a SubgraphDeploymentId,
) -> DynTryFuture<'a, bool>;
/// A value of None indicates that the table is not available. Re-deploying
/// the subgraph fixes this. It is undesirable to force everything to
/// re-sync from scratch, so existing deployments will continue without a
/// Proof of Indexing. Once all subgraphs have been re-deployed the Option
/// can be removed.
fn get_proof_of_indexing<'a>(
self: Arc<Self>,
subgraph_id: &'a SubgraphDeploymentId,
indexer: &'a Option<Address>,
block: EthereumBlockPointer,
) -> DynTryFuture<'a, Option<[u8; 32]>>;
}
/// An entity operation that can be transacted into the store; as opposed to
/// `EntityOperation`, we already know whether a `Set` should be an `Insert`
/// or `Update`
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum EntityModification {
/// Insert the entity
Insert { key: EntityKey, data: Entity },
/// Update the entity by overwriting it
Overwrite { key: EntityKey, data: Entity },
/// Remove the entity
Remove { key: EntityKey },
}
impl EntityModification {
pub fn entity_key(&self) -> &EntityKey {
use EntityModification::*;
match self {
Insert { key, .. } | Overwrite { key, .. } | Remove { key } => key,
}
}
pub fn is_remove(&self) -> bool {
match self {
EntityModification::Remove { .. } => true,
_ => false,
}
}
}
/// A representation of entity operations that can be accumulated.
#[derive(Debug, Clone)]
enum EntityOp {
Remove,
Update(Entity),
Overwrite(Entity),
}
impl EntityOp {
fn apply_to(self, entity: Option<Entity>) -> Option<Entity> {
use EntityOp::*;
match (self, entity) {
(Remove, _) => None,
(Overwrite(new), _) | (Update(new), None) => Some(new),
(Update(updates), Some(mut entity)) => {
entity.merge_remove_null_fields(updates);
Some(entity)
}
}
}
fn accumulate(&mut self, next: EntityOp) {
use EntityOp::*;
let update = match next {
// Remove and Overwrite ignore the current value.
Remove | Overwrite(_) => {
*self = next;
return;
}
Update(update) => update,
};
// We have an update, apply it.
match self {
// This is how `Overwrite` is constructed, by accumulating `Update` onto `Remove`.
Remove => *self = Overwrite(update),
Update(current) | Overwrite(current) => current.merge(update),
}
}
}
/// A cache for entities from the store that provides the basic functionality
/// needed for the store interactions in the host exports. This struct tracks
/// how entities are modified, and caches all entities looked up from the
/// store. The cache makes sure that
/// (1) no entity appears in more than one operation
/// (2) only entities that will actually be changed from what they
/// are in the store are changed
pub struct EntityCache {
/// The state of entities in the store. An entry of `None`
/// means that the entity is not present in the store
current: LfuCache<EntityKey, Option<Entity>>,
/// The accumulated changes to an entity.
updates: HashMap<EntityKey, EntityOp>,
// Updates for a currently executing handler.
handler_updates: HashMap<EntityKey, EntityOp>,
// Marks whether updates should go in `handler_updates`.
in_handler: bool,
data_sources: Vec<StoredDynamicDataSource>,
/// The store is only used to read entities.
pub store: Arc<dyn SubgraphStore>,
}
impl Debug for EntityCache {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_struct("EntityCache")
.field("current", &self.current)
.field("updates", &self.updates)
.finish()
}
}
pub struct ModificationsAndCache {
pub modifications: Vec<EntityModification>,
pub data_sources: Vec<StoredDynamicDataSource>,
pub entity_lfu_cache: LfuCache<EntityKey, Option<Entity>>,
}
impl EntityCache {
pub fn new(store: Arc<dyn SubgraphStore>) -> Self {
Self {
current: LfuCache::new(),
updates: HashMap::new(),
handler_updates: HashMap::new(),
in_handler: false,
data_sources: vec![],
store,
}
}
pub fn with_current(
store: Arc<dyn SubgraphStore>,
current: LfuCache<EntityKey, Option<Entity>>,
) -> EntityCache {
EntityCache {
current,
updates: HashMap::new(),
handler_updates: HashMap::new(),
in_handler: false,
data_sources: vec![],
store,
}
}
pub(crate) fn enter_handler(&mut self) {
assert!(!self.in_handler);
self.in_handler = true;
}
pub(crate) fn exit_handler(&mut self) {
assert!(self.in_handler);
self.in_handler = false;
// Apply all handler updates to the main `updates`.
let handler_updates = Vec::from_iter(self.handler_updates.drain());
for (key, op) in handler_updates {
self.entity_op(key, op)
}
}
pub(crate) fn exit_handler_and_discard_changes(&mut self) {
assert!(self.in_handler);
self.in_handler = false;
self.handler_updates.clear();
}
pub fn get(&mut self, key: &EntityKey) -> Result<Option<Entity>, QueryExecutionError> {
// Get the current entity, apply any updates from `updates`, then from `handler_updates`.
let mut entity = self.current.get_entity(&*self.store, &key)?;
if let Some(op) = self.updates.get(&key).cloned() {
entity = op.apply_to(entity)
}
if let Some(op) = self.handler_updates.get(&key).cloned() {
entity = op.apply_to(entity)
}
Ok(entity)
}
pub fn remove(&mut self, key: EntityKey) {
self.entity_op(key, EntityOp::Remove);
}
pub fn set(&mut self, key: EntityKey, entity: Entity) {
self.entity_op(key, EntityOp::Update(entity))
}
pub fn append(&mut self, operations: Vec<EntityOperation>) {
assert!(!self.in_handler);
for operation in operations {
match operation {
EntityOperation::Set { key, data } => {
self.entity_op(key, EntityOp::Update(data));
}
EntityOperation::Remove { key } => {
self.entity_op(key, EntityOp::Remove);
}
}
}
}
/// Add a dynamic data source
pub fn add_data_source(&mut self, data_source: &DataSource) {
self.data_sources.push(data_source.into());
}
fn entity_op(&mut self, key: EntityKey, op: EntityOp) {
use std::collections::hash_map::Entry;
let updates = match self.in_handler {
true => &mut self.handler_updates,
false => &mut self.updates,
};
match updates.entry(key) {
Entry::Vacant(entry) => {
entry.insert(op);
}
Entry::Occupied(mut entry) => entry.get_mut().accumulate(op),
}
}
pub(crate) fn extend(&mut self, other: EntityCache) {
assert!(!other.in_handler);
self.current.extend(other.current);
for (key, op) in other.updates {
self.entity_op(key, op);
}
}
/// Return the changes that have been made via `set` and `remove` as
/// `EntityModification`, making sure to only produce one when a change
/// to the current state is actually needed.
///
/// Also returns the updated `LfuCache`.
pub fn as_modifications(
mut self,
store: &(impl SubgraphStore + ?Sized),
) -> Result<ModificationsAndCache, QueryExecutionError> {
assert!(!self.in_handler);
// The first step is to make sure all entities being set are in `self.current`.
// For each subgraph, we need a map of entity type to missing entity ids.
let missing = self
.updates
.keys()
.filter(|key| !self.current.contains_key(key));
let mut missing_by_subgraph: BTreeMap<_, BTreeMap<&EntityType, Vec<&str>>> =
BTreeMap::new();
for key in missing {
missing_by_subgraph
.entry(&key.subgraph_id)
.or_default()
.entry(&key.entity_type)
.or_default()
.push(&key.entity_id);
}
for (subgraph_id, keys) in missing_by_subgraph {
for (entity_type, entities) in store.get_many(subgraph_id, keys)? {
for entity in entities {
let key = EntityKey {
subgraph_id: subgraph_id.clone(),
entity_type: entity_type.clone(),
entity_id: entity.id().unwrap(),
};
self.current.insert(key, Some(entity));
}
}
}
let mut mods = Vec::new();
for (key, update) in self.updates {
use EntityModification::*;
let current = self.current.remove(&key).and_then(|entity| entity);
let modification = match (current, update) {
// Entity was created
(None, EntityOp::Update(updates)) | (None, EntityOp::Overwrite(updates)) => {
// Merging with an empty entity removes null fields.
let mut data = Entity::new();
data.merge_remove_null_fields(updates);
self.current.insert(key.clone(), Some(data.clone()));
Some(Insert { key, data })
}
// Entity may have been changed
(Some(current), EntityOp::Update(updates)) => {
let mut data = current.clone();
data.merge_remove_null_fields(updates);
self.current.insert(key.clone(), Some(data.clone()));
if current != data {
Some(Overwrite { key, data })
} else {
None
}
}
// Entity was removed and then updated, so it will be overwritten
(Some(current), EntityOp::Overwrite(data)) => {
self.current.insert(key.clone(), Some(data.clone()));
if current != data {
Some(Overwrite { key, data })
} else {
None
}
}
// Existing entity was deleted
(Some(_), EntityOp::Remove) => {
self.current.insert(key.clone(), None);
Some(Remove { key })
}
// Entity was deleted, but it doesn't exist in the store
(None, EntityOp::Remove) => None,
};
if let Some(modification) = modification {
mods.push(modification)
}
}
Ok(ModificationsAndCache {
modifications: mods,
data_sources: self.data_sources,
entity_lfu_cache: self.current,
})
}
}
impl LfuCache<EntityKey, Option<Entity>> {
// Helper for cached lookup of an entity.
fn get_entity(
&mut self,
store: &(impl SubgraphStore + ?Sized),
key: &EntityKey,
) -> Result<Option<Entity>, QueryExecutionError> {
match self.get(&key) {
None => {
let mut entity = store.get(key.clone())?;
if let Some(entity) = &mut entity {
// `__typename` is for queries not for mappings.
entity.remove("__typename");
}
self.insert(key.clone(), entity.clone());
Ok(entity)
}
Some(data) => Ok(data.to_owned()),
}
}
}
| from |
graph_builder.go | /*
Copyright 2016 The Kubernetes Authors.
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.
*/
package garbagecollector
import (
"fmt"
"reflect"
"sync"
"time"
"github.com/golang/glog"
"k8s.io/apimachinery/pkg/api/meta"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/runtime/schema"
utilerrors "k8s.io/apimachinery/pkg/util/errors"
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
"k8s.io/apimachinery/pkg/util/sets"
"k8s.io/apimachinery/pkg/util/wait"
"k8s.io/apimachinery/pkg/watch"
"k8s.io/client-go/dynamic"
"k8s.io/client-go/informers"
"k8s.io/client-go/tools/cache"
"k8s.io/client-go/util/workqueue"
"k8s.io/kubernetes/pkg/controller/garbagecollector/metaonly"
)
type eventType int
func (e eventType) String() string {
switch e {
case addEvent:
return "add"
case updateEvent:
return "update"
case deleteEvent:
return "delete"
default:
return fmt.Sprintf("unknown(%d)", int(e))
}
}
const (
addEvent eventType = iota
updateEvent
deleteEvent
)
type event struct {
eventType eventType
obj interface{}
// the update event comes with an old object, but it's not used by the garbage collector.
oldObj interface{}
gvk schema.GroupVersionKind
}
// GraphBuilder: based on the events supplied by the informers, GraphBuilder updates
// uidToNode, a graph that caches the dependencies as we know, and enqueues
// items to the attemptToDelete and attemptToOrphan.
type GraphBuilder struct {
restMapper meta.RESTMapper
// each monitor list/watches a resource, the results are funneled to the
// dependencyGraphBuilder
monitors monitors
monitorLock sync.Mutex
// informersStarted is closed after after all of the controllers have been initialized and are running.
// After that it is safe to start them here, before that it is not.
informersStarted <-chan struct{}
// stopCh drives shutdown. When a receive from it unblocks, monitors will shut down.
// This channel is also protected by monitorLock.
stopCh <-chan struct{}
// running tracks whether Run() has been called.
// it is protected by monitorLock.
running bool
dynamicClient dynamic.Interface
// monitors are the producer of the graphChanges queue, graphBuilder alters
// the in-memory graph according to the changes.
graphChanges workqueue.RateLimitingInterface
// uidToNode doesn't require a lock to protect, because only the
// single-threaded GraphBuilder.processGraphChanges() reads/writes it.
uidToNode *concurrentUIDToNode
// GraphBuilder is the producer of attemptToDelete and attemptToOrphan, GC is the consumer.
attemptToDelete workqueue.RateLimitingInterface
attemptToOrphan workqueue.RateLimitingInterface
// GraphBuilder and GC share the absentOwnerCache. Objects that are known to
// be non-existent are added to the cached.
absentOwnerCache *UIDCache
sharedInformers informers.SharedInformerFactory
ignoredResources map[schema.GroupResource]struct{}
}
// monitor runs a Controller with a local stop channel.
type monitor struct {
controller cache.Controller
// stopCh stops Controller. If stopCh is nil, the monitor is considered to be
// not yet started.
stopCh chan struct{}
}
// Run is intended to be called in a goroutine. Multiple calls of this is an
// error.
func (m *monitor) Run() {
m.controller.Run(m.stopCh)
}
type monitors map[schema.GroupVersionResource]*monitor
func listWatcher(client dynamic.Interface, resource schema.GroupVersionResource) *cache.ListWatch {
return &cache.ListWatch{
ListFunc: func(options metav1.ListOptions) (runtime.Object, error) {
// We want to list this resource in all namespaces if it's namespace scoped, so not passing namespace is ok.
return client.Resource(resource).List(options)
},
WatchFunc: func(options metav1.ListOptions) (watch.Interface, error) {
// We want to list this resource in all namespaces if it's namespace scoped, so not passing namespace is ok.
return client.Resource(resource).Watch(options)
},
}
}
func (gb *GraphBuilder) controllerFor(resource schema.GroupVersionResource, kind schema.GroupVersionKind) (cache.Controller, error) {
handlers := cache.ResourceEventHandlerFuncs{
// add the event to the dependencyGraphBuilder's graphChanges.
AddFunc: func(obj interface{}) {
event := &event{
eventType: addEvent,
obj: obj,
gvk: kind,
}
gb.graphChanges.Add(event)
},
UpdateFunc: func(oldObj, newObj interface{}) {
// TODO: check if there are differences in the ownerRefs,
// finalizers, and DeletionTimestamp; if not, ignore the update.
event := &event{
eventType: updateEvent,
obj: newObj,
oldObj: oldObj,
gvk: kind,
}
gb.graphChanges.Add(event)
},
DeleteFunc: func(obj interface{}) {
// delta fifo may wrap the object in a cache.DeletedFinalStateUnknown, unwrap it
if deletedFinalStateUnknown, ok := obj.(cache.DeletedFinalStateUnknown); ok {
obj = deletedFinalStateUnknown.Obj
}
event := &event{
eventType: deleteEvent,
obj: obj,
gvk: kind,
}
gb.graphChanges.Add(event)
},
}
shared, err := gb.sharedInformers.ForResource(resource)
if err == nil {
glog.V(4).Infof("using a shared informer for resource %q, kind %q", resource.String(), kind.String())
// need to clone because it's from a shared cache
shared.Informer().AddEventHandlerWithResyncPeriod(handlers, ResourceResyncTime)
return shared.Informer().GetController(), nil
} else {
glog.V(4).Infof("unable to use a shared informer for resource %q, kind %q: %v", resource.String(), kind.String(), err)
}
// TODO: consider store in one storage.
glog.V(5).Infof("create storage for resource %s", resource)
_, monitor := cache.NewInformer(
listWatcher(gb.dynamicClient, resource),
nil,
ResourceResyncTime,
// don't need to clone because it's not from shared cache
handlers,
)
return monitor, nil
}
// syncMonitors rebuilds the monitor set according to the supplied resources,
// creating or deleting monitors as necessary. It will return any error
// encountered, but will make an attempt to create a monitor for each resource
// instead of immediately exiting on an error. It may be called before or after
// Run. Monitors are NOT started as part of the sync. To ensure all existing
// monitors are started, call startMonitors.
func (gb *GraphBuilder) syncMonitors(resources map[schema.GroupVersionResource]struct{}) error {
gb.monitorLock.Lock()
defer gb.monitorLock.Unlock()
toRemove := gb.monitors
if toRemove == nil {
toRemove = monitors{}
}
current := monitors{}
errs := []error{}
kept := 0
added := 0
for resource := range resources {
if _, ok := gb.ignoredResources[resource.GroupResource()]; ok {
continue
}
if m, ok := toRemove[resource]; ok {
current[resource] = m
delete(toRemove, resource)
kept++
continue
}
kind, err := gb.restMapper.KindFor(resource)
if err != nil {
errs = append(errs, fmt.Errorf("couldn't look up resource %q: %v", resource, err))
continue
}
c, err := gb.controllerFor(resource, kind)
if err != nil {
errs = append(errs, fmt.Errorf("couldn't start monitor for resource %q: %v", resource, err))
continue
}
current[resource] = &monitor{controller: c}
added++
}
gb.monitors = current
for _, monitor := range toRemove {
if monitor.stopCh != nil {
close(monitor.stopCh)
}
}
glog.V(4).Infof("synced monitors; added %d, kept %d, removed %d", added, kept, len(toRemove))
// NewAggregate returns nil if errs is 0-length
return utilerrors.NewAggregate(errs)
}
// startMonitors ensures the current set of monitors are running. Any newly
// started monitors will also cause shared informers to be started.
//
// If called before Run, startMonitors does nothing (as there is no stop channel
// to support monitor/informer execution).
func (gb *GraphBuilder) startMonitors() {
gb.monitorLock.Lock()
defer gb.monitorLock.Unlock()
if !gb.running {
return
}
// we're waiting until after the informer start that happens once all the controllers are initialized. This ensures
// that they don't get unexpected events on their work queues.
<-gb.informersStarted
monitors := gb.monitors
started := 0
for _, monitor := range monitors {
if monitor.stopCh == nil {
monitor.stopCh = make(chan struct{})
gb.sharedInformers.Start(gb.stopCh)
go monitor.Run()
started++
}
}
glog.V(4).Infof("started %d new monitors, %d currently running", started, len(monitors))
}
// IsSynced returns true if any monitors exist AND all those monitors'
// controllers HasSynced functions return true. This means IsSynced could return
// true at one time, and then later return false if all monitors were
// reconstructed.
func (gb *GraphBuilder) IsSynced() bool {
gb.monitorLock.Lock()
defer gb.monitorLock.Unlock()
if len(gb.monitors) == 0 {
glog.V(4).Info("garbage controller monitor not synced: no monitors")
return false
}
for resource, monitor := range gb.monitors {
if !monitor.controller.HasSynced() {
glog.V(4).Infof("garbage controller monitor not yet synced: %+v", resource)
return false
}
}
return true
}
// Run sets the stop channel and starts monitor execution until stopCh is
// closed. Any running monitors will be stopped before Run returns.
func (gb *GraphBuilder) Run(stopCh <-chan struct{}) {
glog.Infof("GraphBuilder running")
defer glog.Infof("GraphBuilder stopping")
// Set up the stop channel.
gb.monitorLock.Lock()
gb.stopCh = stopCh
gb.running = true
gb.monitorLock.Unlock()
// Start monitors and begin change processing until the stop channel is
// closed.
gb.startMonitors()
wait.Until(gb.runProcessGraphChanges, 1*time.Second, stopCh)
// Stop any running monitors.
gb.monitorLock.Lock()
defer gb.monitorLock.Unlock()
monitors := gb.monitors
stopped := 0
for _, monitor := range monitors {
if monitor.stopCh != nil {
stopped++
close(monitor.stopCh)
}
}
// reset monitors so that the graph builder can be safely re-run/synced.
gb.monitors = nil
glog.Infof("stopped %d of %d monitors", stopped, len(monitors))
}
var ignoredResources = map[schema.GroupResource]struct{}{
{Group: "extensions", Resource: "replicationcontrollers"}: {},
{Group: "", Resource: "bindings"}: {},
{Group: "", Resource: "componentstatuses"}: {},
{Group: "", Resource: "events"}: {},
{Group: "authentication.k8s.io", Resource: "tokenreviews"}: {},
{Group: "authorization.k8s.io", Resource: "subjectaccessreviews"}: {},
{Group: "authorization.k8s.io", Resource: "selfsubjectaccessreviews"}: {},
{Group: "authorization.k8s.io", Resource: "localsubjectaccessreviews"}: {},
{Group: "authorization.k8s.io", Resource: "selfsubjectrulesreviews"}: {},
{Group: "apiregistration.k8s.io", Resource: "apiservices"}: {},
{Group: "apiextensions.k8s.io", Resource: "customresourcedefinitions"}: {},
}
// DefaultIgnoredResources returns the default set of resources that the garbage collector controller
// should ignore. This is exposed so downstream integrators can have access to the defaults, and add
// to them as necessary when constructing the controller.
func DefaultIgnoredResources() map[schema.GroupResource]struct{} {
return ignoredResources
}
// enqueueVirtualDeleteEvent is used to add a virtual delete event to be processed for virtual nodes
// once it is determined they do not have backing objects in storage
func (gb *GraphBuilder) enqueueVirtualDeleteEvent(ref objectReference) {
gb.graphChanges.Add(&event{
eventType: deleteEvent,
obj: &metaonly.MetadataOnlyObject{
TypeMeta: metav1.TypeMeta{APIVersion: ref.APIVersion, Kind: ref.Kind},
ObjectMeta: metav1.ObjectMeta{Namespace: ref.Namespace, UID: ref.UID, Name: ref.Name},
},
})
}
// addDependentToOwners adds n to owners' dependents list. If the owner does not
// exist in the gb.uidToNode yet, a "virtual" node will be created to represent
// the owner. The "virtual" node will be enqueued to the attemptToDelete, so that
// attemptToDeleteItem() will verify if the owner exists according to the API server.
func (gb *GraphBuilder) addDependentToOwners(n *node, owners []metav1.OwnerReference) {
for _, owner := range owners {
ownerNode, ok := gb.uidToNode.Read(owner.UID)
if !ok {
// Create a "virtual" node in the graph for the owner if it doesn't
// exist in the graph yet.
ownerNode = &node{
identity: objectReference{
OwnerReference: owner,
Namespace: n.identity.Namespace,
},
dependents: make(map[*node]struct{}),
virtual: true,
}
glog.V(5).Infof("add virtual node.identity: %s\n\n", ownerNode.identity)
gb.uidToNode.Write(ownerNode)
}
ownerNode.addDependent(n)
if !ok {
// Enqueue the virtual node into attemptToDelete.
// The garbage processor will enqueue a virtual delete
// event to delete it from the graph if API server confirms this
// owner doesn't exist.
gb.attemptToDelete.Add(ownerNode)
}
}
}
// insertNode insert the node to gb.uidToNode; then it finds all owners as listed
// in n.owners, and adds the node to their dependents list.
func (gb *GraphBuilder) insertNode(n *node) {
gb.uidToNode.Write(n)
gb.addDependentToOwners(n, n.owners)
}
// removeDependentFromOwners remove n from owners' dependents list.
func (gb *GraphBuilder) removeDependentFromOwners(n *node, owners []metav1.OwnerReference) {
for _, owner := range owners {
ownerNode, ok := gb.uidToNode.Read(owner.UID)
if !ok {
continue
}
ownerNode.deleteDependent(n)
}
}
// removeNode removes the node from gb.uidToNode, then finds all
// owners as listed in n.owners, and removes n from their dependents list.
func (gb *GraphBuilder) removeNode(n *node) {
gb.uidToNode.Delete(n.identity.UID)
gb.removeDependentFromOwners(n, n.owners)
}
type ownerRefPair struct {
oldRef metav1.OwnerReference
newRef metav1.OwnerReference
}
// TODO: profile this function to see if a naive N^2 algorithm performs better
// when the number of references is small.
func referencesDiffs(old []metav1.OwnerReference, new []metav1.OwnerReference) (added []metav1.OwnerReference, removed []metav1.OwnerReference, changed []ownerRefPair) {
oldUIDToRef := make(map[string]metav1.OwnerReference)
for _, value := range old {
oldUIDToRef[string(value.UID)] = value
}
oldUIDSet := sets.StringKeySet(oldUIDToRef)
newUIDToRef := make(map[string]metav1.OwnerReference)
for _, value := range new {
newUIDToRef[string(value.UID)] = value
}
newUIDSet := sets.StringKeySet(newUIDToRef)
addedUID := newUIDSet.Difference(oldUIDSet)
removedUID := oldUIDSet.Difference(newUIDSet)
intersection := oldUIDSet.Intersection(newUIDSet)
for uid := range addedUID {
added = append(added, newUIDToRef[uid])
}
for uid := range removedUID {
removed = append(removed, oldUIDToRef[uid])
}
for uid := range intersection {
if !reflect.DeepEqual(oldUIDToRef[uid], newUIDToRef[uid]) {
changed = append(changed, ownerRefPair{oldRef: oldUIDToRef[uid], newRef: newUIDToRef[uid]})
}
}
return added, removed, changed
}
// returns if the object in the event just transitions to "being deleted".
func deletionStarts(oldObj interface{}, newAccessor metav1.Object) bool {
// The delta_fifo may combine the creation and update of the object into one
// event, so if there is no oldObj, we just return if the newObj (via
// newAccessor) is being deleted.
if oldObj == nil {
if newAccessor.GetDeletionTimestamp() == nil {
return false
}
return true
}
oldAccessor, err := meta.Accessor(oldObj)
if err != nil {
utilruntime.HandleError(fmt.Errorf("cannot access oldObj: %v", err))
return false
}
return beingDeleted(newAccessor) && !beingDeleted(oldAccessor)
}
func beingDeleted(accessor metav1.Object) bool {
return accessor.GetDeletionTimestamp() != nil
}
func hasDeleteDependentsFinalizer(accessor metav1.Object) bool {
finalizers := accessor.GetFinalizers()
for _, finalizer := range finalizers {
if finalizer == metav1.FinalizerDeleteDependents {
return true
}
}
return false
}
func hasOrphanFinalizer(accessor metav1.Object) bool {
finalizers := accessor.GetFinalizers()
for _, finalizer := range finalizers {
if finalizer == metav1.FinalizerOrphanDependents {
return true
}
}
return false
}
// this function takes newAccessor directly because the caller already
// instantiates an accessor for the newObj.
func startsWaitingForDependentsDeleted(oldObj interface{}, newAccessor metav1.Object) bool |
// this function takes newAccessor directly because the caller already
// instantiates an accessor for the newObj.
func startsWaitingForDependentsOrphaned(oldObj interface{}, newAccessor metav1.Object) bool {
return deletionStarts(oldObj, newAccessor) && hasOrphanFinalizer(newAccessor)
}
// if an blocking ownerReference points to an object gets removed, or gets set to
// "BlockOwnerDeletion=false", add the object to the attemptToDelete queue.
func (gb *GraphBuilder) addUnblockedOwnersToDeleteQueue(removed []metav1.OwnerReference, changed []ownerRefPair) {
for _, ref := range removed {
if ref.BlockOwnerDeletion != nil && *ref.BlockOwnerDeletion {
node, found := gb.uidToNode.Read(ref.UID)
if !found {
glog.V(5).Infof("cannot find %s in uidToNode", ref.UID)
continue
}
gb.attemptToDelete.Add(node)
}
}
for _, c := range changed {
wasBlocked := c.oldRef.BlockOwnerDeletion != nil && *c.oldRef.BlockOwnerDeletion
isUnblocked := c.newRef.BlockOwnerDeletion == nil || (c.newRef.BlockOwnerDeletion != nil && !*c.newRef.BlockOwnerDeletion)
if wasBlocked && isUnblocked {
node, found := gb.uidToNode.Read(c.newRef.UID)
if !found {
glog.V(5).Infof("cannot find %s in uidToNode", c.newRef.UID)
continue
}
gb.attemptToDelete.Add(node)
}
}
}
func (gb *GraphBuilder) processTransitions(oldObj interface{}, newAccessor metav1.Object, n *node) {
if startsWaitingForDependentsOrphaned(oldObj, newAccessor) {
glog.V(5).Infof("add %s to the attemptToOrphan", n.identity)
gb.attemptToOrphan.Add(n)
return
}
if startsWaitingForDependentsDeleted(oldObj, newAccessor) {
glog.V(2).Infof("add %s to the attemptToDelete, because it's waiting for its dependents to be deleted", n.identity)
// if the n is added as a "virtual" node, its deletingDependents field is not properly set, so always set it here.
n.markDeletingDependents()
for dep := range n.dependents {
gb.attemptToDelete.Add(dep)
}
gb.attemptToDelete.Add(n)
}
}
func (gb *GraphBuilder) runProcessGraphChanges() {
for gb.processGraphChanges() {
}
}
// Dequeueing an event from graphChanges, updating graph, populating dirty_queue.
func (gb *GraphBuilder) processGraphChanges() bool {
item, quit := gb.graphChanges.Get()
if quit {
return false
}
defer gb.graphChanges.Done(item)
event, ok := item.(*event)
if !ok {
utilruntime.HandleError(fmt.Errorf("expect a *event, got %v", item))
return true
}
obj := event.obj
accessor, err := meta.Accessor(obj)
if err != nil {
utilruntime.HandleError(fmt.Errorf("cannot access obj: %v", err))
return true
}
glog.V(5).Infof("GraphBuilder process object: %s/%s, namespace %s, name %s, uid %s, event type %v", event.gvk.GroupVersion().String(), event.gvk.Kind, accessor.GetNamespace(), accessor.GetName(), string(accessor.GetUID()), event.eventType)
// Check if the node already exsits
existingNode, found := gb.uidToNode.Read(accessor.GetUID())
if found {
// this marks the node as having been observed via an informer event
// 1. this depends on graphChanges only containing add/update events from the actual informer
// 2. this allows things tracking virtual nodes' existence to stop polling and rely on informer events
existingNode.markObserved()
}
switch {
case (event.eventType == addEvent || event.eventType == updateEvent) && !found:
newNode := &node{
identity: objectReference{
OwnerReference: metav1.OwnerReference{
APIVersion: event.gvk.GroupVersion().String(),
Kind: event.gvk.Kind,
UID: accessor.GetUID(),
Name: accessor.GetName(),
},
Namespace: accessor.GetNamespace(),
},
dependents: make(map[*node]struct{}),
owners: accessor.GetOwnerReferences(),
deletingDependents: beingDeleted(accessor) && hasDeleteDependentsFinalizer(accessor),
beingDeleted: beingDeleted(accessor),
}
gb.insertNode(newNode)
// the underlying delta_fifo may combine a creation and a deletion into
// one event, so we need to further process the event.
gb.processTransitions(event.oldObj, accessor, newNode)
case (event.eventType == addEvent || event.eventType == updateEvent) && found:
// handle changes in ownerReferences
added, removed, changed := referencesDiffs(existingNode.owners, accessor.GetOwnerReferences())
if len(added) != 0 || len(removed) != 0 || len(changed) != 0 {
// check if the changed dependency graph unblock owners that are
// waiting for the deletion of their dependents.
gb.addUnblockedOwnersToDeleteQueue(removed, changed)
// update the node itself
existingNode.owners = accessor.GetOwnerReferences()
// Add the node to its new owners' dependent lists.
gb.addDependentToOwners(existingNode, added)
// remove the node from the dependent list of node that are no longer in
// the node's owners list.
gb.removeDependentFromOwners(existingNode, removed)
}
if beingDeleted(accessor) {
existingNode.markBeingDeleted()
}
gb.processTransitions(event.oldObj, accessor, existingNode)
case event.eventType == deleteEvent:
if !found {
glog.V(5).Infof("%v doesn't exist in the graph, this shouldn't happen", accessor.GetUID())
return true
}
// removeNode updates the graph
gb.removeNode(existingNode)
existingNode.dependentsLock.RLock()
defer existingNode.dependentsLock.RUnlock()
if len(existingNode.dependents) > 0 {
gb.absentOwnerCache.Add(accessor.GetUID())
}
for dep := range existingNode.dependents {
gb.attemptToDelete.Add(dep)
}
for _, owner := range existingNode.owners {
ownerNode, found := gb.uidToNode.Read(owner.UID)
if !found || !ownerNode.isDeletingDependents() {
continue
}
// this is to let attempToDeleteItem check if all the owner's
// dependents are deleted, if so, the owner will be deleted.
gb.attemptToDelete.Add(ownerNode)
}
}
return true
}
| {
return deletionStarts(oldObj, newAccessor) && hasDeleteDependentsFinalizer(newAccessor)
} |
dist_summary_test.go | package spectator
import (
"reflect"
"testing"
)
func getDistributionSummary(name string) *DistributionSummary {
id := newId(name, nil)
return NewDistributionSummary(id)
}
func TestDistributionSummary_Record(t *testing.T) {
c := getDistributionSummary("inc")
if c.Count() != 0 {
t.Error("Count should start at 0, got ", c.Count())
}
c.Record(100)
if c.Count() != 1 {
t.Error("Count should be 1, got ", c.Count())
}
if c.TotalAmount() != 100 {
t.Error("TotalAmount should be 100, got ", c.TotalAmount())
}
c.Record(0)
if c.Count() != 2 {
t.Error("Count should be 2, got ", c.Count())
}
if c.TotalAmount() != 100 {
t.Error("TotalAmount should be 100, got ", c.TotalAmount())
}
c.Record(100)
if c.Count() != 3 {
t.Error("Count should be 3, got ", c.Count())
}
if c.TotalAmount() != 200 {
t.Error("TotalAmount should be 200, got ", c.TotalAmount())
}
c.Record(-1)
if c.Count() != 3 && c.TotalAmount() != 200 {
t.Error("Negative values should be ignored")
}
}
func | (t *testing.T, d *DistributionSummary, count int64,
total int64, totalSq float64, max int64) {
ms := d.Measure()
if len(ms) != 4 {
t.Error("Expected 4 measurements from a DistributionSummary, got ", len(ms))
}
expected := make(map[uint64]float64)
expected[d.id.WithStat("count").Hash()] = float64(count)
expected[d.id.WithStat("totalAmount").Hash()] = float64(total)
expected[d.id.WithStat("totalOfSquares").Hash()] = totalSq
expected[d.id.WithStat("max").Hash()] = float64(max)
got := make(map[uint64]float64)
for _, v := range ms {
got[v.id.Hash()] = v.value
}
if !reflect.DeepEqual(got, expected) {
t.Error("Expected measurements (count=", count, ",total=", total, ",totalSq=", totalSq, ",max=", max, ")")
for _, m := range ms {
t.Error("Got ", m.id.name, " ", m.id.tags, "=", m.value)
}
}
// ensure DistributionSummary is reset after being measured
if d.Count() != 0 || d.TotalAmount() != 0 {
t.Error("DistributionSummary should be reset after being measured")
}
}
func TestDistributionSummary_Measure(t *testing.T) {
c := getDistributionSummary("measure")
c.Record(100)
c.Record(200)
assertDistributionSummary(t, c, 2, 300, 100*100+200*200, 200)
}
| assertDistributionSummary |
generator.go | package main
import (
"fmt"
"os"
"path/filepath"
"sort"
"strings"
"github.com/liblxn/lxnc/internal/cldr"
)
const lineLength = 60
type options struct {
outputDir string
packageName string
cldrVersion string
}
type generator struct {
outputDir string
packageName string
cldrVersion string
}
func newGenerator(opt options) (*generator, error) {
info, err := os.Stat(opt.outputDir)
switch {
case err != nil:
if os.IsNotExist(err) {
return nil, fmt.Errorf("directory not found: %s", opt.outputDir)
}
return nil, err
case !info.IsDir():
return nil, fmt.Errorf("not a directory: %s", opt.outputDir)
}
| }, nil
}
func (g *generator) Generate(data *cldr.Data) error {
snippets := g.generateSnippets(data)
for filename, snippet := range snippets {
ext := filepath.Ext(filename)
codeFilename := filepath.Join(g.outputDir, filename)
testFilename := strings.TrimSuffix(codeFilename, ext) + "_test" + ext
err := g.generateGoFile(snippet, codeFilename)
if err != nil {
return err
}
if testSnippet := testSnippetOf(snippet); testSnippet != nil {
err = g.generateGoFile(testSnippet, testFilename)
if err != nil {
return err
}
}
}
return nil
}
func (g *generator) generateGoFile(s snippet, filename string) error {
f, err := os.Create(filename)
if err != nil {
return err
}
defer f.Close()
p := newPrinter(f)
p.Println(`// This file was generated by data-gen. Do not edit.`)
p.Println(`// CLDR version: `, g.cldrVersion)
p.Println()
p.Println(`package `, g.packageName)
p.Println()
if imports := s.imports(); len(imports) != 0 {
sort.Strings(imports)
p.Println(`import (`)
for _, imp := range imports {
p.Println(` "`, imp, `"`)
}
p.Println(`)`)
p.Println()
}
s.generate(p)
return p.Err()
}
// returns filename => snippet
func (g *generator) generateSnippets(data *cldr.Data) map[string]snippet {
langs := newLangLookupVar("langTags")
scripts := newScriptLookupVar("scriptTags")
regions := newRegionLookupVar("regionTags")
locales := newTagLookupVar("localeTags", langs, scripts, regions)
regionContainment := newRegionContainmentLookupVar("regionContainment", regions)
parentLocales := newParentTagLookupVar("parentLocaleTags", locales)
iterateIdentities(data, func(id cldr.Identity) {
langs.add(id.Language)
if id.Script != "" {
scripts.add(id.Script)
}
if id.Territory != "" {
regions.add(id.Territory)
}
locales.add(id)
})
iterateRegionContainments(data, func(child string, parents []string) {
regionContainment.add(child, parents)
})
iterateParentIdentities(data, func(child, parent cldr.Identity) {
parentLocales.add(child, parent)
})
affixes := newAffixLookupVar("affixes")
patterns := newPatternLookupVar("patterns", affixes)
symbols := newSymbolsLookupVar("numberSymbols")
zeros := newZeroLookupVar("zeros")
decimalNumbers := newNumbersLookupVar("decimalNumbers", locales, patterns, symbols, zeros)
moneyNumbers := newNumbersLookupVar("moneyNumbers", locales, patterns, symbols, zeros)
percentNumbers := newNumbersLookupVar("percentNumbers", locales, patterns, symbols, zeros)
iterateNumbers(data, func(id cldr.Identity, num cldr.Numbers, symb cldr.NumberSymbols, numsys cldr.NumberingSystem) {
if decimal, has := num.DecimalFormats[numsys.ID]; has {
affixes.add(decimal.PositivePrefix, decimal.PositiveSuffix)
affixes.add(decimal.NegativePrefix, decimal.NegativeSuffix)
patterns.add(decimal)
decimalNumbers.add(id, decimal, symb, numsys)
}
if money, has := num.CurrencyFormats[numsys.ID]; has {
affixes.add(money.PositivePrefix, money.PositiveSuffix)
affixes.add(money.NegativePrefix, money.NegativeSuffix)
patterns.add(money)
moneyNumbers.add(id, money, symb, numsys)
}
if percent, has := num.PercentFormats[numsys.ID]; has {
affixes.add(percent.PositivePrefix, percent.PositiveSuffix)
affixes.add(percent.NegativePrefix, percent.NegativeSuffix)
patterns.add(percent)
percentNumbers.add(id, percent, symb, numsys)
}
symbols.add(symb)
zeros.add(numsys.Digits[0])
})
relations := newRelationLookupVar("relations")
iteratePluralRelations(data, func(rule cldr.PluralRule) {
relations.add(rule)
})
cardinalRules := newPluralRuleLookupVar("cardinalRules", langs, relations)
ordinalRules := newPluralRuleLookupVar("ordinalRules", langs, relations)
iteratePluralRules(data, data.Plurals.Cardinal, func(lang string, rules map[string]cldr.PluralRule) {
cardinalRules.add(lang, rules)
})
iteratePluralRules(data, data.Plurals.Ordinal, func(lang string, rules map[string]cldr.PluralRule) {
ordinalRules.add(lang, rules)
})
return map[string]snippet{
"tags.go": snippets{
langLookup{},
scriptLookup{},
regionLookup{},
tagLookup{},
regionContainmentLookup{},
parentTagLookup{},
},
"numbers.go": snippets{
affixLookup{},
patternLookup{},
symbolsLookup{},
zeroLookup{},
numbersLookup{},
},
"locale.go": snippets{
newLocale(g.packageName, locales, parentLocales, regionContainment),
},
"number_format.go": snippets{
newNumberFormat(decimalNumbers, moneyNumbers, percentNumbers, affixes),
},
"plural.go": snippets{
newPlural(locales, relations, cardinalRules, ordinalRules),
relationLookup{},
pluralRuleLookup{},
},
"tables.go": snippets{
langs,
scripts,
regions,
regionContainment,
zeros,
affixes,
patterns,
symbols,
locales,
parentLocales,
decimalNumbers,
moneyNumbers,
percentNumbers,
relations,
cardinalRules,
ordinalRules,
},
}
}
func iterateIdentities(data *cldr.Data, iter func(cldr.Identity)) {
for _, id := range data.Identities {
if !skipIdentity(id) {
iter(normalizeIdentity(id))
}
}
}
func iterateRegionContainments(data *cldr.Data, iter func(child string, parents []string)) {
regionSet := make(map[string]struct{})
iterateIdentities(data, func(id cldr.Identity) {
if id.Territory != "" {
regionSet[id.Territory] = struct{}{}
}
})
regions := make([]string, 0, len(regionSet))
for region := range regionSet {
regions = append(regions, region)
}
sort.Strings(regions)
containment := make(map[string][]string) // child => parents
for _, parent := range regions {
children := data.Regions.Territories(parent)
if len(children) == 1 && children[0] == parent {
continue
}
for _, child := range children {
containment[child] = append(containment[child], parent)
}
}
for child, parents := range containment {
// Reverse the order of the parents to have the largest region at the end.
for i, j := 0, len(parents)-1; i < j; {
parents[i], parents[j] = parents[j], parents[i]
i++
j--
}
iter(child, parents)
}
}
func iterateParentIdentities(data *cldr.Data, iter func(child, parent cldr.Identity)) {
for childTag, parentTag := range data.ParentIdentities {
child, hasChild := data.Identities[childTag]
parent, hasParent := data.Identities[parentTag]
if hasChild && hasParent {
iter(normalizeIdentity(child), normalizeIdentity(parent))
}
}
}
func iterateNumbers(data *cldr.Data, iter func(id cldr.Identity, numbers cldr.Numbers, symbols cldr.NumberSymbols, numsys cldr.NumberingSystem)) {
for locale, numbers := range data.Numbers {
id, has := data.Identities[locale]
switch {
case !has:
panic(fmt.Sprintf("cannot find locale identity: %s", locale))
case skipIdentity(id):
continue
}
numsysID := data.DefaultNumberingSystem(id)
numsys, has := data.NumberingSystems[numsysID]
switch {
case !has:
panic(fmt.Sprintf("numbering system not found for %s: %s", id.String(), numsysID))
case !validDigits(numsys.Digits):
panic(fmt.Sprintf("invalid digits for %s: %s", id.String(), string(numsys.Digits)))
}
symbols := data.NumberSymbols(id, numsysID)
iter(normalizeIdentity(id), numbers, symbols, numsys)
}
}
func iteratePluralRelations(data *cldr.Data, iter func(cldr.PluralRule)) {
langs := languages(data)
process := func(r []cldr.PluralRules) {
for _, rules := range r {
has := false
for _, lang := range rules.Locales {
if _, has = langs[lang]; has {
break
}
}
if !has {
continue
}
for tag, rule := range rules.Rules {
if tag != "other" {
iter(rule)
}
}
}
}
process(data.Plurals.Cardinal)
process(data.Plurals.Ordinal)
}
func iteratePluralRules(data *cldr.Data, rules []cldr.PluralRules, iter func(lang string, rules map[string]cldr.PluralRule)) {
langs := languages(data)
for _, r := range rules {
for _, lang := range r.Locales {
if _, has := langs[lang]; has {
iter(lang, r.Rules)
}
}
}
}
func skipIdentity(id cldr.Identity) bool {
return id.Variant != ""
}
func normalizeIdentity(id cldr.Identity) cldr.Identity {
if id.IsRoot() {
return cldr.Identity{Language: "und"}
}
return id
}
func validDigits(digits []rune) bool {
if len(digits) != 10 {
return false
}
zero := digits[0]
for i := 1; i < len(digits); i++ {
if digits[i] != zero+rune(i) {
return false
}
}
return true
}
func languages(data *cldr.Data) map[string]struct{} {
langs := make(map[string]struct{})
for _, id := range data.Identities {
langs[id.Language] = struct{}{}
}
return langs
} | return &generator{
outputDir: opt.outputDir,
packageName: opt.packageName,
cldrVersion: opt.cldrVersion, |
taskmanager.py | __author__ = 'stowellc17'
from twisted.internet.error import AlreadyCalled
from twisted.internet.task import LoopingCall
from twisted.internet import reactor
from pygext.notifier import global_notify
TASK_DONE = 0
TASK_AGAIN = 1
class Task:
notify = global_notify.new_category('Task')
def __init__(self, task_mgr, name, method, args, kwargs, looping, delay):
self.task_mgr = task_mgr
self.name = name
self.method = method
self.args = args
self.kwargs = kwargs
self.looping = looping
self.delay = delay
self.caller = None
def call_method(self):
task_status = self.method(self, *self.args, **self.kwargs)
if task_status == TASK_DONE:
self.__finish()
return
if task_status == TASK_AGAIN:
if not self.looping:
self.start()
return
self.notify.warning('Task returned invalid status %s' % task_status)
def start(self):
if self.looping:
self.caller = LoopingCall(self.call_method)
self.caller.start(1.0 / 60.0)
return
self.caller = reactor.callLater(self.delay, self.call_method)
def stop(self):
if not self.looping:
try:
self.caller.cancel()
except AlreadyCalled:
pass
return
self.caller.stop()
def __finish(self):
self.task_mgr.remove(self.name)
class TaskManager:
notify = global_notify.new_category('TaskManager')
def __init__(self):
self._tasks = {}
def add(self, name, method, args=None, kwargs=None):
if name in self._tasks:
self.notify.warning('Tried to add task %s when it was already in the task dict' % name)
return
args = args or []
kwargs = kwargs or {}
task = Task(self, name, method, args, kwargs, True, 0)
self._tasks[name] = task
task.start()
return task
def do_method_later(self, delay, name, method, args=None, kwargs=None):
|
def remove(self, name):
if name not in self._tasks:
self.notify.warning('Tried to remove non-existent task %s' % name)
return
self._tasks[name].stop()
del self._tasks[name]
def stop_all_tasks(self):
for name in self._tasks.keys():
self.remove(name)
global_taskmgr = TaskManager()
| if name in self._tasks:
self.notify.warning('Tried to add task %s when it was already in the task dict' % name)
return
args = args or []
kwargs = kwargs or {}
task = Task(self, name, method, args, kwargs, False, delay)
self._tasks[name] = task
task.start()
return task |
pool.go | package mortar
import (
"errors"
"log"
"sync"
"sync/atomic"
"time"
)
// errors
var (
// return if pool size <= 0
ErrInvalidPoolCap = errors.New("invalid pool cap")
// put task but pool already closed
ErrPoolAlreadyClosed = errors.New("pool already closed")
)
// running status
const (
RUNNING = 1
STOPED = 0
)
// Task task to-do
type Task struct {
Handler func(v ...interface{})
Params []interface{}
}
// Pool task pool
type Pool struct {
capacity uint64
runningWorkers uint64
status int64
chTask chan *Task
PanicHandler func(interface{})
sync.Mutex
}
// NewPool init pool
func | (capacity uint64) (*Pool, error) {
if capacity <= 0 {
return nil, ErrInvalidPoolCap
}
p := &Pool{
capacity: capacity,
status: RUNNING,
chTask: make(chan *Task, capacity),
}
return p, nil
}
func (p *Pool) checkWorker() {
p.Lock()
defer p.Unlock()
if p.runningWorkers == 0 && len(p.chTask) > 0 {
p.run()
}
}
// GetCap get capacity
func (p *Pool) GetCap() uint64 {
return p.capacity
}
// GetRunningWorkers get running workers
func (p *Pool) GetRunningWorkers() uint64 {
return atomic.LoadUint64(&p.runningWorkers)
}
func (p *Pool) incRunning() {
atomic.AddUint64(&p.runningWorkers, 1)
}
func (p *Pool) decRunning() {
atomic.AddUint64(&p.runningWorkers, ^uint64(0))
}
// Put put a task to pool
func (p *Pool) Put(task *Task) error {
p.Lock()
defer p.Unlock()
if p.status == STOPED {
return ErrPoolAlreadyClosed
}
// run worker
if p.GetRunningWorkers() < p.GetCap() {
p.run()
}
// send task
if p.status == RUNNING {
p.chTask <- task
}
return nil
}
func (p *Pool) run() {
p.incRunning()
go func() {
defer func() {
p.decRunning()
if r := recover(); r != nil {
if p.PanicHandler != nil {
p.PanicHandler(r)
} else {
log.Printf("Worker panic: %s\n", r)
}
}
p.checkWorker() // check worker avoid no worker running
}()
for {
select {
case task, ok := <-p.chTask:
if !ok {
return
}
task.Handler(task.Params...)
}
}
}()
}
func (p *Pool) setStatus(status int64) bool {
p.Lock()
defer p.Unlock()
if p.status == status {
return false
}
p.status = status
return true
}
// close safe
func (p *Pool) close() {
p.Lock()
defer p.Unlock()
close(p.chTask)
}
// Close close pool graceful
func (p *Pool) Close() {
if !p.setStatus(STOPED) { // stop put task
return
}
for len(p.chTask) > 0 { // wait all task be consumed
time.Sleep(1e6) // reduce CPU load
}
p.close()
}
| NewPool |
stack-swap.ts | import { CaseStyle } from "kryo";
import { LiteralType } from "kryo/lib/literal.js";
import { RecordIoType, RecordType } from "kryo/lib/record.js";
import { ActionBase } from "../action-base.js";
import { $ActionType, ActionType } from "../action-type.js";
export interface StackSwap extends ActionBase { |
export const $StackSwap: RecordIoType<StackSwap> = new RecordType<StackSwap>({
properties: {
action: {type: new LiteralType({type: $ActionType, value: ActionType.StackSwap as ActionType.StackSwap})},
},
changeCase: CaseStyle.SnakeCase,
}); | action: ActionType.StackSwap;
} |
hashmap-memory.rs |
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
extern crate collections;
extern crate debug;
/**
A somewhat reduced test case to expose some Valgrind issues.
This originally came from the word-count benchmark.
*/
pub fn map(filename: String, emit: map_reduce::putter) {
emit(filename, "1".to_string());
}
mod map_reduce {
use std::collections::HashMap;
use std::str;
use std::task;
pub type putter<'a> = |String, String|: 'a;
pub type mapper = extern fn(String, putter);
enum ctrl_proto { find_reducer(Vec<u8>, Sender<int>), mapper_done, }
fn start_mappers(ctrl: Sender<ctrl_proto>, inputs: Vec<String>) {
for i in inputs.iter() {
let ctrl = ctrl.clone();
let i = i.clone();
task::spawn(proc() map_task(ctrl.clone(), i.clone()) );
}
}
fn | (ctrl: Sender<ctrl_proto>, input: String) {
let mut intermediates = HashMap::new();
fn emit(im: &mut HashMap<String, int>,
ctrl: Sender<ctrl_proto>, key: String,
_val: String) {
if im.contains_key(&key) {
return;
}
let (tx, rx) = channel();
println!("sending find_reducer");
ctrl.send(find_reducer(Vec::from_slice(key.as_bytes()), tx));
println!("receiving");
let c = rx.recv();
println!("{:?}", c);
im.insert(key, c);
}
let ctrl_clone = ctrl.clone();
::map(input, |a,b| emit(&mut intermediates, ctrl.clone(), a, b) );
ctrl_clone.send(mapper_done);
}
pub fn map_reduce(inputs: Vec<String>) {
let (tx, rx) = channel();
// This task becomes the master control task. It spawns others
// to do the rest.
let mut reducers: HashMap<String, int>;
reducers = HashMap::new();
start_mappers(tx, inputs.clone());
let mut num_mappers = inputs.len() as int;
while num_mappers > 0 {
match rx.recv() {
mapper_done => { num_mappers -= 1; }
find_reducer(k, cc) => {
let mut c;
match reducers.find(&str::from_utf8(
k.as_slice()).unwrap().to_string()) {
Some(&_c) => { c = _c; }
None => { c = 0; }
}
cc.send(c);
}
}
}
}
}
pub fn main() {
map_reduce::map_reduce(
vec!("../src/test/run-pass/hashmap-memory.rs".to_string()));
}
| map_task |
types.go | // Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// A rule that controls access to an Amazon WorkMail organization.
type AccessControlRule struct {
// Access protocol actions to include in the rule. Valid values include ActiveSync,
// AutoDiscover, EWS, IMAP, SMTP, WindowsOutlook, and WebMail.
Actions []string
// The date that the rule was created.
DateCreated *time.Time
// The date that the rule was modified.
DateModified *time.Time
// The rule description.
Description *string
// The rule effect.
Effect AccessControlRuleEffect
// IPv4 CIDR ranges to include in the rule.
IpRanges []string
// The rule name.
Name *string
// Access protocol actions to exclude from the rule. Valid values include
// ActiveSync, AutoDiscover, EWS, IMAP, SMTP, WindowsOutlook, and WebMail.
NotActions []string
// IPv4 CIDR ranges to exclude from the rule.
NotIpRanges []string
// User IDs to exclude from the rule.
NotUserIds []string
// User IDs to include in the rule.
UserIds []string
noSmithyDocumentSerde
}
// At least one delegate must be associated to the resource to disable automatic
// replies from the resource.
type BookingOptions struct {
// The resource's ability to automatically reply to requests. If disabled,
// delegates must be associated to the resource.
AutoAcceptRequests bool
// The resource's ability to automatically decline any conflicting requests.
AutoDeclineConflictingRequests bool
// The resource's ability to automatically decline any recurring requests.
AutoDeclineRecurringRequests bool
noSmithyDocumentSerde
}
// The name of the attribute, which is one of the values defined in the
// UserAttribute enumeration.
type Delegate struct {
// The identifier for the user or group associated as the resource's delegate.
//
// This member is required.
Id *string
// The type of the delegate: user or group.
//
// This member is required.
Type MemberType
noSmithyDocumentSerde
}
// A DNS record uploaded to your DNS provider.
type DnsRecord struct {
// The DNS hostname.- For example, domain.example.com.
Hostname *string
// The RFC 1035 record type. Possible values: CNAME, A, MX.
Type *string
// The value returned by the DNS for a query to that hostname and record type.
Value *string
noSmithyDocumentSerde
}
// The domain to associate with an Amazon WorkMail organization. When you configure
// a domain hosted in Amazon Route 53 (Route 53), all recommended DNS records are
// added to the organization when you create it. For more information, see Adding a
// domain (https://docs.aws.amazon.com/workmail/latest/adminguide/add_domain.html)
// in the Amazon WorkMail Administrator Guide.
type Domain struct {
// The fully qualified domain name.
DomainName *string
// The hosted zone ID for a domain hosted in Route 53. Required when configuring a
// domain hosted in Route 53.
HostedZoneId *string
noSmithyDocumentSerde
}
// The configuration applied to an organization's folders by its retention policy.
type FolderConfiguration struct {
// The action to take on the folder contents at the end of the folder configuration
// period.
//
// This member is required.
Action RetentionAction
// The folder name.
//
// This member is required.
Name FolderName
// The number of days for which the folder-configuration action applies.
Period *int32
noSmithyDocumentSerde
}
// The representation of an Amazon WorkMail group.
type Group struct {
// The date indicating when the group was disabled from Amazon WorkMail use.
DisabledDate *time.Time
// The email of the group.
Email *string
// The date indicating when the group was enabled for Amazon WorkMail use.
EnabledDate *time.Time
// The identifier of the group.
Id *string
// The name of the group.
Name *string
// The state of the group, which can be ENABLED, DISABLED, or DELETED.
State EntityState
noSmithyDocumentSerde
}
// The details of a mailbox export job, including the user or resource ID
// associated with the mailbox and the S3 bucket that the mailbox contents are
// exported to.
type MailboxExportJob struct {
// The mailbox export job description.
Description *string
// The mailbox export job end timestamp.
EndTime *time.Time
// The identifier of the user or resource associated with the mailbox.
EntityId *string
// The estimated progress of the mailbox export job, in percentage points.
EstimatedProgress int32
// The identifier of the mailbox export job.
JobId *string
// The name of the S3 bucket.
S3BucketName *string
// The path to the S3 bucket and file that the mailbox export job exports to.
S3Path *string
// The mailbox export job start timestamp.
StartTime *time.Time
// The state of the mailbox export job.
State MailboxExportJobState
noSmithyDocumentSerde
}
// The data for a given domain.
type MailDomainSummary struct {
// Whether the domain is default or not.
DefaultDomain bool
// The domain name.
DomainName *string
noSmithyDocumentSerde
}
// The representation of a user or group.
type Member struct {
// The date indicating when the member was disabled from Amazon WorkMail use.
DisabledDate *time.Time
// The date indicating when the member was enabled for Amazon WorkMail use.
EnabledDate *time.Time
// The identifier of the member.
Id *string
// The name of the member.
Name *string
// The state of the member, which can be ENABLED, DISABLED, or DELETED.
State EntityState
// A member can be a user or group.
Type MemberType
noSmithyDocumentSerde
}
// The rule that a simulated user matches.
type MobileDeviceAccessMatchedRule struct {
// Identifier of the rule that a simulated user matches.
MobileDeviceAccessRuleId *string
// Name of a rule that a simulated user matches.
Name *string
noSmithyDocumentSerde
}
// The override object.
type MobileDeviceAccessOverride struct {
// The date the override was first created.
DateCreated *time.Time
// The date the override was last modified.
DateModified *time.Time
// A description of the override.
Description *string
// The device to which the override applies.
DeviceId *string
// The effect of the override, ALLOW or DENY.
Effect MobileDeviceAccessRuleEffect
// The WorkMail user to which the access override applies.
UserId *string
noSmithyDocumentSerde
}
// A rule that controls access to mobile devices for an Amazon WorkMail group.
type MobileDeviceAccessRule struct {
// The date and time at which an access rule was created.
DateCreated *time.Time
// The date and time at which an access rule was modified.
DateModified *time.Time
// The description of a mobile access rule.
Description *string
// Device models that a rule will match.
DeviceModels []string
// Device operating systems that a rule will match.
DeviceOperatingSystems []string
// Device types that a rule will match.
DeviceTypes []string
// Device user agents that a rule will match.
DeviceUserAgents []string
// The effect of the rule when it matches. Allowed values are ALLOW or DENY.
Effect MobileDeviceAccessRuleEffect
// The ID assigned to a mobile access rule.
MobileDeviceAccessRuleId *string
// The name of a mobile access rule.
Name *string
// Device models that a rule will not match. All other device models will match.
NotDeviceModels []string
// Device operating systems that a rule will not match. All other device types will
// match.
NotDeviceOperatingSystems []string
// Device types that a rule will not match. All other device types will match.
NotDeviceTypes []string
// Device user agents that a rule will not match. All other device user agents will
// match.
NotDeviceUserAgents []string
noSmithyDocumentSerde
}
// The representation of an organization.
type OrganizationSummary struct {
// The alias associated with the organization.
Alias *string
// The default email domain associated with the organization.
DefaultMailDomain *string
// The error message associated with the organization. It is only present if
// unexpected behavior has occurred with regards to the organization. It provides
// insight or solutions regarding unexpected behavior.
ErrorMessage *string
// The identifier associated with the organization.
OrganizationId *string
// The state associated with the organization.
State *string
noSmithyDocumentSerde
}
// Permission granted to a user, group, or resource to access a certain aspect of
// another user, group, or resource mailbox.
type Permission struct {
// The identifier of the user, group, or resource to which the permissions are
// granted.
//
// This member is required.
GranteeId *string
// The type of user, group, or resource referred to in GranteeId.
//
// This member is required.
GranteeType MemberType
// The permissions granted to the grantee. SEND_AS allows the grantee to send email
// as the owner of the mailbox (the grantee is not mentioned on these emails).
// SEND_ON_BEHALF allows the grantee to send email on behalf of the owner of the
// mailbox (the grantee is not mentioned as the physical sender of these emails).
// FULL_ACCESS allows the grantee full access to the mailbox, irrespective of other
// folder-level permissions set on the mailbox.
//
// This member is required.
PermissionValues []PermissionType
noSmithyDocumentSerde
}
// The representation of a resource.
type Resource struct {
// The date indicating when the resource was disabled from Amazon WorkMail use.
DisabledDate *time.Time
// The email of the resource.
Email *string
// The date indicating when the resource was enabled for Amazon WorkMail use.
EnabledDate *time.Time
// The identifier of the resource.
Id *string
// The name of the resource.
Name *string
// The state of the resource, which can be ENABLED, DISABLED, or DELETED.
State EntityState
// The type of the resource: equipment or room.
Type ResourceType
noSmithyDocumentSerde
}
// Describes a tag applied to a resource.
type Tag struct {
// The key of the tag.
//
// This member is required.
Key *string
// The value of the tag.
//
// This member is required.
Value *string
noSmithyDocumentSerde
}
// The representation of an Amazon WorkMail user.
type User struct {
// The date indicating when the user was disabled from Amazon WorkMail use.
DisabledDate *time.Time
// The display name of the user.
DisplayName *string
// The email of the user.
Email *string
// The date indicating when the user was enabled for Amazon WorkMail use.
EnabledDate *time.Time
// The identifier of the user.
Id *string |
// The name of the user.
Name *string
// The state of the user, which can be ENABLED, DISABLED, or DELETED.
State EntityState
// The role of the user.
UserRole UserRole
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde | |
rule.rs | extern crate rand_distr;
use std::convert::TryInto;
use std::fs::File;
use std::io::Read;
use std::io::Write;
use std::str::FromStr;
use flate2::read::ZlibDecoder;
use flate2::write::ZlibEncoder;
use flate2::Compression;
use rand::Rng;
use rand_distr::Dirichlet;
use rand_distr::Distribution;
const ALPHA: f64 = 0.2;
pub enum SamplingMode {
Uniform,
Dirichlet,
}
// Implement the trait
impl FromStr for SamplingMode {
type Err = &'static str;
fn from_str(s: &str) -> Result<Self, Self::Err> {
match s {
"uniform" => Ok(SamplingMode::Uniform),
"dirichlet" => Ok(SamplingMode::Dirichlet),
_ => Err("no match"),
}
}
}
pub struct Rule {
pub horizon: i8,
states: u8,
table: Vec<u8>,
}
impl Rule {
pub fn new(horizon: i8, states: u8, table: Vec<u8>) -> Rule {
let r = Rule {
horizon,
states,
table,
};
if r.check() {
r
} else {
panic!("Incorrect rule given")
}
}
pub fn get(&self, index: usize) -> u8 {
self.table[index]
}
/// Create a random rule with uniformly sampled transitions.
pub fn random(horizon: i8, states: u8) -> Rule {
let mut rng = rand::thread_rng();
let big_bound: u64 = (states as u64).pow((2 * horizon + 1).pow(2).try_into().unwrap());
let table: Vec<u8> = (0..big_bound).map(|_| rng.gen_range(0..states)).collect();
Rule {
horizon,
states,
table,
}
}
/// Create a random rule with transitions sampled according to a Dirichlet
/// distribution with parameter `alpha`.
pub fn random_dirichlet(horizon: i8, states: u8, alpha: Option<f64>) -> Rule {
let alpha = match alpha {
Some(v) => v,
None => ALPHA,
};
let dirichlet = Dirichlet::new_with_size(alpha, states.into()).unwrap();
let lambdas: Vec<f64> = dirichlet
.sample(&mut rand::thread_rng())
.iter()
.scan(0., |acc, &x| {
*acc += x;
Some(*acc)
})
.collect();
let big_bound: u64 = (states as u64).pow((2 * horizon + 1).pow(2).try_into().unwrap());
let table: Vec<u8> = (0..big_bound)
.map(|_| get_rand_state(&lambdas, states))
.collect();
Rule {
horizon,
states,
table,
}
}
/// Read a rule from specified filename.
pub fn from_file(fname: &str) -> Result<Rule, std::io::Error> {
let f = File::open(fname)?;
let mut decoder = ZlibDecoder::new(f);
let mut table = Vec::new();
decoder.read_to_end(&mut table)?;
let zero = '0';
for i in &mut table {
*i -= zero as u8;
}
let (states, horizon) = (2..30)
.find_map(|i| {
let d = (table.len() as f64).ln() / (i as f64).ln();
if (d - d.floor()).abs() < f64::EPSILON
&& (d.sqrt() - d.sqrt().floor()).abs() < f64::EPSILON
{
Some((i, ((d.sqrt() - 1.) / 2.) as i8))
} else {
None
}
})
.unwrap();
Ok(Rule::new(horizon, states, table))
}
/// Write a rule to a specified filename.
pub fn to_file(&self, fname: &str) -> Result<(), std::io::Error> {
let f = File::open(fname)?;
let mut encoder = ZlibEncoder::new(f, Compression::default());
let zero = '0';
let mut out_vec = Vec::new();
for i in &self.table {
out_vec.push(i + zero as u8);
}
encoder.write_all(&out_vec)?;
encoder.try_finish()
}
/// Perform some checks on the rule to ensure its correctness.
pub fn check(&self) -> bool {
self.table.len() as u64
== (self.states as u64).pow((2 * self.horizon + 1).pow(2).try_into().unwrap())
}
}
fn | (lambdas: &[f64], states: u8) -> u8 {
assert_eq!(lambdas.len(), states.into());
let mut rng = rand::thread_rng();
let val: f64 = rng.gen_range(0.0..1.0);
lambdas
.iter()
.enumerate()
.rev()
.find_map(|(idx, l)| if val >= *l { Some(idx as u8 + 1) } else { None })
.unwrap_or(0)
}
| get_rand_state |
main.go | // Copyright (c) 2015 Uber Technologies, Inc.
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
package main
import (
"bufio"
"errors"
"fmt"
"log"
"net"
"os"
"runtime"
"strings"
"time"
tchannel "github.com/uber/tchannel-go"
gen "github.com/uber/tchannel-go/examples/thrift/gen-go/example"
"github.com/uber/tchannel-go/thrift"
)
func | () {
var (
listener net.Listener
err error
)
if listener, err = setupServer(); err != nil {
log.Fatalf("setupServer failed: %v", err)
}
if err := runClient1("server", listener.Addr()); err != nil {
log.Fatalf("runClient1 failed: %v", err)
}
if err := runClient2("server", listener.Addr()); err != nil {
log.Fatalf("runClient2 failed: %v", err)
}
go listenConsole()
// Run for 10 seconds, then stop
time.Sleep(time.Second * 10)
}
func setupServer() (net.Listener, error) {
tchan, err := tchannel.NewChannel("server", optsFor("server"))
if err != nil {
return nil, err
}
listener, err := net.Listen("tcp", ":0")
if err != nil {
return nil, err
}
server := thrift.NewServer(tchan)
server.Register(gen.NewTChanFirstServer(&firstHandler{}))
server.Register(gen.NewTChanSecondServer(&secondHandler{}))
// Serve will set the local peer info, and start accepting sockets in a separate goroutine.
tchan.Serve(listener)
return listener, nil
}
func runClient1(hyperbahnService string, addr net.Addr) error {
tchan, err := tchannel.NewChannel("client1", optsFor("client1"))
if err != nil {
return err
}
tchan.Peers().Add(addr.String())
tclient := thrift.NewClient(tchan, hyperbahnService, nil)
client := gen.NewTChanFirstClient(tclient)
go func() {
for {
ctx, cancel := thrift.NewContext(time.Second)
res, err := client.Echo(ctx, "Hi")
log.Println("Echo(Hi) = ", res, ", err: ", err)
log.Println("AppError() = ", client.AppError(ctx))
log.Println("BaseCall() = ", client.BaseCall(ctx))
cancel()
time.Sleep(100 * time.Millisecond)
}
}()
return nil
}
func runClient2(hyperbahnService string, addr net.Addr) error {
tchan, err := tchannel.NewChannel("client2", optsFor("client2"))
if err != nil {
return err
}
tchan.Peers().Add(addr.String())
tclient := thrift.NewClient(tchan, hyperbahnService, nil)
client := gen.NewTChanSecondClient(tclient)
go func() {
for {
ctx, cancel := thrift.NewContext(time.Second)
client.Test(ctx)
cancel()
time.Sleep(100 * time.Millisecond)
}
}()
return nil
}
func listenConsole() {
rdr := bufio.NewReader(os.Stdin)
for {
line, _ := rdr.ReadString('\n')
switch strings.TrimSpace(line) {
case "s":
printStack()
default:
fmt.Println("Unrecognized command:", line)
}
}
}
func printStack() {
buf := make([]byte, 10000)
runtime.Stack(buf, true /* all */)
fmt.Println("Stack:\n", string(buf))
}
type firstHandler struct{}
func (h *firstHandler) Healthcheck(ctx thrift.Context) (*gen.HealthCheckRes, error) {
log.Printf("first: HealthCheck()\n")
return &gen.HealthCheckRes{
Healthy: true,
Msg: "OK"}, nil
}
func (h *firstHandler) BaseCall(ctx thrift.Context) error {
log.Printf("first: BaseCall()\n")
return nil
}
func (h *firstHandler) Echo(ctx thrift.Context, msg string) (r string, err error) {
log.Printf("first: Echo(%v)\n", msg)
return msg, nil
}
func (h *firstHandler) AppError(ctx thrift.Context) error {
log.Printf("first: AppError()\n")
return errors.New("app error")
}
func (h *firstHandler) OneWay(ctx thrift.Context) error {
log.Printf("first: OneWay()\n")
return errors.New("OneWay error...won't be seen by client")
}
type secondHandler struct{}
func (h *secondHandler) Test(ctx thrift.Context) error {
log.Println("secondHandler: Test()")
return nil
}
func optsFor(processName string) *tchannel.ChannelOptions {
return &tchannel.ChannelOptions{
ProcessName: processName,
Logger: tchannel.NewLevelLogger(tchannel.SimpleLogger, tchannel.LogLevelWarn),
}
}
| main |
mod.rs | use js_sys::{Array, Function, JsString, Reflect, Symbol};
use std::convert::AsRef;
use wasm_bindgen::{closure::Closure, JsValue};
pub mod changes_event_emitter;
pub mod replication_event_emitter;
#[derive(Debug, Clone, PartialEq)]
pub struct SequenceID(pub(crate) JsValue);
#[derive(Debug, Clone)]
pub enum EventName {
String(JsString),
Symbol(Symbol),
}
impl EventName {
pub fn string(name: &str) -> Self {
Self::String(JsString::from(name))
}
pub fn symbol(symbol: &Symbol) -> Self {
Self::Symbol(symbol.clone())
}
}
impl AsRef<JsValue> for EventName {
fn as_ref(&self) -> &JsValue {
match self {
Self::String(s) => s.as_ref(),
Self::Symbol(sym) => sym.as_ref(),
}
}
}
pub struct EventListener {
emitter: JsValue,
event_name: EventName,
closure: Closure<dyn Fn(JsValue)>,
}
impl EventListener {
fn new(
emitter: &EventEmitter,
event_name: &EventName,
closure: impl Fn(JsValue) + 'static,
) -> Result<Self, JsValue> {
let on = Reflect::get(&emitter.0, &JsValue::from_str("on"))?;
if on.is_function() {
let closure = Closure::wrap(Box::new(closure) as Box<dyn Fn(JsValue)>);
Function::from(on).call2(&emitter.0, event_name.as_ref(), closure.as_ref())?;
Ok(Self {
emitter: emitter.0.clone(),
event_name: event_name.clone(),
closure,
})
} else {
Err(JsValue::from_str("No `on` function found."))
}
}
}
impl Drop for EventListener {
/// Removes the listener from the listener array for its event.
fn drop(&mut self) {
if let Ok(remove_listener) =
Reflect::get(&self.emitter, &JsValue::from_str("remove_listener"))
{
if remove_listener.is_function() {
Function::from(remove_listener)
.call2(
&self.emitter,
self.event_name.as_ref(),
self.closure.as_ref(),
)
.ok();
}
}
}
}
/// All objects that emit events are instances of the EventEmitter class. These objects expose
/// an [add_listener] function that allows one or more functions to be attached to named events
/// emitted by the object. Typically, event names are camel-cased strings but any valid JavaScript
/// property key can be used.
///
/// When the EventEmitter object emits an event, all of the functions attached to that specific
/// event are called synchronously.
pub struct EventEmitter(JsValue);
impl EventEmitter {
pub(crate) fn new(value: JsValue) -> Self |
pub(crate) fn as_js(&self) -> &JsValue {
&self.0
}
/// Synchronously calls each of the listeners registered for the event named `event_name`, in the order
/// they were registered, passing the supplied arguments to each.
pub fn emit(&self, event_name: &EventName, event_args: Vec<JsValue>) -> Result<bool, JsValue> {
let args = Array::new();
args.push(event_name.as_ref());
for arg in event_args {
args.push(&arg);
}
let emit = Reflect::get(&self.0, &JsValue::from_str("emit"))?;
if emit.is_function() {
Function::from(emit)
.apply(&self.0, &args)
.map(|result| result.is_truthy())
} else {
Err(JsValue::from_str("No emit function found."))
}
}
/// Returns an array listing the events for which the emitter has registered listeners.
pub fn event_names(&self) -> Result<Vec<EventName>, JsValue> {
let event_names = Reflect::get(&self.0, &JsValue::from_str("eventNames"))?;
if event_names.is_function() {
Function::from(event_names).call0(&self.0).map(|result| {
Array::from(&result)
.iter()
.filter_map(|event| {
if event.is_string() {
Some(EventName::String(event.into()))
} else if event.is_symbol() {
Some(EventName::Symbol(event.into()))
} else {
None
}
})
.collect()
})
} else {
Err(JsValue::from_str("No eventNames function found."))
}
}
/// Adds the listener function to the end of the listeners array for the event named eventName. No
/// checks are made to see if the listener has already been added. Multiple calls passing the same
/// combination of `event_name` and `listener` will result in the listener being added, and called,
/// multiple times.
pub fn add_listener(
&self,
event_name: &EventName,
listener: impl Fn(JsValue) + 'static,
) -> Result<EventListener, JsValue> {
EventListener::new(self, event_name, listener)
}
pub fn once(
&self,
_event_name: &EventName,
_listener: impl FnOnce(JsValue) + 'static,
) -> Result<(), JsValue> {
unimplemented!()
}
/// Removes all listeners, or those of the specified `event_name`.
///
/// It is bad practice to remove listeners added elsewhere in the code, particularly when the [EventEmitter]
/// instance was created by some other component or module (e.g. sockets or file streams).
pub fn remove_all_listeners(&self, event_name: Option<&EventName>) -> Result<(), JsValue> {
let remove_all_listeners = Reflect::get(&self.0, &JsValue::from_str("removeAllListeners"))?;
if remove_all_listeners.is_function() {
if let Some(event_name) = event_name {
Function::from(remove_all_listeners).call1(&self.0, event_name.as_ref())?;
} else {
Function::from(remove_all_listeners).call0(&self.0)?;
}
Ok(())
} else {
Err(JsValue::from_str("No remove_all_listeners function found."))
}
}
}
| {
Self(value)
} |
format.rs | //! Database format helpers
use core::{
fmt::{self, Debug, Display},
marker::PhantomData,
};
use std::io;
use crate::{
header::{DatabaseHeader, DATABASE_HEADER_LENGTH},
info::{category::AppInfoCategories, ExtraInfoRecord, NullExtraInfo},
record::{pdb_record::PdbRecordHeader, DatabaseRecord},
};
/// Helper trait for database format types
pub trait DatabaseFormat {
/// The record header type for this database format
type RecordHeader: DatabaseRecord;
/// The type of the app info record
type AppInfoRecord: ExtraInfoRecord;
/// Returns whether the database is valid as this database format
fn is_valid(data: &[u8], header: &DatabaseHeader) -> bool;
}
/// Implementation of [`DatabaseFormat`] for PRC databases
pub struct PrcDatabase;
impl DatabaseFormat for PrcDatabase {
type RecordHeader = PdbRecordHeader;
type AppInfoRecord = NullExtraInfo;
fn is_valid(_data: &[u8], header: &DatabaseHeader) -> bool {
if header.attributes & (1 << 0) == 0 {
return false;
}
true
}
}
/// Implementation of [`DatabaseFormat`] for PDB databases
pub struct PdbDatabase;
impl DatabaseFormat for PdbDatabase {
type RecordHeader = PdbRecordHeader;
type AppInfoRecord = NullExtraInfo;
fn is_valid(_data: &[u8], header: &DatabaseHeader) -> bool {
if header.attributes & (1 << 0) != 0 {
return false;
}
true
}
}
/// Implementation of [`DatabaseFormat`] for PDB databases that contain category information
pub struct PdbWithCategoriesDatabase;
impl DatabaseFormat for PdbWithCategoriesDatabase {
type RecordHeader = PdbRecordHeader;
type AppInfoRecord = AppInfoCategories;
fn is_valid(_data: &[u8], header: &DatabaseHeader) -> bool {
if header.attributes & (1 << 0) != 0 {
return false;
}
true
}
}
/// A representation of a Palm OS database file
///
/// This uses the [`DatabaseFormat`] trait to allow making access to database records, as well as
/// validity checks on the database content, generic across the PRC and PDB implementations.
#[derive(Clone, PartialEq)]
pub struct PalmDatabase<'a, T: DatabaseFormat> {
pub header: DatabaseHeader,
pub app_info: T::AppInfoRecord,
pub records: Vec<(T::RecordHeader, Vec<u8>)>,
data: &'a [u8],
_marker: PhantomData<T>,
}
impl<'a, T: DatabaseFormat> PalmDatabase<'a, T> {
pub fn from_bytes(data: &'a [u8]) -> Result<Self, io::Error> {
let header = DatabaseHeader::from_bytes(&data)?;
if !T::is_valid(&data, &header) {
return Err(io::Error::new(
io::ErrorKind::Other,
"database is not valid",
));
}
let app_info = T::AppInfoRecord::from_bytes(&header, &data, header.app_info_id as usize)?;
let mut rec_offset: usize = DATABASE_HEADER_LENGTH;
let mut records: Vec<(T::RecordHeader, Vec<u8>)> = Vec::new();
for _idx in 0..header.record_count {
// parse record header
let record = T::RecordHeader::from_bytes(&header, &data, rec_offset)?;
// get record data
let data_offset = record.data_offset() as usize;
let data_len = record.data_len().unwrap_or(0) as usize;
let record_data = Vec::from(&data[data_offset..(data_offset + data_len)]);
// offset & store
rec_offset += record.struct_len();
records.push((record, record_data));
}
Ok(Self {
header,
app_info,
records,
data,
_marker: PhantomData,
})
}
}
impl<'a, T: DatabaseFormat> Debug for PalmDatabase<'a, T> {
fn | (&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("PalmDatabase")
.field("type", &std::any::type_name::<T>())
.field("header", &self.header)
.field("app_info", &self.app_info)
.field("records", &self.records)
.finish()
}
}
impl<'a, T: DatabaseFormat> Display for PalmDatabase<'a, T> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(
f,
"PalmDatabase<{}>({:?})",
std::any::type_name::<T>(),
self.header.name_try_str().unwrap_or(""),
)
}
}
| fmt |
1266.py | '''
On a plane there are n points with integer coordinates points[i] = [xi, yi]. Your task is to find the minimum time in seconds to visit all points.
You can move according to the next rules:
In one second always you can either move vertically, horizontally by one unit or diagonally (it means to move one unit vertically and one unit horizontally in one second).
You have to visit the points in the same order as they appear in the array.
Input: points = [[1,1],[3,4],[-1,0]]
Output: 7
Explanation: One optimal path is [1,1] -> [2,2] -> [3,3] -> [3,4] -> [2,3] -> [1,2] -> [0,1] -> [-1,0]
Time from [1,1] to [3,4] = 3 seconds
Time from [3,4] to [-1,0] = 4 seconds
Total time = 7 seconds
Example 2:
Input: points = [[3,2],[-2,2]]
Output: 5
Constraints:
points.length == n
1 <= n <= 100
points[i].length == 2
-1000 <= points[i][0], points[i][1] <= 1000
'''
class Solution(object):
| def minTimeToVisitAllPoints(self, points):
"""
:type points: List[List[int]]
:rtype: int
"""
if not points:
return 0
result = 0
for index in range(1, len(points)):
result += max(abs(points[index][0]-points[index-1][0]), abs(points[index][1]-points[index-1][1]))
return result |
|
mod.rs | /*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
use common::FileKey;
use fixture_tests::Fixture;
use graphql_ir::{build, Program};
use graphql_syntax::parse;
use graphql_text_printer::{print_fragment, print_operation};
use graphql_transforms::inline_data_fragment;
use test_schema::TEST_SCHEMA;
pub fn transform_fixture(fixture: &Fixture) -> Result<String, String> | {
let file_key = FileKey::new(fixture.file_name);
let ast = parse(fixture.content, file_key).unwrap();
let ir = build(&TEST_SCHEMA, &ast.definitions).unwrap();
let program = Program::from_definitions(&TEST_SCHEMA, ir);
let next_program = inline_data_fragment(&program).unwrap();
let mut printed = next_program
.operations()
.map(|def| print_operation(&TEST_SCHEMA, def))
.chain(
next_program
.fragments()
.map(|def| print_fragment(&TEST_SCHEMA, def)),
)
.collect::<Vec<_>>();
printed.sort();
Ok(printed.join("\n\n"))
} |
|
tccr3.rs | #[doc = "Register `TCCR3` reader"]
pub struct R(crate::R<TCCR3_SPEC>);
impl core::ops::Deref for R {
type Target = crate::R<TCCR3_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0 | }
impl From<crate::R<TCCR3_SPEC>> for R {
#[inline(always)]
fn from(reader: crate::R<TCCR3_SPEC>) -> Self {
R(reader)
}
}
#[doc = "Register `TCCR3` writer"]
pub struct W(crate::W<TCCR3_SPEC>);
impl core::ops::Deref for W {
type Target = crate::W<TCCR3_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl core::ops::DerefMut for W {
#[inline(always)]
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.0
}
}
impl From<crate::W<TCCR3_SPEC>> for W {
#[inline(always)]
fn from(writer: crate::W<TCCR3_SPEC>) -> Self {
W(writer)
}
}
#[doc = "Field `LPRD_TOCNT` reader - Low-Power Read Timeout Counter"]
pub struct LPRD_TOCNT_R(crate::FieldReader<u16, u16>);
impl LPRD_TOCNT_R {
#[inline(always)]
pub(crate) fn new(bits: u16) -> Self {
LPRD_TOCNT_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for LPRD_TOCNT_R {
type Target = crate::FieldReader<u16, u16>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `LPRD_TOCNT` writer - Low-Power Read Timeout Counter"]
pub struct LPRD_TOCNT_W<'a> {
w: &'a mut W,
}
impl<'a> LPRD_TOCNT_W<'a> {
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub unsafe fn bits(self, value: u16) -> &'a mut W {
self.w.bits = (self.w.bits & !0xffff) | (value as u32 & 0xffff);
self.w
}
}
impl R {
#[doc = "Bits 0:15 - Low-Power Read Timeout Counter"]
#[inline(always)]
pub fn lprd_tocnt(&self) -> LPRD_TOCNT_R {
LPRD_TOCNT_R::new((self.bits & 0xffff) as u16)
}
}
impl W {
#[doc = "Bits 0:15 - Low-Power Read Timeout Counter"]
#[inline(always)]
pub fn lprd_tocnt(&mut self) -> LPRD_TOCNT_W {
LPRD_TOCNT_W { w: self }
}
#[doc = "Writes raw bits to the register."]
#[inline(always)]
pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
self.0.bits(bits);
self
}
}
#[doc = "DSI Host Timeout Counter Configuration Register3\n\nThis register you can [`read`](crate::generic::Reg::read), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [tccr3](index.html) module"]
pub struct TCCR3_SPEC;
impl crate::RegisterSpec for TCCR3_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [tccr3::R](R) reader structure"]
impl crate::Readable for TCCR3_SPEC {
type Reader = R;
}
#[doc = "`write(|w| ..)` method takes [tccr3::W](W) writer structure"]
impl crate::Writable for TCCR3_SPEC {
type Writer = W;
}
#[doc = "`reset()` method sets TCCR3 to value 0"]
impl crate::Resettable for TCCR3_SPEC {
#[inline(always)]
fn reset_value() -> Self::Ux {
0
}
} | } |
FilterEditor.ts | // Copyright (C) 2021 John Nesky, distributed under the MIT license.
import { FilterCoefficients, FrequencyResponse } from "../synth/filtering";
import { FilterType, Config } from "../synth/SynthConfig";
import { FilterSettings, FilterControlPoint, Instrument } from "../synth/synth";
import { SongDocument } from "./SongDocument";
import { HTML, SVG } from "imperative-html/dist/esm/elements-strict";
import { ColorConfig } from "./ColorConfig";
import { ChangeSequence, UndoableChange } from "./Change";
import { ChangeFilterAddPoint, ChangeFilterMovePoint, ChangeFilterSettings } from "./changes";
import { prettyNumber } from "./EditorConfig";
export class FilterEditor {
private _editorWidth: number = 120;
private _editorHeight: number = 26;
private readonly _responsePath: SVGPathElement = SVG.path({ fill: ColorConfig.uiWidgetBackground, "pointer-events": "none" });
//private readonly _octaves: SVGSVGElement = SVG.svg({"pointer-events": "none", overflow: "visible"});
private _indicators: SVGTextElement[] = [];
private _subFilters: FilterSettings[] = [];
private readonly _controlPointPath: SVGPathElement = SVG.path({ fill: "currentColor", "pointer-events": "none" });
private readonly _dottedLinePath: SVGPathElement = SVG.path({ fill: "none", stroke: "currentColor", "stroke-width": 1, "stroke-dasharray": "3, 2", "pointer-events": "none" });
private readonly _highlight: SVGCircleElement = SVG.circle({ fill: "white", stroke: "none", "pointer-events": "none", r: 4 });
private readonly _svg: SVGSVGElement = SVG.svg({ style: `background-color: ${ColorConfig.editorBackground}; touch-action: none;`, width: "100%", height: "100%", viewBox: "0 0 " + this._editorWidth + " " + this._editorHeight, preserveAspectRatio: "none" },
this._responsePath,
//this._octaves,
this._dottedLinePath,
this._highlight,
this._controlPointPath,
);
private selfUndoSettings: String[] = [];
private selfUndoHistoryPos: number = 0;
private readonly _label: HTMLDivElement = HTML.div({ style: "position: absolute; bottom: 0; left: 2px; font-size: 8px; line-height: 1; pointer-events: none;" });
public coordText: HTMLElement | null = null;
public readonly container: HTMLElement = HTML.div({ class: "filterEditor", style: "height: 100%; position: relative;" },
this._svg,
this._label,
);
private _pointRadius: number = 2;
private _useNoteFilter: boolean = false;
private _larger: boolean = false;
private _touchMode: boolean = false;
private _mouseX: number = 0;
private _mouseY: number = 0;
private _mouseOver: boolean = false;
private _mouseDown: boolean = false;
private _mouseDragging: boolean = false;
private _addingPoint: boolean = false;
private _deletingPoint: boolean = false;
private _addedType: FilterType = FilterType.peak;
private _selectedIndex: number = 0;
private _freqStart: number = 0;
private _gainStart: number = 0;
private _dragChange: UndoableChange | null = null;
private _subfilterIndex: number = 0;
private _filterSettings: FilterSettings;
private _renderedSelectedIndex: number = -1;
private _renderedPointCount: number = -1;
private _renderedPointTypes: number = -1;
private _renderedPointFreqs: number = -1;
private _renderedPointGains: number = -1;
//private _renderedKey: number = -1;
constructor(private _doc: SongDocument, useNoteFilter: boolean = false, larger: boolean = false) {
this._useNoteFilter = useNoteFilter;
this._larger = larger;
if (this._larger) {
this.container.addEventListener("keydown", this._whenKeyPressed)
this._editorWidth = 1200;
this._editorHeight = 260;
this._pointRadius = 14;
// A bit of vertical spacing on viewBox so that numbers will show.
this._svg.setAttribute("viewBox", "0 -20 " + this._editorWidth + " " + (this._editorHeight + 30));
this._label.style.setProperty("font-size", "16px");
this._label.style.setProperty("position", "");
this._label.style.setProperty("bottom", "-16px");
this._label.style.setProperty("min-height", "1em");
this._dottedLinePath.style.setProperty("stroke-width", "3");
this._dottedLinePath.style.setProperty("stroke-dasharray", "6, 4");
this._dottedLinePath.setAttribute("color", ColorConfig.getChannelColor(this._doc.song, this._doc.channel).primaryNote);
this.container.style.setProperty("width", "85%");
this._highlight.setAttribute("r", "20");
this._controlPointPath.setAttribute("fill", ColorConfig.getChannelColor(this._doc.song, this._doc.channel).primaryNote);
for (let i: number = 0; i < Config.filterMaxPoints; i++) {
this._indicators[i] = SVG.text();
this._indicators[i].setAttribute("fill", ColorConfig.invertedText);
this._indicators[i].setAttribute("text-anchor", "start");
this._indicators[i].setAttribute("dominant-baseline", "central");
this._indicators[i].setAttribute("pointer-events", "none");
this._indicators[i].setAttribute("font-weight", "bolder");
this._indicators[i].textContent = "" + (i + 1);
this._indicators[i].style.setProperty("display", "none");
this._indicators[i].style.setProperty("font-size", "24px");
this._svg.appendChild(this._indicators[i]);
}
// Push initial state
const instrument: Instrument = this._doc.song.channels[this._doc.channel].instruments[this._doc.getCurrentInstrument()];
const filterSettings: FilterSettings = this._useNoteFilter ? instrument.noteFilter : instrument.eqFilter;
this.selfUndoSettings.push(JSON.stringify(filterSettings.toJsonObject()));
this._subFilters[0] = filterSettings;
for (let i: number = 1; i < Config.filterMorphCount; i++) {
const subFilter: FilterSettings | null = this._useNoteFilter ? instrument.noteSubFilters[i] : instrument.eqSubFilters[i];
if (subFilter != null) {
let parsedFilter: FilterSettings = new FilterSettings();
parsedFilter.fromJsonObject(subFilter.toJsonObject());
this._subFilters[i] = parsedFilter;
}
}
}
this.container.addEventListener("mousedown", this._whenMousePressed);
this.container.addEventListener("mouseover", this._whenMouseOver);
this.container.addEventListener("mouseout", this._whenMouseOut);
document.addEventListener("mousemove", this._whenMouseMoved);
document.addEventListener("mouseup", this._whenCursorReleased);
this.container.addEventListener("touchstart", this._whenTouchPressed);
this.container.addEventListener("touchmove", this._whenTouchMoved);
this.container.addEventListener("touchend", this._whenCursorReleased);
this.container.addEventListener("touchcancel", this._whenCursorReleased);
}
private _whenKeyPressed = (event: KeyboardEvent): void => {
if (event.keyCode == 90) { // z
this.undo();
event.stopPropagation();
}
if (event.keyCode == 89) { // y
this.redo();
event.stopPropagation();
}
}
private _xToFreq(x: number): number {
return Config.filterFreqRange * x / this._editorWidth - 0.5;
}
private _freqToX(freq: number): number {
return this._editorWidth * (freq + 0.5) / Config.filterFreqRange;
}
private _yToGain(y: number): number {
return (Config.filterGainRange - 1) * (1 - (y - .5) / (this._editorHeight - 1));
}
private _gainToY(gain: number): number {
return (this._editorHeight - 1) * (1 - gain / (Config.filterGainRange - 1)) + .5;
}
private _whenMouseOver = (event: MouseEvent): void => {
this._mouseOver = true;
if (!this._larger)
this._controlPointPath.style.setProperty("fill", "currentColor");
}
private _whenMouseOut = (event: MouseEvent): void => {
this._mouseOver = false;
this._updatePath();
if (this.coordText != null) {
this.coordText.innerText = "";
}
}
private _whenMousePressed = (event: MouseEvent): void => {
event.preventDefault();
this._touchMode = false;
const boundingRect: ClientRect = this._svg.getBoundingClientRect();
this._mouseX = ((event.clientX || event.pageX) - boundingRect.left) * this._editorWidth / (boundingRect.right - boundingRect.left);
this._mouseY = ((event.clientY || event.pageY) - boundingRect.top) * this._editorHeight / (boundingRect.bottom - boundingRect.top);
if (isNaN(this._mouseX)) this._mouseX = 0;
if (isNaN(this._mouseY)) this._mouseY = 0;
this._whenCursorPressed();
}
private _whenTouchPressed = (event: TouchEvent): void => {
event.preventDefault();
this._touchMode = true;
const boundingRect: ClientRect = this._svg.getBoundingClientRect();
this._mouseX = (event.touches[0].clientX - boundingRect.left) * this._editorWidth / (boundingRect.right - boundingRect.left);
this._mouseY = (event.touches[0].clientY - boundingRect.top) * this._editorHeight / (boundingRect.bottom - boundingRect.top);
if (isNaN(this._mouseX)) this._mouseX = 0;
if (isNaN(this._mouseY)) this._mouseY = 0;
this._whenCursorPressed();
}
private _whenMouseMoved = (event: MouseEvent): void => {
if (this.container.offsetParent == null) return;
const boundingRect: ClientRect = this._svg.getBoundingClientRect();
this._mouseX = ((event.clientX || event.pageX) - boundingRect.left) * this._editorWidth / (boundingRect.right - boundingRect.left);
this._mouseY = ((event.clientY || event.pageY) - boundingRect.top) * this._editorHeight / (boundingRect.bottom - boundingRect.top);
if (isNaN(this._mouseX)) this._mouseX = 0;
if (isNaN(this._mouseY)) this._mouseY = 0;
if (!this._mouseDown) this._updateCursor();
this._whenCursorMoved();
}
private _whenTouchMoved = (event: TouchEvent): void => {
if (this.container.offsetParent == null) return;
if (this._mouseDown) event.preventDefault();
const boundingRect: ClientRect = this._svg.getBoundingClientRect();
this._mouseX = (event.touches[0].clientX - boundingRect.left) * this._editorWidth / (boundingRect.right - boundingRect.left);
this._mouseY = (event.touches[0].clientY - boundingRect.top) * this._editorHeight / (boundingRect.bottom - boundingRect.top);
if (isNaN(this._mouseX)) this._mouseX = 0;
if (isNaN(this._mouseY)) this._mouseY = 0;
if (!this._mouseDown) this._updateCursor();
this._whenCursorMoved();
}
private _whenCursorPressed(): void {
this._mouseDown = true;
const sequence: ChangeSequence = new ChangeSequence();
this._dragChange = sequence;
this._doc.setProspectiveChange(this._dragChange);
this._updateCursor();
this._whenCursorMoved();
}
private _updateCursor(): void {
this._freqStart = this._xToFreq(this._mouseX);
this._gainStart = this._yToGain(this._mouseY);
this._addingPoint = true;
this._selectedIndex = -1;
let nearestDistance: number = Number.POSITIVE_INFINITY;
for (let i: number = 0; i < this._filterSettings.controlPointCount; i++) {
const point: FilterControlPoint = this._filterSettings.controlPoints[i];
const distance: number = Math.sqrt(Math.pow(this._freqToX(point.freq) - this._mouseX, 2) + Math.pow(this._gainToY(point.gain) - this._mouseY, 2));
if ((distance <= 13 * (1 + +this._larger) || this._filterSettings.controlPointCount >= Config.filterMaxPoints) && distance < nearestDistance) {
nearestDistance = distance;
this._selectedIndex = i;
this._addingPoint = false;
}
}
if (this._addingPoint) {
const ratio: number = this._mouseX / this._editorWidth;
if (ratio < 0.2) {
this._addedType = FilterType.highPass;
} else if (ratio < 0.8) {
this._addedType = FilterType.peak;
} else {
this._addedType = FilterType.lowPass;
}
}
}
private _whenCursorMoved(): void {
if (this._dragChange != null && this._doc.lastChangeWas(this._dragChange)) {
this._dragChange.undo();
} else {
this._mouseDown = false;
}
this._dragChange = null;
this._deletingPoint = false;
if (this.coordText != null && !this._mouseDown) {
let gain: number = Math.round(this._yToGain(this._mouseY));
let freq: number = Math.round(this._xToFreq(this._mouseX));
if (freq >= 0 && freq < Config.filterFreqRange && gain >= 0 && gain < Config.filterGainRange)
this.coordText.innerText = "(" + freq + ", " + gain + ")";
else
this.coordText.innerText = "";
}
if (this._mouseDown) {
const sequence: ChangeSequence = new ChangeSequence();
this._dragChange = sequence;
this._doc.setProspectiveChange(this._dragChange);
if (this._addingPoint) {
const gain: number = Math.max(0, Math.min(Config.filterGainRange - 1, Math.round(this._yToGain(this._mouseY))));
const freq: number = this._findNearestFreqSlot(this._filterSettings, this._xToFreq(this._mouseX), -1);
if (freq >= 0 && freq < Config.filterFreqRange) {
const point: FilterControlPoint = new FilterControlPoint();
point.type = this._addedType;
point.freq = freq;
point.gain = gain;
sequence.append(new ChangeFilterAddPoint(this._doc, this._filterSettings, point, this._filterSettings.controlPointCount, this._useNoteFilter));
if (this.coordText != null) {
this.coordText.innerText = "(" + freq + ", " + gain + ")";
}
} else {
this._deletingPoint = true;
}
} else if (this._selectedIndex >= this._filterSettings.controlPointCount || this._selectedIndex == -1) {
this._dragChange = null;
this._mouseDown = false;
} else {
const freqDelta: number = this._xToFreq(this._mouseX) - this._freqStart;
const gainDelta: number = this._yToGain(this._mouseY) - this._gainStart;
const point: FilterControlPoint = this._filterSettings.controlPoints[this._selectedIndex];
const gain: number = Math.max(0, Math.min(Config.filterGainRange - 1, Math.round(point.gain + gainDelta))); | const freq: number = this._findNearestFreqSlot(this._filterSettings, point.freq + freqDelta, this._selectedIndex);
if (Math.round(freqDelta) != 0.0 || Math.round(gainDelta) != 0.0 || freq != point.freq || gain != point.gain) {
this._mouseDragging = true;
}
if (freq >= 0 && freq < Config.filterFreqRange) {
sequence.append(new ChangeFilterMovePoint(this._doc, point, point.freq, freq, point.gain, gain));
if (this.coordText != null) {
this.coordText.innerText = "(" + freq + ", " + gain + ")";
}
} else {
sequence.append(new ChangeFilterAddPoint(this._doc, this._filterSettings, point, this._selectedIndex, this._useNoteFilter, true));
this._deletingPoint = true;
}
}
}
if (this._mouseDown || this._mouseOver) {
this._updatePath();
}
}
private _whenCursorReleased = (event: Event): void => {
if (this.container.offsetParent == null) return;
if (this._mouseDown && this._doc.lastChangeWas(this._dragChange) && this._dragChange != null) {
if (!this._addingPoint && !this._mouseDragging && !this._touchMode) {
if (this._selectedIndex < this._filterSettings.controlPointCount && this._selectedIndex != -1) {
const point: FilterControlPoint = this._filterSettings.controlPoints[this._selectedIndex];
let change: ChangeFilterAddPoint = new ChangeFilterAddPoint(this._doc, this._filterSettings, point, this._selectedIndex, this._useNoteFilter, true);
if (!this._larger) {
this._doc.record(change);
}
}
} else if (!this._larger) {
this._doc.record(this._dragChange);
}
this._updatePath();
if (this._larger) {
this.selfUndoSettings.length = this.selfUndoHistoryPos+1;
this.selfUndoSettings.push(JSON.stringify(this._filterSettings.toJsonObject()));
this.selfUndoHistoryPos++;
}
}
this._dragChange = null;
this._mouseDragging = false;
this._deletingPoint = false;
this._mouseDown = false;
this._updateCursor();
}
private _findNearestFreqSlot(filterSettings: FilterSettings, targetFreq: number, ignoreIndex: number): number {
const roundedFreq: number = Math.round(targetFreq);
let lowerFreq: number = roundedFreq;
let upperFreq: number = roundedFreq;
let tryingLower: boolean = (roundedFreq <= targetFreq);
while (true) {
let foundConflict: boolean = false;
const currentFreq: number = tryingLower ? lowerFreq : upperFreq;
for (let i: number = 0; i < filterSettings.controlPointCount; i++) {
if (i == ignoreIndex) continue;
if (filterSettings.controlPoints[i].freq == currentFreq) {
foundConflict = true;
break;
}
}
if (!foundConflict) return currentFreq;
tryingLower = !tryingLower;
if (tryingLower) lowerFreq--;
if (!tryingLower) upperFreq++;
}
}
private static _circlePath(cx: number, cy: number, radius: number, reverse: boolean = false): string {
return `M ${cx - radius} ${cy} ` +
`a ${radius} ${radius} 0 1 ${reverse ? 1 : 0} ${radius * 2} 0 ` +
`a ${radius} ${radius} 0 1 ${reverse ? 1 : 0} ${-radius * 2} 0 `;
}
private _updatePath(): void {
this._highlight.style.display = "none";
this._label.textContent = "";
let controlPointPath: string = "";
let dottedLinePath: string = "";
for (let i: number = 0; i < this._filterSettings.controlPointCount; i++) {
const point: FilterControlPoint = this._filterSettings.controlPoints[i];
const pointX: number = this._freqToX(point.freq);
const pointY: number = this._gainToY(point.gain);
controlPointPath += FilterEditor._circlePath(pointX, pointY, this._pointRadius);
if (point.type == FilterType.highPass) {
dottedLinePath += "M " + 0 + " " + pointY + " L " + pointX + " " + pointY + " ";
} else if (point.type == FilterType.lowPass) {
dottedLinePath += "M " + this._editorWidth + " " + pointY + " L " + pointX + " " + pointY + " ";
}
if (this._selectedIndex == i && this._mouseOver && !this._mouseDown) {
this._highlight.setAttribute("cx", String(pointX));
this._highlight.setAttribute("cy", String(pointY));
this._highlight.style.display = "";
if (this.coordText != null) {
this.coordText.innerText = "(" + point.freq + ", " + point.gain + ")";
}
}
if ((this._selectedIndex == i || (this._addingPoint && this._mouseDown && i == this._filterSettings.controlPointCount - 1)) && (this._mouseOver || this._mouseDown) && !this._deletingPoint) {
this._label.textContent = (i + 1) + ": " + Config.filterTypeNames[point.type] + (this._larger ? " @" + prettyNumber(point.getHz()) + "Hz" : "");
}
if (this._larger) {
this._indicators[i].style.setProperty("display", "");
this._indicators[i].setAttribute("x", "" + (pointX - 7));
this._indicators[i].setAttribute("y", "" + (pointY + 2));
}
}
this._controlPointPath.setAttribute("d", controlPointPath);
this._dottedLinePath.setAttribute("d", dottedLinePath);
if (this._addingPoint && !this._mouseDown && this._mouseOver) {
this._label.textContent = "+ " + Config.filterTypeNames[this._addedType];
}
// Hide unused control point labels
if (this._larger) {
for (let i: number = this._filterSettings.controlPointCount; i < Config.filterMaxPoints; i++) {
this._indicators[i].style.setProperty("display", "none");
}
}
//let volumeCompensation: number = 1.0;
const standardSampleRate: number = 44800;
const filters: FilterCoefficients[] = [];
for (let i: number = 0; i < this._filterSettings.controlPointCount; i++) {
const point: FilterControlPoint = this._filterSettings.controlPoints[i];
const filter: FilterCoefficients = new FilterCoefficients();
point.toCoefficients(filter, standardSampleRate);
filters.push(filter);
//volumeCompensation *= point.getVolumeCompensationMult();
}
const response: FrequencyResponse = new FrequencyResponse();
let responsePath: string = "M 0 " + this._editorHeight + " ";
for (let i: number = -1; i <= Config.filterFreqRange; i++) {
const hz: number = FilterControlPoint.getHzFromSettingValue(i);
const cornerRadiansPerSample: number = 2.0 * Math.PI * hz / standardSampleRate;
const real: number = Math.cos(cornerRadiansPerSample);
const imag: number = Math.sin(cornerRadiansPerSample);
let linearGain: number = 1.0; //volumeCompensation;
for (const filter of filters) {
response.analyzeComplex(filter, real, imag);
linearGain *= response.magnitude();
}
const gainSetting: number = Math.log2(linearGain) / Config.filterGainStep + Config.filterGainCenter;
const y: number = this._gainToY(gainSetting);
const x: number = this._freqToX(i);
responsePath += "L " + prettyNumber(x) + " " + prettyNumber(y) + " ";
}
responsePath += "L " + this._editorWidth + " " + this._editorHeight + " L 0 " + this._editorHeight + " z ";
this._responsePath.setAttribute("d", responsePath);
}
// Swap to new filter settings all at once.
public swapToSettings(settings: FilterSettings, useHistory: boolean = false) {
const instrument: Instrument = this._doc.song.channels[this._doc.channel].instruments[this._doc.getCurrentInstrument()];
new ChangeFilterSettings(this._doc, settings, this._filterSettings, this._useNoteFilter, this._subFilters, this._useNoteFilter ? instrument.noteSubFilters : instrument.eqSubFilters);
this._filterSettings = settings;
this._subFilters[this._subfilterIndex] = settings;
if (useHistory && this._larger) {
this.selfUndoSettings.length = this.selfUndoHistoryPos + 1;
this.selfUndoSettings.push(JSON.stringify((this._filterSettings.toJsonObject())));
this.selfUndoHistoryPos++;
}
this._updatePath();
}
// Save settings on prompt close (record a change from first settings to newest)
public saveSettings() {
let firstFilter: FilterSettings = new FilterSettings;
const instrument: Instrument = this._doc.song.channels[this._doc.channel].instruments[this._doc.getCurrentInstrument()];
firstFilter.fromJsonObject(JSON.parse(String(this.selfUndoSettings[0])));
this._doc.record(new ChangeFilterSettings(this._doc, this._subFilters[0], firstFilter, this._useNoteFilter, this._subFilters, this._useNoteFilter ? instrument.noteSubFilters : instrument.eqSubFilters), true);
}
// Self-undo history management
// Returns the subfilter index to swap to, if any
public undo(): number {
if (this.selfUndoHistoryPos > 0) {
this.selfUndoHistoryPos--;
// Jump back and load latest state of this subfilter. Also save subfilter settings for current index
if (this.selfUndoSettings[this.selfUndoHistoryPos + 1] != null && this.selfUndoSettings[this.selfUndoHistoryPos + 1].startsWith("jmp")) {
let str: String = this.selfUndoSettings[this.selfUndoHistoryPos + 1];
let jumpIndex = +str.substring(3, str.indexOf("|"));
this.swapToSubfilter(this._subfilterIndex, jumpIndex);
return jumpIndex;
// Jumping to FIRST state of this subfilter
} else if (this.selfUndoSettings[this.selfUndoHistoryPos].startsWith("jmp")) {
let savedFilter: FilterSettings = new FilterSettings();
let str: String = this.selfUndoSettings[this.selfUndoHistoryPos];
savedFilter.fromJsonObject(JSON.parse(str.substring(str.indexOf(":") + 1)));
this.swapToSettings(savedFilter, false);
} else {
let savedFilter: FilterSettings = new FilterSettings();
savedFilter.fromJsonObject(JSON.parse(String(this.selfUndoSettings[this.selfUndoHistoryPos])));
this.swapToSettings(savedFilter, false);
}
}
return -1;
}
// Returns the subfilter index to swap to, if any
public redo(): number {
if (this.selfUndoHistoryPos < this.selfUndoSettings.length-1) {
this.selfUndoHistoryPos++;
// Check if next index in undo queue is a command to jump to a new filter index
if (this.selfUndoSettings[this.selfUndoHistoryPos].startsWith("jmp")) {
let str: String = this.selfUndoSettings[this.selfUndoHistoryPos];
let jumpIndex = +str.substring(str.indexOf("|") + 1, str.indexOf(":"));
this.swapToSubfilter(this._subfilterIndex, jumpIndex, false);
return jumpIndex;
} else {
let savedFilter: FilterSettings = new FilterSettings();
savedFilter.fromJsonObject(JSON.parse(String(this.selfUndoSettings[this.selfUndoHistoryPos])));
this.swapToSettings(savedFilter, false);
}
}
return -1;
}
public resetToInitial() {
this.selfUndoHistoryPos = 1;
this.undo();
}
public swapSubfilterIndices(newIndex: number) {
if (this._selectedIndex == -1)
return;
if (newIndex >= this._filterSettings.controlPointCount)
return;
let tmp: FilterControlPoint = this._filterSettings.controlPoints[this._selectedIndex];
this._filterSettings.controlPoints[this._selectedIndex] = this._filterSettings.controlPoints[newIndex];
this._filterSettings.controlPoints[newIndex] = tmp;
this.render();
}
public swapToSubfilter(oldIndex: number, newIndex: number, useHistory: boolean = false) {
if (oldIndex != newIndex) {
// Save current subfilter
let currFilter: FilterSettings = new FilterSettings();
currFilter.fromJsonObject(this._filterSettings.toJsonObject());
this._subFilters[oldIndex] = currFilter;
// Copy main filter at this time
if (this._subFilters[newIndex] == undefined) {
let parsedFilter: FilterSettings = new FilterSettings();
parsedFilter.fromJsonObject(this._subFilters[0].toJsonObject());
this._subFilters[newIndex] = parsedFilter;
}
// Record the swap in undo history
if (useHistory) {
this.selfUndoSettings.length = this.selfUndoHistoryPos + 1;
// Swap from|to:filterInitSettings
this.selfUndoSettings.push("jmp" + oldIndex + "|" + newIndex + ":" + JSON.stringify(this._subFilters[newIndex].toJsonObject()));
this.selfUndoHistoryPos++;
}
this._subfilterIndex = newIndex;
// Never use history here since the swap action is itself history-generating
this.swapToSettings(this._subFilters[newIndex], false);
}
}
public render(activeMods: boolean = false): void {
const instrument: Instrument = this._doc.song.channels[this._doc.channel].instruments[this._doc.getCurrentInstrument()];
const filterSettings: FilterSettings = this._useNoteFilter ? instrument.noteFilter : instrument.eqFilter;
let displayMods: boolean = (activeMods && !this._larger && !this._mouseOver && !this._mouseDragging && !this._mouseDown && this._doc.synth.playing)
if (displayMods)
this._controlPointPath.style.setProperty("fill", `${ColorConfig.overwritingModSlider}`);
else if (!this._larger)
this._controlPointPath.style.setProperty("fill", "currentColor");
if (this._filterSettings != filterSettings) {
this._dragChange = null;
this._mouseDown = false;
}
this._filterSettings = filterSettings;
let targetSettings: FilterSettings = filterSettings;
if (!this._mouseDown) this._updateCursor();
// If modulators are active, show synth's current filter point settings instead of real points
if (displayMods) {
// TODO: Re-compute default point freqs/gains only when needed
targetSettings = (this._useNoteFilter) ? instrument.tmpNoteFilterStart! : instrument.tmpEqFilterStart!;
if (targetSettings == null) targetSettings = (this._useNoteFilter) ? instrument.noteFilter : instrument.eqFilter;
this._filterSettings = targetSettings!;
}
let pointTypes: number = 0;
let pointFreqs: number = 0;
let pointGains: number = 0;
for (let i: number = 0; i < targetSettings.controlPointCount; i++) {
const point: FilterControlPoint = targetSettings.controlPoints[i];
pointTypes = pointTypes * FilterType.length + point.type;
pointFreqs = pointFreqs * Config.filterFreqRange + point.freq;
pointGains = pointGains * Config.filterGainRange + point.gain;
}
if (this._renderedSelectedIndex != this._selectedIndex ||
this._renderedPointCount != targetSettings.controlPointCount ||
this._renderedPointTypes != pointTypes ||
this._renderedPointFreqs != pointFreqs ||
this._renderedPointGains != pointGains) {
this._renderedSelectedIndex = this._selectedIndex;
this._renderedPointCount = targetSettings.controlPointCount;
this._renderedPointTypes = pointTypes;
this._renderedPointFreqs = pointFreqs;
this._renderedPointGains = pointGains;
this._updatePath();
}
// Return to normal filter settings
if (displayMods) {
this._filterSettings = filterSettings;
}
/*
if (this._renderedKey != this._doc.song.key) {
this._renderedKey = this._doc.song.key;
const tonicHz: number = Instrument.frequencyFromPitch(Config.keys[this._doc.song.key].basePitch);
const x: number = this._freqToX(FilterControlPoint.getSettingValueFromHz(tonicHz));
this._octaves.setAttribute("x", String(x));
}
*/
}
} | |
de.rs | use crate::{
bytes::Bytes,
decode::Decode,
encode::Encode,
Error,
Result,
};
use serde::{
de::{
self,
DeserializeSeed,
SeqAccess,
Visitor,
},
Deserialize,
};
pub struct Deserializer<'de> {
buf: &'de [u8],
index: usize,
}
impl<'de> Deserializer<'de> {
pub fn from_bytes(buf: &'de [u8]) -> Self {
Deserializer { buf, index: 0 }
}
}
/// Function to call to decode a Solidity response into a struct that implements `serde::Deserialize`
pub fn from_bytes<'a, T>(buf: &'a [u8]) -> Result<T>
where
T: Deserialize<'a>,
{
let mut deserializer = Deserializer::from_bytes(buf);
Ok(T::deserialize(&mut deserializer)?)
}
impl<'de> Deserializer<'de> {
fn decode<T>(&mut self) -> Result<T>
where
T: Decode<'de> + Encode,
{
let value = if T::is_dynamic() {
let offset = u64::decode(&self.buf[self.index * 32..(self.index + 1) * 32]);
T::decode(&self.buf[offset as usize..])
} else {
T::decode(&self.buf[self.index * 32..(self.index + 1) * 32])
};
self.index += 1;
Ok(value)
}
}
impl<'de, 'a> de::Deserializer<'de> for &'a mut Deserializer<'de> {
type Error = Error;
fn deserialize_any<V: Visitor<'de>>(self, _visitor: V) -> Result<V::Value> {
unimplemented!()
}
fn deserialize_bool<V: Visitor<'de>>(self, visitor: V) -> Result<V::Value> {
visitor.visit_bool(self.decode::<bool>()?)
}
fn deserialize_i8<V: Visitor<'de>>(self, visitor: V) -> Result<V::Value> {
visitor.visit_i8(self.decode::<i8>()?)
}
fn deserialize_i16<V: Visitor<'de>>(self, visitor: V) -> Result<V::Value> {
visitor.visit_i16(self.decode::<i16>()?)
}
fn deserialize_i32<V: Visitor<'de>>(self, visitor: V) -> Result<V::Value> {
visitor.visit_i32(self.decode::<i32>()?)
}
fn deserialize_i64<V: Visitor<'de>>(self, visitor: V) -> Result<V::Value> {
visitor.visit_i64(self.decode::<i64>()?)
}
fn deserialize_i128<V: Visitor<'de>>(self, visitor: V) -> Result<V::Value> {
visitor.visit_i128(self.decode::<i128>()?)
}
fn deserialize_u8<V: Visitor<'de>>(self, visitor: V) -> Result<V::Value> {
visitor.visit_u8(self.decode::<u8>()?)
}
fn deserialize_u16<V: Visitor<'de>>(self, visitor: V) -> Result<V::Value> {
visitor.visit_u16(self.decode::<u16>()?)
}
fn deserialize_u32<V: Visitor<'de>>(self, visitor: V) -> Result<V::Value> {
visitor.visit_u32(self.decode::<u32>()?)
}
fn | <V: Visitor<'de>>(self, visitor: V) -> Result<V::Value> {
visitor.visit_u64(self.decode::<u64>()?)
}
fn deserialize_u128<V: Visitor<'de>>(self, visitor: V) -> Result<V::Value> {
visitor.visit_u128(self.decode::<u128>()?)
}
// UNSUPPORTED
fn deserialize_f32<V: Visitor<'de>>(self, _visitor: V) -> Result<V::Value> {
unimplemented!()
}
// UNSUPPORTED
fn deserialize_f64<V: Visitor<'de>>(self, _visitor: V) -> Result<V::Value> {
unimplemented!()
}
// UNSUPPORTED
fn deserialize_char<V: Visitor<'de>>(self, _visitor: V) -> Result<V::Value> {
unimplemented!()
}
fn deserialize_str<V: Visitor<'de>>(self, _visitor: V) -> Result<V::Value> {
todo!();
// visitor.visit_borrowed_str(&self.decode::<String>()?)
}
fn deserialize_string<V: Visitor<'de>>(self, visitor: V) -> Result<V::Value> {
visitor.visit_string(self.decode::<String>()?)
}
fn deserialize_byte_buf<V: Visitor<'de>>(self, visitor: V) -> Result<V::Value> {
visitor.visit_byte_buf(self.decode::<Bytes>()?.0.to_vec())
}
// The `Serializer` implementation on the previous page serialized byte
// arrays as JSON arrays of bytes. Handle that representation here.
fn deserialize_bytes<V: Visitor<'de>>(self, visitor: V) -> Result<V::Value> {
visitor.visit_borrowed_bytes(&self.decode::<Bytes>()?.0)
}
// An absent optional is represented as the JSON `null` and a present
// optional is represented as just the contained value.
//
// As commented in `Serializer` implementation, this is a lossy
// representation. For example the values `Some(())` and `None` both
// serialize as just `null`. Unfortunately this is typically what people
// expect when working with JSON. Other formats are encouraged to behave
// more intelligently if possible.
fn deserialize_option<V: Visitor<'de>>(self, _visitor: V) -> Result<V::Value> {
unimplemented!()
}
// In Serde, unit means an anonymous value containing no data.
fn deserialize_unit<V: Visitor<'de>>(self, visitor: V) -> Result<V::Value> {
visitor.visit_unit()
}
// Unit struct means a named value containing no data.
fn deserialize_unit_struct<V: Visitor<'de>>(
self,
_name: &'static str,
visitor: V,
) -> Result<V::Value> {
self.deserialize_unit(visitor)
}
// As is done here, serializers are encouraged to treat newtype structs as
// insignificant wrappers around the data they contain. That means not
// parsing anything other than the contained value.
fn deserialize_newtype_struct<V: Visitor<'de>>(
self,
_name: &'static str,
visitor: V,
) -> Result<V::Value> {
let mut deserializer = Deserializer {
buf: &self.buf[self.index * 32..],
index: 0,
};
Ok(visitor.visit_seq(Struct::new(&mut deserializer))?)
}
// Deserialization of compound types like sequences and maps happens by
// passing the visitor an "Access" object that gives it the ability to
// iterate through the data contained in the sequence.
fn deserialize_seq<V: Visitor<'de>>(self, visitor: V) -> Result<V::Value> {
let offset = self.decode::<u64>()? as usize;
let len = u64::decode(&self.buf[offset..offset + 32]);
let mut deserializer = Deserializer {
buf: &self.buf[offset + 32..],
index: 0,
};
Ok(visitor.visit_seq(VecDeserializer::new(&mut deserializer, len as usize))?)
}
// Tuples look just like sequences in JSON. Some formats may be able to
// represent tuples more efficiently.
//
// As indicated by the length parameter, the `Deserialize` implementation
// for a tuple in the Serde data model is required to know the length of the
// tuple before even looking at the input data.
fn deserialize_tuple<V: Visitor<'de>>(self, _len: usize, visitor: V) -> Result<V::Value> {
let mut deserializer = Deserializer {
buf: &self.buf[self.index * 32..],
index: 0,
};
Ok(visitor.visit_seq(Struct::new(&mut deserializer))?)
}
// Tuple structs look just like sequences in JSON.
fn deserialize_tuple_struct<V: Visitor<'de>>(
self,
_name: &'static str,
_len: usize,
visitor: V,
) -> Result<V::Value> {
let mut deserializer = Deserializer {
buf: &self.buf[self.index * 32..],
index: 0,
};
Ok(visitor.visit_seq(Struct::new(&mut deserializer))?)
}
// Much like `deserialize_seq` but calls the visitors `visit_map` method
// with a `MapAccess` implementation, rather than the visitor's `visit_seq`
// method with a `SeqAccess` implementation.
fn deserialize_map<V: Visitor<'de>>(self, _visitor: V) -> Result<V::Value> {
unimplemented!()
// Ok(visitor.visit_map(Struct::new(&mut self))?)
}
// Structs look just like maps in JSON.
//
// Notice the `fields` parameter - a "struct" in the Serde data model means
// that the `Deserialize` implementation is required to know what the fields
// are before even looking at the input data. Any key-value pairing in which
// the fields cannot be known ahead of time is probably a map.
fn deserialize_struct<V: Visitor<'de>>(
self,
_name: &'static str,
_fields: &'static [&'static str],
visitor: V,
) -> Result<V::Value> {
let mut deserializer = Deserializer {
buf: &self.buf[self.index * 32..],
index: 0,
};
Ok(visitor.visit_seq(Struct::new(&mut deserializer))?)
}
fn deserialize_enum<V: Visitor<'de>>(
self,
_name: &'static str,
_variants: &'static [&'static str],
_visitor: V,
) -> Result<V::Value> {
unimplemented!()
}
fn deserialize_identifier<V: Visitor<'de>>(self, _visitor: V) -> Result<V::Value> {
Err(Error::Message(
"Solidity does not support Deserializer::deserialize_identifier".to_string(),
))
}
fn deserialize_ignored_any<V: Visitor<'de>>(self, _visitor: V) -> Result<V::Value> {
unimplemented!()
// self.deserialize_any(visitor)
}
}
struct Struct<'a, 'de> {
de: &'a mut Deserializer<'de>,
}
impl<'a, 'de> Struct<'a, 'de> {
fn new(de: &'a mut Deserializer<'de>) -> Self {
Struct { de }
}
}
impl<'de, 'a> SeqAccess<'de> for Struct<'a, 'de> {
type Error = Error;
fn next_element_seed<T: DeserializeSeed<'de>>(&mut self, seed: T) -> Result<Option<T::Value>> {
seed.deserialize(&mut *self.de).map(Some)
}
}
struct VecDeserializer<'a, 'de> {
de: &'a mut Deserializer<'de>,
len: usize,
}
impl<'a, 'de> VecDeserializer<'a, 'de> {
fn new(de: &'a mut Deserializer<'de>, len: usize) -> Self {
Self { de, len }
}
}
impl<'de, 'a> SeqAccess<'de> for VecDeserializer<'a, 'de> {
type Error = Error;
fn next_element_seed<T: DeserializeSeed<'de>>(&mut self, seed: T) -> Result<Option<T::Value>> {
if self.len == 0 {
Ok(None)
} else {
self.len -= 1;
seed.deserialize(&mut *self.de).map(Some)
}
}
}
#[cfg(test)]
mod test {
use super::*;
#[test]
#[rustfmt::skip]
fn de_number_test() -> Result<()> {
#[derive(Debug, Deserialize)]
struct Response {
r#i8: i8,
r#u8: u8,
r#i16: i16,
r#u16: u16,
r#i32: i32,
r#u32: u32,
r#i64: i64,
r#u64: u64,
r#i128: i128,
r#u128: u128,
}
let value = hex::decode(
"\
00000000000000000000000000000000000000000000000000000000000000FF\
00000000000000000000000000000000000000000000000000000000000000FF\
000000000000000000000000000000000000000000000000000000000000FFFF\
000000000000000000000000000000000000000000000000000000000000FFFF\
00000000000000000000000000000000000000000000000000000000FFFFFFFF\
00000000000000000000000000000000000000000000000000000000FFFFFFFF\
000000000000000000000000000000000000000000000000FFFFFFFFFFFFFFFF\
000000000000000000000000000000000000000000000000FFFFFFFFFFFFFFFF\
00000000000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF\
00000000000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF",
)
.unwrap();
let value: Response = from_bytes(&value)?;
assert_eq!(value.r#i8, 0xFFu8 as i8);
assert_eq!(value.r#u8, 0xFFu8);
assert_eq!(value.r#i16, 0xFFFFu16 as i16);
assert_eq!(value.r#u16, 0xFFFFu16);
assert_eq!(value.r#i32, 0xFFFFFFFFu32 as i32);
assert_eq!(value.r#u32, 0xFFFFFFFFu32);
assert_eq!(value.r#i64, 0xFFFFFFFFFFFFFFFFu64 as i64);
assert_eq!(value.r#u64, 0xFFFFFFFFFFFFFFFFu64);
assert_eq!(value.r#i128, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFu128 as i128);
assert_eq!(value.r#u128, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFu128);
Ok(())
}
#[test]
#[rustfmt::skip]
fn de_string_test() -> Result<()> {
#[derive(Debug, Deserialize)]
struct Response<'a> {
string: String,
bytes: &'a [u8],
}
let value = hex::decode(
"\
0000000000000000000000000000000000000000000000000000000000000040\
0000000000000000000000000000000000000000000000000000000000000080\
000000000000000000000000000000000000000000000000000000000000000C\
72616E646F6D2062797465730000000000000000000000000000000000000000\
000000000000000000000000000000000000000000000000000000000000000C\
72616E646F6D2062797465730000000000000000000000000000000000000000\
",
)
.unwrap();
let value: Response = from_bytes(&value)?;
assert_eq!(value.string.len(), 12);
assert_eq!(value.string, "random bytes");
assert_eq!(value.bytes.len(), 12);
assert_eq!(value.bytes, &b"random bytes"[..]);
Ok(())
}
#[test]
#[rustfmt::skip]
fn de_string_array_test() -> Result<()> {
#[derive(Debug, Deserialize)]
struct Response {
strings: Vec<String>,
}
let value = hex::decode(
"\
0000000000000000000000000000000000000000000000000000000000000020\
0000000000000000000000000000000000000000000000000000000000000002\
0000000000000000000000000000000000000000000000000000000000000040\
0000000000000000000000000000000000000000000000000000000000000080\
000000000000000000000000000000000000000000000000000000000000000C\
72616E646F6D2062797465730000000000000000000000000000000000000000\
000000000000000000000000000000000000000000000000000000000000000C\
72616E646F6D2062797465730000000000000000000000000000000000000000\
",
)
.unwrap();
let value: Response = from_bytes(&value)?;
assert_eq!(value.strings.len(), 2);
assert_eq!(value.strings[0].as_str(), "random bytes");
assert_eq!(value.strings[1].as_str(), "random bytes");
Ok(())
}
#[test]
#[rustfmt::skip]
fn de_bytes_array_test() -> Result<()> {
#[derive(Debug, Deserialize)]
struct Response<'a> {
#[serde(borrow)]
bytes: Vec<&'a [u8]>,
}
let value = hex::decode(
"\
0000000000000000000000000000000000000000000000000000000000000020\
0000000000000000000000000000000000000000000000000000000000000002\
0000000000000000000000000000000000000000000000000000000000000040\
0000000000000000000000000000000000000000000000000000000000000080\
000000000000000000000000000000000000000000000000000000000000000C\
72616E646F6D2062797465730000000000000000000000000000000000000000\
000000000000000000000000000000000000000000000000000000000000000C\
72616E646F6D2062797465730000000000000000000000000000000000000000\
",
)
.unwrap();
let value: Response = from_bytes(&value)?;
assert_eq!(value.bytes.len(), 2);
assert_eq!(value.bytes[0], &b"random bytes"[..]);
assert_eq!(value.bytes[1], &b"random bytes"[..]);
Ok(())
}
}
| deserialize_u64 |
bootstrap.ts | import "reflect-metadata";
import { PassportLocalStrategyFunction } from "../services/security/security-tools";
import * as express from "express";
import * as bodyParser from "body-parser"; | import { Container } from "typedi";
import { useContainer as useContainerRoutingControllers, useExpressServer } from "routing-controllers";
import * as passport from "passport";
import { Strategy as LocalStrategy } from "passport-local";
import * as morgan from "morgan";
import database from "./database";
export default async function(): Promise<express.Express> {
const app = express();
app.use(bodyParser.json());
app.use(morgan("combined"));
useExpressServer(app, {
controllers: [
__dirname + "/../controllers/*.js"
]
})
app.use(express.static(__dirname + "/../../../assets"));
useContainerTypeORM(Container);
useContainerRoutingControllers(Container);
passport.use(new LocalStrategy(
PassportLocalStrategyFunction
));
// Database configuration
await createConnection({
type: "postgres",
host: database.host,
password: database.password,
username: database.username,
database: database.database,
entities: [__dirname + "/../entities/*.js"],
synchronize: true
});
return app;
} | import { createConnection, useContainer as useContainerTypeORM } from "typeorm"; |
objc.go | // Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// The objc package takes the result of an AST traversal by the
// importers package and uses the clang command to dump the type
// information for the referenced ObjC classes and protocols.
//
// It is the of go/types for ObjC types and is used by the bind
// package to generate Go wrappers for ObjC API on iOS.
package objc
import (
"bufio"
"bytes"
"fmt"
"os/exec"
"strings"
"unicode"
"unicode/utf8"
"golang.org/x/mobile/internal/importers"
)
type parser struct {
sdkPath string
sc *bufio.Scanner
decl string
indent int
last string
// Current module as parsed from the AST tree.
module string
}
type TypeKind int
// Named represents ObjC classes and protocols.
type Named struct {
Name string
GoName string
Module string
Funcs []*Func
Methods []*Func
AllMethods []*Func
Supers []Super
// For deduplication of function or method
// declarations.
funcMap map[string]struct{}
Protocol bool
// Generated is true if the type is wrapper of a
// generated Go struct.
Generated bool
}
// Super denotes a super class or protocol.
type Super struct {
Name string
Protocol bool
}
// Func is a ObjC method, static functions as well as
// instance methods.
type Func struct {
Sig string
GoName string
Params []*Param
Ret *Type
Static bool
// Method whose name start with "init"
Constructor bool
}
type Param struct {
Name string
Type *Type
}
type Type struct {
Kind TypeKind
// For Interface and Protocol types.
Name string
// For 'id' types.
instanceType bool
// The declared type raw from the AST.
Decl string
// Set if the type is a pointer to its kind. For classes
// Indirect is true if the type is a double pointer, e.g.
// NSObject **.
Indirect bool
}
const (
Unknown TypeKind = iota
Protocol
Class
String
Data
Int
Uint
Short
Ushort
Bool
Char
Uchar
Float
Double
)
// Import returns descriptors for a list of references to
// ObjC protocols and classes.
//
// The type information is parsed from the output of clang -cc1
// -ast-dump.
func Import(refs *importers.References) ([]*Named, error) {
var modules []string
modMap := make(map[string]struct{})
typeNames := make(map[string][]string)
typeSet := make(map[string]struct{})
genMods := make(map[string]struct{})
for _, emb := range refs.Embedders {
genMods[initialUpper(emb.Pkg)] = struct{}{}
}
for _, ref := range refs.Refs {
var module, name string
if idx := strings.Index(ref.Pkg, "/"); idx != -1 {
// ref is a static method reference.
module = ref.Pkg[:idx]
name = ref.Pkg[idx+1:]
} else {
// ref is a type name.
module = ref.Pkg
name = ref.Name
}
if _, exists := typeSet[name]; !exists {
typeNames[module] = append(typeNames[module], name)
typeSet[name] = struct{}{}
}
if _, exists := modMap[module]; !exists {
// Include the module only if it is generated.
if _, exists := genMods[module]; !exists {
modMap[module] = struct{}{}
modules = append(modules, module)
}
}
}
sdkPathOut, err := exec.Command("xcrun", "--sdk", "iphonesimulator", "--show-sdk-path").CombinedOutput()
if err != nil {
return nil, err
}
sdkPath := strings.TrimSpace(string(sdkPathOut))
var allTypes []*Named
typeMap := make(map[string]*Named)
for _, module := range modules {
types, err := importModule(string(sdkPath), module, typeNames[module], typeMap)
if err != nil {
return nil, fmt.Errorf("%s: %v", module, err)
}
allTypes = append(allTypes, types...)
}
// Embedders refer to every exported Go struct that will have its class
// generated. Allow Go code to reverse bind to those classes by synthesizing
// their descriptors.
for _, emb := range refs.Embedders {
module := initialUpper(emb.Pkg)
named := &Named{
Name: module + emb.Name,
GoName: emb.Name,
Module: module,
Generated: true,
}
for _, ref := range emb.Refs {
t, exists := typeMap[ref.Name]
if !exists {
return nil, fmt.Errorf("type not found: %q", ref.Name)
}
named.Supers = append(named.Supers, Super{
Name: t.Name,
Protocol: t.Protocol,
})
}
typeMap[emb.Name] = named
allTypes = append(allTypes, named)
}
initTypes(allTypes, refs, typeMap)
// Include implicit types that are used in parameter or return values.
newTypes := allTypes
for len(newTypes) > 0 {
var impTypes []*Named
for _, t := range newTypes {
for _, funcs := range [][]*Func{t.Funcs, t.AllMethods} {
for _, f := range funcs {
types := implicitFuncTypes(f)
for _, name := range types {
if _, exists := typeSet[name]; exists {
continue
}
typeSet[name] = struct{}{}
t, exists := typeMap[name]
if !exists {
return nil, fmt.Errorf("implicit type %q not found", name)
}
impTypes = append(impTypes, t)
}
}
}
}
initTypes(impTypes, refs, typeMap)
allTypes = append(allTypes, impTypes...)
newTypes = impTypes
}
return allTypes, nil
}
func implicitFuncTypes(f *Func) []string {
var types []string
if rt := f.Ret; rt != nil && !rt.instanceType && (rt.Kind == Class || rt.Kind == Protocol) {
types = append(types, rt.Name)
}
for _, p := range f.Params {
if t := p.Type; !t.instanceType && (t.Kind == Class || t.Kind == Protocol) {
types = append(types, t.Name)
}
}
return types
}
func | (types []*Named, refs *importers.References, typeMap map[string]*Named) {
for _, t := range types {
fillAllMethods(t, typeMap)
}
// Move constructors to functions. They are represented in Go
// as functions.
for _, t := range types {
var methods []*Func
for _, f := range t.AllMethods {
if f.Constructor {
f.Static = true
t.Funcs = append(t.Funcs, f)
} else {
methods = append(methods, f)
}
}
t.AllMethods = methods
}
for _, t := range types {
mangleMethodNames(t.AllMethods)
mangleMethodNames(t.Funcs)
}
filterReferences(types, refs, typeMap)
for _, t := range types {
resolveInstanceTypes(t, t.Funcs)
resolveInstanceTypes(t, t.AllMethods)
}
}
func filterReferences(types []*Named, refs *importers.References, typeMap map[string]*Named) {
refFuncs := make(map[[2]string]struct{})
for _, ref := range refs.Refs {
if sep := strings.Index(ref.Pkg, "/"); sep != -1 {
pkgName := ref.Pkg[sep+1:]
n := typeMap[pkgName]
if n == nil {
continue
}
refFuncs[[...]string{pkgName, ref.Name}] = struct{}{}
}
}
for _, t := range types {
var filtered []*Func
for _, f := range t.Funcs {
if _, exists := refFuncs[[...]string{t.GoName, f.GoName}]; exists {
filtered = append(filtered, f)
}
}
t.Funcs = filtered
filtered = nil
for _, m := range t.Methods {
if _, exists := refs.Names[m.GoName]; exists {
filtered = append(filtered, m)
}
}
t.Methods = filtered
filtered = nil
for _, m := range t.AllMethods {
if _, exists := refs.Names[m.GoName]; exists {
filtered = append(filtered, m)
}
}
t.AllMethods = filtered
}
}
// mangleMethodsNames assigns unique Go names to ObjC methods. If a method name is unique
// within the same method list, its name is used with its first letter in upper case.
// Multiple methods with the same name have their full signature appended, with : removed.
func mangleMethodNames(allFuncs []*Func) {
goName := func(n string, constructor bool) string {
if constructor {
n = "new" + n[len("init"):]
}
return initialUpper(n)
}
overloads := make(map[string][]*Func)
for i, f := range allFuncs {
// Copy function so each class can have its own
// name mangling.
f := *f
allFuncs[i] = &f
f.GoName = goName(f.Sig, f.Constructor)
if colon := strings.Index(f.GoName, ":"); colon != -1 {
f.GoName = f.GoName[:colon]
}
overloads[f.GoName] = append(overloads[f.GoName], &f)
}
fallbacks := make(map[string][]*Func)
for _, funcs := range overloads {
if len(funcs) == 1 {
continue
}
for _, f := range funcs {
sig := f.Sig
if strings.HasSuffix(sig, ":") {
sig = sig[:len(sig)-1]
}
sigElems := strings.Split(f.Sig, ":")
for i := 0; i < len(sigElems); i++ {
sigElems[i] = initialUpper(sigElems[i])
}
name := strings.Join(sigElems, "")
f.GoName = goName(name, f.Constructor)
fallbacks[f.GoName] = append(fallbacks[f.GoName], f)
}
}
for _, funcs := range fallbacks {
if len(funcs) == 1 {
continue
}
for _, f := range funcs {
name := strings.Replace(f.Sig, ":", "_", -1)
f.GoName = goName(name, f.Constructor)
}
}
}
func resolveInstanceType(n *Named, t *Type) *Type {
if !t.instanceType || t.Kind != Protocol {
return t
}
// Copy and update the type name for instancetype types
ct := *t
ct.instanceType = false
ct.Decl = n.Name + " *"
if n.Name == "NSString" {
ct.Kind = String
ct.Name = ""
} else {
ct.Kind = Class
ct.Name = n.Name
}
return &ct
}
func resolveInstanceTypes(n *Named, funcs []*Func) {
for _, f := range funcs {
for _, p := range f.Params {
p.Type = resolveInstanceType(n, p.Type)
}
if f.Ret != nil {
f.Ret = resolveInstanceType(n, f.Ret)
}
}
}
func fillAllMethods(n *Named, typeMap map[string]*Named) {
if len(n.AllMethods) > 0 {
return
}
if len(n.Supers) == 0 {
n.AllMethods = n.Methods
return
}
for _, sup := range n.Supers {
super := lookup(sup.Name, sup.Protocol, typeMap)
fillAllMethods(super, typeMap)
}
methods := make(map[string]struct{})
for _, sup := range n.Supers {
super := lookup(sup.Name, sup.Protocol, typeMap)
for _, f := range super.AllMethods {
if _, exists := methods[f.Sig]; !exists {
methods[f.Sig] = struct{}{}
n.AllMethods = append(n.AllMethods, f)
}
}
}
for _, f := range n.Methods {
if _, exists := methods[f.Sig]; !exists {
n.AllMethods = append(n.AllMethods, f)
}
}
}
const (
frameworksPath = "/System/Library/Frameworks/"
)
// importModule parses ObjC type information with clang -cc1 -ast-dump.
//
// TODO: Use module.map files to precisely model the @import Module.Identifier
// directive. For now, importModules assumes the single umbrella header
// file Module.framework/Headers/Module.h contains every declaration.
func importModule(sdkPath, module string, identifiers []string, typeMap map[string]*Named) ([]*Named, error) {
hFile := fmt.Sprintf(sdkPath+frameworksPath+"%s.framework/Headers/%[1]s.h", module)
clang := exec.Command("xcrun", "--sdk", "iphonesimulator", "clang", "-cc1", "-isysroot", sdkPath, "-ast-dump", "-fblocks", "-fobjc-arc", "-x", "objective-c", hFile)
out, err := clang.CombinedOutput()
if err != nil {
return nil, fmt.Errorf("clang failed to parse module: %v: %s", err, out)
}
p := &parser{
sdkPath: sdkPath,
sc: bufio.NewScanner(bytes.NewBuffer(out)),
}
if err := p.parseModule(module, typeMap); err != nil {
return nil, err
}
var types []*Named
for _, ident := range identifiers {
named, exists := typeMap[ident]
if !exists {
return nil, fmt.Errorf("no such type: %s", ident)
}
types = append(types, named)
}
return types, nil
}
func (p *parser) scanLine() bool {
for {
l := p.last
if l == "" {
if !p.sc.Scan() {
return false
}
l = p.sc.Text()
} else {
p.last = ""
}
indent := (strings.Index(l, "-") + 1) / 2
switch {
case indent > p.indent:
// Skip
case indent < p.indent:
p.indent--
p.last = l
return false
case indent == p.indent:
p.decl = l[p.indent*2:]
return true
}
}
}
func (p *parser) parseModule(module string, typeMap map[string]*Named) (err error) {
defer func() {
if rerr := recover(); rerr != nil {
err = rerr.(error)
}
}()
if !p.scanLine() {
return nil
}
// A header file AST starts with
//
// TranslationUnitDecl 0x103833ad0 <<invalid sloc>> <invalid sloc>
if w := p.scanWord(); w != "TranslationUnitDecl" {
return fmt.Errorf("unexpected AST root: %q", w)
}
p.indent++
for {
if !p.scanLine() {
break
}
switch w := p.scanWord(); w {
case "ObjCCategoryDecl":
// ObjCCategoryDecl 0x103d9bdb8 <line:48:1, line:63:2> line:48:12 NSDateCreation
// |-ObjCInterface 0x103d9a788 'NSDate'
// Skip the node address, the source code range, position.
p.scanWord()
p.parseLocation()
catName := p.scanWord()
p.indent++
if !p.scanLine() {
return fmt.Errorf("no interface for category %s", catName)
}
if w := p.scanWord(); w != "ObjCInterface" {
return fmt.Errorf("unexpected declaaration %s for category %s", w, catName)
}
p.scanWord()
clsName := p.scanWord()
clsName = clsName[1 : len(clsName)-1]
named := lookup(clsName, false, typeMap)
if named == nil {
return fmt.Errorf("category %s references unknown class %s", catName, clsName)
}
p.parseInterface(named)
case "ObjCInterfaceDecl", "ObjCProtocolDecl":
// ObjCProtocolDecl 0x104116450 <line:15:1, line:47:2> line:15:11 NSObject
// or
// ObjCInterfaceDecl 0x1041ca480 <line:17:29, line:64:2> line:17:40 UIResponder
prot := w == "ObjCProtocolDecl"
// Skip the node address, the source code range, position.
p.scanWord()
if strings.HasPrefix(p.decl, "prev ") {
p.scanWord()
p.scanWord()
}
p.parseLocation()
if strings.HasPrefix(p.decl, "implicit ") {
p.scanWord()
}
name := p.decl
named := p.lookupOrCreate(name, prot, typeMap)
p.indent++
p.parseInterface(named)
default:
}
}
return nil
}
func lookup(name string, prot bool, typeMap map[string]*Named) *Named {
var mangled string
if prot {
mangled = name + "P"
} else {
mangled = name + "C"
}
if n := typeMap[mangled]; n != nil {
return n
}
return typeMap[name]
}
// lookupOrCreate looks up the type name in the type map. If it doesn't exist, it creates
// and returns a new type. If it does exist, it returns the existing type. If there are both
// a class and a protocol with the same name, their type names are mangled by prefixing
// 'C' or 'P' and then re-inserted into the type map.
func (p *parser) lookupOrCreate(name string, prot bool, typeMap map[string]*Named) *Named {
mangled := name + "C"
otherMangled := name + "P"
if prot {
mangled, otherMangled = otherMangled, mangled
}
named, exists := typeMap[mangled]
if exists {
return named
}
named, exists = typeMap[name]
if exists {
if named.Protocol == prot {
return named
}
// Both a class and a protocol exists with the same name.
delete(typeMap, name)
named.GoName = otherMangled
typeMap[otherMangled] = named
named = &Named{
GoName: mangled,
}
} else {
named = &Named{
GoName: name,
}
}
named.Name = name
named.Protocol = prot
named.funcMap = make(map[string]struct{})
named.Module = p.module
typeMap[named.GoName] = named
return named
}
func (p *parser) parseInterface(n *Named) {
for {
more := p.scanLine()
if !more {
break
}
switch w := p.scanWord(); w {
case "super":
if w := p.scanWord(); w != "ObjCInterface" {
panic(fmt.Errorf("unknown super type: %s", w))
}
// Skip node address.
p.scanWord()
super := p.scanWord()
// Remove single quotes
super = super[1 : len(super)-1]
n.Supers = append(n.Supers, Super{super, false})
case "ObjCProtocol":
p.scanWord()
super := p.scanWord()
super = super[1 : len(super)-1]
n.Supers = append(n.Supers, Super{super, true})
case "ObjCMethodDecl":
f := p.parseMethod()
if f == nil {
continue
}
var key string
if f.Static {
key = "+" + f.Sig
} else {
key = "-" + f.Sig
}
if _, exists := n.funcMap[key]; !exists {
n.funcMap[key] = struct{}{}
if f.Static {
n.Funcs = append(n.Funcs, f)
} else {
n.Methods = append(n.Methods, f)
}
}
}
}
}
func (p *parser) parseMethod() *Func {
// ObjCMethodDecl 0x103bdfb80 <line:17:1, col:27> col:1 - isEqual: 'BOOL':'_Bool'
// Skip the address, range, position.
p.scanWord()
p.parseLocation()
if strings.HasPrefix(p.decl, "implicit") {
p.scanWord()
}
f := new(Func)
switch w := p.scanWord(); w {
case "+":
f.Static = true
case "-":
f.Static = false
default:
panic(fmt.Errorf("unknown method type for %q", w))
}
f.Sig = p.scanWord()
if f.Sig == "dealloc" {
// ARC forbids dealloc
return nil
}
if strings.HasPrefix(f.Sig, "init") {
f.Constructor = true
}
f.Ret = p.parseType()
p.indent++
for {
more := p.scanLine()
if !more {
break
}
switch p.scanWord() {
case "UnavailableAttr":
p.indent--
return nil
case "ParmVarDecl":
f.Params = append(f.Params, p.parseParameter())
}
}
return f
}
func (p *parser) parseParameter() *Param {
// ParmVarDecl 0x1041caca8 <col:70, col:80> col:80 event 'UIEvent * _Nullable':'UIEvent *'
// Skip address, source range, position.
p.scanWord()
p.parseLocation()
return &Param{Name: p.scanWord(), Type: p.parseType()}
}
func (p *parser) parseType() *Type {
// NSUInteger':'unsigned long'
s := strings.SplitN(p.decl, ":", 2)
decl := s[0]
var canon string
if len(s) == 2 {
canon = s[1]
} else {
canon = decl
}
// unquote the type
canon = canon[1 : len(canon)-1]
if canon == "void" {
return nil
}
decl = decl[1 : len(decl)-1]
instancetype := strings.HasPrefix(decl, "instancetype")
// Strip modifiers
mods := []string{"__strong", "__unsafe_unretained", "const", "__strong", "_Nonnull", "_Nullable", "__autoreleasing"}
for _, mod := range mods {
if idx := strings.Index(canon, mod); idx != -1 {
canon = canon[:idx] + canon[idx+len(mod):]
}
if idx := strings.Index(decl, mod); idx != -1 {
decl = decl[:idx] + decl[idx+len(mod):]
}
}
canon = strings.TrimSpace(canon)
decl = strings.TrimSpace(decl)
t := &Type{
Decl: decl,
instanceType: instancetype,
}
switch canon {
case "int", "long", "long long":
t.Kind = Int
case "unsigned int", "unsigned long", "unsigned long long":
t.Kind = Uint
case "short":
t.Kind = Short
case "unsigned short":
t.Kind = Ushort
case "char":
t.Kind = Char
case "unsigned char":
t.Kind = Uchar
case "float":
t.Kind = Float
case "double":
t.Kind = Double
case "_Bool":
t.Kind = Bool
case "NSString *":
t.Kind = String
case "NSData *":
t.Kind = Data
default:
switch {
case strings.HasPrefix(canon, "enum"):
t.Kind = Int
case strings.HasPrefix(canon, "id"):
_, gen := p.splitGeneric(canon)
t.Kind = Protocol
t.Name = gen
default:
if ind := strings.Count(canon, "*"); 1 <= ind && ind <= 2 {
space := strings.Index(canon, " ")
name := canon[:space]
name, _ = p.splitGeneric(name)
t.Kind = Class
t.Name = name
t.Indirect = ind > 1
}
}
}
return t
}
func (p *parser) splitGeneric(decl string) (string, string) {
// NSArray<KeyType>
if br := strings.Index(decl, "<"); br != -1 {
return decl[:br], decl[br+1 : len(decl)-1]
} else {
return decl, ""
}
}
func (p *parser) parseSrcPos() {
const invPref = "<invalid sloc>"
if strings.HasPrefix(p.decl, invPref) {
p.decl = p.decl[len(invPref):]
return
}
// line:17:2, col:18 or, a file location:
// /.../UIKit.framework/Headers/UISelectionFeedbackGenerator.h:16:1
loc := p.scanWord()
locs := strings.SplitN(loc, ":", 2)
if len(locs) != 2 && len(locs) != 3 {
panic(fmt.Errorf("invalid source position: %q", loc))
}
switch loc := locs[0]; loc {
case "line", "col":
default:
if !strings.HasPrefix(loc, p.sdkPath) {
panic(fmt.Errorf("invalid source position: %q", loc))
}
loc = loc[len(p.sdkPath):]
switch {
case strings.HasPrefix(loc, "/usr/include/objc/"):
p.module = "Foundation"
case strings.HasPrefix(loc, frameworksPath):
loc = loc[len(frameworksPath):]
i := strings.Index(loc, ".framework")
if i == -1 {
panic(fmt.Errorf("invalid source position: %q", loc))
}
p.module = loc[:i]
// Some types are declared in CoreFoundation.framework
// even though they belong in Foundation in Objective-C.
if p.module == "CoreFoundation" {
p.module = "Foundation"
}
default:
}
}
}
func (p *parser) parseLocation() {
// Source ranges are on the form: <line:17:29, line:64:2>.
if !strings.HasPrefix(p.decl, "<") {
panic(fmt.Errorf("1no source range first in %s", p.decl))
}
p.decl = p.decl[1:]
p.parseSrcPos()
if strings.HasPrefix(p.decl, ", ") {
p.decl = p.decl[2:]
p.parseSrcPos()
}
if !strings.HasPrefix(p.decl, "> ") {
panic(fmt.Errorf("no source range first in %s", p.decl))
}
p.decl = p.decl[2:]
p.parseSrcPos()
}
func (p *parser) scanWord() string {
i := 0
loop:
for ; i < len(p.decl); i++ {
switch p.decl[i] {
case ' ', '>', ',':
break loop
}
}
w := p.decl[:i]
p.decl = p.decl[i:]
for len(p.decl) > 0 && p.decl[0] == ' ' {
p.decl = p.decl[1:]
}
return w
}
func initialUpper(s string) string {
if s == "" {
return ""
}
r, n := utf8.DecodeRuneInString(s)
return string(unicode.ToUpper(r)) + s[n:]
}
func (t *Named) ObjcType() string {
if t.Protocol {
return fmt.Sprintf("id<%s>", t.Name)
} else {
return t.Name + " *"
}
}
| initTypes |
mod.rs | use common::Result;
use failure::Fail;
use native::mbuf::MBuf;
pub use self::ethernet::*;
pub use self::raw::*;
pub use self::tcp::*;
pub use self::udp::*;
pub mod buffer;
pub mod checksum; | pub mod raw;
pub mod tcp;
pub mod udp;
/// Type that has a fixed size
///
/// Size of the structs are used for buffer bound check when parsing packets
pub trait Fixed {
/// Returns the size of the type
fn size() -> usize;
}
impl<T> Fixed for T {
#[inline]
fn size() -> usize {
std::mem::size_of::<T>()
}
}
/// Fixed packet header marker trait
///
/// Some packet headers are variable in length, such as the IPv6
/// segment routing header. The fixed portion can be statically
/// defined, but the variable portion has to be parsed separately.
pub trait Header: Fixed {}
/// Common behaviors shared by all packets
pub trait Packet {
/// The header type of the packet
type Header: Header;
/// The outer packet type that encapsulates the packet
type Envelope: Packet;
/// Returns a reference to the encapsulating packet
fn envelope(&self) -> &Self::Envelope;
/// Returns a mutable reference to the encapsulating packet
fn envelope_mut(&mut self) -> &mut Self::Envelope;
/// Returns a pointer to the DPDK message buffer
#[doc(hidden)]
fn mbuf(&self) -> *mut MBuf;
/// Returns the buffer offset where the packet header begins
fn offset(&self) -> usize;
/// Returns a reference to the packet header
#[doc(hidden)]
fn header(&self) -> &Self::Header;
/// Returns a mutable reference to the packet header
#[doc(hidden)]
fn header_mut(&mut self) -> &mut Self::Header;
/// Returns the length of the packet header
///
/// Includes both the fixed and variable portion of the header
fn header_len(&self) -> usize;
/// Returns the length of the packet
#[inline]
fn len(&self) -> usize {
unsafe { (*self.mbuf()).data_len() - self.offset() }
}
/// Returns if the length of the packet is empty or not
#[inline]
fn is_empty(&self) -> bool {
{
self.len() == 0
}
}
/// Returns the buffer offset where the packet payload begins
#[inline]
fn payload_offset(&self) -> usize {
self.offset() + self.header_len()
}
/// Returns the length of the packet payload
#[inline]
fn payload_len(&self) -> usize {
self.len() - self.header_len()
}
/// Parses the payload as packet of `T`
#[inline]
fn parse<T: Packet<Envelope = Self>>(self) -> Result<T>
where
Self: Sized,
{
T::do_parse(self)
}
// the public `parse::<T>` delegates to this function
#[doc(hidden)]
fn do_parse(envelope: Self::Envelope) -> Result<Self>
where
Self: Sized;
/// Pushes a new packet `T` as the payload
#[inline]
fn push<T: Packet<Envelope = Self>>(self) -> Result<T>
where
Self: Sized,
{
T::do_push(self)
}
// the public `push::<T>` delegates to this function
#[doc(hidden)]
fn do_push(envelope: Self::Envelope) -> Result<Self>
where
Self: Sized;
/// Removes this packet's header from the message buffer
///
/// The packet's payload becomes the payload of its envelope. The
/// result of the removal is not guaranteed to be a valid packet.
fn remove(self) -> Result<Self::Envelope>
where
Self: Sized;
/// Cascades the changes recursively through the layers
///
/// An upper layer change to message buffer size can have cascading
/// effects on a lower layer packet header. This call recursively ensures
/// such changes are propogated through all the layers.
fn cascade(&mut self);
/// Deparses the packet and returns its envelope
fn deparse(self) -> Self::Envelope;
/// Resets the parsed packet back to raw packet
fn reset(self) -> RawPacket
where
Self: Sized,
{
RawPacket::from_mbuf(self.mbuf())
}
}
/// Error when packet failed to parse
#[derive(Debug, Fail)]
#[fail(display = "{}", _0)]
pub struct ParseError(String);
impl ParseError {
fn new(msg: &str) -> ParseError {
ParseError(msg.into())
}
} | pub mod ethernet;
pub mod icmp;
pub mod ip; |
iter.rs | // Copyright 2013 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
/*!
Composable external iterators
# The `Iterator` trait
This module defines Rust's core iteration trait. The `Iterator` trait has one
un-implemented method, `next`. All other methods are derived through default
methods to perform operations such as `zip`, `chain`, `enumerate`, and `fold`.
The goal of this module is to unify iteration across all containers in Rust.
An iterator can be considered as a state machine which is used to track which
element will be yielded next.
There are various extensions also defined in this module to assist with various
types of iteration, such as the `DoubleEndedIterator` for iterating in reverse,
the `FromIterator` trait for creating a container from an iterator, and much
more.
## Rust's `for` loop
The special syntax used by rust's `for` loop is based around the `Iterator`
trait defined in this module. For loops can be viewed as a syntactical expansion
into a `loop`, for example, the `for` loop in this example is essentially
translated to the `loop` below.
```rust
let values = ~[1, 2, 3];
// "Syntactical sugar" taking advantage of an iterator
for &x in values.iter() {
println!("{}", x);
}
// Rough translation of the iteration without a `for` iterator.
let mut it = values.iter();
loop {
match it.next() {
Some(&x) => {
println!("{}", x);
}
None => { break }
}
}
```
This `for` loop syntax can be applied to any iterator over any type.
## Iteration protocol and more
More detailed information about iterators can be found in the [container
tutorial](http://static.rust-lang.org/doc/master/tutorial-container.html) with
the rest of the rust manuals.
*/
use cmp;
use num::{Zero, One, Integer, CheckedAdd, CheckedSub, Saturating, ToPrimitive};
use option::{Option, Some, None};
use ops::{Add, Mul, Sub};
use cmp::{Eq, Ord};
use clone::Clone;
use uint;
use util;
/// Conversion from an `Iterator`
pub trait FromIterator<A> {
/// Build a container with elements from an external iterator.
fn from_iterator<T: Iterator<A>>(iterator: &mut T) -> Self;
}
/// A type growable from an `Iterator` implementation
pub trait Extendable<A>: FromIterator<A> {
/// Extend a container with the elements yielded by an iterator
fn extend<T: Iterator<A>>(&mut self, iterator: &mut T);
}
/// An interface for dealing with "external iterators". These types of iterators
/// can be resumed at any time as all state is stored internally as opposed to
/// being located on the call stack.
///
/// The Iterator protocol states that an iterator yields a (potentially-empty,
/// potentially-infinite) sequence of values, and returns `None` to signal that
/// it's finished. The Iterator protocol does not define behavior after `None`
/// is returned. A concrete Iterator implementation may choose to behave however
/// it wishes, either by returning `None` infinitely, or by doing something
/// else.
pub trait Iterator<A> {
/// Advance the iterator and return the next value. Return `None` when the end is reached.
fn next(&mut self) -> Option<A>;
/// Return a lower bound and upper bound on the remaining length of the iterator.
///
/// The common use case for the estimate is pre-allocating space to store the results.
#[inline]
fn size_hint(&self) -> (uint, Option<uint>) { (0, None) }
/// Chain this iterator with another, returning a new iterator which will
/// finish iterating over the current iterator, and then it will iterate
/// over the other specified iterator.
///
/// # Example
///
/// ```rust
/// let a = [0];
/// let b = [1];
/// let mut it = a.iter().chain(b.iter());
/// assert_eq!(it.next().unwrap(), &0);
/// assert_eq!(it.next().unwrap(), &1);
/// assert!(it.next().is_none());
/// ```
#[inline]
fn chain<U: Iterator<A>>(self, other: U) -> Chain<Self, U> {
Chain{a: self, b: other, flag: false}
}
/// Creates an iterator which iterates over both this and the specified
/// iterators simultaneously, yielding the two elements as pairs. When
/// either iterator returns None, all further invocations of next() will
/// return None.
///
/// # Example
///
/// ```rust
/// let a = [0];
/// let b = [1];
/// let mut it = a.iter().zip(b.iter());
/// assert_eq!(it.next().unwrap(), (&0, &1));
/// assert!(it.next().is_none());
/// ```
#[inline]
fn zip<B, U: Iterator<B>>(self, other: U) -> Zip<Self, U> {
Zip{a: self, b: other}
}
/// Creates a new iterator which will apply the specified function to each
/// element returned by the first, yielding the mapped element instead.
///
/// # Example
///
/// ```rust
/// let a = [1, 2];
/// let mut it = a.iter().map(|&x| 2 * x);
/// assert_eq!(it.next().unwrap(), 2);
/// assert_eq!(it.next().unwrap(), 4);
/// assert!(it.next().is_none());
/// ```
#[inline]
fn map<'r, B>(self, f: &'r fn(A) -> B) -> Map<'r, A, B, Self> {
Map{iter: self, f: f}
}
/// Creates an iterator which applies the predicate to each element returned
/// by this iterator. Only elements which have the predicate evaluate to
/// `true` will be yielded.
///
/// # Example
///
/// ```rust
/// let a = [1, 2];
/// let mut it = a.iter().filter(|&x| *x > 1);
/// assert_eq!(it.next().unwrap(), &2);
/// assert!(it.next().is_none());
/// ```
#[inline]
fn filter<'r>(self, predicate: &'r fn(&A) -> bool) -> Filter<'r, A, Self> {
Filter{iter: self, predicate: predicate}
}
/// Creates an iterator which both filters and maps elements.
/// If the specified function returns None, the element is skipped.
/// Otherwise the option is unwrapped and the new value is yielded.
///
/// # Example
///
/// ```rust
/// let a = [1, 2];
/// let mut it = a.iter().filter_map(|&x| if x > 1 {Some(2 * x)} else {None});
/// assert_eq!(it.next().unwrap(), 4);
/// assert!(it.next().is_none());
/// ```
#[inline]
fn filter_map<'r, B>(self, f: &'r fn(A) -> Option<B>) -> FilterMap<'r, A, B, Self> {
FilterMap { iter: self, f: f }
}
/// Creates an iterator which yields a pair of the value returned by this
/// iterator plus the current index of iteration.
///
/// # Example
///
/// ```rust
/// let a = [100, 200];
/// let mut it = a.iter().enumerate();
/// assert_eq!(it.next().unwrap(), (0, &100));
/// assert_eq!(it.next().unwrap(), (1, &200));
/// assert!(it.next().is_none());
/// ```
#[inline]
fn enumerate(self) -> Enumerate<Self> {
Enumerate{iter: self, count: 0}
}
/// Creates an iterator that has a `.peek()` method
/// that returns a optional reference to the next element.
///
/// # Example
///
/// ```rust
/// let a = [100, 200, 300];
/// let mut it = xs.iter().map(|&x|x).peekable();
/// assert_eq!(it.peek().unwrap(), &100);
/// assert_eq!(it.next().unwrap(), 100);
/// assert_eq!(it.next().unwrap(), 200);
/// assert_eq!(it.peek().unwrap(), &300);
/// assert_eq!(it.peek().unwrap(), &300);
/// assert_eq!(it.next().unwrap(), 300);
/// assert!(it.peek().is_none());
/// assert!(it.next().is_none());
/// ```
#[inline]
fn peekable(self) -> Peekable<A, Self> {
Peekable{iter: self, peeked: None}
}
/// Creates an iterator which invokes the predicate on elements until it
/// returns false. Once the predicate returns false, all further elements are
/// yielded.
///
/// # Example
///
/// ```rust
/// let a = [1, 2, 3, 2, 1];
/// let mut it = a.iter().skip_while(|&a| *a < 3);
/// assert_eq!(it.next().unwrap(), &3);
/// assert_eq!(it.next().unwrap(), &2);
/// assert_eq!(it.next().unwrap(), &1);
/// assert!(it.next().is_none());
/// ```
#[inline]
fn skip_while<'r>(self, predicate: &'r fn(&A) -> bool) -> SkipWhile<'r, A, Self> {
SkipWhile{iter: self, flag: false, predicate: predicate}
}
/// Creates an iterator which yields elements so long as the predicate
/// returns true. After the predicate returns false for the first time, no
/// further elements will be yielded.
///
/// # Example
///
/// ```rust
/// let a = [1, 2, 3, 2, 1];
/// let mut it = a.iter().take_while(|&a| *a < 3);
/// assert_eq!(it.next().unwrap(), &1);
/// assert_eq!(it.next().unwrap(), &2);
/// assert!(it.next().is_none());
/// ```
#[inline]
fn take_while<'r>(self, predicate: &'r fn(&A) -> bool) -> TakeWhile<'r, A, Self> {
TakeWhile{iter: self, flag: false, predicate: predicate}
}
/// Creates an iterator which skips the first `n` elements of this iterator,
/// and then it yields all further items.
///
/// # Example
///
/// ```rust
/// let a = [1, 2, 3, 4, 5];
/// let mut it = a.iter().skip(3);
/// assert_eq!(it.next().unwrap(), &4);
/// assert_eq!(it.next().unwrap(), &5);
/// assert!(it.next().is_none());
/// ```
#[inline]
fn skip(self, n: uint) -> Skip<Self> {
Skip{iter: self, n: n}
}
/// Creates an iterator which yields the first `n` elements of this
/// iterator, and then it will always return None.
///
/// # Example
///
/// ```rust
/// let a = [1, 2, 3, 4, 5];
/// let mut it = a.iter().take(3);
/// assert_eq!(it.next().unwrap(), &1);
/// assert_eq!(it.next().unwrap(), &2);
/// assert_eq!(it.next().unwrap(), &3);
/// assert!(it.next().is_none());
/// ```
#[inline]
fn take(self, n: uint) -> Take<Self> {
Take{iter: self, n: n}
}
/// Creates a new iterator which behaves in a similar fashion to foldl.
/// There is a state which is passed between each iteration and can be
/// mutated as necessary. The yielded values from the closure are yielded
/// from the Scan instance when not None.
///
/// # Example
///
/// ```rust
/// let a = [1, 2, 3, 4, 5];
/// let mut it = a.iter().scan(1, |fac, &x| {
/// *fac = *fac * x;
/// Some(*fac)
/// });
/// assert_eq!(it.next().unwrap(), 1);
/// assert_eq!(it.next().unwrap(), 2);
/// assert_eq!(it.next().unwrap(), 6);
/// assert_eq!(it.next().unwrap(), 24);
/// assert_eq!(it.next().unwrap(), 120);
/// assert!(it.next().is_none());
/// ```
#[inline]
fn scan<'r, St, B>(self, initial_state: St, f: &'r fn(&mut St, A) -> Option<B>)
-> Scan<'r, A, B, Self, St> {
Scan{iter: self, f: f, state: initial_state}
}
/// Creates an iterator that maps each element to an iterator,
/// and yields the elements of the produced iterators
///
/// # Example
///
/// ```rust
/// let xs = [2u, 3];
/// let ys = [0u, 1, 0, 1, 2];
/// let mut it = xs.iter().flat_map(|&x| count(0u, 1).take(x));
/// // Check that `it` has the same elements as `ys`
/// let mut i = 0;
/// for x: uint in it {
/// assert_eq!(x, ys[i]);
/// i += 1;
/// }
/// ```
#[inline]
fn flat_map<'r, B, U: Iterator<B>>(self, f: &'r fn(A) -> U)
-> FlatMap<'r, A, Self, U> {
FlatMap{iter: self, f: f, frontiter: None, backiter: None }
}
/// Creates an iterator that yields `None` forever after the underlying
/// iterator yields `None`. Random-access iterator behavior is not
/// affected, only single and double-ended iterator behavior.
///
/// # Example
///
/// ```rust
/// fn process<U: Iterator<int>>(it: U) -> int {
/// let mut it = it.fuse();
/// let mut sum = 0;
/// for x in it {
/// if x > 5 {
/// break;
/// }
/// sum += x;
/// }
/// // did we exhaust the iterator?
/// if it.next().is_none() {
/// sum += 1000;
/// }
/// sum
/// }
/// let x = ~[1,2,3,7,8,9];
/// assert_eq!(process(x.move_iter()), 1006);
/// ```
#[inline]
fn fuse(self) -> Fuse<Self> {
Fuse{iter: self, done: false}
}
/// Creates an iterator that calls a function with a reference to each
/// element before yielding it. This is often useful for debugging an
/// iterator pipeline.
///
/// # Example
///
/// ```rust
///let xs = [1u, 4, 2, 3, 8, 9, 6];
///let sum = xs.iter()
/// .map(|&x| x)
/// .inspect(|&x| debug!("filtering %u", x))
/// .filter(|&x| x % 2 == 0)
/// .inspect(|&x| debug!("%u made it through", x))
/// .sum();
///println(sum.to_str());
/// ```
#[inline]
fn inspect<'r>(self, f: &'r fn(&A)) -> Inspect<'r, A, Self> {
Inspect{iter: self, f: f}
}
/// Creates a wrapper around a mutable reference to the iterator.
///
/// This is useful to allow applying iterator adaptors while still
/// retaining ownership of the original iterator value.
///
/// # Example
///
/// ```rust
/// let mut xs = range(0, 10);
/// // sum the first five values
/// let partial_sum = xs.by_ref().take(5).fold(0, |a, b| a + b);
/// assert!(partial_sum == 10);
/// // xs.next() is now `5`
/// assert!(xs.next() == Some(5));
/// ```
fn by_ref<'r>(&'r mut self) -> ByRef<'r, Self> {
ByRef{iter: self}
}
/// Apply a function to each element, or stop iterating if the
/// function returns `false`.
///
/// # Example
///
/// ```rust
/// range(0, 5).advance(|x| {print!("{} ", x); true});
/// ```
#[inline]
fn advance(&mut self, f: |A| -> bool) -> bool {
loop {
match self.next() {
Some(x) => {
if !f(x) { return false; }
}
None => { return true; }
}
}
}
/// Loops through the entire iterator, collecting all of the elements into
/// a container implementing `FromIterator`.
///
/// # Example
///
/// ```rust
/// let a = [1, 2, 3, 4, 5];
/// let b: ~[int] = a.iter().map(|&x| x).collect();
/// assert!(a == b);
/// ```
#[inline]
fn collect<B: FromIterator<A>>(&mut self) -> B {
FromIterator::from_iterator(self)
}
/// Loops through the entire iterator, collecting all of the elements into
/// a unique vector. This is simply collect() specialized for vectors.
///
/// # Example
///
/// ```rust
/// let a = [1, 2, 3, 4, 5];
/// let b: ~[int] = a.iter().map(|&x| x).to_owned_vec();
/// assert!(a == b);
/// ```
#[inline]
fn to_owned_vec(&mut self) -> ~[A] {
self.collect()
}
/// Loops through `n` iterations, returning the `n`th element of the
/// iterator.
///
/// # Example
///
/// ```rust
/// let a = [1, 2, 3, 4, 5];
/// let mut it = a.iter();
/// assert!(it.nth(2).unwrap() == &3);
/// assert!(it.nth(2) == None);
/// ```
#[inline]
fn nth(&mut self, mut n: uint) -> Option<A> {
loop {
match self.next() {
Some(x) => if n == 0 { return Some(x) },
None => return None
}
n -= 1;
}
}
/// Loops through the entire iterator, returning the last element of the
/// iterator.
///
/// # Example
///
/// ```rust
/// let a = [1, 2, 3, 4, 5];
/// assert!(a.iter().last().unwrap() == &5);
/// ```
#[inline]
fn last(&mut self) -> Option<A> {
let mut last = None;
for x in *self { last = Some(x); }
last
}
/// Performs a fold operation over the entire iterator, returning the
/// eventual state at the end of the iteration.
///
/// # Example
///
/// ```rust
/// let a = [1, 2, 3, 4, 5];
/// assert!(a.iter().fold(0, |a, &b| a + b) == 15);
/// ```
#[inline]
fn fold<B>(&mut self, init: B, f: |B, A| -> B) -> B {
let mut accum = init;
loop {
match self.next() {
Some(x) => { accum = f(accum, x); }
None => { break; }
}
}
accum
}
/// Counts the number of elements in this iterator.
///
/// # Example
///
/// ```rust
/// let a = [1, 2, 3, 4, 5];
/// let mut it = a.iter();
/// assert!(it.len() == 5);
/// assert!(it.len() == 0);
/// ```
#[inline]
fn len(&mut self) -> uint {
self.fold(0, |cnt, _x| cnt + 1)
}
/// Tests whether the predicate holds true for all elements in the iterator.
///
/// # Example
///
/// ```rust
/// let a = [1, 2, 3, 4, 5];
/// assert!(a.iter().all(|&x| *x > 0));
/// assert!(!a.iter().all(|&x| *x > 2));
/// ```
#[inline]
fn all(&mut self, f: |A| -> bool) -> bool {
for x in *self { if !f(x) { return false; } }
true
}
/// Tests whether any element of an iterator satisfies the specified
/// predicate.
///
/// # Example
///
/// ```rust
/// let a = [1, 2, 3, 4, 5];
/// let mut it = a.iter();
/// assert!(it.any(|&x| *x == 3));
/// assert!(!it.any(|&x| *x == 3));
/// ```
#[inline]
fn any(&mut self, f: |A| -> bool) -> bool {
for x in *self { if f(x) { return true; } }
false
}
/// Return the first element satisfying the specified predicate
#[inline]
fn find(&mut self, predicate: |&A| -> bool) -> Option<A> {
for x in *self {
if predicate(&x) { return Some(x) }
}
None
}
/// Return the index of the first element satisfying the specified predicate
#[inline]
fn position(&mut self, predicate: |A| -> bool) -> Option<uint> {
let mut i = 0;
for x in *self {
if predicate(x) {
return Some(i);
}
i += 1;
}
None
}
/// Count the number of elements satisfying the specified predicate
#[inline]
fn count(&mut self, predicate: |A| -> bool) -> uint {
let mut i = 0;
for x in *self {
if predicate(x) { i += 1 }
}
i
}
/// Return the element that gives the maximum value from the
/// specified function.
///
/// # Example
///
/// ```rust
/// let xs = [-3, 0, 1, 5, -10];
/// assert_eq!(*xs.iter().max_by(|x| x.abs()).unwrap(), -10);
/// ```
#[inline]
fn max_by<B: Ord>(&mut self, f: |&A| -> B) -> Option<A> {
self.fold(None, |max: Option<(A, B)>, x| {
let x_val = f(&x);
match max {
None => Some((x, x_val)),
Some((y, y_val)) => if x_val > y_val {
Some((x, x_val))
} else {
Some((y, y_val))
}
}
}).map(|(x, _)| x)
}
/// Return the element that gives the minimum value from the
/// specified function.
///
/// # Example
///
/// ```rust
/// let xs = [-3, 0, 1, 5, -10];
/// assert_eq!(*xs.iter().min_by(|x| x.abs()).unwrap(), 0);
/// ```
#[inline]
fn min_by<B: Ord>(&mut self, f: |&A| -> B) -> Option<A> {
self.fold(None, |min: Option<(A, B)>, x| {
let x_val = f(&x);
match min {
None => Some((x, x_val)),
Some((y, y_val)) => if x_val < y_val {
Some((x, x_val))
} else {
Some((y, y_val))
}
}
}).map(|(x, _)| x)
}
}
/// A range iterator able to yield elements from both ends
pub trait DoubleEndedIterator<A>: Iterator<A> {
/// Yield an element from the end of the range, returning `None` if the range is empty.
fn next_back(&mut self) -> Option<A>;
/// Flip the direction of the iterator
///
/// The inverted iterator flips the ends on an iterator that can already
/// be iterated from the front and from the back.
///
///
/// If the iterator also implements RandomAccessIterator, the inverted
/// iterator is also random access, with the indices starting at the back
/// of the original iterator.
///
/// Note: Random access with inverted indices still only applies to the first
/// `uint::max_value` elements of the original iterator.
#[inline]
fn invert(self) -> Invert<Self> {
Invert{iter: self}
}
}
/// A double-ended iterator yielding mutable references
pub trait MutableDoubleEndedIterator {
// FIXME: #5898: should be called `reverse`
/// Use an iterator to reverse a container in-place
fn reverse_(&mut self);
}
impl<'self, A, T: DoubleEndedIterator<&'self mut A>> MutableDoubleEndedIterator for T {
// FIXME: #5898: should be called `reverse`
/// Use an iterator to reverse a container in-place
fn reverse_(&mut self) {
loop {
match (self.next(), self.next_back()) {
(Some(x), Some(y)) => util::swap(x, y),
_ => break
}
}
}
}
/// An object implementing random access indexing by `uint`
///
/// A `RandomAccessIterator` should be either infinite or a `DoubleEndedIterator`.
pub trait RandomAccessIterator<A>: Iterator<A> {
/// Return the number of indexable elements. At most `std::uint::max_value`
/// elements are indexable, even if the iterator represents a longer range.
fn indexable(&self) -> uint;
/// Return an element at an index
fn idx(&self, index: uint) -> Option<A>;
}
/// An iterator that knows its exact length
///
/// This trait is a helper for iterators like the vector iterator, so that
/// it can support double-ended enumeration.
///
/// `Iterator::size_hint` *must* return the exact size of the iterator.
/// Note that the size must fit in `uint`.
pub trait ExactSize<A> : DoubleEndedIterator<A> {
/// Return the index of the last element satisfying the specified predicate
///
/// If no element matches, None is returned.
#[inline]
fn rposition(&mut self, predicate: |A| -> bool) -> Option<uint> {
let (lower, upper) = self.size_hint();
assert!(upper == Some(lower));
let mut i = lower;
loop {
match self.next_back() {
None => break,
Some(x) => {
i = match i.checked_sub(&1) {
Some(x) => x,
None => fail!("rposition: incorrect ExactSize")
};
if predicate(x) {
return Some(i)
}
}
}
}
None
}
}
// All adaptors that preserve the size of the wrapped iterator are fine
// Adaptors that may overflow in `size_hint` are not, i.e. `Chain`.
impl<A, T: ExactSize<A>> ExactSize<(uint, A)> for Enumerate<T> {}
impl<'self, A, T: ExactSize<A>> ExactSize<A> for Inspect<'self, A, T> {}
impl<A, T: ExactSize<A>> ExactSize<A> for Invert<T> {}
impl<'self, A, B, T: ExactSize<A>> ExactSize<B> for Map<'self, A, B, T> {}
impl<A, B, T: ExactSize<A>, U: ExactSize<B>> ExactSize<(A, B)> for Zip<T, U> {}
/// An double-ended iterator with the direction inverted
#[deriving(Clone)]
pub struct Invert<T> {
priv iter: T
}
impl<A, T: DoubleEndedIterator<A>> Iterator<A> for Invert<T> {
#[inline]
fn next(&mut self) -> Option<A> { self.iter.next_back() }
#[inline]
fn size_hint(&self) -> (uint, Option<uint>) { self.iter.size_hint() }
}
impl<A, T: DoubleEndedIterator<A>> DoubleEndedIterator<A> for Invert<T> {
#[inline]
fn next_back(&mut self) -> Option<A> { self.iter.next() }
}
impl<A, T: DoubleEndedIterator<A> + RandomAccessIterator<A>> RandomAccessIterator<A>
for Invert<T> {
#[inline]
fn indexable(&self) -> uint { self.iter.indexable() }
#[inline]
fn idx(&self, index: uint) -> Option<A> {
self.iter.idx(self.indexable() - index - 1)
}
}
/// A mutable reference to an iterator
pub struct ByRef<'self, T> {
priv iter: &'self mut T
}
impl<'self, A, T: Iterator<A>> Iterator<A> for ByRef<'self, T> {
#[inline]
fn next(&mut self) -> Option<A> { self.iter.next() }
// FIXME: #9629 we cannot implement &self methods like size_hint on ByRef
}
impl<'self, A, T: DoubleEndedIterator<A>> DoubleEndedIterator<A> for ByRef<'self, T> {
#[inline]
fn next_back(&mut self) -> Option<A> { self.iter.next_back() }
}
/// A trait for iterators over elements which can be added together
pub trait AdditiveIterator<A> {
/// Iterates over the entire iterator, summing up all the elements
///
/// # Example
///
/// ```rust
/// let a = [1, 2, 3, 4, 5];
/// let mut it = a.iter().map(|&x| x);
/// assert!(it.sum() == 15);
/// ```
fn sum(&mut self) -> A;
}
impl<A: Add<A, A> + Zero, T: Iterator<A>> AdditiveIterator<A> for T {
#[inline]
fn sum(&mut self) -> A {
let zero: A = Zero::zero();
self.fold(zero, |s, x| s + x)
}
}
/// A trait for iterators over elements whose elements can be multiplied
/// together.
pub trait MultiplicativeIterator<A> {
/// Iterates over the entire iterator, multiplying all the elements
///
/// # Example
///
/// ```rust
/// use std::iter::count;
///
/// fn factorial(n: uint) -> uint {
/// count(1u, 1).take_while(|&i| i <= n).product()
/// }
/// assert!(factorial(0) == 1);
/// assert!(factorial(1) == 1);
/// assert!(factorial(5) == 120);
/// ```
fn product(&mut self) -> A;
}
impl<A: Mul<A, A> + One, T: Iterator<A>> MultiplicativeIterator<A> for T {
#[inline]
fn product(&mut self) -> A {
let one: A = One::one();
self.fold(one, |p, x| p * x)
}
}
/// A trait for iterators over elements which can be compared to one another.
/// The type of each element must ascribe to the `Ord` trait.
pub trait OrdIterator<A> {
/// Consumes the entire iterator to return the maximum element.
///
/// # Example
///
/// ```rust
/// let a = [1, 2, 3, 4, 5];
/// assert!(a.iter().max().unwrap() == &5);
/// ```
fn max(&mut self) -> Option<A>;
/// Consumes the entire iterator to return the minimum element.
///
/// # Example
///
/// ```rust
/// let a = [1, 2, 3, 4, 5];
/// assert!(a.iter().min().unwrap() == &1);
/// ```
fn min(&mut self) -> Option<A>;
}
impl<A: Ord, T: Iterator<A>> OrdIterator<A> for T {
#[inline]
fn max(&mut self) -> Option<A> {
self.fold(None, |max, x| {
match max {
None => Some(x),
Some(y) => Some(cmp::max(x, y))
}
})
}
#[inline]
fn min(&mut self) -> Option<A> {
self.fold(None, |min, x| {
match min {
None => Some(x),
Some(y) => Some(cmp::min(x, y))
}
})
}
}
/// A trait for iterators that are clonable.
pub trait ClonableIterator {
/// Repeats an iterator endlessly
///
/// # Example
///
/// ```rust
/// let a = count(1,1).take(1);
/// let mut cy = a.cycle();
/// assert_eq!(cy.next(), Some(1));
/// assert_eq!(cy.next(), Some(1));
/// ```
fn cycle(self) -> Cycle<Self>;
}
impl<A, T: Clone + Iterator<A>> ClonableIterator for T {
#[inline]
fn cycle(self) -> Cycle<T> {
Cycle{orig: self.clone(), iter: self}
}
}
/// An iterator that repeats endlessly
#[deriving(Clone)]
pub struct Cycle<T> {
priv orig: T,
priv iter: T,
}
impl<A, T: Clone + Iterator<A>> Iterator<A> for Cycle<T> {
#[inline]
fn next(&mut self) -> Option<A> {
match self.iter.next() {
None => { self.iter = self.orig.clone(); self.iter.next() }
y => y
}
}
#[inline]
fn size_hint(&self) -> (uint, Option<uint>) {
// the cycle iterator is either empty or infinite
match self.orig.size_hint() {
sz @ (0, Some(0)) => sz,
(0, _) => (0, None),
_ => (uint::max_value, None)
}
}
}
impl<A, T: Clone + RandomAccessIterator<A>> RandomAccessIterator<A> for Cycle<T> {
#[inline]
fn indexable(&self) -> uint {
if self.orig.indexable() > 0 {
uint::max_value
} else {
0
}
}
#[inline]
fn idx(&self, index: uint) -> Option<A> {
let liter = self.iter.indexable();
let lorig = self.orig.indexable();
if lorig == 0 {
None
} else if index < liter {
self.iter.idx(index)
} else {
self.orig.idx((index - liter) % lorig)
}
}
}
/// An iterator which strings two iterators together
#[deriving(Clone)]
pub struct Chain<T, U> {
priv a: T,
priv b: U,
priv flag: bool
}
impl<A, T: Iterator<A>, U: Iterator<A>> Iterator<A> for Chain<T, U> {
#[inline]
fn next(&mut self) -> Option<A> {
if self.flag {
self.b.next()
} else {
match self.a.next() {
Some(x) => return Some(x),
_ => ()
}
self.flag = true;
self.b.next()
}
}
#[inline]
fn size_hint(&self) -> (uint, Option<uint>) {
let (a_lower, a_upper) = self.a.size_hint();
let (b_lower, b_upper) = self.b.size_hint();
let lower = a_lower.saturating_add(b_lower);
let upper = match (a_upper, b_upper) {
(Some(x), Some(y)) => x.checked_add(&y),
_ => None
};
(lower, upper)
}
}
impl<A, T: DoubleEndedIterator<A>, U: DoubleEndedIterator<A>> DoubleEndedIterator<A>
for Chain<T, U> {
#[inline]
fn next_back(&mut self) -> Option<A> {
match self.b.next_back() {
Some(x) => Some(x),
None => self.a.next_back()
}
}
}
impl<A, T: RandomAccessIterator<A>, U: RandomAccessIterator<A>> RandomAccessIterator<A>
for Chain<T, U> {
#[inline]
fn indexable(&self) -> uint {
let (a, b) = (self.a.indexable(), self.b.indexable());
a.saturating_add(b)
}
#[inline]
fn idx(&self, index: uint) -> Option<A> {
let len = self.a.indexable();
if index < len {
self.a.idx(index)
} else {
self.b.idx(index - len)
}
}
}
/// An iterator which iterates two other iterators simultaneously
#[deriving(Clone)]
pub struct Zip<T, U> {
priv a: T,
priv b: U
}
impl<A, B, T: Iterator<A>, U: Iterator<B>> Iterator<(A, B)> for Zip<T, U> {
#[inline]
fn next(&mut self) -> Option<(A, B)> {
match self.a.next() {
None => None,
Some(x) => match self.b.next() {
None => None,
Some(y) => Some((x, y))
}
}
}
#[inline]
fn size_hint(&self) -> (uint, Option<uint>) {
let (a_lower, a_upper) = self.a.size_hint();
let (b_lower, b_upper) = self.b.size_hint();
let lower = cmp::min(a_lower, b_lower);
let upper = match (a_upper, b_upper) {
(Some(x), Some(y)) => Some(cmp::min(x,y)),
(Some(x), None) => Some(x),
(None, Some(y)) => Some(y),
(None, None) => None
};
(lower, upper)
}
}
impl<A, B, T: ExactSize<A>, U: ExactSize<B>> DoubleEndedIterator<(A, B)>
for Zip<T, U> {
#[inline]
fn next_back(&mut self) -> Option<(A, B)> {
let (a_sz, a_upper) = self.a.size_hint();
let (b_sz, b_upper) = self.b.size_hint();
assert!(a_upper == Some(a_sz));
assert!(b_upper == Some(b_sz));
if a_sz < b_sz {
for _ in range(0, b_sz - a_sz) { self.b.next_back(); }
} else if a_sz > b_sz {
for _ in range(0, a_sz - b_sz) { self.a.next_back(); }
}
let (a_sz, _) = self.a.size_hint();
let (b_sz, _) = self.b.size_hint();
assert!(a_sz == b_sz);
match (self.a.next_back(), self.b.next_back()) {
(Some(x), Some(y)) => Some((x, y)),
_ => None
}
}
}
impl<A, B, T: RandomAccessIterator<A>, U: RandomAccessIterator<B>>
RandomAccessIterator<(A, B)> for Zip<T, U> {
#[inline]
fn indexable(&self) -> uint {
cmp::min(self.a.indexable(), self.b.indexable())
}
#[inline]
fn idx(&self, index: uint) -> Option<(A, B)> {
match self.a.idx(index) {
None => None,
Some(x) => match self.b.idx(index) {
None => None,
Some(y) => Some((x, y))
}
}
}
}
/// An iterator which maps the values of `iter` with `f`
pub struct Map<'self, A, B, T> {
priv iter: T,
priv f: &'self fn(A) -> B
}
impl<'self, A, B, T> Map<'self, A, B, T> {
#[inline]
fn do_map(&self, elt: Option<A>) -> Option<B> {
match elt {
Some(a) => Some((self.f)(a)),
_ => None
}
}
}
impl<'self, A, B, T: Iterator<A>> Iterator<B> for Map<'self, A, B, T> {
#[inline]
fn next(&mut self) -> Option<B> {
let next = self.iter.next();
self.do_map(next)
}
#[inline]
fn size_hint(&self) -> (uint, Option<uint>) {
self.iter.size_hint()
}
}
impl<'self, A, B, T: DoubleEndedIterator<A>> DoubleEndedIterator<B> for Map<'self, A, B, T> {
#[inline]
fn next_back(&mut self) -> Option<B> {
let next = self.iter.next_back();
self.do_map(next)
}
}
impl<'self, A, B, T: RandomAccessIterator<A>> RandomAccessIterator<B> for Map<'self, A, B, T> {
#[inline]
fn indexable(&self) -> uint {
self.iter.indexable()
}
#[inline]
fn idx(&self, index: uint) -> Option<B> {
self.do_map(self.iter.idx(index))
}
}
/// An iterator which filters the elements of `iter` with `predicate`
pub struct Filter<'self, A, T> {
priv iter: T,
priv predicate: &'self fn(&A) -> bool
}
impl<'self, A, T: Iterator<A>> Iterator<A> for Filter<'self, A, T> {
#[inline]
fn next(&mut self) -> Option<A> {
for x in self.iter {
if (self.predicate)(&x) {
return Some(x);
} else {
continue
}
}
None
}
#[inline]
fn size_hint(&self) -> (uint, Option<uint>) {
let (_, upper) = self.iter.size_hint();
(0, upper) // can't know a lower bound, due to the predicate
}
}
impl<'self, A, T: DoubleEndedIterator<A>> DoubleEndedIterator<A> for Filter<'self, A, T> {
#[inline]
fn next_back(&mut self) -> Option<A> {
loop {
match self.iter.next_back() {
None => return None,
Some(x) => {
if (self.predicate)(&x) {
return Some(x);
} else {
continue
}
}
}
}
}
}
/// An iterator which uses `f` to both filter and map elements from `iter`
pub struct FilterMap<'self, A, B, T> {
priv iter: T,
priv f: &'self fn(A) -> Option<B>
}
impl<'self, A, B, T: Iterator<A>> Iterator<B> for FilterMap<'self, A, B, T> {
#[inline]
fn next(&mut self) -> Option<B> {
for x in self.iter {
match (self.f)(x) {
Some(y) => return Some(y),
None => ()
}
}
None
}
#[inline]
fn size_hint(&self) -> (uint, Option<uint>) {
let (_, upper) = self.iter.size_hint();
(0, upper) // can't know a lower bound, due to the predicate
}
}
impl<'self, A, B, T: DoubleEndedIterator<A>> DoubleEndedIterator<B>
for FilterMap<'self, A, B, T> {
#[inline]
fn next_back(&mut self) -> Option<B> {
loop {
match self.iter.next_back() {
None => return None,
Some(x) => {
match (self.f)(x) {
Some(y) => return Some(y),
None => ()
}
}
}
}
}
}
/// An iterator which yields the current count and the element during iteration
#[deriving(Clone)]
pub struct Enumerate<T> {
priv iter: T,
priv count: uint
}
impl<A, T: Iterator<A>> Iterator<(uint, A)> for Enumerate<T> {
#[inline]
fn next(&mut self) -> Option<(uint, A)> {
match self.iter.next() {
Some(a) => {
let ret = Some((self.count, a));
self.count += 1;
ret
}
_ => None
}
}
#[inline]
fn size_hint(&self) -> (uint, Option<uint>) {
self.iter.size_hint()
}
}
impl<A, T: ExactSize<A>> DoubleEndedIterator<(uint, A)> for Enumerate<T> {
#[inline]
fn next_back(&mut self) -> Option<(uint, A)> {
match self.iter.next_back() {
Some(a) => {
let (lower, upper) = self.iter.size_hint();
assert!(upper == Some(lower));
Some((self.count + lower, a))
}
_ => None
}
}
}
impl<A, T: RandomAccessIterator<A>> RandomAccessIterator<(uint, A)> for Enumerate<T> {
#[inline]
fn indexable(&self) -> uint {
self.iter.indexable()
}
#[inline]
fn idx(&self, index: uint) -> Option<(uint, A)> {
match self.iter.idx(index) {
Some(a) => Some((self.count + index, a)),
_ => None,
}
}
}
/// An iterator with a `peek()` that returns an optional reference to the next element.
pub struct Peekable<A, T> {
priv iter: T,
priv peeked: Option<A>,
}
impl<A, T: Iterator<A>> Iterator<A> for Peekable<A, T> {
#[inline]
fn next(&mut self) -> Option<A> {
if self.peeked.is_some() { self.peeked.take() }
else { self.iter.next() }
}
#[inline]
fn size_hint(&self) -> (uint, Option<uint>) {
let (lo, hi) = self.iter.size_hint();
if self.peeked.is_some() {
let lo = lo.saturating_add(1);
let hi = match hi {
Some(x) => x.checked_add(&1),
None => None
};
(lo, hi)
} else {
(lo, hi)
}
}
}
impl<'self, A, T: Iterator<A>> Peekable<A, T> {
/// Return a reference to the next element of the iterator with out advancing it,
/// or None if the iterator is exhausted.
#[inline]
pub fn peek(&'self mut self) -> Option<&'self A> {
if self.peeked.is_none() {
self.peeked = self.iter.next();
}
match self.peeked {
Some(ref value) => Some(value),
None => None,
}
}
}
/// An iterator which rejects elements while `predicate` is true
pub struct SkipWhile<'self, A, T> {
priv iter: T,
priv flag: bool,
priv predicate: &'self fn(&A) -> bool
}
impl<'self, A, T: Iterator<A>> Iterator<A> for SkipWhile<'self, A, T> {
#[inline]
fn next(&mut self) -> Option<A> {
let mut next = self.iter.next();
if self.flag {
next
} else {
loop {
match next {
Some(x) => {
if (self.predicate)(&x) {
next = self.iter.next();
continue
} else {
self.flag = true;
return Some(x)
}
}
None => return None
}
}
}
}
#[inline]
fn size_hint(&self) -> (uint, Option<uint>) {
let (_, upper) = self.iter.size_hint();
(0, upper) // can't know a lower bound, due to the predicate
}
}
/// An iterator which only accepts elements while `predicate` is true
pub struct TakeWhile<'self, A, T> {
priv iter: T,
priv flag: bool,
priv predicate: &'self fn(&A) -> bool
}
impl<'self, A, T: Iterator<A>> Iterator<A> for TakeWhile<'self, A, T> {
#[inline]
fn next(&mut self) -> Option<A> {
if self.flag {
None
} else {
match self.iter.next() {
Some(x) => {
if (self.predicate)(&x) {
Some(x)
} else {
self.flag = true;
None
}
}
None => None
}
}
}
#[inline]
fn size_hint(&self) -> (uint, Option<uint>) {
let (_, upper) = self.iter.size_hint();
(0, upper) // can't know a lower bound, due to the predicate
}
}
/// An iterator which skips over `n` elements of `iter`.
#[deriving(Clone)]
pub struct Skip<T> {
priv iter: T,
priv n: uint
}
impl<A, T: Iterator<A>> Iterator<A> for Skip<T> {
#[inline]
fn next(&mut self) -> Option<A> {
let mut next = self.iter.next();
if self.n == 0 {
next
} else {
let mut n = self.n;
while n > 0 {
n -= 1;
match next {
Some(_) => {
next = self.iter.next();
continue
}
None => {
self.n = 0;
return None
}
}
}
self.n = 0;
next
}
}
#[inline]
fn size_hint(&self) -> (uint, Option<uint>) {
let (lower, upper) = self.iter.size_hint();
let lower = lower.saturating_sub(self.n);
let upper = match upper {
Some(x) => Some(x.saturating_sub(self.n)),
None => None
};
(lower, upper)
}
}
impl<A, T: RandomAccessIterator<A>> RandomAccessIterator<A> for Skip<T> {
#[inline]
fn indexable(&self) -> uint {
self.iter.indexable().saturating_sub(self.n)
}
#[inline]
fn idx(&self, index: uint) -> Option<A> {
if index >= self.indexable() {
None
} else {
self.iter.idx(index + self.n)
}
}
}
/// An iterator which only iterates over the first `n` iterations of `iter`.
#[deriving(Clone)]
pub struct Take<T> {
priv iter: T,
priv n: uint
}
impl<A, T: Iterator<A>> Iterator<A> for Take<T> {
#[inline]
fn next(&mut self) -> Option<A> {
if self.n != 0 {
self.n -= 1;
self.iter.next()
} else {
None
}
}
#[inline]
fn size_hint(&self) -> (uint, Option<uint>) {
let (lower, upper) = self.iter.size_hint();
let lower = cmp::min(lower, self.n);
let upper = match upper {
Some(x) if x < self.n => Some(x),
_ => Some(self.n)
};
(lower, upper)
}
}
impl<A, T: RandomAccessIterator<A>> RandomAccessIterator<A> for Take<T> {
#[inline]
fn indexable(&self) -> uint {
cmp::min(self.iter.indexable(), self.n)
}
#[inline]
fn idx(&self, index: uint) -> Option<A> {
if index >= self.n {
None
} else {
self.iter.idx(index)
}
}
}
/// An iterator to maintain state while iterating another iterator
pub struct Scan<'self, A, B, T, St> {
priv iter: T,
priv f: &'self fn(&mut St, A) -> Option<B>,
/// The current internal state to be passed to the closure next.
state: St
}
impl<'self, A, B, T: Iterator<A>, St> Iterator<B> for Scan<'self, A, B, T, St> {
#[inline]
fn next(&mut self) -> Option<B> {
self.iter.next().and_then(|a| (self.f)(&mut self.state, a))
}
#[inline]
fn size_hint(&self) -> (uint, Option<uint>) {
let (_, upper) = self.iter.size_hint();
(0, upper) // can't know a lower bound, due to the scan function
}
}
/// An iterator that maps each element to an iterator,
/// and yields the elements of the produced iterators
///
pub struct FlatMap<'self, A, T, U> {
priv iter: T,
priv f: &'self fn(A) -> U,
priv frontiter: Option<U>,
priv backiter: Option<U>,
}
impl<'self, A, T: Iterator<A>, B, U: Iterator<B>> Iterator<B> for FlatMap<'self, A, T, U> {
#[inline]
fn next(&mut self) -> Option<B> {
loop {
for inner in self.frontiter.mut_iter() {
for x in *inner {
return Some(x)
}
}
match self.iter.next().map(|x| (self.f)(x)) {
None => return self.backiter.as_mut().and_then(|it| it.next()),
next => self.frontiter = next,
}
}
}
#[inline]
fn size_hint(&self) -> (uint, Option<uint>) {
let (flo, fhi) = self.frontiter.as_ref().map_default((0, Some(0)), |it| it.size_hint());
let (blo, bhi) = self.backiter.as_ref().map_default((0, Some(0)), |it| it.size_hint());
let lo = flo.saturating_add(blo);
match (self.iter.size_hint(), fhi, bhi) {
((0, Some(0)), Some(a), Some(b)) => (lo, a.checked_add(&b)),
_ => (lo, None)
}
}
}
impl<'self,
A, T: DoubleEndedIterator<A>,
B, U: DoubleEndedIterator<B>> DoubleEndedIterator<B>
for FlatMap<'self, A, T, U> {
#[inline]
fn next_back(&mut self) -> Option<B> {
loop {
for inner in self.backiter.mut_iter() {
match inner.next_back() {
None => (),
y => return y
}
}
match self.iter.next_back().map(|x| (self.f)(x)) {
None => return self.frontiter.as_mut().and_then(|it| it.next_back()),
next => self.backiter = next,
}
}
}
}
/// An iterator that yields `None` forever after the underlying iterator
/// yields `None` once.
#[deriving(Clone, DeepClone)]
pub struct Fuse<T> {
priv iter: T,
priv done: bool
}
impl<A, T: Iterator<A>> Iterator<A> for Fuse<T> {
#[inline]
fn next(&mut self) -> Option<A> {
if self.done {
None
} else {
match self.iter.next() {
None => {
self.done = true;
None
}
x => x
}
}
}
#[inline]
fn size_hint(&self) -> (uint, Option<uint>) {
if self.done {
(0, Some(0))
} else {
self.iter.size_hint()
}
}
}
impl<A, T: DoubleEndedIterator<A>> DoubleEndedIterator<A> for Fuse<T> {
#[inline]
fn next_back(&mut self) -> Option<A> {
if self.done {
None
} else {
match self.iter.next_back() {
None => {
self.done = true;
None
}
x => x
}
}
}
}
// Allow RandomAccessIterators to be fused without affecting random-access behavior
impl<A, T: RandomAccessIterator<A>> RandomAccessIterator<A> for Fuse<T> {
#[inline]
fn indexable(&self) -> uint {
self.iter.indexable()
}
#[inline]
fn idx(&self, index: uint) -> Option<A> {
self.iter.idx(index)
}
}
impl<T> Fuse<T> {
/// Resets the fuse such that the next call to .next() or .next_back() will
/// call the underlying iterator again even if it prevously returned None.
#[inline]
fn reset_fuse(&mut self) {
self.done = false
}
}
/// An iterator that calls a function with a reference to each
/// element before yielding it.
pub struct Inspect<'self, A, T> {
priv iter: T,
priv f: &'self fn(&A)
}
impl<'self, A, T> Inspect<'self, A, T> {
#[inline]
fn do_inspect(&self, elt: Option<A>) -> Option<A> {
match elt {
Some(ref a) => (self.f)(a),
None => ()
}
elt
}
}
impl<'self, A, T: Iterator<A>> Iterator<A> for Inspect<'self, A, T> {
#[inline]
fn next(&mut self) -> Option<A> {
let next = self.iter.next();
self.do_inspect(next)
}
#[inline]
fn size_hint(&self) -> (uint, Option<uint>) {
self.iter.size_hint()
}
}
impl<'self, A, T: DoubleEndedIterator<A>> DoubleEndedIterator<A>
for Inspect<'self, A, T> {
#[inline]
fn next_back(&mut self) -> Option<A> {
let next = self.iter.next_back();
self.do_inspect(next)
}
}
impl<'self, A, T: RandomAccessIterator<A>> RandomAccessIterator<A>
for Inspect<'self, A, T> {
#[inline]
fn indexable(&self) -> uint {
self.iter.indexable()
}
#[inline]
fn idx(&self, index: uint) -> Option<A> {
self.do_inspect(self.iter.idx(index))
}
}
/// An iterator which just modifies the contained state throughout iteration.
pub struct Unfold<'self, A, St> {
priv f: &'self fn(&mut St) -> Option<A>,
/// Internal state that will be yielded on the next iteration
state: St
}
impl<'self, A, St> Unfold<'self, A, St> {
/// Creates a new iterator with the specified closure as the "iterator
/// function" and an initial state to eventually pass to the iterator
#[inline]
pub fn new<'a>(initial_state: St, f: &'a fn(&mut St) -> Option<A>)
-> Unfold<'a, A, St> {
Unfold {
f: f,
state: initial_state
}
}
}
impl<'self, A, St> Iterator<A> for Unfold<'self, A, St> {
#[inline]
fn next(&mut self) -> Option<A> {
(self.f)(&mut self.state)
}
#[inline]
fn size_hint(&self) -> (uint, Option<uint>) {
// no possible known bounds at this point
(0, None)
}
}
/// An infinite iterator starting at `start` and advancing by `step` with each
/// iteration
#[deriving(Clone)]
pub struct Counter<A> {
/// The current state the counter is at (next value to be yielded)
priv state: A,
/// The amount that this iterator is stepping by
priv step: A
}
/// Creates a new counter with the specified start/step
#[inline]
pub fn count<A>(start: A, step: A) -> Counter<A> {
Counter{state: start, step: step}
}
impl<A: Add<A, A> + Clone> Iterator<A> for Counter<A> {
#[inline]
fn next(&mut self) -> Option<A> {
let result = self.state.clone();
self.state = self.state + self.step;
Some(result)
}
#[inline]
fn size_hint(&self) -> (uint, Option<uint>) {
(uint::max_value, None) // Too bad we can't specify an infinite lower bound
}
}
/// An iterator over the range [start, stop)
#[deriving(Clone, DeepClone)]
pub struct Range<A> {
priv state: A,
priv stop: A,
priv one: A
}
/// Return an iterator over the range [start, stop)
#[inline]
pub fn range<A: Add<A, A> + Ord + Clone + One>(start: A, stop: A) -> Range<A> {
Range{state: start, stop: stop, one: One::one()}
}
// FIXME: #10414: Unfortunate type bound
impl<A: Add<A, A> + Ord + Clone + ToPrimitive> Iterator<A> for Range<A> {
#[inline]
fn next(&mut self) -> Option<A> {
if self.state < self.stop {
let result = self.state.clone();
self.state = self.state + self.one;
Some(result)
} else {
None
}
}
#[inline]
fn size_hint(&self) -> (uint, Option<uint>) {
// This first checks if the elements are representable as i64. If they aren't, try u64 (to
// handle cases like range(huge, huger)). We don't use uint/int because the difference of
// the i64/u64 might lie within their range.
let bound = match self.state.to_i64() {
Some(a) => {
let sz = self.stop.to_i64().map(|b| b.checked_sub(&a));
match sz {
Some(Some(bound)) => bound.to_uint(),
_ => None,
}
},
None => match self.state.to_u64() {
Some(a) => {
let sz = self.stop.to_u64().map(|b| b.checked_sub(&a));
match sz {
Some(Some(bound)) => bound.to_uint(),
_ => None
}
},
None => None
}
};
match bound {
Some(b) => (b, Some(b)),
// Standard fallback for unbounded/unrepresentable bounds
None => (0, None)
}
}
}
/// `Integer` is required to ensure the range will be the same regardless of
/// the direction it is consumed.
impl<A: Integer + Ord + Clone + ToPrimitive> DoubleEndedIterator<A> for Range<A> {
#[inline]
fn next_back(&mut self) -> Option<A> {
if self.stop > self.state {
self.stop = self.stop - self.one;
Some(self.stop.clone())
} else {
None
}
}
}
/// An iterator over the range [start, stop]
#[deriving(Clone, DeepClone)]
pub struct RangeInclusive<A> {
priv range: Range<A>,
priv done: bool
}
/// Return an iterator over the range [start, stop]
#[inline]
pub fn range_inclusive<A: Add<A, A> + Ord + Clone + One + ToPrimitive>(start: A, stop: A)
-> RangeInclusive<A> {
RangeInclusive{range: range(start, stop), done: false}
}
impl<A: Add<A, A> + Eq + Ord + Clone + ToPrimitive> Iterator<A> for RangeInclusive<A> {
#[inline]
fn next(&mut self) -> Option<A> {
match self.range.next() {
Some(x) => Some(x),
None => {
if !self.done && self.range.state == self.range.stop {
self.done = true;
Some(self.range.stop.clone())
} else {
None
}
}
}
}
#[inline]
fn size_hint(&self) -> (uint, Option<uint>) { | let (lo, hi) = self.range.size_hint();
if self.done {
(lo, hi)
} else {
let lo = lo.saturating_add(1);
let hi = match hi {
Some(x) => x.checked_add(&1),
None => None
};
(lo, hi)
}
}
}
impl<A: Sub<A, A> + Integer + Ord + Clone + ToPrimitive> DoubleEndedIterator<A>
for RangeInclusive<A> {
#[inline]
fn next_back(&mut self) -> Option<A> {
if self.range.stop > self.range.state {
let result = self.range.stop.clone();
self.range.stop = self.range.stop - self.range.one;
Some(result)
} else if !self.done && self.range.state == self.range.stop {
self.done = true;
Some(self.range.stop.clone())
} else {
None
}
}
}
/// An iterator over the range [start, stop) by `step`. It handles overflow by stopping.
#[deriving(Clone, DeepClone)]
pub struct RangeStep<A> {
priv state: A,
priv stop: A,
priv step: A,
priv rev: bool
}
/// Return an iterator over the range [start, stop) by `step`. It handles overflow by stopping.
#[inline]
pub fn range_step<A: CheckedAdd + Ord + Clone + Zero>(start: A, stop: A, step: A) -> RangeStep<A> {
let rev = step < Zero::zero();
RangeStep{state: start, stop: stop, step: step, rev: rev}
}
impl<A: CheckedAdd + Ord + Clone> Iterator<A> for RangeStep<A> {
#[inline]
fn next(&mut self) -> Option<A> {
if (self.rev && self.state > self.stop) || (!self.rev && self.state < self.stop) {
let result = self.state.clone();
match self.state.checked_add(&self.step) {
Some(x) => self.state = x,
None => self.state = self.stop.clone()
}
Some(result)
} else {
None
}
}
}
/// An iterator over the range [start, stop] by `step`. It handles overflow by stopping.
#[deriving(Clone, DeepClone)]
pub struct RangeStepInclusive<A> {
priv state: A,
priv stop: A,
priv step: A,
priv rev: bool,
priv done: bool
}
/// Return an iterator over the range [start, stop] by `step`. It handles overflow by stopping.
#[inline]
pub fn range_step_inclusive<A: CheckedAdd + Ord + Clone + Zero>(start: A, stop: A,
step: A) -> RangeStepInclusive<A> {
let rev = step < Zero::zero();
RangeStepInclusive{state: start, stop: stop, step: step, rev: rev, done: false}
}
impl<A: CheckedAdd + Ord + Clone + Eq> Iterator<A> for RangeStepInclusive<A> {
#[inline]
fn next(&mut self) -> Option<A> {
if !self.done && ((self.rev && self.state >= self.stop) ||
(!self.rev && self.state <= self.stop)) {
let result = self.state.clone();
match self.state.checked_add(&self.step) {
Some(x) => self.state = x,
None => self.done = true
}
Some(result)
} else {
None
}
}
}
/// An iterator that repeats an element endlessly
#[deriving(Clone, DeepClone)]
pub struct Repeat<A> {
priv element: A
}
impl<A: Clone> Repeat<A> {
/// Create a new `Repeat` that endlessly repeats the element `elt`.
#[inline]
pub fn new(elt: A) -> Repeat<A> {
Repeat{element: elt}
}
}
impl<A: Clone> Iterator<A> for Repeat<A> {
#[inline]
fn next(&mut self) -> Option<A> { self.idx(0) }
#[inline]
fn size_hint(&self) -> (uint, Option<uint>) { (uint::max_value, None) }
}
impl<A: Clone> DoubleEndedIterator<A> for Repeat<A> {
#[inline]
fn next_back(&mut self) -> Option<A> { self.idx(0) }
}
impl<A: Clone> RandomAccessIterator<A> for Repeat<A> {
#[inline]
fn indexable(&self) -> uint { uint::max_value }
#[inline]
fn idx(&self, _: uint) -> Option<A> { Some(self.element.clone()) }
}
/// Functions for lexicographical ordering of sequences.
///
/// Lexicographical ordering through `<`, `<=`, `>=`, `>` requires
/// that the elements implement both `Eq` and `Ord`.
///
/// If two sequences are equal up until the point where one ends,
/// the shorter sequence compares less.
pub mod order {
use cmp;
use cmp::{TotalEq, TotalOrd, Ord, Eq};
use option::{Some, None};
use super::Iterator;
/// Compare `a` and `b` for equality using `TotalOrd`
pub fn equals<A: TotalEq, T: Iterator<A>>(mut a: T, mut b: T) -> bool {
loop {
match (a.next(), b.next()) {
(None, None) => return true,
(None, _) | (_, None) => return false,
(Some(x), Some(y)) => if !x.equals(&y) { return false },
}
}
}
/// Order `a` and `b` lexicographically using `TotalOrd`
pub fn cmp<A: TotalOrd, T: Iterator<A>>(mut a: T, mut b: T) -> cmp::Ordering {
loop {
match (a.next(), b.next()) {
(None, None) => return cmp::Equal,
(None, _ ) => return cmp::Less,
(_ , None) => return cmp::Greater,
(Some(x), Some(y)) => match x.cmp(&y) {
cmp::Equal => (),
non_eq => return non_eq,
},
}
}
}
/// Compare `a` and `b` for equality (Using partial equality, `Eq`)
pub fn eq<A: Eq, T: Iterator<A>>(mut a: T, mut b: T) -> bool {
loop {
match (a.next(), b.next()) {
(None, None) => return true,
(None, _) | (_, None) => return false,
(Some(x), Some(y)) => if !x.eq(&y) { return false },
}
}
}
/// Compare `a` and `b` for nonequality (Using partial equality, `Eq`)
pub fn ne<A: Eq, T: Iterator<A>>(mut a: T, mut b: T) -> bool {
loop {
match (a.next(), b.next()) {
(None, None) => return false,
(None, _) | (_, None) => return true,
(Some(x), Some(y)) => if x.ne(&y) { return true },
}
}
}
/// Return `a` < `b` lexicographically (Using partial order, `Ord`)
pub fn lt<A: Eq + Ord, T: Iterator<A>>(mut a: T, mut b: T) -> bool {
loop {
match (a.next(), b.next()) {
(None, None) => return false,
(None, _ ) => return true,
(_ , None) => return false,
(Some(x), Some(y)) => if x.ne(&y) { return x.lt(&y) },
}
}
}
/// Return `a` <= `b` lexicographically (Using partial order, `Ord`)
pub fn le<A: Eq + Ord, T: Iterator<A>>(mut a: T, mut b: T) -> bool {
loop {
match (a.next(), b.next()) {
(None, None) => return true,
(None, _ ) => return true,
(_ , None) => return false,
(Some(x), Some(y)) => if x.ne(&y) { return x.le(&y) },
}
}
}
/// Return `a` > `b` lexicographically (Using partial order, `Ord`)
pub fn gt<A: Eq + Ord, T: Iterator<A>>(mut a: T, mut b: T) -> bool {
loop {
match (a.next(), b.next()) {
(None, None) => return false,
(None, _ ) => return false,
(_ , None) => return true,
(Some(x), Some(y)) => if x.ne(&y) { return x.gt(&y) },
}
}
}
/// Return `a` >= `b` lexicographically (Using partial order, `Ord`)
pub fn ge<A: Eq + Ord, T: Iterator<A>>(mut a: T, mut b: T) -> bool {
loop {
match (a.next(), b.next()) {
(None, None) => return true,
(None, _ ) => return false,
(_ , None) => return true,
(Some(x), Some(y)) => if x.ne(&y) { return x.ge(&y) },
}
}
}
#[test]
fn test_lt() {
use vec::ImmutableVector;
let empty: [int, ..0] = [];
let xs = [1,2,3];
let ys = [1,2,0];
assert!(!lt(xs.iter(), ys.iter()));
assert!(!le(xs.iter(), ys.iter()));
assert!( gt(xs.iter(), ys.iter()));
assert!( ge(xs.iter(), ys.iter()));
assert!( lt(ys.iter(), xs.iter()));
assert!( le(ys.iter(), xs.iter()));
assert!(!gt(ys.iter(), xs.iter()));
assert!(!ge(ys.iter(), xs.iter()));
assert!( lt(empty.iter(), xs.iter()));
assert!( le(empty.iter(), xs.iter()));
assert!(!gt(empty.iter(), xs.iter()));
assert!(!ge(empty.iter(), xs.iter()));
// Sequence with NaN
let u = [1.0, 2.0];
let v = [0.0/0.0, 3.0];
assert!(!lt(u.iter(), v.iter()));
assert!(!le(u.iter(), v.iter()));
assert!(!gt(u.iter(), v.iter()));
assert!(!ge(u.iter(), v.iter()));
let a = [0.0/0.0];
let b = [1.0];
let c = [2.0];
assert!(lt(a.iter(), b.iter()) == (a[0] < b[0]));
assert!(le(a.iter(), b.iter()) == (a[0] <= b[0]));
assert!(gt(a.iter(), b.iter()) == (a[0] > b[0]));
assert!(ge(a.iter(), b.iter()) == (a[0] >= b[0]));
assert!(lt(c.iter(), b.iter()) == (c[0] < b[0]));
assert!(le(c.iter(), b.iter()) == (c[0] <= b[0]));
assert!(gt(c.iter(), b.iter()) == (c[0] > b[0]));
assert!(ge(c.iter(), b.iter()) == (c[0] >= b[0]));
}
}
#[cfg(test)]
mod tests {
use super::*;
use prelude::*;
use cmp;
use uint;
use num;
#[test]
fn test_counter_from_iter() {
let mut it = count(0, 5).take(10);
let xs: ~[int] = FromIterator::from_iterator(&mut it);
assert_eq!(xs, ~[0, 5, 10, 15, 20, 25, 30, 35, 40, 45]);
}
#[test]
fn test_iterator_chain() {
let xs = [0u, 1, 2, 3, 4, 5];
let ys = [30u, 40, 50, 60];
let expected = [0, 1, 2, 3, 4, 5, 30, 40, 50, 60];
let mut it = xs.iter().chain(ys.iter());
let mut i = 0;
for &x in it {
assert_eq!(x, expected[i]);
i += 1;
}
assert_eq!(i, expected.len());
let ys = count(30u, 10).take(4);
let mut it = xs.iter().map(|&x| x).chain(ys);
let mut i = 0;
for x in it {
assert_eq!(x, expected[i]);
i += 1;
}
assert_eq!(i, expected.len());
}
#[test]
fn test_filter_map() {
let mut it = count(0u, 1u).take(10)
.filter_map(|x| if x.is_even() { Some(x*x) } else { None });
assert_eq!(it.collect::<~[uint]>(), ~[0*0, 2*2, 4*4, 6*6, 8*8]);
}
#[test]
fn test_iterator_enumerate() {
let xs = [0u, 1, 2, 3, 4, 5];
let mut it = xs.iter().enumerate();
for (i, &x) in it {
assert_eq!(i, x);
}
}
#[test]
fn test_iterator_peekable() {
let xs = ~[0u, 1, 2, 3, 4, 5];
let mut it = xs.iter().map(|&x|x).peekable();
assert_eq!(it.peek().unwrap(), &0);
assert_eq!(it.next().unwrap(), 0);
assert_eq!(it.next().unwrap(), 1);
assert_eq!(it.next().unwrap(), 2);
assert_eq!(it.peek().unwrap(), &3);
assert_eq!(it.peek().unwrap(), &3);
assert_eq!(it.next().unwrap(), 3);
assert_eq!(it.next().unwrap(), 4);
assert_eq!(it.peek().unwrap(), &5);
assert_eq!(it.next().unwrap(), 5);
assert!(it.peek().is_none());
assert!(it.next().is_none());
}
#[test]
fn test_iterator_take_while() {
let xs = [0u, 1, 2, 3, 5, 13, 15, 16, 17, 19];
let ys = [0u, 1, 2, 3, 5, 13];
let mut it = xs.iter().take_while(|&x| *x < 15u);
let mut i = 0;
for &x in it {
assert_eq!(x, ys[i]);
i += 1;
}
assert_eq!(i, ys.len());
}
#[test]
fn test_iterator_skip_while() {
let xs = [0u, 1, 2, 3, 5, 13, 15, 16, 17, 19];
let ys = [15, 16, 17, 19];
let mut it = xs.iter().skip_while(|&x| *x < 15u);
let mut i = 0;
for &x in it {
assert_eq!(x, ys[i]);
i += 1;
}
assert_eq!(i, ys.len());
}
#[test]
fn test_iterator_skip() {
let xs = [0u, 1, 2, 3, 5, 13, 15, 16, 17, 19, 20, 30];
let ys = [13, 15, 16, 17, 19, 20, 30];
let mut it = xs.iter().skip(5);
let mut i = 0;
for &x in it {
assert_eq!(x, ys[i]);
i += 1;
}
assert_eq!(i, ys.len());
}
#[test]
fn test_iterator_take() {
let xs = [0u, 1, 2, 3, 5, 13, 15, 16, 17, 19];
let ys = [0u, 1, 2, 3, 5];
let mut it = xs.iter().take(5);
let mut i = 0;
for &x in it {
assert_eq!(x, ys[i]);
i += 1;
}
assert_eq!(i, ys.len());
}
#[test]
fn test_iterator_scan() {
// test the type inference
fn add(old: &mut int, new: &uint) -> Option<f64> {
*old += *new as int;
Some(*old as f64)
}
let xs = [0u, 1, 2, 3, 4];
let ys = [0f64, 1.0, 3.0, 6.0, 10.0];
let mut it = xs.iter().scan(0, add);
let mut i = 0;
for x in it {
assert_eq!(x, ys[i]);
i += 1;
}
assert_eq!(i, ys.len());
}
#[test]
fn test_iterator_flat_map() {
let xs = [0u, 3, 6];
let ys = [0u, 1, 2, 3, 4, 5, 6, 7, 8];
let mut it = xs.iter().flat_map(|&x| count(x, 1).take(3));
let mut i = 0;
for x in it {
assert_eq!(x, ys[i]);
i += 1;
}
assert_eq!(i, ys.len());
}
#[test]
fn test_inspect() {
let xs = [1u, 2, 3, 4];
let mut n = 0;
let ys = xs.iter()
.map(|&x| x)
.inspect(|_| n += 1)
.collect::<~[uint]>();
assert_eq!(n, xs.len());
assert_eq!(xs, ys.as_slice());
}
#[test]
fn test_unfoldr() {
fn count(st: &mut uint) -> Option<uint> {
if *st < 10 {
let ret = Some(*st);
*st += 1;
ret
} else {
None
}
}
let mut it = Unfold::new(0, count);
let mut i = 0;
for counted in it {
assert_eq!(counted, i);
i += 1;
}
assert_eq!(i, 10);
}
#[test]
fn test_cycle() {
let cycle_len = 3;
let it = count(0u, 1).take(cycle_len).cycle();
assert_eq!(it.size_hint(), (uint::max_value, None));
for (i, x) in it.take(100).enumerate() {
assert_eq!(i % cycle_len, x);
}
let mut it = count(0u, 1).take(0).cycle();
assert_eq!(it.size_hint(), (0, Some(0)));
assert_eq!(it.next(), None);
}
#[test]
fn test_iterator_nth() {
let v = &[0, 1, 2, 3, 4];
for i in range(0u, v.len()) {
assert_eq!(v.iter().nth(i).unwrap(), &v[i]);
}
}
#[test]
fn test_iterator_last() {
let v = &[0, 1, 2, 3, 4];
assert_eq!(v.iter().last().unwrap(), &4);
assert_eq!(v.slice(0, 1).iter().last().unwrap(), &0);
}
#[test]
fn test_iterator_len() {
let v = &[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
assert_eq!(v.slice(0, 4).iter().len(), 4);
assert_eq!(v.slice(0, 10).iter().len(), 10);
assert_eq!(v.slice(0, 0).iter().len(), 0);
}
#[test]
fn test_iterator_sum() {
let v = &[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
assert_eq!(v.slice(0, 4).iter().map(|&x| x).sum(), 6);
assert_eq!(v.iter().map(|&x| x).sum(), 55);
assert_eq!(v.slice(0, 0).iter().map(|&x| x).sum(), 0);
}
#[test]
fn test_iterator_product() {
let v = &[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
assert_eq!(v.slice(0, 4).iter().map(|&x| x).product(), 0);
assert_eq!(v.slice(1, 5).iter().map(|&x| x).product(), 24);
assert_eq!(v.slice(0, 0).iter().map(|&x| x).product(), 1);
}
#[test]
fn test_iterator_max() {
let v = &[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
assert_eq!(v.slice(0, 4).iter().map(|&x| x).max(), Some(3));
assert_eq!(v.iter().map(|&x| x).max(), Some(10));
assert_eq!(v.slice(0, 0).iter().map(|&x| x).max(), None);
}
#[test]
fn test_iterator_min() {
let v = &[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
assert_eq!(v.slice(0, 4).iter().map(|&x| x).min(), Some(0));
assert_eq!(v.iter().map(|&x| x).min(), Some(0));
assert_eq!(v.slice(0, 0).iter().map(|&x| x).min(), None);
}
#[test]
fn test_iterator_size_hint() {
let c = count(0, 1);
let v = &[0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
let v2 = &[10, 11, 12];
let vi = v.iter();
assert_eq!(c.size_hint(), (uint::max_value, None));
assert_eq!(vi.size_hint(), (10, Some(10)));
assert_eq!(c.take(5).size_hint(), (5, Some(5)));
assert_eq!(c.skip(5).size_hint().second(), None);
assert_eq!(c.take_while(|_| false).size_hint(), (0, None));
assert_eq!(c.skip_while(|_| false).size_hint(), (0, None));
assert_eq!(c.enumerate().size_hint(), (uint::max_value, None));
assert_eq!(c.chain(vi.map(|&i| i)).size_hint(), (uint::max_value, None));
assert_eq!(c.zip(vi).size_hint(), (10, Some(10)));
assert_eq!(c.scan(0, |_,_| Some(0)).size_hint(), (0, None));
assert_eq!(c.filter(|_| false).size_hint(), (0, None));
assert_eq!(c.map(|_| 0).size_hint(), (uint::max_value, None));
assert_eq!(c.filter_map(|_| Some(0)).size_hint(), (0, None));
assert_eq!(vi.take(5).size_hint(), (5, Some(5)));
assert_eq!(vi.take(12).size_hint(), (10, Some(10)));
assert_eq!(vi.skip(3).size_hint(), (7, Some(7)));
assert_eq!(vi.skip(12).size_hint(), (0, Some(0)));
assert_eq!(vi.take_while(|_| false).size_hint(), (0, Some(10)));
assert_eq!(vi.skip_while(|_| false).size_hint(), (0, Some(10)));
assert_eq!(vi.enumerate().size_hint(), (10, Some(10)));
assert_eq!(vi.chain(v2.iter()).size_hint(), (13, Some(13)));
assert_eq!(vi.zip(v2.iter()).size_hint(), (3, Some(3)));
assert_eq!(vi.scan(0, |_,_| Some(0)).size_hint(), (0, Some(10)));
assert_eq!(vi.filter(|_| false).size_hint(), (0, Some(10)));
assert_eq!(vi.map(|i| i+1).size_hint(), (10, Some(10)));
assert_eq!(vi.filter_map(|_| Some(0)).size_hint(), (0, Some(10)));
}
#[test]
fn test_collect() {
let a = ~[1, 2, 3, 4, 5];
let b: ~[int] = a.iter().map(|&x| x).collect();
assert_eq!(a, b);
}
#[test]
fn test_all() {
let v: ~&[int] = ~&[1, 2, 3, 4, 5];
assert!(v.iter().all(|&x| x < 10));
assert!(!v.iter().all(|&x| x.is_even()));
assert!(!v.iter().all(|&x| x > 100));
assert!(v.slice(0, 0).iter().all(|_| fail!()));
}
#[test]
fn test_any() {
let v: ~&[int] = ~&[1, 2, 3, 4, 5];
assert!(v.iter().any(|&x| x < 10));
assert!(v.iter().any(|&x| x.is_even()));
assert!(!v.iter().any(|&x| x > 100));
assert!(!v.slice(0, 0).iter().any(|_| fail!()));
}
#[test]
fn test_find() {
let v: &[int] = &[1, 3, 9, 27, 103, 14, 11];
assert_eq!(*v.iter().find(|x| *x & 1 == 0).unwrap(), 14);
assert_eq!(*v.iter().find(|x| *x % 3 == 0).unwrap(), 3);
assert!(v.iter().find(|x| *x % 12 == 0).is_none());
}
#[test]
fn test_position() {
let v = &[1, 3, 9, 27, 103, 14, 11];
assert_eq!(v.iter().position(|x| *x & 1 == 0).unwrap(), 5);
assert_eq!(v.iter().position(|x| *x % 3 == 0).unwrap(), 1);
assert!(v.iter().position(|x| *x % 12 == 0).is_none());
}
#[test]
fn test_count() {
let xs = &[1, 2, 2, 1, 5, 9, 0, 2];
assert_eq!(xs.iter().count(|x| *x == 2), 3);
assert_eq!(xs.iter().count(|x| *x == 5), 1);
assert_eq!(xs.iter().count(|x| *x == 95), 0);
}
#[test]
fn test_max_by() {
let xs: &[int] = &[-3, 0, 1, 5, -10];
assert_eq!(*xs.iter().max_by(|x| x.abs()).unwrap(), -10);
}
#[test]
fn test_min_by() {
let xs: &[int] = &[-3, 0, 1, 5, -10];
assert_eq!(*xs.iter().min_by(|x| x.abs()).unwrap(), 0);
}
#[test]
fn test_by_ref() {
let mut xs = range(0, 10);
// sum the first five values
let partial_sum = xs.by_ref().take(5).fold(0, |a, b| a + b);
assert_eq!(partial_sum, 10);
assert_eq!(xs.next(), Some(5));
}
#[test]
fn test_invert() {
let xs = [2, 4, 6, 8, 10, 12, 14, 16];
let mut it = xs.iter();
it.next();
it.next();
assert_eq!(it.invert().map(|&x| x).collect::<~[int]>(), ~[16, 14, 12, 10, 8, 6]);
}
#[test]
fn test_double_ended_map() {
let xs = [1, 2, 3, 4, 5, 6];
let mut it = xs.iter().map(|&x| x * -1);
assert_eq!(it.next(), Some(-1));
assert_eq!(it.next(), Some(-2));
assert_eq!(it.next_back(), Some(-6));
assert_eq!(it.next_back(), Some(-5));
assert_eq!(it.next(), Some(-3));
assert_eq!(it.next_back(), Some(-4));
assert_eq!(it.next(), None);
}
#[test]
fn test_double_ended_enumerate() {
let xs = [1, 2, 3, 4, 5, 6];
let mut it = xs.iter().map(|&x| x).enumerate();
assert_eq!(it.next(), Some((0, 1)));
assert_eq!(it.next(), Some((1, 2)));
assert_eq!(it.next_back(), Some((5, 6)));
assert_eq!(it.next_back(), Some((4, 5)));
assert_eq!(it.next_back(), Some((3, 4)));
assert_eq!(it.next_back(), Some((2, 3)));
assert_eq!(it.next(), None);
}
#[test]
fn test_double_ended_zip() {
let xs = [1, 2, 3, 4, 5, 6];
let ys = [1, 2, 3, 7];
let a = xs.iter().map(|&x| x);
let b = ys.iter().map(|&x| x);
let mut it = a.zip(b);
assert_eq!(it.next(), Some((1, 1)));
assert_eq!(it.next(), Some((2, 2)));
assert_eq!(it.next_back(), Some((4, 7)));
assert_eq!(it.next_back(), Some((3, 3)));
assert_eq!(it.next(), None);
}
#[test]
fn test_double_ended_filter() {
let xs = [1, 2, 3, 4, 5, 6];
let mut it = xs.iter().filter(|&x| *x & 1 == 0);
assert_eq!(it.next_back().unwrap(), &6);
assert_eq!(it.next_back().unwrap(), &4);
assert_eq!(it.next().unwrap(), &2);
assert_eq!(it.next_back(), None);
}
#[test]
fn test_double_ended_filter_map() {
let xs = [1, 2, 3, 4, 5, 6];
let mut it = xs.iter().filter_map(|&x| if x & 1 == 0 { Some(x * 2) } else { None });
assert_eq!(it.next_back().unwrap(), 12);
assert_eq!(it.next_back().unwrap(), 8);
assert_eq!(it.next().unwrap(), 4);
assert_eq!(it.next_back(), None);
}
#[test]
fn test_double_ended_chain() {
let xs = [1, 2, 3, 4, 5];
let ys = ~[7, 9, 11];
let mut it = xs.iter().chain(ys.iter()).invert();
assert_eq!(it.next().unwrap(), &11)
assert_eq!(it.next().unwrap(), &9)
assert_eq!(it.next_back().unwrap(), &1)
assert_eq!(it.next_back().unwrap(), &2)
assert_eq!(it.next_back().unwrap(), &3)
assert_eq!(it.next_back().unwrap(), &4)
assert_eq!(it.next_back().unwrap(), &5)
assert_eq!(it.next_back().unwrap(), &7)
assert_eq!(it.next_back(), None)
}
#[test]
fn test_rposition() {
fn f(xy: &(int, char)) -> bool { let (_x, y) = *xy; y == 'b' }
fn g(xy: &(int, char)) -> bool { let (_x, y) = *xy; y == 'd' }
let v = ~[(0, 'a'), (1, 'b'), (2, 'c'), (3, 'b')];
assert_eq!(v.iter().rposition(f), Some(3u));
assert!(v.iter().rposition(g).is_none());
}
#[test]
#[should_fail]
fn test_rposition_fail() {
let v = [(~0, @0), (~0, @0), (~0, @0), (~0, @0)];
let mut i = 0;
do v.iter().rposition |_elt| {
if i == 2 {
fail!()
}
i += 1;
false
};
}
#[cfg(test)]
fn check_randacc_iter<A: Eq, T: Clone + RandomAccessIterator<A>>(a: T, len: uint)
{
let mut b = a.clone();
assert_eq!(len, b.indexable());
let mut n = 0;
for (i, elt) in a.enumerate() {
assert_eq!(Some(elt), b.idx(i));
n += 1;
}
assert_eq!(n, len);
assert_eq!(None, b.idx(n));
// call recursively to check after picking off an element
if len > 0 {
b.next();
check_randacc_iter(b, len-1);
}
}
#[test]
fn test_double_ended_flat_map() {
let u = [0u,1];
let v = [5,6,7,8];
let mut it = u.iter().flat_map(|x| v.slice(*x, v.len()).iter());
assert_eq!(it.next_back().unwrap(), &8);
assert_eq!(it.next().unwrap(), &5);
assert_eq!(it.next_back().unwrap(), &7);
assert_eq!(it.next_back().unwrap(), &6);
assert_eq!(it.next_back().unwrap(), &8);
assert_eq!(it.next().unwrap(), &6);
assert_eq!(it.next_back().unwrap(), &7);
assert_eq!(it.next_back(), None);
assert_eq!(it.next(), None);
assert_eq!(it.next_back(), None);
}
#[test]
fn test_random_access_chain() {
let xs = [1, 2, 3, 4, 5];
let ys = ~[7, 9, 11];
let mut it = xs.iter().chain(ys.iter());
assert_eq!(it.idx(0).unwrap(), &1);
assert_eq!(it.idx(5).unwrap(), &7);
assert_eq!(it.idx(7).unwrap(), &11);
assert!(it.idx(8).is_none());
it.next();
it.next();
it.next_back();
assert_eq!(it.idx(0).unwrap(), &3);
assert_eq!(it.idx(4).unwrap(), &9);
assert!(it.idx(6).is_none());
check_randacc_iter(it, xs.len() + ys.len() - 3);
}
#[test]
fn test_random_access_enumerate() {
let xs = [1, 2, 3, 4, 5];
check_randacc_iter(xs.iter().enumerate(), xs.len());
}
#[test]
fn test_random_access_invert() {
let xs = [1, 2, 3, 4, 5];
check_randacc_iter(xs.iter().invert(), xs.len());
let mut it = xs.iter().invert();
it.next();
it.next_back();
it.next();
check_randacc_iter(it, xs.len() - 3);
}
#[test]
fn test_random_access_zip() {
let xs = [1, 2, 3, 4, 5];
let ys = [7, 9, 11];
check_randacc_iter(xs.iter().zip(ys.iter()), cmp::min(xs.len(), ys.len()));
}
#[test]
fn test_random_access_take() {
let xs = [1, 2, 3, 4, 5];
let empty: &[int] = [];
check_randacc_iter(xs.iter().take(3), 3);
check_randacc_iter(xs.iter().take(20), xs.len());
check_randacc_iter(xs.iter().take(0), 0);
check_randacc_iter(empty.iter().take(2), 0);
}
#[test]
fn test_random_access_skip() {
let xs = [1, 2, 3, 4, 5];
let empty: &[int] = [];
check_randacc_iter(xs.iter().skip(2), xs.len() - 2);
check_randacc_iter(empty.iter().skip(2), 0);
}
#[test]
fn test_random_access_inspect() {
let xs = [1, 2, 3, 4, 5];
// test .map and .inspect that don't implement Clone
let it = xs.iter().inspect(|_| {});
assert_eq!(xs.len(), it.indexable());
for (i, elt) in xs.iter().enumerate() {
assert_eq!(Some(elt), it.idx(i));
}
}
#[test]
fn test_random_access_map() {
let xs = [1, 2, 3, 4, 5];
let it = xs.iter().map(|x| *x);
assert_eq!(xs.len(), it.indexable());
for (i, elt) in xs.iter().enumerate() {
assert_eq!(Some(*elt), it.idx(i));
}
}
#[test]
fn test_random_access_cycle() {
let xs = [1, 2, 3, 4, 5];
let empty: &[int] = [];
check_randacc_iter(xs.iter().cycle().take(27), 27);
check_randacc_iter(empty.iter().cycle(), 0);
}
#[test]
fn test_double_ended_range() {
assert_eq!(range(11i, 14).invert().collect::<~[int]>(), ~[13i, 12, 11]);
for _ in range(10i, 0).invert() {
fail!("unreachable");
}
assert_eq!(range(11u, 14).invert().collect::<~[uint]>(), ~[13u, 12, 11]);
for _ in range(10u, 0).invert() {
fail!("unreachable");
}
}
#[test]
fn test_range() {
/// A mock type to check Range when ToPrimitive returns None
struct Foo;
impl ToPrimitive for Foo {
fn to_i64(&self) -> Option<i64> { None }
fn to_u64(&self) -> Option<u64> { None }
}
impl Add<Foo, Foo> for Foo {
fn add(&self, _: &Foo) -> Foo {
Foo
}
}
impl Ord for Foo {
fn lt(&self, _: &Foo) -> bool {
false
}
}
impl Clone for Foo {
fn clone(&self) -> Foo {
Foo
}
}
impl num::One for Foo {
fn one() -> Foo {
Foo
}
}
assert_eq!(range(0i, 5).collect::<~[int]>(), ~[0i, 1, 2, 3, 4]);
assert_eq!(range(-10i, -1).collect::<~[int]>(), ~[-10, -9, -8, -7, -6, -5, -4, -3, -2]);
assert_eq!(range(0i, 5).invert().collect::<~[int]>(), ~[4, 3, 2, 1, 0]);
assert_eq!(range(200, -5).collect::<~[int]>(), ~[]);
assert_eq!(range(200, -5).invert().collect::<~[int]>(), ~[]);
assert_eq!(range(200, 200).collect::<~[int]>(), ~[]);
assert_eq!(range(200, 200).invert().collect::<~[int]>(), ~[]);
assert_eq!(range(0i, 100).size_hint(), (100, Some(100)));
// this test is only meaningful when sizeof uint < sizeof u64
assert_eq!(range(uint::max_value - 1, uint::max_value).size_hint(), (1, Some(1)));
assert_eq!(range(-10i, -1).size_hint(), (9, Some(9)));
assert_eq!(range(Foo, Foo).size_hint(), (0, None));
}
#[test]
fn test_range_inclusive() {
assert_eq!(range_inclusive(0i, 5).collect::<~[int]>(), ~[0i, 1, 2, 3, 4, 5]);
assert_eq!(range_inclusive(0i, 5).invert().collect::<~[int]>(), ~[5i, 4, 3, 2, 1, 0]);
assert_eq!(range_inclusive(200, -5).collect::<~[int]>(), ~[]);
assert_eq!(range_inclusive(200, -5).invert().collect::<~[int]>(), ~[]);
assert_eq!(range_inclusive(200, 200).collect::<~[int]>(), ~[200]);
assert_eq!(range_inclusive(200, 200).invert().collect::<~[int]>(), ~[200]);
}
#[test]
fn test_range_step() {
assert_eq!(range_step(0i, 20, 5).collect::<~[int]>(), ~[0, 5, 10, 15]);
assert_eq!(range_step(20i, 0, -5).collect::<~[int]>(), ~[20, 15, 10, 5]);
assert_eq!(range_step(20i, 0, -6).collect::<~[int]>(), ~[20, 14, 8, 2]);
assert_eq!(range_step(200u8, 255, 50).collect::<~[u8]>(), ~[200u8, 250]);
assert_eq!(range_step(200, -5, 1).collect::<~[int]>(), ~[]);
assert_eq!(range_step(200, 200, 1).collect::<~[int]>(), ~[]);
}
#[test]
fn test_range_step_inclusive() {
assert_eq!(range_step_inclusive(0i, 20, 5).collect::<~[int]>(), ~[0, 5, 10, 15, 20]);
assert_eq!(range_step_inclusive(20i, 0, -5).collect::<~[int]>(), ~[20, 15, 10, 5, 0]);
assert_eq!(range_step_inclusive(20i, 0, -6).collect::<~[int]>(), ~[20, 14, 8, 2]);
assert_eq!(range_step_inclusive(200u8, 255, 50).collect::<~[u8]>(), ~[200u8, 250]);
assert_eq!(range_step_inclusive(200, -5, 1).collect::<~[int]>(), ~[]);
assert_eq!(range_step_inclusive(200, 200, 1).collect::<~[int]>(), ~[200]);
}
#[test]
fn test_reverse() {
let mut ys = [1, 2, 3, 4, 5];
ys.mut_iter().reverse_();
assert_eq!(ys, [5, 4, 3, 2, 1]);
}
} | |
design.py | # -*- coding: utf-8 -*-
# Form implementation generated from reading ui file '../include/mainwindow.ui'
#
# Created: Wed Mar 30 17:46:45 2016
# by: PyQt4 UI code generator 4.10.4
#
# WARNING! All changes made in this file will be lost!
from PyQt4 import QtCore, QtGui
try:
_fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
def _fromUtf8(s):
return s
try:
_encoding = QtGui.QApplication.UnicodeUTF8
def _translate(context, text, disambig):
return QtGui.QApplication.translate(context, text, disambig, _encoding)
except AttributeError:
def _translate(context, text, disambig):
|
class Ui_MainWindow(object):
def setupUi(self, MainWindow):
MainWindow.setObjectName(_fromUtf8("MainWindow"))
MainWindow.resize(1920, 1080)
self.centralWidget = QtGui.QWidget(MainWindow)
self.centralWidget.setObjectName(_fromUtf8("centralWidget"))
self.horizontalLayout = QtGui.QHBoxLayout(self.centralWidget)
self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout"))
self.verticalLayout = QtGui.QVBoxLayout()
self.verticalLayout.setObjectName(_fromUtf8("verticalLayout"))
self.tabWidget = QtGui.QTabWidget(self.centralWidget)
self.tabWidget.setObjectName(_fromUtf8("tabWidget"))
self.tab = QtGui.QWidget()
self.tab.setObjectName(_fromUtf8("tab"))
self.btnConfirm = QtGui.QPushButton(self.tab)
self.btnConfirm.setGeometry(QtCore.QRect(10, 180, 71, 71))
self.btnConfirm.setCursor(QtGui.QCursor(QtCore.Qt.PointingHandCursor))
self.btnConfirm.setText(_fromUtf8(""))
self.btnConfirm.setObjectName(_fromUtf8("btnConfirm"))
self.horizontalSliderRobot = QtGui.QSlider(self.tab)
self.horizontalSliderRobot.setEnabled(False)
self.horizontalSliderRobot.setGeometry(QtCore.QRect(100, 260, 1641, 51))
self.horizontalSliderRobot.setCursor(QtGui.QCursor(QtCore.Qt.OpenHandCursor))
self.horizontalSliderRobot.setLayoutDirection(QtCore.Qt.RightToLeft)
self.horizontalSliderRobot.setMaximum(30)
self.horizontalSliderRobot.setSingleStep(1)
self.horizontalSliderRobot.setProperty("value", 15)
self.horizontalSliderRobot.setTracking(True)
self.horizontalSliderRobot.setOrientation(QtCore.Qt.Horizontal)
self.horizontalSliderRobot.setTickPosition(QtGui.QSlider.TicksBothSides)
self.horizontalSliderRobot.setTickInterval(1)
self.horizontalSliderRobot.setObjectName(_fromUtf8("horizontalSliderRobot"))
self.groupBox_4 = QtGui.QGroupBox(self.tab)
self.groupBox_4.setGeometry(QtCore.QRect(620, 680, 601, 261))
self.groupBox_4.setTitle(_fromUtf8(""))
self.groupBox_4.setObjectName(_fromUtf8("groupBox_4"))
self.label_4 = QtGui.QLabel(self.groupBox_4)
self.label_4.setGeometry(QtCore.QRect(330, 10, 81, 16))
font = QtGui.QFont()
font.setPointSize(14)
font.setBold(True)
font.setWeight(75)
self.label_4.setFont(font)
self.label_4.setObjectName(_fromUtf8("label_4"))
self.lcdNumberTotal = QtGui.QLCDNumber(self.groupBox_4)
self.lcdNumberTotal.setGeometry(QtCore.QRect(330, 30, 131, 71))
font = QtGui.QFont()
font.setPointSize(15)
font.setBold(True)
font.setWeight(75)
self.lcdNumberTotal.setFont(font)
self.lcdNumberTotal.setLayoutDirection(QtCore.Qt.LeftToRight)
self.lcdNumberTotal.setAutoFillBackground(False)
self.lcdNumberTotal.setProperty("intValue", 0)
self.lcdNumberTotal.setObjectName(_fromUtf8("lcdNumberTotal"))
self.label_5 = QtGui.QLabel(self.groupBox_4)
self.label_5.setGeometry(QtCore.QRect(150, 10, 171, 16))
font = QtGui.QFont()
font.setPointSize(14)
font.setBold(True)
font.setWeight(75)
self.label_5.setFont(font)
self.label_5.setObjectName(_fromUtf8("label_5"))
self.lcdNumberRound = QtGui.QLCDNumber(self.groupBox_4)
self.lcdNumberRound.setGeometry(QtCore.QRect(150, 30, 131, 71))
font = QtGui.QFont()
font.setPointSize(15)
font.setBold(True)
font.setWeight(75)
self.lcdNumberRound.setFont(font)
self.lcdNumberRound.setLayoutDirection(QtCore.Qt.LeftToRight)
self.lcdNumberRound.setAutoFillBackground(False)
self.lcdNumberRound.setProperty("intValue", 10)
self.lcdNumberRound.setObjectName(_fromUtf8("lcdNumberRound"))
self.btnStartExperiment = QtGui.QPushButton(self.groupBox_4)
self.btnStartExperiment.setGeometry(QtCore.QRect(10, 130, 571, 111))
font = QtGui.QFont()
font.setPointSize(24)
font.setBold(True)
font.setWeight(75)
self.btnStartExperiment.setFont(font)
self.btnStartExperiment.setCursor(QtGui.QCursor(QtCore.Qt.PointingHandCursor))
self.btnStartExperiment.setObjectName(_fromUtf8("btnStartExperiment"))
self.groupBox_5 = QtGui.QGroupBox(self.tab)
self.groupBox_5.setGeometry(QtCore.QRect(660, 40, 491, 121))
self.groupBox_5.setTitle(_fromUtf8(""))
self.groupBox_5.setObjectName(_fromUtf8("groupBox_5"))
self.lcdNumberPlayerInvestment = QtGui.QLCDNumber(self.groupBox_5)
self.lcdNumberPlayerInvestment.setGeometry(QtCore.QRect(100, 30, 131, 71))
font = QtGui.QFont()
font.setPointSize(15)
font.setBold(True)
font.setWeight(75)
self.lcdNumberPlayerInvestment.setFont(font)
self.lcdNumberPlayerInvestment.setObjectName(_fromUtf8("lcdNumberPlayerInvestment"))
self.label_8 = QtGui.QLabel(self.groupBox_5)
self.label_8.setGeometry(QtCore.QRect(90, 10, 151, 16))
font = QtGui.QFont()
font.setPointSize(14)
font.setBold(True)
font.setWeight(75)
self.label_8.setFont(font)
self.label_8.setObjectName(_fromUtf8("label_8"))
self.label_7 = QtGui.QLabel(self.groupBox_5)
self.label_7.setGeometry(QtCore.QRect(270, 10, 151, 16))
font = QtGui.QFont()
font.setPointSize(14)
font.setBold(True)
font.setWeight(75)
self.label_7.setFont(font)
self.label_7.setObjectName(_fromUtf8("label_7"))
self.lcdNumberRobotInvestment = QtGui.QLCDNumber(self.groupBox_5)
self.lcdNumberRobotInvestment.setGeometry(QtCore.QRect(280, 30, 131, 71))
font = QtGui.QFont()
font.setPointSize(15)
font.setBold(True)
font.setWeight(75)
self.lcdNumberRobotInvestment.setFont(font)
self.lcdNumberRobotInvestment.setLayoutDirection(QtCore.Qt.LeftToRight)
self.lcdNumberRobotInvestment.setAutoFillBackground(False)
self.lcdNumberRobotInvestment.setProperty("intValue", 0)
self.lcdNumberRobotInvestment.setObjectName(_fromUtf8("lcdNumberRobotInvestment"))
self.groupBox_confirm_btn = QtGui.QGroupBox(self.tab)
self.groupBox_confirm_btn.setGeometry(QtCore.QRect(230, 530, 1411, 131))
self.groupBox_confirm_btn.setTitle(_fromUtf8(""))
self.groupBox_confirm_btn.setFlat(False)
self.groupBox_confirm_btn.setObjectName(_fromUtf8("groupBox_confirm_btn"))
self.pushButton_0 = QtGui.QPushButton(self.groupBox_confirm_btn)
self.pushButton_0.setGeometry(QtCore.QRect(30, 20, 99, 91))
font = QtGui.QFont()
font.setPointSize(24)
font.setBold(True)
font.setWeight(75)
self.pushButton_0.setFont(font)
self.pushButton_0.setCursor(QtGui.QCursor(QtCore.Qt.PointingHandCursor))
self.pushButton_0.setObjectName(_fromUtf8("pushButton_0"))
self.pushButton_1 = QtGui.QPushButton(self.groupBox_confirm_btn)
self.pushButton_1.setGeometry(QtCore.QRect(150, 20, 99, 91))
font = QtGui.QFont()
font.setPointSize(24)
font.setBold(True)
font.setWeight(75)
self.pushButton_1.setFont(font)
self.pushButton_1.setCursor(QtGui.QCursor(QtCore.Qt.PointingHandCursor))
self.pushButton_1.setObjectName(_fromUtf8("pushButton_1"))
self.pushButton_2 = QtGui.QPushButton(self.groupBox_confirm_btn)
self.pushButton_2.setGeometry(QtCore.QRect(280, 20, 99, 91))
font = QtGui.QFont()
font.setPointSize(24)
font.setBold(True)
font.setWeight(75)
self.pushButton_2.setFont(font)
self.pushButton_2.setCursor(QtGui.QCursor(QtCore.Qt.PointingHandCursor))
self.pushButton_2.setObjectName(_fromUtf8("pushButton_2"))
self.pushButton_3 = QtGui.QPushButton(self.groupBox_confirm_btn)
self.pushButton_3.setGeometry(QtCore.QRect(400, 20, 99, 91))
font = QtGui.QFont()
font.setPointSize(24)
font.setBold(True)
font.setWeight(75)
self.pushButton_3.setFont(font)
self.pushButton_3.setCursor(QtGui.QCursor(QtCore.Qt.PointingHandCursor))
self.pushButton_3.setObjectName(_fromUtf8("pushButton_3"))
self.pushButton_4 = QtGui.QPushButton(self.groupBox_confirm_btn)
self.pushButton_4.setGeometry(QtCore.QRect(520, 20, 99, 91))
font = QtGui.QFont()
font.setPointSize(24)
font.setBold(True)
font.setWeight(75)
self.pushButton_4.setFont(font)
self.pushButton_4.setCursor(QtGui.QCursor(QtCore.Qt.PointingHandCursor))
self.pushButton_4.setObjectName(_fromUtf8("pushButton_4"))
self.pushButton_5 = QtGui.QPushButton(self.groupBox_confirm_btn)
self.pushButton_5.setGeometry(QtCore.QRect(650, 20, 99, 91))
font = QtGui.QFont()
font.setPointSize(24)
font.setBold(True)
font.setWeight(75)
self.pushButton_5.setFont(font)
self.pushButton_5.setCursor(QtGui.QCursor(QtCore.Qt.PointingHandCursor))
self.pushButton_5.setObjectName(_fromUtf8("pushButton_5"))
self.pushButton_6 = QtGui.QPushButton(self.groupBox_confirm_btn)
self.pushButton_6.setGeometry(QtCore.QRect(780, 20, 99, 91))
font = QtGui.QFont()
font.setPointSize(24)
font.setBold(True)
font.setWeight(75)
self.pushButton_6.setFont(font)
self.pushButton_6.setCursor(QtGui.QCursor(QtCore.Qt.PointingHandCursor))
self.pushButton_6.setObjectName(_fromUtf8("pushButton_6"))
self.pushButton_7 = QtGui.QPushButton(self.groupBox_confirm_btn)
self.pushButton_7.setGeometry(QtCore.QRect(900, 20, 99, 91))
font = QtGui.QFont()
font.setPointSize(24)
font.setBold(True)
font.setWeight(75)
self.pushButton_7.setFont(font)
self.pushButton_7.setCursor(QtGui.QCursor(QtCore.Qt.PointingHandCursor))
self.pushButton_7.setObjectName(_fromUtf8("pushButton_7"))
self.pushButton_8 = QtGui.QPushButton(self.groupBox_confirm_btn)
self.pushButton_8.setGeometry(QtCore.QRect(1020, 20, 99, 91))
font = QtGui.QFont()
font.setPointSize(24)
font.setBold(True)
font.setWeight(75)
self.pushButton_8.setFont(font)
self.pushButton_8.setCursor(QtGui.QCursor(QtCore.Qt.PointingHandCursor))
self.pushButton_8.setObjectName(_fromUtf8("pushButton_8"))
self.pushButton_9 = QtGui.QPushButton(self.groupBox_confirm_btn)
self.pushButton_9.setGeometry(QtCore.QRect(1140, 20, 99, 91))
font = QtGui.QFont()
font.setPointSize(24)
font.setBold(True)
font.setWeight(75)
self.pushButton_9.setFont(font)
self.pushButton_9.setCursor(QtGui.QCursor(QtCore.Qt.PointingHandCursor))
self.pushButton_9.setObjectName(_fromUtf8("pushButton_9"))
self.pushButton_10 = QtGui.QPushButton(self.groupBox_confirm_btn)
self.pushButton_10.setGeometry(QtCore.QRect(1260, 20, 99, 91))
font = QtGui.QFont()
font.setPointSize(24)
font.setBold(True)
font.setWeight(75)
self.pushButton_10.setFont(font)
self.pushButton_10.setCursor(QtGui.QCursor(QtCore.Qt.PointingHandCursor))
self.pushButton_10.setObjectName(_fromUtf8("pushButton_10"))
self.progressBar = QtGui.QProgressBar(self.tab)
self.progressBar.setGeometry(QtCore.QRect(100, 200, 1641, 31))
self.progressBar.setMaximum(30)
self.progressBar.setProperty("value", 15)
self.progressBar.setTextVisible(False)
self.progressBar.setInvertedAppearance(True)
self.progressBar.setObjectName(_fromUtf8("progressBar"))
self.textEdit = QtGui.QTextEdit(self.tab)
self.textEdit.setGeometry(QtCore.QRect(420, 340, 1001, 171))
font = QtGui.QFont()
font.setFamily(_fromUtf8("Times New Roman"))
font.setPointSize(18)
self.textEdit.setFont(font)
self.textEdit.setTextInteractionFlags(QtCore.Qt.NoTextInteraction)
self.textEdit.setObjectName(_fromUtf8("textEdit"))
self.tabWidget.addTab(self.tab, _fromUtf8(""))
self.tab_2 = QtGui.QWidget()
self.tab_2.setObjectName(_fromUtf8("tab_2"))
self.groupBox = QtGui.QGroupBox(self.tab_2)
self.groupBox.setGeometry(QtCore.QRect(70, 120, 271, 201))
self.groupBox.setObjectName(_fromUtf8("groupBox"))
self.lineEditNaoIP = QtGui.QLineEdit(self.groupBox)
self.lineEditNaoIP.setGeometry(QtCore.QRect(10, 50, 151, 27))
self.lineEditNaoIP.setObjectName(_fromUtf8("lineEditNaoIP"))
self.label = QtGui.QLabel(self.groupBox)
self.label.setGeometry(QtCore.QRect(10, 30, 151, 17))
self.label.setObjectName(_fromUtf8("label"))
self.btnConnectToNao = QtGui.QPushButton(self.groupBox)
self.btnConnectToNao.setGeometry(QtCore.QRect(10, 90, 251, 91))
self.btnConnectToNao.setObjectName(_fromUtf8("btnConnectToNao"))
self.label_3 = QtGui.QLabel(self.groupBox)
self.label_3.setGeometry(QtCore.QRect(180, 30, 61, 17))
self.label_3.setObjectName(_fromUtf8("label_3"))
self.lineEditNaoPort = QtGui.QLineEdit(self.groupBox)
self.lineEditNaoPort.setGeometry(QtCore.QRect(180, 50, 81, 27))
self.lineEditNaoPort.setInputMask(_fromUtf8(""))
self.lineEditNaoPort.setObjectName(_fromUtf8("lineEditNaoPort"))
self.groupBox_2 = QtGui.QGroupBox(self.tab_2)
self.groupBox_2.setGeometry(QtCore.QRect(850, 120, 321, 151))
self.groupBox_2.setObjectName(_fromUtf8("groupBox_2"))
self.label_2 = QtGui.QLabel(self.groupBox_2)
self.label_2.setGeometry(QtCore.QRect(20, 30, 151, 17))
self.label_2.setObjectName(_fromUtf8("label_2"))
self.textEditXML = QtGui.QTextEdit(self.groupBox_2)
self.textEditXML.setGeometry(QtCore.QRect(20, 50, 211, 71))
self.textEditXML.setReadOnly(True)
self.textEditXML.setObjectName(_fromUtf8("textEditXML"))
self.btnBrowse = QtGui.QPushButton(self.groupBox_2)
self.btnBrowse.setGeometry(QtCore.QRect(240, 50, 71, 71))
self.btnBrowse.setObjectName(_fromUtf8("btnBrowse"))
self.groupBox_3 = QtGui.QGroupBox(self.tab_2)
self.groupBox_3.setGeometry(QtCore.QRect(410, 120, 391, 451))
self.groupBox_3.setObjectName(_fromUtf8("groupBox_3"))
self.btnWakeUp = QtGui.QPushButton(self.groupBox_3)
self.btnWakeUp.setEnabled(False)
self.btnWakeUp.setGeometry(QtCore.QRect(10, 50, 361, 91))
self.btnWakeUp.setObjectName(_fromUtf8("btnWakeUp"))
self.btnRest = QtGui.QPushButton(self.groupBox_3)
self.btnRest.setEnabled(False)
self.btnRest.setGeometry(QtCore.QRect(10, 150, 361, 81))
self.btnRest.setObjectName(_fromUtf8("btnRest"))
self.btnFaceTrackingEnable = QtGui.QPushButton(self.groupBox_3)
self.btnFaceTrackingEnable.setEnabled(False)
self.btnFaceTrackingEnable.setGeometry(QtCore.QRect(10, 240, 361, 91))
self.btnFaceTrackingEnable.setObjectName(_fromUtf8("btnFaceTrackingEnable"))
self.btnFaceTrackingDisable = QtGui.QPushButton(self.groupBox_3)
self.btnFaceTrackingDisable.setEnabled(False)
self.btnFaceTrackingDisable.setGeometry(QtCore.QRect(10, 340, 361, 91))
self.btnFaceTrackingDisable.setObjectName(_fromUtf8("btnFaceTrackingDisable"))
self.groupBox_7 = QtGui.QGroupBox(self.tab_2)
self.groupBox_7.setGeometry(QtCore.QRect(1220, 120, 251, 341))
self.groupBox_7.setObjectName(_fromUtf8("groupBox_7"))
self.textEditSubjectNumber = QtGui.QTextEdit(self.groupBox_7)
self.textEditSubjectNumber.setGeometry(QtCore.QRect(10, 60, 231, 31))
self.textEditSubjectNumber.setInputMethodHints(QtCore.Qt.ImhNone)
self.textEditSubjectNumber.setObjectName(_fromUtf8("textEditSubjectNumber"))
self.label_6 = QtGui.QLabel(self.groupBox_7)
self.label_6.setGeometry(QtCore.QRect(10, 40, 141, 17))
self.label_6.setObjectName(_fromUtf8("label_6"))
self.label_9 = QtGui.QLabel(self.groupBox_7)
self.label_9.setGeometry(QtCore.QRect(10, 110, 141, 17))
self.label_9.setObjectName(_fromUtf8("label_9"))
self.textEditSessionNumber = QtGui.QTextEdit(self.groupBox_7)
self.textEditSessionNumber.setGeometry(QtCore.QRect(10, 130, 231, 31))
self.textEditSessionNumber.setObjectName(_fromUtf8("textEditSessionNumber"))
self.textEditOther = QtGui.QTextEdit(self.groupBox_7)
self.textEditOther.setGeometry(QtCore.QRect(10, 200, 231, 31))
self.textEditOther.setObjectName(_fromUtf8("textEditOther"))
self.label_10 = QtGui.QLabel(self.groupBox_7)
self.label_10.setGeometry(QtCore.QRect(10, 180, 67, 17))
self.label_10.setObjectName(_fromUtf8("label_10"))
self.btnSessionInfoConfirm = QtGui.QPushButton(self.groupBox_7)
self.btnSessionInfoConfirm.setGeometry(QtCore.QRect(10, 260, 231, 61))
self.btnSessionInfoConfirm.setObjectName(_fromUtf8("btnSessionInfoConfirm"))
self.tabWidget.addTab(self.tab_2, _fromUtf8(""))
self.verticalLayout.addWidget(self.tabWidget)
self.horizontalLayout.addLayout(self.verticalLayout)
MainWindow.setCentralWidget(self.centralWidget)
self.menuBar = QtGui.QMenuBar(MainWindow)
self.menuBar.setGeometry(QtCore.QRect(0, 0, 1920, 25))
self.menuBar.setObjectName(_fromUtf8("menuBar"))
MainWindow.setMenuBar(self.menuBar)
self.mainToolBar = QtGui.QToolBar(MainWindow)
self.mainToolBar.setObjectName(_fromUtf8("mainToolBar"))
MainWindow.addToolBar(QtCore.Qt.TopToolBarArea, self.mainToolBar)
self.statusBar = QtGui.QStatusBar(MainWindow)
self.statusBar.setObjectName(_fromUtf8("statusBar"))
MainWindow.setStatusBar(self.statusBar)
self.retranslateUi(MainWindow)
self.tabWidget.setCurrentIndex(0)
QtCore.QMetaObject.connectSlotsByName(MainWindow)
def retranslateUi(self, MainWindow):
MainWindow.setWindowTitle(_translate("MainWindow", "---", None))
self.label_4.setText(_translate("MainWindow", "Bank:", None))
self.label_5.setText(_translate("MainWindow", "Round total:", None))
self.btnStartExperiment.setText(_translate("MainWindow", "START", None))
self.label_8.setText(_translate("MainWindow", "Robot received:", None))
self.label_7.setText(_translate("MainWindow", "Robot returned:", None))
self.pushButton_0.setText(_translate("MainWindow", "0", None))
self.pushButton_1.setText(_translate("MainWindow", "1", None))
self.pushButton_2.setText(_translate("MainWindow", "2", None))
self.pushButton_3.setText(_translate("MainWindow", "3", None))
self.pushButton_4.setText(_translate("MainWindow", "4", None))
self.pushButton_5.setText(_translate("MainWindow", "5", None))
self.pushButton_6.setText(_translate("MainWindow", "6", None))
self.pushButton_7.setText(_translate("MainWindow", "7", None))
self.pushButton_8.setText(_translate("MainWindow", "8", None))
self.pushButton_9.setText(_translate("MainWindow", "9", None))
self.pushButton_10.setText(_translate("MainWindow", "10", None))
self.progressBar.setFormat(_translate("MainWindow", "%v", None))
self.textEdit.setHtml(_translate("MainWindow", "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:\'Times New Roman\'; font-size:18pt; font-weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">Welcome, please press START to play the first round...</p></body></html>", None))
self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), _translate("MainWindow", "Exp", None))
self.groupBox.setTitle(_translate("MainWindow", "1- Connection Box", None))
self.lineEditNaoIP.setInputMask(_translate("MainWindow", "000.000.000.000", None))
self.lineEditNaoIP.setText(_translate("MainWindow", "192.168.0.1", None))
self.label.setText(_translate("MainWindow", "NAO IP Address:", None))
self.btnConnectToNao.setText(_translate("MainWindow", "Connect", None))
self.label_3.setText(_translate("MainWindow", "Port:", None))
self.lineEditNaoPort.setText(_translate("MainWindow", "9559", None))
self.groupBox_2.setTitle(_translate("MainWindow", "3- XML file", None))
self.label_2.setText(_translate("MainWindow", "XML path:", None))
self.btnBrowse.setText(_translate("MainWindow", "...", None))
self.groupBox_3.setTitle(_translate("MainWindow", "2- Robt Control", None))
self.btnWakeUp.setText(_translate("MainWindow", "Init Position", None))
self.btnRest.setText(_translate("MainWindow", "Rest", None))
self.btnFaceTrackingEnable.setText(_translate("MainWindow", "Enable Face Tracking", None))
self.btnFaceTrackingDisable.setText(_translate("MainWindow", "Disable Face Tracking", None))
self.groupBox_7.setTitle(_translate("MainWindow", "4- Session info", None))
self.textEditSubjectNumber.setHtml(_translate("MainWindow", "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:\'Ubuntu\'; font-size:11pt; font-weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">0</p></body></html>", None))
self.label_6.setText(_translate("MainWindow", "Subject Number:", None))
self.label_9.setText(_translate("MainWindow", "Session Number:", None))
self.textEditSessionNumber.setHtml(_translate("MainWindow", "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:\'Ubuntu\'; font-size:11pt; font-weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">0</p></body></html>", None))
self.textEditOther.setHtml(_translate("MainWindow", "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:\'Ubuntu\'; font-size:11pt; font-weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">0</p></body></html>", None))
self.label_10.setText(_translate("MainWindow", "Other:", None))
self.btnSessionInfoConfirm.setText(_translate("MainWindow", "Confirm", None))
self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_2), _translate("MainWindow", "Admin", None))
| return QtGui.QApplication.translate(context, text, disambig) |
x86-intel.rs | #![allow(bad_style)]
#![allow(unused)]
#![allow(
clippy::shadow_reuse,
clippy::cast_lossless,
clippy::match_same_arms,
clippy::nonminimal_bool,
clippy::print_stdout,
clippy::use_debug,
clippy::eq_op,
clippy::useless_format
)]
use std::collections::{BTreeMap, HashMap};
use serde::Deserialize;
const PRINT_INSTRUCTION_VIOLATIONS: bool = false;
const PRINT_MISSING_LISTS: bool = false;
const PRINT_MISSING_LISTS_MARKDOWN: bool = false;
struct Function {
name: &'static str,
arguments: &'static [&'static Type],
ret: Option<&'static Type>,
target_feature: Option<&'static str>,
instrs: &'static [&'static str],
file: &'static str,
required_const: &'static [usize],
has_test: bool,
}
static F32: Type = Type::PrimFloat(32);
static F64: Type = Type::PrimFloat(64);
static I16: Type = Type::PrimSigned(16);
static I32: Type = Type::PrimSigned(32);
static I64: Type = Type::PrimSigned(64);
static I8: Type = Type::PrimSigned(8);
static U16: Type = Type::PrimUnsigned(16);
static U32: Type = Type::PrimUnsigned(32);
static U64: Type = Type::PrimUnsigned(64);
static U128: Type = Type::PrimUnsigned(128);
static U8: Type = Type::PrimUnsigned(8);
static ORDERING: Type = Type::Ordering;
static M64: Type = Type::M64;
static M128: Type = Type::M128;
static M128I: Type = Type::M128I;
static M128D: Type = Type::M128D;
static M256: Type = Type::M256;
static M256I: Type = Type::M256I;
static M256D: Type = Type::M256D;
static M512: Type = Type::M512;
static M512I: Type = Type::M512I;
static M512D: Type = Type::M512D;
static MMASK8: Type = Type::MMASK8;
static MMASK16: Type = Type::MMASK16;
static MM_CMPINT_ENUM: Type = Type::MM_CMPINT_ENUM;
static TUPLE: Type = Type::Tuple;
static CPUID: Type = Type::CpuidResult;
static NEVER: Type = Type::Never;
#[derive(Debug)]
enum Type {
PrimFloat(u8),
PrimSigned(u8),
PrimUnsigned(u8),
MutPtr(&'static Type),
ConstPtr(&'static Type),
M64,
M128,
M128D,
M128I,
M256,
M256D,
M256I,
M512,
M512D,
M512I,
MMASK8,
MMASK16,
MM_CMPINT_ENUM,
Tuple,
CpuidResult,
Never,
Ordering,
}
stdarch_verify::x86_functions!(static FUNCTIONS);
#[derive(Deserialize)]
struct Data {
#[serde(rename = "intrinsic", default)]
intrinsics: Vec<Intrinsic>,
}
#[derive(Deserialize)]
struct Intrinsic {
#[serde(rename = "return")]
return_: Return,
name: String,
#[serde(rename = "CPUID", default)]
cpuid: Vec<String>,
#[serde(rename = "parameter", default)]
parameters: Vec<Parameter>,
#[serde(default)]
instruction: Vec<Instruction>,
}
#[derive(Deserialize)]
struct Parameter {
#[serde(rename = "type")]
type_: String,
}
#[derive(Deserialize)]
struct Return {
#[serde(rename = "type")]
type_: String,
}
#[derive(Deserialize, Debug)]
struct Instruction {
name: String,
}
macro_rules! bail {
($($t:tt)*) => (return Err(format!($($t)*)))
}
#[test]
fn verify_all_signatures() {
// This XML document was downloaded from Intel's site. To update this you
// can visit intel's intrinsics guide online documentation:
//
// https://software.intel.com/sites/landingpage/IntrinsicsGuide/#
//
// Open up the network console and you'll see an xml file was downloaded
// (currently called data-3.4.xml). That's the file we downloaded
// here.
let xml = include_bytes!("../x86-intel.xml");
let xml = &xml[..];
let data: Data = serde_xml_rs::from_reader(xml).expect("failed to deserialize xml");
let mut map = HashMap::new();
for intrinsic in &data.intrinsics {
map.entry(&intrinsic.name[..])
.or_insert_with(Vec::new)
.push(intrinsic);
}
let mut all_valid = true;
'outer: for rust in FUNCTIONS {
if !rust.has_test {
// FIXME: this list should be almost empty
let skip = [
"__readeflags",
"__readeflags",
"__writeeflags",
"__writeeflags",
"_mm_comige_ss",
"_mm_cvt_ss2si",
"_mm_cvtt_ss2si",
"_mm_cvt_si2ss",
"_mm_set_ps1",
"_mm_load_ps1",
"_mm_store_ps1",
"_mm_getcsr",
"_mm_setcsr",
"_MM_GET_EXCEPTION_MASK",
"_MM_GET_EXCEPTION_STATE",
"_MM_GET_FLUSH_ZERO_MODE",
"_MM_GET_ROUNDING_MODE",
"_MM_SET_EXCEPTION_MASK",
"_MM_SET_EXCEPTION_STATE",
"_MM_SET_FLUSH_ZERO_MODE",
"_MM_SET_ROUNDING_MODE",
"_mm_prefetch",
"_mm_undefined_ps",
"_m_pmaxsw",
"_m_pmaxub",
"_m_pminsw",
"_m_pminub",
"_m_pavgb",
"_m_pavgw",
"_m_psadbw",
"_mm_cvt_pi2ps",
"_m_maskmovq",
"_m_pextrw",
"_m_pinsrw",
"_m_pmovmskb",
"_m_pshufw",
"_mm_cvtt_ps2pi",
"_mm_cvt_ps2pi",
"__cpuid_count",
"__cpuid",
"__get_cpuid_max",
"_xsave",
"_xrstor",
"_xsetbv",
"_xgetbv",
"_xsaveopt",
"_xsavec",
"_xsaves",
"_xrstors",
"_mm_bslli_si128",
"_mm_bsrli_si128",
"_mm_undefined_pd",
"_mm_undefined_si128",
"_mm_cvtps_ph",
"_mm256_cvtps_ph",
"_rdtsc",
"__rdtscp",
"_mm256_castps128_ps256",
"_mm256_castpd128_pd256",
"_mm256_castsi128_si256",
"_mm256_undefined_ps",
"_mm256_undefined_pd",
"_mm256_undefined_si256",
"_bextr2_u32",
"_mm_tzcnt_32",
"_m_paddb",
"_m_paddw",
"_m_paddd",
"_m_paddsb",
"_m_paddsw",
"_m_paddusb",
"_m_paddusw",
"_m_psubb",
"_m_psubw",
"_m_psubd",
"_m_psubsb",
"_m_psubsw",
"_m_psubusb",
"_m_psubusw",
"_mm_set_pi16",
"_mm_set_pi32",
"_mm_set_pi8",
"_mm_set1_pi16",
"_mm_set1_pi32",
"_mm_set1_pi8",
"_mm_setr_pi16",
"_mm_setr_pi32",
"_mm_setr_pi8",
"ud2",
"_mm_min_epi8",
"_mm_min_epi32",
"_xbegin",
"_xend",
"_rdrand16_step",
"_rdrand32_step",
"_rdseed16_step",
"_rdseed32_step",
"_fxsave",
"_fxrstor",
"_t1mskc_u64",
"_mm256_shuffle_epi32",
"_mm256_bslli_epi128",
"_mm256_bsrli_epi128",
"_mm256_unpackhi_epi8",
"_mm256_unpacklo_epi8",
"_mm256_unpackhi_epi16",
"_mm256_unpacklo_epi16",
"_mm256_unpackhi_epi32",
"_mm256_unpacklo_epi32",
"_mm256_unpackhi_epi64",
"_mm256_unpacklo_epi64",
"_xsave64",
"_xrstor64",
"_xsaveopt64",
"_xsavec64",
"_xsaves64",
"_xrstors64",
"_mm_cvtsi64x_si128",
"_mm_cvtsi128_si64x",
"_mm_cvtsi64x_sd",
"cmpxchg16b",
"_rdrand64_step",
"_rdseed64_step",
"_bextr2_u64",
"_mm_tzcnt_64",
"_fxsave64",
"_fxrstor64",
"_mm512_undefined_ps",
"_mm512_undefined_pd",
];
if !skip.contains(&rust.name) {
println!(
"missing run-time test named `test_{}` for `{}`",
{
let mut id = rust.name;
while id.starts_with('_') {
id = &id[1..];
}
id
},
rust.name
);
all_valid = false;
}
}
match rust.name {
// These aren't defined by Intel but they're defined by what appears
// to be all other compilers. For more information see
// rust-lang/stdarch#307, and otherwise these signatures
// have all been manually verified.
"__readeflags" |
"__writeeflags" |
"__cpuid_count" |
"__cpuid" |
"__get_cpuid_max" |
// Not listed with intel, but manually verified
"cmpxchg16b" |
// The UD2 intrinsic is not defined by Intel, but it was agreed on
// in the RFC Issue 2512:
// https://github.com/rust-lang/rfcs/issues/2512
"ud2"
=> continue,
// Intel requires the mask argument for _mm_shuffle_ps to be an
// unsigned integer, but all other _mm_shuffle_.. intrinsics
// take a signed-integer. This breaks `_MM_SHUFFLE` for
// `_mm_shuffle_ps`:
"_mm_shuffle_ps" => continue,
_ => {}
}
// these are all AMD-specific intrinsics
if let Some(feature) = rust.target_feature {
if feature.contains("sse4a") || feature.contains("tbm") {
continue;
}
}
let intel = match map.remove(rust.name) {
Some(i) => i,
None => panic!("missing intel definition for {}", rust.name),
};
let mut errors = Vec::new();
for intel in intel {
match matches(rust, intel) {
Ok(()) => continue 'outer,
Err(e) => errors.push(e),
}
}
println!("failed to verify `{}`", rust.name);
for error in errors {
println!(" * {}", error);
}
all_valid = false;
}
assert!(all_valid);
let mut missing = BTreeMap::new();
for (name, intel) in &map {
// currently focused mainly on missing SIMD intrinsics, but there's
// definitely some other assorted ones that we're missing.
if !name.starts_with("_mm") {
continue;
}
// we'll get to avx-512 later
// let avx512 = intel.iter().any(|i| {
// i.name.starts_with("_mm512") || i.cpuid.iter().any(|c| {
// c.contains("512")
// })
// });
// if avx512 {
// continue
// }
for intel in intel {
missing
.entry(&intel.cpuid)
.or_insert_with(Vec::new)
.push(intel);
}
}
// generate a bulleted list of missing intrinsics
if PRINT_MISSING_LISTS || PRINT_MISSING_LISTS_MARKDOWN {
for (k, v) in missing {
if PRINT_MISSING_LISTS_MARKDOWN {
println!("\n<details><summary>{:?}</summary><p>\n", k);
for intel in v {
let url = format!(
"https://software.intel.com/sites/landingpage\
/IntrinsicsGuide/#text={}&expand=5236",
intel.name
);
println!(" * [ ] [`{}`]({})", intel.name, url);
}
println!("</p></details>\n");
} else {
println!("\n{:?}\n", k);
for intel in v {
println!("\t{}", intel.name);
}
}
}
}
}
fn matches(rust: &Function, intel: &Intrinsic) -> Result<(), String> |
fn equate(t: &Type, intel: &str, intrinsic: &str, is_const: bool) -> Result<(), String> {
// Make pointer adjacent to the type: float * foo => float* foo
let mut intel = intel.replace(" *", "*");
// Make mutability modifier adjacent to the pointer:
// float const * foo => float const* foo
intel = intel.replace("const *", "const*");
// Normalize mutability modifier to after the type:
// const float* foo => float const*
if intel.starts_with("const") && intel.ends_with("*") {
intel = intel.replace("const ", "");
intel = intel.replace("*", " const*");
}
let require_const = || {
if is_const {
return Ok(());
}
Err(format!("argument required to be const but isn't"))
};
match (t, &intel[..]) {
(&Type::PrimFloat(32), "float") => {}
(&Type::PrimFloat(64), "double") => {}
(&Type::PrimSigned(16), "__int16") => {}
(&Type::PrimSigned(16), "short") => {}
(&Type::PrimSigned(32), "__int32") => {}
(&Type::PrimSigned(32), "const int") => require_const()?,
(&Type::PrimSigned(32), "int") => {}
(&Type::PrimSigned(64), "__int64") => {}
(&Type::PrimSigned(64), "long long") => {}
(&Type::PrimSigned(8), "__int8") => {}
(&Type::PrimSigned(8), "char") => {}
(&Type::PrimUnsigned(16), "unsigned short") => {}
(&Type::PrimUnsigned(32), "unsigned int") => {}
(&Type::PrimUnsigned(32), "const unsigned int") => {}
(&Type::PrimUnsigned(64), "unsigned __int64") => {}
(&Type::PrimUnsigned(8), "unsigned char") => {}
(&Type::M64, "__m64") => {}
(&Type::M128, "__m128") => {}
(&Type::M128I, "__m128i") => {}
(&Type::M128D, "__m128d") => {}
(&Type::M256, "__m256") => {}
(&Type::M256I, "__m256i") => {}
(&Type::M256D, "__m256d") => {}
(&Type::M512, "__m512") => {}
(&Type::M512I, "__m512i") => {}
(&Type::M512D, "__m512d") => {}
(&Type::MutPtr(&Type::PrimFloat(32)), "float*") => {}
(&Type::MutPtr(&Type::PrimFloat(64)), "double*") => {}
(&Type::MutPtr(&Type::PrimFloat(32)), "void*") => {}
(&Type::MutPtr(&Type::PrimFloat(64)), "void*") => {}
(&Type::MutPtr(&Type::PrimSigned(32)), "int*") => {}
(&Type::MutPtr(&Type::PrimSigned(32)), "__int32*") => {}
(&Type::MutPtr(&Type::PrimSigned(64)), "__int64*") => {}
(&Type::MutPtr(&Type::PrimSigned(8)), "char*") => {}
(&Type::MutPtr(&Type::PrimUnsigned(16)), "unsigned short*") => {}
(&Type::MutPtr(&Type::PrimUnsigned(32)), "unsigned int*") => {}
(&Type::MutPtr(&Type::PrimUnsigned(64)), "unsigned __int64*") => {}
(&Type::MutPtr(&Type::PrimUnsigned(8)), "void*") => {}
(&Type::MutPtr(&Type::M64), "__m64*") => {}
(&Type::MutPtr(&Type::M128), "__m128*") => {}
(&Type::MutPtr(&Type::M128I), "__m128i*") => {}
(&Type::MutPtr(&Type::M128D), "__m128d*") => {}
(&Type::MutPtr(&Type::M256), "__m256*") => {}
(&Type::MutPtr(&Type::M256I), "__m256i*") => {}
(&Type::MutPtr(&Type::M256D), "__m256d*") => {}
(&Type::MutPtr(&Type::M512), "__m512*") => {}
(&Type::MutPtr(&Type::M512I), "__m512i*") => {}
(&Type::MutPtr(&Type::M512D), "__m512d*") => {}
(&Type::ConstPtr(&Type::PrimFloat(32)), "float const*") => {}
(&Type::ConstPtr(&Type::PrimFloat(64)), "double const*") => {}
(&Type::ConstPtr(&Type::PrimFloat(32)), "void const*") => {}
(&Type::ConstPtr(&Type::PrimFloat(64)), "void const*") => {}
(&Type::ConstPtr(&Type::PrimSigned(32)), "int const*") => {}
(&Type::ConstPtr(&Type::PrimSigned(32)), "__int32 const*") => {}
(&Type::ConstPtr(&Type::PrimSigned(64)), "__int64 const*") => {}
(&Type::ConstPtr(&Type::PrimSigned(8)), "char const*") => {}
(&Type::ConstPtr(&Type::PrimUnsigned(16)), "unsigned short const*") => {}
(&Type::ConstPtr(&Type::PrimUnsigned(32)), "unsigned int const*") => {}
(&Type::ConstPtr(&Type::PrimUnsigned(64)), "unsigned __int64 const*") => {}
(&Type::ConstPtr(&Type::PrimUnsigned(8)), "void const*") => {}
(&Type::ConstPtr(&Type::M64), "__m64 const*") => {}
(&Type::ConstPtr(&Type::M128), "__m128 const*") => {}
(&Type::ConstPtr(&Type::M128I), "__m128i const*") => {}
(&Type::ConstPtr(&Type::M128D), "__m128d const*") => {}
(&Type::ConstPtr(&Type::M256), "__m256 const*") => {}
(&Type::ConstPtr(&Type::M256I), "__m256i const*") => {}
(&Type::ConstPtr(&Type::M256D), "__m256d const*") => {}
(&Type::ConstPtr(&Type::M512), "__m512 const*") => {}
(&Type::ConstPtr(&Type::M512I), "__m512i const*") => {}
(&Type::ConstPtr(&Type::M512D), "__m512d const*") => {}
(&Type::MMASK8, "__mmask8") => {}
(&Type::MMASK16, "__mmask16") => {}
(&Type::MM_CMPINT_ENUM, "_MM_CMPINT_ENUM") => {}
// This is a macro (?) in C which seems to mutate its arguments, but
// that means that we're taking pointers to arguments in rust
// as we're not exposing it as a macro.
(&Type::MutPtr(&Type::M128), "__m128") if intrinsic == "_MM_TRANSPOSE4_PS" => {}
// The _rdtsc intrinsic uses a __int64 return type, but this is a bug in
// the intrinsics guide: https://github.com/rust-lang/stdarch/issues/559
// We have manually fixed the bug by changing the return type to `u64`.
(&Type::PrimUnsigned(64), "__int64") if intrinsic == "_rdtsc" => {}
// The _bittest and _bittest64 intrinsics takes a mutable pointer in the
// intrinsics guide even though it never writes through the pointer:
(&Type::ConstPtr(&Type::PrimSigned(32)), "__int32*") if intrinsic == "_bittest" => {}
(&Type::ConstPtr(&Type::PrimSigned(64)), "__int64*") if intrinsic == "_bittest64" => {}
// The _xrstor, _fxrstor, _xrstor64, _fxrstor64 intrinsics take a
// mutable pointer in the intrinsics guide even though they never write
// through the pointer:
(&Type::ConstPtr(&Type::PrimUnsigned(8)), "void*")
if intrinsic == "_xrstor"
|| intrinsic == "_xrstor64"
|| intrinsic == "_fxrstor"
|| intrinsic == "_fxrstor64" => {}
_ => bail!(
"failed to equate: `{}` and {:?} for {}",
intel,
t,
intrinsic
),
}
Ok(())
}
| {
// Verify that all `#[target_feature]` annotations are correct,
// ensuring that we've actually enabled the right instruction
// set for this intrinsic.
match rust.name {
"_bswap" | "_bswap64" => {}
// These don't actually have a target feature unlike their brethren with
// the `x` inside the name which requires adx
"_addcarry_u32" | "_addcarry_u64" | "_subborrow_u32" | "_subborrow_u64" => {}
"_bittest"
| "_bittestandset"
| "_bittestandreset"
| "_bittestandcomplement"
| "_bittest64"
| "_bittestandset64"
| "_bittestandreset64"
| "_bittestandcomplement64" => {}
_ => {
if intel.cpuid.is_empty() {
bail!("missing cpuid for {}", rust.name);
}
}
}
for cpuid in &intel.cpuid {
// The pause intrinsic is in the SSE2 module, but it is backwards
// compatible with CPUs without SSE2, and it therefore does not need the
// target-feature attribute.
if rust.name == "_mm_pause" {
continue;
}
// this is needed by _xsave and probably some related intrinsics,
// but let's just skip it for now.
if *cpuid == "XSS" {
continue;
}
// these flags on the rdtsc/rtdscp intrinsics we don't test for right
// now, but we may wish to add these one day!
//
// For more info see #308
if *cpuid == "TSC" || *cpuid == "RDTSCP" {
continue;
}
let cpuid = cpuid
.chars()
.flat_map(|c| c.to_lowercase())
.collect::<String>();
// Fix mismatching feature names:
let fixup_cpuid = |cpuid: String| match cpuid.as_ref() {
// The XML file names IFMA as "avx512ifma52", while Rust calls
// it "avx512ifma".
"avx512ifma52" => String::from("avx512ifma"),
// Some AVX512f intrinsics are also supported by Knight's Corner.
// The XML lists them as avx512f/kncni, but we are solely gating
// them behind avx512f since we don't have a KNC feature yet.
"avx512f/kncni" => String::from("avx512f"),
// See: https://github.com/rust-lang/stdarch/issues/738
// The intrinsics guide calls `f16c` `fp16c` in disagreement with
// Intel's architecture manuals.
"fp16c" => String::from("f16c"),
_ => cpuid,
};
let fixed_cpuid = fixup_cpuid(cpuid);
let rust_feature = rust
.target_feature
.expect(&format!("no target feature listed for {}", rust.name));
if rust_feature.contains(&fixed_cpuid) {
continue;
}
bail!(
"intel cpuid `{}` not in `{}` for {}",
fixed_cpuid,
rust_feature,
rust.name
)
}
if PRINT_INSTRUCTION_VIOLATIONS {
if rust.instrs.is_empty() {
if !intel.instruction.is_empty() {
println!(
"instruction not listed for `{}`, but intel lists {:?}",
rust.name, intel.instruction
);
}
// If intel doesn't list any instructions and we do then don't
// bother trying to look for instructions in intel, we've just got
// some extra assertions on our end.
} else if !intel.instruction.is_empty() {
for instr in rust.instrs {
let asserting = intel.instruction.iter().any(|a| a.name.starts_with(instr));
if !asserting {
println!(
"intel failed to list `{}` as an instruction for `{}`",
instr, rust.name
);
}
}
}
}
// Make sure we've got the right return type.
if let Some(t) = rust.ret {
equate(t, &intel.return_.type_, rust.name, false)?;
} else if intel.return_.type_ != "" && intel.return_.type_ != "void" {
bail!(
"{} returns `{}` with intel, void in rust",
rust.name,
intel.return_.type_
)
}
// If there's no arguments on Rust's side intel may list one "void"
// argument, so handle that here.
if rust.arguments.is_empty() && intel.parameters.len() == 1 {
if intel.parameters[0].type_ != "void" {
bail!("rust has 0 arguments, intel has one for")
}
} else {
// Otherwise we want all parameters to be exactly the same
if rust.arguments.len() != intel.parameters.len() {
bail!("wrong number of arguments on {}", rust.name)
}
for (i, (a, b)) in intel.parameters.iter().zip(rust.arguments).enumerate() {
let is_const = rust.required_const.contains(&i);
equate(b, &a.type_, &intel.name, is_const)?;
}
}
let any_i64 = rust
.arguments
.iter()
.cloned()
.chain(rust.ret)
.any(|arg| match *arg {
Type::PrimSigned(64) | Type::PrimUnsigned(64) => true,
_ => false,
});
let any_i64_exempt = match rust.name {
// These intrinsics have all been manually verified against Clang's
// headers to be available on x86, and the u64 arguments seem
// spurious I guess?
"_xsave" | "_xrstor" | "_xsetbv" | "_xgetbv" | "_xsaveopt" | "_xsavec" | "_xsaves"
| "_xrstors" => true,
// Apparently all of clang/msvc/gcc accept these intrinsics on
// 32-bit, so let's do the same
"_mm_set_epi64x" | "_mm_set1_epi64x" | "_mm256_set_epi64x" | "_mm256_setr_epi64x"
| "_mm256_set1_epi64x" | "_mm512_set1_epi64" => true,
// These return a 64-bit argument but they're assembled from other
// 32-bit registers, so these work on 32-bit just fine. See #308 for
// more info.
"_rdtsc" | "__rdtscp" => true,
_ => false,
};
if any_i64 && !any_i64_exempt && !rust.file.contains("x86_64") {
bail!(
"intrinsic `{}` uses a 64-bit bare type but may be \
available on 32-bit platforms",
rust.name
)
}
Ok(())
} |
is_valid.js | var moment = require("../../moment");
exports.is_valid = {
"array bad month" : function (test) {
test.expect(2);
test.equal(moment([2010, -1]).isValid(), false, 'month -1');
test.equal(moment([2100, 12]).isValid(), false, 'month 12');
test.done();
},
"array good month" : function (test) {
test.expect(24);
for (var i = 0; i < 12; i++) {
test.equal(moment([2010, i]).isValid(), true, 'month ' + i);
test.equal(moment.utc([2010, i]).isValid(), true, 'month ' + i);
}
test.done();
},
"array bad date" : function (test) {
test.expect(4);
test.equal(moment([2010, 0, 0]).isValid(), false, 'date 0');
test.equal(moment([2100, 0, 32]).isValid(), false, 'date 32');
test.equal(moment.utc([2010, 0, 0]).isValid(), false, 'utc date 0');
test.equal(moment.utc([2100, 0, 32]).isValid(), false, 'utc date 32');
test.done();
},
"array bad date leap year" : function (test) {
test.expect(8);
test.equal(moment([2010, 1, 29]).isValid(), false, '2010 feb 29');
test.equal(moment([2100, 1, 29]).isValid(), false, '2100 feb 29');
test.equal(moment([2008, 1, 30]).isValid(), false, '2008 feb 30');
test.equal(moment([2000, 1, 30]).isValid(), false, '2000 feb 30');
test.equal(moment.utc([2010, 1, 29]).isValid(), false, 'utc 2010 feb 29');
test.equal(moment.utc([2100, 1, 29]).isValid(), false, 'utc 2100 feb 29');
test.equal(moment.utc([2008, 1, 30]).isValid(), false, 'utc 2008 feb 30');
test.equal(moment.utc([2000, 1, 30]).isValid(), false, 'utc 2000 feb 30');
test.done();
},
"string + formats bad date" : function (test) {
test.expect(9);
test.equal(moment('2020-00-00', ['YYYY-MM-DD', 'DD-MM-YYYY']).isValid(), false, 'invalid on all in array');
test.equal(moment('2020-00-00', ['DD-MM-YYYY', 'YYYY-MM-DD']).isValid(), false, 'invalid on all in array');
test.equal(moment('2020-01-01', ['YYYY-MM-DD', 'DD-MM-YYYY']).isValid(), true, 'valid on first');
test.equal(moment('2020-01-01', ['DD-MM-YYYY', 'YYYY-MM-DD']).isValid(), true, 'valid on last');
test.equal(moment('2020-01-01', ['YYYY-MM-DD', 'YYYY-DD-MM']).isValid(), true, 'valid on both');
test.equal(moment('2020-13-01', ['YYYY-MM-DD', 'YYYY-DD-MM']).isValid(), true, 'valid on last');
test.equal(moment('12-13-2012', ['DD-MM-YYYY', 'YYYY-MM-DD']).isValid(), false, 'month rollover');
test.equal(moment('12-13-2012', ['DD-MM-YYYY', 'DD-MM-YYYY']).isValid(), false, 'month rollover');
test.equal(moment('38-12-2012', ['DD-MM-YYYY']).isValid(), false, 'day rollover');
test.done();
},
"string nonsensical" : function (test) {
test.expect(1);
test.equal(moment('fail').isValid(), false, 'string "fail"');
test.done();
},
"string nonsensical with format" : function (test) {
test.expect(2);
test.equal(moment('fail', "MM-DD-YYYY").isValid(), false, 'string "fail" with format "MM-DD-YYYY"');
test.equal(moment("xx-xx-2001", 'DD-MM-YYY').isValid(), false, 'string "xx-xx-2001" with format "MM-DD-YYYY"');
test.done();
},
"string with bad month name" : function (test) {
test.expect(2);
moment.lang('en');
test.equal(moment('01-Nam-2012', 'DD-MMM-YYYY').isValid(), false, '"Nam" is an invalid month');
test.equal(moment('01-Aug-2012', 'DD-MMM-YYYY').isValid(), true, '"Aug" is a valid month');
test.done();
},
"string with spaceless format" : function (test) {
test.expect(1);
test.equal(moment('10Sep2001', 'DDMMMYYYY').isValid(), true, "Parsing 10Sep2001 should result in a valid date");
test.done();
},
"invalid string iso 8601" : function (test) {
var tests = [
'2010-00-00',
'2010-01-00',
'2010-01-40',
'2010-01-01T24',
'2010-01-01T23:60',
'2010-01-01T23:59:60'
], i;
test.expect(tests.length * 2);
|
for (i = 0; i < tests.length; i++) {
test.equal(moment(tests[i]).isValid(), false, tests[i] + ' should be invalid');
test.equal(moment.utc(tests[i]).isValid(), false, tests[i] + ' should be invalid');
}
test.done();
},
"invalid string iso 8601 + timezone" : function (test) {
var tests = [
'2010-00-00+00:00',
'2010-01-00+00:00',
'2010-01-40+00:00',
'2010-01-40T24+00:00',
'2010-01-40T23:60+00:00',
'2010-01-40T23:59:60+00:00',
'2010-01-40T23:59:59.9999+00:00'
], i;
test.expect(tests.length * 2);
for (i = 0; i < tests.length; i++) {
test.equal(moment(tests[i]).isValid(), false, tests[i] + ' should be invalid');
test.equal(moment.utc(tests[i]).isValid(), false, tests[i] + ' should be invalid');
}
test.done();
},
"valid string iso 8601 + timezone" : function (test) {
var tests = [
'2010-01-01',
'2010-01-30',
'2010-01-30T23+00:00',
'2010-01-30T23:59+00:00',
'2010-01-30T23:59:59+00:00',
'2010-01-30T23:59:59.999+00:00',
'2010-01-30T23:59:59.999-07:00',
'2010-01-30T00:00:00.000+07:00'
], i;
test.expect(tests.length * 2);
for (i = 0; i < tests.length; i++) {
test.equal(moment(tests[i]).isValid(), true, tests[i] + ' should be valid');
test.equal(moment.utc(tests[i]).isValid(), true, tests[i] + ' should be valid');
}
test.done();
},
"invalidAt" : function (test) {
test.expect(7);
test.equal(moment([2000, 12]).invalidAt(), 1, 'month 12 is invalid: 0-11');
test.equal(moment([2000, 1, 30]).invalidAt(), 2, '30 is not a valid february day');
test.equal(moment([2000, 1, 29, 24]).invalidAt(), 3, '24 is invalid hour');
test.equal(moment([2000, 1, 29, 23, 60]).invalidAt(), 4, '60 is invalid minute');
test.equal(moment([2000, 1, 29, 23, 59, 60]).invalidAt(), 5, '60 is invalid second');
test.equal(moment([2000, 1, 29, 23, 59, 59, 1000]).invalidAt(), 6, '1000 is invalid millisecond');
test.equal(moment([2000, 1, 29, 23, 59, 59, 999]).invalidAt(), -1, '-1 if everything is fine');
test.done();
},
"valid Unix timestamp" : function (test) {
test.expect(21);
test.equal(moment(1371065286, "X").isValid(), true, 'number integer');
test.equal(moment(1379066897.0, "X").isValid(), true, 'number whole 1dp');
test.equal(moment(1379066897.7, "X").isValid(), true, 'number 1dp');
test.equal(moment(1379066897.00, "X").isValid(), true, 'number whole 2dp');
test.equal(moment(1379066897.07, "X").isValid(), true, 'number 2dp');
test.equal(moment(1379066897.17, "X").isValid(), true, 'number 2dp');
test.equal(moment(1379066897.000, "X").isValid(), true, 'number whole 3dp');
test.equal(moment(1379066897.007, "X").isValid(), true, 'number 3dp');
test.equal(moment(1379066897.017, "X").isValid(), true, 'number 3dp');
test.equal(moment(1379066897.157, "X").isValid(), true, 'number 3dp');
test.equal(moment("1371065286", "X").isValid(), true, 'string integer');
test.equal(moment("1379066897.", "X").isValid(), true, 'string trailing .');
test.equal(moment("1379066897.0", "X").isValid(), true, 'string whole 1dp');
test.equal(moment("1379066897.7", "X").isValid(), true, 'string 1dp');
test.equal(moment("1379066897.00", "X").isValid(), true, 'string whole 2dp');
test.equal(moment("1379066897.07", "X").isValid(), true, 'string 2dp');
test.equal(moment("1379066897.17", "X").isValid(), true, 'string 2dp');
test.equal(moment("1379066897.000", "X").isValid(), true, 'string whole 3dp');
test.equal(moment("1379066897.007", "X").isValid(), true, 'string 3dp');
test.equal(moment("1379066897.017", "X").isValid(), true, 'string 3dp');
test.equal(moment("1379066897.157", "X").isValid(), true, 'string 3dp');
test.done();
},
"invalid Unix timestamp" : function (test) {
test.expect(8);
test.equal(moment(undefined, "X").isValid(), false, 'undefined');
test.equal(moment("undefined", "X").isValid(), false, 'string undefined');
try {
test.equal(moment(null, "X").isValid(), false, 'null');
} catch (e) {
test.ok(true, 'null');
}
test.equal(moment("null", "X").isValid(), false, 'string null');
test.equal(moment([], "X").isValid(), false, 'array');
test.equal(moment("{}", "X").isValid(), false, 'object');
try {
test.equal(moment("", "X").isValid(), false, 'string empty');
} catch (e) {
test.ok(true, 'string empty');
}
test.equal(moment(" ", "X").isValid(), false, 'string space');
test.done();
}
}; | |
actions.rs | use crate::{DocumentCommand, File as FileArg, FileCommand, FileFormat, TransformCommand};
use atelier_lib::actions::{standard_model_lint, standard_model_validation};
use atelier_lib::core::action::ActionIssue;
use atelier_lib::core::error::{Error as ModelError, ErrorKind, Result as ModelResult};
use atelier_lib::core::io::read_model_from_string;
use atelier_lib::core::io::ModelWriter;
use atelier_lib::core::model::{Model, NamespaceID};
use atelier_lib::format::document::writer::describe_model;
use atelier_lib::format::json::{JsonReader, JsonWriter};
use atelier_lib::format::plant_uml::writer::PlantUmlWriter;
use atelier_lib::format::smithy::{SmithyReader, SmithyWriter};
use somedoc::write::{write_document, OutputFormat};
use std::error::Error;
use std::fs::File;
use std::io::{Read, Write};
use std::str::FromStr;
// ------------------------------------------------------------------------------------------------
// Public Functions
// ------------------------------------------------------------------------------------------------
pub fn lint_file(cmd: FileCommand) -> ModelResult<Vec<ActionIssue>> {
standard_model_lint(&read_model(cmd.input_file)?, false)
}
pub fn validate_file(cmd: FileCommand) -> ModelResult<Vec<ActionIssue>> {
standard_model_validation(&read_model(cmd.input_file)?, false)
}
pub fn convert_file_format(cmd: TransformCommand) -> Result<(), Box<dyn Error>> {
transform_file(cmd.input_file, cmd.output_file, cmd.namespace, None)
}
pub fn document_file(cmd: DocumentCommand) -> Result<(), Box<dyn Error>> {
document_a_file(cmd.input_file, cmd.output_file, cmd.output_format)
}
// ------------------------------------------------------------------------------------------------
// Private Functions
// ------------------------------------------------------------------------------------------------
fn | (input: FileArg) -> ModelResult<Model> {
let reader = match input.format {
FileFormat::Json => read_json,
FileFormat::Smithy => read_smithy,
_ => {
return Err(ErrorKind::InvalidRepresentation("read".to_string()).into());
}
};
let mut file: Box<dyn Read> = match input.file_name {
None => Box::new(std::io::stdin()),
Some(file_name) => Box::new(File::open(file_name)?),
};
let mut content: Vec<u8> = Vec::default();
let _ = file.read_to_end(&mut content).unwrap();
reader(content)
}
fn write_model(
model: Model,
output: FileArg,
namespace: Option<String>,
) -> Result<(), Box<dyn Error>> {
let mut file: Box<dyn Write> = match output.file_name {
None => Box::new(std::io::stdout()),
Some(file_name) => Box::new(File::open(file_name)?),
};
match output.format {
FileFormat::Json => write_json(&mut file, model),
FileFormat::Smithy => write_smithy(
&mut file,
model,
NamespaceID::from_str(&namespace.unwrap()).unwrap(),
),
FileFormat::Uml => write_uml(&mut file, model),
}
}
fn transform_file(
input: FileArg,
output: FileArg,
namespace: Option<String>,
transform_fn: Option<&dyn Fn(Model) -> Result<Model, Box<dyn Error>>>,
) -> Result<(), Box<dyn Error>> {
let model = read_model(input)?;
let model = if let Some(transform_fn) = transform_fn {
transform_fn(model)?
} else {
model
};
write_model(model, output, namespace)
}
fn document_a_file(
input: FileArg,
output: FileArg,
format: OutputFormat,
) -> Result<(), Box<dyn Error>> {
let model = read_model(input)?;
let document = describe_model(&model)?;
let mut file: Box<dyn Write> = match output.file_name {
None => Box::new(std::io::stdout()),
Some(file_name) => Box::new(File::open(file_name)?),
};
write_document(&document, format, &mut file)?;
Ok(())
}
fn read_json(content: Vec<u8>) -> Result<Model, ModelError> {
read_model_from_string(&mut JsonReader::default(), content)
}
fn read_smithy(content: Vec<u8>) -> Result<Model, ModelError> {
read_model_from_string(&mut SmithyReader::default(), content)
}
fn write_json(w: &mut impl Write, model: Model) -> Result<(), Box<dyn Error>> {
let mut writer = JsonWriter::new(true);
writer.write(w, &model)?;
Ok(())
}
fn write_smithy(
w: &mut impl Write,
model: Model,
namespace: NamespaceID,
) -> Result<(), Box<dyn Error>> {
let mut writer = SmithyWriter::new(namespace);
writer.write(w, &model)?;
Ok(())
}
fn write_uml(w: &mut impl Write, model: Model) -> Result<(), Box<dyn Error>> {
let mut writer = PlantUmlWriter::default();
writer.write(w, &model)?;
Ok(())
}
| read_model |
immutableVet.go | package main // import "myitcv.io/immutable/cmd/immutableVet"
import (
"bytes"
"flag"
"fmt"
"go/ast"
"go/importer"
"go/parser"
"go/printer"
"go/token"
"go/types"
"os"
"path"
"path/filepath"
"sort"
"strings"
"go/build"
"github.com/kisielk/gotool"
"myitcv.io/gogenerate"
"myitcv.io/immutable"
"myitcv.io/immutable/util"
)
const (
skipFileComment = "//" + immutable.CmdImmutableVet + ":skipFile"
)
var fset = token.NewFileSet()
type immutableVetter struct {
pkgs map[string]*ast.Package
bpkg *build.Package
wd string
skipFiles map[string]bool
info *types.Info
// immTmpls is the set of immutable template types in the package
// being analysed
immTmpls map[types.Type]bool
// helper field used to hold Range() method calls on immutable types
rngs map[*ast.Ident]bool
// valid composite literals
vcls map[*ast.CompositeLit]bool
errlist []immErr
}
var typesCache = map[string]bool{
"time.Time": true,
}
type immErr struct {
pos token.Position
msg string
}
type errors []immErr
var immIntf *types.Interface
func main() {
flag.Parse()
wd, err := os.Getwd()
if err != nil {
fatalf("could not get the working directory")
}
specs := gotool.ImportPaths(flag.Args())
emsgs := vet(wd, specs)
for _, msg := range emsgs {
fmt.Fprintf(os.Stderr, "%v\n", msg)
}
if len(emsgs) > 0 {
os.Exit(1)
}
}
func loadImmIntf() |
func vet(wd string, specs []string) []immErr {
var emsgs []immErr
loadImmIntf()
// vetting phase: vet all packages packages passed in through the command line
for _, spec := range specs {
// reuse spec and import paths map to depPkg
bpkg, err := build.Import(spec, wd, 0)
if err != nil {
fatalf("unable to import %v relative to %v: %v", spec, wd, err)
}
iv := newImmutableVetter(bpkg, wd)
emsgs = append(emsgs, iv.vetPackages()...)
}
for i := range emsgs {
rel, err := filepath.Rel(wd, emsgs[i].pos.Filename)
if err != nil {
fatalf("relative path error, %v", err)
}
emsgs[i].pos.Filename = rel
}
sort.Sort(errors(emsgs))
return emsgs
}
func (iv *immutableVetter) ensurePointerTyp(n ast.Node, typ ast.Expr) {
if ts, ok := n.(*ast.TypeSpec); ok {
if ts.Assign.IsValid() {
// we are an alias; this is fine in all cases
return
}
}
t := iv.info.Types[typ].Type
p := types.NewPointer(t)
switch util.IsImmType(p).(type) {
case util.ImmTypeMap, util.ImmTypeSlice, util.ImmTypeStruct:
iv.errorf(n.Pos(), "type should be %v", p)
}
}
func (iv *immutableVetter) Visit(node ast.Node) ast.Visitor {
switch node := node.(type) {
case *ast.File:
for _, cg := range node.Comments {
for _, c := range cg.List {
if c.Text == skipFileComment {
iv.skipFiles[fset.Position(node.Pos()).Filename] = true
return nil
}
}
}
case *ast.ValueSpec:
iv.ensurePointerTyp(node, node.Type)
case *ast.ArrayType:
iv.ensurePointerTyp(node, node.Elt)
case *ast.MapType:
iv.ensurePointerTyp(node, node.Key)
iv.ensurePointerTyp(node, node.Value)
case *ast.Field:
iv.ensurePointerTyp(node, node.Type)
case *ast.UnaryExpr:
if node.Op != token.AND {
break
}
cl, ok := node.X.(*ast.CompositeLit)
if !ok {
break
}
t := iv.info.Types[cl.Type].Type
p := types.NewPointer(t)
switch util.IsImmType(p).(type) {
case util.ImmTypeMap, util.ImmTypeSlice, util.ImmTypeStruct:
iv.errorf(node.Pos(), "construct using new() or generated constructors")
iv.vcls[cl] = true
}
case *ast.CompositeLit:
if ok := iv.vcls[node]; ok {
break
}
iv.ensurePointerTyp(node, node.Type)
case *ast.TypeSpec:
iv.ensurePointerTyp(node, node.Type)
case *ast.SelectorExpr:
sel, ok := iv.info.Selections[node]
if !ok {
// this is fine... !ok implies a selector expression
// that is a qualified identifier as opposed to a method
// field selector
break
}
if !isImmListOrMap(sel.Recv()) {
break
}
switch node.Sel.Name {
case "Range":
if _, ok := iv.rngs[node.Sel]; !ok {
iv.rngs[node.Sel] = false
}
}
case *ast.RangeStmt:
v := node.X
ce, ok := v.(*ast.CallExpr)
if !ok {
break
}
e := ce.Fun
se, ok := e.(*ast.SelectorExpr)
if !ok {
break
}
sel, ok := iv.info.Selections[se]
if !ok {
// then it must be a qualified identifier
break
}
if !isImmListOrMap(sel.Recv()) {
break
}
if sel.Kind() != types.MethodVal {
break
}
ri := se.Sel
if ri.Name != "Range" {
break
}
iv.rngs[ri] = true
case *ast.CallExpr:
switch fun := node.Fun.(type) {
case *ast.Ident:
if fun.Name != "append" {
break
}
if len(node.Args) != 2 {
break
}
e := node.Args[1]
ce, ok := e.(*ast.CallExpr)
if !ok {
break
}
se, ok := ce.Fun.(*ast.SelectorExpr)
if !ok {
break
}
sel, ok := iv.info.Selections[se]
if !ok {
break
}
if !isImmListOrMap(sel.Recv()) {
break
}
ri := se.Sel
if ri.Name != "Range" {
break
}
if node.Ellipsis == node.Args[1].End() {
iv.rngs[ri] = true
}
case *ast.SelectorExpr:
sel, ok := iv.info.Selections[fun]
if !ok {
// this is fine... !ok implies a selector expression
// that is a qualified identifier as opposed to a method
// field selector
break
}
if !isImmListOrMap(sel.Recv()) {
break
}
if sel.Kind() != types.MethodVal {
break
}
ri := fun.Sel
if ri.Name != "Append" {
break
}
if len(node.Args) != 1 {
break
}
if node.Ellipsis == token.NoPos {
break
}
ace, ok := node.Args[0].(*ast.CallExpr)
if !ok {
break
}
{
se, ok := ace.Fun.(*ast.SelectorExpr)
if !ok {
break
}
sel, ok := iv.info.Selections[se]
if !ok {
// this is fine... !ok implies a selector expression
// that is a qualified identifier as opposed to a method
// field selector
break
}
if !isImmListOrMap(sel.Recv()) {
break
}
if sel.Kind() != types.MethodVal {
break
}
ri := se.Sel
if ri.Name == "Range" {
iv.rngs[ri] = true
}
}
}
}
return iv
}
func isImmListOrMap(t types.Type) bool {
switch util.IsImmType(t).(type) {
case util.ImmTypeMap, util.ImmTypeSlice:
return true
}
return false
}
func newImmutableVetter(ipkg *build.Package, wd string) *immutableVetter {
goFiles := make(map[string]bool)
for _, v := range [][]string{ipkg.GoFiles, ipkg.TestGoFiles, ipkg.XTestGoFiles} {
for _, f := range v {
goFiles[f] = true
}
}
isGoFile := func(fi os.FileInfo) bool {
return goFiles[fi.Name()]
}
pkgs, err := parser.ParseDir(fset, ipkg.Dir, isGoFile, parser.ParseComments)
if err != nil {
fatalf("could not parse package directory for %v", ipkg.Name)
}
return &immutableVetter{
pkgs: pkgs,
bpkg: ipkg,
vcls: make(map[*ast.CompositeLit]bool),
wd: wd,
skipFiles: make(map[string]bool),
}
}
func (iv *immutableVetter) isImmTmpl(t types.Type) bool {
switch t := t.(type) {
case *types.Pointer:
return iv.isImmTmpl(t.Elem())
}
return iv.immTmpls[t]
}
func (iv *immutableVetter) vetPackages() []immErr {
for _, pkg := range iv.pkgs {
iv.rngs = make(map[*ast.Ident]bool)
// make a list of files for using it in Check func
files := make([]*ast.File, 0, len(pkg.Files))
for _, f := range pkg.Files {
files = append(files, f)
}
// check types for the core package
conf := types.Config{
Importer: importer.Default(),
}
info := &types.Info{
Selections: make(map[*ast.SelectorExpr]*types.Selection),
Defs: make(map[*ast.Ident]types.Object),
Types: make(map[ast.Expr]types.TypeAndValue),
Implicits: make(map[ast.Node]types.Object),
Scopes: make(map[ast.Node]*types.Scope),
}
_, err := conf.Check(iv.bpkg.ImportPath, fset, files, info)
if err != nil {
fatalf("type checking failed, %v", err)
}
iv.info = info
iv.immTmpls = make(map[types.Type]bool)
for _, f := range pkg.Files {
for _, d := range f.Decls {
gd, ok := d.(*ast.GenDecl)
if !ok {
continue
}
if gd.Tok != token.TYPE {
continue
}
for _, s := range gd.Specs {
ts := s.(*ast.TypeSpec)
_, ok := util.IsImmTmplAst(ts)
if !ok {
continue
}
o := info.ObjectOf(ts.Name)
iv.immTmpls[o.Type()] = true
st, ok := o.Type().(*types.Named).Underlying().(*types.Struct)
if !ok {
continue
}
for i := 0; i < st.NumFields(); i++ {
f := st.Field(i)
if !isImmType(f.Type()) {
msg := fmt.Sprintf("immutable struct field must be immutable type; %v is not", f.Type())
iv.errorf(f.Pos(), msg)
}
}
}
}
}
ast.Walk(iv, pkg)
for exp, t := range info.Types {
out := bytes.NewBuffer(nil)
printer.Fprint(out, fset, exp)
switch {
case t.IsType():
typ := t.Type
if !iv.isImmTmpl(typ) {
continue
}
fn := fset.Position(exp.Pos()).Filename
if !gogenerate.FileGeneratedBy(fn, immutable.CmdImmutableGen) {
iv.errorf(exp.Pos(), "template type %v should never get used", typ)
}
case t.IsValue():
p := types.NewPointer(t.Type)
switch util.IsImmType(p).(type) {
case util.ImmTypeMap:
case util.ImmTypeSlice:
case util.ImmTypeStruct:
default:
continue
}
fn := fset.Position(exp.Pos()).Filename
if !iv.skipFiles[fn] {
iv.errorf(exp.Pos(), "non-pointer value of immutable type %v found", p)
}
}
}
// find selector exprs which access properties of Immutable types
for exp, sel := range info.Selections {
isField := sel.Kind() == types.FieldVal
if !isField {
continue
}
if util.IsImmType(sel.Recv()) == nil {
continue
}
if iv.skipFiles[fset.Position(exp.X.Pos()).Filename] {
continue
}
oname := sel.Obj().Name()
iv.errorf(exp.X.Pos(), "should not be using %v of %v immutable type", oname, sel.Recv())
}
for k, v := range iv.rngs {
if v == false {
msg := fmt.Sprintf("Range() of immutable type must appear in a range statement or used with an ellipsis as the second argument to append")
iv.errorf(k.NamePos, msg)
}
}
}
return iv.errlist
}
func isImmType(t types.Type) bool {
if v, ok := typesCache[t.String()]; ok {
return v
}
switch t := t.(type) {
case *types.Named:
typesCache[t.String()] = true
v := isImmType(t.Underlying())
typesCache[t.String()] = v
return v
case *types.Basic:
return true
case *types.Map, *types.Slice:
return false
case *types.Pointer:
return util.IsImmType(t) != nil
case *types.Struct:
for i := 0; i < t.NumFields(); i++ {
f := t.Field(i)
if !isImmType(f.Type()) {
return false
}
}
return true
case *types.Interface:
return types.Implements(t, immIntf)
case *types.Signature:
return false
default:
fatalf("unable to handle type %T %v", t, t)
}
return false
}
func (iv *immutableVetter) errorf(pos token.Pos, format string, args ...interface{}) {
msg := fmt.Sprintf(format, args...)
iv.errlist = append(iv.errlist, immErr{
pos: fset.Position(pos),
msg: msg,
})
}
func fatalf(format string, args ...interface{}) {
panic(fmt.Errorf(format, args...))
}
func (r immErr) String() string {
return fmt.Sprintf("%v:%v:%v: %v", r.pos.Filename, r.pos.Line, r.pos.Column, r.msg)
}
func (e errors) Len() int {
return len(e)
}
func (e errors) Swap(i, j int) {
e[i], e[j] = e[j], e[i]
}
func (e errors) Less(i, j int) bool {
l, r := e[i].pos, e[j].pos
if v := strings.Compare(l.Filename, r.Filename); v != 0 {
return v < 0
}
if l.Line != r.Line {
return l.Line < r.Line
}
if l.Column != r.Column {
return l.Column < r.Column
}
return e[i].msg < e[j].msg
}
| {
ip := "myitcv.io/immutable"
bpkg, err := build.Import(ip, "", 0)
if err != nil {
fatalf("failed to import %v: %v", ip, err)
}
pkgs, err := parser.ParseDir(fset, bpkg.Dir, nil, 0)
if err != nil {
fatalf("failed to parse dir %v for package %v: %v", bpkg.Dir, ip, err)
}
pn := path.Base(ip)
pkg, ok := pkgs[pn]
if !ok {
fatalf("failed to find package named %v in dir %v", pn, bpkg.Dir)
}
files := make([]*ast.File, 0, len(pkg.Files))
for _, f := range pkg.Files {
files = append(files, f)
}
conf := types.Config{
FakeImportC: true,
Importer: importer.For("gc", nil),
}
tpkg, err := conf.Check(ip, fset, files, nil)
if err != nil {
fatalf("type checking %v failed, %v", ip, err)
}
o := tpkg.Scope().Lookup("Immutable")
if o == nil {
fatalf("failed to find anything called Immutable in pkg scope of %v", ip)
}
tn, ok := o.(*types.TypeName)
if !ok {
fatalf("Immutable is not a *types.TypeName: %T", o)
}
nmd, ok := tn.Type().(*types.Named)
if !ok {
fatalf("Immutable type is not a *types.Named: %T", tn.Type())
}
intf, ok := nmd.Underlying().(*types.Interface)
if !ok {
fatalf("Underlying type is not a *types.Interface: %T", nmd.Underlying())
}
immIntf = intf
} |
clusterCapacityProviderAssociations.d.ts | import { ResourceBase } from '../resource';
import { Value, List } from '../dataTypes';
export declare class CapacityProviderStrategy {
Base?: Value<number>;
Weight?: Value<number>;
CapacityProvider: Value<string>;
constructor(properties: CapacityProviderStrategy); | CapacityProviders: List<Value<string>>;
Cluster: Value<string>;
DefaultCapacityProviderStrategy: List<CapacityProviderStrategy>;
}
export default class ClusterCapacityProviderAssociations extends ResourceBase<ClusterCapacityProviderAssociationsProperties> {
static CapacityProviderStrategy: typeof CapacityProviderStrategy;
constructor(properties: ClusterCapacityProviderAssociationsProperties);
} | }
export interface ClusterCapacityProviderAssociationsProperties { |
0002_alter_tweet_date.py | # Generated by Django 3.2.9 on 2021-11-02 04:43
from django.db import migrations, models
class | (migrations.Migration):
dependencies = [
('tweet', '0001_initial'),
]
operations = [
migrations.AlterField(
model_name='tweet',
name='date',
field=models.CharField(max_length=100),
),
]
| Migration |
lib.rs | //! A custom kubelet backend that can run [waSCC](https://wascc.dev/) based workloads
//!
//! The crate provides the [`WasccProvider`] type which can be used
//! as a provider with [`kubelet`].
//!
//! # Example
//! ```rust,no_run
//! use kubelet::{Kubelet, config::Config};
//! use kubelet::module_store::FileModuleStore;
//! use wascc_provider::WasccProvider;
//!
//! #[tokio::main]
//! async fn main() {
//! // Get a configuration for the Kubelet
//! let kubelet_config = Config::default();
//! let client = oci_distribution::Client::default();
//! let store = FileModuleStore::new(client, &std::path::PathBuf::from(""));
//!
//! // Load a kubernetes configuration
//! let kubeconfig = kube::config::load_kube_config().await.unwrap();
//!
//! // Instantiate the provider type
//! let provider = WasccProvider::new(store, &kubelet_config, kubeconfig.clone()).await.unwrap();
//!
//! // Instantiate the Kubelet
//! let kubelet = Kubelet::new(provider, kubeconfig, kubelet_config);
//! // Start the Kubelet and block on it
//! kubelet.start().await.unwrap();
//! }
//! ```
#![warn(missing_docs)]
use async_trait::async_trait;
use kubelet::handle::{key_from_pod, pod_key, PodHandle, RuntimeHandle, Stop};
use kubelet::module_store::ModuleStore;
use kubelet::provider::ProviderError;
use kubelet::status::{ContainerStatus, Status};
use kubelet::{Pod, Provider};
use log::{debug, error, info, warn};
use tempfile::NamedTempFile;
use tokio::fs::File;
use tokio::sync::watch::{self, Receiver};
use tokio::sync::RwLock;
use wascc_host::{host, Actor, NativeCapability};
use wascc_logging::LOG_PATH_KEY;
use std::collections::HashMap;
use std::path::{Path, PathBuf};
use std::sync::Arc;
/// The architecture that the pod targets.
const TARGET_WASM32_WASCC: &str = "wasm32-wascc";
/// The name of the HTTP capability.
const HTTP_CAPABILITY: &str = "wascc:http_server";
/// The name of the Logging capability.
const LOG_CAPABILITY: &str = "wascc:logging";
/// The root directory of waSCC logs.
const LOG_DIR_NAME: &str = "wascc-logs";
#[cfg(target_os = "linux")]
const HTTP_LIB: &str = "lib/libwascc_httpsrv.so";
#[cfg(target_os = "linux")]
const LOG_LIB: &str = "lib/libwascc_logging.so";
#[cfg(target_os = "macos")]
const HTTP_LIB: &str = "lib/libwascc_httpsrv.dylib";
#[cfg(target_os = "macos")]
const LOG_LIB: &str = "lib/libwascc_logging.dylib";
/// Kubernetes' view of environment variables is an unordered map of string to string.
type EnvVars = std::collections::HashMap<String, String>;
/// A [kubelet::handle::Stop] implementation for a wascc actor
pub struct ActorStopper {
/// The public key of the wascc Actor that will be stopped
pub key: String,
}
#[async_trait::async_trait]
impl Stop for ActorStopper {
async fn stop(&mut self) -> anyhow::Result<()> {
debug!("stopping wascc instance {}", self.key);
host::remove_actor(&self.key)
.map_err(|e| anyhow::anyhow!("unable to remove actor: {:?}", e))
}
async fn wait(&mut self) -> anyhow::Result<()> {
// TODO: Figure out if there is a way to wait for an actor to be removed
Ok(())
}
}
/// WasccProvider provides a Kubelet runtime implementation that executes WASM binaries.
///
/// Currently, this runtime uses WASCC as a host, loading the primary container as an actor.
/// TODO: In the future, we will look at loading capabilities using the "sidecar" metaphor
/// from Kubernetes.
#[derive(Clone)]
pub struct WasccProvider<S> {
handles: Arc<RwLock<HashMap<String, PodHandle<ActorStopper, File>>>>,
store: S,
log_path: PathBuf,
kubeconfig: kube::config::Configuration,
}
impl<S: ModuleStore + Send + Sync> WasccProvider<S> {
/// Returns a new wasCC provider configured to use the proper data directory
/// (including creating it if necessary)
pub async fn new(
store: S,
config: &kubelet::config::Config,
kubeconfig: kube::config::Configuration,
) -> anyhow::Result<Self> {
let log_path = config.data_dir.to_path_buf().join(LOG_DIR_NAME);
tokio::fs::create_dir_all(&log_path).await?;
let mut http_lib = config.data_dir.clone();
http_lib.push(HTTP_LIB);
let mut log_lib = config.data_dir.clone();
log_lib.push(LOG_LIB);
// wascc has native capabilities which are dynamic libraries (.so, .dylib, .dll)
// and portable capabilities which are WASM modules. Portable capabilities
// don't fully work, and won't until the WASI spec has matured. We load
// logging and http serving capabilities here, by first loading the library
// then adding the capability to the host.
tokio::task::spawn_blocking(|| {
info!("Loading HTTP Capability");
let data = NativeCapability::from_file(http_lib).map_err(|e| {
anyhow::anyhow!("Failed to read HTTP capability {}: {}", HTTP_LIB, e)
})?;
host::add_native_capability(data)
.map_err(|e| anyhow::anyhow!("Failed to load HTTP capability: {}", e))?;
info!("Loading LOG Capability");
let logdata = NativeCapability::from_file(log_lib)
.map_err(|e| anyhow::anyhow!("Failed to read LOG capability {}: {}", LOG_LIB, e))?;
host::add_native_capability(logdata)
.map_err(|e| anyhow::anyhow!("Failed to load LOG capability: {}", e))
})
.await??;
Ok(Self {
handles: Default::default(),
store,
log_path,
kubeconfig,
})
}
}
#[async_trait]
impl<S: ModuleStore + Send + Sync> Provider for WasccProvider<S> {
const ARCH: &'static str = TARGET_WASM32_WASCC;
async fn add(&self, pod: Pod) -> anyhow::Result<()> {
// To run an Add event, we load the actor, and update the pod status
// to Running. The wascc runtime takes care of starting the actor.
// When the pod finishes, we update the status to Succeeded unless it
// produces an error, in which case we mark it Failed.
debug!("Pod added {:?}", pod.name());
info!("Starting containers for pod {:?}", pod.name());
let mut modules = self.store.fetch_pod_modules(&pod).await?;
let mut container_handles = HashMap::new();
let client = kube::Client::from(self.kubeconfig.clone());
for container in pod.containers() {
let env = Self::env_vars(&container, &pod, &client).await;
debug!("Starting container {} on thread", container.name);
let module_data = modules
.remove(&container.name)
.expect("FATAL ERROR: module map not properly populated");
let lp = self.log_path.clone();
let (status_sender, status_recv) = watch::channel(ContainerStatus::Waiting {
timestamp: chrono::Utc::now(),
message: "No status has been received from the process".into(),
});
let http_result = tokio::task::spawn_blocking(move || {
wascc_run_http(module_data, env, &lp, status_recv)
})
.await?;
match http_result {
Ok(handle) => {
container_handles.insert(container.name.clone(), handle);
status_sender
.broadcast(ContainerStatus::Running {
timestamp: chrono::Utc::now(),
})
.expect("status should be able to send");
}
Err(e) => {
// We can't broadcast here because the receiver has been dropped at this point
// (it was never used in creating a runtime handle)
let mut container_statuses = HashMap::new();
container_statuses.insert(
container.name.clone(),
ContainerStatus::Terminated {
timestamp: chrono::Utc::now(),
failed: true,
message: format!("Error while starting container: {:?}", e),
},
);
let status = Status {
message: None,
container_statuses,
};
pod.patch_status(client.clone(), status).await;
return Err(anyhow::anyhow!("Failed to run pod: {}", e));
}
}
}
info!(
"All containers started for pod {:?}. Updating status",
pod.name()
);
// Wrap this in a block so the write lock goes out of scope when we are done
{
let mut handles = self.handles.write().await;
handles.insert(
key_from_pod(&pod),
PodHandle::new(container_handles, pod, client)?,
);
}
Ok(())
}
async fn modify(&self, pod: Pod) -> anyhow::Result<()> {
// Modify will be tricky. Not only do we need to handle legitimate modifications, but we
// need to sift out modifications that simply alter the status. For the time being, we
// just ignore them, which is the wrong thing to do... except that it demos better than
// other wrong things.
info!("Pod modified");
info!(
"Modified pod spec: {:#?}",
pod.as_kube_pod().status.as_ref().unwrap()
);
Ok(())
}
async fn delete(&self, pod: Pod) -> anyhow::Result<()> {
let mut handles = self.handles.write().await;
if let Some(mut h) = handles.remove(&key_from_pod(&pod)) {
h.stop().await.unwrap_or_else(|e| {
error!(
"unable to stop pod {} in namespace {}: {:?}",
pod.name(),
pod.namespace(),
e
);
// Insert the pod back in to our store if we failed to delete it
handles.insert(key_from_pod(&pod), h);
})
} else {
info!(
"unable to find pod {} in namespace {}, it was likely already deleted",
pod.name(),
pod.namespace()
);
}
Ok(())
}
async fn logs(
&self,
namespace: String,
pod_name: String,
container_name: String,
) -> anyhow::Result<Vec<u8>> {
let mut handles = self.handles.write().await;
let handle = handles
.get_mut(&pod_key(&namespace, &pod_name))
.ok_or_else(|| ProviderError::PodNotFound {
pod_name: pod_name.clone(),
})?;
let mut output = Vec::new();
handle.output(&container_name, &mut output).await?;
Ok(output)
}
}
/// Run a WasCC module inside of the host, configuring it to handle HTTP requests.
///
/// This bootstraps an HTTP host, using the value of the env's `PORT` key to expose a port.
fn wascc_run_http(
data: Vec<u8>,
env: EnvVars,
log_path: &Path,
status_recv: Receiver<ContainerStatus>,
) -> anyhow::Result<RuntimeHandle<ActorStopper, File>> {
let mut caps: Vec<Capability> = Vec::new();
caps.push(Capability {
name: HTTP_CAPABILITY,
env,
});
wascc_run(data, &mut caps, log_path, status_recv)
}
/// Capability describes a waSCC capability.
///
/// Capabilities are made available to actors through a two-part processthread:
/// - They must be registered
/// - For each actor, the capability must be configured
struct Capability {
name: &'static str,
env: EnvVars,
}
/// Run the given WASM data as a waSCC actor with the given public key.
///
/// The provided capabilities will be configured for this actor, but the capabilities
/// must first be loaded into the host by some other process, such as register_native_capabilities().
fn wascc_run(
data: Vec<u8>,
capabilities: &mut Vec<Capability>,
log_path: &Path,
status_recv: Receiver<ContainerStatus>,
) -> anyhow::Result<RuntimeHandle<ActorStopper, File>> | {
info!("sending actor to wascc host");
let log_output = NamedTempFile::new_in(log_path)?;
let mut logenv: HashMap<String, String> = HashMap::new();
logenv.insert(
LOG_PATH_KEY.to_string(),
log_output.path().to_str().unwrap().to_owned(),
);
capabilities.push(Capability {
name: LOG_CAPABILITY,
env: logenv,
});
let load = Actor::from_bytes(data).map_err(|e| anyhow::anyhow!("Error loading WASM: {}", e))?;
let pk = load.public_key();
host::add_actor(load).map_err(|e| anyhow::anyhow!("Error adding actor: {}", e))?;
capabilities.iter().try_for_each(|cap| {
info!("configuring capability {}", cap.name);
host::configure(&pk, cap.name, cap.env.clone())
.map_err(|e| anyhow::anyhow!("Error configuring capabilities for module: {}", e))
})?;
info!("wascc actor executing");
Ok(RuntimeHandle::new(
ActorStopper { key: pk },
tokio::fs::File::from_std(log_output.reopen()?),
status_recv,
))
} |
|
map_services.rs | pub fn get_yandex_url(
layer: String,
lon0: f64,
lat0: f64,
lon1: f64,
lat1: f64,
_api_key: String,
) -> String |
pub fn get_google_url(
layer: String,
lon0: f64,
lat0: f64,
lon1: f64,
lat1: f64,
api_key: String,
) -> String {
let width = lon1 - lon0; // width in deg
let height = lat1 - lat0;
let zoom_level = (360.0 / width).log2().round();
let clat = lat0 + (height / 2.0);
let clon = lon0 + (width / 2.0);
format!("https://maps.googleapis.com/maps/api/staticmap?center={},{}&zoom={}&maptype={}&key={}&format=jpg&size=640x640&scale=2", clat, clon, zoom_level, layer, api_key)
}
/* NOT TESTED
pub fn get_baidu_url(layer: String, lon0: f64, lat0: f64, lon1: f64, lat1: f64, api_key: String) -> String {
let width = lon1 - lon0; // width in deg
let height = lat1 - lat0;
let zoom_level = (360.0 / width).log2().round();
let clat = lat0 + (height/2.0);
let clon = lon0 + (width/2.0);
format!("http://api.map.baidu.com/staticimage/v2?ak={}&mcode=666666¢er={},{}&width=512&height=512&zoom=11 ", clon, clat, zoom_level, layer, api_key)
}
*/
pub fn get_bing_url(
layer: String,
lon0: f64,
lat0: f64,
lon1: f64,
lat1: f64,
api_key: String,
) -> String {
// Layer: "Aerial"
let width = lon1 - lon0; // width in deg
let height = lat1 - lat0;
let zoom_level = (360.0 / width).log2().round();
let clat = lat0 + (height / 2.0);
let clon = lon0 + (width / 2.0);
format!("https://dev.virtualearth.net/REST/v1/Imagery/Map/{}/{},{}/{}?format=jpeg&mapSize=1500,1500&key={}", layer, clat, clon, zoom_level, api_key)
}
pub fn get_wikimapia_url(
layer: String,
lon0: f64,
lat0: f64,
lon1: f64,
lat1: f64,
api_key: String,
) -> String {
format!("http://api.wikimapia.org/?function=box&bbox={},{},{},{}&key={}&format=json&count=100&category={}",lon0, lat0, lon1, lat1, api_key, layer)
}
pub fn get_osm_url(
layer: String,
lon0: f64,
lat0: f64,
lon1: f64,
lat1: f64,
_api_key: String,
) -> String {
if layer != "" {
format!("http://overpass-api.de/api/interpreter?data=[out:json];node[{0}]({1},{2},{3},{4});way[{0}]({1},{2},{3},{4});relation[{0}]({1},{2},{3},{4});out body;>;out skel qt;",layer, lat0, lon0, lat1, lon1)
} else {
format!("http://overpass-api.de/api/interpreter?data=[out:json];node({0},{1},{2},{3});way({0},{1},{2},{3});relation({0},{1},{2},{3});out body;>;out skel qt;", lat0, lon0, lat1, lon1)
}
}
| {
format!(
"https://static-maps.yandex.ru/1.x/?lang=en_US&l={}&bbox={},{}~{},{}",
layer, lon0, lat0, lon1, lat1
)
} |
ecp2.rs | /*
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
*/
use xxx::rom;
use xxx::big;
use xxx::ecp;
use xxx::fp2::FP2;
use xxx::big::BIG;
pub struct ECP2 {
x:FP2,
y:FP2,
z:FP2,
inf: bool
}
#[allow(non_snake_case)]
impl ECP2 {
pub fn new() -> ECP2 |
#[allow(non_snake_case)]
/* construct this from (x,y) - but set to O if not on curve */
pub fn new_fp2s(ix:&FP2,iy:&FP2) -> ECP2 {
let mut E=ECP2::new();
E.x.copy(&ix);
E.y.copy(&iy);
E.z.one();
let mut rhs=ECP2::rhs(&mut E.x);
let mut y2=FP2::new_copy(&E.y);
y2.sqr();
if y2.equals(&mut rhs) {
E.inf=false;
} else {E.x.zero();E.inf=true}
return E;
}
/* construct this from x - but set to O if not on curve */
pub fn new_fp2(ix:&FP2) -> ECP2 {
let mut E=ECP2::new();
E.x.copy(&ix);
E.y.one();
E.z.one();
let mut rhs=ECP2::rhs(&mut E.x);
if rhs.sqrt() {
E.y.copy(&rhs);
E.inf=false;
} else {E.x.zero();E.inf=true}
return E;
}
/* Test this=O? */
pub fn is_infinity(&self) -> bool {
if self.inf {return true}
let mut xx=FP2::new_copy(&self.x);
let mut zz=FP2::new_copy(&self.z);
return xx.iszilch() && zz.iszilch();
}
/* copy self=P */
pub fn copy(&mut self,P: &ECP2) {
self.x.copy(&P.x);
self.y.copy(&P.y);
self.z.copy(&P.z);
self.inf=P.inf;
}
/* set self=O */
pub fn inf(&mut self) {
self.inf=true;
self.x.zero();
self.y.one();
self.z.zero();
}
/* set self=-self */
pub fn neg(&mut self) {
// if self.is_infinity() {return}
self.y.norm(); self.y.neg(); self.y.norm();
}
/* Conditional move of Q to self dependant on d */
pub fn cmove(&mut self,Q: &ECP2,d: isize) {
self.x.cmove(&Q.x,d);
self.y.cmove(&Q.y,d);
self.z.cmove(&Q.z,d);
let bd:bool;
if d==0 {bd=false}
else {bd=true}
self.inf=(self.inf!=(self.inf!=Q.inf)&&bd);
}
/* return 1 if b==c, no branching */
fn teq(b: i32,c: i32) -> isize {
let mut x=b^c;
x-=1; // if x=0, x now -1
return ((x>>31)&1) as isize;
}
/* Constant time select from pre-computed table */
pub fn selector(&mut self,W: &[ECP2],b: i32) {
let mut MP=ECP2::new();
let m=b>>31;
let mut babs=(b^m)-m;
babs=(babs-1)/2;
self.cmove(&W[0],ECP2::teq(babs,0)); // conditional move
self.cmove(&W[1],ECP2::teq(babs,1));
self.cmove(&W[2],ECP2::teq(babs,2));
self.cmove(&W[3],ECP2::teq(babs,3));
self.cmove(&W[4],ECP2::teq(babs,4));
self.cmove(&W[5],ECP2::teq(babs,5));
self.cmove(&W[6],ECP2::teq(babs,6));
self.cmove(&W[7],ECP2::teq(babs,7));
MP.copy(self);
MP.neg();
self.cmove(&MP,(m&1) as isize);
}
/* Test if P == Q */
pub fn equals(&mut self,Q :&mut ECP2) -> bool {
if self.is_infinity() && Q.is_infinity() {return true}
if self.is_infinity() || Q.is_infinity() {return false}
let mut a=FP2::new_copy(&self.x);
let mut b=FP2::new_copy(&Q.x);
a.mul(&Q.z);
b.mul(&self.z);
if !a.equals(&mut b) {return false}
a.copy(&self.y); a.mul(&Q.z);
b.copy(&Q.y); b.mul(&self.z);
if !a.equals(&mut b) {return false}
return true;
}
/* set to Affine - (x,y,z) to (x,y) */
pub fn affine(&mut self) {
if self.is_infinity() {return}
let mut one=FP2::new_int(1);
if self.z.equals(&mut one) {return}
self.z.inverse();
self.x.mul(&self.z); self.x.reduce();
self.y.mul(&self.z); self.y.reduce();
self.z.copy(&one);
}
/* extract affine x as FP2 */
pub fn getx(&mut self) -> FP2 {
self.affine();
return FP2::new_copy(&self.x);
}
/* extract affine y as FP2 */
pub fn gety(&mut self) -> FP2 {
self.affine();
return FP2::new_copy(&self.y);
}
/* extract projective x */
pub fn getpx(&self) -> FP2 {
return FP2::new_copy(&self.x);
}
/* extract projective y */
pub fn getpy(&self) -> FP2 {
return FP2::new_copy(&self.y);
}
/* extract projective z */
pub fn getpz(&self) -> FP2 {
return FP2::new_copy(&self.z);
}
/* convert to byte array */
pub fn tobytes(&mut self,b: &mut [u8]) {
let mut t:[u8;big::MODBYTES as usize]=[0;big::MODBYTES as usize];
let mb=big::MODBYTES as usize;
self.affine();
self.x.geta().tobytes(&mut t);
for i in 0..mb { b[i]=t[i]}
self.x.getb().tobytes(&mut t);
for i in 0..mb { b[i+mb]=t[i]}
self.y.geta().tobytes(&mut t);
for i in 0..mb {b[i+2*mb]=t[i]}
self.y.getb().tobytes(&mut t);
for i in 0..mb {b[i+3*mb]=t[i]}
}
/* convert from byte array to point */
pub fn frombytes(b: &[u8]) -> ECP2 {
let mut t:[u8;big::MODBYTES as usize]=[0;big::MODBYTES as usize];
let mb=big::MODBYTES as usize;
for i in 0..mb {t[i]=b[i]}
let mut ra=BIG::frombytes(&t);
for i in 0..mb {t[i]=b[i+mb]}
let mut rb=BIG::frombytes(&t);
let rx=FP2::new_bigs(&ra,&rb);
for i in 0..mb {t[i]=b[i+2*mb]}
ra.copy(&BIG::frombytes(&t));
for i in 0..mb {t[i]=b[i+3*mb]}
rb.copy(&BIG::frombytes(&t));
let ry=FP2::new_bigs(&ra,&rb);
return ECP2::new_fp2s(&rx,&ry);
}
/* convert this to hex string */
pub fn tostring(&mut self) -> String {
if self.is_infinity() {return String::from("infinity")}
self.affine();
return format!("({},{})",self.x.tostring(),self.y.tostring());
}
/* Calculate RHS of twisted curve equation x^3+B/i */
pub fn rhs(x:&mut FP2) -> FP2 {
x.norm();
let mut r=FP2::new_copy(x);
r.sqr();
let mut b=FP2::new_big(&BIG::new_ints(&rom::CURVE_B));
if ecp::SEXTIC_TWIST==ecp::D_TYPE {
b.div_ip();
}
if ecp::SEXTIC_TWIST==ecp::M_TYPE {
b.norm();
b.mul_ip();
b.norm();
}
r.mul(x);
r.add(&b);
r.reduce();
return r;
}
/* self+=self */
pub fn dbl(&mut self) -> isize {
if self.inf {return -1}
let mut iy=FP2::new_copy(&self.y);
if ecp::SEXTIC_TWIST==ecp::D_TYPE {
iy.mul_ip(); iy.norm();
}
let mut t0=FP2::new_copy(&self.y); //***** Change
t0.sqr();
if ecp::SEXTIC_TWIST==ecp::D_TYPE {
t0.mul_ip();
}
let mut t1=FP2::new_copy(&iy);
t1.mul(&self.z);
let mut t2=FP2::new_copy(&self.z);
t2.sqr();
self.z.copy(&t0);
self.z.add(&t0); self.z.norm();
self.z.dbl();
self.z.dbl();
self.z.norm();
t2.imul(3*rom::CURVE_B_I);
if ecp::SEXTIC_TWIST==ecp::M_TYPE {
t2.mul_ip();
t2.norm();
}
let mut x3=FP2::new_copy(&t2);
x3.mul(&self.z);
let mut y3=FP2::new_copy(&t0);
y3.add(&t2); y3.norm();
self.z.mul(&t1);
t1.copy(&t2); t1.add(&t2); t2.add(&t1); t2.norm();
t0.sub(&t2); t0.norm(); //y^2-9bz^2
y3.mul(&t0); y3.add(&x3); //(y^2+3z*2)(y^2-9z^2)+3b.z^2.8y^2
t1.copy(&self.x); t1.mul(&iy); //
self.x.copy(&t0); self.x.norm(); self.x.mul(&t1); self.x.dbl(); //(y^2-9bz^2)xy2
self.x.norm();
self.y.copy(&y3); self.y.norm();
return 1;
}
/* self+=Q - return 0 for add, 1 for double, -1 for O */
pub fn add(&mut self,Q:&ECP2) -> isize {
if self.inf {
self.copy(Q);
return -1;
}
if Q.inf {return -1}
let b=3*rom::CURVE_B_I;
let mut t0=FP2::new_copy(&self.x);
t0.mul(&Q.x); // x.Q.x
let mut t1=FP2::new_copy(&self.y);
t1.mul(&Q.y); // y.Q.y
let mut t2=FP2::new_copy(&self.z);
t2.mul(&Q.z);
let mut t3=FP2::new_copy(&self.x);
t3.add(&self.y); t3.norm(); //t3=X1+Y1
let mut t4=FP2::new_copy(&Q.x);
t4.add(&Q.y); t4.norm(); //t4=X2+Y2
t3.mul(&t4); //t3=(X1+Y1)(X2+Y2)
t4.copy(&t0); t4.add(&t1); //t4=X1.X2+Y1.Y2
t3.sub(&t4); t3.norm();
if ecp::SEXTIC_TWIST==ecp::D_TYPE {
t3.mul_ip(); t3.norm(); //t3=(X1+Y1)(X2+Y2)-(X1.X2+Y1.Y2) = X1.Y2+X2.Y1
}
t4.copy(&self.y);
t4.add(&self.z); t4.norm(); //t4=Y1+Z1
let mut x3=FP2::new_copy(&Q.y);
x3.add(&Q.z); x3.norm(); //x3=Y2+Z2
t4.mul(&x3); //t4=(Y1+Z1)(Y2+Z2)
x3.copy(&t1); //
x3.add(&t2); //X3=Y1.Y2+Z1.Z2
t4.sub(&x3); t4.norm();
if ecp::SEXTIC_TWIST==ecp::D_TYPE {
t4.mul_ip(); t4.norm(); //t4=(Y1+Z1)(Y2+Z2) - (Y1.Y2+Z1.Z2) = Y1.Z2+Y2.Z1
}
x3.copy(&self.x); x3.add(&self.z); x3.norm(); // x3=X1+Z1
let mut y3=FP2::new_copy(&Q.x);
y3.add(&Q.z); y3.norm(); // y3=X2+Z2
x3.mul(&y3); // x3=(X1+Z1)(X2+Z2)
y3.copy(&t0);
y3.add(&t2); // y3=X1.X2+Z1+Z2
y3.rsub(&x3); y3.norm(); // y3=(X1+Z1)(X2+Z2) - (X1.X2+Z1.Z2) = X1.Z2+X2.Z1
if ecp::SEXTIC_TWIST==ecp::D_TYPE {
t0.mul_ip(); t0.norm(); // x.Q.x
t1.mul_ip(); t1.norm(); // y.Q.y
}
x3.copy(&t0); x3.add(&t0);
t0.add(&x3); t0.norm();
t2.imul(b);
if ecp::SEXTIC_TWIST==ecp::M_TYPE {
t2.mul_ip();
}
let mut z3=FP2::new_copy(&t1); z3.add(&t2); z3.norm();
t1.sub(&t2); t1.norm();
y3.imul(b);
if ecp::SEXTIC_TWIST==ecp::M_TYPE {
y3.mul_ip();
y3.norm();
}
x3.copy(&y3); x3.mul(&t4); t2.copy(&t3); t2.mul(&t1); x3.rsub(&t2);
y3.mul(&t0); t1.mul(&z3); y3.add(&t1);
t0.mul(&t3); z3.mul(&t4); z3.add(&t0);
self.x.copy(&x3); self.x.norm();
self.y.copy(&y3); self.y.norm();
self.z.copy(&z3); self.z.norm();
return 0;
}
/* set this-=Q */
pub fn sub(&mut self,Q :&ECP2) -> isize {
let mut NQ=ECP2::new(); NQ.copy(Q);
NQ.neg();
let d=self.add(&NQ);
return d;
}
/* set this*=q, where q is Modulus, using Frobenius */
pub fn frob(&mut self,x:&FP2) {
if self.inf {return}
let mut x2=FP2::new_copy(x);
x2.sqr();
self.x.conj();
self.y.conj();
self.z.conj();
self.z.reduce();
self.x.mul(&x2);
self.y.mul(&x2);
self.y.mul(x);
}
/* self*=e */
pub fn mul(&self,e: &BIG) -> ECP2 {
/* fixed size windows */
let mut mt=BIG::new();
let mut t=BIG::new();
let mut P=ECP2::new();
let mut Q=ECP2::new();
let mut C=ECP2::new();
if self.is_infinity() {return P}
let mut W:[ECP2;8]=[ECP2::new(),ECP2::new(),ECP2::new(),ECP2::new(),ECP2::new(),ECP2::new(),ECP2::new(),ECP2::new()];
const CT:usize=1+(big::NLEN*(big::BASEBITS as usize)+3)/4;
let mut w:[i8;CT]=[0;CT];
// self.affine();
/* precompute table */
Q.copy(&self);
Q.dbl();
W[0].copy(&self);
for i in 1..8 {
C.copy(&W[i-1]);
W[i].copy(&C);
W[i].add(&mut Q);
}
/* make exponent odd - add 2P if even, P if odd */
t.copy(&e);
let s=t.parity();
t.inc(1); t.norm(); let ns=t.parity(); mt.copy(&t); mt.inc(1); mt.norm();
t.cmove(&mt,s);
Q.cmove(&self,ns);
C.copy(&Q);
let nb=1+(t.nbits()+3)/4;
/* convert exponent to signed 4-bit window */
for i in 0..nb {
w[i]=(t.lastbits(5)-16) as i8;
t.dec(w[i] as isize); t.norm();
t.fshr(4);
}
w[nb]=(t.lastbits(5)) as i8;
P.copy(&W[((w[nb] as usize) -1)/2]);
for i in (0..nb).rev() {
Q.selector(&W,w[i] as i32);
P.dbl();
P.dbl();
P.dbl();
P.dbl();
P.add(&mut Q);
}
P.sub(&mut C);
P.affine();
return P;
}
/* P=u0.Q0+u1*Q1+u2*Q2+u3*Q3 */
pub fn mul4(Q: &mut [ECP2],u: &[BIG]) -> ECP2 {
let mut a:[i8;4]=[0;4];
let mut T=ECP2::new();
let mut C=ECP2::new();
let mut P=ECP2::new();
let mut W:[ECP2;8]=[ECP2::new(),ECP2::new(),ECP2::new(),ECP2::new(),ECP2::new(),ECP2::new(),ECP2::new(),ECP2::new()];
let mut mt=BIG::new();
let mut t:[BIG;4]=[BIG::new_copy(&u[0]),BIG::new_copy(&u[1]),BIG::new_copy(&u[2]),BIG::new_copy(&u[3])];
const CT:usize=1+big::NLEN*(big::BASEBITS as usize);
let mut w:[i8;CT]=[0;CT];
for i in 0..4 {
Q[i].affine();
}
/* precompute table */
W[0].copy(&Q[0]); W[0].sub(&mut Q[1]);
C.copy(&W[0]); W[1].copy(&C);
W[2].copy(&C);
W[3].copy(&C);
W[4].copy(&Q[0]); W[4].add(&mut Q[1]);
C.copy(&W[4]); W[5].copy(&C);
W[6].copy(&C);
W[7].copy(&C);
T.copy(&Q[2]); T.sub(&mut Q[3]);
W[1].sub(&mut T);
W[2].add(&mut T);
W[5].sub(&mut T);
W[6].add(&mut T);
T.copy(&Q[2]); T.add(&mut Q[3]);
W[0].sub(&mut T);
W[3].add(&mut T);
W[4].sub(&mut T);
W[7].add(&mut T);
/* if multiplier is even add 1 to multiplier, and add P to correction */
mt.zero(); C.inf();
for i in 0..4 {
if t[i].parity()==0 {
t[i].inc(1); t[i].norm();
C.add(&mut Q[i]);
}
mt.add(&t[i]); mt.norm();
}
let nb=1+mt.nbits();
/* convert exponent to signed 1-bit window */
for j in 0..nb {
for i in 0..4 {
a[i]=(t[i].lastbits(2)-2) as i8;
t[i].dec(a[i] as isize); t[i].norm();
t[i].fshr(1);
}
w[j]=8*a[0]+4*a[1]+2*a[2]+a[3];
}
w[nb]=(8*t[0].lastbits(2)+4*t[1].lastbits(2)+2*t[2].lastbits(2)+t[3].lastbits(2)) as i8;
P.copy(&W[((w[nb] as usize)-1)/2]);
for i in (0..nb).rev() {
T.selector(&W,w[i] as i32);
P.dbl();
P.add(&mut T);
}
P.sub(&mut C); /* apply correction */
P.affine();
return P;
}
#[allow(non_snake_case)]
pub fn mapit(h: &[u8]) -> ECP2 {
let mut q=BIG::new_ints(&rom::MODULUS);
let mut x=BIG::frombytes(h);
x.rmod(&mut q);
let mut Q:ECP2;
let one=BIG::new_int(1);
loop {
let X=FP2::new_bigs(&one,&x);
Q=ECP2::new_fp2(&X);
if !Q.is_infinity() {break}
x.inc(1); x.norm();
}
let mut X = FP2::new_bigs(&BIG::new_ints(&rom::FRA),&BIG::new_ints(&rom::FRB));
if ecp::SEXTIC_TWIST==ecp::M_TYPE {
X.inverse();
X.norm();
}
x = BIG::new_ints(&rom::CURVE_BNX);
if ecp::CURVE_PAIRING_TYPE==ecp::BN {
let mut T=Q.mul(&mut x);
if ecp::SIGN_OF_X==ecp::NEGATIVEX {
T.neg();
}
let mut K=ECP2::new(); K.copy(&T);
K.dbl(); K.add(&T);
K.frob(&X);
Q.frob(&X); Q.frob(&X); Q.frob(&X);
Q.add(&T); Q.add(&K);
T.frob(&X); T.frob(&X);
Q.add(&T);
}
if ecp::CURVE_PAIRING_TYPE==ecp::BLS {
let mut xQ=Q.mul(&mut x);
let mut x2Q=xQ.mul(&mut x);
if ecp::SIGN_OF_X==ecp::NEGATIVEX {
xQ.neg();
}
x2Q.sub(&xQ);
x2Q.sub(&Q);
xQ.sub(&Q);
xQ.frob(&X);
Q.dbl();
Q.frob(&X);
Q.frob(&X);
Q.add(&x2Q);
Q.add(&xQ);
}
Q.affine();
return Q;
}
}
/*
fn main()
{
let mut r=BIG::new_ints(&rom::MODULUS);
let pxa=BIG::new_ints(&rom::CURVE_PXA);
let pxb=BIG::new_ints(&rom::CURVE_PXB);
let pya=BIG::new_ints(&rom::CURVE_PYA);
let pyb=BIG::new_ints(&rom::CURVE_PYB);
let fra=BIG::new_ints(&rom::CURVE_FRA);
let frb=BIG::new_ints(&rom::CURVE_FRB);
let mut f=FP2::new_bigs(&fra,&frb);
let px=FP2::new_bigs(&pxa,&pxb);
let py=FP2::new_bigs(&pya,&pyb);
let mut P=ECP2::new_fp2s(&px,&py);
println!("P= {}",P.tostring());
P=P.mul(&mut r);
println!("P= {}",P.tostring());
let mut Q=ECP2::new_fp2s(&px,&py);
Q.frob(&mut f);
println!("Q= {}",Q.tostring());
}
*/
| {
ECP2 {
x: FP2::new(),
y: FP2::new_int(1),
z: FP2::new(),
inf: true
}
} |
avatarinfo.py | # -*- coding: utf-8 -*-
'''
Author: Hannibal
Data:
Desc: local data config
NOTE: Don't modify this file, it's build by xml-to-python!!!
'''
avatarinfo_map = {};
avatarinfo_map[1] = {"id":1,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/human/stand/all.atlas","total":8,"speed":8,"prefix":"role/human/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/human/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/human/run/all.atlas","total":8,"speed":8,"prefix":"role/human/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/human/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/human/stand/all.atlas","total":6,"speed":8,"prefix":"role/human/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/human/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/human/attack/all.atlas","total":7,"speed":8,"prefix":"role/human/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/human/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/human/attacked/all.atlas","total":2,"speed":8,"prefix":"role/human/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/human/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/human/die/all.atlas","total":6,"speed":8,"prefix":"role/human/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/human/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/human/skill/all.atlas","total":7,"speed":8,"prefix":"role/human/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/human/skill/skill.lk",},],};
avatarinfo_map[102] = {"id":102,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/girl/stand/all.atlas","total":8,"speed":8,"prefix":"role/girl/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/girl/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/girl/run/all.atlas","total":8,"speed":8,"prefix":"role/girl/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/girl/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/girl/stand/all.atlas","total":8,"speed":8,"prefix":"role/girl/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/girl/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/girl/attack/all.atlas","total":7,"speed":8,"prefix":"role/girl/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/girl/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/girl/attacked/all.atlas","total":2,"speed":8,"prefix":"role/girl/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/girl/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/girl/die/all.atlas","total":6,"speed":8,"prefix":"role/girl/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/girl/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/girl/skill/all.atlas","total":7,"speed":8,"prefix":"role/girl/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/girl/skill/skill.lk",},],};
avatarinfo_map[101] = {"id":101,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/human/stand/all.atlas","total":8,"speed":8,"prefix":"role/human/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/human/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/human/run/all.atlas","total":8,"speed":8,"prefix":"role/human/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/human/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/human/stand/all.atlas","total":8,"speed":8,"prefix":"role/human/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/human/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/human/attack/all.atlas","total":7,"speed":8,"prefix":"role/human/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/human/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/human/attacked/all.atlas","total":2,"speed":8,"prefix":"role/human/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/human/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/human/die/all.atlas","total":6,"speed":8,"prefix":"role/human/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/human/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/human/skill/all.atlas","total":7,"speed":8,"prefix":"role/human/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/human/skill/skill.lk",},],};
avatarinfo_map[201] = {"id":201,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/marryh/stand/all.atlas","total":8,"speed":8,"prefix":"role/marryh/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryh/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/marryh/run/all.atlas","total":8,"speed":8,"prefix":"role/marryh/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryh/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/marryh/stand/all.atlas","total":8,"speed":8,"prefix":"role/marryh/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryh/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/marryh/attack/all.atlas","total":7,"speed":8,"prefix":"role/marryh/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryh/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/marryh/attacked/all.atlas","total":2,"speed":8,"prefix":"role/marryh/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryh/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/marryh/die/all.atlas","total":6,"speed":8,"prefix":"role/marryh/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryh/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/marryh/skill/all.atlas","total":7,"speed":8,"prefix":"role/marryh/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryh/skill/skill.lk",},],};
avatarinfo_map[202] = {"id":202,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/marryg/stand/all.atlas","total":8,"speed":8,"prefix":"role/marryg/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryg/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/marryg/run/all.atlas","total":8,"speed":8,"prefix":"role/marryg/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryg/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/marryg/stand/all.atlas","total":8,"speed":8,"prefix":"role/marryg/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryg/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/marryg/attack/all.atlas","total":7,"speed":8,"prefix":"role/marryg/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryg/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/marryg/attacked/all.atlas","total":2,"speed":8,"prefix":"role/marryg/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryg/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/marryg/die/all.atlas","total":6,"speed":8,"prefix":"role/marryg/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryg/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/marryg/skill/all.atlas","total":7,"speed":8,"prefix":"role/marryg/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryg/skill/skill.lk",},],};
avatarinfo_map[211] = {"id":211,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/lvbuorigh/stand/all.atlas","total":8,"speed":8,"prefix":"role/lvbuorigh/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbuorigh/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/lvbuorigh/run/all.atlas","total":8,"speed":8,"prefix":"role/lvbuorigh/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbuorigh/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/lvbuorigh/stand/all.atlas","total":8,"speed":8,"prefix":"role/lvbuorigh/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbuorigh/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/lvbuorigh/attack/all.atlas","total":7,"speed":8,"prefix":"role/lvbuorigh/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbuorigh/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/lvbuorigh/attacked/all.atlas","total":2,"speed":8,"prefix":"role/lvbuorigh/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbuorigh/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/lvbuorigh/die/all.atlas","total":6,"speed":8,"prefix":"role/lvbuorigh/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbuorigh/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/lvbuorigh/skill/all.atlas","total":7,"speed":8,"prefix":"role/lvbuorigh/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbuorigh/skill/skill.lk",},],};
avatarinfo_map[212] = {"id":212,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/lvbuorigg/stand/all.atlas","total":8,"speed":8,"prefix":"role/lvbuorigg/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbuorigg/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/lvbuorigg/run/all.atlas","total":8,"speed":8,"prefix":"role/lvbuorigg/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbuorigg/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/lvbuorigg/stand/all.atlas","total":8,"speed":8,"prefix":"role/lvbuorigg/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbuorigg/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/lvbuorigg/attack/all.atlas","total":7,"speed":8,"prefix":"role/lvbuorigg/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbuorigg/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/lvbuorigg/attacked/all.atlas","total":2,"speed":8,"prefix":"role/lvbuorigg/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbuorigg/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/lvbuorigg/die/all.atlas","total":6,"speed":8,"prefix":"role/lvbuorigg/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbuorigg/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/lvbuorigg/skill/all.atlas","total":7,"speed":8,"prefix":"role/lvbuorigg/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbuorigg/skill/skill.lk",},],};
avatarinfo_map[221] = {"id":221,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/lvbublueh/stand/all.atlas","total":8,"speed":8,"prefix":"role/lvbublueh/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbublueh/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/lvbublueh/run/all.atlas","total":8,"speed":8,"prefix":"role/lvbublueh/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbublueh/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/lvbublueh/stand/all.atlas","total":8,"speed":8,"prefix":"role/lvbublueh/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbublueh/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/lvbublueh/attack/all.atlas","total":7,"speed":8,"prefix":"role/lvbublueh/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbublueh/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/lvbublueh/attacked/all.atlas","total":2,"speed":8,"prefix":"role/lvbublueh/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbublueh/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/lvbublueh/die/all.atlas","total":6,"speed":8,"prefix":"role/lvbublueh/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbublueh/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/lvbublueh/skill/all.atlas","total":7,"speed":8,"prefix":"role/lvbublueh/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbublueh/skill/skill.lk",},],};
avatarinfo_map[222] = {"id":222,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/lvbublueg/stand/all.atlas","total":8,"speed":8,"prefix":"role/lvbublueg/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbublueg/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/lvbublueg/run/all.atlas","total":8,"speed":8,"prefix":"role/lvbublueg/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbublueg/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/lvbublueg/stand/all.atlas","total":8,"speed":8,"prefix":"role/lvbublueg/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbublueg/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/lvbublueg/attack/all.atlas","total":7,"speed":8,"prefix":"role/lvbublueg/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbublueg/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/lvbublueg/attacked/all.atlas","total":2,"speed":8,"prefix":"role/lvbublueg/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbublueg/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/lvbublueg/die/all.atlas","total":6,"speed":8,"prefix":"role/lvbublueg/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbublueg/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/lvbublueg/skill/all.atlas","total":7,"speed":8,"prefix":"role/lvbublueg/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbublueg/skill/skill.lk",},],};
avatarinfo_map[231] = {"id":231,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/lvbugoldh/stand/all.atlas","total":8,"speed":8,"prefix":"role/lvbugoldh/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbugoldh/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/lvbugoldh/run/all.atlas","total":8,"speed":8,"prefix":"role/lvbugoldh/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbugoldh/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/lvbugoldh/stand/all.atlas","total":8,"speed":8,"prefix":"role/lvbugoldh/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbugoldh/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/lvbugoldh/attack/all.atlas","total":7,"speed":8,"prefix":"role/lvbugoldh/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbugoldh/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/lvbugoldh/attacked/all.atlas","total":2,"speed":8,"prefix":"role/lvbugoldh/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbugoldh/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/lvbugoldh/die/all.atlas","total":6,"speed":8,"prefix":"role/lvbugoldh/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbugoldh/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/lvbugoldh/skill/all.atlas","total":7,"speed":8,"prefix":"role/lvbugoldh/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbugoldh/skill/skill.lk",},],};
avatarinfo_map[232] = {"id":232,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/lvbugoldg/stand/all.atlas","total":8,"speed":8,"prefix":"role/lvbugoldg/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbugoldg/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/lvbugoldg/run/all.atlas","total":8,"speed":8,"prefix":"role/lvbugoldg/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbugoldg/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/lvbugoldg/stand/all.atlas","total":8,"speed":8,"prefix":"role/lvbugoldg/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbugoldg/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/lvbugoldg/attack/all.atlas","total":7,"speed":8,"prefix":"role/lvbugoldg/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbugoldg/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/lvbugoldg/attacked/all.atlas","total":2,"speed":8,"prefix":"role/lvbugoldg/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbugoldg/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/lvbugoldg/die/all.atlas","total":6,"speed":8,"prefix":"role/lvbugoldg/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbugoldg/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/lvbugoldg/skill/all.atlas","total":7,"speed":8,"prefix":"role/lvbugoldg/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbugoldg/skill/skill.lk",},],};
avatarinfo_map[241] = {"id":241,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/lvbupurpleh/stand/all.atlas","total":8,"speed":8,"prefix":"role/lvbupurpleh/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbupurpleh/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/lvbupurpleh/run/all.atlas","total":8,"speed":8,"prefix":"role/lvbupurpleh/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbupurpleh/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/lvbupurpleh/stand/all.atlas","total":8,"speed":8,"prefix":"role/lvbupurpleh/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbupurpleh/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/lvbupurpleh/attack/all.atlas","total":7,"speed":8,"prefix":"role/lvbupurpleh/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbupurpleh/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/lvbupurpleh/attacked/all.atlas","total":2,"speed":8,"prefix":"role/lvbupurpleh/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbupurpleh/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/lvbupurpleh/die/all.atlas","total":6,"speed":8,"prefix":"role/lvbupurpleh/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbupurpleh/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/lvbupurpleh/skill/all.atlas","total":7,"speed":8,"prefix":"role/lvbupurpleh/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbupurpleh/skill/skill.lk",},],};
avatarinfo_map[242] = {"id":242,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/lvbupurpleg/stand/all.atlas","total":8,"speed":8,"prefix":"role/lvbupurpleg/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbupurpleg/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/lvbupurpleg/run/all.atlas","total":8,"speed":8,"prefix":"role/lvbupurpleg/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbupurpleg/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/lvbupurpleg/stand/all.atlas","total":8,"speed":8,"prefix":"role/lvbupurpleg/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbupurpleg/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/lvbupurpleg/attack/all.atlas","total":7,"speed":8,"prefix":"role/lvbupurpleg/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbupurpleg/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/lvbupurpleg/attacked/all.atlas","total":2,"speed":8,"prefix":"role/lvbupurpleg/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbupurpleg/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/lvbupurpleg/die/all.atlas","total":6,"speed":8,"prefix":"role/lvbupurpleg/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbupurpleg/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/lvbupurpleg/skill/all.atlas","total":7,"speed":8,"prefix":"role/lvbupurpleg/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/lvbupurpleg/skill/skill.lk",},],};
avatarinfo_map[251] = {"id":251,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/zhizun1/stand/all.atlas","total":8,"speed":8,"prefix":"role/zhizun1/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zhizun1/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/zhizun1/run/all.atlas","total":8,"speed":8,"prefix":"role/zhizun1/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zhizun1/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/zhizun1/stand/all.atlas","total":8,"speed":8,"prefix":"role/zhizun1/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zhizun1/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/zhizun1/attack/all.atlas","total":7,"speed":8,"prefix":"role/zhizun1/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zhizun1/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/zhizun1/attacked/all.atlas","total":2,"speed":8,"prefix":"role/zhizun1/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zhizun1/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/zhizun1/die/all.atlas","total":6,"speed":8,"prefix":"role/zhizun1/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zhizun1/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/zhizun1/skill/all.atlas","total":7,"speed":8,"prefix":"role/zhizun1/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zhizun1/skill/skill.lk",},],};
avatarinfo_map[252] = {"id":252,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/zixia1/stand/all.atlas","total":8,"speed":8,"prefix":"role/zixia1/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zixia1/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/zixia1/run/all.atlas","total":8,"speed":8,"prefix":"role/zixia1/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zixia1/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/zixia1/stand/all.atlas","total":8,"speed":8,"prefix":"role/zixia1/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zixia1/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/zixia1/attack/all.atlas","total":7,"speed":8,"prefix":"role/zixia1/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zixia1/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/zixia1/attacked/all.atlas","total":2,"speed":8,"prefix":"role/zixia1/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zixia1/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/zixia1/die/all.atlas","total":6,"speed":8,"prefix":"role/zixia1/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zixia1/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/zixia1/skill/all.atlas","total":7,"speed":8,"prefix":"role/zixia1/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zixia1/skill/skill.lk",},],};
avatarinfo_map[261] = {"id":261,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/zhizun2/stand/all.atlas","total":8,"speed":8,"prefix":"role/zhizun2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zhizun2/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/zhizun2/run/all.atlas","total":8,"speed":8,"prefix":"role/zhizun2/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zhizun2/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/zhizun2/stand/all.atlas","total":8,"speed":8,"prefix":"role/zhizun2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zhizun2/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/zhizun2/attack/all.atlas","total":7,"speed":8,"prefix":"role/zhizun2/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zhizun2/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/zhizun2/attacked/all.atlas","total":2,"speed":8,"prefix":"role/zhizun2/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zhizun2/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/zhizun2/die/all.atlas","total":6,"speed":8,"prefix":"role/zhizun2/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zhizun2/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/zhizun2/skill/all.atlas","total":7,"speed":8,"prefix":"role/zhizun2/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zhizun2/skill/skill.lk",},],};
avatarinfo_map[262] = {"id":262,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/zixia2/stand/all.atlas","total":8,"speed":8,"prefix":"role/zixia2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zixia2/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/zixia2/run/all.atlas","total":8,"speed":8,"prefix":"role/zixia2/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zixia2/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/zixia2/stand/all.atlas","total":8,"speed":8,"prefix":"role/zixia2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zixia2/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/zixia2/attack/all.atlas","total":7,"speed":8,"prefix":"role/zixia2/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zixia2/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/zixia2/attacked/all.atlas","total":2,"speed":8,"prefix":"role/zixia2/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zixia2/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/zixia2/die/all.atlas","total":6,"speed":8,"prefix":"role/zixia2/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zixia2/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/zixia2/skill/all.atlas","total":7,"speed":8,"prefix":"role/zixia2/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zixia2/skill/skill.lk",},],};
avatarinfo_map[271] = {"id":271,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/zhizun3/stand/all.atlas","total":8,"speed":8,"prefix":"role/zhizun3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zhizun3/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/zhizun3/run/all.atlas","total":8,"speed":8,"prefix":"role/zhizun3/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zhizun3/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/zhizun3/stand/all.atlas","total":8,"speed":8,"prefix":"role/zhizun3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zhizun3/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/zhizun3/attack/all.atlas","total":7,"speed":8,"prefix":"role/zhizun3/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zhizun3/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/zhizun3/attacked/all.atlas","total":2,"speed":8,"prefix":"role/zhizun3/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zhizun3/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/zhizun3/die/all.atlas","total":6,"speed":8,"prefix":"role/zhizun3/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zhizun3/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/zhizun3/skill/all.atlas","total":7,"speed":8,"prefix":"role/zhizun3/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zhizun3/skill/skill.lk",},],};
avatarinfo_map[272] = {"id":272,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/zixia3/stand/all.atlas","total":8,"speed":8,"prefix":"role/zixia3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zixia3/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/zixia3/run/all.atlas","total":8,"speed":8,"prefix":"role/zixia3/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zixia3/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/zixia3/stand/all.atlas","total":8,"speed":8,"prefix":"role/zixia3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zixia3/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/zixia3/attack/all.atlas","total":7,"speed":8,"prefix":"role/zixia3/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zixia3/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/zixia3/attacked/all.atlas","total":2,"speed":8,"prefix":"role/zixia3/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zixia3/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/zixia3/die/all.atlas","total":6,"speed":8,"prefix":"role/zixia3/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zixia3/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/zixia3/skill/all.atlas","total":7,"speed":8,"prefix":"role/zixia3/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zixia3/skill/skill.lk",},],};
avatarinfo_map[281] = {"id":281,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/zhizun4/stand/all.atlas","total":8,"speed":8,"prefix":"role/zhizun4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zhizun4/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/zhizun4/run/all.atlas","total":8,"speed":8,"prefix":"role/zhizun4/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zhizun4/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/zhizun4/stand/all.atlas","total":8,"speed":8,"prefix":"role/zhizun4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zhizun4/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/zhizun4/attack/all.atlas","total":7,"speed":8,"prefix":"role/zhizun4/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zhizun4/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/zhizun4/attacked/all.atlas","total":2,"speed":8,"prefix":"role/zhizun4/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zhizun4/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/zhizun4/die/all.atlas","total":6,"speed":8,"prefix":"role/zhizun4/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zhizun4/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/zhizun4/skill/all.atlas","total":7,"speed":8,"prefix":"role/zhizun4/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zhizun4/skill/skill.lk",},],};
avatarinfo_map[282] = {"id":282,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/zixia4/stand/all.atlas","total":8,"speed":8,"prefix":"role/zixia4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zixia4/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/zixia4/run/all.atlas","total":8,"speed":8,"prefix":"role/zixia4/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zixia4/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/zixia4/stand/all.atlas","total":8,"speed":8,"prefix":"role/zixia4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zixia4/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/zixia4/attack/all.atlas","total":7,"speed":8,"prefix":"role/zixia4/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zixia4/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/zixia4/attacked/all.atlas","total":2,"speed":8,"prefix":"role/zixia4/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zixia4/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/zixia4/die/all.atlas","total":6,"speed":8,"prefix":"role/zixia4/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zixia4/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/zixia4/skill/all.atlas","total":7,"speed":8,"prefix":"role/zixia4/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/zixia4/skill/skill.lk",},],};
avatarinfo_map[291] = {"id":291,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/linan1/stand/all.atlas","total":8,"speed":8,"prefix":"role/linan1/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linan1/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/linan1/run/all.atlas","total":8,"speed":8,"prefix":"role/linan1/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linan1/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/linan1/stand/all.atlas","total":8,"speed":8,"prefix":"role/linan1/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linan1/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/linan1/attack/all.atlas","total":7,"speed":8,"prefix":"role/linan1/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linan1/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/linan1/attacked/all.atlas","total":2,"speed":8,"prefix":"role/linan1/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linan1/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/linan1/die/all.atlas","total":6,"speed":8,"prefix":"role/linan1/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linan1/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/linan1/skill/all.atlas","total":7,"speed":8,"prefix":"role/linan1/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linan1/skill/skill.lk",},],};
avatarinfo_map[292] = {"id":292,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/linv1/stand/all.atlas","total":8,"speed":8,"prefix":"role/linv1/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linv1/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/linv1/run/all.atlas","total":8,"speed":8,"prefix":"role/linv1/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linv1/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/linv1/stand/all.atlas","total":8,"speed":8,"prefix":"role/linv1/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linv1/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/linv1/attack/all.atlas","total":7,"speed":8,"prefix":"role/linv1/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linv1/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/linv1/attacked/all.atlas","total":2,"speed":8,"prefix":"role/linv1/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linv1/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/linv1/die/all.atlas","total":6,"speed":8,"prefix":"role/linv1/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linv1/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/linv1/skill/all.atlas","total":7,"speed":8,"prefix":"role/linv1/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linv1/skill/skill.lk",},],};
avatarinfo_map[301] = {"id":301,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/linan2/stand/all.atlas","total":8,"speed":8,"prefix":"role/linan2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linan2/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/linan2/run/all.atlas","total":8,"speed":8,"prefix":"role/linan2/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linan2/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/linan2/stand/all.atlas","total":8,"speed":8,"prefix":"role/linan2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linan2/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/linan2/attack/all.atlas","total":7,"speed":8,"prefix":"role/linan2/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linan2/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/linan2/attacked/all.atlas","total":2,"speed":8,"prefix":"role/linan2/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linan2/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/linan2/die/all.atlas","total":6,"speed":8,"prefix":"role/linan2/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linan2/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/linan2/skill/all.atlas","total":7,"speed":8,"prefix":"role/linan2/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linan2/skill/skill.lk",},],};
avatarinfo_map[302] = {"id":302,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/linv2/stand/all.atlas","total":8,"speed":8,"prefix":"role/linv2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linv2/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/linv2/run/all.atlas","total":8,"speed":8,"prefix":"role/linv2/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linv2/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/linv2/stand/all.atlas","total":8,"speed":8,"prefix":"role/linv2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linv2/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/linv2/attack/all.atlas","total":7,"speed":8,"prefix":"role/linv2/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linv2/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/linv2/attacked/all.atlas","total":2,"speed":8,"prefix":"role/linv2/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linv2/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/linv2/die/all.atlas","total":6,"speed":8,"prefix":"role/linv2/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linv2/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/linv2/skill/all.atlas","total":7,"speed":8,"prefix":"role/linv2/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linv2/skill/skill.lk",},],};
avatarinfo_map[311] = {"id":311,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/linan3/stand/all.atlas","total":8,"speed":8,"prefix":"role/linan3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linan3/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/linan3/run/all.atlas","total":8,"speed":8,"prefix":"role/linan3/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linan3/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/linan3/stand/all.atlas","total":8,"speed":8,"prefix":"role/linan3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linan3/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/linan3/attack/all.atlas","total":7,"speed":8,"prefix":"role/linan3/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linan3/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/linan3/attacked/all.atlas","total":2,"speed":8,"prefix":"role/linan3/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linan3/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/linan3/die/all.atlas","total":6,"speed":8,"prefix":"role/linan3/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linan3/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/linan3/skill/all.atlas","total":7,"speed":8,"prefix":"role/linan3/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linan3/skill/skill.lk",},],};
avatarinfo_map[312] = {"id":312,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/linv3/stand/all.atlas","total":8,"speed":8,"prefix":"role/linv3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linv3/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/linv3/run/all.atlas","total":8,"speed":8,"prefix":"role/linv3/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linv3/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/linv3/stand/all.atlas","total":8,"speed":8,"prefix":"role/linv3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linv3/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/linv3/attack/all.atlas","total":7,"speed":8,"prefix":"role/linv3/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linv3/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/linv3/attacked/all.atlas","total":2,"speed":8,"prefix":"role/linv3/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linv3/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/linv3/die/all.atlas","total":6,"speed":8,"prefix":"role/linv3/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linv3/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/linv3/skill/all.atlas","total":7,"speed":8,"prefix":"role/linv3/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linv3/skill/skill.lk",},],};
avatarinfo_map[321] = {"id":321,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/linan4/stand/all.atlas","total":8,"speed":8,"prefix":"role/linan4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linan4/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/linan4/run/all.atlas","total":8,"speed":8,"prefix":"role/linan4/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linan4/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/linan4/stand/all.atlas","total":8,"speed":8,"prefix":"role/linan4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linan4/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/linan4/attack/all.atlas","total":7,"speed":8,"prefix":"role/linan4/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linan4/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/linan4/attacked/all.atlas","total":2,"speed":8,"prefix":"role/linan4/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linan4/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/linan4/die/all.atlas","total":6,"speed":8,"prefix":"role/linan4/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linan4/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/linan4/skill/all.atlas","total":7,"speed":8,"prefix":"role/linan4/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linan4/skill/skill.lk",},],};
avatarinfo_map[322] = {"id":322,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/linv4/stand/all.atlas","total":8,"speed":8,"prefix":"role/linv4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linv4/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/linv4/run/all.atlas","total":8,"speed":8,"prefix":"role/linv4/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linv4/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/linv4/stand/all.atlas","total":8,"speed":8,"prefix":"role/linv4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linv4/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/linv4/attack/all.atlas","total":7,"speed":8,"prefix":"role/linv4/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linv4/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/linv4/attacked/all.atlas","total":2,"speed":8,"prefix":"role/linv4/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linv4/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/linv4/die/all.atlas","total":6,"speed":8,"prefix":"role/linv4/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linv4/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/linv4/skill/all.atlas","total":7,"speed":8,"prefix":"role/linv4/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/linv4/skill/skill.lk",},],};
avatarinfo_map[331] = {"id":331,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/guoer1/stand/all.atlas","total":8,"speed":8,"prefix":"role/guoer1/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/guoer1/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/guoer1/run/all.atlas","total":8,"speed":8,"prefix":"role/guoer1/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/guoer1/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/guoer1/stand/all.atlas","total":8,"speed":8,"prefix":"role/guoer1/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/guoer1/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/guoer1/attack/all.atlas","total":7,"speed":8,"prefix":"role/guoer1/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/guoer1/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/guoer1/attacked/all.atlas","total":2,"speed":8,"prefix":"role/guoer1/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/guoer1/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/guoer1/die/all.atlas","total":6,"speed":8,"prefix":"role/guoer1/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/guoer1/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/guoer1/skill/all.atlas","total":7,"speed":8,"prefix":"role/guoer1/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/guoer1/skill/skill.lk",},],};
avatarinfo_map[332] = {"id":332,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/gugu1/stand/all.atlas","total":8,"speed":8,"prefix":"role/gugu1/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/gugu1/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/gugu1/run/all.atlas","total":8,"speed":8,"prefix":"role/gugu1/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/gugu1/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/gugu1/stand/all.atlas","total":8,"speed":8,"prefix":"role/gugu1/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/gugu1/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/gugu1/attack/all.atlas","total":7,"speed":8,"prefix":"role/gugu1/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/gugu1/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/gugu1/attacked/all.atlas","total":2,"speed":8,"prefix":"role/gugu1/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/gugu1/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/gugu1/die/all.atlas","total":6,"speed":8,"prefix":"role/gugu1/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/gugu1/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/gugu1/skill/all.atlas","total":7,"speed":8,"prefix":"role/gugu1/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/gugu1/skill/skill.lk",},],};
avatarinfo_map[341] = {"id":341,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/guoer2/stand/all.atlas","total":8,"speed":8,"prefix":"role/guoer2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/guoer2/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/guoer2/run/all.atlas","total":8,"speed":8,"prefix":"role/guoer2/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/guoer2/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/guoer2/stand/all.atlas","total":8,"speed":8,"prefix":"role/guoer2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/guoer2/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/guoer2/attack/all.atlas","total":7,"speed":8,"prefix":"role/guoer2/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/guoer2/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/guoer2/attacked/all.atlas","total":2,"speed":8,"prefix":"role/guoer2/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/guoer2/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/guoer2/die/all.atlas","total":6,"speed":8,"prefix":"role/guoer2/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/guoer2/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/guoer2/skill/all.atlas","total":7,"speed":8,"prefix":"role/guoer2/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/guoer2/skill/skill.lk",},],};
avatarinfo_map[342] = {"id":342,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/gugu2/stand/all.atlas","total":8,"speed":8,"prefix":"role/gugu2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/gugu2/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/gugu2/run/all.atlas","total":8,"speed":8,"prefix":"role/gugu2/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/gugu2/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/gugu2/stand/all.atlas","total":8,"speed":8,"prefix":"role/gugu2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/gugu2/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/gugu2/attack/all.atlas","total":7,"speed":8,"prefix":"role/gugu2/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/gugu2/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/gugu2/attacked/all.atlas","total":2,"speed":8,"prefix":"role/gugu2/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/gugu2/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/gugu2/die/all.atlas","total":6,"speed":8,"prefix":"role/gugu2/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/gugu2/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/gugu2/skill/all.atlas","total":7,"speed":8,"prefix":"role/gugu2/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/gugu2/skill/skill.lk",},],};
avatarinfo_map[351] = {"id":351,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/guoer3/stand/all.atlas","total":8,"speed":8,"prefix":"role/guoer3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/guoer3/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/guoer3/run/all.atlas","total":8,"speed":8,"prefix":"role/guoer3/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/guoer3/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/guoer3/stand/all.atlas","total":8,"speed":8,"prefix":"role/guoer3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/guoer3/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/guoer3/attack/all.atlas","total":7,"speed":8,"prefix":"role/guoer3/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/guoer3/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/guoer3/attacked/all.atlas","total":2,"speed":8,"prefix":"role/guoer3/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/guoer3/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/guoer3/die/all.atlas","total":6,"speed":8,"prefix":"role/guoer3/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/guoer3/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/guoer3/skill/all.atlas","total":7,"speed":8,"prefix":"role/guoer3/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/guoer3/skill/skill.lk",},],};
avatarinfo_map[352] = {"id":352,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/gugu3/stand/all.atlas","total":8,"speed":8,"prefix":"role/gugu3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/gugu3/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/gugu3/run/all.atlas","total":8,"speed":8,"prefix":"role/gugu3/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/gugu3/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/gugu3/stand/all.atlas","total":8,"speed":8,"prefix":"role/gugu3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/gugu3/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/gugu3/attack/all.atlas","total":7,"speed":8,"prefix":"role/gugu3/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/gugu3/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/gugu3/attacked/all.atlas","total":2,"speed":8,"prefix":"role/gugu3/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/gugu3/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/gugu3/die/all.atlas","total":6,"speed":8,"prefix":"role/gugu3/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/gugu3/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/gugu3/skill/all.atlas","total":7,"speed":8,"prefix":"role/gugu3/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/gugu3/skill/skill.lk",},],};
avatarinfo_map[361] = {"id":361,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/guoer4/stand/all.atlas","total":8,"speed":8,"prefix":"role/guoer4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/guoer4/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/guoer4/run/all.atlas","total":8,"speed":8,"prefix":"role/guoer4/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/guoer4/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/guoer4/stand/all.atlas","total":8,"speed":8,"prefix":"role/guoer4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/guoer4/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/guoer4/attack/all.atlas","total":7,"speed":8,"prefix":"role/guoer4/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/guoer4/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/guoer4/attacked/all.atlas","total":2,"speed":8,"prefix":"role/guoer4/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/guoer4/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/guoer4/die/all.atlas","total":6,"speed":8,"prefix":"role/guoer4/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/guoer4/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/guoer4/skill/all.atlas","total":7,"speed":8,"prefix":"role/guoer4/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/guoer4/skill/skill.lk",},],};
avatarinfo_map[362] = {"id":362,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/gugu4/stand/all.atlas","total":8,"speed":8,"prefix":"role/gugu4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/gugu4/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/gugu4/run/all.atlas","total":8,"speed":8,"prefix":"role/gugu4/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/gugu4/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/gugu4/stand/all.atlas","total":8,"speed":8,"prefix":"role/gugu4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/gugu4/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/gugu4/attack/all.atlas","total":7,"speed":8,"prefix":"role/gugu4/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/gugu4/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/gugu4/attacked/all.atlas","total":2,"speed":8,"prefix":"role/gugu4/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/gugu4/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/gugu4/die/all.atlas","total":6,"speed":8,"prefix":"role/gugu4/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/gugu4/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/gugu4/skill/all.atlas","total":7,"speed":8,"prefix":"role/gugu4/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/gugu4/skill/skill.lk",},],};
avatarinfo_map[371] = {"id":371,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/marryh2/stand/all.atlas","total":8,"speed":8,"prefix":"role/marryh2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryh2/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/marryh2/run/all.atlas","total":8,"speed":8,"prefix":"role/marryh2/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryh2/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/marryh2/stand/all.atlas","total":8,"speed":8,"prefix":"role/marryh2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryh2/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/marryh2/attack/all.atlas","total":7,"speed":8,"prefix":"role/marryh2/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryh2/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/marryh2/attacked/all.atlas","total":2,"speed":8,"prefix":"role/marryh2/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryh2/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/marryh2/die/all.atlas","total":6,"speed":8,"prefix":"role/marryh2/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryh2/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/marryh2/skill/all.atlas","total":7,"speed":8,"prefix":"role/marryh2/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryh2/skill/skill.lk",},],};
avatarinfo_map[372] = {"id":372,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/marryg2/stand/all.atlas","total":8,"speed":8,"prefix":"role/marryg2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryg2/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/marryg2/run/all.atlas","total":8,"speed":8,"prefix":"role/marryg2/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryg2/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/marryg2/stand/all.atlas","total":8,"speed":8,"prefix":"role/marryg2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryg2/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/marryg2/attack/all.atlas","total":7,"speed":8,"prefix":"role/marryg2/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryg2/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/marryg2/attacked/all.atlas","total":2,"speed":8,"prefix":"role/marryg2/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryg2/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/marryg2/die/all.atlas","total":6,"speed":8,"prefix":"role/marryg2/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryg2/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/marryg2/skill/all.atlas","total":7,"speed":8,"prefix":"role/marryg2/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryg2/skill/skill.lk",},],};
avatarinfo_map[381] = {"id":381,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/marryh3/stand/all.atlas","total":8,"speed":8,"prefix":"role/marryh3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryh3/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/marryh3/run/all.atlas","total":8,"speed":8,"prefix":"role/marryh3/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryh3/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/marryh3/stand/all.atlas","total":8,"speed":8,"prefix":"role/marryh3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryh3/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/marryh3/attack/all.atlas","total":7,"speed":8,"prefix":"role/marryh3/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryh3/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/marryh3/attacked/all.atlas","total":2,"speed":8,"prefix":"role/marryh3/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryh3/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/marryh3/die/all.atlas","total":6,"speed":8,"prefix":"role/marryh3/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryh3/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/marryh3/skill/all.atlas","total":7,"speed":8,"prefix":"role/marryh3/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryh3/skill/skill.lk",},],};
avatarinfo_map[382] = {"id":382,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/marryg3/stand/all.atlas","total":8,"speed":8,"prefix":"role/marryg3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryg3/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/marryg3/run/all.atlas","total":8,"speed":8,"prefix":"role/marryg3/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryg3/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/marryg3/stand/all.atlas","total":8,"speed":8,"prefix":"role/marryg3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryg3/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/marryg3/attack/all.atlas","total":7,"speed":8,"prefix":"role/marryg3/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryg3/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/marryg3/attacked/all.atlas","total":2,"speed":8,"prefix":"role/marryg3/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryg3/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/marryg3/die/all.atlas","total":6,"speed":8,"prefix":"role/marryg3/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryg3/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/marryg3/skill/all.atlas","total":7,"speed":8,"prefix":"role/marryg3/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryg3/skill/skill.lk",},],};
avatarinfo_map[391] = {"id":391,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/marryh4/stand/all.atlas","total":8,"speed":8,"prefix":"role/marryh4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryh4/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/marryh4/run/all.atlas","total":8,"speed":8,"prefix":"role/marryh4/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryh4/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/marryh4/stand/all.atlas","total":8,"speed":8,"prefix":"role/marryh4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryh4/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/marryh4/attack/all.atlas","total":7,"speed":8,"prefix":"role/marryh4/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryh4/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/marryh4/attacked/all.atlas","total":2,"speed":8,"prefix":"role/marryh4/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryh4/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/marryh4/die/all.atlas","total":6,"speed":8,"prefix":"role/marryh4/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryh4/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/marryh4/skill/all.atlas","total":7,"speed":8,"prefix":"role/marryh4/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryh4/skill/skill.lk",},],};
avatarinfo_map[392] = {"id":392,"info_data":[{"aid":0,"w":512,"h":512,"path":"role/marryg4/stand/all.atlas","total":8,"speed":8,"prefix":"role/marryg4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryg4/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"role/marryg4/run/all.atlas","total":8,"speed":8,"prefix":"role/marryg4/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryg4/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"role/marryg4/stand/all.atlas","total":8,"speed":8,"prefix":"role/marryg4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryg4/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"role/marryg4/attack/all.atlas","total":7,"speed":8,"prefix":"role/marryg4/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryg4/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"role/marryg4/attacked/all.atlas","total":2,"speed":8,"prefix":"role/marryg4/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryg4/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"role/marryg4/die/all.atlas","total":6,"speed":8,"prefix":"role/marryg4/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryg4/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"role/marryg4/skill/all.atlas","total":7,"speed":8,"prefix":"role/marryg4/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"role/marryg4/skill/skill.lk",},],};
avatarinfo_map[1001] = {"id":1001,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/minglingfeizi/stand/all.atlas","total":8,"speed":8,"prefix":"monster/minglingfeizi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/minglingfeizi/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/minglingfeizi/run/all.atlas","total":7,"speed":8,"prefix":"monster/minglingfeizi/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/minglingfeizi/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/minglingfeizi/stand/all.atlas","total":8,"speed":8,"prefix":"monster/minglingfeizi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/minglingfeizi/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/minglingfeizi/attack/all.atlas","total":11,"speed":8,"prefix":"monster/minglingfeizi/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/minglingfeizi/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/minglingfeizi/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/minglingfeizi/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/minglingfeizi/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/minglingfeizi/die/all.atlas","total":8,"speed":8,"prefix":"monster/minglingfeizi/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/minglingfeizi/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/minglingfeizi/skill/all.atlas","total":11,"speed":8,"prefix":"monster/minglingfeizi/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/minglingfeizi/skill/skill.lk",},],};
avatarinfo_map[1002] = {"id":1002,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/yezhu/stand/all.atlas","total":6,"speed":8,"prefix":"monster/yezhu/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yezhu/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/yezhu/run/all.atlas","total":6,"speed":8,"prefix":"monster/yezhu/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yezhu/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/yezhu/stand/all.atlas","total":6,"speed":8,"prefix":"monster/yezhu/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yezhu/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/yezhu/attack/all.atlas","total":7,"speed":8,"prefix":"monster/yezhu/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yezhu/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/yezhu/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/yezhu/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yezhu/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/yezhu/die/all.atlas","total":7,"speed":8,"prefix":"monster/yezhu/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yezhu/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/yezhu/skill/all.atlas","total":7,"speed":8,"prefix":"monster/yezhu/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yezhu/skill/skill.lk",},],};
avatarinfo_map[1003] = {"id":1003,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/laohu/stand/all.atlas","total":8,"speed":8,"prefix":"monster/laohu/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/laohu/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/laohu/run/all.atlas","total":8,"speed":8,"prefix":"monster/laohu/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/laohu/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/laohu/stand/all.atlas","total":8,"speed":8,"prefix":"monster/laohu/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/laohu/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/laohu/attack/all.atlas","total":7,"speed":8,"prefix":"monster/laohu/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/laohu/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/laohu/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/laohu/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/laohu/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/laohu/die/all.atlas","total":8,"speed":8,"prefix":"monster/laohu/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/laohu/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/laohu/skill/all.atlas","total":7,"speed":8,"prefix":"monster/laohu/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/laohu/skill/skill.lk",},],};
avatarinfo_map[1004] = {"id":1004,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/hudie/stand/all.atlas","total":8,"speed":8,"prefix":"monster/hudie/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/hudie/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/hudie/run/all.atlas","total":8,"speed":8,"prefix":"monster/hudie/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/hudie/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/hudie/stand/all.atlas","total":8,"speed":8,"prefix":"monster/hudie/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/hudie/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/hudie/attack/all.atlas","total":7,"speed":8,"prefix":"monster/hudie/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/hudie/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/hudie/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/hudie/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/hudie/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/hudie/die/all.atlas","total":6,"speed":8,"prefix":"monster/hudie/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/hudie/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/hudie/skill/all.atlas","total":7,"speed":8,"prefix":"monster/hudie/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/hudie/skill/skill.lk",},],};
avatarinfo_map[1005] = {"id":1005,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/xiaobailong/stand/all.atlas","total":8,"speed":8,"prefix":"monster/xiaobailong/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/xiaobailong/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/xiaobailong/run/all.atlas","total":8,"speed":8,"prefix":"monster/xiaobailong/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/xiaobailong/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/xiaobailong/stand/all.atlas","total":8,"speed":8,"prefix":"monster/xiaobailong/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/xiaobailong/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/xiaobailong/attack/all.atlas","total":8,"speed":8,"prefix":"monster/xiaobailong/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/xiaobailong/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/xiaobailong/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/xiaobailong/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/xiaobailong/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/xiaobailong/die/all.atlas","total":8,"speed":8,"prefix":"monster/xiaobailong/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/xiaobailong/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/xiaobailong/skill/all.atlas","total":7,"speed":8,"prefix":"monster/xiaobailong/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/xiaobailong/skill/skill.lk",},],};
avatarinfo_map[1006] = {"id":1006,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/chaixiaobao/stand/all.atlas","total":8,"speed":8,"prefix":"monster/chaixiaobao/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/chaixiaobao/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/chaixiaobao/run/all.atlas","total":8,"speed":8,"prefix":"monster/chaixiaobao/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/chaixiaobao/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/chaixiaobao/stand/all.atlas","total":8,"speed":8,"prefix":"monster/chaixiaobao/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/chaixiaobao/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/chaixiaobao/attack/all.atlas","total":8,"speed":8,"prefix":"monster/chaixiaobao/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/chaixiaobao/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/chaixiaobao/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/chaixiaobao/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/chaixiaobao/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/chaixiaobao/die/all.atlas","total":8,"speed":8,"prefix":"monster/chaixiaobao/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/chaixiaobao/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/chaixiaobao/skill/all.atlas","total":8,"speed":8,"prefix":"monster/chaixiaobao/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/chaixiaobao/skill/skill.lk",},],};
avatarinfo_map[1007] = {"id":1007,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/guichengxiang/stand/all.atlas","total":8,"speed":8,"prefix":"monster/guichengxiang/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/guichengxiang/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/guichengxiang/run/all.atlas","total":8,"speed":8,"prefix":"monster/guichengxiang/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/guichengxiang/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/guichengxiang/stand/all.atlas","total":8,"speed":8,"prefix":"monster/guichengxiang/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/guichengxiang/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/guichengxiang/attack/all.atlas","total":8,"speed":8,"prefix":"monster/guichengxiang/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/guichengxiang/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/guichengxiang/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/guichengxiang/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/guichengxiang/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/guichengxiang/die/all.atlas","total":8,"speed":8,"prefix":"monster/guichengxiang/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/guichengxiang/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/guichengxiang/skill/all.atlas","total":8,"speed":8,"prefix":"monster/guichengxiang/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/guichengxiang/skill/skill.lk",},],};
avatarinfo_map[1008] = {"id":1008,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/jiangshi/stand/all.atlas","total":8,"speed":8,"prefix":"monster/jiangshi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/jiangshi/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/jiangshi/run/all.atlas","total":6,"speed":8,"prefix":"monster/jiangshi/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/jiangshi/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/jiangshi/stand/all.atlas","total":8,"speed":8,"prefix":"monster/jiangshi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/jiangshi/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/jiangshi/attack/all.atlas","total":8,"speed":8,"prefix":"monster/jiangshi/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/jiangshi/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/jiangshi/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/jiangshi/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/jiangshi/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/jiangshi/die/all.atlas","total":8,"speed":8,"prefix":"monster/jiangshi/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/jiangshi/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/jiangshi/skill/all.atlas","total":8,"speed":8,"prefix":"monster/jiangshi/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/jiangshi/skill/skill.lk",},],};
avatarinfo_map[1009] = {"id":1009,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/guijiang/stand/all.atlas","total":8,"speed":8,"prefix":"monster/guijiang/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/guijiang/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/guijiang/run/all.atlas","total":8,"speed":8,"prefix":"monster/guijiang/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/guijiang/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/guijiang/stand/all.atlas","total":8,"speed":8,"prefix":"monster/guijiang/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/guijiang/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/guijiang/attack/all.atlas","total":8,"speed":8,"prefix":"monster/guijiang/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/guijiang/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/guijiang/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/guijiang/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/guijiang/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/guijiang/die/all.atlas","total":8,"speed":8,"prefix":"monster/guijiang/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/guijiang/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/guijiang/skill/all.atlas","total":8,"speed":8,"prefix":"monster/guijiang/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/guijiang/skill/skill.lk",},],};
avatarinfo_map[1010] = {"id":1010,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/huayao/stand/all.atlas","total":8,"speed":8,"prefix":"monster/huayao/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/huayao/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/huayao/run/all.atlas","total":8,"speed":8,"prefix":"monster/huayao/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/huayao/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/huayao/stand/all.atlas","total":8,"speed":8,"prefix":"monster/huayao/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/huayao/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/huayao/attack/all.atlas","total":8,"speed":8,"prefix":"monster/huayao/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/huayao/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/huayao/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/huayao/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/huayao/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/huayao/die/all.atlas","total":8,"speed":8,"prefix":"monster/huayao/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/huayao/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/huayao/skill/all.atlas","total":8,"speed":8,"prefix":"monster/huayao/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/huayao/skill/skill.lk",},],};
avatarinfo_map[1011] = {"id":1011,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/jiao/stand/all.atlas","total":8,"speed":8,"prefix":"monster/jiao/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/jiao/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/jiao/run/all.atlas","total":6,"speed":8,"prefix":"monster/jiao/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/jiao/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/jiao/stand/all.atlas","total":8,"speed":8,"prefix":"monster/jiao/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/jiao/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/jiao/attack/all.atlas","total":8,"speed":8,"prefix":"monster/jiao/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/jiao/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/jiao/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/jiao/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/jiao/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/jiao/die/all.atlas","total":8,"speed":8,"prefix":"monster/jiao/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/jiao/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/jiao/skill/all.atlas","total":8,"speed":8,"prefix":"monster/jiao/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/jiao/skill/skill.lk",},],};
avatarinfo_map[1012] = {"id":1012,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/renyu/stand/all.atlas","total":8,"speed":8,"prefix":"monster/renyu/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/renyu/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/renyu/run/all.atlas","total":8,"speed":8,"prefix":"monster/renyu/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/renyu/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/renyu/stand/all.atlas","total":8,"speed":8,"prefix":"monster/renyu/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/renyu/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/renyu/attack/all.atlas","total":8,"speed":8,"prefix":"monster/renyu/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/renyu/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/renyu/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/renyu/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/renyu/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/renyu/die/all.atlas","total":8,"speed":8,"prefix":"monster/renyu/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/renyu/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/renyu/skill/all.atlas","total":8,"speed":8,"prefix":"monster/renyu/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/renyu/skill/skill.lk",},],};
avatarinfo_map[1013] = {"id":1013,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/jinguanghou/stand/all.atlas","total":8,"speed":8,"prefix":"monster/jinguanghou/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/jinguanghou/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/jinguanghou/run/all.atlas","total":8,"speed":8,"prefix":"monster/jinguanghou/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/jinguanghou/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/jinguanghou/stand/all.atlas","total":8,"speed":8,"prefix":"monster/jinguanghou/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/jinguanghou/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/jinguanghou/attack/all.atlas","total":9,"speed":8,"prefix":"monster/jinguanghou/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/jinguanghou/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/jinguanghou/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/jinguanghou/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/jinguanghou/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/jinguanghou/die/all.atlas","total":9,"speed":8,"prefix":"monster/jinguanghou/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/jinguanghou/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/jinguanghou/skill/all.atlas","total":9,"speed":8,"prefix":"monster/jinguanghou/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/jinguanghou/skill/skill.lk",},],};
avatarinfo_map[1014] = {"id":1014,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/langtaosha/stand/all.atlas","total":8,"speed":8,"prefix":"monster/langtaosha/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/langtaosha/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/langtaosha/run/all.atlas","total":8,"speed":8,"prefix":"monster/langtaosha/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/langtaosha/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/langtaosha/stand/all.atlas","total":8,"speed":8,"prefix":"monster/langtaosha/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/langtaosha/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/langtaosha/attack/all.atlas","total":8,"speed":8,"prefix":"monster/langtaosha/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/langtaosha/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/langtaosha/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/langtaosha/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/langtaosha/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/langtaosha/die/all.atlas","total":8,"speed":8,"prefix":"monster/langtaosha/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/langtaosha/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/langtaosha/skill/all.atlas","total":8,"speed":8,"prefix":"monster/langtaosha/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/langtaosha/skill/skill.lk",},],};
avatarinfo_map[1015] = {"id":1015,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/waguai/stand/all.atlas","total":8,"speed":8,"prefix":"monster/waguai/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/waguai/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/waguai/run/all.atlas","total":7,"speed":8,"prefix":"monster/waguai/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/waguai/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/waguai/stand/all.atlas","total":8,"speed":8,"prefix":"monster/waguai/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/waguai/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/waguai/attack/all.atlas","total":8,"speed":8,"prefix":"monster/waguai/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/waguai/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/waguai/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/waguai/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/waguai/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/waguai/die/all.atlas","total":8,"speed":8,"prefix":"monster/waguai/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/waguai/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/waguai/skill/all.atlas","total":8,"speed":8,"prefix":"monster/waguai/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/waguai/skill/skill.lk",},],};
avatarinfo_map[1016] = {"id":1016,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/xiong/stand/all.atlas","total":8,"speed":8,"prefix":"monster/xiong/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/xiong/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/xiong/run/all.atlas","total":8,"speed":8,"prefix":"monster/xiong/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/xiong/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/xiong/stand/all.atlas","total":8,"speed":8,"prefix":"monster/xiong/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/xiong/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/xiong/attack/all.atlas","total":8,"speed":8,"prefix":"monster/xiong/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/xiong/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/xiong/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/xiong/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/xiong/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/xiong/die/all.atlas","total":8,"speed":8,"prefix":"monster/xiong/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/xiong/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/xiong/skill/all.atlas","total":8,"speed":8,"prefix":"monster/xiong/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/xiong/skill/skill.lk",},],};
avatarinfo_map[1017] = {"id":1017,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/shixie/stand/all.atlas","total":8,"speed":8,"prefix":"monster/shixie/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/shixie/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/shixie/run/all.atlas","total":6,"speed":8,"prefix":"monster/shixie/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/shixie/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/shixie/stand/all.atlas","total":8,"speed":8,"prefix":"monster/shixie/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/shixie/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/shixie/attack/all.atlas","total":8,"speed":8,"prefix":"monster/shixie/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/shixie/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/shixie/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/shixie/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/shixie/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/shixie/die/all.atlas","total":8,"speed":8,"prefix":"monster/shixie/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/shixie/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/shixie/skill/all.atlas","total":8,"speed":8,"prefix":"monster/shixie/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/shixie/skill/skill.lk",},],};
avatarinfo_map[1018] = {"id":1018,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/bingxuemo/stand/all.atlas","total":8,"speed":8,"prefix":"monster/bingxuemo/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/bingxuemo/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/bingxuemo/run/all.atlas","total":8,"speed":8,"prefix":"monster/bingxuemo/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/bingxuemo/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/bingxuemo/stand/all.atlas","total":8,"speed":8,"prefix":"monster/bingxuemo/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/bingxuemo/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/bingxuemo/attack/all.atlas","total":7,"speed":8,"prefix":"monster/bingxuemo/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/bingxuemo/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/bingxuemo/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/bingxuemo/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/bingxuemo/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/bingxuemo/die/all.atlas","total":7,"speed":8,"prefix":"monster/bingxuemo/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/bingxuemo/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/bingxuemo/skill/all.atlas","total":7,"speed":8,"prefix":"monster/bingxuemo/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/bingxuemo/skill/skill.lk",},],};
avatarinfo_map[1019] = {"id":1019,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/yuren/stand/all.atlas","total":8,"speed":8,"prefix":"monster/yuren/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yuren/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/yuren/run/all.atlas","total":8,"speed":8,"prefix":"monster/yuren/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yuren/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/yuren/stand/all.atlas","total":8,"speed":8,"prefix":"monster/yuren/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yuren/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/yuren/attack/all.atlas","total":8,"speed":8,"prefix":"monster/yuren/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yuren/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/yuren/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/yuren/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yuren/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/yuren/die/all.atlas","total":8,"speed":8,"prefix":"monster/yuren/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yuren/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/yuren/skill/all.atlas","total":8,"speed":8,"prefix":"monster/yuren/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yuren/skill/skill.lk",},],};
avatarinfo_map[1020] = {"id":1020,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/yuxiaozhui/stand/all.atlas","total":8,"speed":8,"prefix":"monster/yuxiaozhui/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yuxiaozhui/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/yuxiaozhui/run/all.atlas","total":6,"speed":8,"prefix":"monster/yuxiaozhui/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yuxiaozhui/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/yuxiaozhui/stand/all.atlas","total":8,"speed":8,"prefix":"monster/yuxiaozhui/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yuxiaozhui/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/yuxiaozhui/attack/all.atlas","total":8,"speed":8,"prefix":"monster/yuxiaozhui/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yuxiaozhui/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/yuxiaozhui/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/yuxiaozhui/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yuxiaozhui/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/yuxiaozhui/die/all.atlas","total":8,"speed":8,"prefix":"monster/yuxiaozhui/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yuxiaozhui/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/yuxiaozhui/skill/all.atlas","total":8,"speed":8,"prefix":"monster/yuxiaozhui/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yuxiaozhui/skill/skill.lk",},],};
avatarinfo_map[1021] = {"id":1021,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/yutujing/stand/all.atlas","total":8,"speed":8,"prefix":"monster/yutujing/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yutujing/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/yutujing/run/all.atlas","total":8,"speed":8,"prefix":"monster/yutujing/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yutujing/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/yutujing/stand/all.atlas","total":8,"speed":8,"prefix":"monster/yutujing/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yutujing/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/yutujing/attack/all.atlas","total":8,"speed":8,"prefix":"monster/yutujing/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yutujing/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/yutujing/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/yutujing/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yutujing/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/yutujing/die/all.atlas","total":8,"speed":8,"prefix":"monster/yutujing/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yutujing/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/yutujing/skill/all.atlas","total":8,"speed":8,"prefix":"monster/yutujing/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yutujing/skill/skill.lk",},],};
avatarinfo_map[1022] = {"id":1022,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/baiwuchang/stand/all.atlas","total":8,"speed":8,"prefix":"monster/baiwuchang/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/baiwuchang/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/baiwuchang/run/all.atlas","total":8,"speed":8,"prefix":"monster/baiwuchang/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/baiwuchang/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/baiwuchang/stand/all.atlas","total":8,"speed":8,"prefix":"monster/baiwuchang/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/baiwuchang/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/baiwuchang/attack/all.atlas","total":8,"speed":8,"prefix":"monster/baiwuchang/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/baiwuchang/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/baiwuchang/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/baiwuchang/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/baiwuchang/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/baiwuchang/die/all.atlas","total":7,"speed":8,"prefix":"monster/baiwuchang/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/baiwuchang/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/baiwuchang/skill/all.atlas","total":8,"speed":8,"prefix":"monster/baiwuchang/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/baiwuchang/skill/skill.lk",},],};
avatarinfo_map[1023] = {"id":1023,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/heiwuchang/stand/all.atlas","total":8,"speed":8,"prefix":"monster/heiwuchang/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/heiwuchang/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/heiwuchang/run/all.atlas","total":8,"speed":8,"prefix":"monster/heiwuchang/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/heiwuchang/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/heiwuchang/stand/all.atlas","total":8,"speed":8,"prefix":"monster/heiwuchang/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/heiwuchang/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/heiwuchang/attack/all.atlas","total":8,"speed":8,"prefix":"monster/heiwuchang/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/heiwuchang/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/heiwuchang/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/heiwuchang/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/heiwuchang/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/heiwuchang/die/all.atlas","total":7,"speed":8,"prefix":"monster/heiwuchang/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/heiwuchang/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/heiwuchang/skill/all.atlas","total":8,"speed":8,"prefix":"monster/heiwuchang/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/heiwuchang/skill/skill.lk",},],};
avatarinfo_map[1024] = {"id":1024,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/shaheshang/stand/all.atlas","total":8,"speed":8,"prefix":"monster/shaheshang/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/shaheshang/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/shaheshang/run/all.atlas","total":8,"speed":8,"prefix":"monster/shaheshang/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/shaheshang/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/shaheshang/stand/all.atlas","total":8,"speed":8,"prefix":"monster/shaheshang/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/shaheshang/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/shaheshang/attack/all.atlas","total":8,"speed":8,"prefix":"monster/shaheshang/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/shaheshang/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/shaheshang/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/shaheshang/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/shaheshang/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/shaheshang/die/all.atlas","total":8,"speed":8,"prefix":"monster/shaheshang/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/shaheshang/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/shaheshang/skill/all.atlas","total":8,"speed":8,"prefix":"monster/shaheshang/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/shaheshang/skill/skill.lk",},],};
avatarinfo_map[1025] = {"id":1025,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/change/stand/all.atlas","total":8,"speed":8,"prefix":"monster/change/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/change/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/change/run/all.atlas","total":8,"speed":8,"prefix":"monster/change/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/change/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/change/stand/all.atlas","total":8,"speed":8,"prefix":"monster/change/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/change/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/change/attack/all.atlas","total":8,"speed":8,"prefix":"monster/change/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/change/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/change/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/change/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/change/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/change/die/all.atlas","total":8,"speed":8,"prefix":"monster/change/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/change/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/change/skill/all.atlas","total":8,"speed":8,"prefix":"monster/change/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/change/skill/attack.lk",},],};
avatarinfo_map[1026] = {"id":1026,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/wanshenggongzhu/stand/all.atlas","total":8,"speed":8,"prefix":"monster/wanshenggongzhu/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/wanshenggongzhu/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/wanshenggongzhu/run/all.atlas","total":8,"speed":8,"prefix":"monster/wanshenggongzhu/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/wanshenggongzhu/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/wanshenggongzhu/stand/all.atlas","total":8,"speed":8,"prefix":"monster/wanshenggongzhu/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/wanshenggongzhu/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/wanshenggongzhu/attack/all.atlas","total":8,"speed":8,"prefix":"monster/wanshenggongzhu/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/wanshenggongzhu/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/wanshenggongzhu/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/wanshenggongzhu/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/wanshenggongzhu/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/wanshenggongzhu/die/all.atlas","total":8,"speed":8,"prefix":"monster/wanshenggongzhu/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/wanshenggongzhu/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/wanshenggongzhu/skill/all.atlas","total":8,"speed":8,"prefix":"monster/wanshenggongzhu/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/wanshenggongzhu/skill/skill.lk",},],};
avatarinfo_map[1027] = {"id":1027,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/wukong/stand/all.atlas","total":8,"speed":8,"prefix":"monster/wukong/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/wukong/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/wukong/run/all.atlas","total":8,"speed":8,"prefix":"monster/wukong/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/wukong/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/wukong/stand/all.atlas","total":8,"speed":8,"prefix":"monster/wukong/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/wukong/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/wukong/attack/all.atlas","total":8,"speed":8,"prefix":"monster/wukong/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/wukong/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/wukong/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/wukong/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/wukong/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/wukong/die/all.atlas","total":8,"speed":8,"prefix":"monster/wukong/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/wukong/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/wukong/skill/all.atlas","total":8,"speed":8,"prefix":"monster/wukong/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/wukong/skill/skill.lk",},],};
avatarinfo_map[1028] = {"id":1028,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/niutou/stand/all.atlas","total":8,"speed":8,"prefix":"monster/niutou/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/niutou/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/niutou/run/all.atlas","total":8,"speed":8,"prefix":"monster/niutou/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/niutou/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/niutou/stand/all.atlas","total":8,"speed":8,"prefix":"monster/niutou/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/niutou/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/niutou/attack/all.atlas","total":8,"speed":8,"prefix":"monster/niutou/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/niutou/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/niutou/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/niutou/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/niutou/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/niutou/die/all.atlas","total":8,"speed":8,"prefix":"monster/niutou/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/niutou/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/niutou/skill/all.atlas","total":8,"speed":8,"prefix":"monster/niutou/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/niutou/skill/skill.lk",},],};
avatarinfo_map[1029] = {"id":1029,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/honghaier/stand/all.atlas","total":8,"speed":8,"prefix":"monster/honghaier/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/honghaier/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/honghaier/run/all.atlas","total":8,"speed":8,"prefix":"monster/honghaier/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/honghaier/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/honghaier/stand/all.atlas","total":8,"speed":8,"prefix":"monster/honghaier/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/honghaier/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/honghaier/attack/all.atlas","total":8,"speed":8,"prefix":"monster/honghaier/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/honghaier/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/honghaier/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/honghaier/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/honghaier/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/honghaier/die/all.atlas","total":8,"speed":8,"prefix":"monster/honghaier/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/honghaier/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/honghaier/skill/all.atlas","total":8,"speed":8,"prefix":"monster/honghaier/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/honghaier/skill/skill.lk",},],};
avatarinfo_map[1030] = {"id":1030,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/hujiang/stand/all.atlas","total":8,"speed":8,"prefix":"monster/hujiang/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/hujiang/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/hujiang/run/all.atlas","total":8,"speed":8,"prefix":"monster/hujiang/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/hujiang/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/hujiang/stand/all.atlas","total":8,"speed":8,"prefix":"monster/hujiang/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/hujiang/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/hujiang/attack/all.atlas","total":8,"speed":8,"prefix":"monster/hujiang/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/hujiang/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/hujiang/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/hujiang/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/hujiang/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/hujiang/die/all.atlas","total":8,"speed":8,"prefix":"monster/hujiang/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/hujiang/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/hujiang/skill/all.atlas","total":8,"speed":8,"prefix":"monster/hujiang/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/hujiang/skill/skill.lk",},],};
avatarinfo_map[1031] = {"id":1031,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/longwang/stand/all.atlas","total":8,"speed":8,"prefix":"monster/longwang/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/longwang/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/longwang/run/all.atlas","total":8,"speed":8,"prefix":"monster/longwang/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/longwang/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/longwang/stand/all.atlas","total":8,"speed":8,"prefix":"monster/longwang/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/longwang/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/longwang/attack/all.atlas","total":8,"speed":8,"prefix":"monster/longwang/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/longwang/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/longwang/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/longwang/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/longwang/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/longwang/die/all.atlas","total":8,"speed":8,"prefix":"monster/longwang/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/longwang/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/longwang/skill/all.atlas","total":8,"speed":8,"prefix":"monster/longwang/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/longwang/skill/attack.lk",},],};
avatarinfo_map[1032] = {"id":1032,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/luosha/stand/all.atlas","total":8,"speed":8,"prefix":"monster/luosha/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/luosha/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/luosha/run/all.atlas","total":8,"speed":8,"prefix":"monster/luosha/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/luosha/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/luosha/stand/all.atlas","total":8,"speed":8,"prefix":"monster/luosha/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/luosha/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/luosha/attack/all.atlas","total":8,"speed":8,"prefix":"monster/luosha/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/luosha/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/luosha/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/luosha/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/luosha/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/luosha/die/all.atlas","total":8,"speed":8,"prefix":"monster/luosha/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/luosha/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/luosha/skill/all.atlas","total":8,"speed":8,"prefix":"monster/luosha/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/luosha/skill/skill.lk",},],};
avatarinfo_map[1033] = {"id":1033,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/mamian/stand/all.atlas","total":8,"speed":8,"prefix":"monster/mamian/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/mamian/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/mamian/run/all.atlas","total":8,"speed":8,"prefix":"monster/mamian/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/mamian/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/mamian/stand/all.atlas","total":8,"speed":8,"prefix":"monster/mamian/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/mamian/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/mamian/attack/all.atlas","total":8,"speed":8,"prefix":"monster/mamian/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/mamian/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/mamian/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/mamian/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/mamian/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/mamian/die/all.atlas","total":8,"speed":8,"prefix":"monster/mamian/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/mamian/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/mamian/skill/all.atlas","total":8,"speed":8,"prefix":"monster/mamian/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/mamian/skill/skill.lk",},],};
avatarinfo_map[1034] = {"id":1034,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/miaoyin/stand/all.atlas","total":8,"speed":8,"prefix":"monster/miaoyin/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/miaoyin/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/miaoyin/run/all.atlas","total":8,"speed":8,"prefix":"monster/miaoyin/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/miaoyin/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/miaoyin/stand/all.atlas","total":8,"speed":8,"prefix":"monster/miaoyin/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/miaoyin/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/miaoyin/attack/all.atlas","total":8,"speed":8,"prefix":"monster/miaoyin/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/miaoyin/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/miaoyin/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/miaoyin/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/miaoyin/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/miaoyin/die/all.atlas","total":8,"speed":8,"prefix":"monster/miaoyin/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/miaoyin/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/miaoyin/skill/all.atlas","total":8,"speed":8,"prefix":"monster/miaoyin/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/miaoyin/skill/attack.lk",},],};
avatarinfo_map[1035] = {"id":1035,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/nezha/stand/all.atlas","total":8,"speed":8,"prefix":"monster/nezha/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/nezha/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/nezha/run/all.atlas","total":8,"speed":8,"prefix":"monster/nezha/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/nezha/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/nezha/stand/all.atlas","total":8,"speed":8,"prefix":"monster/nezha/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/nezha/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/nezha/attack/all.atlas","total":8,"speed":8,"prefix":"monster/nezha/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/nezha/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/nezha/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/nezha/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/nezha/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/nezha/die/all.atlas","total":8,"speed":8,"prefix":"monster/nezha/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/nezha/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/nezha/skill/all.atlas","total":8,"speed":8,"prefix":"monster/nezha/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/nezha/skill/skill.lk",},],};
avatarinfo_map[1036] = {"id":1036,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/niumowang/stand/all.atlas","total":8,"speed":8,"prefix":"monster/niumowang/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/niumowang/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/niumowang/run/all.atlas","total":8,"speed":8,"prefix":"monster/niumowang/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/niumowang/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/niumowang/stand/all.atlas","total":8,"speed":8,"prefix":"monster/niumowang/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/niumowang/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/niumowang/attack/all.atlas","total":8,"speed":8,"prefix":"monster/niumowang/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/niumowang/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/niumowang/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/niumowang/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/niumowang/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/niumowang/die/all.atlas","total":8,"speed":8,"prefix":"monster/niumowang/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/niumowang/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/niumowang/skill/all.atlas","total":8,"speed":8,"prefix":"monster/niumowang/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/niumowang/skill/skill.lk",},],};
avatarinfo_map[1037] = {"id":1037,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/nvwa/stand/all.atlas","total":8,"speed":8,"prefix":"monster/nvwa/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/nvwa/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/nvwa/run/all.atlas","total":8,"speed":8,"prefix":"monster/nvwa/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/nvwa/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/nvwa/stand/all.atlas","total":8,"speed":8,"prefix":"monster/nvwa/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/nvwa/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/nvwa/attack/all.atlas","total":8,"speed":8,"prefix":"monster/nvwa/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/nvwa/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/nvwa/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/nvwa/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/nvwa/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/nvwa/die/all.atlas","total":8,"speed":8,"prefix":"monster/nvwa/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/nvwa/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/nvwa/skill/all.atlas","total":8,"speed":8,"prefix":"monster/nvwa/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/nvwa/skill/skill.lk",},],};
avatarinfo_map[1038] = {"id":1038,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/tangseng/stand/all.atlas","total":8,"speed":8,"prefix":"monster/tangseng/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/tangseng/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/tangseng/run/all.atlas","total":8,"speed":8,"prefix":"monster/tangseng/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/tangseng/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/tangseng/stand/all.atlas","total":8,"speed":8,"prefix":"monster/tangseng/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/tangseng/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/tangseng/attack/all.atlas","total":8,"speed":8,"prefix":"monster/tangseng/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/tangseng/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/tangseng/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/tangseng/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/tangseng/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/tangseng/die/all.atlas","total":8,"speed":8,"prefix":"monster/tangseng/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/tangseng/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/tangseng/skill/all.atlas","total":8,"speed":8,"prefix":"monster/tangseng/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/tangseng/skill/skill.lk",},],};
avatarinfo_map[1039] = {"id":1039,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/tieshan/stand/all.atlas","total":8,"speed":8,"prefix":"monster/tieshan/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/tieshan/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/tieshan/run/all.atlas","total":8,"speed":8,"prefix":"monster/tieshan/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/tieshan/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/tieshan/stand/all.atlas","total":8,"speed":8,"prefix":"monster/tieshan/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/tieshan/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/tieshan/attack/all.atlas","total":8,"speed":8,"prefix":"monster/tieshan/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/tieshan/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/tieshan/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/tieshan/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/tieshan/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/tieshan/die/all.atlas","total":8,"speed":8,"prefix":"monster/tieshan/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/tieshan/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/tieshan/skill/all.atlas","total":8,"speed":8,"prefix":"monster/tieshan/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/tieshan/skill/skill.lk",},],};
avatarinfo_map[1040] = {"id":1040,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/yanluo/stand/all.atlas","total":8,"speed":8,"prefix":"monster/yanluo/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yanluo/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/yanluo/run/all.atlas","total":8,"speed":8,"prefix":"monster/yanluo/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yanluo/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/yanluo/stand/all.atlas","total":8,"speed":8,"prefix":"monster/yanluo/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yanluo/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/yanluo/attack/all.atlas","total":8,"speed":8,"prefix":"monster/yanluo/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yanluo/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/yanluo/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/yanluo/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yanluo/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/yanluo/die/all.atlas","total":8,"speed":8,"prefix":"monster/yanluo/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yanluo/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/yanluo/skill/all.atlas","total":8,"speed":8,"prefix":"monster/yanluo/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/yanluo/skill/skill.lk",},],};
avatarinfo_map[1041] = {"id":1041,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/zhubajie/stand/all.atlas","total":8,"speed":8,"prefix":"monster/zhubajie/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/zhubajie/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/zhubajie/run/all.atlas","total":8,"speed":8,"prefix":"monster/zhubajie/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/zhubajie/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/zhubajie/stand/all.atlas","total":8,"speed":8,"prefix":"monster/zhubajie/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/zhubajie/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/zhubajie/attack/all.atlas","total":8,"speed":8,"prefix":"monster/zhubajie/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/zhubajie/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/zhubajie/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/zhubajie/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/zhubajie/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/zhubajie/die/all.atlas","total":8,"speed":8,"prefix":"monster/zhubajie/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/zhubajie/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/zhubajie/skill/all.atlas","total":8,"speed":8,"prefix":"monster/zhubajie/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/zhubajie/skill/skill.lk",},],};
avatarinfo_map[1042] = {"id":1042,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/zhuhou/stand/all.atlas","total":8,"speed":8,"prefix":"monster/zhuhou/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/zhuhou/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/zhuhou/run/all.atlas","total":8,"speed":8,"prefix":"monster/zhuhou/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/zhuhou/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/zhuhou/stand/all.atlas","total":8,"speed":8,"prefix":"monster/zhuhou/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/zhuhou/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/zhuhou/attack/all.atlas","total":8,"speed":8,"prefix":"monster/zhuhou/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/zhuhou/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/zhuhou/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/zhuhou/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/zhuhou/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/zhuhou/die/all.atlas","total":8,"speed":8,"prefix":"monster/zhuhou/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/zhuhou/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/zhuhou/skill/all.atlas","total":8,"speed":8,"prefix":"monster/zhuhou/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/zhuhou/skill/skill.lk",},],};
avatarinfo_map[1043] = {"id":1043,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/phoenix/stand/all.atlas","total":8,"speed":8,"prefix":"monster/phoenix/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/phoenix/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/phoenix/run/all.atlas","total":8,"speed":8,"prefix":"monster/phoenix/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/phoenix/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/phoenix/stand/all.atlas","total":8,"speed":8,"prefix":"monster/phoenix/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/phoenix/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/phoenix/attack/all.atlas","total":8,"speed":8,"prefix":"monster/phoenix/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/phoenix/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/phoenix/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/phoenix/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/phoenix/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/phoenix/die/all.atlas","total":8,"speed":8,"prefix":"monster/phoenix/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/phoenix/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/phoenix/skill/all.atlas","total":8,"speed":8,"prefix":"monster/phoenix/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/phoenix/skill/skill.lk",},],};
avatarinfo_map[1044] = {"id":1044,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/baize/stand/all.atlas","total":8,"speed":8,"prefix":"monster/baize/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/baize/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/baize/run/all.atlas","total":8,"speed":8,"prefix":"monster/baize/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/baize/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/baize/stand/all.atlas","total":8,"speed":8,"prefix":"monster/baize/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/baize/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/baize/attack/all.atlas","total":8,"speed":8,"prefix":"monster/baize/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/baize/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/baize/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/baize/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/baize/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/baize/die/all.atlas","total":8,"speed":8,"prefix":"monster/baize/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/baize/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/baize/skill/all.atlas","total":8,"speed":8,"prefix":"monster/baize/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/baize/skill/skill.lk",},],};
avatarinfo_map[1045] = {"id":1045,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/loong/stand/all.atlas","total":8,"speed":8,"prefix":"monster/loong/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/loong/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/loong/run/all.atlas","total":8,"speed":8,"prefix":"monster/loong/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/loong/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/loong/stand/all.atlas","total":8,"speed":8,"prefix":"monster/loong/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/loong/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/loong/attack/all.atlas","total":8,"speed":8,"prefix":"monster/loong/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/loong/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/loong/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/loong/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/loong/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/loong/die/all.atlas","total":8,"speed":8,"prefix":"monster/loong/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/loong/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/loong/skill/all.atlas","total":8,"speed":8,"prefix":"monster/loong/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/loong/skill/skill.lk",},],};
avatarinfo_map[1046] = {"id":1046,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/nvwawar/stand/all.atlas","total":8,"speed":8,"prefix":"monster/nvwawar/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/nvwawar/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/nvwawar/run/all.atlas","total":8,"speed":8,"prefix":"monster/nvwawar/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/nvwawar/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/nvwawar/stand/all.atlas","total":8,"speed":8,"prefix":"monster/nvwawar/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/nvwawar/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/nvwawar/attack/all.atlas","total":8,"speed":8,"prefix":"monster/nvwawar/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/nvwawar/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/nvwawar/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/nvwawar/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/nvwawar/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/nvwawar/die/all.atlas","total":8,"speed":8,"prefix":"monster/nvwawar/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/nvwawar/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/nvwawar/skill/all.atlas","total":8,"speed":8,"prefix":"monster/nvwawar/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/nvwawar/skill/skill.lk",},],};
avatarinfo_map[1050] = {"id":1050,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/goddess/stand/all.atlas","total":8,"speed":8,"prefix":"monster/goddess/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/goddess/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/goddess/run/all.atlas","total":8,"speed":8,"prefix":"monster/goddess/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/goddess/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/goddess/stand/all.atlas","total":8,"speed":8,"prefix":"monster/goddess/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/goddess/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/goddess/attack/all.atlas","total":8,"speed":8,"prefix":"monster/goddess/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/goddess/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/goddess/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/goddess/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/goddess/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/goddess/die/all.atlas","total":8,"speed":8,"prefix":"monster/goddess/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/goddess/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/goddess/skill/all.atlas","total":8,"speed":8,"prefix":"monster/goddess/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/goddess/skill/skill.lk",},],};
avatarinfo_map[1051] = {"id":1051,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/goddess2/stand/all.atlas","total":8,"speed":8,"prefix":"monster/goddess2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/goddess2/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/goddess2/run/all.atlas","total":8,"speed":8,"prefix":"monster/goddess2/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/goddess2/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"monster/goddess2/stand/all.atlas","total":8,"speed":8,"prefix":"monster/goddess2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/goddess2/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/goddess2/attack/all.atlas","total":8,"speed":8,"prefix":"monster/goddess2/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/goddess2/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"monster/goddess2/attacked/all.atlas","total":2,"speed":8,"prefix":"monster/goddess2/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/goddess2/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"monster/goddess2/die/all.atlas","total":8,"speed":8,"prefix":"monster/goddess2/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/goddess2/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"monster/goddess2/skill/all.atlas","total":8,"speed":8,"prefix":"monster/goddess2/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"monster/goddess2/skill/skill.lk",},],};
avatarinfo_map[9001] = {"id":9001,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/flower1/stand/all.atlas","total":2,"speed":8,"prefix":"monster/flower1/stand/all/","dir":"7,7,7,7,7,7,7,7","mirror":1,"dir4":0,"link":"monster/flower1/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/flower1/stand/all.atlas","total":2,"speed":8,"prefix":"monster/flower1/stand/all/","dir":"7,7,7,7,7,7,7,7","mirror":1,"dir4":0,"link":"monster/flower1/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"monster/flower1/stand/all.atlas","total":2,"speed":8,"prefix":"monster/flower1/stand/all/","dir":"7,7,7,7,7,7,7,7","mirror":1,"dir4":0,"link":"monster/flower1/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/flower1/stand/all.atlas","total":2,"speed":8,"prefix":"monster/flower1/stand/all/","dir":"7,7,7,7,7,7,7,7","mirror":1,"dir4":0,"link":"monster/flower1/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"monster/flower1/stand/all.atlas","total":2,"speed":8,"prefix":"monster/flower1/stand/all/","dir":"7,7,7,7,7,7,7,7","mirror":1,"dir4":0,"link":"monster/flower1/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"monster/flower1/stand/all.atlas","total":2,"speed":8,"prefix":"monster/flower1/stand/all/","dir":"7,7,7,7,7,7,7,7","mirror":1,"dir4":0,"link":"monster/flower1/stand/stand.lk",},{"aid":7,"w":512,"h":512,"path":"monster/flower1/stand/all.atlas","total":2,"speed":8,"prefix":"monster/flower1/stand/all/","dir":"7,7,7,7,7,7,7,7","mirror":1,"dir4":0,"link":"monster/flower1/stand/stand.lk",},],};
avatarinfo_map[9002] = {"id":9002,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/flower2/stand/all.atlas","total":2,"speed":8,"prefix":"monster/flower2/stand/all/","dir":"7,7,7,7,7,7,7,7","mirror":1,"dir4":0,"link":"monster/flower2/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/flower2/stand/all.atlas","total":2,"speed":8,"prefix":"monster/flower2/stand/all/","dir":"7,7,7,7,7,7,7,7","mirror":1,"dir4":0,"link":"monster/flower2/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"monster/flower2/stand/all.atlas","total":2,"speed":8,"prefix":"monster/flower2/stand/all/","dir":"7,7,7,7,7,7,7,7","mirror":1,"dir4":0,"link":"monster/flower2/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/flower2/stand/all.atlas","total":2,"speed":8,"prefix":"monster/flower2/stand/all/","dir":"7,7,7,7,7,7,7,7","mirror":1,"dir4":0,"link":"monster/flower2/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"monster/flower2/stand/all.atlas","total":2,"speed":8,"prefix":"monster/flower2/stand/all/","dir":"7,7,7,7,7,7,7,7","mirror":1,"dir4":0,"link":"monster/flower2/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"monster/flower2/stand/all.atlas","total":2,"speed":8,"prefix":"monster/flower2/stand/all/","dir":"7,7,7,7,7,7,7,7","mirror":1,"dir4":0,"link":"monster/flower2/stand/stand.lk",},{"aid":7,"w":512,"h":512,"path":"monster/flower2/stand/all.atlas","total":2,"speed":8,"prefix":"monster/flower2/stand/all/","dir":"7,7,7,7,7,7,7,7","mirror":1,"dir4":0,"link":"monster/flower2/stand/stand.lk",},],};
avatarinfo_map[9003] = {"id":9003,"info_data":[{"aid":0,"w":512,"h":512,"path":"monster/ore/stand/all.atlas","total":2,"speed":8,"prefix":"monster/ore/stand/all/","dir":"7,7,7,7,7,7,7,7","mirror":1,"dir4":0,"link":"monster/ore/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"monster/ore/stand/all.atlas","total":2,"speed":8,"prefix":"monster/ore/stand/all/","dir":"7,7,7,7,7,7,7,7","mirror":1,"dir4":0,"link":"monster/ore/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"monster/ore/stand/all.atlas","total":2,"speed":8,"prefix":"monster/ore/stand/all/","dir":"7,7,7,7,7,7,7,7","mirror":1,"dir4":0,"link":"monster/ore/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"monster/ore/stand/all.atlas","total":2,"speed":8,"prefix":"monster/ore/stand/all/","dir":"7,7,7,7,7,7,7,7","mirror":1,"dir4":0,"link":"monster/ore/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"monster/ore/stand/all.atlas","total":2,"speed":8,"prefix":"monster/ore/stand/all/","dir":"7,7,7,7,7,7,7,7","mirror":1,"dir4":0,"link":"monster/ore/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"monster/ore/stand/all.atlas","total":2,"speed":8,"prefix":"monster/ore/stand/all/","dir":"7,7,7,7,7,7,7,7","mirror":1,"dir4":0,"link":"monster/ore/stand/stand.lk",},{"aid":7,"w":512,"h":512,"path":"monster/ore/stand/all.atlas","total":2,"speed":8,"prefix":"monster/ore/stand/all/","dir":"7,7,7,7,7,7,7,7","mirror":1,"dir4":0,"link":"monster/ore/stand/stand.lk",},],};
avatarinfo_map[10001] = {"id":10001,"info_data":[{"aid":0,"w":512,"h":512,"path":"weapon/jian/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/jian/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jian/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"weapon/jian/run/all.atlas","total":8,"speed":8,"prefix":"weapon/jian/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jian/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"weapon/jian/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/jian/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jian/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"weapon/jian/attack/all.atlas","total":7,"speed":8,"prefix":"weapon/jian/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jian/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"weapon/jian/attacked/all.atlas","total":2,"speed":8,"prefix":"weapon/jian/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jian/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"weapon/jian/die/all.atlas","total":6,"speed":8,"prefix":"weapon/jian/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jian/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"weapon/jian/skill/all.atlas","total":7,"speed":8,"prefix":"weapon/jian/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jian/skill/skill.lk",},],};
avatarinfo_map[10002] = {"id":10002,"info_data":[{"aid":0,"w":512,"h":512,"path":"weapon/dao1/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao1/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao1/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"weapon/dao1/run/all.atlas","total":8,"speed":8,"prefix":"weapon/dao1/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao1/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"weapon/dao1/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao1/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao1/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"weapon/dao1/attack/all.atlas","total":7,"speed":8,"prefix":"weapon/dao1/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao1/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"weapon/dao1/attacked/all.atlas","total":2,"speed":8,"prefix":"weapon/dao1/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao1/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"weapon/dao1/die/all.atlas","total":6,"speed":8,"prefix":"weapon/dao1/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao1/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"weapon/dao1/skill/all.atlas","total":7,"speed":8,"prefix":"weapon/dao1/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao1/skill/skill.lk",},],};
avatarinfo_map[10003] = {"id":10003,"info_data":[{"aid":0,"w":512,"h":512,"path":"weapon/dao2/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao2/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"weapon/dao2/run/all.atlas","total":8,"speed":8,"prefix":"weapon/dao2/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao2/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"weapon/dao2/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao2/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"weapon/dao2/attack/all.atlas","total":7,"speed":8,"prefix":"weapon/dao2/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao2/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"weapon/dao2/attacked/all.atlas","total":2,"speed":8,"prefix":"weapon/dao2/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao2/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"weapon/dao2/die/all.atlas","total":6,"speed":8,"prefix":"weapon/dao2/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao2/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"weapon/dao2/skill/all.atlas","total":7,"speed":8,"prefix":"weapon/dao2/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao2/skill/skill.lk",},],};
avatarinfo_map[10004] = {"id":10004,"info_data":[{"aid":0,"w":512,"h":512,"path":"weapon/dao3/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao3/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"weapon/dao3/run/all.atlas","total":8,"speed":8,"prefix":"weapon/dao3/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao3/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"weapon/dao3/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao3/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"weapon/dao3/attack/all.atlas","total":7,"speed":8,"prefix":"weapon/dao3/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao3/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"weapon/dao3/attacked/all.atlas","total":2,"speed":8,"prefix":"weapon/dao3/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao3/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"weapon/dao3/die/all.atlas","total":6,"speed":8,"prefix":"weapon/dao3/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao3/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"weapon/dao3/skill/all.atlas","total":7,"speed":8,"prefix":"weapon/dao3/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao3/skill/skill.lk",},],};
avatarinfo_map[10005] = {"id":10005,"info_data":[{"aid":0,"w":512,"h":512,"path":"weapon/dao4/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao4/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"weapon/dao4/run/all.atlas","total":8,"speed":8,"prefix":"weapon/dao4/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao4/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"weapon/dao4/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao4/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"weapon/dao4/attack/all.atlas","total":7,"speed":8,"prefix":"weapon/dao4/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao4/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"weapon/dao4/attacked/all.atlas","total":2,"speed":8,"prefix":"weapon/dao4/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao4/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"weapon/dao4/die/all.atlas","total":6,"speed":8,"prefix":"weapon/dao4/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao4/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"weapon/dao4/skill/all.atlas","total":7,"speed":8,"prefix":"weapon/dao4/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao4/skill/skill.lk",},],};
avatarinfo_map[10006] = {"id":10006,"info_data":[{"aid":0,"w":512,"h":512,"path":"weapon/dao5/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao5/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao5/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"weapon/dao5/run/all.atlas","total":8,"speed":8,"prefix":"weapon/dao5/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao5/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"weapon/dao5/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao5/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao5/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"weapon/dao5/attack/all.atlas","total":7,"speed":8,"prefix":"weapon/dao5/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao5/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"weapon/dao5/attacked/all.atlas","total":2,"speed":8,"prefix":"weapon/dao5/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao5/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"weapon/dao5/die/all.atlas","total":6,"speed":8,"prefix":"weapon/dao5/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao5/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"weapon/dao5/skill/all.atlas","total":7,"speed":8,"prefix":"weapon/dao5/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao5/skill/skill.lk",},],};
avatarinfo_map[10007] = {"id":10007,"info_data":[{"aid":0,"w":512,"h":512,"path":"weapon/dao6/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao6/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao6/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"weapon/dao6/run/all.atlas","total":8,"speed":8,"prefix":"weapon/dao6/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao6/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"weapon/dao6/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao6/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao6/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"weapon/dao6/attack/all.atlas","total":7,"speed":8,"prefix":"weapon/dao6/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao6/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"weapon/dao6/attacked/all.atlas","total":2,"speed":8,"prefix":"weapon/dao6/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao6/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"weapon/dao6/die/all.atlas","total":6,"speed":8,"prefix":"weapon/dao6/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao6/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"weapon/dao6/skill/all.atlas","total":7,"speed":8,"prefix":"weapon/dao6/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao6/skill/skill.lk",},],};
avatarinfo_map[10008] = {"id":10008,"info_data":[{"aid":0,"w":512,"h":512,"path":"weapon/dao7/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao7/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao7/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"weapon/dao7/run/all.atlas","total":8,"speed":8,"prefix":"weapon/dao7/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao7/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"weapon/dao7/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao7/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao7/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"weapon/dao7/attack/all.atlas","total":7,"speed":8,"prefix":"weapon/dao7/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao7/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"weapon/dao7/attacked/all.atlas","total":2,"speed":8,"prefix":"weapon/dao7/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao7/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"weapon/dao7/die/all.atlas","total":6,"speed":8,"prefix":"weapon/dao7/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao7/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"weapon/dao7/skill/all.atlas","total":7,"speed":8,"prefix":"weapon/dao7/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao7/skill/skill.lk",},],};
avatarinfo_map[10009] = {"id":10009,"info_data":[{"aid":0,"w":512,"h":512,"path":"weapon/dao8/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao8/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao8/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"weapon/dao8/run/all.atlas","total":8,"speed":8,"prefix":"weapon/dao8/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao8/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"weapon/dao8/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao8/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao8/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"weapon/dao8/attack/all.atlas","total":7,"speed":8,"prefix":"weapon/dao8/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao8/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"weapon/dao8/attacked/all.atlas","total":2,"speed":8,"prefix":"weapon/dao8/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao8/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"weapon/dao8/die/all.atlas","total":6,"speed":8,"prefix":"weapon/dao8/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao8/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"weapon/dao8/skill/all.atlas","total":7,"speed":8,"prefix":"weapon/dao8/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao8/skill/skill.lk",},],};
avatarinfo_map[10010] = {"id":10010,"info_data":[{"aid":0,"w":512,"h":512,"path":"weapon/dao9/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao9/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao9/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"weapon/dao9/run/all.atlas","total":8,"speed":8,"prefix":"weapon/dao9/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao9/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"weapon/dao9/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao9/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao9/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"weapon/dao9/attack/all.atlas","total":7,"speed":8,"prefix":"weapon/dao9/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao9/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"weapon/dao9/attacked/all.atlas","total":2,"speed":8,"prefix":"weapon/dao9/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao9/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"weapon/dao9/die/all.atlas","total":6,"speed":8,"prefix":"weapon/dao9/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao9/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"weapon/dao9/skill/all.atlas","total":7,"speed":8,"prefix":"weapon/dao9/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao9/skill/skill.lk",},],};
avatarinfo_map[10011] = {"id":10011,"info_data":[{"aid":0,"w":512,"h":512,"path":"weapon/dao10/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao10/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao10/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"weapon/dao10/run/all.atlas","total":8,"speed":8,"prefix":"weapon/dao10/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao10/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"weapon/dao10/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao10/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao10/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"weapon/dao10/attack/all.atlas","total":7,"speed":8,"prefix":"weapon/dao10/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao10/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"weapon/dao10/attacked/all.atlas","total":2,"speed":8,"prefix":"weapon/dao10/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao10/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"weapon/dao10/die/all.atlas","total":6,"speed":8,"prefix":"weapon/dao10/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao10/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"weapon/dao10/skill/all.atlas","total":7,"speed":8,"prefix":"weapon/dao10/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao10/skill/skill.lk",},],};
avatarinfo_map[10012] = {"id":10012,"info_data":[{"aid":0,"w":512,"h":512,"path":"weapon/dao11/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao11/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao11/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"weapon/dao11/run/all.atlas","total":8,"speed":8,"prefix":"weapon/dao11/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao11/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"weapon/dao11/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao11/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao11/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"weapon/dao11/attack/all.atlas","total":7,"speed":8,"prefix":"weapon/dao11/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao11/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"weapon/dao11/attacked/all.atlas","total":2,"speed":8,"prefix":"weapon/dao11/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao11/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"weapon/dao11/die/all.atlas","total":6,"speed":8,"prefix":"weapon/dao11/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao11/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"weapon/dao11/skill/all.atlas","total":7,"speed":8,"prefix":"weapon/dao11/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao11/skill/skill.lk",},],};
avatarinfo_map[10013] = {"id":10013,"info_data":[{"aid":0,"w":512,"h":512,"path":"weapon/dao12/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao12/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao12/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"weapon/dao12/run/all.atlas","total":8,"speed":8,"prefix":"weapon/dao12/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao12/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"weapon/dao12/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao12/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao12/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"weapon/dao12/attack/all.atlas","total":7,"speed":8,"prefix":"weapon/dao12/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao12/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"weapon/dao12/attacked/all.atlas","total":2,"speed":8,"prefix":"weapon/dao12/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao12/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"weapon/dao12/die/all.atlas","total":6,"speed":8,"prefix":"weapon/dao12/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao12/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"weapon/dao12/skill/all.atlas","total":7,"speed":8,"prefix":"weapon/dao12/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao12/skill/skill.lk",},],};
avatarinfo_map[10014] = {"id":10014,"info_data":[{"aid":0,"w":512,"h":512,"path":"weapon/dao13/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao13/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao13/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"weapon/dao13/run/all.atlas","total":8,"speed":8,"prefix":"weapon/dao13/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao13/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"weapon/dao13/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao13/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao13/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"weapon/dao13/attack/all.atlas","total":7,"speed":8,"prefix":"weapon/dao13/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao13/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"weapon/dao13/attacked/all.atlas","total":2,"speed":8,"prefix":"weapon/dao13/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao13/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"weapon/dao13/die/all.atlas","total":6,"speed":8,"prefix":"weapon/dao13/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao13/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"weapon/dao13/skill/all.atlas","total":7,"speed":8,"prefix":"weapon/dao13/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao13/skill/skill.lk",},],};
avatarinfo_map[10015] = {"id":10015,"info_data":[{"aid":0,"w":512,"h":512,"path":"weapon/dao14/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao14/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao14/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"weapon/dao14/run/all.atlas","total":8,"speed":8,"prefix":"weapon/dao14/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao14/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"weapon/dao14/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao14/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao14/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"weapon/dao14/attack/all.atlas","total":7,"speed":8,"prefix":"weapon/dao14/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao14/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"weapon/dao14/attacked/all.atlas","total":2,"speed":8,"prefix":"weapon/dao14/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao14/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"weapon/dao14/die/all.atlas","total":6,"speed":8,"prefix":"weapon/dao14/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao14/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"weapon/dao14/skill/all.atlas","total":7,"speed":8,"prefix":"weapon/dao14/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao14/skill/skill.lk",},],};
avatarinfo_map[10016] = {"id":10016,"info_data":[{"aid":0,"w":512,"h":512,"path":"weapon/dao15/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao15/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao15/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"weapon/dao15/run/all.atlas","total":8,"speed":8,"prefix":"weapon/dao15/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao15/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"weapon/dao15/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/dao15/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao15/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"weapon/dao15/attack/all.atlas","total":7,"speed":8,"prefix":"weapon/dao15/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao15/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"weapon/dao15/attacked/all.atlas","total":2,"speed":8,"prefix":"weapon/dao15/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao15/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"weapon/dao15/die/all.atlas","total":6,"speed":8,"prefix":"weapon/dao15/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao15/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"weapon/dao15/skill/all.atlas","total":7,"speed":8,"prefix":"weapon/dao15/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/dao15/skill/skill.lk",},],};
avatarinfo_map[10017] = {"id":10017,"info_data":[{"aid":0,"w":512,"h":512,"path":"weapon/jiorig/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/jiorig/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jiorig/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"weapon/jiorig/run/all.atlas","total":8,"speed":8,"prefix":"weapon/jiorig/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jiorig/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"weapon/jiorig/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/jiorig/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jiorig/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"weapon/jiorig/attack/all.atlas","total":7,"speed":8,"prefix":"weapon/jiorig/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jiorig/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"weapon/jiorig/attacked/all.atlas","total":2,"speed":8,"prefix":"weapon/jiorig/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jiorig/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"weapon/jiorig/die/all.atlas","total":6,"speed":8,"prefix":"weapon/jiorig/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jiorig/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"weapon/jiorig/skill/all.atlas","total":7,"speed":8,"prefix":"weapon/jiorig/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jiorig/skill/skill.lk",},],};
avatarinfo_map[10018] = {"id":10018,"info_data":[{"aid":0,"w":512,"h":512,"path":"weapon/jiblue/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/jiblue/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jiblue/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"weapon/jiblue/run/all.atlas","total":8,"speed":8,"prefix":"weapon/jiblue/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jiblue/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"weapon/jiblue/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/jiblue/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jiblue/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"weapon/jiblue/attack/all.atlas","total":7,"speed":8,"prefix":"weapon/jiblue/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jiblue/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"weapon/jiblue/attacked/all.atlas","total":2,"speed":8,"prefix":"weapon/jiblue/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jiblue/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"weapon/jiblue/die/all.atlas","total":6,"speed":8,"prefix":"weapon/jiblue/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jiblue/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"weapon/jiblue/skill/all.atlas","total":7,"speed":8,"prefix":"weapon/jiblue/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jiblue/skill/skill.lk",},],};
avatarinfo_map[10019] = {"id":10019,"info_data":[{"aid":0,"w":512,"h":512,"path":"weapon/jigold/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/jigold/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jigold/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"weapon/jigold/run/all.atlas","total":8,"speed":8,"prefix":"weapon/jigold/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jigold/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"weapon/jigold/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/jigold/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jigold/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"weapon/jigold/attack/all.atlas","total":7,"speed":8,"prefix":"weapon/jigold/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jigold/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"weapon/jigold/attacked/all.atlas","total":2,"speed":8,"prefix":"weapon/jigold/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jigold/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"weapon/jigold/die/all.atlas","total":6,"speed":8,"prefix":"weapon/jigold/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jigold/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"weapon/jigold/skill/all.atlas","total":7,"speed":8,"prefix":"weapon/jigold/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jigold/skill/skill.lk",},],};
avatarinfo_map[10020] = {"id":10020,"info_data":[{"aid":0,"w":512,"h":512,"path":"weapon/jipurple/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/jipurple/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jipurple/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"weapon/jipurple/run/all.atlas","total":8,"speed":8,"prefix":"weapon/jipurple/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jipurple/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"weapon/jipurple/stand/all.atlas","total":8,"speed":8,"prefix":"weapon/jipurple/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jipurple/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"weapon/jipurple/attack/all.atlas","total":7,"speed":8,"prefix":"weapon/jipurple/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jipurple/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"weapon/jipurple/attacked/all.atlas","total":2,"speed":8,"prefix":"weapon/jipurple/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jipurple/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"weapon/jipurple/die/all.atlas","total":6,"speed":8,"prefix":"weapon/jipurple/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jipurple/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"weapon/jipurple/skill/all.atlas","total":7,"speed":8,"prefix":"weapon/jipurple/skill/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"weapon/jipurple/skill/skill.lk",},],};
avatarinfo_map[20001] = {"id":20001,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/wangcai/wangcai_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wangcai/wangcai_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wangcai/wangcai_frout/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/wangcai/wangcai_frout/run/all.atlas","total":8,"speed":8,"prefix":"ride/wangcai/wangcai_frout/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wangcai/wangcai_frout/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/wangcai/wangcai_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wangcai/wangcai_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wangcai/wangcai_frout/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/wangcai/wangcai_frout/attack/all.atlas","total":7,"speed":8,"prefix":"ride/wangcai/wangcai_frout/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wangcai/wangcai_frout/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/wangcai/wangcai_frout/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/wangcai/wangcai_frout/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wangcai/wangcai_frout/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/wangcai/wangcai_frout/die/all.atlas","total":6,"speed":8,"prefix":"ride/wangcai/wangcai_frout/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wangcai/wangcai_frout/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/wangcai/wangcai_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wangcai/wangcai_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wangcai/wangcai_frout/stand/stand_link.txt",},],};
avatarinfo_map[20002] = {"id":20002,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/daxiang/daxiang_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/daxiang/daxiang_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/daxiang/daxiang_frout/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/daxiang/daxiang_frout/run/all.atlas","total":8,"speed":8,"prefix":"ride/daxiang/daxiang_frout/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/daxiang/daxiang_frout/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/daxiang/daxiang_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/daxiang/daxiang_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/daxiang/daxiang_frout/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/daxiang/daxiang_frout/attack/all.atlas","total":7,"speed":8,"prefix":"ride/daxiang/daxiang_frout/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/daxiang/daxiang_frout/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/daxiang/daxiang_frout/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/daxiang/daxiang_frout/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/daxiang/daxiang_frout/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/daxiang/daxiang_frout/die/all.atlas","total":6,"speed":8,"prefix":"ride/daxiang/daxiang_frout/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/daxiang/daxiang_frout/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/daxiang/daxiang_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/daxiang/daxiang_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/daxiang/daxiang_frout/stand/stand_link.txt",},],};
avatarinfo_map[20003] = {"id":20003,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/fenghuang/fenghuang_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/fenghuang/fenghuang_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/fenghuang/fenghuang_frout/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/fenghuang/fenghuang_frout/run/all.atlas","total":8,"speed":8,"prefix":"ride/fenghuang/fenghuang_frout/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/fenghuang/fenghuang_frout/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/fenghuang/fenghuang_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/fenghuang/fenghuang_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/fenghuang/fenghuang_frout/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/fenghuang/fenghuang_frout/attack/all.atlas","total":7,"speed":8,"prefix":"ride/fenghuang/fenghuang_frout/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/fenghuang/fenghuang_frout/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/fenghuang/fenghuang_frout/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/fenghuang/fenghuang_frout/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/fenghuang/fenghuang_frout/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/fenghuang/fenghuang_frout/die/all.atlas","total":6,"speed":8,"prefix":"ride/fenghuang/fenghuang_frout/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/fenghuang/fenghuang_frout/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/fenghuang/fenghuang_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/fenghuang/fenghuang_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/fenghuang/fenghuang_frout/stand/stand_link.txt",},],};
avatarinfo_map[20004] = {"id":20004,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/huli/huli_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/huli/huli_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/huli/huli_frout/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/huli/huli_frout/run/all.atlas","total":8,"speed":8,"prefix":"ride/huli/huli_frout/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/huli/huli_frout/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/huli/huli_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/huli/huli_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/huli/huli_frout/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/huli/huli_frout/attack/all.atlas","total":7,"speed":8,"prefix":"ride/huli/huli_frout/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/huli/huli_frout/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/huli/huli_frout/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/huli/huli_frout/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/huli/huli_frout/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/huli/huli_frout/die/all.atlas","total":6,"speed":8,"prefix":"ride/huli/huli_frout/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/huli/huli_frout/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/huli/huli_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/huli/huli_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/huli/huli_frout/stand/stand_link.txt",},],};
avatarinfo_map[20005] = {"id":20005,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/hulu/hulu_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/hulu/hulu_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/hulu/hulu_frout/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/hulu/hulu_frout/run/all.atlas","total":8,"speed":8,"prefix":"ride/hulu/hulu_frout/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/hulu/hulu_frout/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/hulu/hulu_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/hulu/hulu_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/hulu/hulu_frout/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/hulu/hulu_frout/attack/all.atlas","total":7,"speed":8,"prefix":"ride/hulu/hulu_frout/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/hulu/hulu_frout/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/hulu/hulu_frout/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/hulu/hulu_frout/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/hulu/hulu_frout/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/hulu/hulu_frout/die/all.atlas","total":6,"speed":8,"prefix":"ride/hulu/hulu_frout/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/hulu/hulu_frout/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/hulu/hulu_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/hulu/hulu_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/hulu/hulu_frout/stand/stand_link.txt",},],};
avatarinfo_map[20006] = {"id":20006,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/jinyu/jinyu_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/jinyu/jinyu_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/jinyu/jinyu_frout/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/jinyu/jinyu_frout/run/all.atlas","total":8,"speed":8,"prefix":"ride/jinyu/jinyu_frout/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/jinyu/jinyu_frout/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/jinyu/jinyu_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/jinyu/jinyu_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/jinyu/jinyu_frout/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/jinyu/jinyu_frout/attack/all.atlas","total":7,"speed":8,"prefix":"ride/jinyu/jinyu_frout/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/jinyu/jinyu_frout/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/jinyu/jinyu_frout/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/jinyu/jinyu_frout/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/jinyu/jinyu_frout/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/jinyu/jinyu_frout/die/all.atlas","total":6,"speed":8,"prefix":"ride/jinyu/jinyu_frout/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/jinyu/jinyu_frout/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/jinyu/jinyu_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/jinyu/jinyu_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/jinyu/jinyu_frout/stand/stand_link.txt",},],};
avatarinfo_map[20007] = {"id":20007,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/lang/lang_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/lang/lang_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/lang/lang_frout/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/lang/lang_frout/run/all.atlas","total":8,"speed":8,"prefix":"ride/lang/lang_frout/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/lang/lang_frout/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/lang/lang_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/lang/lang_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/lang/lang_frout/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/lang/lang_frout/attack/all.atlas","total":7,"speed":8,"prefix":"ride/lang/lang_frout/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/lang/lang_frout/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/lang/lang_frout/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/lang/lang_frout/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/lang/lang_frout/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/lang/lang_frout/die/all.atlas","total":6,"speed":8,"prefix":"ride/lang/lang_frout/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/lang/lang_frout/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/lang/lang_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/lang/lang_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/lang/lang_frout/stand/stand_link.txt",},],};
avatarinfo_map[20008] = {"id":20008,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/laohu/laohu_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/laohu/laohu_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/laohu/laohu_frout/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/laohu/laohu_frout/run/all.atlas","total":8,"speed":8,"prefix":"ride/laohu/laohu_frout/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/laohu/laohu_frout/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/laohu/laohu_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/laohu/laohu_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/laohu/laohu_frout/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/laohu/laohu_frout/attack/all.atlas","total":7,"speed":8,"prefix":"ride/laohu/laohu_frout/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/laohu/laohu_frout/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/laohu/laohu_frout/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/laohu/laohu_frout/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/laohu/laohu_frout/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/laohu/laohu_frout/die/all.atlas","total":6,"speed":8,"prefix":"ride/laohu/laohu_frout/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/laohu/laohu_frout/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/laohu/laohu_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/laohu/laohu_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/laohu/laohu_frout/stand/stand_link.txt",},],};
avatarinfo_map[20009] = {"id":20009,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/manmo/manmo_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/manmo/manmo_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/manmo/manmo_frout/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/manmo/manmo_frout/run/all.atlas","total":8,"speed":8,"prefix":"ride/manmo/manmo_frout/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/manmo/manmo_frout/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/manmo/manmo_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/manmo/manmo_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/manmo/manmo_frout/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/manmo/manmo_frout/attack/all.atlas","total":7,"speed":8,"prefix":"ride/manmo/manmo_frout/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/manmo/manmo_frout/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/manmo/manmo_frout/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/manmo/manmo_frout/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/manmo/manmo_frout/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/manmo/manmo_frout/die/all.atlas","total":6,"speed":8,"prefix":"ride/manmo/manmo_frout/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/manmo/manmo_frout/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/manmo/manmo_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/manmo/manmo_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/manmo/manmo_frout/stand/stand_link.txt",},],};
avatarinfo_map[20010] = {"id":20010,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/molang/molang_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/molang/molang_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/molang/molang_frout/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/molang/molang_frout/run/all.atlas","total":8,"speed":8,"prefix":"ride/molang/molang_frout/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/molang/molang_frout/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/molang/molang_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/molang/molang_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/molang/molang_frout/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/molang/molang_frout/attack/all.atlas","total":7,"speed":8,"prefix":"ride/molang/molang_frout/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/molang/molang_frout/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/molang/molang_frout/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/molang/molang_frout/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/molang/molang_frout/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/molang/molang_frout/die/all.atlas","total":6,"speed":8,"prefix":"ride/molang/molang_frout/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/molang/molang_frout/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/molang/molang_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/molang/molang_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/molang/molang_frout/stand/stand_link.txt",},],};
avatarinfo_map[20011] = {"id":20011,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/ruishou/ruishou_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/ruishou/ruishou_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/ruishou/ruishou_frout/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/ruishou/ruishou_frout/run/all.atlas","total":8,"speed":8,"prefix":"ride/ruishou/ruishou_frout/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/ruishou/ruishou_frout/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/ruishou/ruishou_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/ruishou/ruishou_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/ruishou/ruishou_frout/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/ruishou/ruishou_frout/attack/all.atlas","total":7,"speed":8,"prefix":"ride/ruishou/ruishou_frout/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/ruishou/ruishou_frout/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/ruishou/ruishou_frout/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/ruishou/ruishou_frout/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/ruishou/ruishou_frout/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/ruishou/ruishou_frout/die/all.atlas","total":6,"speed":8,"prefix":"ride/ruishou/ruishou_frout/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/ruishou/ruishou_frout/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/ruishou/ruishou_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/ruishou/ruishou_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/ruishou/ruishou_frout/stand/stand_link.txt",},],};
avatarinfo_map[20012] = {"id":20012,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/shenniu/shenniu_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shenniu/shenniu_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shenniu/shenniu_frout/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/shenniu/shenniu_frout/run/all.atlas","total":8,"speed":8,"prefix":"ride/shenniu/shenniu_frout/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shenniu/shenniu_frout/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/shenniu/shenniu_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shenniu/shenniu_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shenniu/shenniu_frout/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/shenniu/shenniu_frout/attack/all.atlas","total":7,"speed":8,"prefix":"ride/shenniu/shenniu_frout/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shenniu/shenniu_frout/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/shenniu/shenniu_frout/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/shenniu/shenniu_frout/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shenniu/shenniu_frout/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/shenniu/shenniu_frout/die/all.atlas","total":6,"speed":8,"prefix":"ride/shenniu/shenniu_frout/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shenniu/shenniu_frout/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/shenniu/shenniu_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shenniu/shenniu_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shenniu/shenniu_frout/stand/stand_link.txt",},],};
avatarinfo_map[20013] = {"id":20013,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/tuzi/tuzi_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/tuzi/tuzi_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/tuzi/tuzi_frout/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/tuzi/tuzi_frout/run/all.atlas","total":8,"speed":8,"prefix":"ride/tuzi/tuzi_frout/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/tuzi/tuzi_frout/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/tuzi/tuzi_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/tuzi/tuzi_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/tuzi/tuzi_frout/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/tuzi/tuzi_frout/attack/all.atlas","total":7,"speed":8,"prefix":"ride/tuzi/tuzi_frout/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/tuzi/tuzi_frout/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/tuzi/tuzi_frout/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/tuzi/tuzi_frout/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/tuzi/tuzi_frout/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/tuzi/tuzi_frout/die/all.atlas","total":6,"speed":8,"prefix":"ride/tuzi/tuzi_frout/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/tuzi/tuzi_frout/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/tuzi/tuzi_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/tuzi/tuzi_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/tuzi/tuzi_frout/stand/stand_link.txt",},],};
avatarinfo_map[20014] = {"id":20014,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/xiaolu/xiaolu_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/xiaolu/xiaolu_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/xiaolu/xiaolu_frout/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/xiaolu/xiaolu_frout/run/all.atlas","total":8,"speed":8,"prefix":"ride/xiaolu/xiaolu_frout/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/xiaolu/xiaolu_frout/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/xiaolu/xiaolu_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/xiaolu/xiaolu_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/xiaolu/xiaolu_frout/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/xiaolu/xiaolu_frout/attack/all.atlas","total":7,"speed":8,"prefix":"ride/xiaolu/xiaolu_frout/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/xiaolu/xiaolu_frout/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/xiaolu/xiaolu_frout/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/xiaolu/xiaolu_frout/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/xiaolu/xiaolu_frout/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/xiaolu/xiaolu_frout/die/all.atlas","total":6,"speed":8,"prefix":"ride/xiaolu/xiaolu_frout/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/xiaolu/xiaolu_frout/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/xiaolu/xiaolu_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/xiaolu/xiaolu_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/xiaolu/xiaolu_frout/stand/stand_link.txt",},],};
avatarinfo_map[20015] = {"id":20015,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/xiong/xiong_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/xiong/xiong_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/xiong/xiong_frout/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/xiong/xiong_frout/run/all.atlas","total":8,"speed":8,"prefix":"ride/xiong/xiong_frout/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/xiong/xiong_frout/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/xiong/xiong_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/xiong/xiong_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/xiong/xiong_frout/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/xiong/xiong_frout/attack/all.atlas","total":7,"speed":8,"prefix":"ride/xiong/xiong_frout/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/xiong/xiong_frout/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/xiong/xiong_frout/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/xiong/xiong_frout/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/xiong/xiong_frout/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/xiong/xiong_frout/die/all.atlas","total":6,"speed":8,"prefix":"ride/xiong/xiong_frout/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/xiong/xiong_frout/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/xiong/xiong_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/xiong/xiong_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/xiong/xiong_frout/stand/stand_link.txt",},],};
avatarinfo_map[20016] = {"id":20016,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/chituorig/chituorig_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/chituorig/chituorig_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chituorig/chituorig_frout/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/chituorig/chituorig_frout/run/all.atlas","total":8,"speed":8,"prefix":"ride/chituorig/chituorig_frout/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chituorig/chituorig_frout/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/chituorig/chituorig_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/chituorig/chituorig_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chituorig/chituorig_frout/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/chituorig/chituorig_frout/attack/all.atlas","total":7,"speed":8,"prefix":"ride/chituorig/chituorig_frout/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chituorig/chituorig_frout/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/chituorig/chituorig_frout/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/chituorig/chituorig_frout/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chituorig/chituorig_frout/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/chituorig/chituorig_frout/die/all.atlas","total":6,"speed":8,"prefix":"ride/chituorig/chituorig_frout/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chituorig/chituorig_frout/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/chituorig/chituorig_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/chituorig/chituorig_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chituorig/chituorig_frout/stand/stand_link.txt",},],};
avatarinfo_map[20017] = {"id":20017,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/chitublue/chitublue_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/chitublue/chitublue_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitublue/chitublue_frout/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/chitublue/chitublue_frout/run/all.atlas","total":8,"speed":8,"prefix":"ride/chitublue/chitublue_frout/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitublue/chitublue_frout/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/chitublue/chitublue_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/chitublue/chitublue_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitublue/chitublue_frout/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/chitublue/chitublue_frout/attack/all.atlas","total":7,"speed":8,"prefix":"ride/chitublue/chitublue_frout/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitublue/chitublue_frout/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/chitublue/chitublue_frout/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/chitublue/chitublue_frout/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitublue/chitublue_frout/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/chitublue/chitublue_frout/die/all.atlas","total":6,"speed":8,"prefix":"ride/chitublue/chitublue_frout/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitublue/chitublue_frout/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/chitublue/chitublue_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/chitublue/chitublue_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitublue/chitublue_frout/stand/stand_link.txt",},],};
avatarinfo_map[20018] = {"id":20018,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/chitugold/chitugold_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/chitugold/chitugold_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitugold/chitugold_frout/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/chitugold/chitugold_frout/run/all.atlas","total":8,"speed":8,"prefix":"ride/chitugold/chitugold_frout/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitugold/chitugold_frout/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/chitugold/chitugold_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/chitugold/chitugold_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitugold/chitugold_frout/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/chitugold/chitugold_frout/attack/all.atlas","total":7,"speed":8,"prefix":"ride/chitugold/chitugold_frout/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitugold/chitugold_frout/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/chitugold/chitugold_frout/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/chitugold/chitugold_frout/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitugold/chitugold_frout/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/chitugold/chitugold_frout/die/all.atlas","total":6,"speed":8,"prefix":"ride/chitugold/chitugold_frout/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitugold/chitugold_frout/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/chitugold/chitugold_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/chitugold/chitugold_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitugold/chitugold_frout/stand/stand_link.txt",},],};
avatarinfo_map[20019] = {"id":20019,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/chitupurple/chitupurple_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/chitupurple/chitupurple_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitupurple/chitupurple_frout/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/chitupurple/chitupurple_frout/run/all.atlas","total":8,"speed":8,"prefix":"ride/chitupurple/chitupurple_frout/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitupurple/chitupurple_frout/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/chitupurple/chitupurple_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/chitupurple/chitupurple_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitupurple/chitupurple_frout/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/chitupurple/chitupurple_frout/attack/all.atlas","total":7,"speed":8,"prefix":"ride/chitupurple/chitupurple_frout/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitupurple/chitupurple_frout/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/chitupurple/chitupurple_frout/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/chitupurple/chitupurple_frout/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitupurple/chitupurple_frout/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/chitupurple/chitupurple_frout/die/all.atlas","total":6,"speed":8,"prefix":"ride/chitupurple/chitupurple_frout/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitupurple/chitupurple_frout/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/chitupurple/chitupurple_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/chitupurple/chitupurple_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitupurple/chitupurple_frout/stand/stand_link.txt",},],};
avatarinfo_map[20020] = {"id":20020,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/lionred/lionred_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/lionred/lionred_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/lionred/lionred_frout/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"ride/lionred/lionred_frout/run/all.atlas","total":8,"speed":8,"prefix":"ride/lionred/lionred_frout/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/lionred/lionred_frout/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/lionred/lionred_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/lionred/lionred_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/lionred/lionred_frout/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"ride/lionred/lionred_frout/attack/all.atlas","total":7,"speed":8,"prefix":"ride/lionred/lionred_frout/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/lionred/lionred_frout/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/lionred/lionred_frout/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/lionred/lionred_frout/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/lionred/lionred_frout/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/lionred/lionred_frout/die/all.atlas","total":6,"speed":8,"prefix":"ride/lionred/lionred_frout/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/lionred/lionred_frout/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/lionred/lionred_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/lionred/lionred_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/lionred/lionred_frout/stand/stand.lk",},],};
avatarinfo_map[20021] = {"id":20021,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/phenixblue/phenixblue_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/phenixblue/phenixblue_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/phenixblue/phenixblue_frout/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"ride/phenixblue/phenixblue_frout/run/all.atlas","total":8,"speed":8,"prefix":"ride/phenixblue/phenixblue_frout/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/phenixblue/phenixblue_frout/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/phenixblue/phenixblue_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/phenixblue/phenixblue_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/phenixblue/phenixblue_frout/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"ride/phenixblue/phenixblue_frout/attack/all.atlas","total":7,"speed":8,"prefix":"ride/phenixblue/phenixblue_frout/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/phenixblue/phenixblue_frout/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/phenixblue/phenixblue_frout/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/phenixblue/phenixblue_frout/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/phenixblue/phenixblue_frout/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/phenixblue/phenixblue_frout/die/all.atlas","total":6,"speed":8,"prefix":"ride/phenixblue/phenixblue_frout/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/phenixblue/phenixblue_frout/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/phenixblue/phenixblue_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/phenixblue/phenixblue_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/phenixblue/phenixblue_frout/stand/stand.lk",},],};
avatarinfo_map[20022] = {"id":20022,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/shendiao1/shendiao_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao1/shendiao_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao1/shendiao_frout/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"ride/shendiao1/shendiao_frout/run/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao1/shendiao_frout/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao1/shendiao_frout/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/shendiao1/shendiao_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao1/shendiao_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao1/shendiao_frout/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"ride/shendiao1/shendiao_frout/attack/all.atlas","total":7,"speed":8,"prefix":"ride/shendiao1/shendiao_frout/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao1/shendiao_frout/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/shendiao1/shendiao_frout/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/shendiao1/shendiao_frout/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao1/shendiao_frout/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/shendiao1/shendiao_frout/die/all.atlas","total":6,"speed":8,"prefix":"ride/shendiao1/shendiao_frout/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao1/shendiao_frout/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/shendiao1/shendiao_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao1/shendiao_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao1/shendiao_frout/stand/stand.lk",},],};
avatarinfo_map[20023] = {"id":20023,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/shendiao2/shendiao_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao2/shendiao_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao2/shendiao_frout/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"ride/shendiao2/shendiao_frout/run/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao2/shendiao_frout/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao2/shendiao_frout/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/shendiao2/shendiao_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao2/shendiao_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao2/shendiao_frout/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"ride/shendiao2/shendiao_frout/attack/all.atlas","total":7,"speed":8,"prefix":"ride/shendiao2/shendiao_frout/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao2/shendiao_frout/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/shendiao2/shendiao_frout/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/shendiao2/shendiao_frout/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao2/shendiao_frout/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/shendiao2/shendiao_frout/die/all.atlas","total":6,"speed":8,"prefix":"ride/shendiao2/shendiao_frout/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao2/shendiao_frout/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/shendiao2/shendiao_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao2/shendiao_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao2/shendiao_frout/stand/stand.lk",},],};
avatarinfo_map[20024] = {"id":20024,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/shendiao3/shendiao_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao3/shendiao_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao3/shendiao_frout/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"ride/shendiao3/shendiao_frout/run/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao3/shendiao_frout/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao3/shendiao_frout/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/shendiao3/shendiao_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao3/shendiao_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao3/shendiao_frout/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"ride/shendiao3/shendiao_frout/attack/all.atlas","total":7,"speed":8,"prefix":"ride/shendiao3/shendiao_frout/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao3/shendiao_frout/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/shendiao3/shendiao_frout/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/shendiao3/shendiao_frout/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao3/shendiao_frout/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/shendiao3/shendiao_frout/die/all.atlas","total":6,"speed":8,"prefix":"ride/shendiao3/shendiao_frout/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao3/shendiao_frout/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/shendiao3/shendiao_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao3/shendiao_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao3/shendiao_frout/stand/stand.lk",},],};
avatarinfo_map[20025] = {"id":20025,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/shendiao4/shendiao_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao4/shendiao_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao4/shendiao_frout/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"ride/shendiao4/shendiao_frout/run/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao4/shendiao_frout/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao4/shendiao_frout/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/shendiao4/shendiao_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao4/shendiao_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao4/shendiao_frout/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"ride/shendiao4/shendiao_frout/attack/all.atlas","total":7,"speed":8,"prefix":"ride/shendiao4/shendiao_frout/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao4/shendiao_frout/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/shendiao4/shendiao_frout/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/shendiao4/shendiao_frout/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao4/shendiao_frout/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/shendiao4/shendiao_frout/die/all.atlas","total":6,"speed":8,"prefix":"ride/shendiao4/shendiao_frout/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao4/shendiao_frout/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/shendiao4/shendiao_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao4/shendiao_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao4/shendiao_frout/stand/stand.lk",},],};
avatarinfo_map[20026] = {"id":20026,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/wushi1/wushi_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wushi1/wushi_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi1/wushi_frout/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"ride/wushi1/wushi_frout/run/all.atlas","total":8,"speed":8,"prefix":"ride/wushi1/wushi_frout/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi1/wushi_frout/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/wushi1/wushi_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wushi1/wushi_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi1/wushi_frout/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"ride/wushi1/wushi_frout/attack/all.atlas","total":7,"speed":8,"prefix":"ride/wushi1/wushi_frout/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi1/wushi_frout/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/wushi1/wushi_frout/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/wushi1/wushi_frout/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi1/wushi_frout/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/wushi1/wushi_frout/die/all.atlas","total":6,"speed":8,"prefix":"ride/wushi1/wushi_frout/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi1/wushi_frout/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/wushi1/wushi_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wushi1/wushi_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi1/wushi_frout/stand/stand.lk",},],};
avatarinfo_map[20027] = {"id":20027,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/wushi2/wushi_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wushi2/wushi_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi2/wushi_frout/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"ride/wushi2/wushi_frout/run/all.atlas","total":8,"speed":8,"prefix":"ride/wushi2/wushi_frout/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi2/wushi_frout/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/wushi2/wushi_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wushi2/wushi_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi2/wushi_frout/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"ride/wushi2/wushi_frout/attack/all.atlas","total":7,"speed":8,"prefix":"ride/wushi2/wushi_frout/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi2/wushi_frout/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/wushi2/wushi_frout/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/wushi2/wushi_frout/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi2/wushi_frout/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/wushi2/wushi_frout/die/all.atlas","total":6,"speed":8,"prefix":"ride/wushi2/wushi_frout/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi2/wushi_frout/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/wushi2/wushi_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wushi2/wushi_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi2/wushi_frout/stand/stand.lk",},],};
avatarinfo_map[20028] = {"id":20028,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/wushi3/wushi_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wushi3/wushi_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi3/wushi_frout/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"ride/wushi3/wushi_frout/run/all.atlas","total":8,"speed":8,"prefix":"ride/wushi3/wushi_frout/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi3/wushi_frout/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/wushi3/wushi_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wushi3/wushi_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi3/wushi_frout/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"ride/wushi3/wushi_frout/attack/all.atlas","total":7,"speed":8,"prefix":"ride/wushi3/wushi_frout/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi3/wushi_frout/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/wushi3/wushi_frout/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/wushi3/wushi_frout/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi3/wushi_frout/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/wushi3/wushi_frout/die/all.atlas","total":6,"speed":8,"prefix":"ride/wushi3/wushi_frout/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi3/wushi_frout/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/wushi3/wushi_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wushi3/wushi_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi3/wushi_frout/stand/stand.lk",},],};
avatarinfo_map[20029] = {"id":20029,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/wushi4/wushi_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wushi4/wushi_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi4/wushi_frout/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"ride/wushi4/wushi_frout/run/all.atlas","total":8,"speed":8,"prefix":"ride/wushi4/wushi_frout/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi4/wushi_frout/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/wushi4/wushi_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wushi4/wushi_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi4/wushi_frout/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"ride/wushi4/wushi_frout/attack/all.atlas","total":7,"speed":8,"prefix":"ride/wushi4/wushi_frout/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi4/wushi_frout/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/wushi4/wushi_frout/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/wushi4/wushi_frout/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi4/wushi_frout/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/wushi4/wushi_frout/die/all.atlas","total":6,"speed":8,"prefix":"ride/wushi4/wushi_frout/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi4/wushi_frout/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/wushi4/wushi_frout/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wushi4/wushi_frout/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi4/wushi_frout/stand/stand.lk",},],};
avatarinfo_map[30001] = {"id":30001,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/wangcai/wangcai_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wangcai/wangcai_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wangcai/wangcai_back/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/wangcai/wangcai_back/run/all.atlas","total":8,"speed":8,"prefix":"ride/wangcai/wangcai_back/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wangcai/wangcai_back/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/wangcai/wangcai_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wangcai/wangcai_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wangcai/wangcai_back/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/wangcai/wangcai_back/attack/all.atlas","total":7,"speed":8,"prefix":"ride/wangcai/wangcai_back/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wangcai/wangcai_back/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/wangcai/wangcai_back/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/wangcai/wangcai_back/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wangcai/wangcai_back/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/wangcai/wangcai_back/die/all.atlas","total":6,"speed":8,"prefix":"ride/wangcai/wangcai_back/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wangcai/wangcai_back/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/wangcai/wangcai_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wangcai/wangcai_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wangcai/wangcai_back/stand/stand_link.txt",},],};
avatarinfo_map[30002] = {"id":30002,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/daxiang/daxiang_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/daxiang/daxiang_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/daxiang/daxiang_back/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/daxiang/daxiang_back/run/all.atlas","total":8,"speed":8,"prefix":"ride/daxiang/daxiang_back/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/daxiang/daxiang_back/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/daxiang/daxiang_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/daxiang/daxiang_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/daxiang/daxiang_back/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/daxiang/daxiang_back/attack/all.atlas","total":7,"speed":8,"prefix":"ride/daxiang/daxiang_back/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/daxiang/daxiang_back/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/daxiang/daxiang_back/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/daxiang/daxiang_back/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/daxiang/daxiang_back/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/daxiang/daxiang_back/die/all.atlas","total":6,"speed":8,"prefix":"ride/daxiang/daxiang_back/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/daxiang/daxiang_back/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/daxiang/daxiang_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/daxiang/daxiang_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/daxiang/daxiang_back/stand/stand_link.txt",},],};
avatarinfo_map[30003] = {"id":30003,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/fenghuang/fenghuang_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/fenghuang/fenghuang_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/fenghuang/fenghuang_back/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/fenghuang/fenghuang_back/run/all.atlas","total":8,"speed":8,"prefix":"ride/fenghuang/fenghuang_back/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/fenghuang/fenghuang_back/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/fenghuang/fenghuang_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/fenghuang/fenghuang_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/fenghuang/fenghuang_back/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/fenghuang/fenghuang_back/attack/all.atlas","total":7,"speed":8,"prefix":"ride/fenghuang/fenghuang_back/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/fenghuang/fenghuang_back/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/fenghuang/fenghuang_back/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/fenghuang/fenghuang_back/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/fenghuang/fenghuang_back/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/fenghuang/fenghuang_back/die/all.atlas","total":6,"speed":8,"prefix":"ride/fenghuang/fenghuang_back/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/fenghuang/fenghuang_back/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/fenghuang/fenghuang_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/fenghuang/fenghuang_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/fenghuang/fenghuang_back/stand/stand_link.txt",},],};
avatarinfo_map[30004] = {"id":30004,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/huli/huli_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/huli/huli_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/huli/huli_back/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/huli/huli_back/run/all.atlas","total":8,"speed":8,"prefix":"ride/huli/huli_back/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/huli/huli_back/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/huli/huli_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/huli/huli_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/huli/huli_back/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/huli/huli_back/attack/all.atlas","total":7,"speed":8,"prefix":"ride/huli/huli_back/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/huli/huli_back/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/huli/huli_back/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/huli/huli_back/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/huli/huli_back/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/huli/huli_back/die/all.atlas","total":6,"speed":8,"prefix":"ride/huli/huli_back/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/huli/huli_back/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/huli/huli_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/huli/huli_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/huli/huli_back/stand/stand_link.txt",},],};
avatarinfo_map[30005] = {"id":30005,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/hulu/hulu_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/hulu/hulu_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/hulu/hulu_back/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/hulu/hulu_back/run/all.atlas","total":8,"speed":8,"prefix":"ride/hulu/hulu_back/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/hulu/hulu_back/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/hulu/hulu_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/hulu/hulu_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/hulu/hulu_back/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/hulu/hulu_back/attack/all.atlas","total":7,"speed":8,"prefix":"ride/hulu/hulu_back/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/hulu/hulu_back/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/hulu/hulu_back/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/hulu/hulu_back/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/hulu/hulu_back/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/hulu/hulu_back/die/all.atlas","total":6,"speed":8,"prefix":"ride/hulu/hulu_back/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/hulu/hulu_back/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/hulu/hulu_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/hulu/hulu_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/hulu/hulu_back/stand/stand_link.txt",},],};
avatarinfo_map[30006] = {"id":30006,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/jinyu/jinyu_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/jinyu/jinyu_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/jinyu/jinyu_back/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/jinyu/jinyu_back/run/all.atlas","total":8,"speed":8,"prefix":"ride/jinyu/jinyu_back/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/jinyu/jinyu_back/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/jinyu/jinyu_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/jinyu/jinyu_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/jinyu/jinyu_back/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/jinyu/jinyu_back/attack/all.atlas","total":7,"speed":8,"prefix":"ride/jinyu/jinyu_back/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/jinyu/jinyu_back/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/jinyu/jinyu_back/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/jinyu/jinyu_back/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/jinyu/jinyu_back/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/jinyu/jinyu_back/die/all.atlas","total":6,"speed":8,"prefix":"ride/jinyu/jinyu_back/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/jinyu/jinyu_back/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/jinyu/jinyu_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/jinyu/jinyu_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/jinyu/jinyu_back/stand/stand_link.txt",},],};
avatarinfo_map[30007] = {"id":30007,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/lang/lang_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/lang/lang_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/lang/lang_back/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/lang/lang_back/run/all.atlas","total":8,"speed":8,"prefix":"ride/lang/lang_back/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/lang/lang_back/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/lang/lang_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/lang/lang_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/lang/lang_back/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/lang/lang_back/attack/all.atlas","total":7,"speed":8,"prefix":"ride/lang/lang_back/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/lang/lang_back/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/lang/lang_back/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/lang/lang_back/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/lang/lang_back/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/lang/lang_back/die/all.atlas","total":6,"speed":8,"prefix":"ride/lang/lang_back/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/lang/lang_back/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/lang/lang_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/lang/lang_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/lang/lang_back/stand/stand_link.txt",},],};
avatarinfo_map[30008] = {"id":30008,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/laohu/laohu_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/laohu/laohu_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/laohu/laohu_back/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/laohu/laohu_back/run/all.atlas","total":8,"speed":8,"prefix":"ride/laohu/laohu_back/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/laohu/laohu_back/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/laohu/laohu_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/laohu/laohu_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/laohu/laohu_back/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/laohu/laohu_back/attack/all.atlas","total":7,"speed":8,"prefix":"ride/laohu/laohu_back/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/laohu/laohu_back/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/laohu/laohu_back/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/laohu/laohu_back/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/laohu/laohu_back/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/laohu/laohu_back/die/all.atlas","total":6,"speed":8,"prefix":"ride/laohu/laohu_back/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/laohu/laohu_back/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/laohu/laohu_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/laohu/laohu_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/laohu/laohu_back/stand/stand_link.txt",},],};
avatarinfo_map[30009] = {"id":30009,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/manmo/manmo_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/manmo/manmo_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/manmo/manmo_back/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/manmo/manmo_back/run/all.atlas","total":8,"speed":8,"prefix":"ride/manmo/manmo_back/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/manmo/manmo_back/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/manmo/manmo_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/manmo/manmo_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/manmo/manmo_back/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/manmo/manmo_back/attack/all.atlas","total":7,"speed":8,"prefix":"ride/manmo/manmo_back/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/manmo/manmo_back/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/manmo/manmo_back/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/manmo/manmo_back/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/manmo/manmo_back/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/manmo/manmo_back/die/all.atlas","total":6,"speed":8,"prefix":"ride/manmo/manmo_back/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/manmo/manmo_back/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/manmo/manmo_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/manmo/manmo_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/manmo/manmo_back/stand/stand_link.txt",},],};
avatarinfo_map[30010] = {"id":30010,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/molang/molang_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/molang/molang_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/molang/molang_back/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/molang/molang_back/run/all.atlas","total":8,"speed":8,"prefix":"ride/molang/molang_back/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/molang/molang_back/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/molang/molang_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/molang/molang_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/molang/molang_back/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/molang/molang_back/attack/all.atlas","total":7,"speed":8,"prefix":"ride/molang/molang_back/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/molang/molang_back/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/molang/molang_back/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/molang/molang_back/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/molang/molang_back/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/molang/molang_back/die/all.atlas","total":6,"speed":8,"prefix":"ride/molang/molang_back/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/molang/molang_back/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/molang/molang_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/molang/molang_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/molang/molang_back/stand/stand_link.txt",},],};
avatarinfo_map[30011] = {"id":30011,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/ruishou/ruishou_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/ruishou/ruishou_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/ruishou/ruishou_back/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/ruishou/ruishou_back/run/all.atlas","total":8,"speed":8,"prefix":"ride/ruishou/ruishou_back/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/ruishou/ruishou_back/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/ruishou/ruishou_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/ruishou/ruishou_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/ruishou/ruishou_back/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/ruishou/ruishou_back/attack/all.atlas","total":7,"speed":8,"prefix":"ride/ruishou/ruishou_back/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/ruishou/ruishou_back/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/ruishou/ruishou_back/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/ruishou/ruishou_back/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/ruishou/ruishou_back/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/ruishou/ruishou_back/die/all.atlas","total":6,"speed":8,"prefix":"ride/ruishou/ruishou_back/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/ruishou/ruishou_back/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/ruishou/ruishou_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/ruishou/ruishou_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/ruishou/ruishou_back/stand/stand_link.txt",},],};
avatarinfo_map[30012] = {"id":30012,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/shenniu/shenniu_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shenniu/shenniu_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shenniu/shenniu_back/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/shenniu/shenniu_back/run/all.atlas","total":8,"speed":8,"prefix":"ride/shenniu/shenniu_back/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shenniu/shenniu_back/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/shenniu/shenniu_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shenniu/shenniu_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shenniu/shenniu_back/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/shenniu/shenniu_back/attack/all.atlas","total":7,"speed":8,"prefix":"ride/shenniu/shenniu_back/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shenniu/shenniu_back/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/shenniu/shenniu_back/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/shenniu/shenniu_back/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shenniu/shenniu_back/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/shenniu/shenniu_back/die/all.atlas","total":6,"speed":8,"prefix":"ride/shenniu/shenniu_back/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shenniu/shenniu_back/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/shenniu/shenniu_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shenniu/shenniu_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shenniu/shenniu_back/stand/stand_link.txt",},],};
avatarinfo_map[30013] = {"id":30013,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/tuzi/tuzi_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/tuzi/tuzi_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/tuzi/tuzi_back/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/tuzi/tuzi_back/run/all.atlas","total":8,"speed":8,"prefix":"ride/tuzi/tuzi_back/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/tuzi/tuzi_back/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/tuzi/tuzi_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/tuzi/tuzi_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/tuzi/tuzi_back/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/tuzi/tuzi_back/attack/all.atlas","total":7,"speed":8,"prefix":"ride/tuzi/tuzi_back/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/tuzi/tuzi_back/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/tuzi/tuzi_back/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/tuzi/tuzi_back/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/tuzi/tuzi_back/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/tuzi/tuzi_back/die/all.atlas","total":6,"speed":8,"prefix":"ride/tuzi/tuzi_back/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/tuzi/tuzi_back/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/tuzi/tuzi_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/tuzi/tuzi_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/tuzi/tuzi_back/stand/stand_link.txt",},],};
avatarinfo_map[30014] = {"id":30014,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/xiaolu/xiaolu_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/xiaolu/xiaolu_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/xiaolu/xiaolu_back/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/xiaolu/xiaolu_back/run/all.atlas","total":8,"speed":8,"prefix":"ride/xiaolu/xiaolu_back/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/xiaolu/xiaolu_back/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/xiaolu/xiaolu_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/xiaolu/xiaolu_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/xiaolu/xiaolu_back/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/xiaolu/xiaolu_back/attack/all.atlas","total":7,"speed":8,"prefix":"ride/xiaolu/xiaolu_back/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/xiaolu/xiaolu_back/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/xiaolu/xiaolu_back/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/xiaolu/xiaolu_back/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/xiaolu/xiaolu_back/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/xiaolu/xiaolu_back/die/all.atlas","total":6,"speed":8,"prefix":"ride/xiaolu/xiaolu_back/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/xiaolu/xiaolu_back/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/xiaolu/xiaolu_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/xiaolu/xiaolu_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/xiaolu/xiaolu_back/stand/stand_link.txt",},],};
avatarinfo_map[30015] = {"id":30015,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/xiong/xiong_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/xiong/xiong_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/xiong/xiong_back/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/xiong/xiong_back/run/all.atlas","total":8,"speed":8,"prefix":"ride/xiong/xiong_back/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/xiong/xiong_back/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/xiong/xiong_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/xiong/xiong_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/xiong/xiong_back/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/xiong/xiong_back/attack/all.atlas","total":7,"speed":8,"prefix":"ride/xiong/xiong_back/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/xiong/xiong_back/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/xiong/xiong_back/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/xiong/xiong_back/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/xiong/xiong_back/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/xiong/xiong_back/die/all.atlas","total":6,"speed":8,"prefix":"ride/xiong/xiong_back/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/xiong/xiong_back/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/xiong/xiong_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/xiong/xiong_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/xiong/xiong_back/stand/stand_link.txt",},],};
avatarinfo_map[30016] = {"id":30016,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/chituorig/chituorig_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/chituorig/chituorig_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chituorig/chituorig_back/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/chituorig/chituorig_back/run/all.atlas","total":8,"speed":8,"prefix":"ride/chituorig/chituorig_back/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chituorig/chituorig_back/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/chituorig/chituorig_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/chituorig/chituorig_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chituorig/chituorig_back/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/chituorig/chituorig_back/attack/all.atlas","total":7,"speed":8,"prefix":"ride/chituorig/chituorig_back/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chituorig/chituorig_back/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/chituorig/chituorig_back/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/chituorig/chituorig_back/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chituorig/chituorig_back/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/chituorig/chituorig_back/die/all.atlas","total":6,"speed":8,"prefix":"ride/chituorig/chituorig_back/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chituorig/chituorig_back/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/chituorig/chituorig_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/chituorig/chituorig_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chituorig/chituorig_back/stand/stand_link.txt",},],};
avatarinfo_map[30017] = {"id":30017,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/chitublue/chitublue_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/chitublue/chitublue_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitublue/chitublue_back/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/chitublue/chitublue_back/run/all.atlas","total":8,"speed":8,"prefix":"ride/chitublue/chitublue_back/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitublue/chitublue_back/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/chitublue/chitublue_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/chitublue/chitublue_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitublue/chitublue_back/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/chitublue/chitublue_back/attack/all.atlas","total":7,"speed":8,"prefix":"ride/chitublue/chitublue_back/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitublue/chitublue_back/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/chitublue/chitublue_back/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/chitublue/chitublue_back/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitublue/chitublue_back/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/chitublue/chitublue_back/die/all.atlas","total":6,"speed":8,"prefix":"ride/chitublue/chitublue_back/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitublue/chitublue_back/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/chitublue/chitublue_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/chitublue/chitublue_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitublue/chitublue_back/stand/stand_link.txt",},],};
avatarinfo_map[30018] = {"id":30018,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/chitugold/chitugold_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/chitugold/chitugold_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitugold/chitugold_back/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/chitugold/chitugold_back/run/all.atlas","total":8,"speed":8,"prefix":"ride/chitugold/chitugold_back/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitugold/chitugold_back/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/chitugold/chitugold_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/chitugold/chitugold_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitugold/chitugold_back/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/chitugold/chitugold_back/attack/all.atlas","total":7,"speed":8,"prefix":"ride/chitugold/chitugold_back/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitugold/chitugold_back/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/chitugold/chitugold_back/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/chitugold/chitugold_back/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitugold/chitugold_back/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/chitugold/chitugold_back/die/all.atlas","total":6,"speed":8,"prefix":"ride/chitugold/chitugold_back/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitugold/chitugold_back/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/chitugold/chitugold_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/chitugold/chitugold_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitugold/chitugold_back/stand/stand_link.txt",},],};
avatarinfo_map[30019] = {"id":30019,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/chitupurple/chitupurple_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/chitupurple/chitupurple_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitupurple/chitupurple_back/stand/stand_link.txt",},{"aid":1,"w":512,"h":512,"path":"ride/chitupurple/chitupurple_back/run/all.atlas","total":8,"speed":8,"prefix":"ride/chitupurple/chitupurple_back/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitupurple/chitupurple_back/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/chitupurple/chitupurple_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/chitupurple/chitupurple_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitupurple/chitupurple_back/stand/stand_link.txt",},{"aid":3,"w":512,"h":512,"path":"ride/chitupurple/chitupurple_back/attack/all.atlas","total":7,"speed":8,"prefix":"ride/chitupurple/chitupurple_back/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitupurple/chitupurple_back/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/chitupurple/chitupurple_back/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/chitupurple/chitupurple_back/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitupurple/chitupurple_back/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/chitupurple/chitupurple_back/die/all.atlas","total":6,"speed":8,"prefix":"ride/chitupurple/chitupurple_back/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitupurple/chitupurple_back/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/chitupurple/chitupurple_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/chitupurple/chitupurple_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/chitupurple/chitupurple_back/stand/stand_link.txt",},],};
avatarinfo_map[30020] = {"id":30020,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/lionred/lionred_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/lionred/lionred_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/lionred/lionred_back/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"ride/lionred/lionred_back/run/all.atlas","total":8,"speed":8,"prefix":"ride/lionred/lionred_back/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/lionred/lionred_back/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/lionred/lionred_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/lionred/lionred_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/lionred/lionred_back/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"ride/lionred/lionred_back/attack/all.atlas","total":7,"speed":8,"prefix":"ride/lionred/lionred_back/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/lionred/lionred_back/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/lionred/lionred_back/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/lionred/lionred_back/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/lionred/lionred_back/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/lionred/lionred_back/die/all.atlas","total":6,"speed":8,"prefix":"ride/lionred/lionred_back/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/lionred/lionred_back/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/lionred/lionred_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/lionred/lionred_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/lionred/lionred_back/stand/stand.lk",},],};
avatarinfo_map[30021] = {"id":30021,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/phenixblue/phenixblue_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/phenixblue/phenixblue_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/phenixblue/phenixblue_back/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"ride/phenixblue/phenixblue_back/run/all.atlas","total":8,"speed":8,"prefix":"ride/phenixblue/phenixblue_back/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/phenixblue/phenixblue_back/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/phenixblue/phenixblue_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/phenixblue/phenixblue_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/phenixblue/phenixblue_back/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"ride/phenixblue/phenixblue_back/attack/all.atlas","total":7,"speed":8,"prefix":"ride/phenixblue/phenixblue_back/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/phenixblue/phenixblue_back/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/phenixblue/phenixblue_back/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/phenixblue/phenixblue_back/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/phenixblue/phenixblue_back/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/phenixblue/phenixblue_back/die/all.atlas","total":6,"speed":8,"prefix":"ride/phenixblue/phenixblue_back/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/phenixblue/phenixblue_back/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/phenixblue/phenixblue_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/phenixblue/phenixblue_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/phenixblue/phenixblue_back/stand/stand.lk",},],};
avatarinfo_map[30022] = {"id":30022,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/shendiao1/shendiao_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao1/shendiao_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao1/shendiao_back/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"ride/shendiao1/shendiao_back/run/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao1/shendiao_back/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao1/shendiao_back/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/shendiao1/shendiao_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao1/shendiao_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao1/shendiao_back/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"ride/shendiao1/shendiao_back/attack/all.atlas","total":7,"speed":8,"prefix":"ride/shendiao1/shendiao_back/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao1/shendiao_back/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/shendiao1/shendiao_back/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/shendiao1/shendiao_back/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao1/shendiao_back/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/shendiao1/shendiao_back/die/all.atlas","total":6,"speed":8,"prefix":"ride/shendiao1/shendiao_back/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao1/shendiao_back/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/shendiao1/shendiao_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao1/shendiao_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao1/shendiao_back/stand/stand.lk",},],};
avatarinfo_map[30023] = {"id":30023,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/shendiao2/shendiao_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao2/shendiao_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao2/shendiao_back/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"ride/shendiao2/shendiao_back/run/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao2/shendiao_back/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao2/shendiao_back/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/shendiao2/shendiao_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao2/shendiao_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao2/shendiao_back/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"ride/shendiao2/shendiao_back/attack/all.atlas","total":7,"speed":8,"prefix":"ride/shendiao2/shendiao_back/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao2/shendiao_back/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/shendiao2/shendiao_back/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/shendiao2/shendiao_back/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao2/shendiao_back/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/shendiao2/shendiao_back/die/all.atlas","total":6,"speed":8,"prefix":"ride/shendiao2/shendiao_back/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao2/shendiao_back/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/shendiao2/shendiao_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao2/shendiao_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao2/shendiao_back/stand/stand.lk",},],};
avatarinfo_map[30024] = {"id":30024,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/shendiao3/shendiao_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao3/shendiao_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao3/shendiao_back/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"ride/shendiao3/shendiao_back/run/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao3/shendiao_back/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao3/shendiao_back/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/shendiao3/shendiao_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao3/shendiao_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao3/shendiao_back/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"ride/shendiao3/shendiao_back/attack/all.atlas","total":7,"speed":8,"prefix":"ride/shendiao3/shendiao_back/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao3/shendiao_back/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/shendiao3/shendiao_back/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/shendiao3/shendiao_back/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao3/shendiao_back/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/shendiao3/shendiao_back/die/all.atlas","total":6,"speed":8,"prefix":"ride/shendiao3/shendiao_back/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao3/shendiao_back/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/shendiao3/shendiao_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao3/shendiao_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao3/shendiao_back/stand/stand.lk",},],};
avatarinfo_map[30025] = {"id":30025,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/shendiao4/shendiao_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao4/shendiao_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao4/shendiao_back/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"ride/shendiao4/shendiao_back/run/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao4/shendiao_back/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao4/shendiao_back/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/shendiao4/shendiao_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao4/shendiao_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao4/shendiao_back/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"ride/shendiao4/shendiao_back/attack/all.atlas","total":7,"speed":8,"prefix":"ride/shendiao4/shendiao_back/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao4/shendiao_back/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/shendiao4/shendiao_back/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/shendiao4/shendiao_back/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao4/shendiao_back/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/shendiao4/shendiao_back/die/all.atlas","total":6,"speed":8,"prefix":"ride/shendiao4/shendiao_back/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao4/shendiao_back/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/shendiao4/shendiao_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/shendiao4/shendiao_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/shendiao4/shendiao_back/stand/stand.lk",},],};
avatarinfo_map[30026] = {"id":30026,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/wushi1/wushi_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wushi1/wushi_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi1/wushi_back/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"ride/wushi1/wushi_back/run/all.atlas","total":8,"speed":8,"prefix":"ride/wushi1/wushi_back/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi1/wushi_back/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/wushi1/wushi_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wushi1/wushi_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi1/wushi_back/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"ride/wushi1/wushi_back/attack/all.atlas","total":7,"speed":8,"prefix":"ride/wushi1/wushi_back/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi1/wushi_back/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/wushi1/wushi_back/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/wushi1/wushi_back/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi1/wushi_back/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/wushi1/wushi_back/die/all.atlas","total":6,"speed":8,"prefix":"ride/wushi1/wushi_back/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi1/wushi_back/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/wushi1/wushi_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wushi1/wushi_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi1/wushi_back/stand/stand.lk",},],};
avatarinfo_map[30027] = {"id":30027,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/wushi2/wushi_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wushi2/wushi_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi2/wushi_back/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"ride/wushi2/wushi_back/run/all.atlas","total":8,"speed":8,"prefix":"ride/wushi2/wushi_back/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi2/wushi_back/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/wushi2/wushi_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wushi2/wushi_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi2/wushi_back/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"ride/wushi2/wushi_back/attack/all.atlas","total":7,"speed":8,"prefix":"ride/wushi2/wushi_back/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi2/wushi_back/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/wushi2/wushi_back/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/wushi2/wushi_back/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi2/wushi_back/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/wushi2/wushi_back/die/all.atlas","total":6,"speed":8,"prefix":"ride/wushi2/wushi_back/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi2/wushi_back/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/wushi2/wushi_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wushi2/wushi_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi2/wushi_back/stand/stand.lk",},],};
avatarinfo_map[30028] = {"id":30028,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/wushi3/wushi_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wushi3/wushi_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi3/wushi_back/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"ride/wushi3/wushi_back/run/all.atlas","total":8,"speed":8,"prefix":"ride/wushi3/wushi_back/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi3/wushi_back/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/wushi3/wushi_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wushi3/wushi_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi3/wushi_back/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"ride/wushi3/wushi_back/attack/all.atlas","total":7,"speed":8,"prefix":"ride/wushi3/wushi_back/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi3/wushi_back/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/wushi3/wushi_back/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/wushi3/wushi_back/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi3/wushi_back/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/wushi3/wushi_back/die/all.atlas","total":6,"speed":8,"prefix":"ride/wushi3/wushi_back/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi3/wushi_back/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/wushi3/wushi_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wushi3/wushi_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi3/wushi_back/stand/stand.lk",},],};
avatarinfo_map[30029] = {"id":30029,"info_data":[{"aid":0,"w":512,"h":512,"path":"ride/wushi4/wushi_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wushi4/wushi_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi4/wushi_back/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"ride/wushi4/wushi_back/run/all.atlas","total":8,"speed":8,"prefix":"ride/wushi4/wushi_back/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi4/wushi_back/run/run.lk",},{"aid":2,"w":512,"h":512,"path":"ride/wushi4/wushi_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wushi4/wushi_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi4/wushi_back/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"ride/wushi4/wushi_back/attack/all.atlas","total":7,"speed":8,"prefix":"ride/wushi4/wushi_back/attack/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi4/wushi_back/attack/attack.lk",},{"aid":4,"w":512,"h":512,"path":"ride/wushi4/wushi_back/attacked/all.atlas","total":2,"speed":8,"prefix":"ride/wushi4/wushi_back/attacked/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi4/wushi_back/attacked/attacked.lk",},{"aid":5,"w":512,"h":512,"path":"ride/wushi4/wushi_back/die/all.atlas","total":6,"speed":8,"prefix":"ride/wushi4/wushi_back/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi4/wushi_back/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"ride/wushi4/wushi_back/stand/all.atlas","total":8,"speed":8,"prefix":"ride/wushi4/wushi_back/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"ride/wushi4/wushi_back/stand/stand.lk",},],};
avatarinfo_map[40001] = {"id":40001,"info_data":[{"aid":0,"w":512,"h":512,"path":"wing/tianshi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/tianshi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/tianshi/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"wing/tianshi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/tianshi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/tianshi/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"wing/tianshi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/tianshi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/tianshi/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"wing/tianshi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/tianshi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/tianshi/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"wing/tianshi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/tianshi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/tianshi/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"wing/tianshi/die/all.atlas","total":6,"speed":8,"prefix":"wing/tianshi/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/tianshi/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"wing/tianshi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/tianshi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/tianshi/stand/stand.lk",},],};
avatarinfo_map[40002] = {"id":40002,"info_data":[{"aid":0,"w":512,"h":512,"path":"wing/baiyu/stand/all.atlas","total":8,"speed":8,"prefix":"wing/baiyu/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/baiyu/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"wing/baiyu/stand/all.atlas","total":8,"speed":8,"prefix":"wing/baiyu/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/baiyu/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"wing/baiyu/stand/all.atlas","total":8,"speed":8,"prefix":"wing/baiyu/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/baiyu/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"wing/baiyu/stand/all.atlas","total":8,"speed":8,"prefix":"wing/baiyu/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/baiyu/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"wing/baiyu/stand/all.atlas","total":8,"speed":8,"prefix":"wing/baiyu/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/baiyu/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"wing/baiyu/die/all.atlas","total":6,"speed":8,"prefix":"wing/baiyu/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/baiyu/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"wing/baiyu/stand/all.atlas","total":8,"speed":8,"prefix":"wing/baiyu/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/baiyu/stand/stand.lk",},],};
avatarinfo_map[40003] = {"id":40003,"info_data":[{"aid":0,"w":512,"h":512,"path":"wing/datianshi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/datianshi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/datianshi/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"wing/datianshi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/datianshi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/datianshi/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"wing/datianshi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/datianshi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/datianshi/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"wing/datianshi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/datianshi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/datianshi/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"wing/datianshi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/datianshi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/datianshi/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"wing/datianshi/die/all.atlas","total":6,"speed":8,"prefix":"wing/datianshi/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/datianshi/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"wing/datianshi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/datianshi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/datianshi/stand/stand.lk",},],};
avatarinfo_map[40004] = {"id":40004,"info_data":[{"aid":0,"w":512,"h":512,"path":"wing/emo/stand/all.atlas","total":8,"speed":8,"prefix":"wing/emo/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/emo/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"wing/emo/stand/all.atlas","total":8,"speed":8,"prefix":"wing/emo/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/emo/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"wing/emo/stand/all.atlas","total":8,"speed":8,"prefix":"wing/emo/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/emo/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"wing/emo/stand/all.atlas","total":8,"speed":8,"prefix":"wing/emo/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/emo/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"wing/emo/stand/all.atlas","total":8,"speed":8,"prefix":"wing/emo/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/emo/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"wing/emo/die/all.atlas","total":6,"speed":8,"prefix":"wing/emo/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/emo/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"wing/emo/stand/all.atlas","total":8,"speed":8,"prefix":"wing/emo/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/emo/stand/stand.lk",},],};
avatarinfo_map[40005] = {"id":40005,"info_data":[{"aid":0,"w":512,"h":512,"path":"wing/fendie/stand/all.atlas","total":8,"speed":8,"prefix":"wing/fendie/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/fendie/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"wing/fendie/stand/all.atlas","total":8,"speed":8,"prefix":"wing/fendie/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/fendie/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"wing/fendie/stand/all.atlas","total":8,"speed":8,"prefix":"wing/fendie/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/fendie/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"wing/fendie/stand/all.atlas","total":8,"speed":8,"prefix":"wing/fendie/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/fendie/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"wing/fendie/stand/all.atlas","total":8,"speed":8,"prefix":"wing/fendie/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/fendie/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"wing/fendie/die/all.atlas","total":6,"speed":8,"prefix":"wing/fendie/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/fendie/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"wing/fendie/stand/all.atlas","total":8,"speed":8,"prefix":"wing/fendie/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/fendie/stand/stand.lk",},],};
avatarinfo_map[40006] = {"id":40006,"info_data":[{"aid":0,"w":512,"h":512,"path":"wing/guangyu/stand/all.atlas","total":8,"speed":8,"prefix":"wing/guangyu/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/guangyu/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"wing/guangyu/stand/all.atlas","total":8,"speed":8,"prefix":"wing/guangyu/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/guangyu/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"wing/guangyu/stand/all.atlas","total":8,"speed":8,"prefix":"wing/guangyu/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/guangyu/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"wing/guangyu/stand/all.atlas","total":8,"speed":8,"prefix":"wing/guangyu/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/guangyu/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"wing/guangyu/stand/all.atlas","total":8,"speed":8,"prefix":"wing/guangyu/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/guangyu/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"wing/guangyu/die/all.atlas","total":6,"speed":8,"prefix":"wing/guangyu/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/guangyu/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"wing/guangyu/stand/all.atlas","total":8,"speed":8,"prefix":"wing/guangyu/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/guangyu/stand/stand.lk",},],};
avatarinfo_map[40007] = {"id":40007,"info_data":[{"aid":0,"w":512,"h":512,"path":"wing/honglian/stand/all.atlas","total":8,"speed":8,"prefix":"wing/honglian/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/honglian/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"wing/honglian/stand/all.atlas","total":8,"speed":8,"prefix":"wing/honglian/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/honglian/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"wing/honglian/stand/all.atlas","total":8,"speed":8,"prefix":"wing/honglian/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/honglian/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"wing/honglian/stand/all.atlas","total":8,"speed":8,"prefix":"wing/honglian/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/honglian/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"wing/honglian/stand/all.atlas","total":8,"speed":8,"prefix":"wing/honglian/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/honglian/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"wing/honglian/die/all.atlas","total":6,"speed":8,"prefix":"wing/honglian/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/honglian/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"wing/honglian/stand/all.atlas","total":8,"speed":8,"prefix":"wing/honglian/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/honglian/stand/stand.lk",},],};
avatarinfo_map[40008] = {"id":40008,"info_data":[{"aid":0,"w":512,"h":512,"path":"wing/hongyu/stand/all.atlas","total":8,"speed":8,"prefix":"wing/hongyu/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/hongyu/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"wing/hongyu/stand/all.atlas","total":8,"speed":8,"prefix":"wing/hongyu/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/hongyu/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"wing/hongyu/stand/all.atlas","total":8,"speed":8,"prefix":"wing/hongyu/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/hongyu/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"wing/hongyu/stand/all.atlas","total":8,"speed":8,"prefix":"wing/hongyu/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/hongyu/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"wing/hongyu/stand/all.atlas","total":8,"speed":8,"prefix":"wing/hongyu/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/hongyu/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"wing/hongyu/die/all.atlas","total":6,"speed":8,"prefix":"wing/hongyu/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/hongyu/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"wing/hongyu/stand/all.atlas","total":8,"speed":8,"prefix":"wing/hongyu/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/hongyu/stand/stand.lk",},],};
avatarinfo_map[40009] = {"id":40009,"info_data":[{"aid":0,"w":512,"h":512,"path":"wing/huangyi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/huangyi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/huangyi/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"wing/huangyi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/huangyi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/huangyi/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"wing/huangyi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/huangyi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/huangyi/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"wing/huangyi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/huangyi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/huangyi/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"wing/huangyi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/huangyi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/huangyi/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"wing/huangyi/die/all.atlas","total":6,"speed":8,"prefix":"wing/huangyi/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/huangyi/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"wing/huangyi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/huangyi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/huangyi/stand/stand.lk",},],};
avatarinfo_map[40010] = {"id":40010,"info_data":[{"aid":0,"w":512,"h":512,"path":"wing/landie/stand/all.atlas","total":8,"speed":8,"prefix":"wing/landie/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/landie/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"wing/landie/stand/all.atlas","total":8,"speed":8,"prefix":"wing/landie/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/landie/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"wing/landie/stand/all.atlas","total":8,"speed":8,"prefix":"wing/landie/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/landie/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"wing/landie/stand/all.atlas","total":8,"speed":8,"prefix":"wing/landie/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/landie/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"wing/landie/stand/all.atlas","total":8,"speed":8,"prefix":"wing/landie/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/landie/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"wing/landie/die/all.atlas","total":6,"speed":8,"prefix":"wing/landie/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/landie/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"wing/landie/stand/all.atlas","total":8,"speed":8,"prefix":"wing/landie/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/landie/stand/stand.lk",},],};
avatarinfo_map[40011] = {"id":40011,"info_data":[{"aid":0,"w":512,"h":512,"path":"wing/meiying/stand/all.atlas","total":8,"speed":8,"prefix":"wing/meiying/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/meiying/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"wing/meiying/stand/all.atlas","total":8,"speed":8,"prefix":"wing/meiying/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/meiying/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"wing/meiying/stand/all.atlas","total":8,"speed":8,"prefix":"wing/meiying/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/meiying/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"wing/meiying/stand/all.atlas","total":8,"speed":8,"prefix":"wing/meiying/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/meiying/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"wing/meiying/stand/all.atlas","total":8,"speed":8,"prefix":"wing/meiying/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/meiying/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"wing/meiying/die/all.atlas","total":6,"speed":8,"prefix":"wing/meiying/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/meiying/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"wing/meiying/stand/all.atlas","total":8,"speed":8,"prefix":"wing/meiying/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/meiying/stand/stand.lk",},],};
avatarinfo_map[40012] = {"id":40012,"info_data":[{"aid":0,"w":512,"h":512,"path":"wing/xueyi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/xueyi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/xueyi/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"wing/xueyi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/xueyi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/xueyi/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"wing/xueyi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/xueyi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/xueyi/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"wing/xueyi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/xueyi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/xueyi/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"wing/xueyi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/xueyi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/xueyi/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"wing/xueyi/die/all.atlas","total":6,"speed":8,"prefix":"wing/xueyi/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/xueyi/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"wing/xueyi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/xueyi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/xueyi/stand/stand.lk",},],};
avatarinfo_map[40013] = {"id":40013,"info_data":[{"aid":0,"w":512,"h":512,"path":"wing/youmeng/stand/all.atlas","total":8,"speed":8,"prefix":"wing/youmeng/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/youmeng/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"wing/youmeng/stand/all.atlas","total":8,"speed":8,"prefix":"wing/youmeng/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/youmeng/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"wing/youmeng/stand/all.atlas","total":8,"speed":8,"prefix":"wing/youmeng/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/youmeng/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"wing/youmeng/stand/all.atlas","total":8,"speed":8,"prefix":"wing/youmeng/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/youmeng/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"wing/youmeng/stand/all.atlas","total":8,"speed":8,"prefix":"wing/youmeng/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/youmeng/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"wing/youmeng/die/all.atlas","total":6,"speed":8,"prefix":"wing/youmeng/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/youmeng/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"wing/youmeng/stand/all.atlas","total":8,"speed":8,"prefix":"wing/youmeng/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/youmeng/stand/stand.lk",},],};
avatarinfo_map[40014] = {"id":40014,"info_data":[{"aid":0,"w":512,"h":512,"path":"wing/yuehua/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuehua/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuehua/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"wing/yuehua/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuehua/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuehua/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"wing/yuehua/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuehua/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuehua/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"wing/yuehua/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuehua/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuehua/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"wing/yuehua/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuehua/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuehua/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"wing/yuehua/die/all.atlas","total":6,"speed":8,"prefix":"wing/yuehua/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuehua/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"wing/yuehua/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuehua/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuehua/stand/stand.lk",},],};
avatarinfo_map[40015] = {"id":40015,"info_data":[{"aid":0,"w":512,"h":512,"path":"wing/tianyi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/tianyi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/tianyi/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"wing/tianyi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/tianyi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/tianyi/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"wing/tianyi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/tianyi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/tianyi/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"wing/tianyi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/tianyi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/tianyi/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"wing/tianyi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/tianyi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/tianyi/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"wing/tianyi/die/all.atlas","total":6,"speed":8,"prefix":"wing/tianyi/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/tianyi/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"wing/tianyi/stand/all.atlas","total":8,"speed":8,"prefix":"wing/tianyi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/tianyi/stand/stand.lk",},],};
avatarinfo_map[40016] = {"id":40016,"info_data":[{"aid":0,"w":512,"h":512,"path":"wing/bluedragon/stand/all.atlas","total":8,"speed":8,"prefix":"wing/bluedragon/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/bluedragon/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"wing/bluedragon/stand/all.atlas","total":8,"speed":8,"prefix":"wing/bluedragon/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/bluedragon/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"wing/bluedragon/stand/all.atlas","total":8,"speed":8,"prefix":"wing/bluedragon/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/bluedragon/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"wing/bluedragon/stand/all.atlas","total":8,"speed":8,"prefix":"wing/bluedragon/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/bluedragon/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"wing/bluedragon/stand/all.atlas","total":8,"speed":8,"prefix":"wing/bluedragon/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/bluedragon/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"wing/bluedragon/die/all.atlas","total":6,"speed":8,"prefix":"wing/bluedragon/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/bluedragon/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"wing/bluedragon/stand/all.atlas","total":8,"speed":8,"prefix":"wing/bluedragon/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/bluedragon/stand/stand.lk",},],};
avatarinfo_map[40017] = {"id":40017,"info_data":[{"aid":0,"w":512,"h":512,"path":"wing/flagblue/stand/all.atlas","total":8,"speed":8,"prefix":"wing/flagblue/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/flagblue/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"wing/flagblue/stand/all.atlas","total":8,"speed":8,"prefix":"wing/flagblue/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/flagblue/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"wing/flagblue/stand/all.atlas","total":8,"speed":8,"prefix":"wing/flagblue/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/flagblue/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"wing/flagblue/stand/all.atlas","total":8,"speed":8,"prefix":"wing/flagblue/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/flagblue/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"wing/flagblue/stand/all.atlas","total":8,"speed":8,"prefix":"wing/flagblue/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/flagblue/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"wing/flagblue/die/all.atlas","total":6,"speed":8,"prefix":"wing/flagblue/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/flagblue/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"wing/flagblue/stand/all.atlas","total":8,"speed":8,"prefix":"wing/flagblue/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/flagblue/stand/stand.lk",},],};
avatarinfo_map[40018] = {"id":40018,"info_data":[{"aid":0,"w":512,"h":512,"path":"wing/flaggold/stand/all.atlas","total":8,"speed":8,"prefix":"wing/flaggold/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/flaggold/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"wing/flaggold/stand/all.atlas","total":8,"speed":8,"prefix":"wing/flaggold/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/flaggold/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"wing/flaggold/stand/all.atlas","total":8,"speed":8,"prefix":"wing/flaggold/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/flaggold/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"wing/flaggold/stand/all.atlas","total":8,"speed":8,"prefix":"wing/flaggold/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/flaggold/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"wing/flaggold/stand/all.atlas","total":8,"speed":8,"prefix":"wing/flaggold/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/flaggold/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"wing/flaggold/die/all.atlas","total":6,"speed":8,"prefix":"wing/flaggold/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/flaggold/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"wing/flaggold/stand/all.atlas","total":8,"speed":8,"prefix":"wing/flaggold/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/flaggold/stand/stand.lk",},],};
avatarinfo_map[40019] = {"id":40019,"info_data":[{"aid":0,"w":512,"h":512,"path":"wing/flagpurple/stand/all.atlas","total":8,"speed":8,"prefix":"wing/flagpurple/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/flagpurple/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"wing/flagpurple/stand/all.atlas","total":8,"speed":8,"prefix":"wing/flagpurple/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/flagpurple/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"wing/flagpurple/stand/all.atlas","total":8,"speed":8,"prefix":"wing/flagpurple/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/flagpurple/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"wing/flagpurple/stand/all.atlas","total":8,"speed":8,"prefix":"wing/flagpurple/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/flagpurple/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"wing/flagpurple/stand/all.atlas","total":8,"speed":8,"prefix":"wing/flagpurple/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/flagpurple/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"wing/flagpurple/die/all.atlas","total":6,"speed":8,"prefix":"wing/flagpurple/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/flagpurple/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"wing/flagpurple/stand/all.atlas","total":8,"speed":8,"prefix":"wing/flagpurple/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/flagpurple/stand/stand.lk",},],};
avatarinfo_map[40020] = {"id":40020,"info_data":[{"aid":0,"w":512,"h":512,"path":"wing/flagorig/stand/all.atlas","total":8,"speed":8,"prefix":"wing/flagorig/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/flagorig/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"wing/flagorig/stand/all.atlas","total":8,"speed":8,"prefix":"wing/flagorig/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/flagorig/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"wing/flagorig/stand/all.atlas","total":8,"speed":8,"prefix":"wing/flagorig/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/flagorig/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"wing/flagorig/stand/all.atlas","total":8,"speed":8,"prefix":"wing/flagorig/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/flagorig/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"wing/flagorig/stand/all.atlas","total":8,"speed":8,"prefix":"wing/flagorig/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/flagorig/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"wing/flagorig/die/all.atlas","total":6,"speed":8,"prefix":"wing/flagorig/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/flagorig/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"wing/flagorig/stand/all.atlas","total":8,"speed":8,"prefix":"wing/flagorig/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/flagorig/stand/stand.lk",},],};
avatarinfo_map[40021] = {"id":40021,"info_data":[{"aid":0,"w":512,"h":512,"path":"wing/diao1/stand/all.atlas","total":8,"speed":8,"prefix":"wing/diao1/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/diao1/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"wing/diao1/stand/all.atlas","total":8,"speed":8,"prefix":"wing/diao1/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/diao1/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"wing/diao1/stand/all.atlas","total":8,"speed":8,"prefix":"wing/diao1/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/diao1/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"wing/diao1/stand/all.atlas","total":8,"speed":8,"prefix":"wing/diao1/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/diao1/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"wing/diao1/stand/all.atlas","total":8,"speed":8,"prefix":"wing/diao1/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/diao1/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"wing/diao1/die/all.atlas","total":6,"speed":8,"prefix":"wing/diao1/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/diao1/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"wing/diao1/stand/all.atlas","total":8,"speed":8,"prefix":"wing/diao1/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/diao1/stand/stand.lk",},],};
avatarinfo_map[40022] = {"id":40022,"info_data":[{"aid":0,"w":512,"h":512,"path":"wing/diao2/stand/all.atlas","total":8,"speed":8,"prefix":"wing/diao2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/diao2/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"wing/diao2/stand/all.atlas","total":8,"speed":8,"prefix":"wing/diao2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/diao2/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"wing/diao2/stand/all.atlas","total":8,"speed":8,"prefix":"wing/diao2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/diao2/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"wing/diao2/stand/all.atlas","total":8,"speed":8,"prefix":"wing/diao2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/diao2/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"wing/diao2/stand/all.atlas","total":8,"speed":8,"prefix":"wing/diao2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/diao2/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"wing/diao2/die/all.atlas","total":6,"speed":8,"prefix":"wing/diao2/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/diao2/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"wing/diao2/stand/all.atlas","total":8,"speed":8,"prefix":"wing/diao2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/diao2/stand/stand.lk",},],};
avatarinfo_map[40023] = {"id":40023,"info_data":[{"aid":0,"w":512,"h":512,"path":"wing/diao3/stand/all.atlas","total":8,"speed":8,"prefix":"wing/diao3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/diao3/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"wing/diao3/stand/all.atlas","total":8,"speed":8,"prefix":"wing/diao3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/diao3/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"wing/diao3/stand/all.atlas","total":8,"speed":8,"prefix":"wing/diao3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/diao3/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"wing/diao3/stand/all.atlas","total":8,"speed":8,"prefix":"wing/diao3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/diao3/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"wing/diao3/stand/all.atlas","total":8,"speed":8,"prefix":"wing/diao3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/diao3/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"wing/diao3/die/all.atlas","total":6,"speed":8,"prefix":"wing/diao3/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/diao3/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"wing/diao3/stand/all.atlas","total":8,"speed":8,"prefix":"wing/diao3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/diao3/stand/stand.lk",},],};
avatarinfo_map[40024] = {"id":40024,"info_data":[{"aid":0,"w":512,"h":512,"path":"wing/diao4/stand/all.atlas","total":8,"speed":8,"prefix":"wing/diao4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/diao4/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"wing/diao4/stand/all.atlas","total":8,"speed":8,"prefix":"wing/diao4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/diao4/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"wing/diao4/stand/all.atlas","total":8,"speed":8,"prefix":"wing/diao4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/diao4/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"wing/diao4/stand/all.atlas","total":8,"speed":8,"prefix":"wing/diao4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/diao4/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"wing/diao4/stand/all.atlas","total":8,"speed":8,"prefix":"wing/diao4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/diao4/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"wing/diao4/die/all.atlas","total":6,"speed":8,"prefix":"wing/diao4/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/diao4/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"wing/diao4/stand/all.atlas","total":8,"speed":8,"prefix":"wing/diao4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/diao4/stand/stand.lk",},],};
avatarinfo_map[40025] = {"id":40025,"info_data":[{"aid":0,"w":512,"h":512,"path":"wing/yuan1/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuan1/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuan1/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"wing/yuan1/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuan1/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuan1/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"wing/yuan1/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuan1/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuan1/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"wing/yuan1/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuan1/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuan1/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"wing/yuan1/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuan1/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuan1/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"wing/yuan1/die/all.atlas","total":6,"speed":8,"prefix":"wing/yuan1/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuan1/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"wing/yuan1/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuan1/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuan1/stand/stand.lk",},],};
avatarinfo_map[40026] = {"id":40026,"info_data":[{"aid":0,"w":512,"h":512,"path":"wing/yuan2/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuan2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuan2/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"wing/yuan2/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuan2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuan2/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"wing/yuan2/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuan2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuan2/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"wing/yuan2/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuan2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuan2/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"wing/yuan2/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuan2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuan2/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"wing/yuan2/die/all.atlas","total":6,"speed":8,"prefix":"wing/yuan2/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuan2/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"wing/yuan2/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuan2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuan2/stand/stand.lk",},],};
avatarinfo_map[40027] = {"id":40027,"info_data":[{"aid":0,"w":512,"h":512,"path":"wing/yuan3/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuan3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuan3/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"wing/yuan3/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuan3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuan3/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"wing/yuan3/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuan3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuan3/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"wing/yuan3/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuan3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuan3/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"wing/yuan3/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuan3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuan3/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"wing/yuan3/die/all.atlas","total":6,"speed":8,"prefix":"wing/yuan3/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuan3/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"wing/yuan3/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuan3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuan3/stand/stand.lk",},],};
avatarinfo_map[40028] = {"id":40028,"info_data":[{"aid":0,"w":512,"h":512,"path":"wing/yuan4/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuan4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuan4/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"wing/yuan4/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuan4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuan4/stand/stand.lk",},{"aid":2,"w":512,"h":512,"path":"wing/yuan4/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuan4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuan4/stand/stand.lk",},{"aid":3,"w":512,"h":512,"path":"wing/yuan4/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuan4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuan4/stand/stand.lk",},{"aid":4,"w":512,"h":512,"path":"wing/yuan4/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuan4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuan4/stand/stand.lk",},{"aid":5,"w":512,"h":512,"path":"wing/yuan4/die/all.atlas","total":6,"speed":8,"prefix":"wing/yuan4/die/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuan4/die/die.lk",},{"aid":7,"w":512,"h":512,"path":"wing/yuan4/stand/all.atlas","total":8,"speed":8,"prefix":"wing/yuan4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"wing/yuan4/stand/stand.lk",},],};
avatarinfo_map[50001] = {"id":50001,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/tianshitu/stand/all.atlas","total":8,"speed":8,"prefix":"fairy/tianshitu/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/tianshitu/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"fairy/tianshitu/run/all.atlas","total":6,"speed":8,"prefix":"fairy/tianshitu/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/tianshitu/run/run.lk",},],};
avatarinfo_map[50002] = {"id":50002,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/yebianfu/stand/all.atlas","total":8,"speed":8,"prefix":"fairy/yebianfu/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/yebianfu/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/yebianfu/run/all.atlas","total":6,"speed":8,"prefix":"fairy/yebianfu/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/yebianfu/run/run.link",},],};
avatarinfo_map[50003] = {"id":50003,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/xiaomengji/stand/all.atlas","total":8,"speed":8,"prefix":"fairy/xiaomengji/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/xiaomengji/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"fairy/xiaomengji/run/all.atlas","total":6,"speed":8,"prefix":"fairy/xiaomengji/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/xiaomengji/run/run.lk",},],};
avatarinfo_map[50004] = {"id":50004,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/zhuxiaobao/stand/all.atlas","total":8,"speed":8,"prefix":"fairy/zhuxiaobao/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/zhuxiaobao/stand/stand.lk",},{"aid":1,"w":512,"h":512,"path":"fairy/zhuxiaobao/run/all.atlas","total":6,"speed":8,"prefix":"fairy/zhuxiaobao/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/zhuxiaobao/run/run.lk",},],};
avatarinfo_map[50005] = {"id":50005,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/yuehuazi/stand/all.atlas","total":8,"speed":8,"prefix":"fairy/yuehuazi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/yuehuazi/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/yuehuazi/run/all.atlas","total":6,"speed":8,"prefix":"fairy/yuehuazi/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/yuehuazi/run/run.link",},],};
avatarinfo_map[50006] = {"id":50006,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/baiyuluo/stand/all.atlas","total":8,"speed":8,"prefix":"fairy/baiyuluo/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/baiyuluo/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/baiyuluo/run/all.atlas","total":6,"speed":8,"prefix":"fairy/baiyuluo/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/baiyuluo/run/run.link",},],};
avatarinfo_map[50007] = {"id":50007,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/feitianxiang/stand/all.atlas","total":8,"speed":8,"prefix":"fairy/feitianxiang/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/feitianxiang/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/feitianxiang/run/all.atlas","total":6,"speed":8,"prefix":"fairy/feitianxiang/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/feitianxiang/run/run.link",},],};
avatarinfo_map[50008] = {"id":50008,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/gulingfeng/stand/all.atlas","total":8,"speed":8,"prefix":"fairy/gulingfeng/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/gulingfeng/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/gulingfeng/run/all.atlas","total":6,"speed":8,"prefix":"fairy/gulingfeng/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/gulingfeng/run/run.link",},],};
avatarinfo_map[50009] = {"id":50009,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/huanmemgdie/stand/all.atlas","total":8,"speed":8,"prefix":"fairy/huanmemgdie/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/huanmemgdie/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/huanmemgdie/run/all.atlas","total":6,"speed":8,"prefix":"fairy/huanmemgdie/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/huanmemgdie/run/run.link",},],};
avatarinfo_map[50010] = {"id":50010,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/jiuxiaolong/stand/all.atlas","total":8,"speed":8,"prefix":"fairy/jiuxiaolong/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/jiuxiaolong/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/jiuxiaolong/run/all.atlas","total":6,"speed":8,"prefix":"fairy/jiuxiaolong/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/jiuxiaolong/run/run.link",},],};
avatarinfo_map[50011] = {"id":50011,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/lanbinger/stand/all.atlas","total":8,"speed":8,"prefix":"fairy/lanbinger/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/lanbinger/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/lanbinger/run/all.atlas","total":6,"speed":8,"prefix":"fairy/lanbinger/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/lanbinger/run/run.link",},],};
avatarinfo_map[50012] = {"id":50012,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/wuhuofeng/stand/all.atlas","total":8,"speed":8,"prefix":"fairy/wuhuofeng/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/wuhuofeng/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/wuhuofeng/run/all.atlas","total":6,"speed":8,"prefix":"fairy/wuhuofeng/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/wuhuofeng/run/run.link",},],};
avatarinfo_map[50013] = {"id":50013,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/xianlinghe/stand/all.atlas","total":8,"speed":8,"prefix":"fairy/xianlinghe/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/xianlinghe/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/xianlinghe/run/all.atlas","total":6,"speed":8,"prefix":"fairy/xianlinghe/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/xianlinghe/run/run.link",},],};
avatarinfo_map[50014] = {"id":50014,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/xiaowukong/stand/all.atlas","total":8,"speed":8,"prefix":"fairy/xiaowukong/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/xiaowukong/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/xiaowukong/run/all.atlas","total":6,"speed":8,"prefix":"fairy/xiaowukong/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/xiaowukong/run/run.link",},],};
avatarinfo_map[50015] = {"id":50015,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/yantongzi/stand/all.atlas","total":8,"speed":8,"prefix":"fairy/yantongzi/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/yantongzi/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/yantongzi/run/all.atlas","total":6,"speed":8,"prefix":"fairy/yantongzi/run/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/yantongzi/run/run.link",},],};
avatarinfo_map[50016] = {"id":50016,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/cupidorig/stand/all.atlas","total":8,"speed":8,"prefix":"fairy/cupidorig/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/cupidorig/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/cupidorig/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/cupidorig/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/cupidorig/stand/stand.link",},],};
avatarinfo_map[50017] = {"id":50017,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/cupidblue/stand/all.atlas","total":8,"speed":8,"prefix":"fairy/cupidblue/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/cupidblue/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/cupidblue/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/cupidblue/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/cupidblue/stand/stand.link",},],};
avatarinfo_map[50018] = {"id":50018,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/cupidgold/stand/all.atlas","total":8,"speed":8,"prefix":"fairy/cupidgold/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/cupidgold/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/cupidgold/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/cupidgold/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/cupidgold/stand/stand.link",},],};
avatarinfo_map[50019] = {"id":50019,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/cupidpurple/stand/all.atlas","total":8,"speed":8,"prefix":"fairy/cupidpurple/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/cupidpurple/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/cupidpurple/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/cupidpurple/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/cupidpurple/stand/stand.link",},],};
avatarinfo_map[50020] = {"id":50020,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/qiu1/stand/all.atlas","total":8,"speed":8,"prefix":"fairy/qiu1/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/qiu1/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/qiu1/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/qiu1/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/qiu1/stand/stand.link",},],};
avatarinfo_map[50021] = {"id":50021,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/qiu2/stand/all.atlas","total":8,"speed":8,"prefix":"fairy/qiu2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/qiu2/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/qiu2/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/qiu2/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/qiu2/stand/stand.link",},],};
avatarinfo_map[50022] = {"id":50022,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/qiu3/stand/all.atlas","total":8,"speed":8,"prefix":"fairy/qiu3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/qiu3/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/qiu3/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/qiu3/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/qiu3/stand/stand.link",},],};
avatarinfo_map[50023] = {"id":50023,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/qiu4/stand/all.atlas","total":8,"speed":8,"prefix":"fairy/qiu4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/qiu4/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/qiu4/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/qiu4/stand/all/","dir":"7,7,3,3,3,3,7,7","mirror":1,"dir4":0,"link":"fairy/qiu4/stand/stand.link",},],};
avatarinfo_map[50064] = {"id":50064,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/soul1/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul1/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul1/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/soul1/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul1/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul1/stand/stand.link",},],};
avatarinfo_map[50065] = {"id":50065,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/soul2/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul2/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul2/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/soul2/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul2/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul2/stand/stand.link",},],};
avatarinfo_map[50066] = {"id":50066,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/soul3/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul3/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul3/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/soul3/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul3/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul3/stand/stand.link",},],};
avatarinfo_map[50067] = {"id":50067,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/soul4/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul4/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul4/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/soul4/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul4/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul4/stand/stand.link",},],};
avatarinfo_map[50068] = {"id":50068,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/soul5/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul5/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul5/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/soul5/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul5/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul5/stand/stand.link",},],};
avatarinfo_map[50069] = {"id":50069,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/soul6/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul6/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul6/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/soul6/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul6/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul6/stand/stand.link",},],};
avatarinfo_map[50070] = {"id":50070,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/soul7/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul7/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul7/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/soul7/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul7/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul7/stand/stand.link",},],};
avatarinfo_map[50071] = {"id":50071,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/soul8/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul8/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul8/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/soul8/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul8/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul8/stand/stand.link",},],};
avatarinfo_map[50072] = {"id":50072,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/soul9/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul9/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul9/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/soul9/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul9/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul9/stand/stand.link",},],};
avatarinfo_map[50073] = {"id":50073,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/soul10/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul10/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul10/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/soul10/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul10/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul10/stand/stand.link",},],};
avatarinfo_map[50074] = {"id":50074,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/soul11/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul11/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul11/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/soul11/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul11/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul11/stand/stand.link",},],};
avatarinfo_map[50075] = {"id":50075,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/soul12/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul12/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul12/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/soul12/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul12/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul12/stand/stand.link",},],};
avatarinfo_map[50076] = {"id":50076,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/soul13/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul13/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul13/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/soul13/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul13/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul13/stand/stand.link",},],};
avatarinfo_map[50077] = {"id":50077,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/soul14/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul14/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul14/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/soul14/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul14/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul14/stand/stand.link",},],};
avatarinfo_map[50078] = {"id":50078,"info_data":[{"aid":0,"w":512,"h":512,"path":"fairy/soul15/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul15/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul15/stand/stand.link",},{"aid":1,"w":512,"h":512,"path":"fairy/soul15/stand/all.atlas","total":6,"speed":8,"prefix":"fairy/soul15/stand/all/","dir":"0,0,0,0,0,0,0,0","mirror":1,"dir4":0,"link":"fairy/soul15/stand/stand.link",},],};
avatarinfo_map[60001] = {"id":60001,"info_data":[{"aid":0,"w":512,"h":512,"path":"zhuque/stand.atlas","total":10,"speed":8,"prefix":"zhuque/stand/","dir":"0,1,2,3,4,3,2,1","mirror":1,"dir4":0,"link":"",},{"aid":1,"w":512,"h":512,"path":"zhuque/run.atlas","total":10,"speed":8,"prefix":"zhuque/run/","dir":"0,1,2,3,4,3,2,1","mirror":1,"dir4":0,"link":"",},{"aid":2,"w":512,"h":512,"path":"zhuque/stand.atlas","total":10,"speed":8,"prefix":"zhuque/stand/","dir":"0,1,2,3,4,3,2,1","mirror":1,"dir4":0,"link":"",},{"aid":3,"w":512,"h":512,"path":"zhuque/attack.atlas","total":13,"speed":8,"prefix":"zhuque/attack/","dir":"0,0,0,3,0,0,0,7","mirror":1,"dir4":0,"link":"",},{"aid":4,"w":512,"h":512,"path":"zhuque/attacked.atlas","total":2,"speed":8,"prefix":"zhuque/attacked/","dir":"0,0,0,3,0,0,0,7","mirror":1,"dir4":0,"link":"",},{"aid":5,"w":512,"h":512,"path":"zhuque/die.atlas","total":15,"speed":8,"prefix":"zhuque/die/","dir":"0,0,0,3,0,0,0,7","mirror":1,"dir4":0,"link":"",},{"aid":7,"w":512,"h":512,"path":"zhuque/skill.atlas","total":14,"speed":8,"prefix":"zhuque/skill/","dir":"0,0,0,3,0,0,0,7","mirror":1,"dir4":0,"link":"",},],};
class | :
def __init__(self, key):
config = avatarinfo_map.get(key);
for k, v in config.items():
setattr(self, k, v);
return
def create_Avatarinfo(key):
config = avatarinfo_map.get(key);
if not config:
return
return Avatarinfo(key)
| Avatarinfo |
import_test.go | package lifecycletest
import (
"testing"
"github.com/blang/semver"
"github.com/stretchr/testify/assert"
. "github.com/pulumi/pulumi/pkg/v2/engine"
"github.com/pulumi/pulumi/pkg/v2/resource/deploy"
"github.com/pulumi/pulumi/pkg/v2/resource/deploy/deploytest"
"github.com/pulumi/pulumi/sdk/v2/go/common/resource"
"github.com/pulumi/pulumi/sdk/v2/go/common/resource/plugin"
"github.com/pulumi/pulumi/sdk/v2/go/common/util/result"
"github.com/pulumi/pulumi/sdk/v2/go/common/workspace"
)
func TestImportOption(t *testing.T) {
loaders := []*deploytest.ProviderLoader{
deploytest.NewProviderLoader("pkgA", semver.MustParse("1.0.0"), func() (plugin.Provider, error) {
return &deploytest.Provider{
DiffF: func(urn resource.URN, id resource.ID,
olds, news resource.PropertyMap, ignoreChanges []string) (plugin.DiffResult, error) {
if olds["foo"].DeepEquals(news["foo"]) {
return plugin.DiffResult{Changes: plugin.DiffNone}, nil
}
diffKind := plugin.DiffUpdate
if news["foo"].IsString() && news["foo"].StringValue() == "replace" {
diffKind = plugin.DiffUpdateReplace
}
return plugin.DiffResult{
Changes: plugin.DiffSome,
DetailedDiff: map[string]plugin.PropertyDiff{
"foo": {Kind: diffKind},
},
}, nil
},
CreateF: func(urn resource.URN, news resource.PropertyMap, timeout float64,
preview bool) (resource.ID, resource.PropertyMap, resource.Status, error) {
return "created-id", news, resource.StatusOK, nil
},
ReadF: func(urn resource.URN, id resource.ID,
inputs, state resource.PropertyMap) (plugin.ReadResult, resource.Status, error) {
return plugin.ReadResult{
Inputs: resource.PropertyMap{
"foo": resource.NewStringProperty("bar"),
},
Outputs: resource.PropertyMap{
"foo": resource.NewStringProperty("bar"),
},
}, resource.StatusOK, nil
},
}, nil
}),
}
readID, importID, inputs := resource.ID(""), resource.ID("id"), resource.PropertyMap{}
program := deploytest.NewLanguageRuntime(func(_ plugin.RunInfo, monitor *deploytest.ResourceMonitor) error {
var err error
if readID != "" {
_, _, err = monitor.ReadResource("pkgA:m:typA", "resA", readID, "", resource.PropertyMap{}, "", "")
} else {
_, _, _, err = monitor.RegisterResource("pkgA:m:typA", "resA", true, deploytest.ResourceOptions{
Inputs: inputs,
ImportID: importID,
})
}
assert.NoError(t, err)
return nil
})
host := deploytest.NewPluginHost(nil, nil, program, loaders...)
p := &TestPlan{
Options: UpdateOptions{Host: host},
}
provURN := p.NewProviderURN("pkgA", "default", "")
resURN := p.NewURN("pkgA:m:typA", "resA", "")
// Run the initial update. The import should fail due to a mismatch in inputs between the program and the
// actual resource state.
project := p.GetProject()
_, res := TestOp(Update).Run(project, p.GetTarget(nil), p.Options, false, p.BackendClient, nil)
assert.NotNil(t, res)
// Run a second update after fixing the inputs. The import should succeed.
inputs["foo"] = resource.NewStringProperty("bar")
snap, res := TestOp(Update).Run(project, p.GetTarget(nil), p.Options, false, p.BackendClient,
func(_ workspace.Project, _ deploy.Target, entries JournalEntries, _ []Event, res result.Result) result.Result {
for _, entry := range entries {
switch urn := entry.Step.URN(); urn {
case provURN:
assert.Equal(t, deploy.OpCreate, entry.Step.Op())
case resURN:
assert.Equal(t, deploy.OpImport, entry.Step.Op())
default:
t.Fatalf("unexpected resource %v", urn)
}
}
return res
})
assert.Nil(t, res)
assert.Len(t, snap.Resources, 2)
// Now, run another update. The update should succeed and there should be no diffs.
snap, res = TestOp(Update).Run(project, p.GetTarget(snap), p.Options, false, p.BackendClient,
func(_ workspace.Project, _ deploy.Target, entries JournalEntries, _ []Event, res result.Result) result.Result {
for _, entry := range entries {
switch urn := entry.Step.URN(); urn {
case provURN, resURN:
assert.Equal(t, deploy.OpSame, entry.Step.Op())
default:
t.Fatalf("unexpected resource %v", urn)
}
}
return res
})
assert.Nil(t, res)
// Change a property value and run a third update. The update should succeed.
inputs["foo"] = resource.NewStringProperty("rab")
snap, res = TestOp(Update).Run(project, p.GetTarget(snap), p.Options, false, p.BackendClient,
func(_ workspace.Project, _ deploy.Target, entries JournalEntries, _ []Event, res result.Result) result.Result {
for _, entry := range entries {
switch urn := entry.Step.URN(); urn {
case provURN:
assert.Equal(t, deploy.OpSame, entry.Step.Op())
case resURN:
assert.Equal(t, deploy.OpUpdate, entry.Step.Op())
default:
t.Fatalf("unexpected resource %v", urn)
}
}
return res
})
assert.Nil(t, res)
// Change the property value s.t. the resource requires replacement. The update should fail.
inputs["foo"] = resource.NewStringProperty("replace")
_, res = TestOp(Update).Run(project, p.GetTarget(snap), p.Options, false, p.BackendClient, nil)
assert.NotNil(t, res)
// Finally, destroy the stack. The `Delete` function should be called.
_, res = TestOp(Destroy).Run(project, p.GetTarget(snap), p.Options, false, p.BackendClient,
func(_ workspace.Project, _ deploy.Target, entries JournalEntries, _ []Event, res result.Result) result.Result {
for _, entry := range entries {
switch urn := entry.Step.URN(); urn {
case provURN, resURN:
assert.Equal(t, deploy.OpDelete, entry.Step.Op())
default:
t.Fatalf("unexpected resource %v", urn)
}
}
return res
})
assert.Nil(t, res)
// Now clear the ID to import and run an initial update to create a resource that we will import-replace.
importID, inputs["foo"] = "", resource.NewStringProperty("bar")
snap, res = TestOp(Update).Run(project, p.GetTarget(nil), p.Options, false, p.BackendClient,
func(_ workspace.Project, _ deploy.Target, entries JournalEntries, _ []Event, res result.Result) result.Result {
for _, entry := range entries {
switch urn := entry.Step.URN(); urn {
case provURN, resURN:
assert.Equal(t, deploy.OpCreate, entry.Step.Op())
default:
t.Fatalf("unexpected resource %v", urn)
}
}
return res
})
assert.Nil(t, res)
assert.Len(t, snap.Resources, 2)
// Set the import ID to the same ID as the existing resource and run an update. This should produce no changes.
for _, r := range snap.Resources {
if r.URN == resURN {
importID = r.ID
}
}
snap, res = TestOp(Update).Run(project, p.GetTarget(snap), p.Options, false, p.BackendClient,
func(_ workspace.Project, _ deploy.Target, entries JournalEntries, _ []Event, res result.Result) result.Result {
for _, entry := range entries {
switch urn := entry.Step.URN(); urn {
case provURN, resURN:
assert.Equal(t, deploy.OpSame, entry.Step.Op())
default:
t.Fatalf("unexpected resource %v", urn)
}
}
return res
})
assert.Nil(t, res)
// Then set the import ID and run another update. The update should succeed and should show an import-replace and
// a delete-replaced.
importID = "id"
_, res = TestOp(Update).Run(project, p.GetTarget(snap), p.Options, false, p.BackendClient,
func(_ workspace.Project, _ deploy.Target, entries JournalEntries, _ []Event, res result.Result) result.Result {
for _, entry := range entries {
switch urn := entry.Step.URN(); urn {
case provURN:
assert.Equal(t, deploy.OpSame, entry.Step.Op())
case resURN:
switch entry.Step.Op() {
case deploy.OpReplace, deploy.OpImportReplacement:
assert.Equal(t, importID, entry.Step.New().ID)
case deploy.OpDeleteReplaced:
assert.NotEqual(t, importID, entry.Step.Old().ID)
}
default:
t.Fatalf("unexpected resource %v", urn)
}
} |
// Change the program to read a resource rather than creating one.
readID = "id"
snap, res = TestOp(Update).Run(project, p.GetTarget(nil), p.Options, false, p.BackendClient,
func(_ workspace.Project, _ deploy.Target, entries JournalEntries, _ []Event, res result.Result) result.Result {
for _, entry := range entries {
switch urn := entry.Step.URN(); urn {
case provURN:
assert.Equal(t, deploy.OpCreate, entry.Step.Op())
case resURN:
assert.Equal(t, deploy.OpRead, entry.Step.Op())
default:
t.Fatalf("unexpected resource %v", urn)
}
}
return res
})
assert.Nil(t, res)
assert.Len(t, snap.Resources, 2)
// Now have the program import the resource. We should see an import-replace and a read-discard.
readID, importID = "", readID
_, res = TestOp(Update).Run(project, p.GetTarget(snap), p.Options, false, p.BackendClient,
func(_ workspace.Project, _ deploy.Target, entries JournalEntries, _ []Event, res result.Result) result.Result {
for _, entry := range entries {
switch urn := entry.Step.URN(); urn {
case provURN:
assert.Equal(t, deploy.OpSame, entry.Step.Op())
case resURN:
switch entry.Step.Op() {
case deploy.OpReplace, deploy.OpImportReplacement:
assert.Equal(t, importID, entry.Step.New().ID)
case deploy.OpDiscardReplaced:
assert.Equal(t, importID, entry.Step.Old().ID)
}
default:
t.Fatalf("unexpected resource %v", urn)
}
}
return res
})
assert.Nil(t, res)
}
// TestImportWithDifferingImportIdentifierFormat tests importing a resource that has a different format of identifier
// for the import input than for the ID property, ensuring that a second update does not result in a replace.
func TestImportWithDifferingImportIdentifierFormat(t *testing.T) {
loaders := []*deploytest.ProviderLoader{
deploytest.NewProviderLoader("pkgA", semver.MustParse("1.0.0"), func() (plugin.Provider, error) {
return &deploytest.Provider{
DiffF: func(urn resource.URN, id resource.ID,
olds, news resource.PropertyMap, ignoreChanges []string) (plugin.DiffResult, error) {
if olds["foo"].DeepEquals(news["foo"]) {
return plugin.DiffResult{Changes: plugin.DiffNone}, nil
}
return plugin.DiffResult{
Changes: plugin.DiffSome,
DetailedDiff: map[string]plugin.PropertyDiff{
"foo": {Kind: plugin.DiffUpdate},
},
}, nil
},
CreateF: func(urn resource.URN, news resource.PropertyMap, timeout float64,
preview bool) (resource.ID, resource.PropertyMap, resource.Status, error) {
return "created-id", news, resource.StatusOK, nil
},
ReadF: func(urn resource.URN, id resource.ID,
inputs, state resource.PropertyMap) (plugin.ReadResult, resource.Status, error) {
return plugin.ReadResult{
// This ID is deliberately not the same as the ID used to import.
ID: "id",
Inputs: resource.PropertyMap{
"foo": resource.NewStringProperty("bar"),
},
Outputs: resource.PropertyMap{
"foo": resource.NewStringProperty("bar"),
},
}, resource.StatusOK, nil
},
}, nil
}),
}
program := deploytest.NewLanguageRuntime(func(_ plugin.RunInfo, monitor *deploytest.ResourceMonitor) error {
_, _, _, err := monitor.RegisterResource("pkgA:m:typA", "resA", true, deploytest.ResourceOptions{
Inputs: resource.PropertyMap{
"foo": resource.NewStringProperty("bar"),
},
// The import ID is deliberately not the same as the ID returned from Read.
ImportID: resource.ID("import-id"),
})
assert.NoError(t, err)
return nil
})
host := deploytest.NewPluginHost(nil, nil, program, loaders...)
p := &TestPlan{
Options: UpdateOptions{Host: host},
}
provURN := p.NewProviderURN("pkgA", "default", "")
resURN := p.NewURN("pkgA:m:typA", "resA", "")
// Run the initial update. The import should succeed.
project := p.GetProject()
snap, res := TestOp(Update).Run(project, p.GetTarget(nil), p.Options, false, p.BackendClient,
func(_ workspace.Project, _ deploy.Target, entries JournalEntries, _ []Event, res result.Result) result.Result {
for _, entry := range entries {
switch urn := entry.Step.URN(); urn {
case provURN:
assert.Equal(t, deploy.OpCreate, entry.Step.Op())
case resURN:
assert.Equal(t, deploy.OpImport, entry.Step.Op())
default:
t.Fatalf("unexpected resource %v", urn)
}
}
return res
})
assert.Nil(t, res)
assert.Len(t, snap.Resources, 2)
// Now, run another update. The update should succeed and there should be no diffs.
snap, res = TestOp(Update).Run(project, p.GetTarget(snap), p.Options, false, p.BackendClient,
func(_ workspace.Project, _ deploy.Target, entries JournalEntries, _ []Event, res result.Result) result.Result {
for _, entry := range entries {
switch urn := entry.Step.URN(); urn {
case provURN, resURN:
assert.Equal(t, deploy.OpSame, entry.Step.Op())
default:
t.Fatalf("unexpected resource %v", urn)
}
}
return res
})
assert.Nil(t, res)
}
func TestImportUpdatedID(t *testing.T) {
p := &TestPlan{}
provURN := p.NewProviderURN("pkgA", "default", "")
resURN := p.NewURN("pkgA:m:typA", "resA", "")
importID := resource.ID("myID")
actualID := resource.ID("myNewID")
loaders := []*deploytest.ProviderLoader{
deploytest.NewProviderLoader("pkgA", semver.MustParse("1.0.0"), func() (plugin.Provider, error) {
return &deploytest.Provider{
ReadF: func(
urn resource.URN, id resource.ID, inputs, state resource.PropertyMap,
) (plugin.ReadResult, resource.Status, error) {
return plugin.ReadResult{
ID: actualID,
Outputs: resource.PropertyMap{},
Inputs: resource.PropertyMap{},
}, resource.StatusOK, nil
},
}, nil
}),
}
program := deploytest.NewLanguageRuntime(func(_ plugin.RunInfo, monitor *deploytest.ResourceMonitor) error {
_, id, _, err := monitor.RegisterResource("pkgA:m:typA", "resA", false, deploytest.ResourceOptions{
ImportID: importID,
})
assert.NoError(t, err)
assert.Equal(t, actualID, id)
return nil
})
p.Options.Host = deploytest.NewPluginHost(nil, nil, program, loaders...)
p.Steps = []TestStep{{Op: Refresh, SkipPreview: true}}
snap := p.Run(t, nil)
for _, resource := range snap.Resources {
switch urn := resource.URN; urn {
case provURN:
// break
case resURN:
assert.Equal(t, actualID, resource.ID)
default:
t.Fatalf("unexpected resource %v", urn)
}
}
}
const importSchema = `{
"version": "0.0.1",
"name": "pkgA",
"resources": {
"pkgA:m:typA": {
"inputProperties": {
"foo": {
"type": "string"
}
},
"properties": {
"foo": {
"type": "string"
}
}
}
}
}`
func TestImportPlan(t *testing.T) {
loaders := []*deploytest.ProviderLoader{
deploytest.NewProviderLoader("pkgA", semver.MustParse("1.0.0"), func() (plugin.Provider, error) {
return &deploytest.Provider{
GetSchemaF: func(version int) ([]byte, error) {
return []byte(importSchema), nil
},
DiffF: func(urn resource.URN, id resource.ID,
olds, news resource.PropertyMap, ignoreChanges []string) (plugin.DiffResult, error) {
if olds["foo"].DeepEquals(news["foo"]) {
return plugin.DiffResult{Changes: plugin.DiffNone}, nil
}
return plugin.DiffResult{
Changes: plugin.DiffSome,
DetailedDiff: map[string]plugin.PropertyDiff{
"foo": {Kind: plugin.DiffUpdate},
},
}, nil
},
CreateF: func(urn resource.URN, news resource.PropertyMap, timeout float64,
preview bool) (resource.ID, resource.PropertyMap, resource.Status, error) {
return "created-id", news, resource.StatusOK, nil
},
ReadF: func(urn resource.URN, id resource.ID,
inputs, state resource.PropertyMap) (plugin.ReadResult, resource.Status, error) {
return plugin.ReadResult{
Inputs: resource.PropertyMap{
"foo": resource.NewStringProperty("bar"),
},
Outputs: resource.PropertyMap{
"foo": resource.NewStringProperty("bar"),
},
}, resource.StatusOK, nil
},
}, nil
}),
}
program := deploytest.NewLanguageRuntime(func(_ plugin.RunInfo, monitor *deploytest.ResourceMonitor) error {
_, _, _, err := monitor.RegisterResource("pkgA:m:typA", "resA", true, deploytest.ResourceOptions{})
assert.NoError(t, err)
return nil
})
host := deploytest.NewPluginHost(nil, nil, program, loaders...)
p := &TestPlan{
Options: UpdateOptions{Host: host},
}
// Run the initial update.
project := p.GetProject()
snap, res := TestOp(Update).Run(project, p.GetTarget(nil), p.Options, false, p.BackendClient, nil)
assert.Nil(t, res)
// Run an import.
snap, res = ImportOp([]deploy.Import{{
Type: "pkgA:m:typA",
Name: "resB",
ID: "imported-id",
}}).Run(project, p.GetTarget(snap), p.Options, false, p.BackendClient, nil)
assert.Nil(t, res)
assert.Len(t, snap.Resources, 4)
}
func TestImportIgnoreChanges(t *testing.T) {
loaders := []*deploytest.ProviderLoader{
deploytest.NewProviderLoader("pkgA", semver.MustParse("1.0.0"), func() (plugin.Provider, error) {
return &deploytest.Provider{
DiffF: func(urn resource.URN, id resource.ID,
olds, news resource.PropertyMap, ignoreChanges []string) (plugin.DiffResult, error) {
if olds["foo"].DeepEquals(news["foo"]) {
return plugin.DiffResult{Changes: plugin.DiffNone}, nil
}
return plugin.DiffResult{
Changes: plugin.DiffSome,
DetailedDiff: map[string]plugin.PropertyDiff{
"foo": {Kind: plugin.DiffUpdate},
},
}, nil
},
CreateF: func(urn resource.URN, news resource.PropertyMap, timeout float64,
preview bool) (resource.ID, resource.PropertyMap, resource.Status, error) {
return "created-id", news, resource.StatusOK, nil
},
ReadF: func(urn resource.URN, id resource.ID,
inputs, state resource.PropertyMap) (plugin.ReadResult, resource.Status, error) {
return plugin.ReadResult{
Inputs: resource.PropertyMap{
"foo": resource.NewStringProperty("bar"),
},
Outputs: resource.PropertyMap{
"foo": resource.NewStringProperty("bar"),
},
}, resource.StatusOK, nil
},
}, nil
}),
}
program := deploytest.NewLanguageRuntime(func(_ plugin.RunInfo, monitor *deploytest.ResourceMonitor) error {
_, _, _, err := monitor.RegisterResource("pkgA:m:typA", "resA", true, deploytest.ResourceOptions{
Inputs: resource.PropertyMap{"foo": resource.NewStringProperty("foo")},
ImportID: "import-id",
IgnoreChanges: []string{"foo"},
})
assert.NoError(t, err)
return nil
})
host := deploytest.NewPluginHost(nil, nil, program, loaders...)
p := &TestPlan{
Options: UpdateOptions{Host: host},
}
project := p.GetProject()
snap, res := TestOp(Update).Run(project, p.GetTarget(nil), p.Options, false, p.BackendClient, nil)
assert.Nil(t, res)
assert.Len(t, snap.Resources, 2)
assert.Equal(t, resource.NewStringProperty("bar"), snap.Resources[1].Outputs["foo"])
} | return res
})
assert.Nil(t, res) |
error.js | const k = require("kleur");
/**
* @param {string} msg Error message
* @param {Error} [err] Error instance
* @param {boolean} [fatal=false] Exits with code 1 if set to true
*/
function error(msg, err, fatal = false)
{
console.error("\n");
console.error(k.red(msg));
console.error(err);
fatal && process.exit(1);
} |
module.exports = error; |
|
shell.py | # Copyright 2012 OpenStack LLC.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import copy
import sys
from glanceclient.common import utils
import glanceclient.v1.images
def do_image_list(gc, args):
"""List images."""
images = gc.images.list()
columns = ['ID', 'Name', 'Disk Format', 'Container Format',
'Size', 'Status']
utils.print_list(images, columns)
def _image_show(image):
# Flatten image properties dict for display
info = copy.deepcopy(image._info)
for (k, v) in info.pop('properties').iteritems():
info['Property \'%s\'' % k] = v
utils.print_dict(info)
@utils.arg('id', metavar='<IMAGE_ID>', help='ID of image to describe.')
def do_image_show(gc, args):
"""Describe a specific image."""
image = gc.images.get(args.id)
_image_show(image)
@utils.arg('--id', metavar='<IMAGE_ID>',
help='ID of image to reserve.')
@utils.arg('--name', metavar='<NAME>',
help='Name of image.')
@utils.arg('--disk-format', metavar='<CONTAINER_FORMAT>',
help='Disk format of image.')
@utils.arg('--container-format', metavar='<DISK_FORMAT>',
help='Container format of image.')
@utils.arg('--owner', metavar='<TENANT_ID>',
help='Tenant who should own image.')
@utils.arg('--size', metavar='<SIZE>',
help=('Size of image data (in bytes). Only used with'
' \'--location\' and \'--copy_from\'.'))
@utils.arg('--min-disk', metavar='<DISK_GB>',
help='Minimum size of disk needed to boot image (in gigabytes).')
@utils.arg('--min-ram', metavar='<DISK_RAM>',
help='Minimum amount of ram needed to boot image (in megabytes).')
@utils.arg('--location', metavar='<IMAGE_URL>',
help=('URL where the data for this image already resides.'
' For example, if the image data is stored in the filesystem'
' local to the glance server at \'/usr/share/image.tar.gz\','
' you would specify \'file:///usr/share/image.tar.gz\'.'))
@utils.arg('--checksum', metavar='<CHECKSUM>',
help='Hash of image data used Glance can use for verification.')
@utils.arg('--copy-from', metavar='<IMAGE_URL>',
help=('Similar to \'--location\' in usage, but this indicates that'
' the Glance server should immediately copy the data and'
' store it in its configured image store.'))
@utils.arg('--public', action='store_true', default=False,
help='Make image accessible to the public.')
@utils.arg('--protected', action='store_true', default=False,
help='Prevent image from being deleted.')
@utils.arg('--property', metavar="<key=value>", action='append', default=[],
help=("Arbitrary property to associate with image. "
"May be used multiple times."))
def do_image_create(gc, args):
# Filter out None values
fields = dict(filter(lambda x: x[1] is not None, vars(args).items()))
fields['is_public'] = fields.pop('public')
raw_properties = fields.pop('property')
fields['properties'] = {}
for datum in raw_properties:
key, value = datum.split('=', 1)
fields['properties'][key] = value
# Filter out values we can't use
CREATE_PARAMS = glanceclient.v1.images.CREATE_PARAMS
fields = dict(filter(lambda x: x[0] in CREATE_PARAMS, fields.items()))
if 'location' not in fields and 'copy_from' not in fields:
fields['data'] = sys.stdin
image = gc.images.create(**fields)
_image_show(image)
@utils.arg('id', metavar='<IMAGE_ID>', help='ID of image to modify.')
@utils.arg('--name', metavar='<NAME>',
help='Name of image.')
@utils.arg('--disk-format', metavar='<CONTAINER_FORMAT>',
help='Disk format of image.')
@utils.arg('--container-format', metavar='<DISK_FORMAT>',
help='Container format of image.')
@utils.arg('--owner', metavar='<TENANT_ID>',
help='Tenant who should own image.')
@utils.arg('--size', metavar='<SIZE>',
help='Size of image data (in bytes).')
@utils.arg('--min-disk', metavar='<DISK_GB>',
help='Minimum size of disk needed to boot image (in gigabytes).')
@utils.arg('--min-ram', metavar='<DISK_RAM>',
help='Minimum amount of ram needed to boot image (in megabytes).')
@utils.arg('--location', metavar='<IMAGE_URL>',
help=('URL where the data for this image already resides.'
' For example, if the image data is stored in the filesystem'
' local to the glance server at \'/usr/share/image.tar.gz\','
' you would specify \'file:///usr/share/image.tar.gz\'.'))
@utils.arg('--checksum', metavar='<CHECKSUM>',
help='Hash of image data used Glance can use for verification.')
@utils.arg('--copy-from', metavar='<IMAGE_URL>',
help=('Similar to \'--location\' in usage, but this indicates that'
' the Glance server should immediately copy the data and'
' store it in its configured image store.'))
@utils.arg('--is-public', type=bool,
help='Make image accessible to the public.')
@utils.arg('--is-protected', type=bool,
help='Prevent image from being deleted.')
@utils.arg('--property', metavar="<key=value>", action='append', default=[],
help=("Arbitrary property to associate with image. "
"May be used multiple times."))
def do_image_update(gc, args):
# Filter out None values
fields = dict(filter(lambda x: x[1] is not None, vars(args).items()))
image_id = fields.pop('id')
raw_properties = fields.pop('property')
fields['properties'] = {}
for datum in raw_properties:
key, value = datum.split('=', 1)
fields['properties'][key] = value
# Filter out values we can't use
UPDATE_PARAMS = glanceclient.v1.images.UPDATE_PARAMS
fields = dict(filter(lambda x: x[0] in UPDATE_PARAMS, fields.items()))
if 'location' not in fields and 'copy_from' not in fields:
fields['data'] = sys.stdin
image = gc.images.update(image_id, **fields)
_image_show(image)
@utils.arg('id', metavar='<IMAGE_ID>', help='ID of image to delete.')
def do_image_delete(gc, args):
"""Delete a specific image."""
gc.images.delete(args.id)
@utils.arg('--image-id', metavar='<IMAGE_ID>',
help='Filter results by an image ID.')
@utils.arg('--tenant-id', metavar='<TENANT_ID>',
help='Filter results by a tenant ID.')
def do_member_list(gc, args):
|
@utils.arg('image_id', metavar='<IMAGE_ID>',
help='Image to add member to.')
@utils.arg('tenant_id', metavar='<TENANT_ID>',
help='Tenant to add as member')
@utils.arg('--can-share', action='store_true', default=False,
help='Allow the specified tenant to share this image.')
def do_member_create(gc, args):
gc.image_members.create(args.image_id, args.tenant_id, args.can_share)
@utils.arg('image_id', metavar='<IMAGE_ID>',
help='Image to add member to.')
@utils.arg('tenant_id', metavar='<TENANT_ID>',
help='Tenant to add as member')
def do_member_delete(gc, args):
gc.image_members.delete(args.image_id, args.tenant_id)
| if args.image_id and args.tenant_id:
print 'Unable to filter members by both --image-id and --tenant-id.'
sys.exit(1)
elif args.image_id:
kwargs = {'image': args.image_id}
elif args.tenant_id:
kwargs = {'member': args.tenant_id}
else:
print 'Unable to list all members. Specify --image-id or --tenant-id'
sys.exit(1)
members = gc.image_members.list(**kwargs)
columns = ['Image ID', 'Member ID', 'Can Share']
utils.print_list(members, columns) |
subclone.py | import numpy as np
class Subclone:
"""
Initializes a Subclone Population.
:attr label: Either A, B or S
:attr fitness: Current fitness
:attr prop: Current Proportion
"""
def __init__(self, lbl, c, alpha, prop=0.333, parent=None, birthtime=None, color=None):
|
def __str__(self):
return self.label
def update_fitness(self, treatment):
"""
Returns the fitness with the given environment for subclone [type]
@ param treatment: 1d np.ndarray of shape (num_treatments) for intensity of treatment
"""
self.fitness = max(0, min(1, 1 - self.c - np.dot(self.alpha, treatment)))
return self.fitness
def log(self):
print("Node: ", self.label)
print("Birthtime: ", self.bt)
print(f'\t \t Alpha: {self.alpha}')
print(f'\t \t Prop: {self.prop}')
print(f'\t \t Resistant: {self.c}')
print(f'\t \t Fitness: {self.fitness}')
| self.label = lbl
self.fitness = 0.0
self.prop = prop
self.c = c
self.parent = parent
self.alpha = alpha
self.bt = birthtime
self.color = None |
intr.rs | #[doc = "Register `INTR` reader"]
pub struct R(crate::R<INTR_SPEC>);
impl core::ops::Deref for R {
type Target = crate::R<INTR_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl From<crate::R<INTR_SPEC>> for R {
#[inline(always)]
fn from(reader: crate::R<INTR_SPEC>) -> Self {
R(reader)
}
}
#[doc = "Field `SM3` reader - "]
pub struct SM3_R(crate::FieldReader<bool, bool>);
impl SM3_R {
pub(crate) fn new(bits: bool) -> Self {
SM3_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for SM3_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `SM2` reader - "]
pub struct SM2_R(crate::FieldReader<bool, bool>);
impl SM2_R {
pub(crate) fn new(bits: bool) -> Self {
SM2_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for SM2_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `SM1` reader - "]
pub struct SM1_R(crate::FieldReader<bool, bool>);
impl SM1_R {
pub(crate) fn new(bits: bool) -> Self {
SM1_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for SM1_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `SM0` reader - "]
pub struct SM0_R(crate::FieldReader<bool, bool>);
impl SM0_R {
pub(crate) fn new(bits: bool) -> Self {
SM0_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for SM0_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `SM3_TXNFULL` reader - "]
pub struct SM3_TXNFULL_R(crate::FieldReader<bool, bool>);
impl SM3_TXNFULL_R {
pub(crate) fn new(bits: bool) -> Self {
SM3_TXNFULL_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for SM3_TXNFULL_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `SM2_TXNFULL` reader - "]
pub struct SM2_TXNFULL_R(crate::FieldReader<bool, bool>);
impl SM2_TXNFULL_R {
pub(crate) fn new(bits: bool) -> Self {
SM2_TXNFULL_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for SM2_TXNFULL_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `SM1_TXNFULL` reader - "]
pub struct SM1_TXNFULL_R(crate::FieldReader<bool, bool>);
impl SM1_TXNFULL_R {
pub(crate) fn new(bits: bool) -> Self {
SM1_TXNFULL_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for SM1_TXNFULL_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `SM0_TXNFULL` reader - "]
pub struct SM0_TXNFULL_R(crate::FieldReader<bool, bool>);
impl SM0_TXNFULL_R {
pub(crate) fn new(bits: bool) -> Self {
SM0_TXNFULL_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for SM0_TXNFULL_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `SM3_RXNEMPTY` reader - "]
pub struct SM3_RXNEMPTY_R(crate::FieldReader<bool, bool>);
impl SM3_RXNEMPTY_R {
pub(crate) fn new(bits: bool) -> Self {
SM3_RXNEMPTY_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for SM3_RXNEMPTY_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `SM2_RXNEMPTY` reader - "]
pub struct SM2_RXNEMPTY_R(crate::FieldReader<bool, bool>);
impl SM2_RXNEMPTY_R {
pub(crate) fn new(bits: bool) -> Self {
SM2_RXNEMPTY_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for SM2_RXNEMPTY_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `SM1_RXNEMPTY` reader - "]
pub struct SM1_RXNEMPTY_R(crate::FieldReader<bool, bool>);
impl SM1_RXNEMPTY_R {
pub(crate) fn new(bits: bool) -> Self {
SM1_RXNEMPTY_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for SM1_RXNEMPTY_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `SM0_RXNEMPTY` reader - "]
pub struct SM0_RXNEMPTY_R(crate::FieldReader<bool, bool>);
impl SM0_RXNEMPTY_R {
pub(crate) fn new(bits: bool) -> Self {
SM0_RXNEMPTY_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for SM0_RXNEMPTY_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl R {
#[doc = "Bit 11"]
#[inline(always)]
pub fn sm3(&self) -> SM3_R {
SM3_R::new(((self.bits >> 11) & 0x01) != 0)
}
#[doc = "Bit 10"]
#[inline(always)]
pub fn sm2(&self) -> SM2_R {
SM2_R::new(((self.bits >> 10) & 0x01) != 0)
}
#[doc = "Bit 9"]
#[inline(always)]
pub fn sm1(&self) -> SM1_R {
SM1_R::new(((self.bits >> 9) & 0x01) != 0)
}
#[doc = "Bit 8"]
#[inline(always)]
pub fn sm0(&self) -> SM0_R {
SM0_R::new(((self.bits >> 8) & 0x01) != 0)
}
#[doc = "Bit 7"]
#[inline(always)]
pub fn sm3_txnfull(&self) -> SM3_TXNFULL_R {
SM3_TXNFULL_R::new(((self.bits >> 7) & 0x01) != 0)
}
#[doc = "Bit 6"]
#[inline(always)]
pub fn sm2_txnfull(&self) -> SM2_TXNFULL_R {
SM2_TXNFULL_R::new(((self.bits >> 6) & 0x01) != 0)
}
#[doc = "Bit 5"]
#[inline(always)]
pub fn sm1_txnfull(&self) -> SM1_TXNFULL_R {
SM1_TXNFULL_R::new(((self.bits >> 5) & 0x01) != 0)
}
#[doc = "Bit 4"]
#[inline(always)]
pub fn sm0_txnfull(&self) -> SM0_TXNFULL_R {
SM0_TXNFULL_R::new(((self.bits >> 4) & 0x01) != 0)
}
#[doc = "Bit 3"]
#[inline(always)]
pub fn sm3_rxnempty(&self) -> SM3_RXNEMPTY_R {
SM3_RXNEMPTY_R::new(((self.bits >> 3) & 0x01) != 0)
}
#[doc = "Bit 2"]
#[inline(always)]
pub fn sm2_rxnempty(&self) -> SM2_RXNEMPTY_R {
SM2_RXNEMPTY_R::new(((self.bits >> 2) & 0x01) != 0)
}
#[doc = "Bit 1"]
#[inline(always)]
pub fn sm1_rxnempty(&self) -> SM1_RXNEMPTY_R {
SM1_RXNEMPTY_R::new(((self.bits >> 1) & 0x01) != 0)
}
#[doc = "Bit 0"]
#[inline(always)]
pub fn sm0_rxnempty(&self) -> SM0_RXNEMPTY_R {
SM0_RXNEMPTY_R::new((self.bits & 0x01) != 0)
}
}
#[doc = "Raw Interrupts
This register you can [`read`](crate::generic::Reg::read). See [API](https://docs.rs/svd2rust/#read--modify--write-api).
For information about available fields see [intr](index.html) module"]
pub struct | ;
impl crate::RegisterSpec for INTR_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [intr::R](R) reader structure"]
impl crate::Readable for INTR_SPEC {
type Reader = R;
}
#[doc = "`reset()` method sets INTR to value 0"]
impl crate::Resettable for INTR_SPEC {
#[inline(always)]
fn reset_value() -> Self::Ux {
0
}
}
| INTR_SPEC |
main.rs | use rand::Rng;
use std::cmp::Ordering;
use std::io;
use std::io::Write;
use term_painter::Color::*;
use term_painter::ToStyle;
fn read_guess() -> u32 {
let mut str = String::new();
loop {
print!("Enter your guess: ");
io::stdout().flush().unwrap();
io::stdin().read_line(&mut str).unwrap();
let num: u32 = match str.trim().parse() {
Ok(n) => n,
Err(_) => {
continue;
}
};
return num;
}
}
fn play_game() {
let secret_num = rand::thread_rng().gen_range(1, 101);
let mut steps = 0;
loop {
let guess = read_guess();
steps = steps + 1;
match guess.cmp(&secret_num) {
Ordering::Equal => {
println!("{}", Green.paint("That's it!"));
println!("It took you {} guess(es) to win.", steps);
return;
}
Ordering::Greater => println!("{}", Red.paint("Too big")), | }
}
fn ask_for_retry() -> bool {
print!("Do you want to play again (Y/N)? ");
io::stdout().flush().unwrap();
let mut str = String::new();
io::stdin().read_line(&mut str).unwrap();
str = str.trim().to_uppercase();
return match str.as_ref() {
"Y" => true,
"YES" => true,
_ => false,
};
}
fn main() {
println!("{}", White.bg(White).bold().paint(" "));
println!(
"{}{}{}",
White.bg(White).bold().paint(" "),
Cyan.bg(White).bold().paint(" GUESSING GAME "),
White.bg(White).bold().paint(" ")
);
println!("{}", White.bg(White).bold().paint(" "));
println!();
loop {
play_game();
println!();
if !ask_for_retry() {
println!("Good bye");
break;
}
println!("Let's try again!");
}
} | Ordering::Less => println!("{}", Red.paint("Too small")),
} |
parse.rs | //! Parsing interface for parsing a token stream into a syntax tree node.
//!
//! Parsing in Syn is built on parser functions that take in a [`ParseStream`]
//! and produce a [`Result<T>`] where `T` is some syntax tree node. Underlying
//! these parser functions is a lower level mechanism built around the
//! [`Cursor`] type. `Cursor` is a cheaply copyable cursor over a range of
//! tokens in a token stream.
//!
//! [`ParseStream`]: type.ParseStream.html
//! [`Result<T>`]: type.Result.html
//! [`Cursor`]: ../buffer/index.html
//!
//! # Example
//!
//! Here is a snippet of parsing code to get a feel for the style of the
//! library. We define data structures for a subset of Rust syntax including
//! enums (not shown) and structs, then provide implementations of the [`Parse`]
//! trait to parse these syntax tree data structures from a token stream.
//!
//! Once `Parse` impls have been defined, they can be called conveniently from a
//! procedural macro through [`parse_macro_input!`] as shown at the bottom of
//! the snippet. If the caller provides syntactically invalid input to the
//! procedural macro, they will receive a helpful compiler error message
//! pointing out the exact token that triggered the failure to parse.
//!
//! [`parse_macro_input!`]: ../macro.parse_macro_input.html
//!
//! ```
//! # extern crate proc_macro;
//! #
//! use proc_macro::TokenStream;
//! use syn::{braced, parse_macro_input, token, Field, Ident, Result, Token};
//! use syn::parse::{Parse, ParseStream};
//! use syn::punctuated::Punctuated;
//!
//! enum Item {
//! Struct(ItemStruct),
//! Enum(ItemEnum),
//! }
//!
//! struct ItemStruct {
//! struct_token: Token![struct],
//! ident: Ident,
//! brace_token: token::Brace,
//! fields: Punctuated<Field, Token![,]>,
//! }
//! #
//! # enum ItemEnum {}
//!
//! impl Parse for Item {
//! fn parse(input: ParseStream) -> Result<Self> {
//! let lookahead = input.lookahead1();
//! if lookahead.peek(Token![struct]) {
//! input.parse().map(Item::Struct)
//! } else if lookahead.peek(Token![enum]) {
//! input.parse().map(Item::Enum)
//! } else {
//! Err(lookahead.error())
//! }
//! }
//! }
//!
//! impl Parse for ItemStruct {
//! fn parse(input: ParseStream) -> Result<Self> {
//! let content;
//! Ok(ItemStruct {
//! struct_token: input.parse()?,
//! ident: input.parse()?,
//! brace_token: braced!(content in input),
//! fields: content.parse_terminated(Field::parse_named)?,
//! })
//! }
//! }
//! #
//! # impl Parse for ItemEnum {
//! # fn parse(input: ParseStream) -> Result<Self> {
//! # unimplemented!()
//! # }
//! # }
//!
//! # const IGNORE: &str = stringify! {
//! #[proc_macro]
//! # };
//! pub fn my_macro(tokens: TokenStream) -> TokenStream {
//! let input = parse_macro_input!(tokens as Item);
//!
//! /* ... */
//! # "".parse().unwrap()
//! }
//! ```
//!
//! # The `syn::parse*` functions
//!
//! The [`syn::parse`], [`syn::parse2`], and [`syn::parse_str`] functions serve
//! as an entry point for parsing syntax tree nodes that can be parsed in an
//! obvious default way. These functions can return any syntax tree node that
//! implements the [`Parse`] trait, which includes most types in Syn.
//!
//! [`syn::parse`]: ../fn.parse.html
//! [`syn::parse2`]: ../fn.parse2.html
//! [`syn::parse_str`]: ../fn.parse_str.html
//! [`Parse`]: trait.Parse.html
//!
//! ```
//! use syn::Type;
//!
//! # fn run_parser() -> syn::Result<()> {
//! let t: Type = syn::parse_str("std::collections::HashMap<String, Value>")?;
//! # Ok(())
//! # }
//! #
//! # run_parser().unwrap();
//! ```
//!
//! The [`parse_quote!`] macro also uses this approach.
//!
//! [`parse_quote!`]: ../macro.parse_quote.html
//!
//! # The `Parser` trait
//!
//! Some types can be parsed in several ways depending on context. For example
//! an [`Attribute`] can be either "outer" like `#[...]` or "inner" like
//! `#![...]` and parsing the wrong one would be a bug. Similarly [`Punctuated`]
//! may or may not allow trailing punctuation, and parsing it the wrong way
//! would either reject valid input or accept invalid input.
//!
//! [`Attribute`]: ../struct.Attribute.html
//! [`Punctuated`]: ../punctuated/index.html
//!
//! The `Parse` trait is not implemented in these cases because there is no good
//! behavior to consider the default.
//!
//! ```compile_fail
//! # extern crate proc_macro;
//! #
//! # use syn::punctuated::Punctuated;
//! # use syn::{PathSegment, Result, Token};
//! #
//! # fn f(tokens: proc_macro::TokenStream) -> Result<()> {
//! #
//! // Can't parse `Punctuated` without knowing whether trailing punctuation
//! // should be allowed in this context.
//! let path: Punctuated<PathSegment, Token![::]> = syn::parse(tokens)?;
//! #
//! # Ok(())
//! # }
//! ```
//!
//! In these cases the types provide a choice of parser functions rather than a
//! single `Parse` implementation, and those parser functions can be invoked
//! through the [`Parser`] trait.
//!
//! [`Parser`]: trait.Parser.html
//!
//! ```
//! # extern crate proc_macro;
//! #
//! use proc_macro::TokenStream;
//! use syn::parse::Parser;
//! use syn::punctuated::Punctuated;
//! use syn::{Attribute, Expr, PathSegment, Result, Token};
//!
//! fn call_some_parser_methods(input: TokenStream) -> Result<()> {
//! // Parse a nonempty sequence of path segments separated by `::` punctuation
//! // with no trailing punctuation.
//! let tokens = input.clone();
//! let parser = Punctuated::<PathSegment, Token![::]>::parse_separated_nonempty;
//! let _path = parser.parse(tokens)?;
//!
//! // Parse a possibly empty sequence of expressions terminated by commas with
//! // an optional trailing punctuation.
//! let tokens = input.clone();
//! let parser = Punctuated::<Expr, Token![,]>::parse_terminated;
//! let _args = parser.parse(tokens)?;
//!
//! // Parse zero or more outer attributes but not inner attributes.
//! let tokens = input.clone();
//! let parser = Attribute::parse_outer;
//! let _attrs = parser.parse(tokens)?;
//!
//! Ok(())
//! }
//! ```
//!
//! ---
//!
//! *This module is available only if Syn is built with the `"parsing"` feature.*
#[path = "discouraged.rs"]
pub mod discouraged;
use crate::buffer::{Cursor, TokenBuffer};
use crate::error;
use crate::lookahead;
#[cfg(all(
not(all(target_arch = "wasm32", any(target_os = "unknown", target_os = "wasi"))),
feature = "proc-macro"
))]
use crate::proc_macro;
use crate::punctuated::Punctuated;
use crate::token::Token;
use proc_macro2::{self, Delimiter, Group, Literal, Punct, Span, TokenStream, TokenTree};
use std::cell::Cell;
use std::fmt::{self, Debug, Display};
use std::marker::PhantomData;
use std::mem;
use std::ops::Deref;
use std::rc::Rc;
use std::str::FromStr;
pub use crate::error::{Error, Result};
pub use crate::lookahead::{Lookahead1, Peek};
/// Parsing interface implemented by all types that can be parsed in a default
/// way from a token stream.
///
/// Refer to the [module documentation] for details about implementing and using
/// the `Parse` trait.
///
/// [module documentation]: self
pub trait Parse: Sized {
fn parse(input: ParseStream) -> Result<Self>;
}
/// Input to a Syn parser function.
///
/// See the methods of this type under the documentation of [`ParseBuffer`]. For
/// an overview of parsing in Syn, refer to the [module documentation].
///
/// [module documentation]: self
pub type ParseStream<'a> = &'a ParseBuffer<'a>;
/// Cursor position within a buffered token stream.
///
/// This type is more commonly used through the type alias [`ParseStream`] which
/// is an alias for `&ParseBuffer`.
///
/// `ParseStream` is the input type for all parser functions in Syn. They have
/// the signature `fn(ParseStream) -> Result<T>`.
///
/// ## Calling a parser function
///
/// There is no public way to construct a `ParseBuffer`. Instead, if you are
/// looking to invoke a parser function that requires `ParseStream` as input,
/// you will need to go through one of the public parsing entry points.
///
/// - The [`parse_macro_input!`] macro if parsing input of a procedural macro;
/// - One of [the `syn::parse*` functions][syn-parse]; or
/// - A method of the [`Parser`] trait.
///
/// [syn-parse]: index.html#the-synparse-functions
pub struct ParseBuffer<'a> {
scope: Span,
// Instead of Cell<Cursor<'a>> so that ParseBuffer<'a> is covariant in 'a.
// The rest of the code in this module needs to be careful that only a
// cursor derived from this `cell` is ever assigned to this `cell`.
//
// Cell<Cursor<'a>> cannot be covariant in 'a because then we could take a
// ParseBuffer<'a>, upcast to ParseBuffer<'short> for some lifetime shorter
// than 'a, and then assign a Cursor<'short> into the Cell.
//
// By extension, it would not be safe to expose an API that accepts a
// Cursor<'a> and trusts that it lives as long as the cursor currently in
// the cell.
cell: Cell<Cursor<'static>>,
marker: PhantomData<Cursor<'a>>,
unexpected: Cell<Option<Rc<Cell<Unexpected>>>>,
}
impl<'a> Drop for ParseBuffer<'a> {
fn drop(&mut self) {
if let Some(unexpected_span) = span_of_unexpected_ignoring_nones(self.cursor()) {
let (inner, old_span) = inner_unexpected(self);
if old_span.is_none() {
inner.set(Unexpected::Some(unexpected_span));
}
}
}
}
impl<'a> Display for ParseBuffer<'a> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
Display::fmt(&self.cursor().token_stream(), f)
}
}
impl<'a> Debug for ParseBuffer<'a> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
Debug::fmt(&self.cursor().token_stream(), f)
}
}
/// Cursor state associated with speculative parsing.
///
/// This type is the input of the closure provided to [`ParseStream::step`].
///
/// [`ParseStream::step`]: ParseBuffer::step
///
/// # Example
///
/// ```
/// use proc_macro2::TokenTree;
/// use syn::Result;
/// use syn::parse::ParseStream;
///
/// // This function advances the stream past the next occurrence of `@`. If
/// // no `@` is present in the stream, the stream position is unchanged and
/// // an error is returned.
/// fn skip_past_next_at(input: ParseStream) -> Result<()> {
/// input.step(|cursor| {
/// let mut rest = *cursor;
/// while let Some((tt, next)) = rest.token_tree() {
/// match &tt {
/// TokenTree::Punct(punct) if punct.as_char() == '@' => {
/// return Ok(((), next));
/// }
/// _ => rest = next,
/// }
/// }
/// Err(cursor.error("no `@` was found after this point"))
/// })
/// }
/// #
/// # fn remainder_after_skipping_past_next_at(
/// # input: ParseStream,
/// # ) -> Result<proc_macro2::TokenStream> {
/// # skip_past_next_at(input)?;
/// # input.parse()
/// # }
/// #
/// # use syn::parse::Parser;
/// # let remainder = remainder_after_skipping_past_next_at
/// # .parse_str("a @ b c")
/// # .unwrap();
/// # assert_eq!(remainder.to_string(), "b c");
/// ```
pub struct StepCursor<'c, 'a> {
scope: Span,
// This field is covariant in 'c.
cursor: Cursor<'c>,
// This field is contravariant in 'c. Together these make StepCursor
// invariant in 'c. Also covariant in 'a. The user cannot cast 'c to a
// different lifetime but can upcast into a StepCursor with a shorter
// lifetime 'a.
//
// As long as we only ever construct a StepCursor for which 'c outlives 'a,
// this means if ever a StepCursor<'c, 'a> exists we are guaranteed that 'c
// outlives 'a.
marker: PhantomData<fn(Cursor<'c>) -> Cursor<'a>>,
}
impl<'c, 'a> Deref for StepCursor<'c, 'a> {
type Target = Cursor<'c>;
fn deref(&self) -> &Self::Target {
&self.cursor
}
}
impl<'c, 'a> Copy for StepCursor<'c, 'a> {}
impl<'c, 'a> Clone for StepCursor<'c, 'a> {
fn clone(&self) -> Self {
*self
}
}
impl<'c, 'a> StepCursor<'c, 'a> {
/// Triggers an error at the current position of the parse stream.
///
/// The `ParseStream::step` invocation will return this same error without
/// advancing the stream state.
pub fn error<T: Display>(self, message: T) -> Error {
error::new_at(self.scope, self.cursor, message)
}
}
pub(crate) fn advance_step_cursor<'c, 'a>(proof: StepCursor<'c, 'a>, to: Cursor<'c>) -> Cursor<'a> {
// Refer to the comments within the StepCursor definition. We use the
// fact that a StepCursor<'c, 'a> exists as proof that 'c outlives 'a.
// Cursor is covariant in its lifetime parameter so we can cast a
// Cursor<'c> to one with the shorter lifetime Cursor<'a>.
let _ = proof;
unsafe { mem::transmute::<Cursor<'c>, Cursor<'a>>(to) }
}
pub(crate) fn new_parse_buffer(
scope: Span,
cursor: Cursor,
unexpected: Rc<Cell<Unexpected>>,
) -> ParseBuffer {
ParseBuffer {
scope,
// See comment on `cell` in the struct definition.
cell: Cell::new(unsafe { mem::transmute::<Cursor, Cursor<'static>>(cursor) }),
marker: PhantomData,
unexpected: Cell::new(Some(unexpected)),
}
}
pub(crate) enum Unexpected {
None,
Some(Span),
Chain(Rc<Cell<Unexpected>>),
}
impl Default for Unexpected {
fn default() -> Self {
Unexpected::None
}
}
impl Clone for Unexpected {
fn clone(&self) -> Self {
match self {
Unexpected::None => Unexpected::None,
Unexpected::Some(span) => Unexpected::Some(*span),
Unexpected::Chain(next) => Unexpected::Chain(next.clone()),
}
}
}
// We call this on Cell<Unexpected> and Cell<Option<T>> where temporarily
// swapping in a None is cheap.
fn cell_clone<T: Default + Clone>(cell: &Cell<T>) -> T {
let prev = cell.take();
let ret = prev.clone();
cell.set(prev);
ret
}
fn inner_unexpected(buffer: &ParseBuffer) -> (Rc<Cell<Unexpected>>, Option<Span>) {
let mut unexpected = get_unexpected(buffer);
loop {
match cell_clone(&unexpected) {
Unexpected::None => return (unexpected, None),
Unexpected::Some(span) => return (unexpected, Some(span)),
Unexpected::Chain(next) => unexpected = next,
}
}
}
pub(crate) fn get_unexpected(buffer: &ParseBuffer) -> Rc<Cell<Unexpected>> {
cell_clone(&buffer.unexpected).unwrap()
}
fn span_of_unexpected_ignoring_nones(mut cursor: Cursor) -> Option<Span> {
if cursor.eof() {
return None;
}
while let Some((inner, _span, rest)) = cursor.group(Delimiter::None) {
if let Some(unexpected) = span_of_unexpected_ignoring_nones(inner) {
return Some(unexpected);
}
cursor = rest;
}
if cursor.eof() {
None
} else {
Some(cursor.span())
}
}
impl<'a> ParseBuffer<'a> {
/// Parses a syntax tree node of type `T`, advancing the position of our
/// parse stream past it.
pub fn parse<T: Parse>(&self) -> Result<T> {
T::parse(self)
}
/// Calls the given parser function to parse a syntax tree node of type `T`
/// from this stream.
///
/// # Example
///
/// The parser below invokes [`Attribute::parse_outer`] to parse a vector of
/// zero or more outer attributes.
///
/// [`Attribute::parse_outer`]: crate::Attribute::parse_outer
///
/// ```
/// use syn::{Attribute, Ident, Result, Token};
/// use syn::parse::{Parse, ParseStream};
///
/// // Parses a unit struct with attributes.
/// //
/// // #[path = "s.tmpl"]
/// // struct S;
/// struct UnitStruct {
/// attrs: Vec<Attribute>,
/// struct_token: Token![struct],
/// name: Ident,
/// semi_token: Token![;],
/// }
///
/// impl Parse for UnitStruct {
/// fn parse(input: ParseStream) -> Result<Self> {
/// Ok(UnitStruct {
/// attrs: input.call(Attribute::parse_outer)?,
/// struct_token: input.parse()?,
/// name: input.parse()?,
/// semi_token: input.parse()?,
/// })
/// }
/// }
/// ```
pub fn call<T>(&self, function: fn(ParseStream) -> Result<T>) -> Result<T> {
function(self)
}
/// Looks at the next token in the parse stream to determine whether it
/// matches the requested type of token.
///
/// Does not advance the position of the parse stream.
///
/// # Syntax
///
/// Note that this method does not use turbofish syntax. Pass the peek type
/// inside of parentheses.
///
/// - `input.peek(Token![struct])`
/// - `input.peek(Token![==])`
/// - `input.peek(Ident)` *(does not accept keywords)*
/// - `input.peek(Ident::peek_any)`
/// - `input.peek(Lifetime)`
/// - `input.peek(token::Brace)`
///
/// # Example
///
/// In this example we finish parsing the list of supertraits when the next
/// token in the input is either `where` or an opening curly brace.
///
/// ```
/// use syn::{braced, token, Generics, Ident, Result, Token, TypeParamBound};
/// use syn::parse::{Parse, ParseStream};
/// use syn::punctuated::Punctuated;
///
/// // Parses a trait definition containing no associated items.
/// //
/// // trait Marker<'de, T>: A + B<'de> where Box<T>: Clone {}
/// struct MarkerTrait {
/// trait_token: Token![trait],
/// ident: Ident,
/// generics: Generics,
/// colon_token: Option<Token![:]>,
/// supertraits: Punctuated<TypeParamBound, Token![+]>,
/// brace_token: token::Brace,
/// }
///
/// impl Parse for MarkerTrait {
/// fn parse(input: ParseStream) -> Result<Self> {
/// let trait_token: Token![trait] = input.parse()?;
/// let ident: Ident = input.parse()?;
/// let mut generics: Generics = input.parse()?;
/// let colon_token: Option<Token![:]> = input.parse()?;
///
/// let mut supertraits = Punctuated::new();
/// if colon_token.is_some() {
/// loop {
/// supertraits.push_value(input.parse()?);
/// if input.peek(Token![where]) || input.peek(token::Brace) {
/// break;
/// }
/// supertraits.push_punct(input.parse()?);
/// }
/// }
///
/// generics.where_clause = input.parse()?;
/// let content;
/// let empty_brace_token = braced!(content in input);
///
/// Ok(MarkerTrait {
/// trait_token,
/// ident,
/// generics,
/// colon_token,
/// supertraits,
/// brace_token: empty_brace_token,
/// })
/// }
/// }
/// ```
pub fn peek<T: Peek>(&self, token: T) -> bool {
let _ = token;
T::Token::peek(self.cursor())
}
/// Looks at the second-next token in the parse stream.
///
/// This is commonly useful as a way to implement contextual keywords.
///
/// # Example
///
/// This example needs to use `peek2` because the symbol `union` is not a
/// keyword in Rust. We can't use just `peek` and decide to parse a union if
/// the very next token is `union`, because someone is free to write a `mod
/// union` and a macro invocation that looks like `union::some_macro! { ...
/// }`. In other words `union` is a contextual keyword.
///
/// ```
/// use syn::{Ident, ItemUnion, Macro, Result, Token};
/// use syn::parse::{Parse, ParseStream};
///
/// // Parses either a union or a macro invocation.
/// enum UnionOrMacro {
/// // union MaybeUninit<T> { uninit: (), value: T }
/// Union(ItemUnion),
/// // lazy_static! { ... }
/// Macro(Macro),
/// }
///
/// impl Parse for UnionOrMacro {
/// fn parse(input: ParseStream) -> Result<Self> {
/// if input.peek(Token![union]) && input.peek2(Ident) {
/// input.parse().map(UnionOrMacro::Union)
/// } else {
/// input.parse().map(UnionOrMacro::Macro)
/// }
/// }
/// }
/// ```
pub fn peek2<T: Peek>(&self, token: T) -> bool {
fn peek2(buffer: &ParseBuffer, peek: fn(Cursor) -> bool) -> bool {
if let Some(group) = buffer.cursor().group(Delimiter::None) {
if group.0.skip().map_or(false, peek) {
return true;
}
}
buffer.cursor().skip().map_or(false, peek)
}
let _ = token;
peek2(self, T::Token::peek)
}
/// Looks at the third-next token in the parse stream.
pub fn | <T: Peek>(&self, token: T) -> bool {
fn peek3(buffer: &ParseBuffer, peek: fn(Cursor) -> bool) -> bool {
if let Some(group) = buffer.cursor().group(Delimiter::None) {
if group.0.skip().and_then(Cursor::skip).map_or(false, peek) {
return true;
}
}
buffer
.cursor()
.skip()
.and_then(Cursor::skip)
.map_or(false, peek)
}
let _ = token;
peek3(self, T::Token::peek)
}
/// Parses zero or more occurrences of `T` separated by punctuation of type
/// `P`, with optional trailing punctuation.
///
/// Parsing continues until the end of this parse stream. The entire content
/// of this parse stream must consist of `T` and `P`.
///
/// # Example
///
/// ```
/// # use quote::quote;
/// #
/// use syn::{parenthesized, token, Ident, Result, Token, Type};
/// use syn::parse::{Parse, ParseStream};
/// use syn::punctuated::Punctuated;
///
/// // Parse a simplified tuple struct syntax like:
/// //
/// // struct S(A, B);
/// struct TupleStruct {
/// struct_token: Token![struct],
/// ident: Ident,
/// paren_token: token::Paren,
/// fields: Punctuated<Type, Token![,]>,
/// semi_token: Token![;],
/// }
///
/// impl Parse for TupleStruct {
/// fn parse(input: ParseStream) -> Result<Self> {
/// let content;
/// Ok(TupleStruct {
/// struct_token: input.parse()?,
/// ident: input.parse()?,
/// paren_token: parenthesized!(content in input),
/// fields: content.parse_terminated(Type::parse)?,
/// semi_token: input.parse()?,
/// })
/// }
/// }
/// #
/// # let input = quote! {
/// # struct S(A, B);
/// # };
/// # syn::parse2::<TupleStruct>(input).unwrap();
/// ```
pub fn parse_terminated<T, P: Parse>(
&self,
parser: fn(ParseStream) -> Result<T>,
) -> Result<Punctuated<T, P>> {
Punctuated::parse_terminated_with(self, parser)
}
/// Returns whether there are tokens remaining in this stream.
///
/// This method returns true at the end of the content of a set of
/// delimiters, as well as at the very end of the complete macro input.
///
/// # Example
///
/// ```
/// use syn::{braced, token, Ident, Item, Result, Token};
/// use syn::parse::{Parse, ParseStream};
///
/// // Parses a Rust `mod m { ... }` containing zero or more items.
/// struct Mod {
/// mod_token: Token![mod],
/// name: Ident,
/// brace_token: token::Brace,
/// items: Vec<Item>,
/// }
///
/// impl Parse for Mod {
/// fn parse(input: ParseStream) -> Result<Self> {
/// let content;
/// Ok(Mod {
/// mod_token: input.parse()?,
/// name: input.parse()?,
/// brace_token: braced!(content in input),
/// items: {
/// let mut items = Vec::new();
/// while !content.is_empty() {
/// items.push(content.parse()?);
/// }
/// items
/// },
/// })
/// }
/// }
/// ```
pub fn is_empty(&self) -> bool {
self.cursor().eof()
}
/// Constructs a helper for peeking at the next token in this stream and
/// building an error message if it is not one of a set of expected tokens.
///
/// # Example
///
/// ```
/// use syn::{ConstParam, Ident, Lifetime, LifetimeDef, Result, Token, TypeParam};
/// use syn::parse::{Parse, ParseStream};
///
/// // A generic parameter, a single one of the comma-separated elements inside
/// // angle brackets in:
/// //
/// // fn f<T: Clone, 'a, 'b: 'a, const N: usize>() { ... }
/// //
/// // On invalid input, lookahead gives us a reasonable error message.
/// //
/// // error: expected one of: identifier, lifetime, `const`
/// // |
/// // 5 | fn f<!Sized>() {}
/// // | ^
/// enum GenericParam {
/// Type(TypeParam),
/// Lifetime(LifetimeDef),
/// Const(ConstParam),
/// }
///
/// impl Parse for GenericParam {
/// fn parse(input: ParseStream) -> Result<Self> {
/// let lookahead = input.lookahead1();
/// if lookahead.peek(Ident) {
/// input.parse().map(GenericParam::Type)
/// } else if lookahead.peek(Lifetime) {
/// input.parse().map(GenericParam::Lifetime)
/// } else if lookahead.peek(Token![const]) {
/// input.parse().map(GenericParam::Const)
/// } else {
/// Err(lookahead.error())
/// }
/// }
/// }
/// ```
pub fn lookahead1(&self) -> Lookahead1<'a> {
lookahead::new(self.scope, self.cursor())
}
/// Forks a parse stream so that parsing tokens out of either the original
/// or the fork does not advance the position of the other.
///
/// # Performance
///
/// Forking a parse stream is a cheap fixed amount of work and does not
/// involve copying token buffers. Where you might hit performance problems
/// is if your macro ends up parsing a large amount of content more than
/// once.
///
/// ```
/// # use syn::{Expr, Result};
/// # use syn::parse::ParseStream;
/// #
/// # fn bad(input: ParseStream) -> Result<Expr> {
/// // Do not do this.
/// if input.fork().parse::<Expr>().is_ok() {
/// return input.parse::<Expr>();
/// }
/// # unimplemented!()
/// # }
/// ```
///
/// As a rule, avoid parsing an unbounded amount of tokens out of a forked
/// parse stream. Only use a fork when the amount of work performed against
/// the fork is small and bounded.
///
/// When complex speculative parsing against the forked stream is
/// unavoidable, use [`parse::discouraged::Speculative`] to advance the
/// original stream once the fork's parse is determined to have been
/// successful.
///
/// For a lower level way to perform speculative parsing at the token level,
/// consider using [`ParseStream::step`] instead.
///
/// [`parse::discouraged::Speculative`]: discouraged::Speculative
/// [`ParseStream::step`]: ParseBuffer::step
///
/// # Example
///
/// The parse implementation shown here parses possibly restricted `pub`
/// visibilities.
///
/// - `pub`
/// - `pub(crate)`
/// - `pub(self)`
/// - `pub(super)`
/// - `pub(in some::path)`
///
/// To handle the case of visibilities inside of tuple structs, the parser
/// needs to distinguish parentheses that specify visibility restrictions
/// from parentheses that form part of a tuple type.
///
/// ```
/// # struct A;
/// # struct B;
/// # struct C;
/// #
/// struct S(pub(crate) A, pub (B, C));
/// ```
///
/// In this example input the first tuple struct element of `S` has
/// `pub(crate)` visibility while the second tuple struct element has `pub`
/// visibility; the parentheses around `(B, C)` are part of the type rather
/// than part of a visibility restriction.
///
/// The parser uses a forked parse stream to check the first token inside of
/// parentheses after the `pub` keyword. This is a small bounded amount of
/// work performed against the forked parse stream.
///
/// ```
/// use syn::{parenthesized, token, Ident, Path, Result, Token};
/// use syn::ext::IdentExt;
/// use syn::parse::{Parse, ParseStream};
///
/// struct PubVisibility {
/// pub_token: Token![pub],
/// restricted: Option<Restricted>,
/// }
///
/// struct Restricted {
/// paren_token: token::Paren,
/// in_token: Option<Token![in]>,
/// path: Path,
/// }
///
/// impl Parse for PubVisibility {
/// fn parse(input: ParseStream) -> Result<Self> {
/// let pub_token: Token![pub] = input.parse()?;
///
/// if input.peek(token::Paren) {
/// let ahead = input.fork();
/// let mut content;
/// parenthesized!(content in ahead);
///
/// if content.peek(Token![crate])
/// || content.peek(Token![self])
/// || content.peek(Token![super])
/// {
/// return Ok(PubVisibility {
/// pub_token,
/// restricted: Some(Restricted {
/// paren_token: parenthesized!(content in input),
/// in_token: None,
/// path: Path::from(content.call(Ident::parse_any)?),
/// }),
/// });
/// } else if content.peek(Token![in]) {
/// return Ok(PubVisibility {
/// pub_token,
/// restricted: Some(Restricted {
/// paren_token: parenthesized!(content in input),
/// in_token: Some(content.parse()?),
/// path: content.call(Path::parse_mod_style)?,
/// }),
/// });
/// }
/// }
///
/// Ok(PubVisibility {
/// pub_token,
/// restricted: None,
/// })
/// }
/// }
/// ```
pub fn fork(&self) -> Self {
ParseBuffer {
scope: self.scope,
cell: self.cell.clone(),
marker: PhantomData,
// Not the parent's unexpected. Nothing cares whether the clone
// parses all the way unless we `advance_to`.
unexpected: Cell::new(Some(Rc::new(Cell::new(Unexpected::None)))),
}
}
/// Triggers an error at the current position of the parse stream.
///
/// # Example
///
/// ```
/// use syn::{Expr, Result, Token};
/// use syn::parse::{Parse, ParseStream};
///
/// // Some kind of loop: `while` or `for` or `loop`.
/// struct Loop {
/// expr: Expr,
/// }
///
/// impl Parse for Loop {
/// fn parse(input: ParseStream) -> Result<Self> {
/// if input.peek(Token![while])
/// || input.peek(Token![for])
/// || input.peek(Token![loop])
/// {
/// Ok(Loop {
/// expr: input.parse()?,
/// })
/// } else {
/// Err(input.error("expected some kind of loop"))
/// }
/// }
/// }
/// ```
pub fn error<T: Display>(&self, message: T) -> Error {
error::new_at(self.scope, self.cursor(), message)
}
/// Speculatively parses tokens from this parse stream, advancing the
/// position of this stream only if parsing succeeds.
///
/// This is a powerful low-level API used for defining the `Parse` impls of
/// the basic built-in token types. It is not something that will be used
/// widely outside of the Syn codebase.
///
/// # Example
///
/// ```
/// use proc_macro2::TokenTree;
/// use syn::Result;
/// use syn::parse::ParseStream;
///
/// // This function advances the stream past the next occurrence of `@`. If
/// // no `@` is present in the stream, the stream position is unchanged and
/// // an error is returned.
/// fn skip_past_next_at(input: ParseStream) -> Result<()> {
/// input.step(|cursor| {
/// let mut rest = *cursor;
/// while let Some((tt, next)) = rest.token_tree() {
/// match &tt {
/// TokenTree::Punct(punct) if punct.as_char() == '@' => {
/// return Ok(((), next));
/// }
/// _ => rest = next,
/// }
/// }
/// Err(cursor.error("no `@` was found after this point"))
/// })
/// }
/// #
/// # fn remainder_after_skipping_past_next_at(
/// # input: ParseStream,
/// # ) -> Result<proc_macro2::TokenStream> {
/// # skip_past_next_at(input)?;
/// # input.parse()
/// # }
/// #
/// # use syn::parse::Parser;
/// # let remainder = remainder_after_skipping_past_next_at
/// # .parse_str("a @ b c")
/// # .unwrap();
/// # assert_eq!(remainder.to_string(), "b c");
/// ```
pub fn step<F, R>(&self, function: F) -> Result<R>
where
F: for<'c> FnOnce(StepCursor<'c, 'a>) -> Result<(R, Cursor<'c>)>,
{
// Since the user's function is required to work for any 'c, we know
// that the Cursor<'c> they return is either derived from the input
// StepCursor<'c, 'a> or from a Cursor<'static>.
//
// It would not be legal to write this function without the invariant
// lifetime 'c in StepCursor<'c, 'a>. If this function were written only
// in terms of 'a, the user could take our ParseBuffer<'a>, upcast it to
// a ParseBuffer<'short> which some shorter lifetime than 'a, invoke
// `step` on their ParseBuffer<'short> with a closure that returns
// Cursor<'short>, and we would wrongly write that Cursor<'short> into
// the Cell intended to hold Cursor<'a>.
//
// In some cases it may be necessary for R to contain a Cursor<'a>.
// Within Syn we solve this using `advance_step_cursor` which uses the
// existence of a StepCursor<'c, 'a> as proof that it is safe to cast
// from Cursor<'c> to Cursor<'a>. If needed outside of Syn, it would be
// safe to expose that API as a method on StepCursor.
let (node, rest) = function(StepCursor {
scope: self.scope,
cursor: self.cell.get(),
marker: PhantomData,
})?;
self.cell.set(rest);
Ok(node)
}
/// Returns the `Span` of the next token in the parse stream, or
/// `Span::call_site()` if this parse stream has completely exhausted its
/// input `TokenStream`.
pub fn span(&self) -> Span {
let cursor = self.cursor();
if cursor.eof() {
self.scope
} else {
crate::buffer::open_span_of_group(cursor)
}
}
/// Provides low-level access to the token representation underlying this
/// parse stream.
///
/// Cursors are immutable so no operations you perform against the cursor
/// will affect the state of this parse stream.
pub fn cursor(&self) -> Cursor<'a> {
self.cell.get()
}
fn check_unexpected(&self) -> Result<()> {
match inner_unexpected(self).1 {
Some(span) => Err(Error::new(span, "unexpected token")),
None => Ok(()),
}
}
}
#[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))]
impl<T: Parse> Parse for Box<T> {
fn parse(input: ParseStream) -> Result<Self> {
input.parse().map(Box::new)
}
}
#[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))]
impl<T: Parse + Token> Parse for Option<T> {
fn parse(input: ParseStream) -> Result<Self> {
if T::peek(input.cursor()) {
Ok(Some(input.parse()?))
} else {
Ok(None)
}
}
}
#[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))]
impl Parse for TokenStream {
fn parse(input: ParseStream) -> Result<Self> {
input.step(|cursor| Ok((cursor.token_stream(), Cursor::empty())))
}
}
#[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))]
impl Parse for TokenTree {
fn parse(input: ParseStream) -> Result<Self> {
input.step(|cursor| match cursor.token_tree() {
Some((tt, rest)) => Ok((tt, rest)),
None => Err(cursor.error("expected token tree")),
})
}
}
#[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))]
impl Parse for Group {
fn parse(input: ParseStream) -> Result<Self> {
input.step(|cursor| {
for delim in &[Delimiter::Parenthesis, Delimiter::Brace, Delimiter::Bracket] {
if let Some((inside, span, rest)) = cursor.group(*delim) {
let mut group = Group::new(*delim, inside.token_stream());
group.set_span(span);
return Ok((group, rest));
}
}
Err(cursor.error("expected group token"))
})
}
}
#[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))]
impl Parse for Punct {
fn parse(input: ParseStream) -> Result<Self> {
input.step(|cursor| match cursor.punct() {
Some((punct, rest)) => Ok((punct, rest)),
None => Err(cursor.error("expected punctuation token")),
})
}
}
#[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))]
impl Parse for Literal {
fn parse(input: ParseStream) -> Result<Self> {
input.step(|cursor| match cursor.literal() {
Some((literal, rest)) => Ok((literal, rest)),
None => Err(cursor.error("expected literal token")),
})
}
}
/// Parser that can parse Rust tokens into a particular syntax tree node.
///
/// Refer to the [module documentation] for details about parsing in Syn.
///
/// [module documentation]: self
///
/// *This trait is available only if Syn is built with the `"parsing"` feature.*
pub trait Parser: Sized {
type Output;
/// Parse a proc-macro2 token stream into the chosen syntax tree node.
///
/// This function will check that the input is fully parsed. If there are
/// any unparsed tokens at the end of the stream, an error is returned.
fn parse2(self, tokens: TokenStream) -> Result<Self::Output>;
/// Parse tokens of source code into the chosen syntax tree node.
///
/// This function will check that the input is fully parsed. If there are
/// any unparsed tokens at the end of the stream, an error is returned.
///
/// *This method is available only if Syn is built with both the `"parsing"` and
/// `"proc-macro"` features.*
#[cfg(all(
not(all(target_arch = "wasm32", any(target_os = "unknown", target_os = "wasi"))),
feature = "proc-macro"
))]
fn parse(self, tokens: proc_macro::TokenStream) -> Result<Self::Output> {
self.parse2(proc_macro2::TokenStream::from(tokens))
}
/// Parse a string of Rust code into the chosen syntax tree node.
///
/// This function will check that the input is fully parsed. If there are
/// any unparsed tokens at the end of the string, an error is returned.
///
/// # Hygiene
///
/// Every span in the resulting syntax tree will be set to resolve at the
/// macro call site.
fn parse_str(self, s: &str) -> Result<Self::Output> {
self.parse2(proc_macro2::TokenStream::from_str(s)?)
}
// Not public API.
#[doc(hidden)]
#[cfg(any(feature = "full", feature = "derive"))]
fn __parse_scoped(self, scope: Span, tokens: TokenStream) -> Result<Self::Output> {
let _ = scope;
self.parse2(tokens)
}
// Not public API.
#[doc(hidden)]
#[cfg(any(feature = "full", feature = "derive"))]
fn __parse_stream(self, input: ParseStream) -> Result<Self::Output> {
input.parse().and_then(|tokens| self.parse2(tokens))
}
}
fn tokens_to_parse_buffer(tokens: &TokenBuffer) -> ParseBuffer {
let scope = Span::call_site();
let cursor = tokens.begin();
let unexpected = Rc::new(Cell::new(Unexpected::None));
new_parse_buffer(scope, cursor, unexpected)
}
impl<F, T> Parser for F
where
F: FnOnce(ParseStream) -> Result<T>,
{
type Output = T;
fn parse2(self, tokens: TokenStream) -> Result<T> {
let buf = TokenBuffer::new2(tokens);
let state = tokens_to_parse_buffer(&buf);
let node = self(&state)?;
state.check_unexpected()?;
if let Some(unexpected_span) = span_of_unexpected_ignoring_nones(state.cursor()) {
Err(Error::new(unexpected_span, "unexpected token"))
} else {
Ok(node)
}
}
#[doc(hidden)]
#[cfg(any(feature = "full", feature = "derive"))]
fn __parse_scoped(self, scope: Span, tokens: TokenStream) -> Result<Self::Output> {
let buf = TokenBuffer::new2(tokens);
let cursor = buf.begin();
let unexpected = Rc::new(Cell::new(Unexpected::None));
let state = new_parse_buffer(scope, cursor, unexpected);
let node = self(&state)?;
state.check_unexpected()?;
if let Some(unexpected_span) = span_of_unexpected_ignoring_nones(state.cursor()) {
Err(Error::new(unexpected_span, "unexpected token"))
} else {
Ok(node)
}
}
#[doc(hidden)]
#[cfg(any(feature = "full", feature = "derive"))]
fn __parse_stream(self, input: ParseStream) -> Result<Self::Output> {
self(input)
}
}
#[cfg(any(feature = "full", feature = "derive"))]
pub(crate) fn parse_scoped<F: Parser>(f: F, scope: Span, tokens: TokenStream) -> Result<F::Output> {
f.__parse_scoped(scope, tokens)
}
#[cfg(any(feature = "full", feature = "derive"))]
pub(crate) fn parse_stream<F: Parser>(f: F, input: ParseStream) -> Result<F::Output> {
f.__parse_stream(input)
}
/// An empty syntax tree node that consumes no tokens when parsed.
///
/// This is useful for attribute macros that want to ensure they are not
/// provided any attribute args.
///
/// ```
/// # extern crate proc_macro;
/// #
/// use proc_macro::TokenStream;
/// use syn::parse_macro_input;
/// use syn::parse::Nothing;
///
/// # const IGNORE: &str = stringify! {
/// #[proc_macro_attribute]
/// # };
/// pub fn my_attr(args: TokenStream, input: TokenStream) -> TokenStream {
/// parse_macro_input!(args as Nothing);
///
/// /* ... */
/// # "".parse().unwrap()
/// }
/// ```
///
/// ```text
/// error: unexpected token
/// --> src/main.rs:3:19
/// |
/// 3 | #[my_attr(asdf)]
/// | ^^^^
/// ```
pub struct Nothing;
impl Parse for Nothing {
fn parse(_input: ParseStream) -> Result<Self> {
Ok(Nothing)
}
}
| peek3 |
post_nms_questionnaires_id_touch_operation.go | // Code generated by go-swagger; DO NOT EDIT.
package cli
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"encoding/json"
"fmt"
"github.com/byxorna/nycmesh-tool/generated/go/uisp/client/server"
serverops "github.com/byxorna/nycmesh-tool/generated/go/uisp/client/server"
"github.com/go-openapi/swag"
"github.com/spf13/cobra"
)
// makeOperationServerPostNmsQuestionnairesIDTouchCmd returns a cmd to handle operation postNmsQuestionnairesIdTouch
func makeOperationServerPostNmsQuestionnairesIDTouchCmd() (*cobra.Command, error) {
cmd := &cobra.Command{
Use: "postNmsQuestionnairesIdTouch",
Short: ``,
RunE: runOperationServerPostNmsQuestionnairesIDTouch,
}
if err := registerOperationServerPostNmsQuestionnairesIDTouchParamFlags(cmd); err != nil {
return nil, err
}
return cmd, nil
}
// runOperationServerPostNmsQuestionnairesIDTouch uses cmd flags to call endpoint api
func runOperationServerPostNmsQuestionnairesIDTouch(cmd *cobra.Command, args []string) error {
appCli, err := makeClient(cmd, args)
if err != nil {
return err
}
// retrieve flag values from cmd and fill params
params := serverops.NewPostNmsQuestionnairesIDTouchParams()
if err, _ := retrieveOperationServerPostNmsQuestionnairesIDTouchIDFlag(params, "", cmd); err != nil {
return err
}
if dryRun {
logDebugf("dry-run flag specified. Skip sending request.")
return nil
}
// make request and then print result
msgStr, err := parseOperationServerPostNmsQuestionnairesIDTouchResult(appCli.Server.PostNmsQuestionnairesIDTouch(params, nil))
if err != nil {
return err
}
if !debug {
fmt.Println(msgStr)
}
return nil
}
// registerOperationServerPostNmsQuestionnairesIDTouchParamFlags registers all flags needed to fill params
func registerOperationServerPostNmsQuestionnairesIDTouchParamFlags(cmd *cobra.Command) error {
if err := registerOperationServerPostNmsQuestionnairesIDTouchIDParamFlags("", cmd); err != nil {
return err
}
return nil
}
func | (cmdPrefix string, cmd *cobra.Command) error {
idDescription := `Enum: ["Q1"]. Required. `
var idFlagName string
if cmdPrefix == "" {
idFlagName = "id"
} else {
idFlagName = fmt.Sprintf("%v.id", cmdPrefix)
}
var idFlagDefault string
_ = cmd.PersistentFlags().String(idFlagName, idFlagDefault, idDescription)
if err := cmd.RegisterFlagCompletionFunc(idFlagName,
func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
var res []string
if err := json.Unmarshal([]byte(`["Q1"]`), &res); err != nil {
panic(err)
}
return res, cobra.ShellCompDirectiveDefault
}); err != nil {
return err
}
return nil
}
func retrieveOperationServerPostNmsQuestionnairesIDTouchIDFlag(m *serverops.PostNmsQuestionnairesIDTouchParams, cmdPrefix string, cmd *cobra.Command) (error, bool) {
retAdded := false
if cmd.Flags().Changed("id") {
var idFlagName string
if cmdPrefix == "" {
idFlagName = "id"
} else {
idFlagName = fmt.Sprintf("%v.id", cmdPrefix)
}
idFlagValue, err := cmd.Flags().GetString(idFlagName)
if err != nil {
return err, false
}
m.ID = idFlagValue
}
return nil, retAdded
}
// parseOperationServerPostNmsQuestionnairesIDTouchResult parses request result and return the string content
func parseOperationServerPostNmsQuestionnairesIDTouchResult(resp0 *server.PostNmsQuestionnairesIDTouchOK, respErr error) (string, error) {
if respErr != nil {
var iResp0 interface{} = respErr
resp0, ok := iResp0.(*server.PostNmsQuestionnairesIDTouchOK)
if ok {
if !swag.IsZero(resp0) && !swag.IsZero(resp0.Payload) {
msgStr, err := json.Marshal(resp0.Payload)
if err != nil {
return "", err
}
return string(msgStr), nil
}
}
var iResp1 interface{} = respErr
resp1, ok := iResp1.(*server.PostNmsQuestionnairesIDTouchBadRequest)
if ok {
if !swag.IsZero(resp1) && !swag.IsZero(resp1.Payload) {
msgStr, err := json.Marshal(resp1.Payload)
if err != nil {
return "", err
}
return string(msgStr), nil
}
}
var iResp2 interface{} = respErr
resp2, ok := iResp2.(*server.PostNmsQuestionnairesIDTouchUnauthorized)
if ok {
if !swag.IsZero(resp2) && !swag.IsZero(resp2.Payload) {
msgStr, err := json.Marshal(resp2.Payload)
if err != nil {
return "", err
}
return string(msgStr), nil
}
}
var iResp3 interface{} = respErr
resp3, ok := iResp3.(*server.PostNmsQuestionnairesIDTouchForbidden)
if ok {
if !swag.IsZero(resp3) && !swag.IsZero(resp3.Payload) {
msgStr, err := json.Marshal(resp3.Payload)
if err != nil {
return "", err
}
return string(msgStr), nil
}
}
var iResp4 interface{} = respErr
resp4, ok := iResp4.(*server.PostNmsQuestionnairesIDTouchInternalServerError)
if ok {
if !swag.IsZero(resp4) && !swag.IsZero(resp4.Payload) {
msgStr, err := json.Marshal(resp4.Payload)
if err != nil {
return "", err
}
return string(msgStr), nil
}
}
return "", respErr
}
if !swag.IsZero(resp0) && !swag.IsZero(resp0.Payload) {
msgStr, err := json.Marshal(resp0.Payload)
if err != nil {
return "", err
}
return string(msgStr), nil
}
return "", nil
}
| registerOperationServerPostNmsQuestionnairesIDTouchIDParamFlags |
a0215_kth_largest_element_in_an_array.rs | /*
* [0215] kth-largest-element-in-an-array
*/
struct Solution;
impl Solution {
pub fn find_kth_largest(nums: Vec<i32>, k: i32) -> i32 {
let mut nums = nums;
let end = nums.len() - 1;
Self::quick_select(&mut nums, 0usize, end, k as usize)
}
fn quick_select(nums: &mut Vec<i32>, start: usize, end: usize, k: usize) -> i32 {
let p = nums[start];
let mut left = start + 1;
let mut right = end;
while left <= right {
while left <= right && nums[left] >= p {
left += 1;
}
while left <= right && nums[right] <= p {
right -= 1;
}
if left <= right && nums[left] < p && nums[right] > p {
nums.swap(left, right);
}
}
nums.swap(start, right);
if right - start == k - 1 {
let mut min = nums[0];
for i in start..start + k as usize {
if nums[i] < min {
min = nums[i];
}
}
return min;
} else if right - start < k - 1 {
return Self::quick_select(nums, right + 1, end, k + start - right - 1);
} else if right - start > k - 1 {
return Self::quick_select(nums, start, right - 1, k);
}
0
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_case0() |
}
| {
assert_eq!(
Solution::find_kth_largest(
vec![7, 3, 82, 9, 2, 17, 4, 29, 1, 8, 36, 33, 18, 22, 19],
2
),
36
);
assert_eq!(Solution::find_kth_largest(vec![7, 6, 5, 4, 3, 2, 1], 5), 3);
assert_eq!(Solution::find_kth_largest(vec![5, 2, 4, 1, 3, 6, 0], 4), 3)
} |
split.rs | use crate::prelude::*;
/// Generates two [`Vec`]s by splitting the given [`Vec`] at a random index.
///
/// # Examples
///
/// ```
/// use dicetest::prelude::*;
/// use dicetest::{Prng, Limit};
///
/// let mut prng = Prng::from_seed(0x5EED.into());
/// let limit = Limit::default();
/// let mut fate = Fate::new(&mut prng, limit);
///
/// let vec = vec![1, 2, 3, 4];
/// let (prefix, suffix) = fate.roll(dice::split_vec(vec.clone()));
/// assert!(vec.starts_with(&prefix));
/// assert!(vec.ends_with(&suffix));
///
/// let empty_vec: Vec<u64> = vec![];
/// let (empty_prefix, empty_suffix) = fate.roll(dice::split_vec(empty_vec));
/// assert!(empty_prefix.is_empty());
/// assert!(empty_suffix.is_empty());
/// ```
pub fn split_vec<T>(mut vec: Vec<T>) -> impl DieOnce<(Vec<T>, Vec<T>)> {
let index_die = dice::uni_usize(0..=vec.len());
dice::from_fn_once(move |mut fate| {
let at = fate.roll(index_die);
let other_vec = vec.split_off(at);
(vec, other_vec)
})
}
#[cfg(test)]
mod tests {
use crate::prelude::*;
#[test]
fn split_vec_result_can_be_merged_to_orig_vec() {
Dicetest::repeatedly().run(|mut fate| {
let orig_vec = fate.roll(dice::vec(dice::u8(..), ..));
let (prefix, mut suffix) = fate.roll(dice::split_vec(orig_vec.clone()));
let mut merged = prefix;
merged.append(&mut suffix);
assert_eq!(merged, orig_vec);
})
}
#[test]
fn | () {
Dicetest::repeatedly()
.passes(0)
.stats_enabled(true)
.run(|mut fate| {
stat!(
"split_vec(vec![1, 2, 3, 4, 5])",
"{:?}",
fate.roll(dice::split_vec(vec![1, 2, 3, 4, 5])),
);
})
}
}
| split_vec_calc_stats |
util.py | # Natural Language Toolkit: Corpus Reader Utility Functions
#
# Copyright (C) 2001-2014 NLTK Project
# Author: Edward Loper <[email protected]>
# URL: <http://nltk.org/>
# For license information, see LICENSE.TXT
######################################################################
#{ Lazy Corpus Loader
######################################################################
from __future__ import unicode_literals
import re
import gc
import nltk
from nltk.compat import python_2_unicode_compatible
TRY_ZIPFILE_FIRST = False
@python_2_unicode_compatible
class LazyCorpusLoader(object):
"""
To see the API documentation for this lazily loaded corpus, first
run corpus.ensure_loaded(), and then run help(this_corpus).
LazyCorpusLoader is a proxy object which is used to stand in for a
corpus object before the corpus is loaded. This allows NLTK to
create an object for each corpus, but defer the costs associated
with loading those corpora until the first time that they're
actually accessed.
The first time this object is accessed in any way, it will load
the corresponding corpus, and transform itself into that corpus
(by modifying its own ``__class__`` and ``__dict__`` attributes).
If the corpus can not be found, then accessing this object will
raise an exception, displaying installation instructions for the
NLTK data package. Once they've properly installed the data
package (or modified ``nltk.data.path`` to point to its location),
they can then use the corpus object without restarting python.
"""
def __init__(self, name, reader_cls, *args, **kwargs):
from nltk.corpus.reader.api import CorpusReader
assert issubclass(reader_cls, CorpusReader)
self.__name = self.__name__ = name
self.__reader_cls = reader_cls
self.__args = args
self.__kwargs = kwargs
def | (self):
# Find the corpus root directory.
zip_name = re.sub(r'(([^/]*)(/.*)?)', r'\2.zip/\1/', self.__name)
if TRY_ZIPFILE_FIRST:
try:
root = nltk.data.find('corpora/%s' % zip_name)
except LookupError as e:
try: root = nltk.data.find('corpora/%s' % self.__name)
except LookupError: raise e
else:
try:
root = nltk.data.find('corpora/%s' % self.__name)
except LookupError as e:
try: root = nltk.data.find('corpora/%s' % zip_name)
except LookupError: raise e
# Load the corpus.
corpus = self.__reader_cls(root, *self.__args, **self.__kwargs)
# This is where the magic happens! Transform ourselves into
# the corpus by modifying our own __dict__ and __class__ to
# match that of the corpus.
args, kwargs = self.__args, self.__kwargs
name, reader_cls = self.__name, self.__reader_cls
self.__dict__ = corpus.__dict__
self.__class__ = corpus.__class__
# _unload support: assign __dict__ and __class__ back, then do GC.
# after reassigning __dict__ there shouldn't be any references to
# corpus data so the memory should be deallocated after gc.collect()
def _unload(self):
lazy_reader = LazyCorpusLoader(name, reader_cls, *args, **kwargs)
self.__dict__ = lazy_reader.__dict__
self.__class__ = lazy_reader.__class__
gc.collect()
self._unload = _make_bound_method(_unload, self)
def __getattr__(self, attr):
# Fix for inspect.isclass under Python 2.6
# (see http://bugs.python.org/issue1225107).
# Without this fix tests may take extra 1.5GB RAM
# because all corpora gets loaded during test collection.
if attr == '__bases__':
raise AttributeError("LazyCorpusLoader object has no attribute '__bases__'")
self.__load()
# This looks circular, but its not, since __load() changes our
# __class__ to something new:
return getattr(self, attr)
def __repr__(self):
return '<%s in %r (not loaded yet)>' % (
self.__reader_cls.__name__, '.../corpora/'+self.__name)
def _unload(self):
# If an exception occures during corpus loading then
# '_unload' method may be unattached, so __getattr__ can be called;
# we shouldn't trigger corpus loading again in this case.
pass
def _make_bound_method(func, self):
"""
Magic for creating bound methods (used for _unload).
"""
class Foo(object):
def meth(self): pass
f = Foo()
bound_method = type(f.meth)
try:
return bound_method(func, self, self.__class__)
except TypeError: # python3
return bound_method(func, self)
| __load |
jsonvalidator.go | package jsonvalidator
import (
"github.com/pkg/errors"
"io/ioutil"
"net/http"
"os"
"path"
"runtime"
)
var (
methods = []string{
http.MethodConnect,
http.MethodDelete,
http.MethodGet,
http.MethodHead,
http.MethodOptions,
http.MethodPatch,
http.MethodPost,
http.MethodPut,
http.MethodTrace,
}
)
// JsonValidator is a struct that implements the Validator interface
// and validates json objects according to a json schema
type JsonValidator struct {
draft string
schemaDict map[string]map[string]*RootJsonSchema
}
// NewJsonValidator returns a new instance of JsonValidator
func NewJsonValidator(draft string) (JsonValidator, error) {
supportedDrafts := []string{"draft-07"}
for _, supportedDraft := range supportedDrafts {
if supportedDraft == draft {
return JsonValidator{
draft,
make(map[string]map[string]*RootJsonSchema),
}, nil
}
}
return JsonValidator{}, InvalidDraftError(draft)
}
// LoadSchema is a function that handles addition of new schema to the
// JsonValidator's schemas list
func (jv JsonValidator) LoadSchema(path, method string, rawSchema []byte) error {
// Check if the given method is correct
for _, httpMethod := range methods {
if method == httpMethod {
// Validate the given schema against draft-07 meta-schema.
err := validateJsonSchema(jv.draft, rawSchema)
if err != nil {
return errors.Wrap(err, "validation against meta-schema failed")
}
// If the schema is valid make a new map and insert the new schema to it.
if jv.schemaDict[path] == nil {
// Create a new empty method-JsonSchema map for the current path.
jv.schemaDict[path] = make(map[string]*RootJsonSchema)
}
// Create a new JsonSchema object.
schema, err := NewRootJsonSchema(rawSchema)
if err != nil {
return errors.Wrap(err, "failed to create a RootJsonSchema "+
"instance")
}
// Add the schema to the appropriate map according to its path and
// method.
jv.schemaDict[path][method] = schema
return nil
}
}
return errors.New("could not load schema to path " +
path +
": unknown method \"" +
method +
"\"")
}
// Validate is the function that actually perform validation of json value
// according to a specific json schema
func (jv JsonValidator) Validate(path string, method string, body []byte) error {
if _, isPathExist := jv.schemaDict[path]; isPathExist {
if _, isMethodExist := jv.schemaDict[path][method]; isMethodExist {
return jv.schemaDict[path][method].validateBytes(body)
} else {
return errors.New("could not validate request: unknown path \"" +
path +
"\"")
}
} else {
return errors.New("could not validate to path " +
path +
": no schema exist for method \"" +
method +
"\"")
}
}
// validateJsonSchema is a function that validates the schema's
// structure according to Json Schema.
func | (draft string, rawSchema []byte) error {
// Get the path of the current go file (including the path inside
// the project).
var absolutePath string
if _, filename, _, ok := runtime.Caller(0); ok {
absolutePath = path.Dir(filename)
}
// Open the meta-schema file.
file, err := os.Open(absolutePath + "/meta-schemas/" + draft)
if err != nil {
return errors.Wrap(err, "json schema version \""+
draft+
"\" is not supported")
}
defer file.Close()
// Read the data from the file.
bytes, err := ioutil.ReadAll(file)
if err != nil {
return errors.Wrap(err, "could not read meta-schema from file")
}
// Create a new RootJsonSchema.
metaSchema, err := NewRootJsonSchema(bytes)
if err != nil {
return errors.Wrap(err, "failed to create a RootJsonSchema instance "+
"for meta-schema - "+
draft)
}
return metaSchema.validateBytes(rawSchema)
}
| validateJsonSchema |
gslice_test.go | package gslice_test
import (
"sort"
"testing"
"github.com/giant-stone/go/gslice"
"github.com/stretchr/testify/require"
)
func TestMapToSlice(t *testing.T) {
for _, item := range []struct {
s map[string]struct{}
want []string
}{
{map[string]struct{}{"甲": {}, "乙": {}, "丙": {}}, []string{"甲", "乙", "丙"}},
{map[string]struct{}{"foo": {}, "bar": {}}, []string{"foo", "bar"}},
{map[string]struct{}{}, []string{}},
} {
got := gslice.MapToSlice(&item.s)
sort.StringSlice(item.want).Sort()
require.Equal(t, item.want, got, item.s)
}
}
func TestSliceIndex(t *testing.T) {
for _, it | em := range []struct {
haystack []string
needle string
want int
}{
{[]string{"foo", "bar", "baz"}, "go", -1},
{[]string{"中文输入法", "输入法", "中文"}, "中文", 2},
} {
got := gslice.SliceIndex(len(item.haystack), func(i int) bool {
return item.haystack[i] == item.needle
})
require.Equal(t, item.want, got, item.haystack)
}
}
|
|
rergroup.js | /****************************************************************************
* Copyright 2021 EPAM Systems
*
* 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 { Box2Abs, Scale, Vec2 } from 'ketcher-core'
import { LayerMap } from './GeneralEnumTypes'
import ReObject from './ReObject'
import draw from '../draw'
import util from '../util'
var BORDER_EXT = new Vec2(0.05 * 3, 0.05 * 3)
class ReRGroup extends ReObject {
constructor(/* RGroup*/ rgroup) {
super('rgroup')
this.labelBox = null
this.item = rgroup
}
static isSelectable() {
return false
}
getAtoms(render) {
var ret = []
this.item.frags.forEach(fid => {
ret = ret.concat(
render.ctab.frags.get(fid).fragGetAtoms(render.ctab, fid)
)
})
return ret
}
getBonds(render) {
var ret = []
this.item.frags.forEach(fid => {
ret = ret.concat(
render.ctab.frags.get(fid).fragGetBonds(render.ctab, fid)
) | }
calcBBox(render) {
let ret = null
this.item.frags.forEach(fid => {
const bbf = render.ctab.frags.get(fid).calcBBox(render.ctab, fid, render)
if (bbf) ret = ret ? Box2Abs.union(ret, bbf) : bbf
})
if (ret) ret = ret.extend(BORDER_EXT, BORDER_EXT)
return ret
}
// TODO need to review parameter list
draw(render, options) {
// eslint-disable-line max-statements
const bb = this.calcBBox(render)
if (!bb) {
console.error(
'Abnormal situation, empty fragments must be destroyed by tools'
)
return {}
}
const ret = { data: [] }
const p0 = Scale.obj2scaled(bb.p0, options)
const p1 = Scale.obj2scaled(bb.p1, options)
const brackets = render.paper.set()
rGroupdrawBrackets(brackets, render, bb) // eslint-disable-line new-cap
ret.data.push(brackets)
const key = render.ctab.rgroups.keyOf(this)
const labelSet = render.paper.set()
const label = render.paper
.text(p0.x, (p0.y + p1.y) / 2, 'R' + key + '=')
.attr({
font: options.font,
'font-size': options.fontRLabel,
fill: 'black'
})
const labelBox = util.relBox(label.getBBox())
label.translateAbs(-labelBox.width / 2 - options.lineWidth, 0)
labelSet.push(label)
const logicStyle = {
font: options.font,
'font-size': options.fontRLogic,
fill: 'black'
}
const logic = [rLogicToString(key, this.item)]
let shift = labelBox.height / 2 + options.lineWidth / 2
for (let i = 0; i < logic.length; ++i) {
const logicPath = render.paper
.text(p0.x, (p0.y + p1.y) / 2, logic[i])
.attr(logicStyle)
const logicBox = util.relBox(logicPath.getBBox())
shift += logicBox.height / 2
logicPath.translateAbs(-logicBox.width / 2 - 6 * options.lineWidth, shift)
shift += logicBox.height / 2 + options.lineWidth / 2
ret.data.push(logicPath)
labelSet.push(logicPath)
}
ret.data.push(label)
this.labelBox = Box2Abs.fromRelBox(labelSet.getBBox()).transform(
Scale.scaled2obj,
render.options
)
return ret
}
// TODO need to review parameter list
_draw(render, rgid, attrs) {
// eslint-disable-line no-underscore-dangle
const bb = this.getVBoxObj(render).extend(BORDER_EXT, BORDER_EXT) // eslint-disable-line no-underscore-dangle
if (!bb) return null
const p0 = Scale.obj2scaled(bb.p0, render.options)
const p1 = Scale.obj2scaled(bb.p1, render.options)
return render.paper
.rect(p0.x, p0.y, p1.x - p0.x, p1.y - p0.y, 0)
.attr(attrs)
}
drawHighlight(render) {
const rgid = render.ctab.rgroups.keyOf(this)
if (!rgid) {
console.error(
'Abnormal situation, fragment does not belong to the render'
)
return null
}
const ret = this._draw(
render,
rgid,
render.options.highlightStyle /* { 'fill' : 'red' }*/
) // eslint-disable-line no-underscore-dangle
render.ctab.addReObjectPath(LayerMap.highlighting, this.visel, ret)
this.item.frags.forEach((fnum, fid) => {
render.ctab.frags.get(fid).drawHighlight(render)
})
return ret
}
show(restruct, id, options) {
const drawing = this.draw(restruct.render, options)
Object.keys(drawing).forEach(group => {
while (drawing[group].length > 0)
restruct.addReObjectPath(
LayerMap.data,
this.visel,
drawing[group].shift(),
null,
true
)
})
// TODO rgroup selection & highlighting
}
}
function rGroupdrawBrackets(set, render, bb, d) {
d = Scale.obj2scaled(d || new Vec2(1, 0), render.options)
var bracketWidth = Math.min(0.25, bb.sz().x * 0.3)
var bracketHeight = bb.p1.y - bb.p0.y
var cy = 0.5 * (bb.p1.y + bb.p0.y)
var leftBracket = draw.bracket(
render.paper,
d.negated(),
d.negated().rotateSC(1, 0),
Scale.obj2scaled(new Vec2(bb.p0.x, cy), render.options),
bracketWidth,
bracketHeight,
render.options
)
var rightBracket = draw.bracket(
render.paper,
d,
d.rotateSC(1, 0),
Scale.obj2scaled(new Vec2(bb.p1.x, cy), render.options),
bracketWidth,
bracketHeight,
render.options
)
return set.push(leftBracket, rightBracket)
}
function rLogicToString(id, rLogic) {
const ifThen = rLogic.ifthen > 0 ? 'IF ' : ''
const rangeExists =
rLogic.range.startsWith('>') ||
rLogic.range.startsWith('<') ||
rLogic.range.startsWith('=')
let range = null
if (rLogic.range.length > 0)
range = rangeExists ? rLogic.range : '=' + rLogic.range
else range = '>0'
const restH = rLogic.resth ? ' (RestH)' : ''
const nextRg = rLogic.ifthen > 0 ? '\nTHEN R' + rLogic.ifthen.toString() : ''
return `${ifThen}R${id.toString()}${range}${restH}${nextRg}`
}
export default ReRGroup | })
return ret |
fileUserDataProvider.ts | /*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { Event, Emitter } from 'vs/base/common/event';
import { Disposable, IDisposable } from 'vs/base/common/lifecycle';
import { IFileSystemProviderWithFileReadWriteCapability, IFileChange, IWatchOptions, IStat, FileOverwriteOptions, FileType, FileWriteOptions, FileDeleteOptions, FileSystemProviderCapabilities, IFileSystemProviderWithOpenReadWriteCloseCapability, FileOpenOptions, hasReadWriteCapability, hasOpenReadWriteCloseCapability, IFileSystemProviderWithFileReadStreamCapability, FileReadStreamOptions, hasFileReadStreamCapability } from 'vs/platform/files/common/files';
import { URI } from 'vs/base/common/uri';
import { startsWith } from 'vs/base/common/strings';
import { BACKUPS } from 'vs/platform/environment/common/environment';
import { IWorkbenchEnvironmentService } from 'vs/workbench/services/environment/common/environmentService';
import { CancellationToken } from 'vs/base/common/cancellation';
import { ReadableStreamEvents } from 'vs/base/common/stream';
import { ILogService } from 'vs/platform/log/common/log';
import { ExtUri, extUri, extUriIgnorePathCase } from 'vs/base/common/resources';
export class FileUserDataProvider extends Disposable implements
IFileSystemProviderWithFileReadWriteCapability,
IFileSystemProviderWithOpenReadWriteCloseCapability,
IFileSystemProviderWithFileReadStreamCapability {
readonly capabilities: FileSystemProviderCapabilities = this.fileSystemProvider.capabilities;
readonly onDidChangeCapabilities: Event<void> = this.fileSystemProvider.onDidChangeCapabilities;
private readonly _onDidChangeFile = this._register(new Emitter<readonly IFileChange[]>());
readonly onDidChangeFile: Event<readonly IFileChange[]> = this._onDidChangeFile.event;
private readonly userDataHome: URI;
private extUri: ExtUri;
constructor(
private readonly fileSystemUserDataHome: URI,
private readonly fileSystemBackupsHome: URI,
private readonly fileSystemProvider: IFileSystemProviderWithFileReadWriteCapability | IFileSystemProviderWithOpenReadWriteCloseCapability,
environmentService: IWorkbenchEnvironmentService,
private readonly logService: ILogService,
) {
super();
this.userDataHome = environmentService.userRoamingDataHome;
this.extUri = !!(this.capabilities & FileSystemProviderCapabilities.PathCaseSensitive) ? extUri : extUriIgnorePathCase;
// update extUri as capabilites might change.
this._register(this.onDidChangeCapabilities(() => this.extUri = !!(this.capabilities & FileSystemProviderCapabilities.PathCaseSensitive) ? extUri : extUriIgnorePathCase));
// Assumption: This path always exists
this._register(this.fileSystemProvider.watch(this.fileSystemUserDataHome, { recursive: false, excludes: [] }));
this._register(this.fileSystemProvider.onDidChangeFile(e => this.handleFileChanges(e)));
}
watch(resource: URI, opts: IWatchOptions): IDisposable {
return this.fileSystemProvider.watch(this.toFileSystemResource(resource), opts);
}
stat(resource: URI): Promise<IStat> {
return this.fileSystemProvider.stat(this.toFileSystemResource(resource));
}
mkdir(resource: URI): Promise<void> {
return this.fileSystemProvider.mkdir(this.toFileSystemResource(resource));
}
rename(from: URI, to: URI, opts: FileOverwriteOptions): Promise<void> {
return this.fileSystemProvider.rename(this.toFileSystemResource(from), this.toFileSystemResource(to), opts);
}
readFile(resource: URI): Promise<Uint8Array> {
if (hasReadWriteCapability(this.fileSystemProvider)) {
return this.fileSystemProvider.readFile(this.toFileSystemResource(resource));
}
throw new Error('not supported');
}
readFileStream(resource: URI, opts: FileReadStreamOptions, token: CancellationToken): ReadableStreamEvents<Uint8Array> {
if (hasFileReadStreamCapability(this.fileSystemProvider)) {
return this.fileSystemProvider.readFileStream(this.toFileSystemResource(resource), opts, token);
}
throw new Error('not supported');
}
readdir(resource: URI): Promise<[string, FileType][]> {
return this.fileSystemProvider.readdir(this.toFileSystemResource(resource));
}
writeFile(resource: URI, content: Uint8Array, opts: FileWriteOptions): Promise<void> {
if (hasReadWriteCapability(this.fileSystemProvider)) {
return this.fileSystemProvider.writeFile(this.toFileSystemResource(resource), content, opts);
}
throw new Error('not supported');
}
open(resource: URI, opts: FileOpenOptions): Promise<number> {
if (hasOpenReadWriteCloseCapability(this.fileSystemProvider)) {
return this.fileSystemProvider.open(this.toFileSystemResource(resource), opts);
}
throw new Error('not supported');
}
| if (hasOpenReadWriteCloseCapability(this.fileSystemProvider)) {
return this.fileSystemProvider.close(fd);
}
throw new Error('not supported');
}
read(fd: number, pos: number, data: Uint8Array, offset: number, length: number): Promise<number> {
if (hasOpenReadWriteCloseCapability(this.fileSystemProvider)) {
return this.fileSystemProvider.read(fd, pos, data, offset, length);
}
throw new Error('not supported');
}
write(fd: number, pos: number, data: Uint8Array, offset: number, length: number): Promise<number> {
if (hasOpenReadWriteCloseCapability(this.fileSystemProvider)) {
return this.fileSystemProvider.write(fd, pos, data, offset, length);
}
throw new Error('not supported');
}
delete(resource: URI, opts: FileDeleteOptions): Promise<void> {
return this.fileSystemProvider.delete(this.toFileSystemResource(resource), opts);
}
private handleFileChanges(changes: readonly IFileChange[]): void {
const userDataChanges: IFileChange[] = [];
for (const change of changes) {
const userDataResource = this.toUserDataResource(change.resource);
if (userDataResource) {
userDataChanges.push({
resource: userDataResource,
type: change.type
});
}
}
if (userDataChanges.length) {
this.logService.debug('User data changed');
this._onDidChangeFile.fire(userDataChanges);
}
}
private toFileSystemResource(userDataResource: URI): URI {
const relativePath = this.extUri.relativePath(this.userDataHome, userDataResource)!;
if (startsWith(relativePath, BACKUPS)) {
return this.extUri.joinPath(this.extUri.dirname(this.fileSystemBackupsHome), relativePath);
}
return this.extUri.joinPath(this.fileSystemUserDataHome, relativePath);
}
private toUserDataResource(fileSystemResource: URI): URI | null {
if (this.extUri.isEqualOrParent(fileSystemResource, this.fileSystemUserDataHome)) {
const relativePath = this.extUri.relativePath(this.fileSystemUserDataHome, fileSystemResource);
return relativePath ? this.extUri.joinPath(this.userDataHome, relativePath) : this.userDataHome;
}
if (this.extUri.isEqualOrParent(fileSystemResource, this.fileSystemBackupsHome)) {
const relativePath = this.extUri.relativePath(this.fileSystemBackupsHome, fileSystemResource);
return relativePath ? this.extUri.joinPath(this.userDataHome, BACKUPS, relativePath) : this.extUri.joinPath(this.userDataHome, BACKUPS);
}
return null;
}
} | close(fd: number): Promise<void> { |
example_metrics_test.go | // Copyright 2016 The etcd Authors
//
// 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.
package clientv3_test
import (
"context"
"fmt"
"io"
"log"
"net"
"net/http"
"strings"
"go.etcd.io/etcd/client/v3"
grpcprom "github.com/grpc-ecosystem/go-grpc-prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
"google.golang.org/grpc"
)
func mockClient_metrics() {
fmt.Println(`grpc_client_started_total{grpc_method="Range",grpc_service="etcdserverpb.KV",grpc_type="unary"} 1`)
}
func ExampleClient_metrics() {
forUnitTestsRunInMockedContext(mockClient_metrics, func() {
cli, err := clientv3.New(clientv3.Config{
Endpoints: exampleEndpoints(),
DialOptions: []grpc.DialOption{
grpc.WithUnaryInterceptor(grpcprom.UnaryClientInterceptor),
grpc.WithStreamInterceptor(grpcprom.StreamClientInterceptor),
},
})
if err != nil {
log.Fatal(err)
}
defer cli.Close()
// get a key so it shows up in the metrics as a range RPC
cli.Get(context.TODO(), "test_key")
// listen for all Prometheus metrics
ln, err := net.Listen("tcp", ":0")
if err != nil {
log.Fatal(err)
}
donec := make(chan struct{})
go func() {
defer close(donec)
http.Serve(ln, promhttp.Handler())
}()
defer func() {
ln.Close()
<-donec
}()
// make an http request to fetch all Prometheus metrics
url := "http://" + ln.Addr().String() + "/metrics"
resp, err := http.Get(url)
if err != nil {
log.Fatalf("fetch error: %v", err)
}
b, err := io.ReadAll(resp.Body)
resp.Body.Close()
if err != nil |
// confirm range request in metrics
for _, l := range strings.Split(string(b), "\n") {
if strings.Contains(l, `grpc_client_started_total{grpc_method="Range"`) {
fmt.Println(l)
break
}
}
})
// Output:
// grpc_client_started_total{grpc_method="Range",grpc_service="etcdserverpb.KV",grpc_type="unary"} 1
}
| {
log.Fatalf("fetch error: reading %s: %v", url, err)
} |
kubecluster.py | import asyncio
import copy
import getpass
import logging
import os
import time
import uuid
import warnings
import yaml
import dask
import dask.distributed
import distributed.security
from distributed.deploy import SpecCluster, ProcessInterface
from distributed.utils import Log, Logs
import kubernetes_asyncio as kubernetes
from kubernetes_asyncio.client.rest import ApiException
from ..constants import KUBECLUSTER_WORKER_CONTAINER_NAME
from ..common.objects import (
make_pod_from_dict,
make_service_from_dict,
make_pdb_from_dict,
clean_pod_template,
clean_service_template,
clean_pdb_template,
)
from ..common.auth import ClusterAuth
from ..common.utils import (
namespace_default,
escape,
)
from ..common.networking import get_external_address_for_scheduler_service
logger = logging.getLogger(__name__)
SCHEDULER_PORT = 8786
class Pod(ProcessInterface):
"""A superclass for Kubernetes Pods
See Also
--------
Worker
Scheduler
"""
def __init__(
self,
cluster,
core_api,
policy_api,
pod_template,
namespace,
loop=None,
**kwargs
):
self._pod = None
self.cluster = cluster
self.core_api = core_api
self.policy_api = policy_api
self.pod_template = copy.deepcopy(pod_template)
self.base_labels = self.pod_template.metadata.labels
self.namespace = namespace
self.name = None
self.loop = loop
self.kwargs = kwargs
super().__init__()
@property
def cluster_name(self):
return self.pod_template.metadata.labels["dask.org/cluster-name"]
async def start(self, **kwargs):
retry_count = 0 # Retry 10 times
while True:
try:
self._pod = await self.core_api.create_namespaced_pod(
self.namespace, self.pod_template
)
return await super().start(**kwargs)
except ApiException as e:
if retry_count < 10:
logger.debug("Error when creating pod, retrying... - %s", str(e))
await asyncio.sleep(0.1)
retry_count += 1
else:
raise e
async def close(self, **kwargs):
if self._pod:
name, namespace = self._pod.metadata.name, self.namespace
try:
await self.core_api.delete_namespaced_pod(name, namespace)
except ApiException as e:
if e.reason == "Not Found":
logger.debug(
"Pod %s in namespace %s has been deleated already.",
name,
namespace,
)
else:
raise
await super().close(**kwargs)
async def logs(self):
try:
log = await self.core_api.read_namespaced_pod_log(
self._pod.metadata.name,
self.namespace,
container=KUBECLUSTER_WORKER_CONTAINER_NAME,
)
except ApiException as e:
if "waiting to start" in str(e):
log = ""
else:
raise e
return Log(log)
async def describe_pod(self):
self._pod = await self.core_api.read_namespaced_pod(
self._pod.metadata.name, self.namespace
)
return self._pod
def __repr__(self):
return "<Pod %s: status=%s>" % (type(self).__name__, self.status)
class Worker(Pod):
"""A Remote Dask Worker controled by Kubernetes
Parameters
----------
scheduler: str
The address of the scheduler
name (optional):
The name passed to the dask-worker CLI at creation time.
"""
def __init__(self, scheduler: str, name=None, **kwargs):
super().__init__(**kwargs)
self.scheduler = scheduler
self.pod_template.metadata.labels["dask.org/component"] = "worker"
self.pod_template.spec.containers[0].env.append(
kubernetes.client.V1EnvVar(
name="DASK_SCHEDULER_ADDRESS", value=self.scheduler
)
)
if name is not None:
worker_name_args = ["--name", str(name)]
self.pod_template.spec.containers[0].args += worker_name_args
class Scheduler(Pod):
"""A Remote Dask Scheduler controled by Kubernetes
Parameters
----------
idle_timeout: str, optional
The scheduler task will exit after this amount of time
if there are no requests from the client. Default is to
never timeout.
service_wait_timeout_s: int (optional)
Timeout, in seconds, to wait for the remote scheduler service to be ready.
Defaults to 30 seconds.
Set to 0 to disable the timeout (not recommended).
"""
def __init__(
self,
idle_timeout: str,
service_wait_timeout_s: int = None,
service_name_retries: int = None,
**kwargs
):
super().__init__(**kwargs)
self.cluster._log("Creating scheduler pod on cluster. This may take some time.")
self.service = None
self._idle_timeout = idle_timeout
self._service_wait_timeout_s = service_wait_timeout_s
self._service_name_retries = service_name_retries
if self._idle_timeout is not None:
self.pod_template.spec.containers[0].args += [
"--idle-timeout",
self._idle_timeout,
]
self.pdb = None
async def start(self, **kwargs):
await super().start(**kwargs)
while (await self.describe_pod()).status.phase == "Pending":
await asyncio.sleep(0.1)
while self.address is None:
logs = await self.logs()
for line in logs.splitlines():
if "Scheduler at:" in line:
self.address = line.split("Scheduler at:")[1].strip()
await asyncio.sleep(0.1)
self.service = await self._create_service()
self.address = "tcp://{name}.{namespace}:{port}".format(
name=self.service.metadata.name,
namespace=self.namespace,
port=SCHEDULER_PORT,
)
self.external_address = await get_external_address_for_scheduler_service(
self.core_api,
self.service,
service_name_resolution_retries=self._service_name_retries,
)
self.pdb = await self._create_pdb()
async def close(self, **kwargs):
if self.service:
await self.core_api.delete_namespaced_service(
self.cluster_name, self.namespace
)
if self.pdb:
await self.policy_api.delete_namespaced_pod_disruption_budget(
self.cluster_name, self.namespace
)
await super().close(**kwargs)
async def _create_service(self):
service_template_dict = dask.config.get("kubernetes.scheduler-service-template")
self.service_template = clean_service_template(
make_service_from_dict(service_template_dict)
)
self.service_template.metadata.name = self.cluster_name
self.service_template.metadata.labels = copy.deepcopy(self.base_labels)
self.service_template.spec.selector["dask.org/cluster-name"] = self.cluster_name
if self.service_template.spec.type is None:
self.service_template.spec.type = dask.config.get(
"kubernetes.scheduler-service-type"
)
await self.core_api.create_namespaced_service(
self.namespace, self.service_template
)
service = await self.core_api.read_namespaced_service(
self.cluster_name, self.namespace
)
if service.spec.type == "LoadBalancer":
# Wait for load balancer to be assigned
start = time.time()
while service.status.load_balancer.ingress is None:
if (
self._service_wait_timeout_s > 0
and time.time() > start + self._service_wait_timeout_s
):
raise asyncio.TimeoutError(
"Timed out waiting for Load Balancer to be provisioned."
)
service = await self.core_api.read_namespaced_service(
self.cluster_name, self.namespace
)
await asyncio.sleep(0.2)
return service
async def _create_pdb(self):
pdb_template_dict = dask.config.get("kubernetes.scheduler-pdb-template")
self.pdb_template = clean_pdb_template(make_pdb_from_dict(pdb_template_dict))
self.pdb_template.metadata.name = self.cluster_name
self.pdb_template.metadata.labels = copy.deepcopy(self.base_labels)
self.pdb_template.spec.selector.match_labels[
"dask.org/cluster-name"
] = self.cluster_name
await self.policy_api.create_namespaced_pod_disruption_budget(
self.namespace, self.pdb_template
)
return await self.policy_api.read_namespaced_pod_disruption_budget(
self.cluster_name, self.namespace
)
class KubeCluster(SpecCluster):
"""Launch a Dask cluster on Kubernetes
This starts a local Dask scheduler and then dynamically launches
Dask workers on a Kubernetes cluster. The Kubernetes cluster is taken
to be either the current one on which this code is running, or as a
fallback, the default one configured in a kubeconfig file.
**Environments**
Your worker pod image should have a similar environment to your local
environment, including versions of Python, dask, cloudpickle, and any
libraries that you may wish to use (like NumPy, Pandas, or Scikit-Learn).
See examples below for suggestions on how to manage and check for this.
**Network**
Since the Dask scheduler is launched locally, for it to work, we need to
be able to open network connections between this local node and all the
workers nodes on the Kubernetes cluster. If the current process is not
already on a Kubernetes node, some network configuration will likely be
required to make this work.
**Resources**
Your Kubernetes resource limits and requests should match the
``--memory-limit`` and ``--nthreads`` parameters given to the
``dask-worker`` command.
Parameters
----------
pod_template: (kubernetes.client.V1Pod, dict, str)
A Kubernetes specification for a Pod for a dask worker. Can be either a
``V1Pod``, a dict representation of a pod, or a path to a yaml file
containing a pod specification.
scheduler_pod_template: kubernetes.client.V1Pod (optional)
A Kubernetes specification for a Pod for a dask scheduler.
Defaults to the pod_template.
name: str (optional)
Name given to the pods. Defaults to ``dask-$USER-random``
namespace: str (optional)
Namespace in which to launch the workers.
Defaults to current namespace if available or "default"
n_workers: int
Number of workers on initial launch.
Use ``scale`` to change this number in the future
env: Dict[str, str]
Dictionary of environment variables to pass to worker pod
host: str
Listen address for local scheduler. Defaults to 0.0.0.0
port: int
Port of local scheduler
auth: List[ClusterAuth] (optional)
Configuration methods to attempt in order. Defaults to
``[InCluster(), KubeConfig()]``.
idle_timeout: str (optional)
The scheduler task will exit after this amount of time
if there are no requests from the client. Default is to
never timeout.
scheduler_service_wait_timeout: int (optional)
Timeout, in seconds, to wait for the remote scheduler service to be ready.
Defaults to 30 seconds.
Set to 0 to disable the timeout (not recommended).
scheduler_service_name_resolution_retries: int (optional)
Number of retries to resolve scheduler service name when running
from within the Kubernetes cluster.
Defaults to 20.
Must be set to 1 or greater.
deploy_mode: str (optional)
Run the scheduler as "local" or "remote".
Defaults to ``"remote"``.
**kwargs: dict
Additional keyword arguments to pass to LocalCluster
Examples
--------
>>> from dask_kubernetes import KubeCluster, make_pod_spec
>>> pod_spec = make_pod_spec(image='ghcr.io/dask/dask:latest',
... memory_limit='4G', memory_request='4G',
... cpu_limit=1, cpu_request=1,
... env={'EXTRA_PIP_PACKAGES': 'fastparquet git+https://github.com/dask/distributed'})
>>> cluster = KubeCluster(pod_spec)
>>> cluster.scale(10)
You can also create clusters with worker pod specifications as dictionaries
or stored in YAML files
>>> cluster = KubeCluster('worker-template.yml')
>>> cluster = KubeCluster({...})
Rather than explicitly setting a number of workers you can also ask the
cluster to allocate workers dynamically based on current workload
>>> cluster.adapt()
You can pass this cluster directly to a Dask client
>>> from dask.distributed import Client
>>> client = Client(cluster)
You can verify that your local environment matches your worker environments
by calling ``client.get_versions(check=True)``. This will raise an
informative error if versions do not match.
>>> client.get_versions(check=True)
The ``ghcr.io/dask/dask`` docker images support ``EXTRA_PIP_PACKAGES``,
``EXTRA_APT_PACKAGES`` and ``EXTRA_CONDA_PACKAGES`` environment variables
to help with small adjustments to the worker environments. We recommend
the use of pip over conda in this case due to a much shorter startup time.
These environment variables can be modified directly from the KubeCluster
constructor methods using the ``env=`` keyword. You may list as many
packages as you like in a single string like the following:
>>> pip = 'pyarrow gcsfs git+https://github.com/dask/distributed'
>>> conda = '-c conda-forge scikit-learn'
>>> KubeCluster(..., env={'EXTRA_PIP_PACKAGES': pip,
... 'EXTRA_CONDA_PACKAGES': conda})
You can also start a KubeCluster with no arguments *if* the worker template
is specified in the Dask config files, either as a full template in
``kubernetes.worker-template`` or a path to a YAML file in
``kubernetes.worker-template-path``.
See https://docs.dask.org/en/latest/configuration.html for more
information about setting configuration values.::
$ export DASK_KUBERNETES__WORKER_TEMPLATE_PATH=worker_template.yaml
>>> cluster = KubeCluster() # automatically finds 'worker_template.yaml'
See Also
--------
KubeCluster.adapt
"""
def __init__(
self,
pod_template=None,
name=None,
namespace=None,
n_workers=None,
host=None,
port=None,
env=None,
auth=ClusterAuth.DEFAULT,
idle_timeout=None,
deploy_mode=None,
interface=None,
protocol=None,
dashboard_address=None,
security=None,
scheduler_service_wait_timeout=None,
scheduler_service_name_resolution_retries=None,
scheduler_pod_template=None,
**kwargs
):
if isinstance(pod_template, str):
with open(pod_template) as f:
pod_template = dask.config.expand_environment_variables(
yaml.safe_load(f)
)
if isinstance(pod_template, dict):
pod_template = make_pod_from_dict(pod_template)
if isinstance(scheduler_pod_template, str):
with open(scheduler_pod_template) as f:
scheduler_pod_template = dask.config.expand_environment_variables(
yaml.safe_load(f)
)
if isinstance(scheduler_pod_template, dict):
scheduler_pod_template = make_pod_from_dict(scheduler_pod_template)
self.pod_template = pod_template
self.scheduler_pod_template = scheduler_pod_template
self._generate_name = dask.config.get("kubernetes.name", override_with=name)
self.namespace = dask.config.get(
"kubernetes.namespace", override_with=namespace
)
self._n_workers = dask.config.get(
"kubernetes.count.start", override_with=n_workers
)
self._idle_timeout = dask.config.get(
"kubernetes.idle-timeout", override_with=idle_timeout
)
self._deploy_mode = dask.config.get(
"kubernetes.deploy-mode", override_with=deploy_mode
)
self._protocol = dask.config.get("kubernetes.protocol", override_with=protocol)
self._interface = dask.config.get(
"kubernetes.interface", override_with=interface
)
self._dashboard_address = dask.config.get(
"kubernetes.dashboard_address", override_with=dashboard_address
)
self._scheduler_service_wait_timeout = dask.config.get(
"kubernetes.scheduler-service-wait-timeout",
override_with=scheduler_service_wait_timeout,
)
self._scheduler_service_name_resolution_retries = dask.config.get(
"kubernetes.scheduler-service-name-resolution-retries",
override_with=scheduler_service_name_resolution_retries,
)
self.security = security
if self.security and not isinstance(
self.security, distributed.security.Security
):
raise RuntimeError(
"Security object is not a valid distributed.security.Security object"
)
self.host = dask.config.get("kubernetes.host", override_with=host)
self.port = dask.config.get("kubernetes.port", override_with=port)
self.env = dask.config.get("kubernetes.env", override_with=env)
self.auth = auth
self.kwargs = kwargs
super().__init__(**self.kwargs)
def _get_pod_template(self, pod_template, pod_type):
if not pod_template and dask.config.get(
"kubernetes.{}-template".format(pod_type), None
):
d = dask.config.get("kubernetes.{}-template".format(pod_type))
d = dask.config.expand_environment_variables(d)
pod_template = make_pod_from_dict(d)
if not pod_template and dask.config.get(
"kubernetes.{}-template-path".format(pod_type), None
):
import yaml
fn = dask.config.get("kubernetes.{}-template-path".format(pod_type))
fn = fn.format(**os.environ)
with open(fn) as f:
d = yaml.safe_load(f)
d = dask.config.expand_environment_variables(d)
pod_template = make_pod_from_dict(d)
return pod_template
def _fill_pod_templates(self, pod_template, pod_type):
pod_template = copy.deepcopy(pod_template)
# Default labels that can't be overwritten
pod_template.metadata.labels["dask.org/cluster-name"] = self._generate_name
pod_template.metadata.labels["dask.org/component"] = pod_type
pod_template.metadata.labels["user"] = escape(getpass.getuser())
pod_template.metadata.labels["app"] = "dask"
pod_template.metadata.namespace = self.namespace
if self.env:
pod_template.spec.containers[0].env.extend(
[
kubernetes.client.V1EnvVar(name=k, value=str(v))
for k, v in self.env.items()
]
)
pod_template.metadata.generate_name = self._generate_name
return pod_template
async def _start(self):
self.pod_template = self._get_pod_template(self.pod_template, pod_type="worker")
self.scheduler_pod_template = self._get_pod_template(
self.scheduler_pod_template, pod_type="scheduler"
)
if not self.pod_template:
msg = (
"Worker pod specification not provided. See KubeCluster "
"docstring for ways to specify workers"
)
raise ValueError(msg)
base_pod_template = self.pod_template
self.pod_template = clean_pod_template(self.pod_template, pod_type="worker")
if not self.scheduler_pod_template:
self.scheduler_pod_template = base_pod_template
self.scheduler_pod_template.spec.containers[0].args = ["dask-scheduler"]
self.scheduler_pod_template = clean_pod_template(
self.scheduler_pod_template, pod_type="scheduler"
)
await ClusterAuth.load_first(self.auth)
self.core_api = kubernetes.client.CoreV1Api()
self.policy_api = kubernetes.client.PolicyV1beta1Api()
if self.namespace is None:
self.namespace = namespace_default()
environ = {k: v for k, v in os.environ.items() if k not in ["user", "uuid"]}
self._generate_name = self._generate_name.format(
user=getpass.getuser(), uuid=str(uuid.uuid4())[:10], **environ
)
self._generate_name = escape(self._generate_name)
self.pod_template = self._fill_pod_templates(
self.pod_template, pod_type="worker"
)
self.scheduler_pod_template = self._fill_pod_templates(
self.scheduler_pod_template, pod_type="scheduler"
)
common_options = {
"cluster": self,
"core_api": self.core_api,
"policy_api": self.policy_api,
"namespace": self.namespace,
"loop": self.loop,
}
if self._deploy_mode == "local":
self.scheduler_spec = {
"cls": dask.distributed.Scheduler,
"options": {
"protocol": self._protocol,
"interface": self._interface,
"host": self.host,
"port": self.port,
"dashboard_address": self._dashboard_address,
"security": self.security,
},
}
elif self._deploy_mode == "remote":
self.scheduler_spec = {
"cls": Scheduler,
"options": {
"idle_timeout": self._idle_timeout,
"service_wait_timeout_s": self._scheduler_service_wait_timeout,
"service_name_retries": self._scheduler_service_name_resolution_retries,
"pod_template": self.scheduler_pod_template,
**common_options,
},
}
else:
raise RuntimeError("Unknown deploy mode %s" % self._deploy_mode)
self.new_spec = {
"cls": Worker,
"options": {"pod_template": self.pod_template, **common_options},
}
self.worker_spec = {i: self.new_spec for i in range(self._n_workers)}
self.name = self.pod_template.metadata.generate_name
await super()._start()
@classmethod
def from_dict(cls, pod_spec, **kwargs):
"""Create cluster with worker pod spec defined by Python dictionary
Deprecated, please use the `KubeCluster` constructor directly.
Examples
--------
>>> spec = {
... 'metadata': {},
... 'spec': {
... 'containers': [{
... 'args': ['dask-worker', '$(DASK_SCHEDULER_ADDRESS)',
... '--nthreads', '1',
... '--death-timeout', '60'],
... 'command': None,
... 'image': 'ghcr.io/dask/dask:latest',
... 'name': 'dask-worker',
... }],
... 'restartPolicy': 'Never',
... }
... }
>>> cluster = KubeCluster.from_dict(spec, namespace='my-ns') # doctest: +SKIP
See Also
--------
KubeCluster.from_yaml
"""
warnings.warn(
"KubeCluster.from_dict is deprecated, use the constructor directly"
)
return cls(pod_spec, **kwargs)
@classmethod
def | (cls, yaml_path, **kwargs):
"""Create cluster with worker pod spec defined by a YAML file
Deprecated, please use the `KubeCluster` constructor directly.
We can start a cluster with pods defined in an accompanying YAML file
like the following:
.. code-block:: yaml
kind: Pod
metadata:
labels:
foo: bar
baz: quux
spec:
containers:
- image: ghcr.io/dask/dask:latest
name: dask-worker
args: [dask-worker, $(DASK_SCHEDULER_ADDRESS), --nthreads, '2', --memory-limit, 8GB]
restartPolicy: Never
Examples
--------
>>> cluster = KubeCluster.from_yaml('pod.yaml', namespace='my-ns') # doctest: +SKIP
See Also
--------
KubeCluster.from_dict
"""
warnings.warn(
"KubeCluster.from_yaml is deprecated, use the constructor directly"
)
return cls(yaml_path, **kwargs)
def scale(self, n):
# A shim to maintain backward compatibility
# https://github.com/dask/distributed/issues/3054
maximum = dask.config.get("kubernetes.count.max")
if maximum is not None and maximum < n:
logger.info(
"Tried to scale beyond maximum number of workers %d > %d", n, maximum
)
n = maximum
return super().scale(n)
async def _logs(self, scheduler=True, workers=True):
"""Return logs for the scheduler and workers
Parameters
----------
scheduler : boolean
Whether or not to collect logs for the scheduler
workers : boolean or Iterable[str], optional
A list of worker addresses to select.
Defaults to all workers if `True` or no workers if `False`
Returns
-------
logs: Dict[str]
A dictionary of logs, with one item for the scheduler and one for
each worker
"""
logs = Logs()
if scheduler:
logs["Scheduler"] = await self.scheduler.logs()
if workers:
worker_logs = await asyncio.gather(
*[w.logs() for w in self.workers.values()]
)
for key, log in zip(self.workers, worker_logs):
logs[key] = log
return logs
| from_yaml |
azurefirewallfqdntags.go | package network
// Copyright (c) Microsoft and contributors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
import (
"context"
"github.com/Azure/go-autorest/autorest"
"github.com/Azure/go-autorest/autorest/azure"
"github.com/Azure/go-autorest/tracing"
"net/http"
)
// AzureFirewallFqdnTagsClient is the network Client
type AzureFirewallFqdnTagsClient struct {
BaseClient
}
// NewAzureFirewallFqdnTagsClient creates an instance of the AzureFirewallFqdnTagsClient client.
func NewAzureFirewallFqdnTagsClient(subscriptionID string) AzureFirewallFqdnTagsClient {
return NewAzureFirewallFqdnTagsClientWithBaseURI(DefaultBaseURI, subscriptionID)
}
// NewAzureFirewallFqdnTagsClientWithBaseURI creates an instance of the AzureFirewallFqdnTagsClient client using a
// custom endpoint. Use this when interacting with an Azure cloud that uses a non-standard base URI (sovereign clouds,
// Azure stack).
func | (baseURI string, subscriptionID string) AzureFirewallFqdnTagsClient {
return AzureFirewallFqdnTagsClient{NewWithBaseURI(baseURI, subscriptionID)}
}
// ListAll gets all the Azure Firewall FQDN Tags in a subscription.
func (client AzureFirewallFqdnTagsClient) ListAll(ctx context.Context) (result AzureFirewallFqdnTagListResultPage, err error) {
if tracing.IsEnabled() {
ctx = tracing.StartSpan(ctx, fqdn+"/AzureFirewallFqdnTagsClient.ListAll")
defer func() {
sc := -1
if result.afftlr.Response.Response != nil {
sc = result.afftlr.Response.Response.StatusCode
}
tracing.EndSpan(ctx, sc, err)
}()
}
result.fn = client.listAllNextResults
req, err := client.ListAllPreparer(ctx)
if err != nil {
err = autorest.NewErrorWithError(err, "network.AzureFirewallFqdnTagsClient", "ListAll", nil, "Failure preparing request")
return
}
resp, err := client.ListAllSender(req)
if err != nil {
result.afftlr.Response = autorest.Response{Response: resp}
err = autorest.NewErrorWithError(err, "network.AzureFirewallFqdnTagsClient", "ListAll", resp, "Failure sending request")
return
}
result.afftlr, err = client.ListAllResponder(resp)
if err != nil {
err = autorest.NewErrorWithError(err, "network.AzureFirewallFqdnTagsClient", "ListAll", resp, "Failure responding to request")
return
}
if result.afftlr.hasNextLink() && result.afftlr.IsEmpty() {
err = result.NextWithContext(ctx)
return
}
return
}
// ListAllPreparer prepares the ListAll request.
func (client AzureFirewallFqdnTagsClient) ListAllPreparer(ctx context.Context) (*http.Request, error) {
pathParameters := map[string]interface{}{
"subscriptionId": autorest.Encode("path", client.SubscriptionID),
}
const APIVersion = "2019-07-01"
queryParameters := map[string]interface{}{
"api-version": APIVersion,
}
preparer := autorest.CreatePreparer(
autorest.AsGet(),
autorest.WithBaseURL(client.BaseURI),
autorest.WithPathParameters("/subscriptions/{subscriptionId}/providers/Microsoft.Network/azureFirewallFqdnTags", pathParameters),
autorest.WithQueryParameters(queryParameters))
return preparer.Prepare((&http.Request{}).WithContext(ctx))
}
// ListAllSender sends the ListAll request. The method will close the
// http.Response Body if it receives an error.
func (client AzureFirewallFqdnTagsClient) ListAllSender(req *http.Request) (*http.Response, error) {
return client.Send(req, azure.DoRetryWithRegistration(client.Client))
}
// ListAllResponder handles the response to the ListAll request. The method always
// closes the http.Response Body.
func (client AzureFirewallFqdnTagsClient) ListAllResponder(resp *http.Response) (result AzureFirewallFqdnTagListResult, err error) {
err = autorest.Respond(
resp,
azure.WithErrorUnlessStatusCode(http.StatusOK),
autorest.ByUnmarshallingJSON(&result),
autorest.ByClosing())
result.Response = autorest.Response{Response: resp}
return
}
// listAllNextResults retrieves the next set of results, if any.
func (client AzureFirewallFqdnTagsClient) listAllNextResults(ctx context.Context, lastResults AzureFirewallFqdnTagListResult) (result AzureFirewallFqdnTagListResult, err error) {
req, err := lastResults.azureFirewallFqdnTagListResultPreparer(ctx)
if err != nil {
return result, autorest.NewErrorWithError(err, "network.AzureFirewallFqdnTagsClient", "listAllNextResults", nil, "Failure preparing next results request")
}
if req == nil {
return
}
resp, err := client.ListAllSender(req)
if err != nil {
result.Response = autorest.Response{Response: resp}
return result, autorest.NewErrorWithError(err, "network.AzureFirewallFqdnTagsClient", "listAllNextResults", resp, "Failure sending next results request")
}
result, err = client.ListAllResponder(resp)
if err != nil {
err = autorest.NewErrorWithError(err, "network.AzureFirewallFqdnTagsClient", "listAllNextResults", resp, "Failure responding to next results request")
}
return
}
// ListAllComplete enumerates all values, automatically crossing page boundaries as required.
func (client AzureFirewallFqdnTagsClient) ListAllComplete(ctx context.Context) (result AzureFirewallFqdnTagListResultIterator, err error) {
if tracing.IsEnabled() {
ctx = tracing.StartSpan(ctx, fqdn+"/AzureFirewallFqdnTagsClient.ListAll")
defer func() {
sc := -1
if result.Response().Response.Response != nil {
sc = result.page.Response().Response.Response.StatusCode
}
tracing.EndSpan(ctx, sc, err)
}()
}
result.page, err = client.ListAll(ctx)
return
}
| NewAzureFirewallFqdnTagsClientWithBaseURI |
test_models.py | from django.test import TestCase
from django.contrib.auth import get_user_model
class ModelTests(TestCase):
def test_create_user_with_email_successful(self):
"""Test creating a new user with email """
email = "[email protected]"
password = "aqurds123"
user = get_user_model().objects.create_user(email, password)
self.assertEqual(user.email, email)
self.assertTrue(user.check_password(password))
def | (self):
"""Test if the email is normalized or not"""
email = "[email protected]"
password = "aqurds123"
user = get_user_model().objects.create_user(email, password)
self.assertEqual(user.email, email.lower())
def test_email_validation_for_user(self):
"""Test will validate user email.
None is not allowed and will raise ValueError"""
with self.assertRaises(ValueError):
get_user_model().objects.create_user(None, "aqurds123")
def test_create_super_user(self):
"""Test creating a new super user with email"""
email = "[email protected]"
password = "super_user_123"
super_user = get_user_model().objects.create_superuser(email, password)
self.assertTrue(super_user.is_superuser)
self.assertTrue(super_user.is_staff)
| test_email_normalize |
httpresponse.rs | //! Http response
use std::cell::UnsafeCell;
use std::collections::VecDeque;
use std::io::Write;
use std::rc::Rc;
use std::{fmt, mem, str};
use bytes::{BufMut, Bytes, BytesMut};
use cookie::{Cookie, CookieJar};
use futures::Stream;
use http::header::{self, HeaderName, HeaderValue};
use http::{Error as HttpError, HeaderMap, HttpTryFrom, StatusCode, Version};
use serde::Serialize;
use serde_json;
use body::Body;
use client::ClientResponse;
use error::Error;
use handler::Responder;
use header::{ContentEncoding, Header, IntoHeaderValue};
use httpmessage::HttpMessage;
use httprequest::HttpRequest;
/// max write buffer size 64k
pub(crate) const MAX_WRITE_BUFFER_SIZE: usize = 65_536;
/// Represents various types of connection
#[derive(Copy, Clone, PartialEq, Debug)]
pub enum ConnectionType {
/// Close connection after response
Close,
/// Keep connection alive after response
KeepAlive,
/// Connection is upgraded to different type
Upgrade,
}
/// An HTTP Response
pub struct HttpResponse(
Option<Box<InnerHttpResponse>>,
Rc<UnsafeCell<HttpResponsePool>>,
);
impl Drop for HttpResponse {
fn drop(&mut self) {
if let Some(inner) = self.0.take() {
HttpResponsePool::release(&self.1, inner)
}
}
}
impl HttpResponse {
#[inline(always)]
#[cfg_attr(feature = "cargo-clippy", allow(inline_always))]
fn get_ref(&self) -> &InnerHttpResponse {
self.0.as_ref().unwrap()
}
#[inline(always)]
#[cfg_attr(feature = "cargo-clippy", allow(inline_always))]
fn get_mut(&mut self) -> &mut InnerHttpResponse {
self.0.as_mut().unwrap()
}
/// Create http response builder with specific status.
#[inline]
pub fn build(status: StatusCode) -> HttpResponseBuilder {
HttpResponsePool::get(status)
}
/// Create http response builder
#[inline]
pub fn build_from<T: Into<HttpResponseBuilder>>(source: T) -> HttpResponseBuilder {
source.into()
}
/// Constructs a response
#[inline]
pub fn new(status: StatusCode) -> HttpResponse {
HttpResponsePool::with_body(status, Body::Empty)
}
/// Constructs a response with body
#[inline]
pub fn with_body<B: Into<Body>>(status: StatusCode, body: B) -> HttpResponse {
HttpResponsePool::with_body(status, body.into())
}
/// Constructs a error response
#[inline]
pub fn from_error(error: Error) -> HttpResponse {
let mut resp = error.cause().error_response();
resp.get_mut().error = Some(error);
resp
}
/// Convert `HttpResponse` to a `HttpResponseBuilder`
#[inline]
pub fn into_builder(mut self) -> HttpResponseBuilder {
let response = self.0.take();
let pool = Some(Rc::clone(&self.1));
HttpResponseBuilder {
response,
pool,
err: None,
cookies: None, // TODO: convert set-cookie headers
}
}
/// The source `error` for this response
#[inline]
pub fn error(&self) -> Option<&Error> {
self.get_ref().error.as_ref()
}
/// Get the HTTP version of this response
#[inline]
pub fn version(&self) -> Option<Version> {
self.get_ref().version
}
/// Get the headers from the response
#[inline]
pub fn headers(&self) -> &HeaderMap {
&self.get_ref().headers
}
/// Get a mutable reference to the headers
#[inline]
pub fn headers_mut(&mut self) -> &mut HeaderMap {
&mut self.get_mut().headers
}
/// Get the response status code
#[inline]
pub fn status(&self) -> StatusCode {
self.get_ref().status
}
/// Set the `StatusCode` for this response
#[inline]
pub fn status_mut(&mut self) -> &mut StatusCode {
&mut self.get_mut().status
}
/// Get custom reason for the response
#[inline]
pub fn reason(&self) -> &str {
if let Some(reason) = self.get_ref().reason {
reason
} else {
self.get_ref() | }
}
/// Set the custom reason for the response
#[inline]
pub fn set_reason(&mut self, reason: &'static str) -> &mut Self {
self.get_mut().reason = Some(reason);
self
}
/// Set connection type
pub fn set_connection_type(&mut self, conn: ConnectionType) -> &mut Self {
self.get_mut().connection_type = Some(conn);
self
}
/// Connection upgrade status
#[inline]
pub fn upgrade(&self) -> bool {
self.get_ref().connection_type == Some(ConnectionType::Upgrade)
}
/// Keep-alive status for this connection
pub fn keep_alive(&self) -> Option<bool> {
if let Some(ct) = self.get_ref().connection_type {
match ct {
ConnectionType::KeepAlive => Some(true),
ConnectionType::Close | ConnectionType::Upgrade => Some(false),
}
} else {
None
}
}
/// is chunked encoding enabled
#[inline]
pub fn chunked(&self) -> Option<bool> {
self.get_ref().chunked
}
/// Content encoding
#[inline]
pub fn content_encoding(&self) -> Option<ContentEncoding> {
self.get_ref().encoding
}
/// Set content encoding
pub fn set_content_encoding(&mut self, enc: ContentEncoding) -> &mut Self {
self.get_mut().encoding = Some(enc);
self
}
/// Get body os this response
#[inline]
pub fn body(&self) -> &Body {
&self.get_ref().body
}
/// Set a body
pub fn set_body<B: Into<Body>>(&mut self, body: B) {
self.get_mut().body = body.into();
}
/// Set a body and return previous body value
pub fn replace_body<B: Into<Body>>(&mut self, body: B) -> Body {
mem::replace(&mut self.get_mut().body, body.into())
}
/// Size of response in bytes, excluding HTTP headers
pub fn response_size(&self) -> u64 {
self.get_ref().response_size
}
/// Set content encoding
pub(crate) fn set_response_size(&mut self, size: u64) {
self.get_mut().response_size = size;
}
/// Set write buffer capacity
pub fn write_buffer_capacity(&self) -> usize {
self.get_ref().write_capacity
}
/// Set write buffer capacity
pub fn set_write_buffer_capacity(&mut self, cap: usize) {
self.get_mut().write_capacity = cap;
}
}
impl fmt::Debug for HttpResponse {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let res = writeln!(
f,
"\nHttpResponse {:?} {}{}",
self.get_ref().version,
self.get_ref().status,
self.get_ref().reason.unwrap_or("")
);
let _ = writeln!(f, " encoding: {:?}", self.get_ref().encoding);
let _ = writeln!(f, " headers:");
for (key, val) in self.get_ref().headers.iter() {
let _ = writeln!(f, " {:?}: {:?}", key, val);
}
res
}
}
/// An HTTP response builder
///
/// This type can be used to construct an instance of `HttpResponse` through a
/// builder-like pattern.
pub struct HttpResponseBuilder {
response: Option<Box<InnerHttpResponse>>,
pool: Option<Rc<UnsafeCell<HttpResponsePool>>>,
err: Option<HttpError>,
cookies: Option<CookieJar>,
}
impl HttpResponseBuilder {
/// Set HTTP status code of this response.
#[inline]
pub fn status(&mut self, status: StatusCode) -> &mut Self {
if let Some(parts) = parts(&mut self.response, &self.err) {
parts.status = status;
}
self
}
/// Set HTTP version of this response.
///
/// By default response's http version depends on request's version.
#[inline]
pub fn version(&mut self, version: Version) -> &mut Self {
if let Some(parts) = parts(&mut self.response, &self.err) {
parts.version = Some(version);
}
self
}
/// Set a header.
///
/// ```rust
/// # extern crate actix_web;
/// use actix_web::{HttpRequest, HttpResponse, Result, http};
///
/// fn index(req: HttpRequest) -> Result<HttpResponse> {
/// Ok(HttpResponse::Ok()
/// .set(http::header::IfModifiedSince("Sun, 07 Nov 1994 08:48:37 GMT".parse()?))
/// .finish())
/// }
/// fn main() {}
/// ```
#[doc(hidden)]
pub fn set<H: Header>(&mut self, hdr: H) -> &mut Self {
if let Some(parts) = parts(&mut self.response, &self.err) {
match hdr.try_into() {
Ok(value) => {
parts.headers.append(H::name(), value);
}
Err(e) => self.err = Some(e.into()),
}
}
self
}
/// Set a header.
///
/// ```rust
/// # extern crate actix_web;
/// use actix_web::{http, HttpRequest, HttpResponse};
///
/// fn index(req: HttpRequest) -> HttpResponse {
/// HttpResponse::Ok()
/// .header("X-TEST", "value")
/// .header(http::header::CONTENT_TYPE, "application/json")
/// .finish()
/// }
/// fn main() {}
/// ```
pub fn header<K, V>(&mut self, key: K, value: V) -> &mut Self
where
HeaderName: HttpTryFrom<K>,
V: IntoHeaderValue,
{
if let Some(parts) = parts(&mut self.response, &self.err) {
match HeaderName::try_from(key) {
Ok(key) => match value.try_into() {
Ok(value) => {
parts.headers.append(key, value);
}
Err(e) => self.err = Some(e.into()),
},
Err(e) => self.err = Some(e.into()),
};
}
self
}
/// Set the custom reason for the response.
#[inline]
pub fn reason(&mut self, reason: &'static str) -> &mut Self {
if let Some(parts) = parts(&mut self.response, &self.err) {
parts.reason = Some(reason);
}
self
}
/// Set content encoding.
///
/// By default `ContentEncoding::Auto` is used, which automatically
/// negotiates content encoding based on request's `Accept-Encoding`
/// headers. To enforce specific encoding, use specific
/// ContentEncoding` value.
#[inline]
pub fn content_encoding(&mut self, enc: ContentEncoding) -> &mut Self {
if let Some(parts) = parts(&mut self.response, &self.err) {
parts.encoding = Some(enc);
}
self
}
/// Set connection type
#[inline]
#[doc(hidden)]
pub fn connection_type(&mut self, conn: ConnectionType) -> &mut Self {
if let Some(parts) = parts(&mut self.response, &self.err) {
parts.connection_type = Some(conn);
}
self
}
/// Set connection type to Upgrade
#[inline]
#[doc(hidden)]
pub fn upgrade(&mut self) -> &mut Self {
self.connection_type(ConnectionType::Upgrade)
}
/// Force close connection, even if it is marked as keep-alive
#[inline]
pub fn force_close(&mut self) -> &mut Self {
self.connection_type(ConnectionType::Close)
}
/// Enables automatic chunked transfer encoding
#[inline]
pub fn chunked(&mut self) -> &mut Self {
if let Some(parts) = parts(&mut self.response, &self.err) {
parts.chunked = Some(true);
}
self
}
/// Force disable chunked encoding
#[inline]
pub fn no_chunking(&mut self) -> &mut Self {
if let Some(parts) = parts(&mut self.response, &self.err) {
parts.chunked = Some(false);
}
self
}
/// Set response content type
#[inline]
pub fn content_type<V>(&mut self, value: V) -> &mut Self
where
HeaderValue: HttpTryFrom<V>,
{
if let Some(parts) = parts(&mut self.response, &self.err) {
match HeaderValue::try_from(value) {
Ok(value) => {
parts.headers.insert(header::CONTENT_TYPE, value);
}
Err(e) => self.err = Some(e.into()),
};
}
self
}
/// Set content length
#[inline]
pub fn content_length(&mut self, len: u64) -> &mut Self {
let mut wrt = BytesMut::new().writer();
let _ = write!(wrt, "{}", len);
self.header(header::CONTENT_LENGTH, wrt.get_mut().take().freeze())
}
/// Set a cookie
///
/// ```rust
/// # extern crate actix_web;
/// use actix_web::{http, HttpRequest, HttpResponse, Result};
///
/// fn index(req: HttpRequest) -> HttpResponse {
/// HttpResponse::Ok()
/// .cookie(
/// http::Cookie::build("name", "value")
/// .domain("www.rust-lang.org")
/// .path("/")
/// .secure(true)
/// .http_only(true)
/// .finish())
/// .finish()
/// }
/// fn main() {}
/// ```
pub fn cookie<'c>(&mut self, cookie: Cookie<'c>) -> &mut Self {
if self.cookies.is_none() {
let mut jar = CookieJar::new();
jar.add(cookie.into_owned());
self.cookies = Some(jar)
} else {
self.cookies
.as_mut()
.unwrap()
.add(cookie.into_owned());
}
self
}
/// Remove cookie, cookie has to be cookie from `HttpRequest::cookies()`
/// method.
pub fn del_cookie<'a>(&mut self, cookie: &Cookie<'a>) -> &mut Self {
{
if self.cookies.is_none() {
self.cookies = Some(CookieJar::new())
}
let jar = self.cookies.as_mut().unwrap();
let cookie = cookie.clone().into_owned();
jar.add_original(cookie.clone());
jar.remove(cookie);
}
self
}
/// This method calls provided closure with builder reference if value is
/// true.
pub fn if_true<F>(&mut self, value: bool, f: F) -> &mut Self
where
F: FnOnce(&mut HttpResponseBuilder),
{
if value {
f(self);
}
self
}
/// This method calls provided closure with builder reference if value is
/// Some.
pub fn if_some<T, F>(&mut self, value: Option<T>, f: F) -> &mut Self
where
F: FnOnce(T, &mut HttpResponseBuilder),
{
if let Some(val) = value {
f(val, self);
}
self
}
/// Set write buffer capacity
///
/// This parameter makes sense only for streaming response
/// or actor. If write buffer reaches specified capacity, stream or actor
/// get paused.
///
/// Default write buffer capacity is 64kb
pub fn write_buffer_capacity(&mut self, cap: usize) -> &mut Self {
if let Some(parts) = parts(&mut self.response, &self.err) {
parts.write_capacity = cap;
}
self
}
/// Set a body and generate `HttpResponse`.
///
/// `HttpResponseBuilder` can not be used after this call.
pub fn body<B: Into<Body>>(&mut self, body: B) -> HttpResponse {
if let Some(e) = self.err.take() {
return Error::from(e).into();
}
let mut response = self.response
.take()
.expect("cannot reuse response builder");
if let Some(ref jar) = self.cookies {
for cookie in jar.delta() {
match HeaderValue::from_str(&cookie.to_string()) {
Ok(val) => response.headers.append(header::SET_COOKIE, val),
Err(e) => return Error::from(e).into(),
};
}
}
response.body = body.into();
HttpResponse(Some(response), self.pool.take().unwrap())
}
#[inline]
/// Set a streaming body and generate `HttpResponse`.
///
/// `HttpResponseBuilder` can not be used after this call.
pub fn streaming<S, E>(&mut self, stream: S) -> HttpResponse
where
S: Stream<Item = Bytes, Error = E> + 'static,
E: Into<Error>,
{
self.body(Body::Streaming(Box::new(
stream.map_err(|e| e.into()),
)))
}
/// Set a json body and generate `HttpResponse`
///
/// `HttpResponseBuilder` can not be used after this call.
pub fn json<T: Serialize>(&mut self, value: T) -> HttpResponse {
match serde_json::to_string(&value) {
Ok(body) => {
let contains = if let Some(parts) = parts(&mut self.response, &self.err)
{
parts.headers.contains_key(header::CONTENT_TYPE)
} else {
true
};
if !contains {
self.header(header::CONTENT_TYPE, "application/json");
}
self.body(body)
}
Err(e) => Error::from(e).into(),
}
}
#[inline]
/// Set an empty body and generate `HttpResponse`
///
/// `HttpResponseBuilder` can not be used after this call.
pub fn finish(&mut self) -> HttpResponse {
self.body(Body::Empty)
}
/// This method construct new `HttpResponseBuilder`
pub fn take(&mut self) -> HttpResponseBuilder {
HttpResponseBuilder {
response: self.response.take(),
pool: self.pool.take(),
err: self.err.take(),
cookies: self.cookies.take(),
}
}
}
#[inline]
#[cfg_attr(feature = "cargo-clippy", allow(borrowed_box))]
fn parts<'a>(
parts: &'a mut Option<Box<InnerHttpResponse>>, err: &Option<HttpError>,
) -> Option<&'a mut Box<InnerHttpResponse>> {
if err.is_some() {
return None;
}
parts.as_mut()
}
/// Helper converters
impl<I: Into<HttpResponse>, E: Into<Error>> From<Result<I, E>> for HttpResponse {
fn from(res: Result<I, E>) -> Self {
match res {
Ok(val) => val.into(),
Err(err) => err.into().into(),
}
}
}
impl From<HttpResponseBuilder> for HttpResponse {
fn from(mut builder: HttpResponseBuilder) -> Self {
builder.finish()
}
}
impl Responder for HttpResponseBuilder {
type Item = HttpResponse;
type Error = Error;
#[inline]
fn respond_to(mut self, _: HttpRequest) -> Result<HttpResponse, Error> {
Ok(self.finish())
}
}
impl From<&'static str> for HttpResponse {
fn from(val: &'static str) -> Self {
HttpResponse::Ok()
.content_type("text/plain; charset=utf-8")
.body(val)
}
}
impl Responder for &'static str {
type Item = HttpResponse;
type Error = Error;
fn respond_to(self, req: HttpRequest) -> Result<HttpResponse, Error> {
Ok(req.build_response(StatusCode::OK)
.content_type("text/plain; charset=utf-8")
.body(self))
}
}
impl From<&'static [u8]> for HttpResponse {
fn from(val: &'static [u8]) -> Self {
HttpResponse::Ok()
.content_type("application/octet-stream")
.body(val)
}
}
impl Responder for &'static [u8] {
type Item = HttpResponse;
type Error = Error;
fn respond_to(self, req: HttpRequest) -> Result<HttpResponse, Error> {
Ok(req.build_response(StatusCode::OK)
.content_type("application/octet-stream")
.body(self))
}
}
impl From<String> for HttpResponse {
fn from(val: String) -> Self {
HttpResponse::Ok()
.content_type("text/plain; charset=utf-8")
.body(val)
}
}
impl Responder for String {
type Item = HttpResponse;
type Error = Error;
fn respond_to(self, req: HttpRequest) -> Result<HttpResponse, Error> {
Ok(req.build_response(StatusCode::OK)
.content_type("text/plain; charset=utf-8")
.body(self))
}
}
impl<'a> From<&'a String> for HttpResponse {
fn from(val: &'a String) -> Self {
HttpResponse::build(StatusCode::OK)
.content_type("text/plain; charset=utf-8")
.body(val)
}
}
impl<'a> Responder for &'a String {
type Item = HttpResponse;
type Error = Error;
fn respond_to(self, req: HttpRequest) -> Result<HttpResponse, Error> {
Ok(req.build_response(StatusCode::OK)
.content_type("text/plain; charset=utf-8")
.body(self))
}
}
impl From<Bytes> for HttpResponse {
fn from(val: Bytes) -> Self {
HttpResponse::Ok()
.content_type("application/octet-stream")
.body(val)
}
}
impl Responder for Bytes {
type Item = HttpResponse;
type Error = Error;
fn respond_to(self, req: HttpRequest) -> Result<HttpResponse, Error> {
Ok(req.build_response(StatusCode::OK)
.content_type("application/octet-stream")
.body(self))
}
}
impl From<BytesMut> for HttpResponse {
fn from(val: BytesMut) -> Self {
HttpResponse::Ok()
.content_type("application/octet-stream")
.body(val)
}
}
impl Responder for BytesMut {
type Item = HttpResponse;
type Error = Error;
fn respond_to(self, req: HttpRequest) -> Result<HttpResponse, Error> {
Ok(req.build_response(StatusCode::OK)
.content_type("application/octet-stream")
.body(self))
}
}
/// Create `HttpResponseBuilder` from `ClientResponse`
///
/// It is useful for proxy response. This implementation
/// copies all responses's headers and status.
impl<'a> From<&'a ClientResponse> for HttpResponseBuilder {
fn from(resp: &'a ClientResponse) -> HttpResponseBuilder {
let mut builder = HttpResponse::build(resp.status());
for (key, value) in resp.headers() {
builder.header(key.clone(), value.clone());
}
builder
}
}
impl<'a, S> From<&'a HttpRequest<S>> for HttpResponseBuilder {
fn from(req: &'a HttpRequest<S>) -> HttpResponseBuilder {
if let Some(router) = req.router() {
router
.server_settings()
.get_response_builder(StatusCode::OK)
} else {
HttpResponse::Ok()
}
}
}
#[derive(Debug)]
struct InnerHttpResponse {
version: Option<Version>,
headers: HeaderMap,
status: StatusCode,
reason: Option<&'static str>,
body: Body,
chunked: Option<bool>,
encoding: Option<ContentEncoding>,
connection_type: Option<ConnectionType>,
write_capacity: usize,
response_size: u64,
error: Option<Error>,
}
impl InnerHttpResponse {
#[inline]
fn new(status: StatusCode, body: Body) -> InnerHttpResponse {
InnerHttpResponse {
status,
body,
version: None,
headers: HeaderMap::with_capacity(16),
reason: None,
chunked: None,
encoding: None,
connection_type: None,
response_size: 0,
write_capacity: MAX_WRITE_BUFFER_SIZE,
error: None,
}
}
}
/// Internal use only! unsafe
pub(crate) struct HttpResponsePool(VecDeque<Box<InnerHttpResponse>>);
thread_local!(static POOL: Rc<UnsafeCell<HttpResponsePool>> = HttpResponsePool::pool());
impl HttpResponsePool {
pub fn pool() -> Rc<UnsafeCell<HttpResponsePool>> {
Rc::new(UnsafeCell::new(HttpResponsePool(
VecDeque::with_capacity(128),
)))
}
#[inline]
pub fn get_builder(
pool: &Rc<UnsafeCell<HttpResponsePool>>, status: StatusCode,
) -> HttpResponseBuilder {
let p = unsafe { &mut *pool.as_ref().get() };
if let Some(mut msg) = p.0.pop_front() {
msg.status = status;
HttpResponseBuilder {
response: Some(msg),
pool: Some(Rc::clone(pool)),
err: None,
cookies: None,
}
} else {
let msg = Box::new(InnerHttpResponse::new(status, Body::Empty));
HttpResponseBuilder {
response: Some(msg),
pool: Some(Rc::clone(pool)),
err: None,
cookies: None,
}
}
}
#[inline]
pub fn get_response(
pool: &Rc<UnsafeCell<HttpResponsePool>>, status: StatusCode, body: Body,
) -> HttpResponse {
let p = unsafe { &mut *pool.as_ref().get() };
if let Some(mut msg) = p.0.pop_front() {
msg.status = status;
msg.body = body;
HttpResponse(Some(msg), Rc::clone(pool))
} else {
let msg = Box::new(InnerHttpResponse::new(status, body));
HttpResponse(Some(msg), Rc::clone(pool))
}
}
#[inline]
fn get(status: StatusCode) -> HttpResponseBuilder {
POOL.with(|pool| HttpResponsePool::get_builder(pool, status))
}
#[inline]
fn with_body(status: StatusCode, body: Body) -> HttpResponse {
POOL.with(|pool| HttpResponsePool::get_response(pool, status, body))
}
#[inline(always)]
#[cfg_attr(feature = "cargo-clippy", allow(boxed_local, inline_always))]
fn release(
pool: &Rc<UnsafeCell<HttpResponsePool>>, mut inner: Box<InnerHttpResponse>,
) {
let pool = unsafe { &mut *pool.as_ref().get() };
if pool.0.len() < 128 {
inner.headers.clear();
inner.version = None;
inner.chunked = None;
inner.reason = None;
inner.encoding = None;
inner.connection_type = None;
inner.response_size = 0;
inner.error = None;
inner.write_capacity = MAX_WRITE_BUFFER_SIZE;
pool.0.push_front(inner);
}
}
}
#[cfg(test)]
mod tests {
use super::*;
use body::Binary;
use http;
use http::header::{HeaderValue, CONTENT_TYPE, COOKIE};
use http::{Method, Uri};
use std::str::FromStr;
use time::Duration;
#[test]
fn test_debug() {
let resp = HttpResponse::Ok()
.header(COOKIE, HeaderValue::from_static("cookie1=value1; "))
.header(COOKIE, HeaderValue::from_static("cookie2=value2; "))
.finish();
let dbg = format!("{:?}", resp);
assert!(dbg.contains("HttpResponse"));
}
#[test]
fn test_response_cookies() {
let mut headers = HeaderMap::new();
headers.insert(COOKIE, HeaderValue::from_static("cookie1=value1"));
headers.insert(COOKIE, HeaderValue::from_static("cookie2=value2"));
let req = HttpRequest::new(
Method::GET,
Uri::from_str("/").unwrap(),
Version::HTTP_11,
headers,
None,
);
let cookies = req.cookies().unwrap();
let resp = HttpResponse::Ok()
.cookie(
http::Cookie::build("name", "value")
.domain("www.rust-lang.org")
.path("/test")
.http_only(true)
.max_age(Duration::days(1))
.finish(),
)
.del_cookie(&cookies[0])
.finish();
let mut val: Vec<_> = resp.headers()
.get_all("Set-Cookie")
.iter()
.map(|v| v.to_str().unwrap().to_owned())
.collect();
val.sort();
assert!(val[0].starts_with("cookie2=; Max-Age=0;"));
assert_eq!(
val[1],
"name=value; HttpOnly; Path=/test; Domain=www.rust-lang.org; Max-Age=86400"
);
}
#[test]
fn test_basic_builder() {
let resp = HttpResponse::Ok()
.header("X-TEST", "value")
.version(Version::HTTP_10)
.finish();
assert_eq!(resp.version(), Some(Version::HTTP_10));
assert_eq!(resp.status(), StatusCode::OK);
}
#[test]
fn test_upgrade() {
let resp = HttpResponse::build(StatusCode::OK).upgrade().finish();
assert!(resp.upgrade())
}
#[test]
fn test_force_close() {
let resp = HttpResponse::build(StatusCode::OK)
.force_close()
.finish();
assert!(!resp.keep_alive().unwrap())
}
#[test]
fn test_content_type() {
let resp = HttpResponse::build(StatusCode::OK)
.content_type("text/plain")
.body(Body::Empty);
assert_eq!(
resp.headers().get(CONTENT_TYPE).unwrap(),
"text/plain"
)
}
#[test]
fn test_content_encoding() {
let resp = HttpResponse::build(StatusCode::OK).finish();
assert_eq!(resp.content_encoding(), None);
#[cfg(feature = "brotli")]
{
let resp = HttpResponse::build(StatusCode::OK)
.content_encoding(ContentEncoding::Br)
.finish();
assert_eq!(resp.content_encoding(), Some(ContentEncoding::Br));
}
let resp = HttpResponse::build(StatusCode::OK)
.content_encoding(ContentEncoding::Gzip)
.finish();
assert_eq!(resp.content_encoding(), Some(ContentEncoding::Gzip));
}
#[test]
fn test_json() {
let resp = HttpResponse::build(StatusCode::OK).json(vec!["v1", "v2", "v3"]);
let ct = resp.headers().get(CONTENT_TYPE).unwrap();
assert_eq!(ct, HeaderValue::from_static("application/json"));
assert_eq!(
*resp.body(),
Body::from(Bytes::from_static(b"[\"v1\",\"v2\",\"v3\"]"))
);
}
#[test]
fn test_json_ct() {
let resp = HttpResponse::build(StatusCode::OK)
.header(CONTENT_TYPE, "text/json")
.json(vec!["v1", "v2", "v3"]);
let ct = resp.headers().get(CONTENT_TYPE).unwrap();
assert_eq!(ct, HeaderValue::from_static("text/json"));
assert_eq!(
*resp.body(),
Body::from(Bytes::from_static(b"[\"v1\",\"v2\",\"v3\"]"))
);
}
impl Body {
pub(crate) fn binary(&self) -> Option<&Binary> {
match *self {
Body::Binary(ref bin) => Some(bin),
_ => None,
}
}
}
#[test]
fn test_into_response() {
let req = HttpRequest::default();
let resp: HttpResponse = "test".into();
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(
resp.headers().get(CONTENT_TYPE).unwrap(),
HeaderValue::from_static("text/plain; charset=utf-8")
);
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(resp.body().binary().unwrap(), &Binary::from("test"));
let resp: HttpResponse = "test".respond_to(req.clone()).ok().unwrap();
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(
resp.headers().get(CONTENT_TYPE).unwrap(),
HeaderValue::from_static("text/plain; charset=utf-8")
);
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(resp.body().binary().unwrap(), &Binary::from("test"));
let resp: HttpResponse = b"test".as_ref().into();
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(
resp.headers().get(CONTENT_TYPE).unwrap(),
HeaderValue::from_static("application/octet-stream")
);
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(
resp.body().binary().unwrap(),
&Binary::from(b"test".as_ref())
);
let resp: HttpResponse = b"test".as_ref().respond_to(req.clone()).ok().unwrap();
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(
resp.headers().get(CONTENT_TYPE).unwrap(),
HeaderValue::from_static("application/octet-stream")
);
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(
resp.body().binary().unwrap(),
&Binary::from(b"test".as_ref())
);
let resp: HttpResponse = "test".to_owned().into();
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(
resp.headers().get(CONTENT_TYPE).unwrap(),
HeaderValue::from_static("text/plain; charset=utf-8")
);
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(
resp.body().binary().unwrap(),
&Binary::from("test".to_owned())
);
let resp: HttpResponse = "test"
.to_owned()
.respond_to(req.clone())
.ok()
.unwrap();
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(
resp.headers().get(CONTENT_TYPE).unwrap(),
HeaderValue::from_static("text/plain; charset=utf-8")
);
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(
resp.body().binary().unwrap(),
&Binary::from("test".to_owned())
);
let resp: HttpResponse = (&"test".to_owned()).into();
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(
resp.headers().get(CONTENT_TYPE).unwrap(),
HeaderValue::from_static("text/plain; charset=utf-8")
);
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(
resp.body().binary().unwrap(),
&Binary::from(&"test".to_owned())
);
let resp: HttpResponse = (&"test".to_owned())
.respond_to(req.clone())
.ok()
.unwrap();
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(
resp.headers().get(CONTENT_TYPE).unwrap(),
HeaderValue::from_static("text/plain; charset=utf-8")
);
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(
resp.body().binary().unwrap(),
&Binary::from(&"test".to_owned())
);
let b = Bytes::from_static(b"test");
let resp: HttpResponse = b.into();
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(
resp.headers().get(CONTENT_TYPE).unwrap(),
HeaderValue::from_static("application/octet-stream")
);
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(
resp.body().binary().unwrap(),
&Binary::from(Bytes::from_static(b"test"))
);
let b = Bytes::from_static(b"test");
let resp: HttpResponse = b.respond_to(req.clone()).ok().unwrap();
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(
resp.headers().get(CONTENT_TYPE).unwrap(),
HeaderValue::from_static("application/octet-stream")
);
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(
resp.body().binary().unwrap(),
&Binary::from(Bytes::from_static(b"test"))
);
let b = BytesMut::from("test");
let resp: HttpResponse = b.into();
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(
resp.headers().get(CONTENT_TYPE).unwrap(),
HeaderValue::from_static("application/octet-stream")
);
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(
resp.body().binary().unwrap(),
&Binary::from(BytesMut::from("test"))
);
let b = BytesMut::from("test");
let resp: HttpResponse = b.respond_to(req.clone()).ok().unwrap();
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(
resp.headers().get(CONTENT_TYPE).unwrap(),
HeaderValue::from_static("application/octet-stream")
);
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(
resp.body().binary().unwrap(),
&Binary::from(BytesMut::from("test"))
);
}
#[test]
fn test_into_builder() {
let resp: HttpResponse = "test".into();
assert_eq!(resp.status(), StatusCode::OK);
let mut builder = resp.into_builder();
let resp = builder.status(StatusCode::BAD_REQUEST).finish();
assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
}
} | .status
.canonical_reason()
.unwrap_or("<unknown status code>") |
robot-return-to-origin.rs | fn main() {}
struct Solution;
impl Solution {
pub fn | (moves: String) -> bool {
let mut v = (0, 0);
for i in moves.bytes() {
match i {
b'L' => v.0 -= 1,
b'R' => v.0 += 1,
b'U' => v.1 += 1,
b'D' => v.1 -= 1,
_ => {}
}
}
v == (0, 0)
}
}
| judge_circle |
i18n_resources.go | package resources
import (
"bytes"
"compress/gzip"
"fmt"
"io"
"strings"
"os"
"time"
"io/ioutil"
"path"
"path/filepath"
)
func bindata_read(data []byte, name string) ([]byte, error) {
gz, err := gzip.NewReader(bytes.NewBuffer(data))
if err != nil {
return nil, fmt.Errorf("Read %q: %v", name, err)
}
var buf bytes.Buffer
_, err = io.Copy(&buf, gz)
gz.Close()
if err != nil {
return nil, fmt.Errorf("Read %q: %v", name, err)
}
return buf.Bytes(), nil
}
type asset struct {
bytes []byte
info os.FileInfo
}
type bindata_file_info struct {
name string
size int64
mode os.FileMode
modTime time.Time
}
func (fi bindata_file_info) Name() string {
return fi.name
}
func (fi bindata_file_info) Size() int64 {
return fi.size
}
func (fi bindata_file_info) Mode() os.FileMode {
return fi.mode
}
func (fi bindata_file_info) ModTime() time.Time {
return fi.modTime
}
func (fi bindata_file_info) IsDir() bool {
return false
}
func (fi bindata_file_info) Sys() interface{} {
return nil
}
var _cf_i18n_resources_de_de_all_json = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xec\xbd\x7b\x77\xdb\x46\xb2\x2f\xfa\xff\xfe\x14\x7d\x7d\xff\xb0\x73\x97\x28\xdb\x49\x66\xd6\xbe\xda\xeb\xac\x39\xb4\x44\xdb\x3a\xa3\xd7\x48\x94\x67\xb2\xe3\x2c\x07\x22\x5b\x24\x62\x10\xc0\xe0\x21\x85\xc9\xf6\xf9\xec\xa7\xab\xba\xf1\x22\xd1\x8d\xae\x06\x48\x79\xcf\xc9\xac\x35\xb1\x08\x74\x57\xfd\xaa\xd1\xcf\xea\x7a\xfc\xf8\x6f\x8c\xb1\xdf\xe1\x3f\xe2\x7f\xcf\xfc\xf9\xb3\x23\xf6\xec\x63\xf8\x31\x9c\x9e\x5e\x1d\x7d\x0c\x9f\x1d\x14\x6f\xb2\xc4\x0b\xd3\xc0\xcb\xfc\x28\xd4\x15\x59\x45\x73\xff\xde\xe7\x40\xe2\xde\x0b\x52\x0e\xcf\xbf\x1c\x68\xe8\xff\x10\xe5\x09\xfb\x5f\x37\x97\x17\x2c\xcd\x12\x3f\x5c\xb0\x74\x1d\x66\xde\xaf\xcc\x4f\x99\x1f\x3e\x78\x81\x3f\x3f\x64\xec\x2a\x89\x62\x9e\xd4\x5e\x65\x4b\x3f\x3d\x62\x6c\x76\xcf\x52\x9e\x8d\x92\x3c\x0c\x45\xd5\x11\x0f\x1f\xfc\x24\x0a\x57\x3c\xcc\x46\x0f\x5e\xe2\x7b\x77\x01\x1f\x2d\x92\x28\x8f\xd9\xf3\xdf\x3f\x3e\x0b\xbd\x15\xff\xf8\xec\xe8\xe3\x33\x41\x36\x17\x7f\x1d\x6c\x3f\xfa\xf2\xdc\x28\xe9\xd7\x0b\x76\xef\x6d\x9e\x66\xde\xe2\xbf\x4d\x9b\xef\x06\x2c\xa1\xcd\xff\x3f\x36\x5d\xf2\x94\x0b\x30\xc9\x83\x3f\xe3\x2c\x0e\x84\x9c\x6c\xe9\x3d\x70\xe6\x85\xcc\x4b\xd3\x68\xe6\x7b\x19\x9f\xb3\x59\x94\x66\x87\xec\x38\xe1\xa2\x0d\x84\xac\x5e\x59\xc3\x0f\x85\x10\xa1\xf8\xe3\xd1\x0f\x02\xf1\x6b\x26\x5a\x05\x84\x94\x35\xb4\x2d\x88\x8c\xd9\x9c\x87\x11\x50\x6f\x61\x9f\xc6\x7c\x26\xa4\x98\x21\x9d\xb4\x0e\xe5\xd1\xcf\x96\x82\x05\x5f\x1d\xb2\xd3\xfb\x36\x24\xd1\xbd\x44\x90\xad\x63\x0e\x6d\x3e\x03\xd4\x7c\x7e\x20\xca\x02\x31\x89\xf4\x8e\x4b\xb0\x09\x9f\x1f\xb6\x36\x5d\x96\xe4\xa6\x96\x1b\xc7\xb1\xf8\xf0\x5e\x22\x08\x1b\xa7\x21\x4d\x39\xc2\x37\x02\x0a\xbf\xff\x7e\x28\xfe\xb9\x10\x1f\xfd\xcb\x17\xf6\xe8\xa5\x05\x49\x96\xa7\xf0\x39\x54\x83\xaf\x56\x5e\x38\x67\x3f\x8b\xc2\xc7\xf2\xef\x2f\x5f\x7e\xee\x04\x37\x0c\x69\x82\x3c\x17\x11\xf3\x62\x9f\xf1\x70\x1e\x47\x7e\x98\xc1\x40\xd0\xf7\x93\xae\xe2\x04\xbe\xd7\x51\x9e\x71\x96\x45\xf0\xe9\xf3\x70\xe5\xc5\xb1\x10\x52\x08\x27\xba\x20\xc3\x8e\x10\x66\xc1\x9a\xa9\xe7\xa2\x98\xe8\x62\x82\x73\x1c\xf8\x33\x44\x63\xc2\x38\x1c\x69\x82\x3c\xb0\xbc\x31\x76\x2b\x46\xef\x73\x31\x9d\xac\xbc\xe4\x33\xcf\xc4\x00\x12\x03\x60\x94\xb2\x9b\xc9\xf5\x87\xd3\xe3\xc9\x73\xe0\xf6\xe0\xf3\x47\x31\xd4\xd2\x59\xe2\xc7\xc0\x2e\x85\x11\xe2\x87\x73\xff\xc1\x9f\xe7\x5e\xa0\x46\x5d\x04\x63\x69\xe1\x3f\xf0\xb0\x18\x51\x26\x89\xf7\xc9\x9c\xda\x26\xe3\x34\xf5\x17\x21\x4b\xa2\x80\xa7\x72\xb6\x78\x0e\xfd\x56\x7e\x07\x01\x39\x11\x1d\x1d\x66\xdf\x28\x59\x8c\xa0\xd0\x73\x06\x7d\xbb\xbd\x4c\x1a\x0b\x99\x64\xa9\xae\xd6\xd8\x39\x5b\x6a\x3b\xe0\xd7\x01\xf2\x6f\xa7\x5e\xb2\xe0\x59\x39\x72\xf1\xc3\x64\xf8\x8c\x85\xe2\xf3\x20\xb7\x2e\xf1\x5c\xa9\x39\xa3\xd6\xd1\x17\xed\x67\x8d\xd5\x8a\x06\x15\x61\xae\x7a\x7d\x10\x89\xc5\x9b\x8d\x3c\x36\xbe\x3a\x65\xa3\x51\xfa\xd9\x8f\x47\x69\x1a\x8c\x70\xf1\x47\x48\xcf\x05\x23\x2c\x0a\x33\x98\xa1\x94\x00\x97\xe6\x71\x9c\xf0\x54\xee\x10\x18\x4f\x92\x28\xe9\x92\x72\xff\x38\xac\x5b\x4a\xfc\xf5\x46\xac\xb2\x62\x01\x39\xf7\x42\x6f\x21\xb6\x40\x23\xb9\x79\xe0\xd8\xe9\x57\xf8\x10\xa7\xc1\x3b\x59\x8c\x79\xb3\x59\x94\x8b\xe9\x1d\x5e\xc7\xde\x1a\xb6\x42\x62\x9a\xb8\x8f\x0c\xeb\xd7\x6e\x98\x50\x64\x3c\x7e\xfb\xe9\x62\x7c\x3e\x61\x5e\x2e\x46\x3b\x6c\xc9\xfe\x27\xff\xd5\x5b\xc5\x01\x3f\x14\x2b\x26\xfb\xf8\xec\xe3\xc7\x8f\xcf\x62\xb1\x75\x79\x8c\x92\x39\xfc\xfd\xf1\x19\x7b\x21\xa6\x42\x4f\xec\x4b\xfe\x99\x8b\x9d\x8f\xd8\x2a\xde\xc3\x67\x14\x8b\x45\xc8\x8a\x82\xdf\x98\x04\xde\x35\xc7\x21\xa5\x5f\xad\x4b\x0e\x00\x03\xba\xab\xc2\x70\x2f\xba\x63\xf1\x4a\xcd\x95\x9e\x9c\x37\xbe\x31\x7f\xef\x9d\xb3\x74\x91\x7f\x16\xc5\xeb\x51\x2a\x8e\x03\x62\xf5\xbb\xb9\xbc\xbd\x3e\x9e\x8c\xc6\x57\x57\x6c\x3a\xbe\x7e\x37\x99\xe2\x9f\x3f\x8e\xa2\xe2\xe7\xe5\xf5\xbb\x9f\xc4\xef\xb4\xf8\x7d\x73\x35\x3e\x9e\xc0\x93\x51\x18\x8d\xc4\xc0\x83\xcd\xd7\x4f\x76\x8d\xb0\x5b\xbe\x2e\x2d\x21\x67\xa2\x17\xd1\xca\xcf\xa0\x93\x25\xf0\x85\xd4\x60\x93\x2d\x0f\x33\x8c\x2c\x24\xb6\x72\x3c\xf1\x66\x99\x58\xf3\xc5\xd6\x68\x34\x2a\x69\xe0\xee\x3c\x4e\xa2\x55\x9c\xe1\x47\xbb\x8b\xb2\xa5\x65\xaf\xd8\x0b\x7b\xf7\x76\x11\x93\x6e\x1a\xb1\x17\x9b\x9c\xc4\x46\x48\xa0\x64\x79\x12\x00\xbc\xe8\x2e\xf3\x44\x59\x8f\x45\x21\x1f\x65\xbe\x10\x60\x0b\xbc\xd5\x04\xb1\x33\x96\x3d\xe4\xcf\xb7\x87\xec\x28\xde\xe9\x34\xb9\x63\xc6\x3b\x68\x8b\x1d\x4e\x9a\xbb\xe6\x3c\x78\x6b\xc4\xde\x9f\xfe\xf4\x18\x5d\x9f\xb0\x17\x52\x1b\xb0\xd6\x8c\x6a\x71\x68\x15\x5b\xbb\x1c\x96\xf3\x74\x88\xb6\xe8\xcd\xd7\xa5\x25\xe2\x3c\x5d\x8a\xbd\xd9\x95\xfc\xf5\xe3\xe8\x8e\xbd\xb9\x3d\x3d\x3b\x11\xd3\xf4\x5f\xf1\x11\xcc\xd5\x33\x76\x7c\x79\x7e\x3e\xbe\x38\x81\x1f\x73\x76\x72\x79\x3e\x3e\xbd\x80\xbf\xef\x99\x78\x7a\xfa\x76\x72\x33\xfd\x74\x35\x9e\xbe\xb7\x5c\x40\x0a\x96\x43\x72\xb3\xd5\xa0\x6c\xc2\xe8\x25\x83\x35\xa4\xce\xaf\x71\x99\x2c\xc6\xf9\xdc\xcf\x22\xd8\x4c\x5e\x73\x6f\x3e\x8a\x42\xb1\x40\x88\x8d\x23\xee\x89\x23\x38\x39\xe0\x96\x11\x7b\x42\xc2\xe3\x28\xc9\x52\x33\xd2\xde\x24\x89\xf8\xab\xcd\xf0\x69\xf8\xe0\x37\x37\xc3\xd0\x8f\xd3\x03\x71\xc4\x0c\xf8\x4c\x6e\x83\x67\x4b\x2f\x5c\x28\xcd\xdb\x01\x3e\x11\xe7\x4f\xd0\xbe\x89\x23\xba\xd8\x31\x07\xbe\x58\x4c\xbb\x05\xdc\x31\x4f\x4a\x0b\x5c\x79\x62\x7a\x4a\x97\x51\x1e\xcc\x41\x1d\xe3\xb1\xdf\xfc\x98\xdd\xfb\x01\x3f\xa8\x56\xbc\xfa\x43\xf1\x59\x3c\x31\x1d\xcc\xbc\x80\xcd\xfd\x44\x40\x8c\x92\xf5\x21\xbb\x8a\x52\x1f\x44\x04\x2d\x8e\xc7\x62\xfc\xf5\xc0\x71\xdb\x20\xe4\x04\x69\xb2\x54\xac\xa4\x7e\x94\xf8\xd9\x5a\xca\x20\x4a\xa6\x11\x6a\xce\xee\xc5\xf6\x41\x90\x7c\x14\xbb\x2a\xe0\xb6\xf4\x17\x4b\x6e\x52\x86\xee\x06\x75\x38\x14\x5a\xc2\x90\xbe\x82\xd1\xb8\xca\x83\xcc\x17\xd3\x29\xa8\xb8\xca\xe5\x42\x74\x06\xff\x5e\xd0\x35\x5d\xda\xd0\x09\x50\x3a\xc6\x0d\x2c\x58\xd5\x48\xfc\x00\x8a\x29\xb1\x0c\x88\x1e\xa8\xc6\x5c\xd9\x15\x41\xc5\x9d\x8a\xdd\x90\x3c\x03\xe3\x42\x67\x46\x3d\x18\x69\xb2\x3c\x27\x5c\x6c\x60\xf1\x8e\xa1\xed\xec\x8b\xed\x27\x39\xa3\x52\xad\xc4\xc1\x11\x9e\xfd\x1c\xb6\x3b\x5e\x64\x89\x2d\xa6\x1a\x78\xc2\x43\xb8\x44\x61\xf7\x02\x66\x9e\xa8\x3d\x4c\xa9\x62\xb4\xfc\xa2\xbb\x60\x45\x91\x17\xae\x48\xd4\x6e\x1d\x76\x1d\x62\x18\xcc\xc4\xa8\xbe\x93\x77\x33\x77\x69\x14\x80\xd6\x59\x30\x4b\x38\x60\x7f\xe0\xb2\x0c\xce\x14\x30\x4b\x1c\x7e\x0c\x05\x91\xd3\xac\x98\x57\xe4\xb5\x0e\x03\xb5\x3e\x8c\xad\x24\xf1\xd6\x72\x70\xe1\x2d\x56\x74\xf7\x8b\x98\x46\xe0\xf2\x2a\x85\xd3\x81\x54\xd9\xde\xc9\x2b\x00\xce\x92\x3c\xe0\xa9\x71\x06\xfb\x8a\xc1\xee\xb3\xcd\x25\x05\xf8\xb3\x2e\x09\x0a\xd7\x4b\x1a\x49\x17\x8b\xbf\xf1\xc4\xd6\xfc\x12\xeb\xc0\x34\x8e\xb4\xe1\xcc\x0b\x93\x39\xf4\x47\xdc\x5e\x40\xcd\xf4\x9f\xb9\x97\x70\x76\x27\x0e\xba\x9f\x61\x05\x80\x97\xf5\x3b\xbd\xa5\x2f\xe0\x49\xe6\x0c\x0a\x26\xfc\x9f\xb9\x58\x4c\xf0\xb4\x93\x29\x29\x04\x63\xb8\xed\x14\x2c\x3e\x80\xa2\x90\xfd\x92\x8a\xc9\x0b\xc5\x53\x9b\xe6\x23\x7c\xf9\x23\xfe\x57\x34\xa8\xfa\x57\xd4\x7a\x26\x9a\x31\x8b\x66\x51\xf0\x51\x34\xed\xc7\x67\xd9\x2c\x86\x9b\xcb\xea\xb5\x10\x53\xcc\x86\xd8\x85\x64\x89\xd7\xaf\x0e\xbf\xfd\xfe\xfb\xc3\xd7\x87\xaf\xff\xbd\x59\x52\x4e\x1a\x58\xe6\xbb\xef\x5e\xfd\x59\x9c\xd3\xe4\xbb\x2f\xf8\xef\x4f\xbb\xec\x95\x7f\x7c\xce\x27\xfc\x9c\x94\x71\x8b\x6b\xae\x17\x88\x7d\x0c\x4e\xc6\x70\x72\xf5\x8a\x6b\x98\xe2\xac\x20\x1f\xea\x2f\x72\x5c\xc9\x50\x70\xfe\x38\xf2\xd9\xc5\xed\xf9\xa7\xd3\x8b\x9b\xe9\xf8\xe2\x78\x72\x03\x07\xaa\xcf\xec\xe4\xf4\xe6\xaf\xf0\xd7\x8a\x9d\x4f\xce\x2f\xaf\x7f\x80\xbf\x43\xf6\xfe\xf2\x66\x0a\x7f\xc5\x0c\x0f\x35\xa8\xbf\x13\xd5\x8e\xb1\x68\xc6\xa6\xa7\xe7\x93\xcb\xdb\x69\xc7\x49\x69\xd7\x1c\xed\xa5\xf7\xe6\x30\x0a\x45\x7b\x1a\x3e\x41\x5b\x19\x7b\x0e\xf3\x88\xcb\x5b\x57\xfe\xab\x2f\xb6\xb3\x70\x40\xc7\x4d\x87\x9e\x5f\x77\x0d\x7b\xee\xb0\xeb\x0e\xc4\xc6\x68\xbe\x2e\x2e\xd1\xf5\x7c\x4d\x65\x1d\x39\x46\x70\xbd\x6c\xc9\x71\xa3\x2c\x89\x23\x5f\xc5\xd9\xda\xc8\x67\xa3\x04\x89\x3a\x7c\x0b\x8f\xe1\xad\x14\x1c\x7c\x0e\xc4\x31\x91\xc3\x0c\xd9\x50\x5b\x1e\x30\x7e\xb8\x38\x64\xcb\x2c\x8b\x8f\x5e\xbe\x5c\x47\x79\xf2\x09\x3e\x1a\x28\x70\x8c\xc0\x86\x23\x4e\x97\xe9\xc1\xf3\x03\x9c\x54\xc4\x74\x0c\xf4\x4c\xa3\xc0\xa6\x0e\x19\x81\xd8\x9b\xc6\x11\x1e\xb1\xc5\x49\x51\xca\xbd\xf2\x3e\x8b\x75\x45\xec\x5a\x99\x9f\xc9\xa3\xae\x6c\x9b\x38\xc8\x17\x8a\xa5\x61\xd3\x37\x14\x5d\x7b\x49\x80\xdd\x7d\x94\x87\x86\x6e\xde\x52\xc4\x9e\x7e\xc2\x57\xd1\x43\x79\x26\x86\x09\x21\xba\x47\xb4\x29\x1c\xed\x7c\x9e\xea\xf9\x12\xaa\xda\x5f\x38\x3f\xbb\xc2\x06\x13\xab\x65\xb1\xb0\x97\xe2\x15\xab\xba\x6a\x7d\xc1\x79\xee\x65\x9e\xc1\x66\xa3\x0f\x2d\x6b\xc4\xdf\x94\x73\x0c\xce\xa7\x86\x23\x83\xa1\xa4\x35\xb7\x71\x69\x99\x14\xf8\x21\x18\xe0\x44\xa8\x28\x29\x2e\x77\xe4\xba\x7d\x1c\x44\xf9\x9c\xbd\x05\x39\x13\xfd\xb4\xd5\x87\x94\x3d\xde\x93\x93\x97\xd7\x62\xb5\xfd\x30\x61\x57\x67\xb7\xef\x4e\x2f\xb4\x70\x36\x5f\xdb\xea\x60\xb6\x38\xb0\xeb\xc9\xd5\xe5\xcd\xe9\x54\xac\xf0\x7a\xd9\xad\x2a\x11\xa4\xfc\x00\xfb\x8c\x13\x03\xbf\xcd\x02\xf6\xb4\xaf\x4e\x4b\x53\x30\x3d\xfd\xd6\x42\x4e\x3c\xd8\x8b\x72\x2d\x48\xc5\x62\xe0\xc5\xfe\x61\xed\xb2\x40\x7f\x07\xe5\x44\xc3\x09\xe1\x91\x15\x86\xa3\xbe\x5c\xa4\x9d\xa0\x3f\x51\xbf\xbf\x7c\xb1\x63\x6b\xa8\x36\x10\x0e\xf6\x02\xde\x3f\xf0\x24\x15\xfc\x8b\xd7\x1f\xe4\xcf\x2f\x5f\xec\xbe\x50\x0f\xaa\xee\x52\xb8\x34\x65\xcf\x76\xbc\xba\x31\xb0\xaa\xbf\xb4\xa7\x39\x83\x33\x26\x9c\x6d\x95\xfd\x38\x4b\xf9\x2c\x07\x35\x33\x43\xfb\xe5\x14\xb7\xf2\x02\x79\x71\x83\xf6\xc5\x60\x56\xdd\x8f\x98\x03\x66\x65\x7f\xbd\xc1\x06\xb8\x34\x98\x58\x00\x26\x53\xb2\x47\x3b\x17\xc7\x21\x34\x5a\xab\x6d\x9e\x70\x4f\x61\x58\xcc\x6c\xea\x10\x11\xc0\x25\x44\x52\xd8\xb9\x82\xf6\x24\x8e\x3b\xf8\x1b\x6b\x50\xb8\x63\x8f\x40\x42\xa2\x31\x6f\xaf\xcf\xc4\xf0\x04\x8a\x9b\xc6\xcb\x42\x4e\xb8\x4a\x13\xcf\x2e\x93\x85\x7a\xf6\x52\x6a\x60\xe1\x21\xaa\x74\xd5\x63\xf9\x5d\x6e\xcb\xef\x72\x78\xa8\xdf\xa8\xec\x1f\x80\x7d\xdb\x04\xbe\x20\xd4\xb4\xca\x2e\xf6\x72\xea\xcb\xdf\x71\x00\x8f\xb6\xf1\x41\x20\xad\x92\x45\xcf\x90\xba\xae\xe3\xb7\xc5\xa6\xe7\xa5\x07\x94\x0e\x19\xbb\xe6\x78\xcd\x0d\x04\x36\xc8\x16\xdb\xa3\x0e\xf2\xd0\x04\x73\x9e\x40\xfb\x28\xbd\xb8\x2f\x55\x61\x50\x00\xdb\x14\xf5\x56\x62\x48\x18\x5a\xfc\x5f\x44\xac\x9e\xdf\x31\x45\x87\x85\x9a\x20\x68\x85\x22\x01\xc2\x2c\x28\xf7\xf3\xb2\x43\x3d\x17\x42\xfe\x10\xe5\xa2\x3c\xe8\x28\xb3\x64\xcd\xf2\x50\xa1\x03\x49\x74\xb5\x10\xb4\x90\x3b\x2c\x44\x91\xf7\x52\xaa\x78\x5d\x6a\x3f\x7c\x88\x3e\x9b\x5a\x50\x00\x78\x1f\x3d\xf2\x07\xb8\x6f\x14\x67\xe6\x42\x5d\x7a\xef\x27\xe2\x28\x74\x9f\x07\x01\x40\x12\xc4\xc0\x49\x03\x79\x32\x7f\x15\xc3\xce\x5a\x1c\x93\x1a\x58\xe1\x15\x1e\x09\xe0\xc7\x36\x62\x89\x4d\xdf\x79\x7e\x96\x8d\xf9\x47\x5b\xba\xb4\xa5\xf5\x31\x23\xa8\x59\xee\xa3\x6e\x5a\x39\xe1\x80\xde\xb9\x38\xd7\x49\x0b\x07\x1f\xef\xc6\xe0\x4a\x4c\xd4\x11\xd3\xa3\xfe\x08\x3d\x0c\x51\xc2\xa0\xa3\xb3\xc3\x2f\x6a\x32\x40\x77\x23\xca\xb5\x06\xe9\xfd\xbf\x82\x1f\xee\xe4\x3b\x58\x90\x1d\xf6\x4b\x6c\x31\x1c\xe6\x5b\xb4\x90\x75\xfe\x1a\x69\xc4\xe6\x3c\xe0\x78\x51\x5c\xba\xfb\xe0\xbe\xc1\xd4\xd8\x56\xb5\xec\xdb\x52\xee\x41\x56\xb9\x98\x29\xee\xb8\xf2\x79\xe0\x60\x54\x22\x84\x2b\x7e\x2b\x17\x3e\xa3\xdb\x87\x3b\x21\x7b\xac\x62\x03\xa5\xe7\xdf\x78\x49\xa2\x89\x6b\xbd\x2f\x35\xf9\xea\x0a\x4c\xd4\x0d\xf4\x4a\x43\xbb\x4a\x24\x0c\x8d\x8d\x61\xf3\x92\xc1\xb0\xf1\xb1\xae\xe8\x8e\x05\x45\x7c\x8c\x92\xcf\x68\x18\xf4\xd9\x8f\xe3\x6a\x77\x8b\x9e\x92\x80\xc5\x1a\x20\x8d\x5a\x3f\xd4\x6a\xc4\xde\xa1\xc6\x52\x2c\xa3\xb0\xa5\x96\x23\x5a\x16\x22\xb4\x2b\x91\x1c\x05\xb7\x38\xaf\xa3\x8b\x0d\xf4\x22\x30\xa9\x9a\xfb\xde\x22\x8c\xc4\x0a\x3c\x4b\xe5\xbd\x72\x10\x2d\xf0\xc6\xd5\x84\xd6\x81\x08\x05\x63\x6a\x50\x1a\x35\xdf\xda\x53\x95\xde\x6f\x9e\xbc\x1d\x55\x27\x3e\xe3\xec\xdc\x59\x81\xce\x5b\x1e\xb5\x24\xc1\x39\xbf\xf7\x43\x69\x0d\x87\x2d\xd6\x31\xdb\x39\x90\x70\xc5\x07\x6e\x7d\x92\x20\x28\x06\x6c\x21\xe9\x6a\x91\x51\xc8\x79\x9d\x08\xc2\x5c\x89\x88\x41\x4c\xad\x1f\xc0\x6d\xbd\x83\xeb\x76\x31\x22\x1f\x39\x15\x05\x78\xf8\xbe\x16\xff\xca\x63\x3b\x40\x87\x27\xd2\x8d\x51\x39\x5d\x56\x47\x77\xf9\x58\x1c\xe0\x9b\x87\x77\xf9\x18\x8f\xf0\xe5\xf1\xbd\xe1\xb7\x69\x54\x21\x3c\x31\x9c\x7d\xb7\xdb\xd3\x34\xcf\x0e\x5a\x61\x43\x9d\x27\xc8\x17\x4f\x3e\xe1\x13\x89\xb1\xfc\x2a\xa9\xfa\x1e\x15\x3e\xf1\x8f\x17\xfa\xbf\xa1\xa8\x25\xc4\xdc\x4e\xef\xf4\x34\x28\x5c\x5a\xa9\x36\x67\x0a\xc2\x7f\x83\x3f\xd4\x42\x5b\xc7\xe5\xac\x80\xdb\x19\x23\x7b\x59\xb3\x0c\x6c\x1a\xf0\x48\x2d\xb6\xeb\xd1\x63\x18\x44\x9e\xd8\x0b\x8b\xd3\x43\xb2\x96\xf6\x53\x78\xef\x8b\xd7\x85\x21\xcf\xc0\x8c\x05\xbc\x68\x8d\x62\x0d\x41\xd3\x51\x82\x95\xbf\x48\x3c\xa9\xce\x54\x7b\x9e\x53\x15\x3d\xe3\xa4\x72\xd5\xef\xf8\x2a\xbd\x09\x92\xb0\x87\x19\x5e\xc4\xa0\x3d\x9f\x38\xd3\xa1\xe2\xe4\x4a\xfc\x21\x3f\xf3\xcf\x70\xc4\x2b\x8e\x77\x3f\x6f\xee\xe4\x7e\x2e\x2c\x15\xee\x13\x5e\x98\xf4\x95\xd1\x42\x7e\xde\x86\x5c\xd4\xaa\x85\x34\xf1\x54\x04\x14\x76\x1c\x85\x19\x68\x5a\xc0\x2c\x44\x7c\x91\x95\xd8\x20\xa4\xa2\x65\xc0\xf0\xdb\xbf\x47\x65\x8d\x38\x97\x86\x9f\xe5\xe9\x14\x63\xc1\x48\x27\x6a\x73\x43\xfe\x0b\x49\x67\xff\x55\x73\x50\x96\x65\x10\x03\x43\x9a\x53\x0b\x21\xc2\x51\xc3\x31\x53\xdf\x66\x94\xba\x2e\x88\xc0\x98\xc5\xd4\xf9\xf5\x25\x9d\xb8\x89\x1d\xe6\x52\xcc\x54\xfc\xd7\x18\x0e\x9e\x10\x38\x48\xda\xd1\xc0\x36\xff\xce\x9b\x7d\x46\xf5\x74\x24\x8e\x03\x23\xaf\x26\xf9\x61\x11\xe5\x0a\x03\x1e\xfc\x5c\x0f\x05\xf0\x31\x7f\xf5\xea\xbb\x59\x71\x77\x88\xbf\x38\xb8\xbb\xc9\xe7\xd0\x62\xc5\xb3\x48\x3d\x13\x6b\x44\xf1\x28\x55\x8f\xa4\xf1\x3a\x3e\xfc\x59\xb9\x82\x96\x68\xa4\x39\x7f\x13\x8e\x55\x73\xfd\xab\x89\x6a\xfd\xbd\xdf\x9c\x9e\x9d\x9d\x5e\xbc\x03\x47\xb5\xf1\xbb\xc9\xb5\xb6\xb1\xb4\xe5\xec\x39\x81\x2b\x1f\xda\x6a\xea\xcf\x79\xad\x65\x68\x1c\xc0\x59\x50\x7f\xa1\xdc\x56\xc4\x9e\xbe\x0f\xb6\xcd\x9b\x1b\x1f\x8b\x73\x9c\x7d\xc5\xfe\x58\x40\x53\x58\x18\x7a\x6d\x5e\x54\xab\x58\x40\xe0\x3a\x0c\x4a\xc5\xe2\x3e\xbb\x16\xf4\x47\xaf\x12\xdc\x3d\xc3\xbd\xca\x5e\x5c\x8d\xef\x4d\x76\x33\x43\xba\xec\x1b\xe1\xc5\xba\xaf\xbf\x09\x35\x49\x68\x40\xa8\x3b\x9e\x3d\x72\x1e\xc2\x46\xab\xb9\xa0\xe3\x34\xd5\x54\x1e\xfa\xf3\x4a\x77\x68\x04\x3b\x0c\x61\xb2\x2c\x76\xe7\x9a\x39\xbf\xf7\xf2\x20\x4b\x9b\xfd\xda\xd6\x44\x63\xa7\xbc\x76\x24\x71\xd9\x81\x77\x23\x64\x37\x79\x07\xb9\x64\x57\xd7\xed\x36\x87\x31\x97\xb0\x56\x28\x7c\x2d\xb0\x06\x68\xc7\x21\x81\xda\x1d\xb7\x9f\x14\x0b\xb9\xc5\xea\x06\x39\x75\x44\x36\x12\x5a\xd5\xb5\x47\x94\xfb\xc1\x3c\x86\x3d\xa3\xa0\x55\xfe\x28\x84\x6e\xd8\x3a\xeb\x91\xb9\xd0\x18\x06\xa1\xed\x1d\x95\x1b\x11\x7b\x8c\xeb\x0c\x34\x3c\x9e\xd8\x68\x8b\x79\xac\xb8\x7d\xac\x9c\xd9\x0b\x77\xf0\x3c\xf4\x71\x2f\xb0\x12\x87\x87\x3c\xe1\x18\xca\x2b\xf0\x3f\x73\x76\x7e\xc0\xce\xdf\x1c\xb0\x77\xe8\x23\xff\xee\x8d\x5e\x8e\x76\x46\x5b\xbe\xfe\xee\x0c\x6d\x2f\x8e\xcb\xa0\x56\xf3\xf9\x48\x5a\x64\x8c\xd0\xd7\xe3\x47\xb0\xc2\x2e\xa2\x71\x88\x8e\xfa\x13\x9c\x81\x26\xff\x18\x9f\x5f\x9d\x4d\xa4\x9b\x1e\x44\x74\xdb\xa8\x74\x95\xf8\x0f\xe2\x80\x72\x0d\x7f\x2b\x0f\x96\xd5\x3a\x96\x0f\x0b\x2f\x96\x97\xf0\xc7\x4b\x83\xd7\xd8\x57\x80\xc8\xba\xc3\x94\x58\x63\x5f\x62\xea\x96\x6a\xbb\xa4\x03\xb7\xb8\x0c\xd6\x62\xc1\x10\x0b\xf7\xe8\x19\x10\xee\xec\xf6\x66\x72\x8d\xbf\xae\xc6\x37\x37\x7f\xbf\xbc\x3e\x81\xc6\xef\xe6\x6d\x51\x95\x2c\xfd\x9d\x98\x40\xcb\x80\xd1\xc5\x16\x43\x05\x2c\xbe\x99\x1c\xdf\x5e\x9f\x4e\x7f\xf8\xf4\xee\xfa\xf2\xf6\xaa\x13\x9f\x0b\x29\x37\xbc\x46\xe2\xec\xf2\xfa\x1d\xc3\x98\x68\x76\x88\xc9\xc4\x5c\x31\xcb\x35\xb8\x8c\x0b\xa4\x42\xab\x96\xce\x9c\xb6\x68\x4b\x32\x06\x0a\xd4\x5e\x29\x49\xab\x10\xd6\x03\xf4\x02\x22\x29\x7a\x8b\x16\x8b\x95\x7e\xfd\x35\x15\x25\xf3\x9b\x2d\xf9\xec\xf3\x48\xda\x42\x80\x5f\xad\x8a\xa0\xd4\xc9\xbc\xb3\x1e\x1d\x49\x14\xde\xfb\x0b\x08\xf6\xe7\xa5\xeb\x70\x86\x41\xde\x04\xf9\xc2\x9d\x57\xf4\x85\x4f\xe7\xa7\x17\xb7\x53\xe9\x1b\x3c\x12\xb8\xe0\xb4\x2a\xfa\x00\xfb\x2f\xc9\x41\xfc\x0b\x8e\xf1\x2f\xb3\xe8\x25\x5c\x4c\x60\xa9\x59\x14\x80\xb9\x54\xad\x14\x3e\xc6\xa0\x34\x9c\xbd\x38\xbb\x3c\x1e\x9f\x4d\xc4\xab\xe3\xb3\xc9\xf8\xfa\x9b\xee\x69\x79\x5f\x20\xdd\x3b\xbc\x0c\x24\x3e\x12\xd3\xf9\xa8\x88\x46\xa3\xc2\x67\xc5\xec\x65\xc1\x5a\xea\x13\xa1\x0c\xc6\x68\x47\x95\x62\x59\xfc\x70\xbd\x0a\x0c\x01\x0b\x4c\x8c\xdc\x99\x38\x8a\x59\x8e\x81\x2a\x34\x18\x3a\x85\x33\x74\x0d\x3b\xbd\xbc\x80\xf6\x95\xc6\xd0\xff\x35\x1a\xcd\xfd\x14\xfe\xb2\x96\xad\x2f\x75\xfa\x18\x90\x7c\xe7\xd1\x0a\x82\x1d\xc2\x0c\x6d\x3b\x1c\x3b\x2b\xba\x62\x81\x13\x93\xa0\x67\x8b\x60\xab\xb8\x2b\x5f\x79\x81\xfa\xb7\xdb\xcb\xe9\x18\x03\x00\x4c\xc5\x1f\x67\x9f\xaa\x30\x00\x3e\x2b\x16\x87\xda\xc3\x84\x89\xe9\x57\x0d\xbe\x74\x6b\x15\x91\x63\x12\x03\x27\x8c\x62\xcf\x2f\x97\x9c\x11\x1a\x60\x5a\xf7\x8a\x4d\x64\x83\xb3\x77\x1c\x0b\x72\x32\xc6\x25\x5d\x7d\xfd\x32\x5a\x02\xee\x86\x6d\xe5\xb3\xa7\xe3\xfa\x6d\xcd\x1b\x13\x18\x61\x9f\xa6\x97\x9f\x20\xf0\xc8\xa7\xeb\xdb\xb3\xc9\xcd\xa7\xb7\xa7\x67\xdd\xbb\x88\x61\x88\xbb\xcb\x24\xb7\x2f\xea\xab\xb3\xab\xb3\xf1\xc5\x56\x17\xd8\x3a\x8a\x68\x88\xcc\xef\x3c\x48\x72\xe0\x07\x0f\xe2\x6c\xb7\x5a\xcf\xef\xaa\x54\x31\x4c\x45\xb4\xdf\xa8\x09\x1a\xb2\x51\x11\x44\xa6\xa0\x83\xc1\xb2\xd1\xcd\xbd\xf1\xba\x8c\x7e\x55\xf3\xdd\x17\x05\x31\xf4\x76\xdc\xbd\xef\xd8\x85\xc0\xb3\x80\x7b\xc9\xfc\x0e\x94\x31\xc9\x67\xf9\x6b\x34\xbf\x1b\xad\xfc\x90\x3f\x89\xe8\x8e\x43\xb0\x18\xd1\x70\xa0\x19\x65\xd1\x67\x1e\xb2\xb3\xf1\x9b\xc9\x19\xbb\xba\xbe\xfc\x70\x7a\x32\xb9\x16\xd3\xd8\x5f\x27\xd6\xd3\x39\x99\x5c\xcf\xce\x3b\xba\x4b\x04\x93\xa4\xfc\x8a\x6f\xae\x05\xf9\xeb\xed\x93\x19\x13\x07\x53\xaa\x0c\x4e\xa4\x9d\xe5\x59\x7a\x89\xe8\x0b\x6a\x39\xa4\xad\xa1\xe6\xba\xce\x88\x50\xcb\x28\x27\x55\x88\x78\xad\x42\x5d\xff\x53\x3e\x1a\xe1\x6a\x62\x3d\x43\xb7\x11\xeb\xdf\x77\x31\x9d\x43\x73\x71\x6b\x5d\x64\x77\xb0\xe2\x59\x88\xfb\x44\xc8\x5c\xbf\x37\xda\x7b\x6c\xf5\x6e\x5b\x89\xbb\x6a\xf7\x41\xb5\x35\x55\x6e\x35\x0e\x6e\xe3\x8f\xaf\x27\x27\x93\x8b\xe9\xe9\xf8\x0c\xdb\x2a\x60\x37\x3f\xdc\x9c\x5d\xbe\x1b\x9d\x5c\x8b\xf1\x30\x2a\xf4\x6a\x0c\xa2\x82\xa6\x2a\xf9\x8e\x98\x5c\xc5\xf4\x2d\xe3\x7c\x89\x21\x04\x76\x08\x90\x3c\x45\x3c\x5a\xf1\x0c\xcc\x5f\xc4\xbf\x69\xdd\x3b\xb1\x32\x85\x61\x42\x22\xde\xba\x42\x58\x42\xc6\xe8\xd0\x88\xe2\xa0\x82\x71\x50\x31\x3f\x90\xdc\x3f\x3e\x6b\xa0\x6e\x41\x89\xfe\xdb\x18\xf3\x0c\xd6\x05\x15\x41\xb2\xbc\x67\xd8\xb2\xe0\xe9\x89\xd9\x3a\x73\x56\xd7\x42\xda\xce\x72\xb5\x2e\x56\x51\xd9\x40\xc5\x3d\xda\x41\x2d\x8a\xb6\x2b\x35\x80\x5e\xd0\x43\xac\x68\x8a\x85\xf0\x2b\xe2\x47\xf0\x43\x06\xaa\x96\x52\x50\x78\x25\x62\x02\x2e\x1f\x88\x1e\x98\xae\xd3\x20\x5a\x1c\xbd\x7c\x59\x8b\x4c\x61\xa1\x5d\xfc\xa3\xef\xff\x5f\xd9\xf7\x23\x81\x33\xe0\x43\xf6\xff\x6d\x8a\x5f\xdf\x18\x20\x2f\xfe\x10\x00\x01\x75\x1a\x62\x4d\x7d\x80\xde\xfe\x0f\xb1\x88\x4e\xdf\x5f\x62\x40\xf5\xf7\xec\xfd\x64\x2c\xf6\x99\x2a\xb8\xfa\x58\xec\x51\x60\xdd\x14\x07\xc4\x38\xcf\x18\x1c\x9c\x2c\x16\xf1\xe1\x38\x90\x97\x3d\xe5\xb3\x58\x8b\x58\x7f\xcf\x46\x49\x37\xe6\xaa\xde\x76\x15\x6a\x0b\x4b\x5a\xad\xba\x24\x41\xdb\x16\x8b\x45\x7d\xc7\xd6\x69\xee\x74\x49\x98\x4c\x35\x5d\xd1\x28\x05\x12\x09\x47\x7b\x1d\x77\x04\xf1\xd2\x0b\xc5\x38\x94\xfe\xad\x44\x24\xa6\xba\xae\x88\x9a\x5b\x5f\x7b\x34\xfa\x7a\xae\x48\xa4\x6e\xa8\x4d\x2b\x44\x02\x66\x4d\xc6\x15\xa7\x59\x09\x44\x81\x4a\xa1\xe4\x8e\x56\xbb\x19\xa1\x00\xb5\x22\xd2\x13\xa3\x41\x17\xe1\x00\xd6\x9a\x5a\x5f\xd4\xed\xda\x07\x17\xc4\x36\x94\x9c\xd1\xb6\xa8\x1e\x68\x20\xbb\x09\x38\x63\x6b\xe8\x1c\x08\x90\xb4\xf5\x7a\x21\x51\x73\x5b\x4d\x7b\x32\xb2\x32\x73\x20\xd1\x70\x45\xd8\x3c\xbe\x53\x5a\xcb\x54\x93\x8e\x46\x5e\x48\x8d\x54\xd0\xff\xd1\x7d\xe0\x2d\xd8\xdb\xc9\x78\x7a\x7b\x3d\xb1\x33\x0a\x21\x50\x20\xa3\x93\x07\xa1\x1e\xe0\xec\x09\x38\x60\x7b\xb0\xb7\x9c\x51\x85\xdd\x77\x88\xfc\x01\x92\x33\x11\x18\x96\xe5\xdd\x79\xba\x37\xfb\x2e\xda\xbb\x4e\xb3\xfb\x02\x42\x53\x9a\xce\xd5\x87\x2c\xb8\xd5\xe1\xa0\x88\x26\x5e\xe9\x16\xbb\xc7\x6d\x49\x43\x55\x77\xff\x22\x2a\x22\x92\x32\x4b\x03\x3d\x38\xd8\xea\xa1\x85\xc2\x08\x48\xbf\x9c\x5e\xbe\x54\x91\x4f\x51\xbb\x59\x5a\xb9\xe1\x05\xc9\x92\x97\x51\xc2\xd0\x67\xae\x74\xd5\xac\x07\x0c\x53\x5e\x9b\xe0\xb0\x59\x05\xdb\x03\xa7\xb9\xe7\xa3\xe4\x39\xb8\xca\x15\x47\xd0\x36\x93\xb9\x0d\x7c\x45\xa4\xd0\x85\x9f\x2d\xf3\x3b\xb4\x8f\x9b\xdd\x8f\xf8\xaf\x31\x4f\x7c\xb0\x3b\xf4\x82\x97\xca\xc0\xee\x3e\x8a\xee\xbc\x44\x43\xe6\x7f\xbf\x3c\x51\x48\x53\xab\xf2\xaa\x0c\x9f\x2d\x23\x71\x2c\x63\xe7\xeb\x11\xda\xec\x59\xa8\x81\x36\x08\x35\x9b\xd4\xfd\xb3\x81\xbf\x47\xdd\x94\xb0\xbb\xfb\x6e\xd6\xe8\xc1\x1b\xdd\xcb\x7e\x94\x59\x75\x3f\x81\x5e\x4a\xfc\xc8\xcb\xf5\xa3\x88\x91\x2f\xb5\xc7\x3f\xd5\xef\x1d\x52\xb9\xea\xfd\x64\x65\x9e\x37\x34\x1b\xf2\x40\x15\x00\xc4\x81\xc1\x06\x67\xa3\x98\x0b\x1f\xc2\x34\x5c\x94\x76\xff\x7e\x2b\x2f\x56\x47\xa1\x72\x12\x72\xba\xb8\x6f\xd0\xb1\xbf\xb3\xb7\xc3\x28\x9d\xa6\xcb\xfd\x6f\xe1\x28\x94\xb2\x87\xd7\x9f\x8a\xbb\x5f\xf1\x67\xb9\x71\x87\xbf\xe1\x2a\xf8\xe1\xdb\xea\xf5\xb7\xf8\xc8\xaa\xb3\xed\x8c\x1f\xb9\x37\x44\xd5\xe1\xa4\x13\x75\x6b\x59\x3a\x47\x4b\x5b\x9b\xfe\x46\x36\x90\xdf\x1d\xb3\x43\xd9\xf2\x6b\x2b\x4d\xe6\x8a\x3a\x51\x7d\x84\x2b\x5d\x31\x3a\x1f\x19\x44\xbe\x9b\xd1\x66\x39\x3a\xa7\x3c\x59\x54\x7d\x35\xba\xbf\xe7\x18\x69\xb7\xe8\x88\x38\x31\xaa\x8e\xda\x3d\x8c\xdd\x88\x91\x31\xd7\xb4\x42\x9d\x90\x5a\xcb\xba\x71\xec\xfe\x1c\x9b\xc5\xc8\x7c\x64\x7a\x03\xba\x37\x40\x4b\xbd\x9a\x43\x80\xc5\xa4\xb5\x7b\xc6\x0e\x6d\x81\xc1\xe2\xca\x85\xe5\x62\xf2\xf7\x4f\xd6\x4b\x9b\x5d\x65\x47\x4c\x6d\xaa\xec\x8a\x4d\xf3\x91\x25\x52\x37\x92\xae\xf8\x0b\x75\x33\xd0\xb6\x99\x3e\xbb\xaa\xb9\xe2\xd0\x6a\xfc\x80\x03\xd9\x08\xbf\x1f\xd1\x9e\x32\x68\xd4\x6a\x75\x9e\xf2\x11\x51\x0c\x07\xba\xce\x92\xd4\x14\x5d\x48\xdf\xca\x51\xc3\xae\xb2\x03\xa6\x38\x52\xd3\x4a\xda\x3e\xf1\x54\xef\xb7\x8e\x93\x16\xa0\xed\xa9\xf7\xb9\x9c\xc4\x94\xff\x0b\x6e\xbf\x25\xaf\x55\xe8\xc9\x35\xc9\x88\x5c\x65\x85\xde\x5c\xd1\x9e\xbe\x74\xc6\x2f\x27\xe0\xd3\x8b\x93\xc9\x3f\x6c\x81\x6c\xd1\xd8\xac\x4e\xc6\xa6\x5c\x9f\x78\xf8\xe0\x27\x51\x08\xc7\xfb\xd1\x83\x97\xf8\xa8\x7f\xc3\x7b\x11\x2d\x34\xe8\x0d\x84\xda\x54\x64\x29\xfa\x71\xd4\xee\x77\x2b\xdd\x8d\x21\x85\x9c\x85\x3e\xb6\x24\xec\x42\x93\x2c\x45\x2f\xbf\xa4\x5d\xb9\x22\xe9\x56\x02\x0b\x40\x5d\x15\x5d\xb1\xd4\xee\x8b\xba\xb7\x93\xc6\x3a\x0e\x08\xb2\x51\x5d\x2d\xcc\x26\x17\x1f\x3e\x7d\x18\x5f\x37\x7f\x7c\x18\x9f\xdd\xda\x34\x50\x49\x8b\xe1\x83\x8d\x6a\xf4\xfe\x93\xc1\xee\x62\x84\x91\x09\xcb\xdb\x03\xd8\x6b\x5c\x5f\x9e\x4d\xac\x8e\xdd\x14\x12\x4e\x6d\x27\x4f\x12\x40\x10\x4f\x13\xd6\xa0\x8c\xf5\x9c\x90\x74\xcf\x47\xf6\xa6\x49\x56\x22\xec\x86\xa1\x93\xec\xdb\xf7\x5e\xf8\x8a\x7c\x8d\xe6\x44\xab\x07\xe2\xed\x6e\x29\xf7\x4a\xa4\xfe\x4d\x25\xe5\x86\x57\x39\x88\xee\xad\x77\xed\x86\x21\x5d\xf6\x6a\x07\xdb\x0d\xbb\xad\xac\x1b\xc7\x7a\xff\xfb\x84\x9d\xce\x6e\xcf\x66\x57\xb9\x0f\x26\x8b\x05\xaa\xb5\xb0\x23\xcf\x52\x3f\x47\xf9\x06\xfa\x5a\x6e\x28\x2c\x65\xee\x25\x6d\x66\xe5\x1c\xbd\x59\xcc\x85\x4f\xc7\xb0\xb2\xc1\x60\x4d\xc2\x05\x1f\xe5\x8c\x32\xc0\x09\x05\x12\xf2\x52\x18\x46\x3d\x03\x4a\xc8\xec\x0d\x6d\xd7\x49\x9d\xcc\x6d\xaa\x92\x5b\x3c\x0f\x07\x0c\x29\xe1\x46\xcc\x15\xf3\x50\x61\x25\x5c\xc9\xb9\xe3\xee\x1b\x5a\x62\x9b\xd0\x80\xc1\x25\x0a\xe2\x83\x84\x97\x70\x23\xe6\xd0\xb2\x9b\x17\xe1\x78\x01\x6e\xb7\xed\xb3\xab\xec\x80\x69\xa8\x9b\xd0\x0d\x4a\x03\xdf\x85\xe6\xa1\xf1\x14\x68\x81\x6e\xf3\xe4\xd7\x17\x4b\xcf\x53\x1f\x8d\x88\xc3\x77\x6d\x3d\x27\x10\x4e\x80\x04\x0a\xbd\xd0\xf5\x3e\x5f\xb8\x11\xa3\x63\x8e\xe7\xba\xc0\x14\xd2\x08\xa3\xb0\x60\x2a\x22\x54\xfc\xd4\x1a\xa2\x42\xc5\x40\xf9\x2c\x1e\xe5\x21\xfc\x61\x31\xb2\x76\xcf\xd9\xb5\x35\xe8\xa1\x22\x60\x3e\x00\x35\xbb\xba\x9e\xeb\xe5\x2c\xca\xfe\x8b\x49\xf1\x9c\xdd\x5c\x35\x62\x54\x02\x3c\x09\x58\xf2\x84\x24\xa5\xd8\x4d\x6c\x87\x61\x88\xbb\x76\xb0\xcd\x50\x07\xd0\xe1\xe1\x8b\x80\x91\x89\xf5\xe7\xb5\x24\xd2\x13\x63\xef\xd0\x03\xae\xe4\xfa\xe2\x1e\x32\xf4\xc0\x10\xa4\x5d\xbb\xbf\xc1\xb0\x1c\xa7\xa2\xf3\xf1\x3f\x46\xc5\x58\x1d\xb5\xbb\xae\x5b\x0c\xf7\x3d\x4d\x49\x4f\x20\x0d\x78\x99\xde\x79\xa9\x3f\x1b\x95\xa1\x3a\x1a\xd2\x6c\xbf\xef\x3f\x67\x0d\xea\x1a\xac\x77\x57\x35\x72\x1b\xd8\xb9\xba\x93\x97\x8d\x63\xa9\x6d\x37\xf9\x1a\xda\x6f\x07\xce\xb9\x03\xb7\x21\xa1\x73\x4e\xaf\x61\xbf\x38\xb9\xbe\xbe\xbc\x86\x16\x1b\x4f\x21\xd7\x82\x68\x26\x74\x88\x85\x98\xb6\x57\x5e\xb6\xfc\xf2\x45\x34\x0f\xe4\xdb\x4f\x12\x43\xd8\xed\x9e\xd4\xec\xa7\x75\x2f\xc4\xa0\xba\xd8\x50\xa9\x60\xce\x2a\xcb\xcd\xe8\x9e\xc1\x24\x54\x5e\x0c\xe2\x24\xa4\x47\xec\x4e\x89\x84\x76\x18\xa4\x5f\x0d\x4a\xf6\xe2\x44\x06\x86\x3f\x62\xc5\x64\xc9\xe7\xdf\x0c\x83\xbd\x8b\x36\x45\x22\xf8\xb4\x98\x24\x61\xe5\x25\x9f\x79\x26\xe8\xcf\x78\x15\x96\x09\x02\x19\x43\x40\x45\xaf\x4a\xe6\x6a\x4e\xa6\x31\x00\x45\x27\xf4\x98\x02\xc9\x0f\xef\xa3\x64\x85\x58\x30\x1a\xff\x56\x18\xf2\x5e\xe2\x0c\xc5\x82\x2a\xdf\x20\x03\x63\x0f\x23\x18\x58\xa4\x31\x9f\xf9\xf7\x90\x21\x35\x5b\x32\x38\x4f\xca\x14\xf7\x78\xb4\x64\x11\x66\xf4\x4a\xf5\x71\xc2\xdd\x88\xf4\xc2\x08\x53\x2c\x1e\x8a\xe7\x55\xd6\x8a\x13\x79\x38\x9e\x9b\xd2\xc3\xf6\xa2\xe5\x8c\xb8\x3c\xed\xdf\xf9\x59\x8a\x2c\xa0\x4d\x5e\xca\xa6\xb1\x07\x6b\x4b\xc6\x1e\xe7\xd2\x0b\x17\xb0\xe8\xb3\x07\x9f\x3f\xca\xec\xf2\x85\xc1\xd3\x2c\xca\xc3\xec\x00\x26\xaa\xcf\xea\xa6\x31\xf0\x57\xbe\x78\x02\x7c\x57\x7c\x05\x3e\x4f\xf8\x44\xa6\x04\x37\xa7\x49\xd9\x1d\x23\xaa\xac\xf5\x01\x23\x09\x6e\x25\x6f\xe9\x92\x82\x44\x82\x8a\x0f\x5d\x57\x8b\x8d\x55\x17\x12\x4d\x61\x1a\x4f\x30\x8e\x2f\x68\x98\x52\x29\x98\x0b\x13\x78\xf2\xd9\x67\x20\x83\x79\x57\x40\xc5\x6c\x66\x6a\x2c\x6d\xcf\x55\x79\xf5\xbd\xe7\x81\xa1\x97\xb6\x16\x22\xf3\x80\x15\xa5\x93\x47\xd8\x28\x64\xbd\xa9\x55\xb5\x21\xd7\x9f\xfa\x1b\xb3\x02\x86\x0d\x07\x45\x0e\x0d\xa6\xae\x18\xc4\x3a\x86\x89\xbb\x43\x0f\x83\x24\x1d\xbf\x2d\x1c\x1c\x5f\x7a\x81\xef\xa5\x87\x8c\x5d\x4b\x2b\x75\x20\xb0\x41\xb6\x70\x85\xec\x20\x0f\xf9\x40\xe6\xa2\x23\xd6\xc2\x32\x65\x69\x51\x40\x2e\xb9\xb8\x10\xa4\x86\xb4\x71\x03\x0a\xf6\x64\x22\xf5\xfd\x88\x29\x26\x67\xac\x7d\x1c\x56\x7a\x6a\x8a\x53\x18\x64\x89\x84\x3f\xe5\x7e\xe5\xb9\x90\xf2\x87\x28\x87\xc9\x33\x98\x0b\x76\xeb\xea\x52\x09\x87\xa8\xa6\x16\xa2\x86\xdc\x76\x85\x2c\x32\xbd\xa3\x2a\x5e\x17\xdb\x0f\x1f\xa2\xcf\xa6\x26\x14\x00\xde\x8b\xfd\xeb\x03\x04\xc6\x82\x6c\x91\xe9\x12\xa1\xdc\xfb\x89\xd8\x73\xdd\xe7\x41\x00\x90\x04\x31\x98\x10\xa5\xff\xac\xbf\x8a\x21\xe1\xa4\xd8\xba\x34\xb0\xc2\x2b\xcc\x21\x02\x3f\xb6\x11\x4b\x6c\xfa\x9e\x63\x68\xc5\x3f\xda\xaf\xad\xfd\xa8\xdd\x14\xf3\x8d\x42\xe6\xfc\xee\x39\x6d\xbb\x24\x65\xf2\x8c\xe1\xba\x11\xe8\x88\xa6\x90\x7b\x84\x74\xe9\xbd\x66\x68\x56\x05\x52\xb7\xf8\x60\x9b\x72\xeb\x0f\x40\x91\x88\x1e\x53\x29\x01\x03\x58\xac\xaa\xd9\x44\x99\xf0\x1f\xc8\xbe\xb2\xf2\xd6\xe2\x88\xf1\x19\x42\xc2\x3d\x2e\x21\xf3\xaf\x71\xf9\x1b\x8a\x2e\x41\x92\x30\xe4\x33\x8c\x7c\x37\xcf\x57\x31\x66\xea\xe6\x33\xcc\x80\x03\x8e\xba\xb8\xdd\x19\x36\x23\x94\xe9\x5a\xf0\x49\xc1\xb8\xb4\x59\xe6\xf9\x38\x28\x9f\xb6\xb1\xf6\x89\x82\xd0\x4a\xf1\x1a\x7b\x72\x94\x27\x33\x95\xf0\x5a\xe1\xba\xc1\x47\x02\x9d\x4c\xd0\xa5\xec\x8e\xd4\x4b\x99\xf7\x5d\xbe\xdc\x51\x1e\xb4\xaf\x09\x1a\xa1\x3d\x61\xbd\x80\x39\x17\x2c\x5e\x30\xdb\x9f\x26\x8d\xdb\xc7\x70\x02\x99\x9b\x8f\x58\xb7\x9a\x73\x08\x9a\x0e\x12\xcc\xc4\x07\x68\xce\xc4\x47\xac\xd0\xa3\x46\x76\x80\xed\x49\x38\xe0\x9b\x43\x5c\x4f\xd4\x88\xc3\x92\x31\x93\x59\x00\x99\x38\x04\xe1\xd9\x64\xee\x8b\x59\x09\x82\x80\xfc\x3f\x16\x38\xe9\xa4\x1c\xf0\xde\xcb\xb4\xa4\x2a\xc7\x25\x93\x91\xac\x2c\xc0\x75\xd4\x73\x46\x22\x86\x0b\x74\xf5\x39\xee\x4f\xca\x59\xe8\x39\x0c\x9a\x22\x95\x89\x35\x3a\x12\x2d\x57\xc4\x78\xb6\xc7\x74\x70\x78\x92\xa8\x7a\x7f\x95\xaa\xdd\x16\x30\x89\x94\x2b\x5e\xdd\x30\xc5\x84\xb9\x6a\x28\xd7\x9b\xcb\x16\xbc\x3b\x5d\x67\x49\x1a\x33\x66\x39\xb1\x8a\x2f\xfb\x9b\x3c\x78\xc9\x19\x96\x20\x02\x9d\xa0\x03\xf6\xd8\x4b\x52\xce\xc4\x6e\x1e\x15\xb5\x61\xbe\xba\xe3\x72\x72\x3c\x0d\xc5\x0e\xce\x0a\xad\x3d\x09\x07\x7c\xe2\x43\xfa\xe2\x50\xf9\x1b\xaf\xab\xc2\x2d\x40\x75\xd4\xeb\x85\x44\xde\x0c\x9a\x14\xcb\x56\x95\x1c\x30\xa8\x65\x5c\x74\x83\x43\x5c\x23\xc6\xb1\x6f\xbb\x30\x76\x57\xa5\xe1\x09\x9f\x67\x45\x90\xe8\x8c\xaf\x62\x3c\x81\xe0\x9e\x2d\x8f\x21\x9e\x93\x19\x91\x75\x65\x3a\xa6\x28\x16\xa7\xdc\x4a\xe5\xdc\x71\xd4\xb2\xa9\x44\xc7\xf0\x98\xf8\x42\xb2\xdf\xfc\xd8\x92\xbd\xae\xbc\x3d\xe7\x22\x5a\x77\x29\x83\x9e\xa9\xa1\x28\x9d\x9f\x8a\x35\xe9\x83\x5e\x09\xf7\x91\xf0\x11\x03\x48\x9b\x09\x4a\xa6\x6e\x10\xb6\xf5\x9d\x91\x65\x4b\x4f\x74\x35\x2f\x2c\xd3\xaf\xdf\xad\x19\xe8\x3f\x04\xaf\x94\xbd\x40\x9b\x80\x51\x14\x06\x6b\xc3\x55\x69\x7f\x8a\x74\xf4\x21\x7f\x44\x2d\x79\x37\xaa\xed\x92\x74\x6e\x82\xf4\x1c\xa2\xc2\xa1\xe1\x34\x7c\x01\x3c\x99\x1b\x2f\x46\x08\x55\xe9\x78\x9a\x49\xc2\xbb\x41\xe8\xca\xbb\x70\x96\xfb\x06\xcc\x49\xda\x11\xfc\xc9\xa6\x8e\x3b\x02\x69\xb6\x66\xcf\x7d\xb3\xbc\x3b\xe7\xee\xfb\xa4\xee\x1a\x0e\xdc\xcd\x17\xe3\x9a\x62\x74\x3e\x10\x8f\x5e\xf6\x56\x98\x74\xd4\x2e\x8b\x38\x6b\x51\x68\x90\x11\xe2\x45\x61\x79\x24\xa8\x5d\x1e\xca\x99\x67\x29\x4e\xe1\x77\x5c\x2c\x57\x71\x9e\x2e\xe1\xb6\x3f\x9f\xcd\x78\x9a\xa2\xe6\xd5\xb0\x23\x19\x94\xb8\x83\x4c\x62\x76\xb4\x00\xd7\x28\x45\xe3\x02\xa7\xd0\x2d\xf1\x40\x21\x52\x1c\x55\x53\x9e\x41\x21\xb4\x41\x80\x52\x66\x38\x3d\xc8\x39\xe0\xde\x53\xde\xfc\xdd\x33\xa4\xcb\x7e\x67\x48\xd6\x6e\x25\x8b\x35\x01\x3a\x36\xb5\xe2\x83\x5d\x05\xfe\xa5\x5a\x00\x46\xcd\x56\x6b\x39\x7d\x87\xc1\x18\xd0\x65\x1b\x46\x80\x5d\xa3\x94\xc6\xc7\x82\xe2\xdf\xe0\x8f\x3e\x48\xe9\x94\xe8\x68\xe5\x9a\x20\x28\xbe\x8f\xd2\x2c\x34\x7c\xcb\x21\xc7\xf2\x4e\x99\x0e\xd2\x06\xae\x62\xf4\x44\xd2\xdc\x15\x02\xe9\xe2\xc9\x27\x7c\x52\xca\x9e\x97\xb2\x77\xc3\xec\x45\xd4\x45\x86\xcd\xbd\xa5\x22\x7f\x2c\x97\x21\xf8\x6c\x96\x0d\xec\x40\xca\x1d\xaf\x72\xba\x10\xd4\xfb\x74\x6d\x37\x6a\xee\xa8\x4b\xdb\xae\x2d\xb5\x21\x79\x7d\x74\xff\x3e\x7b\x01\xe1\xd0\x46\x98\x5c\x42\xb7\x62\xb9\x7d\x5e\x77\x92\x0e\xf8\xb1\x99\x5a\x57\x81\xe1\xd6\xf3\x81\xc8\x5b\x9b\x3a\x34\x85\xdb\xe8\x03\x6d\xdd\xc5\xb9\x73\x0e\xc5\x80\xfe\xe1\xa4\xb1\xe0\x46\x06\xdf\x27\x19\xa1\xfb\x47\xe2\xd8\x5a\xe5\x15\xaf\x24\xd9\x4f\x60\x2a\x31\x0a\x66\x95\x83\xd0\x60\x4a\xde\x56\xc6\x85\x03\x7b\xe4\x09\x67\x09\xff\x45\x99\x1a\xc4\x01\xf7\x52\x8e\x16\x54\xde\xc2\x33\x19\x6a\xb9\x11\xb1\xc7\xa8\xce\x93\xc7\x6f\x21\xbe\x7e\x79\x8d\x22\x35\xf4\x1f\xe4\x2f\xd3\xc6\x84\x58\xdd\x05\xd7\xf1\x59\x83\x30\x09\x54\x77\x5d\x32\xa2\xab\x4e\x2b\x63\x6d\x41\x32\xaf\xc2\x66\x98\xcd\x7d\x79\x8d\xb2\xf2\xb2\xd9\xb2\x93\x73\x57\x35\x02\x8e\x34\x8b\x56\x75\x13\xfa\xb5\xbc\x8e\x7d\xc1\x0f\x17\x87\xe0\x86\x56\xbe\xfa\x06\xcc\xd4\xdf\x9d\x4e\x31\x77\x88\x7c\xfd\xbc\x25\x4d\xc7\x92\x8b\xcd\x54\xae\xfe\xa9\x6a\x83\x6b\xe8\xfa\x50\x94\x7b\x5e\xd2\x79\x73\x3d\xbe\x38\x7e\xdf\x93\xdc\xff\x3b\xe7\x0f\x3c\x88\xe2\xe7\xb8\x0c\x3e\x2f\x7f\xdd\x89\x86\x9b\x2d\xbf\x31\x68\x61\x7a\x49\xee\x80\xb4\x5d\x5f\x6f\x5e\x7f\x25\xc6\x25\xf7\xc0\xe0\x51\x9a\x4f\xce\x82\x7c\xce\x0b\x3b\xdd\x84\xff\x33\xe7\x69\x76\xc0\x30\x5d\x8e\xba\x34\x90\x7e\x11\x82\x3c\x5b\xe5\x41\xe6\xc7\x90\x84\xde\x5f\x99\xa2\x67\xed\x88\x8d\x75\x2f\x94\x71\x54\x6e\xb4\x00\xb7\xde\xdb\x53\xf6\xd2\xe5\x5d\xe4\x25\x73\xbc\x30\x16\xdf\xcf\x30\xab\x18\xcb\xda\x73\xe4\xf7\x60\xc4\x22\x2f\x4e\x12\xae\x4c\xa7\x70\xe3\xa6\xe7\x6c\x53\xc7\x0d\x81\xdc\x16\xb8\xe0\x30\xd7\x24\xa0\xc1\x64\xa7\x36\x57\x87\xa6\xa2\x74\x7e\x1d\xc6\x3d\xda\x72\x74\x4e\x5d\x8d\xda\x5e\x8c\xce\x07\x55\x18\xdd\x7c\x36\x8a\xd1\xf9\x10\x2e\xa9\xac\xea\xb8\x23\xe8\xb8\xa4\xea\x2c\xef\xce\xb9\xf3\x92\xca\xa2\x86\x03\xf7\xfa\x89\xd5\x82\x75\x7b\x71\x07\xbe\xc6\xcb\x31\x5d\x31\x47\x3e\xea\x14\x3b\x87\xc9\xc6\xaf\x7c\x46\x42\xb1\xa7\xf1\x17\x72\xc1\xa9\x97\x93\x56\xa7\x41\xd0\x15\x03\x92\xed\x86\x8b\xed\x5a\x5d\x72\x37\x5e\xab\x6b\x4a\x91\x5b\x12\xed\x01\x64\x32\x60\xa6\x92\x01\xe3\xc6\x44\x80\x5c\x46\x70\x64\x80\xdb\x36\xd1\x39\xd4\xe6\x30\x8e\x39\x9a\xa4\xc9\x1b\x27\xbd\x2d\xc2\xd0\xe4\xc9\x72\x99\xdd\x25\x35\xa5\x1c\xb8\x98\xae\x0b\x35\xa5\xa8\x5c\x66\x30\x19\x80\x43\x42\x17\xa3\x96\x82\x44\x5e\xa9\xbd\x4d\x43\x77\x05\x1a\xef\x7d\x5e\x2f\xee\x9e\x21\x5d\x76\xd7\xeb\x45\x3a\x01\x3a\xb6\x01\x74\xa9\xbd\x68\xd1\x11\xf7\xd2\x92\x3a\x52\xa1\xa3\xec\x7d\x69\xd8\x83\x12\x1d\x6d\x79\xf1\x75\x0d\x7f\x58\x02\x33\x56\xea\x81\x01\x4f\x55\x34\x04\xdb\x55\xe8\xfc\x87\xbc\xaa\x1b\x86\xa8\x8b\x0c\x36\xf7\x6b\x36\xb0\x69\x74\xdc\x91\xf6\xba\xa4\xeb\x49\xcd\x1d\xf5\x1e\x35\xff\x7b\xe5\xed\xd0\x22\xfa\x2b\x2d\xb7\x2f\xe9\x48\xcf\x15\x79\x79\xb3\xd0\xf4\x70\xa8\x9e\xa3\x7b\x83\xfb\x47\x1b\x92\x09\x5d\xc6\x21\x6e\x62\xfa\x11\x23\x60\x4e\x67\x89\x8f\x91\x6e\x8e\x6a\x7d\xbc\xf6\xd8\x38\x71\x51\x2a\xdb\x63\x92\x91\x6c\x98\x87\x16\x88\x45\xbc\x92\x52\xa7\x59\xf7\x84\xd1\x43\x73\xa1\xe1\x8a\x10\xce\x57\xe5\x44\x21\x38\x6d\x85\x5b\x89\x42\x7c\x5e\xd8\x8a\xdb\xa2\x76\xa7\xdb\x4f\x92\xb2\x99\xea\x0c\x69\xa0\x3b\x48\x90\xf1\x81\x52\xa0\xe6\xa5\x01\x2a\x01\x19\x02\x03\xed\xf0\xa1\x2d\x54\xfc\xf4\x4e\x98\x0d\x4a\x0e\xca\x84\x1a\x19\xc1\x1b\x6d\x40\x8b\xc4\xf4\x2c\x8d\xe4\xf9\x5b\x66\xd7\x58\x7a\x0f\x8d\x56\x09\xe7\xa8\xa0\xcf\x53\x59\x5b\x55\x32\x4c\x01\x3b\x64\x45\xfc\x00\x78\xb4\x93\xe4\x21\x8e\x17\xf4\xbf\xdf\x21\x6c\x83\x57\xb7\x5b\xd4\x2e\x95\xa4\x25\x69\xd7\xfc\xdc\x25\x87\x86\x15\x23\x4d\x06\xc6\x13\xb0\xb4\xfc\xef\x6b\x63\xb2\x06\xc6\xe2\xe8\xb9\x07\x96\x7b\x92\x1f\xba\x5d\xbf\x33\xe3\x9e\xd9\xf7\x6a\x97\x96\x1e\xda\x85\x70\xf0\xc6\xd9\x39\x06\x4a\x0b\x7d\x56\x01\xd0\xe4\x9d\xec\xb7\x7f\xfa\xf3\xf9\x01\x7b\xfd\xea\xdb\xef\xe1\x9f\x77\x06\x2d\xa7\x7d\x4d\x0a\x1a\xb8\xe8\x85\x4b\xd4\x40\x9c\xab\x30\xb8\x4a\x26\xe6\xc3\x32\xce\x84\x09\x8d\x6d\x4d\x7b\x34\x91\xf2\xfd\x0f\xa2\x04\x9c\x43\xc5\x59\x3a\xce\xf5\xae\xe4\x5d\xc5\xa9\x7c\x57\x5e\x5c\xdc\x43\x61\x70\x08\xe5\xb2\x85\xb2\xc9\xa4\xd4\x85\x56\x19\xd7\xd8\x38\xe1\x0f\x7e\x24\x04\x46\xaf\x90\x54\x46\xa0\x91\x55\x0c\x9d\xd3\xc8\xca\x61\xc9\x95\xf4\x64\x26\x23\xe5\x99\xe1\xdd\x83\xbb\x0d\xa0\x32\xae\xf9\xf6\x35\x09\x0d\x39\xcb\x21\xa3\x13\x32\x01\x7f\x20\x9b\xfb\x6b\x9b\x3a\x04\x04\xa8\xf0\x93\x03\xa4\x16\x71\xd8\x30\xac\xba\x6b\x10\xb9\xa7\x47\x1d\xcc\xea\x05\x08\xb4\x1f\x43\xf0\x02\x66\x5e\x06\xce\xc1\x99\x28\xee\x07\x7c\x5e\x84\xec\x80\xa0\x18\x10\x24\xfa\x56\x06\x38\x43\x6b\x08\x0c\x2d\x74\x50\xc6\xb3\x4a\xf1\x83\x7b\x0f\xa2\x1e\x96\xc1\x5e\x0c\x8b\xc1\xc2\x7f\xe0\xd8\xf4\xa6\x7e\x6b\xc1\x9d\xca\x3b\x88\x66\x5e\xf0\xd2\x0f\x45\xa7\x0b\x79\xe6\x60\xe9\x59\xa0\x2a\xc3\x27\xa9\x58\x21\xcf\x53\x36\x83\x50\x83\x69\xbe\x62\xf3\x88\xa7\x95\xb1\x11\xa6\x61\x66\x2b\x9e\x79\x73\xcf\x74\xfb\x3d\x18\x61\xfb\xef\x9b\xaf\xe2\x46\x3c\x24\x68\x43\x2e\x5a\x1c\xe6\x15\x19\x01\x48\x0f\x97\x52\xd7\x1a\xd1\xe4\xe2\xc3\xe9\xf5\xe5\xc5\xf9\xe4\x62\xca\x3e\x8c\xaf\x4f\xc7\x6f\xce\x26\x0c\xb3\x4a\xe8\x6d\x5e\xac\xea\xf4\x42\x70\xa3\x1f\x5d\x5d\xc5\x6d\xbb\x55\x15\x68\x5d\xcf\xaa\xa5\x88\xbd\x58\x72\x9c\x94\x51\xc8\xe5\xc2\x55\xee\x53\x95\xdd\x52\xaa\x16\x9e\x34\x8e\xc2\xd4\x70\x83\xdc\x93\x1a\x15\xf5\xfb\xe9\xf4\x0a\xcc\x7d\x7f\x5d\x17\x81\x3c\xc1\xc2\xb2\xe0\xd2\x85\xd2\xb6\x36\x15\x55\x1f\x7d\x88\x0b\x09\x47\x7c\x83\x69\x43\x86\x22\xdb\x4b\x0e\x9a\x2e\xc4\x81\x02\x15\x9d\x10\x51\xe5\x54\x92\xbb\xc2\x2e\x2c\xfa\xf2\x54\xce\x4d\x1d\x0c\x84\xd3\xe1\xf6\xea\x97\x36\x1a\x0e\xb3\x56\xb8\x2f\xe5\xcb\x0e\x39\xd1\xda\x7d\x7f\xaa\x97\x5d\xb3\x73\x96\xbb\xaf\x16\x84\x2e\xfa\x0e\x38\xee\x47\xfa\xde\x6a\x97\x3d\x73\xef\xd3\x2a\xfb\x56\xba\x3c\x05\x04\x42\xfb\x3c\xb0\x22\xc7\x30\xba\x5b\x78\x4a\xf9\xc7\x1e\xbd\x54\x05\xa4\xca\x4c\xb2\xd1\xaa\xdb\xe3\x82\x83\x93\x9c\xf2\x65\x30\x54\xdc\x05\xe9\x71\x74\x14\x27\xf2\x9d\x15\xfe\x4c\x55\x24\x07\x71\xa4\x3b\xd2\xfb\x1e\xd8\x56\x73\xc5\xa1\x04\xb2\x49\xe0\x43\xa8\xe9\x8a\x26\x53\x01\xb8\x2c\xe2\x6c\x12\x6a\xba\xa2\xe9\x08\x1f\xd6\x51\xda\x99\x6b\xcb\xfd\xea\xa1\x55\x24\x4f\x77\x42\x44\xac\xf3\x56\x8b\x34\x39\x3e\x09\x48\xe9\x64\x5c\x71\xb6\x9b\xa4\xd9\xc5\xad\xeb\x43\x8a\x8a\xb7\x8c\xd0\x8c\x43\xab\x1a\x59\xa6\x43\xb1\x7d\x4d\x67\x34\xf2\xfc\xea\x04\xc7\x54\x95\x88\x07\x42\x51\xe2\x6a\x57\x2a\xb4\x60\x93\x43\xf9\x88\x24\x0a\xbd\xd1\x49\xf3\x70\xeb\x89\x95\x42\xc0\x11\x5b\x11\xd4\x1f\x4c\x35\x56\xf3\xa2\xe7\x5a\xe2\xea\xaa\xec\x88\xa9\xff\xd0\x74\xa2\xe4\x88\xb6\x33\xd4\x6e\x57\x71\x47\xbe\x9b\x9b\xb4\x6a\x7a\xb4\xb3\x8c\xe9\x49\x6d\x60\xd4\xbd\x81\x0e\x80\xad\xcd\x30\x8e\x8c\xcf\x96\x08\x11\xe3\x42\x06\xf4\x82\xeb\xa1\xc0\x9f\xc9\x4b\x9a\x34\x17\xc3\x0f\x22\x72\x77\x40\xb3\xac\xeb\x88\xa8\x98\x04\x30\x2d\x9c\xbc\x91\x93\xaa\x7a\x21\xf3\x5b\xb1\xfd\x92\x09\x1c\x2d\x21\x52\x89\x39\x62\xc6\x88\xae\x10\x7a\xd7\x12\x56\x4b\x79\x47\xce\x4a\x9c\xe2\x82\x42\xca\x08\x77\x16\xd6\x5f\xd1\x8a\x02\x11\x9d\xa0\x07\xdb\x04\x3f\xe1\x70\x05\xd8\x01\x44\x57\x98\xc8\x53\x74\xbf\x74\xe9\xe1\x61\x15\x92\x62\x77\x30\xd5\x96\x26\x72\x85\x58\xba\xcd\xfd\xa5\x31\x08\xae\x5d\x25\x22\x06\x08\x49\x6d\x29\x76\x7b\x51\x47\x7e\xca\x45\xdb\x92\xe5\x56\x69\x2a\x57\x9e\x40\x68\x6b\xfb\x13\xb5\xa9\x02\x95\x77\x12\x81\xfa\x03\xb7\x00\xe5\x18\x01\x95\x07\xc4\xfe\xee\x82\x61\x57\x97\x88\x48\x9c\xc0\xe6\xdb\xa7\x75\xeb\xd5\xc5\xbe\xba\x23\xae\x62\x5b\x6e\x89\x63\xbb\x78\x4f\xbe\xd8\xcc\x44\xe6\x1b\x75\x86\x40\x60\xdb\x49\x6c\x2b\x93\x31\x85\xde\xaa\xff\x29\x9a\x4e\x86\x8c\x13\xc7\x27\x2e\x8d\x36\xdf\x4d\x53\x9a\xcc\x35\x8d\x82\x87\xd2\xbd\x87\x32\x7a\xba\x2b\x12\xb1\x60\xc0\xfc\xfe\x5f\x8a\x4e\x86\x8c\x13\x54\x50\x1b\xbb\x3f\xcb\xf0\xfc\x0e\x14\x9c\xd1\xf5\x6d\x46\x32\x1d\x22\x52\x08\x82\x8f\x4a\xc5\x88\xae\x91\xb4\xac\x4b\x44\xf4\x9b\x1f\xc7\x1b\x5f\xa5\x03\x87\xb1\x06\x8d\xfb\x11\xbb\x88\x64\xc0\x1b\x4c\x4d\xd7\x69\xa6\x68\x57\x89\x8a\x01\x22\xc6\xcc\xc1\xd0\x82\x3d\x7a\xb2\x89\x91\x64\xba\x0e\x67\xec\x97\xe8\x0e\x73\xd9\x88\xa2\x68\xc4\xf6\x1c\x9a\x1f\xbc\xf9\x53\x7d\x80\xa4\xa1\xc8\x52\xe5\xb0\xeb\x47\xfd\xfa\xcc\xaf\x7c\x96\x4b\xd7\xed\xc4\x7b\xac\x62\xf2\xcc\xa2\x30\x13\xbb\xf8\x51\xb6\x8e\x21\x07\x6f\x86\x97\x69\x55\xff\x78\xf9\x4b\x2a\x0e\x8b\x77\xeb\x22\x79\x91\x1e\xe1\xd0\xf4\x09\x92\xc5\x18\xf0\xac\x71\xbc\x95\x37\xff\x9e\x3c\x47\x46\xf7\xec\x33\x5f\xbf\x94\x09\x0a\x63\xcf\x4f\x52\x95\x67\x8b\x45\x33\x0c\x98\x3d\xaf\xa7\x39\x62\x21\xf7\x12\xb1\x44\xc0\x57\xfe\x61\x15\xdc\x84\x62\xd4\xf0\x4c\x7c\x69\x83\xec\x7b\x47\xd0\xab\x75\xd2\x06\x38\x92\x58\xba\xaa\x74\x3c\xe5\xf4\x5c\x52\x84\xde\x21\x1b\x8a\xfd\x8f\x8f\xf9\xab\x57\xdf\x71\x99\x53\xf2\x40\x4c\xea\x19\xf3\x33\xbc\xe6\x43\xdf\xbf\xa9\xe8\x4c\xa6\x7c\xe4\xbb\x61\xe2\x24\xe3\x55\x22\x0e\x8f\x49\xb6\xde\x80\x71\x17\x45\x01\xf7\x0c\x71\xfd\x9c\x68\x0c\x89\xb0\xe8\xb7\x69\x96\x88\x19\xd0\x90\x4e\xa8\x17\xad\x21\x11\xcb\xdc\x4e\xdb\x1f\xb2\x28\x4e\xe9\x35\x43\xb1\xb0\x96\xef\xed\xf8\xf4\x6c\x72\xa2\xc5\xb6\xf9\xda\x9e\xee\x64\x3c\xbd\xbd\x9e\xb0\xb7\x67\xe3\x77\x7a\x73\x51\x4d\x29\x7b\x2e\x68\x85\xcc\xee\x79\x36\x5b\x36\x76\x61\xa9\xdd\x35\x25\xb9\xbe\x33\x32\x79\x23\x90\x5a\xee\x80\x89\xb5\x9d\x51\xf1\x07\xb1\x46\xba\x82\x32\x57\x76\xc6\x14\x25\x8b\x91\xb4\x1e\x93\x59\xe2\xa5\xd1\xc5\x65\xb2\xb8\x16\x7f\x4e\x23\xe5\x78\xa2\xbc\xb7\x9c\xbe\xf2\x00\x1c\xfa\x48\xe7\xda\xde\xa6\xaa\xce\x78\xa4\x47\xcb\xa1\xc5\x91\x96\x50\xd3\x19\x4d\x33\x6a\x82\xe3\x20\xb6\x23\xe2\x8e\x11\xee\x57\x5a\xfa\x0f\xde\xbb\x0c\xd6\x47\x07\xe2\xd2\x4f\xca\x7a\xdb\xd9\x5d\xee\xb9\x92\xa1\xe2\x14\x0b\xa3\xca\x94\x87\x1b\xf9\x7b\xa5\x6c\x81\x98\x8f\x9f\x0a\x7f\x0c\xb3\xee\xd7\x9d\x90\x3b\xd6\x62\xa3\x7d\x00\x11\xdd\x94\xab\x8c\xcc\x13\xc9\xc3\x07\x3f\x89\x42\xb8\xd8\x28\x6d\xcd\x0c\xca\xc0\x01\x29\x3b\x48\xa3\xee\x44\xcc\xf7\x08\x5d\xc5\x1d\xf8\x4a\x5f\xb5\x08\x43\xc0\xd8\x7f\x5e\x63\x2d\x7b\x14\xca\xbe\x19\xee\x03\xe5\x9f\x6f\x03\x0f\x42\x64\x28\x4f\xf4\xb9\x7e\x7f\x47\xa9\xda\x1f\x8f\x34\xce\x76\x81\xb3\x5d\x93\x8a\x46\x7f\xc5\xb3\x5d\xc0\x9e\x36\xdc\x81\x62\xfe\x57\x54\xde\xa0\xd3\x58\xb0\x3e\x10\xdd\xea\xb3\x38\xd9\x83\x24\x68\x4a\x0e\xa5\xf8\xaf\x3e\x7a\xba\x64\xca\xa5\x2d\xf6\xc4\x37\x37\x99\xad\xea\x68\x2b\x2f\x37\xa5\x3c\x9b\x17\xce\x6f\xd2\x09\x4c\xe5\xe5\x04\xc5\x7b\xe1\xbb\xa6\x4d\xcf\x6f\xb4\xd8\x7f\x1b\x41\x88\xda\xb9\x8c\xa7\xf7\x62\x2e\x1d\x32\x63\x41\x37\x96\xee\x3b\xb3\x28\xbc\xf7\x55\x92\x56\xbd\x03\xa3\x23\x15\xfb\xf6\xaf\xe8\x83\x7e\x01\x72\x1f\x83\x8a\xaa\x4e\xd6\x06\x5b\x77\x5d\x22\xa2\x95\xbf\x48\x3c\x57\x48\xb6\x95\x89\x98\x44\x0f\x97\xb3\x8d\xcc\x7e\x56\xd0\x96\x5f\xa3\x03\x92\x65\x5d\x6b\x44\xef\x26\xd3\xe9\xe9\xc5\x3b\x76\x33\x1d\x5f\x4f\x0d\x47\x3c\x6d\x39\x7b\x4e\x67\x97\x6f\xc6\x67\xec\xf2\x6a\x7a\x7a\x79\x61\xf0\xcf\xd3\x96\xb3\x1d\x30\xef\x94\x29\xc2\xe5\xb8\x8c\x02\x66\x1a\xdd\x5d\xc5\xed\x05\x2c\x0c\x59\x20\xd2\xaa\xdc\x5d\x2a\x27\x70\xb1\xb6\x7d\xe6\x99\xd8\x86\xcd\xb8\x0d\x12\x7b\x02\x74\x6c\x71\x9c\xee\x2a\x84\xe5\x4e\x78\x90\x25\xac\x1d\xce\x0f\x0f\x0d\xb6\x82\x9d\xe5\xc9\x9c\xd5\xf1\xdb\x90\xda\x85\xd6\x8e\xce\xf4\xc8\xc8\x79\xcd\x77\xa1\x0c\xcd\xc0\x7e\xdf\x43\xd8\xd3\x27\x40\x40\x6f\x1d\xd4\x60\xec\x02\x94\x45\xf7\xdc\x0f\x73\x72\x9b\xc0\xe6\xe6\x69\x7a\xca\x1e\x38\x93\x5b\x03\x6c\xef\xfa\x7b\x47\xf5\xa4\xe6\x8e\x7a\xc8\x08\xa2\xc3\x12\xef\x21\x53\x57\x00\x43\xe7\xbc\x5e\xbb\x64\x45\x96\x57\xe7\x35\x69\x31\xb3\xd8\x54\x25\xe3\x91\xe6\x9f\x69\x15\x72\x1e\x4c\x3f\x53\x3f\x8b\x12\x5f\x8c\x5a\x41\x5d\xaf\xad\x70\x21\xd1\x0f\x5f\x49\x78\xcd\xf4\xd7\xa7\xe6\x9a\x00\xa9\xfd\xe2\xd3\x6a\x8b\xda\x1a\x2f\x14\x3b\x96\xcb\xc4\xe1\x48\x8d\xdc\x88\xc8\x87\xe6\x1e\x4c\xa9\x4a\xc6\xa3\xe2\x2d\x6d\x12\x65\x76\xe3\xc0\xb2\x36\x19\x55\x73\xe2\x4b\xe9\x53\xa8\x3d\x01\x07\x6c\x2a\x4e\xb2\xf4\xc3\xa5\x7c\xc9\x85\x03\x09\xea\xb0\xd8\xa0\x0d\x93\x6c\x15\x21\xf9\x0d\xfe\x05\x93\x69\xd8\x8c\xbb\xa1\xa6\xda\xf2\x37\x71\xf9\xd5\x08\xb6\x23\xe6\xbb\x6b\x92\x6d\xdf\xe9\xaf\xa1\xad\x76\x82\x6a\xdf\x8d\xf8\x04\x2d\xf4\x04\xe2\xef\x4e\xca\x1d\x0b\xb3\x9f\x0e\xfe\xc4\x1d\xf6\x89\x87\xf7\xd7\x3a\x8e\x77\x39\x60\xf7\x38\x32\x4b\x15\x64\xea\x7a\x2c\x71\x21\xe5\xbc\x7f\x50\x97\xe7\x8e\x27\x10\x22\x15\x67\x94\x18\x63\x04\xf6\xc1\x4a\x71\x6f\x13\x81\xc7\xb9\xdd\x87\x65\xb6\x1f\x99\x77\x26\xdf\x20\xb2\x6c\xeb\xc0\x77\x98\xb6\x62\xaf\xbc\xdd\x5b\x64\x8f\x0d\xf0\xa4\xf2\xb6\x64\xd5\xe8\x73\x42\x76\xa6\xd7\x07\xb9\xdb\x49\xd9\x9e\x80\x1b\xb6\xb4\x2d\x99\x87\xf1\x3b\xda\xcc\xe8\xfd\x29\xd3\xa5\xc9\xe0\xf2\xa6\xd9\x4d\xcb\x9d\xc7\xf0\xfa\xe7\x5d\xb1\x23\xcb\x2d\xad\xbe\xda\x33\xb2\xbc\xd4\x29\x25\x29\x59\x95\x76\xc7\x68\x50\x59\x1d\xe7\xb7\x3e\x24\xad\xf1\x63\x20\x53\xf4\xd3\xd5\x26\x9e\x66\x77\xd1\x7c\xad\x45\x4b\x27\x40\xc3\xb6\xe2\xd9\x32\x9a\xb3\x17\xef\x26\xd3\x83\xab\xcb\x1b\xf1\x9f\xdb\xe9\xc1\xc9\xe4\x6c\x32\x9d\x1c\xf0\x6c\xa6\xb7\x27\x21\xd6\xb6\x47\x15\xa5\x19\x8c\x0e\x3d\xe3\xad\x02\x64\xda\x55\x1a\xf4\x34\xbf\x93\xb7\xac\x06\x41\xad\x2a\x59\x63\x38\xbd\xb8\x99\x8e\xcf\xce\x26\x27\xec\xea\xec\xf6\xdd\xe9\x05\x3b\xbe\x3c\x3f\x1f\x5f\x9c\xe8\xad\xdf\xb5\xe5\x6c\x0f\x19\xa7\x8b\x30\x4a\x78\xd3\x39\x5b\xcb\xcd\x5c\xd8\x5e\x4c\xd5\x55\x4b\x0f\xe4\x22\x01\xbb\xea\xbb\x1d\x41\xfb\xa9\xd5\x29\xb8\x22\x31\xaa\x67\x19\xbb\x4d\xbd\x85\xa1\x19\x74\xe5\x5c\x39\x99\x56\x4f\x53\x51\x67\x7e\xec\xb8\x0c\x56\x12\x72\x4c\x6e\x0f\x79\x6e\x7f\x9d\xf1\x38\x63\xa3\xfb\x6f\x20\xc2\x2a\x98\x80\x81\xe3\x08\x38\x50\xf1\x39\x7b\x5c\x82\x31\x9c\x0c\xeb\x5f\xe5\xbd\x47\x6b\x0e\x79\x17\xd3\xec\x15\xfa\x29\xf6\x29\xa1\x38\xb4\x57\x61\xd2\x2b\xce\x33\x47\x95\xfb\x2b\xd8\xa1\x82\xe1\x1f\x06\xcc\xcf\x5f\xbd\x7a\xf5\xff\xab\xff\x86\x1f\xbc\xc0\x9f\xab\x5a\xd2\x9e\x10\xd3\x01\x1c\x7d\x0c\x7f\xfc\x18\x0a\x3e\xf0\x1f\xc6\x3e\x3e\x8b\x93\x28\x8b\x66\x51\xf0\x51\xb0\xfb\xf8\x2c\x9b\xc5\x1f\x9f\x1d\x14\xef\xe6\xe8\x71\x8e\x2d\x26\x5f\xbf\x7e\x75\xf8\xed\xf7\xdf\x1f\xbe\x3e\x7c\xfd\xef\xb5\x62\x71\x94\x64\xa9\x2c\xf0\xdd\x77\xaf\xfe\xfc\xf1\x19\xbc\x10\x80\x7e\xb2\x68\xfb\xff\xde\x62\x39\x7c\x47\xe9\xfe\x84\x96\x71\xc9\x02\xb3\x45\xe8\x2d\x4d\x2d\x6b\x39\xa0\xc8\x2d\xe7\x95\xdc\x79\x5e\xc1\xa4\x09\x38\x0d\xaa\x60\x3b\x98\x07\x5c\x3a\x69\x16\x11\x8a\x0a\x59\xb4\x40\x54\xee\x85\x91\x22\x71\x35\x9e\xbe\x7f\x39\xbd\x7c\x29\x17\x9b\xd1\xc5\xf8\x7c\xc2\xd8\x88\xb9\x32\xb3\x5e\x9a\x24\xfd\xea\x7e\x15\xba\xe8\x15\xfe\x25\x63\x29\x99\x76\x72\xb4\xca\xb4\x06\x36\x65\xc7\xdf\x2e\x40\xa6\xcd\xce\xf9\x2a\x4a\xf4\xdb\x3e\x6d\x39\x3a\xa7\x55\x9e\x66\xca\x3d\x30\x0a\x47\x21\x5f\x08\x26\x0f\x1c\x6d\x92\x17\x86\x64\xee\xe4\xfa\xd6\xc8\xe0\x50\x94\x79\x99\x32\x91\x10\xb3\xc9\x42\xac\xf2\xe9\xa1\x58\x2b\x38\xfa\xae\x2b\x05\x52\xaa\x16\x0d\x70\x62\x8f\x92\xfa\x9b\xda\x0b\x70\x6d\x80\x4c\x1b\x10\x03\x49\x59\xea\xca\xfc\x42\xfa\x5e\xb3\x6f\xf6\x84\x2f\xf6\x80\x33\x30\xcc\xd0\xad\x91\x5b\x0c\xdf\xca\xba\x26\x19\xcd\xb5\xf2\x28\x82\x7f\x0d\x67\xc5\xae\xe2\x64\xbe\x37\x37\x67\xec\x98\x27\xd2\x38\xfd\x77\x95\xea\x07\x1d\x84\xa6\x7e\x7c\x2e\xbe\x98\x98\x3d\x2d\xf0\x50\xc9\x90\x71\xca\xb8\x0b\x4e\x9f\xcb\xa6\x2a\x1d\x4f\xa9\xf6\x3f\xd2\x9b\xda\x98\x0b\x93\x79\x56\x81\xa8\x60\x98\x80\x6d\x8c\x54\x78\x3c\x17\x2b\x48\xb1\x6a\x40\x91\x32\x17\x0e\x7a\x60\x74\xa2\xeb\x4b\x96\x2e\x07\xe4\x4e\x43\x8d\x1b\x6e\x95\x20\x95\x9a\xd2\x10\x52\x1d\xdc\x06\xa0\xb8\x03\xf4\x83\x00\xee\x85\xd1\x2f\x56\x95\x59\x94\x87\x19\xb2\x28\x16\x9a\x63\x78\x02\x6c\x4e\x1b\x65\x6a\xeb\x0f\x9a\x5c\xd9\xad\x5d\x3b\xe5\x36\xa4\xd4\xe9\x7e\xc5\xee\xc5\xce\x5d\xee\x15\xee\x62\x64\x5a\x42\xc4\x23\xb7\x35\x67\xf0\x9b\xd4\x3d\x7b\x50\x74\x46\xdf\x68\xc0\x46\xd3\x0d\xf0\x8d\xfa\x11\xdf\xa1\x4c\x01\xe6\x67\x58\xca\xe4\x0c\x1b\xa3\x66\x40\xe9\xec\xd8\x90\xe5\xc4\x53\x6c\xb9\x7e\x74\xe2\xd5\x15\x27\xf3\x2d\xb4\x12\x87\xac\x0a\x4f\x03\x69\x1c\x3b\x11\x74\x57\xa4\x63\x69\x19\x22\xf4\x11\x47\xa4\x32\x08\x4a\xa7\xa9\x61\x0f\x33\x82\x86\x85\xfb\xf6\xc0\x9d\x20\x19\xbb\x9c\x44\xa2\xf0\x90\xb9\x41\xb5\xae\x4f\x46\x06\xf1\xcc\xd0\x85\xd1\x4b\xbc\x15\xb6\xc2\x54\x3e\x21\x7d\x7e\x22\x15\x32\xca\x2e\xb5\x4e\x6b\x29\x32\x17\x19\x82\xeb\x5e\x1d\x38\x9b\x61\x7e\x9e\xa3\x54\x37\x18\xa4\xe8\x83\x17\x58\x46\x20\xbc\x0d\x79\x31\xa1\x54\xc4\xb7\x68\xb3\xa3\xce\xc0\x10\x46\x3d\x0e\x9e\x3c\x7d\x50\xcf\xa3\x1c\x47\xc4\x4e\x46\xad\x6e\xdd\xae\x67\x10\xda\x09\x14\x58\x85\x4f\x22\x28\xb2\x32\xbc\xe9\x93\x17\x97\x5a\x48\x84\x9a\x0e\x68\xca\x8c\x09\x85\x57\x81\x60\x80\x2f\xe6\x90\x4c\xb4\xee\x5d\x60\x01\xd0\x85\x18\x1d\x73\xe5\x27\xd9\x0d\xa9\xad\x2c\x9d\xa3\x31\xb5\xa1\xa6\x14\x9d\x8b\x32\xff\x57\x5f\x78\x26\xef\x7c\xd5\xad\x76\x94\x34\x1e\x5a\xe5\x89\x1c\x8e\x30\x5d\x16\xbc\x15\x56\xc9\xa7\x23\x99\x56\x4d\x59\x64\x44\xf7\x8e\x52\xf4\x20\x49\xc7\xbf\xe1\xf1\xd0\x8d\x4e\x5b\xc1\x85\xb7\x34\x61\x2b\xf6\xae\x8e\xd3\x05\x91\x8c\x03\xce\xd2\xc4\xc6\x43\xdb\x05\x0b\x48\xda\x1a\x0e\xdc\xa5\xf5\xcb\x0b\x4f\xfe\x05\x93\xb6\x07\x39\xce\x47\x30\xe4\xe5\x65\x1c\x4b\xd7\x69\xc6\x57\x07\xca\x5c\x01\x3d\xc2\xc3\x42\x43\x0a\x06\x34\xea\x35\x26\x80\x84\x3c\x8f\x49\x8e\x79\xc5\x53\xfd\x1d\xfc\xbe\xd9\xd3\xdb\xa5\xb4\x26\x51\x09\xfc\xba\x45\xd1\xd7\x20\x72\xaf\x52\x03\xdd\xdf\x73\x8c\x60\x58\x50\xad\x59\x2d\x76\xe0\x21\xd2\x70\x45\x28\x27\xbf\x22\x72\x92\x32\x6e\xb3\x85\xd6\x51\xd9\x15\x13\x6e\xd9\x88\x50\xda\xeb\xd0\x10\xd4\xbc\xfb\x6b\xd3\x43\x67\xd7\xb1\xa8\x46\xc3\xb1\xe9\x65\xa6\x08\xab\x48\xa4\x9b\x6f\x31\xf2\x55\x1e\x86\x1b\x81\x9a\x3b\x5a\x6e\x68\x1e\xc3\x48\x28\xf3\xed\x22\x0a\xe5\x4e\xde\x53\x1c\x2b\x82\x54\xec\x0d\x6f\x84\x54\x1a\xaf\x75\xe2\xeb\xa8\xe4\x88\xa1\xf2\x28\xb0\xe4\xdf\x56\xc1\x8d\xb7\x72\x11\xb0\xe3\xbb\x55\x98\xc4\x13\x3e\xa1\xba\x5a\x16\xdb\x67\x79\x9f\x9c\x9a\xee\xa1\xed\x2a\xd9\x63\x88\x20\x37\xf4\x66\xa6\x68\xb1\xc8\x41\x24\x08\x19\x92\xdf\x74\x2c\xd8\xaa\x4d\x3f\xcd\x9d\x45\x2a\x17\xa3\x6f\xd8\x20\xb6\x95\x21\xc8\xa8\x6a\x47\x06\x23\xb0\xf6\x42\x14\x1e\x0b\xf1\x2d\x38\x9c\x23\x53\x7d\xb8\x21\x5d\x31\x12\x1f\xf4\xa7\xcf\x33\x63\x2f\xd1\x14\x23\xf1\x49\xe0\xfa\x5d\x4c\x2d\x3c\x9c\xc7\x91\x0f\x7a\x7b\x5f\xe6\x82\xc1\x6b\x32\x0c\x4e\xb5\x30\xdb\xf7\x39\x52\x21\xa0\x8c\x3e\xa3\x79\x6d\x8c\x2a\x8c\xfb\x32\x2b\xd6\xf3\x6d\x9f\xfb\xe6\xad\x9e\x01\x72\x7f\x92\xd6\xf8\xcf\x21\x5e\x9c\x27\x1a\x21\x5e\x17\x31\xb6\xd4\x86\x63\x16\xcd\xd5\x25\x2d\xe4\xc9\xdf\x08\xa6\xee\x85\x91\x18\x74\xc9\x21\x63\xb7\x21\xea\xb4\xa3\x07\xd1\xa3\x7c\x71\x02\x0f\x0f\xe4\x51\x4f\x10\x1c\x95\x94\xa4\xdd\xcc\xa3\x8f\xd1\x0d\x64\x40\x2f\x28\x54\x4f\x61\xa1\x6d\x8e\xaf\x10\x21\xb5\x75\x61\x54\x8f\xe2\x24\x7a\xf0\xe7\xb5\xac\xfe\xe5\xe5\x4e\xb5\xd1\x02\x03\x0b\x14\x51\x3f\xe1\x0d\x41\x92\x80\xbf\x66\x75\xa8\xa2\x6a\x0a\x6e\x39\x2e\xb4\xf7\x79\x10\xac\x21\xac\xa0\x01\x2b\xad\xba\x23\x2e\x3f\xad\x45\x2b\xdc\xd0\x3f\xcc\x7d\xb0\x3e\x13\x63\xe5\x80\xc5\x01\xf7\x52\xce\x54\xa3\x31\xee\x43\xff\x80\xc3\x12\x74\x29\x34\x79\xc6\xcc\x66\x1d\xf9\x23\xf7\xc9\x9a\xd0\x1e\xb1\xd2\x5c\x44\xc5\x96\x19\xf3\x9b\x2c\xe1\xc0\x68\x48\x04\x62\x5d\x8f\x80\xe4\x57\xcc\xd3\x81\x0a\xea\x32\x6c\x51\xd9\x2f\x71\x64\xe5\xf1\x01\x26\x58\xf0\xc3\xdc\xb4\xb4\xf7\x21\xd5\x03\x6f\xb5\x0d\x51\x1b\x5c\x47\xb0\x96\x74\x28\x48\xfd\x55\xbe\x62\xde\x0a\x6f\xb0\xc5\x54\xa8\xae\x53\x64\x37\x2a\xe7\xbe\xea\x3a\x5c\xbc\x58\x7a\x0f\x85\x25\xff\xeb\x57\xdf\x7e\x7f\x7e\xc0\x5e\xbf\x13\xff\x7f\xf5\x4e\xaf\x7c\xd8\x19\x9f\xa7\x92\xf4\x90\x8d\x5e\xc3\xa2\x29\xe6\x75\x8c\x2d\x26\x0a\xe7\x21\xde\x41\xc1\xad\x23\xf2\x30\xad\x3e\x4f\x88\xe5\x6b\x6e\x31\xf6\xe2\x44\x26\x89\x39\xaa\xde\xed\xa0\x53\xed\x0a\x9f\xed\xd9\xa0\x00\x8e\xc3\xfa\x85\x18\xc0\xe2\x30\x1c\x85\xf3\xf4\x1b\x1c\xe3\xc7\x67\xa7\x30\x5f\xe2\xc0\xdf\x38\x02\xcb\xf9\xe9\x80\xe1\x2e\x44\xd9\xb9\xb1\x14\x66\x7f\x75\x75\x97\x8a\x09\x7f\x8d\x35\xf4\x76\xb1\x37\x72\x23\xa2\xee\xfa\x2a\xee\x0e\x72\xd4\xae\x5e\xd5\x47\xff\xf6\x4f\x7f\x86\x36\x2d\x9a\xd6\xf0\xf1\x28\x75\xed\xfb\xac\xb4\x46\x54\xf7\xc0\x5d\x06\x8e\x1d\xa5\xed\xb9\x62\x88\x5b\xde\xa2\xb7\x2e\x37\x92\x0d\xcf\xef\x6a\x27\xa9\x87\x36\x00\x49\x6b\xfc\x60\xa9\xae\x3f\xdc\x6d\xbc\xb5\xa7\x6a\xf2\x40\xbb\x70\xf3\x3e\xbb\xe0\x8f\xec\xca\x4b\xd3\xc7\x28\x99\xeb\x69\xb7\x16\x22\xf1\x30\x7a\xcf\x6d\x17\xb0\xa7\x1d\xb1\xf1\xd5\x69\x75\x68\x4c\x79\x56\x59\x4d\x8b\x63\xa5\x1f\x4e\xfd\xb8\x66\x2e\x2d\x0a\xab\x07\xb0\x83\x92\x7a\x4a\xf1\xb5\x8b\xfa\xfa\x25\x66\x77\x8c\x6c\x27\x07\x81\xc0\x9b\xc9\x83\x93\x07\xe1\x80\x19\xfb\x21\xca\xa5\xcd\xd2\x5c\x46\x63\x2f\x74\x6b\xd0\x77\xc5\x11\x09\xfa\x31\xde\x88\x6d\x05\x78\x28\x7a\x7a\x71\x79\x26\xa3\xee\x89\xcd\x71\x06\x2e\x4e\x62\xa0\x08\x01\x6b\xa1\x46\xca\x22\xca\x3d\x0a\x36\xa3\x0d\xcf\x7b\xf1\x52\xdf\x72\x57\x08\xc3\x4b\x0a\x78\x3e\x20\xad\x93\x3d\x64\x53\x31\x71\x25\x62\xfe\xc2\x7c\x93\x2d\x8c\x0f\x24\x30\x1e\xd6\xa5\x94\x21\x1e\x02\x70\x5b\x41\x2a\x3b\x6e\x51\x25\x34\x48\xa3\xa4\xc6\x79\xe2\xc9\x9b\x77\xba\x54\x33\x96\x02\x57\x80\x40\x1d\xb6\x26\xc0\x07\x1c\x1c\x02\xc8\xc7\xba\x16\xf3\xe0\xc6\x57\xd9\x0c\xab\xe0\xd6\xac\xb1\xaf\x19\x2a\x85\xb5\x34\x64\x37\x68\x0e\x09\xd3\xd0\xeb\x47\x8f\x32\x9b\x48\x77\x3e\x38\x29\x9a\xf1\x6c\x97\xa2\x70\xa9\x6c\x11\xba\x79\xe9\xcb\x52\x38\xce\x96\x5e\xb8\x10\xab\xdd\x23\x47\x47\xda\xb9\x61\x36\x36\x16\xa6\xf0\x2c\xae\x85\x3a\x45\xd4\x14\xa4\xf0\x32\x84\x24\x36\x71\xb6\xaa\x46\xc1\x21\x1d\x49\xd3\x98\xcf\xb0\xca\x21\x6b\x6b\x4e\xe3\x32\x43\xa5\x40\x41\x07\x83\x1b\xc3\xba\xe1\xb5\xa5\x5c\x96\xf8\xfc\x00\x14\x55\x38\x9a\x9a\x6e\x44\xd5\xb2\xd5\xa8\x67\x02\x3f\x30\x03\xaa\x6c\x65\xe0\xdb\x16\xce\x6f\x65\x30\x85\x0a\x41\x97\x1c\x8e\xc4\xa8\x98\x87\x80\xba\x77\x84\xfa\xcf\x68\xec\xdb\x7d\xa8\x11\x51\x5b\x4c\x3b\x6d\xa5\x28\x5c\x4a\x13\xa4\x0e\x3e\xed\xe5\x48\x9c\xd4\xcd\x73\x33\x22\x3d\xea\x06\xee\x38\x87\x13\xa7\x71\xf9\x24\x55\x77\xc1\xb5\x79\xf9\x6c\x89\xc7\x58\x8d\x82\xc3\xd6\x46\xcb\x54\x94\xc6\xaf\x19\x24\xae\xb3\x0b\x74\x54\x70\xe1\x5d\x59\xc5\x58\x73\xd7\x56\x71\xe0\x6f\xcf\xb6\x1f\xb7\x41\xa6\xf3\x5d\xcf\xe3\xb4\xe5\xae\x7b\x19\xed\x47\x8f\x8c\x1c\x62\x79\xa5\xfe\x22\xe4\xe6\xcf\xa9\x2b\xea\xc0\xaf\xbb\xef\xb4\x96\x23\x71\x52\x96\x2f\x8e\x73\x26\xa9\xba\x0b\xae\x8d\x1c\x04\x96\x70\x4c\xb5\x48\x28\xd0\xe2\xb0\xba\x9c\x74\x6d\x25\x17\x32\x14\x9c\x78\x85\x5a\x84\x77\x70\x04\x49\xa7\x41\x40\x18\xc2\xb4\xca\xd6\x51\xde\x54\x2c\xcb\x8c\x20\x48\x5e\x6e\xde\x71\x23\x9f\x61\xec\x18\xbc\xc0\xbe\xe3\x2c\x8f\x21\x35\x9b\x29\xe1\xdd\xd0\xe4\x09\x72\x65\x2c\x90\x46\x28\x7e\x58\x9d\xb6\x8f\xdf\xa2\xaa\xab\x39\x0d\x89\x72\x50\xc8\x20\x44\x0f\x5a\x14\xc4\xfc\x48\x5e\x8a\x82\xca\x3e\xc3\x14\x7b\xd1\x4a\x6a\xf2\x4d\xd8\x6c\x6a\xd9\xa3\x28\x03\xb7\x94\x0a\x66\x3d\x6f\x53\x59\x6b\x8e\x97\x7f\xd5\x32\xa8\xbf\xb2\xa7\x77\xfd\x8e\x8d\x4f\xce\x4f\xf5\xe9\x31\x5b\x4a\xd0\xa8\xdf\x9e\x9c\x4e\x2f\xaf\xcd\xf4\x37\xcb\x90\x38\x9c\x8f\x2f\xc6\xef\x26\x66\x0e\x5b\x65\x28\x1c\xf4\x81\xd1\x9a\x2f\xed\x69\x1a\x4c\x6c\x2f\x9d\xec\x68\x2f\xe1\xa8\x85\xe6\xe4\x51\x98\xa1\x76\xa5\x66\x9a\x5b\x9b\x4a\x4c\x6c\x89\x04\x48\xd8\x1a\x1a\xce\x42\x1b\x29\xb3\x60\x1a\x21\x59\xd5\x73\x47\xd2\x8c\xdb\x00\x3a\x00\x65\x3d\x52\xa9\x49\xed\xe1\x91\x88\x0d\x85\x59\x3f\x11\xdb\x57\xa4\x60\xd1\x5f\x74\x35\x5f\x52\x68\x76\xfb\x02\xb5\x17\xb2\xe7\x21\xed\xcc\xb8\xcc\xb3\x0a\x89\x52\xe5\x3d\x74\x61\x68\x58\x9a\x05\xe9\x01\xd0\x29\xf4\x47\xa7\x22\x8c\xf4\x07\xd9\x49\x88\x8e\xb5\x96\x04\x74\xc3\x28\x0f\x6d\xae\xe4\xbc\x51\x4f\xe9\xec\xdd\x67\x3c\xd9\xb4\xf0\x8b\x21\x17\xac\x61\x06\xd8\x2d\x37\x6b\xa9\xaf\x3c\x7f\xde\xb8\x30\xd6\x43\x36\x15\x25\xf0\x4b\x53\xe9\x46\x2c\x00\xcb\xa8\xf4\xe8\x9f\x5a\xa5\xd1\xf6\xea\x5a\x9e\xad\xb4\xd9\xf2\xb8\x60\xc0\x38\x2c\xf9\x41\xe5\xaa\x9d\xc4\x76\x21\x17\x85\x3c\x49\x2e\xe3\x9d\x7a\x8f\xfb\xf4\xa2\x2a\x13\x63\x41\xd4\x50\xbd\xbe\x9c\xcb\x31\xf5\x7b\x27\x5f\xbb\xca\x04\x4c\x72\x7e\x81\x4b\x94\x72\x36\x81\x05\xcf\x68\xf7\x8d\xb5\x94\xb9\x70\xa3\xd6\x6f\x7e\xac\xb7\xf5\x36\x5e\x3e\x16\x40\x3a\xc8\xb5\x01\xe9\xae\x45\x6e\x8e\x4e\x43\x55\x7d\x41\x7b\x5e\x3c\x81\x80\x9a\xd0\x93\x7d\x98\xd0\x54\xf4\x37\x9c\xec\x45\xa7\x5f\x41\x78\xd3\xc7\x25\x97\xc6\xac\x52\x17\x5d\x58\xbf\x06\xc5\xce\x09\xc4\x15\x9f\xdf\x70\x89\xbf\x13\x26\xf6\x32\xc2\x05\xf7\xc6\x6e\xea\x5e\xf9\x2b\xeb\xae\xdf\x8d\x06\x09\xee\xc4\x68\x98\x2b\x7a\x35\xc3\x81\x2a\xb4\xac\x59\x0d\xe6\x40\x61\x00\x74\x4b\x0f\x1a\xa6\xc5\x50\x0a\xba\xa9\xb4\xa2\x72\x40\x4c\xa2\x4a\x92\xe2\xa8\x95\xa1\x11\x62\x57\x15\x02\x7f\x34\x19\x9f\x2d\xa3\x28\xad\x2c\xc6\x83\x20\x7a\x84\xce\x0e\x46\x24\xf0\xf7\x21\x7b\x13\x89\x61\x2e\x2f\x76\xc1\x10\x06\xd3\xdc\xc3\xa8\xc9\xc0\x16\x52\xb4\xc0\x1d\xec\xd0\xd2\x94\x97\xe6\xe9\x29\x98\x9b\x2b\x87\x07\x93\x69\xcd\x7e\xd9\x53\xdb\x65\x1e\x85\xcf\x0d\x73\x5f\x6b\x21\x2a\x0f\xa9\x31\x62\xde\xc2\x33\x38\x86\x19\xcb\x52\x39\x16\x0e\x02\xd8\x50\xa8\xa8\x87\x84\xf7\x95\xd3\x74\x95\x71\x4a\x9d\x9c\x61\x77\x41\x3c\x7c\xef\x92\x15\x41\x5e\x3c\x24\x18\xed\x0e\x55\x19\xad\xf9\x9e\x79\xb1\xae\x2a\x57\x61\x72\x5b\xcf\xa6\x36\xfc\xad\x49\x0c\x01\xaf\x66\x42\x85\xc6\x63\x4e\x00\xf5\x44\xa8\xdf\x08\xfc\xcb\x90\xc7\x9c\x7d\x7c\xd6\xf0\x37\xfb\xf8\x6c\x43\x4b\x52\x3a\xba\xc0\xa5\x92\xb2\x71\xc5\xaa\xa6\x79\x66\x17\x4c\xe8\x32\x62\x6a\x09\xc1\x5d\x2d\x26\x77\x7e\xe8\x81\x75\x7a\xe9\x46\x05\xab\x38\xaa\xca\x2f\x6f\x8e\xf4\x0e\x4f\x7d\xc9\x51\x71\x6f\x7e\xf5\x86\x6b\x55\x1e\xfa\x85\x87\x6e\x67\xfb\xb7\xf6\x21\x1d\x35\xe7\xee\xbe\xc9\xe0\x41\x3c\xf8\x20\x0e\x4f\x3e\xa6\xcc\x6b\xb0\xb3\x87\x6e\x44\xdd\x46\xc6\x1a\x74\x02\x26\x81\x60\x9a\x5b\x64\x1e\x99\xfb\xde\x22\x8c\xd2\xcc\x9f\xe1\xe6\x22\xcd\xe6\x26\x7f\x5e\x72\x7d\xfb\xaf\x8f\x94\xc1\x25\xc0\x63\x01\xaa\xff\xee\xd5\xb5\x0d\x2c\x41\xcd\xa3\x86\x74\x75\x0c\x33\x34\x46\x83\x03\x51\x61\xff\x35\xeb\x38\xb7\xec\x82\x07\x51\x42\xa0\xfb\x20\xfb\x47\x07\xce\xd6\x92\x04\x6e\x91\x18\x94\xab\xca\x50\x78\x1e\x3d\x86\xf2\x86\xab\x18\xba\xb0\x30\xf2\x55\xed\x2c\x69\x9a\x05\x7a\x92\xa3\xe0\xc6\xa0\x66\x6d\xd1\xd3\x2a\x9f\xc4\x2a\xd6\xe2\x14\x2e\xa3\xee\xb9\x97\xe5\x89\x72\x5d\x14\xfb\x96\x70\x01\x8e\x29\x79\x0c\x49\x0a\xe0\xae\x4f\xed\x0f\x10\xbc\x28\x95\x49\xf3\x62\x98\xbd\x60\x6f\x63\x18\x8e\x4f\x0a\x86\xd2\x66\xb0\xef\xd1\xbb\x73\x6c\x17\xb0\xa7\x9d\x27\x8b\x7a\xee\xc0\xcd\x23\x9f\xc9\x5f\x9e\x54\x97\x80\x28\x5d\x42\x28\x7b\xfe\x88\x9a\x10\xb0\x3b\x84\x20\xdc\x85\xd1\x27\xba\xa2\xc8\x75\x55\x45\x1f\x31\xe0\x73\xa6\x44\x45\x0b\xbe\xf9\x32\xfd\x09\x7b\x01\x9b\x52\x60\x06\xff\xca\xc9\xa8\xe8\x41\xdf\x1c\x19\x52\xcc\xf4\xa0\x64\x8d\x16\x03\x45\xb3\x13\xb8\xfc\xc7\x50\x91\x65\x86\x3d\xda\xcd\x93\x2b\x19\x22\x4e\xf8\x40\x68\x5e\x53\x78\x1c\x88\x2f\x29\x16\xc8\xc2\x29\x1b\xcc\x27\x21\x47\x8d\x0a\x21\x85\xd7\xd6\x11\x06\x22\x04\x7d\x78\x1e\x64\x72\xde\x47\x0a\xa8\xc7\x14\xd3\x7c\xa1\xf1\xc7\xc0\x40\x7a\xf7\xb1\xbd\xf3\x1f\xb6\x65\xe4\xe1\xe8\x29\xdb\x66\x58\x04\xc4\xd6\xd9\xe8\x8d\x96\x67\x27\x52\x5d\x6b\x44\xd7\x93\xbf\xdd\x4e\x6e\xa6\xfa\x6b\xc1\xed\x02\x04\xda\x37\x57\x97\x17\x37\x06\xe7\xba\x96\x12\xf6\xd4\x2f\xcf\x26\x37\xa6\x09\x6b\xbb\x00\x81\xf6\xed\x74\xa2\x37\x1b\xd8\x7c\x6d\x4f\x97\x7b\xb0\x85\x9e\x73\xb8\xc9\x12\x03\x34\x16\x53\x3d\x04\xd8\x44\x93\xe3\xbf\xc8\x45\x7e\x15\x9b\xe2\x63\x3b\x50\x70\x44\xa7\x14\xac\xe7\x91\xf8\x3d\x5d\xc7\xd0\xdb\x8a\x9f\xc5\x34\x2a\x36\x0e\x5c\x6c\x11\xd7\xd2\x92\x49\x8c\x95\x68\xe6\xe3\xf0\xc2\x85\xc1\xcf\xfe\x62\x29\xc6\xb0\xac\x76\x25\xef\x60\xd2\xf4\xc0\xaa\x94\xaf\xb5\xad\x4c\x11\xf1\xbc\x11\xe7\x56\xba\xc9\x16\x8e\x66\x97\xc1\x7c\x5b\xc5\x2b\xa6\x45\x70\xc8\xe2\x8f\x5b\xaf\xfe\x02\xe9\xbc\xbe\xd3\x1f\x63\x9e\x12\x0a\xb5\xbd\x62\xb1\x05\xe4\x5b\x16\xd5\xdb\x17\x07\x08\xf2\x38\x88\xf2\x39\x7b\x0b\xfb\xea\x64\xdd\xf9\xb5\x07\x21\x4d\x90\x67\xc6\xfd\x07\xd4\xf9\x56\x69\x69\x66\xe2\x3c\x20\xaf\x05\x55\xd0\x1e\x03\x66\x5a\x75\x0a\xae\x5c\x9c\x11\x1f\x78\xb0\x2e\x8e\x14\x5e\x15\xbd\x4d\x8c\xda\xd9\xd2\x0f\xc4\x5e\xe4\xee\x17\x71\x28\x4b\x5b\x1a\x03\x83\xe6\xdf\xc1\x89\xa4\xd8\x45\xae\x3c\x8c\xd5\xa4\x4e\xf8\x72\x1f\xbc\x61\x92\x6f\x92\xf3\x49\xe1\x10\xda\x4d\x81\x8b\x2b\x6d\x9d\x8c\x40\x65\x90\xad\xbb\x0a\x9d\xbf\x8a\x89\x09\x49\x97\x54\x5e\x44\x30\xc0\xed\x06\xd1\x55\x8f\x8e\x24\x4f\x54\xc4\x63\x45\x30\x34\x1e\x9e\x6c\xab\x91\x71\x60\xc0\xee\x9a\x03\xab\x54\xce\x8b\x2e\xd0\x09\xc5\xa2\x26\x19\x4d\xd8\x30\x81\xee\x84\xa0\x2b\xee\xc0\x17\x8e\x0f\xe4\x6e\xd1\x55\x8d\x86\x63\xd3\xa2\x1f\x26\xd7\x0f\x5e\x52\x9f\x58\x37\xfd\x40\x77\x98\xd6\xfe\x6b\x80\x44\x6f\xbf\xa4\x91\x4e\x4d\x22\xc4\x90\x88\xbf\x17\x09\xab\x25\x9b\x01\xb2\x73\x5b\x35\xde\x53\xe1\xd9\x7b\xcb\x3d\x51\x03\xed\xa2\x1d\x72\xb9\xcd\xc3\xcc\x77\x43\xf5\x71\xbb\x94\xf9\x4f\x03\xa2\x6f\x1b\x39\x48\xe4\xca\x1f\x6f\x99\xbc\xb6\x50\xad\x5b\x7c\xf5\x45\xe9\xfc\xac\xb7\x63\x1d\xe5\xdd\x39\xfb\x5d\x39\x56\x2d\x6a\x38\x70\x37\xfa\x02\xea\x8a\x91\xf9\x74\x6d\x7d\x5a\x4b\x39\x70\x31\xc5\x0a\xd7\x94\xa2\x71\x51\x8a\xeb\xe6\x30\x2d\xcf\x7b\xbb\x9e\x3b\xf6\x0d\x80\xde\x36\x55\x44\x43\x79\x38\x7e\x53\xfc\xde\x44\xba\xf1\xc2\x4a\xee\x41\x88\xd3\x65\xda\x6a\xca\xcd\xe6\x76\xfa\x88\xfd\xa8\xd2\xa5\x68\xce\x58\xaa\x05\x2d\x59\x77\x4b\x33\x0c\x75\x77\xa9\xb6\xb4\x14\x9b\x3a\x98\x3d\xec\xa6\x9f\x1e\x92\x43\xfb\x15\x6c\x40\x91\x55\xe3\x54\x61\xad\x3d\x6c\x43\xea\xdc\x4a\xbb\x66\x4c\x68\x8b\x38\x32\x5b\x99\xb5\x94\xa0\x53\x67\x23\x86\x11\xf9\x8b\x8c\x54\xb8\xe3\xfb\x05\xa2\x7d\xe1\x55\x8d\x95\xbe\xc4\x9d\x14\x09\xaf\xac\x6c\xb0\x5e\x68\x2f\x44\xe0\x01\x5e\x0f\x16\xdb\x82\xf6\x62\x44\x3e\xad\x2b\xe6\x2e\xe7\x81\x7d\x30\xa5\xb5\x41\x92\x59\xb5\x75\x4b\x31\x2a\x1f\x90\xbb\x0c\xd0\xfa\x7b\x3d\xd3\xa9\xf2\xb4\x28\xfd\xa4\x1a\x2d\x43\x58\x70\x76\xc3\x86\x20\x67\x96\xf8\x5c\xaa\x86\xfc\x70\xee\x3f\xf8\xf3\xdc\x0b\x4a\x23\x15\x30\x73\x96\x57\x38\x32\xeb\xbd\x41\x10\x47\x3a\x2e\x48\x31\x89\x75\x1c\x80\x8b\xf9\x92\xb3\xcb\x71\x99\x84\xa4\xf4\x3c\x28\x73\xb1\x81\x63\xa8\xc1\x94\x6a\x18\xa2\xfd\x65\x58\xf8\x0f\x1c\xbb\xea\xf3\x94\x2d\x72\x7f\x7e\xc8\xd8\x18\x02\x19\xa2\xa5\xe7\x92\x7b\x81\x00\x83\x11\xbd\xb0\xf5\xc0\x46\x2d\xce\x2b\x3f\x0b\x0c\x12\x9e\xa2\x11\x51\xc2\xc1\xf2\xdc\x34\x9c\xf7\x8e\x60\xa8\xd6\x11\x73\x4d\x1b\xb6\x0d\x24\x30\x23\x0d\xd3\x16\xfd\xf9\x0d\x25\xb9\xda\x82\x59\xa0\x29\xcf\xd2\x83\xb4\xc0\x70\x7c\x07\x6b\x09\x58\x53\x6c\xf0\xe0\x22\x34\x50\x2b\x0c\xc2\x93\xde\x02\xa5\x09\x6a\x6d\x0e\x4d\xeb\x93\x28\xbc\xe4\xde\x4c\x3a\xa3\x8c\xa4\x91\xb5\x2c\xdb\x2d\xea\x20\xc4\xe9\x32\x6d\x9a\xcd\x62\x26\x06\x77\x4f\xdb\xc1\xe8\x0e\x23\x49\x0f\xdf\xda\xc1\xe8\x52\x25\xc1\xc3\x4b\xf9\xc5\xe1\x8e\x0c\x3e\x38\x84\x97\x51\x9f\x3b\x25\xea\x03\x06\xa1\xda\x4f\x0a\x41\xf7\xad\x64\xf3\x56\x70\x25\x6b\x34\x7a\x53\x74\x41\xef\xd6\x83\x5d\x25\xdb\x05\xb7\xa1\xa4\xee\xee\xed\x43\x4a\xdd\x97\x9b\xbd\xd4\xc5\x7d\xc2\xfb\x28\xcd\x94\x22\x4f\xfc\x3a\xc1\x68\xbd\x75\x73\x41\xb3\x99\xa1\x2b\x99\xe1\x71\x76\x9b\x44\xf6\x21\x45\xc7\x2b\x6f\x9e\x2c\x4d\x90\x2d\x6b\xd1\x50\x74\xb0\x73\xa2\x9b\x07\x26\xb2\xcd\xb7\x04\xaa\x72\xa8\x4f\x6a\x9d\xfe\x43\xd1\xe9\xdf\x61\x28\x4f\x83\x51\x28\xa9\xb2\x35\xa6\x9b\xc9\xf1\xed\xf5\xe9\xf4\x07\xf6\xee\xfa\xf2\xf6\x4a\xcb\x5d\x57\x8c\xc0\xe7\xfa\xc3\xe9\xf1\xa4\x23\x2c\x97\xa6\x14\x95\x8b\xde\x46\x75\xbb\x80\x3d\xed\xab\x71\x37\xfe\xb6\x32\x54\x0e\x1d\xa1\xc5\x34\xa5\x88\x5c\x4e\x26\x1f\x26\x67\x97\x57\x86\x00\x63\xda\x72\x44\x4e\x5d\x81\xcc\x34\xa5\x68\x5c\x0c\x5f\x7c\xe3\xb5\x3d\xdd\x99\x17\xec\x59\xeb\xb7\x0f\x96\xf6\xf2\x17\x51\x3a\xbb\x66\x26\x7d\x41\x3a\x2f\xb9\xf4\x0b\x01\x8a\x18\xa1\x9f\xf0\x89\xfd\xe2\xd7\x83\xd2\x90\x68\xc5\x33\x4c\x7c\xfa\x69\xd5\x99\x70\xa8\x27\x35\x02\x6a\xcc\x33\x52\xd8\x28\xbe\x10\xe7\x67\x3c\x2f\x8b\x3d\x18\x44\x95\x02\x37\xd1\xcf\x7e\xfc\x8d\xe9\x3b\x53\x09\x90\xb1\xc9\x6e\xee\x0e\xcd\xba\x3e\x01\x19\xe6\xd3\xc2\xe6\x3f\x28\x8e\x26\x90\x0f\xf4\x88\x7d\xff\xea\xbb\x23\x36\x96\x39\x50\xfc\x94\xcd\x79\xe8\x83\x27\x21\x26\x60\x99\x47\xd8\xc3\x30\xb8\x69\x9c\xf8\x0f\x7e\xc0\x95\xf3\x1a\xff\x55\x7c\x5d\xb4\x87\xf7\xd3\xee\xe8\x18\xfb\x66\x3f\x44\xbb\x88\xde\x3a\x49\x92\x1b\x7c\x74\x2c\x9e\x7c\xf9\x72\x20\xcb\x35\xde\x8f\x63\x7f\x02\x0f\x8b\x12\xab\x5a\xde\x2d\xf1\xa2\x61\x2d\xef\xd2\x3c\xbb\x44\x41\x6a\x25\x50\xd0\xa1\x5a\x7b\x8a\x6a\x6d\x41\xf8\xcc\xbb\xe3\x81\x1c\xd6\x85\x0f\x28\x21\x02\xe2\x20\x34\xc9\x12\xbc\x29\xaf\xe4\x5b\x4f\x10\xdd\x70\xed\x09\x90\xb1\x15\xf7\x36\x45\x64\x4a\xb4\x0b\x2c\xc2\x39\x77\x02\xb3\xac\x4d\x46\x55\xdc\x2c\x1d\x6d\xdd\xe1\x77\x42\xb2\xa9\x4a\xc6\x53\xfa\x62\x34\x1b\xfe\x63\x38\x3d\xbd\x3a\x62\xa7\x18\xa0\x19\x43\xeb\x64\xc9\x1a\x8f\xed\x91\x72\xe6\xf0\xd8\xc3\xeb\x2d\x8f\x8e\x03\x2c\x8e\x79\xa6\x20\x67\x11\x9c\xe9\x47\x31\xaa\x9b\xba\xbb\xc2\x13\x20\x71\x6f\xad\x32\xeb\xae\xbd\x58\x2d\x55\xc8\xfc\xb7\xec\x3e\xa8\xe3\xcd\x9e\x00\x15\x5b\xbd\x57\xda\x4f\xd3\x76\x15\xa9\x58\xf4\x87\xf4\xed\x02\x64\xda\xa6\xfd\xc6\x56\x09\x02\xf5\x6c\xd3\x23\x41\xe6\x6e\x32\xdf\xad\xdb\x56\x23\xe1\x10\xf5\x1f\x7c\xfe\x58\x85\x5a\xf2\xc1\x71\xc4\x88\xa1\xab\x8a\x1b\xff\x65\x95\x29\xa2\x91\xb7\xc8\x0e\x4a\x77\x6d\x0a\x2a\x15\x57\xa0\xee\xb2\x82\xe6\x44\x13\xf5\xb3\xe3\x0c\x47\x26\x40\xc6\xd6\xe8\x03\x10\x04\xa3\x74\xb5\xc0\xf8\xf3\xea\xc9\x07\x2f\xc8\xb9\x0c\x89\xb1\x9d\x18\x6c\x97\x87\xd8\xaf\x13\x25\xb9\x95\xff\xd9\xe6\x59\x9e\x45\x3a\x1b\x32\x3b\xb5\xf8\xb0\xc4\xc9\x32\x0d\x74\x59\xd3\x97\x1c\x19\xf7\x1e\xae\x69\x76\xc9\x6a\x10\x79\x07\xbe\xa0\xd9\x25\x2b\x7b\x79\x97\xd1\x63\x15\x3d\xa5\x99\x17\x46\x8f\xdc\xaa\x12\x11\x43\x10\x6c\x64\x55\xb1\x59\x92\xed\x6b\xd2\xd0\x2c\x79\xd0\xc1\xb5\x59\x82\x46\x1d\x6d\x67\xc2\xfb\xc8\xcc\x61\xbb\x14\x9d\x0b\x1c\xa5\x52\x76\xb7\x46\xef\xad\x6e\x76\x9a\xe2\x34\xbe\xe8\x53\x3f\xe7\x99\xe7\x07\xea\x53\x40\xf0\xec\xcc\x9f\xe5\x81\x97\x6c\x1d\x1e\xcc\xa0\x5c\x69\xd1\x10\xcb\xb5\xa0\xfb\x8b\xb4\x95\xa3\x71\x4a\xf8\x0c\xc3\xc8\x8b\x65\x56\x26\x0d\x35\x33\x34\x14\xa7\xf1\xdd\xf4\x35\xb2\x10\xb6\xa3\x0a\x91\xbf\xb4\x11\xea\x66\xda\x52\xce\x85\x93\xed\x17\xd5\x97\x76\xe1\x4a\x18\x6d\xc6\x0a\x24\xde\xb0\x4c\x94\x16\x9a\x33\x2f\xe0\x45\x2c\xf4\x7d\xed\x36\x9f\x02\x03\xb9\x85\xb6\x2d\x39\x87\xd9\xee\x5a\x2e\xf5\x4f\x83\xc2\xbe\x95\xcc\x27\x3d\xd7\x93\x1c\x02\x1e\x28\x76\x5a\x3f\x62\x2e\x98\x0d\xca\x87\xd6\x42\x44\x1e\xbd\xd2\x2a\xb9\x90\x20\xe2\xdb\xec\x68\x94\xcf\x64\x59\x97\x86\xa8\xe3\x7b\xb8\x7d\x09\x88\x5d\xba\xc6\x5d\x05\x04\x37\x57\xa9\x26\x64\x38\x36\x41\xfc\x10\x74\xa1\xf8\x0a\xd4\x76\x65\x36\xed\x83\x32\x9e\xa0\x2c\x0e\x17\x39\x2a\x80\x1b\xa4\xc3\x51\x13\xe1\x63\x94\x60\x84\x96\x32\xf0\xa7\x61\x7e\xe8\xc4\xa1\x03\xd2\xe4\x0f\xec\x93\x28\xca\xea\x31\x5b\xb7\x53\xdb\x94\x99\x6b\x74\x19\xc0\x8d\xb1\x72\x6f\x32\x4f\xe6\x6c\x80\xa0\xcc\x2f\x30\xf3\x89\xf8\x0d\x41\xa8\xe1\xca\x6f\x04\xce\x9d\xaa\x59\x64\x5a\xc7\x03\x01\xaa\x88\x66\x07\xd7\x83\x31\x4f\x3c\x79\x76\x55\xaf\x65\x2f\x16\xaf\xc4\x21\x0f\x73\xe2\xeb\x63\xe8\xed\x95\xb7\x7d\x2f\x52\x87\x35\x27\xab\x22\x5a\x65\x0a\xa6\x6e\x6f\xa1\xf6\x42\x54\x1e\x62\xf5\x82\x3c\x87\x51\x9e\x7d\x0c\xd5\x0d\x42\x4b\xa6\x59\xe8\xd3\xab\x28\x91\x9b\xbb\x64\xd5\x31\xbd\x0d\x47\x99\x28\x4d\x1e\x56\x41\xa5\x07\x16\x67\x18\xd2\x34\x79\xf6\x6d\x3e\xb3\x0f\x9e\xb4\x16\xc8\xe3\xe2\x92\xfd\x40\xde\x4e\x45\x2c\xcc\x83\x00\xfe\x4d\xb8\x7a\x50\xc4\xcf\x94\xbe\x73\xaa\xb8\x59\xc8\x01\xc8\x52\xe4\x30\x64\x4b\xd9\x78\x4b\xa2\x9a\xa7\xf2\x46\x08\x48\x98\x6e\x8f\x0c\x45\x09\xfc\xa2\xb8\x7b\x42\x6a\x29\x43\xe2\x10\xef\xbd\xc7\xef\x81\xa7\x7d\x0b\xac\x53\xc8\x4e\x72\x92\x88\x0d\x21\xbb\x35\xdd\x23\x69\x0b\x52\x78\x41\xd2\x66\x65\xeb\x30\x37\xac\x70\xda\x82\xd6\xbc\x60\xaa\x34\x44\x54\xdd\x7c\x4d\xa2\xcb\x8e\x55\x5c\x6b\xcc\x78\x8c\x79\x35\xc5\x5e\x69\x2d\x4d\x75\x54\x8c\xeb\x42\xfd\x5c\xdb\x45\xa5\x62\x3e\xcf\xfc\x00\x36\x57\x6b\xbc\x2a\x57\xb9\x04\x4d\x0e\x57\xbb\x66\x47\x93\xdb\x94\x21\xfe\x7e\x33\xa3\x3d\x21\xf3\xfc\xb0\xc4\x69\x32\x4d\x21\x09\xda\x67\xf4\x26\x4a\x79\x15\xb1\x1c\x1e\xf1\xfb\x7b\xb1\x25\xae\x67\xed\xbf\x0d\xef\xfc\x70\xde\x84\x91\xe3\xb3\xba\x6f\xdf\x81\x2a\xfd\x46\x96\xad\x8a\x26\x1c\x8a\x1e\xc8\x38\xf5\x4b\x1e\xaa\x72\xca\xdd\x7d\x83\x6c\x3c\xf7\x54\x08\x56\x98\x28\xd0\xdf\x4c\x45\x7f\x6e\xea\xae\xcd\xad\xfa\x2f\x24\x1e\xed\xbb\x16\xe9\xbe\xc7\xb1\xdf\xe4\x0c\xa7\x5f\x3f\xcc\x65\x58\x4c\xe9\x84\x8d\xf7\x11\x1c\xb3\x71\x14\xd7\xbf\xe6\x56\x1d\x8c\xb8\x9b\x4c\xc7\x6f\x9b\x5c\xb9\xd8\x27\x0a\x16\x98\x33\xa6\x71\x85\xdb\xf2\xbd\xed\x04\x1b\x86\x83\xa3\x74\xbb\x96\x6d\xef\x92\x55\xf3\xd8\x2d\x76\xfb\x32\x4a\x91\x66\x4c\x88\xe3\x69\x77\x18\xb4\x01\x29\xdb\x4b\xe3\x89\x05\x05\x2c\x35\x6a\x57\x0d\x62\x57\x60\x75\xf3\x46\xaa\x4b\x40\x54\xb3\x21\xa9\xef\x9c\x4c\x8b\xbf\x4d\x1d\x3a\x82\xb6\x8d\x9a\x0d\x8a\xae\x7a\xf6\x48\x30\x21\x66\x31\xad\xb6\x6c\x09\x2a\xbb\x49\x2f\xab\xb9\x6d\x8b\x49\x9b\xff\x8a\xb3\xb6\xbc\xb9\xc9\x7c\x99\xa1\x16\xe6\xe2\xf2\x2e\xa7\x45\x2b\x54\x4e\xda\x98\xb6\x0f\xa9\xe8\xa5\xfd\x9a\xb0\xd9\xb7\xa8\x20\x80\xca\xa1\xdf\x8b\x3c\x52\x13\xb4\xc5\x86\x09\xa2\x55\x53\x29\x96\xcb\x39\x97\x4e\xee\x2a\xb6\x71\xa5\xcb\x33\xf5\x85\x5d\xf1\x21\x49\x1a\x25\x40\x53\xd0\x7a\x5c\xfa\x33\xd9\x7a\xe5\x64\x21\x33\x38\x62\xf6\x55\xd1\x65\xe7\x79\xd2\x0c\xcb\xe6\xe5\x59\x34\x82\x94\xac\x33\xa3\x5a\xa3\x9c\x9e\x18\x86\x11\x82\x0f\xe5\xad\x22\x88\x89\x86\x61\x02\x2a\x6e\x74\x25\xe3\x74\x29\xb3\x5c\xd7\x93\xdb\x55\xe9\xee\xe5\x24\x03\xf1\x08\x92\x85\x61\xc7\xe4\x42\x83\xd4\xc4\x1d\xd4\x65\xee\x0e\x43\x28\x43\x27\x1a\xbd\x10\x8a\x41\xeb\xda\x8a\xd8\x99\xcb\xd8\xf8\x62\x90\x6a\x03\xa4\x75\xb7\x37\x4e\x01\x61\x24\x5e\x63\xaf\x81\xd4\x79\x77\x9c\x87\x32\x7f\xa1\x9c\x32\x04\x11\xd0\xfd\x39\x28\xa8\xad\xe4\xb6\xff\x36\x4e\x72\x5b\xb4\x33\x45\x9c\x8d\x28\xb3\x0d\x46\xb0\x6b\x38\x54\xda\x44\x79\xb6\xc4\xb1\xbe\x8c\xd2\x0c\xae\x04\xe5\xdc\x39\x0a\xd9\xfb\xcb\x9b\xe9\xc5\xf8\x7c\x02\xab\x36\x6c\x34\x46\x23\x21\xf0\x3c\x5a\x8d\x24\x71\xb1\xaf\x58\xf0\x90\x27\xd5\x84\x2c\x9f\x97\xdb\xff\x18\xf3\x2c\x99\x13\x83\x7d\xd5\x58\x29\x03\x47\xcc\x8e\x32\xc7\x6d\xb9\xb8\x55\xb9\x86\x71\x7d\x02\xb1\xe2\xd8\xd8\x12\x74\x1a\x0e\x08\xb3\x08\xd3\x7e\xaf\x55\x8e\xa0\x54\xe6\x1f\xc7\x50\x2e\x65\xf6\xcc\x6c\x1d\xf3\x22\x27\x2f\x34\xb3\x0d\xea\x9e\x74\x89\x92\x40\x4b\x84\xca\x39\x28\x96\x49\xc2\x6b\xb9\x0d\x58\x24\x0f\x9f\x10\x10\xef\x36\x09\xc4\x2e\xf8\x48\x1f\xd3\xce\x91\xa0\xcb\xb8\x04\x9f\x2f\x74\xe9\xc7\xe0\x37\x4b\xd1\x6c\x73\x31\xa3\x25\x51\x9a\x96\xc3\x5d\x74\xf6\x13\xc8\xbe\x82\x5f\x3f\x93\x3a\x9f\xa4\x16\x96\xbf\xca\x17\x23\x33\xe5\xc8\xe3\x36\x16\xc3\x83\x3e\x7c\x81\xda\x89\xba\xe2\x98\x87\x09\x44\xa9\x81\x2d\x85\xe0\x31\x96\x67\x1e\x56\x1c\x7e\xd8\xa3\x17\x2a\x15\x74\x99\xfa\x45\x55\xfc\xbd\x19\x87\xe0\x2f\xa6\x96\xfc\x57\x13\x90\xd0\x2b\x41\x60\xdc\xc9\x17\x93\x17\xac\x51\x5e\x91\x78\xab\xdc\xe7\xa3\xe5\x90\x69\x3c\x39\xd2\xa1\x21\xc5\xe6\x9c\x79\x30\x53\x16\x2a\x18\x79\x0f\x01\x1a\xc2\x43\xa6\x6d\x3c\x69\xaa\x53\xd7\x5a\xeb\xb3\xcb\xec\x8e\x91\xbd\xac\xf2\x2e\x50\xae\xa7\x98\x92\xf0\xfd\x74\x7a\x55\x66\x40\xd1\x43\xb7\xad\x47\x40\x12\xab\xd3\xba\x37\x9f\x8f\xe4\x9e\x7d\x04\xb3\x89\xd2\x9c\x2d\xc4\xae\x5e\x6d\xe8\xe1\xa9\x01\x99\x23\x1d\x7b\xa4\xf2\xae\x5c\xe5\x7e\x52\x7a\x04\xb5\x5f\x51\x21\x89\xa4\xfb\x56\xc8\x65\x16\xf7\x3c\x5e\x24\x9e\x4a\x16\x7e\xfc\x16\x15\x5d\x90\x59\x46\x9c\xee\xc5\x9c\x9f\x01\x91\x73\x3f\x1c\xc7\xbe\x4a\xe6\x7b\xee\xfd\x12\x25\x32\xbc\x49\xf3\xb9\x1f\xb6\x3e\xbf\xf2\xb2\xd9\xd2\x70\xd5\xf4\xd5\xe3\x25\xb4\x7c\xe6\x05\xec\x5c\xcc\x85\x86\x58\xb0\x9b\xaf\xad\x17\x1f\x24\x2e\x4e\x5b\xb9\xcc\x00\xb8\x42\x3a\xec\x05\x3f\x5c\x1c\xb2\xd7\xaf\xbe\xfd\xfe\xfc\x80\xbd\x7e\x27\xfe\xff\xea\x9d\xde\x9a\xc2\x8d\x08\xb1\x01\xb6\xc8\x17\xde\xeb\x60\x75\x81\xee\xd1\x83\x80\xde\xa4\x6a\x2f\x84\x45\x3b\x87\xf9\xea\x0e\xe2\xde\xdd\xab\x45\xac\x03\x9c\xbe\x38\xb1\xed\x2a\x42\x9b\xc6\xb8\xf6\x10\x0c\x35\xed\xd1\x24\xd0\xb4\x96\x93\xad\xa9\xac\x35\xc7\xdb\xf1\xb8\xf2\xdd\x5a\xf9\x29\xb8\x1a\xc8\xf8\xc8\xb3\x28\xbc\xf7\x17\xe6\x84\xd6\xc4\xda\xf6\xa8\x6e\xc6\xef\x0c\x59\x23\x37\x5f\x13\xe8\x4e\xae\x3b\xe2\xda\xb4\x15\x21\xd1\xd7\xc7\x67\xd9\x78\x6b\x4f\x35\x44\xcd\x3a\xcc\xb6\x32\x06\x42\x9b\xea\x53\xec\xdd\xe4\xcd\xca\x24\x49\x0c\xd3\x7e\x2f\x5a\x2e\x88\x73\x38\x27\x66\x98\x63\x4e\xbf\x7d\xeb\x2c\xef\xc0\x59\x6e\x58\x0f\xd4\x89\xf5\x79\x71\x4e\x7e\x6e\xed\x5e\xdc\x87\x94\x03\xde\xe8\x0e\xac\x4b\x0b\xbd\x24\x9e\xd2\x61\x1f\xc5\x4b\x8d\x26\xfa\x55\x96\xbf\xac\xbe\x71\x0f\x9a\x14\x09\x64\x9e\x5d\x4f\x99\xf7\xab\xbc\x5f\xe6\xbb\x6b\xcb\x5a\x64\x14\x55\xa8\xfc\x56\xbf\x43\xe4\xd2\xdb\xca\x7c\xb7\xcc\x08\x32\xe3\x1d\xb3\xb7\xe1\x18\x66\xfb\x01\x28\x95\x87\xc1\x24\x6f\xc3\x33\xb9\x5a\xd6\x5f\xcb\xdb\xac\x36\x6b\x0c\x37\xfc\xbd\x18\xed\x45\xd6\x5a\xcc\xfb\xdd\xca\x6a\x66\xe4\x22\xeb\x86\xb7\x92\x4d\xae\x46\x62\x6d\x22\xaa\x56\xab\x30\x39\xf8\xb4\x1a\xe4\x9d\xd9\xa9\x7d\x0d\x90\x1c\xda\x2f\xed\x0e\xcd\x85\xf0\x95\xa9\xe5\xc6\x38\x42\x3c\x79\x77\x36\x82\x9d\xf3\xdb\x97\xe4\xe5\xa8\xda\x93\xe4\xdd\xfc\x76\x28\xb9\x78\x21\x7a\xa6\x17\xfa\xbf\x79\x32\x88\xc9\x4b\x28\xda\x48\xbb\xb8\x93\x16\x70\xe4\x4b\x68\x09\xfe\x6b\xcc\x67\xa0\x33\x95\x0a\x6c\x50\x19\x46\x33\x74\x2b\x99\x1f\xe1\x1e\x18\x23\x66\x19\x85\xa2\x93\x20\xe0\xc3\x69\x32\x08\x1a\x17\xd6\xe0\x92\xa5\xfc\x5f\xa4\xd2\x86\x79\xc9\x22\x07\x77\x06\x2d\xca\xab\xb3\xdb\x77\xa7\x17\x23\xbc\xe8\x19\x31\x77\xb2\xb6\x87\xf9\x92\x03\x7c\x6d\xc5\xa0\xbc\xa2\xbf\xb0\xd8\x5e\xd1\xaa\x13\x1a\xf4\x73\x18\x3d\x86\x18\x31\xc9\xc0\xbd\xad\x90\x13\x0f\x83\x37\x8a\xae\x18\x81\x4f\x10\x81\x8b\x4e\xdd\xda\x40\x1a\x66\xe1\xbe\x5e\x9a\x2e\x99\xb6\x14\xdb\xd5\x5d\x3e\x74\xda\x12\x03\xc6\xfc\x6d\x3b\x6b\xd8\x37\x81\x34\xcf\xb2\x49\x7e\x69\x2a\x4a\xe7\x67\x19\xbd\xa1\xb3\xbc\x0b\x67\x95\xc9\xbc\x4c\x1e\x63\xc3\x5d\x5f\xc7\x1d\x41\x47\xe2\xcf\xce\xf2\xee\x9c\x3b\x13\x7f\x5a\xd4\x20\x73\x0f\x6b\x46\xe3\x5c\xf9\xf5\xe1\xa1\xaf\x13\x85\x45\x4d\x2a\x1a\x58\xf5\x46\x45\xdc\xbe\xed\x3d\x35\x9e\xf3\x1f\x20\xda\x10\x8b\x3d\x3f\x31\x4c\x02\x3d\xc9\xd1\x70\x0f\xe3\xbc\x61\x79\x42\xdf\x39\x43\xba\xec\x8d\x6c\x9c\x84\x74\x9e\x74\x02\x74\x6c\xad\xfa\x0b\xa7\x06\xa7\x53\xa2\xa3\xb5\xd8\x40\xda\x6f\x4b\x07\x21\xea\x22\xc3\xe6\xac\x4c\x3e\x69\xf6\x20\xe5\x8e\xf7\x6e\x33\xb8\xa9\x53\x2f\x71\xa3\xe6\x8e\xba\x9e\xfb\xae\x79\xec\xae\x18\x12\x46\x62\x4f\xb2\x0e\x72\xb4\x68\x19\x9d\xdb\xde\x81\x16\x1d\x71\x23\xb6\xec\x93\x28\x62\x9e\x0e\x09\xa1\xb5\x82\xc8\x2b\x95\x45\x70\x59\x26\x93\x93\xa2\x07\xe8\x95\x97\x99\x2e\xf0\x49\x75\x1d\x10\xb9\x2f\x57\x64\x0a\x0e\xe8\xea\x6b\xba\x1d\x1a\x6d\x0d\x37\xee\xff\xe9\xc7\x6f\x45\x9b\xbf\x59\x8b\x53\x16\x84\xd3\x16\x8f\xe0\xf7\x31\x5c\x97\x83\x02\xc3\x37\xf9\x98\xf5\xa0\x64\x8f\xd6\xe0\x95\xea\xe6\x88\x5a\x78\x02\xc9\x36\x44\xcb\x19\x0c\x4a\x0a\xfa\x29\x9e\x49\x5f\x20\xe5\x5d\x08\x23\x09\x83\xef\x98\xef\x20\x7a\x13\x24\x61\xf7\x58\x14\xf2\x11\x18\x3b\x8b\x8d\x6c\x9a\x3e\x46\x09\x1a\xb6\x04\xd1\xc2\x37\x1c\xa3\xac\x2b\x52\xb0\xe0\x92\x27\x5d\x59\xe4\xfc\x61\x7f\x2b\x49\xaa\x4c\xc2\x64\xe1\x62\xac\x2b\x46\xe2\x63\x26\xef\x4a\x15\x56\x2d\x23\xe1\x66\x01\x02\x6d\x18\xa7\xcd\x38\x34\xe5\x0c\x6b\x70\x4e\xb1\xae\x47\x44\x52\x9a\x7d\x63\xca\x27\xbc\x88\xee\xc0\x60\xac\x41\xe4\x2e\x03\xc1\xfc\x8e\xf1\x09\xac\x56\x03\xbb\x5a\xd6\x28\x3e\x4c\xae\x6f\x4e\x2f\x2f\xf4\x5d\x68\xbb\x80\x3d\xed\xc2\x87\xf1\xc2\xd4\x95\x34\xa5\xec\xb9\xf0\x04\x22\x10\x5d\xa9\x89\x44\xcf\x47\x57\x8e\xc2\xc9\x98\x9b\x78\xeb\xbd\x35\xe5\xbf\x8f\xaf\x2f\x4e\x2f\xde\x1d\x7d\x0c\xc5\x33\x39\x1d\xc0\x67\xc6\x09\xbb\x9c\x21\xc1\xfe\xb6\x54\x26\x07\x7e\xc8\x95\x89\x3b\xd8\x38\x2f\xfd\xc5\x32\x58\x83\xa1\xfb\x4c\xd4\xf1\x16\x7c\x8e\xa4\x7e\x68\x10\x58\x79\x6b\x76\xc7\xc5\x92\x20\xbd\x3b\xc0\x9e\x01\xfc\x9d\xa4\x53\x8b\x7a\x99\xf0\x19\xf8\x5f\xa1\xe2\x1a\xd9\xa7\x4b\x1e\x04\x82\x7e\x0a\x4e\x5d\x10\xfd\x45\x2b\xfe\x7f\x4f\x21\xc8\xdf\x88\xa1\x41\xb1\x8a\xc8\x14\xa1\x41\x74\xbe\x02\x07\xdd\xa5\xf2\x18\xdc\x38\x8b\x25\x3c\x8d\xa3\x70\xc3\x81\x67\x33\x00\xa8\xcc\x20\x21\x56\xc0\x70\x21\xaa\x78\x0f\x9e\x1f\xc0\x98\x90\x46\xe7\x70\xb5\xb0\x65\x0d\x27\x4d\x10\xd1\xf9\x48\x9a\xd3\xcc\x0f\xc0\x72\x14\xd3\x26\x46\x49\xbc\x84\xd0\x50\xd8\x0c\x29\xb4\xc2\x71\x10\xe5\x73\xf6\x16\x32\x0b\x24\xeb\xe7\x29\x13\x5b\x79\xef\xce\x4b\xf9\x21\x66\xc7\x05\xd5\x79\xc0\xe7\x8b\xd2\x85\xb1\xe0\x86\x66\xd3\xd8\xa0\x60\x18\x3f\x97\xd7\x48\x0d\x5a\xf5\x40\x55\xdb\x18\x71\x87\x51\x34\x87\xbc\xad\x4a\x0f\x21\xc4\x82\x97\x65\x7c\x15\x67\x25\x83\x15\x5a\xc2\x4a\xc7\x75\x6f\xd6\xd6\x8e\xff\x51\xde\x56\xd6\xf3\xcf\xa0\xf9\x3d\x98\x48\xcf\xc5\x9a\x90\x44\xeb\x22\x2c\xf1\xc6\x37\xa8\x99\x7f\xab\xb6\xd9\xc2\x2a\x5a\xe2\x1e\x4c\x96\x5b\xb9\x60\x9a\x08\xd1\xb7\x0a\xb3\x70\x08\xba\xc5\x7d\x74\x16\x94\x8d\x3f\x52\xf4\x46\xa0\x33\x18\x49\x9d\x41\xb4\xf5\x52\xa1\x41\x39\x57\x71\x69\xff\x3f\x13\xdf\x2d\xcc\x0d\x3e\x39\x7f\x74\xbd\x3f\xba\xde\xbe\xba\x5e\xef\xf9\xd0\x87\xaf\x9e\xc1\xf6\x10\x83\x4a\x35\x3e\xd9\x7f\x6c\xb4\x4e\x2d\x98\xcc\x1d\x2f\xbe\x00\xf8\xea\x08\xc1\x0b\xe5\xbe\xba\xb0\xdf\xfa\xc0\xf5\x9a\x5e\x20\x18\x42\x0a\x2b\x74\x7e\x4c\xfc\x95\x97\xac\xd1\x1c\x7f\x06\xee\x5e\x95\xdb\x64\x1d\x24\xfa\x29\xc4\x01\xba\xb8\x6c\x7d\x34\xf4\x3c\xf6\xa1\xa1\x56\x18\xdd\x1c\xda\xea\xe1\x35\xbb\x69\x66\x24\x02\x9b\x7d\x19\x61\xc3\x5c\xf1\x5b\x2c\x09\xd1\x72\xf9\xca\x93\x51\x97\xb6\xe5\xc1\x0e\x2e\x78\x80\xef\x26\xa2\x13\xd5\xf0\xef\x43\xc6\xfe\x2e\xd7\xb4\x95\xa0\x09\x8b\xdc\xe7\xa2\xaf\xa9\xe2\x98\xa8\x0b\x6e\x1e\x30\xae\x41\x2e\xef\x03\xe7\x70\x1d\xaa\x0a\x55\x5f\x3f\x4e\x30\x1e\x33\xf3\xe6\x73\x74\x7c\x16\x1f\x69\x03\xc2\x1d\xc7\xa0\xb8\x32\x2c\xe4\x21\xbb\x04\x75\x9c\x69\x0a\x58\xf9\x0b\xf0\x67\x9c\x1f\x14\xcc\x54\x61\x39\x04\xa5\x34\x60\xdc\x6e\x1c\xcb\xf4\xb9\xef\x8f\x6e\xf6\x47\x37\xeb\xd3\xcd\xec\xe7\x39\x2f\x81\x59\xf9\x08\x22\x43\xc8\x18\x3a\xcb\x2c\x8b\x1b\x81\x74\x98\x0c\x39\x20\x4e\xf0\xac\x56\x24\x6d\x94\x49\x55\xf0\x2b\xd5\xbc\xb0\xb7\xd5\xf7\xf9\x3d\xb0\xa4\xcb\x2f\x0d\x72\x20\xa2\x3d\x7c\x39\x88\x99\xd2\x2d\x80\xa9\x8e\x3d\x82\xc4\x17\x9d\x4e\x08\x29\xd6\xeb\x68\x8e\x11\xc7\xde\x9e\x9e\x4d\xb0\x9b\x70\x6f\x8e\x96\x9a\xd9\x5c\x2c\xc5\x7a\x3c\x74\x0a\xd6\xe8\xfe\xd3\x8f\x45\x3b\xcf\x96\xfe\x03\xaf\xf4\x46\x2a\xb6\xb1\x95\x2d\x05\x9d\x80\x35\xb6\x1f\xcf\x6f\xcf\xa6\xa7\x57\xe3\xeb\xe9\xcb\xb7\x97\xd7\xe7\xa3\x93\xf1\x74\xcc\x8e\x2f\x2f\xa6\x93\x8b\x29\x7b\x7f\x7a\x72\x32\xb9\xf8\x49\x8b\x8b\x56\xd9\x1e\xd3\xd5\xf5\xe9\x87\xf1\x74\xc2\x90\x5e\x27\x08\x73\x69\x7b\xae\x6d\x09\x49\x52\x03\xdf\xae\xf2\xf6\x9c\x17\x41\x74\x27\xe6\x3f\xe5\x8f\xfe\x53\xb9\xb3\xfb\xb1\x30\x08\x4b\x0f\x0f\x0f\x7f\x62\x3f\x16\xcf\x8b\x82\x7a\x6c\xfd\x29\x5a\xa3\x97\x5e\x2d\x5a\x28\x9b\xaf\x89\x74\x71\xcd\x94\x73\x37\xc4\xdd\xaf\xa7\xc8\xe8\xb0\x87\x51\x56\x4f\x45\x6e\x0d\x15\x58\x7a\x56\xac\x0a\x74\xd3\xab\x4e\x40\xd6\xf9\x3f\x74\xd0\x0c\x16\x3b\x1d\xc8\xb2\x48\xdf\x10\x1b\x6f\xed\x3f\x40\xa0\xbf\xce\x68\xbc\xa3\x50\x8c\x1e\xb9\x5e\x01\xb7\xf5\x9e\x40\xd9\x2a\x84\x7b\xef\x68\xed\x26\x93\x7b\x37\x83\x7a\xb8\x4a\x9c\x25\x5e\xba\x34\xb5\x4b\x5b\x19\x0a\x07\x43\x8b\x34\x5e\xda\xd3\x04\xc3\x87\x22\xe4\xc4\xbd\x58\xbc\x4d\xe8\x4d\x65\xad\x39\xc2\x2d\x71\xb1\x6b\x9e\xae\x63\xb8\x14\xc6\x98\xd3\xdc\x94\x86\xd5\xae\x92\x35\x86\x3b\xd8\x23\x32\x63\x7b\xb6\x15\xb1\xa7\x8f\xe3\xff\xa8\x32\xce\xd0\xb3\xd1\x97\xb4\xe7\x06\xd7\x9f\xb8\x3b\x87\xab\x51\x43\x2b\xea\x0b\x5a\xf3\x9a\xc5\xb9\x96\x7c\xe3\x9d\x3d\xc5\x8e\x31\xe3\x3e\x5e\xb0\xa6\x69\xfa\xde\x2e\x60\x4d\x7b\x5e\x65\x26\xd5\x92\x6f\x2d\x43\xe0\x80\x19\xa5\x0c\xd4\x37\xde\xdb\x53\xf6\xd3\xae\x09\xbc\xad\x08\x85\xbe\x7e\x0b\xdc\x7c\x49\xa2\xa9\xbf\xb9\xda\x78\x6b\x4f\xd5\xf2\xe6\xb8\xff\x25\xb1\x0c\xfc\x62\x60\xd0\x7c\x4d\xa4\x6b\xb0\x96\xdf\x2e\x60\xbb\x19\x81\x79\xc2\x40\xf6\xd1\x05\xae\x34\xb1\xd7\xf7\xbb\xad\xf7\x04\xca\x18\x49\x15\x8d\x22\xae\x12\xd0\xcb\x64\xeb\xc2\x38\x22\x5d\x46\x79\x30\x2f\x54\x3b\x10\x03\xdf\x00\xc0\x8d\x8c\x3d\xce\x07\x93\xbb\xc9\xc6\xdb\x3e\x8b\x6a\xc7\x62\x6e\x51\xc3\x9a\xbb\xac\xc8\xb2\x1c\x55\x01\xb0\x6d\x86\x43\x6d\x1a\x05\x9c\xf1\xd9\x32\x92\x3b\xed\xe2\x56\x4f\x08\x98\xac\x6b\xfe\x3d\x76\xc9\xa1\x77\xc1\xc2\x5e\x3e\xc1\xdb\x68\x23\xb1\x5d\xc0\x9e\x76\xc2\x51\xcb\x16\x7b\xbe\xfe\x63\xb5\x17\xb2\xe6\x01\xb1\xeb\xb4\xb4\x9b\x2f\xad\x69\xfa\xe1\x2c\x4a\x20\x00\x28\xcb\x53\x6f\xa1\x6f\x1a\x6d\x39\x02\x27\x65\x29\xaa\xc2\xa8\x04\xfe\xca\xd7\x8b\xd3\x51\x9a\xcc\x15\xb7\x66\x45\xa4\xd8\x53\x88\xea\x0a\x86\x66\xe2\xf4\x91\x46\xe1\x91\x8c\x01\xe0\x67\x8d\x0e\x76\x00\xab\x44\xf6\x29\xad\x12\x52\x40\x11\x99\x9f\xc2\xd0\xc3\x77\xcf\x90\x2c\xbb\x7e\xf3\xd1\x27\x52\x4b\x59\x57\xbf\x68\xb5\x15\x21\xd0\x7f\xf0\x02\x1f\x2c\x02\x96\xe2\xf4\x9e\xc9\x94\x54\x7e\x58\xda\x13\x19\xb8\xda\x56\x24\x63\x91\x3e\x20\x18\x40\x42\x2d\x30\xc7\x6f\x3f\xdd\x4c\xc7\xef\x4e\x2f\xde\x7d\x9a\x9e\x9e\x4f\x2e\x6f\xa7\xc5\x7c\x65\xec\x23\xfd\xc8\x0d\x86\xfb\x7a\x7a\x7b\x35\x20\xee\x2e\x72\xd6\xb8\x03\xef\x8e\xeb\x17\xf7\x8d\xb7\x04\xaa\xe2\xc0\x9b\xc7\xf2\xd0\xa4\xef\xb5\xa0\xb9\x15\x53\x5c\x5b\x49\xdb\x3d\x17\xce\x56\x86\x55\x7b\xeb\xbd\xbd\x0c\x62\xe3\x2a\xc3\x1d\x16\xd7\xfe\x85\x7f\xa8\x52\x1d\xea\x07\x3b\xa5\x2a\x1d\x0f\x06\xe9\x9b\x83\x09\x8f\x22\x0a\x51\xe4\x52\x3f\x33\x85\x24\xa3\x55\xb6\xc7\x14\x41\xac\x69\x3d\xd7\x8d\xd7\xd6\x74\x57\xe6\x00\x6b\x9b\xaf\x89\x74\xf5\x1d\x72\xeb\xbd\x35\x65\xe3\x6e\xc7\x71\xa7\x13\x46\x21\xbb\xf3\xd2\x4a\x73\xab\xef\x71\xa6\xa2\x14\x7e\x06\x19\x1a\x2f\x09\x34\xe1\x8a\x00\xa6\x32\x79\x05\xcc\x0b\x7d\x98\xe8\x81\xc6\x5d\x96\x7d\x45\x6b\x2c\xa6\xc8\xd0\x6e\xd1\xb8\xeb\x21\x03\x4c\xa4\x5b\x0a\x51\x78\xe8\xbf\xbb\x63\x9c\x73\x71\x16\x35\x0c\xdb\x8d\xb7\xd6\x54\x61\xb3\x5d\x5e\x05\xe0\x45\x81\x61\xe6\xd7\x17\xb5\xe7\x27\xea\xe9\x39\x34\x5e\x92\x68\x1a\x60\xf7\x40\x9a\xd6\xe3\xa6\xdf\xad\x9b\x17\x28\x56\x1d\xc9\x91\x8a\x3d\x4a\x15\xf0\x5f\x0f\x60\xab\x80\x3d\x6d\x69\xc7\xaf\xbf\xab\xd9\x2e\x60\x4d\xfb\x9f\xe6\xc4\xbe\x9b\xaf\x6d\xb7\x16\xb0\x32\x4a\x87\xe4\x47\x0c\x3f\x5d\x8b\x60\x71\xe7\x87\x60\xde\xe2\xa7\x4c\x2c\x71\x9e\x69\xff\xe1\x46\xc4\x5a\x74\x20\xaf\x42\xcc\xea\x7b\x6d\x7b\x21\x02\x8f\x62\xde\x4d\x8d\x39\x0b\xb5\xe5\x5c\x39\xe9\x3f\xa9\xbe\xa0\x3d\x2f\x73\xd0\x4f\xe7\x20\x9f\xca\x50\x51\x4f\x78\xf3\xbd\x35\x65\xcb\x48\x10\xbd\x03\x40\x6c\x5d\x13\x6f\x31\xd0\x5f\x23\x5b\x51\xb6\x89\x28\x31\x48\x20\x09\xeb\x28\x0e\x03\x04\x6f\xb0\x0f\xe6\x3a\x44\xf0\xd6\xfa\xd2\xd9\xc9\xc8\x71\x29\x6c\x9a\xc7\x76\x71\xd9\x2a\x46\xe5\xd3\xd9\x60\x4e\xed\x84\xf1\xed\xf5\x94\x37\x5e\xdb\xd3\xf5\x8d\xdd\xc9\x77\xec\x43\x46\x0f\x46\x57\x77\xc4\x9a\x0f\xb6\x41\x83\xa4\x29\x45\xe3\xd2\x45\xdf\xe5\x56\x25\x55\xe9\x87\xf5\x94\xb7\x0a\xd8\x83\x46\x95\x9f\x89\x72\xe3\x35\x81\x6e\x14\xc7\xa6\x7e\xb7\xf9\x9e\x4a\x99\x79\x68\x15\xff\x5a\x1c\x8a\x64\x56\xa9\x2e\x56\x86\x0a\xd6\xbc\xc1\x29\x55\xcb\xa7\xf9\xd2\x9e\x26\x46\xb6\xb6\x52\x54\x77\xea\xa7\x8d\xdd\xa8\xe5\xfa\x06\xa2\xd5\x26\xd1\x22\x31\x19\x71\xd9\x56\xb3\x16\x38\x57\xc1\xb8\x60\x61\x8b\x60\x9d\xd6\xb2\x36\x94\x24\x70\xeb\x52\x90\xb5\x94\xb0\xa7\xbe\x1d\x76\xa8\x36\x8d\xe8\x59\x5a\x56\xb3\xc7\x61\x70\x3f\xcf\x9d\xdc\xcf\x45\x2d\x7d\x9f\x68\xbe\x24\xd1\xd4\xcf\x8f\x1b\x6f\xed\xa9\xc2\x25\x91\x81\xec\xc6\x6b\x02\x5d\xc3\x9a\xdf\x7c\x49\xa2\x59\x06\x7f\x32\x12\x6f\x29\x65\xcd\xe5\xa1\xc3\x15\x75\xeb\xbd\x35\xe5\x47\x34\x95\x2e\x32\xc0\xa3\x6e\x1e\xdd\x04\xd0\x5b\x08\x83\xd0\x6b\x99\x52\xaa\x5a\xe3\x59\x1b\x36\x4d\x6b\xa7\xfd\x92\x0a\xc5\xae\x8c\xe4\xc5\x64\xf7\x02\x8c\xe6\x55\x8b\x1d\xc9\xb8\x16\x45\x16\x8d\x9b\x0c\x4c\x3d\xbf\x7c\xd1\xa7\x75\xe8\x49\x8d\x82\xfa\xf8\x6d\x11\x2f\x25\xf6\x4d\x78\xda\xcb\x39\x71\x32\xc7\x72\x30\x94\x24\x71\x2b\x92\xc4\xb2\x25\x0f\x62\xf6\xe3\xf1\xe5\xf9\xf9\xf8\xe2\x44\x6f\x00\x6d\x55\x87\x86\x20\x0f\xb3\xcb\x7b\xe5\x77\x93\x0a\xaa\x85\xbb\x89\xde\xfc\xc7\xb6\x1a\x09\x87\x34\x6b\x2b\x42\x95\x74\x59\xc1\x59\xd4\xa0\x70\x3f\xf1\xd3\xcf\xb7\x30\x97\xca\x74\x81\xea\x89\x8a\x67\x64\x02\x61\x59\x91\x84\x45\xec\x0a\x0a\xa1\x8c\x36\x47\xc6\xb2\x14\x8e\xdb\x46\x21\x2a\xdf\x5f\x95\x8c\xba\xf8\xd0\xcd\xac\xc6\x18\x62\xa5\xe6\x28\x9b\xca\xd4\x72\x32\x4d\x63\x15\x64\xc5\xd8\x93\xf6\xc8\x9c\xd8\x26\x80\x44\x61\xc9\xb7\x33\x57\xc3\xbd\x85\xd8\xb1\xc2\x41\x1f\x52\xd5\x99\x75\xbb\xfd\x09\x52\xb0\xbf\x0d\xa4\x0f\x5c\x19\xf7\x47\x3a\x21\x99\xd0\x75\x56\xa1\xf0\x3f\xe7\xab\xe6\x98\x10\x0f\x2c\xc6\x92\x55\x35\x12\x8e\x68\xce\x03\xb5\xad\x2f\x7e\xb6\x26\xf3\x35\xa2\xa2\x13\xa1\x60\x6c\x1a\xd5\xb1\x55\x9e\x4a\x7f\x4b\x96\xe2\x8a\x09\x56\x4e\x60\x59\x27\xf7\x14\x26\x9c\x8e\x84\x86\xc4\xda\x1b\xe3\x70\xd8\x08\x26\x8e\xb4\xca\x14\x4c\xf5\xb8\x95\x2f\x64\x7f\x16\x47\xdc\x33\x38\x90\x7d\xf9\x72\xde\x38\x16\x1f\xd4\xad\x9c\x1a\xe5\x58\xab\x05\xd7\x41\x19\x84\x27\x2d\xca\x15\xc9\x1a\xab\x70\x74\xe5\xab\x62\x86\x3c\x60\xf5\x9b\x39\x0c\x3d\x77\x11\x85\x6f\xe0\x66\xb9\xa8\x32\x96\x66\xce\x1d\xfb\x3e\xaa\x64\xfb\x42\x4a\x50\x17\x5c\x4b\x4d\x7d\x31\xe1\xc9\x19\x07\x33\x71\x15\x8f\x2a\x5f\xdc\x2e\xad\x7f\x5f\x72\x94\x4e\x75\xa3\xf4\x61\x05\xd9\x4e\x05\x9a\x55\x9d\x21\x10\x60\x4f\x38\x91\x66\xf8\x1d\xfd\x87\x4c\x82\x82\xaf\x58\x44\x60\x59\xc3\x85\x54\xec\x4a\x65\x07\x15\x0f\x7f\xad\x0f\xb4\xad\x4f\x63\xc2\x3c\x08\xd9\xaf\xc0\xdd\xe1\x0c\xac\xb7\x4a\xad\x97\x96\x81\xae\x18\xcd\x4a\x2c\xea\xe4\xa3\x2b\x46\xd2\xf2\x1a\xd4\xea\x8e\x97\x95\x55\xd8\x67\x19\x00\x00\xee\x24\xfd\x84\x4b\x37\xf3\x07\x18\xf0\xf2\xc1\xfc\xf8\x58\x3c\x51\xa7\x5c\x18\xf8\x09\x24\xb7\xe6\xc9\xa1\x0c\xde\x34\x93\x91\x3d\x8b\xd8\x83\x62\x73\xfa\x50\xc5\xfb\x6c\x56\xb5\x09\x41\xfd\x04\x58\x5a\x5b\xec\xdf\x7e\xfa\xb7\xff\x13\x00\x00\xff\xff\x1e\x58\x59\xb6\x2c\xb1\x02\x00")
func cf_i18n_resources_de_de_all_json_bytes() ([]byte, error) {
return bindata_read(
_cf_i18n_resources_de_de_all_json,
"cf/i18n/resources/de_DE.all.json",
)
}
func cf_i18n_resources_de_de_all_json() (*asset, error) {
bytes, err := cf_i18n_resources_de_de_all_json_bytes()
if err != nil {
return nil, err
}
info := bindata_file_info{name: "cf/i18n/resources/de_DE.all.json", size: 176428, mode: os.FileMode(436), modTime: time.Unix(1426081216, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _cf_i18n_resources_en_us_all_json = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xec\xbd\xfb\x77\xdb\x46\xb2\x3f\xf8\xfb\xfd\x2b\x7a\xbd\x3f\xd8\xd9\x23\xca\x76\x92\x99\x73\x57\xf7\xec\x99\xa5\x25\xda\xd1\x8e\x5e\x23\x51\x9e\xc9\x8d\x73\x1c\x88\x68\x91\x88\x41\x00\x83\x87\x14\x26\xd7\xfb\xb7\x7f\xbb\xaa\x1b\x20\x40\xa2\x1b\x5d\x0d\x90\x72\xf2\xcd\x9c\x33\x31\x05\x54\x57\x7d\xaa\xbb\xd1\xcf\x7a\xfc\xf0\x1f\x8c\xb1\xdf\xe0\x3f\xe2\x7f\xcf\x02\xff\xd9\x11\x7b\xf6\x21\xfa\x10\x4d\x4f\xaf\x8e\x3e\x44\xcf\x0e\xca\x37\x79\xea\x45\x59\xe8\xe5\x41\x1c\xe9\x48\x96\xb1\x1f\xdc\x07\x1c\x58\xdc\x7b\x61\xc6\xe1\xf9\xe7\x03\x0d\xff\xef\xe3\x22\x65\xff\xdf\xcd\xe5\x05\xcb\xf2\x34\x88\xe6\x2c\x5b\x45\xb9\xf7\x0b\x0b\x32\x16\x44\x0f\x5e\x18\xf8\x87\x8c\x5d\xa5\x71\xc2\xd3\xda\xab\x7c\x11\x64\x47\x8c\xcd\xee\x59\xc6\xf3\x51\x5a\x44\x91\x28\x3a\xe2\xd1\x43\x90\xc6\xd1\x92\x47\xf9\xe8\xc1\x4b\x03\xef\x2e\xe4\xa3\x79\x1a\x17\x09\x7b\xfe\xdb\x87\x67\x91\xb7\xe4\x1f\x9e\x1d\x7d\x78\x26\xd8\x16\xe2\xd7\xc1\xf6\xa3\xcf\xcf\x8d\x9a\x7e\xb9\x60\xf7\x5e\xe7\x59\xee\xcd\x7f\x37\x75\xbe\x1b\xb0\x84\x3a\xff\xbf\xd8\x74\xc1\x33\x2e\xc0\xa4\x0f\xc1\x8c\xb3\x24\x14\x7a\xb2\x85\xf7\xc0\x99\x17\x31\x2f\xcb\xe2\x59\xe0\xe5\xdc\x67\xb3\x38\xcb\x0f\xd9\x71\xca\x45\x1d\x08\x5d\xbd\xaa\x44\x10\x09\x25\x22\xf1\xe3\x31\x08\x43\xf1\xd7\x4c\xd4\x0a\x28\x29\x4b\x18\x6a\x70\x7f\xa2\x09\xf5\x31\x4e\x12\xd1\x9c\x5e\x2a\xe4\x1a\x07\x17\x0d\x1d\x51\xd2\x6f\xbf\x1d\x8a\x7f\x2e\x44\x53\x7e\xfe\xcc\x1e\xbd\xac\x64\xc9\x8a\x0c\x34\x55\xba\x2c\x97\x5e\xe4\xb3\x9f\x04\xf1\xb1\xfc\xfd\xf9\xf3\x4f\x9d\xe0\x86\x61\x4d\xd0\xe7\x22\x66\x5e\x12\x30\x1e\xf9\x49\x1c\x44\x39\x74\x6f\x53\xeb\x9b\xc9\x09\x72\xaf\xe3\x22\xe7\x2c\x8f\xd9\x1d\x67\x45\xb4\xf4\x92\x44\x28\x29\x94\x8b\xe2\x9c\x89\x0e\x91\x8a\x4f\x2a\x5c\x31\xf5\x5c\x90\xe5\x0b\xd1\xbf\x92\x24\x0c\x66\x88\xc6\x84\x71\x38\xd6\x04\x7d\x60\xd2\x62\xec\x56\x7c\x18\xcf\xc5\x20\xb1\xf4\xd2\x4f\x3c\x17\x9f\x86\xe8\xe5\xa3\x8c\xdd\x4c\xae\xdf\x9f\x1e\x4f\x9e\x83\xb4\x87\x80\x3f\x32\x9f\x67\xb3\x34\x48\x40\x5c\xc6\xe2\x7b\xf1\x11\xf8\xc1\x43\xe0\x17\x5e\xa8\xbe\x27\xf1\xcc\x63\xf3\xe0\x81\x47\xe5\x67\x63\xd2\x78\x9f\xc2\xa9\x75\x32\xce\xb2\x60\x1e\xb1\x34\x0e\x79\x26\xbe\xf8\x7c\x21\x86\x46\xd1\x6f\x65\x3b\x08\xc8\xa9\xe8\xe8\x30\xa6\xc6\xe9\x7c\x04\x44\xcf\x19\xf4\xed\x76\x9a\x2c\x11\x3a\x49\xaa\xae\xda\xd8\xb9\x58\x6a\x3d\x60\xeb\x00\xfb\xb7\x53\x2f\x9d\xf3\xbc\xfa\x72\xb1\x61\x72\x7c\xc6\x22\xd1\x3c\x28\xad\x4b\x3d\x57\x6e\xce\xa8\x75\xfc\x45\xfd\x59\x63\xb5\xe2\x41\x45\x58\xa8\x5e\x1f\xc6\x62\x4a\x66\x23\x8f\x8d\xaf\x4e\xd9\x68\x94\x7d\x0a\x92\x51\x96\x85\x23\x9c\xd2\x11\xd2\x73\x21\x08\x49\x61\x04\x33\x50\x09\x70\x59\x91\x24\x29\xcf\xe4\xbc\xcf\x78\x9a\xc6\x69\x97\x96\xfb\xc7\x61\x5d\x53\xe2\xd7\x1b\x31\xd5\x8a\x09\xe4\xdc\x8b\xbc\xb9\x58\xd8\x8c\xe4\xbc\xcc\xb1\xd3\x2f\xf1\x21\x0e\x83\x77\x92\x8c\x79\xb3\x59\x5c\x88\xe1\x1d\x5e\x27\xde\x0a\x16\x38\x62\x98\xb8\x8f\x0d\xf3\xd7\x6e\x84\x50\x74\x3c\x7e\xfb\xf1\x62\x7c\x3e\x61\x5e\x21\xbe\x76\x58\x68\xfd\xbf\xfc\x17\x6f\x99\x84\xfc\x50\xcc\x98\xec\xc3\xb3\x0f\x1f\x3e\x3c\x4b\xc4\x02\xe5\x31\x4e\x7d\xf8\xfd\xe1\x19\x7b\x21\x86\x42\x2f\xe1\xec\xdf\x45\x9c\x8b\x71\x22\xb8\x87\x66\x14\x93\x45\xc4\x4a\xc2\xaf\x4c\x0a\xef\x5a\xe2\x90\xda\x2f\x57\x95\x04\x80\x01\xdd\x55\x61\xb8\x17\xdd\xb1\x7c\xa5\xc6\x4a\x4f\x8e\x1b\x5f\x99\xdb\x7b\xe7\x22\x5d\xf4\x9f\xc5\xc9\x6a\x94\x89\x45\xbe\x98\xfd\x6e\x2e\x6f\xaf\x8f\x27\xa3\xf1\xd5\x15\x9b\x8e\xaf\xdf\x4d\xa6\xf8\xf3\x87\x51\x5c\xfe\x79\x79\xfd\xee\x47\xf1\x77\x56\xfe\x7d\x73\x35\x3e\x9e\xc0\x93\x51\x14\x8f\xc4\x87\x07\x8b\xaf\x1f\xed\x2a\x61\xb7\x72\x5d\x6a\x42\x8e\x44\x2f\xe2\x65\x90\x43\x27\x4b\xa1\x85\xd4\xc7\x26\x6b\x1e\x46\x18\x49\x24\x96\x72\x3c\xf5\x66\xb9\x98\xf3\xc5\xd2\x68\x34\xaa\x78\xe0\x12\x3d\x49\xe3\x65\x92\x63\xa3\xdd\xc5\xf9\xc2\xb2\x57\xec\x45\xbc\x7b\xbd\x88\x41\x37\x8b\xd9\x8b\x4d\x49\x62\x21\x24\x50\xb2\x22\x0d\x01\x5e\x7c\x97\x7b\x82\xd6\x63\x71\xc4\x47\x79\x20\x14\xd8\x02\x6f\x35\x40\xec\x4c\x64\x0f\xfd\x8b\xed\x4f\x76\x94\xec\x74\x98\xdc\xb1\xe0\x1d\xd4\xc5\x0e\x07\xcd\x5d\x4b\x1e\xbc\x36\x12\xef\x2f\x7f\x79\x8c\xaf\x4f\xd8\x8b\x2c\xe1\xb3\xe0\x7e\xa5\xf9\xaa\xc5\xa6\x55\x2c\xed\x0a\x98\xce\xb3\x21\xea\xa2\xb7\x5c\x97\x9a\x48\x8a\x6c\x21\xd6\x66\x57\xf2\xaf\x1f\x46\x77\xec\xcd\xed\xe9\xd9\x89\x18\xa6\xff\x8e\x8f\x60\xac\x9e\xb1\xe3\xcb\xf3\xf3\xf1\xc5\x09\xfc\xe1\xb3\x93\xcb\xf3\xf1\xe9\x05\xfc\xbe\x67\xe2\xe9\xe9\xdb\xc9\xcd\xf4\xe3\xd5\x78\xfa\x9d\xe5\x04\xb2\x33\x91\xce\xfa\xf7\xd2\x64\x38\x4c\x97\xe9\x7c\x5c\xf8\x41\x1e\xc3\x92\xf2\x9a\x7b\xfe\x28\x8e\xc4\x34\x21\x96\x8f\xb8\x32\x8e\x61\xff\x80\x0b\x47\xec\x0f\x29\x4f\xe2\x34\xcf\xcc\x48\x7b\xb3\x24\xe2\x5f\x2f\x89\x4f\xa3\x87\xa0\xb9\x24\x86\xde\x9c\x1d\x88\x8d\x66\xc8\x67\x72\x31\x3c\x5b\x78\xd1\x5c\x9d\xac\x1d\xe0\x13\xb1\x0b\x15\x9f\x38\x17\x1b\x75\xb1\x6e\x0e\x03\x31\xa5\x76\x2b\xb8\x63\x99\x94\x1a\xb8\xf2\xc4\x20\x95\x2d\xe2\x22\xf4\xe1\x50\xc6\x63\xbf\x06\x09\xbb\x0f\x42\x7e\xb0\x9e\xf7\xea\x0f\x45\xb3\x78\x62\x50\x98\x79\x21\xf3\x83\x54\x40\x8c\xd3\xd5\x21\xbb\x8a\xb3\x00\x54\x84\xb3\x1c\x8f\x25\xf8\xd7\x03\xc7\xc5\x83\xd0\x13\xb4\xc9\x33\x31\x9f\x06\x71\x1a\xe4\x2b\xa9\x83\xa0\xcc\x62\x3c\x3f\xbb\x17\x8b\x08\xc1\xf2\x51\xac\xad\x40\xda\x22\x98\x2f\xb8\xe9\xa0\xf3\x77\x82\x9a\xd4\x0a\xf0\x59\x2e\x8b\x30\x0f\xc4\xe8\x0a\x27\x5e\xd5\xec\x21\x7a\x45\x70\x2f\x18\x9b\x6e\x66\xe8\x0c\x28\xd8\x6e\x60\xfe\x5a\x7f\x92\xef\xe1\x9c\x4a\xcc\x0a\xa2\x2b\xaa\x8f\xaf\xea\x93\x70\x98\x9c\x89\xc5\x91\xdc\x12\xe3\xbc\x67\x46\x3d\x18\x6b\xb2\x3e\x27\x5c\xac\x67\xf1\x22\xa1\x6d\x2b\x8c\xf5\x27\x25\xe3\x19\x5b\x85\x83\x23\x3c\xfb\xc1\x6c\x77\xb2\xc8\x1a\x5b\x8c\x39\xf0\x84\x47\x70\x53\xc2\xee\x05\xcc\x22\x55\x4b\x9a\xea\xc4\xd1\xb2\x45\x77\x21\x8a\xa2\xef\x74\xc1\xcb\xc5\x3b\x2c\x42\xc4\x67\x30\xf3\x22\x1c\x27\xc4\xe2\xfd\x2e\x8b\x43\x38\x84\x16\xc2\x52\x0e\xd8\x1f\xb8\xa4\xc1\x21\x03\x86\x8b\xc3\x0f\x91\x60\x72\x9a\x97\x03\x8c\xbc\x40\x61\x70\xca\x0f\xdf\x56\x9a\x7a\x2b\xf9\x71\xe1\x55\x55\x7c\xf7\xb3\x18\x4f\xe0\x86\x2a\x83\xcd\x82\x3c\xc1\xbd\x93\x37\x02\x9c\xa5\x45\xc8\x33\xe3\x50\xf6\x05\x83\xdd\x67\x9d\x4b\x0e\xf0\xb3\xae\x09\x2a\xd7\x4b\x1b\xc9\x17\xc9\xdf\x78\x62\xa5\x7e\x89\x65\x60\x1c\x47\xde\xb0\x05\x86\xd1\x1c\xfa\x23\xae\x33\xa0\x64\xf6\xef\xc2\x4b\x39\xbb\x13\xfb\xde\x4f\x30\x05\xc0\xcb\xfa\xed\xd9\x22\x10\xf0\xa4\x70\x06\x84\x29\xff\x77\x21\x66\x15\xdc\xfc\xe4\x4a\x0b\x21\x18\xae\x34\x85\x88\xf7\x70\x6e\xc8\x7e\xce\xc4\xe0\x85\xea\xa9\x35\xf4\x11\xbe\xfc\x01\xff\x2b\x2a\x54\xfd\x2b\x4a\x3d\x13\xd5\x98\xc7\xb3\x38\xfc\x20\xaa\xf6\xc3\xb3\x7c\x96\xc0\xf5\xe4\xfa\xb5\x50\x53\x8c\x86\xd8\x85\x24\xc5\xeb\x57\x87\x5f\x7f\xfb\xed\xe1\xeb\xc3\xd7\xff\xd9\xa4\x94\x83\x06\xd2\x7c\xf3\xcd\xab\xbf\x8a\x6d\x9b\x7c\xf7\x19\xff\xfd\x71\x97\xbd\xf2\xcf\xe6\x7c\xc2\xe6\xa4\x7c\xb7\x38\xe7\x7a\xa1\x58\xc8\xe0\x60\x0c\x1b\x59\xaf\xbc\x95\x29\x37\x0d\xf2\xa1\xfe\x5e\xc7\x95\x0d\x05\xe7\x0f\xa3\x80\x5d\xdc\x9e\x7f\x3c\xbd\xb8\x99\x8e\x2f\x8e\x27\x37\xb0\xb5\xfa\xc4\x4e\x4e\x6f\xfe\x0e\xbf\x96\xec\x7c\x72\x7e\x79\xfd\x3d\xfc\x8e\xd8\x77\x97\x37\x53\xf8\x95\x30\xdc\xdd\xe0\x71\x9e\x28\x76\x8c\xa4\x39\x9b\x9e\x9e\x4f\x2e\x6f\xa7\x1d\x5b\xa6\x5d\x4b\xb4\xd7\xde\xf3\xe1\x2b\x14\xf5\x69\x68\x82\x36\x1a\x7b\x09\x7e\xcc\xe5\x25\x2c\xff\x25\x10\xeb\x59\xd8\xaf\xe3\xa2\x43\x2f\xaf\xbb\x84\xbd\x74\x58\x7e\x87\x62\x61\xe4\xaf\xca\x3b\x75\xbd\x5c\x13\xad\xa3\xc4\x18\x6e\x9b\x2d\x25\x6e\xd0\x92\x24\xf2\x65\x92\xaf\x8c\x72\x36\x28\x48\xdc\xa1\x2d\x3c\x86\x97\x54\xb0\x03\x3a\x10\xfb\x45\x0e\x23\x64\xe3\x14\xf3\x80\xf1\xc3\xf9\x21\x5b\xe4\x79\x72\xf4\xf2\xe5\x2a\x2e\xd2\x8f\xd0\x68\x70\x9e\x63\x04\x36\x1c\x73\xba\x4e\x0f\x5e\x10\xe2\xa0\x22\x86\x63\xe0\x67\xfa\x0a\x6c\xca\x90\x11\x88\xb5\x69\x12\xe3\x5e\x5b\x6c\x19\xa5\xde\x4b\xef\x93\x98\x57\xc4\xaa\x95\x05\xb9\xdc\x3d\xca\xba\x49\xc2\x62\xae\x44\x1a\x16\x7d\x43\xf1\xb5\xd7\x04\xc4\xdd\xc7\x45\x64\xe8\xe6\x2d\x24\xf6\xfc\x53\xbe\x8c\x1f\xaa\x4d\x31\x0c\x08\xf1\x3d\xa2\xcd\x60\x6b\x17\xf0\x4c\x2f\x97\x50\xd4\xfe\xfe\xf9\xd9\x15\x56\x98\x98\x2d\xcb\x89\xbd\x52\xaf\x9c\xd5\x55\xed\x0b\xc9\xbe\x97\x7b\x06\x13\x8e\x3e\xbc\xac\x11\x7f\x55\x8d\x31\x38\x9e\x1a\xb6\x0c\x06\x4a\x6b\x69\xe3\xca\x50\x29\x0c\x22\xb0\xc7\x89\xf1\xc4\xa4\xbc\xeb\x91\xf3\xf6\x71\x18\x17\x3e\x7b\x0b\x7a\xa6\xfa\x61\xab\x0f\x2b\x7b\xbc\x27\x27\x2f\xaf\xc5\x6c\xfb\x7e\xc2\xae\xce\x6e\xdf\x9d\x5e\xe8\xe1\xe8\x29\xdd\xa5\xb1\xeb\xc9\xd5\xe5\xcd\xe9\x54\xcc\xf6\xf6\x82\x5b\x0b\x11\x30\xbc\x87\x35\xc7\x89\x41\xde\x26\x81\x3d\xef\xab\xd3\xca\x4a\x4c\xcf\xbf\x95\xc8\x49\x06\x7b\x51\xcd\x0b\x99\x98\x18\xbc\x24\x38\xac\xdd\x23\xe8\xaf\xa7\x9c\x78\x38\x21\x3c\xb2\xc2\x70\xd4\x57\x8a\x34\x21\x0c\x26\xea\xef\xcf\x9f\xed\xc4\x1a\x8a\x0d\x84\x83\xbd\x80\xf7\x0f\x3c\xcd\x84\xfc\xf2\xf5\x7b\xf9\xe7\xe7\xcf\x76\x2d\xd4\x83\xab\xbb\x16\x2e\x55\xd9\xb3\x1e\xaf\x6e\x0c\xa2\xea\x2f\xed\x79\xce\x60\xbf\x09\xfb\x5c\x65\x30\xce\x32\x3e\x2b\xe0\xcc\x99\xa1\xc1\x72\x86\xcb\x7a\x81\xbc\xbc\x5c\xfb\x6c\xb0\xa3\xee\xc7\xcc\x01\xb3\x32\xb8\xde\x10\x03\x52\x1a\x42\x2c\x00\x93\x39\xd9\xa3\xf5\xc5\xd6\x08\xed\xd9\x6a\x0b\x29\x5c\x5f\x18\x26\x36\x9b\x32\x44\x04\x70\x33\x91\x96\x26\xb0\x70\x92\x92\x24\x1d\xf2\x8d\x25\x28\xd2\xb1\x47\x20\x23\x51\x99\xb7\xd7\x67\xe2\xf3\x04\x8e\x9b\x76\xcd\x42\x4f\xb8\x5f\x13\xcf\x2e\xd3\xb9\x7a\xf6\x52\x9e\xc6\xc2\x43\x3c\xde\x55\x8f\x65\xbb\xdc\x56\xed\x72\x78\xa8\x5f\xb4\xec\x1f\x80\x7d\xdd\x84\x81\x60\xd4\x34\xd8\x2e\xd7\x75\xaa\xe5\xef\x38\x80\x47\xdb\xf8\x30\x94\x06\xcb\xa2\x67\xc8\x73\xaf\xe3\xb7\xe5\x02\xe8\xa5\x07\x9c\x0e\x19\xbb\xe6\x78\x03\x0e\x0c\x36\xd8\x96\x4b\xa5\x0e\xf6\x50\x05\x3e\x4f\xa1\x7e\xd4\x19\x79\x20\x8f\xc5\x80\x00\xeb\x14\xcf\xb0\xc4\x27\x61\xa8\xf1\x3f\x88\x5a\x3d\xdb\x11\x54\x6a\x28\x82\x06\x2a\x12\x20\x8c\x82\x72\x6d\x2f\x3b\xd4\x73\xa1\xe4\xf7\x71\x21\xe8\xe1\xbc\x32\x4f\x57\xac\x88\x14\x3a\xd0\x44\x57\x0a\x41\x0b\xbd\xa3\x52\x15\x79\x47\xa5\xc8\xeb\x5a\x07\xd1\x43\xfc\xc9\x54\x83\x02\xc0\x77\xf1\x23\x7f\x80\xcb\x47\xb1\x7f\x2e\x8f\x4e\xef\x83\x54\x6c\x8b\xee\x8b\x30\x04\x48\x82\x19\x38\x69\xa0\x4c\x16\x2c\x13\x58\x65\x8b\x2d\x53\x03\x2b\xbc\xc2\xed\x01\xfc\xb1\x8d\x58\x62\xa3\x76\x9e\x3f\xeb\xd2\xaa\x2e\x09\x3d\xb6\x66\xd5\x8f\x07\xd5\xca\x0b\x07\x0e\xa1\xcb\x4d\x9e\xb4\x7b\x08\xf0\xa2\x0c\xee\xc7\x44\x19\x31\x3e\xea\xf7\xd3\xc3\x30\xdd\xa9\x0e\xd8\xa4\x26\xe3\xf4\x61\x98\x0e\xab\x43\x10\xed\xa4\x25\x2c\xd8\xee\x58\x8f\x61\x5a\xc3\x82\x2d\x41\x8f\x2c\x66\x3e\x0f\x39\xde\x1c\x57\xee\x40\xb8\x78\x30\x55\xb7\x55\x29\x7b\x14\x72\x21\xb2\x2c\xc4\x70\x71\xc7\x95\x4f\x04\x07\x73\x13\xa1\x5e\xf9\xb7\xf2\x9e\x33\xba\x85\xb8\x33\xb2\xc7\x2a\x56\x51\x7a\xf9\x8d\x97\x24\x9e\x38\xe1\x07\xf2\x68\x5f\xdd\x89\x89\xb2\xa1\xfe\x14\xd1\xae\x10\x09\x43\x63\x75\xd8\xbc\x75\x30\x4c\x60\xd6\x05\xdd\xb1\xa0\x8a\x8f\x71\xfa\x09\x4d\x85\x3e\x05\x49\xb2\x5e\xe2\xce\xd0\xb5\x32\xd6\xdf\x2f\xf5\xe4\xd6\x0f\xb5\xfa\x66\xef\xf0\x08\x53\xcc\xa5\xb0\xae\x96\xdf\xb4\x24\x22\xd4\x2b\x91\x1d\x05\xb7\xd8\xb4\xa3\x0b\x0e\xf4\x22\x30\xb2\xf2\x03\x6f\x1e\xc5\x62\x1a\x9e\x65\xf2\xa2\x39\x8c\xe7\x78\x05\x6b\x42\xeb\xc0\x84\x82\x31\x33\x9c\x1c\x35\xdf\xda\x73\x95\xde\x71\x9e\xbc\x2e\x55\xdb\x3e\xe3\xf8\xdc\x59\x80\x2e\x5b\xee\xb7\x24\x43\x9f\xdf\x07\x91\xb4\x93\xc3\x1a\xeb\x18\xed\x1c\x58\xb8\xe2\x03\xb7\x3f\xc9\x10\x4e\x07\x6c\x21\xe9\x4a\x91\x51\xc8\x71\x9d\x08\xc2\x5c\x88\x88\x41\x0c\xad\xef\xc1\x59\xbd\x43\xea\x36\x19\x51\x8e\x1c\x8a\x42\xdc\x81\x5f\x8b\x7f\xe5\xde\x1d\xa0\xc3\x13\xe9\xe6\xa8\x9c\x32\xd7\xfb\x77\xf9\x58\xec\xe2\x9b\x3b\x78\xf9\x18\xf7\xf1\xd5\x1e\xbe\xe1\xd7\x69\x3c\x47\x78\x62\x38\xfb\xae\xb7\xa7\xa9\x9e\x1d\xd4\xc2\xc6\x99\x9e\x60\x5f\x3e\xf9\x88\x4f\x24\xc6\xaa\x55\x32\xd5\x1e\x6b\x7c\xe2\x1f\x2f\x0a\x7e\x45\x55\x2b\x88\x85\xdd\xe1\xd3\xd3\xa0\x70\xa9\xa5\xda\x98\x29\x18\xff\x03\x7e\xa8\x89\xb6\x8e\xcb\xf9\x14\x6e\x67\x82\xec\x75\xcd\x73\x30\x72\xc0\x7d\xb5\x58\xae\xc7\x8f\x51\x18\x7b\x62\x2d\x2c\xf6\x0f\xe9\x4a\x1a\x54\xe1\x45\x30\xde\x1f\x46\x3c\x07\xbb\x16\xf0\xb2\x35\xaa\x35\x04\x4f\x47\x0d\x96\xc1\x3c\xf5\xe4\x99\xa6\x5a\xf3\x9c\xaa\x10\x1a\x27\x6b\x57\xfe\x8e\x56\xe9\xcd\x90\x84\x3d\xca\xf1\x36\x06\x0d\xfc\xc4\xae\x0e\x4f\x4f\xae\xc4\x0f\xd9\xcc\x3f\xc1\x26\xaf\xdc\xe0\xfd\xb4\xb9\x92\xfb\xa9\x34\x5d\xb8\x4f\x79\x69\xe3\x57\x85\x0c\xf9\x69\x1b\x72\x59\xaa\x16\x4d\xc4\x53\xc1\x47\xd8\x71\x1c\xe5\x70\xdc\x02\x76\x22\xa2\x45\x96\x62\x81\x90\x89\x9a\x01\x4b\xf0\xe0\x1e\x4f\x6c\xc4\x16\x32\xfa\x24\x37\x92\x18\x01\x46\x3a\x59\x9b\x2b\xf2\x0f\xa4\x9d\x7d\xab\x16\x70\x62\x96\x43\x8c\x0c\x69\x5f\x2d\x94\x88\x46\x0d\xc7\x4d\x7d\x9d\x51\xca\xba\x20\x02\xeb\x16\x53\xe7\xd7\x53\x3a\x49\x13\x2b\xcc\x85\x18\xa9\xf8\x2f\x09\x6c\x3c\x21\x5c\x90\x34\xac\x81\x65\xfe\x9d\x37\xfb\x84\x67\xd4\xb1\xd8\x0e\x8c\xbc\x9a\xe6\x87\x65\x6c\x2b\x0c\x88\xf0\x53\x3d\x54\xc0\x87\xe2\xd5\xab\x6f\x66\xe5\x05\x22\xfe\xc5\xc1\x1d\x4e\x3e\x87\x1a\x2b\x9f\xc5\xea\x99\x98\x23\xca\x47\x99\x7a\x24\xad\xd9\xf1\xe1\x4f\xca\x55\xb4\x42\x23\xed\xfb\x9b\x70\xac\xaa\xeb\x8f\xa6\xaa\x75\x7b\xbf\x39\x3d\x3b\x3b\xbd\x78\x07\x2e\x6c\xe3\x77\x93\x6b\x6d\x65\x69\xe9\xec\x25\x81\x97\x1f\x1a\x6f\xea\xf7\x79\xad\x34\x34\x09\xe0\x47\xa8\xbf\x55\x6e\x23\xb1\xe7\x1f\x80\xb1\xf3\xe6\xc2\xc7\x62\x1f\x67\x5f\xb0\x3f\x16\x38\x54\x2c\x2d\xbf\x36\x6f\xab\x55\xac\x20\x70\x2d\x86\x63\xc5\xf2\x52\xbb\x16\x14\x48\x7f\x24\xb8\x7b\x81\x7b\xd5\xbd\xbc\x1f\xdf\x9b\xee\x66\x81\x74\xdd\x37\x62\x8c\x75\xdf\x81\x13\x4a\x92\xd0\x80\x52\x77\x3c\x7f\xe4\x3c\x82\x85\x56\x73\x42\xc7\x61\xaa\x79\x78\x18\xf8\xeb\xb3\x43\x23\xd8\x61\x18\x93\x75\xb1\xdb\xd7\xf8\xfc\xde\x2b\xc2\x3c\x6b\xf6\x6b\x5b\x3b\x8d\x9d\xca\xda\x91\xc6\x55\x07\xde\x8d\x92\xdd\xec\x1d\xf4\x92\x5d\x5d\xb7\xda\x1c\xc6\x66\xc2\xfa\x40\xe1\x4b\x81\x35\x40\x3d\x0e\x09\xd4\x6e\xbb\xfd\xa4\x58\xc8\x35\x56\xb7\xca\xa9\x23\xb2\xd1\xd0\xaa\xac\x3d\xa2\x22\x08\xfd\x04\xd6\x8c\x82\x57\xf5\x47\xa9\x74\xc3\xf8\x59\x8f\xcc\x85\xc7\x30\x08\x6d\xef\xa8\xdc\x98\xd8\x63\x5c\xe5\x70\xc2\xe3\x89\x85\xb6\x18\xc7\xca\xdb\x47\x2f\x2a\xdd\xdb\x4b\xff\xf0\x22\x0a\x70\x2d\xb0\x14\x9b\x87\x22\xe5\x18\xea\x2b\x0c\x3e\x71\x76\x7e\xc0\xce\xdf\x1c\xb0\x77\xe8\x3d\xff\xee\x8d\x5e\x8f\x9d\x09\xb2\xd6\xb5\x8a\x76\xe5\xfb\x23\x69\x8f\x31\x42\xaf\x8f\x1f\xc0\x06\xbb\x8c\xd0\x21\x7a\xe8\x8f\xb0\xf9\x99\xfc\x6b\x7c\x7e\x75\x36\x91\x0e\x7b\x10\xea\x6d\xa3\xd0\x55\x1a\x3c\x88\x9d\xc9\x35\xfc\x56\xbe\x2c\xcb\x55\x22\x1f\x96\xfe\x2c\x2f\xe1\xc7\x4b\x83\xff\xd8\x17\x80\x88\x5e\x7b\x49\x20\x31\x75\x6b\xb5\x4d\xe9\x20\x2d\xa9\x42\xaa\x58\x08\x6c\x23\xa6\xcb\x84\x68\x68\xb7\x37\x93\x6b\xfc\xeb\x6a\x7c\x73\xf3\xcf\xcb\xeb\x13\x68\x82\x6e\x04\x16\x45\xc9\x78\xee\xc4\xf8\x59\x45\x89\x2e\x57\x18\x2a\x4a\xf1\xcd\xe4\xf8\xf6\xfa\x74\xfa\xfd\xc7\x77\xd7\x97\xb7\x57\x9d\xf8\x5c\x58\xb9\xe1\x35\x32\x67\x97\xd7\xef\x18\x86\x4c\xb3\x43\x4c\x66\xe6\x8a\x59\x4e\xc1\x55\x0c\x1f\x15\x79\xb5\x72\xee\xb4\x45\x6b\xcd\xc6\x11\xa7\x8a\x5e\x3d\x40\x5f\x20\xb2\xa2\xe3\x2d\x67\x2c\xfd\x24\x6c\x22\x25\xcb\x9b\x2d\xf8\xec\xd3\x48\x1a\x44\x80\xb7\xad\x8a\xb0\xd4\x29\xbc\xb3\x1c\x1d\x49\x1c\xdd\x07\x73\x88\x08\xe8\x65\xab\x68\x86\x91\xe0\x04\xfb\xd2\xc9\x57\x74\x86\x8f\xe7\xa7\x17\xb7\x53\xe9\x31\x3c\x12\xb8\x60\xcb\x9a\x16\x9c\xfd\x8f\x94\x20\xfe\x05\x77\xf9\x97\x79\xfc\x12\x6e\x27\x90\x6a\x16\x87\x60\x35\x55\xa3\xc2\xc7\x18\xb3\x86\xb3\x17\x67\x97\xc7\xe3\xb3\x89\x78\x75\x7c\x36\x19\x5f\x7f\xd5\x3d\x44\x7f\x59\x20\xe9\x75\x8c\x71\x52\x46\x62\xdc\x1f\x95\x01\x6c\x98\x0c\xd4\x98\xb0\x97\x25\x2e\x79\xe2\x08\x34\x18\xbb\x1d\x0f\x1d\x2b\xf2\xc3\xd5\x32\x34\xc4\x38\xd8\x9d\x20\x57\x5d\xab\xaf\x64\x1d\x5c\x0c\x9d\xc9\x19\xba\x91\x9d\x5e\x5e\x40\x55\x4b\xc3\xe9\xff\x19\x8d\xfc\x20\x83\x5f\xd6\x0a\xf6\xe5\xee\xaa\x95\x1f\x2f\x21\x66\x22\x8c\xe4\xb6\x1f\x6c\x67\x41\x57\x2c\xb0\xb1\x12\xfc\x6c\x11\x6c\x91\xbb\xca\x95\xf7\xac\xff\xb8\xbd\x9c\x8e\x31\x70\xc0\x54\xfc\x38\xfb\xb8\x0e\x1f\x10\xb0\x72\xfe\xa8\x3d\x4c\x99\x18\xa0\xd5\xe7\x99\x6d\x4d\x34\xf2\xab\xc5\x80\x0b\xa3\xc4\x0b\xaa\xa9\x69\x84\x96\x9a\xd6\xbd\xe2\x29\x91\xb9\xd6\xa6\x1c\xca\x71\x59\xa0\x7a\x46\x15\x81\x01\xd7\xd5\xb6\xba\xdb\xf3\x71\x45\x6a\x5e\xdc\xc0\xd7\xf7\x71\x7a\xf9\x11\x82\x99\x7c\xbc\xbe\x3d\x9b\xdc\x7c\x7c\x7b\x7a\xd6\xbd\x12\x19\x86\xb9\xbb\x4e\x72\x09\xa4\x9a\x9d\x5d\x9d\x8d\x2f\xb6\xfa\xc0\xd6\xa6\x46\xc3\xc4\xbf\xf3\x20\x8f\x42\x10\x3e\x88\x6d\xe2\x72\xe5\xdf\xad\x73\xcc\x30\x15\x34\x7f\xa3\x24\x1c\xb2\x8d\xca\xc0\x34\x25\x1f\x8c\xc7\x8d\xae\xf3\x8d\xd7\x55\x44\xad\x5a\x3c\x00\x41\x88\xd1\xbd\x93\xee\x55\xcb\x1f\x57\xe1\x9e\x6d\x8f\x17\x78\xa3\x3c\xfe\xc4\x23\x76\x36\x7e\x33\x39\x63\x57\xd7\x97\xef\x4f\x4f\x26\xd7\x62\xfc\xf8\xfb\xc4\x7a\x84\x27\xb3\xeb\x8b\xfb\x2e\x15\x42\xd2\xaa\xf1\xde\x5c\x0b\xf6\xd7\xdb\x9b\x3a\x26\x76\xb6\x54\x1d\x9c\x58\x3b\xeb\xb3\xf0\x52\xd1\x19\xd4\x0c\x49\x9b\x56\xcd\x65\x9d\x11\xe1\xf9\xa4\x1c\x4b\x21\x96\xb6\x0a\xa2\xfd\x6f\xf9\x68\x84\x13\x8c\xf5\xc0\x4c\x64\xd6\x0b\xf3\xc6\x0c\xd8\x3a\xdf\xd5\x23\xfd\xec\x65\x56\x7e\x4a\x64\xae\xb5\x89\xb6\x23\x5b\xfd\xdd\x56\xe3\xae\xd2\x7d\x50\x6d\x8d\x9e\x5b\x95\x83\x8b\xfd\xe3\xeb\xc9\xc9\xe4\x62\x7a\x3a\x3e\xc3\xba\x0a\xd9\xcd\xf7\x37\x67\x97\xef\x46\x27\xd7\xe2\x0b\x19\x95\x47\x75\x0c\x62\x8f\x66\x2a\xd1\x8f\x18\x6f\x13\x2f\x95\x41\xc4\xc4\x47\x05\x36\x0d\x90\xa8\x45\x3c\x5a\xf2\x1c\x4c\x69\xc4\xbf\x59\xdd\xdd\x71\x6d\x56\xc3\x84\x46\xbc\x75\xaa\xb0\x84\x8c\x91\xa8\x11\xc5\xc1\x1a\xc6\xc1\x5a\xf8\x81\x94\xfe\xe1\x59\x03\x75\x0b\x4a\x74\x08\xc7\x80\x6a\x30\x55\xa8\xf0\x94\xd5\x9d\xc5\x96\x35\x50\x4f\xcc\xd6\xb9\xb7\xba\x66\xd4\x76\x91\xcb\xd5\xc8\xbf\x1b\x2d\x21\x12\x09\x56\x50\x79\x27\x77\x50\x8b\xd8\xed\xca\x0d\xa0\x97\xfc\x10\x2b\x9a\x75\x21\xfc\x35\xf3\x23\xf8\x43\x06\xc5\x96\x5a\x50\x64\xa5\x62\x48\xae\x1e\x88\x1e\x98\xad\xb2\x30\x9e\x1f\xbd\x7c\x59\x0b\x75\x61\x71\x54\xf9\x67\xdf\xff\xb3\xef\xff\xe1\xfb\x3e\x7d\x46\x80\x50\x0a\x78\xe2\x21\x26\xd3\x07\xe8\xe6\xff\x12\xb3\xe7\xf4\xbb\x4b\x0c\xd8\xfe\x1d\xfb\x6e\x32\x16\x4b\x4e\x15\xbc\x7d\x2c\x56\x18\x30\x61\x8a\x2d\x62\x52\xe4\x0c\xb6\x4e\x16\xb3\xf7\x70\x12\xc8\xda\x29\xc7\xc7\x5a\x8c\xfa\x7b\x36\x4a\xbb\x31\x77\x96\x73\x44\xd2\x7a\xde\x24\x98\xdb\x22\xb2\x28\xef\x8a\xac\xb1\xf4\x25\x61\x32\x95\x74\x45\xa3\x0e\x99\x48\x38\xda\xcb\xb8\x23\x48\x16\x5e\x24\x3e\x47\xe9\x2a\x4b\x44\x62\x2a\xeb\x8a\xa8\xb9\xf2\xb5\x47\xa3\x2f\xe7\x8a\x44\x9e\x11\xb5\x9d\x0e\x91\x80\x59\xb3\x71\xc5\x69\x3e\x0c\xa2\x40\xa5\x70\x72\x47\xab\x5d\x8b\x50\x80\x5a\x31\xe9\x89\xd1\x70\x38\xe1\x00\xd6\x9a\x5b\x5f\xd4\xed\xc7\x11\x2e\x88\x6d\x38\x39\xa3\x6d\x39\x8b\xa0\x81\xec\x66\xe0\x8c\xad\x71\x08\x41\x80\xa4\x2d\xd7\x0b\x89\x1a\xdb\x6a\x27\x20\x23\x2b\xc3\x09\x12\x0f\x57\x84\xcd\xdd\x3b\xa5\xb6\x4c\x25\xe9\x68\xe4\xa5\xd5\x48\x25\x14\x18\xdd\x87\xde\x9c\xbd\x9d\x8c\xa7\xb7\xd7\x13\x3b\x33\x13\x02\x07\x32\x3a\xb9\x0f\xea\x01\xce\x9e\x81\x03\xb6\x07\x7b\x5b\x9c\x76\x62\xba\xcc\x07\xc8\x06\x45\x10\xab\xa3\x27\x4b\x76\x6f\x82\x5d\xd4\x7d\x9d\x67\xf7\xa5\x84\x86\x9a\x2e\x35\x80\xe4\xbb\xeb\x65\x7f\x19\xb5\x7c\x7d\xcc\xd8\xfd\x0d\x93\x78\x90\x11\xaa\x08\x4c\xca\x10\x0e\x0e\xce\xc1\x3c\x10\x4d\x0c\x46\x20\xe9\xe5\xf4\xf2\xa5\x8a\xb4\x8a\x87\x9f\x95\x5d\x1d\x5e\xa9\x2c\x78\x15\x95\x0c\xdd\xf3\x2a\xaf\xd0\x7a\x80\x32\xe5\x20\x0a\xbe\xa1\xeb\xe0\x7e\xe0\x9f\xf7\x7c\x94\x3e\x07\xaf\xbc\x72\xa7\xda\x66\xa4\xb7\x81\xaf\x8c\x4c\x3a\x0f\xf2\x45\x71\x87\x16\x79\xb3\xfb\x11\xff\x25\xe1\x69\x00\xa6\x8e\x5e\xf8\x52\x99\xf4\xdd\xc7\xf1\x9d\x97\x6a\xd8\xfc\xff\x2f\x4f\x14\xd2\xcc\x8a\x5e\xd1\xf0\xd9\x22\x16\xfb\x36\x76\xbe\x1a\xa1\x95\xa0\xc5\x29\xd1\x9f\xf5\x3b\x50\xfd\x92\x7b\x36\x78\xdf\xd4\xed\x3b\xbb\xbf\x7a\x43\x09\xba\x74\x74\xf7\xfb\x41\x66\x41\xfe\x08\x67\x7b\xe2\x8f\xa2\x9a\x84\xcb\x24\x06\xf2\x04\xfe\xc7\xfa\x05\x4c\x26\x97\x0e\x3f\x5a\xd9\x4b\x0e\x2d\xc6\x45\x4f\xb1\xeb\xb2\xc1\xd9\x20\x73\x91\x43\x98\xc5\x34\xd4\x64\xa9\x4b\x2f\x51\xbb\xca\x6a\xfc\x75\xb2\x85\x20\xf3\xa1\x23\x95\x0e\xed\xd5\x86\xa2\x74\xe2\xca\xd8\xc3\xeb\x8f\xe5\xa5\xba\xf8\x59\xed\x84\xe0\x37\xdc\xb1\x3f\x7c\xbd\x7e\xfd\x35\x3e\xb2\xea\x78\x3b\x93\x47\xd6\x3c\x5e\xef\xf6\x3a\x51\xb7\xd2\xd2\x25\x5a\x1a\x38\xf5\xb7\x6c\x82\xdc\xfc\x98\xca\xcb\x56\x5e\x1b\x35\x59\x2a\x9e\x35\xeb\xa3\x8f\xe9\xc8\xe8\x72\x64\xc4\xff\x6e\x41\x9b\x74\x74\x49\x45\x3a\x5f\xf7\xd5\xf8\xfe\x9e\x63\x28\xe4\xb2\x23\xe2\x20\xa9\x3a\x6a\xf7\xc7\xec\xc6\x8c\x8c\xb9\x76\xcc\xd6\x09\xa9\x95\xd6\x4d\x62\x77\x73\x6c\x92\x91\xe5\xc8\x5c\x14\x74\x87\x8d\x96\x72\x35\x9f\x0d\x8b\x41\x6b\xf7\x82\x1d\xea\x02\x03\xf9\x55\xd3\xc2\xc5\xe4\x9f\x1f\xad\xa7\x39\xbb\xc2\x8e\x98\xda\xee\x06\xd6\x62\x9a\x8f\x2c\x91\xba\xb1\x74\xc5\x5f\x9e\xdf\x03\x6f\x9b\xe1\xb3\xab\x98\x2b\x0e\xed\x11\x2a\x48\x20\x7b\x48\xf4\x63\xda\x53\x07\xcd\x39\x65\x5d\xa6\x7c\x44\x54\xc3\x81\xaf\xb3\x26\xb5\x93\x43\xe4\x6f\xe5\x45\x63\x57\xd8\x01\x53\x12\xab\x61\x25\x6b\x1f\x78\xd6\xef\xb7\xf6\x87\x16\xa0\x07\xe1\xee\xa0\x15\x78\xc5\x70\xfb\xe5\xba\xbe\x80\x9b\xec\x34\x27\xca\x6e\x2d\xe0\x2a\x1b\xbd\x1c\xaa\x20\x0a\xd5\xe0\x7c\x7a\x71\x32\xf9\x97\x2d\x1c\x3b\x1e\x74\x84\xca\x73\x8d\x47\x0f\x41\x1a\x47\xb0\xa3\x1f\x3d\x78\x69\x80\x47\x9e\x78\x15\xd5\x0d\x90\xc0\x82\x8c\x2f\x43\x0f\x97\xda\x35\xf9\xfa\x90\xcb\x90\x17\xd0\xe2\x20\xbc\x3f\x63\xba\x2e\xbd\x9c\xcb\x76\xe5\x4f\xa6\x9b\x37\x2c\x00\x75\x15\x74\xc5\x52\xbb\xae\xeb\x5e\x7c\x1a\xcb\x38\x20\xc8\x47\xf5\x83\x76\x36\xb9\x78\xff\xf1\xfd\xf8\xba\xf9\xc7\xfb\xf1\xd9\xad\x4d\x05\x39\xf0\x72\x42\x0c\xfb\x3c\x8c\x3c\x59\x5d\xe9\xc0\x7a\xe5\xfa\xf2\x6c\x62\xb5\x75\xa7\xb0\x70\xc2\x27\x77\x23\xc0\x10\x77\x24\xd6\xa0\x8c\xe5\x9c\x90\x74\x0f\x56\xf6\xe6\x62\x56\x2a\xec\x46\xa0\x93\xee\xdb\x97\x91\xf8\x8a\x7c\xb7\xe9\xc4\xab\x07\xe2\xed\x6e\x29\xd7\x5b\xa4\xfe\x4d\x65\xe5\x86\x57\xf9\xfe\xee\xad\x77\xed\x46\x20\x5d\xf7\xf5\x2a\xb8\x1b\x76\x1b\xad\x9b\xc4\x7a\xff\xfb\x88\x9d\xce\x6e\x85\x67\x57\xb8\x0f\x26\x8b\x69\xab\x95\xd8\x51\x66\x75\xc6\x47\x69\x03\x7d\x29\x37\x14\x96\x3a\xf7\xd2\x36\xb7\xf2\x7b\xdf\x24\x73\x91\xd3\xf1\x59\xd9\x60\xb0\x66\xe1\x82\x8f\xb2\xa3\x19\x6c\x3f\x03\x79\x98\x29\x62\x5b\xa9\xc9\x52\x65\xa6\x8e\xb6\xab\xaa\x4e\x08\x36\x45\xc9\x78\x8a\x68\xc0\xf8\x21\x6e\xcc\x5c\x31\x0f\x15\x43\xc4\x95\x9d\x3b\xee\xbe\x71\x44\xe8\x8c\x9c\xb1\x0e\x12\x4b\xc4\x8d\x99\x03\xe6\x8d\x8b\x77\x69\x7a\x60\xb7\x10\xb4\x2b\xec\x80\x69\xa8\x5b\x56\x07\x4e\x0e\x68\x8d\xfb\x3c\x0b\x8c\x96\xe5\x1d\x91\xf5\xdc\x1b\xd2\x98\x38\x62\xdc\x5a\x90\x11\xf6\x89\x04\x0e\xbd\xd0\xf5\xde\x85\xb8\x31\xa3\x63\x4e\x7c\x5d\xdc\x11\x69\xfa\x51\x1a\x8b\x95\x01\x48\x7e\x6c\x8d\x40\xa2\xe2\xcb\x7c\x12\x8f\x8a\x08\x7e\x58\x7c\x6d\xbb\x97\xec\x5a\x1b\xf4\x78\x1b\x30\x3c\xc0\x81\x3e\x0e\x0f\x3d\xdd\x7c\xd9\xff\x30\xa9\x9e\xb3\x83\xf2\xef\x4d\x0d\xd7\x76\xda\x4d\xe4\x8e\x61\x98\xbb\xeb\xd4\x0c\x64\x01\xdf\x02\x34\x09\x58\xba\x58\xb7\xbc\x25\x93\x9e\x18\x7b\x47\x98\x70\x65\xd7\x17\xf7\x90\x11\x26\x86\x60\xed\xac\x8f\xc1\x5f\x00\xbf\xef\xf3\xf1\xbf\x46\xe5\xd7\x3a\x6a\x0f\x48\x60\xf1\xc1\xef\x69\xb8\xfa\xbd\x69\xe3\xda\x6a\x83\x7a\x7c\xeb\xbd\x90\x8d\xd2\x06\xf6\x1b\xee\x94\x65\xe3\x37\x6c\xdb\x4f\xfe\xac\xbf\xae\xfa\xa3\xf4\xcc\xe9\x35\xac\x24\x27\xd7\xd7\x97\xd7\x50\x5d\xe3\x29\xe4\xe2\x10\x75\x84\xbe\xce\x10\xf3\xf8\xca\xcb\x17\x9f\x3f\x8b\xba\x11\xbf\x27\x69\x6a\x08\xcb\xde\x93\x9b\x3d\x6a\x2f\xc2\xa0\xcb\x58\x53\x99\x10\xce\xd6\xd6\xa3\xf1\x3d\x83\x8f\xb6\xba\x6e\xc4\x8f\x56\x8f\xd8\x9d\x13\x09\xed\x30\x48\xbf\x18\x94\xec\xc5\x89\x4c\x1c\x70\xc4\xca\xa1\x92\xfb\x5f\x0d\x83\xbd\x8b\x37\x45\x23\x68\x5a\x4c\xa2\xb1\xf4\xd2\x4f\x3c\x17\xfc\x67\x7c\x1d\x7d\x0b\x02\x5e\x43\xac\x4d\x6f\x9d\xec\xd7\x9c\x6c\x65\x00\x8e\x4e\xe8\x31\x45\x56\x10\xdd\xc7\xe9\x12\xb1\x60\xb6\x86\xad\x30\xf5\xbd\xd4\x19\x4a\x04\x55\xbf\x41\x3e\x8c\x3d\x7c\xc1\x20\x22\x4b\xf8\x2c\xb8\x87\x0c\xba\xf9\x82\xc1\x4e\x13\x33\x85\xc8\x4d\x27\x8b\x31\xe3\x5b\xa6\x8f\x23\xef\xc6\xa4\x17\x46\x18\x62\x71\xbb\xec\xaf\xb3\x9a\x9c\xc8\x6d\xb3\x6f\x4a\x1f\xdc\x8b\x97\x33\xe2\xea\x1c\xe0\x2e\xc8\x33\x14\x01\x75\xf2\x52\x56\x8d\x3d\x58\x5b\x36\xf6\x38\x17\x5e\x34\xe7\xe0\x75\xf5\x10\xf0\x47\xf4\x9c\xaa\x0c\xab\x66\x71\x11\xe5\x07\x30\x50\x7d\x52\x37\x95\x61\xb0\x0c\xc4\x13\x90\xbb\xe4\x4b\x70\xa4\xc2\x27\x32\x69\xbc\x39\x8d\xce\xee\x04\x51\x75\xad\x7f\x30\x92\xe1\x56\x72\x9f\x2e\x2d\x48\x2c\xa8\xf8\xd0\x1f\xb9\x5c\x59\x75\x21\xd1\x10\xd3\x64\x82\x81\x7e\xc9\xc3\x94\x6a\xc3\x4c\x4c\x90\xc9\x67\x9f\x80\x0d\xe6\xe5\x81\x03\x69\xb3\x50\x23\xb5\xbd\x54\xe5\x2a\xf8\x1d\x0f\x0d\xbd\xb4\x95\x88\x2c\x03\x66\x94\x4e\x19\x4d\x22\xb2\x0c\x48\x06\xa9\x7e\x63\xda\xc8\xa8\xe1\xf6\xc8\xa1\xc6\xd4\x8d\x84\x98\xc8\x30\xb3\x7b\xe4\x61\xe4\xab\xe3\xb7\xa5\xdb\xe4\x4b\x2f\x0c\xbc\xec\x90\xb1\x6b\x69\x2a\x0f\x0c\x36\xd8\x96\x0e\x96\x1d\xec\x21\x61\x8c\x2f\x7a\x62\x2d\xd6\x56\x9e\x95\x04\x72\xce\xc5\x99\x20\x33\xe4\x15\xfc\xe3\x28\xd6\xbb\x2d\x33\x4c\xe2\x59\x53\x85\x55\x6e\xa0\x62\x3b\x06\xd9\x44\xe1\xa7\x5c\xb7\x3c\x17\x6a\x7e\x1f\x17\x30\x88\x86\x3e\xcb\xc5\x50\x59\x5d\x45\xe1\xa7\xaa\x29\x85\xb0\x21\x07\x62\xa9\x8c\x4c\x03\xaa\xc8\xeb\x7a\x07\xd1\x43\xfc\xc9\x54\x87\x02\xc0\x77\x62\x1d\xfb\x00\x41\xcf\x20\xab\x68\xb6\x40\x28\xf7\x41\x2a\xd6\x5e\xf7\x45\x18\x02\x24\xc1\x0c\x06\x46\xe9\x9c\x1b\x2c\x13\x48\x4c\x2a\x96\x30\x0d\xac\xf0\x0a\x73\xcd\xc0\x1f\xdb\x88\x25\x36\x7a\x07\xfa\xb3\x36\xad\x6a\x93\xdc\x6b\x31\x4d\xad\x98\xba\x0d\x93\x94\x9e\x92\x22\x2d\x81\x3b\x4b\xe0\x23\xea\x42\x2e\x1d\xb2\x85\xf7\x9a\xa1\xb5\x16\xa8\xdd\xe2\xef\x1d\x84\xc6\x01\xb8\x2f\x47\x22\x7a\xcc\xc0\x05\x02\x60\x0e\x5b\x8f\x2e\xca\xbb\xe0\x40\x76\x96\xa5\xb7\x12\x3b\x8f\x4f\x10\xfd\xef\x71\x01\x09\xa3\x8d\xb3\xe2\x50\x7c\x09\x9a\x44\x11\x9f\x61\x90\x43\xbf\x58\x26\x98\xe0\x9d\xcf\x30\x81\x12\xf8\x13\xe3\x2a\x68\xd8\x44\x62\xa6\x7b\xc4\x27\x05\xe3\x52\x67\xb9\x17\xe0\x57\xf9\xb4\x95\xb5\x4f\x14\x84\x5a\x4a\x56\xd8\x93\xe3\x22\x9d\xa9\x3c\xe9\x0a\xd7\x0d\x3e\x12\xe8\x64\x5e\x37\x65\xc2\xa4\x5e\x4e\xf1\x2f\xf9\x72\x47\xe9\xf3\xbe\x24\x68\x84\xfa\x84\x09\x03\xc6\x5c\x30\x9b\xc1\x24\x91\x9a\xec\x7f\x1f\xa2\x09\x24\xfc\x3e\x62\xdd\xa7\x9f\x43\xf0\x74\xd0\x60\x26\x1a\xa0\x39\x12\x1f\xb1\xf2\x78\x35\xb6\x03\x6c\xcf\xc2\x01\x9f\x0f\x21\x5c\xf1\xa4\x1c\xa6\x8c\x99\x4c\x1e\xc9\xc4\xde\x08\xb7\x2c\x7e\x20\x46\x25\x08\x38\xf2\x7f\x58\xe0\xa4\xb3\x72\xc0\x7b\x2f\xb3\xd9\xaa\xd4\xa8\x4c\x46\x2d\xb3\x00\xd7\x51\xce\x19\x89\xf8\x5c\xa0\xab\xfb\xb8\x40\xa9\x46\xa1\xe7\xf0\xd1\x94\xb9\x6d\xac\xd1\x91\x78\xb9\x22\xc6\x2d\x3f\x66\x13\xc4\x9d\xc5\xba\xf7\xaf\x33\xfc\xdb\x02\x26\xb1\x72\xc5\xab\xfb\x4c\x31\xcf\xb2\xfa\x94\xeb\xd5\x65\x0b\xde\x9d\xaf\xb3\x26\x8d\x11\xb3\x1a\x58\x45\xcb\xfe\x2a\x37\x62\x72\x84\x25\xa8\x40\x67\xe8\x80\x3d\xf1\xd2\x8c\x33\xb1\x9c\xc7\xf3\xdb\xa8\x58\xde\x71\x39\x38\x9e\x46\x62\x05\x67\x85\xd6\x9e\x85\x03\x3e\xd1\x90\x81\xd8\x15\xfd\xca\xeb\x27\xe4\x16\xa0\x3a\xca\xf5\x42\x22\x6f\x0c\x4d\xe7\xcd\x56\x85\x1c\x30\xa8\x69\x5c\x74\x83\x43\x9c\x23\xc6\x49\x60\x3b\x31\x76\x17\xa5\xe1\x89\x9e\xe7\x65\x3c\xf0\x9c\x2f\x13\xdc\x81\xe0\x9a\xad\x48\x20\x76\x94\x19\x91\x75\x61\x3a\xa6\x38\x11\xdb\xdc\xf5\x49\x74\xc7\x56\xcb\xa6\x10\x1d\xc3\x63\x1a\x08\xcd\x7e\x0d\x12\x4b\xf1\x3a\x7a\x7b\xc9\x65\x60\xf6\x4a\x07\xbd\x50\x03\x29\x5d\x9e\x8a\x2b\x1a\xc0\x39\x13\xae\x23\xa1\x11\x43\x48\xba\x0a\x87\x4e\xdd\x20\x6c\xcb\x3b\x23\xcb\x17\x9e\xe8\x6a\x5e\x54\x65\xed\xbf\x5b\x31\x38\x00\x11\xb2\x32\xf6\x02\x6d\x05\x46\x71\x14\xae\x0c\x37\xa8\xfd\x39\xd2\xd1\x47\xfc\x11\x0f\xcf\xbb\x51\x6d\x53\xd2\xa5\x09\xd6\x3e\x44\xa0\x43\xeb\x6b\x68\x01\xdc\x99\x1b\xef\x4b\x08\x45\xe9\x78\x9a\xb9\xe5\xbb\x41\xe8\xe8\x5d\x24\xcb\x75\x03\xe6\xb2\xed\x88\x4b\x65\x53\xc6\x1d\x81\x34\x66\xb3\x97\xbe\x49\xef\x2e\xb9\xfb\x9a\xa9\xbb\x84\x83\x74\xf3\x7d\xb9\x86\x8c\x2e\x07\x32\x10\xc8\xde\x0a\x83\x8e\x5a\x65\x11\x47\x2d\x0a\x0f\x32\x42\xbc\x3f\xac\xb6\x04\xb5\x3b\x45\x39\xf2\x2c\xc4\x2e\xfc\x8e\x8b\xe9\x2a\x29\xb2\x05\x18\x01\x14\xb3\x19\xcf\x32\x3c\x7a\x35\xac\x48\x06\x65\xee\xa0\x93\x18\x1d\x2d\xc0\x35\xa8\x68\x52\x60\x17\xba\xa5\x1e\x1c\x88\x94\x5b\xd5\x8c\xe7\x40\x84\xa6\x09\x40\x65\x86\xd3\x83\x9d\x03\xee\x61\x8f\xb9\x2c\x34\xdb\x95\x40\xba\xee\x77\x86\x1c\xff\x56\xba\x58\x33\xa0\x63\x53\x33\x3e\x98\x5b\xe0\x2f\x55\x03\xf0\xd5\x6c\xd5\x96\x53\x3b\x0c\x26\x80\xae\xdb\x30\x0a\xec\x1a\xa5\xb4\x48\x16\x1c\xff\x01\x3f\xfa\x20\xa5\x73\xa2\xa3\x95\x73\x82\xe0\xf8\x5d\x9c\xe5\x91\xa1\x2d\x87\xfc\x96\x77\x2a\x74\x90\x3a\x70\x55\xa3\x27\x92\xe6\xaa\x10\x58\x97\x4f\x3e\xe2\x93\x4a\xf7\xa2\xd2\xbd\x1b\x66\x2f\xa6\x2e\x3a\x6c\xae\x2d\x15\xfb\x63\x39\x0d\x41\xb3\x59\x56\xb0\x03\x2b\x77\xbc\xca\x15\x43\x70\xef\xd3\xb5\xdd\xb8\xb9\xa3\xae\x4c\xbe\xb6\x8e\x0d\xc9\xf3\xa3\x7b\xfb\xec\x05\x84\x43\x1d\x61\x22\x11\xdd\x8c\xe5\xd6\xbc\xee\x2c\x1d\xf0\x63\x35\xb5\xce\x02\xc3\xcd\xe7\x83\x0a\x71\xd5\x71\xa3\x2b\xb4\xf5\x1a\xe7\x3e\x3a\x94\x00\xba\x6e\xd2\x94\x70\x23\x8d\xf3\x93\x7c\xa8\xfb\x47\xe2\x58\x5b\xd5\x4d\xaf\x64\xd9\x4f\x61\x2a\x33\x0a\x66\x95\x75\xd2\x60\x68\xde\x46\xe3\x22\x81\x3d\xf2\x94\xb3\x94\xff\xac\x2c\x0e\x92\x90\x7b\x19\x47\x4b\x2a\x6f\xee\x19\xcd\xb7\x9c\x98\xd8\x63\x54\xdb\xca\xe3\xb7\x90\x0d\xa0\xba\x4d\x91\x07\xf5\xef\xe5\x5f\xa6\xf5\x09\xb1\xb8\x0b\xae\xe3\xb3\x06\x63\x12\xa8\xee\xb2\x64\x44\x57\x9d\x36\xc8\x5a\x42\xb2\xac\xd2\xa2\x98\xf9\x81\xbc\x4d\x59\x7a\xf9\x6c\xd1\x29\xb9\xab\x18\x01\x47\x96\xc7\xcb\xba\x81\xfd\x4a\xde\xca\xbe\xe0\x87\xf3\x43\xf0\x52\xab\x5e\x7d\x05\x46\xec\xef\x4e\xa7\x98\xae\x44\xbe\x7e\xde\x92\x19\x64\xc1\xc5\x9a\xaa\x50\xff\xac\x4b\x83\xa3\xe5\xea\x50\xd0\x3d\xaf\xf8\xbc\xb9\x1e\x5f\x1c\x7f\xd7\x93\xdd\xff\xe9\xf3\x07\x1e\xc6\xc9\x73\x9c\x07\x9f\x57\x7f\xdd\x89\x8a\x9b\x2d\xbe\x32\x1c\xc6\xfc\xef\xa3\x39\xb5\x37\x2c\xb8\x07\x86\x96\xd2\x6c\x73\x16\x16\x3e\x2f\xcd\x85\x53\xfe\xef\x82\x67\xf9\x01\xc3\x2c\x4c\xea\xae\x42\x7a\x69\x08\xfe\x6c\x59\x84\x79\x20\x06\x2d\x96\x07\x4b\x53\x2c\xb0\x1d\x89\xb1\xd6\x53\x86\x7f\xb9\xd1\x02\xdc\x7a\x6f\xcf\xd9\xcb\x16\x77\xb1\x97\xfa\x78\x4f\x2d\x1a\xd8\x30\x8a\x19\x69\xed\x25\xf2\x7b\xb0\x9d\x91\xf7\x35\x29\x57\x16\x5b\xb8\x52\xd4\x4b\xb6\x29\xe3\x86\x40\x2e\x43\x5c\x70\x98\x4b\x12\xd0\x60\x56\x5d\x9b\x1b\x4b\x13\x29\x5d\x5e\x87\x4d\x91\x96\x8e\x2e\xa9\xab\x52\xdb\xc9\xe8\x72\xf0\xe4\xa4\x5b\xce\x06\x19\x5d\x0e\xe1\x6e\xcc\xaa\x8c\x3b\x82\x8e\xbb\xb1\x4e\x7a\x77\xc9\x9d\x77\x63\x16\x25\x1c\xa4\xd7\x37\xca\x16\xa2\xdb\xc9\x1d\xe4\x1a\xef\xe4\x74\x64\x8e\x72\xd4\xb6\xd9\x87\xc1\x26\x58\xbb\xae\x44\x62\x0d\x15\xcc\xe5\x84\x53\xa7\x93\xc6\xae\x61\xd8\x15\xd1\x72\x37\x42\xe8\x3a\x1a\x6f\xf3\x35\x54\x64\x29\x68\x86\x20\xf3\x4d\x33\x95\x6f\x1a\x57\x2e\x47\x42\xb3\x18\xb6\x28\x70\xc9\x27\x3a\x87\x5a\x8c\x26\x09\x47\x4b\x38\x79\xd1\xa5\x37\x81\x18\x9a\x3d\x59\x2f\xb3\xf3\xa6\x86\xca\x41\x8a\xe9\x96\x52\x43\x45\x95\x32\x83\xc1\x00\xfc\x20\xba\x04\xb5\x10\x12\x65\x65\xf6\xa6\x14\xdd\x05\x68\xb2\xf7\x79\xab\xb9\x7b\x81\x74\xdd\x5d\x6f\x35\xe9\x0c\xe8\xd8\x06\x38\xc2\xed\xc5\x8b\x8e\xb8\xd7\xe1\xac\x23\x17\x3a\xca\xde\x77\x95\x3d\x38\xd1\xd1\x56\xf7\x6d\xd7\xf0\xc3\x12\x98\xb1\x50\x0f\x0c\xb8\xab\xa2\x21\xd8\x2e\x42\x97\x3f\xe4\x0d\xe1\x30\x4c\x5d\x74\xb0\xb9\xd6\xb3\x81\x4d\xe3\xe3\x8e\xb4\xd7\xdd\x60\x4f\x6e\xee\xa8\xf7\x78\xd3\xb0\x57\xd9\x0e\x35\xa2\xbf\xe4\x72\x6b\x49\x47\x7e\xae\xc8\xab\x9b\x8c\xa6\x63\xc5\xfa\x39\x7a\x55\xb8\x37\xda\x90\x42\xe8\x3a\x0e\x71\xf3\xd3\x8f\x19\x01\x73\x36\x4b\x03\x8c\xbb\x73\x54\xeb\xe3\xb5\xc7\xc6\x81\x8b\x52\xd8\x1e\x93\x8c\xab\xc3\x3c\x34\x7c\x2c\xa3\xa7\x54\x67\x9a\x75\x07\x1c\x3d\x34\x17\x1e\xae\x08\x61\x7f\x55\x0d\x14\x42\xd2\x56\xf0\x97\x38\xc2\xe7\xa5\x89\xba\x2d\x6a\x77\xbe\xfd\x34\xa9\xaa\xa9\x2e\x90\x06\xba\x83\x05\x19\x1f\x9c\x0a\xd4\x9c\x43\xe0\x4c\x40\x46\xe2\x40\xf3\x7f\xa8\x0b\x15\xfb\xbd\x13\xa6\x03\x27\x27\xb4\x82\x1d\xda\xa5\xb2\x7b\xee\xe5\x85\xd8\x90\x67\xb1\xdc\x9c\xcb\x44\x22\x0b\xef\xa1\x51\x65\x91\x8f\xa7\xf7\x45\x26\x4b\xab\x42\x86\xf1\x61\x87\xa2\x88\xfa\xe2\xbe\x4f\xb2\x87\x90\x63\xd0\x39\x7f\x83\x58\x12\x5e\xdd\x96\x52\x3b\x8f\x92\xe6\xab\x5d\xcb\x73\xd7\x1c\x2a\x56\x7c\x86\x32\x86\x9f\x80\xa5\x95\x7f\x5f\xfb\x60\x6b\x60\x2c\xf6\xa5\x7b\x10\xb9\x27\xfd\xa1\xdb\xf5\xdb\x50\xee\x59\x7c\xaf\x7a\x69\xe9\xa1\x5d\x08\x07\xaf\x9c\x9d\x63\xa0\xd4\xd0\x27\x15\xab\x4d\xde\xe8\x7e\xfd\x97\xbf\x9e\x1f\xb0\xd7\xaf\xbe\xfe\x16\xfe\x79\x67\x38\x02\xb5\x2f\x49\x41\x03\xb7\xc4\x70\xc3\x1a\x8a\x4d\x17\x06\x7c\xc9\xc5\x78\x58\xc5\xbe\x30\xa1\xb1\x2d\x69\x8f\x26\x56\xf1\x08\xc2\x38\x05\x87\x55\xb1\xd1\x4e\x0a\xbd\x7b\x7b\x17\x39\x55\xee\xd2\x4b\xca\x4b\x2a\x0c\x58\xa1\xdc\xc8\x50\x37\x99\xc3\xbb\x3c\x72\xc6\x69\x33\x49\xf9\x43\x10\x0b\x85\xd1\x53\x25\x93\x51\x71\x64\x11\x43\xe7\xdc\xa1\x28\xaa\xbe\x32\xd3\x93\x72\x31\xf1\xee\xc1\x6f\x08\xf8\x1b\x57\x11\xf6\x25\x09\x68\x66\x05\x64\xbc\x42\x21\xe0\xd8\x64\x73\x23\x6e\x53\x86\x80\x00\x8f\x10\xe5\x57\x55\x0b\xa9\x6c\xf8\x16\xbb\x4b\x10\xa5\x67\x47\x1d\xc2\xea\x04\x04\xde\x8f\x11\xb8\x33\x33\x2f\x07\x2f\xe7\x5c\x90\x07\x21\xf7\xcb\xd8\x23\x10\xdd\x03\x22\x60\xdf\xca\xc8\x6d\x68\x5f\x81\x31\x92\x0e\xaa\xc8\x5c\x19\x36\xb8\xf7\x20\xca\x21\x0d\xf6\x47\x98\x41\xe6\xc1\x03\xc7\xaa\x37\x75\xf6\xbd\x4a\x27\xd7\x4a\x15\x09\x4a\x85\x3d\x79\x9e\xb1\x19\x04\x53\xcc\x8a\x25\xf3\x63\x9e\xad\x0d\xa6\x30\xd9\x35\x5b\xf2\xdc\xf3\x3d\xd3\x8d\xfa\x60\x8c\xed\x75\x29\x96\x49\x23\xb4\x13\xd4\x21\x17\x75\x0e\x63\x84\x0c\x66\xa4\x87\x4b\x29\x6b\x8d\x68\x72\xf1\xfe\xf4\xfa\xf2\xe2\x7c\x72\x31\x65\xef\xc7\xd7\xa7\xe3\x37\x67\x13\x86\x69\x33\xf4\x76\x34\x56\x65\x7a\x21\xb8\xd1\x7f\x5f\x5d\xe4\xf6\x72\xab\x40\xf2\x7a\x59\x2d\x24\xf6\xfc\xe5\x87\x52\x05\x5a\x97\x13\x5e\xb5\xbe\x55\xc6\x50\x99\x9a\x45\xb2\x24\x8e\x32\xc3\xb5\x74\x4f\x6e\x54\xd4\xdf\x4d\xa7\x57\x60\xb3\xfc\xcb\xaa\x8c\x55\x0a\x66\xa2\xa5\x94\x2e\x94\xb6\xa5\xa9\xa8\xfa\x1c\xb2\xb8\xb0\x70\xc4\x37\xd8\x11\xcb\x50\x6c\x7b\xe9\x41\x3b\x60\x71\xe0\x40\x45\x27\x54\x54\x09\xa5\xe4\x6a\xb2\x0b\x8b\x9e\x9e\x2a\xb9\x79\x1c\x03\xa1\x81\xb8\xfd\x99\x8e\x13\x0f\x17\x84\x3b\x3e\xcc\xd9\xa1\x24\x9a\xb6\xfb\x3b\xca\xd9\xb5\x38\x67\xbd\xfb\x9e\xaa\xd0\x55\xdf\x81\xc4\xfd\x68\xdf\xfb\x18\x67\xcf\xd2\xfb\xd4\xca\xbe\x0f\x71\x9e\x02\x02\xa1\x7e\x1e\x58\x99\x9e\x19\x7d\x49\x3c\x75\x98\xc8\x1e\xbd\x4c\x05\xdd\xca\x4d\xba\xd1\x8a\xdb\xe3\x82\x3d\x95\x9c\x0a\x64\xc0\x57\x5c\x1d\xe9\x71\x74\x90\x13\xe5\xce\x4a\x67\xad\x75\xb4\x0a\xb1\xdb\x3b\xd2\x3b\x56\xd8\x16\x73\xc5\xa1\x14\xb2\xc9\x5d\x44\x28\xe9\x8a\x26\x57\x41\xc6\x2c\x62\x89\x12\x4a\xba\xa2\xe9\x08\x91\xd6\x41\xed\x2c\xb5\xe5\x32\xf7\xd0\x2a\x5a\xa9\x3b\x23\x22\x56\xbf\xd5\xfc\x4d\x7e\x9f\x04\xa4\x74\x36\xae\x38\xdb\xed\xdf\xec\x62\xf3\xf5\x61\x45\xc5\x5b\x45\xa1\xc6\x4f\x6b\xfd\x65\x99\x36\xcb\xf6\x25\x9d\xd1\xc8\x7d\xad\x13\x1c\x53\x51\x22\x1e\x08\xb7\x89\xb3\x5d\x75\xd2\x05\x8b\x1c\x4a\x23\x92\x38\xf4\x46\x27\x8d\xd1\xad\x07\x56\x0a\x03\x47\x6c\x65\xba\x0a\xb0\x0b\x59\xfa\x65\xcf\xb5\xc4\xd5\x55\xd8\x11\x53\xff\x4f\xd3\x89\x93\x23\xda\xce\x70\xc2\x5d\xe4\x8e\x72\x37\x17\x69\xeb\xe1\xd1\xce\x0c\xa7\x27\xb7\x81\x51\xf7\x06\x3a\x00\xb6\x36\x2b\x3c\x32\x3e\x5b\x26\x44\x8c\x73\x19\xb4\x0c\x6e\x8e\xc2\x60\x26\xef\x6f\xb2\x42\x7c\x7e\x10\x75\xbc\x03\x9a\x65\x59\x47\x44\xe5\x20\x80\x19\xf1\xe4\xb5\x9b\x3c\xc3\x17\x3a\xbf\x15\xcb\x2f\x99\xbb\xd2\x12\x22\x95\x99\x23\x66\x8c\x5a\x0b\xe1\x85\x2d\x61\xb5\xd0\x3b\x4a\x56\xea\x94\x37\x17\x52\x47\xb8\xcc\xb0\x6e\x45\x2b\x0e\x44\x74\x82\x1f\x2c\x13\x82\x94\xc3\xed\x60\x07\x10\x1d\x31\x51\xa6\xe8\x7e\xd9\xc2\xc3\xcd\x2a\xa4\x03\xef\x10\xaa\xa5\x26\x4a\x85\x78\xc1\xcd\xf5\xa5\x31\xd0\xaf\x5d\x21\x22\x06\x08\xbb\x6d\xa9\x76\x3b\xa9\xa3\x3c\xe5\x0f\x6e\x29\x72\x8b\x9a\x2a\x95\xa7\x10\xbe\xdb\x7e\x47\x6d\x2a\x40\x95\x9d\xc6\x70\xfc\x81\x4b\x80\xea\x1b\x81\x23\x0f\x88\x6f\xde\x05\xc3\xae\x2c\x11\x91\xd8\x81\xf9\xdb\xbb\x75\xeb\xd9\xc5\xbe\xb8\x23\xae\x72\x59\x6e\x89\x63\x9b\xbc\xa7\x5c\xac\x66\xa2\xf0\x8d\x32\x43\x20\xb0\xed\x24\xb6\x85\xc9\x98\x22\x6f\xd9\x7f\x17\x4d\x67\x43\xc6\x89\xdf\x27\x4e\x8d\x36\xed\xa6\xa1\x26\x4b\xcd\xe2\xf0\xa1\xf2\x25\xa2\x7c\x3d\xdd\x05\x89\x58\x30\x29\x40\xff\x96\xa2\xb3\x21\xe3\x84\x23\xa8\x8d\xd5\x9f\x65\x0a\x02\x07\x0e\xce\xe8\xfa\x56\x23\x99\x0f\x11\x29\x04\xfa\xc7\x43\xc5\x98\x7e\x22\x69\x59\x96\x88\xe8\xd7\x20\x49\x36\x5a\xa5\x03\x87\xb1\x04\x4d\xfa\x11\xbb\x88\x65\x34\x1f\x4c\xbf\xd7\x69\xf6\x68\x57\x88\x8a\x01\xc2\xd3\xf8\x60\x80\xc1\x1e\x3d\x59\xc5\xc8\x32\x5b\x45\x33\xf6\x73\x7c\x87\xf9\x7a\x04\x29\xda\xb7\x3d\x87\xea\x87\xd8\x01\x99\x3e\xfa\xd3\x50\x6c\xa9\x7a\xd8\xf5\xa3\x7e\x7d\xe6\x17\x3e\x2b\xa4\x9f\x78\xea\x3d\xae\x03\x00\xcd\xe2\x28\x17\xab\xf8\x51\xbe\x4a\x20\xfd\x70\x8e\x97\x69\xeb\xfe\xf1\xf2\xe7\x4c\x6c\x16\xef\x56\x65\x82\x26\x3d\xc2\xa1\xf9\x13\x34\x4b\x30\x9a\x5b\x63\x7b\x2b\x6f\xf3\x3d\xb9\x8f\x8c\xef\xd9\x27\xbe\x7a\x29\x93\x30\x26\x5e\x90\x66\x2a\x97\x18\x8b\x67\x18\x14\xdc\xaf\xa7\x72\x62\x11\xf7\x52\x31\x45\x40\x2b\x7f\xbf\x0c\x6f\x22\xf1\xd5\xf0\x5c\xb4\xb4\x41\xf7\xbd\x23\xe8\x55\x3b\x59\x03\x1c\x49\x2d\x5d\x51\x3a\x9e\x6a\x78\xae\x38\x42\xef\x90\x15\xc5\xfe\x9f\x0f\xc5\xab\x57\xdf\x70\x99\x37\xf3\x40\x0c\xea\x39\x0b\x72\xbc\xe6\x43\x47\xc3\xa9\xe8\x4c\xa6\x54\xec\xbb\x11\xe2\xa4\xe3\x55\x2a\x36\x8f\x69\xbe\xda\x80\x71\x17\xc7\x21\xf7\x0c\x41\x0b\x9d\x78\x0c\x89\xb0\xec\xb7\x59\x9e\x8a\x11\xd0\x90\x32\xa9\x17\xaf\x21\x11\xcb\xfc\x55\xdb\x0d\x59\x92\x53\x7a\xcd\x50\x22\xac\xf5\x7b\x3b\x3e\x3d\x9b\x9c\x68\xb1\x6d\xbe\xb6\xe7\x3b\x19\x4f\x6f\xaf\x27\xec\xed\xd9\xf8\x9d\xde\x8e\x54\x43\x65\x2f\x05\x0d\x94\xd9\x3d\xcf\x67\x8b\xc6\x2a\x2c\xb3\xbb\xa6\x24\x97\x77\x46\x26\x6f\x04\x32\xcb\x15\x30\xb1\xb4\x33\x2a\xfe\x20\xe6\x48\x57\x50\xe6\xc2\xce\x98\xe2\x74\x3e\x92\xd6\x63\x32\x41\xbe\x34\xba\xb8\x4c\xe7\xd7\xe2\xe7\x34\x56\x8e\x2c\xca\x1b\xcc\xa9\x95\x07\x90\xd0\x47\x3b\xd7\xfa\x36\x15\x75\xc6\x23\xdd\x56\x0e\x2d\xb6\xb4\x84\x92\xce\x68\x9a\x21\x1a\x1c\x3f\x62\x3b\x26\xee\x18\xe1\x7e\xa5\xa5\xff\xe0\xbd\xcb\x60\x7d\x74\x20\x29\xfd\xb4\xac\xd7\x9d\xdd\xe5\x9e\x2b\x1b\x2a\x4e\x31\x31\xaa\x6c\x80\xb8\x90\xbf\x57\x87\x2d\x10\x60\xf2\x63\xe9\xa8\x61\x3e\xfb\x75\x67\xe4\x8e\xb5\x5c\x68\x1f\x40\xfc\x38\xe5\x43\x23\x73\x61\xf2\xe8\x21\x48\xe3\x08\x2e\x36\x2a\x5b\x33\xc3\x61\xe0\x80\x9c\x1d\xb4\x51\x77\x22\xe6\x7b\x84\x2e\x72\x07\xb9\xd2\x8d\x2d\xc6\x78\x33\xf6\xcd\x6b\x2c\x65\x8f\x42\xd9\x37\xc3\x7d\xa0\xfc\xf9\x36\xf4\x20\x1e\x87\xf2\x6c\xf7\xf5\xeb\x3b\x4a\xd1\xfe\x78\xa4\x71\xb6\x0b\x9c\xed\x92\x54\x34\xfa\x2b\x9e\x6d\x02\x7b\xde\x70\x07\x8a\x39\x6e\xf1\xf0\x26\x8c\x67\x5e\x18\xae\x0e\x44\xb7\xfa\x24\x76\xf6\xa0\x09\x9a\x92\x03\x15\xff\x25\x40\x0f\x98\x5c\xf9\x9b\x25\x9e\x68\x73\x93\xd9\xea\xa0\xbc\xed\x35\x8a\x21\x0e\xae\x2f\x83\xf6\xbd\xf0\xa5\x8f\x66\x92\xc6\xe8\x72\x07\x66\x73\x71\x74\x1f\xa8\x04\xb4\x7a\x9f\x46\x47\x2e\x2e\x28\xe1\x5c\x01\xf2\x3a\xc3\xd1\x54\x9d\xad\x0d\xb6\xee\xb2\x44\x44\xcb\x60\x9e\x7a\xae\x90\x6c\x0b\x13\x31\x89\x9e\x2d\x47\x19\x99\xd9\xad\xe4\x2d\x5b\xa3\x03\x92\x65\x59\x6b\x44\xef\x26\xd3\xe9\xe9\xc5\x3b\x76\x33\x1d\x5f\x4f\x0d\x5b\x3b\x2d\x9d\xbd\xa4\xb3\xcb\x37\xe3\x33\x76\x79\x35\x3d\xbd\xbc\x30\x38\xec\x69\xe9\xec\x25\x29\x1b\x84\xcb\x71\x15\x6b\xcc\xf4\x59\x77\x91\x93\xe5\x62\x40\x57\xb9\xac\x54\x2e\xde\x62\x52\xfb\xc4\x73\xb1\xfe\x9a\x71\x1b\x24\xf6\x0c\xe8\xd8\x92\x24\xdb\x55\xa0\xcc\x9d\xc8\x20\x6b\x58\xdb\x95\x1f\x1e\x1a\x8c\x04\x3b\xe9\xc9\x92\xd5\xbe\xdb\x90\xb0\x86\x56\x8f\xce\xfc\xc8\xc8\x79\xcd\x69\xa1\x8a\xf1\xc0\x7e\xdb\x43\x70\xd5\x27\x40\x40\xaf\x1d\x3c\xba\xd8\x05\x28\x8b\xee\xb9\x1f\xe1\xe4\x3a\x81\x55\xce\xd3\xf4\x94\x3d\x48\x26\xd7\x06\x18\xdd\xf5\x77\x8b\xea\xc9\xcd\x1d\xf5\x90\x71\x4a\x87\x65\xde\x43\xa7\xae\x30\x89\xce\xd9\xca\x76\x29\x8a\xac\xaf\xce\x5d\xd2\x62\x64\xb1\x29\x4a\xc6\x23\xed\x3e\xb3\x75\x64\x7b\xb0\xf9\xcc\x82\x3c\x4e\x03\xf1\xd5\x0a\xee\xfa\x63\x0a\x17\x16\xfd\xf0\x55\x8c\x57\x4c\x7f\x6f\x4a\x28\x49\x46\xd3\x1a\x94\x14\xfb\x95\xcb\xb8\xe1\xc8\xcd\x0d\x35\xcd\x2d\x98\x52\x94\x8c\x47\x05\x53\xda\x64\xca\xec\x3e\x03\xcb\xd2\x64\x54\xcd\x71\x2f\xa3\x8f\xa0\xf6\x0c\x1c\xb0\xa9\x60\xcc\xd2\xff\xd6\xa5\x25\x29\x2c\xfa\xe2\x83\x41\x76\x1d\x87\xf9\x0d\xfe\x82\xc1\x34\x6a\x06\xe2\x50\x43\x6d\xf5\xb7\xe3\xf4\xbb\x1f\xe1\x3b\xac\x93\x6d\xaf\xe9\x2f\xa1\xb2\x76\x82\x6a\xef\xb5\xf8\x04\x55\xf4\x14\xfa\xef\x4e\xcd\x5d\x6b\xb3\x9f\x3e\xfe\xd4\x7d\xf6\x89\x3f\xf1\x2f\xf6\x5b\xde\xe5\x47\xbb\xcf\xaf\xb3\x3a\x89\xcc\x5c\x77\x27\x2e\xac\x9c\xf1\xaa\xcb\x73\xc7\x8d\x08\x91\x8b\x33\x4a\x8c\x31\x02\xeb\x61\x75\x80\x6f\x13\x81\xc7\xb9\xde\x87\x15\xb6\x1f\x9d\x77\xa6\xdf\x20\xba\x6c\x1f\x85\xef\x30\x47\xc6\x5e\x65\xbb\xd7\xc8\x1e\x2b\xe0\x49\xf5\x6d\x49\xe1\xd1\x67\xa7\xec\xcc\xaf\x0f\x72\xc7\x7d\x96\x35\x03\x37\x6c\x59\x5b\xe6\x10\x63\x3b\xda\x8c\xe8\xfd\x39\xd3\xb5\xc9\xe1\x0e\xa7\xd9\x4d\xab\xb5\xc7\xf0\xc7\xd0\xbb\x12\x47\xd6\x5b\x5a\x7d\xb5\xa7\x7f\x79\xa9\x3b\x9b\xa4\xa4\x70\xda\x9d\xa0\x41\x75\x75\x1c\xdf\xfa\xb0\xb4\xc6\x8f\x01\x4e\xd1\x4f\x57\x9b\xe5\x9a\xdd\xc5\xfe\x4a\x8b\x96\xce\x80\x86\x6d\xc9\xf3\x45\xec\xb3\x17\xef\x26\xd3\x83\xab\xcb\x1b\xf1\x9f\xdb\xe9\xc1\xc9\xe4\x6c\x32\x9d\x1c\xf0\x7c\xa6\xb7\x2b\x21\x96\xb6\x47\x15\x67\x39\x7c\x1d\x7a\xc1\x5b\x04\x64\xde\xeb\x1c\xef\x59\x71\x27\x2f\x5b\x0d\x8a\x5a\x15\xb2\xc6\x70\x7a\x71\x33\x1d\x9f\x9d\x4d\x4e\xd8\xd5\xd9\xed\xbb\xd3\x0b\x76\x7c\x79\x7e\x3e\xbe\x38\xd1\x5b\xbf\x5b\x94\xb0\x97\x3e\x8f\xe2\x94\x37\xfd\xb4\xf5\x82\x8d\xc4\xf6\x32\x55\xaf\xad\x9c\x91\xcb\xc4\xef\xaa\x1b\x77\xe4\x03\xa0\x16\xa7\xe0\x8a\xc5\x07\x3e\xcb\xd9\x6d\xe6\xcd\x0d\xd5\xa0\xa3\x73\x95\x64\x9a\x48\x4d\xa4\xce\xf2\xd8\x71\x15\xb7\x24\xe2\x98\x54\x1f\xf2\xeb\xfe\x32\xe3\x49\xce\x46\xf7\x5f\x41\xb0\x55\xb0\x0a\x03\x1f\x12\xf0\xa5\xe2\x3e\x7b\x5c\x80\xed\x9a\x0c\xfe\xbf\xce\xb7\x8f\xf6\x1d\xf2\x76\xa6\xd9\x2b\xf4\xa3\xed\x53\x42\x71\xa8\xaf\xd2\xba\x57\x6c\x6d\x8e\xd6\x9e\xb0\x60\x92\x0a\x36\x80\x18\xd8\xbe\x78\xf5\xea\xd5\xff\xad\xfe\x1b\xbd\xf7\xc2\xc0\x57\xa5\xa4\xf9\x1f\x26\x0d\x38\xfa\x10\xfd\xf0\x21\x12\x72\xe0\x3f\x8c\x7d\x78\x96\xa4\x71\x1e\xcf\xe2\xf0\x83\x10\xf7\xe1\x59\x3e\x4b\x3e\x3c\x3b\x28\xdf\xf9\xe8\x7c\x8e\x35\x26\x5f\xbf\x7e\x75\xf8\xf5\xb7\xdf\x1e\xbe\x3e\x7c\xfd\x9f\x35\xb2\x24\x4e\xf3\x4c\x12\x7c\xf3\xcd\xab\xbf\x7e\x78\x06\x2f\x04\xa0\x1f\x2d\xea\xfe\xf7\xad\x96\x43\x3b\x4a\x4f\x28\x34\x96\x4b\xe7\x98\x53\x42\x6f\x74\x6a\x59\xca\x01\x45\x61\x39\xae\x14\xce\xe3\x0a\x26\x56\xc0\x61\x50\xc5\xdd\xc1\x04\xe4\xd2\x5f\xb3\x0c\x56\x54\xea\x62\x00\xe2\xc6\x86\x8a\x73\x7d\x99\x0a\xbd\xef\x0a\x7f\xc9\x88\x49\xa6\xf5\x1a\xad\x30\x0d\x93\x29\xe1\xfe\x36\x01\x99\x37\x3b\xe7\xcb\x38\xd5\x2f\xee\xb4\x74\x74\x49\xcb\x22\xcb\x95\x13\x60\x1c\x8d\x22\x3e\x17\x42\x1e\x60\xa5\x98\xf3\xb9\x21\x3f\x3c\xb9\xbc\x35\x32\xd8\xfa\xe4\x5e\xae\xec\x21\xc4\x40\x31\x17\x13\x78\x76\x28\xa6\x01\x8e\x1e\xea\xea\x98\x28\x53\xf3\x01\xb8\xaa\xc7\x69\xfd\x4d\xed\x05\x38\x30\x40\xa2\x0d\x88\x74\xa4\xec\x72\x65\x56\x22\x7d\xaf\xd9\xb7\x78\x42\x8b\x3d\xe0\xe0\x0a\x83\x6f\x6b\x7c\x16\x43\x5b\x59\x97\x24\xa3\xb9\x56\x7e\x43\xf0\xaf\x61\x47\xd8\x45\x4e\x96\x7b\x73\x73\xc6\x8e\x79\x2a\x4d\xd1\x7f\x53\xb9\x7e\xd0\x0d\x68\x1a\x24\xe7\xa2\xc5\xc4\xc0\x68\x81\x87\xca\x86\x8c\x53\x46\x57\x70\x6a\x2e\x9b\xa2\x74\x3c\xd5\xe1\xfe\x91\xde\xae\xc6\x4c\x4c\x96\xb9\x0e\x37\x05\x9f\x09\x18\xc2\xc8\x63\x8d\xe7\x6c\x54\x4d\x1b\x40\x52\xa5\xc2\x41\x5f\x88\x4e\x74\x7d\xd9\xd2\xf5\x80\x8c\x6b\x78\xae\x86\xab\x20\x48\xc0\xa6\xce\x01\xa9\x6e\x6c\x03\x70\xdc\x01\xfa\x41\x00\xf7\xc2\x18\x94\xb3\xca\x2c\x2e\xa2\x1c\x45\x94\x13\xcd\x31\x3c\x01\x31\xa7\x0d\x9a\xda\xfc\x83\xf6\x55\x76\x73\xd7\x4e\xa5\x0d\xa9\x75\xb6\x5f\xb5\x7b\x89\x73\xd7\x7b\x89\xab\x18\x99\xcc\x10\xf1\xc8\x65\xcd\x19\xfc\x4d\xea\x9e\x3d\x38\x3a\xa3\x6f\x54\x60\xa3\xea\x06\x68\xa3\x7e\xcc\x77\xa8\x53\x88\x59\x18\x16\x32\x05\xc3\xc6\x57\x33\xa0\x76\x76\x62\xc8\x7a\xe2\x06\xb5\x9a\x3f\x3a\xf1\xea\xc8\xc9\x72\xcb\x03\x87\x43\xb6\x0e\x42\x03\xc9\x1f\x3b\x11\x74\x17\xa4\x63\x69\xf9\x44\xe8\x5f\x1c\x91\xcb\x20\x28\x9d\x86\x86\x3d\x8c\x08\x1a\x11\xee\xcb\x03\x77\x86\x64\xec\x72\x10\x89\xa3\x43\xe6\x06\xd5\xba\x3c\x19\x19\x44\x2d\x43\x87\x45\x2f\xf5\x96\x58\x0b\x53\xf9\x84\xd4\xfc\x44\x2e\x64\x94\x5d\x27\x36\xad\x54\x64\x29\x32\xd0\xd6\xbd\xda\x70\x36\x83\xf9\x3c\x47\xad\x6e\x30\x14\xd1\x7b\x2f\xb4\x8c\x33\x38\x20\x67\x6b\x6d\x70\x1f\x1a\xc0\x39\x3c\xca\x3e\x22\x76\x39\x6a\x71\x6b\x5c\x67\x10\xce\x09\xce\xb3\x4a\x77\x44\x38\xd7\xca\xf1\x76\x4f\x5e\x56\x6a\x21\x11\x4a\x3a\xa0\xa9\xb2\x24\x94\x0e\x05\x42\x00\xbe\xf0\x21\xb3\x68\xdd\xd7\xc1\x02\xa0\x0b\x33\x3a\xe6\xb5\x8b\x64\x37\xa4\x36\x5a\xba\x44\x63\x9a\x43\x0d\x15\x5d\x8a\x32\xfd\x57\x2d\x3c\x93\xf7\xbc\xea\x26\x3b\x4e\x1b\x0f\xad\x72\x46\x0e\xc7\x98\xae\x0b\xde\x04\xab\xac\xd2\xb1\x4c\xa5\xa6\xac\x30\xe2\x7b\x47\x2d\x7a\xb0\xa4\xe3\xdf\xf0\x76\xe8\x46\xa7\x2d\xe0\x22\x5b\x9a\xad\x95\x2b\x59\xc7\xe1\x82\xc8\xc6\x01\x67\x65\x56\xe3\xa1\xbd\x82\x05\x24\x6d\x09\x07\xe9\xd2\xe2\xe5\x85\x27\x7f\xc1\xa0\xed\x41\xf2\xf2\x11\x7c\xf2\xf2\xd6\x8d\x65\xab\x2c\xe7\xcb\x03\x65\xa2\x80\xce\xe0\x51\x79\x5e\x0a\x46\x33\xea\x35\x26\x7d\x84\xdc\x8e\x69\x81\x69\xc6\x33\xfd\xbd\xfb\xbe\xc5\xd3\xeb\xa5\xb2\x20\x51\x49\xfb\xba\x55\xd1\x97\x20\x4a\x5f\xa7\x03\xba\xbf\xe7\x18\xb5\xb0\xe4\x5a\xb3\x54\xec\xc0\x43\xe4\xe1\x8a\x50\x0e\x7e\x65\xb4\x24\x65\xd0\x66\x0b\xad\xa3\xb0\x2b\x26\x5c\xc0\x11\xa1\xb4\x97\xa1\x21\xa8\x39\xf6\xd7\x86\x87\xce\xae\x63\x51\x8c\x86\x63\xd3\xc3\x4c\x31\x56\xd1\x47\x37\xdf\x62\xb4\xab\x22\x8a\x36\x82\x33\x77\xd4\xdc\xd0\x32\x86\xd1\x50\xe6\xcd\x45\x14\xca\x93\xbc\xa7\x3a\x56\x0c\xa9\xd8\x1b\x2e\x08\x99\x34\x58\xeb\xc4\xd7\x51\xc8\x11\xc3\xda\x8b\xc0\x52\x7e\x5b\x01\x37\xd9\xca\x2d\xc0\x4e\xee\x16\x31\x49\x26\x34\xa1\xba\x68\x16\xcb\x67\x79\xbb\x9c\x99\x6e\xa5\xed\x0a\xd9\x63\x88\x21\xc7\xf3\x66\xc6\x67\x31\xc9\x41\x10\x08\x19\x86\xdf\xb4\x2d\xa0\x95\x26\xa0\x52\x39\x19\x03\xc3\xa2\xb1\x8d\x86\x2e\x21\x36\x58\x80\xb5\x13\x51\x64\xcc\x45\xfb\x70\xd8\x5b\x66\xfa\xf0\x43\x3a\x32\x92\x1c\x74\xaf\x2f\x72\x63\xcf\xd1\x90\x91\xe4\xa4\x70\x41\x2f\x86\x1b\x1e\xf9\x49\x1c\xc0\xc9\x7e\x20\x73\xc2\xe0\x45\x1a\x06\xab\x9a\x9b\x8d\xfb\x1c\xb9\x10\x50\xc6\x9f\xd0\xcc\x36\xc1\xa3\x88\xfb\x2a\x3b\xd6\xf3\x6d\x47\xfa\xe6\xbd\x9f\x01\x72\x7f\x96\xd6\xf8\xcf\x21\xb6\x9b\x27\x2a\x21\x59\x95\x31\xb7\xd4\x22\x64\x16\xfb\xea\x1a\x17\xf2\xe8\x6f\x04\x55\xf7\xa2\x58\x7c\x88\xe9\x21\x63\xb7\x11\x9e\x7a\xc7\x0f\xa2\x47\x05\x62\x57\x1e\x1d\xc8\xed\x9f\x60\x38\xaa\x38\x49\xd3\x9a\xc7\x00\x83\x1d\xc8\x00\x5f\x40\x54\x4f\x65\xa1\xad\x8e\x2f\x10\x21\xb5\x76\xe1\xab\x1e\x25\x69\xfc\x10\xf8\xb5\xac\xff\xd5\xf5\xcf\x7a\xf1\x05\x26\x18\xa8\xa2\x7e\x10\x1c\x82\x25\x01\x7f\xcd\xe4\x50\x45\xd7\x14\xd2\x0a\x9c\x7c\xef\x8b\x30\x5c\x41\x08\x40\x03\x56\x5a\x71\x47\x5c\x41\x56\x8b\x5a\xb8\x71\x26\xe1\x07\x60\x7a\x26\xbe\x95\x03\x96\x84\xdc\xcb\x38\x53\x95\xc6\x78\x00\xfd\x03\x36\x50\xd0\xa5\xd0\xf4\x19\x33\x9c\x75\xe4\x91\xdc\xa7\x68\x42\x7d\x24\xea\x34\x23\x2e\x97\xd1\x98\xe7\x64\x01\x9b\x48\x43\x42\x10\xeb\x72\x04\x24\xbf\x60\xbe\x0e\x3c\xc2\xae\xa2\x18\x55\xfd\x12\xbf\xac\x22\x39\xc0\x44\x0b\x41\x54\x98\xa6\xfb\x3e\xac\x7a\xe0\x5d\x2f\x2e\xd4\xa2\xd7\x11\xac\x25\x1f\x0a\xd2\x60\x59\x2c\x99\xb7\xc4\x3b\x6e\x31\x14\xaa\x0b\x17\xd9\x8d\xaa\xb1\x6f\x7d\x61\x2e\x5e\x2c\xbc\x87\xd2\xa2\xff\xf5\xab\xaf\xbf\x3d\x3f\x60\xaf\xdf\x89\xff\xbf\x7a\xa7\x3f\x90\xd8\x99\x9c\xa7\xd2\xf4\x90\x8d\x5e\xc3\xa4\x29\xc6\x75\x0c\x35\x26\x88\x8b\x08\x6f\xa9\xe0\x5e\x12\x65\x98\x66\x9f\x27\xc4\xf2\x25\xd7\x18\x7b\x71\x22\x93\xc5\x1c\xad\xdf\xed\xad\x53\x0d\x00\x90\x5c\xb7\xf8\x61\xbf\x10\x9f\xb0\xd8\x22\xc7\x91\x9f\x7d\x85\x5f\xf9\xf1\xd9\x29\x8c\x98\xf8\xe9\x6f\x6c\x8c\xe5\x08\x75\xc0\x70\x1d\xa2\x6c\xe1\x58\x06\xe3\xbf\xba\xde\xcb\xc4\x90\xbf\xc2\x12\x7a\xdb\xd9\x3d\x4b\xb7\xaf\x95\xda\x65\xaf\x6a\xa3\xaf\xff\xf2\x57\x68\xa2\xb2\xa5\x0c\x9d\x81\x52\x96\x80\x08\xed\x1f\xd5\xcd\x73\x97\x49\x65\x07\xb5\xbd\x54\x0c\xa1\xcb\x5b\xce\xc6\xab\x85\x69\xc3\xa3\x7c\xbd\x32\xd5\x43\x1b\x80\xa5\x35\xfe\x8b\xf1\xf9\x44\xbf\x59\xdc\x78\x6b\xcf\xd5\xe4\xd9\x76\xe1\xe6\xd5\x76\xc1\x1f\xd9\x95\x97\x65\x8f\x71\xea\xeb\x79\xb7\x12\x91\x64\x18\xbd\xf2\xb6\x09\xec\x79\xc7\x6c\x7c\x75\xba\xde\x84\x66\x3c\x5f\xdb\x69\x8b\x6d\x6a\x10\x4d\x83\xa4\x66\xa0\x2d\x88\xd5\x03\x58\x91\xc9\xb3\x50\xd1\xda\x65\x79\xfd\x94\xb5\x3b\x41\x14\x5d\xbd\x99\xdc\x89\x79\x10\x6e\x98\xb1\xef\xe3\x42\x9a\x49\xf9\x32\xcc\x7b\x79\x80\x07\x9d\x57\xec\xb9\xa0\x23\xe3\xb5\xdb\x56\xe4\x88\xb2\xab\x97\x37\x74\x32\xaa\x9f\x58\x6d\xe7\xe0\x30\x25\xbe\x14\xa1\x61\x2d\x88\x49\x45\xa2\x9c\xad\x60\x75\xdb\x70\xe9\x17\x2f\x8d\x55\xf7\xfb\xc0\xbd\x9b\x96\x50\x42\xaf\x84\x52\x4a\x2a\x0e\x30\xbf\xaf\x66\xf9\x62\x94\x20\xb5\x51\x12\x68\x3e\xd8\xd2\x4a\x1c\x72\x37\x34\x3f\x4c\x63\x75\xf5\xe2\x47\x43\x8e\xd7\x1a\x62\xff\x6b\xc6\xb3\x4d\x45\x91\xb2\xb6\xba\xe8\x96\xa5\xa7\xa5\x48\x9c\x2d\xbc\x68\x2e\xe6\xdc\x47\x8e\xbe\xc1\xbe\x61\x4e\x30\x12\x53\x64\x96\x17\x60\x9d\x2a\x6a\x08\x29\xb2\x0c\x71\x97\x4d\x92\xad\x8a\x51\x70\x48\xdf\xd8\x2c\xe1\x33\x2c\x72\xc8\xda\xaa\xd3\x38\x34\x50\x39\x50\xd0\x41\xd0\x04\x8c\x5c\x87\x17\xb4\x72\x72\xe4\xfe\x01\x1c\xbf\xe1\xd7\xd4\x74\x9f\x5a\x4f\x9e\x8d\x72\x26\xf0\x03\x0b\xa0\xea\x56\x45\xf7\x6d\x91\xfc\x56\x86\x8a\x58\x23\xe8\xd2\xc3\x91\x19\x15\xf3\x10\x50\xf7\x8e\x50\xdf\x8c\xc6\xbe\xdd\x87\x1b\x11\xb5\xc5\xb0\xd3\x46\x45\x91\x52\x19\x5b\x75\xc8\x69\xa7\x23\x49\x52\x77\xec\xcd\xb0\xfb\x78\xa0\x70\xc7\x39\xec\xa2\x8d\xd3\x27\xa9\xb8\x0b\xae\xcd\x6b\x76\x4b\x3c\xc6\x62\x14\x1c\xb6\xd6\x68\x26\x52\x9a\xbc\x66\x08\xbc\xce\x2e\xd0\x51\xc0\x45\xf6\xda\xfe\xc7\x5a\xba\xb6\x88\x83\x7c\x7b\xb1\xfd\xa4\x0d\x32\x9c\xef\x7a\x1c\xa7\x4d\x77\xdd\xd3\x68\x3f\x7e\x64\xe4\x10\xa9\x2c\x0b\xe6\x11\x37\x37\xa7\x8e\xd4\x41\x5e\x77\xdf\x69\xa5\x23\x49\x52\x36\x3e\x8e\x63\x26\xa9\xb8\x0b\xae\x8d\x44\x0b\x96\x70\x4c\xa5\x48\x28\xd0\xb6\x72\x7d\xe5\xea\x5a\x4b\x2e\x6c\x28\x38\xf1\x62\xb8\x8c\x6b\xe1\x08\x92\xce\x83\x80\x30\x82\x61\x95\xad\xe2\xa2\x79\x5c\x2d\xd3\x9e\x20\x7b\xb9\x78\xc7\x85\x7c\x8e\xe1\x70\xf0\x5a\xfe\x8e\xb3\x22\x09\x63\xb1\x96\x37\xa4\xf3\x1b\x9a\x3d\x41\xaf\x9c\x85\xd2\xb4\x26\x88\xd6\xbb\xed\xe3\xb7\x78\xe0\xd6\x1c\x86\x04\x1d\x10\x19\x94\xe8\xc1\x8b\x82\x98\x1f\xc9\xab\x5e\xb8\x08\xc8\x31\xc9\x5f\xbc\x94\xf7\x03\x26\x6c\x36\xa5\xec\x51\x54\xb1\x68\xaa\x63\x6e\xbd\x6c\x13\xad\xb5\xc4\xcb\xbf\x6b\x05\xd4\x5f\xd9\xf3\xbb\x7e\xc7\xc6\x27\xe7\xa7\xfa\xe4\x9f\x2d\x14\x34\xee\xb7\x27\xa7\xd3\xcb\x6b\x33\xff\x4d\x1a\x92\x84\xf3\xf1\xc5\xf8\xdd\xc4\x2c\x61\x8b\x86\x22\x41\x1f\xf6\xad\xf9\xd2\x9e\xa7\xc1\x98\xf8\xd2\xc9\x62\xf8\x12\xb6\x5a\x68\x38\x1f\x47\x39\x9e\xae\xd4\x8c\x90\x6b\x43\x89\x49\x2c\x91\x01\x09\x5b\xe3\xa4\xd1\x0b\x53\xee\xf9\x2b\x95\x87\xd3\x08\xc9\xaa\x9c\x3b\x92\x66\xbc\x0a\x38\x03\x50\x36\x31\xf2\xe0\x34\xb8\x33\x18\xe7\xf5\x63\x36\x14\x66\xfd\x40\x6c\x5f\x90\x82\x45\x7f\xdd\xd6\x7c\x49\xe1\xd9\xed\xf5\xd4\x4e\x64\x2f\x43\x5a\xcf\x71\x99\xe9\x55\x4c\x3c\xbe\xbc\x5c\x2f\xcd\x27\x2b\x63\x27\x3d\x00\x3a\x87\xfe\xe8\x54\x64\x95\xfe\x20\x3b\x19\xd1\xb1\xd6\x52\x9d\x6e\x98\x1a\xa2\x25\x99\x1c\x37\xea\x09\xab\xbd\xfb\x9c\xa7\x9b\x76\x8b\x09\x64\xbc\x35\x8c\x00\xbb\x95\x66\xad\xf5\x95\x17\xf8\x8d\x6b\x6b\x3d\x64\x13\x29\x41\x5e\x96\x49\xf7\x69\x01\x58\xc6\xdc\x47\x4f\xdc\x75\x92\x70\xaf\x7e\xca\xb3\x95\x14\x5c\x6e\x17\x0c\x18\x87\x65\x3f\xa8\x5e\xb5\x9d\xd8\x2e\xf4\xa2\xb0\x27\xe9\x65\xbc\xd9\xef\x71\xab\x5f\x16\x65\xe2\x5b\x10\x25\x54\xaf\xaf\xc6\x72\x4c\x6c\xdf\x29\xd7\xae\x30\x01\x93\x1c\x5f\xe0\x12\xa5\x1a\x4d\x60\xc2\x33\x5a\xb3\x5b\x96\x22\xa3\x68\xf0\xfa\x35\x48\xec\x50\x74\x94\x22\xa3\xe8\xb4\xbd\xd5\x13\xda\xcb\xe2\x29\x04\x08\x85\x6e\x1c\xc0\x68\xa6\x42\xde\xe1\x48\x2f\x7a\xfc\x12\xc2\xb5\x3e\x2e\xb8\xb4\xcf\x95\x07\xd1\xa5\x41\x6f\x58\x2e\x9b\x40\x5d\xd1\xf6\xfa\x75\xc3\x6e\x84\xd8\xeb\x08\xf7\xdd\x1b\x4b\xa9\x7b\xe5\x96\xad\xbb\x03\xd7\xeb\xd2\x8b\x19\x0d\xf3\x9a\x5f\xed\xf6\x7e\x1d\x2a\xd7\x7c\x06\xe6\xc0\x61\x00\x74\x0b\x0f\x2a\xa6\xc5\x56\x0b\xba\xa9\x34\xe4\x72\x40\x4c\xe2\x4a\xd2\xe2\xa8\x55\xa0\x11\x62\x57\x11\x82\x7c\xb4\x82\x9f\x2d\xe2\x38\x5b\x1b\xc1\x87\x61\xfc\x08\x9d\x1d\x2c\x39\xe0\xf7\x21\x7b\x13\x8b\xcf\x5c\xde\xea\x7a\x29\x97\x99\xfc\xe1\xab\xc9\xc1\xba\x53\xd4\xc0\x1d\x2c\xcf\xb2\x8c\x57\x16\xf7\x19\x58\xd0\x2b\x1f\x0e\xc3\x57\xb9\x67\xf1\xd4\x7a\xf1\xe3\xe8\xb9\x61\xec\x6b\x25\xa2\xca\x90\xc7\x45\xcc\x9b\x7b\x06\x5f\x37\x23\x2d\x55\x62\xe9\xf3\x80\x15\x85\xa7\xf4\x90\xd3\x7f\xed\x1b\xbe\x4e\xa7\xa5\xb6\xcd\xb0\xb4\x20\xee\xbc\x77\x29\x8a\xa0\x2f\xee\x10\x8c\xa6\x8f\xad\x34\x54\x09\xe8\x2f\x52\x05\x07\x6e\xdd\x99\x76\x01\x20\xb1\x18\x04\x1f\x38\x94\xa8\xb3\x07\xb4\xe1\x72\x42\xa8\x67\x42\xc5\x08\x4e\x73\x28\xc3\x67\x1f\x9e\x35\x9c\xe8\x3e\x3c\xdb\x38\x24\xa9\xbc\x77\xe0\x4e\x49\x19\xda\x62\x51\xd3\x48\xb3\x0b\x21\x74\x1d\x31\x6f\x86\x90\xae\xa6\x93\xbb\x20\xf2\xc0\xe4\xbe\xf2\x0d\x83\x79\x1c\x4f\xca\x2f\x6f\x8e\xf4\x5e\x5c\x7d\xd9\x51\x71\x6f\xb6\x7a\xc3\x5f\xac\x88\x82\xd2\x15\xb9\xb3\xfe\x1d\x18\xf5\xc5\xfa\x20\x1e\xbc\x17\x1b\xa7\x00\xd3\x01\x36\x04\xba\xe3\x26\x32\xb5\xd7\x21\x05\xeb\x40\xb0\x15\x2e\x53\xac\xf8\x81\x37\x8f\xe2\x2c\x0f\x66\xb8\xd4\xc8\x72\xdf\xe4\xb0\x4c\x2e\x4f\x44\x06\x11\xd0\x3c\x16\xe2\x49\xe0\xbd\xba\xc1\x81\x09\xa9\xb9\xf1\x90\xbe\x9c\x51\x8e\x76\x69\xe0\x20\x5a\x9a\x82\xcd\x3a\x76\x31\xbb\x90\x41\xd4\x10\xf8\x3e\xc8\x96\xed\xc0\xd9\x4a\x49\x90\x16\x8b\x0f\x14\x5c\x87\x97\x62\x8a\x14\xb3\x9e\x1f\x3f\x46\xf2\xb2\xab\xfc\x8c\x61\x9a\xe4\xcb\xda\xb6\xd2\x34\x22\xf4\x64\x47\xc1\x8d\x91\xdd\xda\xc2\xbc\xad\x9d\x2e\xd7\xe1\x26\xa7\x70\x2f\x75\xcf\xbd\xbc\x48\x95\x6f\xa6\x58\xc5\x44\x73\xf0\x7c\x29\x12\x48\xc1\x00\xd7\x7e\x6a\xb5\x80\xe0\x05\x55\x2e\x2d\x7e\x61\x24\x83\x95\x8e\xe1\xeb\x7c\x52\x30\x94\x3a\x83\x55\x90\xde\xbf\x64\x9b\xc0\x9e\x77\x91\xce\xeb\x49\x12\x37\x37\x80\xa6\x80\x00\xa4\xb2\x04\x44\xd9\x02\xa2\xf9\xf3\x47\x3c\x14\x01\x13\x44\x88\x43\x5e\xda\x7f\xa2\x6f\x8c\x9c\x63\x55\xc8\x15\x03\x3e\x67\x4e\x54\xb4\x10\x7c\x40\x26\x77\x61\x2f\x60\x89\x0a\xc2\xe0\x5f\x39\x18\x95\x3d\xe8\xab\x23\x43\x02\x9d\x1e\x9c\xac\xd1\x62\xac\x6c\x76\x02\x76\x00\x18\x2d\xb3\x4a\x25\x48\xbb\x84\x72\x65\x43\xc4\x09\x0d\x84\x96\x36\xa5\x13\x80\x68\x49\x31\x43\x96\x5e\xe7\x60\x49\x09\x19\x78\x54\xdc\x2c\xbc\xc1\x8e\x31\xfa\x22\x1c\x8d\x17\x61\x2e\xc7\x7d\xe4\x80\x47\x9a\x62\x98\x2f\x0f\xff\x31\x1a\x92\xde\x9f\x6d\xef\xf2\x87\xad\x19\xb9\x55\x7a\xca\xba\x19\x16\x01\xb1\x76\x36\x7a\xa3\xe5\x46\x8a\x54\xd6\x1a\xd1\xf5\xe4\x1f\xb7\x93\x9b\xa9\xfe\x86\x70\x9b\x80\xc0\xfb\xe6\xea\xf2\xe2\xc6\xe0\xed\xd7\x42\x61\xcf\xfd\xf2\x6c\x72\x63\x1a\xb0\xb6\x09\x08\xbc\x6f\xa7\x13\xbd\x05\xc1\xe6\x6b\x7b\xbe\xdc\x83\x35\xb4\xcf\xe1\x52\x4b\x7c\xa0\x89\x18\xea\x21\xaa\x28\x5a\x1f\xff\x4d\x4e\xf2\xcb\xc4\x14\x22\xdc\x81\x83\x23\x3a\x75\xdc\x7a\x1e\x8b\xbf\xa7\xab\x04\x7a\x5b\xf9\x67\x39\x8c\x8a\x85\x03\x17\x4b\xc4\x95\x34\x6a\x12\xdf\x4a\x3c\x0b\xf0\xf3\xc2\x89\x21\xc8\xff\x66\xa9\xc6\xb0\xa2\x76\xa5\xef\x60\xda\xf4\xc0\xaa\x8e\x62\x6b\x4b\x99\x32\xe8\x7b\x23\xb8\xaf\xf4\xdb\x4d\xd4\x69\xef\x65\xe8\x6f\x1f\xf8\x8a\x61\x11\x7c\xb3\xf8\xe3\xd6\xab\xbf\x41\xb2\xb2\x6f\xf4\xdb\x98\xa7\x84\x42\xad\xaf\x44\x2c\x01\xf9\x96\x71\xf5\xf6\x35\x02\x82\x3c\x0e\xe3\xc2\x67\x6f\x61\x5d\x9d\xae\x3a\x5b\x7b\x10\xd6\x04\x7d\x66\x3c\x78\xc0\x13\xe0\x75\x66\x9e\x99\xd8\x0f\xc8\x1b\x42\x15\x95\xc8\x80\x99\x56\x9c\x82\xab\x10\x7b\xc4\x07\x2e\x6a\x44\x6d\x29\xbc\x75\xc8\x3a\xf1\xd5\xce\x16\x41\x28\xd6\x22\x77\x3f\x8b\x4d\x59\xd6\x52\x19\x98\x37\xe0\x0e\x76\x24\xe5\x2a\x72\xe9\x61\x30\x2a\xb5\xc3\x97\xeb\xe0\x0d\xeb\x7c\x93\x9e\x4f\x0a\x87\x50\x6f\x0a\x5c\xb2\x3e\xb9\x93\x21\xb6\x0c\xba\x75\x17\xa1\xcb\x57\x81\x40\x21\xef\x94\xca\xfa\x08\xb6\xb8\xdd\x20\xba\xca\xd1\x91\x14\xa9\x0a\xf3\xac\x18\x46\xc6\xcd\x93\x6d\x31\x32\x0e\x8c\x52\x5e\xf3\x65\x95\x47\xf5\xa2\x0b\x74\x42\xb1\x28\x49\x46\x13\x35\xac\xa1\x3b\x21\xe8\xc8\x1d\xe4\xc2\xf6\x81\xdc\x2d\xba\x8a\xd1\x70\x6c\x1a\xf7\xc3\xe0\xfa\xde\x4b\xeb\x03\xeb\xa6\x4b\xe8\x0e\xf3\xf7\x7f\x09\x90\xe8\xf5\x97\x36\x32\xca\x49\x84\x18\xf3\xf1\xb7\x32\x33\xb7\x14\x33\x40\x1a\x72\xab\xca\x7b\x2a\x3c\x7b\xaf\xb9\x27\xaa\xa0\x5d\xd4\x43\x21\x97\x79\x98\xfc\x6f\xa8\x3e\xae\x49\xd6\xaf\xaf\x95\x3d\x82\xe8\x5b\x47\x0e\x1a\xb9\xca\xc7\x5b\x4b\x6f\x1d\x81\xc0\x20\x57\x4f\x4a\x97\x67\xbd\x1c\xeb\xa0\x77\x97\x1c\x74\xa5\x99\xb5\x28\xe1\x20\xdd\xe8\x16\xa8\x23\x23\xcb\xe9\x5a\xfa\xb4\x52\x39\x48\x31\x05\x48\xd7\x50\xd1\xa4\xa8\x83\xeb\xe6\x67\x5a\xed\xf7\x76\x3d\x76\xec\x1b\x00\xbd\x6e\xd6\x21\x1b\xe5\xe6\xf8\x4d\xf9\xf7\x26\xd2\x8d\x17\x56\x7a\x0f\xc2\x9c\xae\xd3\x56\x55\x6e\x56\xb7\x53\x23\xf6\xe3\x4a\xd7\xa2\x39\x62\xa9\x1a\xb4\x14\xdd\xad\xcd\x30\xdc\xdd\xb5\xda\x3a\xa5\xd8\x3c\x83\xd9\xc3\x6a\xfa\xe9\x21\x39\xd4\x5f\x29\x06\x0e\xb2\x6a\x92\xd6\x58\x6b\x0f\xdb\x90\x3a\xd7\xd2\xae\x05\x13\xea\x22\x89\xcd\x36\x67\x2d\x14\x74\xee\x6c\xc4\x30\x0d\x41\x99\x86\x0b\x57\x7c\x3f\x43\x00\x2e\xbc\xaa\xb1\x3a\x2f\x71\x67\x45\xc2\x2b\x0b\x1b\xac\x17\xda\x89\x08\x32\xc0\x01\xc2\x62\x59\xd0\x4e\x46\x94\xd3\x3a\x63\xee\x72\x1c\xd8\x87\x50\x5a\x1d\xa4\xb9\x55\x5d\xb7\x90\x51\xe5\x80\xde\x55\x04\xda\xdf\xea\xc9\x5e\x55\xe4\xf9\xca\x65\xaa\x51\x33\x84\x09\x67\x37\x62\x08\x7a\xe6\x69\xc0\xe5\xd1\x50\x10\xf9\xc1\x43\xe0\x17\x5e\x58\x19\xa9\x80\xd1\xb3\xbc\xc2\x91\x89\xff\x0d\x8a\x38\xf2\x71\x41\x8a\x79\xbc\x93\x10\xbc\xcd\x17\x9c\x5d\x8e\xab\xcc\x2b\x95\x1f\x42\x95\x80\x0e\x7c\x44\x0d\xa6\x54\xc3\x30\xed\xaf\xc3\x3c\x78\xe0\xd8\x55\x9f\x67\x6c\x5e\x04\xfe\x21\x63\x63\x88\x2d\x88\x56\x9f\x0b\xee\x85\x02\x0c\x06\xf7\xc2\xda\x03\x1b\xb5\xa4\x58\x7b\x5d\x60\x14\xf4\x0c\x8d\x88\x52\x0e\x76\xe8\xa6\xcf\x79\xef\x08\x86\xaa\x1d\x31\xd6\xb4\x61\xdb\x40\x02\x23\xd2\x30\x75\xd1\x5f\xde\x50\x9a\xab\x25\x98\x05\x9a\x6a\x2f\x3d\x48\x0d\x0c\x27\x77\xb0\x9a\x80\x39\xc5\x06\x0f\x4e\x42\x03\xd5\xc2\x20\x32\xe9\x35\x50\x99\xa0\xd6\xc6\xd0\xac\x3e\x88\xc2\x4b\xee\xcd\xa4\x6b\xca\x48\x1a\x5c\x4b\xda\x6e\x55\x07\x61\x4e\xd7\x69\xd3\x6c\x16\x53\x4d\xb8\x3b\xdd\x0e\xc6\x77\x18\x4d\x7a\xb8\xd9\x0e\xc6\x97\xaa\x09\x6e\x5e\xaa\x16\x87\x3b\x32\x68\x70\x88\x34\xa3\x9a\x3b\x23\x9e\x07\x0c\xc2\xb5\x9f\x16\x82\xef\x5b\x29\xe6\xad\x90\x4a\x3e\xd1\xe8\xcd\xd1\x05\xbd\x5b\x0f\x76\xd5\x6c\x17\xd2\x86\xd2\xba\xbb\xb7\x0f\xa9\x75\x5f\x69\xf6\x5a\x97\xf7\x09\xdf\xc5\x59\xae\x0e\xf2\xc4\x5f\x27\x18\xb8\xb7\x6e\x2e\x68\x36\x33\x74\x65\x33\x3c\xce\x6e\x93\xc8\x3e\xac\xe8\x78\xe5\xcd\x93\xa5\x09\xb2\x65\x29\x1a\x8a\x0e\x71\x4e\x7c\x8b\xd0\xc4\xb6\xf9\x96\xc0\x55\x7e\xea\x93\x5a\xa7\x7f\x5f\x76\xfa\x77\x18\xd5\xd3\x60\x14\x4a\x2a\x6c\x8d\xe9\x66\x72\x7c\x7b\x7d\x3a\xfd\x9e\xbd\xbb\xbe\xbc\xbd\xd2\x4a\xd7\x91\x11\xe4\x5c\xbf\x3f\x3d\x9e\x74\x44\xe8\xd2\x50\x51\xa5\xe8\x6d\x54\xb7\x09\xec\x79\x5f\x8d\xbb\xf1\xb7\xd1\x50\x25\x74\x44\x19\xd3\x50\x11\xa5\x9c\x4c\xde\x4f\xce\x2e\xaf\x0c\xb1\xc6\xb4\x74\x44\x49\x5d\x31\xcd\x34\x54\x34\x29\x86\x16\xdf\x78\x6d\xcf\x77\xe6\x85\x7b\x3e\xf5\xdb\x87\x48\x7b\xfd\xcb\x80\x9d\x5d\x23\x93\x9e\x90\x2e\x4b\x4e\xfd\x42\x81\x32\x5c\xe8\x47\x7c\x62\x3f\xf9\xf5\xe0\x34\x24\x5a\xf1\x0c\x33\xbb\x7e\x5c\x76\x66\x40\xea\xc9\x8d\x80\x3a\xe4\xb3\x2a\xe8\x2e\x7b\x21\xf6\xcf\xb8\x5f\x16\x6b\x30\x08\x30\x05\x6e\xa2\x9f\x82\xe4\x2b\x53\x3b\x53\x19\x90\xb1\xc9\x6e\xee\x0e\xcd\xba\x3c\x01\x19\x26\xec\xc2\xea\x3f\x28\xb7\x26\x90\xf0\xf4\x88\x7d\xfb\xea\x9b\x23\x36\x96\x69\x49\x82\x8c\xf9\x3c\x0a\xc0\x93\x10\x73\xa2\xf8\x31\xf6\x30\x8c\x73\x9a\xa4\xc1\x43\x10\x72\xe5\xbc\xc6\x7f\x11\xad\x8b\xf6\xf0\x41\xd6\x1d\x2b\x63\xdf\xe2\x87\xa8\x17\xd1\x5b\x27\x69\x7a\x83\x8f\x8e\xc5\x93\xcf\x9f\x0f\x24\x5d\xe3\xfd\x38\x09\x26\xf0\xb0\xa4\x58\xd6\x12\x81\x89\x17\x0d\x6b\x79\x97\xea\xd9\x25\x0a\x52\x2d\xc1\x01\x1d\x1e\x6b\x4f\xf1\x58\x5b\x30\x3e\xf3\xee\x78\x28\x3f\xeb\xd2\x07\x94\x10\x0c\x71\x10\x9e\x64\x0d\xde\x54\x57\xf2\xad\x3b\x88\x6e\xb8\xf6\x0c\xc8\xd8\xca\x7b\x9b\x32\x48\x25\xda\x05\x96\x91\x9d\x3b\x81\x59\x96\x26\xa3\x2a\x6f\x96\x8e\xb6\xee\xf0\x3b\x21\xd9\x14\x25\xe3\xa9\x7c\x31\x9a\x15\xff\x21\x9a\x9e\x5e\x1d\xb1\x53\x8c\xd5\x8c\x81\x76\xf2\x74\x85\xdb\xf6\x58\x39\x73\x78\xec\xe1\xf5\x96\x47\xc7\x01\x92\x63\xea\x27\x48\x5f\x04\x7b\xfa\x51\x82\xc7\x4d\xdd\x5d\xe1\x09\x90\xb8\xd7\x56\x95\x56\xd8\x5e\xad\x96\x22\x64\xf9\x5b\x76\x1f\xd4\xef\xcd\x9e\x01\x15\x5b\xbd\x57\xda\x0f\xd3\x76\x05\xa9\x58\xf4\x9b\xf4\x6d\x02\x32\x6f\xd3\x7a\x63\x8b\x82\xc0\x3d\xdf\xf4\x48\x90\x69\x9c\xcc\x77\xeb\xb6\xc5\x48\x38\x44\xf9\x87\x80\x3f\xae\x03\x2f\x05\xe0\x38\x62\xc4\xd0\x55\xc4\x4d\xfe\x62\x9d\x34\xa2\x91\xc2\xc8\x0e\x4a\x77\x69\x0a\x2a\x15\x57\xa0\xee\xb2\x82\xe6\x44\x13\xf5\x67\xc7\x1e\x8e\xcc\x80\x8c\xad\xd1\x07\x20\x08\x46\xe5\x6a\x81\xa1\xe8\xd5\x93\xf7\x5e\x58\x70\x19\x12\x63\x3b\x47\xd8\x2e\x37\xb1\x5f\x26\x4a\x72\x2d\xff\xbb\xcd\xb3\x3c\x8f\x75\x36\x64\x76\xc7\xe2\xc3\x32\x27\xeb\x34\xd0\x65\x4d\x5f\x76\x64\xdc\x7b\xb8\xa6\xd9\xa5\xa8\x41\xf4\x1d\xf8\x82\x66\x97\xa2\xec\xf5\x5d\xc4\x8f\xeb\xe8\x29\xcd\x14\x31\x7a\xe4\x56\x85\x88\x18\xc2\x70\x23\xc1\x8a\xcd\x94\x6c\x5f\x92\x86\x66\xc1\xc3\x0e\xa9\x4d\x0a\x1a\x77\xb4\x9d\x89\xee\x63\xb3\x84\x6d\x2a\xba\x14\xd8\x4a\x65\xec\x6e\x85\xde\x5b\xdd\xe2\x34\xe4\x34\xb9\xe8\x53\xef\xf3\xdc\x0b\x42\xd5\x14\x10\x47\x3b\x0f\x66\x45\xe8\xa5\x5b\x9b\x07\x33\x28\x57\x5e\x34\xc4\x72\x2e\xe8\x6e\x91\x36\x3a\x9a\xa4\x94\xcf\x30\xa2\xbc\x98\x66\x65\xfe\x50\xb3\x40\x03\x39\x4d\xee\xa6\xaf\x91\x85\xb2\x1d\x45\x88\xf2\xa5\x8d\x50\xb7\xd0\x16\x3a\x17\x49\xb6\x2d\xaa\xa7\x76\x91\x4a\xf8\xda\x8c\x05\x48\xb2\x61\x9a\xa8\x2c\x34\x67\x5e\xc8\x95\xe9\xec\xde\x56\x9b\x4f\x81\x81\x5c\x43\xdb\x96\x9c\xc3\x2c\x77\x2d\xa7\xfa\xa7\x41\x61\x5f\x4b\xe6\x9d\x9e\xeb\x4e\x0e\x01\x0f\x14\x3b\xad\x1f\x33\x17\xcc\x86\xc3\x87\x56\x22\xa2\x8c\x5e\x19\x96\x5c\x58\x10\xf1\x6d\x76\x34\x4a\x33\x59\x96\xa5\x21\xea\x68\x0f\xb7\x96\x80\xd8\xa5\x2b\x5c\x55\x40\xa8\x73\x95\x3f\x42\x86\x63\x13\xcc\x0f\xe1\x2c\x14\x5f\xc1\xb1\x5d\x95\x58\xfb\xa0\x8a\x27\x28\xc9\xe1\x22\x47\x05\x70\x83\xcc\x38\x6a\x20\x7c\x8c\x53\x8c\xd0\x52\x05\xfe\x34\x8c\x0f\x4f\x85\xc3\xbe\xa6\x72\x4f\xe6\x6d\x80\xb0\xcc\x2f\x30\xf5\x89\xf8\x1b\xc2\x50\xc3\x45\xdf\x08\x5c\x3a\x15\x08\x99\xd7\xf1\x40\x20\x28\x63\xd8\xc1\xa5\x60\xc2\x53\x4f\xee\x58\xd5\x6b\xd9\x77\xc5\x2b\xb1\xb5\xc3\xa4\xf8\xfa\xc8\x79\x7b\x95\x4d\xa9\x91\xb9\xb3\x2d\x11\xad\x30\x05\x53\xb7\x8f\x50\x3b\x11\x55\x86\x98\xb3\x20\xd1\x61\x5c\xe4\x1f\x22\x75\x6f\xd0\x92\x6a\x16\x7a\xf2\x32\x4e\xe5\x92\x2e\x5d\x76\x0c\x6a\xc3\x71\x26\x6a\x53\x44\xeb\x58\xd2\x03\xab\x33\x0c\x6b\x9a\x3e\xfb\x36\x9a\xd9\x87\x4c\x5a\x0d\x14\x49\x79\xb5\x7e\x20\xef\xa4\x62\x16\x15\x61\x08\xff\xa6\x5c\x3d\x28\xa3\x66\x4a\x8f\x39\x45\x6e\x56\x72\x00\xb6\x14\x3d\x0c\x19\x53\x36\xde\x92\xb8\x16\x99\xbc\x07\x02\x16\xa6\x3b\x23\x03\x29\x41\x5e\x9c\x74\x0f\x48\x2d\x34\x24\x09\xc9\xde\x7b\xfc\x1e\x64\xda\xd7\xc0\x2a\x83\x0c\x25\x27\xa9\x58\x06\xb2\x5b\xd3\xed\x91\x96\x90\x22\x0b\xb2\x36\x2b\x0b\x07\xdf\x30\xc3\x69\x09\xad\x65\xc1\x50\x69\x88\xa3\xba\xf9\x9a\xc4\x97\x1d\xab\x68\xd6\x98\xf2\x18\x13\x6b\x8a\x35\xf3\x4a\x1a\xe8\xa8\xc8\xd6\xe5\xa1\x73\x6d\x35\x9d\x89\xf1\x3c\x0f\x42\x58\x6b\xaf\xf0\x82\x5c\x25\x13\x34\xb9\x59\xed\x5a\x1c\x4d\x6f\x53\x8a\xf8\xfb\xcd\x94\xf6\x84\xd4\xf3\xc3\x32\xa7\xe9\x34\x85\x44\x68\x9f\xd0\x87\x28\xe3\xeb\x38\xe5\xf0\x88\xdf\xdf\x8b\x45\x6f\x3d\x6d\xff\x6d\x74\x17\x44\x7e\x13\x46\x81\xcf\xea\x1e\x7d\x07\x8a\xfa\x8d\xa4\x5d\x93\xa6\x1c\x48\x0f\x64\x74\xfa\x05\x8f\x14\x9d\x72\x72\xdf\x60\x9b\xf8\x9e\x0a\xbc\x0a\x03\x05\x7a\x99\xa9\x98\xcf\xcd\x13\x6b\x73\xad\xfe\x81\xd4\xa3\xb5\x6b\x99\xef\x7b\x9c\x04\x4d\xc9\xb0\xe7\x0d\xa2\x42\x06\xc3\x94\xae\xd7\x78\x0b\xc1\x31\x07\x47\x79\xe9\x6b\xae\xd5\xc1\x98\xbb\xe9\x74\xfc\xb6\x29\x95\x8b\x75\xa2\x10\x81\x59\x63\x1a\x17\xb7\x2d\xed\x6d\xa7\xd8\x30\x12\x1c\xb5\xdb\xb5\x6e\x7b\xd7\x6c\x3d\x8e\xdd\x62\xb7\xaf\x62\x13\x69\xbe\x09\xb1\x3d\xed\x0e\x7e\x36\x20\x67\x7b\x6d\x3c\x31\xa1\x80\x7d\x46\xed\x82\x41\xac\x0a\xac\xee\xdb\x48\x65\x09\x88\x6a\x96\x23\xf5\x95\x93\x69\xf2\xb7\x29\x43\x47\xd0\xb6\x50\xb3\x41\xd1\x55\xce\x1e\x09\x26\xc5\x2c\x87\xd5\x96\x25\xc1\xda\x5a\xd2\xcb\x6b\xce\xda\x62\xd0\xe6\xbf\xe0\xa8\x2d\xef\x6b\xf2\x40\xa6\xa8\x85\xb1\xb8\xba\xc1\x69\xc9\x78\x5c\x0d\xda\x98\xba\x0f\xb9\xe8\xb5\xfd\x92\xb0\xd9\xd7\xa8\x60\x80\x87\x43\xbf\x95\xc9\xa4\x26\x68\x81\x0d\x03\x44\xeb\xf9\xa4\x98\x2e\x7d\x2e\x5d\xdb\x55\x44\xe3\xf5\xc9\x99\xa9\x2f\xec\x4a\x0e\x49\xd3\x38\x05\x9e\x82\xd7\xe3\x22\x98\xc9\xda\xab\x06\x0b\x99\xc5\x11\x33\xb0\x8a\x2e\xeb\x17\x69\x33\x18\x9b\x57\xe4\xf1\x08\xd2\xb2\xce\x8c\xc7\x1a\x3b\x92\x42\xd2\x12\xaf\x85\x6b\x39\xf0\xd6\x49\xf1\xe5\x48\x04\xa1\x0a\xd2\xb9\x61\x59\xe5\xc2\x63\x48\x84\x32\xad\x87\x21\xca\xa1\x13\x8f\x5e\x08\xc5\x97\x3d\x40\x2d\x5a\x70\x19\x16\xa5\x53\x4d\x5a\x70\x21\xa1\xdc\x88\x02\xdb\x90\x04\xf3\xfb\xa1\x3a\xf7\x93\xbb\x40\xfc\x5e\x16\x71\x96\xc3\x95\x9d\x1c\xe5\x46\x11\xfb\xee\xf2\x66\x7a\x31\x3e\x9f\xc0\xfc\x0a\x4b\x82\xd1\x48\xe8\xe1\xc7\xcb\x91\x64\x2e\x56\x00\x73\x1e\xf1\x74\x3d\x74\xca\xe7\xd5\x42\x3d\xc1\x3c\x48\xe6\xc4\x5d\x5f\x34\x56\x4a\x8d\x8b\x11\x46\x66\xa4\xad\xa6\xa1\x75\x66\x60\x9c\x49\x40\xad\x24\x31\xd6\x04\x9d\x87\x03\xc2\x3c\xc6\x24\xdd\x2b\x95\xc3\x27\x93\xd9\xc2\x31\xd4\x4a\x95\xe9\x32\x5f\x25\xbc\xcc\xa0\x0b\xd5\x6c\x83\xba\x27\x5f\xa2\x26\x50\x13\x91\x72\xde\x49\x64\x4a\xef\x5a\xee\x01\x16\xcb\x6d\x22\x04\xac\xbb\x4d\x43\xb1\x5e\x3d\xd2\xc7\x9c\xeb\xcf\x90\x80\x1d\xbc\xb2\xd0\xe9\x1e\xc3\xd3\x2c\x44\xc5\xf9\x62\x14\x4d\xe3\x2c\xab\xc6\x25\xd1\xdd\x4f\x20\x3f\x0a\xb6\x7f\x2e\xcf\x67\xd2\x5a\xe0\xfc\x75\x46\x17\x99\xcb\x46\x6e\x8d\x91\x0c\x37\xe5\xd0\x06\xb5\xdd\xef\x5a\x62\x11\xa5\x10\x47\x06\xa6\x7f\x21\x63\x2c\xf7\x27\xac\xdc\xa8\xb0\x47\x2f\x52\xc7\xc5\x55\x72\x16\x55\xf0\xb7\x66\xa4\x80\xbf\x99\xea\xf2\x8f\xa6\x20\xad\x6d\xe5\xaa\xbb\x1c\xbe\x20\x19\xab\x57\xa6\xc6\xaa\xd6\xe4\x68\xdb\x63\xfa\xa2\x1c\xf9\xd0\x90\x62\x75\xce\x3c\x18\x2b\xcb\xe3\x12\x79\x67\x00\xa7\x79\x87\x4c\x5b\x79\xd2\x98\xa6\x7e\xc2\xac\xcf\xff\xb2\x3b\x41\xf6\xba\xca\x7b\x3b\x39\xf1\x63\xd2\xc0\xef\xa6\xd3\xab\x2a\x47\x89\x1e\xba\x6d\x39\x02\x92\x44\xed\xac\x3d\xdf\x1f\xc9\xf5\xf5\x08\xc6\x13\x75\xca\x35\x17\x2b\x70\xb5\xf8\x86\xa7\x06\x64\x8e\x7c\xec\x91\xca\x7b\x6d\x95\x9d\x49\xed\xf9\xd5\x86\x41\x05\x0d\x92\x0e\x56\x11\x97\x59\xd7\x8b\x64\x9e\x7a\x2a\xb9\xf7\xf1\x5b\x3c\x94\x82\xdc\x2f\x62\x27\x2e\x46\xfd\x1c\x98\x9c\x07\xd1\x38\x09\x54\xa2\xdc\x73\xef\xe7\x38\x95\x01\x48\x9a\xcf\x83\xa8\xf5\xf9\x95\x97\xcf\x16\x86\x6b\xa1\x2f\x1e\x2f\xa1\xe6\x73\x2f\x64\xe7\x62\x2c\x34\x44\x6b\x6d\x27\x22\xca\xf0\x96\x71\x21\x53\xf5\x2d\x91\x11\x7b\xc1\x0f\xe7\x87\xec\xf5\xab\xaf\xbf\x3d\x3f\x60\xaf\xdf\x89\xff\xbf\x7a\xa7\x37\x80\x70\x63\xd2\x17\x63\xe9\x66\x0e\x86\x12\xe8\xc7\x3c\x08\x68\x2a\x57\xa2\x16\x51\xb1\xbc\x83\x10\x75\xf7\x6a\x36\xeb\x80\xa7\x27\x77\x96\xbb\x69\x37\x6b\x0f\xc1\x50\xd2\x1e\x4d\x0a\x95\x6b\x39\xea\x9a\x68\xad\x25\xde\x8e\xc7\x6b\x37\xab\x65\x90\x81\x57\x80\x0c\x65\x3c\x8b\xa3\xfb\x60\x6e\xce\x3d\x4d\x2c\x6d\x8f\xea\x66\xfc\xce\x90\xe0\x71\xf3\x35\x81\xef\xe4\xba\x23\x04\x4d\x1b\x09\x89\xbf\x3e\x94\xca\xc6\x5b\x7b\xae\x11\x1e\x87\xc3\xb0\x2b\xc3\x15\xb4\x9d\x57\x8a\x45\x9c\xbc\x0e\x99\xa4\xa9\x61\xfc\xef\xc5\xcb\x05\x71\x01\x5b\xc6\x1c\xd3\xc1\xe9\xd7\x71\x9d\xf4\x0e\x92\xe5\xca\xf5\x40\x6d\x5e\x9f\x97\x5b\xe6\xe7\xd6\x9e\xc0\x7d\x58\x39\xe0\x8d\xef\xc0\x10\xb4\x3c\x4c\xc4\x0d\x3b\x2c\xa8\x78\x75\x0c\x89\x2e\x90\xd5\x5f\x56\x6d\xdc\x83\x27\x45\x03\x99\x12\xd7\x53\x96\xf8\x2a\x45\x97\xf9\xc2\xd9\xb2\x14\x19\xc5\x3a\xaa\x7d\xab\x8b\x20\x4a\xe9\x6d\x10\xbe\x5b\x61\x04\x9d\xf1\x62\xd8\xdb\xf0\xe1\xb2\x6d\x00\x4a\xe1\x61\x30\xc9\x2b\xec\x5c\xce\x96\xf5\xd7\xf2\x0a\xaa\xcd\x84\xc2\x0d\x7f\x2f\x41\x7b\xd1\xb5\x16\x9e\x7e\xb7\xba\x9a\x05\xb9\xe8\xba\xe1\x58\x64\x93\x56\x91\x58\x9a\x88\xaa\xd5\x94\x4b\x7e\x7c\xba\x60\x0e\xbb\x33\x2e\xfb\x12\x20\x39\xd4\x5f\xd6\x1d\x45\x0b\xe1\x2b\xfb\xc8\x8d\xef\x08\xf1\x14\xdd\x89\x03\x76\x2e\x6f\x5f\x9a\x57\x5f\xd5\x9e\x34\xef\x96\xb7\x43\xcd\xc5\x0b\xd1\x33\xbd\x28\xf8\xd5\x93\xf1\x46\x5e\x02\x69\x23\x43\xe2\x4e\x6a\xc0\x51\x2e\xa1\x26\xf8\x2f\x09\x9f\xc1\xe1\xa9\x3c\xcb\x86\xb3\xc3\x78\x86\x9e\x17\xfe\x11\xae\x81\x31\xb8\x95\x51\x29\x3a\x0b\x02\x3e\x1c\x26\xc3\xb0\x71\xcb\x0c\xde\x53\xca\x45\x44\x9e\xde\x30\x2f\x9d\x17\xe0\x83\x60\x40\xe9\xca\x88\x8e\x15\x1a\x58\x49\xa8\xae\xd2\x2f\x2c\x56\x54\xb4\xe2\x04\x5c\x9f\xa2\xf8\x31\xc2\x78\x46\x06\xe9\x6d\x44\x4e\x32\x0c\x5e\x23\x3a\x32\x82\x9c\x30\x06\x57\x9a\xfa\x7d\xbd\x34\xa0\xc2\xa5\xbc\x34\x31\x32\xad\x22\x68\xc5\x09\xb8\xb2\x96\xa0\x2d\xe6\xe6\xee\x2c\x61\x2f\x5d\x5a\x56\xd9\x64\xab\x34\x91\xd2\xe5\x59\x86\x5b\xe8\xa4\x77\x91\xac\x52\x8f\x57\xd9\x5e\x6c\xa4\xeb\xcb\xb8\x23\xe8\xc8\xd4\xd9\x49\xef\x2e\xb9\x33\x53\xa7\x45\x09\xb2\xf4\xa8\x66\xef\xcd\xb3\xb8\x48\xcb\xad\x5f\x27\x0a\x8b\x92\x54\x34\x30\xf7\x8d\xca\x40\x7b\xdb\x2b\x6b\xdc\xed\x3f\x40\x78\x20\x96\x78\x41\x6a\x18\x17\x7a\xb2\xa3\xe1\x1e\xc6\xef\xc2\x72\x9f\xbe\x73\x81\x74\xdd\x1b\xe9\x33\x09\xf9\x37\xe9\x0c\xe8\xd8\x5a\x4f\x31\x9c\x2a\x9c\xce\x89\x8e\xd6\x62\x19\x69\xbf\x38\x1d\x84\xa9\x8b\x0e\x9b\xa3\x32\x79\xbf\xd9\x83\x95\x3b\xde\xbb\xcd\x68\xa4\x4e\xbd\xc4\x8d\x9b\x3b\xea\x7a\xb2\xba\xe6\xe6\x7b\x2d\x90\xf0\x25\xf6\x64\xeb\xa0\x47\xcb\x59\xa3\x73\xdd\x3b\xf0\xa2\x23\x6e\x04\x83\x7d\x92\xe3\x98\xa7\x43\x42\xa8\xad\x30\xf6\xaa\x23\x23\xb8\x32\x93\xd9\x44\xd1\x79\xf3\xca\xcb\x4d\xf7\xf9\xa4\xb2\x0e\x88\xdc\xa7\x2b\x32\x07\x07\x74\xf5\x39\xdd\x0e\x8d\xb6\x84\x9b\xf4\xff\x0e\x92\xb7\xa2\xce\xdf\xac\xc4\xce\x09\xe2\x5f\x8b\x47\xf0\xf7\x31\x5c\x9b\xc3\x31\x46\x60\x72\x0f\xeb\xc1\xc9\x1e\xad\xc1\xa1\xd4\xcd\x87\xb4\x74\xe2\xa9\xc5\xa2\xc4\x28\xa2\x70\x4a\xc5\x73\xe9\xc6\xa3\x1c\x03\xe1\x4b\xc2\x68\x39\xe6\x9b\x88\xde\x0c\x49\xd8\x3d\x16\x47\x7c\x04\x31\x0a\xc4\x42\x36\xcb\x1e\xe3\x14\xed\x5c\xc2\x78\x1e\x18\xb6\x51\xd6\x05\x29\x58\x70\xca\x93\x5e\x28\x72\xfc\xb0\xbf\x9b\x24\x15\x26\x61\xb2\xf0\x0e\xd6\x91\x91\xe4\x98\xd9\xbb\x72\x85\x59\xcb\xc8\xb8\x49\x40\xe0\x0d\xdf\x69\x33\x60\x4b\x35\xc2\x1a\xfc\x4a\xac\xcb\x11\x91\x54\x76\xe0\x98\xa3\x09\xaf\xa3\x3b\x30\x18\x4b\x10\xa5\xcb\x18\x2e\xbf\x61\x68\x01\xab\xd9\xc0\xae\x94\x35\x8a\xf7\x93\xeb\x9b\xd3\xcb\x0b\x7d\x17\xda\x26\xb0\xe7\x5d\xba\x1f\x5e\x98\xba\x92\x86\xca\x5e\x0a\x4f\x21\x64\xd0\x95\x1a\x48\xf4\x72\x74\x74\x14\x49\xc6\x64\xc2\x5b\xef\xad\x39\xff\x73\x7c\x7d\x71\x7a\xf1\xee\xe8\x43\x24\x9e\xc9\xe1\x00\x9a\x19\x07\xec\x6a\x84\x04\x73\xdc\xea\x80\x39\x0c\x22\xae\x6c\xde\xc1\xe4\x79\x11\xcc\x17\xe1\x0a\x2c\xdf\x67\xa2\x8c\x37\xe7\x3e\xb2\xfa\xbe\xc1\x60\xe9\xad\xd8\x1d\x17\x53\x82\xf4\xf7\x00\xab\x06\xc8\x63\x9a\xe1\x44\xa0\x5e\xa6\x7c\x06\x4e\x4d\x78\x98\x8d\xe2\xb3\x05\x0f\x43\xc1\x3f\x03\x7f\x2c\x08\xdc\xa2\x55\xff\xf7\xa9\x04\xb9\x8d\x18\xda\x17\xab\x60\x4a\x31\xda\x47\x17\x4b\xf0\xad\x5d\x28\x67\xbf\x8d\xbd\x58\xca\xb3\x24\x8e\x36\x5c\x6c\x36\x23\x76\xca\x94\x0f\x62\x06\x8c\xe6\xa2\x88\xf7\xe0\x05\x21\x7c\x13\xd2\x06\x1d\xae\x1b\xb6\x6c\xe2\xa4\xd1\xe0\x1d\xe7\x91\x32\xaa\xf1\x0f\xc0\x90\x14\xf3\x1c\xc6\x69\xb2\x80\xa8\x4e\x58\x0d\x19\xd4\xc2\x71\x18\x17\x3e\x7b\x0b\xa9\x00\xd2\xd5\xf3\x8c\x89\xa5\xbc\x77\xe7\x65\xfc\x10\xd3\xd9\xc2\x69\x7a\xc8\xfd\x79\xe5\x7d\x58\x4a\x43\x2b\x6a\xac\x50\xb0\x93\xf7\xe5\x65\x52\x83\x57\x3d\xc6\xd4\x36\x46\x5c\x61\x94\xd5\x21\xef\xac\xb2\x43\x88\x8e\xe0\xe5\x39\x5f\x26\x79\x25\x60\x89\x86\xb1\xd2\xe7\xdc\x9b\xb5\xd5\xe3\x7f\x55\x77\x96\xf5\x84\x31\x68\x8d\x0f\x16\xd3\xbe\x98\x13\xd2\x78\x55\xc6\x11\xde\x68\x83\x9a\x35\xb8\xaa\x9b\x2d\xac\xa2\x26\xee\xc1\x82\xb9\x55\x0a\xe6\x75\x10\x7d\xab\xb4\x12\x87\x78\x59\x3c\xc0\x24\xc0\xb2\xf2\x47\x8a\xdf\x08\xce\x0c\x46\xf2\xcc\x20\xde\x7a\xa9\xd0\xa0\x9e\xcb\xa4\x72\x07\x98\x89\x76\x8b\x0a\x83\x93\xce\x9f\x5d\xef\xcf\xae\xb7\xaf\xae\xd7\x7b\x3c\x0c\xa0\xd5\x73\x58\x1e\x62\x3c\xa8\x46\x93\xfd\xd7\x46\xed\xd4\xe2\xc0\xdc\xf1\xb2\x05\xc0\x75\x47\x28\x5e\x1e\xee\xab\x6b\xfb\xad\x06\xae\x97\xf4\x42\x21\x10\x72\x4e\xa1\x93\x63\x1a\x2c\xbd\x74\x85\xd6\xf9\x33\xf0\xff\x5a\x3b\x36\xd6\x41\xa2\xdb\x42\x12\xa2\xc7\xcb\x56\xa3\xa1\x3b\x6f\x00\x15\xb5\xc4\x70\xe4\x50\x57\x0f\xaf\xd9\x4d\x33\x85\x10\x98\xf0\xcb\xe0\x18\xe6\x82\x5f\x23\x25\x84\xb7\xe5\x4b\x4f\x06\x4c\xda\xd6\x07\x3b\xb8\x90\x01\x3e\x9a\x88\x4e\x14\xc3\xdf\x87\x8c\xfd\x53\xce\x69\x4b\xc1\x13\x26\xb9\x4f\x65\x5f\x53\xe4\x98\x59\x0b\x6e\x1e\x30\x24\x41\x21\xef\x03\x7d\xb8\x21\x55\x44\xeb\xd6\x4f\x52\x0c\xa0\xcc\x3c\xdf\xc7\xc0\xa1\xa2\x91\x36\x20\xdc\x71\x8c\x62\x2b\xe3\x27\x1e\xb2\x4b\x38\x8e\x33\x0d\x01\xcb\x60\x0e\x0e\x8e\xfe\x41\x29\x4c\x11\xcb\x4f\x50\x6a\x03\x46\xee\xc6\x6f\x99\x3e\xf6\xfd\xd9\xcd\xfe\xec\x66\x7d\xba\x99\xfd\x38\xe7\xa5\x30\x2a\x1f\x41\x50\x07\x19\xfe\x66\x91\xe7\x49\x23\x06\x0e\x93\x7e\xfc\x62\x07\xcf\x6a\x24\x59\x83\x26\x53\x71\xab\x54\xf5\xc2\xda\x56\xdf\xe7\xf7\x20\x92\xae\xbf\x34\xcb\x81\x10\xf4\xd0\x72\x10\xee\xa4\x5b\x01\x53\x19\x7b\x04\x69\x20\x3a\x9d\x50\x52\xcc\xd7\xb1\x8f\xc1\xc2\xde\x9e\x9e\x4d\xb0\x9b\x70\xcf\x47\x7b\xcd\xdc\x17\x53\xb1\x1e\x0f\x9d\x83\x35\xba\xff\x0e\x12\x51\xcf\xb3\x45\xf0\xc0\xd7\xe7\x46\x2a\x18\xb1\x95\x2d\x05\x9d\x81\x35\xb6\x1f\xce\x6f\xcf\xa6\xa7\x57\xe3\xeb\xe9\xcb\xb7\x97\xd7\xe7\xa3\x93\xf1\x74\xcc\x8e\x2f\x2f\xa6\x93\x8b\x29\xfb\xee\xf4\xe4\x64\x72\xf1\xa3\x16\x17\xad\xb0\x3d\xa6\xab\xeb\xd3\xf7\xe3\xe9\x84\x21\xbf\x4e\x10\x66\x6a\x7b\xa9\x6d\x19\x44\x32\x83\xdc\x2e\x7a\x7b\xc9\xf3\x30\xbe\x13\xe3\x9f\x72\x50\xff\xb1\x5a\xd9\xfd\x50\x1a\x89\x65\x87\x87\x87\x3f\xb2\x1f\xca\xe7\x25\xa1\x1e\x5b\x7f\x8e\xd6\xe8\xa5\x6f\x8b\x16\xca\xe6\x6b\x22\x5f\x9c\x33\xe5\xd8\x0d\x81\xf2\xeb\x39\x2d\x3a\xec\x61\xc8\xe5\x87\x43\x66\x9d\xb9\xa3\x07\x27\x02\xda\x3c\x36\xd5\x52\xe3\xad\x3d\xd7\x50\x7f\xd7\xd1\x78\x47\xe1\x18\x3f\x72\xfd\xe9\xdc\xd6\x7b\x02\x67\xab\x80\xec\xbd\x63\xaf\x9b\xac\xf2\xdd\x6c\xee\xe1\x9e\x71\x96\x7a\xd9\xc2\x54\x2f\x6d\x34\x14\x09\x86\x1a\x69\xbc\xb4\xe7\x09\x56\x11\x65\x80\x8a\x7b\x31\xb3\x9b\xd0\x9b\x68\xad\x25\xc2\x15\x72\xb9\xa4\x9e\xae\x12\xb8\x31\xc6\x58\xd2\xdc\x94\x54\xd5\xae\x90\x35\x86\x3b\x58\x40\x32\x63\x7d\xb6\x91\xd8\xf3\xc7\xe1\xea\x68\x6d\xb9\xa1\x17\xa3\xa7\xb4\x97\x06\x77\xa3\xb8\x74\x87\x7b\x53\x43\x2d\xea\x09\xad\x65\xcd\x92\x42\xcb\xbe\xf1\xce\x9e\x63\xc7\x37\xe3\xfe\xbd\x60\x49\xd3\x90\xbe\x4d\x60\xcd\xdb\x5f\xe7\x19\xd5\xb2\x6f\xa5\x21\x48\xc0\xfc\x50\x06\xee\x1b\xef\xed\x39\x07\x59\xd7\x00\xde\x46\x42\xe1\xaf\x5f\x1f\x37\x5f\x92\x78\xea\xaf\xb5\x36\xde\xda\x73\xb5\xbc\x56\xee\x7f\x83\x2c\x83\xc4\x18\x04\x34\x5f\x13\xf9\x1a\xac\xeb\xb7\x09\x08\xbc\x1f\x4d\x88\x1f\x5d\xf0\x4a\xa3\x7a\x7d\xc7\xdb\x7a\x4f\xe0\x8c\x21\x52\xd1\x64\xe2\x2a\x85\x53\x9b\x7c\x55\x9a\x4e\x64\x8b\xb8\x08\xfd\xf2\xe0\x07\x82\xdb\x1b\x00\xb8\xb1\xb1\xc7\xf9\x60\x72\x49\xd9\x78\xdb\x67\x56\xed\x98\xcd\x2d\x4a\x58\x4b\x97\x05\x59\x5e\xe0\x41\x01\xac\x80\x61\xcb\x9b\xc5\x21\x67\x7c\xb6\x88\xe5\xa2\xb9\xbc\xf3\x13\x0a\xa6\xab\x9a\x0f\x90\x5d\xae\xe7\x5d\x88\xb0\xd7\x4f\xc8\x36\x5a\x50\x6c\x13\xd8\xf3\x4e\x39\x9e\xc1\x25\x5e\xa0\x6f\xac\x76\x22\x6b\x19\x10\xea\x4e\xcb\xbb\xf9\xd2\x9a\x67\x10\xcd\xe2\x14\x22\x7b\xb2\x22\xf3\xe6\xfa\xaa\xd1\xd2\x11\x24\x29\x3b\x52\x15\x6c\x25\x0c\x96\x81\x5e\x9d\x0e\x6a\xb2\x54\x5c\x9b\x95\x21\x60\x4f\x21\x5c\x2b\x98\xa1\x89\xed\x47\x16\x47\x47\x32\x4e\x40\x90\x37\x3a\xd8\x01\x4c\x13\xf9\xc7\x6c\x9d\x69\x02\x48\x64\xe2\x09\x43\x0f\xdf\xbd\x40\xb2\xee\xfa\xd5\x47\x9f\x68\x2e\x55\x59\xfd\xac\xd5\x46\x42\xe0\xff\xe0\x85\x01\xd8\x0b\x2c\xc4\x46\x3c\x97\x29\xa6\x82\xa8\xb2\x36\x32\x48\xb5\x2d\x48\xc6\x22\x3d\x44\x30\xc8\x84\x9a\x60\x8e\xdf\x7e\xbc\x99\x8e\xdf\x9d\x5e\xbc\xfb\x38\x3d\x3d\x9f\x5c\xde\x4e\xcb\xf1\xca\xd8\x47\xfa\xb1\x1b\x0c\xf7\xf5\xf4\xf6\x6a\x40\xdc\x5d\xec\xac\x71\x87\xde\x1d\xd7\x4f\xee\x1b\x6f\x09\x5c\xc5\x8e\xb7\x48\xe4\xae\x49\xdf\x6b\x75\x64\xf6\x72\x60\xac\x32\xcc\xd9\x5b\xef\x09\x9c\x05\x34\x8c\x8c\x58\x9a\x04\x94\xee\xa4\xea\x58\x51\xff\xa9\x53\x8a\xd2\xf1\x60\x3c\x3f\x1f\xcc\x7b\x14\x53\x08\x38\x97\x05\xb9\x29\x7a\x19\xad\xb0\x3d\xa6\x18\x82\x3b\xeb\xa5\x6e\xbc\xb6\xe6\xbb\x34\xc7\x62\xdb\x7c\x4d\xe4\xab\xef\x8e\x5b\xef\xad\x39\x1b\xd7\x3a\x8e\xeb\x9c\x28\x8e\xd8\x9d\x97\x05\xb3\xea\xae\x4f\x2f\xc1\x40\x4a\x91\x67\xd0\xa1\xf1\x92\xc0\x13\xae\x0f\x60\x20\x93\xd7\xc3\xbc\x3c\x0e\x13\x3d\xd0\xb8\xc6\xb2\x2f\x68\x8d\xc5\x14\x1d\xda\x2d\xe6\x73\x3d\xa8\x80\x89\x75\x0b\x11\x45\x86\xbe\xdd\x1d\x23\x6a\x8b\x9d\xa8\xe1\xb3\xdd\x78\x6b\xcd\x15\x96\xda\xd5\x99\x3e\x9e\xf8\x6b\x45\x98\x48\xed\xe5\x89\x72\x7a\x09\x8d\x97\x24\x9e\x06\xd8\x3d\x90\x66\xf5\xb8\xed\x77\xab\xe6\x4d\x88\x55\x47\x72\xe4\x62\x8f\x12\x26\x02\x23\x80\x2d\x02\x7b\xde\xd2\xc6\x5f\x7f\x55\xb3\x4d\x60\xcd\xfb\xdf\xe6\x2c\xbd\x9b\xaf\xad\xf9\xc2\xd4\x28\xbd\x95\x1f\x31\x58\x75\x2d\xe4\xc5\x5d\x10\x81\xed\x4b\x90\x31\x31\xc7\x79\xa6\x05\x88\x1b\x13\x12\x46\x15\x8e\x56\xdf\x6d\xdb\x89\x08\x32\xca\x81\x37\x33\xe6\x22\xd4\xd2\xb9\x4a\xd2\xb7\xa9\x9e\xd0\x5e\x96\x39\x2e\xa8\x73\x1c\x50\x65\xc5\xa8\x67\xbc\xf9\xde\x9a\xb3\x65\x98\x88\xde\xd1\x21\xd4\xb8\x6c\x10\xb0\xf1\x9e\xca\xd9\x26\xdc\xc4\x20\x51\x26\xac\x43\x3c\x0c\x10\xd9\xc1\x3e\xde\xeb\x10\xf1\x5d\xeb\x73\x67\xa7\x20\xc7\xb9\xb0\x69\x3b\xdb\x25\x65\x8b\x8c\x2a\xa7\xb3\xc2\x9c\xea\x09\x63\xe1\xeb\x39\x6f\xbc\xb6\xe7\x1b\x18\xbb\x53\xe0\xd8\x87\x8c\xee\x8d\xae\xbe\x8a\x35\x07\x6d\xc3\x01\x92\x86\x8a\x26\xa5\x8b\xbf\x1b\x67\x95\x57\x58\xcf\x7a\x8b\x80\xc2\x3b\x2f\x0c\x3d\x6f\xe3\x35\x81\x6f\x9c\x24\xa6\x8e\xb7\xf9\x9e\xca\x99\x79\x68\x33\xff\x5a\x6c\x8b\x64\xba\xa8\x2e\x51\x86\x02\xd6\xb2\xc1\x65\x55\x2b\xa7\xf9\xd2\x9e\x27\x46\xbf\xb6\x3a\xa8\x36\x91\xf6\xb9\xf7\x81\xc0\xb6\x69\x3c\x4f\x4d\x96\x5e\xb6\xc5\xac\x71\x14\x2a\x88\x17\x4c\x70\x31\xcc\xd7\x5a\xd1\x06\x4a\x82\xb4\xae\x93\xb2\x16\x0a\x7b\xee\xdb\xb1\x89\x6a\xc3\x89\x5e\xa4\x65\x31\x7b\x1c\x06\x1f\xf5\xc2\xc9\x47\x5d\x94\xd2\xf7\x89\xe6\x4b\x12\x4f\xfd\x38\xb9\xf1\xd6\x9e\x2b\xdc\x15\x19\xd8\x6e\xbc\x26\xf0\x35\xcc\xfd\xcd\x97\x24\x9e\x55\x84\x28\x23\xf3\x16\x2a\x6b\x29\x0f\x1d\xfe\xaa\x5b\xef\xad\x39\x3f\xa2\x3d\x75\x99\xe1\x1d\x8f\xe8\xd1\x97\x00\x5d\x8a\x30\x5e\xbd\x56\x28\xa5\xa8\x35\x9e\x95\x61\xf1\xb4\x72\x5a\x37\xa9\xa8\xed\xca\x92\x5e\x0c\x76\x2f\xc0\xb2\x5e\xd5\xd8\x91\x0c\x7e\x51\x66\xde\xb8\xc9\xc1\x78\xf3\xf3\x67\x7d\x0e\x88\x9e\xdc\x28\xa8\x8f\xdf\x96\x41\x55\x92\xc0\x84\xa7\x9d\xce\x49\x92\x39\xe0\x83\x81\x92\x24\xad\x4c\x02\xcb\x16\x3c\x4c\xd8\x0f\xc7\x97\xe7\xe7\xe3\x8b\x13\xbd\x95\xb4\x55\x19\x1a\x82\x22\xca\x2f\xef\x95\x73\x4e\x26\xb8\x96\x3e\x29\x7a\x33\x20\xdb\x62\x24\x1c\xd2\xbc\xad\x8c\x67\xd2\x65\x0d\x67\x51\x82\x22\xfd\x24\xc8\x3e\xdd\xc2\x58\x2a\x18\xc5\xf7\x4c\x3d\x51\x41\x8f\x4c\x20\x2c\x0b\x92\xb0\x88\x55\x41\xa9\x94\xd1\xf4\xc8\x48\x4b\x91\xb8\x6d\x1b\xa2\xb2\x04\xae\x93\x4d\x97\x0d\xdd\xcc\x5a\x8c\x71\x58\x6a\xde\xb4\x99\x4c\x48\x27\xb3\x2d\xae\x23\xb1\x18\x7b\xd2\x1e\x85\x13\xeb\x04\x90\x28\x2c\xc5\x76\x66\x6a\xb8\xc0\x10\x4b\x56\xd8\xf0\x43\x82\x3b\xf3\x21\x6f\x7f\x86\x14\xec\x6f\x43\xe9\x28\x57\x05\x07\x92\x9e\x4a\x26\x74\x9d\x45\x28\xf2\xcf\xf9\xb2\xf9\x4d\x88\x07\x16\xdf\x92\x55\x31\x12\x8e\xd8\xe7\xa1\x5a\xd6\x97\x7f\xb6\x26\xeb\x35\xa2\xa2\x33\xa1\x60\x6c\xda\xd6\xb1\x65\x91\x49\xa7\x4c\x96\xe1\x8c\x09\xc6\x4e\x60\x60\x27\xd7\x14\x26\x9c\x8e\x8c\x86\xc4\xda\x1b\xe3\x70\xd8\x08\x96\x8e\xb4\xc2\x14\x4c\xf5\xe0\x96\x2f\x64\x7f\x16\x7b\xdc\x33\xd8\x90\x7d\xfe\x7c\xde\xd8\xf2\x1e\xd4\x8d\x9d\x1a\x74\xac\xd5\x90\xeb\xa0\x8a\xd4\x93\x95\x74\x65\x82\xc7\x75\xcc\xba\xea\x55\x39\x42\x1e\xb0\xfa\x15\x1d\xc6\xa7\xbb\x88\xa3\x37\x70\xc5\x5c\x16\x19\x4b\x73\xe7\x8e\x75\xdf\x1f\x45\x33\x4a\x6b\x5e\xcb\x23\xfe\x72\x84\x94\x43\x14\x66\xf9\x2a\x1f\xad\x3d\x7c\xbb\xae\x0b\xfa\xb2\xa3\xe0\xbe\x51\xe7\x68\x25\xdb\xce\x83\x37\xab\x32\x43\x20\xc0\xae\x73\x22\xed\xf7\x3b\x3a\x1c\x99\x05\x05\x5f\x39\xeb\xc0\x3c\x88\x33\xaf\x58\xc6\xca\x9e\x2a\x1e\xfe\x52\xef\xbf\x5b\x4d\x63\xc2\x3c\x08\xdb\x2f\xc0\x4f\xe2\x0c\xcc\xb9\xaa\x63\x32\xad\x00\x1d\x19\xcd\xba\x2c\xee\x94\xa3\x23\x23\x9d\x0e\x1b\xce\xe3\x1d\x6f\x39\xd7\xc1\xa4\x65\x58\x01\xb8\xcc\x0c\x52\x2e\x9d\xd7\x1f\xe0\x83\x97\x0f\xfc\xe3\x63\xf1\x44\x6d\x8b\xe1\xc3\x4f\x21\x87\x36\x4f\x0f\x65\x48\xa8\x99\x8c\x17\x5a\x46\x34\x14\xab\xd9\x87\x75\x14\xd1\x66\x51\x9b\xc0\xd6\x4f\x80\xa5\xb5\xc6\xfe\xe3\xc7\xff\xf8\x5f\x01\x00\x00\xff\xff\x87\xd2\xbd\x7c\x2d\xb5\x02\x00")
func cf_i18n_resources_en_us_all_json_bytes() ([]byte, error) {
return bindata_read(
_cf_i18n_resources_en_us_all_json,
"cf/i18n/resources/en_US.all.json",
)
}
func cf_i18n_resources_en_us_all_json() (*asset, error) {
bytes, err := cf_i18n_resources_en_us_all_json_bytes()
if err != nil {
return nil, err
}
info := bindata_file_info{name: "cf/i18n/resources/en_US.all.json", size: 177453, mode: os.FileMode(436), modTime: time.Unix(1426081216, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _cf_i18n_resources_es_es_all_json = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xec\xfd\x4b\x97\x1b\x47\x76\x28\x0a\xcf\xfd\x2b\xf2\xe8\x1b\x90\xfa\x56\xa1\x28\x75\xb7\xbd\xce\xa5\xd7\x5d\xbe\xc5\x2a\x90\xaa\xe3\x7a\xb9\x1e\xb4\x75\x44\x2d\x76\x00\x19\x85\x4a\x31\x91\x09\xe5\xa3\x28\x50\xd6\xfd\x2f\x1e\xf6\xa0\x47\x9e\x79\xca\x3f\x76\xf7\x23\x22\x1f\x00\x32\x32\x22\x32\x51\xd4\xf5\xed\x5e\xab\xc5\x02\x10\xb1\xf7\x8e\xd7\x8e\x1d\xfb\xf9\xc3\xdf\x05\x41\xf0\x2b\xfe\x07\xfe\xf7\x55\x14\x7e\xf5\x32\xf8\xea\x5d\xf2\x2e\xb9\x3d\xbd\x7a\xf9\x2e\xf9\xea\x40\xff\x52\x64\x22\xc9\x63\x51\x44\x69\xd2\xd5\x64\x99\x86\xd1\x7d\x24\x11\xc4\xbd\x88\x73\x89\xdf\xff\x76\xd0\x01\xff\xfb\xb4\xcc\x82\xff\x75\x73\x79\x11\xe4\x45\x16\x25\x8b\x20\x5f\x27\x85\xf8\x25\x88\xf2\x20\x4a\x1e\x45\x1c\x85\x87\x41\x70\x95\xa5\x2b\x99\x35\x7e\x2a\x1e\xa2\xfc\x65\x10\xcc\xef\x83\x5c\x16\x93\xac\x4c\x12\xe8\x3a\x91\xc9\x63\x94\xa5\xc9\x52\x26\xc5\xe4\x51\x64\x91\x98\xc5\x72\xb2\xc8\xd2\x72\x15\x3c\xfb\xf5\xdd\x57\x89\x58\xca\x77\x5f\xbd\x7c\xf7\x15\x80\x2d\xe1\xaf\x83\xed\xaf\x7e\x7b\x66\x1c\xe9\xef\x97\xd8\x27\x9f\xf3\xbc\x10\x8b\xff\xd7\xcc\xf9\x7e\x88\x75\x98\xf3\xff\x7f\x70\xfb\x20\x73\x09\xc4\x64\x8f\xd1\x5c\x06\xab\x18\xc6\x19\x3c\x88\x47\x19\x88\x24\x10\x79\x9e\xce\x23\x51\xc8\x30\x98\xa7\x79\x71\x18\x1c\x67\x12\xe6\x00\xc6\x2a\xaa\x1e\x51\x02\x83\x48\xe0\x8f\x8f\x51\x1c\xc3\xa7\x39\xcc\x0a\x0e\x92\x7b\x74\xce\x20\x21\x0e\x42\x99\xa4\x08\x7d\x07\xfa\x7c\x25\xe7\x30\x8a\x39\xc1\xc9\x9b\xa4\x7c\x8c\x8a\x07\x40\x21\x97\x87\xc1\xe9\xfd\x2e\x4a\xd2\x7b\xa6\xa0\x58\xaf\x24\xce\xf9\x1c\xa9\x96\xe1\x01\xb4\x45\x60\x4c\xe9\x4c\x32\xb1\x99\x0c\x0f\x77\x4e\x5d\x91\x95\xa6\x99\x3b\x5a\xad\x60\xe1\x45\x06\x80\x8d\x6c\xe8\x4c\x04\xd8\x54\x2e\x57\xf2\x53\xea\xc9\x8d\x10\xc0\xaf\xbf\x1e\xc2\x3f\x17\xb0\xec\xbf\xfd\x16\x7c\x14\xb9\x46\x1e\x94\x39\x2e\x88\x9a\xf2\xe5\x52\x24\x61\xf0\x67\x68\x7c\xcc\x7f\xff\xf6\xdb\x9f\x8d\xe4\x8d\x07\xda\x61\x3c\x17\x69\x20\x56\x51\x20\x93\x70\x95\x46\x49\x81\x47\xa1\x7b\xa7\xf4\x35\x77\xc0\x7b\x9d\x96\x85\x0c\x8a\x14\x17\xbf\x4c\x96\x62\xb5\x82\x41\xc2\xe0\x60\x13\x06\xb4\x15\x92\x22\x5e\x07\xea\x7b\x68\x06\x9b\x0c\x30\xaf\xe2\x68\x4e\xd4\x98\x68\x1c\x0f\xb4\xc3\x78\xf0\x82\x0b\x82\x3b\x38\xbf\xcf\x80\xa1\x2c\x45\xf6\x41\x16\x70\x84\xe0\x08\x4c\xf2\xe0\x66\x7a\xfd\xf6\xf4\x78\xfa\x0c\xb1\x3d\x46\xf2\x23\x1c\xb6\x7c\x9e\x45\x2b\x44\x97\xe3\x19\x89\x92\x30\x7a\x8c\xc2\x52\xc4\xea\xdc\xa5\x78\x9a\x16\xd1\xa3\x4c\xf4\x99\x32\x8d\xf8\x29\x91\xbb\xce\xc9\x51\x9e\x47\x8b\x24\xc8\xd2\x58\xe6\xcc\x2f\x9e\xe1\xbe\xe5\x75\x00\x92\x33\xd8\xe8\xc8\x7f\xd3\x6c\x31\xc1\x46\xcf\x02\xdc\xdb\xbb\xdb\xe4\x2b\x18\x13\xb7\xea\x9b\x8d\x23\xc4\x2a\x32\xc4\x0b\x07\x26\x19\x1b\xa9\xeb\x2c\xd0\xda\x20\xf8\xd7\xb7\x22\x5b\xc8\xa2\x3a\xb7\xb4\x2c\x05\x7d\x17\x24\xb0\x38\x84\xad\x6f\x70\xbe\xd0\xbc\xa9\xee\x82\x0f\xf3\xd7\x4f\x2b\xac\xc2\x06\x90\x95\xc8\xf0\xae\x88\xe5\x7c\x0e\x8d\xe1\xf7\x32\x11\x41\x52\xca\x47\xd1\x86\xe8\x4a\x6f\xa9\x4e\x40\x9c\xc2\x55\x1e\x4c\x80\xdd\x5f\x9d\x06\x93\x49\xfe\x21\x5a\x4d\xf2\x3c\x9e\x90\x28\x40\x04\x3e\x03\x44\xd4\x14\xb9\x99\xa1\x15\x0c\x37\x2f\x57\xab\x4c\xe6\x2c\x2f\x04\x32\xcb\xd2\xac\x6f\xcc\x25\x8d\xd9\x96\x10\x1b\x3a\x68\xc6\xe4\x63\x04\x73\x1f\xc8\x1c\xd8\xdb\x06\x1d\xd6\x33\x05\x7f\xbd\x82\x3b\x17\x2e\x93\x73\x91\x88\x05\x08\x44\x13\x16\x25\x24\x1d\x81\x25\x7d\x49\x2c\x71\xc6\xcd\x02\x31\x9f\xa7\x25\xb0\x7a\xfc\x79\x25\xd6\x28\x18\x01\xcb\xb8\x4f\x0d\x77\xd9\x7e\x90\xb8\x8c\xf1\xf8\xf5\xfb\x8b\xa3\xf3\x69\x20\x4a\x60\x38\x28\xa0\xfd\x5f\xf2\x17\xb1\x5c\xc5\xf2\x10\x6e\xcf\xe0\xdd\x57\xef\xde\xbd\xfb\x6a\x05\x82\xcc\xc7\x34\x0b\xf1\xef\x77\x5f\x05\xcf\x81\x2d\x0a\x90\x52\x7e\x2e\x41\x0e\x02\xc1\xf1\x1e\xb7\x13\x5c\x1c\x49\xa0\x1b\x7e\x6d\x1a\xb0\x0f\xc6\x29\x62\x84\x15\x85\x16\x30\x0f\x70\xdb\x87\x24\xfe\xe1\xfe\x09\xe1\x13\xf0\xdf\x58\xec\xc2\x3e\xe6\x4c\x2c\xd7\x15\x06\x24\x09\x8f\x90\x9a\x81\x7b\x38\x22\xfa\x27\xc5\xba\x05\x73\x94\xaf\xcd\x6b\xef\x88\x92\x38\x44\x35\x05\xb4\xd3\x6b\xb4\xc8\xbb\x25\x22\x8d\xd2\xfc\xeb\xa1\xbb\x61\x9e\xae\xd6\x93\x1c\x1e\x0b\x70\x33\xde\x5c\xde\x5d\x1f\x4f\x27\x47\x57\x57\xc1\xed\xd1\xf5\x9b\xe9\x2d\xfd\xf9\xc3\x24\xd5\x1f\x2f\xaf\xdf\xfc\x08\x9f\x73\xfd\xf9\xe6\xea\xe8\x78\x8a\xdf\x4c\x92\x74\x02\x0c\x01\x05\xb3\x1f\xed\x26\x62\xbf\x78\x7d\x66\x82\x19\xd3\x73\x98\xf4\x02\xb7\x79\x86\xab\xa4\x0e\x1f\xcf\x3c\x72\x3e\x6e\x04\x62\x9e\xcc\xc4\xbc\x00\x79\x00\xc4\xa6\xc9\xa4\x82\x41\xb2\xfb\x2a\x4b\x97\xab\x82\xf6\xca\x2c\x2d\x1e\x2c\x77\x46\x03\x7d\x94\x81\x60\xb6\x9c\x65\xf8\x02\x01\x52\x4a\x78\x72\xa5\xc1\x3a\x98\xc7\xf8\xf2\xa0\xcd\x00\x8d\x4b\x29\xb2\x5c\x36\x48\x11\xc8\x21\x64\x93\x1a\xe0\xd1\x0b\xe0\x20\x22\xfb\xfc\x1f\xc1\x0a\xa8\x11\xcb\x99\x18\xbe\x63\x14\x03\x07\x7e\x9c\x06\xcf\x37\x07\x0e\x42\x13\x4c\x5a\x50\x66\x31\xce\x56\x3a\x2b\x04\xb4\x85\x2b\x2c\x91\x93\x22\x5a\xca\xed\xb9\xb4\x62\x20\x3b\x51\x22\x36\x89\xe2\x6c\x0d\xf4\xe7\x12\x99\x05\x8c\x35\xc4\x21\xd3\x95\x83\xd7\xe8\xa3\xfc\xa4\x6e\x8b\x78\x0b\xe9\x80\x19\x28\xb7\x0f\xf2\x64\xb5\x57\x46\xea\x81\xd8\x8a\x9f\xd2\xce\xda\xef\xa4\xec\x91\xa7\xba\x61\xde\xc1\x5a\x69\xf8\x23\xf3\x55\x23\x51\x2b\xf1\xf7\x7f\xff\x31\xbd\x3e\x09\x9e\xb3\x1e\x61\xdd\xc1\x70\x80\x40\x10\x2c\x4b\x3c\xd8\xf9\x18\x93\x51\xe3\x95\x5a\x81\x21\x76\xb2\x9a\x8a\x02\xe8\x98\x56\x34\x8c\x30\x2d\xab\x32\x7f\x00\xa1\xee\x8a\x3f\xfd\x30\x99\x05\xaf\xee\x4e\xcf\x4e\x80\x9f\xff\x33\x7d\x85\x4c\x7d\x1e\x1c\x5f\x9e\x9f\x1f\x5d\x9c\xe0\x87\x30\x38\xb9\x3c\x3f\x3a\xbd\xc0\xbf\xef\x03\xf8\xf6\xf4\xf5\xf4\xe6\xf6\xfd\xd5\xd1\xed\x77\x96\x37\x8d\x46\x39\x26\x36\x5b\x45\xcc\x26\x19\x83\xc6\x60\x4d\x52\xef\x6a\x5c\x66\x8b\xa3\x32\x8c\x8a\x14\xa5\xd0\x6b\x29\xc2\x49\x9a\xc0\x45\x06\x12\x27\x09\xf5\x29\x3e\x39\x48\xd6\xa4\xed\x98\x49\xb8\x3c\x8a\xdc\x4c\x69\x0b\xe4\x11\x02\x4a\x89\xd5\xa4\x31\x30\x7a\x39\x2f\x4a\x38\x67\x82\x60\x66\x4b\x38\x61\x9f\xff\x33\x81\x6d\xc6\x90\x25\x31\x25\x64\xd4\x80\x76\xc0\x90\x6a\xc1\xfa\x34\x81\x67\x41\x4b\xb0\xc6\xf3\x95\x1f\xf0\x03\x8b\x45\xea\xf9\x83\x48\x16\x4a\xa7\x77\x40\xdf\xc0\xcb\x16\xf5\x7a\xf0\xf4\x07\xe9\x3b\x8e\xe0\x22\xee\x1f\xf3\x06\x4e\x11\xa0\x16\x25\x91\x3f\x09\x7d\x98\x34\x52\x7a\xd5\xe1\x25\x0e\x97\x70\x24\x08\xad\x84\xdf\x60\xd2\x7f\x2a\x41\x7e\x81\x73\x9b\x07\xf1\xe7\xbf\x02\x52\x9e\x8e\x85\xc8\x0b\x6f\x51\xff\x4a\x00\x13\xcd\x1f\xd2\x32\x0e\x51\xe3\x23\x82\x4f\xd1\x2a\xb8\x8f\x62\x79\x50\xdf\xcd\xcd\x2f\x51\x36\x00\x0a\xe6\x22\x0e\xc2\x28\x83\x19\x4a\xb3\xf5\x61\x70\x95\xe6\x11\x8e\x16\x15\x45\x40\x31\x7d\x7a\x64\x89\x03\x86\x8c\xe3\x2a\x80\x81\xc2\x18\xb3\xa8\x58\xf3\x14\x42\xcb\x3c\x25\xe5\xdc\x3d\x08\x41\x00\xf2\x23\x08\x67\x88\xed\x21\x5a\x3c\x48\x93\xc6\x15\xbe\x3a\x13\x41\x56\xc2\x54\x84\x72\xa6\xee\x28\x10\x1d\xb2\xf9\x43\xf4\x98\x22\xad\x07\xb4\x45\x90\x7a\xb1\xf5\x4b\x8a\x57\xa9\x26\x3d\x4a\x79\x2c\x87\x08\x11\xc9\xc6\xb9\x07\xce\x8e\xbd\x50\x44\xca\x52\xa2\x5d\x0a\x45\x7c\x28\x42\x5c\x08\x68\x00\x1c\x4f\x26\x22\xa4\x9d\x0b\x0c\x8f\xa6\x65\x29\xd6\x69\xe6\xa1\x83\xc5\x65\xc0\x53\xbb\x2c\xe3\x22\x02\x1e\x8c\xfa\xb4\xea\x7a\x83\x3d\x12\xdd\xc3\x7c\x98\x6c\x44\xee\x00\x5c\xb6\xc8\x0d\x5e\xb0\xf5\x89\x7d\x8b\x5a\x30\xb8\x3b\x60\x4b\xaa\xe3\x5e\x9d\x09\xd4\xa8\xc3\xd4\x24\xfc\xd8\xa7\x8b\xd9\x4c\xf5\x06\xe8\x29\xdc\x41\x51\x22\x5a\xd0\x1b\x5b\x5f\x92\x10\x42\x0f\xf8\x2d\xd8\xce\x03\x3a\x91\x20\x91\x93\x4d\x63\xd7\xeb\x9a\x26\x90\x47\x45\x2a\xbc\x6a\x8c\x92\x88\xb3\x67\x76\x3b\x71\xd5\x47\x9f\xf0\xac\x15\x16\x62\x01\xb0\xbb\x1a\xb3\xd0\xe0\x7c\x83\x46\x6b\xc1\xf0\xf0\x1b\xd8\xd2\x33\xd8\x3e\xf7\x30\x1d\x65\xa6\x04\xae\x4a\x99\x69\xb9\x9c\xbb\xf9\x5c\x8b\xcd\xad\x83\x07\x31\x8b\x62\xfc\xf1\xbe\x4c\x88\xdf\xa1\xb2\x26\x94\x4a\xca\x2a\x15\xb6\x00\xbe\xf3\xe6\x6c\x68\x96\x51\xcf\x0c\x94\x93\xe0\x2c\xcc\x45\x42\x3c\x0e\x38\xc2\x0c\x6e\x1b\xd4\x73\xc3\xf8\x32\x89\x63\xa0\xe7\x12\x9a\x63\x90\xdd\x21\xab\x3b\x7c\x97\x00\x90\xd3\x42\x33\x47\x36\x25\x05\x68\x48\xc0\x03\x96\x65\x62\xcd\x27\x8c\x2c\x67\xe9\xec\x27\x60\x28\x68\x30\xcb\xf1\x59\xc3\x4a\xe2\x19\x1b\x1d\x24\xf0\xaa\x58\xe6\x46\x86\xf6\x3b\x26\xf6\x29\xe7\x9c\x21\xe0\x9f\xcd\x91\xd0\xe0\x06\x8d\x86\xe1\x52\xf3\x57\x02\xde\x13\x97\xd4\x07\xef\x20\x82\x8d\x2f\x69\xbc\x89\xf0\x08\x90\x78\x83\x3d\xf3\x9f\x61\xbb\xca\x60\x06\x4f\xe6\x0f\x78\x7d\xe1\x8f\x4d\x3b\xe2\x43\x04\xe4\x31\xf2\x00\x1b\x66\xf2\xe7\x12\xae\x15\x7a\xaa\x15\x6a\x14\x80\x18\x2d\xac\x80\xe2\x2d\xee\xf0\xe0\xa7\x1c\x98\x23\x0d\x4f\x89\xdb\x2f\xe9\xc7\x1f\xe8\xbf\x30\xa1\xea\x5f\xe8\xf5\x15\x4c\x63\x91\xce\xd3\xf8\x1d\x4c\xed\xbb\xaf\x8a\xf9\x0a\xad\xa5\xf5\xcf\x30\x4c\xe0\xb6\xb4\x85\xb8\xc5\xb7\xdf\x1c\xfe\xe1\x4f\x7f\x3a\xfc\xf6\xf0\xdb\xff\xd9\x6e\xc9\x4c\x8a\xda\xfc\xf1\x8f\xdf\xfc\x03\xbc\xf5\xf8\xb7\xdf\xe8\xdf\x1f\xf7\xb9\x2b\xff\xb6\x9c\x5f\x70\x39\x5d\xce\x2d\xdd\xe9\x22\x06\x21\x8c\xf8\x3f\x3e\xb7\x85\xb6\x37\xe9\x87\x05\x7f\xd9\x6d\x3a\x82\xaf\xce\x4b\x18\x06\xbe\x92\xb9\x3f\x5c\x78\xa8\xa2\x42\xe5\x01\x19\x91\x3a\x21\xb9\x90\xfa\xc3\x24\x0a\x2e\xee\xce\xdf\x9f\x5e\xdc\xdc\x1e\x5d\x1c\x4f\x6f\xf0\x01\xf6\x21\x38\x39\xbd\xf9\x67\xfc\x6b\x19\x9c\x4f\xcf\x2f\xaf\xbf\xc7\xbf\x93\xe0\xbb\xcb\x9b\x5b\xfc\x6b\x15\xd0\x23\x88\x14\x83\xd0\xed\x98\x9a\x16\xc1\xed\xe9\xf9\xf4\xf2\xee\xb6\xe7\x65\xa5\x30\x4e\xaf\x2f\xdf\x9f\x4c\x35\xde\xd3\xa3\x1a\xf1\xf1\x65\x03\xf3\xe9\xd1\x26\xea\xeb\xbb\xdb\x23\x2b\xd4\xf6\xd3\x20\x42\x3c\x91\x30\xaf\x86\xe5\xd8\xd5\xc6\x1e\x43\x98\x4a\xb6\xf9\xca\x5f\x22\x90\xcb\x51\xbd\x40\x92\x48\x37\xbe\xfe\x1e\xf6\xd8\xf1\x19\x11\x83\xa0\x14\xae\xb5\x09\xbf\x1b\xef\xf7\x02\xb8\x0a\x6a\x1f\x64\xf2\x09\xc4\x85\xc1\xe8\x52\xb4\x6c\x77\xa3\x5b\x13\x3a\x14\x53\xbc\x71\xc9\xe5\xaa\x58\x77\x63\x40\x25\x75\xf0\x88\xba\x25\x4f\xf8\xb8\x08\x08\x01\x59\x14\x3c\x82\x0e\xe0\x09\x29\x91\x4d\xb6\x94\xae\x07\x81\x3c\x5c\x1c\x06\x0f\x45\xb1\x7a\xf9\xe2\xc5\x3a\x2d\xb3\xf7\xb8\x5a\xa8\xff\xe9\x26\x6d\x54\xe0\xee\x63\x7a\x14\x51\x4c\x0c\x0a\x78\x32\xc2\x33\x6d\x7f\x9b\x3e\xce\x14\x80\x4c\xbc\x4a\xe9\xd5\x0f\x6f\x5e\x1e\xf7\x52\x7c\x80\xcb\x05\xa4\xe5\x20\x2a\xf8\xf9\xcb\x73\xb3\x8a\xcb\x85\x42\x69\x90\xfc\xc6\x82\x6b\x3f\x12\x44\x77\x9f\x96\x89\x61\x8b\x27\x29\x3c\x04\x80\x63\x17\xbe\x7b\x3c\x93\xcb\xf4\xb1\x7a\xd9\x23\x37\x48\xef\x89\xe2\x1c\x1f\x7a\x91\xcc\xbb\x71\x3b\x74\xb5\xb7\x6f\x7f\x75\x45\x93\x06\xd7\xa6\xbe\xe1\xab\x59\xd0\xd7\xbb\x5a\x01\xc0\x1c\x8a\x42\x18\xdc\x45\x86\xc0\xb2\xa6\xf8\xeb\x8a\x1f\x11\x33\x35\xbc\x1d\x0c\x2d\xad\xb1\x1d\x55\x4e\x51\x71\x94\xa0\xef\x4f\x4a\x6a\x1f\x6d\x2f\x62\x39\xe0\x38\x4e\xcb\x30\x78\x8d\xe3\xcc\xba\x99\xd7\x5d\x82\x6f\x5a\x74\x06\x22\x4d\x0a\xf0\x83\xf8\xf3\x5f\x13\x89\x9a\x1a\x44\x02\x38\x52\x7e\xe2\x69\xe0\x25\xa9\xd8\x93\x2e\xf0\xf6\x63\x38\x39\x79\x71\x0d\xf7\xef\xdb\x69\x70\x75\x76\xf7\xe6\xf4\xa2\x93\xc4\xcd\x9f\x6d\xb5\x34\x5b\x18\x82\xeb\xe9\xd5\xe5\xcd\xe9\x2d\x48\x1b\x9d\xc8\xec\x3a\x39\x8c\xf2\x2d\xca\x3c\x27\x06\x7c\x9b\x0d\xec\x61\x5f\x9d\x56\x9e\x69\xdd\xf0\x77\x36\xf2\xc2\x11\x3c\xaf\xee\x88\x1c\x2e\x09\xb1\x8a\x0e\x1b\x36\x88\x6e\x23\xd7\x06\x8c\x9f\x6c\x40\x78\x11\xf8\xb2\x93\x84\xa9\x46\x0f\xcd\x5f\x0e\xc5\xc2\x5e\x8b\x91\x86\xf9\xdb\x6f\x56\x23\x37\x75\x1b\x89\x8e\xe0\x39\xfe\xfe\x28\xb3\x1c\xf0\xeb\x9f\xdf\xf2\xc7\xdf\x7e\xb3\x5b\xa0\x01\x50\xfd\x47\xe1\x33\x95\x03\xe7\xf1\xea\xc6\x80\xaa\xf9\xa3\x3d\xcc\x39\xbe\x3f\xf1\xdd\xab\xfc\xd9\x83\x5c\xce\x4b\xd4\x9f\x07\xe4\x4f\x9d\x93\x68\x0f\x94\x6b\x7b\xe0\x6f\x06\x37\xef\x61\xc0\x3c\x68\x56\xfe\xe0\x1b\x68\x10\x4b\x0b\x89\x05\xc1\xce\x90\xec\xa9\x0d\xe1\x79\x44\x8e\x78\x0d\x99\x8a\xc4\x8c\xee\xfb\xcd\xaa\x8f\x23\x05\x68\xa7\xc8\xb4\xd7\x2d\x6a\x56\x56\xab\x6e\xfc\x8b\x4c\x2e\x04\x99\x37\xc8\x00\xc2\x36\x8e\x58\xb4\x3b\xb9\x10\x40\x9b\x82\xb0\xc3\x7c\xde\x5d\x9f\xc1\x09\x45\x32\x36\xbd\xa9\x61\xa8\x68\xe9\x83\xef\x2e\xb3\x85\xfa\xee\x85\xd2\xd2\xc2\x97\xa4\xf9\x55\x5f\xf3\xd2\xdc\x55\x4b\x73\x78\xd8\x2d\xbe\xf0\x78\x50\x2a\xa0\xe1\x54\x24\x88\x6d\x0a\xa4\x3d\x05\x64\x8a\xee\xa6\xc1\x7e\x7a\xe2\x08\x06\xd3\xf6\x14\xd7\x42\x9e\x5a\xff\x99\xc4\x09\x24\x8f\xfd\x38\x66\x4f\x69\xd8\x1f\xac\x0d\x3b\x7e\xad\x05\xab\x17\x02\x21\x1d\x06\xc1\xb5\x24\xd3\x3d\x02\xd8\x00\xab\x45\xb0\x1e\xf0\x09\x59\x9e\x32\x5c\x23\xa5\xac\x8f\x58\x59\x86\x0d\x68\x5a\x49\xb3\x05\x07\xc3\x30\xe9\xff\x4d\x86\x35\x70\x1d\x73\x0a\xa3\x68\x0c\x84\x9c\x6c\x98\x40\xe4\x85\x2c\xe8\xf3\x96\x7a\x06\x83\xfc\x3e\x2d\xa1\x3d\x6a\x31\x8b\x6c\x0d\x47\x50\x51\x87\x23\xe9\xea\x45\x44\xc3\xb8\x13\x3d\x14\xb6\x8c\xa9\xe6\xcd\x51\x47\xc9\x63\xfa\xc1\x34\x83\x40\xc0\x77\xe9\x47\xf9\x88\xe6\x54\x78\x50\x6b\x85\xea\x7d\x94\xc1\x1b\xe9\xbe\x8c\x63\x24\x09\x80\x61\xe8\x08\xe1\x0c\xa2\xe5\x0a\xa5\x77\x78\x3f\xb5\x68\xc5\x9f\xe8\xad\x80\x1f\xb6\x29\x66\xda\xba\x37\xcf\x9f\x79\x32\xff\x36\x97\x3e\x73\x69\xfd\xd6\x88\x1b\xd1\x04\xa4\xbd\x56\xa1\x41\xa8\x99\xd6\x0f\x3e\xf6\xc1\x88\xc8\x60\x87\x76\x3a\xe8\x03\x0c\xb2\xfb\x6d\x3d\x0e\x50\x87\x43\xe7\x8e\x8e\x56\xd4\xe4\x16\xef\x07\x54\x76\x3a\xc6\x0f\x5f\x85\x28\xd9\xcb\x3a\x58\x80\x1d\x77\x25\xb6\x10\x8e\xb3\x16\x3b\xc0\x7a\xaf\x06\xf9\x09\xc5\x92\xac\xd7\x55\x08\x12\xc9\x2e\xdd\x93\x7d\x8b\x4e\x34\x9f\xff\x02\x57\x4e\x9a\x91\x65\x42\xc4\x20\x59\x02\x9f\x20\x79\x03\x60\x00\x95\xc2\x67\x4e\x59\x1a\x59\x96\xc0\x31\x66\x52\x45\x75\x48\xf4\xa1\x81\x41\xea\xcf\x2a\xc0\xd0\x18\x94\xa2\x9c\x99\xd8\x95\x85\xfc\x93\x1b\x5e\x40\x21\xc8\x41\x89\x72\xf3\x69\x46\x7c\xc8\xd8\x3b\x38\x05\xe3\xe4\xba\x97\xb4\xf5\xa3\x13\x4c\x12\x00\x22\x56\xfa\x2b\xcb\x19\xf4\x8d\xbb\xd5\x8c\xd3\xb8\xe1\x4f\x18\x73\x70\x61\xa1\x57\x8b\x5d\x70\xe6\xf0\x96\x4f\x09\x9e\xcc\x22\x2f\x55\xe4\x56\x54\x60\xdb\x4a\xd1\x7d\xcd\x9d\xed\x90\x40\x51\x2f\x8a\xbd\xfc\x64\x90\x2d\x89\x1a\xe7\xea\x63\x9a\x7d\x20\x07\xa9\x0f\xd1\x6a\x55\x8b\xe2\x14\xe8\x89\x94\xb8\x90\xc7\x73\x56\x41\x14\x71\x41\x82\x75\x5c\xf9\x4a\x11\x58\x72\xa8\x1b\x8b\x7e\x75\xc8\x67\xa4\xfd\x2c\x48\xe6\xbe\x61\x26\xc0\x8d\xdc\xe6\x77\x2d\xd8\xf6\x11\x47\x0b\xda\xf9\x26\x70\x2e\x74\xc3\x43\x9f\xa2\x83\x68\x23\xc1\x79\x0d\x23\xb1\x48\x52\xb8\xb4\xe7\x39\x1b\xab\xe3\x74\x41\x66\xdc\xee\x73\x01\x47\x51\x72\xbf\xcf\xff\x89\x1d\xd3\x5c\xb9\x2c\x46\xf3\xa8\x28\x19\xbc\x88\x2b\x4f\xb3\x90\xdc\x84\xfc\xa8\xcd\xbb\xf5\x4e\x1b\xbf\xda\x43\xe5\x28\x42\xc1\x96\x57\xf5\xcc\x34\xb2\x76\x8a\xff\xa3\x67\x26\xd9\x72\x03\xa1\x9d\x2e\x87\x60\xe7\xb7\x1a\xd3\x10\xca\xfb\x28\x61\x9f\x41\x5a\x02\x33\x93\xf4\x01\xe1\x4b\x1f\xc6\x2a\x32\x40\xd4\x2e\xf4\x4f\x11\x05\x49\x0a\xc5\x90\xf3\x2a\x7a\x40\x79\x3b\x0d\xa0\x87\x6f\x18\x3f\x72\xf0\xd4\x63\xef\xb1\xa8\x01\x6e\xfe\x16\xe3\xf3\x7b\x56\x68\xbb\x99\x23\x1e\x66\x81\x31\xbd\xe8\xaf\xe1\x5f\xd6\x46\xe0\xc8\xf1\x1b\x8e\xd7\x54\xd1\xa5\xb5\x46\x82\xbf\xbe\xcc\x16\x6d\x8d\x00\x7f\x4d\x7a\x81\x4a\x2b\xd1\x0a\x50\x35\x2a\x26\x68\x3e\x49\x31\x01\xf3\x59\x53\x53\xb9\xb1\x6d\xd1\x23\xdd\xe8\xd1\x3a\x8a\x6e\x8a\x9e\x7a\xea\xbe\xd0\x0c\xed\x65\x22\x36\xb4\x85\x00\x5e\x7f\xf3\x9e\xbe\xe1\xc9\xa9\x96\x26\x57\x8b\x52\x4f\x0c\xfc\x23\x92\xe8\x13\x8d\xb6\x9a\x9b\xd2\x4e\xa7\xf5\x65\xa8\xf0\x99\xa5\x06\x37\x05\xc0\xff\x82\x7f\xa8\xbb\xb8\x49\x97\xb7\x72\x6f\x6f\x88\xec\xc7\x5a\x14\xe8\x6d\x41\x6f\x75\xb8\x96\xd3\x8f\x49\x9c\x0a\x90\xd2\xe1\x59\x92\xad\xd9\x75\x8b\x2c\xcd\x64\x8e\x4c\x64\x81\x5e\x33\x18\xae\x6c\x1c\xd6\x18\x30\x3d\x47\xb0\x8c\x16\x99\x60\x5d\xad\x92\x8c\x4e\x55\xb2\x90\x93\x3a\x2f\x41\xcf\xaa\x0c\x06\xe8\x44\x7b\x52\x90\x9d\x87\x5c\x09\xe1\xb1\x48\x1a\x99\x2b\xf8\x83\x97\xf9\xcf\xf8\x76\xd4\xef\xc6\x3f\x6f\xca\x7b\x7f\xd6\xfe\x11\xf7\x99\xd4\xde\x84\x55\x72\x94\x3f\x6f\x93\xac\x7b\x35\x32\xb8\x08\x95\xf0\x25\x38\x4e\x93\x02\x55\x38\xe8\x8c\x02\x2b\xb2\x04\xd1\x01\x7d\xd5\xd0\xf1\x3c\xba\x27\x2d\x10\x3c\x78\x93\x0f\xfc\xec\xa5\xd4\x37\x1c\x25\x6e\x9e\xc8\xff\x46\xa3\xb3\x5f\xd5\x12\xb5\x70\x05\x26\xfc\x60\xe7\x71\x18\x44\x32\x69\x05\xba\x76\xcf\x59\x59\xc0\xf3\x0e\xfb\x56\xb7\x44\x92\x6e\x45\xa6\x0e\x23\x0a\xbd\x68\x4c\xfb\xbf\x2c\xb8\x21\x5c\x5d\x9e\xdb\xba\x81\x0b\x84\xcf\x07\x0c\x8e\xfc\x65\x85\x4f\x5e\x4c\x94\xc4\xee\x3b\xf8\xa4\x98\x89\xf9\x07\x52\x7c\xe3\x1b\x76\x22\x1a\xd3\x76\xa8\xb3\x7a\x51\x92\x88\x3f\x37\x73\x1d\xbc\x2b\xbf\xf9\xe6\x8f\x73\x6d\x9b\xa4\x4f\x12\x83\xf4\xf8\x7b\x9c\x6e\xfd\x5d\xaa\xbe\xc3\x50\x28\xf5\x55\xae\xbe\x62\x5f\x7d\xfa\xf2\xcf\x2a\x7e\xb6\xa2\x86\x43\x17\xda\xe4\x98\x26\xeb\xbf\xed\x50\xad\xd7\xfb\xd5\xe9\xd9\xd9\xe9\xc5\x1b\x8c\xa8\x3b\x7a\x33\xbd\xee\x9c\xac\xce\x76\xf6\x98\x30\xe6\x90\x7c\x43\xbb\x1f\x81\xb7\x91\x44\xad\x08\x39\xd4\x00\x67\xc8\xca\x39\x3d\xe9\x7d\xde\x85\x55\x88\x63\xb7\xf5\x7a\x57\x13\x7b\xf8\x11\x3a\x59\x6f\x8a\x41\x16\xef\x3d\xfb\x8e\xc3\x69\x41\x85\xa4\x76\x34\xdb\xb4\x8a\xab\x34\x48\x18\x80\x8d\xba\x4b\x6d\x3c\x6f\xe4\x3b\xea\xd6\x3c\xee\x1f\xe1\x93\x8e\x5d\xdb\xe1\x9f\x6c\xec\x66\x84\xee\x63\xdf\xc8\xad\xd6\x6f\x6b\x77\xe8\xe9\x44\x0d\x0e\x6a\x26\x8b\x8f\x12\xde\x43\x70\xcb\xb7\xaf\x77\xe2\x59\x6d\x8d\x65\x14\xd6\x0a\x4b\x23\xb1\xe3\x00\x76\x1e\x8b\xdd\x2b\x27\x94\xf7\xa2\x8c\x8b\xbc\xbd\xaf\x6d\xfd\x41\xf6\x8a\x6b\x4f\x23\xae\x36\xf0\x7e\x06\xd9\x0f\xde\x63\x5c\xbc\xd5\xbb\x64\xcf\x71\x3c\x43\xac\x35\x0c\x4f\x45\xd6\x88\x1a\x88\x6e\x92\xc7\x9c\x41\xbb\xe7\x77\x9b\x96\x68\x5b\x3b\x5f\x79\x0e\x6d\x39\xda\x28\xed\xe1\x53\xfa\xda\x68\x6a\x9b\x5e\x48\x4d\xb2\x4c\x23\x7d\x8b\xaf\xa1\x98\x74\x51\x0d\x0f\xa2\xce\xde\xf6\x34\x95\x51\x1c\xae\x50\x98\x04\x58\xd5\x07\x3d\x79\x2d\xbf\x6b\x93\x99\x6b\x66\x02\x83\x46\x0f\x32\x2a\x8d\x4d\x9f\xad\xa5\xab\x8f\xc0\x41\x56\xaf\x57\xeb\x02\xf5\x3e\x02\xa4\x6f\xe0\x67\xda\x5a\x2a\x12\x9d\x1a\x40\x07\xa9\x97\x49\x44\x32\xc1\x12\x5e\x14\x65\x26\x29\x83\x59\x1c\x7d\x90\xc1\xf9\x41\x70\xfe\xea\x20\x78\x43\x99\x07\xde\xbc\x32\xd9\x93\xe6\x88\x25\x14\x21\x8a\xc6\xb3\x35\x5b\x4d\xeb\xf4\x00\xc9\xe7\xff\x5a\xca\x2c\x55\x61\xfd\x3a\x47\x41\x4a\xce\xe7\x31\x11\x80\x5d\x97\x12\x6e\x45\x81\x47\xa0\x81\xb8\x85\xd7\xd6\x5c\x5d\xa5\xf1\x0a\xc3\x09\xfb\x81\x4c\x28\xfc\xe4\x07\x74\x00\xd7\x29\x45\x60\xab\xfe\x88\xef\xa3\xe9\xbf\x1d\x9d\x5f\x9d\x4d\x39\x7c\x10\xf3\xd9\x6d\x74\xba\xca\xe0\x69\x5c\xc8\x6b\xfc\x5b\x05\xd5\x2c\xd7\x2b\xfe\x52\x07\xd6\xbc\xc0\x3f\x5e\x18\x42\xd9\x7e\x07\x14\x59\xef\x9b\x8a\xd6\x55\xc4\x34\xf5\x8f\x6a\xbb\xa5\x07\xb6\x55\x95\x71\xc6\x02\x21\x35\x1e\xb0\x33\x30\xc1\xdb\xdd\xcd\xf4\x9a\x3e\x5d\x1d\xdd\xdc\xfc\xeb\xe5\xf5\x09\x4e\x7e\x3f\x6e\xee\x7a\x77\x74\x7d\x7a\x19\x1c\x9f\x1d\xbd\x9d\xb6\xbb\x39\x8f\x7c\x06\xdc\xb7\x4a\x9c\xad\xa5\x0d\x95\xb8\xf9\x66\x7a\x7c\x77\x7d\x7a\xfb\xfd\xfb\x37\xd7\x97\x77\x57\xbd\xb4\xf9\x80\xf2\xa3\xd7\x08\x3c\xb8\xbc\x7e\x13\x50\xf6\x37\x3b\x8a\x9d\x81\xf9\xd2\xcc\x82\x41\x95\xd8\x48\x25\x98\xad\xe2\x59\x6d\xa9\xad\xc0\x18\x20\xb8\xee\x48\x06\xad\x52\x79\x8f\xb0\x0b\x1c\x41\xb9\xcf\xa8\xbe\xaa\xba\xaf\x5f\x53\x53\x67\x7c\xf3\x07\x39\xff\x30\x61\x17\x0d\x8c\xef\x55\x29\xa0\x7a\x91\xf7\xf6\x73\xa7\x24\x4d\xee\xa3\x05\xa6\x35\x14\xf9\x3a\x99\x53\xc6\x3c\x00\xaf\xc3\x8a\x61\x2f\xbc\x3f\x3f\xbd\xb8\xbb\xe5\xf0\xe8\x09\xd0\x85\x0f\x57\xd8\x03\xc1\xbf\x33\x06\xf8\x17\x83\xf5\x5f\x14\xe9\x0b\xb4\x58\x50\xab\x79\x1a\xa3\x83\x56\xa3\x15\x7d\x4d\x19\x72\x64\xf0\xfc\xec\xf2\xf8\xe8\x6c\x0a\x3f\x1d\x9f\x4d\x8f\xae\xbf\xee\x67\xc9\xdd\x44\x4e\xcf\xaf\x2e\x83\x93\x69\x30\xbd\xb9\x9a\x5e\x1f\x05\xd3\x8b\x80\xa8\xbd\x1c\x48\xad\xff\xce\xe7\xcc\xea\x13\xe0\xe9\x13\x9d\x2f\x47\x25\x02\x5b\x05\x2f\x34\x6a\x56\x38\x62\x1b\x4a\x5a\x4f\x3a\xc7\xaa\xf9\xe1\x7a\x19\x1b\xb2\x29\x98\x10\xf9\x23\xf1\x1c\x66\x2d\xef\x55\xea\x3d\x0a\x90\x0f\x28\x34\xed\xf4\xf2\x02\xe7\x97\xfd\xb0\xff\x7d\x32\x09\xa3\x1c\xff\xb2\x1e\xdb\x50\xe8\xee\x87\x81\xf1\x86\xe9\x12\x53\x48\x22\xab\xb6\x3d\x97\xbb\x3a\x9e\x5e\x9c\x5e\x0e\x27\x06\x9f\x4f\x00\xd0\x96\x84\xad\xe6\xbe\x78\xd9\xc6\xfa\x2f\x77\x97\xb7\x47\x94\x93\xe0\x16\xfe\x38\x7b\x5f\xe7\x44\x88\x02\x7d\x4d\x34\xbe\xcc\x02\x60\xc4\x8a\x57\xe4\x5b\xf7\x09\x1f\x4a\xca\x0e\x31\x59\x89\xa8\xba\x7c\x26\xe4\xfc\x69\xb7\x2d\x26\xec\x46\x74\x5c\xd1\xd5\xc8\x95\x90\x51\x86\x04\x85\xbc\x4e\xaf\x80\xc9\x16\x98\x94\x53\xc5\x17\x54\x3e\x89\x6c\xc2\x29\xd1\x26\xa1\x9c\x54\x89\x93\x80\xb2\x45\x9a\x0f\x3f\x1a\xcc\xa4\xe9\xaa\x57\xbb\xa8\xca\xe6\x40\x12\xb2\xed\x82\x6e\xc0\xc1\x4d\xd5\x05\xc8\x77\xa9\xcd\x12\x0b\x9e\xb8\xf7\xb7\x97\xef\x31\x4b\xca\xfb\xeb\xbb\xb3\xe9\xcd\xfb\xd7\xa7\x67\xfd\xe2\xc5\x38\xc0\xfd\xc7\xc4\x72\x8d\xda\x83\xc1\xd5\xd9\xd1\xc5\xd6\x86\xdc\x7a\x9f\x74\x00\x09\x67\x02\x6b\x40\x44\xf1\x23\x3c\x01\x97\xeb\x70\x56\xd7\xd2\x09\x54\xc2\xff\x8d\x9e\xa8\x45\x9b\xe8\x8c\x37\x1a\x0e\xe5\x31\xa7\x70\xfc\xd6\xcf\x55\x6a\xb0\x46\x8e\x01\x68\x48\xd9\xc8\x57\xfd\x02\xc9\x3e\x06\x3c\x8f\xa5\xc8\xc2\x19\x2a\x6a\xb2\x0f\xfc\x69\x12\xce\x26\xcb\x28\x91\x5f\x64\xe8\x9e\x67\x50\xf3\x17\x7c\xe5\x4c\x8a\xf4\x03\xbc\xc6\xcf\x8e\x5e\x4d\xcf\x82\xab\xeb\xcb\xb7\xa7\x27\xd3\x6b\xe0\x6a\xff\x3c\xb5\x66\xef\xce\xe0\x06\x6e\xde\xc9\x2c\x03\x24\x59\xb5\x8a\xaf\xae\x01\xfc\xf5\xf6\x4b\x2f\x80\xd7\xaa\xeb\x18\xba\x40\x37\x5e\x82\x6d\xb0\xde\x63\x79\x10\x19\xec\x03\x75\x35\xba\xdd\xa7\x5b\x7d\xc7\xb9\x52\x59\xfd\xc8\x2c\x15\x33\x7e\xab\x54\xdf\x3f\xf3\x57\x13\xba\xf3\xac\xf9\xf3\x2e\x60\xc3\x37\x2e\x15\xbb\x68\x5f\xc1\x3b\x2f\xdc\x66\x96\xa2\xfd\x5f\xbe\x5f\x98\x32\xdf\xf5\x26\xd7\x92\xad\x53\x63\x3b\x62\xd5\xbb\x71\x30\xc6\xa1\x68\x8b\x47\x6e\x4d\x0c\xc9\xf3\xc7\xd7\xd3\x93\xe9\xc5\xed\xe9\xd1\x19\xcd\x53\x1c\xdc\x7c\x7f\x73\x76\xf9\x66\x72\x72\x0d\x07\x69\xa2\xb5\x6c\x01\x26\x60\xcd\x55\x51\x22\xe0\xaa\xe8\xae\x4b\xd9\xc8\xe0\xfc\xa0\xc7\x02\x16\x95\x81\xaf\x96\xb2\x40\x2f\x1b\xf8\x37\x6f\x46\x48\xd6\x1e\x37\x01\x8c\x48\xee\xbc\x1a\x2c\x49\xa6\xf4\xd7\x44\xc5\x41\x4d\xc6\x41\x8d\xfc\x80\xb1\xbf\xfb\xaa\x45\xf5\x0e\x2a\x29\x92\x9c\x32\xb3\xe1\x85\xa0\xf2\x6a\x56\xe6\x90\x2d\x47\xa1\x81\x34\x5b\xd7\x14\xeb\xbb\x41\x77\xa3\x5c\xae\xf5\xf5\xc9\x13\xa4\x8d\x6c\x07\x8d\x34\xe1\xbe\xd0\x90\x74\x0d\x8f\x68\x25\xaf\x2d\x22\xbf\x06\xfe\x12\x3f\x70\x22\x6e\x1e\x85\x0b\xae\x0c\xb8\x6f\xf5\x05\xec\xc0\x7c\x9d\xc7\xe9\xe2\xe5\x8b\x17\x8d\x1c\x19\x16\xba\xc6\xbf\xed\xfd\xff\x4f\xee\xfd\x14\xe8\x8c\xe5\x98\xfb\x7f\x1b\xe2\xef\xef\x0c\x38\x5f\xfc\x98\x80\x81\x94\x1b\x70\x9f\x3e\xe2\x6e\xff\x37\xb8\x40\x6f\xbf\xbb\xa4\x1c\xf1\xdf\x05\xdf\x4d\x8f\x40\xc0\x54\xf9\xe2\x8f\x38\x0f\xe0\x04\x9e\x86\xab\xb2\x08\xf0\xc5\x64\x71\x81\xef\xc6\x70\x79\x72\xc9\x18\x8e\x41\x94\x3d\x9e\x5e\x1f\xed\xc6\x71\x74\x7d\xfc\xdd\xe9\xdb\xcb\x21\xb7\xb1\x0a\xb9\x6c\x64\xe2\xbf\x0f\x26\x59\x3f\xe1\x75\xbf\xed\x2e\xae\xd3\xcc\xb0\x76\x6a\x96\x00\xb6\x2d\x2d\x16\xfd\x3d\x67\xa7\x2d\x27\x3b\xd1\xd4\x96\x92\x47\x22\x47\xa9\x93\xec\x08\xa1\xc8\xd8\xac\xa3\x8f\x3f\x05\xab\x07\x91\xc0\x69\xe4\xf8\x5c\xa7\x29\x31\xf7\xf5\xa5\xa8\x2d\xfc\xda\xce\x8b\x56\x5c\xd1\x7f\xc7\x21\x84\x55\x43\xbb\x94\x4b\x4e\xb3\x54\x81\xd9\xd6\x2d\x8d\x44\xa8\x59\x07\xe4\x42\xab\x0b\x24\x7f\x6a\x3b\x45\x12\x17\x42\xad\x80\x0c\xa4\xd1\xa0\x8a\xf0\x20\xd6\x1a\xda\x50\xaa\x77\x2b\x1f\x7c\x28\xb6\x81\xe4\x4d\xed\x0e\xcd\x85\x1b\x91\xbb\xd4\x17\x63\x11\xd7\x52\x3b\x58\x33\xa1\xee\x6e\x83\x08\x51\x3c\xb1\xa1\x3f\x99\x58\xb9\x3e\x38\xc1\xf0\xa5\xb0\xfd\xfc\x77\x59\xc0\xd6\xd3\x7f\xe8\x74\xb1\x79\x6a\xa2\x4a\x22\x4c\xee\x63\xb1\x08\x5e\x4f\x8f\x6e\xef\xae\xa7\x76\x7e\x22\x0e\x10\x9c\xa9\xe3\xd7\xd0\x00\xe2\xec\x01\x78\xd0\xf6\x68\xef\x4c\xa3\x1a\xfb\x4b\x88\xf2\x11\x2b\x5f\x39\x20\xac\xda\xfb\xe3\xf4\x9f\xf6\x7d\xcc\x77\x13\x66\xbf\xf9\xa1\xa3\xb5\x3b\xd6\x08\x2b\x13\xd7\x8f\x03\x9d\x67\xbd\x56\x2e\xf6\x1f\xdb\x0a\x86\xea\xee\xbf\x22\x2a\x35\x93\xf2\x54\x43\x4d\x38\xba\x0d\x92\xe3\xc2\x04\x41\xbf\xb8\xbd\x7c\xa1\xf2\xb0\x92\x7a\xb3\x72\x7c\x23\xf3\xc8\x83\xac\xd2\x95\x51\x8c\x5d\x15\xda\xd9\xcc\x5c\xa6\xa2\x3c\x31\xc0\xb3\xce\xfd\x87\x41\x76\xcf\x26\xd9\x33\x0c\xad\xd3\xef\xd0\x5d\x5e\x74\x1b\xf4\xe9\xc4\xa5\x8b\xa8\x78\x28\x67\xe4\x32\x37\xbf\x9f\xc8\x5f\x56\x32\x8b\xd0\x05\x52\xc4\x2f\x94\xcf\xdd\x7d\x9a\xce\x44\xd6\x01\xe6\xff\x7e\x71\xa2\x28\xcd\xad\xda\xab\x36\x72\xfe\x90\xc2\xb3\x2c\x38\x5f\x4f\xc8\x8d\xcf\x42\x17\xb4\x01\xa8\x3d\xa5\xfe\xcb\x86\x11\x21\x4d\xef\xc2\xfe\xed\xbb\xd9\x63\x00\x6e\x8a\x46\xfb\x81\xab\x0c\xbf\x47\xe5\x14\x7c\x28\xab\x8b\x47\x57\x0f\x60\xe5\xf3\x8f\x4d\xc3\x43\xce\x97\xde\x8f\x56\x1e\x7b\x9d\x68\xe8\x96\x62\x2c\xa4\xa5\xb6\x40\xe1\x7c\x48\x01\x39\x3c\x16\x7a\x69\xcc\x45\xec\x95\x22\xa2\x81\xc6\x81\x03\xeb\xd6\xfe\x4b\xb7\x14\x2b\xf5\x0a\xaa\xf8\x8f\x97\xc9\xbe\x05\xc7\xc1\x5a\x6f\x47\x24\x07\x58\x57\xa2\xaf\x0e\x23\xca\x83\xc7\x6f\xdf\x6b\xab\x2f\xfc\x59\xc9\xec\xf8\x37\x1a\x81\x1f\xff\x50\xff\xfc\x07\xfa\xca\x6a\xa3\xed\x0d\x9f\xf3\x76\x48\xeb\x77\x49\x2f\xd5\x3b\xdb\xba\x63\xb4\x74\xba\x19\xee\x6d\x83\xa5\xef\xa9\x6e\x96\x2d\xbe\x5d\xad\x9d\xb1\x92\x52\xb4\x3b\xa3\x56\x57\x33\x77\x3c\x9c\xe2\xbe\x1f\xd1\x66\x3b\x77\x4c\x65\xb6\xa8\xf7\x6a\x7a\x7f\x2f\x29\xe9\xaf\xde\x88\xc4\x7b\xd5\x46\xed\x3f\xc7\x7e\xc0\x9c\x69\x6e\x28\x92\x2c\xb4\xb7\x95\xdb\xd3\x50\x8c\x16\x2e\x25\x1b\xcd\x9c\xf1\x70\xf1\x05\xf7\xe0\x80\x1d\xfd\x1a\xf1\x01\x16\x4c\x6b\xff\x88\x3d\xe6\x82\x32\xda\x55\x37\xcb\xc5\xf4\x5f\xdf\x5b\xdf\x6d\x76\x9d\x3d\x69\xda\xa5\xc6\xae\xd1\xb4\xbf\xb2\xa4\xd4\x0f\xa4\x2f\xfd\x5a\xd3\x8c\xb0\x6d\xd8\x27\x74\xc3\x44\x81\x0d\x1d\xf5\x56\x4f\x5f\x52\x3a\xf5\x7d\x88\xc1\xd9\x35\x7f\x18\xd0\x81\x63\xe8\x50\xaa\x35\x71\xf2\x57\x8e\xc3\xf0\x80\xeb\x3d\x92\x86\x9a\x8b\xe0\x5b\x85\x6f\xd8\x75\xf6\xa0\x69\x95\x2a\xce\x92\xef\xe6\x3d\xf5\xef\x5b\xaf\x49\x0b\xa2\xed\xa1\x0f\x31\x50\x66\x98\x51\x71\x21\xed\xc5\xf2\x46\x87\x81\x58\xb3\xc2\x11\x2b\x77\x18\x8c\x95\x9c\xeb\xab\x68\xfd\x8a\x07\x9f\x5e\x9c\x4c\xff\xcd\x96\x90\x2d\x18\x9b\xdd\x9d\x69\x53\x01\x51\x32\x79\x8c\xb2\x34\xc1\xd7\xfd\xe4\x51\x64\x11\xa9\xdf\xc8\x2a\xd2\x49\x1a\xee\x06\x87\xde\xae\x94\xe5\x14\xdd\xd1\x30\xef\xd6\xaa\x1b\x43\x6d\x3d\x0b\x6d\x6c\x05\xb8\x09\xb3\xa7\x6e\x5e\x87\xae\xd6\x6e\x20\x83\x02\x96\xf6\x15\xa3\xd4\x75\x19\x58\x10\xd4\xd7\xd1\x97\x96\x86\xc1\xa8\x5f\xa8\x34\xf6\xf1\xa0\xa0\x98\x34\x15\xc3\xc1\xf4\xe2\xed\xfb\xb7\x47\xd7\xed\x0f\x6f\x8f\xce\xee\x6c\x26\xa8\x82\x15\x5c\x5c\x9e\xbf\xba\x9e\x06\xd0\xf1\x72\xf7\x3d\x64\xb9\x83\x0a\x14\x31\x26\x94\x46\xb1\x32\x3d\xa0\xc0\x71\x7d\x79\x36\xb5\x7a\x7e\x6f\x80\x60\x1b\x84\x82\x30\xf0\x3d\x8d\xa0\xf9\xed\x81\xf0\xe8\xfd\x61\x45\x12\x72\x34\xe0\x13\x73\x99\x35\xba\x1f\x6f\x77\xf7\x22\xa8\x9f\x33\xd9\x3b\x2a\x59\x4d\xee\x7e\x10\x7a\x8d\x7d\xdb\xfe\x45\x3f\x39\x9b\xd3\xbc\x60\x0d\xa0\x78\x7b\x7b\xb3\xd4\xe4\xb4\xc9\x5b\xa0\xea\x6d\x5e\x41\x1a\x61\x6f\xe9\xf0\xd1\x27\xdb\x5b\xfb\x41\xe8\x3e\xf6\x5a\x92\xed\x27\x7b\x57\x5b\x3f\x8c\xcd\xdd\xf7\x9e\xb6\x9c\x9d\xec\x66\xd7\x79\x08\x4d\x16\xb7\xd4\xce\xc6\x9e\x38\x2b\x55\x9d\xcb\x1a\x74\xf7\xf2\xa3\xc2\x72\xcc\x83\x46\x5b\x58\x85\x4e\x6f\x36\xf3\xc1\xd3\x73\xac\x6c\x68\xb0\x06\xe1\x43\x9f\xcb\x5b\x65\x84\x97\x0a\x56\x19\x76\x41\x98\x0e\x4c\x35\xc1\xe5\x28\x76\x59\x96\x7a\x91\xdb\x74\x75\x9e\xf1\x32\x19\x31\xe1\x84\x1f\x30\x5f\x9a\xc7\x4a\x3a\xe1\x0b\xce\x9f\xee\xa1\x89\x27\xb6\x01\x8d\x98\x7a\x42\x03\x1f\x25\xf9\x84\x1f\x30\x8f\x99\xdd\xb4\x87\x93\x1d\xdc\x4e\xe8\xb3\xeb\xec\x41\xd3\x58\x56\xd1\x0d\x48\x63\xdb\x45\xcb\xc4\xf8\x16\xb4\x20\x6f\xfb\xfd\x37\x94\x9a\x81\x6f\xbf\x2d\x20\x63\xbe\xfe\x18\xf8\x96\xac\xe5\xf0\x0e\x74\x80\x30\x88\xba\xc1\xcf\x8b\x1d\xc0\xc6\x7f\x60\x94\xab\xb0\x2b\x59\x05\x7b\x7c\x68\x3f\x26\x9d\xb5\xe2\xc7\x9d\x69\x2b\x54\x82\x94\x0f\xf0\x55\x99\xe0\x1f\x16\x07\x6b\xff\x98\x7d\x67\xc3\x3d\x7b\x04\x72\x03\xd4\xb6\x2b\x43\xdd\xa0\x98\xd1\xe0\xdf\x03\x1e\x9e\x77\xb4\x6b\xc7\x30\xea\x01\x7c\x11\x62\x9d\x99\x11\x8f\x62\x3f\xf9\x1d\xc6\x01\xee\xbb\xc1\x36\xd3\x1d\xe0\x86\xc7\x15\x41\x77\x13\xeb\xe5\xb5\x04\x32\x90\xc6\xc1\xe9\x07\x7c\xc1\x0d\xa5\x7b\xcc\xf4\x03\x96\xa0\x6d\xd2\x0f\x38\x6d\x7d\x83\x67\x39\xb1\xa1\xf3\xa3\x7f\x9b\xe8\x73\x3a\xd9\x1d\xbd\x6e\x71\xd4\x9f\x88\x1d\x7d\x81\xd1\x60\xb0\xe9\x4c\xe4\xd1\x7c\x52\xa5\xea\x68\x8d\x66\xfb\xf7\xe1\xfc\x6a\xd4\x08\xe1\xee\xa8\x55\x23\xb6\x91\x63\xac\x7b\x71\xd9\xc4\x97\xda\x6e\x93\xdf\xc3\xfc\xed\x21\x46\x77\xe4\x39\x74\xd8\x9c\xb7\xd7\x28\x2a\x4e\xaf\xaf\x2f\xaf\x71\xc6\x8e\x6e\xb1\x38\x03\x4c\x13\x45\xde\x62\xaa\xdb\x2b\x51\x3c\xfc\xf6\x1b\x4c\x0f\xfc\x3d\xcd\x32\x43\x6a\xee\x1d\xd0\x2e\x4e\x2e\x75\x78\x2d\xa6\xb2\x43\xb8\x66\x90\xf6\x7c\x5d\x24\x94\xb8\x97\x66\x2b\x07\x0a\x82\xda\x89\x33\xbd\x0f\x90\x13\x55\xd6\x41\xe2\x44\xdd\x64\xfb\x43\x72\xa2\x76\x38\xa5\x57\xa5\x0c\x25\xc1\x91\x70\xc1\x28\x28\x58\x47\x3a\xe4\x9e\xba\x06\xaa\x4a\xf7\x15\x50\xba\xaf\x7d\x53\x1b\x3c\x3f\xe1\x4c\xf2\x2f\x03\xcd\x39\x65\xf8\xb5\x71\xb6\x47\x83\xed\x32\x22\x5c\x62\xaa\xaa\xb0\x14\xd9\x07\x59\x00\xfc\xb9\xac\x73\x34\x61\x8a\x65\x4c\xbb\x28\xea\x2a\xb5\xe6\xea\x1b\x23\x40\xf4\xa2\x9e\x2a\x28\x45\xc9\x7d\x9a\x2d\x89\x16\x4a\xdf\xbf\x95\xb4\x7c\xd0\x70\xc6\x42\xe1\x3a\xbe\xe1\x07\x24\x49\xa1\x61\xb0\x7a\xba\x63\x82\x64\xe7\x2b\x39\x8f\xee\xb1\xc0\x6b\xf1\x10\xe0\x1b\x93\xab\xf0\xd3\x73\x33\x48\xa9\x36\x58\xde\x9d\x59\xfc\xa2\x41\xb2\x64\x50\xd1\x5c\x64\x81\x58\xce\xd2\x5c\x27\xde\x4e\x57\x54\xbe\x86\x4b\xa6\x02\xd4\xb5\x02\x3f\x12\xd1\xc8\x86\xe9\xe5\x1c\xd6\x25\x30\x4e\xf8\x05\x1d\x9a\xea\xd3\x36\x68\x4f\x76\x10\xdf\x02\xbb\xee\x04\xea\x4d\x7a\xa5\x1b\x98\x45\x45\x4e\x74\xe3\x9c\xbc\xe0\xa9\x71\x9f\xf1\x18\x48\x26\x48\xa1\x6c\x66\x7b\x07\x44\x71\xfa\x73\x29\x45\xf6\x22\x94\xb9\xfe\xdb\x87\xfc\x07\x91\x2c\x50\x7a\x08\x1e\x23\xf9\x91\x2b\xe6\x6b\xe7\xa9\x79\x5a\x26\xc5\x01\x32\xb9\x0f\xca\x5a\x19\x47\xcb\x08\xbe\xc1\x51\x2d\xe5\x12\xc3\xa7\xe8\x1b\x2e\x73\x6e\xae\xc9\x72\x8c\x05\xa2\x61\xd3\x04\x4b\xac\xe4\xcb\xb5\x4d\xe7\x58\xfb\x2c\x84\xbe\xa1\x6c\x9c\x88\x03\x18\x5d\xfc\xf9\xaf\x00\x97\xcf\x04\x61\x8a\xa8\x0c\x32\x96\xb2\xf5\x2b\xdf\xa2\xc6\xd9\x3c\xb1\x4c\xf5\x56\x95\x98\xee\x11\x78\x80\x70\xa5\x8f\x02\x60\xb5\x74\xd6\x37\x97\xf3\x58\x3c\x52\x0d\x6e\xff\x1a\xb1\x84\x16\x5d\xed\x35\x4e\x53\xb1\x06\x46\x8b\xb5\x1a\x08\xb3\x5f\x65\x86\x63\xcc\xa8\x8c\x18\xa9\xc2\x0b\xea\xa8\x8d\x28\xcd\xad\xed\xb1\xaa\xe8\xc0\xef\x64\x6c\xd8\xa2\x3b\x1b\x39\xe3\xc0\xab\xa8\x17\x47\xd2\x6a\x64\x2d\x1a\xab\xde\x58\x63\x50\xfd\x4d\xd5\x08\x93\x56\xa0\xa3\xc4\x09\x53\x36\x0a\xb8\x00\xa9\x5c\x79\x22\x28\xe3\xd2\xf1\x6b\x1d\x28\xf9\x42\xc4\x70\xd6\x0e\x83\xe0\x9a\x3d\xde\x11\xc0\x06\x58\x1d\x52\xd9\x03\x1e\x6b\xa0\x84\xb0\x6d\x1b\x39\x9e\x8a\x5c\x37\xe0\xbb\x9a\xee\x9e\xdc\x50\xad\x6e\xc4\x81\x7d\xb1\x21\x0d\x5d\xc4\x9c\x8a\x42\x36\x16\x27\xa8\x22\x3e\xe1\x2d\x87\xd5\x29\xf1\x4f\x16\x74\x9e\xc1\x28\xbf\x4f\x4b\x64\xd1\x71\x08\xe8\xd6\xb5\x55\x8a\x4e\x73\x47\x2f\xa2\x1a\x4b\xea\xe9\xb1\x70\x59\x49\xd5\xbc\x39\xec\x28\x79\x4c\x3f\x98\xa6\x10\x08\xf8\x0e\x04\xdf\x47\xcc\xb2\x85\x55\x2a\xf3\x07\x22\xe5\x3e\xca\x40\x58\xbb\x2f\xe3\x18\x49\x02\x60\xc8\x11\x39\x0e\x37\x5a\xae\xb0\xd0\x25\x08\x4f\x2d\x5a\xf1\x27\x2a\x53\x82\x1f\xb6\x29\x66\xda\xba\x77\x8e\x61\x16\xff\x36\x7f\xbb\xe6\xcf\x75\x9b\x52\x9d\x53\x90\x04\x0c\xd7\x51\xba\xa4\x5b\x01\xeb\xcd\x24\x78\xa7\x67\x70\xa9\xfb\x31\xd0\x15\xda\x2c\x11\x2b\x4c\x07\x4b\x23\xf9\x83\xf8\x36\x20\xdf\x2c\x1c\xf9\x8e\x78\x6e\x53\xf5\xff\x11\x20\x3a\x52\x4f\x65\x9b\x10\x01\x5e\x58\x35\x47\x51\xf1\x00\x07\xbc\x5f\x96\x62\x0d\xef\x93\x0f\x98\x63\xee\xe3\x03\x56\x1d\x36\x5e\x81\x63\xc1\x75\x18\x49\x92\xc8\x39\xa5\xd2\x0b\xcb\xe5\x8a\xca\x93\xcb\x39\x15\xf6\xc1\xc8\x5f\x92\x79\xc6\xad\x84\x65\x32\x2d\xa6\x48\x0b\xee\xaf\x9a\x1a\x22\x03\x48\x8a\xb0\x24\x10\xc9\x88\x7b\xaa\x86\xe5\x67\xa7\xac\xa7\xaf\x10\x51\x5c\x11\xfc\xe5\xe6\xad\x45\x06\x26\x3d\xfc\x9d\xcd\xd7\x6a\x4d\xdb\x3b\x2d\xb3\xb9\xaa\xc0\xad\x88\xbb\xa1\xaf\x80\x44\xae\x2a\xa6\x3c\x9a\xd4\x8f\x5c\x8a\x9e\x7f\xdc\x53\x21\xb6\xdf\x13\x69\x0e\xf3\x89\x17\x09\xb2\x6d\xf4\xa5\xa1\x82\x83\x1d\x35\xed\xde\x25\x53\x2c\x25\xfd\x32\xe8\xd5\xa2\xea\xe7\x29\x70\x79\x91\xa7\xf0\x4a\xcb\xf0\xfd\x96\x77\xd5\xa7\x33\x00\xf6\x18\xc6\x1c\x56\xa1\xcd\xa3\x5f\x06\x5a\x4d\x9b\x1a\x75\xbf\x1e\x20\x3c\xe8\x0b\x31\x85\x28\x69\xdd\xf1\x32\x99\x73\x2d\xc2\x00\x5e\x53\xf4\x72\x09\x23\xe0\x54\x98\x6a\xe4\x7f\xd8\xcc\xae\x86\xc5\x13\xac\xfb\x46\x54\x35\x18\x7a\xcd\xc4\x4f\xb0\x02\xf3\xa2\x14\xf1\xff\x18\x44\xf3\x3d\x97\x48\x55\xf5\x36\x03\x4e\x99\x65\x43\xa0\xbe\xe1\x99\xbe\x14\xeb\x95\x63\x4d\x36\x7c\xc3\xdf\x23\xad\x23\x50\x05\x67\x08\xf7\x7f\x48\xd2\x4c\xc5\x9f\x9e\xe1\x49\xd2\xe5\x54\xdc\x28\x55\xdc\x0e\x44\xf7\xa5\x08\x45\x60\x8b\x0f\xf5\x47\xf1\x0e\x94\xbe\x03\x23\x8d\x01\x95\xcd\xa3\xe7\x49\x7d\x68\xea\xba\xf3\x16\x5b\xd9\x1d\x94\x2f\xbd\x5d\x6c\x83\xea\xfd\x2a\xd6\xd2\x9c\x31\xe7\xed\xd3\xc9\x3f\xf8\x92\xd2\x9c\x46\x74\x60\xf1\x1e\x57\x8b\xf7\x56\x2c\x1a\xd6\xf9\x13\xbf\xed\x98\x57\xdb\xaf\x86\x07\x40\x0f\xda\x61\x4e\x60\x16\xe1\xc1\x40\xda\xe8\xa4\x5c\xce\x24\x73\xd8\xd3\x04\x04\x44\xbb\xe9\x27\x18\x3c\xf9\x00\x00\xcb\x29\x86\x15\xc8\xdd\xb0\x3c\x08\x85\x65\x8d\xe0\x01\xfb\x49\x36\xf5\xf5\x36\xd4\xe9\x8e\x7c\x64\x55\x67\x52\x32\x8f\x44\x0f\x5b\x34\x2d\x14\xdf\x5b\xc4\x30\xcf\x85\x4f\x44\xce\xb0\x6b\x59\xc9\x0a\xb0\x43\x0e\xe9\x0e\x3a\x5a\x45\xd6\xb7\x6f\x2e\x63\x39\x87\x23\x93\x30\x59\x06\x18\x6e\x84\x25\xcf\x0a\x9d\xf8\xba\x90\xcb\x15\x3d\x82\x48\x62\x2d\x57\x98\x9e\xca\x86\x34\xec\x4e\x3b\x4b\x64\xf3\x07\x2c\xd0\x89\x80\xd2\x4c\xc4\x64\xd8\x28\x67\x51\x28\xbc\xe7\x0d\xc9\x4b\x57\xc0\x90\x6b\x15\xb8\xf1\xe1\xd7\x94\x57\x66\x59\xd4\x22\x0b\x8b\x8c\x6a\x28\x43\xe8\xf9\x98\x45\x30\x5b\x9f\xa2\x95\x35\x29\x32\x9f\x67\xd1\xac\x4d\x0d\xf4\xf7\x21\x42\xe7\x28\xdf\x31\x92\x4d\x5e\x05\x4d\xb1\x8c\xea\xa0\x31\x6b\x74\x2a\xb5\x66\x84\xfa\x2f\x12\x6b\x71\x8b\xc4\x58\x39\x14\x95\x61\xbd\x34\x68\x79\x01\x16\x12\x55\xf9\x08\x80\x38\x7d\x99\xc3\xce\x59\xa5\x39\xc0\x89\xe0\xcc\xe3\xb3\x6e\x04\x2a\x8b\x07\x51\x60\x6d\xd9\xaa\x38\xfd\x6c\x1d\xa0\xce\x06\xd0\xe6\xc1\x73\xf2\x86\x98\xa4\x49\xbc\x36\xd8\x85\x37\xe8\xfe\xb9\xd4\x36\x9a\x9c\x46\x2c\x42\x96\x7d\x8a\x34\x04\xd9\x3d\x86\xff\x23\xec\xe7\x79\x1a\xc3\xbe\x43\xf8\x5e\x66\x61\x3d\x8c\x44\x7e\x24\x83\x40\x2f\x79\x49\x29\x61\x27\x0d\xb0\x02\x68\x8c\x19\xbe\x17\x97\xac\x68\xa7\xa5\x25\xb5\x82\xd1\xac\xc3\x24\x40\xd7\xb2\x00\x2e\x19\x03\x20\x32\xd6\xd0\xb2\x62\xfc\xaa\xaf\xbd\xa6\x4e\xc2\xdf\x2c\xa9\x6e\xa4\xc3\xd8\xde\x07\x33\x8b\x3f\x54\xb2\xb5\x27\x19\x96\x4d\x1f\x7f\x0a\xd8\x79\xaf\x77\x1b\xcc\x53\x78\x79\x28\x73\x9a\x16\xad\xc6\x40\xdf\x6f\x19\xeb\xef\xe1\x81\xdd\xec\x1a\xd0\xd1\xcc\x1d\x0f\x66\xe9\xe7\x0d\x8f\x5c\x4d\xc9\x72\x4e\x6c\x4d\x6d\x7e\x04\xc4\x4f\x06\x86\x41\x47\x20\x2f\x6b\xbe\x06\xb0\x86\xac\x07\xd9\x57\xab\xe7\x48\xc3\xe6\xca\x8c\xee\x01\xb8\xcf\x4c\x02\x01\xab\x32\x7f\x40\xbf\x87\x72\x3e\x97\x79\x4e\xaa\x64\x83\x86\x63\x54\xe0\x1e\x63\x02\x86\xd9\x3f\xbf\xad\x46\x6e\x48\xf0\x09\xbe\x35\x3a\xd4\xe3\xe8\x77\x7a\x2e\x0b\x6c\x44\x5e\x1d\xd8\xca\x3c\x55\x03\xc0\x79\xd0\x3d\xae\xb6\xd0\x38\x32\x54\xe0\xef\x52\x09\x0e\xd2\x07\x0e\x19\xbc\xa9\xb4\xbd\xcd\x60\xac\xfb\xbb\x93\xa6\xe4\x0b\xf4\x1d\xa1\xbf\xd4\x14\xe0\xa1\xd9\x9a\x2e\x9f\x75\xd0\xe2\xc6\x26\x02\xad\xba\xdd\x42\x32\xfa\xe4\x8f\x32\x8c\xfd\x93\xc9\x9e\xd9\x00\xf1\x5f\xf0\x8f\x01\xa4\xce\x77\x01\x1a\x9d\x5c\xbe\x66\x00\xe2\x77\x70\x25\x24\x86\x4d\x33\xe2\x99\xa6\xab\xa9\x8d\xf2\x4b\x9e\xea\x1d\x53\xe0\x37\x8a\x81\x74\xb4\xc5\x44\x04\xad\xbf\x79\x4f\xdf\x54\xb3\x5d\x56\x23\xef\xbf\x18\x06\x01\xf5\x19\xc3\xa6\xb0\xa9\xc0\x1f\xf3\x5d\x84\x8b\xd6\x3f\xbd\x5d\xa0\xf4\xd2\x77\x03\xf3\xa7\x58\x45\xa3\x00\x74\xcf\x9d\x6d\x86\x36\xfa\xae\xdd\x94\x6b\xb7\x15\x96\xce\x37\xb3\xd3\x1a\x25\x61\x6a\x50\x96\x7a\x9c\xe7\x51\x17\x95\xaa\x6e\x74\x5d\x8a\x2e\x2b\x3b\xdf\xb8\xff\x80\x5a\xb8\xf2\x8a\x28\xdc\xbe\x0a\xc7\x5f\x62\x9a\xae\x9d\x17\xca\x28\xf7\x7a\xf7\x7d\xe5\x0e\xde\xda\x85\xa3\x3d\xb8\x8d\xbd\xb0\x6b\xcb\x7a\xf3\x0f\x5b\x04\xfb\xd8\x80\xec\x34\xb9\x51\xe1\xf8\x8b\x1e\x51\x76\x1a\x2f\x58\x39\x04\x0f\x42\xa5\x9a\xf9\xdd\x1d\x5d\x9a\xb9\xca\x5e\xcd\x20\x7d\x07\xdf\x18\x63\x0b\xdc\xb8\x74\xab\xd2\x8d\x86\xc0\x99\x5d\x6d\x7c\x30\x04\x1f\x65\x26\x83\x4c\xfe\xa4\x7c\x39\x56\xb1\x14\xb9\x24\x5f\x31\xb1\x10\x26\x97\x34\xd4\x03\x72\x95\xc9\x39\x00\x92\x79\x70\x5f\xca\x2c\x4d\xd0\x63\xe5\x41\x7c\x12\x21\xba\x38\xe3\xc6\xb8\x17\x8f\xe4\xcc\x53\xa0\xbe\x93\x94\x78\x82\x54\x9f\x5e\x53\xa3\x9e\x9f\xc7\xaf\xb1\x4c\x41\x65\x25\x62\xcb\xc0\x5b\xfe\x64\x12\x61\x1c\xbb\xfb\xd0\x75\x7c\xd6\x02\xec\x44\x54\x7f\x5f\x67\x8a\xae\x7a\xbd\xac\xc9\xbd\xfa\x88\x0c\x3f\x03\xf0\x68\xcf\xea\x20\x8c\xd8\xfc\xb3\x14\xc5\xfc\xa1\x13\xeb\x99\xf6\xeb\x66\x8b\x13\x3a\xd5\xcd\xd3\x08\x76\x52\xe8\xa5\xe5\x2a\x81\x0b\x2d\x9b\x51\x09\x6b\xb6\x18\x3f\x97\x87\x8b\x43\x0c\xe2\xab\x7e\xfa\x1a\x83\x00\xde\x9c\xde\x52\xed\x15\xfe\xf9\xd9\x8e\x32\x27\x0f\xb0\x95\x3f\x94\xea\x9f\xba\x37\x06\xd6\xae\x0f\xa1\xdd\xb3\x0a\xce\xab\xeb\xa3\x8b\xe3\xef\x06\x82\xfb\xff\x85\xf2\x51\xc6\xe9\xea\x19\x5d\x93\xcf\xaa\x4f\x33\x98\xb5\xf9\xc3\xd7\xdd\xda\x9a\x7a\xc8\x2b\xd8\x2c\x69\x42\xc6\x3b\xa5\xae\xa7\xa4\xd4\x38\x07\x3f\x6d\x4d\x01\xfd\x5e\xcf\x02\x34\xf0\x20\x7a\xb7\xd6\xdf\x7c\x55\xf3\x42\x3d\x48\x81\x3e\x9f\xec\x41\x3a\x8f\x4b\x0a\x8c\x20\xb7\x92\x4c\xfe\x8c\x81\x13\x07\x01\x55\x1e\x52\x56\x0d\x15\x28\x02\xb7\xde\xb2\x8c\x8b\x68\x85\xd5\xfc\xa3\xa5\x29\x03\x99\x98\x61\x3a\x49\x60\x50\xcd\x59\x11\x39\xeb\x6e\x19\x67\x84\x9f\xd9\x19\x2c\x4f\x63\xb8\xcf\x8a\x12\xd8\x1f\xec\xcb\x99\x40\x87\x54\xd1\xb0\x80\xd4\x91\x2a\xa1\x08\x96\x9f\xff\x8b\x69\xc8\xe1\xa8\xfa\xe5\x37\xe3\x74\x37\x37\x9d\xe4\xab\x4c\x36\x37\x3e\xa0\x45\xfe\x30\x4b\x45\x16\x92\x99\x1b\x56\xd7\xc0\x78\x8c\x6d\xed\x31\xca\x7b\xf4\x09\x62\x3b\x4e\x26\x95\x0f\x19\x89\x80\xdd\x98\xb9\x4f\x65\xd3\xc9\xf0\xfd\x98\x93\xcd\x72\xde\xee\xe8\x47\x06\x4b\x16\x6e\xc4\xd8\xf4\x74\xa0\x86\x6a\xcb\xda\x18\x2e\x5f\x61\x01\xbd\xa1\x96\xcb\x0a\x5f\x8f\x87\x53\x85\x4c\xbd\x3d\x86\xa0\x32\xcf\xaa\xc6\x24\x06\xac\xa8\x42\x44\xca\x14\x0b\x44\xa8\x3d\x19\x82\xc7\xc1\x12\x66\xd5\xc7\x9f\x82\x1e\x4b\x58\xb5\x8a\x23\x99\xc2\xb6\xf0\xf7\x9a\xc2\x2c\x7a\x78\x60\x6f\xbe\xb0\xad\xb7\x70\xe3\xf9\x3c\x08\xb9\xd1\x0e\xd7\xd5\xcc\x13\x8f\x7a\x21\x87\xc8\x79\xa2\x3a\xce\x26\x01\x19\x2a\x5a\xf0\x45\xd8\x6c\xc7\x0e\xb9\x71\xdc\x97\x78\x33\xd8\x0f\x16\xdb\xcb\xbd\xc2\x6e\xb4\xe6\x57\xeb\xe7\x6f\xc8\xd7\x88\xc8\xc9\x81\x4b\x31\x07\xaa\x14\x33\x89\x60\x40\xe7\x43\x8a\x8f\x18\xb4\xe9\xc1\x9e\x52\xf2\xe8\x6a\x25\xc9\x99\x8f\x0d\x5b\xdd\xee\x10\x4c\x61\xed\xec\x80\x7c\x25\x0f\x1e\xca\xcf\x7f\xc9\xee\x05\xcc\x1e\x09\x4c\x2f\x03\x01\x92\x4a\x8c\xbf\xa3\xbb\x04\x06\x85\xe0\x09\x40\x34\x52\x89\x1a\x2a\x8c\xd3\xc7\x39\x42\x8f\xd0\x1c\x6c\x5a\xb3\x3e\x3f\xef\x83\x1a\x8b\xc9\x3c\x59\x63\xf1\xb3\x4f\x2a\x2c\x73\x64\x0f\x18\xcd\x61\x46\x84\x56\x0a\x6a\xe9\x17\x5c\xc3\xc8\x72\x7b\x8f\x8a\xfe\x0e\x6e\xb8\x9f\xd2\xa0\x49\x13\xf6\x7b\xb1\x68\x56\xa3\xf7\xb5\x68\x56\xa3\x19\xdf\xa4\x59\xd1\x36\x82\xf6\xb6\x22\x53\xdd\x3f\xfb\x52\xd9\x56\x34\x0f\xd2\xc9\x56\xd4\xee\xcd\x4a\x59\xd1\x39\xd8\x4a\x59\xd1\xba\x57\x33\x65\x45\x6f\x65\xa3\xbb\xc6\x3f\x2c\x49\xd3\x16\xba\x5d\x7d\x06\x90\x40\x8f\x2f\x27\x02\xb6\x7b\xb8\xa3\x1f\xd3\x3a\x38\x0e\x50\x9f\x31\xd8\x58\x07\x6d\xc8\xb6\x33\x0d\x8e\x41\xeb\x20\xbb\x60\x3f\xb4\xd1\x4f\xca\x17\xb0\x35\x8c\x8a\x7b\x44\xdd\x7c\x4d\x57\xb7\x21\xcd\x6f\x35\x3d\xe1\xf9\x52\x5e\xd9\x2f\xda\xc1\x1c\xf5\xf7\x14\xc9\xe1\xbf\x6c\xbb\x91\xb4\x82\x2f\x9b\x78\xf6\xb1\x44\x63\x98\x7d\x2a\xbe\xfb\x04\x76\x9f\x13\x72\x9c\xa7\xa4\x45\x2f\x1b\xfb\xbd\xf1\xb5\x91\x91\x51\xab\xb9\x5d\x67\x7b\x9a\x38\x6b\x50\x20\xc8\x11\x52\x27\x82\xa9\xf4\xb1\xcd\xf0\x9f\x6e\xd2\x7c\x60\xf8\x52\x88\xef\xbb\x8a\x69\x00\xa6\xad\x3c\x36\x69\x42\xdf\x6b\x0f\x79\x5b\xaa\xfd\xe1\x0e\x1b\x49\x35\x4d\x4d\x84\x6e\x44\xf7\x80\x70\xa6\x0f\x15\x07\x8d\x00\x15\x54\x1b\x70\x6a\x11\x8a\x3e\xc0\xb9\x50\x89\xed\x4d\x9b\x55\xcc\x8b\xe8\x91\xd2\x23\x99\xf5\x9e\x66\x8d\x43\x83\x22\x40\x4e\xce\xa8\xc1\xbd\x14\x45\x09\x8f\xfe\x3c\x65\x05\x00\xd7\x3d\x79\x60\x63\x53\x35\x2d\x49\x48\xd6\x85\x32\xe7\xde\xaa\x93\x81\xb3\xed\x11\x95\xe3\x0a\xd0\x13\x93\xc1\x63\x8a\x36\xdc\x80\xbf\x62\x3e\x0c\xd1\xf4\xd0\xec\xbc\x37\x9d\x6e\xa7\x7d\xe3\xf3\x1f\x39\x4e\x2c\x1c\x35\x4e\x55\x08\x64\x75\xe2\xbf\x6f\x1c\xca\x06\x31\xfd\xef\xd1\xa7\x40\xf9\x44\xe3\xc7\x6d\x37\xe8\x19\xf9\xd4\xe8\x07\xcd\xcb\x8e\x1d\xda\x47\xe1\xe8\x93\xb3\x77\x1a\x5c\x66\xe8\x83\xca\x5f\xc7\xf6\xe9\x3f\xfc\xfd\x3f\x9c\x1f\x04\xdf\x7e\xf3\x87\x3f\xe1\x3f\x6f\xba\xf5\xa0\x67\xd8\x89\x32\xaf\x01\x8c\x79\xca\x76\xe2\xee\xde\x2e\x14\xa1\x09\x19\xad\xc0\x31\x3c\xb6\x28\x6b\x4d\x01\x3c\xb1\xca\x1d\xd2\x49\xd1\xb9\x4a\xaa\x97\x8b\xb8\x0c\x83\x35\xa9\x5c\x29\x9b\xc0\x10\x25\x68\xaa\x52\x27\xc4\x69\x86\xc1\xb3\xf0\x24\x5f\x95\xc6\xc8\x7b\xd5\x94\x7c\xd4\x81\x92\x28\xf4\xb2\x3a\xa5\x5a\x2b\xad\x2d\x5c\x94\x5f\x43\x05\xa2\xd1\xa4\x70\xf1\x70\xad\xd9\xa6\x7b\x76\x95\xc9\xc7\x28\x85\x99\xa2\x00\x95\x9c\x33\xfb\x70\x17\xc3\xfe\x4c\x59\x2b\xad\x82\xd7\xcc\xf1\x6a\xe6\xfb\x96\x89\xe6\x02\x53\x2a\x3e\x44\xdc\x63\xfc\x10\xd2\x63\xba\xf1\x61\xda\xe4\x72\x15\xc9\x4f\x95\xbe\x1a\x56\x2d\x5f\x95\x9f\xff\x92\xeb\xb8\xd9\x2c\xf7\x32\xac\xa4\xf3\x12\xdd\x89\x38\x02\xbd\xcc\x62\x0b\xc3\xf7\x5d\x46\xc1\xba\xa1\xee\x5a\x09\xcd\xde\x36\x70\x56\x2b\xf2\xf9\x6a\x64\x85\xee\x3e\x5b\x55\x0f\x38\x52\xf2\x27\x98\x9a\x38\xdd\xe8\xe0\x88\x3c\x7f\xd9\x83\xab\xd9\xc0\x01\xf6\xc7\x04\x03\xa3\x03\x51\x60\x98\x73\x01\xcd\xa3\x58\x86\x3a\xe3\x09\xe6\x14\xc1\x3c\xde\x77\x9c\x3d\x8e\xdc\x39\x28\x67\xd3\x41\x95\x2c\x2c\xa7\x1d\x23\x1e\xa1\x1f\xb5\xa1\x6d\x8c\x17\xc2\x22\x7a\x94\xb4\x60\xa6\x8d\x6b\x81\xdd\x15\x77\x9c\xce\x45\xfc\x02\xdd\xd1\xb2\x44\x16\x1e\xee\xa6\x9a\xaa\x2a\x2f\x95\x4a\xb5\xf2\x2c\x0f\xe6\x98\xc7\x31\x2f\x97\xb0\xb5\x64\x5e\x7b\x41\x51\xb1\xec\x60\x29\x81\x59\x09\x93\x23\xc2\x68\x80\xed\xd7\xb7\x5c\xae\x5a\x59\xaf\x70\x0e\x25\xcc\x38\x32\x16\x4e\xa7\xd4\x49\xee\x11\xac\xc0\x4f\x62\x33\x4b\x15\xac\xe9\xa3\xfc\x44\x79\x5c\x36\xfb\x5b\x53\x35\xbd\x78\x7b\x7a\x7d\x79\x71\x3e\xbd\xb8\x0d\xde\x1e\x5d\x9f\x1e\xbd\x3a\x9b\x06\x54\xf8\xa3\xdb\x67\xc6\xaa\xcf\x20\x0a\x6e\xba\x4f\x58\x5f\x73\xdb\xad\x55\xe7\xc3\xef\x46\xf5\xbf\xa6\xd0\xe4\xf2\xa5\x57\x0e\x2a\x4e\x09\x1c\x54\xc9\xe2\xf9\xae\xab\xe4\x55\xe5\x7c\x95\xab\xdb\x27\x5f\xa5\x49\x6e\x30\x37\x7f\x27\x66\xb0\xc2\x45\xe3\x1e\xc4\x65\xaf\x80\x53\x18\x57\x6d\x45\xad\x9c\xac\x60\x93\xac\x09\x3a\xe2\xf2\xaa\x86\xa9\x86\xf1\xdd\xed\xed\x15\xfa\x20\xff\xb2\xd6\xa9\x53\xd1\xa9\x53\x0f\xa2\x9f\xec\x76\x7f\x8e\x63\x6d\x10\x09\xc0\xfc\x69\x1b\xa2\x2f\xf1\x01\xe1\x49\xdf\x68\xda\x92\xb1\xc0\x0e\x1a\x87\x9b\xae\xc4\x03\x82\x2b\x75\xe8\x99\xa3\xf4\x06\x24\x34\xf6\xee\x49\x98\x19\x94\x8b\xaa\x4f\x1b\xbd\x5c\xf1\xb7\x35\x35\x98\xcf\x48\xda\x2b\x69\xaa\x73\x32\x4c\x47\xd3\x20\x65\xcf\x2a\x9a\x3d\x62\x72\x9b\xf8\xa7\x53\xd0\xec\x1b\x9d\xf7\xb8\x87\xea\x4a\xdc\x87\xbe\x07\x8c\x4f\x33\xfa\xc1\xca\x99\x27\xc6\x3e\x64\x56\x9e\x5a\x35\xf3\x25\x48\x70\x98\x9f\xc7\x40\xd7\x88\xa6\x70\x0f\xa1\x54\x84\xc1\x47\x91\xab\x94\x5e\x45\xf7\xd8\xde\xea\xae\x20\x74\x21\xa8\x16\x84\x24\xc5\x70\x1c\x7a\xea\x43\x93\x79\x14\xa6\x5e\x14\xe2\x23\x8b\x99\x3f\xa7\xc7\x25\xd1\xaa\x7b\xb6\xa9\xf9\x1c\xa4\x46\xb8\x11\xd6\x92\x62\xc5\xb4\x40\xe5\x8d\x7d\xae\xa3\xb8\xea\x44\x14\xf0\x08\x7c\xd9\x1d\x12\x61\xdb\xcd\x97\x0e\x35\x0b\x36\x55\x99\xea\x9e\xad\xb9\x18\x56\x7d\x69\x83\x9c\x42\xa5\x31\xb3\x48\x6f\xca\x3d\x45\xdc\x9d\xc3\x6c\x50\x2a\xd3\x0d\xc2\x7a\x52\xaa\x6d\xcc\x0d\x25\x4e\x1b\x01\xe9\x0e\x9b\xef\xa1\x55\x16\xd5\x36\x3d\x1d\xe6\xde\x0e\x50\x8e\xd4\x86\x3b\x5d\xe5\xf8\xe4\x3a\xd0\x3a\xdb\xe9\x30\x67\x02\xe3\x4b\xe7\x6e\xb7\x39\xbb\xac\x7e\x43\x40\xb9\xd2\x5b\xa5\xf1\xa6\x13\x5a\x9f\x32\xd3\x7b\x9a\xcf\x04\xe9\x32\xc8\xbf\x4a\x3f\x4c\x77\xf7\xf6\xa6\x88\x1f\xd3\xbf\x03\x92\x30\x95\x27\xdd\x88\x95\x5a\x0c\x05\x21\x97\xb5\xd4\xc9\x4d\x95\x5b\x61\x8e\x6f\x1c\x18\x5d\x04\xb0\xba\xe0\x0c\xa6\x91\x7d\xd2\xad\x59\x6e\x93\x44\xee\xba\x45\xe4\x38\x14\xea\x1a\x0c\xe8\x01\xb2\x0c\xf5\x66\xee\xe7\xc0\x75\x82\xd8\xb9\x2a\x2b\xd0\x05\xc1\x93\xb0\xe1\x47\xd6\x0b\x92\x27\xb5\xbd\x09\x8f\xb7\x97\x55\x77\xf1\xf1\x12\x6f\x23\xdf\x14\xef\x6a\xde\x69\xe7\x7a\x33\x10\xda\xc8\x54\xbb\x1e\xdf\x5e\x20\x9e\xf4\xed\xf2\xc4\xf3\x3f\xbf\x16\x80\x1c\xe9\x5c\x70\x06\x33\x34\x45\x81\x58\xc6\xe6\xa3\xbc\x84\xd3\x8c\x49\xd3\x7b\xc8\xb3\xec\xeb\x49\x91\xe6\x29\x54\x10\x90\xcd\x7e\x6c\x0e\x80\x31\xbf\x06\x49\x8f\x4b\x78\x5a\x92\xe8\x0a\xcc\x93\x66\x4a\xa4\x8b\xa9\x8c\x2d\xc9\xda\xd1\xde\x13\xb3\x1a\x8e\x36\x82\xf0\x18\xd1\x2e\x62\xbd\x8a\x56\x10\x1c\xa9\x8b\x12\x92\x42\xa2\x4c\xa2\x85\xb1\x77\xb7\xa3\x2c\x4e\x52\x4b\x16\x2d\xd1\x90\xe2\x3f\x2d\xb0\x07\xf3\x07\x41\x6f\x5e\x2c\x8e\xde\x27\xee\x8a\x78\x5e\xc6\x74\xcc\x28\xd2\x49\xde\xcb\x4c\xea\x82\x8d\xf1\x06\x04\x47\x4a\x30\x91\x71\x5b\xc8\x35\x26\x10\xae\xae\xc6\xb1\x33\x19\x33\x60\x4c\x09\x6e\x39\x29\x82\xe3\xc5\x71\x52\x06\x4d\x80\x46\xa9\xa2\xdd\xed\xb1\x52\x66\x0d\x1d\xc2\xee\x8f\x5e\x66\x98\x59\xdc\xfe\xe1\x0e\x4f\x1f\x4d\xc1\xf0\x67\xfb\x2a\x4b\x51\xe3\x42\x02\x44\x75\xa8\x50\xcb\x82\xd9\xdc\x7b\x08\xb1\xec\xeb\x48\x11\x0c\x2f\xdc\x56\x08\x58\x5f\x49\xb1\x64\x8d\x46\x7b\x63\x12\xb0\x08\xc5\x90\x31\x1e\xf5\x9a\x44\xfd\x5c\xe8\x3f\x2c\x31\x96\x59\x8d\x45\xfd\x46\x18\x0d\x37\xcd\x7a\xff\x8e\x31\xf5\x19\x83\x02\xdb\x3d\x63\xdb\xd9\x99\xa6\x44\x2c\x87\x3f\xd5\x01\x0c\x26\xe3\xd8\xeb\x6b\x5d\x1d\x72\xba\x5d\x6d\x96\xae\xa3\xb5\x33\x56\xe0\x15\x8f\x55\x30\x93\xfd\x79\x52\x1d\xa5\x0e\x6a\x1a\xe3\xfc\x50\xe1\x83\xe1\xab\x55\x55\x41\xd8\xe7\x72\xb1\x7a\x6c\x43\x8a\xb4\xac\x94\xc0\x10\x50\x67\x26\x39\xfc\x13\xfb\xcf\x0d\xfd\xbd\x69\x1b\x38\x91\x31\x7b\x76\xb5\x4c\x88\x23\xcf\x23\xd6\x27\x20\x3d\x68\xea\xae\x0a\x55\x95\x0a\x36\xf9\xfa\x88\xda\xd0\x4f\xd1\x6a\xb5\xb1\xc6\x16\xea\xd9\x74\xb9\x42\x41\x50\x95\xf4\xd1\x8b\xeb\x4b\xc4\xcb\xe0\x22\xe5\x74\x48\x54\xe0\xb0\xd7\xcb\x52\x75\x42\xe1\x0d\x33\xb4\x70\x16\xa1\xba\xe4\x61\xb3\xb4\x9a\x3f\x49\x98\xc0\x27\x44\x07\x94\xe0\xa3\xe0\x05\x24\xb2\xf2\x75\x32\x0f\x7e\x4a\x67\x54\xa4\x08\x9a\x92\x47\xde\x33\x5c\x5c\x4c\x62\x90\x77\x27\x94\x52\x60\x73\xb4\xeb\x8a\x19\x2d\x67\x11\xe1\x3a\x06\xaa\xd4\x34\x25\xea\xc7\x7f\xd4\x62\x17\xba\xcc\x14\xc8\x19\xf3\x2c\x4d\xd2\x0d\x94\xec\xbe\xa2\xaa\x54\xf9\x8f\xd3\x6e\x27\x0e\xdb\x69\xbf\xc8\x79\xc9\x31\xec\x99\xf8\x58\xa7\x50\xc2\x05\x83\xb7\xc4\xa4\x58\xaf\x30\x3d\x48\x41\x86\xc1\x7a\x1f\xbe\xf8\x29\x87\x67\xeb\x6c\xad\xab\x63\x75\x53\xf8\x13\xc2\x67\xc7\xcd\x4a\x30\x0c\xe6\x59\x19\x8a\x03\x5d\xdf\xba\xc2\x03\x98\x3f\xff\x07\x7e\x75\x1f\x2d\xca\x4c\xa7\xa2\x52\x55\xb3\x02\xb1\x45\x80\xd7\x78\x57\x94\xac\xae\xf5\xfc\x66\xe7\x06\xc1\xef\xdc\xf4\x3e\xf8\x20\xd7\x2f\xb8\xfa\xe5\x4a\x44\x59\xae\x4a\xb5\x05\xe9\x9c\x32\x98\x87\xcd\x2a\x5b\x41\x22\x45\x06\xd7\x0f\xae\xff\xf7\xcb\xf8\x26\x81\x33\x2b\x0b\xd8\x03\x9d\x33\x72\x53\x6d\x29\xcc\xfd\xd0\x3a\xa4\x30\xd1\x3c\x53\x48\x08\x39\x44\xc1\x46\x82\xb5\xa1\x6c\x67\x48\x51\x9a\xbd\x4b\xbe\x2b\x61\x87\xc2\xd9\x92\x8d\xe7\x5f\xa5\xcf\x0a\x40\xec\x9f\x63\x4f\x33\x49\x83\xa6\x2b\x6f\xcd\x97\xf5\x38\xf3\xc6\x40\x61\x4c\x30\xd4\xa4\x1e\xeb\x10\xd2\xaa\x2b\xa1\xa2\x0b\xf7\x2b\x2f\x63\xf0\x7f\xbe\x2b\xbf\xf9\xe6\x8f\x92\x8b\x99\x1e\xc0\x45\x52\x04\x51\x41\x36\x52\x0a\x95\xbc\x85\x6d\x67\xaa\x94\x5f\x0f\xa2\xc6\x82\xc3\xe1\x85\x22\x44\x98\x77\x8a\xb2\xd1\x35\x50\xa5\xd9\x01\x3e\xa1\xd8\x8e\x5a\x26\x3b\x31\x79\x0d\xf4\x2a\x83\x97\x71\x56\xac\x37\x06\x3c\x4b\xd3\x18\xe6\xd3\x72\x1c\x1b\x40\x1a\xe3\x51\x70\xfc\xec\xbd\xfd\x64\xea\xf3\x95\x17\x19\xe6\xff\x1f\x4a\x6e\xe3\x9c\xcc\xe1\x95\x9c\x88\x7c\x4f\x74\x73\x21\xb1\xed\xdd\xa3\x9b\xdb\xef\x22\x24\x7e\x1b\x8f\x9a\xfd\xe4\xf3\x7f\x61\xbd\xb1\xad\xad\xd3\x89\xc6\x7a\x8c\xaf\x8f\x4e\xcf\xa6\x27\x9d\xf4\xbd\x3e\x3a\x3b\xbb\xf4\x01\x3b\x3d\xba\xbd\xbb\x9e\x06\xaf\xcf\x8e\xde\x74\x7b\xd7\x76\xb4\xb2\xc7\x42\x8e\xdb\xc1\xbd\x2c\xe6\x0f\x2d\xb1\x32\xb7\x33\xce\xbe\x16\x71\x9c\xe2\x95\xcd\x6f\xf0\xde\xee\xde\x84\xb1\xb1\x23\xb7\x94\xc3\x99\x2c\x90\xd8\xd2\x19\xdc\x80\xf0\x12\x57\x39\x41\x3a\xfb\x7b\xd3\x25\x1f\xe1\x86\x75\x26\x0b\xf3\xea\xe1\x9e\xcd\xb8\xff\x1e\xe8\x4a\xb3\xc5\x84\x7d\xea\x50\x7c\xcb\x52\xf6\x64\xb9\xcc\x16\xd7\xf0\xe7\x6d\xaa\x42\x7d\x54\xe4\x9b\xcf\x52\x2b\x43\x7c\x3e\x09\xe5\xa4\x2a\xa4\x05\x78\x9c\xd1\x0c\x19\xa2\xf7\x7e\x30\xf5\xf5\x26\x88\x03\x82\x0e\x2d\x5e\xda\x1b\x73\x49\x89\xac\x76\xf6\xf3\xa6\xa5\x9d\x84\xc2\xfa\x34\xfb\x00\xf1\xa7\x11\xed\x46\x3b\x76\x29\xd9\x93\xf6\xb1\x4f\x1b\x85\x91\xd4\x4e\x75\x44\x35\x6c\xa8\xcd\x09\xb4\xb3\x60\xfa\x82\x71\xa5\xb3\x48\x75\xf5\x45\x7a\x7b\xdc\x2b\x35\x10\xa6\xda\x7c\xaf\x03\x5a\x6c\x34\xd5\x95\x0b\x13\x81\xd1\xef\xd1\xfa\x6d\x12\xca\x0d\xb8\x63\x90\xac\x05\xf4\x03\x14\x5b\x54\xc8\x11\x17\x2b\x95\xc9\x63\x04\x2f\x48\xb4\xf4\x54\x0e\x7d\x06\x85\xe5\x88\x90\x3d\x46\xa3\x0c\x44\x66\x43\x08\x6f\x6e\xcc\x81\xc3\x06\xa2\x6c\x4c\xf3\x50\x4d\x0b\x07\x12\xa6\x94\x73\xa7\x6f\xe5\x2b\xde\x3a\x4f\x61\x3a\x54\xbd\xd2\x7a\xc9\x09\x88\x0f\x31\xca\x41\x1c\xcd\xa1\xfc\xe7\xeb\x58\x60\x46\x12\x15\xf0\x1f\x76\x8b\x84\x2e\x5d\x87\xd3\xc3\xde\xed\x3e\xe4\x6c\xf7\x74\xa5\xa6\xdb\x76\xb5\xdd\xc0\x1e\x36\x9a\x80\xa9\xb8\x30\x69\xa5\x28\x2e\x2f\x5e\x1f\xc0\x06\xfd\x80\x01\xa1\x99\xf2\xc5\xc7\x56\xf2\x97\x88\xc2\x92\x0a\x15\x35\xb8\x12\xb0\x61\x4c\x7e\xbf\x5d\xb0\x55\x20\xa1\xd2\x17\x86\x3a\xbe\x90\xe3\xec\x54\x35\x58\xb4\x1b\xe8\xf0\xc0\xc0\xab\x20\xc5\xeb\x14\x73\x07\x87\x9c\xf7\xf0\x79\xc8\x41\xb3\x2b\x80\xbb\xe2\x58\x2b\xd2\x8e\xa8\x82\xc1\xdd\x21\xa2\x9e\x50\xec\xe7\xbf\x86\x8f\x7a\x0b\x2c\xb3\x8d\xea\xb8\x26\xd8\x6e\xda\x4a\x99\x7d\x12\xec\x81\x88\xe6\xc2\x28\xa9\xfa\x79\x6a\x2a\x99\x9a\x65\xb4\xc8\x84\x07\x39\x29\x52\x43\x9d\x59\x07\x33\x16\x3d\x99\x54\x2c\x8a\xab\xdc\x69\xa2\x78\x15\xfa\x66\x27\x93\xf0\x16\x98\x73\x51\x7b\x55\x9b\x1d\x09\xcb\xcb\x85\xe6\xa2\x3e\x47\xf2\xcd\xf4\xf6\xf6\xf4\xe2\x4d\x70\x73\x7b\x74\x7d\x6b\x78\x10\x76\xb6\xb3\xc7\x74\x76\xf9\xea\xe8\x2c\xb8\xbc\xba\x3d\xbd\xbc\x30\x44\x3f\x5e\x5e\x1d\x43\x83\xe9\x4d\xc0\x1d\xbc\x22\x1f\xdf\x28\x5f\x8c\xcb\xa3\x2a\xff\x9a\xe9\x7c\xf7\x35\xb7\x1f\xa3\xf6\xe4\x89\x75\x9d\x76\x1d\x6a\x0f\xf7\xe4\x07\x59\x80\xa8\x36\x97\x26\x4a\x2e\x51\xd2\x67\x0b\x42\x91\x86\x69\x0e\xbc\x26\xaf\x72\x31\xf3\x35\xb9\x44\x7d\x5e\x98\x0e\x24\x70\xb5\xca\xf7\x95\x47\xb4\x31\x06\x42\xf3\x05\xb2\x87\xea\x61\x36\x5e\xf6\x87\x87\x06\x47\xca\x06\xc9\x9d\x5d\x9c\x91\xab\xc7\xbf\xa1\x64\x90\xf3\x7c\x6a\x85\x40\x3b\xf3\xd9\xf8\x59\x38\xf5\x10\x64\x23\xa6\xa4\xca\xa7\x11\xfc\xfa\x04\xc9\x68\x1b\x83\xae\x09\x08\x49\x84\x65\x09\xfd\xf7\x90\xa4\xb6\x9a\x26\x52\xa7\xec\x63\x7e\xec\xf6\xac\x52\xc7\xec\x69\x62\x06\x1d\x02\x14\x82\xbe\xd8\xce\x51\x16\xd8\x7d\x4d\xcc\x80\x69\x41\x5f\xc5\xe1\xf1\x68\x8d\xa1\x12\xc0\xbd\x97\x3a\xdd\x22\x7f\xcc\x9c\xaf\xe3\x02\x1f\x30\xa6\xbe\x8c\x96\xde\x95\xdf\x36\xd7\x2b\xac\xca\x5e\x6f\x61\xdb\xb5\x37\x47\x4c\x0e\xa9\x07\xdd\x15\xb5\x6a\xe0\x3b\xb7\x5a\x47\xa5\x2b\xf7\xef\x81\x6b\xb0\x0f\x6d\x5e\x17\x11\x40\xff\xd9\x3c\xc2\x2a\xf9\xc0\x4d\x00\x7a\xb7\x3a\xc4\x07\xc4\x30\xfa\x2a\xc0\xeb\xa0\xdb\xc6\x6b\xee\x89\x24\xed\x36\xc6\x5a\x89\xb9\x3b\xf3\xbc\xd2\x0e\x1b\xc2\x4d\x74\xf9\x9c\x4d\xc0\x63\x33\x13\xa2\xde\x2d\x5a\xbb\x41\xea\x9c\x7b\x8f\x4d\x94\x4a\x93\xb5\x49\x54\x60\x7d\x27\x73\x99\x87\x6d\xb2\x36\x21\x38\x53\xd6\xe6\x8a\xb9\x3b\x7f\xb5\x07\xe0\x41\x9b\x4a\x7b\xcd\xf1\xd1\x2e\x4b\xba\xf0\x00\xe1\x7a\x4e\x36\x60\x23\xb3\xaf\xd3\x5d\xbf\xa2\xbf\x90\xa9\x27\xed\xb4\x28\x8a\x09\x57\x9f\x1d\x2f\xe9\x8e\x81\xed\x09\xf9\xfe\xa6\x64\x3b\xa6\xfd\xf7\x30\x57\x7b\xa1\xea\xa9\x27\xf1\x0b\xcc\xd0\x17\x18\xfe\xfe\x46\xb9\xe7\xc1\x3c\xcd\x06\xff\xc2\x1b\xf6\x0b\x1f\xef\xdf\xeb\x39\xde\xe7\x81\x7d\xc2\x93\x59\xe9\x35\x73\xd7\x37\x8b\x09\xd4\x1e\x1e\x24\x1b\xc6\x7b\xc7\xb7\x49\x17\x94\xf1\x5f\x28\xad\x1c\x64\x28\x2e\x2b\xa3\x82\x4d\x76\x24\xef\xb9\x1f\x17\xd9\xd3\x8c\x79\x6f\xe3\x1b\x65\x2c\xdb\xda\xf9\x3d\x56\x21\x19\x15\xf7\xfe\xce\x9e\x87\x61\xc0\x7f\x0a\xbe\xf0\x88\x77\x94\x49\xf1\x79\x3a\x0f\x86\x37\x84\x72\xb7\x77\x96\x3b\x00\x3f\xda\xf2\x5d\x25\x60\x8c\x9b\xc6\x86\xaf\xf7\x41\xee\xda\x23\xc3\x78\x7d\x81\xe6\xa0\xf6\x56\xad\x64\x90\xbd\x28\xae\x15\x46\xe9\x81\x71\x6c\x45\x08\x3b\xba\xed\x2e\xe7\xf3\xa2\x4b\x7b\xe9\x52\x33\xab\x31\x6c\xed\xf5\xd6\x5d\xd8\xa7\x13\xe3\x58\xd5\xb5\x6c\x86\xed\xaf\xf5\xed\x1f\xe0\x88\x4c\x8e\x12\xd2\x52\xc4\x73\x67\x61\xf4\x60\x96\x86\xeb\x4e\xc2\x4f\x84\x4e\x6b\x2b\x54\x91\x73\x1d\x5d\x32\x2f\x65\xb6\xd2\x9e\x08\x43\xa2\xbb\x09\xfa\x52\x16\x0f\x69\x18\x3c\x7f\x33\xbd\x3d\xb8\xba\xbc\x81\xff\xdc\xdd\x1e\x9c\x4c\xcf\xa6\xb7\xd3\x03\x59\xcc\xbb\x7d\x5a\xce\x25\x1a\xc9\x99\x44\x8b\xde\xf6\x54\xa5\x79\x81\x67\xa7\x13\xf1\x76\x03\x67\xd8\x2a\xbd\xfb\x72\x3d\xc9\xcb\x19\x9b\x8a\xbb\x07\x7a\xc1\x51\x73\x30\xdf\x0f\xd0\xbd\xaa\xc1\xbf\xab\xa7\x35\x21\xa7\x17\x37\xb7\x47\x67\x67\xd3\x93\xe0\xea\xec\xee\xcd\xe9\x45\x70\x7c\x79\x7e\x7e\x74\x71\xd2\xed\xb6\xdf\xd9\xce\xf6\x59\x72\xba\x48\xd2\x4c\xb6\x43\xe6\x3b\xb1\x51\x63\xb1\x15\x1d\xef\x99\xa3\xe7\x54\xed\xff\x2a\xa0\x5b\xa5\x51\xd0\x07\xa2\xa7\x4e\x03\x75\x5f\xcb\x76\x2e\x05\xb5\xff\xab\x60\x79\x5d\xff\xdf\xb7\x88\x03\x20\xc1\x0a\xdc\xf3\x22\xb8\xcb\xc5\xa2\x7b\x66\xee\x72\x3a\xcf\xdc\xd6\x73\x32\x9a\x88\x4c\x37\x2f\xe2\xaa\x9a\xa7\x7e\xf7\xe8\x26\xba\xe0\xb8\xca\x22\x93\xc8\xe0\x3e\x16\x0b\x2c\x82\xfc\xcb\x5c\xae\x8a\x60\x72\xff\x35\x26\xcf\x45\xe7\x34\x0c\xb4\xc1\x18\x33\x19\x06\x1f\x1f\xd0\x4d\x8f\x8b\x42\x04\xcb\x32\x2e\xa2\x55\x2c\xd9\xbb\x84\xed\x3b\xed\x3d\xd5\xcd\x8b\xdb\x53\x77\x18\xbc\x02\x32\xaa\xa5\xfc\xfc\xd7\x44\x72\xec\x90\x4a\xa2\xa5\x88\x4a\x89\xaa\x24\x05\x0a\xc2\x48\x66\x14\x95\x97\xa9\xd8\x35\xcc\x47\x5e\x45\x4e\x6b\xca\x72\x26\x8d\x0a\x89\xec\x4e\xef\xe0\xc3\xcf\xeb\x69\xd4\xee\xce\xf0\x4a\x7a\x59\x87\x28\xa3\xff\x2c\x7a\x2a\x52\x11\x85\xf2\x9b\x6f\xbe\xf9\x3f\xd4\x7f\x93\xb7\xb8\x23\x55\x2f\x76\x80\xa4\x9a\x12\x2f\xdf\x25\x3f\xbc\x4b\x00\x0f\xfe\x27\x08\xde\x7d\xb5\xca\xd2\x22\x9d\xa7\xf1\x3b\x40\xf7\xee\xab\x62\xbe\x7a\xf7\xd5\x81\xfe\x2d\xa4\xf0\x7e\x9a\x48\xfe\xf9\xdb\x6f\x0e\xff\xf0\xa7\x3f\x1d\x7e\x7b\xf8\xed\xff\x6c\x34\x5b\xa5\x59\x91\x73\x83\x3f\xfe\xf1\x9b\x7f\x78\xf7\x15\xfe\x00\x04\xfd\x68\x3a\x5a\xff\x2d\x86\xe5\xb1\x8e\x1c\x45\x46\xee\x80\xd9\x82\x8a\x87\x74\xbb\xc6\x5e\x94\x18\x09\xd6\xd8\xbc\xb8\xa1\x74\xb7\xd4\xc7\x63\xb6\xa6\xa3\xdc\x37\xbb\xa1\x4a\x1a\xc4\x67\x55\x76\x24\xaa\x22\xcf\x71\xb3\x3a\xa5\x94\x1e\x4b\x27\x1d\xaa\x20\xc7\x44\x81\xb8\x3a\xba\xfd\xee\xc5\xed\xe5\x0b\xbe\x95\x26\x17\x47\xe7\xd3\x20\x98\x04\xbe\xc8\xac\xef\x30\x86\xdf\xc8\xf4\xf4\x2b\x66\xff\xc5\xbf\x38\xf9\x95\x49\x14\x74\xeb\xec\x36\xc1\xc9\xdc\x70\x97\x6e\x35\x70\x86\x1d\x9c\xcb\x65\x9a\x75\x0b\x8b\x9d\xed\xdc\x31\x2d\xcb\xbc\x50\x61\x96\x69\x32\x49\xe4\x02\x90\x3c\x4a\xf2\xa2\x5e\xc8\xee\xac\xf7\xce\xfd\xad\x29\xc3\x27\x56\x21\x0a\xe5\x05\x02\xec\x64\x01\x77\x7e\x7e\x08\xd7\x99\xa4\x30\x7f\xa5\x97\xca\xd5\xbd\x86\xf1\xfe\x69\xd6\xfc\xa5\xf1\x03\xc6\x69\x60\xf9\x15\x4c\x68\xa5\x9c\x93\xb9\x5c\x55\xf7\xae\x79\x6a\xf4\x0e\x2b\xf6\x48\x2c\x18\x59\xf4\xce\x54\x39\x9d\x43\xba\xae\x64\x26\xea\x1b\x31\x20\xc1\x1e\x31\x48\x74\xe8\x55\xa8\x40\x13\x74\xad\x62\xb2\xf0\x5f\xc3\xd3\x13\x7e\x0e\x54\x97\x74\x57\x73\x67\xbc\x37\x37\x67\xc1\xb1\xcc\xd8\xa3\xfe\x57\x55\x01\x8a\xe2\x9e\x6e\xa3\xd5\x39\x2c\x1a\xf0\x59\x03\x3d\xd8\x15\x10\xa2\x7b\x2f\x81\x8a\x34\x6d\xe4\xd8\x65\x01\xcf\x99\x60\xce\x90\xe1\xb9\x74\x22\x07\x89\x09\x93\x5d\xe0\xf3\xf0\xf1\xf3\x7f\x8c\xb9\x82\xb5\x99\xe1\x65\xb7\xaf\xcf\x2d\x15\xd6\x0e\xc9\x28\x01\xcc\x5c\xe7\x4c\xd0\xc4\xf8\x65\xdc\xd3\x14\xd4\xb9\xc2\xf0\x24\xa1\xab\x0e\x6b\x58\x9e\xc1\x25\xa3\x2f\x16\x6c\x52\xd5\x50\xa2\xb0\x12\x03\x77\x1a\x07\xac\xfb\x38\xb0\x62\x1f\xe9\xf9\x48\x9c\xc2\x02\x7e\x4a\x2f\xe9\x1a\xd7\x77\x4c\x7a\x4d\x2c\x75\x46\x05\xfc\xf4\xa1\x75\x06\xbb\x87\x21\x8c\x47\xf5\x20\x42\x23\x7d\x05\xcd\xd3\x32\x29\x08\x85\xbe\x95\x8e\xf1\x1b\x44\x73\xda\x6a\xd3\xb8\xac\xc8\x17\xcc\xe6\xa2\x83\xf7\x51\x01\x23\xa0\xc0\x44\x85\x11\x63\xe8\x34\xb7\xd8\x8d\x76\xca\x99\x55\x80\xb5\x64\x1b\xfd\x42\x39\x93\xf4\xa2\x29\x13\x8d\x5a\xd3\xe2\x27\xed\xf5\xce\x45\xfe\x85\x26\x23\xb7\x9c\x8d\x6c\x9f\xd3\xb1\x24\xf9\x88\x6b\x68\x12\x75\x2c\x30\x51\x79\x4c\xab\x0d\x3d\x02\x44\x6f\xea\x5b\xd3\xd9\x5a\x40\x8f\xa5\x1b\x17\xf8\x1e\xc7\x14\x53\xb1\x8f\x07\xae\xf4\xb1\x71\xb2\x46\x1c\x9d\x1d\x1a\xe7\x71\xd2\x03\xb9\xba\x76\x7a\xe9\xed\x6a\xee\x8c\x57\xab\x64\x0e\x83\x3a\x67\x10\x96\x0e\xed\x56\xe7\x56\x39\x8b\xf4\xe9\x3d\x0c\xea\x44\x29\x25\xa6\x58\x5a\xf9\xe9\xd5\x14\x41\x3b\xce\x89\xfd\xb1\xab\xeb\xd7\x12\x9c\x48\xb4\x79\x8c\x19\xd6\x28\xb4\x3a\x71\x89\x7e\x72\x47\x66\x11\x1d\x14\xbb\x8b\x19\x56\x94\xef\x43\xcc\x60\xde\x92\x26\x87\x81\x1b\xc1\x57\xd0\x4f\x0b\x9e\x24\x5b\xf4\x02\x70\x26\x0d\xf3\xdb\x51\xa8\x28\x3c\x04\x96\x34\x0d\xb7\xfc\x8d\xd5\x5e\xb8\xc2\x5e\xb2\xc8\x48\x67\xa4\x41\xb5\x26\xd5\x08\xcd\x99\x5a\x1b\x7d\x12\x23\x1f\x80\x84\xd3\xb1\xdd\xab\x97\x6e\x3b\x7f\xd2\x33\x1a\xd4\x0d\x25\x95\x7a\x2b\x62\xcb\x2c\x93\x6f\x31\x4d\x17\x90\xc6\x0c\xa7\xf1\xec\xda\x48\xce\xf4\xb2\x37\xcd\x86\x51\x83\xc4\x2f\xde\x4a\x44\x79\xe9\xb8\xdb\x5c\xbb\x5b\x4f\xec\x19\xe6\xe2\x42\xd5\x99\x0e\x0e\x45\x15\x5a\x41\xb6\x49\xb6\xba\x1a\x4e\x6c\x5e\x34\x8b\x73\xea\xb0\xcf\x2a\xbc\x25\x97\xb1\x9c\xe3\x11\x11\x5e\x4b\x5e\x53\x56\x55\xf0\xd0\x71\x14\x40\x26\xfd\x10\x62\x9d\xdb\x66\x3c\x85\x91\x58\x7f\x60\xee\x34\xd7\x01\xa5\xfd\xf3\xa7\x02\x7e\x77\x75\x71\x47\x6c\xac\xb0\xb9\xb9\x64\x9e\x75\x33\x2b\x64\x2a\x5e\x42\xed\x9a\x39\x5b\xaf\xd5\xea\xab\xba\x70\xfa\x4b\xab\xaa\xa5\xe3\x01\x76\x1f\x0b\x19\xc8\x55\x99\xf4\x94\xab\xfb\x29\xc7\x93\xf4\xde\x73\x14\x03\x40\xba\xd3\xbf\x11\xe0\xd1\x4f\x5d\x67\x07\x1f\xdc\xec\xad\xa7\xa5\x5e\x77\x46\xe2\x03\xc6\x83\xce\xca\x93\x48\x90\x8f\x87\x05\x49\x9d\x3d\x3c\xb0\xb3\x7f\xcf\x73\xc1\x7f\x21\x3b\x17\x58\x8d\x7f\x82\x27\x9f\x6d\x98\x41\xbe\xce\x0b\xb9\x3c\x50\x9e\x1b\x14\xb4\x9f\x68\xad\x2d\x3a\x25\xa9\x9f\xa9\x0e\x29\x96\x1b\xcd\x4a\xaa\xa0\x9f\x77\x7b\x11\x6c\xb2\x19\xa6\xe2\x79\x99\x28\x2a\x60\x74\xf8\x77\x84\x80\x05\x9b\x97\x74\xfc\x6c\x26\x75\x21\xbe\x28\x3c\x08\x94\x35\x9c\x3c\x5a\xea\x0e\x8a\xb6\xc7\xf4\x80\x92\x1a\xae\x4a\x49\xa6\x54\xd8\xdb\xd9\x26\x61\xee\x33\x56\xf9\xe3\xa8\x0a\x93\xd6\x83\xdc\x76\xb9\xf1\x26\xa3\x2e\x71\x75\x7f\x2f\x29\x5f\xa5\x26\xa8\xe1\xc3\xd9\xb3\x91\x1c\x61\xf8\x52\xc8\xfc\x51\x67\xad\x52\x6e\x7e\xb6\xa4\xf5\x74\xf6\xa5\x89\xa4\x42\x1b\x52\xe0\xad\x97\x37\xc2\x0f\xeb\x52\x5b\xbe\x34\x34\x32\x31\x34\x78\x48\xff\x2e\xda\x91\x6e\x41\xac\x4a\x54\x1b\xf9\x3c\x43\x89\x94\xcd\xe0\x3b\x45\x92\xca\x4f\xbb\xf9\x2b\xa5\x34\x2b\x93\x64\x23\xe7\x77\xcf\x4a\x8e\x8d\x63\x9c\x11\x72\x7d\x68\xa2\x42\xa5\x03\x18\x38\x1c\x2b\x80\xae\xb4\xb7\x82\x34\x72\x76\x06\xec\xa5\xaf\xa7\x93\x27\x0d\x75\xa0\x45\xcf\x36\x45\x36\xa7\x22\x32\xb6\x6c\x21\xa1\xac\xd3\xc7\x0c\xa5\x48\x45\x53\x98\x67\x03\x89\x21\xa6\x1f\xa6\x19\xa7\xec\x18\x8a\x1f\x17\x59\x19\xce\x41\x2c\x67\x6b\x79\x6e\xb2\xb2\xdb\x75\xb2\xa7\x21\xc5\x6a\xe7\x9b\xb5\xcf\xe1\x4a\xc4\xac\x1b\x5c\x24\xc2\xf0\xdc\x78\x15\xa7\x70\x1b\x0e\x2d\x7b\x7e\x96\xaa\x62\xa4\x51\xb7\xb0\x79\x8a\xe9\xa1\x30\xd5\x75\x1e\x7d\xfe\x4f\xca\x58\xa5\x2f\x3f\xaf\x41\x2b\x84\xa9\xc1\x2b\xee\x38\x92\x59\xc6\x18\xd3\x11\x10\x2e\x60\xa5\x28\x87\x79\xde\x9d\x1d\xaa\xab\x99\x13\x1e\xca\x7c\x50\x16\xa6\x3d\x74\x2c\x55\x35\x54\x35\x9d\xbe\x5b\x67\xb1\xc8\xd0\xff\x80\xf2\xb2\x87\xab\x34\x42\x23\x47\xc4\xc5\x88\xc8\x08\xc8\xa9\xed\x7b\x6a\x59\xc5\x75\x67\x38\x4f\x4d\xa0\x49\x4a\x45\x99\x71\x37\xe6\xb0\x1b\xa5\xf6\xcf\xdd\x05\xd5\x81\xea\xf4\x03\xf9\x40\xaf\x48\xb5\x72\x5f\xd5\x75\x7b\xb6\x9d\xf0\xa0\x6d\xc3\x34\x2c\xdb\x70\x90\xd6\xf4\x9f\x63\xca\x3f\x01\x93\xb0\x5a\xeb\x54\x6b\x4a\x94\x99\xa7\xa1\x32\x72\xa7\x89\xdc\x4c\xf8\x2f\x92\x14\x4e\x79\x76\x18\x04\x77\x09\xa9\xe2\xd3\x47\xd8\x04\x51\x18\xca\xe4\x80\xdf\x99\x00\x70\x52\x41\x62\x47\xa2\x8f\x11\xa5\x96\xe0\xbc\x6e\xd8\xa8\x59\x7e\xc5\xa0\xe9\xfe\xdd\x51\xe8\x3a\xbb\xc8\x1c\x26\xab\x2c\x7d\x8c\x50\x59\xb2\xf9\x5e\x6b\x88\x7d\xe8\x71\x42\x43\xec\xe6\x91\xdf\x71\x28\x8a\xe4\x04\xfa\x7c\x5b\x04\x04\x1b\x8d\x01\x58\xf1\x41\xc6\x55\x0d\x65\x18\x89\x6c\xc8\x84\x2c\x9b\xd5\x1e\x97\xf3\x7b\xaf\x31\x35\xbc\x47\x55\x1e\x55\x18\x54\x49\x37\xfa\x7d\x19\xc7\x6b\xcc\x16\xd9\x6b\xb8\xb0\xed\xee\x49\x57\x94\x37\x92\x50\x6e\x28\x44\xc2\x88\xbc\xf3\xb2\xf5\x41\xb0\x8a\xa5\xc8\x65\xa0\xd6\x26\x90\x11\xee\x19\x7c\x3c\xe2\x36\x23\xd7\x73\x2a\xec\xd7\x53\x22\xf5\x29\x51\x3b\xcc\xc7\x4a\xa9\x52\x52\x2d\xd5\x53\xa5\x9e\x87\x28\x37\xd6\xa0\x81\x7e\x7c\x05\x2b\x89\x3e\xc8\x44\xf4\x29\x10\xcc\x3b\xfd\x0a\xcf\x9c\x8b\x5f\xa8\xd6\x0c\xe9\xd3\xab\x04\x57\xd5\xfe\xa7\xe3\x56\xae\x0e\xa8\x32\x48\x94\x94\x26\x11\xe1\x96\x2b\xcb\x2c\x3f\xff\xc7\x2f\xd1\xb2\x59\x61\x86\xf4\xcf\x70\x8e\x23\x99\x7c\x4a\x5b\x76\xea\x03\xdc\xf6\x04\xd7\x4b\xac\xda\x26\xbe\x96\x6d\x94\x5c\x3d\x8c\x72\xfd\x0d\x8d\x60\x07\xec\xa1\xd4\x47\xcb\x72\x19\x88\x25\x39\x0d\x00\x03\x55\xb6\x27\xde\x68\x15\xc7\xac\x3d\x10\xe0\x87\x07\x2c\xc8\xc1\x31\x17\xdf\x7e\xf3\x87\x3f\x9d\x1f\x04\xdf\xbe\x81\xff\x7f\xf3\xc6\x10\x5e\xb2\x2f\x3c\x5f\x6a\xa4\x87\xc1\xe4\x5b\xbc\x6a\x59\x58\xc8\x03\xaa\xb7\x42\x06\x3b\xb4\xcd\x12\x0e\xd3\x9d\xf5\x05\x69\xf9\x3d\xcf\x58\xf0\xfc\x84\x4b\x1e\xbd\xac\x7f\xdb\xc3\xa6\xda\x17\x7d\xb6\x4f\x10\x4d\x38\xb1\x8c\xe7\x98\x79\x56\x82\x98\x19\xe6\x5f\x13\xff\x38\x3e\x3b\x45\x4e\x4c\x4c\x65\xe3\x35\xce\xbc\xf0\x20\x20\xd9\x45\x79\x17\x06\x79\x54\x9b\x22\x73\xb8\x12\xd6\xd4\xa3\xdb\xbd\xf8\x76\xab\xfa\x16\x12\xb0\x80\xeb\xa8\x83\x85\x98\xc7\xd2\xb0\x55\xab\x85\xff\xc3\xdf\xff\x03\xce\xab\x9e\x5e\x93\x16\x75\xd3\x3c\x4d\xe1\x58\xdd\xfd\xed\xf7\x2e\x3b\x74\x2a\x2b\x77\x9f\xb3\x68\x4f\x6b\x7b\xac\x94\x24\x59\xee\x50\xb9\x57\x62\x68\x2b\x3e\xbf\x96\x43\xbb\x49\x43\x90\x6d\xa7\xaa\x46\x12\x5b\x10\xf2\x08\x90\x80\x1d\x91\xf9\x3c\x15\xd1\xd5\xbf\xfb\x85\x78\x71\x79\xfe\xea\x7a\xea\xf3\x34\xbc\x30\x85\xfc\x5d\xf8\x85\xfb\x5d\xc8\x8f\xc1\x95\xc8\xf3\x8f\x69\x16\x76\xc3\x2e\xe5\xa3\x08\x8e\xb1\x66\x94\x27\x0a\x63\xb4\x22\x82\x4f\x55\xe5\x3d\x1f\xf8\x69\x70\x74\x75\x5a\x3f\x41\x73\x59\xd4\xbe\xe7\xf0\x18\x8d\x92\xdb\x68\xd5\x70\x3a\x87\xc6\xea\x0b\x14\xcd\x58\xd7\x0a\xcb\xad\xfb\x77\xdf\x30\x80\xe8\x01\x18\x41\x85\x08\xb1\x36\x2d\xc7\x87\xa8\x42\xce\xb6\xd1\x6e\x60\x25\x99\xa3\xee\x47\x8e\x7c\x3b\x90\xdb\xf2\x0a\xa0\x4a\xcc\xf9\x05\x26\x30\x31\x74\x10\x7c\x9f\x96\xec\xb3\x15\x72\x66\x7e\xad\xf9\xc3\x93\x01\x6f\x2d\xdc\xdc\x64\xd7\xdb\xca\xc8\xa1\xcf\x91\x36\x01\x72\xf6\x45\x90\xa8\x0b\x8c\x6f\x83\x33\x03\x83\x6e\xe4\x87\xa9\x9a\xa8\xd8\x38\x94\x7c\x5b\x89\x12\xe0\xc7\xee\xd9\xbc\x22\x32\x44\xa6\xc9\xa3\xc7\x52\x13\xec\x61\x70\x0b\x3c\x30\x03\x26\x46\x05\x57\x77\x20\x3e\x60\xc2\x64\xd2\x1c\x25\xe7\xe4\x88\x31\x6e\x88\xa0\xec\x79\x46\xd5\xa0\x71\x34\x6a\xd4\xc4\x3c\xbe\xf8\xf4\xde\x3e\x28\x7e\xa8\x88\xd3\x44\x90\x86\xbd\x23\x23\x0b\xbe\x52\x62\x2c\x2d\xbc\x06\xe6\xb8\xb1\x2a\x9b\x59\x30\xfc\xa6\x75\x15\x75\x9c\x53\xed\x64\x8e\x65\x32\xda\xe7\xb1\xef\x38\xe2\xe9\x51\x10\xeb\x52\x9d\x11\x3d\x9d\x80\xf6\x39\x79\xe9\xdd\xe9\x73\xa9\xd1\x50\x4b\xdd\x44\xb6\x8e\xa0\x1f\x07\xe2\x58\x4f\x7c\x7e\x76\xd2\x7b\x84\x4d\x50\x21\xa6\x6b\x8b\x7a\x19\xad\x2e\x9a\x29\xc0\x7b\x30\x5e\xe0\x64\x56\xf8\x30\x30\x14\xbb\xfa\x3a\x6e\x5c\x60\x68\x8e\x48\x16\x70\xf3\x7e\x94\x14\x26\x1d\x1a\x78\xba\xb1\xb1\x0b\x4e\x6d\x1c\x73\x1d\xaa\x36\x8e\xf9\x61\x35\xa4\xcc\xee\xbd\x1f\x9a\xd9\xae\xe3\xed\xbc\xce\x7e\x04\x71\x18\x32\xc8\x96\x73\xea\x72\x18\xec\x9a\x61\xe3\xdd\xe5\x0a\xc1\x85\x3a\x32\x3d\x62\x32\x3f\x32\xcd\xf2\xa5\x2a\xc3\x03\xd4\xc2\xd1\xb9\x6b\x47\x78\xd5\x97\x6e\xab\x5f\xdf\xc4\x62\xe3\x74\x87\xc7\xd6\x41\x7d\xef\x36\xf0\xec\xb8\x66\xd9\x44\x4a\x2c\xc3\xd7\x41\x43\x8d\xb5\x4a\xc3\xbc\x63\xa8\xaf\x39\x5f\x46\x4d\x4a\xcf\xa6\x7d\x68\x90\xd9\x1c\x63\x73\x58\x06\x98\xae\xa4\x8f\x4c\xb1\x20\x27\x0b\x9a\xd9\xa7\x23\xb8\x7b\x37\xf5\x4a\x6f\x08\xb1\x41\xbc\x70\xdb\x3c\xfe\xc7\xc3\x9d\x81\x79\xba\xbc\x01\xa0\xca\x93\xcb\x0d\x21\xa5\x04\xf6\xc4\xa8\x0c\xf4\xed\x82\x0c\xa4\xb7\x98\x49\x7a\x0a\x1b\xef\x71\xa7\xee\x3e\x74\x6d\xda\xe8\x2d\xe9\x31\x76\x73\xa1\xc3\xd6\xe5\xcd\xd4\xd4\x0d\x5f\x3b\xc1\xa0\xc5\x56\x30\x76\xf0\xc1\x5d\x7b\x10\x39\xef\x7c\xe8\x58\xb4\x9f\xe5\x83\x48\xb1\x1f\xff\xb0\x81\x0f\xbf\x11\x6e\xa2\xa4\xe7\x82\x1b\x89\xb1\xba\x5d\xd4\x3d\xf7\x73\xd2\x71\x2b\x6c\xdf\x63\x06\x0e\x3b\xe0\x46\x56\xae\x8f\x02\x9e\x2b\x8b\x44\x9a\xd7\xb9\xab\xa9\x07\xbe\xfe\x4d\xb5\xb3\x9d\x13\x26\xe5\x44\xe4\xc9\x57\x9d\xba\xfb\xd0\xb5\x51\x02\xc3\x92\x1c\x53\x2f\x27\x2a\xc8\xc7\xb4\xb6\xf2\x7a\xcd\x12\x10\x84\x97\xbb\xee\xc7\x45\x7c\x8a\x34\x4b\x2a\x13\xaf\xd0\x26\x5e\xed\x49\x8a\x3b\x1d\xc3\xde\xeb\x37\xa6\x8f\xbf\xdd\x45\xca\x46\x6a\x9d\xfe\x63\xdf\xd4\x6b\x03\xf5\x58\xd4\x27\xc8\xe2\x83\x75\x5a\xb6\xb5\xe9\x5c\x51\x87\xc8\xe7\xd7\x05\xbd\x34\x0a\x4a\x8d\x44\xb6\xfe\x99\x0c\xca\x15\x16\x22\x34\x95\x77\xe4\x81\xa5\xcd\xec\x44\xf4\x94\xe2\x7a\xfc\xe8\x3f\x04\xc3\x98\x8b\xe5\x2c\x22\xc5\xdb\x05\x48\x72\xc8\xc3\x05\x25\x3b\x0a\xbd\xf2\x17\x01\x91\x41\xcc\xee\x3b\x51\x52\x6b\x26\x8e\x5f\x93\x32\xaf\xcd\x18\xa1\x1d\x36\xea\x13\x36\x73\xd4\xa0\x90\xb1\x04\x5d\x9f\x30\xf0\xea\xae\x66\xe4\x9b\x60\x31\x0a\x4a\xb5\xcc\x94\xcf\x92\xe7\x30\xe4\x4b\x36\x39\xa3\xd9\xa2\xa0\xfa\x92\xe9\x92\xad\x19\x06\x82\xad\x7a\xd9\x53\x51\xa5\x0e\xaa\xf4\xf5\x06\xfd\x2f\xa5\x0e\x6a\xc5\x39\x7b\xa0\xbc\xfc\xe7\x4e\x0c\xcd\x9f\xec\xe1\x5d\xbf\x09\x8e\x4e\xce\x4f\xbb\xeb\xc6\xee\x68\xe1\x06\xfd\xee\xe4\xf4\xf6\xf2\xba\x5b\x63\xc4\xbf\x07\x27\xd3\x00\x9a\x7b\x22\x39\x3f\xba\x38\x7a\x33\xed\x46\xa2\x7e\x1f\x84\xa4\x3b\x27\x5f\xfb\x47\x7b\x98\x06\xdf\xe7\x4b\x2f\x17\xf9\x4b\x7c\x49\x52\x2c\x02\xc6\xd5\xa3\x42\xa9\xe1\x6a\xdd\xe0\x5f\x26\xb4\x8e\x00\x9c\x68\x6b\x69\x76\xb5\x16\x96\x2b\xc1\x76\x9b\xfa\x76\x94\xd2\xc2\x90\xa9\xc7\x48\x70\x57\x9f\x93\xbb\x45\x4c\x3b\xd3\x07\xaa\x3e\x94\xb7\x4d\xad\x21\x36\x4e\x9a\x3f\xb0\xb1\x68\x36\xb8\xe2\xee\x98\x41\x54\xd1\xd2\xe4\xf9\x70\x5f\x00\x63\x28\x1d\xda\xfa\xd1\x05\x66\x7f\x28\xd7\xee\x46\xf6\x38\xd8\x53\x4f\x72\xb1\x61\xca\xde\x46\x36\x79\xed\xaa\x59\x39\x51\x75\x3f\x5d\xd2\x59\x26\x29\xc4\x73\xc6\x69\x27\x4b\xf4\x5d\x8a\xab\x9e\x5c\x19\x96\xc1\x95\x99\xba\xc4\x57\x94\xdf\x82\x30\x8d\x49\xb4\x4a\x54\x63\x4d\xbb\x3f\x20\x77\x5a\x1b\x45\x76\x37\xbc\x1d\xc9\x71\x8d\xf9\x49\xb3\x12\xba\xb8\x2f\x64\xb6\xe9\x3a\xb9\xc2\x3a\xc9\xdd\x9c\x61\xcf\xd8\xac\x47\x7d\x25\xa2\xb0\x65\x9e\xef\x26\x99\x8c\x54\xa8\x35\x5f\xa4\x43\x5f\xfe\x68\xd0\xe6\x50\x74\x20\x9b\x8b\x34\x50\x54\x72\x5d\x83\x5e\x34\x55\x4e\x5b\x35\xe7\xf9\x5d\xd2\x4d\xe9\xc8\xe0\x47\x1d\x57\xe3\xc9\xb7\x8f\x71\xb9\x80\x77\x1a\x97\xd1\x01\xc1\xd7\xf5\x40\x03\x0e\xe0\x38\x50\xe2\x32\xda\xf8\xd5\xe5\xb0\x14\xc5\xfc\xc1\x74\x37\xe8\x6e\x3a\x54\x25\x56\x5e\x10\x78\x47\xcc\xd3\x08\x24\x55\x2f\xab\xd6\x95\xe2\x32\x68\x19\xaa\x78\x0a\xde\x85\x46\x37\xfb\xeb\xb2\xe0\xf4\x65\x6d\x8e\xda\x78\x16\xa1\xea\xac\x7a\x31\x7d\x8a\x76\x2f\x85\xd1\x46\xab\x29\x6b\x51\x05\x90\x2c\x28\x6b\xb3\x7a\x74\x35\xe8\x25\xc5\x6e\x96\x7a\x5d\x81\x35\xfa\x21\xf9\x97\xaf\x64\x86\x99\x5d\x71\x87\x47\xc8\xee\x54\x16\x42\xba\x0a\xe0\x30\x2c\x31\x13\xf0\xc7\x07\xc9\xfe\xc2\xac\x60\xd7\x0e\xc6\xb1\x96\xd3\x02\x0a\x78\x30\x48\x1b\xfb\x41\x62\x3f\x46\x74\x07\xd8\x10\xc0\xee\x55\x8c\x7a\x97\xb3\x82\x91\x5d\xfb\x03\x73\xa3\xb9\x86\xd7\x70\xb3\xa8\xb3\x30\x9b\xf5\x70\xd3\xb8\xf2\x83\xd8\x06\xc2\x9a\xcb\x55\x19\xd6\x66\x79\x9f\x94\x4d\xdd\x54\x3e\x88\x9c\x91\x6c\x3a\xaf\xe1\xc6\x66\xcf\x36\xf3\x14\x0f\x87\xea\x34\x8a\x97\x3b\x11\x1a\x49\xec\xeb\xe2\x80\x9f\xbc\xf3\xe7\x0f\x69\x9a\xd7\xce\xf9\x71\x9c\x7e\xc4\x4d\x8f\xae\x37\xf8\xf7\x61\xf0\x2a\x05\xc6\xc0\xd6\x6c\x74\x1f\xc2\x5d\xb0\xc2\xd3\x53\xa0\x53\x29\xcc\xc0\x0c\xe5\xb8\x3c\x97\x55\x24\x40\x8e\x9e\xfd\x2a\xde\xc4\x70\x3a\x91\x01\x8b\x47\x52\x96\xc9\x05\xd5\x12\x28\x00\x3c\x83\x86\x8f\x78\x4a\x31\x59\x6b\x76\x18\x1c\x2d\x67\xb0\x02\x33\x9d\x9c\x3b\x49\xab\x8d\x24\x43\xcc\x04\x2e\x50\xcb\x83\x1c\x29\xca\x97\xa9\x4e\xd7\xed\x77\x64\x69\x4a\xc2\x34\x79\xd6\xcd\xff\x6a\xc2\x13\x2f\xd6\xc7\x38\x58\xa5\x15\x88\x85\x30\xc4\xf0\xd5\xa8\x9a\x8a\x2a\x94\xe4\x13\xf4\x11\x44\x71\xc0\x6f\xe7\xb5\xe2\x32\x68\xcd\xc8\x40\xf1\x31\x42\xc5\xa1\x0e\xaa\xaf\x0b\xad\xa9\x37\x38\x4a\x22\x8e\xcf\xf8\x7d\xa2\x72\x18\x2f\x3d\x2b\x8c\x0e\x9d\xaa\x4d\x67\x19\x07\xf3\x3d\x5e\x77\xae\x53\x38\xef\x7c\x1b\xdb\xe0\xb7\x06\x31\x06\x79\x0d\x27\x34\x72\xbf\xf3\x22\xb0\x1b\x88\xeb\x1a\x61\xa8\x1f\xe1\x08\x83\x77\x5f\xb5\x42\xff\xde\x7d\xb5\xa1\xa7\xa9\xe2\x8b\xd0\x98\xa6\x7c\x90\xa9\xab\xc9\x09\x72\x1f\x48\xdc\xc7\x48\xd5\x56\x00\xbb\xba\x58\x66\x51\x22\xd0\xe5\xbf\x0a\x92\xc3\x9b\x9d\x34\xfd\x97\x37\x2f\xbb\xe3\xcc\x86\x82\x73\xa5\x7b\x73\xd5\x5b\x11\x6d\x65\x12\xe9\xf8\xea\xde\xf9\xdf\xb9\x87\xba\xa0\x79\x6f\xf7\x4d\x04\x8f\xf0\xc5\x5b\x78\x68\x45\x54\x29\xb2\x85\xce\x9e\x74\x23\xd5\xbb\xc0\x58\x13\x9d\x69\x1f\x67\x5d\x8c\x27\x8c\xc4\x22\x49\xf3\x22\x9a\x93\xa0\x91\x17\xa1\x29\xf8\xfa\x74\xb9\xca\x30\x14\x83\x1e\x2c\xba\x23\xbd\x58\xaa\x82\x3c\xc0\x44\x10\xbe\xd8\x02\x65\xbf\x11\x88\x48\x4c\x17\x27\x82\x98\x14\x8a\xf7\xca\x00\x85\x57\x59\xfb\x19\xc3\x01\xa8\x49\x41\x8e\x7d\x18\xd5\xaa\x7d\xe1\xe6\x3d\x85\x5e\xd4\x40\xd0\xce\x16\x73\xde\x8d\x46\xea\x19\x89\x11\x2d\xed\x97\x0f\xa7\x18\x40\x44\x51\x98\x6e\x96\xd9\xc0\xf0\x90\xf9\xe7\xbf\x02\x56\x3f\x81\x80\x06\x8c\x43\x79\xe4\x9d\xd3\x4b\x76\x2c\xb6\x9b\x3a\xa0\x4b\xe1\xbc\x2e\x6b\x2f\xec\x30\xfd\x98\xb0\xed\x4e\x9f\x6a\xbc\x33\xe5\xb2\xf1\x90\x35\x31\x88\x81\xe0\x5c\xe8\xa6\x8c\x78\xbb\x72\xef\xd5\x51\xa2\x75\x06\xd0\x5b\x34\x7c\xdd\x4b\x51\x94\x99\x0a\x26\x85\x55\x4c\x30\xb5\x6e\x5e\xae\xb0\xb8\x06\x5a\x31\x95\xe8\x40\xc4\x43\xab\x82\x7d\xb7\x91\xb1\xa1\xcc\x64\x38\xa9\x80\x1f\x88\x16\xe1\x4e\x6a\x6a\x77\x60\x15\x1c\x5f\x3d\x63\x0f\x83\x29\xee\xb6\xfb\x32\x21\x17\x89\x98\xd2\x08\xaf\x05\x07\xd5\xc3\x29\x42\xba\xc8\xa8\x58\x4b\x65\x4c\x5b\x06\x6b\xce\x19\x68\x41\x74\xc9\x1a\xa2\x99\xdf\x8e\x23\x49\xa9\x3b\x9a\x66\xbb\x81\x3d\xec\x32\x5b\x34\x0b\x6c\x6e\x3e\x1c\x4d\x19\x10\x9c\xfa\x3a\x50\x94\x3f\x60\x61\x06\xf9\x91\xb4\x33\xe8\xe7\x89\x19\xe8\xb5\x9f\x2c\x05\x17\xf1\x4d\xac\xf2\xd1\x74\xeb\xc3\xcb\x19\xf3\x0c\x9a\x7e\x86\x06\xef\x7e\x4a\x48\x0f\xb2\x25\x1b\xaf\x53\x4c\xac\x85\x8d\xd8\xe2\xe0\x29\x3d\x33\xcd\x98\xb4\x81\xab\x0e\x05\xcf\x51\x98\x45\xe2\xf1\x5f\xe6\x8e\x7a\x57\x7d\xfd\xd2\x50\x4d\xa9\xa2\x19\xae\xbb\x39\xd3\xfc\x7c\x4e\x5a\x25\x00\xde\x59\x2c\xa8\x0d\xd2\x9a\x6c\x4a\x6c\x1e\x9c\xa0\xf7\x03\xa5\x35\xad\x2a\x52\x3a\x1b\xc1\xc8\x83\x22\xd2\x4a\xba\x76\x79\xcb\xb1\xcc\x62\x4c\x2d\xae\x3f\xb9\x0e\xe9\xd0\x0f\xd8\x28\x70\xcf\xea\x90\x7a\xb4\x25\x61\x51\x26\x95\x10\x8d\xcc\xe9\x29\x65\xbc\x44\x45\x7c\x19\x17\x7c\x2f\x11\x04\x52\x9d\xc2\x35\xa4\x4d\x0d\x44\x76\x77\x58\xdf\x93\xe3\x1f\x77\x66\xf8\x8d\xf5\x25\xe7\x66\x5c\x0a\x1c\x67\x67\x63\x37\x5a\x3e\xc1\x60\x6b\xcf\x77\x75\xaf\x2c\x94\x1e\xf4\x5c\x4f\xff\xe5\x6e\x7a\x73\xdb\x6d\xa4\xbc\xb9\x3c\x3b\x3d\x3e\xbd\xbd\x3b\xf1\x31\x55\x5e\x4f\x6f\xae\x2e\x2f\x6e\x0c\xe1\x8f\xd8\x02\x09\x38\xf2\x02\x7f\x79\x36\xbd\x31\x31\xb0\xed\x06\x0e\xb0\xef\x6e\xa7\xdd\x8e\x0c\x9b\x3f\xdb\xc3\x95\x02\x45\xf1\x50\xa2\x0d\x0d\x4e\xe8\x0a\xae\x12\x4c\xdf\x4a\x3e\xda\xff\xc4\x02\xc1\x72\x65\xca\xd4\x8e\x10\xe8\xfa\x0e\x66\x69\x96\x89\x8c\x1d\xb5\x83\x87\x52\x66\xf7\x22\x11\x1d\x40\x3c\x09\x54\xfa\xdb\xf3\x14\x3e\xdf\xae\x57\xb8\xdd\xf4\x47\xcd\x97\x41\xea\x91\x20\x64\xac\xd9\xa7\x0b\xce\x4b\x3a\x8f\xe8\x88\xd1\xad\x13\x15\xff\xd4\x39\x92\x57\x8a\xfe\x6a\x40\x20\xee\x98\x91\xad\x29\x55\x22\x08\x63\x94\x7f\x05\x6e\x9b\xcf\x7f\x01\x8c\x88\x10\xbe\x15\xc1\xe7\xbf\xc4\xff\xb4\xff\x21\x77\x0f\x68\x9a\xa0\x70\x8d\x72\xd9\xcf\x65\x84\x31\x34\x6a\x85\xfa\xc6\x35\x80\x68\xa5\xdf\x6d\xc8\x3b\x3a\x15\x7f\x2b\xc1\x32\x47\x47\x6b\xcd\xf7\x65\x1c\x6e\x6b\x91\x0b\x2a\x2a\x74\x21\x3f\x6e\xfd\xf4\x4f\x58\xc2\xee\x8f\x06\x83\xcf\x17\x24\xc5\x75\xbe\x56\x20\x27\xca\x2d\xa7\xf4\x6d\x1b\x05\x11\x79\x1c\xa7\x65\x18\xbc\xc6\x07\x42\xb6\xee\x5e\x76\x94\x3d\x5b\xfb\x18\xb3\x2f\x92\xd3\x7a\x5d\x5f\x08\x73\x04\x6d\x21\x01\xf1\xa4\x0b\x85\xc3\xb8\xe6\x32\x7a\x24\xed\x76\x5d\xd5\x69\xae\x4b\x33\x15\x2a\x3d\x93\x61\xed\xe6\x11\x08\x9e\x75\x8f\xcd\x62\x4e\x40\xa3\x1f\x55\x25\xbc\x32\x1f\x65\xbc\xd6\x2f\x24\x51\xe7\x0a\x04\x96\x01\x82\x63\x0c\x12\xca\xec\x27\x78\xd6\xe5\x3b\x66\x9b\x6a\x3a\xcc\xf0\x81\xa5\x85\xd6\xa5\xa0\x9c\x5c\x4a\xfd\xc0\xc2\xf7\x46\xa0\x82\x69\x94\x5f\x94\x1c\x87\x79\x53\xc4\xad\x6a\x55\x20\x67\x1a\x33\x8c\xad\xbf\x8b\x3b\x7e\x95\x55\x15\x2b\x93\xa9\x9a\xa5\xe8\x9d\x6c\x22\x02\xde\x35\xa4\xda\xc8\xa2\x0f\x94\xee\x82\x00\x84\xb5\xa7\xf1\x10\x6a\xca\x4c\xa5\xd6\x56\xc4\x24\xc6\xb7\x56\x4d\x8c\xf2\x3b\xc2\xee\x21\x7f\xf6\x4b\x9f\xa4\x09\xa1\x74\xf3\x8d\xa0\x65\x56\xff\xc3\x3e\xe8\x5d\x1d\x8b\x9e\xce\xd4\x24\x2d\x27\x71\xab\xe9\xd8\xe1\x19\x3e\x88\x00\x7c\x62\x78\x6d\x92\x34\xd6\xf5\xe2\x47\xd8\x22\x9b\x41\x0d\xc8\x69\xdf\x8a\xac\xc9\xca\x37\xc3\x6e\xdb\xf5\xf1\x6d\xca\xe2\x5b\x57\x50\x67\x92\x28\xdf\xf4\x2e\x47\xfc\x16\x6d\xda\x63\x63\x83\x38\x69\x4f\xdc\x88\x25\xd8\xab\xb9\xcc\x5a\x05\x09\x79\x02\x29\xbd\xe6\xaf\xba\xfc\x3b\xa3\x19\xa1\xd0\xbe\xe5\x44\xe2\x7e\xa9\x09\x6a\x6c\x99\x2d\x92\x46\x2a\xc6\xff\x65\x67\xf0\x89\x26\x6a\xbf\x15\xfd\x1b\x93\x51\xb2\x58\x48\x05\x21\xc7\x3a\x8f\x48\x5a\xd2\xab\x17\x6c\x4e\x4d\x59\xd4\x65\x29\x49\x6b\x3f\xc2\xb1\xeb\xa0\x62\xe8\x24\xf9\x0c\xc9\x97\x00\x32\x77\x89\x5d\xf9\x7e\xb7\x10\x53\x56\x1e\xce\x51\x63\x4e\x0f\x6c\x89\xd3\x5a\x7c\xeb\x69\xef\x8f\x39\xea\x2b\x46\x6c\xd1\xc3\x03\xbb\x31\x80\xb2\xab\x99\x33\x9e\x3e\x31\xa9\x5e\x4e\x7f\xc1\x48\x63\x32\xe5\xa7\xd7\x98\x74\xdc\xbc\x2f\x22\xa5\x64\x6f\x1f\xda\xea\xb1\xb8\x6f\x46\xc2\x63\xc0\x63\xb7\x45\x83\x68\x93\xd0\xba\x83\x9e\x90\x95\xa8\x29\xaa\x33\x58\xf2\x03\xfb\x95\xfe\xbc\x39\x63\x1b\x3f\xd8\x0e\xbf\x0f\xbe\xb0\x00\xef\x3e\xaa\x1d\xb1\x2d\xed\x59\xf7\x5d\xcd\x5d\x4b\xb5\xb1\xa0\xa3\x2f\x51\x9b\x91\xa9\x79\xb4\x1c\x97\x99\x6f\xb8\x42\xdf\x1e\xda\x18\xe3\xda\x52\x75\x6c\xaa\x74\x9e\x40\x0a\xdf\x3f\x49\xa3\x0a\x4b\x9a\x5c\x8d\x08\x35\x63\x0d\x5c\x35\xb5\x8d\x2f\x77\xd1\xea\x3d\x4f\x43\x11\x8f\x3a\x1b\xab\xd4\xec\x0f\xb7\xa3\x85\x3b\xf4\x60\x12\x50\x15\x08\x5d\x51\x8d\x24\xd3\x9f\x30\xb3\x1b\x59\x83\xac\x94\x2f\xfe\xa0\x9c\xe8\xe5\xce\x06\x67\x8a\xdd\x8d\x1c\x70\x60\x2c\x47\xaf\xcc\x90\xc9\x09\xb5\x23\x6f\x8d\x61\x1a\x15\x1d\x3b\xf2\x84\x2f\x73\x45\xfd\x42\x51\xbf\x4b\xfe\xf7\xb8\xb7\x47\xd9\xef\x1c\x97\xd5\x2b\xb1\x69\x3f\xdb\x81\x13\x9f\x91\xbf\x42\x95\xb4\xf7\xd7\x66\xa9\x5f\x95\xe2\xbf\x0a\x0c\x6b\x0b\x3a\xf6\x77\xd1\x7e\xd0\x38\x8c\xb3\xc8\x22\xc9\x5a\xaa\x28\x09\xa3\xc7\x28\x2c\x45\x5c\x79\xf5\xa0\xc3\x38\x5b\xa8\x80\xa0\xa2\xec\x76\x28\xf0\x86\xe3\x43\x29\x15\x8f\x5f\xc5\x18\x72\xff\x20\x83\xcb\xa3\xaa\xa8\x4e\x15\x4c\x51\x95\x14\xe4\x5c\x02\x36\x64\x0f\x00\x3a\x7c\x0c\x8b\xe8\x51\xd2\xa6\x7e\x96\x07\x8b\x32\x0a\x0f\x83\xe0\x08\x33\x59\x92\xa3\xea\x83\x14\x31\x10\x43\x29\xdf\x68\xf6\xd0\x77\x6f\x55\xd6\xa1\x23\x94\xa4\x3e\x27\xaf\xab\x4c\xa2\x0f\xbf\xe9\x1e\x7b\x72\x0a\xc6\x9a\x1d\x60\x38\xbb\x68\xdb\xa0\x04\xd9\xd2\x38\x73\x31\x1c\xdf\x58\x23\x57\xb2\x99\x05\x35\xd5\xeb\x7b\x94\x19\x18\x0f\xef\x68\x33\x81\x17\x8b\x0d\x3d\x74\x13\x8d\x34\x0b\xa3\xe0\x74\x9f\x81\xca\x35\xb7\xc1\x43\xf3\x26\x13\xc5\x1f\xa5\x98\x73\x58\xcf\x84\x7d\xc4\xb9\x6d\xff\x50\x47\x01\xee\x3e\xa6\x4d\x77\x62\xaa\xfb\xe1\x1f\x54\x3c\x1a\xdc\x71\x46\x32\x20\x8c\x78\x34\xb8\xae\x23\xa1\x37\x4d\xb5\xe2\x68\x80\xc3\x05\xc7\x7c\x3e\x6a\xb9\x73\x47\x8d\xc1\x28\x50\x87\x8d\x02\xe0\xbe\x66\x34\xaf\x01\xab\xb3\xce\x63\x30\x44\x1f\xea\xfd\x76\xb0\xef\xc8\xf6\x81\x6d\xac\x51\xf7\xef\xf6\x31\x47\x3d\x14\x9b\xfd\xa8\xb5\xe5\xe2\xbb\x34\x2f\x94\xaa\x0f\x3e\x9d\x50\xa6\xe6\xa6\x8b\xa3\xd9\xbd\xd1\x17\xcc\xf8\x74\xf6\xbb\x62\x0e\x01\xe5\x4e\x2f\x1b\xac\x2c\x1d\xa0\xb1\x57\xc3\xcc\x35\xd8\xd3\x99\xa8\x30\xa0\xf3\xcc\x12\x7b\x5d\xc6\x46\xa8\xb1\x57\x82\x91\x6b\x75\xd2\xa7\x8d\x3d\xff\x56\xef\xf9\x37\x94\x41\xd5\xe0\x8b\xea\xd4\xd9\x9a\xa6\x9b\xe9\xf1\xdd\xf5\xe9\xed\xf7\xc1\x9b\xeb\xcb\xbb\xab\x4e\xec\x6f\xae\xef\xae\x2e\x31\xed\xd6\xcd\xf4\x0d\xb4\x3f\x39\x3a\xf1\xc2\x75\xfd\xf6\xf4\x78\xda\x93\xa8\xac\xa3\x95\x2b\x96\x6e\xef\xd8\xed\x06\xf6\xb0\xaf\x8e\xfa\xe9\xdf\xd5\xc6\x15\x83\x75\xb2\xb5\xb3\x80\x7a\x78\x63\x3a\x99\xbe\x9d\x9e\x5d\x5e\x19\x72\xae\x55\x2d\x46\xc0\x66\x9f\xdf\x6d\x20\x26\xc3\xea\x6f\xfc\x6c\x0f\x77\x2e\xe2\x27\xd6\x08\x4e\x73\xc0\xb9\xdb\x01\xe7\xcb\x68\x02\x6f\x74\x32\xd4\x3e\x6e\xf5\x26\x2b\x57\x3a\x35\xd2\x02\xba\x84\x22\xf4\xe2\x4e\xed\xe4\xab\x30\x08\x9d\x8e\xf5\x3d\x7d\x63\x7f\x27\x0e\x80\x34\x26\xb5\xf0\x1d\x95\xdb\x7d\xbf\xec\xad\x49\x35\x10\x9a\x03\xd5\x54\x7f\x46\x3b\x55\x3e\x87\x67\x35\x3d\xa3\xd1\x25\x0c\x5e\xdb\x18\x3c\xfb\x21\x5a\x7d\xdd\xbd\xd6\x53\xce\x40\xa1\x53\x28\x03\x04\x02\x10\x51\xa6\x64\x06\x42\x09\x94\x53\x4a\x4d\xf1\xb5\xdf\x3e\x60\x1a\xf9\xa4\x0d\x20\x91\x4e\xcd\x5e\x08\xa4\x4a\x6c\xb4\x1a\x07\xfa\x01\x83\xf5\x67\x5f\x06\x7f\xfa\xe6\x8f\x2f\x83\x23\x2e\x95\x13\xe1\x91\x48\x22\x0c\xd0\xa4\x3a\x3d\x61\x4a\x1b\x8e\x12\xd0\xae\xb2\xe8\x31\x02\x3a\x39\x72\x4f\xfe\x02\x8b\x4d\xfe\xfe\x51\xde\x9f\x0e\xe4\xa9\xd1\x8f\x31\x2f\xb0\x79\xa7\x59\x76\x43\x5f\x1d\xc3\x37\xbf\xfd\x76\xc0\xed\x5a\xbf\x1f\xad\xa2\x29\x7e\xa9\x5b\x2c\x1b\x95\xda\xe0\x87\x96\xef\x7e\xf7\xf2\x13\x58\xad\x59\x0b\x91\x14\xc0\x11\x2d\x54\x0d\xbc\x42\x84\xe9\x6e\x7a\x1a\xad\x10\x44\x37\x51\x49\x2e\x7e\xea\x23\xca\x69\xd2\x50\xab\x47\xba\xf0\x5b\xd2\x85\x03\xe0\x33\x31\x93\x31\x1f\x7a\x1d\xc5\xea\x90\x3c\x72\x14\x98\xce\x23\x78\x55\x99\xf8\x77\x3e\x3b\xfa\xc9\xb5\x07\xe0\x4c\x9b\x36\xf6\xe8\xa4\x9e\xe4\x00\xa9\xd3\x73\xf7\x12\x66\xd9\xdb\x99\x2a\x6d\x8e\x7a\xb9\xe5\x11\xd0\x4b\x92\x4d\x57\x67\x7a\xaa\x18\x94\xf6\xc4\xbf\x4b\x6e\x4f\xaf\x5e\x06\xa7\x94\x53\x9b\x32\x1b\x15\xd9\x9a\xde\xfa\xa9\x0a\x62\x11\xc1\xe3\xb7\x5b\x91\x2c\x07\xd4\x9c\xaa\x93\x61\xe5\x2c\x54\x04\x4c\x56\xa4\xa3\xea\xdf\x0a\x5f\x80\x12\xff\xd9\xaa\x0a\x3c\xdb\x0f\x6b\x47\x17\x67\xfc\x5b\x5e\x24\xb6\xe7\x6d\x6a\x0a\x04\x1a\x94\x64\x56\x81\x6a\x6e\x4a\x3b\xa6\x6d\xdf\xd1\x95\x96\xee\x97\xfd\x8d\x2e\xac\x39\x00\xb8\x21\x5a\x55\x43\xf7\x93\x30\x8a\xcd\x98\x0a\xae\xf8\x65\x36\xca\x1f\xeb\x1c\xb6\x5d\x01\x16\x2c\xfa\xf8\x5b\xec\x91\x2e\x20\xe3\x31\x92\x1f\xeb\x7c\x53\x11\x06\xb5\x58\xd0\x94\xc2\x09\x84\xfb\x97\x6b\x8f\xa9\x38\x18\xec\xdd\x2c\x7a\x34\x94\xa6\x87\xba\x74\x48\xab\x1c\x96\x2b\x79\x5c\x8e\x6b\xab\xe0\x89\x27\x7d\x2a\x25\x43\x33\xe6\x86\x4e\xde\x54\x7d\x34\x3f\x0c\x2b\x12\x13\x4a\x06\xa8\x20\x20\x38\x61\x00\xe2\x4c\x5f\x6b\xb3\x61\x3e\x90\x2a\x34\x84\x0a\x0b\xa8\x6f\xde\x8a\xb8\x94\x9c\xab\x64\xbb\x00\xdd\x5e\x5f\xc7\xaa\x26\x44\x67\x30\xcb\x06\xc9\x62\x8b\x62\xda\xfb\xbf\xa7\xe7\x35\xcf\x7b\x47\x56\x88\x2e\x6f\x3a\x3b\x85\x7c\x7b\xba\x76\xc6\xea\x8b\x9d\xe3\x1e\xcb\xbd\x54\x8f\x6e\x24\x83\xd1\x50\x70\xce\x74\x3f\x81\xa9\x68\x9f\xa8\x46\x19\xef\xc8\x46\xa2\x7d\xa2\xb2\x1f\xef\x43\xfa\xb1\x4e\x49\xd3\xae\xf7\xd3\x4d\xb9\x55\x27\x47\x1a\xe2\x78\xa3\xb0\x8e\xc5\x05\x7f\xae\x6e\x28\x34\xa5\xe4\x70\x7e\xf3\x46\xf7\x11\x6f\x79\xa4\xef\x41\xc6\x06\x3a\x52\x24\x03\xc8\x5d\x97\x7e\x77\xe2\x03\xa5\x4e\x45\x87\xbc\xfb\xb4\x77\xb4\xd8\x08\x87\xe7\x17\xae\x51\xe1\xc2\x57\x5b\x1e\xcc\xd6\x14\x11\xd7\x8b\x14\x73\xa5\xa9\x78\xb5\x5c\xfb\x97\x22\x14\x2c\x0c\x00\x00\x7c\x09\xa1\x64\x03\xa1\x2c\x44\x14\xab\x15\xc7\xd5\x2a\xa2\x79\x19\x8b\x6c\xeb\xe1\x62\xde\x91\xbe\xb0\xdc\x28\xe6\xfb\xc9\x69\xa1\xe8\xbe\xf1\xc5\x97\xc9\x39\xa5\xfb\x87\x8b\x9a\x6b\xdd\xf6\xa2\xd5\x75\x6d\x33\xba\xef\x0a\x99\x0f\xf3\x07\x26\x2a\x36\x43\xac\xcc\x13\x60\xd3\xc5\x11\x3f\x3b\x3a\xf5\x23\xdd\xd1\xce\x07\x93\xc5\x2a\xf7\xb4\xf6\xc1\x3a\xf4\x48\x2a\x30\xc3\xce\x24\xde\x3b\x95\xdb\xe9\x5c\xc4\x52\xf9\x03\x3f\x95\x68\xcb\xcc\x94\xe4\x34\x14\xbe\x24\xdb\x81\x7e\x5f\xa6\x20\x35\x4d\xdb\x3e\xaa\xe3\x3c\x03\xec\x04\x88\x7a\xa2\x72\x90\xe9\xe1\x9f\xb5\xd2\xe7\x1a\x62\xd7\xbf\x40\xf0\xdb\x8d\xf1\xc1\x79\xe3\x19\x48\x49\xfd\x82\x91\x52\xd3\x0d\x03\xe6\x43\xb3\x41\x51\xb2\xb3\x91\x23\x8e\x41\x05\xb4\x7c\x40\x38\xd2\xb7\xb9\xeb\x5d\x96\xc9\xb2\xaf\x1b\x45\x3d\xeb\xe1\xb7\x12\x98\xb4\x76\x4d\x52\x08\xe6\xc1\x57\x65\x43\x38\xcf\x1d\x00\x3f\x44\xbd\x2d\xfd\x84\x3a\xca\xaa\xdc\xfb\x41\x95\x01\x92\x9b\xa3\x0d\x4a\x65\xc6\xc3\x02\x47\x8a\x31\x7f\x4c\x33\x4a\x72\x53\x65\x5f\x35\xbc\x33\x7a\xe9\xe8\x22\xa4\x8d\x1f\xd1\x67\x69\x5a\x34\x93\xf5\x6e\x17\x2b\xaa\x6a\x11\x75\x95\xa8\x37\xe6\x32\xbe\x29\x04\xd7\xd9\xc0\xa4\xd9\xcf\xa9\x8a\x0d\x7c\xc6\x24\xe1\x68\xb5\x9c\x60\x78\xab\x9a\x16\x2e\x29\x7a\x00\x44\xe9\x34\x81\x68\x20\x5d\xc9\x4c\xf0\xc3\x58\xfd\xcc\xbb\x58\x60\xcd\x6c\x7a\x4a\xe4\xdd\xc9\x09\x19\xb7\xa0\x22\xb8\xcf\xf1\x2e\xa5\xcf\x20\x3d\xe1\xdf\xaa\xa0\x68\x33\xa1\xf0\x5a\xe0\xf1\x00\x16\x5c\x46\x58\xf9\x97\x08\x59\x93\x7e\xa1\xd1\x41\x51\xf4\x08\x0d\x30\x2f\x1a\xd5\x1d\x80\x6e\xb0\x88\x19\xbd\x57\x36\x48\xb2\xdf\x5c\xea\x81\xe8\xe5\x4e\xe5\xd6\xd9\x85\xa6\xfe\x40\xa9\x53\x0a\x93\x1a\x22\x8e\x32\x16\xb8\xdb\xb0\xe2\x65\x5a\x16\xef\x12\x65\x06\xd9\x51\x1a\x19\x37\xfb\x32\xcd\x58\x22\xcc\x96\x66\xbe\x77\x1b\xc9\xe5\x4a\x99\x45\x71\xd9\xf8\xdd\x08\xd7\x20\x48\xd1\x9f\x52\x15\x96\xd6\xc0\xd6\x51\x2b\x79\x29\x72\x8d\x6e\xee\xc9\x23\x69\x88\x65\x52\xa7\x08\x1f\x6d\x8c\xc7\x7a\x34\xf7\x99\x98\x8b\x1c\x84\x85\x27\x1b\xd0\x13\xfb\x0f\xc1\x28\x60\xa0\xbb\x93\x02\x7c\x39\xc1\x11\x27\xa2\x5c\x69\xaf\x82\x03\xb6\xbf\xa5\x41\x52\xc6\x31\xfe\x9b\x49\xf5\x85\x4e\x67\xca\xc1\x87\xaa\xb9\x69\xac\x34\x50\xaa\xcc\x8a\x56\x96\x83\xaa\x68\x30\x55\x28\x22\xf0\xb4\x96\x84\x40\x72\xd1\x13\x55\xee\x44\xd7\xf6\x43\x9e\x5e\x43\xf0\x1b\x9c\xa1\x48\xce\xc6\xaf\x4e\x50\xcb\x9c\x2d\x61\x08\xc2\x64\x35\x33\x34\x75\xc0\x97\xae\xfa\x98\xd8\xd5\x40\x85\x12\xa0\x58\x3d\xf1\x71\x40\x92\xbb\xce\xc2\x97\x38\x08\xeb\x1c\xeb\xd8\x9c\x64\x20\x5d\x06\x77\x06\x7b\x19\xfc\xc6\x3b\x37\x04\x94\xb0\x6f\xb9\xa3\x1f\x46\xac\x41\xae\x5c\x3d\xc2\xee\xdb\xf1\x8a\xcb\x71\xa7\x13\x38\x17\x13\x19\x4f\xd4\x55\xee\x73\x23\x22\x5f\x35\x24\xc1\xdd\xfc\xd9\x09\x6e\x70\xac\x52\x9d\x53\xad\x6e\xaa\xcc\x0a\x62\xd8\x9a\x1d\x98\x54\xda\x73\xad\x36\x6f\x08\x68\x28\xce\x14\x51\x8c\x72\xdb\x9a\x3c\x06\x54\xe1\x49\x53\xb0\xda\xbe\xd1\xb9\x8d\x5b\xd7\xeb\xaf\x2c\x9b\x07\xf5\xad\x78\xcf\x09\xb3\xda\x35\xc0\xf5\xbb\xa5\xc7\xf4\x39\x2e\x70\xb7\x31\xdd\x62\xf5\xbc\x0f\x14\x89\x95\xcb\x3a\x89\x3d\x7e\x25\xef\x91\x33\x37\xc8\x78\x7d\x97\xcc\xa2\x24\x6c\x93\x51\xd2\x77\xcd\xb8\xc8\x03\xd5\xfa\x15\xb7\xad\x9b\x66\x12\x9b\x1e\x70\x51\x84\x07\x38\xfe\xdc\x4e\xa5\x19\xd8\x00\xbb\x0a\x85\x4a\xbc\x8b\x8c\x83\x62\xf5\x54\xc6\xee\xb6\xb6\xde\x3c\xab\xff\x8d\x86\xe7\xb6\xae\xba\x36\xfd\xd1\x2a\x6a\x63\xc6\x87\x75\x94\x94\x9c\xb4\x94\x03\xd8\xc9\x8e\x22\xa9\xd0\x8a\xb6\x6a\x9b\x67\xb5\x2a\x51\xdf\x86\xae\xa4\x56\x82\x2f\xd0\xa1\x90\x0a\x02\x54\x86\x72\x84\x8f\xc8\x16\x65\xe6\x73\xc9\xb7\x86\x75\xfc\xba\x3d\x2a\x09\x22\x2b\x0c\x81\x2a\x06\xb5\xec\xe7\x3b\x96\xdc\x72\x6c\x2d\x14\x6c\xb2\x26\xda\x45\x96\x4b\x7a\x52\x51\x11\x17\x55\xa2\x01\x56\x1b\x95\x70\x3b\x8d\x40\x40\x59\x81\x3e\x24\x24\xe7\x0c\x1e\xf8\xde\x87\xdd\x31\xe8\x5d\x43\xee\xb4\x7b\x3d\x88\xc5\xe0\x11\xd7\xdc\xef\x8e\x0e\x4b\x95\x39\xaa\xe3\x24\xc1\x5b\xbd\x3f\x5d\xdd\xc6\x7b\xc3\x00\x9a\x07\x3f\x2f\x4a\x11\x47\x9f\xd0\x63\x39\xc7\xec\xea\x03\x12\xdc\xdd\x0a\xb8\x8d\xd0\x0d\xa6\x61\x5b\x01\x81\xc2\xca\xdc\xc8\x7d\x6b\xbf\x18\xec\x36\x92\x91\xe5\xb6\xe9\xa5\xd3\x94\xc5\x0c\xe2\x03\x16\x53\x6f\x3a\xe3\x74\xf6\x73\xa7\x62\x97\xf8\x67\x2a\x47\xb2\xe9\x18\x94\x1a\xfa\xda\x53\x43\x95\x56\x35\x83\xde\x21\x5c\xd4\x8e\xa8\xa2\x68\x04\xcf\x03\xfb\x97\xbf\x10\xff\x67\xd3\x53\x11\x71\x49\x64\xe4\xea\x95\x31\x6a\x87\xea\xaa\x62\xff\x54\x86\x92\xa0\x74\x6f\x85\xdf\x13\x6d\xf6\x33\x0a\x00\x48\x7b\xf6\xab\x2e\x46\x36\x25\x5f\x77\xe4\x1c\x3b\xd5\xa9\xb0\xa3\x43\xc9\xa9\x06\x54\x0e\xeb\x5a\xe1\x68\x12\x6c\xf7\x85\xc7\x69\xa4\x69\x86\x30\x01\xd6\xc7\x87\x68\xce\xb3\x57\x71\x0e\xae\x48\x4a\x65\x7d\x61\xbb\x87\x65\xd6\xce\xce\x27\x4a\x90\xff\xb1\xd6\xef\xdc\xa8\x4d\x39\x13\x01\xa6\x76\xa2\x82\x36\x5c\x84\x34\x2d\xb2\xb4\xc1\x01\x77\x0b\x0e\x46\x15\xe8\xed\x03\x17\x60\x6f\x96\x46\x14\xa4\x07\x8a\x2a\xb7\x47\x4c\x07\x91\x2d\x0c\x42\x97\x0f\x0c\xa7\xb9\xed\x81\xce\x25\x5b\x0c\x79\x27\xbd\x60\x0c\xa2\x10\x4e\xab\xef\x2c\xd2\x2e\xae\x4a\x20\xc0\xe9\xec\x4c\x5c\xd7\x3f\xdf\x74\xf6\xe1\x6e\x16\xb4\xb3\xa8\xf0\xe2\x4c\xa2\xdc\x82\xd5\x2f\x99\x57\x00\x10\x54\x6d\x7a\xa8\xcf\xad\xc6\x6d\xbf\x36\x5e\xe3\xb6\x98\x67\x97\xe1\x6c\x64\x28\x6e\x21\x42\xe1\xe4\x50\x69\x2f\xf9\x79\x4a\x87\xfc\x21\xcd\x0b\x34\x58\x32\xd3\x9c\x24\xc1\x77\x97\x37\xb7\x17\x47\xe7\x53\xbc\xf7\x51\x9e\x99\x4c\x48\x17\xb2\x9c\x30\x70\x10\x5f\x16\x32\x91\x59\xcd\x89\xf9\xfb\xea\x05\xb1\xa2\xba\x5d\xe6\xda\x71\x67\x62\x23\x8b\x71\x15\xde\x8d\xa5\xe1\xb0\xf8\x60\x9e\x56\xb4\xa2\xec\xc6\xc5\x47\x28\xd7\x25\xf9\x6d\x22\xd5\x24\xac\xb7\x08\x66\x29\x69\x83\x60\x12\x8a\x98\xe4\xac\x51\xb9\x8c\xf0\xaf\x83\xb8\x94\x0b\x14\x77\x67\x11\x96\x97\x1b\x56\x53\x0e\x56\x20\x93\xaa\x78\x73\x75\xcb\xd5\x55\xac\xe9\xa2\x8a\xc8\x8a\xd1\x3d\x33\x17\x28\x88\xae\x75\xaf\x48\x90\xcc\xba\x44\x33\x8a\xd0\x21\x48\x1b\x00\x3c\xc8\x2b\x52\xaa\x3f\xbf\x56\x75\xa2\x72\xae\x8d\x4f\x69\x75\xaa\x42\xac\xc5\x7a\x25\x75\xa5\x69\xdc\x1f\xdd\x24\x7f\x07\xf4\x2e\xcb\x39\x1e\xce\x74\x85\xdc\x1d\xc6\xca\xaa\x70\x76\xf4\x3a\x20\x9d\xa9\xae\xaf\xbc\x40\xa5\x6a\xbd\x98\xfe\x03\xc1\x99\x4c\x54\x1c\xd8\x8a\x4b\xd0\x37\x0a\x59\x04\x29\xbf\x65\x31\x61\xe1\x5d\x16\x83\x74\xfc\xb2\x3b\xe7\xa0\x27\x40\x9f\x33\x8a\x81\x75\x94\x5d\x81\xf2\x10\x3d\xc0\x6a\x84\xc0\xdd\xe0\x1a\xcc\xab\xa3\x0f\x1b\xff\x04\x4b\xf8\xd0\xee\x29\x58\x85\x94\x35\xca\x2f\xd4\x95\x89\xb8\xda\x12\xbf\xde\xa9\x19\xe9\x0d\x70\x61\x1b\x0f\xf4\x1a\x63\x99\x64\x98\x30\x08\xe5\x0a\xc0\x71\xc4\x8f\xb0\x40\xbf\xc6\x82\x8f\x22\x51\xda\xf4\xaa\x7e\x90\xea\xf8\x6b\x3b\x25\xc4\x3f\x75\xcf\xe4\x14\x5f\x1c\xd0\x2b\x4a\x22\x2a\xe7\x38\x4f\x97\xe4\x55\x46\xce\xe7\x05\x6d\x3d\xed\x7c\xa8\x86\x4a\xc5\x93\x92\x38\xd5\x45\x1e\x3f\xff\x47\xa3\x0d\x97\x84\x52\x95\x91\x04\x8c\x74\x0d\xa7\x03\x9b\xe0\xc3\x6e\x0e\xcf\x1c\xaa\x4f\x44\xa3\x45\x66\x20\x9b\xd8\xa9\x76\xb9\x2a\x96\x8a\x62\x36\x8f\x9a\x6a\x4f\xf2\x7b\x9e\x80\x6c\x15\x38\xd2\xdd\x0d\x63\x76\xd8\xa8\xb8\xc8\x24\xee\x6b\x3e\x8c\xa7\x44\xe8\x72\x6c\xd5\xdb\x81\x5c\xa2\x0c\x2a\x45\x5f\x38\x6e\x94\xd2\x16\x9a\x0b\x64\xfa\x5a\xc9\xc3\x56\x16\xd4\x41\x1e\x06\x9d\x1b\x86\xfd\x9e\x9a\x7a\x72\x43\x69\xa9\x1c\xf5\x39\x02\x19\xb5\x5a\x46\xe5\x7b\x93\x71\x4e\x48\xa9\xca\x83\x6e\x2f\x11\xbb\x36\x65\x5d\x78\xec\x87\xca\x86\x50\xbe\x6d\xa9\x0c\xe6\x77\xb7\xb7\x57\x55\x01\x1c\x47\x83\x67\xb3\xea\x2f\xc1\x11\xf9\xe7\xbf\x52\x35\x4c\xaf\x74\x22\xb7\xd1\x4a\x69\x11\x44\x18\x4e\x58\xba\x9f\x20\xcb\x51\xda\xba\x05\xaa\xd7\x59\xf4\xc7\x6f\x0d\xc4\x7a\xc2\xb1\xa7\x94\xdd\x0e\x54\x95\x31\xa5\x84\x50\x02\x8e\x4a\x21\xc5\x91\x73\x89\x84\xed\x49\x4a\x8f\x45\x26\x54\x6d\xfa\xe3\xd7\xa4\x59\xc3\x5a\x43\x45\x80\xf7\x4d\x81\x40\xce\xa3\xe4\x68\x15\xa9\xda\xd1\xe7\xe2\xa7\x34\xe3\x74\x34\xed\xef\xa3\x64\xe7\xf7\x57\xa2\x98\x3f\x18\xcc\x5d\xbf\x7b\x7a\x1d\x66\xbe\x10\x71\x70\x0e\xec\xd2\x90\xd0\x97\x7e\x8e\x76\xfb\xd1\x9a\xaf\x28\x82\x2e\x96\x69\xc9\xa5\x22\x97\x84\x27\x78\x2e\x0f\x17\x87\xc1\xb7\xdf\xfc\xe1\x4f\xe7\x07\xc1\xb7\x6f\xe0\xff\xdf\xbc\xe9\xf6\x0e\x39\xc6\xb7\x3a\xd6\x8f\x2b\x08\x1a\xd6\x55\x65\x7a\x00\xce\x4f\x06\x30\x8e\x73\xb0\x45\xa5\x4e\x4d\x80\x3e\x2c\x14\xab\xee\x46\xb6\x25\xd4\x1e\xa0\x6e\x33\x9d\x94\xcb\x19\xa6\x2a\xbc\x57\xb7\x79\xb7\x64\x58\x2e\x25\x70\xc4\x6a\x46\x33\xcf\x8c\x45\x9b\x68\x37\x3d\x8f\xed\x29\x68\x08\xa9\xa1\xac\xa2\x42\xbd\x68\xca\x70\x7e\xed\xf8\xf0\x35\x1e\x3f\xb9\xcd\x79\x3d\xd0\xde\x1d\x1d\xd5\xaa\xfe\x65\x94\x63\x8c\x06\x67\xbc\x9e\x53\xd8\x9c\xb9\x82\x7a\xab\x37\x55\xaf\x2e\xc8\xf1\x2a\xe7\x1a\x90\x54\xf5\x7a\x27\x1c\x7b\xfa\x6e\x8e\xde\x18\x8a\x8e\xde\xdd\x5c\xfa\xd8\x59\xef\x6e\xa6\xd7\x3d\x99\x89\x76\x35\x71\x82\xdf\x9d\x55\x67\xe3\x57\x7b\xa8\x24\xc1\x11\x0b\xe6\x14\x15\xbb\xb4\xae\x20\xe0\xb1\x85\x67\x9a\x65\x86\xbb\x00\xed\x96\xe8\x5e\x16\x32\x30\x54\x7c\xc1\x8e\x76\x01\xe8\x43\x76\x89\xcf\xe3\x82\x8a\x19\x1a\xdf\x7f\x15\x69\x65\xc1\xed\x33\x1f\x89\xae\x46\xcc\xf2\xfc\x81\x7a\xa7\x3f\xd3\x6f\xee\x67\xd6\x21\xdf\x89\xa2\x09\xbd\xf1\x58\x50\x3e\x40\xa9\x8d\x5e\xd0\x0d\x70\x83\x82\xbf\x6b\x72\xd3\x19\x3a\xd1\x6a\xcd\x26\xa9\x26\x50\x54\x93\x95\x4e\x94\xe2\x56\xab\x4f\x86\x65\x1e\x05\xa6\xcb\x08\xb8\x4e\xb3\x50\x11\x0e\xaa\x94\x9c\xd9\x8e\x6e\xd9\xcb\x99\x8a\xba\x12\xc2\xce\x10\x51\xc2\x32\xd8\xa7\x7e\xbf\xc8\x1c\xc6\x4c\xf6\x6e\xb1\x11\x5c\x67\xbb\x00\x2e\x9d\xc7\xa1\x89\x2d\xf3\x05\xdf\xbe\xcd\x9f\xd9\xb0\xb6\xcb\x33\xc4\x8f\xfe\x41\x88\x9e\x64\xac\x8d\xea\x09\xfb\x1d\xab\x19\x91\xcf\x58\x37\x02\xb6\x6c\x2a\x7a\x3a\xf6\x76\xa4\x6a\xa7\x93\x1c\x1f\xbe\x4e\x55\xf4\xde\x5c\xe8\x9e\x82\xa4\x11\x5d\xec\x6a\x72\xf3\xfe\x6c\x6a\x34\x00\xe5\x74\xba\x71\x92\x68\x92\xca\xfe\xba\x12\x7b\xc7\xf7\x54\x23\xaf\xce\xd5\x13\x8d\xbc\x1f\xdf\x1e\x47\x0e\x3f\xc0\xde\x14\x49\xf4\x49\x70\x6a\x99\x17\xd8\xb4\x55\x15\x74\x2f\x33\xe0\x89\xd7\x61\x26\xe4\x2f\x2b\x39\x47\x9d\x32\xeb\xbf\x49\x99\x3f\xa7\xf8\x99\xf0\x25\xc9\xc0\x94\xc6\xcc\x38\x28\x77\x10\x0e\xf4\x11\xa3\x8c\xe3\x96\xd1\x1b\x63\xcf\x54\xa0\x0f\xab\x73\x02\x91\x2d\x4a\x34\xdf\x74\xbb\xab\x9e\xdd\xbd\x39\xbd\x98\x90\xb9\x68\x12\xf8\x83\xb5\x7d\xe3\x57\x18\x70\xb5\x15\x82\xca\xcc\x7f\x61\x21\x60\xb9\x75\x77\x98\xd0\x0f\x49\xfa\x31\xa1\x34\x56\x06\xec\xbb\x1a\x79\xe1\x30\xc4\xd7\x74\x35\x73\xc0\x13\xa7\x18\x07\xd5\xf4\x58\x60\x47\x33\x92\xec\xd9\xd9\xaa\x5b\xa8\x38\x91\xf9\x2c\x4e\x7f\x2e\xa5\xc0\x07\xbb\xd9\x5b\xaa\x67\xad\xf3\x1d\xd9\x7a\xcc\xcb\xdb\xdb\xc3\x7e\x16\xd8\xa7\xcc\xa6\xfe\xe9\x91\xf6\x10\x1b\xe4\x1b\x56\x21\xb4\xcc\x83\xd1\xdb\xde\x07\xb3\xaa\x7c\x5f\x95\x02\xb2\xc1\xde\xdd\xc7\x9f\x82\x9e\xc2\xaf\xf5\x8c\x97\x09\x07\xb4\x85\x14\x46\x82\xfd\xa3\x47\xcf\x08\x92\x2d\x22\x7a\x6b\xc0\x5a\xf4\x70\xc6\x9e\x34\x3c\xda\xa5\x8a\x67\xfc\xb9\x9d\xc2\xc1\x34\x19\x19\x6e\x86\xbc\x4e\xfc\xa0\x54\x08\x89\x57\xf4\x8b\xa2\x09\xaf\xc2\x89\xce\xb0\xb8\x2d\x6a\xd3\xf3\xff\x11\x13\x3b\x05\x2b\x11\x65\x86\xe7\xc6\x40\x70\x6e\x74\x8f\x13\xe2\x62\xf7\x70\xaf\x96\x60\xc4\x80\xaf\xc1\xaf\x78\x3d\x09\xad\xb2\xac\x0e\xa5\x5d\x6f\xca\x19\x67\xac\xb2\x06\xe0\x4e\xdb\x4e\xfd\x86\xf7\xcc\xef\x4c\xad\x35\xfa\x7c\x5a\x08\x99\xf6\xa2\xeb\x28\x40\x7d\xc6\xb0\xc9\xb5\x9d\xdf\xa3\x06\x50\x63\xbe\x23\x37\xd1\xcc\x36\xf3\xd2\x3a\x29\xd8\x7a\xa1\xed\x61\xb7\x6c\xf0\xb7\xad\x07\x7a\x3d\x00\x0b\x01\x76\x24\xb0\x1e\xe3\xd8\xa1\x8f\xf4\x9e\x7d\x0f\x58\xee\x14\xb7\x12\x03\x7f\x11\x95\xcd\xfe\x28\x19\xf5\x84\xc5\xa9\xa8\x14\x4b\x68\x59\xe3\x2a\xb5\x14\xc9\x7a\x25\x0a\x93\x13\x40\x75\x45\x54\x79\x09\xea\xe4\x2f\xa1\xcc\x55\x32\xf1\x4d\x20\x1e\xa4\x8d\x77\x87\x8d\x77\x85\x69\xda\x9a\x77\xbd\x15\x2d\x9d\x1d\xfc\x90\xff\xef\x68\xf5\x1a\x56\xed\xd5\x1a\x5e\x65\x98\x13\x1d\xbe\xc2\xcf\xc7\x68\x75\x47\x85\x47\x64\x8a\x90\x6b\x12\xd5\x03\x48\xaf\xb1\x0f\xbd\xe6\x18\x5b\x1f\x88\x2a\x32\x48\x67\x18\x85\xf7\x29\x25\x9d\x45\x8d\x96\x2c\x38\x1a\x4a\x45\x47\xe2\x99\xa2\x24\x49\x66\xbb\x85\x0e\x08\xd2\x10\x9b\x2e\x97\x41\xda\x0c\x69\x37\xa4\xa4\xf5\x9a\x9c\x1c\x9f\x10\x69\x22\x27\xe8\x78\x0d\x78\xf3\xfc\x63\x9a\x91\xcf\x4c\x9c\x2e\x22\xc3\x1b\x2c\x27\x0f\xdc\x60\x1e\x53\x19\x01\x18\xfa\xe7\xff\x4a\xa2\xb9\x08\x1e\xe5\x27\x26\x5f\x97\x05\xce\x65\x1e\x7d\xfe\x4f\xaf\x97\x59\xce\xd7\x23\x07\xe7\x30\x9f\x71\xc9\x6d\xad\x52\x84\x6d\x81\x18\x66\xdc\xc4\x17\x84\x7b\x2c\xf5\x1d\xd3\xe2\xa5\x13\x01\x8c\x06\x95\xcb\x30\xc0\x78\xdb\xf5\xc1\xf6\x02\x8d\x0c\xa2\x9d\xcf\xa7\xe2\xc6\x86\xf8\x19\xd8\x56\x0d\x96\x4e\xce\x46\x1a\xc6\xce\xee\x8e\x04\x55\x3e\xf5\x54\x41\x8c\x6c\xdd\x7d\xa4\x68\xdf\xf6\x5d\x3d\x1c\xb1\x73\x5e\x9d\x5f\x29\x47\x83\xcd\x05\xa2\x28\xe8\xed\x66\x4d\xc6\xdb\xe9\xf5\xcd\xe9\xe5\x45\xf7\x66\xda\x6e\x60\x0f\x5b\x87\x7e\x5e\x98\x76\x54\x47\x2b\x7b\x2c\x32\xc3\x8c\x4e\x57\x8a\x4f\x75\xe3\xc1\x76\xe8\x6e\x11\x1c\x23\x83\xf2\xc3\x64\x2c\x66\xbd\xf5\xbb\x35\xe4\x7f\x3d\xba\xbe\x38\xbd\x78\xf3\xf2\x5d\x02\xdf\x31\x27\xc1\xdd\x41\xd7\x46\xc5\x80\xd1\x25\xb8\xd2\x59\xc7\x51\x22\x95\x7f\x3f\xba\x9a\x3f\x44\x8b\x87\x78\x8d\x5e\xfe\x73\xe8\x23\x16\x32\x24\x50\xdf\xb7\x00\x2c\xc5\x3a\x98\x49\xb8\x98\x38\x1e\x05\x1d\x27\xb0\x8e\x2e\x87\xe1\xa8\x1f\x33\x39\xc7\x50\x31\xd2\x8f\x13\xfa\xfc\x41\xc6\x31\xc0\xcf\x31\xfe\x0c\xf3\xe3\x74\xbf\x7d\x4f\x60\xaf\xdc\x4e\x2f\x8e\x4f\x8f\xaa\x81\x00\xab\xa3\xab\x08\x6e\xbf\x52\x5d\x0c\x24\x2b\x52\xc6\xd4\xd5\x1c\x6f\x01\x92\xd1\x3e\xff\x35\x91\x14\x01\xa1\xf3\xb0\x50\x0c\x69\x2e\x30\xa9\x94\xfc\x09\xb7\x07\x41\xbc\xd5\x40\xd8\x5b\x05\x2f\x03\x3d\x1a\xbc\x6f\x38\xe0\x6c\x4d\xdf\x2f\x32\x31\xc3\x38\xd0\x90\xa2\x11\x98\xfe\x88\x1c\xdb\x62\x1e\x53\x7b\x2c\xce\x4b\x15\x90\x4f\xb5\x4a\x69\x95\x92\xab\x76\xb9\xc4\xf0\xe6\x07\x15\xe3\xb8\xf1\xa6\xcb\x64\xbe\x82\xc1\xb4\x23\x8f\x36\xf3\xb0\x72\x11\x11\xb8\x67\x93\x05\x3a\x2d\x3d\x8a\x28\xc6\xb1\x73\x08\x00\x1a\x32\xb6\xbc\xf9\xd8\x0f\x92\xa2\xa6\xd8\x11\x28\x3c\x40\x0f\x56\x2a\xb7\x99\x66\xab\x07\x91\xa8\x25\xc5\xb4\x45\xb0\xf3\xd3\x32\x0c\x5e\x63\x71\x89\x6c\xfd\x0c\xa6\x58\x80\x14\x21\x72\x79\x48\x55\x95\x51\x51\x1f\xcb\x70\x51\x05\x5d\x6a\x6c\xe4\x39\x4e\x9b\x03\x7d\xf8\x43\x36\x5a\xb5\x60\x35\x73\x8f\x6d\xd3\x48\xe2\x8e\x9e\x0e\xb6\x8d\xe5\x87\x98\x5e\x42\x14\x85\x5c\xae\x8a\x0a\xc1\x92\x3c\x72\x39\x23\x80\x98\xef\x9a\xc7\x7f\xac\x6c\xa3\xcd\x8a\x44\x14\x0c\x81\x5e\xdf\x21\x46\x23\xa7\x6b\x9d\x4a\x7a\x63\x0d\x1a\x1e\xf0\x6a\x6e\xb6\x68\x85\x99\xb8\x47\xd7\xe9\x9d\x58\xa8\x52\x08\x9c\x13\xed\x19\x8f\x79\xd4\x64\x44\xb5\xa8\x79\xf2\x27\x0a\xde\x04\xb5\x0f\x13\xd6\x3e\xa4\x5b\x3f\x2a\x6a\x68\x9c\xcb\x55\x15\x8d\x31\x87\x75\x4b\x4a\x43\xf0\x50\xf3\x80\xb1\x1b\x3d\x6d\xbf\x39\x6f\x3f\xd8\x7d\xe4\x4f\x4f\x6e\x89\x2d\x15\x34\x57\xf3\x50\x1b\xb0\x4a\x8d\x4f\xfd\x61\xdb\x61\x9c\x94\xa8\x1c\x1c\x31\x4e\x28\x4d\x22\xda\x74\xdf\x37\x42\x35\x5a\xce\xa0\x8d\x1a\x21\x34\x89\x18\xff\x41\x9e\x63\x14\xc4\x11\xc2\x81\xa5\x4b\x4a\x7b\x8c\x06\x0f\xe5\xe7\xbf\x64\xf7\x22\x51\x21\xfa\x94\x8e\x17\x5d\xd4\xb3\xea\x85\x86\x9b\x10\xff\x84\x0d\xc9\xdf\xb5\x76\xd7\x61\x70\x9b\x86\x29\x87\xfa\xa7\x49\x3a\x8f\x30\x6f\x17\x37\x6c\x90\xf2\x88\xfe\x15\x74\xf6\x69\x9f\x02\x51\xdb\x90\x5a\xa9\xe9\xba\xc6\xb4\x56\x21\x29\x2a\xd8\x09\x98\xc6\x32\xca\x97\x29\xed\xd8\x1c\xf7\x0a\x2a\xb0\x29\xc0\x41\xed\x53\x9d\x42\x6a\x7b\xd6\xff\x51\xe7\xb7\xa3\xd8\x15\xcd\xdc\x72\xb2\x43\x52\xb6\xbc\xac\x73\xbd\xaa\x28\x8a\xce\xa9\x57\xb3\x2a\x60\xd3\x9e\xc0\xe2\x96\x1c\x77\xbf\x0b\x21\x7a\xf4\xa2\x14\x4e\xb1\x16\x42\x37\x49\x4d\xbb\xb6\x63\xd3\xea\x34\x70\xb8\x6d\x05\xbd\x3d\xe2\x68\xb9\x8a\xe4\x27\xaf\xb8\x94\x2e\x66\x1a\xe5\x34\xcb\x20\x8a\x52\x26\xb0\xd6\x12\xfe\xe3\xc6\xa9\x6e\x64\xe1\x99\x49\xbd\x22\x18\x76\x05\x07\x56\x9b\x2c\x94\x6f\xc1\x16\x63\x6a\xf6\x14\x31\x20\xc4\x8a\x68\x14\xf2\x99\x45\x4b\x91\xad\x29\xa6\x60\x8e\x7b\xb3\x0e\x16\x6d\x12\x49\xc1\x16\xab\x98\x22\x77\xb6\x98\x0d\x05\x5a\x47\x38\x53\x4b\x4a\x67\x8f\x67\xfc\xf1\xdb\xe0\xa6\x5d\xd1\x0a\x03\x0f\x38\xef\x89\xb9\xe3\x1f\xa8\x25\xa6\x43\x96\x4b\xc1\x19\xb3\xb6\xc7\x43\x8c\x19\x70\x60\xc4\x2a\x51\x07\xdd\xe8\xef\xc3\x20\xf8\x57\xbe\xdc\x97\x00\x13\x6f\xfb\x0f\x9a\x47\xaa\xe6\x54\xf7\x0d\xed\x21\x94\x0f\xa2\x64\xbb\x65\x88\x96\x5b\xd5\xa8\xe6\x5a\xab\x8c\xb2\x6a\x07\x22\x0c\x29\x37\x2c\x2c\xd2\x06\x09\x33\x49\x89\x93\x39\x55\xe7\x61\x70\x99\xcc\xa5\xf1\xea\x5a\x46\x0b\x8c\x38\x0d\x0f\x34\x32\xd5\x98\xaf\x0e\x1e\x0d\xba\xe7\x1b\xef\xa0\x6e\xc6\xf9\xb7\x6d\xf6\xb7\x6d\xb6\x8f\x6d\x66\xcf\xe7\x44\x86\xd2\xc4\x4b\x4c\x84\xc1\x99\x8d\x1e\x8a\x62\xd5\x4a\x6f\x14\x70\x86\x05\x19\xbe\x0c\x1a\x4d\xf2\x56\x9b\x5c\x65\x0d\x53\xd3\x8b\x42\x7e\xb7\xb0\x10\x3e\xc2\xdd\x2e\xf1\xde\x78\x59\x23\xd1\xc9\x8e\xf0\xa2\x40\xc8\x44\x06\x63\xa6\xda\x87\xb9\x02\x8f\x4a\x38\xce\xfe\xaa\xc8\x20\xbe\x0f\x3d\xfc\x64\x66\x3d\x7c\x76\x1d\xc2\xa2\x04\xb8\x70\x98\x33\xc6\x92\x7e\xea\x07\x1b\xe0\x41\xa0\xc6\x0b\x01\x04\x9c\xf3\xbd\x0d\xc3\x9e\xa2\x2c\xc2\xeb\x11\x2b\x4d\xcd\xd2\x90\x32\xb7\xbd\x3e\x3d\x9b\xd2\xae\x91\x22\x24\x2f\xd3\x22\x04\x89\xb2\x9b\xa7\xb8\x43\xb0\xa6\xee\x7f\x47\x2b\xa5\xef\x90\xb5\x72\x4b\xa5\x9f\xb6\x72\x01\x99\xc6\x95\xbe\x04\x61\x25\x2a\xc7\x96\x4c\x28\x31\x3e\xf6\xf7\xf4\x0a\xf9\xe1\xfc\xee\xec\xf6\xf4\xea\xe8\xfa\xf6\xc5\xeb\xcb\xeb\xf3\xc9\xc9\xd1\xed\x51\x70\x7c\x79\x01\x52\xe9\x6d\xf0\xdd\xe9\xc9\xc9\xf4\xe2\xc7\x4e\xaa\xdc\x3a\xdb\xd3\x74\x75\x7d\xfa\xf6\xe8\x76\x1a\x10\xbc\x5e\x22\xcc\xad\xed\xb1\xee\x2a\x47\x93\x1b\xf0\xee\xca\x4a\xe5\x85\x78\x11\xa7\x33\x38\x0a\x2a\xb8\xff\xc7\xea\x75\xf2\x83\xf6\x63\xcb\x0f\x0f\x0f\x7f\x0c\x7e\xd0\xdf\xeb\x86\xdd\xa4\x55\x71\xfd\x0c\x5a\x32\x50\x92\x1c\x2b\xa0\xa9\x82\x5a\xb5\x0d\x65\x95\x35\xd5\x67\x18\x1c\xe6\xd3\x49\xd3\xe6\xcf\x8e\x70\xe9\x22\x65\x86\x8e\x05\x1b\x9a\xb5\x4f\x7a\x7c\x79\x94\xcb\x96\x2e\x9a\xa2\x32\x80\xcf\xf5\x55\xe1\xee\x37\xd6\x4b\x90\x75\x61\x97\x2e\xd2\x36\x47\x64\x4f\x19\x6c\x42\xc3\x0a\xb4\x7e\xb5\x5f\x80\xb8\xdb\xb8\xd2\xfa\xcd\x05\x62\xfa\x51\x76\x6b\xf6\x56\x98\x7f\x0a\x93\x10\x78\xc1\xb6\xca\xb6\x3f\x38\xb1\xbe\x29\x6c\xc0\x2f\x28\x80\xb2\x22\x64\x22\x7f\x30\xcc\xcc\x99\x0a\xbe\x87\xf7\x9a\x97\xce\x1e\x33\xb2\x9b\xc8\xf6\x9a\x09\x74\xcc\xd0\x59\x37\xee\xe1\x26\x37\xd0\x1f\x37\xe2\x40\x83\xb4\xa4\x94\xfd\xb8\x1b\x3c\xd0\xa2\x19\x5b\xcb\xd4\xb7\xeb\x15\x5a\xad\x29\xa5\xb8\x34\x15\xf9\xb5\xeb\x64\x4d\xc3\x0c\x25\xc8\xa0\x77\x52\xe1\x49\xbd\xf0\x34\xde\x31\x2b\x78\x59\x7b\x90\x74\x22\x32\xb4\xb4\xc7\xb6\xa6\x5c\x7f\x20\xbd\xa3\xfd\xd7\x30\x8f\xdd\x0d\xad\x71\xcd\x57\x65\x27\xf8\xd6\x6f\xf6\x10\x7b\x0e\xcf\xd6\xef\x6e\x90\x4d\x9c\xdc\xfb\x40\x86\x75\xe1\xdb\x4e\xe0\xaa\x8d\x67\x7a\x7a\x55\x33\xcc\x00\x7d\xe3\x77\x7b\xc8\x51\xde\xc7\xc9\x43\x90\x50\x61\xeb\x7b\xcd\x4c\x94\x77\xcb\xc3\x64\x17\xf1\x04\xda\x6d\x1a\x23\xa8\x3e\x86\x31\x5b\x83\xf5\xf0\x1a\xe7\x9c\xe1\xc7\x80\x80\xb2\xe1\x78\x03\x36\xf8\xfd\x2b\xd0\x5e\x2e\xff\xc8\x28\xba\x8f\xa5\x88\xbc\xea\x0a\x72\xbc\x40\xf7\xde\x7b\x10\x33\x78\x96\x16\x7e\xbb\x4f\x65\xba\x25\x8f\x0d\x34\x7b\xc1\xd3\x75\xad\x3d\x37\xf2\x87\xb4\x8c\x43\xad\xff\xc1\xf2\x03\xa6\xfb\xae\xab\x7c\xed\x26\xd4\x04\xdf\xf0\x33\x89\x49\x37\x50\xe5\xdd\x06\x6b\x4f\xf7\xa3\x29\x9c\x86\x8b\xe7\x8d\x73\xd9\xf6\xdc\xf4\x16\x3d\xac\xb1\x73\xc7\xa0\x28\x49\xeb\x80\x72\x35\x15\xa7\x49\x61\x52\xe5\xfc\x21\x65\x51\x5c\x1b\x45\x31\x6f\xd5\xba\x11\xc0\x64\x57\x93\xfc\x35\x72\x32\x54\x48\x88\x95\x58\x70\x66\x29\x39\xd7\xb5\xc6\x18\x99\xca\x20\x14\x0b\x42\xa1\x4c\x91\x64\xbd\xec\xc7\x66\x3f\x54\x18\xa9\xd1\x5f\x63\xbb\x81\x3d\xec\x4c\x92\x9a\x6e\x05\x07\xae\x1b\xfe\xce\x46\xd6\x38\x30\xd1\x5f\xf7\x89\x6c\xfd\x68\x0d\x33\x4a\xc8\xbe\x31\x2f\x50\x7f\xb5\xe8\x9e\x9a\x32\x47\x13\x90\x6a\xeb\xb3\xcb\x2b\x67\x57\x95\x48\x26\x8e\xe0\x19\xd2\x89\xae\xa7\xb5\x33\x56\x12\xdd\x74\x62\xdd\x53\x4c\x82\x8b\x4e\x72\xf0\x4c\xc9\xd3\xe4\x25\x27\x3c\x88\x8a\xd6\xfe\x3a\xc0\x7b\xa4\x78\x9f\xd7\x95\x41\xb0\x09\x17\x0a\x31\xec\xf5\xca\xfe\xd4\x81\x51\x7c\x1a\x8a\xd0\x79\xec\xdd\xe2\x49\x6d\x2c\x1b\x02\xbe\xfb\x5a\xab\xe1\xfb\x5c\x6c\x51\xf2\x28\xe2\x08\x9d\x2b\x1e\x80\x73\x17\x5c\x68\x2c\x4a\x2a\x8f\x26\xd3\xc5\x40\x5e\x47\x68\x8b\x54\x6d\xd3\x00\xd3\x1a\x86\xc8\x58\x24\xda\x31\x08\xb2\xcf\xc5\xa8\x89\xe2\x20\x17\x4a\x9c\xa1\x6e\xb3\xe3\xd7\xef\x6f\x6e\x8f\xde\x9c\x5e\xbc\x79\x7f\x7b\x7a\x3e\xbd\xbc\xbb\xd5\x9c\xcb\xb0\x5d\xde\x8a\x98\x32\x41\x12\xd0\xb4\x62\x82\xbb\xee\x35\x3b\xf8\xa3\x0d\xe4\xfa\xf6\xee\x6a\x9f\x03\xe9\x83\x6f\x3d\x90\x58\xcc\xa4\x49\x48\x68\xfd\xea\x00\x15\x1e\xdc\xe5\x8a\x5f\x60\xdd\x3b\x1c\x35\xc3\xc0\x36\x77\xb5\xb4\x55\x2c\x11\x6b\x33\x3d\xeb\x37\x7f\xb7\x1f\x03\xc8\xc1\x9c\x26\x53\xfb\xc6\xe8\xb8\x59\xa5\xed\xec\xe6\x0c\x2e\x5d\xdd\xe9\xa1\x8c\x8a\x21\x3a\x4e\x29\xa0\x98\x77\x2f\x8f\x0a\x53\x12\x37\xb7\xce\xf6\x34\xa5\x98\xc7\xbb\xfb\x2d\xce\xd1\xb0\x5e\x62\xee\xd2\x9c\x95\x6e\x69\xc8\x4a\x67\x03\xb8\x7b\x53\x2a\xc8\x3e\x3c\xd7\x28\x1e\x79\x8a\x46\x49\x9a\xa0\xcb\x4a\xad\x16\xee\xde\x76\xa6\xa6\x2e\xf8\x0c\x63\x68\xfd\xe8\x00\x13\xed\x16\xc8\x2f\xd9\xe8\x2c\xb5\x52\x0e\xb6\xa1\x51\x2c\xbb\x48\x83\x26\x4b\x44\xef\x3a\x4c\xd7\xac\x14\x75\x7e\x1b\xcb\x94\x82\xdb\x2f\xed\x79\x33\xa1\x82\x09\x34\x35\x9a\x7b\xba\xa3\x1b\x53\xa6\x7b\x66\x94\x87\xb7\xaf\xe1\xf4\x8a\xb0\x94\x09\x9c\x5e\x9f\x43\x86\x32\x7a\x65\x6d\x20\x5b\x44\xf7\x25\x00\xbf\xca\x76\xde\x3f\x58\xed\x85\x57\xb4\x05\xc2\x32\x22\xf2\x84\xd9\x47\xbd\x2f\xd8\x66\xb6\xfa\xd9\xba\x6d\xab\xb1\xda\x55\x9e\x50\xec\xa9\xc4\xbb\xc1\x48\xc0\x56\x03\x7b\xd8\x1c\xc6\xd0\x6d\x16\xda\x6e\x60\x0d\xfb\x67\x73\xb1\x67\xfa\xb9\x43\xac\x36\x8a\x1b\x78\x5b\x72\x9c\xf6\x47\xca\xf4\xdd\xc8\xf6\x31\x8b\x12\xf4\xaf\x89\xd0\x51\x00\x33\xf3\x75\x1f\x2c\x3f\x20\xd6\x63\x47\xf0\x2a\x51\x6f\xf7\xbe\xdd\xdd\xc8\x01\x87\xe6\xdf\xb9\xb1\xfa\xe4\x94\x0b\xa3\x0f\x62\xd8\x1b\xb8\xba\x57\x75\x0b\x99\xcf\x1d\xde\x93\x3b\xd5\x37\x57\xaa\x72\xf2\xed\xd6\x7f\xe9\xdc\xfc\x1e\xb0\x2d\xd3\x66\x0c\xce\x96\xb1\x65\x97\xde\x42\xd0\x6d\xb7\xb6\x82\x6c\x93\x7e\x63\x94\xac\x1b\xd6\x79\x2e\x46\x48\x6f\x61\x9f\x15\x77\x77\x16\xdc\x01\x28\x8d\xd7\xe1\xee\x46\xae\x38\x26\xbd\x3e\x0e\xbb\x9b\xb9\xe2\xe9\x9e\xb5\x01\xb2\x2e\x57\x4d\xe8\x56\xff\xeb\x92\x03\x5e\x87\x32\x32\xed\x2b\x0a\x11\xf6\x81\x6a\x8c\xe4\xf4\x4d\x31\xd9\x88\x4a\x37\xe8\xa3\x3a\x5a\xb9\x61\xe9\x83\xef\x07\x59\xd5\xb9\x36\x9c\x2c\x8c\x06\x4d\xbc\xae\x1f\x56\x29\x76\x33\xee\xdc\xf3\x5a\xcb\xb1\x1a\xb1\xc9\xd5\x44\x78\x15\x8a\x54\x60\x03\x41\xb1\x25\xdf\xc2\x4b\x8b\x4b\x7a\x75\xe2\xb9\x12\xe4\xa3\x59\x39\xf5\x57\x5d\x3c\xad\xba\x18\xca\xdb\x89\xac\xa0\xd2\x07\x3e\x50\x29\x55\xb8\x95\xf6\x9b\x55\x3e\x8d\x54\xf1\xee\x62\xde\x0e\x13\x11\x26\xfd\xcd\x52\xac\x39\xd3\xbd\x17\x6c\xbb\x59\x8f\xba\x54\x19\xcd\xf0\xb2\x4b\xf1\xee\xee\x7e\xac\x95\x18\x74\x86\x89\xf2\xd1\x26\x4f\x91\x2b\x5e\x6c\xab\x4c\xfa\x34\x6a\x3b\x5a\xd8\x43\xdf\x4e\xf5\xd4\xe0\x2a\xdd\x28\x2d\xbb\xd9\xd3\x61\x88\xca\x2f\xbd\xa2\xf2\xa1\x57\xf7\xbe\x68\xff\xe8\x04\xb3\x9b\x5d\x6e\xfc\x6a\x0f\x15\x2d\x55\x06\xb0\xb9\x97\xd8\x8c\x89\x3e\x0c\x30\x7d\x23\xb9\x5b\x19\xb3\x0c\xf0\x77\xb6\xb2\xc6\xf2\xd8\x13\x6d\xbb\xf5\xbb\x35\xe4\x8f\x19\xb3\x22\x4a\x3b\xca\xd6\x02\x8a\x62\xa0\x20\x3c\xca\xe8\x6f\xb8\x58\xe6\x59\x34\xa3\x84\x60\x69\x86\x85\xb0\x28\x68\x8b\x8a\xca\xaa\xbc\x5a\x0c\xa0\xcc\xbc\x75\x4a\x6b\x93\x58\x15\x79\x00\x54\x19\xee\x55\x08\x00\xb0\xbf\xe7\xe8\xf9\xaf\xa6\xef\x25\xa7\xff\xd0\x65\x4b\x6e\x0a\xf4\x40\xfd\xed\xb7\xee\x22\x1a\xdb\xd0\x14\x24\x15\x52\xd0\x0f\xd0\x85\xf0\xe3\xd7\x3a\xd7\xcd\x2a\x32\x91\xb4\xbb\x9d\x17\x26\x73\x92\x0b\x43\x4b\x27\x6c\xba\xaa\x6f\xf0\x20\xe3\x55\xf0\xc3\xf1\xe5\xf9\xf9\xd1\xc5\x49\xb7\x8f\xb6\x55\x1f\x37\x0a\xca\xa4\xb8\xbc\x57\x61\x42\x39\x40\xd5\xd1\x31\xdd\xfe\x48\xb6\xdd\x9c\xe8\x60\x2f\x3b\x9d\xd5\xa5\xcf\x29\xcf\xa2\x87\x0b\xf6\x93\x28\xff\x70\x87\xbc\x97\x6b\x3a\xaa\x6f\x54\x06\x28\x13\x11\xcd\x8e\xa1\xec\xec\xe8\x44\x0b\x08\x15\x7a\x50\x46\x0f\xa8\x8d\xb6\xe4\x10\xe5\x73\x95\xed\x74\x42\x51\x65\x19\xeb\xaa\xe6\x7a\xa9\xdb\x35\xae\x29\xbb\x4d\x23\x22\x3d\xe7\x62\x82\x5c\x4d\xb3\xce\x6f\x63\xdc\x4b\x4f\x88\xdc\x71\x4e\x90\x12\x45\x4b\xb9\x5d\xe5\x1c\xed\x25\x20\xc3\xa2\xf6\x00\xab\x08\x9a\x95\xc1\x3b\x00\x76\x94\x35\x5f\x52\x98\x35\x41\xf4\x94\xf2\x31\x43\x52\xcc\x51\x7b\x55\xba\x25\x8e\xb5\x32\x91\xb7\xdd\x25\x8e\x3d\x9f\x65\x00\xed\x5c\x2e\xdb\x07\x0a\xbe\xb0\x38\x4f\x8d\x6e\x7c\x9c\x76\x75\x73\xa2\x23\x0d\x65\xac\xe4\x7d\xfd\x71\x67\xb9\x65\x23\x55\xdd\x40\xd6\x3a\x97\xa9\x1f\x79\x6d\x77\xbe\x60\x59\xe6\x1c\x1d\x1a\xe4\x74\x61\xa2\x4b\x15\xba\xf4\xb1\x74\x62\x22\x71\x03\xd0\x89\x9c\x71\x5e\x0c\xcc\xb0\x31\x17\xa1\xc4\x44\x1b\x0c\x8a\x12\x6f\x90\xe0\xb2\x1f\x92\xc7\x20\x75\x64\x1a\x1d\x5c\x2f\xb7\x3b\x8f\xe3\x61\xb9\x91\xfe\xf3\x39\x6f\x6d\x78\x30\x9f\xe1\x83\xed\xb7\xdf\xce\x5b\xef\xe7\x83\xa6\x8b\x55\xab\x5d\xb0\xd3\x7f\xec\xa0\xca\x43\x94\xeb\x76\xba\x6a\x68\x9d\xcf\xaf\xfa\x49\xb3\xcb\x83\xa0\x69\x0a\xa4\x2c\x82\x17\x69\xf2\x0a\xad\xd4\xba\xcb\x11\x7b\x6a\xf7\x48\x82\xae\x23\x7b\x2a\x4a\x1d\x54\x0a\xd7\x6c\x03\xd0\xcc\x8f\x79\x16\x15\x51\xd3\x5f\xd5\x91\xc4\x7d\xf6\x82\x6d\x70\xcc\xcb\x76\x81\x6b\xd5\xfe\xf5\xdb\x57\x37\x4a\xc3\xa6\x21\xf7\x6a\xdc\x76\xf4\x19\xa2\x84\x33\x90\x40\xbb\xe1\x84\x43\x05\x7a\xf6\x90\x33\x08\x17\xfa\xf4\x9d\x82\xd7\x1c\x5d\xd5\x20\xa8\xf2\x26\x85\x2f\x7f\x69\x1e\xb6\xad\xd5\x36\xd1\xec\x0d\xd6\xcf\x2f\x71\x7f\x31\x19\x67\xe8\x13\x56\xa9\xc7\x3a\x11\x74\x35\x73\xf3\x3d\x4b\x7b\xf1\x74\x35\x73\xd2\x0b\x77\xdf\x41\xde\x6a\xe1\x3a\x83\x37\x27\x31\x40\xeb\x67\x84\xef\x7f\x7a\x49\xe3\xb1\xe7\x2f\xc2\xe3\x63\xf8\x46\x3d\x7d\x91\x9b\x64\x58\x42\x5d\x66\x87\x9c\x89\x6b\xce\xe9\x51\x75\x26\x48\x90\x57\x1f\xeb\xa4\xa9\xed\xae\x16\x69\x5c\xbf\x04\x2d\x3b\x67\xec\xef\x7e\xfc\xbb\xff\x27\x00\x00\xff\xff\x93\x9f\xad\x30\x99\xbc\x02\x00")
func cf_i18n_resources_es_es_all_json_bytes() ([]byte, error) {
return bindata_read(
_cf_i18n_resources_es_es_all_json,
"cf/i18n/resources/es_ES.all.json",
)
}
func cf_i18n_resources_es_es_all_json() (*asset, error) {
bytes, err := cf_i18n_resources_es_es_all_json_bytes()
if err != nil {
return nil, err
}
info := bindata_file_info{name: "cf/i18n/resources/es_ES.all.json", size: 179353, mode: os.FileMode(436), modTime: time.Unix(1426081216, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _cf_i18n_resources_fr_fr_all_json = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xec\xbd\xc9\x72\xe4\x48\x96\x20\x78\xef\xaf\x40\xc7\x1c\xe8\xd1\x42\xa3\x47\x64\x66\x95\xf4\xb0\x65\xa4\x86\x41\x9a\x7b\xb0\x8a\x5b\x71\xf1\xca\xec\xf0\x10\x4f\xd0\xa0\x46\x22\x1c\x06\x20\xb0\xd0\x9d\x1e\xe5\x23\x73\xcd\x7b\x7d\x40\xca\x5c\x3a\x98\x87\x3e\xd5\xad\x8f\xf6\x63\xf3\x16\x55\x6c\x06\x28\x14\x0a\x18\xc3\x7b\xa6\x4b\x2a\xc3\x8d\x66\xaa\xef\x3d\xdd\x9e\x3e\x7d\xeb\x0f\xff\xc1\x71\x9c\x5f\xf0\x3f\xf0\x7f\x5f\xf9\xde\x57\xfb\xce\x57\x6f\xc3\xb7\xe1\xf5\xf1\xc5\xfe\xdb\xf0\xab\x5d\xf5\x4b\x96\xb8\x61\x1a\xb8\x99\x1f\x85\xaa\xc9\xe1\xf9\xd9\xd5\xfc\xf8\xa4\xd6\x6c\x15\x79\xfe\xd2\x17\x08\x66\xe9\x06\xa9\xc0\xef\x3f\xef\x76\xe0\xf8\x53\x94\x27\xce\x3f\x5e\x9d\x9f\x39\x69\x96\xf8\xe1\x9d\x93\x3e\x86\x99\xfb\xd1\xf1\x53\xc7\x0f\x1f\xdc\xc0\xf7\xf6\x1c\xe7\x22\x89\x62\x91\x54\x7e\xca\xee\xfd\x74\xdf\x71\x16\x4b\x27\x15\xd9\x2c\xc9\xc3\x10\xba\xce\x44\xf8\xe0\x27\x51\xb8\x12\x61\x36\x7b\x70\x13\xdf\xbd\x0d\xc4\xec\x2e\x89\xf2\xd8\xd9\xf9\xe5\xed\x57\xa1\xbb\x12\x6f\xbf\xda\x7f\xfb\x15\x80\xcd\xe1\xd3\xee\xe6\x57\x9f\x77\xb4\xa3\x3d\x71\x25\x0d\x82\x49\x16\x69\xa6\xa8\x14\x40\xe6\x95\xfc\x6d\x11\x25\x89\x58\x64\x62\xdb\x14\x3e\xfb\x44\xa7\x99\x7b\xf7\x65\x4f\xf4\x76\x28\x1c\x30\xd1\xff\xc9\xb9\xbe\x17\xa9\x00\x62\x92\x07\x7f\x21\x9c\x38\x80\xc1\x39\xf7\xee\x83\x70\xdc\xd0\x71\xd3\x34\x5a\xf8\x6e\x26\x3c\xa0\x3d\xcd\xf6\x9c\xc3\x44\xc0\xc0\x61\x35\xdc\xa2\x87\x1f\xc2\x20\x42\xf8\xf0\xc1\x0f\x02\xf8\x6b\x01\xeb\x86\xcb\xc0\x3d\x3a\xa7\xed\x3f\x39\x27\x22\x55\x40\x52\x40\x16\x46\xd9\xfa\x29\x75\xa2\x30\x73\x3c\x81\xbd\xd7\xff\x23\x4b\x25\x05\xf0\xc3\x9e\x73\xe5\x3b\x79\x58\xc1\xe7\xc1\x84\x0a\x27\x7b\x8c\x05\xcd\xf7\x22\x59\x3f\xad\x9f\xc4\x2e\x34\xe2\xce\x08\xdc\x2d\x00\xec\xb5\x4e\x4f\x96\xe4\xba\xd9\x39\x88\x63\xd8\x7e\x6e\x02\x13\xa0\x61\x2c\xd0\x2a\xf0\x17\xf4\xa7\xe3\xad\x9f\x56\x6e\x02\xa4\x08\xab\xe5\x40\x84\xbf\xfc\xb2\x07\xff\x9c\xc1\xfa\x7e\xfe\xec\x7c\x70\x53\x45\x81\x93\xa7\x38\xf3\x72\x6e\x57\x2b\x37\xf4\x9c\x3f\x43\xe3\x43\xfe\xfc\xf9\xf3\x9f\xb5\xcc\xaf\x4a\x65\x0d\x85\xeb\xac\x9f\x60\xea\x2b\xa4\x3b\xb0\xfc\x0b\x27\x70\x15\x1a\xa1\xc1\x33\x60\x70\x67\x91\xe3\xc6\xbe\x23\x42\x2f\x8e\xfc\x10\xd7\x47\xb3\x3f\x80\xe0\x7c\x01\x4b\x59\xb4\xf6\x76\x0e\x2e\x8e\x81\xa2\x70\xe9\xdf\xe5\x49\xd7\x82\xf6\xd1\x70\x19\xe5\x19\x6c\x9a\xc8\xb9\x15\xb0\x51\x56\x6e\x1c\xc3\xc4\xc2\x84\xc2\xee\x73\x60\xe7\x26\x70\x00\x83\x47\x47\x7e\x0f\xcd\xb2\x7b\x98\x8d\x72\xe6\x74\xf4\x02\x13\x48\x08\xfa\xfa\xaf\x38\x97\x29\xec\x3c\xff\x2e\x04\xf6\x14\xee\xe0\xfe\x8c\x5d\xda\xcd\xf0\x15\xce\x30\xb4\x09\x76\xda\x01\x0f\x18\x0d\xde\x78\x8e\x73\x03\xe7\x77\x07\x18\x0a\xac\xde\x7b\x91\xc1\x09\x86\x63\x31\x4b\x9d\xab\xf9\xe5\x9b\xe3\xc3\xf9\x0e\x0e\xe3\xc1\x17\x1f\xf0\x58\x2d\x12\x3f\x46\x74\x70\xce\x96\x70\x92\x3c\xff\xc1\xf7\x72\x37\x90\xc7\x1e\xbe\x73\x9d\x3b\xff\x41\x84\xea\x60\xea\xc6\xab\xee\x52\x20\x20\xf3\x03\x1f\x7a\x68\xa9\x88\x91\xa1\x3f\x44\x7e\xe2\x04\x70\xbc\x6b\xb4\xe0\x79\x5f\x46\xc9\x2a\xa7\x5f\xfc\x34\x8e\x42\xff\x16\x3f\x53\x9f\xbc\xa0\xc6\xf1\xa2\x30\xb4\x5d\x79\x9a\xab\x03\x5a\x00\x58\x27\x84\xfe\xc1\xcf\xee\x81\xbd\xc2\xce\xe6\x85\x87\x79\x4c\xe0\x3c\x20\x5f\x8e\x92\xbb\x19\x36\xda\x71\xf0\x94\xb5\xb7\x49\x63\x18\x22\xb7\x32\x99\xa5\x83\x0c\xee\xb1\xdb\x1c\x66\x09\x87\x9b\xac\xff\x1d\x49\xa0\x83\xd6\x47\xc2\x00\xf4\x43\xe7\x83\xb6\x0e\x82\x7f\x75\xed\x26\x77\x22\x2b\xce\x38\xed\x9a\x8c\xbe\x73\x42\xd8\x3b\x84\xcd\x64\x98\xe5\x5e\x68\x07\x4b\x4b\xba\xc0\xe5\xa5\x95\x0d\xa3\xfc\x41\x04\xc0\xc0\xeb\xf0\xad\xc7\xd1\x45\x3f\xcc\xe6\x70\xea\xdb\xa9\x66\x92\x03\x51\x87\x39\x94\xe2\x5c\x1e\xda\x20\x02\x01\xc0\x99\xb9\x0e\x72\xb7\xd9\x2c\x7d\xef\xc7\xb3\x34\x0d\x66\x24\x3c\x10\x89\x3b\x80\x88\x9a\x22\xf3\xd4\xb4\x82\x01\xa7\x79\x1c\x27\x22\x65\x39\xc8\x11\x49\x12\x25\x26\xa3\xce\xab\xe7\xd7\x88\xa0\xdc\x84\x20\x9a\x34\x22\xc9\x5f\x01\xf0\x85\xc8\x80\x39\x02\x51\x22\x4f\x2c\xe6\x0d\x3e\x7d\x07\x12\x06\x5c\x81\xa7\x6e\xe8\xde\x01\xc0\x19\x8b\x23\x82\xce\xe8\x8a\xbe\x24\x7e\x7d\xcb\xcd\x1c\x77\xb1\x88\x72\xb8\x39\xf0\xe7\xd8\x7d\x44\xe1\x0a\x78\xde\x32\xd2\x5c\x93\x2d\x18\x80\x5b\x27\x0e\xec\xa2\xbb\xf5\x53\x22\x90\x79\xe1\xad\x18\x67\x24\x7f\x2c\xdd\x45\x96\x27\x7c\xa7\x42\x13\x3c\xd1\x88\x20\x59\xb9\x8a\xb1\x01\x62\x5f\x20\x66\xab\x3b\x13\x3e\x1d\xbe\x7a\x77\x76\x70\x3a\x77\xdc\x1c\x98\x15\x0a\x7d\xff\xa7\xf8\xe8\xae\xe2\x40\xec\x01\x19\xce\xdb\xaf\xde\xbe\x7d\xfb\x15\x5c\x2d\xe9\x87\x28\xf1\xf0\xf3\xdb\xaf\x9c\x17\xc0\x5b\x5d\x90\x8a\x7e\xce\xa3\x0c\x29\x5a\xe2\x66\x83\x5b\x2e\x74\x54\xc3\xaf\x3b\x27\xc0\x04\xdd\x2a\xca\x78\x64\x69\x2a\x14\xca\xf5\xd3\xe2\x1e\x2f\x4d\xe6\xee\x77\x39\xcc\x23\x0c\x1b\x04\xb8\x74\xc7\x0f\xe0\xbf\x28\xd6\xf1\x36\x43\x21\xcf\xc3\xdb\x06\x4e\x7f\x15\xd2\xd7\xdb\x99\x9f\xd5\x63\x31\x6a\xa4\x13\x8f\x9d\x9c\x17\x58\xa7\xe2\x27\x79\x19\xb8\xcc\xe7\xbe\xd6\xec\x90\x5e\x7c\xd5\xc9\x41\x84\x7c\xb6\x3e\x11\xd7\xaf\xcc\x0b\x1d\x0e\x9c\x2b\xe8\x90\x16\x3d\xf8\x42\x40\xb1\x67\x93\x10\x9b\x59\x59\x44\xf1\xe3\x2c\x05\x54\x70\x79\x5e\x9d\xdf\x5c\x1e\xce\x67\x07\x17\x17\xce\xf5\xc1\xe5\xeb\xf9\x35\x7d\xfc\x61\x16\xa9\x3f\xcf\x2f\x5f\xff\x08\x7f\xa7\xea\xef\xab\x8b\x83\xc3\x39\x7e\x33\x0b\xa3\x19\xb0\x15\x14\x43\x7f\xd4\x4c\xcd\xb3\xe1\xb5\x99\x09\x66\x6b\x2f\xa2\x95\x9f\xe1\x71\x48\x70\xe9\x24\x67\xe0\x2d\x80\xfc\x93\x1b\x81\xb4\x09\x2f\x87\x45\x06\x82\x10\xc8\x82\xb3\x59\x01\x83\x5e\x38\x71\x82\xc7\x9f\x76\xcf\x6d\x94\xdd\x9b\xec\x95\x02\x37\x70\xc0\x44\xc0\x05\xb2\xc2\x05\x0f\x76\x78\x6f\x00\x07\xcb\x89\xc3\x54\xb7\x8e\x64\x9e\xc8\x6c\xc2\x10\xdf\x8c\x28\x36\x20\x93\xf3\xd7\xbf\x26\xa2\x4a\xa2\x53\xd2\xf7\x10\xe5\xb8\x95\x48\x64\x87\xa7\x0f\xcb\x59\xf9\xc7\xd1\xbb\x48\x5e\x09\xc0\xe0\x23\xe7\x45\x73\x32\x40\x82\x84\x89\x74\xf2\x24\xc0\x19\x8c\x6e\x33\x17\xda\xba\xf0\x8e\x13\xb3\x0c\xf8\xfe\xe6\xfc\xf6\x33\x9f\x56\x7c\x4b\x98\x90\xd0\x87\x61\xe1\x23\xf0\xe6\xf2\x84\x67\x08\xf0\x09\xf8\xb6\xc9\x4c\xe0\x6f\xff\xe7\xbc\x65\x16\x47\x72\x19\x49\x59\xbe\x79\xf2\x67\xf1\xf6\x98\xb1\x01\xd6\x2f\x92\x27\xf7\xd0\xbd\x2d\xd6\xdc\x87\xf6\x8b\xe2\xd0\x5a\x62\x63\xf7\xef\xfe\xee\x43\x74\x79\xe4\xbc\x48\x63\xb1\xf0\x97\x8f\x1d\xac\x0b\x9f\x96\xc9\x5d\x8e\x72\x46\x3a\x7a\x86\x4a\xa4\x31\x08\x3f\x0b\x12\x0c\x8d\x58\x16\x6a\x0b\x44\x07\x21\x36\x53\x13\xe7\xe9\x3d\xc8\x97\x17\xfc\xd7\x0f\xb3\x5b\xe7\xbb\x9b\xe3\x93\x23\xb8\x1d\xfe\x89\xbe\xc2\x2b\x62\xe1\x1c\x9e\x9f\x9e\x1e\x9c\x1d\xe1\x1f\x9e\x73\x74\x7e\x7a\x70\x7c\x86\x9f\x97\x0e\x7c\x7b\xfc\x6a\x7e\x75\xfd\xee\xe2\xe0\xfa\x7b\xfd\xbd\xd5\xc4\x48\xc8\xce\xce\x4f\xdf\x15\x08\x6b\xb8\xe6\x55\x64\x73\xc6\x76\xf8\xfd\xfc\xf4\xf8\xec\xdd\x9b\xf9\xe5\xd5\x3b\x85\xf9\xc7\xe1\x3a\xa7\xe6\xf0\x07\x0e\x64\xb3\xb3\x39\x5d\xbd\xeb\x72\x9e\xdc\x1d\xe4\x9e\x9f\x45\x28\x18\x5f\x0a\xd7\x9b\x45\x21\x5c\x90\x20\x66\xd3\x93\x23\xc2\x07\x11\xc9\xbf\xb4\x39\x13\x11\x47\x49\x96\x6a\xc8\xad\xc1\x03\x28\xeb\x5f\xe1\xcd\x12\xc2\x91\x43\xa1\x1a\x55\x92\x39\x08\xdb\x6e\xfe\xb1\x2e\x53\xc3\xae\x4b\x80\xab\x21\x6c\xde\x92\x80\xd5\x76\xa7\x01\x05\xa5\xa8\x7f\x1c\x3e\xf8\xf5\xc7\x04\x1e\xb6\x74\x17\x08\x41\x92\xe8\x07\x60\xa8\xe1\x9d\xd4\x92\xee\xd2\x37\xf0\x14\x07\xce\x24\x42\x0f\x5f\x1c\x81\x0f\xe2\x45\xcf\x90\x9b\x08\xeb\x8f\x8b\xd4\xa9\x9c\x30\xc4\xbd\x7e\x42\xe4\x3e\xde\x5f\xf2\xc4\xd1\xf0\xb8\xad\xa4\x03\xbe\x5e\xfa\x1f\xa5\x66\x81\x68\xa0\x9b\x1f\xb5\x50\x40\x59\x2a\x52\xdb\xf9\xb9\x70\x81\xf3\xa6\xf7\x51\x1e\x78\xa8\x30\x73\x9d\x4f\x7e\x0c\xa8\x02\xb1\x5b\xde\xf8\xd5\x2f\x61\x25\x41\xec\x88\x16\x6e\xe0\x78\x3e\xaa\xba\xa3\xe4\x71\xcf\xb9\x88\x52\x9f\x9e\x48\xf0\x26\x75\x81\xad\xe2\x5f\x0f\x2c\xc3\xc0\x44\xe0\xfc\x22\xb7\x4d\xfc\x28\xf1\xb3\x47\x9e\x55\x1f\xaf\x27\x52\x7a\x2e\x41\xdc\x02\x90\x1f\x50\x85\x06\xd8\xee\xfd\xbb\x7b\xa1\xd3\x2b\xc3\x57\x27\xc0\x8a\xee\xc5\x0a\x38\x9c\x17\x81\xb4\xb7\xfe\x1b\x0a\x5d\xc0\xb1\x97\xfe\xe2\x1e\x67\x0e\xe8\xdd\x2d\xa4\x88\x07\x58\xe2\x8d\x1f\xe1\x7d\x0b\x5f\x25\x38\x7d\x49\x16\xc1\x48\x78\x50\x95\xa1\x20\x39\xa4\xbe\x58\xdd\xc2\xaf\xc0\xee\x7c\x1c\x09\x4c\xf8\xd2\x0f\x01\x67\xe0\xaa\x01\xad\x9f\x68\x7d\x88\xfc\xc4\x5f\x3f\x01\xaf\x04\xa9\x25\xf1\xa0\xd7\x22\x89\xfc\x34\x75\xc3\xcc\x42\x37\x8d\x8b\x83\x47\x7c\x95\x07\x99\x1f\x07\xa4\xa4\x2c\x6e\x4a\x14\x13\x97\x80\x51\x67\x0d\x83\xaf\x8e\x60\x7c\x41\xf4\x08\x83\x8e\x83\x3c\xf5\x71\xc3\x55\x75\x9d\x69\x71\xd5\x15\xf0\xec\x76\xd1\x15\x5e\x94\xe5\x49\x7f\x83\xba\x48\xb8\x81\x60\xe3\x4a\x1e\x51\x9c\x24\x34\x2d\xa0\x09\x80\xf5\x17\x74\xc1\x6a\x86\xd0\x84\xab\x74\x8b\x0c\x1b\x3f\x15\x8c\x42\x3e\xce\x61\xee\xdd\xd5\xfa\x57\xd8\x0f\xf2\x7a\x5f\xd0\xd2\x34\xf1\x0c\x1e\xdc\x91\x80\xa7\x02\x99\xa2\xda\x74\x12\xb4\x34\x3c\x42\xb6\x76\xa8\xf1\x0a\x22\xd5\x90\x5b\xb6\x20\xda\x50\x4d\x34\xd6\x4f\x8e\xba\x44\x0b\x5f\x80\x24\x9c\xc2\x9e\x11\xe5\x54\xa9\x66\x6a\xb2\x46\xcd\x84\x01\x3b\xc5\x6f\x44\x88\x16\x2e\x67\x09\x53\x95\x27\x52\xe0\x2b\x54\xcf\x26\xcb\x3e\x8c\x8b\xc2\x6f\xfc\x58\x4a\xa4\xae\x39\x64\x96\xea\x06\x3e\x19\x9d\x94\x9e\x99\xb7\x82\x54\x33\xdb\xce\xc3\xf5\xbd\x50\xef\x22\x14\xd1\xe0\x44\x2e\xdc\x90\xd8\x27\xbc\x8b\x6e\xd3\x28\x40\x1b\x01\x8c\x37\x11\x38\xa6\x07\xc1\x6d\x88\x93\x22\x17\xdd\x7b\x1b\x02\x90\xe3\x4c\xf1\x5d\xb6\xc5\x39\x68\xfb\xc1\x63\x9e\x24\xee\x23\x9f\x73\xb2\x34\x46\xb7\x3f\x01\x9b\x45\xb5\x53\x8a\xef\x30\x56\xab\xdf\xb2\x9d\x48\x38\x09\x6a\xd4\x8d\x79\x25\x0e\xda\x89\x45\x5e\x61\x99\xf2\x37\x26\x1b\xd9\x22\x13\xbd\x6c\xb2\x4d\x26\xfa\x50\x04\xb9\x3f\x5b\xf8\xcc\x77\x61\xa7\x15\x6f\xb3\x0c\x97\xdb\xcd\x1d\x6f\x07\x09\x06\x7a\x89\xf8\x9f\x73\x1f\x59\x26\x50\xfc\x80\xba\x39\xda\x84\xeb\x5f\xef\xea\x34\x3f\xe7\xd4\x33\x04\xfc\x58\x9d\x7d\x1a\xdb\xa8\x15\x60\xb8\xd4\xfc\x3b\x17\x24\xe5\x73\xea\x83\xb7\x1c\xc1\x46\xa5\x04\xde\x75\x78\x32\x48\xa4\xc2\x9e\xe9\xcf\xb9\x0b\x8b\x70\x0b\xcf\xfc\xf7\x38\x63\xf8\x63\xd5\x1e\x7b\xef\x03\x79\x8c\xdc\xc1\x86\x89\x80\xe9\x4c\xf8\x69\x99\xc9\x51\x00\x62\x34\x4f\x03\x8a\x37\xa8\x97\x75\x7e\x82\x37\x1f\x0f\x4f\xca\xfc\xfb\xf4\xe3\x0f\xf4\x5f\x98\x50\xf9\x2f\xf4\xfa\x0a\xa6\x31\x8b\x16\x51\xf0\x16\xa6\xf6\xed\x57\xd9\x22\x46\xab\x73\xf9\x33\x0c\x13\x98\x35\xed\x24\x6e\xf1\xed\x37\x7b\xbf\xfb\xc3\x1f\xf6\xbe\xdd\xfb\xf6\x3f\xd7\x5b\x32\x4f\xa1\x36\xbf\xff\xfd\x37\x7f\x0f\x4f\x53\xfe\xed\x33\xfd\xfb\xe3\x73\x6c\x4e\x82\xa4\x2e\xf8\xda\xde\x24\x1a\x6c\xf6\x27\x80\xe4\xa6\xc0\x36\x17\x7e\x58\xb1\xfb\xab\x15\x25\xbe\x4a\x32\xec\x4a\x75\x86\x0b\x1f\x68\xe6\xeb\x48\xe2\x11\xe1\x12\x04\x80\x8a\x9d\x9b\x9f\xe5\xb4\x98\xf2\x4d\x1e\x88\xca\x40\xe4\x72\xce\x3f\x0a\x5c\x3e\x14\xf2\x08\x31\xbb\x1a\x7c\x49\xab\x39\xe4\xd8\x92\x44\xe0\x06\x20\xe5\xd1\xad\x80\x4a\x00\x57\x99\xe7\xd4\x83\x86\xbf\xec\xb6\xb4\x15\xb7\xbf\xec\xed\x7a\xb0\x04\x29\x9b\x11\xd9\xca\xd6\x09\x69\x08\xa9\x3f\xcc\x7c\xe7\xec\xe6\xf4\xdd\xf1\xd9\xd5\xf5\xc1\xd9\xe1\xfc\x0a\x5f\x7f\xef\x9d\xa3\xe3\x2b\x7a\x22\xae\x9c\xd3\xf9\xe9\xf9\xe5\x9f\xf0\x73\xe8\x7c\x7f\x0e\x6f\x2d\xf8\x14\x3b\xf4\x72\x23\x1d\x27\x74\xe3\xd7\x64\xe6\x5c\x1f\x9f\xce\xcf\x6f\xae\x7b\x5e\x74\x84\xf1\xfc\xf4\xbb\xcb\xf9\x55\x0b\xd6\xc3\x12\xeb\xf1\xe5\x5c\xa2\x5d\xff\xdb\xf5\x9c\xf1\xf2\xeb\x8f\x31\x5f\x1c\x9f\xcc\x25\xe2\xf9\xe9\xc5\xd5\xbb\xf9\x1f\x2f\x8e\x2f\x0f\xae\x8f\xcf\xcf\x2c\x95\xab\xae\x87\x6c\x16\xe6\xba\x7b\x55\x5a\xdb\x98\x63\xf0\x22\xc1\xa6\x79\xf1\xd1\x87\xa3\x85\xcb\x4a\x92\x52\x37\xbe\xfe\x1e\xe6\xd8\xf1\xb9\x12\x80\x34\xe7\x3d\x2a\x17\x8c\x6e\xbc\x78\xf2\x81\x55\xfc\xc4\xb6\x7f\xf6\xa3\x18\x8d\x33\x42\x2f\x04\x23\x9c\x88\xef\x6f\x99\x35\x4a\x60\x26\xd9\xa3\x1e\x11\xde\xa9\x96\xd0\x71\x39\x5c\x66\x51\xf8\x68\xdc\x85\xe7\x86\xc0\x5b\xb0\xa6\x3c\x06\x21\x6d\xef\x6e\xcf\xb9\xcf\xb2\x78\xff\xe5\xcb\x47\x10\xc8\xde\xe1\xba\xa1\x52\xaa\x9b\xb0\x49\x81\x0f\x1f\xd3\x83\xeb\x07\xc4\xb1\xe0\x16\x42\x78\xba\x83\x60\xd2\x67\x30\x05\x20\x3a\xc7\x11\xa9\x1e\xe0\x69\xca\xe3\x5e\xb9\xef\x41\x76\x40\xfd\x89\x9f\xf1\x83\x9b\xe7\x06\x9e\x78\x77\x12\xa5\x46\x20\x9c\x0a\xae\xf9\x48\x10\xdd\x32\xca\x43\xcd\x3e\x47\xcf\x99\x2c\x89\xf2\x07\xbb\xfd\x9d\x88\x55\xf4\x50\x68\x12\x90\x2b\x44\x4b\xa2\x37\xc5\x87\xa3\x2f\xd2\x6e\xcc\x03\xba\x9a\xdb\xff\xbf\xba\xa0\x29\x83\x5b\x54\x89\x6f\xc5\x1c\x28\xd9\x4d\xce\x3f\x60\xf6\xdc\xcc\xd5\x38\xe1\x8c\x81\x65\x4c\xf1\xd7\x05\x4b\x22\xa6\xaa\x79\x50\x68\x5a\x1a\x63\x3b\x28\x9c\xdb\x02\x94\xab\xb2\x28\x22\x35\x93\xb2\x78\xb1\x58\x70\x18\x44\xb9\xe7\xbc\xc2\x71\x26\xdd\x8c\xeb\x26\x04\xa9\x10\x1e\x82\xa4\x27\x44\x5f\x2c\xf2\x19\x54\x3e\x6d\xf4\xe8\x63\xb0\x77\x20\x3b\x90\x90\xd0\x01\xd7\x9c\xf8\xa3\xa3\x97\x97\x70\x17\xbf\x99\x3b\x17\x27\x37\xaf\x8f\xcf\x3a\x69\x6b\xfe\x6c\xaa\xf8\xd9\xc0\xe0\x5c\xce\x2f\xce\xaf\x8e\xaf\x41\xea\xe8\xf6\x50\x34\xea\x34\x60\x94\x6f\x50\x0a\x39\xea\xc6\x87\xbf\xaf\xff\x32\xb7\x81\x7d\x71\x5c\xf8\xfc\x75\xc2\x9f\x17\x4e\x81\xa8\x00\x86\x2e\x23\x11\x39\x2f\x8a\xfb\x21\x85\x0b\xc2\x8d\xfd\xbd\x8a\x51\xa4\xdb\x40\x27\x9a\x74\x38\x2f\x50\xbd\x27\xa4\x74\xde\x0f\xcf\x8a\xda\x7d\xf3\x79\xb1\xd1\xd8\xd5\x50\xb1\xab\xa8\xaf\x00\x7f\xfe\x3c\x00\xb7\xa6\xef\x44\xc4\x38\x2f\xf0\x77\x7c\xee\x01\x11\xea\xe7\x37\xfc\xe7\xe7\xcf\xdd\xeb\xb6\x41\xab\xd3\x06\x5b\xc2\xdd\x18\x50\x1b\x02\xfb\x01\x59\x4f\xed\xc8\x79\xbd\xb8\xea\x3e\xbe\xb5\x1f\xcd\x61\x2e\x50\x03\x81\x9a\x0f\x19\x3f\x00\xcf\xdf\x45\x8e\x4a\x7d\x87\x5c\xd9\x53\x7a\x07\x00\xe5\xca\x88\xf9\x59\xe3\x56\x3f\x0e\x98\x05\xcd\xd2\x15\xbf\x81\x06\xb1\xd4\x90\x18\x10\x3c\x18\x92\x39\xb5\x1e\xbc\xa5\xc8\x9f\xb1\x22\x76\x91\x2c\xd2\x7d\x09\x1a\xf5\x19\x48\x01\x9a\x7e\x12\xe5\x49\x8d\xba\xb5\x38\xee\xc6\xff\x13\x36\x4c\xc8\xe0\xc2\x7d\x0a\xe7\x0d\xfc\xaa\xa2\xb0\xb6\x23\x87\xb6\x08\xc1\x85\xd9\x05\xd0\x70\x72\x91\xa8\xa6\x23\x3d\x0c\x1c\xcd\x93\xf0\xdd\x79\x72\x27\xbf\x7b\xc9\xba\x66\xfc\x92\x94\xca\xca\x21\x9e\x16\xea\xa6\x58\xa8\xbd\xbd\x6e\x89\x87\x46\x47\xe7\xd2\x6d\x52\xd1\x74\xf1\xae\xd3\x43\xaa\x9d\x06\x35\x0d\x3a\x04\xea\xa5\xe0\xd4\xa3\x23\x4b\x37\x41\xe6\x73\x15\xf8\x30\xb2\xba\x27\xbf\x12\x12\xe5\xd6\xb8\x15\x38\x9b\x14\x61\x11\x04\xec\x18\x0f\x5b\x87\x55\xa5\x87\xaf\x94\xe8\xf4\xd2\x45\x48\x7b\x8e\x73\x29\xc8\x15\x01\x01\x34\xc0\x2a\x11\xae\x07\x3c\xae\x89\x07\x7b\x03\x16\x4c\x5a\x04\x7c\xd6\xa4\x62\x03\x9e\x34\x84\x02\x67\xa6\x7b\x05\x4e\x76\xdc\xb6\x81\x29\xd5\x99\x44\x2d\x30\x28\x04\x0d\x5c\xde\x4e\x0d\x3c\xdb\xf1\x4a\xa9\xf0\x65\x0e\x28\x09\x1e\x8c\x17\x47\xbe\xe4\x71\xa2\x6b\xc3\x27\x4d\x48\x44\x13\x9f\xbb\x44\xad\xe5\x8e\xb2\x3a\xa0\xde\xb5\x8a\x77\xba\xf5\xc3\x15\xaa\xad\x0b\xb9\x16\x31\x11\xc8\x1e\xf9\x81\xc0\x3b\x6a\x07\xc6\xf2\xa7\x28\xc7\x99\x08\x3c\x10\x33\x1f\xd1\x4d\x8a\xa9\xc2\x85\xe9\xea\x45\x6b\x00\xcb\x58\x0c\x81\xcd\x73\xb2\x79\x75\x11\xfd\xf0\x21\x7a\xaf\xdb\x10\x40\xc0\xf7\xd1\x07\xf1\x80\xc6\x52\x78\x86\x2b\x2d\xfb\xd2\x4f\x60\x1d\x96\x79\x10\x20\x49\x00\x0c\x43\x7c\x08\xa7\xe3\xaf\x62\x94\xfa\xe1\xdd\x55\xa3\x15\x7f\xa2\x37\x06\xfe\xb1\x49\x31\xd3\x36\x78\xd3\x6c\xec\x06\x6e\xe5\xe5\xba\x19\x7d\x83\x5e\x77\x31\x3a\x85\x7f\x72\x32\x11\x4a\x57\x3d\x8c\x00\x51\x3b\x3d\xa9\x6c\x8c\x16\x5a\x73\xbf\xd8\xf3\xe4\x26\xdd\xd8\x43\xe2\xe3\xfa\x69\x41\x2c\xb4\x7b\xfb\x01\x19\x67\xeb\x27\x37\x5c\x81\x40\x90\xee\x2a\x47\xc0\x07\x78\xa2\x7e\xc2\x5d\x78\x8b\x4e\x42\xe8\xb6\x9c\x80\xe8\x81\xd6\xec\x1d\x39\xad\xcc\xb8\x2a\xb4\xca\x28\x26\xcd\x80\x2d\x9e\x2c\x41\x25\xc0\x84\x4c\x1b\x32\x9c\x03\xcd\x16\xea\xc1\xc8\x5e\x24\x3e\x59\x05\xd1\x18\x08\x7d\x80\x5f\x77\xbf\xcd\xaf\x71\x88\x85\x0f\x84\xb2\xe6\x16\xa0\x49\x8b\xae\x94\x63\x05\x68\xd9\x2e\x43\x46\xcd\xbd\xeb\x38\x06\x9c\xc5\xe1\x43\xa2\x43\xa3\x8b\x43\x18\x33\x24\x76\xae\xef\x8a\x48\x18\xbf\x3c\x7e\xb8\xc5\x05\xaa\x02\x7f\xde\x25\xda\x18\xd6\x94\x8b\xd4\x32\xac\x51\xcb\x94\x46\x70\x5e\x03\x41\x46\xf5\x22\x46\x8d\x84\x8e\xee\x55\xb8\x2a\xc2\x2f\xd6\x4f\x77\xae\xb4\x45\x55\x26\x97\xbb\x97\x81\x69\x56\x33\xcd\xa2\xd5\x2a\x07\xee\x79\x2b\x64\xd4\x8d\x40\x8f\x21\x98\x51\xf5\xb7\x0c\x1a\xd5\x86\x11\xdd\x10\x20\x37\x44\xc3\x3d\xb1\xa1\xd2\x7d\x07\x63\x6f\x38\x32\xd1\xe5\x77\x50\x19\x42\x64\x1d\x3b\x84\xc1\x96\xdd\x82\x5d\xed\xc7\x41\x30\x49\x28\xf2\xd9\xf2\x20\x6d\xb2\xd0\x37\xe8\xd6\x70\x9e\x29\xef\xca\xaa\xb4\x28\x3d\x8c\x16\xf7\xee\x2a\x76\xa2\xdb\xc0\xbf\x73\xc9\x15\xc9\x92\xa8\xba\xf0\x59\xb3\x92\x68\xa4\xdb\x66\xc7\x70\x87\x7a\x90\xc7\xa7\x95\x0c\xb3\x21\x96\xe3\x34\x7d\x88\x92\xf7\xe4\x08\xf6\xde\x8f\xe3\x52\x9e\x5f\x50\xb0\x71\xa4\x0d\xbc\xad\x43\x93\x73\xa6\xe0\xa1\xe2\x18\xb7\x4a\x02\x57\x63\x26\x5f\xf2\xcd\xf3\x32\x8e\x74\xc9\x46\x6e\x49\xe1\x0a\x02\x10\x4a\xf0\xcc\x09\xb8\xd1\x80\xa9\xad\x58\x73\x02\x5f\x86\x88\x6a\xc0\x0d\xa1\x1b\x2e\x7d\x8a\xd3\xc2\xed\x48\x68\x7c\xf7\x2e\x8c\x40\x76\x5a\xa4\xec\xfc\x10\x44\x77\xe4\x16\xd0\xfb\x88\xe3\x00\x4d\xd9\x1b\x81\xa9\xa7\x0f\x40\x86\x83\x2a\x64\x94\x2e\x90\x5e\x71\xa9\xf3\xd8\xcf\xc9\x8e\xf6\xb4\x5b\xdb\xd5\xf8\xd5\x1c\x2a\x07\x81\xba\x6c\x09\x96\x4f\x58\x1d\xcf\x2f\x43\x37\x61\x54\xdc\x89\x46\x68\x1b\x02\x58\x10\xc0\xcf\x4f\x86\xe8\x09\x72\x1d\xc4\x6d\x4a\x6b\xa2\x67\x95\x55\x92\x44\xe1\x77\x28\xf7\xb8\x04\xb8\x23\xdd\x99\x78\x35\xec\xd9\x64\x9d\x5a\x8c\x38\x65\x0a\x51\x95\x61\x36\x67\x14\xed\xda\x24\xa8\xe2\xa2\x35\x82\x2a\xbe\x7b\xc6\x10\x85\xfd\xa7\xa3\x08\x98\xfd\x1b\xcc\xc8\xd0\xed\xa8\x00\xb7\x30\x48\x02\x2e\x93\x62\x97\x28\x80\x51\x31\xa7\x0c\x48\x39\x70\x09\xff\xb2\xe6\x03\x27\x00\xbf\xe1\xc8\x5b\x19\x30\x5c\x6a\x3f\xf8\xeb\xf3\xe4\xae\xae\xff\xe0\xaf\x49\xfb\x50\x68\x40\x6a\x31\xc7\x5a\x25\xc8\x72\x29\x16\x59\xf1\x74\xe0\x89\x2d\x89\x22\x45\x48\x35\x70\xa0\x49\x9d\x72\xe3\xde\xa4\x4f\x74\x10\xd8\x50\x8d\x74\x53\xfa\xdc\x53\xfa\x85\xcc\xdc\x36\xe7\xa7\xa1\xd6\x04\xf0\xea\x9b\x77\xf4\x0d\xcf\x59\xb1\x70\xa9\x5c\xb2\x72\xbe\x58\xc6\xfb\x44\xa3\x2e\xa6\x2c\x37\x53\xb7\xd5\xe7\x8b\xf0\x91\x55\x2f\xc5\x37\x32\xb9\x5b\xb7\x12\x44\x13\x29\x36\x68\x62\xa5\xcd\x4e\x3b\x5d\x8d\x39\xec\x20\xd0\x66\x02\x2b\x5c\x1f\x00\xff\x33\x7e\x90\x42\x40\x75\xe2\xac\x55\x92\xd5\x39\xda\x29\x6e\x2c\xaf\x32\xfe\x2a\xca\xc6\xd4\x6c\x53\x01\x09\x6f\x9f\x55\x4c\x2f\x01\x18\xa7\x17\x7d\x08\x83\xc8\x85\x67\x02\xbc\x93\x92\x47\x76\x4b\x24\x43\x3b\xd9\x64\x43\xf4\xd9\xf5\x3c\x8c\x66\xd7\x0e\x76\x0a\x98\x96\x23\x58\xf9\x77\x89\xcb\x1a\x5f\x29\xa5\x1d\xcb\xdc\x34\x47\x65\x76\x0b\xfd\x5a\x5d\xc3\xa9\x64\xf5\x2a\x46\x77\x12\x3c\xa9\x29\x36\x86\x38\x88\xf8\x30\x23\x43\x19\xf9\xc9\xc2\xfb\x95\xb4\x48\x17\xf0\x81\x17\xfc\xcf\xf8\x54\x56\x2f\xd9\x3f\x37\x85\xcf\x3f\x2b\xef\x90\x65\x22\x94\xab\x6c\x91\x8c\xe7\xcf\x9b\x24\xab\x5e\x95\xbc\x40\xae\x4c\x23\xe4\x1c\xc2\x33\x19\xf5\x4f\xe8\x8a\x43\xae\x7a\xf0\xe6\x83\xa9\x41\x47\x7e\x7f\x49\x9a\x41\x78\x88\x87\xef\xf9\x39\x4e\xea\x31\xce\x66\xa0\xdf\x08\x72\x74\x27\x1d\x83\x03\x86\xa1\x19\x5c\x99\xa5\x05\x57\x21\xf7\x33\xf2\xf1\x34\x19\x60\xb4\x58\xb8\x29\x47\xe8\xb8\x45\xf6\xa1\x72\x90\xe2\x93\xf3\x10\xe1\x1b\xb6\x32\x4e\xe4\xe5\xa9\xcf\x7a\x3a\x0a\xd1\xf9\x44\x87\x6c\xb1\xa3\x34\x90\x9c\x26\xc1\x6a\x99\x73\x54\xd5\x66\xf8\x8c\x64\x97\x7b\x58\xb3\x70\x56\x8b\x69\xee\x9e\x44\xd9\x97\x03\x8c\x6a\x37\x4f\x35\xfa\xb8\x01\x70\x1c\x91\xe8\x64\xa4\x3b\xe0\x05\x49\xea\x5d\xac\x34\xf9\x96\xa7\xa0\x82\x19\xa0\xdd\xc3\x7a\x8b\x8f\x31\x3e\xd2\x31\x9f\x18\xfb\x3a\xe1\x73\xe8\xd6\x5d\xbc\x27\xf3\x45\x04\x8f\x9b\x99\x5b\x99\xd4\x3d\x95\x6b\x8e\xb2\x8e\xfc\xb9\x9a\x32\xe3\x6d\xfe\xcd\x37\xbf\x5f\x28\xf3\x2e\xfd\x25\x30\xcc\x92\xbf\xc7\xc5\x50\xdf\x45\xf2\x3b\x0c\x5e\x93\x5f\xa5\xf2\x2b\x8e\x7f\xa0\x2f\xff\x2c\x83\xa6\x0b\x6a\x38\x54\xa4\x4e\x8e\x4e\xc9\x5d\x1f\xac\xcb\x43\x5d\x3f\xc1\x50\x2b\x4b\xfd\x89\xf7\x21\x5c\x04\x94\xda\xc4\xcd\xf7\xaa\xa9\xf2\x54\x4e\x94\x4f\x83\x86\x5a\xee\x1c\x83\x11\x8b\xda\x90\x65\xa2\xa0\x1c\x9d\xad\x9f\xdc\xca\x8e\xb4\x59\xee\xef\x8e\x4f\x4e\x8e\xcf\x5e\x63\x0c\xe5\xc1\xeb\xf9\x65\xe7\x5c\x5d\xce\xaf\x2e\x60\xc0\x07\xdf\x9d\xcc\x9d\xa3\xb9\xf3\xea\xe0\xf0\xfa\x86\x9d\x63\x6d\x90\x62\xd4\x28\xb9\xf7\x76\x3f\x5e\xc9\x07\x17\x51\x1d\x9e\x9f\x5e\x1c\x9f\x10\x2a\x9b\xc7\x6c\x11\xa1\xda\x6d\xce\x6f\x6b\x62\x0e\xdf\xc7\xb8\x83\xa6\xd0\x67\xf0\x42\x3d\xf1\xf9\x99\xd5\x2a\xa3\x8d\x7c\x92\x76\x12\x85\x7a\x5e\xe5\xa7\xd7\xf4\x17\x90\x49\xbf\x30\xfa\x1e\x35\xbd\xca\xad\xa0\x1a\x31\x65\x3d\x98\xc0\x25\xb4\x82\x63\xc8\xa9\x51\xda\x32\x64\x95\x67\x87\xb6\x78\x69\xd7\xf1\x1a\x81\x5b\xbf\xd1\x8c\x28\xbf\x85\xdf\x6c\x46\xaa\x31\x5a\x53\xcd\x47\x23\x49\x61\xbf\xbf\x82\x1c\x58\x3d\xd1\xa0\x82\x23\xd5\x3e\xe3\x9c\x16\x90\x36\x9c\xe7\x5b\x91\x7d\x10\x82\xa4\xbd\xba\x48\x41\x6c\xbe\xae\xb0\xf5\xbd\x52\x5f\xdb\x4d\x3a\xce\xb9\xeb\xa7\x74\x4b\xa2\xc4\xb1\x09\x19\x24\xe0\x36\x85\xae\xeb\x93\xe8\x33\x62\x30\x66\xaf\x42\x4f\x2c\xdd\x3c\xc8\xd2\xfa\x09\x34\x75\xb1\x39\x91\x83\x1b\xf2\xf2\xc3\xf8\x71\xcc\x63\xb0\xc4\xd8\xc0\x70\xc1\x41\xa0\xa4\x30\x83\xab\x45\xe6\x78\xd8\x59\x3f\xf1\x59\x94\xf2\x45\xfb\xb3\x6f\xeb\x93\x53\x9c\xbf\x6d\xce\x87\x1c\x31\x1d\x35\x77\x8b\x03\xe6\xf3\xd2\x25\x34\x4f\xe3\xa2\x63\xac\x66\xa9\x4c\x54\x2f\x65\xca\x6d\xa7\x71\x00\x2b\x8a\x96\x2a\x75\x46\x0f\xe7\x09\xd4\x2f\xdd\x13\x3b\xe5\x84\x9a\x29\x18\xb4\xb3\xb9\xbd\x59\x1c\xab\x7e\x50\x53\x58\x75\x13\xab\x52\x67\x34\xe4\xba\x7f\x57\x67\x77\x73\xa2\x72\x3f\xf0\x62\x94\xee\x01\x56\xf1\x87\x5a\x94\x9a\x33\x7d\x37\x71\xc2\xb9\xd5\x81\x91\x26\x3b\x36\x2e\x4d\x4d\xa3\xa9\x29\xb1\x8f\xc8\xb1\x96\xc5\xef\x1e\x33\xd4\xa9\xc1\x7e\x41\x3e\xab\x6c\xd1\x6e\xa8\xd2\x4c\xa8\xdc\x08\x39\xa6\x67\x00\x59\x68\x05\x2f\xbd\x3c\x91\xb1\x99\xfe\x7b\xe1\x9c\xee\x3a\xa7\xdf\xed\x3a\xaf\x29\x8b\xc5\xeb\xef\x74\x97\xac\x44\x83\x39\x73\x77\x22\x78\xe0\x63\x26\x92\x5a\xa6\x09\xce\x07\x21\x53\x5d\x2c\x55\x1e\x05\xca\x4a\x45\xbd\xe0\x2d\x2d\x28\x96\x86\x53\xe6\x28\xd4\x18\xc3\xfa\xdd\x70\xcf\x80\x22\x25\x9d\xe7\xcd\xd8\x6d\x67\x46\x91\x45\x3f\xa0\x93\xbf\xca\x94\x03\x7b\xf6\x47\x7c\xd6\xcd\xff\x78\x70\x7a\x71\x32\xe7\x50\x51\xcc\xe1\xd8\xe8\x74\x91\xe0\xbd\x20\x2e\xf1\xb3\x8c\x97\x5a\x3d\xc6\xfc\xa5\x8a\x99\x7a\x89\x1f\x5e\x9a\x24\xc9\xfb\xed\x28\x32\xde\x38\x05\xad\xb1\xcf\x34\xf5\x8f\x6a\xb3\xa5\x05\xb6\xb8\x48\x6d\x64\x80\x90\x1a\x8f\xd8\x19\x98\xac\xf0\xe6\x6a\x7e\x49\x7f\x5d\x1c\x5c\x5d\xfd\xcb\xf9\xe5\x11\x4e\x7e\x3f\x6e\xec\x8a\xa9\x90\x6e\xae\x8f\x4f\x8e\xaf\x0e\xae\xe7\x37\x97\xce\xe9\xf9\xf5\xbb\xa3\xf9\x3b\x04\x34\xaf\x43\x19\x3c\x11\xb7\xc0\x95\x8b\x7c\xf3\x4a\x5a\x91\xa9\xcf\xaf\xe6\x87\x37\x97\xc7\xd7\x7f\x7a\xf7\xfa\xf2\xfc\xe6\xa2\x97\x54\x1d\x28\x82\x30\x7f\x27\x21\xda\x04\xa6\xd4\xb0\x68\x09\x75\xce\x2f\x5f\x3b\x94\xc4\xd0\x8c\x64\x3d\xa9\x04\x6d\xde\x00\x67\x4b\x35\xdf\xd6\x45\x4e\x2d\x99\x9c\xb9\x88\x2b\x36\xa2\xd7\xa9\x80\x71\x54\xcf\x77\x12\x94\xfd\x1e\x65\x0a\x65\x3e\xfc\x09\x36\x42\x07\xa8\x09\x37\x82\xba\xc1\xba\x6f\x66\x5d\xd3\xc1\xf8\x16\xf7\x62\xf1\x7e\xc6\xae\x31\x18\x59\x2e\xf3\x8f\xf5\x22\xaf\xf7\x83\x0d\x25\xf3\x96\x8d\x21\x85\xb2\xb0\x63\x86\x4e\x37\x7d\x0c\x17\x94\xe8\x11\xfd\xe0\x65\x44\x3b\xec\xa7\x77\xa7\xc7\x67\x37\xd7\x1c\xa8\x3e\x03\xc2\xf0\xe9\x0d\xbb\xc0\xf9\x57\xc6\x00\xff\x62\xea\x8d\x97\x59\xf4\x12\x6d\x34\xd4\x6a\x11\x05\xe8\x80\x57\x69\x45\x5f\x53\xe6\x25\xe1\xbc\x38\x39\x3f\x3c\x38\x99\xc3\x4f\x87\x27\xf3\x83\xcb\xaf\xfb\xd9\x74\x41\xa4\xd3\x4e\xe4\xbc\x46\xa4\x43\x44\x26\x4d\x2a\x39\xc7\xc4\x4b\x0c\x05\x7a\x29\xfd\x59\x28\x15\x9c\x2d\xad\x43\x4f\x05\xf9\x40\x89\x19\xdc\x00\x33\x95\x85\x49\x26\xa8\x8b\x9d\x97\x6a\x0a\x59\x8b\x8a\x6d\xa8\x2a\x04\xe9\x51\x8b\xe6\x7b\x8f\xab\x40\x93\x66\x43\x87\xc8\x1e\x89\xe5\x30\x4b\x09\xb1\xd0\x59\x52\xea\x04\x87\x82\x15\x8f\xcf\xcf\x70\x92\x39\x52\xe0\x5f\x67\x33\xcf\x4f\xf1\x93\xf1\xd8\xda\xa0\x73\x82\x04\x53\xf8\xc3\x0f\x0a\x63\xf6\xa2\x15\x66\x45\x45\x4e\x6e\x7a\x68\x3b\x3a\x8e\x3a\xb5\x0c\x13\xdf\x5f\x00\xd0\x94\x84\x8d\xe6\xb6\x78\xd9\x0c\xfd\xcf\x37\xe7\xd7\x07\x94\xb3\xe2\x1a\x3e\x9c\xbc\x2b\xf3\x65\xf8\xe5\x65\x52\x7e\x99\x38\xc0\xaf\xe5\x11\x4d\x37\xee\x2b\x66\x2f\x94\x39\x64\x16\xbb\x7e\x71\xc3\xcd\xc8\x39\xd7\x78\x63\x34\x29\x3b\x5d\xff\x85\xd2\x69\xbc\x23\x12\xe7\x4c\x5c\xf1\xa5\x42\xbe\x49\x5e\x41\x16\x0a\x47\x92\x56\x63\x12\x2d\x8f\x0c\xf3\x75\x12\x0f\xe4\x16\x29\x52\x8f\x90\x9c\x6d\x3a\x07\x0c\x67\x5e\x05\x34\xaf\x64\x13\x19\xbf\xfc\x7a\x91\x09\x4f\x39\x4c\xf7\x3b\xcc\x66\xf3\xee\xf2\xe6\x04\xe6\xf0\xd5\xf1\x49\xbf\x40\xd2\x0e\xbc\x29\x42\x55\x93\x60\xbe\x3a\x3e\xfc\xfe\x78\x7e\xf9\xee\x72\xfe\x1a\xb1\x20\xc2\x29\x06\xc7\x22\x91\x5c\x74\xe7\xe2\xe4\xe0\x6c\x63\xb7\x6e\x3c\x76\x3a\x80\x78\xb7\x2e\x56\x7d\xf1\x03\xd4\x85\xaf\x1e\xbd\xdb\xb2\xb8\x95\x23\xab\x7d\x34\x7a\xa2\xce\x6e\xa6\x12\x5f\x29\x38\x54\x11\x80\xd2\x36\xd4\x7e\xae\xd4\xdc\x29\x72\x51\x40\x43\x4a\xe7\x1f\xf7\x8b\x32\xba\x01\x17\xe7\xb7\xdc\xfe\x34\x66\x0e\x87\xde\xef\x1a\xef\x22\x10\x6e\xe2\xdd\xa2\x62\x2a\x79\xcf\x7f\xcd\xbc\xdb\x19\xdc\xbb\x02\xbb\xef\x97\x45\xbb\x1c\xa7\xb4\x46\x1a\xce\x01\xe9\x3b\x65\xd8\x4b\xb5\xb4\x08\xea\x85\x6b\xc9\xf2\x16\xcb\xdd\x5a\xb6\x3c\x99\x70\x9a\xf5\xc5\x35\x5b\xf8\xe8\x33\xab\x58\x00\xbe\xad\x66\x59\xf4\x5e\x84\xce\xc9\xc1\x77\xf3\x13\xe7\xe2\xf2\xfc\xcd\xf1\xd1\xfc\x12\x78\xe3\x3f\xcd\x8d\x2f\x89\xc1\xe0\x46\xee\xf2\xd9\x6d\x02\x48\x92\x62\x7f\x7f\x77\x09\xe0\x2f\x37\xdf\x97\x18\xe8\x39\x74\x0c\xed\xa0\x75\xef\xcf\x3a\x16\xeb\xa1\xdd\xbb\x09\x6c\x1b\x79\xdf\x0e\xbb\xa4\xdb\xfa\x4e\x70\x4f\xb3\x4e\x94\x19\x32\x66\xcb\x97\x69\xf2\x7f\xe6\xaf\x66\x74\x5d\x19\xb3\xf7\x4e\x60\x04\x66\xc6\x7c\x7f\xfc\x6d\xc4\x45\x69\xea\xf7\x69\xeb\xbd\x5e\x4d\x94\xf5\x2c\x77\x7c\x3b\x65\x32\x6f\x56\xed\x4e\x2f\xb2\x69\x4d\x47\x9a\xed\x16\x20\xf7\x9d\x8d\x73\x65\x3a\x64\xea\xad\x3b\x3a\xd3\x10\xb8\xc1\x74\x37\xe6\x89\x53\x91\x5d\xce\x8f\xe6\x67\xd7\xc7\x07\x27\x34\x6d\x81\x73\xf5\xa7\xab\x93\xf3\xd7\xb3\xa3\x4b\x38\x2e\x33\xa5\x0c\x74\x30\xe9\x70\x2a\x0b\x9c\x01\x2f\xc6\x8c\xad\x94\xee\x10\x4e\x18\x6a\x55\xb1\x56\x15\x26\x71\x15\x68\x37\xc7\x87\x48\x5a\x0d\x1e\xae\x54\x45\x80\x11\x89\xd6\x5b\xd6\x90\x64\x4a\x15\x4f\x54\xec\x96\x64\xec\x96\xc8\x77\x19\xfb\xdb\xaf\x6a\x54\xb7\x50\x49\x89\x0a\x28\x49\x1f\xde\xb2\x32\x39\x6c\xa1\x43\xd9\xf0\xcd\x1a\x49\xb3\x71\xb5\xc0\x3e\x61\xa4\x1d\xe5\xea\x51\xdd\xcc\x3c\x41\xca\x58\xb8\x5b\xc9\xe4\x6f\x0b\x0d\x49\x57\xf0\x88\x56\xf2\x97\x23\xf2\x4b\xe0\xfb\xf8\x07\xe7\xa7\xe7\x51\x0c\xc1\x95\x00\x7f\x2e\xbe\x80\x1d\x98\x3e\xa6\x41\x74\xb7\xff\xf2\x65\x25\x39\x8b\x81\x4a\xf4\x7f\xed\xfd\xff\x5f\xee\xfd\x08\xe8\x0c\xc4\x94\xfb\x7f\x13\xe2\x97\x77\x06\x06\x0b\x02\x98\x1b\x84\x74\x36\x70\xbf\x3e\xe0\x6e\xff\x23\xdc\xa7\xd7\xdf\x9f\x53\x85\x86\xef\x9d\xef\xe7\x07\x20\x91\xca\x02\x0a\x07\x20\xc1\xe0\x15\x0a\x6f\xcf\x38\xcf\x1c\x7c\xf1\x19\x5c\xe8\xd3\x61\x18\x7c\xed\xc9\xf8\xdb\x4a\x51\x8a\xa5\x33\x4b\xfa\x69\x2e\xfb\x6d\x76\x19\x3a\xc3\x0c\xab\x55\x9b\x05\xb0\x4d\x69\x31\xe8\x6f\x39\x3b\x75\x41\x78\x10\x4d\x75\x11\x7a\x22\x72\xa4\x02\x6b\x10\x21\xed\x7d\xec\x29\x88\xef\xdd\x10\x0e\xa2\x8c\xb6\x1e\x46\x89\xae\xaf\x2d\x45\x75\x39\xd8\x9c\x9a\xee\x7e\xb6\x94\xb0\xde\xa9\x4d\x73\x35\x88\xb0\x4d\x30\x2a\x09\xee\x14\x44\xea\x75\x57\x43\xe8\x1c\x02\xc9\x9e\xda\x4e\x51\x64\x08\xa1\x46\x40\x46\xd2\xa8\xd1\x59\x58\x10\x6b\x0c\x6d\x2c\xd5\xed\x5a\x0a\x1b\x8a\x4d\x20\x59\x53\xdb\xa2\x97\x18\x46\x64\x9b\x62\x63\x2a\xe2\x6a\x0a\x89\x01\x34\x75\xf6\x1b\x45\x89\xe4\x6c\x15\xd5\xca\xcc\xc8\x35\x63\x10\x0c\x5b\x0a\xeb\x6a\x80\x21\xb3\xd5\xaa\x02\x18\x3b\x6d\x6c\x16\x9b\xc9\xe2\x1d\xb3\x65\xe0\xde\x39\xaf\xe6\x07\xd7\x37\x97\x73\x33\x7f\x96\x01\x10\x06\x53\xc7\xcf\xa1\x11\xc4\x99\x03\xb0\xa0\xed\xc1\xdc\xe9\x47\x36\xb6\x97\x13\x05\x16\x2d\x48\x07\x20\x2c\xda\xdb\xe3\xb4\x9f\xf6\x6d\xcc\x77\x15\x66\xbf\x65\xa3\xa3\xf5\x70\xac\x3e\x9a\x11\xca\x27\x82\xca\xfd\x5f\xea\x41\xfb\x8f\x6f\x01\x43\x76\xb7\x5f\x11\x99\xd7\x4b\x7a\xd4\x51\xee\xc5\x28\x71\xc8\x41\x61\x86\xa0\x5f\x5e\x9f\xbf\x94\x39\x81\x49\xdd\x59\x38\xe8\x91\xd1\xe9\xbe\xc8\x85\xc6\x61\x9c\x45\x80\x6d\x35\xab\x9f\x8c\xb5\xc5\x30\xdb\x32\xb7\x24\xc6\x71\xee\xcc\x92\x1d\x8c\xde\x54\x0f\xd1\x36\x6f\xbf\x06\x7d\x2a\x65\xee\x9d\x9f\xdd\xe7\xb7\xe4\xda\xb7\x58\xce\xc4\xc7\x58\x60\x16\xa3\x10\x9a\xbe\x94\xbe\x81\xcb\x28\xba\x75\x93\x0e\x30\xff\xd7\xcb\x23\x49\x69\x6a\xd4\x5e\xb6\x11\x8b\xfb\x08\x1e\x67\xce\xe9\xe3\x8c\xdc\x0d\x0d\x94\x41\x0d\x40\x6c\x69\x7c\x89\x96\xc6\x97\xb6\x29\x9e\x8b\x2a\x8d\x7e\x9a\x55\x3d\x21\xfb\xb7\x70\xb3\xc7\x08\xdc\x14\xe7\xf7\x03\x97\x01\x7f\x87\x1a\x2a\xf8\x23\x2f\x2e\x21\x55\xd5\x82\x15\xd2\x3f\x56\x4d\x0a\x29\x5f\x80\x3f\x1a\x79\x17\x76\xa1\x29\x6f\x2b\xc6\x54\xd5\x5a\x37\xb0\xcd\xdb\xd0\x0d\x3e\xb4\x40\x08\xbc\x20\x4c\xe8\xad\x35\xb3\xc1\x33\x80\x25\xab\xd6\xf6\xeb\xb8\x72\x63\xf9\x36\x2a\x18\x92\x95\x97\x40\x0d\xce\xe6\x3b\x6b\x04\x81\x1c\x44\x5f\x08\xc4\x2a\xea\x2a\x75\x1e\xbe\x55\x46\x64\xfc\x58\x48\xf2\xf8\x19\x8d\xcd\x0f\xbf\x2b\x7f\xfe\x1d\x7d\x65\xb4\xe3\xb6\x86\x6f\xf0\x56\x88\xca\xd7\x4a\x2f\xd5\xad\x6d\x87\x63\x34\xf4\xfc\x19\xef\xf2\x03\x10\x48\xf6\x4c\x4d\xf1\xb5\xb5\x1e\x8c\x95\x54\xa4\xdd\x69\xd6\xba\x9a\x0d\xc7\xc3\x45\x17\xfa\x11\x35\xdb\x0d\xc7\x94\x27\x77\xe5\x5e\x8d\x96\x4b\x41\x19\xa6\xd5\x46\x24\x26\x2c\x37\x6a\xff\x19\xb6\x03\x36\x98\xe6\x8a\x8e\xa8\x97\xa4\xd6\xb6\x76\x18\xfb\x97\xa3\xd9\x6c\x30\x1e\x2e\x07\x32\x3c\xa2\xa1\xa5\x5f\x25\xa8\xc1\x80\x69\x6d\x1f\xb1\xc5\x5c\x50\x9a\xc3\xe2\x56\x39\x9b\xff\xcb\x3b\xe3\x7b\x4d\x76\xc6\x87\x29\x5e\x27\x67\xe7\x37\x6f\xe6\x07\x37\xef\xe4\xdf\xa3\xa9\x6a\xd3\x6d\x97\x54\xd6\xbf\x32\xa4\xb5\x02\xb2\x56\x17\xba\x46\x7b\xf1\xed\xf8\x11\x28\x05\x34\x12\x6c\xc2\x42\x9b\xdd\x90\xaa\x93\x93\xf9\xbb\x71\x0c\x55\x42\xed\xd4\x05\x22\x75\x83\x63\x08\x1a\x40\x5b\x9c\xc6\x4a\xf2\x5b\x7e\x9c\x6c\x38\x5d\xbe\x46\x95\x31\xf1\x57\x03\x47\xd4\xe9\xc3\xc4\x1b\xa5\x0b\xb6\xf5\x68\x2a\x0a\x31\xa2\xdd\x28\xf0\xa4\xd6\x59\x7a\x7d\xf2\xac\xbf\x1b\x1d\x6b\x82\x7c\x46\xf2\x9c\xb4\x9d\x2b\x95\xbf\x6f\x3c\x3a\x0d\x28\x37\x87\x3e\xc6\x90\x99\x08\x8c\x20\x11\xe6\xc2\x7a\xa5\xc3\x48\xac\x49\x36\x10\x2b\x77\x18\x8d\x95\xbc\xff\x8b\xb4\x07\x05\x6b\x3f\x3e\x3b\x9a\xff\xd1\x94\x90\x0d\x18\xcd\xee\x83\x69\x93\x01\x5d\x22\x7c\xf0\x93\x28\x44\x25\xc0\xec\xc1\x4d\x7c\xd2\xd2\x91\x15\xa5\x9f\xb4\x01\x20\x86\x92\x97\x52\xc4\x47\xc5\x20\x5c\xaa\x79\x34\xb5\x21\x0d\x34\xb8\x05\xe0\x0e\x98\x9b\x95\x1f\x3b\xb4\xba\x66\xc3\x18\x15\x70\x65\xd8\x7b\x30\x27\xe9\xba\x78\x0c\x08\xea\xeb\x68\x4b\x4b\xc5\xc6\xd4\x2f\x71\x6a\xfb\x58\x50\x90\xcd\xaa\x2a\x64\x67\x7e\xf6\xe6\xdd\x9b\x83\xcb\xfa\x1f\x6f\x0e\x4e\x6e\x4c\x26\xa8\x80\x85\x02\x8d\x03\xbd\xe6\x37\xed\xb7\x91\xe1\xfe\xc9\x50\xf8\x98\x51\xf2\xcc\xc2\x54\x81\xa2\xc8\xe5\xf9\xc9\xdc\xe8\x65\x5e\x03\xd1\xb4\x59\x10\xa4\xf5\xbf\x35\x41\x59\xcd\x21\x3f\x3a\x10\x22\x3d\x3c\x8c\x89\xd3\xf6\xb3\xa2\xa4\x9f\x31\x99\x3b\x35\x19\x0d\x61\x3b\x08\xad\xc6\xbe\x69\x32\xa3\x9f\x06\x5b\xe0\xac\x60\x8d\xa0\x78\x73\x87\xb3\xf4\x34\x68\x9f\x8b\x0a\xac\xb6\xad\x2e\x25\xb2\xa9\x76\xbc\x8a\x85\x7d\xb6\x7d\xb6\x1d\x84\xc3\xc7\x5e\xca\xc6\xfd\x64\x57\x44\xe1\xb1\x28\xab\x5b\xf1\x1d\xed\x3f\x33\x61\xce\xac\xf3\x18\x9a\x0c\xee\xac\xd6\xc6\x96\x38\x0b\xad\xde\x90\x45\xa8\xf4\x9a\x66\x39\x0c\x07\x3d\x6a\xb8\x99\x51\x20\x78\xb3\x99\x0d\x9e\x9e\x83\x65\x42\x83\x31\x08\x1b\xfa\x86\xbc\x5e\x26\x78\xbb\x60\x99\xec\x21\x08\xa3\x91\xb9\x34\xb8\x9c\x49\x9b\xc5\xab\x17\x79\x5b\x57\x5d\xe4\x8d\xd9\x94\xe7\xe1\x84\x39\x34\xec\x80\xd9\xd2\x3c\x55\x1a\x0d\x5b\x70\xf6\x74\x8f\x4d\xa4\xb1\x09\xa8\x4d\x11\x66\xbf\x4b\x15\xfc\x49\xf2\x69\xd8\x01\xb3\x98\xdc\x86\x31\x9d\x0d\xe8\x66\x62\xa0\x59\x67\x0b\x9a\xa6\xb2\xa0\x36\x20\x55\x81\xa0\x04\x08\x8b\x3e\xd6\x94\x9a\x87\xda\x17\xa2\x01\x85\x8d\x57\xe1\x58\x52\x46\x3e\x08\x1b\x40\xe4\x2c\x9d\xb4\x3e\x0b\x47\x2d\x71\xeb\x13\x62\xc0\xe3\x70\x00\x84\x51\xd4\x8d\x7e\x7a\xc8\x15\x96\xd0\xa8\xd8\x44\xd7\xac\x4e\xf8\x02\xc9\x63\xaf\x2b\xfd\x06\x7b\x91\x28\xff\x28\x95\x85\xe3\xc7\xd6\x34\x1c\x32\xc1\xca\x7b\xf8\x2a\x0f\xf1\x83\xc1\x99\xdb\x3e\x66\xdb\xd9\x18\x9e\x0d\x83\x38\xc5\xfc\x5f\x94\xcd\x6f\x54\x6c\xaa\xf3\xaf\x0e\x0f\xcf\x3a\xac\xb6\x63\x18\x2a\x4b\xc6\x8f\x92\xb1\x15\xc6\xb1\xee\x6c\x19\xc6\xc9\x32\x06\x10\x3d\x98\x5f\xf1\x68\xb6\x93\xa3\x62\x1a\xe0\xb6\x1b\xad\x99\xa9\x01\x37\x3e\x6e\x23\xf4\x60\x31\x5e\x66\x43\x20\x23\x69\x1c\x9d\x10\xc1\x16\xdc\x58\xba\xa7\x4c\x88\x60\x04\xfa\xe2\x6a\x7e\x73\x74\x6e\x96\x07\x61\xd0\x01\xd0\xf8\xb1\x73\xc0\xfc\xc1\x1f\x67\xea\xe0\xce\xda\xc3\xf9\x0d\xb8\xd4\x33\x31\xa7\xdf\x60\x34\x18\xd3\x7a\xeb\xa6\xfe\x62\x56\xe4\x11\xa9\x8d\x66\xf3\xf7\xf1\x5c\x6b\xd2\x40\xe4\xee\xe0\x58\x2d\xb6\x89\x43\xb9\x7b\x71\x99\x84\xb1\x9a\x6e\x93\x76\x2c\x6d\x7e\x09\xad\x53\xc8\xa8\x67\x0f\xf0\x44\x72\xef\x44\x65\x12\x65\xda\x1b\xf3\x81\xd5\xe3\x81\xd3\x67\x98\xc9\xa8\x98\xc4\x99\x27\xd4\x10\x70\x3e\x7b\x26\x74\xc0\x4e\xbd\xbe\x44\x39\x72\x7e\x79\x79\x7e\x89\x73\x77\x70\x8d\xe5\x38\x60\xcf\x51\x2c\x2e\x66\x02\xbe\x70\xb3\xfb\xcf\x9f\x61\x9a\xe0\xf3\x3c\x49\x34\xf9\xce\xab\xd0\x50\x4e\x65\x70\xe7\x67\x8e\xcc\xe9\x44\x60\xf5\x10\xcd\x39\xbd\x1b\x52\x5a\x63\x9a\x33\xac\xee\xe3\x94\x9e\xa2\xd1\xd2\x41\xae\x54\x58\x19\x89\x2b\x75\x52\x7d\xbc\x8a\x23\x59\x61\xd8\x13\x25\xbc\x50\x16\x3a\x28\xc1\x96\x75\x06\x30\xe9\xd0\xa3\x1b\x66\x56\x9a\x42\x20\x7c\x3c\xd1\x17\x22\xcf\xbe\x30\x5a\x9d\x17\x47\x5c\x3d\x60\xdf\x51\xec\x54\x78\x5f\x4f\x39\x02\xe7\xc5\x45\x59\x1b\x60\x1f\xf3\x13\x60\xfa\xdb\x28\xf1\xd3\xf5\xd3\xd7\x76\xc3\xc3\x2d\x44\xe5\x37\x56\x6e\xf2\x5e\x64\x30\x90\x45\x05\x2f\xe6\xa4\xc6\x94\x94\x6e\x59\x34\x59\x5f\x54\xe5\x0c\xe6\x82\xc6\xe5\xa6\x5c\x5e\x83\x47\x55\x00\xf4\xf2\x3a\x22\x9c\xb6\x09\x2a\x25\x57\x07\x42\xa5\xb5\xfc\x70\x19\x25\x2b\xae\x1f\x80\xa5\x1c\x36\xf2\xbf\x4f\x31\xb2\x80\xd6\xab\x40\x24\xeb\xf0\xe3\x96\x89\xf2\x16\x94\x13\x0f\x76\x82\x83\x1f\x2e\xdc\xd8\xed\x3b\xf7\xd3\x1d\x25\xa4\x3a\x8d\xc5\xc2\x5f\x62\x45\xe2\xec\xde\xc1\xa7\x2a\xd5\x12\xe1\x57\xab\x13\x51\xfd\xb8\xb4\x3b\x49\xfb\x1b\xac\xba\x04\x57\x78\x8c\x75\xa0\x3e\xd1\x5a\xa4\xf1\xfa\x69\x81\x24\xe0\x7a\x38\x0f\x58\x85\x0d\x5e\xd3\x01\x5e\x13\x22\xc3\xaf\xe0\xb8\xd4\xbe\xc5\xb1\x6d\x22\x1a\x35\x0e\x64\xe3\xf4\x26\xf7\xca\xda\x28\x47\xfc\x36\xf7\x74\x35\x96\xf5\xc3\xe1\x22\x35\xcb\xc8\x4f\xeb\x08\xb8\x44\x4a\x2b\x7c\xeb\x51\x14\x0a\x88\x5b\x1f\xd8\x0c\x0e\x01\x17\xe4\x25\xaf\x8b\xfd\x7a\xa4\x0c\xcf\xab\xe6\xd6\x07\xf2\x6b\xeb\xf1\xb2\xb9\x42\x56\xe3\xb9\x77\xc3\x3b\x14\x50\x9c\x07\x5f\x7c\xa0\xe8\xaf\x62\xff\x2e\xa2\x3c\xcc\x76\x91\x27\xbf\x97\x46\xd4\xc0\x5f\xf9\xf0\x0d\x0e\x73\x25\x56\x18\x0c\x46\xdf\x10\xa7\xe8\xa9\xbe\x73\xca\x14\x25\x98\x0a\xdf\x5d\x62\xc6\x5d\xde\x78\x61\xb4\xba\xc5\x0c\x7e\x45\x41\xbe\x5d\xae\x30\x04\x60\x05\x97\x95\x90\x35\x24\x80\x8c\x9f\x73\xf8\x15\x37\x67\xad\x81\xeb\xac\xd6\x4f\x2b\xac\xa0\xce\xfc\x63\x7c\x1d\x1f\x39\x29\x55\x66\xc0\x43\xdc\x28\x3b\xd4\x2d\xd1\x10\x08\xaa\xae\x87\x7c\x2e\x0f\x6a\xd5\x86\x0a\x3a\x5b\x78\x85\x3d\xbd\x14\x13\xac\x84\xc7\x5e\xca\x56\x11\x95\xdb\xc7\xf6\x72\xa2\xc7\x55\x49\x26\xb8\x18\x76\xa0\x28\xd0\x95\xdd\x60\x22\xa8\x46\x03\xd6\x4c\xa8\x92\x62\x57\x6e\xe3\x10\x73\x61\x23\x76\xaa\x3f\x84\xba\x78\x1d\xfa\x37\xeb\xa7\xc4\x2f\x0a\x0f\xca\x4a\xe7\x1b\x9d\xcc\x91\xcb\x48\xca\xef\x45\xd0\x7d\x00\x0e\x40\x40\x47\x54\xb2\xb1\xd5\x3a\x4b\x3c\x78\x2f\x76\xdf\xb7\xd1\x4a\x8e\x48\x8b\x49\x2f\xdd\x4b\x44\x58\x1b\x53\x7e\xa6\x32\xa1\x61\x2d\x3c\x54\xe0\x7c\x4b\xe3\x0c\x88\x01\x54\xf1\x3f\x74\x29\x51\xd5\xe1\x2b\x15\x5e\xfa\xd2\x0d\x7c\x37\xdd\x73\x9c\x4b\x0e\x0d\x40\x00\x0d\xb0\x2a\x10\xb5\x07\x3c\xd6\xbc\xf1\x30\x91\x77\x99\x1a\x2b\x4b\x55\x03\x5e\x49\xba\x12\x53\x5d\xe5\x44\x57\x61\xdb\xa0\x82\x4b\x06\x17\xe8\x8b\x6a\x94\x92\x33\x29\x14\xaa\x8e\x67\x01\xa6\x18\x31\x8f\x11\xeb\x7e\x7c\xc2\xd9\xd7\xe2\x59\x14\x78\x6a\xf5\xd1\x52\x25\x94\x48\x6c\xed\x9b\xd1\x6a\xe9\x52\xc7\xad\x2f\x89\x53\x44\xc7\xc2\x5b\x14\xeb\xa9\xe2\x47\x96\xb8\x76\x60\x28\x7f\x02\x3e\x0d\x13\x10\x78\x80\xee\xb1\x34\xc2\xd1\x01\xef\xe8\x45\xd3\x8f\x55\x1d\xd5\x18\xb8\xca\xab\x6c\x5e\x5d\x3f\x3f\x7c\x88\xde\xeb\xf6\x02\x10\xf0\x3d\xbc\x02\x1e\x30\x25\x19\x16\x8d\x4d\xef\x89\x94\xa5\x9f\xc0\xf4\x2f\xf3\x20\x40\x92\x00\x18\x72\x4f\x8e\x59\xf6\x57\x31\xd6\x9d\x05\x41\xae\x46\x2b\xfe\x44\xf5\x67\xf0\x8f\x4d\x8a\x99\xb6\xee\xfd\xa2\x99\xc5\xff\x35\x7f\x6d\xf3\x37\x74\x9b\x52\xd9\x61\x90\x33\x34\xf7\x95\x3a\x47\x7e\x98\x01\x8f\x7e\xc0\x93\x6f\xc7\x3b\x63\xb4\xd0\x22\x52\x98\x0d\x16\x75\xd2\x7b\xf7\x5b\x87\xfc\xd1\x70\xe0\x2d\xa1\xef\x7e\xa0\xb9\xe2\xc7\x43\x1c\x48\x3d\xd5\x09\x43\x04\x78\xc9\x95\x9c\x51\xc6\x44\xec\xf2\x76\x59\xb9\x8f\xf0\x34\x7b\x8f\xf9\xf8\x3e\xdc\x63\x99\x6c\xed\x3d\x3c\x15\xdc\x01\x23\x81\x87\xd2\x82\xd2\x0e\x7a\xf9\x2a\xa6\xba\xfc\x62\x41\xc5\x9a\x30\x26\x9a\xc4\xac\x69\xcb\x9d\xe9\xcc\xa7\x4c\xcc\xfa\x89\x89\xa1\x27\x0e\x91\x91\x80\x2c\x4e\x49\x33\x98\x3d\x97\xd2\xe4\xb6\xca\x9e\xd9\xd9\x61\xcb\xb9\xcc\x5c\x9f\xce\xeb\x6f\x3b\x89\x69\xee\x3f\xf8\xe5\x2c\xaa\x92\x84\x5f\xec\xf4\xc5\x8f\xb4\xf5\x81\xcc\x85\x2c\x27\x2f\xa7\xed\x8a\xbe\x02\x4a\xb9\x9a\x9c\xf4\xef\x92\x3f\x5e\xd3\x5f\xfc\xe3\x96\x2a\xf1\x7d\x49\xa4\x0d\x98\x4f\xbc\x63\x90\xa3\x53\x35\x21\x2c\x7c\xd9\x51\x45\xf0\x6d\x38\xc7\xa2\xef\xfb\x4e\xaf\x66\xb8\xae\x63\x0d\xf0\x01\xe9\x76\x57\x27\x24\xb8\xf0\x7c\x69\x03\x6c\x31\x8c\x05\xac\x42\x9d\x7f\xef\x3b\x4a\xf7\x1c\x99\x53\x0d\x60\xa4\x96\x05\x81\xe0\x3b\x95\xf4\x5d\x08\xb6\x0b\x9e\x05\xb1\x1e\xe6\x65\x25\x3b\x0d\xde\x3a\x0b\xae\x4c\xe9\xc0\x43\x8c\x9e\x45\x1e\xa0\x5d\x60\xfa\x96\xff\x68\x48\xb4\xb7\x7e\x92\xf0\x88\x72\x60\x88\xb1\x48\x32\x7a\x65\x7b\x58\xf2\x87\x6a\x0c\x90\x88\x0c\x67\xf2\x3f\x8e\xa2\x7c\xc9\x25\x7d\x65\x09\x59\x87\xb3\x92\x19\x92\x49\x22\x01\xeb\x05\xb9\x9f\xa8\x96\x81\x9d\x80\x2c\x38\x57\x78\x26\x3c\x12\x7e\x0a\xd6\xb5\x83\xa7\x4b\xd5\xc8\x19\x48\x6a\x9d\x21\xe2\x83\x61\xfd\x24\x9a\xe0\xd5\x6b\x44\xe1\xb0\x13\x1a\x6a\x43\x21\x35\x06\x15\x4b\xa4\x87\x58\x79\x76\x2e\xe0\x87\x33\x7d\x41\xda\xce\x49\x27\xa0\x54\x06\x91\x75\x39\x3d\x60\x6d\x69\xef\x3a\xf0\x54\xe9\x5a\x32\x9b\xea\x04\x0e\x5d\x12\xd1\x8d\x81\x2f\x31\xc9\x7b\x1a\xa5\x41\x27\x18\x58\x8d\x1d\x17\x5c\x1b\x56\xfd\x53\x71\x61\x02\xfb\x1e\x3e\xa2\x1d\xb1\x01\x9a\xf7\xd4\x0e\x83\x4f\xbb\xc0\x5b\x8c\x04\x4e\x5c\x4a\x2a\x64\xd2\xaa\x87\xf9\xea\x56\x30\x0b\x3e\x0e\x41\xba\x1c\x4e\xbb\x5b\xc0\x42\x92\xdb\x21\x59\x90\x09\x4b\xec\xc3\xd3\xf7\x93\xa8\x1a\x1f\x0c\x69\x4b\x51\x63\xe4\x72\x49\xf3\x60\xa7\xb5\xff\x28\x8a\xd8\x9a\xab\xd1\xe0\x6b\xc8\x01\x71\x6b\x05\x9f\x52\xdc\x9d\x3f\xc1\x6e\x1d\x77\x77\x4b\x81\x02\x76\xc9\x1e\xdd\x4d\x07\xb1\x3f\xe4\x8a\x96\x76\x1a\x4d\xf7\x61\x34\x85\x3b\x99\x4a\x30\x9e\x09\x10\xd1\xf1\x01\x45\x02\x6e\x1e\x63\x16\x30\x53\xaa\xe0\xfe\xe2\x73\x2e\x6b\xbd\x11\xb0\x28\x71\x0b\xad\x31\x16\xcb\x59\x3f\x05\x20\xf7\xdf\xe3\x04\xa0\x6a\x72\x0c\xc9\x51\x0c\xe2\x6a\xa9\xbb\xd7\x3e\x24\xab\xa4\xee\xc0\x11\x48\xfc\x1a\xa5\x55\x23\xc0\x18\x92\x3e\x24\xa8\x31\xff\xe4\xc7\x03\xa8\x81\xe9\x48\x70\x8a\x14\x2d\xd0\xdb\x86\x04\x95\x20\xbe\x65\x1c\x4d\xc1\x97\x17\x2a\x0f\xc7\x8d\x59\x21\x94\x19\x4e\x7d\x54\x0d\x92\x34\x8c\x3b\x27\xc0\xfa\xb2\xa8\x27\x34\xa0\x42\x09\x15\xc4\x3b\x51\xef\x87\x40\x0a\xf5\xbd\xd2\x98\x23\xab\x02\xd1\x05\x0f\x25\x48\x9f\x56\x77\x75\x83\xe2\xec\xde\x85\x7d\xef\xa2\x1a\x14\x29\xf5\x9c\xdb\x47\x07\x35\x42\x80\x3e\x75\x5e\x90\xaf\xc8\x2c\x0a\x83\xc7\x6e\x33\xf9\xe6\x18\x7e\xce\x7d\x36\xc5\xca\x72\xc6\x44\xfc\xfa\x89\x04\xa6\x8c\x93\x50\x23\x2f\xa9\xa0\x40\x5d\x10\x3c\xb7\xf0\x30\x58\x99\xc9\xd5\xa0\x42\xf1\x81\xac\x13\x06\xc4\x86\x78\x07\x04\xce\x48\x5b\x84\x42\x0c\x58\x3c\xcc\x5e\x48\xce\xf9\xb8\xf6\xa4\xca\xd0\xd9\xa9\x0a\x4a\x84\xec\xe5\x02\x4f\x70\xb3\xd2\xbc\xb4\x10\x59\x36\xda\xc0\x54\x56\x4c\x60\xd7\x51\xa7\x27\xc2\xab\x98\x1e\x6a\xa7\xae\x00\xea\xbb\x7e\x1a\x47\x00\x8b\x3d\x54\x0d\xb8\x27\x65\x59\x41\xc4\x4f\x22\xc3\xbb\x79\x07\x3b\x61\x65\x88\xaa\x25\x65\x84\x15\xab\x49\x13\x7b\x48\x1a\xd0\xd3\xd5\xc1\x1e\x75\xbf\x7d\xaf\xdc\x26\x13\xd9\xf0\x0a\x12\xb4\xde\x14\xe5\xa0\xed\xdd\x20\x14\x26\x2c\xb7\xc0\x7b\x1c\xf9\xa3\x14\x45\x07\x32\x48\x75\x4a\x24\x7f\x54\xaa\x9b\x2d\x72\x48\x32\x33\x17\xef\xa2\x8a\xe9\x99\x79\xe6\xbd\x9b\x02\xcf\x84\xcb\x37\xce\xd3\x7b\x74\x4e\xc9\x17\x0b\x91\xa6\xa4\xf3\xd6\xe8\x5b\x26\x05\x6e\x31\x26\x60\xba\x26\x93\x5d\x6b\x36\x0c\x0d\x6a\x01\x36\xc6\x87\x7a\x25\xa5\x2a\x48\x81\xb1\x41\x23\x72\x86\xc1\x56\xfa\xc9\x1a\x01\xce\x82\xee\x69\x95\x99\xda\x99\x2e\x6d\xc2\xcf\xa1\xb8\x1c\x33\x2b\xa5\x78\x09\x50\xbf\x53\x7f\x9c\x0d\x19\x65\x6e\x0e\x64\x38\x7d\x52\x94\x41\x9f\x1b\xfa\x24\xa7\x03\x0f\xd5\xc6\xdc\x59\xae\x52\x5e\x08\x37\x4d\x2c\x52\xf7\xbc\x81\x68\x5b\x8b\x31\xd5\x88\x5a\x77\xd6\xb6\x88\x66\x0f\x7a\x80\xf8\xcf\xf8\x61\xec\x52\xb4\x42\xdb\x16\xe9\x7c\xed\x00\xc4\xef\xa3\x34\x0b\x35\x3b\x6b\x72\xb6\xe0\xb6\xe2\xee\xda\x6f\x2f\x9f\x8b\x1b\xb4\x10\x35\x72\x4c\x23\x09\xaa\xcb\xb6\x08\x5a\x7d\xf3\x8e\xbe\x29\x16\x21\x2f\xa6\xc0\x6c\x9f\xb5\xc9\xc0\xad\xe0\x1b\x53\xdd\x86\xc7\x66\x58\x4d\x89\x59\x0e\xe3\x90\x2f\x3e\x5c\xd0\xbe\xa9\xb7\x07\x65\x4f\xaf\x8c\x37\x02\xe8\xe3\x4e\xc0\xce\x86\xc0\x5d\x81\xb9\xad\xcd\xdd\x94\xcb\x37\xd5\xb4\x83\x25\x82\x01\xcb\xd5\x3a\xf6\x0d\x0a\x4a\xf5\xaa\x95\x58\x30\xe9\x9a\x53\x7d\x97\xae\x0b\x78\xf4\x5d\x1b\xbb\x49\xe6\xde\xf1\xa1\xab\x41\xde\xda\xf2\xd3\xfc\xb5\xde\x2f\x13\x48\x13\xba\xcb\x70\x38\x78\x63\x0f\x98\xfa\xe0\x1a\x9b\xa3\x6d\x3b\x5b\xb3\x99\xa9\x10\x0c\x5f\x38\x76\x49\x6d\x14\x28\xff\x02\x0e\x2f\x97\x00\xdf\xac\x00\xfe\x45\x9f\x6a\x9a\xcc\xc2\xc8\xcf\x20\x47\xcc\x87\xd8\x1c\x7a\x0d\xf2\x56\x46\x22\x2b\x89\x6a\x12\x2a\xb5\xb5\xb1\xc1\xe0\x7c\x10\x89\x70\x12\xf1\x93\xf4\x90\x89\x03\xe1\xa6\x82\xbc\xf1\xdc\x3b\x57\xe7\xf4\x77\x5c\x0b\x4d\xd9\xd4\x72\x45\x30\x29\xeb\x27\x14\x3a\x10\x3a\xfc\x2b\xd2\x5d\x27\xdd\xf1\x03\xe7\x01\xdd\xfa\xe3\xc0\x5d\xff\xf7\x0c\xb6\x47\xea\x3e\x8a\x4f\x68\x94\x21\x9d\xa6\x9b\x5b\x4d\x99\x7c\x4d\x1f\xbe\xc2\x42\x1a\x85\x5d\x8c\x0d\x2b\x6f\xf8\x2f\x8d\xdc\xf4\x46\xd9\xd1\x70\xb1\x11\x00\xc0\xe9\xec\x6b\x43\xd4\xe1\x49\x8d\xa8\x01\x14\xe5\xd4\x97\xe9\x99\x82\x98\x8b\x3e\xc7\xf7\xd3\xaa\x97\xb9\xbb\xc8\x72\x11\x8c\x40\xa7\xbc\xdc\x1d\xcf\x67\xbb\x19\x6c\x98\xc5\xfd\x10\xe4\x0e\x79\x11\x03\xb4\x34\x8e\xd0\x3c\x6f\x97\x95\x2d\x4f\xb3\x68\x55\x8d\x43\x79\x64\xf3\xfe\x0b\xb1\x77\xb7\x87\x11\xb5\xc5\x4f\x5f\x63\x94\xc7\xeb\xe3\x6b\x2a\x15\xc4\x3f\xef\xb4\x54\xe5\xb9\x17\x20\xd4\xe5\xf2\x9f\xb2\x37\x46\x68\x3f\xee\x41\xbb\x9d\x02\xce\x77\x97\x07\x67\x87\xdf\x8f\x04\xf7\xbf\x79\xe2\x41\x04\x51\xbc\x43\x57\xed\x4e\xf1\xd7\x2d\xcc\xdf\xe2\xfe\xeb\x6e\x2d\x54\xa1\xab\x70\x62\xd8\x3d\x51\x18\xba\xa5\x35\x03\x1d\x11\x5e\xe0\x07\xc1\xa1\xba\x14\x0f\x5b\x9d\x88\x9c\xa8\x06\xf4\xf5\x66\x16\xf4\xb7\xdb\x45\xf4\x37\x3f\xaf\xd9\xbd\x70\xd1\x03\x97\xfd\x79\x17\x41\x4e\x2e\xae\xe4\xbc\x93\x08\xe0\xb9\x69\xb6\xeb\x50\xcd\x2c\x69\x05\xe2\x90\x23\x00\xef\xac\xf2\x20\xf3\x91\xdc\xcc\x5f\x69\x52\xe0\x7d\x2f\xe1\xd7\xa6\x87\x8c\xc4\x84\x2e\x91\x4a\x5b\x7c\xfb\x01\xbe\xf5\xdf\x32\x0e\xbd\x59\x46\xe1\x82\xd8\x5c\xc5\x54\xa4\x62\x93\xd0\x51\x25\x0e\xf2\x14\x75\xb8\x29\x45\x58\x59\x6c\x59\xce\x8f\x74\xd5\x49\xb7\x2c\x47\x78\x65\x03\xda\x4d\xef\x6f\x23\x37\xf1\xc8\x67\x00\x96\x58\xc3\x88\xb4\x6d\xcd\x31\x8a\x25\x4a\xc4\x6c\xe2\x82\xa3\xcc\xfe\x7a\x24\x4a\x76\x63\xc6\x3e\x7e\x69\xed\x72\x9b\xed\xed\xb0\xb3\x38\x32\x84\x06\xb3\x9e\x03\xa8\xa1\x5a\xc8\x26\x66\xde\xab\x3c\x8e\xb1\xee\xd7\x68\x4b\x6f\x81\xb3\xc7\x6b\xac\x86\x50\xbe\x63\xc6\xa0\xd3\xcf\x2e\x60\x03\x64\x2b\xf6\x38\x18\x3d\x9d\xa4\x9a\xd1\x8f\x0c\x84\x0d\x25\xe3\x8a\x66\xfb\xe1\x08\x07\x18\x05\x6b\xf3\xaa\xeb\x67\x4f\x45\x8f\x19\xb0\x95\x02\x6b\x4b\xe0\x06\xf6\x5e\x4b\x60\x15\xff\x54\xc6\xc0\x92\x8a\xea\x43\x7e\xd0\xe6\x2e\x1e\xe9\xa3\xd0\x6b\x6d\x91\x35\xb4\xd6\xe6\xc8\x3a\x32\xf9\x0a\xf7\x88\x45\x96\x31\x5d\x21\xc8\x4d\xfe\x1d\xdf\x8e\xd5\x76\xec\x18\x1d\x04\x7d\xe9\x60\x9d\xed\x60\x31\xbd\xf1\x0b\xec\x5a\x27\x88\xda\x7c\x8e\x73\x80\x50\x08\xc9\x63\x84\xeb\x8c\x3b\xb2\xce\x38\x89\x6a\x40\xef\x7d\x84\xaf\x21\xb4\x6a\xc2\x16\x93\x12\x6c\x1c\x0b\x72\xa5\x64\xc3\x5e\xb7\x6f\x49\x49\x69\xc5\x6f\x44\xc2\x47\x7c\x22\xa0\x34\x27\x55\xd9\x6a\xdf\x59\x88\x00\x9b\xa1\x17\x0a\x6c\xcf\x34\x62\x21\x9a\xb0\xe2\x13\x0a\x05\x93\x46\xe8\xae\x8d\xcf\x89\x1a\xb9\x3e\x1a\xb9\x7e\x68\xc7\x39\x73\x94\x18\x75\x46\xdc\x3a\x46\x3b\x3b\xae\xc4\xb4\x40\x06\x83\x11\x3a\x46\x77\x82\x1b\x86\x79\x00\x13\x6c\x8d\x2f\x35\xf7\x53\x51\x83\x9c\xd0\x53\x85\x68\x78\x4e\x1b\x70\xed\x3e\xfd\x72\xad\xc0\xc5\xbc\xd8\x5a\x81\x6b\xe3\xdc\x86\x1d\xb8\xa0\x70\x02\x35\x74\x83\xd8\x2e\xa3\xef\xb6\xe6\x78\x94\x82\x79\x63\x43\x6d\xdb\xbc\x5b\x90\x3d\xda\xbc\x7b\x95\xaf\x9a\x82\xec\x96\xed\xbb\x05\xed\x85\x3d\xf2\x12\x3f\x0c\x9b\x61\x57\xdf\x7b\x04\x31\xf4\x4c\xb4\x24\x65\xb3\xef\x70\x42\xa6\xb4\xa9\x4e\x03\xd4\x66\x0c\x26\x56\x4f\x13\xb2\x87\xc1\xb1\xa7\x74\x94\xe9\xb4\xc1\xba\x9e\xcb\x74\xba\x31\x88\x67\x34\xba\x74\x0c\x79\xd3\xb6\x32\xe6\x02\x9d\xc0\x1e\x51\xce\x51\xb7\x7d\x71\xc8\x52\x8f\x86\x67\x4b\x79\x61\xba\xa9\x47\x11\x95\xdf\x53\x8c\xcf\xd0\x65\xdc\x0e\x92\xe1\x63\x9c\xc2\xee\xb5\x71\x09\x3f\xaf\xe5\xeb\x48\xa4\x8b\xc4\xa7\xe4\x59\xfb\x95\x73\x50\xf9\x5a\xcb\xf1\x86\x74\x36\xa7\x89\x13\x61\x39\x2e\xf9\xb0\xaa\x04\x47\x85\x96\xb9\x1a\x85\xd6\x4d\x9a\x0d\x0c\x5b\x0a\xf1\x61\x5a\x30\x13\xc0\xb4\x91\x9f\x29\xa2\x97\x55\x11\x27\x61\x4a\xb5\x3d\xdc\x71\x23\x29\xa6\xa9\x8a\x70\x18\xd1\x3d\x20\x06\xd3\x87\x9a\x8f\x4a\xd4\x12\xea\x3d\x38\x0f\x0f\xc5\xa0\xe0\x5c\xc8\x5a\x11\xdd\x64\xae\x9f\x52\x95\xce\x26\xe8\x8b\x5c\xd2\x2b\x4d\x2a\x34\x01\x7a\xf2\x23\x76\x96\xc2\xcd\xd0\x74\x91\x46\xac\xbb\xe0\x8a\x42\xf7\xee\x43\x6d\x62\x42\x8f\xac\x26\x79\xca\xbd\x65\x27\x0d\xa7\xdb\x22\xaa\x81\x6b\x40\x4f\x5d\x06\x8f\x49\x09\x71\x0b\xfe\x82\x59\x57\xdc\xaa\xfb\x6c\xe7\x8d\x3a\xe8\xb6\xda\x36\x3e\xfb\x91\xe3\xc4\xc2\x61\xe3\xec\xa0\x40\x56\x27\xfe\x65\xe5\x58\x56\x88\xe9\x7f\xfd\x3e\x07\xca\x67\x1a\x3f\x6e\xbb\x51\x0f\xd4\xe7\x46\x3f\x6a\x5e\x5a\x76\x68\x1f\x85\x93\x4f\xce\xd6\x69\x18\x32\x43\xef\x65\x0e\x46\x36\xc1\xff\xee\xef\xfe\xfe\x74\xd7\xf9\xf6\x9b\xdf\xfd\x01\xff\x79\xdd\xad\xc2\x3d\xa1\x04\x8a\x94\x62\x92\x33\x2b\xd6\xb4\xb5\xbb\x0d\x40\x77\x56\xaa\x58\x3f\x45\x2b\x39\x1a\xba\x03\x78\xa2\x51\x9e\xa4\x0c\xd8\x63\x91\xa0\xa6\x93\xb8\x83\x22\x41\xa4\x8b\xd9\x5f\xd1\xd5\x06\xd3\x3e\xee\xac\x9f\xa0\xff\x86\x56\xce\x86\xb4\x48\x26\xf8\x08\xa2\x04\xc3\xaf\xe1\x8d\x1e\xe7\xdd\x89\x1c\xce\xc8\x73\x43\x36\x4f\x29\x51\x5b\x92\xf9\x56\x2a\xd5\x48\xa9\xda\x95\x61\x8f\x92\xb8\xc8\xa8\x44\x9a\x23\xae\xed\xaf\xd4\xe9\x74\x07\x83\xe8\xfa\xe0\x93\x6f\x11\xc6\x1d\xa5\x9c\x5a\x8a\xbb\x74\xef\x5c\x49\x34\x69\xf5\xc9\xa4\xe0\x83\x34\xbd\x7e\xe2\x98\x67\xf4\xd9\x31\x0c\x65\xd4\x5f\xd2\x3c\x1e\x2e\xf7\x26\xe3\x81\xdc\x25\x86\x8f\x21\xa9\x3a\x41\x41\x92\xe7\xad\x9f\x56\x2e\xc8\xd7\x1b\x9a\x78\xf8\x9c\xac\x7f\x85\x31\x3e\x44\x3e\xed\x96\xfc\xd1\x4e\x81\x1c\x2d\x72\x0c\x60\x95\x31\x68\x49\x60\xe2\x1b\x60\xd2\x67\x00\x05\xa4\xff\xe4\x03\x5a\xc9\xba\xde\x7d\x38\x8f\xa4\x7e\xb3\x7e\x24\xdb\xbb\x0e\x24\x23\xdd\xef\xc1\x5a\x6d\x30\x00\xf6\x87\x10\xc3\xf1\x1d\x37\xc3\xc0\xfa\x0c\x9a\xfb\x81\xf0\x54\x1e\x1e\x4c\x6e\x83\x99\xf3\x6f\x38\x6f\x23\x79\xbc\x50\x96\xb1\xdd\x22\xbb\x5d\x4a\xfb\x88\xb2\xca\x50\x1b\xda\xf7\x78\xb7\xdc\x81\x28\x49\x6b\xa0\xe1\xd1\x26\xd8\x87\xe2\x0e\xa2\x85\x1b\xbc\xf4\x43\xd8\xcb\xa1\xc8\x2c\x1c\x7c\x15\x55\x45\x26\x35\x99\x43\x68\x07\x0e\x1e\x66\x2b\x4d\xf3\x95\xe3\x45\x22\x2d\xbd\xc7\xa8\xc4\xbd\xb3\x12\x99\xeb\xb9\x3a\xdf\x8d\xc9\x00\x9b\xaf\x2f\x66\x47\xab\xe6\x69\xc3\x39\x14\x30\xe3\xc8\x89\x38\xf5\x58\x37\xb9\xed\x99\xd5\xdc\x1c\x53\xaa\xe4\xd2\x2f\x97\x12\x87\xc1\x3a\x73\x9e\x22\x0b\x0a\xe7\x67\x6f\x8e\x2f\xcf\xcf\x4e\xe7\x67\xd7\xce\x9b\x83\xcb\xe3\x83\xef\x4e\xe6\x0e\x55\xe0\xe9\xf6\x34\x32\xea\x33\x8a\x82\xab\xee\xd3\x56\x34\x71\x8e\x76\x64\xd7\xb3\x39\x76\x6e\x3f\x7f\xda\xad\x56\x96\xf5\xe8\x1e\xeb\x1f\xe7\x1b\x4d\xcc\x87\xc6\x67\xa7\x28\xd3\xc0\xd7\x65\x21\x0a\x4b\x7f\xb5\x54\x5e\x5f\xe8\xcf\x98\x6a\x8c\xf1\x07\xea\x79\xe8\xca\x7b\x94\xd2\xe2\x2a\xd8\x14\x48\x55\x31\x2b\x7b\x82\xd2\x3f\xa6\x9c\x95\x9c\x36\x50\x13\xfe\xd0\x71\x7c\x7f\x7d\x7d\x81\x5e\xe9\x1f\x1f\x55\xc6\x60\x74\x8d\x55\xa3\xe8\xa7\x5b\x70\x67\x09\x87\xb3\x87\xa4\x85\x17\x5d\x5a\x78\xdb\xda\x53\x38\x46\x27\x63\x03\xc2\x92\xbe\xc9\x34\x32\x53\x81\x1d\x35\x8e\x61\xfa\x18\x0b\x08\x43\xa9\x83\x21\xca\x4a\x75\x2c\x7a\xf6\xee\xcc\x28\x47\x79\xaa\xd4\xbf\xb8\x94\x82\xd6\xce\x85\x44\xd2\x50\xd7\x08\x61\xba\x2d\x61\xae\x0c\x3a\x98\x44\x11\x54\xa1\x64\xcb\x7a\xa0\x2d\x62\x1a\x36\xef\xcf\xa7\x05\xda\x36\x3a\xeb\x71\x8f\x55\xc8\x0c\x1f\xfa\x16\x30\x3e\xcf\xe8\x47\x6b\x80\x9e\x19\xfb\x98\x59\x79\x6e\xfd\xcf\x6f\x41\xc2\x80\xf9\x79\x70\x54\x85\x77\x8a\xa3\x71\xa5\x1e\xd2\xf9\xe0\xa6\x32\xc3\x5c\xa6\xcd\x86\x5f\xf4\xc6\xea\xc0\x35\x08\x21\x69\x5b\x7c\x76\xd2\x03\xa1\xeb\x0e\x9d\xc8\xac\x88\xc4\x17\x18\xf3\x7f\xce\xf6\x4c\x62\x56\xf7\x84\x53\x06\x57\xca\xbf\x8f\xb1\x6a\x21\x95\xfb\x90\x42\xa0\x35\xf6\x85\x8a\xa1\x2b\x73\x95\xf8\xe8\x93\xa8\xa3\xc2\xa8\x9b\x2d\x1d\x72\x16\x4c\x8a\xa3\xc9\xb1\x3b\x72\x62\x64\x36\x3b\xfa\x79\x5c\x25\xb4\x06\x49\x99\xcc\xae\x67\x90\x95\xb7\x85\x14\xaa\x74\xb2\x91\x5b\x6f\x54\x22\xde\x06\x7d\x3d\x09\xff\x3a\x68\x9a\x20\xa9\x5f\x93\x8e\x16\x73\xf4\x9e\x51\x5a\xe0\x96\xad\xad\xb3\x43\x77\x00\x1d\x48\xb7\xd7\xea\x28\xc8\x87\x7c\x08\xd5\xe8\xc8\x59\x31\xa2\x1b\x43\xb3\x25\xb7\xdd\x6b\xd0\x2c\x25\xa5\x22\x59\xaa\xd1\xaa\x74\x9b\xc1\x1b\x4a\x74\x91\xc9\x9e\x4e\x75\x79\x2a\x75\x0f\x72\x49\xa3\xec\x5a\x32\xb9\xf6\xde\xd6\x14\xf1\x6b\xdc\x94\x24\xe3\xae\x03\xe9\xc1\x64\xb7\x74\x8b\x16\x4a\x36\x14\x9e\x06\xad\xa6\x4a\x0f\x4b\x52\x17\xbc\x8b\x80\x38\xcc\x52\xd9\x05\x64\x34\x81\xec\xec\x6f\xc0\xa0\x1b\xf4\x91\xae\x82\x3b\x6f\x90\x39\x0d\x8d\xaa\x02\x09\xfa\xa6\xac\x3c\xb5\x91\x4d\xe9\xab\xd6\xa6\xe9\x82\x60\x49\xd8\x98\x33\x5b\x64\xda\xdc\x11\x75\x7a\xb7\x72\x62\x15\xc5\xbd\x39\xbc\x9b\x8b\x9b\x8f\x4a\xc9\x5d\x47\xde\x94\x0a\x4b\x06\x6a\xe6\x18\x34\x12\xda\xc4\x54\x6b\x08\x5d\x44\xa8\x72\xcf\x54\x22\x06\xb9\xc0\x26\x80\x2c\x69\x6c\x73\x20\x34\xa0\x53\x95\x9a\x43\x7d\x4b\x1b\xc5\xfd\x00\x07\xd2\x7b\xc7\x49\xf2\x6a\x76\xaf\x34\x87\xc3\x89\xa5\x06\x7a\xd6\xdd\xb0\xaf\x25\x45\x8a\xc7\x50\x69\x50\x36\x42\xb2\xad\x01\xc6\xfc\x0a\xa4\x44\x2e\xc5\x6b\x48\xe2\x50\x60\x96\x34\x53\x6e\x68\xcc\xcd\x6d\x48\x56\x4b\x7b\x4b\xcc\x72\x38\xca\xc2\xc2\x63\x44\xa3\x8b\xf1\x2a\x1a\x41\x18\x48\x1d\xc0\x43\x89\x04\xe4\xf0\xba\xe4\xdb\x21\x89\x70\xa6\x13\xf1\xd1\xbf\x13\xa1\x55\x28\x1f\x63\x85\x0d\x98\xde\xbb\xf4\x66\xfe\xc7\xab\xf3\xb3\x3e\xb4\x45\x2a\x73\xde\xc1\xf5\x2e\x03\x51\x63\xd6\xed\xba\xa8\xab\x4d\x75\xad\x06\xbe\x43\xbc\x9d\xb4\x7c\xc0\xdf\xd5\x2b\x66\x4c\x58\x32\x93\x83\x79\xf1\x4d\xa7\xc1\xdb\x71\x43\x37\x78\x4c\xc5\xb8\x19\x50\x28\x65\x72\x01\x73\xac\x28\xb5\x6c\x74\x1a\x8a\x5c\x24\x98\x39\x65\xd8\x2b\x5f\x2c\x97\x02\xf3\x61\xf0\x43\x5f\x19\x51\xec\x69\x48\x22\xd4\xd3\x90\x34\x52\x9c\x23\xd4\xcd\x60\x49\x82\x9e\xb3\x68\xd8\x77\x20\x45\xf0\x6e\xf4\x36\x75\x08\xe6\x72\x25\x5a\x93\x70\x86\xea\xbb\xb3\x90\x42\xa6\xd0\x01\x28\x12\x95\xc8\x3f\x64\xdb\xd0\xaa\x49\x9b\xdc\x64\x04\xd0\xd4\xf7\xac\x56\x4f\x9f\x29\x28\x30\xdd\x38\xa6\x9d\x07\xd3\x14\xba\xab\x09\x9e\xee\x09\x95\xa5\xc4\x9a\xc1\xdb\x7a\xb5\xcb\xe3\x4e\x97\xaa\xc9\xca\x75\xb4\x1e\x8c\x35\x8d\x82\x87\x22\x40\x6b\xd8\x99\x82\x3d\x0b\xbd\x73\xa5\x27\xea\x86\x30\x90\x28\xaa\xe4\x31\xc1\xa2\x05\x51\x92\xaa\xfa\xc6\x3e\x6c\x29\x59\xdc\x63\x6b\x4b\xc8\xea\xb5\x86\x40\x69\x58\x02\xa4\x46\x72\xbe\xa1\x73\xdb\xf0\xd8\x1b\x5d\x1a\xa4\x49\xf2\xc8\xb9\x76\x7f\xc2\x92\xf6\xdb\x9a\x59\x2c\xbc\x41\x0a\xd6\xc8\x46\xc7\xca\x35\x38\x98\xfd\x57\x54\xac\xab\x78\x02\xdd\xea\x27\x3f\x8e\x1b\x2b\x3e\x60\x5b\x82\x54\xdf\x19\x29\x6d\x4b\xd2\xbe\x73\x16\x71\x02\x2b\xaa\x0a\xda\xeb\x29\x3a\x97\xf5\xde\x0e\xf2\x05\xa5\xd3\x59\xf1\x4b\x1d\xf3\x40\x6d\x14\x1f\xb4\xa7\x09\x13\x2d\x79\xe8\xf5\xe2\x7c\x70\x79\x2d\x89\xae\xf4\x31\x5c\xc0\xa1\xbc\xa5\xe2\x5d\xd0\x94\x1c\x04\x77\x70\x9d\x31\xaf\x44\xda\x9d\x0d\x4c\x51\x2d\x3e\xc6\x7e\xc2\x72\x2f\x46\x2f\x66\x99\x08\x3d\x69\xf1\x00\x08\x72\x9a\xb3\xf5\xff\xb3\xb8\x17\x8c\xed\x3e\x41\xd7\x87\x1a\x3a\xfb\x51\x19\x6e\xc1\x71\xfb\xec\xa3\x58\xe4\x9c\x43\x20\x71\x3f\x94\x99\xad\xe0\x7d\x0d\x83\xcd\x66\xd9\x63\x8c\x89\x52\x32\x32\x39\x96\x4b\xf5\xf2\x27\x2c\x85\x7c\xfb\xa8\x8a\xc2\x75\x93\xf8\x11\x93\x0b\x64\x82\x4b\x11\x94\x79\xac\x44\x1d\x03\x70\x50\x64\xa0\x1b\x18\xc6\xd5\x8a\x9b\x7f\x8c\x29\xb9\x60\xed\x09\xce\x2e\x12\x2e\xbf\x75\xa3\xa5\xf3\x5e\x3c\xbe\xe4\x82\xb0\xb1\xeb\x27\xa9\x2c\x7d\xe8\x44\x0b\x4a\x94\xef\x55\x0b\xc9\x39\xa1\x70\x13\xb8\x83\x70\x7d\xff\xb4\x0a\xae\x42\x38\x9e\x22\xab\xad\x71\xd3\x82\x57\xcb\x4e\xe0\x89\x87\x04\x2d\x76\xb2\xbe\x4b\x28\x88\x08\xc1\x89\xe7\xe0\x15\x98\x3a\x0b\xe0\xcb\x48\x0d\x2c\xab\xaa\x95\xe8\xa4\x3b\x88\x1a\x64\x5f\x2f\xf7\x55\x25\x87\x4a\xf9\xa1\x42\xd0\x24\x9f\x61\x3d\x75\xa3\x66\x2e\xad\x4d\x5d\xb7\x4f\x49\xb5\x47\xc7\x88\xc7\x50\x54\xf0\xfe\x82\x1c\xdc\x9e\xbc\x90\xce\xff\xf1\x36\xff\xe6\x9b\xdf\x0b\xae\xf0\xbb\x0b\x37\x46\xe6\xf8\x19\x19\x5b\x29\xd0\xf3\x1a\xf6\xda\xe7\xcf\xdd\x06\xd7\x12\x76\x93\x70\x38\xff\xa9\x58\xa9\x6a\x55\xb0\x4a\x55\x54\xb0\x4a\xbb\xb0\x0e\xb0\x87\x17\xca\x28\x9b\x73\xf6\x83\x0d\x84\x56\xe3\xbd\x48\x22\x2c\xee\xf8\xd8\x18\xf7\x6d\x14\x05\xc2\xd5\x24\xca\x24\xfb\x71\x20\x15\x63\x0d\x20\x5e\x04\x54\xc2\xe5\xa5\xc6\x87\xc0\xd6\x4f\xa2\xa3\x56\xf4\x68\x5a\xd5\x69\x4b\xb3\x04\x8b\x4e\x68\x97\xa0\x8d\xd2\x96\x23\xc3\xa0\xb6\x44\x2f\x17\xc9\xdb\xdc\x41\xaa\xb9\xc1\x4e\xd2\x0d\x03\x6f\xc2\xdb\x44\x74\xec\x9a\x4e\x24\xc6\x23\x7c\x75\x70\x7c\x32\x3f\xea\xa4\xee\xf2\xe0\x7a\xfd\x17\x1b\xb0\xf3\x83\xeb\x9b\xcb\xb9\xf3\xea\xe4\xe0\x75\xb7\xdb\x6e\x47\x2b\x73\x2c\xe4\x1d\xee\x2c\x45\xb6\xb8\xaf\x09\x8f\xa9\x99\x19\x77\xfd\x17\x74\xb3\xde\x94\x72\x7b\xe1\x58\x53\xc8\xb6\x91\xd4\x50\x1a\x97\xf4\xa1\xa7\x75\x1e\x63\xc0\x87\x7a\xe3\x48\x13\x4b\x27\x1c\x6b\xfa\xc4\x03\xba\x74\x8f\x24\x0f\x6e\xe8\x27\x10\xdc\x42\x9a\xcc\xe9\x69\x8c\x92\xbb\x19\xfb\xee\xa1\xec\x96\x44\xec\x31\x73\x9e\xdc\x5d\xc2\xc7\xeb\x48\x06\x2b\xc9\x30\xbe\x21\xfb\x00\xcd\xf9\xf7\x22\x81\x8d\x10\x66\x15\x2c\x24\x7f\x26\xeb\x7f\xb7\xc0\x33\x66\x8c\x03\x57\x01\x2b\xbd\x27\x92\x7e\x69\x5b\x9d\x7c\xe6\x39\x92\x69\xcf\xe0\x75\xde\x4e\x94\xa6\xbf\x35\x4d\xf5\x34\x1c\xc3\x0e\x7e\x83\x3c\xf4\xfd\xc6\x3a\xc8\x99\x2f\xf8\x69\x24\x61\x4f\xce\x05\xc8\x38\xd5\xb2\x87\xc9\x24\x35\xe9\x2e\xc6\x21\x55\xb1\xd5\xf7\xf2\x40\x7c\xe3\xc6\x5b\x9d\x45\x33\xab\xa8\x2d\x98\xa1\x74\xc2\x55\x2e\x0b\x93\xd2\x53\x62\x29\x15\x52\x98\x42\xf5\x9d\x8a\xba\xd1\x2b\xc1\x5b\x6b\x94\x12\x30\x7e\xf9\x29\xcf\x2f\x4f\x34\x20\x4f\x41\xb4\x92\xeb\x77\x31\xef\xa1\x8c\x8c\xe2\x42\xbe\x22\x7c\xf0\xe1\x9d\x49\x77\x9a\xf2\x0f\xd4\xa8\x40\x27\x84\x6c\x31\x1a\x69\x6d\xd2\xdb\x58\xea\x13\xdd\xde\xc5\x02\x37\x47\x3d\x46\x94\x80\x68\xd8\x5a\x97\x51\x8f\x6a\x8d\x09\x8a\x0d\x35\xd2\x3d\x1d\x2d\xa9\xfc\xf1\x55\xe0\x62\x1e\x16\x99\xd3\xc0\xeb\x96\x21\x87\x74\x1d\x4f\x0f\xfb\xd6\xdb\x90\xb3\xd9\x73\x28\x35\xdd\x76\xb0\xcd\x06\xe6\xb0\xfd\x80\xf3\x66\xb2\xa6\x8a\xe2\x05\x83\x47\x14\xb9\xdf\xa3\xcb\x59\x22\x23\x01\xb0\x95\xf8\xe8\x53\x78\x54\x26\xa3\x19\x63\x17\x76\x8c\xce\xeb\xb8\x0b\xb6\x0c\x70\x94\xda\x44\x4f\xc5\x3d\x72\xfc\x9f\xac\x8d\x8c\xa6\x07\x15\xb6\xe8\x58\x95\x26\x79\x15\x25\xe4\x05\x41\xd9\x26\x5f\x78\x1c\xe2\x1b\x03\xdc\x98\x63\xbe\x16\x51\xb8\xf4\x65\x85\x84\xee\x20\x56\x4b\x28\xe6\xf3\x5f\xc2\x47\x01\x12\x2b\xdb\xa3\x86\xae\x0a\x56\x4f\x1b\x47\xa0\x55\x7c\x03\x53\x54\x7d\xb4\xf7\x1f\x48\xd5\xca\xbf\x93\x72\xad\x25\x59\x25\x80\xe9\x88\x82\x61\x32\xc3\xe2\x82\x8c\x8a\x32\x5e\x92\xde\x65\x84\xee\x92\x6b\xa1\x21\x69\x23\x33\x26\x91\xe9\x03\x7f\xb7\xd2\xbe\xbc\x9e\x5f\x5f\x1f\x9f\xbd\x76\xae\xae\x0f\x2e\xaf\x35\x0f\xcb\xd3\xe3\xab\xb9\x33\x3f\x73\x2e\xcf\x6f\xae\xe7\x36\x78\x4e\xce\xbf\x3b\x38\x71\xce\x2f\xae\x8f\xcf\xcf\x34\xc1\x99\xb2\x81\xc3\xed\x6b\x61\x9c\xa6\x87\xe8\xb5\x74\xec\x38\x3f\x28\xf2\xd3\xe9\x4e\x7c\x5f\x73\xf3\x21\x2a\xb7\x20\xcc\x57\x2c\x25\x51\x66\x0a\xb0\x76\xef\x45\x06\xf2\xda\x42\xe8\x28\xb9\xdc\x78\x37\x66\x98\x7a\x80\x64\x42\x05\x8f\xdc\xe0\xda\xa1\x0d\x27\x34\x8e\xd3\x6d\x25\x73\xdd\x18\x4b\x5a\xd7\x38\x8e\xac\xee\x33\x36\x7e\x43\x4d\x41\x45\x73\xb0\xb7\xa7\xf1\xe4\x6c\x19\x4e\x67\xd7\xc1\x44\x48\x25\x83\xa6\x32\x94\xf5\x9c\x2b\xc5\x43\xe7\x7c\x6f\x69\x5e\x45\x25\x3e\xa6\xc8\x3a\xe2\xfc\xf2\x0c\x59\x84\x5b\x26\xa1\x24\xc4\xdb\x91\x82\x30\xeb\x3a\x5a\x4c\x55\x75\x1a\x7f\xd3\x44\xc3\xc5\x5c\x92\x8e\x67\x1b\x93\x38\x6c\xc3\x57\x95\x44\x5f\x72\x82\xe6\xd7\x15\x27\xc3\xdf\x7c\xef\x49\x63\xce\xff\x14\x13\x86\x0e\x99\xe3\xe3\xf6\x5a\x26\x01\x01\xa7\x28\x99\x3f\x23\x07\x2a\x06\x33\x65\xe6\xde\x69\x81\x8f\x18\x53\x5f\x5e\x50\xeb\xda\x85\x3d\xab\x27\x3a\x30\x1b\x5e\x2f\x13\x24\xf4\x54\x73\xd1\x15\x02\x3c\x8c\xa7\x11\x14\xdd\x0e\x1c\x75\xb1\xb3\x6b\x71\x5a\x96\xb1\x40\xb7\xe2\xd4\xcf\xa2\xc4\x07\xdc\x00\xbd\x5b\xb7\x63\x03\x62\x1c\x7d\x05\xe0\x47\xa7\xdb\xec\xad\xef\x89\x24\xb5\x1b\xa5\x8d\x04\xf6\xd6\xb4\xbd\xb4\xe7\x47\xf1\x1f\xd8\x97\x7e\x59\x58\x10\xbf\x78\x8e\x7c\xea\xb5\x41\x0d\x0b\x8f\x6f\xd9\xa7\x12\xca\x96\x68\x94\x19\xcf\x9a\x34\x3a\x83\x8f\x93\x04\xd4\x49\x66\x13\xe2\x60\x4a\xeb\xfc\x36\x1d\xce\xb9\xcd\x01\x58\xd0\x26\xd3\xa2\x73\xbc\xfa\x90\x15\xbf\xb3\x00\x31\xf4\x74\x35\x60\xe3\x35\x52\xa6\x42\xff\x8e\x3e\xe1\x75\x11\xd6\x33\xd5\x48\x76\x5e\xfc\x3d\x50\x18\xe8\x18\xd8\x96\x90\x6f\x6f\x4a\x36\x73\x0c\x7c\x09\x73\xb5\x15\xaa\x9e\x7b\x12\x7f\x83\x19\xfa\x0d\x86\xbf\xbd\x51\x6e\x79\x30\xcf\xb3\xc1\x7f\xe3\x0d\xfb\x1b\x1f\xef\x2f\xf5\x1c\x6f\xf3\xc0\x3e\xe3\xc9\x2c\xf4\xba\xe9\xd0\xd7\xd0\x18\x50\xd6\xf2\x83\xf4\x8c\x18\xff\xb8\x29\x94\xc6\x0a\xe2\x96\xc4\xc7\x5a\x96\xb8\xaa\xa8\x6d\x90\xbc\xca\x7a\x29\xa6\x45\xf6\x3c\x63\xde\xda\xf8\x26\x19\xcb\xa6\xb1\x62\x8b\x95\x6a\x74\xdb\xb5\x6e\xe3\x18\x6b\x2a\x98\x7e\xd1\x2d\x8c\x26\xe6\xf3\xe2\xc6\x71\x94\x64\x32\x9b\x45\x39\x25\x5f\xce\x1c\xb4\x54\xd8\xb1\x79\xa6\x8f\x86\x37\x86\xf2\x61\xaf\xb3\xe1\x00\xec\x68\x4b\xdb\x0a\xfb\x68\xb7\x91\xe6\x3e\x98\x10\xf2\xf0\xd1\x64\x68\x16\xab\x9f\x92\x42\x6e\x99\x4e\xdd\x7e\x7e\x9b\x09\x2c\xe7\x4d\x27\x85\x51\xd2\x39\xd1\x21\x6d\xa0\xc3\xfc\x08\x93\xde\x85\xec\xb6\xd7\x5e\xa0\xe9\x65\x97\xde\x76\x48\x15\x36\x35\xe8\x4a\xfa\xaa\xfa\xb0\xeb\x18\xbb\x14\xb6\x3a\x06\xb1\xa5\xe1\x0f\xe4\x84\x83\x06\x3a\x3d\xbf\xa3\x14\xc3\x14\x8c\x4e\x89\xcb\x17\x41\xee\xd1\x7d\x88\xae\x45\xd2\xe5\xcc\xb9\x8d\xbc\xc7\x4e\xfa\xbd\x28\x0c\xa9\xbc\x6e\x99\xac\xb8\x5e\xfe\x1f\x23\xa5\x92\x38\xad\xbb\x1c\xda\x52\xba\x12\xd9\x7d\xe4\x39\x2f\x5e\xcf\xaf\x77\x2f\xce\xaf\xe0\x3f\x37\xd7\xbb\x47\xf3\x93\xf9\xf5\x7c\x57\x64\x8b\x6e\x67\xa1\xd5\xfa\x09\x7b\xca\xdc\xcc\xd4\xdf\x21\x00\x0e\x42\x70\x24\x08\xa7\x0e\xc3\x9c\xb6\x28\xcd\xf0\x58\x75\xa2\x3f\x03\x89\xc3\xdb\xb9\x5f\xff\xbb\x95\xf7\x8a\x02\x2f\x53\xfc\xaf\x1e\x67\x69\x7e\xcb\x36\xef\xee\x11\x57\x50\x36\xf2\xfc\xaf\xa2\x70\x26\x2d\xe6\x36\x83\x3d\x3e\xbb\xba\x3e\x38\x39\x99\x1f\x39\x17\x27\x37\xaf\x8f\xcf\x9c\xc3\xf3\xd3\xd3\x83\xb3\xa3\xee\x80\x8a\xce\x76\xa6\x6f\x9d\xe3\xbb\x30\x4a\x44\x3d\xc3\x41\xb7\x27\x24\x35\x4e\x36\x03\xcc\x6c\xc6\x2a\x4f\x44\x11\x78\x2f\x53\x58\xa8\x23\xd2\x53\xd7\x63\x1e\xce\xb2\x22\x65\xb7\x4a\x62\x20\xcf\x85\x6b\x5f\xe4\x03\xa8\x8a\x12\xcc\x63\xef\xdc\xa4\xee\x5d\xf7\x4c\xdc\x48\x9e\x82\xa2\x67\xd1\x67\x02\x84\xba\x0b\xb9\x8a\xd3\x2f\x70\xda\x5d\xb4\x4d\xb4\xce\x61\x91\xe7\x27\x14\xce\x32\x70\xef\xb0\xdc\xf8\xc7\x85\x88\x33\x67\xb6\xfc\x1a\x33\x24\xa3\x0f\xe0\xad\xac\xf3\x21\x3c\xe7\xc3\x3d\x7a\x43\x72\xa5\x10\x67\x95\x07\x99\x1f\x07\x82\x3d\x82\xd8\xd4\x54\xdf\x53\xdd\x6c\xba\x63\x58\xce\x51\xe2\xc6\xc2\xcd\x3f\x12\x7b\xf3\xef\x42\x99\xdc\x49\xa6\x3f\x7b\x91\xba\xf9\x92\x48\xc3\x82\xf9\x22\x7f\x10\xb2\x28\x39\xc7\x51\x11\x95\x3f\xe7\xc4\x3e\x91\xce\x28\x4f\xb1\x1a\x0d\x9a\x9d\x52\x9f\x2e\x82\x9a\x33\xd1\xfa\xaf\x54\x74\x1f\x45\x01\xac\x69\xb0\xb1\xbf\x6d\xf8\x7f\x39\xc5\xca\xc9\x1c\xde\x61\xfb\x65\x0c\x39\xfa\x30\xa3\xb3\x28\xd5\xd7\xc8\xbf\xf9\xe6\x9b\xff\x5d\xfe\x37\x7c\xe3\x06\xbe\x27\x7b\xb1\x0f\x2a\x55\x0f\xd9\x7f\x1b\xfe\xf0\x36\x04\x3c\xf8\x1f\xc7\x79\xfb\x55\x9c\x44\x59\xb4\x88\x82\xb7\x80\xee\xed\x57\xd9\x22\x7e\xfb\xd5\xae\xfa\xcd\xa3\x2c\x0d\x34\x3c\xfe\xf9\xdb\x6f\xf6\x7e\xf7\x87\x3f\xec\x7d\xbb\xf7\xed\x7f\xae\x34\xc3\xa7\x42\xca\x0d\x7e\xff\xfb\x6f\xfe\xfe\xed\x57\xf8\x03\x10\xf4\x63\x37\x0f\xf8\xff\xc8\xb0\x2c\xd6\x91\x23\xff\xc8\x09\x33\xb9\xa3\x2a\x33\xdd\xde\xc9\x67\x14\xc5\x87\xe9\x56\x54\xd3\x72\x73\x8f\x22\x22\x37\xe6\x4b\xfe\x38\xbe\x44\x95\x56\x88\x15\xcb\x04\x57\x9e\x58\x02\x73\xa0\xb0\x67\x95\x15\x4c\x0d\xae\x93\x1e\x59\xb0\x65\x26\x41\x5c\x1c\x5c\x7f\xff\xf2\xfa\xfc\x25\x5f\x5b\xb3\xb3\x83\xd3\xb9\xe3\xcc\x1c\x5b\x64\xc6\x97\x1c\xc3\xaf\x24\xeb\xfa\x05\x73\x40\xe3\x27\xce\x5f\xa6\x13\x23\x87\x75\x1e\x36\xc1\xb5\x64\x5d\x6d\x78\xed\xb2\x79\xa9\xae\xce\xa9\x58\x45\x49\xb7\x84\xd9\xd9\x6e\x38\xa6\x55\x9e\x66\x32\x3e\x16\x64\xa0\x50\xdc\xb9\x58\x3f\x80\xbc\xd9\xef\x44\x77\xf9\x83\xc1\xfd\x8d\x29\xc3\x77\x5a\xe6\x66\xd2\xab\x05\x78\xca\x1d\xfa\x8a\xef\xc1\x7d\xc7\x59\x18\xa4\xfa\x2b\x95\x17\x1f\x66\x7f\x88\x92\xea\x2f\x95\x1f\x30\x40\x06\xcb\xf3\x60\x96\x32\xe5\xdb\x4d\xe5\xd0\xb4\x51\xbe\x0a\xbd\x28\xd0\x03\x76\x3c\x9f\x9f\x44\xd2\x49\x42\xde\x41\x02\x89\xff\x0f\x98\x70\x6d\xe9\x73\x59\x06\x59\x90\x0d\xe3\xd7\xe0\x66\xb3\xdb\x82\x0f\xc4\x92\x91\x65\xb7\x26\x40\xea\x1c\x1d\xd2\x87\xc1\xe3\xdc\x53\x49\x5f\x3e\xc3\xb3\xdb\xb1\x4c\xca\xa5\x0c\x8c\xc3\x7f\x35\x6f\xd8\x4b\x0a\x68\x53\xf8\xda\x3a\x0c\xc6\x7c\x75\x75\xe2\x1c\x8a\x84\x03\x1c\x7e\x91\x25\xc3\x28\xf2\xec\xda\x8f\x4f\x61\xeb\x00\xdb\xd5\x50\xa4\xc0\x10\x08\x84\x45\x0b\x66\x00\x67\x30\xa1\x9c\xbb\x64\xd0\x72\x5d\xaa\x15\xaa\x64\x22\x91\xd5\xbd\x29\x95\x1b\x1c\xbd\x09\xd6\xae\xb4\x6d\xec\x77\xbb\x25\xfd\xa3\xc8\xb0\x40\x1c\x36\x55\x28\xf7\x6d\x3c\x90\x14\xd2\x32\xdb\x1b\x9e\x1b\x74\x24\x62\xc5\xcc\x0e\x5c\x2b\xea\x2a\xc1\x26\x45\x55\x2d\x0a\xe8\xe9\x5d\xc6\xb1\x60\x87\x8f\x03\xcb\x41\x92\x66\x90\xa4\x28\xac\x0e\x29\x35\x99\x43\x83\x28\xa9\x5b\xa5\x38\x24\xf0\x53\x47\x4d\x74\x1d\xb2\xd3\x03\x78\x0b\x83\x98\x84\xee\x51\xe1\xc4\x8a\x56\x5f\xdd\x3c\xc0\x40\xc3\x8c\x50\xa8\xcb\xe8\x10\xbf\x41\x34\xc7\xb5\x36\x95\x3b\x8a\xdc\xd5\x06\xdd\x6f\xe5\x68\x28\xf9\x52\x26\x92\x76\x94\x87\xf4\xa3\x72\x3a\x93\x9d\xeb\x09\x22\x40\x04\xc2\x2b\x80\x69\x58\x6e\x67\x0a\xd2\xdf\x60\x0e\xd2\xdf\x76\x12\x56\x24\x03\x71\x49\x56\xa2\x8b\x85\x22\xaa\xb6\x6a\xb4\x81\x27\x80\x68\x4d\x7d\x6d\x22\x6b\xcb\x66\xb5\x60\x53\x02\xdf\xe2\x98\x02\x2a\xeb\x72\xcf\x35\x5d\x1a\x47\x69\xc2\xd1\x99\xa1\x19\x3c\x4e\x0e\x17\x57\x17\x4d\x2f\xbd\x5d\xcd\x07\xe3\x55\x5a\x8d\x3d\xa7\xcc\xe5\x84\xb5\x66\x3b\x29\x38\x2d\xf2\x48\x95\x27\x78\xcf\xb9\x00\xb9\xef\x21\xe7\xcc\x3b\x9e\xbf\xc0\xc6\x98\xa9\x6a\x0c\x61\x2d\xe7\xc5\xfc\xf8\x71\x59\x64\x8a\x12\x5f\x3f\xad\x22\x2c\x95\xdb\xb8\x42\xf4\xe0\x26\x21\x77\x10\xc3\x68\xa1\x58\xca\x44\x5b\xe2\x16\x1d\x14\x0f\x97\x31\x8c\xe6\xda\x0c\xf2\xe0\x41\x30\xa7\x89\xc2\xbd\x3e\xf1\xa5\xa9\x2a\x97\xfd\x6a\x9b\x78\x6a\xe2\x30\xdd\x20\x45\xe6\xba\x89\xbb\xa2\x89\xb8\xe6\x6f\x06\xdd\x20\xde\xfa\x29\x70\x7d\x53\x20\x83\x89\x34\x57\x21\x95\x53\x35\x02\x1d\xa7\xd0\x5b\xca\xd7\x75\x3d\xf7\xd5\x0e\x0d\xef\x8a\xf2\x75\xbd\x71\x03\xc3\xdc\x9f\x6f\x38\x75\x19\x2a\x02\x31\xef\x22\x26\xe8\x8b\x5a\x53\x99\xed\xbf\x0d\x9d\x36\x78\xa6\x8a\x23\x7a\xdf\xfa\x69\xed\x58\x0e\xd8\x72\xd4\xbd\xfa\xba\xea\x05\x60\x3c\xb9\x27\x98\x35\x0d\x75\x66\x2a\x06\x17\x75\x67\x19\x19\x34\xd9\x48\xac\x39\xbb\x32\x4b\x5a\xa5\x52\x6b\x5b\x64\xad\x34\xfc\x2e\xfc\xdb\xc0\xaa\x7a\x77\x49\x61\x51\x97\x45\x05\x7d\x00\xb9\xf4\x83\x87\x85\x90\xab\xc1\x1f\x5a\xa2\xed\x81\x0d\xa7\xb9\x8c\xcd\x1d\x34\x8f\x6d\xdd\x86\x23\xd7\xd6\x5b\x6d\x43\x6b\x59\x49\xb5\x40\x28\xa3\x2e\xe4\x2e\x5a\xb0\xed\x5b\xfa\x1a\xc8\x32\x81\xea\x4b\xa3\x3a\xb6\xd3\x01\x1e\x3e\x16\x32\xaf\xcb\x02\xfc\xb2\xd8\xa3\xf4\x60\x89\x96\x96\xa3\x18\x01\x72\x38\xfd\x8d\xf8\x92\x7e\xea\x3a\x3b\xd8\xe0\x66\xef\x40\x25\x1a\x8f\x67\x2c\x25\xa4\x32\xbb\xd6\xe4\x0c\xa6\xf4\x50\x72\xc9\x6f\xa4\x93\xc2\xa0\x42\x21\xd3\x57\x54\x7b\x42\x92\xf2\x46\x6f\x0b\x4a\xd8\x89\xe8\x85\xcb\x9f\xf0\xea\x80\xa7\x51\x22\x66\xc8\x18\xd8\x10\xea\xa4\x8f\x40\xc4\x6a\x57\xba\x84\x50\x1a\x85\x50\x29\x96\xd1\xf5\x49\xfe\x4c\x15\x6b\xb1\x30\x6d\x02\x64\x21\x93\xef\xf6\x47\x68\x9b\x78\x45\x49\x4e\xaa\xea\x45\x40\xd7\x10\xfe\x01\xe0\xd7\xbf\xae\xaa\x19\xa9\x53\xa0\x70\xfd\x34\xa3\xba\x39\x49\xee\x67\xbb\xce\x23\x27\x88\xf6\xd3\x7a\x8f\x1d\xf1\x31\x0e\xe0\x15\x4e\x88\x77\x9d\x9f\x73\xbf\xb0\xbc\x0a\x99\xcc\x37\xd9\x48\xd4\x60\xe3\x07\x51\xcc\x67\xe1\x0d\x24\x2b\x95\xf6\x4c\x41\xb1\xac\x9b\x2e\x3f\x81\x18\xb5\xb6\x65\xed\xb3\xe5\x52\x50\x9e\x52\x45\x55\xc5\xd1\xb4\x77\x81\x90\x61\x2c\x93\x7a\x71\x31\x8e\x8b\x25\x38\x8b\xfb\x11\xe7\xa0\x5e\xfc\xac\xc8\x3a\x26\xbd\x0d\x7b\xd8\x88\x69\x67\x5b\x9a\x48\xe2\x1c\x48\x4a\x7b\x9f\x61\x14\x54\x12\x63\x54\xd8\x98\x6e\x23\x95\xf9\x2e\xc8\xa9\x4a\x72\x0c\xe9\x56\x82\x7e\x63\xe3\xd8\x55\x33\x7a\x50\x12\x26\xf3\x14\x37\x7f\xa5\xc4\x74\x79\x18\x36\x12\xbd\xf7\x4c\xe1\xd4\x38\xa6\x19\x21\xd7\x1b\x27\x2a\x64\x46\x85\x91\xc3\x31\x02\x38\x94\xf6\x5a\x94\x49\xca\x3e\x89\xbd\xf4\xf5\x74\xb2\xa4\xa1\x8c\x14\xe9\xe1\x2b\xda\x1e\x76\xc8\x65\xbc\x87\x01\x43\x6b\x4b\x9f\x69\x89\x1d\x57\x53\x1a\xdb\x41\x92\x67\x0b\x7b\xaa\xb3\xcc\x9b\x75\x32\xa7\x21\xc2\x32\xf9\xcd\xa2\xf9\x70\x7b\xd3\x0d\x47\xc5\x41\x34\x2f\x94\x37\x02\x9e\x75\xd0\x31\x18\x5d\x34\xff\x24\x92\x95\x6a\xfd\x6e\xd9\xf4\x10\x33\xd0\x7c\xc4\x27\x7a\xe5\xaa\xb3\x1a\xb3\xc4\x15\x69\x7c\xed\x8e\xe0\x6e\x9f\x0e\xdf\x1d\xac\x13\xce\x55\x92\x76\x27\xf1\xea\x6a\x36\x08\x0f\x25\x79\xc8\x33\xdd\x0e\xaa\x8d\xcc\x76\xd7\xdc\xdd\x25\xe8\xae\x10\x61\x4d\x2c\x2f\x8e\x7c\xb4\x92\xf8\x5c\x8b\x8a\x2c\x88\x94\x01\xee\x4e\xef\x59\xd9\x0e\xc5\x0d\x7f\xce\x5d\x2e\xc2\xa2\x5c\xd2\xb8\xc0\x21\xc0\xcb\x13\xeb\xa7\x46\x14\xbd\x27\x57\xeb\x98\x14\x32\xcb\xa2\x8a\xdf\xce\x66\x1e\x87\xba\xf1\x53\x43\xfe\x78\x90\xc6\xf4\x9f\x62\x96\x46\xac\x61\x12\x3f\xaa\x84\x78\x52\x5c\x59\xa0\x1b\x32\x21\x44\x0b\x77\xa3\xb4\x83\x1b\x46\x70\xb8\x93\x3d\xc7\xb9\x09\x49\xa3\x1f\x3d\xc0\xfe\xf2\x3d\x4f\x84\xbb\xfc\x12\x05\x80\xb3\x02\x12\xfb\x1c\x7d\xf0\x29\x63\x06\x67\xdf\xc3\x46\xd5\x52\x38\x1a\x85\xf9\x17\x47\xe1\xd0\xd9\x45\xa6\x30\x8b\x93\xe8\xc1\x47\xb5\x4a\xf3\x61\x58\x11\xd3\xd0\x37\x86\x86\xa8\xc9\xd4\x89\x76\x01\x7c\x4a\x94\xb6\xbc\xf2\xd6\x5a\xc2\x70\x42\xd2\x75\x36\x4a\x6a\xaf\xff\x4a\x5e\xed\x28\x29\x4b\xc5\xed\x46\x0e\xb8\x85\x8d\xe1\xef\xb4\xea\x96\x2a\x13\xdf\xc2\x08\x73\xba\xbe\x97\x79\x10\x3c\x62\xb6\xcf\x5e\x63\x88\x69\x77\x4b\xba\xfc\xb4\x92\x44\xb4\xa1\x3f\xf1\x7c\xf4\xea\x83\xc3\xb4\xeb\xc4\x81\x70\x53\xe1\xc8\x85\x72\x84\x8f\x1b\x08\x1f\x94\xb8\xe7\xc8\xb1\x3d\x4a\xfa\x2b\xe5\x3e\x27\xea\x01\xf3\x11\x4b\xcd\x4b\xa4\x04\x79\xaa\xc3\x74\xef\xa7\xda\xba\x42\x17\x18\xf7\xe8\xe5\x45\x09\xf1\xc4\x5d\xf8\xe1\x66\xda\x4b\x2b\x8a\x3e\x52\x15\x21\xd2\xf2\x17\x79\xc1\x8a\x4d\x4d\x47\x30\x8f\x77\xa9\x2e\x8c\x1f\xe6\x3a\x69\xe1\x5a\xac\x30\x70\x63\x87\x14\xd8\x94\x78\xf9\xa3\xbf\xca\x57\x32\x9f\x5c\x91\x65\x98\xf2\x75\x16\x26\xf0\x5d\x74\x25\xdb\x80\x3c\x82\xfc\x52\xd0\x91\xd2\xf4\x24\xb4\xd7\xab\x87\x15\x38\xc6\x53\x4f\x58\xdc\x15\xf9\x21\x00\x5b\x95\xd6\x2c\xde\x71\x05\x1f\x2d\x9d\x1a\xe0\x87\x7b\xf7\x41\x85\x76\x7c\xfb\xcd\xef\xfe\x70\xba\xeb\x7c\xfb\x1a\xfe\xf7\xcd\xeb\x6e\x65\xca\x3f\xe3\x8d\xeb\x67\xeb\xa7\x62\x5c\x55\x2b\x17\x8d\x11\x2d\x9e\x25\x2b\xab\xe5\x64\x7b\x21\x3e\xee\x77\xa3\xfa\xad\x06\xbb\xe7\xcc\xbe\xc5\x3b\x18\xae\x09\xf2\x44\x86\xc6\x79\x48\x56\x40\xb4\xfd\x12\x8e\xee\xcb\x6c\xec\x84\x8c\xa6\xe7\x4b\x9e\x35\xe7\xc5\x11\x97\xb9\xda\x2f\x7f\xeb\xde\x5b\xd6\x04\x6e\x8b\x3e\xd3\x27\x89\x22\x9c\x38\xc7\x0b\xe0\x11\xf0\x28\x8f\x42\x2f\xfd\x9a\xd8\xc8\xe1\xc9\x31\x72\x66\xe2\x2d\x8d\xa7\x38\x33\xc5\x5d\x87\x04\x1b\xe9\xa6\xe8\xa4\x78\x5f\x48\x4b\x69\x0a\xbb\xea\x91\x7a\x74\xbb\x29\x9f\xe0\x5c\x24\x8e\xe2\x37\x42\xa1\xef\xe0\x23\xfa\x91\x54\x4c\xe0\x72\xd9\x7f\xf7\x77\x7f\x8f\xb3\xaa\x26\x57\xa7\x67\x5d\x49\xe5\x67\x51\xde\x51\x1d\x83\x7a\x18\x58\x1d\xe2\x9d\x15\x07\x60\x4f\x51\x69\x4b\xef\xf3\x3e\x3d\x5d\x3f\x69\x9b\x9b\xa3\xa5\xe4\xd5\xa2\xc5\x12\x50\x08\xad\xb5\xfc\x02\xa5\xd4\xda\x4d\x1b\x80\x14\x9f\x34\xd6\x00\x8c\xb8\x21\x60\x95\x2f\x41\xf8\xcb\xc9\x4d\xd4\xca\xa1\x04\xe3\x0a\xba\x1f\x97\x67\xe7\xa7\x36\x4f\xca\xb3\x9e\x28\x44\x1b\x90\xe2\x83\x73\xe1\xa6\xe9\x87\x28\xf1\x34\xa0\xf3\x07\xe1\xe6\xce\x2a\xca\xb8\x1c\x5c\x6a\x55\xad\x17\x71\xf5\x04\x52\x32\x9e\xd0\x6e\x28\x91\x73\x70\x71\x5c\xbe\x5d\x53\x91\x95\xbe\xf6\xf0\xba\xf5\xc3\x6b\x3f\xae\x38\xd9\x43\x63\xf9\x05\xca\x74\xac\x97\x75\xc3\xa2\x7f\xf7\x75\xc4\xe5\x22\x6b\xb8\x58\x25\x2b\x9d\xeb\x53\xe9\x5c\x5f\xc3\x99\x37\x70\xd2\xad\xc5\xdd\xd8\x99\x70\x03\xab\x29\x3f\x81\x71\xbb\x0b\x7e\xc0\xb9\x98\xf8\xdb\x71\xfe\x04\xd8\xc8\x73\xcc\xe3\x5a\x0c\x4a\x31\x88\x47\x05\x9e\x6a\xb8\xd3\xc9\x70\xb8\x91\x62\xa4\x7c\x11\x25\x85\x19\x98\x92\xf8\x64\x18\x6a\x77\x87\x5e\xfe\xd5\xfc\x37\x45\x13\x19\xa6\x87\xb2\x72\x2d\xb5\x03\xfc\xd8\x3d\x8d\x17\x44\x86\x9b\x28\xf2\xa8\xbc\x45\x15\xec\x9e\x73\x0d\x7c\x32\x01\x76\x49\x65\x7a\x5b\x10\xef\x32\x61\x22\xac\x8e\x92\x93\x8c\x60\xd5\x6b\x86\xb2\xe5\x19\x95\x83\xc6\xd1\xc8\x51\x13\x27\xf9\xcd\xa7\xf7\xfa\x5e\x32\x48\x49\x9c\x22\x82\x14\xf0\x1d\x29\x66\xf0\x5d\x13\x60\x3d\xea\x47\xf4\x6c\xa9\xaf\x4a\x33\x6f\x87\xdd\xb4\xc6\x7e\xc7\x01\x55\xce\xed\x58\x19\xa5\x7e\x10\xbb\x37\x10\xa6\xb0\xa8\x02\x54\x65\x10\x8b\x73\xf8\xa9\x06\x9a\x8e\x1c\x16\xec\xf4\x29\x26\x1f\x63\x32\x7d\x7e\x21\x64\x02\x0b\xcf\xbb\x7e\x6a\xf5\x28\xa3\x71\x91\x1d\x03\x9e\xab\x7a\xae\xd1\x50\xb8\x70\xb5\x59\x2b\x5e\x1a\x55\x3c\x3d\x7a\x30\xe3\x3c\x55\x1a\x4b\xac\x36\x2f\xa0\x33\x8c\x42\x72\xc3\x3b\xb8\x3e\x3f\x08\x8a\xd9\xf6\x74\xdc\x5c\xd7\x78\x08\x4e\x65\x43\xeb\x1f\x66\x61\x3b\x1b\x37\x48\x4d\xba\xf2\x9e\x5b\xa1\x92\x60\xbc\x2f\x33\xbb\x1d\x69\x1c\x18\x9d\xc6\x62\x41\x5d\xf6\x9c\xb6\x69\xd6\x30\x5d\x37\x95\x55\x8c\x30\xfd\x03\xc0\x59\x3f\x21\x20\x98\xa9\x3d\x47\xfd\x46\xd4\x28\x05\x57\x04\x03\x59\x3f\xe1\xdb\x8b\xb3\xfa\x60\x3c\xb3\xcd\xcb\x08\xc8\x44\x0e\x42\x09\x0d\xc9\xc2\xcb\x37\xae\xf0\x76\x51\xd1\x47\xe7\xb4\x1e\xee\x56\xde\xc8\xb5\x7e\x7d\xe7\x0b\x1b\x03\xb3\xae\x79\x76\x80\x3c\x9c\xab\x8b\x19\x44\xe6\x06\xae\xea\x4d\xcc\xe9\x89\x00\xad\xf2\x0d\xb1\x1f\x69\x91\xe2\xba\x65\xa0\xaf\x38\xef\x47\x49\xc4\xd8\x51\xf5\x41\x1d\x4a\xfc\x54\x34\xff\x26\x94\x76\x6f\xa3\x1e\x99\xae\x8b\x66\x83\x3d\x63\x7f\x24\x0c\xef\x8d\x73\x1c\xeb\xa8\xfb\xa2\xf0\x1f\xeb\x65\xa2\xd2\xd7\x6c\x2c\x3e\x69\xd2\xaf\xd7\xd1\x20\x65\xc7\xad\xa0\x17\x74\xf7\xd5\x3e\xb4\xbb\x0d\x5d\x4d\xab\xbe\x21\x3d\xda\x6e\x43\xe8\x30\x75\xb3\xd3\x35\x1d\x86\xaf\x9e\x9b\xd1\x68\x23\xb4\xd6\xa6\x1c\x79\xbb\x2a\x42\x4a\x47\x26\xa3\x13\x40\x8e\x4b\xd3\x93\x61\x38\x11\x53\x21\x9d\xe8\x4a\xa8\x5f\x05\x5b\xe2\xaf\xc3\x2e\x6a\x93\xfb\xb9\x93\xec\x3e\x16\x3b\xe6\x36\x96\x0e\x96\x2e\x3c\x66\xee\x42\xa1\x53\x73\x74\x37\xb5\xc0\xa7\xdf\x56\x9d\xed\x06\x61\x92\x1e\x48\x96\x2c\x76\x50\x77\x1b\xba\x1a\xa5\x45\x0c\xc9\xd1\xf5\x1a\x44\x05\xf9\xb1\x96\x26\x64\x9b\x59\x92\xa7\xbf\xbb\xfc\x12\x1b\x8f\xe1\x07\x32\x1f\x8b\xc2\x57\xd5\x8e\x64\xb2\x79\xab\xc4\x23\x36\xf4\xbe\xe9\x24\xb4\x6a\xd8\xc6\xa0\x1a\xf9\x10\xb6\xe3\x63\xc4\x8e\x9d\x47\x3c\xa2\xd5\xe7\x0d\x97\x2b\x22\x4a\xf9\x4d\x42\xef\x93\x8c\x12\x34\x91\x97\xc0\xad\x70\xf2\x18\xab\x4e\xea\x6a\x79\x32\xa7\xc0\x59\x8f\xf0\x45\x07\x67\xb1\xb5\xf8\x10\xbe\x4c\x08\x0b\x2a\xde\x2e\x7d\x98\x18\x56\x0d\xbb\xd5\xe2\xea\xf0\x9b\xd5\x00\xe1\x05\xc0\x0e\x40\x7e\x58\xea\x28\x0e\x5f\x91\x4a\xaf\xce\xfe\xa0\x1d\x36\xd2\xee\x20\xf2\xf0\x59\x64\x1b\x1a\xc2\x4d\x80\x9c\x64\x23\xca\x8b\x3e\x22\xb1\x1c\x80\xd8\x67\x43\x35\x1a\x37\x32\xaa\x2a\x1a\xad\xd8\xe6\xa1\x39\x83\x46\xbd\xcc\xa9\x28\xb2\x15\x15\x6a\x77\x9d\xfa\x9a\xb3\x15\xb5\x34\x35\x46\x78\xfe\x4f\x9d\xf0\xab\x3f\x99\xc3\xbb\x7c\xed\x1c\x1c\x9d\x1e\x77\x17\x07\x6e\x69\x31\x0c\xfa\xcd\xd1\xf1\xf5\xf9\xa5\x1e\x3e\xb6\x99\xdf\x5c\x5a\xa2\x38\x3d\x38\x3b\x78\x3d\xd7\xa3\x78\xbd\xfe\xcb\xe5\xc1\xd9\xb5\x1d\x86\xee\xdc\x80\xf5\x1f\xcd\x61\x6a\xbc\xa3\xcf\xad\x5c\xe8\xe9\xf5\x44\xe1\x0c\xc0\x35\x48\x97\x54\x71\xc6\x6e\x75\xc9\xd8\x44\x3b\x10\xc0\x20\xda\x6a\x6a\x5d\xa5\x82\xe5\xc2\xbf\x5a\x92\x6a\xfd\xa8\x3d\x39\x6e\xfc\xb4\xfe\xeb\x14\x84\xd4\x53\x8b\xa0\x46\x43\x3a\xe6\x94\xaa\x61\x73\xea\x06\x01\x9b\x8a\x66\x4d\x6a\xd6\x66\xc7\x70\x47\xce\x5f\xec\x5a\x29\xb8\x00\x92\xa6\x24\x6c\xed\xc7\x21\x30\xfb\x83\xc4\xb8\x51\x6a\xbd\xfd\xd8\xc3\x4f\x70\x5d\x69\x2c\x0c\xcd\xe6\x7a\xe5\x34\x5a\xf8\x5b\x75\x12\x70\x89\x36\x67\x17\xed\xe3\x28\x03\xa1\x5c\xe1\xe6\x45\xf7\xc5\xbd\x58\xf9\x93\xd2\x25\x93\xdf\x18\x93\x67\x0f\x68\x38\xad\x95\x2a\xc9\x0d\x47\x48\x72\x63\x63\x76\x51\x2d\x64\xef\x2e\x31\x62\xa9\xe1\x55\x19\x63\xd5\x6b\xcd\xc1\xdf\x2e\x36\xe3\x51\x5f\xb8\xbe\x57\xb3\xc5\x77\x93\x7c\xd1\x30\xae\xc7\xee\xe3\xfa\x57\x2b\x94\x69\xca\x41\xe9\x40\x33\xd7\x97\xa0\x08\x67\x74\x01\x25\x3f\x48\x78\x86\x56\x14\x47\xc5\xc0\x95\x18\xcd\x4f\x0a\x9d\xac\x36\x29\xf8\x49\xc7\x55\x79\xad\x6d\x63\x5c\x43\xc0\x0f\x1a\x97\xd6\xb5\xe0\x74\x9c\x4b\x81\x82\xef\xc0\x91\x28\x8c\x16\xe5\x1d\xb0\x72\xb3\xc5\x7d\xf7\x5b\x89\x73\xd9\xa9\x4e\xa2\xe6\xdf\x80\x8f\x09\x4a\x5e\x89\x61\x72\x1e\x7e\x67\x45\x1e\x73\x1c\x34\x22\x15\xfc\x05\xaf\x3e\xad\x27\xfe\x21\xb1\x4c\x95\x55\x58\x24\x19\xf9\xf7\x6c\xbe\x7f\x72\xa7\x92\x28\xf6\x93\xdf\xbe\x3e\x5a\x8b\xac\xa2\xaf\x46\x1b\x40\x32\xa3\x6f\x07\x6e\xee\xf5\xaf\xb0\x9b\xf2\x1a\xa1\x66\x74\x99\x4d\x5c\xaf\xdf\xb0\xa2\x25\x07\x84\x69\x2d\x63\xae\x0d\x56\x91\x60\x32\x59\x3c\x0c\x3e\xb2\x45\x99\x72\x91\xae\x0c\x36\x11\x0b\x4c\x3a\xcc\x5e\xc6\x52\x47\x2e\xdd\x92\x03\x25\xae\xe1\x0c\xc2\xd6\xd3\xbc\x07\xb7\x82\xc4\x7c\x8c\xc4\x89\xeb\xb2\xd8\x52\x06\xc2\x77\x39\x2c\xf4\xb0\x75\x5b\x60\xc3\x68\x2e\xe1\x55\x5c\x2d\xca\xa4\xd0\x3d\x4a\x5c\x84\xb0\xd3\x06\x62\x47\x66\x6f\x56\x89\xbd\xa4\x7a\x77\x52\x2a\xef\x5d\x9c\xa0\x16\x8f\x36\xdc\xe1\xec\xee\xd6\x7b\x73\xb6\x02\x76\xe1\xec\xa1\xae\x64\xd1\xd0\x51\xaf\xff\x4a\x70\xad\x72\x60\x21\xf8\xfd\x56\x74\xdd\x02\xe0\xfa\xe9\xce\x5f\x89\xbe\x5e\x03\x48\x20\xbf\xfe\xc5\x7d\x14\xa5\xa5\x5b\x7f\x10\x44\x1f\x70\xe3\xa3\x0b\x0e\x7e\xde\x73\xbe\x8b\x80\x4b\xb0\x41\xdc\xa5\xfc\x3f\x20\xd3\xe1\x09\xca\xd0\xfd\x14\xe6\xf6\x56\xf2\xf2\x22\x86\x20\xc5\x98\x00\x19\xb6\xd2\x7d\x42\x0f\xef\x23\x0c\x9e\x4a\xd1\x7f\x44\x62\xcd\x2b\x58\x4f\xc8\x79\x30\xff\xe8\x44\x31\x9b\xc8\x51\xed\x84\xff\x62\xee\x6f\xc2\x5f\x49\x03\xbf\x5a\xff\xad\x44\x69\x95\xc4\x5b\x4e\x86\x17\x85\x3b\xdd\x6c\xf0\x6a\xc7\x0f\x58\x6d\x04\x72\xd8\xfa\xbf\x67\xb4\xa9\xed\xae\x2c\x46\xc7\x5a\x2d\xc7\xbd\x73\x35\x21\x80\x4d\xac\xbb\xa5\xd2\x0a\xb7\x60\xc8\xee\x7c\xf6\x44\xa8\xc0\x0e\x5a\x3a\xb2\x1b\x7c\xf0\x51\x99\xa8\x62\xf1\xcb\xba\x72\xf2\x55\x8e\xf2\xcb\xc0\x87\xfd\x36\x51\x0d\x18\x2f\xbd\x44\xb4\xfe\x9d\xb2\x4d\xdd\x81\xd2\xf8\xa2\x2f\x3b\x97\xb9\xa3\x5b\x5f\xcc\x26\xf8\x8d\x41\x4c\x41\x5e\xc5\x27\x8d\xbc\xf1\xac\x08\xec\x06\x32\x74\x8d\x30\x70\x90\x70\x78\xce\xdb\xaf\x6a\x81\x84\x6f\xbf\x6a\x68\x6e\x8a\x00\x25\xb4\x9b\x49\x1f\x65\xea\xaa\xf3\x89\xdc\x06\x92\xe1\x63\xa4\xda\x30\x80\x5d\xde\x5c\xb7\x7e\xe8\x62\x8c\x40\x11\x72\x87\x97\x3c\x69\xff\xcf\xaf\xf6\xbb\x03\xd5\xc6\x82\x1b\x4a\x77\x73\xd5\x6b\x21\x71\x79\xe8\xab\x20\xed\xde\xf9\x6f\xdd\x43\x5d\xd0\xac\xb7\x7b\x13\xc1\x03\x7c\xf1\x06\x9e\x67\x3e\x15\xc6\xac\xa1\x33\x27\x5d\x4b\x75\x1b\x18\x63\xa2\x13\x74\x96\x44\xaf\x67\x55\x3a\xc8\xf3\xdd\xbb\x30\x4a\x33\x7f\x41\x92\x4c\x9a\x79\xba\x10\x6e\xec\xe9\xed\x80\xc8\x8b\x49\xd0\xe5\x83\xab\x84\x40\x39\x48\x9a\x10\xcc\xd7\x9f\x68\xc3\xac\x77\x9c\x2f\x03\x35\x22\x6c\x8b\xc2\x3b\xac\xfe\xbc\xe1\x28\xd6\x30\x23\x0f\x3f\x0c\x8d\x55\xce\x74\x8b\x9e\xca\x33\x98\x8e\x66\x25\x38\xd4\xa8\x48\xe3\x53\x24\xb0\x51\xe9\x7b\x1a\x2f\xa1\x40\x21\xcb\xeb\x75\x3d\x94\xe3\x1d\xcc\xa4\xf5\x78\x71\x24\x0f\xbc\x5f\xba\x67\x7d\x89\x18\x29\x52\x64\xa3\xe9\x00\x74\x11\x9c\xd2\x55\xe9\x8a\xed\x45\x1f\x42\xb6\xe2\xa9\xb3\x8c\x37\xa5\x58\x55\x5e\xb9\x3a\xb6\x30\x12\xdc\x10\xba\x29\x15\x5f\x5b\xd6\xbf\x32\xb8\xb4\x4c\x46\x7a\x8d\x96\xaf\xa5\x70\x33\x2c\x70\x45\xda\x69\x90\x83\xc2\x3b\x5c\xae\x9c\x4b\x1a\x7a\x7b\x8e\x14\x18\x88\x78\x68\x95\xb1\x03\x37\xb2\x33\x94\x95\x34\xa9\x22\x5c\x4c\x43\x88\xd6\xd7\x36\x6a\xe4\xb3\xa3\xc8\x14\x54\xd6\x7d\x71\x0e\x05\xc8\xb3\x40\x6e\x48\x2e\xe9\xa1\x1b\x50\x24\x5c\xb8\x83\x47\x10\x8b\xc9\x38\x98\x26\x89\x62\x92\x38\xec\x71\xcf\xd9\x90\x06\x45\x18\x08\x0c\x7b\x42\x75\x60\x9a\xba\x8f\x35\xf9\xcc\xea\xa2\x60\x71\xa9\x3b\xe4\xe6\x15\x99\xc5\x41\x84\xb6\xca\xd1\x70\x91\x27\x77\xd5\x42\xa2\xcd\xb7\xa4\x2e\xa1\x02\xf6\x45\x97\x11\x31\x71\xa5\xd1\x8b\x3c\xbd\xc7\xda\x10\xe2\x03\xa9\x73\xd0\xbd\x13\xb3\xe0\x2b\xdf\x5b\x0a\x43\xe2\x3b\x59\xe6\xb1\xe9\x3e\x93\x71\x9c\x3f\xc2\xdb\x02\x19\x09\xad\x41\x10\xd4\x95\xb7\xc4\x37\xd2\x86\x23\x2e\x2c\x98\x4a\x9d\x4f\xf6\x63\x8a\x4f\xaa\xf7\x23\xec\x6e\x68\x55\x6d\x45\x0e\x0f\x73\x46\x30\x35\xce\x0b\x94\x80\x71\x9c\xf8\x2f\xf3\x56\xb5\x2b\xbf\xde\xd7\x14\x89\xaa\x0e\x0f\xd6\xbf\x31\xb6\x17\xee\x83\x58\xe0\x08\x53\xc9\x30\x8b\x9d\x5e\x07\x6a\x4c\x38\x27\x6d\x3f\x42\x9f\x09\x5f\xf9\x58\xd3\x77\xc3\xac\x69\x70\x3c\xa5\x47\x84\xd2\x06\xd6\xeb\x79\x4e\x64\x63\x63\x6a\x71\xb3\x90\x8b\x91\x0a\x20\x81\x5d\x05\xd7\xb3\x0a\xe5\x47\x2f\x54\x2c\x7d\x25\x93\xb3\x91\x41\x9e\x1f\x9b\xa8\xf2\xcf\x83\x8c\xef\x35\x82\x40\x7a\x5a\xb8\xc6\x94\x51\x83\xa8\xd6\xc5\x16\x3f\x33\xfe\x69\x67\x86\x9f\x66\xbf\xe5\xdc\x4c\x4b\xc1\xc0\xd9\x69\x6c\x46\xc3\x97\x5b\x6b\xdf\x70\x67\xfd\x24\xed\x9d\x70\x87\x58\x50\x74\x39\xff\xe7\x9b\xf9\xd5\x75\xb7\xcd\xf3\x68\x8e\x05\x01\xe7\x36\x76\xcf\xcb\xf9\xd5\xc5\xf9\xd9\x95\x26\x82\xf2\x72\xfd\x97\x66\x0b\x73\xe8\xe7\x27\xf3\x2b\x1d\x07\xbb\x5c\xff\x5b\xb3\xc5\x00\xe0\x37\xd7\xf3\x6e\x8f\x88\xe6\xcf\xe6\x70\x85\x8b\x12\xbc\x27\xd0\x5a\x07\x27\x34\x86\x7b\x07\xb3\xcd\x92\x53\xf7\x3f\xb0\x44\xb1\x8a\x75\x59\xe7\xdf\x24\xae\x4f\xfb\x11\x85\x19\x16\x65\x31\x9d\x89\x74\x0b\x47\x88\x22\x80\x07\x42\x3b\x2c\x4b\x3a\xa5\x22\xf8\x34\x82\xbf\xaf\x1f\x63\xc1\x15\x3f\xe8\x4f\xc5\x9e\x41\x7a\x42\xd9\xe4\x91\xbd\xc4\xe0\xd8\x44\x0b\x9f\x4e\x1a\x5d\x3f\x7e\xf6\x0f\xdd\x03\x8a\xe0\x72\xf9\x34\x23\x41\xe7\x41\x0d\x4e\x2c\x97\x64\x8a\x5e\x90\xd4\xa4\xc7\x0d\xe2\x50\x46\x17\x1b\x21\xc5\x10\x17\xb8\x9b\xfe\x61\xfb\x83\xde\xde\x90\x46\x10\x2f\x15\xd1\x15\x69\x49\xd5\x19\xa8\x25\x8a\xe6\x28\x6c\x15\x58\x78\x1e\x78\x9b\x5a\x69\xe0\x9b\x18\x75\x27\x3e\x6c\xfc\xf4\x0f\x58\x88\xef\xf7\xdd\x6f\xac\x62\x8b\xb2\xf6\xba\x97\x16\x36\x91\xa1\xee\xb9\x93\x18\x10\x93\x4c\x89\x19\x3a\x63\x31\x48\x9a\x62\xc3\x9b\x7d\xd3\xf0\x41\x33\x76\x18\x44\xb9\xe7\xbc\xc2\x47\x47\xf2\xa8\xd9\x00\x6a\x06\x08\x78\xb2\xe1\xf4\xbe\x09\x1d\x7e\xeb\x82\x3d\x60\x40\x0b\xe1\x3f\x90\x9e\xbc\x2c\x45\x05\x5b\x2e\x63\xf9\x53\xe6\x8b\xd2\x38\x80\xac\xff\x5b\x5e\x69\x4f\xdd\x8b\xd2\x58\xf0\xff\x76\x24\xe5\xf0\x5e\x05\xe1\xf8\x51\xbd\xb5\xdc\x32\xcf\x20\x30\x0d\x78\x47\x07\x20\xaa\xdc\xfe\x04\x0f\xc4\xb4\x65\x8e\xa9\x50\xc5\x2d\x3e\xd5\x94\xfc\xba\x72\x29\x43\x98\x54\x5f\xb0\xc8\xde\x88\x8a\xe8\x1c\xe2\x5c\x9e\x41\x7c\xf2\xbb\xeb\xff\x16\xd1\x43\x5f\x52\x48\x29\x6a\x25\x18\x91\x71\x92\x55\x20\x2b\xc3\xba\x9f\x4b\x17\xd5\x0c\x44\x86\x47\x4a\x7c\xae\xa7\x5c\xa7\x94\x44\xe1\xa5\xcb\x56\xde\x54\x95\x51\x4e\x65\x0a\x02\x15\x82\x31\x2e\xbd\xe1\xa5\x9a\xc3\xb8\x54\x31\x72\x3e\x34\x9d\x5f\x4f\x6f\x97\xe1\xf8\x65\x7e\x57\xac\xb2\x26\xab\xb4\xa2\xd3\xb3\x86\x88\xcc\x4f\x48\xeb\xa2\x62\x07\xe8\xd0\x63\xf1\x35\x52\xa8\x8c\x4b\x06\x58\x50\x95\x27\x32\x55\xb8\x24\x2a\xd4\xbe\xe0\xae\xf0\x06\x55\x6a\x2c\xa4\x02\x1e\x0d\xb0\xb0\x89\x5b\x18\xea\x6f\x2e\x4f\xe8\x17\x31\xd2\x32\xa0\x08\xa4\x34\xfb\x95\x50\x67\x36\x3b\xc0\x76\xee\x5d\x3d\x83\x9e\x83\xa9\x09\x6b\xbe\xe9\xfa\x69\x2a\x74\x66\x85\x33\x49\xe1\x99\x2e\x3a\x6b\x69\x9a\x92\x81\x2f\x15\x9b\xad\x84\xfd\x26\xdf\x47\xcd\x50\x0a\xe4\xd5\x6f\xdc\xa4\x7a\x0b\x34\xa3\x89\x2b\x65\xe6\x4b\x4f\xc4\x4a\x8d\xfd\x6a\x9d\xff\x81\xb5\xe7\x61\xb4\x09\xa6\xc3\xd9\x9c\x76\x19\x10\x50\xa3\x6e\xc3\xbb\xa4\x46\xa5\x4c\x97\xde\x42\xa9\x68\x25\x75\xfa\x52\xf6\xc5\x04\x27\xb5\xf2\x8c\x3c\xab\x94\x3e\xf4\x17\x55\x4d\x9f\xd1\x74\x14\xf0\xaf\xcc\x2d\x7f\x4d\x64\xdb\xcf\x2e\xef\xa0\x92\x1e\x9a\xc7\x6a\xa8\x45\x93\xac\xfa\x54\xd6\x49\x13\x1d\xb4\x7d\xb9\xd3\xf9\xdb\xcf\xda\x56\xe7\x26\x67\x79\x98\x0a\x68\x4e\x75\x80\x91\xb4\xb0\x57\x8b\xa9\x66\xaa\x7a\xb1\x14\x94\xe8\x0f\xab\x08\xcd\x0e\x29\x3a\x25\x08\x0d\x45\x63\x27\x4c\x37\xbc\xf2\x66\x08\x5c\x5d\xb7\x01\x34\x90\xcd\xce\x6d\xcb\x7a\xbc\x31\xb5\x21\x8e\x9c\xee\x01\x7d\x8e\x64\x43\x94\x86\x22\x64\x15\xef\x54\x32\x5d\x83\x02\xbf\xaf\xa2\x73\x85\x06\xd1\x96\x0b\x75\x14\x11\xda\xf0\xcf\xea\xe8\xad\x83\x39\x15\x2e\xbd\x74\x56\x1b\xe4\x58\xf1\x4b\x21\xd4\x65\xec\xaf\x21\xb4\xab\xf1\x40\x88\xa4\xe1\xa0\x7e\x9c\x8b\xd7\xf4\xb6\x19\x8e\x1c\x43\x27\x5f\x29\xf8\x45\x49\xcb\x50\xb9\x60\x42\x96\x23\xa7\xab\xcc\x1f\xca\x0a\x80\xef\xd4\xdf\xcd\xd9\x6b\xfc\x60\x34\x15\x7d\xc0\x55\xc9\xaf\x1e\xf0\xc3\x47\xb5\x31\xa1\xcd\x4d\x60\xb5\xb2\x1b\x50\x2b\xf4\x6f\x6d\x81\xea\xcc\x51\x4e\xa4\xe1\xa8\xfa\x87\xd4\xc2\x47\xc9\xbc\x5a\xe0\xd8\x31\x1b\xe4\x14\x23\xdc\xd0\xcc\x34\xf5\x60\xcf\x20\xf2\xcb\x69\xe9\x24\xa9\x32\x19\x0d\x2d\xd2\x84\x12\xbe\x65\x1a\xfb\x72\x42\x15\x42\x54\xe8\x55\x70\x96\xf3\x59\xf9\xb2\x6d\x36\x87\x4f\xdb\x33\x21\x1e\x30\x17\x71\xa4\x77\x07\x6c\x69\x31\x1c\xba\x33\x73\xa8\xe8\x86\x2a\x64\x47\x22\xee\x4f\x98\xe7\x8e\xac\x5a\x46\x3a\x22\x7b\x50\x83\xe8\xe5\xce\x1a\xaf\x92\xf6\x46\x03\x70\x60\x00\x8c\x81\x6c\xc1\x4e\x16\xd3\x08\x17\x2a\xe6\xe6\x59\xd5\x02\x95\xe4\xd8\x5f\xf4\x83\x9f\x63\xdb\x7a\xd7\x43\xe6\x29\x9f\x6e\x45\x12\x72\xe0\x28\x84\xe3\x5f\xaa\xa5\x99\x65\x2d\x85\xf6\x49\x1b\x70\x7d\x6d\x07\xcd\x80\x71\x66\x89\x2f\x58\x85\xe6\x87\x9e\xff\xe0\x7b\xb9\x1b\x14\xae\x4f\xe8\x52\xcf\xe6\x37\x20\x28\xcb\xbb\x9d\x26\xac\xe1\xd8\x50\x4a\xc5\xfd\xe3\x00\x13\x13\xdc\x0b\xe7\xfc\xa0\xa8\x35\x54\x84\x9c\x14\xd5\x1d\x59\x35\x6b\x42\xf6\x08\xa0\xe3\xc7\x70\xe7\x3f\x08\xda\xde\x3b\xa9\x73\x97\xfb\xde\x9e\xe3\x1c\x60\xce\x4f\xf2\xe1\xbd\x17\x6e\x00\xc4\x50\xe2\x3b\x9a\x3d\xf4\x6f\x8c\xf3\x32\xc0\x86\x32\xff\xa7\x6c\xcd\x15\x18\xe5\xa0\xd7\x26\x3c\x33\x05\x53\xcd\x0e\xb0\xa0\x36\xda\x1a\x94\x20\xa3\x9a\x66\x2e\xc6\xe3\x9b\x6a\xe4\x52\x88\x33\xa0\xa6\x78\xfe\x4f\x32\x03\xd3\xe1\x9d\x6c\x26\xf0\xa6\x31\xa1\x87\xae\xa6\x89\x66\x61\x12\x9c\xc3\x67\xa0\x70\x5f\xae\xf0\xd0\xb4\xca\x44\xf1\x47\xe1\x2e\x38\xf0\x69\xc6\xee\xf3\xdc\xb6\x7f\xa8\x93\x00\x1f\x3e\xa6\xa6\xcb\x35\xd5\x54\xb1\x8f\xd2\x9e\x0c\xee\x34\x23\x19\x11\x97\x3d\x19\xdc\xa1\x23\xa1\xd7\x4e\xb1\xe2\x68\x23\xc4\x05\xc7\x7c\x47\x72\xb9\xd3\xc1\xda\xea\x09\xa0\x8e\x1b\x05\xc0\x7d\xc5\x68\x5e\x01\x56\x0b\x7d\xfb\x48\x88\x36\xd4\xdb\xed\x60\xdb\x91\x6d\x03\xdb\x54\xa3\xee\xdf\xed\x53\x8e\x7a\x2c\x36\xf3\x51\x2b\xdb\xc6\xf7\x51\x9a\x49\xdd\x20\xfc\x75\x44\x79\xaa\xab\x6e\x9c\x7a\x17\x4e\x5b\x30\xd3\xd3\xd9\xef\x6e\x3a\x06\xd4\x70\x7a\xd9\x22\x66\xe8\xe4\xdd\xe8\x35\xd6\x99\x9b\xc0\xf5\x60\xb3\x7a\xf4\xe4\x81\x0e\xec\xfa\xd7\xbb\x80\xde\xef\x76\xb0\xf9\xbc\xcf\x2b\x3b\x5f\x25\x0d\x74\x5e\x53\x7a\x59\x8d\xd7\xed\xa0\xce\xc6\x34\x5d\xcd\x0f\x6f\x2e\x8f\xaf\xff\xe4\xbc\xbe\x3c\xbf\xb9\xe8\x36\x1a\x76\x34\x1b\x80\xe7\xf2\xcd\xf1\xe1\xbc\x27\xa5\x1b\xfd\xea\x1c\xcd\x1d\xd9\xdc\x1e\x51\xb7\x1b\xf0\x66\x03\x73\xd8\x17\x07\xbd\x43\x68\x6d\x33\x14\x43\x4f\x66\xba\x79\xa5\x99\x5d\x72\x3a\x06\x70\x34\x7f\x33\x3f\x39\xbf\xd0\x24\xa8\x93\x98\x8e\xd6\x7f\xa1\x96\x17\x63\xb0\xf5\x25\xc3\xe3\x56\xf6\xe9\xf0\xa8\x7f\xf7\xba\xcf\x9b\xbf\x9b\x03\x5e\xb8\xc1\x33\xab\x0a\x4f\x31\xac\x0c\x6b\x60\xee\x60\x32\x4d\x8a\x52\xfa\xd2\xdd\x84\xae\x54\xea\xd8\x3e\x4e\xd6\xdd\x70\x38\x2e\x96\x17\x60\x00\x2a\x71\xed\x3b\xfa\xc6\xfc\xc6\x1c\x01\x69\x4a\x6a\xe1\x3b\x2a\x77\xfc\x6e\xd5\x5b\xed\x6b\x24\xb4\x01\x54\x53\x1d\x1f\xe5\x35\xfa\x02\x1e\xdd\xf4\xc8\x76\xb0\x0c\x5b\x42\x51\xc7\xef\xfd\xf8\x6b\xcd\x3a\xaf\x9f\x10\x02\x06\x4e\x52\x48\x9a\xda\x89\x2f\xa2\x1c\x8f\x12\x05\xaa\x61\xe8\xf1\x3c\xcc\x92\xf5\x93\x2c\x26\x98\xba\x70\x71\x27\x5f\xdb\x6d\x0a\x26\x98\x0f\xe5\x38\x7a\x0b\x4f\xc5\xed\x11\x4b\xc5\xf0\x68\x99\x76\xd5\xbb\x07\xeb\x03\xef\x3b\x7f\xf8\xe6\xf7\xfb\xce\x01\xd7\x22\xf2\xd1\x25\x39\xf4\x31\xf8\x95\x0a\x21\x79\x11\xed\x44\x4a\xf3\x1b\x27\xfe\x83\x1f\x08\x19\x01\x29\x3e\xc2\x2e\xa0\x08\x08\x3f\xed\xcf\xb3\xf2\xdc\xe8\xa7\x98\x17\xd8\xd5\xf3\x24\xb9\xa2\xaf\x0e\xe1\x9b\xcf\x9f\x77\xb9\x5d\xed\xf7\x83\xd8\x9f\xe3\x97\xaa\xc5\xaa\x52\x4a\x0f\x7e\xa8\x05\x31\x74\xdf\x15\xc0\x0d\xb1\x60\x51\xce\x45\x0b\xf3\x64\x97\x6b\x37\x7b\xc0\x8e\x01\x7f\x3b\x2d\xd4\x42\x50\xcf\x71\xc4\x0c\x9a\x2c\x54\x02\x92\xea\xfc\x9a\x54\xe7\x00\xf8\xc4\xbd\x15\x01\x73\x01\x15\x2b\x3c\x20\x39\xe7\x24\x30\x07\x8f\xe0\xbb\xc2\x45\xa1\xf5\x95\xd2\x4f\xee\x06\x80\xb1\x39\x45\x15\x60\x65\x19\x52\x29\x53\xc9\x43\x53\xe5\x35\xef\x24\xeb\xb8\xa5\xd6\xb5\x0c\x1b\x77\xd3\xce\xaa\xd7\x23\xc8\x54\xc6\xac\xfd\x0d\xc7\x83\x21\x34\xea\x7a\x0f\x26\xa9\x88\xca\xa9\xaf\xe5\xdb\xf0\xfa\xf8\x62\xdf\x39\xa6\x1c\xe6\x94\x3c\x2a\x4b\x1e\x49\x59\x10\xc9\xb0\x1e\xd7\x79\xf8\x76\x23\xb6\x67\x97\x9a\x53\x21\x38\x2c\x52\x86\x9a\x84\x59\x4c\x4a\x2e\x4d\xa2\xd9\x66\x04\x4f\x75\x53\x48\x3a\xae\x7c\x0e\xd7\xe7\xe0\xfc\x4f\x94\x84\x30\x97\x56\x66\x19\x02\xa4\x7a\x3f\x7c\xbb\xcb\x6d\x3d\xf1\x80\x2d\x39\x66\x19\xd7\x50\xc6\xa0\xce\xe2\x31\x3b\xad\x98\xaf\xa2\xfe\x76\xef\xae\xd7\x75\x19\x8c\x7f\xc3\x63\x65\xe8\x19\xf4\x5a\x60\x4c\x74\x0c\xab\x1b\xd3\x8c\x85\x9b\x77\x1c\x4a\x4b\xb7\x7a\x60\xb3\xc1\x60\xd8\x3a\xb1\x79\xa3\xc5\x00\xe8\x59\x33\x72\x84\x2b\xac\xe9\x2d\xfc\x47\x6a\x87\xb7\xc7\x90\x54\x6b\xad\x8d\x77\x00\x40\x1a\x81\xa4\x07\x5f\x7c\x28\x33\x7b\xf9\x18\x1d\xd4\x4f\x1f\x32\x12\xce\xb6\x92\xa8\x00\x20\x7e\x2d\xf9\xaa\xa4\xd4\x58\x82\xee\xcb\x62\x2c\xb5\x12\x63\x43\x69\x93\xd5\xc4\x88\xbc\x5a\x41\x16\x3b\x02\x65\xc2\x8b\x6a\x8c\x11\x39\x4c\xcd\xe5\x9f\x3d\x9a\xda\xf5\xd3\x5d\x40\x9e\x37\x55\x08\x7c\x8c\x4b\x08\x96\x3e\x65\x8a\xba\xda\xa6\x43\x07\xc1\x22\xf2\x85\x6a\x38\xc8\x6f\xde\xb8\x41\x2e\x38\x37\xcc\x66\xe1\xbf\x6d\xfa\xe4\xa8\x29\xe8\xdc\xde\x0d\x92\xe1\x51\xde\x24\xb9\xa7\xd8\xe0\x17\xf1\x36\xe7\xb5\x68\xcd\xab\x91\x45\x5d\xde\x74\x86\xfa\x7e\x35\x85\xad\xd0\x69\xa7\xd7\x60\x4f\xe6\xe8\xaa\x46\x35\x91\x1d\x6a\x2c\xb8\xc1\x74\x3f\x83\x05\x6a\x9b\xa8\x26\x19\xef\xc4\xb6\xa7\x6d\xa2\x32\x1f\xef\x7d\xf4\xa1\xcc\xe7\x53\x2f\xa9\xd4\x4d\xb9\x51\xa7\x81\x34\x04\x41\xa3\x92\x91\xc1\xa5\xff\x26\xf2\x13\xca\xcd\x20\x52\x4a\x85\xd4\x5d\x7f\x69\xaa\x8b\x1f\x49\xbd\x17\x81\x26\x6b\x93\xba\x3f\x81\x57\xca\x27\xb4\x2d\x1e\xf2\x1e\x0a\x97\x51\x3f\x2e\x4e\x61\x87\xf9\xa2\x65\x16\x28\xbb\xe8\x92\x02\x2b\x3e\x1c\x53\xe7\xf6\x91\xe2\xfe\xcc\xd0\x57\x9e\x86\xb2\x08\x13\x02\xc2\x67\x23\x45\xf1\xd9\x52\x23\xcb\xed\x67\xae\x1f\xc8\x1d\x81\x30\x33\x7f\x91\x07\x6e\xb2\xf1\xf0\xd2\xef\x58\x5b\x58\xc3\x28\xe6\x9b\x45\xbb\x6e\xa7\x70\xda\x13\x78\x95\x05\x3b\x95\x45\x2b\x72\x49\xd9\x22\x4e\xc4\x42\x3a\xeb\xca\xc2\xc4\x66\x0b\x57\x29\x45\x8c\xc7\xa6\x72\x3e\x52\x4a\x5e\x80\x2a\x49\xab\x57\x02\xd2\xd4\x8c\x38\x33\xdc\xcf\xd8\x2a\xad\x16\x79\x1a\x17\x7b\xc6\xa4\xb0\x07\x96\x0e\xff\x71\xe8\x61\xa6\x45\xc6\xcf\xf1\xde\xd6\x31\x68\x15\x9c\x06\x3b\xa2\xa7\xb5\x0d\xd6\x49\xce\xb0\x14\xfa\xc6\x1e\x63\xbc\xca\x0a\x07\xd9\x85\x1b\x08\xe9\xb9\xfc\x5c\x92\x33\x8f\x92\x5e\x0f\x8b\x2c\x17\x01\x0f\xee\x7f\x1e\x73\x95\x9c\xc2\x4d\x4f\xdb\x69\x5e\x20\x86\xf2\x0a\x0c\x6a\xfd\x84\xa9\x4b\x48\xb1\xdc\x37\x6b\x62\xc4\x9c\x8d\x96\x6a\xb4\xcf\xdd\xb9\xf5\x99\x26\xd2\x27\xca\x24\x38\x0e\x98\x0d\xcd\x1a\x7d\x4d\x6b\xa3\x81\x38\x46\x15\x4e\xb3\x01\x31\x90\xbe\xe6\xd6\x1f\xb2\x4c\x86\x7d\x87\x51\xd4\xbd\x1e\xbc\x43\xed\x96\x02\x93\x14\x3f\x92\x68\x83\x55\x0f\x64\x11\x19\xce\x4b\x08\xd0\xf7\x50\x99\x4d\x3f\xa1\xb2\x54\xa6\x34\xc6\xa2\xbd\x2a\xbf\x26\x37\x47\xc3\x98\xcc\x64\x88\xa5\xaf\x24\xeb\xfe\x10\x25\x94\x1a\xa9\x48\xb7\xab\x61\x16\xbd\x74\x74\x11\x52\xc7\x8f\xe8\x93\x08\x0b\xee\x94\xc9\x99\x37\xcb\x58\x15\x55\xaa\xba\x6a\x27\x68\x53\x56\x5f\x65\x2e\x57\x56\xc1\xdc\xe8\x2f\xa8\xc4\x11\xfc\x8d\xb9\xe0\xd1\x2a\x3b\xc3\xf0\x5e\x39\x2d\x5c\x2a\x76\x17\x88\x52\x69\x1d\xd1\x82\x1b\x8b\xc4\xe5\xd7\xb8\xfc\x99\xb7\x31\xfc\x04\xcf\x56\xa4\x33\xed\x4e\x26\x39\x5f\xc5\x00\xf8\x13\xe5\x70\x52\x25\x3f\x5f\xe0\x3b\x05\xbf\x76\x70\x3d\x30\x6b\x94\x2c\x16\x5b\xcb\x24\x1d\x83\x70\x36\x83\xb3\x92\xc2\xd8\xfc\x6c\xd7\x79\xa4\x22\x5d\x89\x9f\xd6\x7b\xec\x88\x8f\x71\x10\xf9\x19\x61\xdc\x05\x06\xeb\x63\x19\x93\x07\x4a\x18\xf7\x11\x73\x53\x65\x32\xc1\x5f\x55\xf0\xb3\x49\x3d\x79\x25\x9f\xac\x56\x1e\x63\xc3\x3a\x0f\xa1\xa9\x3f\x36\xec\x04\x25\xcc\x49\x1e\x87\x8c\x0d\xae\x63\x2c\x84\x0a\xaf\xd2\xb7\xa1\x34\xdc\xb4\x54\xc4\xc6\x13\xb1\x8a\x12\x51\x7d\xb7\xf5\x91\x58\xbf\x6e\xbd\xf5\x53\xe0\xfa\x25\x8e\x5a\xc5\xd8\x46\xa9\x58\x4a\x00\xed\x55\x9f\x1b\x56\x5c\x8b\x06\x98\x87\x65\xb2\xf8\xa9\x47\x88\x22\x59\x94\xaf\x9f\x9e\x7d\x54\xcf\xec\x33\xb5\xfe\xbf\xf9\xe9\x99\x7c\xf9\xb2\x27\xce\x4e\x1e\x2b\x3f\x89\x5d\xb6\x68\x46\x4e\x98\x07\x01\xfe\x9b\x08\xf9\x85\xca\x5d\xcb\xf1\x98\xb2\x79\xe7\x04\xc8\xa5\xe4\x74\x77\x1c\x9a\x09\xe2\x79\xbd\xd2\xbb\xcc\x83\x4e\x98\x68\xbd\x81\xe3\x91\x98\xe4\x72\x93\x6a\x19\x49\x68\xbe\x68\x05\x69\x37\x64\x4d\xa5\xa5\xc6\xaf\x83\xa0\xe6\x29\xdb\xf8\x10\x84\xc6\x1e\xb8\xfe\x8b\x72\xdc\xd8\x68\x39\x00\x5d\x14\xf7\x71\xbe\x83\x24\x59\xff\x2d\x9b\x88\xf7\x45\x71\xfc\xcc\x87\x88\xc9\xff\xf2\x4f\xd0\x63\x8a\x65\x92\x8e\x12\x10\x6a\x9d\x1b\x8d\x89\x50\x36\x7c\xe3\x7b\x98\x2b\xde\xb9\xb9\x3c\xb1\xc3\x86\xd5\xec\xa5\xe7\x8b\xd7\x7d\xe5\xbe\xea\xa8\x48\x6f\x73\xcf\x22\xab\xd6\x24\x4a\x6e\xfe\x3c\x08\xae\x73\x28\x53\xe7\x53\x65\x78\xaa\x04\x0c\x6b\xfd\xc8\x8e\x5c\x32\x8d\xbe\x32\x0f\xd4\x94\x57\x79\x08\xbc\x04\x45\xc5\x47\xf2\xdc\x90\x55\x50\x75\xb1\x7e\xdb\x46\x37\x6c\xdc\x67\x91\x3c\x25\xca\x98\xbb\x5b\xde\xb2\x4b\xce\x6d\x56\x2f\x31\xaf\xde\x4a\x3d\xd6\xde\x69\x81\x0f\x1b\xd3\x35\xd6\x6a\x7c\x4f\x81\x6c\xa9\x28\x8b\x22\xe0\x57\x62\xb9\x04\x01\xbf\x42\xc6\xab\x9b\xf0\xd6\x0f\xbd\x3a\x19\x39\x7d\x57\x0d\x2b\xdd\x95\xad\xbf\xe3\xb6\x65\xd3\x44\x60\xd3\x5d\x2e\xbc\x71\x2f\x42\xd9\x4e\x66\x70\x68\x80\x8d\x3d\x57\xa6\x64\x46\x06\x46\xa1\x8e\x32\xa9\x7b\xdd\x2a\xd1\x7d\xa1\x61\x9a\xf1\xe3\x93\x7d\xe7\x02\x6f\x2a\xce\xd2\xba\xd8\xa8\xce\x00\xef\x89\x30\x94\xc9\x9a\x45\x26\xaf\xbb\x4f\x45\x99\xff\x8d\x11\xd3\xb5\xe7\xf9\x94\x78\x5a\x24\x95\x6a\x15\xed\xa3\xe6\x5b\x52\x04\xd0\x76\xd7\x89\x73\x78\x0b\x74\x8d\x99\x5a\xae\x44\x86\xb5\x0c\xe1\xed\xf1\xd3\xa6\x59\x98\x0a\x30\x04\xe4\x55\xc3\xb5\x27\x34\xe6\x15\xdb\xed\x70\x23\xd7\xfa\x20\xf6\xeb\xeb\x81\x3a\x00\x3f\xcc\x39\x29\x2f\xa7\x0d\x20\x33\x93\xa0\xca\x42\xca\xfc\xdf\xbf\x18\x37\x2c\x4e\x7c\x6a\xc1\x42\x33\xa0\xf0\x24\x3c\x5c\xbc\x07\x11\xc1\x22\xf1\x81\x17\x92\xe8\x9a\x52\xfe\x5e\xac\xa5\x32\x76\x90\x87\xaf\xea\x63\x14\x20\x47\x03\x0a\x2a\x68\x55\x73\x3c\x68\x39\x16\xfa\xc3\x5c\x1b\x65\x0d\x0d\x0d\x92\xfc\xc0\xdc\x14\xb1\x25\x74\xaf\x3d\x44\xa9\x44\x22\xb5\xfe\x7a\xd3\x59\x6d\xcf\x8e\x9e\x85\x67\x99\x03\x93\x19\xe8\x1e\x31\x8f\x8c\x32\x30\x4f\x33\xf8\x92\xb5\xde\x10\xa3\x29\xd2\x80\x75\x70\x21\x38\xb8\xfd\x09\x0a\x5b\xde\x47\x1a\xf0\x17\x2d\x07\x9e\x33\xc5\x8f\x49\x6e\x78\xed\xc2\x9d\x87\xfe\x45\x15\x03\x14\xc8\x30\x46\xc6\xdb\xab\xdc\x7f\xf0\xa5\x5e\x07\xfd\x8c\x56\x64\x15\x63\x4b\x04\xc1\x90\xd6\xa7\x74\x2a\xe3\xed\x75\xd5\x29\xaa\x2a\x0c\x6a\x44\x17\xac\xff\x2f\xdd\xb2\x3a\xbb\x0c\x27\xa0\x4d\xf2\xd4\x10\x31\xaf\x3a\x5f\x69\xba\x99\x13\x42\x05\x84\xd5\x8d\xd7\x22\xce\x94\xae\xc4\x6e\x56\xc9\x76\x00\x97\x8d\xf8\x48\x17\x2a\x5b\xe6\x32\x9f\x8b\x82\xe3\x35\x59\x98\xf8\x5a\xf4\x73\xc5\x7d\x4a\x95\x55\x09\x4a\xf7\xb6\xfe\x92\x68\x33\x9f\xd1\x7b\xc1\x2a\xc2\x5f\x54\x61\xbd\x39\x45\x19\x20\x83\x69\x55\x1a\xc3\x7e\xf6\x04\xe7\x86\x90\x79\xd3\x4b\xad\xaa\x4e\x94\xde\x16\x9e\x41\x23\x8d\x12\x8f\xac\xa4\xce\x87\x7b\x7f\xc1\xb3\x57\x70\x11\x2e\xb2\x4b\xd5\xaa\x61\xa7\x7b\x79\x52\xcf\xbf\x08\x8f\xf5\x68\x86\x25\xac\x17\x5a\x7d\x50\xc1\xc2\x1c\x4a\xd7\x85\x0b\x05\xef\x94\x95\x8f\x16\xea\x3c\xc3\x14\x01\x25\xc2\xe1\x1a\xdf\x6b\x9a\x0d\x14\x2b\xca\x82\x9f\x2e\xe9\xb4\xfc\xc2\xdd\x14\x33\x79\x24\x77\xdd\x02\x9f\x15\x8c\x41\xb3\xdc\x03\x9d\x2b\x0a\x69\xf2\x8d\x5a\xc1\x18\x45\x21\x9c\x5b\xdb\x59\xa4\xfd\x5c\x94\xe3\x80\x73\xda\x99\x9c\xb0\x7f\xbe\x89\x0b\x84\x11\x1a\x7b\x71\xe3\x60\x39\xd1\x5b\x41\x0f\x7b\x0c\x11\x71\x65\xae\x39\x54\xd2\x5a\x58\x0b\x8c\xc6\x6d\xbe\x36\x56\xe3\x36\x98\xe7\x21\xc3\x69\x64\xb0\xae\x21\x42\xd9\x65\x4f\x2a\x63\xf9\x69\x4c\xc7\xfd\x3e\x4a\x33\xb4\xd0\x32\xfb\x9c\x85\xce\xf7\xe7\x57\xd7\x67\x07\xa7\x73\x94\x06\x50\xdc\x99\xcd\x60\xc0\x5e\xb4\x9a\x31\x70\x90\x6e\xee\x44\x28\x92\x92\x27\xf3\xf7\xc5\xe3\x2c\xa6\xc2\x72\xbd\xb5\x11\x1b\xa4\x52\x7d\x51\xf1\x93\x8b\x6a\x1b\xe5\xbd\x80\xd6\xa5\x1a\xc1\xf4\x6e\x0a\xa3\x15\xf0\x8e\xfb\xf5\xbf\x23\x52\x94\xf5\x6b\x34\xe7\xa5\x20\xd5\x20\x9c\x64\x8f\xbb\xf5\x13\xa6\xd7\x96\x9a\xb2\xa2\x18\x1f\xb7\x60\xf3\x24\x45\xdd\x8d\xab\x96\x08\x4b\x01\x9c\x93\x4b\x94\x17\x17\x5f\xe9\x02\x43\x77\x97\x4f\x86\x9a\xee\x29\x3a\x0e\x9c\x70\x87\xcd\x6e\x55\x07\x1a\xa5\x10\x2d\xc2\x01\x59\xf4\xab\xdc\x83\xe3\x08\xce\x22\x7c\xd8\x87\x8f\x45\xb1\x73\x54\x08\x73\xb2\xa4\xa2\xf2\x70\xf6\x18\x0b\x55\x61\x1d\xb7\x8e\x76\x10\x38\x84\x2c\x89\x62\x18\x83\x02\x09\x93\xab\x9c\xd3\x77\x31\x50\x32\xe1\x48\x4d\x5c\xd8\xb4\x51\xc9\xd2\x7e\x30\x38\xbf\xa1\x0c\xd5\x8b\x45\x82\x86\x85\x4a\x31\x18\x27\x62\x2d\x02\xa6\xa9\xbc\x49\x02\x90\xab\xf7\xbb\x33\x4d\x5a\x02\xb4\x39\xc2\x18\xfb\x48\x79\x33\x28\xc3\xd4\x3d\xac\x88\x07\xcc\x2f\x89\xd2\xb4\xe0\x0c\x70\x24\x8e\xb0\xee\x14\xed\xa9\x8c\xb5\x5b\x49\xa5\xf6\x47\x59\x50\x8b\x2b\x7d\xb1\xde\x84\x9a\x91\xc6\x06\x17\xb7\xa2\x1a\x29\x31\xe6\x61\x82\xa9\xa0\x50\x00\x01\x1c\x07\xfc\x9a\x73\xd4\xb3\xce\xf9\xe0\x86\xd2\x3c\x50\x14\xbd\x92\x1d\x7f\xa9\x27\xfb\xf8\x87\xee\x99\x3c\x54\x7d\xd8\x22\x8a\x96\x13\x17\x8b\x77\xa2\xe6\xb2\xe2\xfd\x29\x87\x59\xad\xba\x82\xdb\xc2\xad\x54\x32\xcb\x70\x8f\x90\xb7\x64\x99\x30\x3f\x2d\x0a\x7b\xc1\xa0\xe1\x30\x2f\x81\x4b\xc1\x21\xf2\x57\x54\xca\x15\x9f\x8b\xcd\xc2\x9b\xb0\x13\x17\x25\x49\x55\x66\x0c\xe8\xe7\x40\x0e\x57\xe6\x4a\xd7\xff\x83\xec\x3b\xf0\x47\x80\x8e\xaa\xaa\x40\x57\x50\xf6\xd5\xcc\xc1\x80\x8d\x8b\x8b\x4e\x2f\x04\xc5\xb6\xf1\xc6\x73\x55\x71\xc1\xe2\xbd\x41\x9e\x65\x1a\xed\xa7\x2d\x9c\x61\x94\xd2\x96\x5a\xb8\x78\x47\x28\x75\x1b\x9b\x91\x50\x5d\xba\xe7\x74\x6e\x20\xf6\x1b\xab\xea\xf6\xbb\xcb\x63\x1d\x8a\xc0\x25\x16\x01\xcc\x00\x2f\x9d\x86\x6a\x0b\xd6\x2f\x29\x13\x82\xee\x39\x8d\x25\x63\x05\x01\x96\x56\xa3\x32\x6b\x8e\xf2\x13\x4b\xba\xb0\x9b\x4f\x00\xdb\x85\xf9\xca\xa6\xba\xb0\xdf\x5f\x5f\x5f\x14\xa5\xa6\x3a\xc7\x73\x44\xa6\x5e\x94\x7d\x33\x74\x13\x97\x3c\x3c\xa8\x16\x81\x22\x40\xae\x2a\xfd\x6a\xa5\xa0\xf5\x63\xa9\xa9\x70\x3d\x6f\xc6\x8f\x85\x19\x32\x26\xa9\x4d\xbd\xc3\xd8\x38\x7e\x49\xe0\xb7\xdd\xfb\xc8\x16\x8e\x39\xa5\xec\xaa\x21\x0b\xe8\x49\x25\x87\x94\x92\x64\x0a\x31\x0e\xc1\x0c\x05\x6c\x5a\x52\xac\xdc\x25\xae\xc7\x3d\x0e\x5f\x91\x8a\x0f\xab\x7a\x65\x0e\xde\x4c\x54\xe2\xe6\xd4\x0f\x0f\x62\x5f\x96\x55\x3f\x75\x7f\x8a\x12\x4e\x47\x54\xff\xde\x0f\x5b\xbf\xbf\x70\xb3\xc5\xbd\xc6\x9e\xf7\xc5\xd3\x3b\x60\xe6\x33\x37\x70\x4e\xe1\xde\xd0\x24\x7b\xc6\x9f\xfd\x8e\x54\x80\xfa\x8b\x8c\xa0\xbb\xab\x28\xe7\x72\xa8\x2b\xc2\xe3\xbc\x10\x7b\x77\x7b\xce\xb7\xdf\xfc\xee\x0f\xa7\xbb\xce\xb7\xaf\xe1\x7f\xdf\xbc\xd6\x95\x67\xc5\xb7\x3f\x7a\x2a\x66\x08\x8e\xcc\xc1\x2b\x38\xeb\x54\x6a\xbd\x02\x2a\x42\x58\x11\x01\x8b\x6c\xfc\x5d\x3a\x88\x55\x39\x28\xd0\xfd\x87\x72\x0f\x0c\xa3\xde\x10\x6a\x0f\xd0\x61\x13\x1e\xe6\xab\x5b\xaa\x21\x28\xaf\xfe\x41\x53\xdb\xec\x32\x70\xfe\x4a\xdc\x4d\x57\xf1\x6e\x32\xce\xa2\xd5\x6d\x42\xa9\x1c\x10\x42\x55\xc8\x2d\xcc\x23\x56\x04\x25\x38\xc3\x66\x0c\x99\xdb\x52\x5d\x54\x68\x8a\x46\x74\xe6\xc0\x16\x68\x6f\x0e\x0e\xca\x78\xc6\x95\x9f\x62\x54\x0d\xa7\x45\x5f\x44\xe1\xd2\xbf\x23\x75\x4f\x27\x21\xf5\xde\x6e\xf8\x33\x2e\x51\xc5\x4f\x0c\x3f\x32\x9c\x3c\xb1\xd5\x9b\xde\x5c\x1d\xbc\xd6\xd4\xd8\xbd\xb9\x3e\x3e\x39\xbe\x3a\xb8\x3e\x3e\x3f\xb3\xb1\x1d\xdf\x5c\xcd\x2f\x7b\xf2\x54\x29\x0c\xf3\x9b\x8d\x96\x83\xd0\x74\x27\x5c\xaa\x60\xb0\xc9\xba\x74\x13\x92\xd1\x02\x79\x34\x27\x23\x69\x53\xf0\x82\x6c\xc8\x46\xa8\x79\x92\xe8\x52\x1d\x80\xdc\x29\x5f\xf6\x70\xdf\x2f\x16\xeb\x27\x8f\xcb\xb8\x17\xde\xf8\x66\x60\x6d\x88\xcf\xf1\x29\x9e\x51\x2d\x4f\xcd\xeb\xac\x42\xa0\x14\x94\x54\x47\xc0\x97\xd8\x08\x86\x25\x09\xfc\x4c\xd8\x95\x4f\xeb\x1d\xf5\xd0\xdf\x31\x0e\xf0\xaf\x53\x57\x48\xfe\x2d\x10\xc7\x86\xfb\x97\x44\x47\xb7\xe8\xb0\xac\xf4\xab\xa4\x16\x41\x09\x4f\x14\x9a\x59\x0a\x52\x2e\xfe\xd2\x2c\xfe\x24\x30\x87\x8c\x80\x4b\x98\xbb\x32\xea\x44\x96\x47\xd4\xfb\x0f\x18\xf6\x1a\x4c\x45\x59\x5a\xa3\x35\x38\x97\xb0\x8c\x0e\x62\xd8\x2e\xb2\x01\x63\x26\x37\x06\xb7\x11\x3c\x69\xba\x00\x43\x3a\x4f\x43\x13\x3b\x5c\x64\x7c\x51\x57\x7f\x66\x53\x5f\x9b\x47\x8c\x1d\xfd\xa3\x10\x3d\xcb\x58\x2b\xd5\x38\xb6\x3b\x56\x3d\x22\x9b\xb1\x36\x82\xf1\x4c\x6a\xd8\xe2\xd3\xd3\xef\xae\x04\x37\x49\xf5\x5a\xa6\xb0\xd5\x7b\x90\x0f\x62\xa7\x4a\x7c\x6b\xbe\x85\x27\xfe\x2d\xaa\x87\x48\x5d\x70\xd0\x24\x4a\xe6\xda\x6a\x4f\x44\xf3\x9b\xfb\x1b\x96\xb3\x99\xf6\xa7\xdf\xa3\xf9\x95\xae\xbb\x8d\x13\x46\x13\x96\xf7\x97\x29\xd9\x3a\xbe\xe7\x1a\x79\x71\xde\x9e\x69\xe4\xfd\xf8\xb6\x38\x72\xf8\x01\xf6\xa8\x1b\xfa\x9f\x68\x38\x9f\x3f\xbf\xc4\xa6\xb5\x2a\xb7\x5b\x99\x01\x4b\xbc\x03\x66\x42\x7c\x8c\xc5\x02\x15\xd9\xac\x74\x47\x1d\x66\xb4\xa0\x10\x26\x6f\x9f\x64\x65\x4a\x73\xa7\x1d\xd4\x70\x10\x03\xe8\x23\x2e\x1a\x04\x35\x93\x3c\xc6\xff\xc9\x58\x2b\xd6\x0e\x39\x6e\x72\x97\xd7\x5d\xeb\x1a\x54\x5e\x9c\xdc\xbc\x3e\x3e\x9b\x91\xfd\x6a\xe6\xd8\x83\x35\xd5\x15\x14\x18\x70\xb5\x25\x82\xc2\x09\xe1\xcc\x40\xf0\x1a\xd6\x7d\xc0\x84\xbe\x0f\xa3\x0f\x21\xa5\x57\xd3\x60\x6f\x6b\x64\x85\x43\x13\xc5\xd4\xd5\x6c\x00\x9e\x20\xc2\x50\xb4\xaa\x3f\x05\xbb\xc9\x91\xc4\xcf\xfe\x61\x5a\x35\xf1\x03\xee\x58\xe8\x8a\x7a\xeb\xa0\xcf\xb7\xab\x67\xbd\xd3\x96\x9c\x4d\xfa\x25\xee\xed\x61\x3e\x13\xec\x0a\x67\x52\xa8\xf7\xb4\xee\xd4\x36\xb2\x5c\x6f\x81\xd8\x30\x17\x4a\x6f\x7b\x1b\xcc\x2c\x5b\xb8\x45\x95\xa9\x01\x63\xd7\x75\xb6\x27\xa5\xa7\x66\xf1\x26\x19\xd3\x54\x2e\xde\xa0\xa3\xb7\x72\xb1\x41\x8f\xc1\xd8\xc3\x8a\xe7\xbf\x90\xa1\xa6\x8d\x4c\x1d\xcd\x34\x53\x02\xf3\x0c\xb8\xe8\xda\x8d\x93\xc1\x4f\xcc\xf5\x13\x42\x71\xad\xbc\xa5\x25\x29\x78\x33\xce\x54\x42\xcf\x4d\x79\x9e\xb4\x04\x0f\x98\xea\xcb\x89\x5d\x3f\xe9\x66\x14\x8d\xf5\x62\x2f\xef\x55\x8a\xd6\x4f\x0e\xba\x4a\x39\xfb\x45\x9b\xc0\xcf\x09\x41\xc5\x24\x19\x41\x69\x58\xd3\x44\x0d\x99\x3d\xff\x55\xae\x72\x1a\xf6\xb4\x81\x43\x93\xa5\x0a\x2b\x26\xa5\x56\x57\x78\x40\x61\xe2\xda\x20\x8d\x81\x0c\xa7\xaf\x55\x73\x32\x30\x1b\x9b\x3c\x27\xec\xb6\xd3\x0e\x11\xb3\x4d\x84\xd9\xa4\x33\x6b\x20\xac\x9a\x8b\xc0\x93\x00\xb5\x19\x43\x93\xd1\x0f\x7d\xe3\x8e\x01\x65\x4f\xef\x6d\x33\xfb\xb1\xf5\xf9\xad\xde\x31\x25\xb8\xe9\xcf\xe1\x06\x9f\xdd\x78\xf4\x97\x43\x30\x10\x84\x27\x02\x6b\x31\x8e\x16\x7d\xe7\x50\xf5\xe9\x18\x58\xc3\x29\xae\x25\xb0\xfe\x2d\xd4\x40\x9b\xf7\x45\xe5\xc2\x2b\xae\xc2\x2f\x59\x19\x14\x07\x91\x5b\xa8\xd6\xd0\x94\xc8\x35\x97\x29\xba\xf8\xc2\xcd\xb4\x6e\x0b\xeb\xa7\x00\x7d\x5f\x8a\x3a\xc0\xd5\xf4\x13\x8d\x4c\x61\x30\x47\x45\x40\x7b\x2b\x6c\x0b\x8a\x6d\xef\xbf\x93\x1d\xf7\x27\xf4\xb2\xd9\xc6\xd5\xa7\x68\xab\x8a\x0a\x26\xb4\xd4\x44\x8b\x09\x90\xff\x57\x3f\x7e\x05\x8b\xf9\xdd\x23\xbc\x07\x31\x5b\x3f\x7c\x85\x7f\x1f\xa2\xdf\x00\xaa\x5a\x7c\x5d\xac\x62\xdb\xc2\x9a\xc0\xe4\xa5\xb7\x21\x5d\x13\xf5\x5c\xfb\xcd\x1c\xa2\x8c\xa8\x52\xa9\x6e\xe1\x91\x4c\xc9\x8f\x51\xad\x06\x52\x2c\x05\x94\xc9\x90\x55\x3c\x7d\x94\x32\x4b\x6f\x54\xa9\xc6\x8f\x29\xa8\xe4\x66\x55\x64\x44\xc6\x5c\xc8\x2a\x53\xf2\x43\x84\x02\x34\x6b\xb2\xa4\xf0\xb2\x20\xa3\x23\x20\x54\x86\x5a\xcb\x61\xb9\x4e\x14\x8a\x19\x7a\xa7\xa3\x65\x32\xfd\x10\x25\xe4\x13\x14\x44\x77\x7e\xf7\x43\xb0\x20\x1f\xa4\xf6\x55\x44\x2b\x8a\x9d\xf1\xf9\x81\x29\xed\x64\x0d\x10\xf2\x05\x08\x51\xb5\x65\x25\xad\xa7\x7c\x6f\x73\x18\x93\x2c\xe2\x6f\x6a\x97\xbd\xa9\xf0\xcd\x26\x8c\xd1\x96\x58\x7c\x16\x0d\x8d\x78\xaf\x72\x72\x2b\x5d\x0d\x20\xd5\xa8\x82\xc6\x03\xc7\x1b\x54\xe7\x03\x83\x4f\xb4\x71\xaf\x2f\x72\x35\xa9\x27\x7e\x2a\x38\xb7\x2e\x1c\xad\xf0\xb5\xc7\x68\xbf\xd2\xd5\x44\x41\xea\x80\x32\x90\xae\xc2\xd3\x9f\xea\xe3\x91\xcd\xbe\x6f\xb6\x43\xca\x03\xa2\xed\x38\x90\x08\x4e\x05\xf5\x0b\x25\xe2\x30\xb9\x7a\x4a\x42\x3c\x99\xc2\xa9\xde\xd7\x92\xf5\xbf\x99\x5f\x5e\xd5\xdd\x6b\x9a\x89\x70\x37\x1a\x98\xc3\x56\x21\xb7\x67\xba\xfd\xd6\xd1\xca\x1c\x8b\x48\x30\x1d\xd8\x85\x64\x68\xdd\x78\xd6\x4f\x09\x42\xfc\xe4\x9c\x56\xb8\x98\x1d\x42\x6d\x71\xf7\x8d\xdf\x8d\x21\xff\xcb\xc1\xe5\xd9\xf1\xd9\xeb\xfd\xb7\x21\x7c\xc7\x5c\x07\xb7\x0a\x5d\x39\x05\xc3\x46\xc7\xe9\x42\xe9\x1e\xa0\xab\xb7\xac\xbb\xe1\xa7\xce\xbd\x7f\x77\x1f\x3c\x62\x7c\x04\xbe\x60\xdc\x3b\xe1\x11\xa8\x3f\xd5\x00\xac\xdc\x47\xe7\x56\xc0\xa5\xc6\xbe\x2c\xe8\x11\x82\x75\xa5\x39\xb6\x49\xfe\x98\x88\x05\x46\xe2\x91\x82\x9f\xd0\xa7\xe8\xa7\x0c\xf0\x53\x0c\xef\xc3\x1c\x4a\x9d\xc3\x3f\x80\x1d\x73\x7d\x7c\x75\x35\x3f\x9d\x9f\x5d\xf3\x50\x98\x3d\xaa\xab\xad\x76\x89\xf0\x9b\x2a\x2f\x47\x81\xa2\x30\xba\x84\xb3\x7b\x99\xcc\xbb\x43\x4c\x04\x7d\xe6\x59\xa6\x00\x09\x03\x24\x43\xe1\x07\x18\x3c\xbb\x47\x28\xde\x6c\x82\x8e\x05\x48\x47\xeb\xbf\xe1\xf7\x6a\xac\x9c\x90\x84\xbc\x8a\xd0\xcd\x0f\x6e\xd4\x4a\x23\x11\xb2\x07\x71\xb2\x7e\x62\xf1\x9a\xc9\xe5\x31\xd3\x55\x87\xd6\x59\x9c\x87\xfa\xf8\x07\x2f\xaf\x43\xde\xea\x32\xb9\x5b\x44\x4e\xf0\xf9\x0a\xbd\x0e\xef\x65\xd8\x69\xe3\x41\x0b\xa4\xc6\x30\xde\x7a\x08\x58\x33\xa9\x30\x57\xe6\x81\xbb\x9c\xc2\x92\xdc\x07\xd7\x0f\xf0\x54\x71\xb0\x05\x5a\x6f\x36\xbc\x20\xd9\x89\x94\xc2\xd7\xd8\x37\xca\xdb\x45\x2f\x60\x2a\x59\x1b\x25\xf1\x3d\x66\x99\xa3\x6d\x80\x19\xa0\x9d\xc3\x20\xca\x3d\x5c\xc9\xd0\x4b\x1e\x77\x40\x4a\x77\x33\xf7\xd6\x4d\xc5\x1e\x55\x26\x47\xeb\x44\x20\xbc\xbb\x22\x0e\x56\x61\x23\x9f\x7c\xda\x50\x18\x10\xe2\xb1\xa5\xae\x06\xab\x9a\xf3\x6e\x93\x46\x12\xaf\xd4\x74\xb0\x41\x30\xdd\xc3\x1c\x23\xe8\xaf\xbe\x8a\xb3\x02\xc1\x8a\xbc\x9a\x39\xbf\x83\xbb\x68\x9b\xc7\xff\x52\x18\x84\xab\xe5\xb9\x28\xec\x04\xe5\x68\x0f\x36\x59\x12\x3d\xaa\xbc\xe9\x8d\x35\xa8\xc4\x16\xc8\xb9\xd9\xa0\x15\x66\x62\x89\xee\xe7\xad\x58\xa8\x6c\x0f\x9c\x2d\x15\x73\x80\xf9\xfb\x84\x4f\xf5\xdc\x79\xf2\x67\x12\xde\x0c\x55\x25\x33\x56\x95\x44\x1b\x3f\x4a\x6a\x68\x9c\xab\xb8\x88\x7b\x59\xc0\xba\x85\xb9\x26\x78\xeb\xe0\xfa\x1a\x4e\x23\xf2\x71\xe7\x90\xe2\xb3\xa2\xb8\x70\x42\x40\x4f\xb6\x28\xa5\x70\x14\xbc\x73\x5b\xf4\xeb\x6a\x07\xba\xd2\xf7\x8d\x43\xbc\xa2\x96\xba\x42\x18\x43\x43\xa9\xd3\x7c\xec\xe0\xd3\x06\xa4\x24\x5e\x45\x28\x4d\x5b\xe2\x65\x38\x0c\x21\xe5\x7e\x85\x93\x27\xfd\xea\x28\x64\x26\x70\xfd\x54\x8a\x02\x69\x79\x3c\x65\x6a\x09\x5c\x06\x11\x60\x36\x4f\x7e\x0b\xbb\x0e\x6e\x47\x4a\xd1\x05\x92\x28\xa5\x58\xa8\xed\xb3\x3d\xe7\xba\xa4\x02\x85\x55\x06\x4e\x94\x94\x5e\x17\xf0\x2f\xd2\x52\x50\x81\xf0\x1a\xdb\xb5\x4c\x87\xd8\x35\x1e\x12\xd5\x11\x93\x0f\x38\xf0\x0d\x5b\xfe\x04\x9b\x24\x5f\x20\xbb\xc3\x68\x0b\x98\xff\x07\xcc\x04\x83\x3f\xba\x98\xd9\x45\xc5\x5f\xe0\xae\x61\xf1\x3a\x51\xd9\x52\xda\xd6\xe5\xbf\xa8\x44\x8b\x92\x71\xf2\xba\x14\x5c\x33\xc5\x79\x01\x66\x89\x69\x1c\x93\xce\xb5\xa5\xa0\xa4\xd6\x51\x14\x33\x0c\x44\xc7\xc9\xfa\x57\x54\x38\xe8\x10\xca\xba\x50\x31\xc6\x29\x7e\xaa\xe5\x80\xec\xdc\xe0\x79\xeb\x8f\x72\x97\xe3\x81\xa6\x90\x7d\x19\x67\x09\xc8\xa2\x47\xb8\xd4\x6c\xe4\x9c\x2e\xde\xeb\xe3\x0a\x66\x28\x12\x53\xce\xb9\xda\x52\xff\x97\x06\x13\xa8\x64\x6e\xba\x15\x8a\xd1\x60\x3c\x1c\x9c\x6f\x65\xbe\x91\xfe\x17\x1b\x7c\xac\xda\xd3\x0d\x00\x21\x56\x13\xa4\x50\x5d\xd8\x66\x6e\xf2\x48\x61\x1c\x0b\xdc\xc0\x65\x90\x6f\x95\x48\x8a\x6f\x89\x03\x0a\xa1\xda\xe0\x4d\x14\x2a\xef\x23\x3f\xe0\xa3\x81\x2c\xe1\xe1\x5b\xe7\xaa\x5e\x15\x0e\x63\x3d\x38\xe9\x8d\xbe\xe3\xef\xa8\x25\xa6\xf7\x16\x2b\x97\x53\xaf\x6d\x8e\x87\xf8\x38\xe0\xc0\x48\x63\xa2\x0e\xba\xd1\xe7\x3d\xc7\xf9\x17\x96\x1f\xe0\x62\x27\x81\xe2\xbd\x62\xa9\xb2\x39\xd5\x4c\x44\x9b\x13\x65\xf7\xc8\xd9\xae\xeb\xa1\x75\x5b\x36\x2a\x99\x5c\x9c\x50\xbe\x79\xc7\xf5\x3c\x8a\xd4\x87\x45\x6a\x90\x70\x2b\x28\x03\x38\x67\x94\xdd\x73\xce\xc3\x85\xd0\xde\x74\x2b\xff\x0e\x23\x85\xbd\x5d\x85\xac\x60\x41\xb8\x8a\x3c\x1a\x0c\x85\xd0\x5e\x59\x76\x7c\x16\x99\x23\xef\x35\x52\xfc\x35\xb6\x9a\x3a\x9a\x75\xbe\x18\x16\x1c\x09\xa3\x6e\xe5\x96\x03\xde\x88\x1c\x86\x63\x04\x52\xb5\xef\x8a\xc0\xad\xd6\xb3\x5c\x07\xa4\xd2\xd0\xc0\x6a\x9d\xd0\xb6\xab\xbc\xf8\x28\x21\x02\x48\x14\x0b\x3f\x76\x83\x0a\xb7\xaf\x0f\xc4\xa3\xf9\xa1\x0d\xd9\x65\x95\xa5\x8c\xb0\xb8\xb9\xd6\x4f\x2b\x0a\x2d\x0b\x76\x70\x63\x41\x83\xc6\xc6\x84\x55\x90\x39\x92\x4a\x30\xed\x7d\x71\x93\x61\xc2\x78\xda\x98\x98\x74\xbd\x75\xac\x44\xdb\x1d\x6a\x39\x00\x32\xcc\xf4\xc3\xef\x50\x62\xc8\x53\xb9\x2b\x31\x06\x9b\x94\xa7\x18\xfa\x76\x1b\xc9\x41\xc1\x1d\x20\xab\x38\xd0\x3e\x85\x2d\x0a\xcc\x9f\x4a\xf3\xc9\x4c\x86\x0d\xf6\xc9\xa0\x31\x55\x2e\xec\x50\x9f\x67\x1e\x27\x12\x6f\x0e\x49\x35\x87\x80\x7a\x3b\x2c\x5e\x2e\xa0\xe9\xfa\x69\xcf\xb9\x09\xf1\x8c\xeb\x6e\x8f\xf2\x32\xc4\xdd\xca\x37\xa1\x48\xcb\x4d\xc1\xd8\x51\x78\xa5\xed\xaa\x92\xee\x32\x9a\x44\x64\x3e\xf6\xd9\xb8\xb8\xac\xb8\xa6\x9b\xa0\x28\xb3\x8f\x89\x51\x38\x49\xd6\x7d\x96\xc5\xb5\x4c\x59\x0e\x67\xdc\x10\xde\xbe\x53\x69\x92\xd6\xda\xa4\x32\x6f\x9d\xe4\x09\xf8\x2a\xe9\x3e\x41\x14\x87\x08\x7f\xec\x53\x11\x8b\x32\x49\x96\x23\x37\x4f\x51\x9e\x8b\xef\x06\xba\x61\x39\xb6\x06\xaf\x3a\x81\xc7\x43\x00\x2d\xdc\x2f\xc5\x99\x80\x2d\xe3\xae\xd6\xbf\x92\xc8\xef\xa9\xad\xc4\x54\xa6\x38\xd7\xc5\xb6\x80\xc6\x76\x82\xbd\x9a\x26\x76\xea\xc2\x32\x20\xc8\x95\x30\xd5\x50\xf7\x38\x1f\x04\xec\x25\x78\xa7\xe0\x4e\xd9\x97\x15\x53\xa1\x4b\xc2\xe2\x08\x67\x30\x92\xf9\x8a\x6c\x48\x4a\x50\x98\x80\x29\x00\xe1\x38\xf2\x28\xc9\xe0\xab\xe3\x93\x39\x6d\x38\xe1\x7a\xe4\x18\x9c\x79\x20\x10\x75\x12\x68\x01\xc1\x98\xba\xff\xea\xc7\xb0\x25\x16\xf7\x28\xfe\x14\x6a\x3e\x99\x9d\xdd\xc8\x33\xe7\x64\x47\x75\xff\x04\xa0\x42\xbe\x8d\x7d\x21\xd9\x9b\x37\x2e\xf5\xd4\x0f\xa7\x37\x27\xd7\xc7\x17\x07\x97\xd7\x2f\x5f\x9d\x5f\x9e\xce\x8e\x0e\xae\x0f\x9c\xc3\xf3\x33\x64\xed\xce\xf7\xc7\x47\x47\xf3\xb3\x1f\x3b\x29\x1b\xd6\xd9\x9c\xa6\x8b\xcb\xe3\x37\x07\xd7\x73\x87\xe0\xf5\x12\x71\x74\x7e\x76\xb6\xfe\xcb\xfc\xca\xc1\x6e\xf4\xe1\xf0\xe0\xf0\x7b\xfc\x60\x85\xbc\xad\x58\x54\xaa\x41\xdf\x99\x00\xcd\x0a\xfb\x5d\x10\xdd\xc2\x55\x24\xb3\x35\xfc\x58\xbc\xa9\x7e\x50\x2e\x87\xe9\xde\xde\xde\x8f\xce\x0f\xea\x7b\xd5\xb0\x9b\x3e\x95\xf8\x81\x21\x8b\x12\xa6\xd8\x00\xaa\x9a\x56\xd4\x11\x36\x83\xe0\xe8\xad\x4e\x8a\x30\x1a\xeb\x57\x9b\x73\x2e\xa3\xc2\x50\x68\xe4\xdb\x00\xcb\x9f\x54\x8b\x0f\xf5\xf8\x57\x49\xbf\x3a\x55\xb5\x48\x66\xcb\x5f\x68\x3d\xab\xb4\xce\x7d\xbd\x04\x19\x57\x56\xea\x22\xad\x39\x22\x73\xca\xb2\xa8\x7b\x22\x50\x94\xb7\xd2\x75\xbb\x41\xb7\x05\xaa\xf6\xdb\x10\x88\xd1\x07\xd1\xad\xc9\x8c\xf1\xe2\xb3\xda\x2c\x66\x85\x29\xa4\xc9\x04\xae\xc3\x9f\xd6\x7f\xb5\x41\xa3\x09\xfa\xa8\xfd\x36\x04\x22\xc8\x4f\x6e\x7a\xaf\x99\x15\x68\x53\xfa\x5b\x51\x63\xbb\x82\xa7\x58\x55\x41\x87\x64\x4c\xc0\x0c\xb9\xc1\xa8\x04\x2d\xf0\xde\x0f\x34\xe3\x99\x63\xa2\x33\x92\x57\xdc\x22\x14\x98\x73\x94\xc9\x80\x48\xeb\xa0\x18\x74\x18\x50\x6f\xcb\xeb\xc7\x18\x8d\x07\x94\x77\x5f\xe8\x6a\x79\x77\x74\xb2\xe3\x5a\xb7\x28\x92\x3a\xc6\x33\xed\x04\x94\x32\xd3\x06\x11\xf1\x8a\xfd\xd2\x89\xa7\x13\x9f\xa6\xa5\x39\x36\xb4\x6f\xd3\x53\x16\xed\xe9\x9a\xc9\xec\x6e\x68\x8c\x6b\x11\xe7\x9d\xe0\x6b\xbf\x99\x43\xec\x39\x60\x1b\xbf\x0f\x83\xac\x63\xf5\x98\xa5\xcb\x0d\xad\x72\x8b\x78\x65\x39\xeb\x4e\xf0\xad\x6d\x06\x60\xa0\xba\x7e\x1a\xe8\x8d\xdf\xcd\x21\xc3\x7b\xbb\x87\xd7\x27\x62\x99\xa7\x56\x19\x82\x01\x78\xb7\xfc\x0c\x3f\x02\x13\xb2\x84\xda\x6d\x2c\x64\xb0\x36\xb6\x42\x53\x63\xff\x58\x83\x3e\xa7\x47\xea\x1e\x00\x67\x4f\xb2\x06\xac\x09\xe1\x90\xa0\x3b\xa2\x37\xb4\x92\x0b\x32\x8a\x6e\x46\x49\x0a\x0a\xab\x2d\xc2\xc1\x1f\x9a\x2b\x75\x91\xa1\x1a\xc4\x0a\x32\x65\x5c\x26\x97\x97\x8b\x04\x35\x99\xd9\xa3\x72\x7d\x49\xef\xa3\x3c\xf0\x94\x32\x14\x6b\x70\x74\x12\xd0\x52\x8e\xba\xa8\x46\xdd\x04\x8b\x26\xc3\xc8\xe7\x07\x20\xab\x42\xea\xa0\xcd\x69\x7f\xd0\x05\x47\x55\x8a\x5a\x4e\x73\xf5\xf6\x88\x01\x2d\x3d\x58\x57\x60\x81\x9d\x51\x39\x59\x4e\xea\x0a\x94\xc0\xf1\xdd\x9c\x46\xe8\x5c\xb4\xb8\x8f\x58\x68\x57\x66\x62\x4c\x72\xf5\x58\x89\x49\x3b\x2a\x99\xa8\xe6\x1a\xa5\x6a\x29\x0c\x92\x2a\xee\xd0\xca\x65\x94\x1d\xd0\x6b\xd8\x67\xc3\x1d\xce\x25\x18\xe7\x72\xbd\xd8\xae\x1b\x4a\x15\x4e\x2f\x66\xf3\x61\xc3\xa8\xb5\x2e\x2f\x94\xc1\xb1\xf0\x36\xb1\xc1\x90\x08\x52\x67\xc7\xae\xdf\xbd\x92\xa8\x78\xce\x7d\x4a\x48\x1d\xbb\x8f\x76\xd1\x1a\x98\x1c\xb3\x13\x01\xa5\xa0\xb4\x00\xea\x87\x8b\x28\xa1\x5c\xd9\x79\xbd\xa8\x70\x03\x7e\x55\x43\x5c\xf4\xb1\x43\x28\xfd\x92\x65\x0e\xa2\xc0\x5f\xf9\xdd\xc3\xa2\x5f\xeb\xc9\x96\xca\xcc\x3c\x23\xb0\x93\xac\xa7\x32\x3e\x1f\x63\x76\x66\x74\x4d\x84\x17\x52\x8a\xca\x47\xca\x81\xe1\x67\xb5\xbd\xb7\x8b\xb7\x53\xf6\x2e\x2d\xeb\xed\x60\x13\x2e\xbf\xa3\x39\x13\x3d\x08\x49\x83\x39\x0e\xe1\xe0\xb1\x77\x4b\x33\x2d\x2d\x86\x43\xef\xbe\x05\xdb\x9a\x0c\x80\xff\xe0\x06\x3e\x3a\xa5\xdc\x8b\x84\x58\x3d\x3c\xa7\xfc\xb0\x70\x0f\xeb\x16\x5d\xef\xc5\x0a\xda\xdd\xa3\x0b\x10\xaa\x92\x25\x20\x21\x4d\xc7\xa2\x74\x30\x1b\x41\x15\x87\x47\x51\x2a\x15\x79\xfb\x1d\xbe\x7a\x77\x75\x7d\xf0\xfa\xf8\xec\xf5\xbb\xeb\xe3\xd3\xf9\xf9\xcd\xb5\x62\x6a\x9a\xdd\x22\x6b\x53\x15\x24\x72\x99\x81\xcd\x8b\x90\x7d\x61\xcc\x50\x4c\x36\x96\xcb\xeb\x9b\x8b\x2d\x8f\xa5\x0f\x85\xf1\x58\x02\xf7\x56\x74\x8b\x16\x8d\x5f\x07\x40\xc5\xca\x89\x31\xbf\xdb\x34\xd2\x9e\x40\x87\xd0\xc4\xc9\x1a\x0e\xd1\x16\xd2\x1f\xf3\xbf\xee\x7b\x85\x7e\xb7\x92\xd2\x80\x9b\x67\x9c\xa3\x55\xb9\x0b\xa9\xf8\x69\xa9\xea\xec\x66\x13\x43\xba\x0e\xa7\x87\xd2\x77\x7a\xe8\x7f\x26\x81\x62\x3a\xc7\xd4\xcf\x74\xb9\x01\x87\x75\x36\xa7\x29\xc2\x6c\xf3\x9d\x58\x97\x22\x59\x59\xcd\xfd\x4a\x9f\xe9\x50\x5d\x75\xd6\x90\xbb\xb7\xa6\x02\x6d\xc3\x81\xfb\xc4\x28\x1b\x90\x20\x4d\xdc\xba\x69\xa9\x73\xee\xde\x74\xba\xa6\x43\xf0\x75\x0f\xc1\x45\xe7\x1c\x2b\xa0\x14\xdf\x0a\x9c\x93\xdd\x37\x84\xd2\xf2\xc1\x2e\xd4\xca\x6c\x75\xd6\x18\xc8\x34\xe2\x9c\x7b\xd5\x6a\x5f\xe9\x52\xc3\xdb\xa5\xe3\xaf\x26\xd5\xd0\x81\x2e\xe2\x15\xec\x70\x74\x2f\xbb\x65\xa1\x03\x78\x34\x6b\x0e\x2e\xaa\x9c\xe0\x05\x99\xf8\x64\x69\xb7\x00\x8f\xb2\x7e\x61\xcc\x20\x53\x47\xb7\xc2\x9e\x0c\x21\x55\xbf\x0e\x7e\x00\xd8\x8c\x0a\x61\x69\x11\x59\xc2\xec\xa1\xde\x16\x6a\xb5\x90\xc2\xed\x63\xdd\x12\x64\xb4\xb1\x2c\xa1\x98\x53\x29\x8b\x80\x74\x13\xb0\xd1\xc0\x1c\x36\x07\x8e\x74\x1b\x9d\x38\xcc\x0f\x1e\xc3\x56\xcf\xf9\x9f\xf5\xa5\xd7\x9b\x3f\x1b\xc3\xc5\xfb\x92\x23\xfe\x3f\x50\xa2\xf9\x4a\xde\x97\x5b\x3f\x44\x67\x35\xf4\x5e\x89\x30\x97\xa3\x4e\x71\x69\x03\x64\x10\x8d\x32\x03\x74\xf7\xce\x6d\x6f\x34\x00\x87\x62\xe1\xa9\xb6\x6e\x2b\x15\x55\x1d\x0f\xbf\x7b\x25\xb9\x6a\xab\x0d\x06\x7d\xd6\x5d\xeb\x0c\xbb\xd2\xc5\x59\xb3\xaf\x43\x2a\x90\x62\xa5\x49\x35\x4c\x8f\x32\x3a\x2b\xca\x86\x89\x7b\x03\x81\x6d\x72\x91\x01\x69\x56\x26\x49\xaa\x62\x9c\xc3\xa4\x25\xeb\xc6\x04\xe8\xfa\x95\x09\x23\xf3\x27\x57\x6f\xd9\xde\x99\xb4\xbc\x03\xeb\x1e\xf6\x7d\x58\x36\x9a\x0d\xc5\xd3\x3d\x67\x63\xe6\x89\xea\x73\x74\xdf\x64\xb2\xba\x85\x0d\x64\x5f\xb7\xad\x3c\x81\x15\x41\x6d\xc0\x6a\x03\x67\xad\x63\x5d\x2b\x29\x04\x34\xaa\xa8\x8e\x56\xc3\xb0\x68\xe0\x8b\x8d\x06\xe6\xa0\x65\xe1\xf8\x6e\x85\x16\x79\x52\xda\x4d\x0e\x69\x0f\xbb\x67\x05\x7f\xb6\xb9\xcd\x52\xac\xd3\xad\x33\x26\xd9\xdb\xa9\x24\x68\xc7\xa5\xf8\x9a\x6f\xb1\xc4\x06\x55\x9a\xeb\xc5\xe5\xb8\x1c\xb7\x80\x01\x17\xaa\x93\x9d\x28\x87\x41\xd3\x9d\xe8\x30\x12\xc9\x66\xfb\x73\x9a\xf9\xa1\x4a\x70\xdb\x1a\x08\x2d\x96\x24\x9f\x1e\x41\x77\x89\xce\x35\xad\xcd\x00\x25\xbb\xd9\x39\x7f\xe4\x32\x97\x1d\x5e\x79\x11\xde\xe0\x9a\xd7\x38\x46\xde\xb1\xc2\x16\x2d\x43\x56\x16\xeb\x3c\xec\x53\xa0\xf9\x81\xbd\x0a\x2d\xdf\xcc\xe4\x55\xe1\x2b\xdd\xa6\x14\xc3\x6e\xe6\x74\xe8\xf2\x20\x58\x95\x7b\x07\x88\x9a\xe4\xc3\x97\x27\x56\x4b\x0f\x30\x35\x91\xed\x00\xd4\x86\x5b\x92\xd5\xaa\x1b\x6c\xc5\x6c\x65\x07\x5d\x23\x0e\x8c\x0b\x93\xaf\x25\x5d\xeb\x79\x24\x4e\x92\x15\xed\xa1\x27\x74\x79\xe3\x77\x63\xc8\x1f\x12\x66\x4f\x94\x84\x96\xcd\x07\x14\x16\x44\xd1\x89\x54\x25\xa2\xfb\x75\xf3\xb4\x48\xc8\xa8\x47\xb5\xa2\x39\x47\x1c\x0e\x16\x33\x62\x00\x07\x90\x9a\x31\x77\x74\xb1\x89\x47\x8d\xd0\x15\xe5\xbe\x05\x44\x59\x1d\x41\x46\x39\x00\x63\x7c\x41\x41\x2a\x3c\x89\xfb\x9c\x99\x45\x55\xc6\xb9\xca\xd0\xd9\xf5\xf3\xe7\xee\x02\x2d\x9b\xd0\x64\x57\x8c\x7c\xe8\x87\x36\x84\xea\xc3\x57\x2a\x69\x51\xec\xeb\xe8\x69\x6f\x67\x85\x49\x9f\x64\x44\xd3\x72\x10\x36\x55\x95\xda\xb9\x17\x41\xec\xfc\x70\x78\x7e\x7a\x7a\x70\x76\xd4\xed\x09\xde\xdd\x67\x6e\xe3\xe5\x4d\xe0\xf2\x30\x3b\x5f\xca\x10\xa7\x14\xc0\xaa\x90\xb3\x6e\xa7\xa6\xce\x6e\xeb\x27\x1b\x1f\x27\x04\xc7\xbe\x7a\x2a\xc1\x4e\x9f\x6b\x9f\x41\x8f\x21\xd8\x8f\xfc\xf4\xfd\x0d\x32\x65\xae\x3b\x2a\xbf\x91\x99\xbc\x74\x44\x54\x3b\xa6\x9c\xce\xa5\xb5\xe7\x20\x62\x40\xd6\x50\xa3\xd2\x3a\x52\x35\xda\x8e\x90\x57\x5b\x1d\x57\x64\xe1\xd0\xb2\x66\xbf\x5a\xeb\x7a\xa5\x76\xca\x35\x54\x89\xd7\x4f\xb9\xb0\x25\x17\x7d\x2d\xb3\x0d\x69\x37\x53\x37\xf2\x7a\x39\xff\x16\x0a\xea\x79\x89\x8a\xa2\x86\x65\xec\x19\x6a\x63\x65\x44\x20\xd0\x23\x32\x99\x6f\xcc\x72\x9f\x92\x6d\x17\xd3\x29\xd4\x8b\xd9\x97\xf4\xa0\x39\x05\xc4\x63\x54\x36\x60\x81\x4b\xbd\xae\xb8\x0a\xf0\xf0\xfc\xec\x6a\x7e\x7c\xb2\x5f\x2d\xde\xda\x5a\xc1\x9f\xe3\xd5\x77\x2a\xf0\x6d\x24\x1b\xcc\x68\x15\x70\xb4\x6c\x91\xd5\x8a\xc3\xc0\x74\xd4\x36\xbb\x60\x2a\x06\xbe\xf5\xec\x48\x38\x15\xab\xfa\xb9\x83\x2f\x0c\x8e\x5d\xa5\x1b\xe7\xeb\x6a\xeb\x36\x88\x8e\xc8\x13\x81\x7c\x2c\xa8\x3f\x5b\x6b\x88\x6b\xa9\xea\x06\x32\x36\x42\x61\xc3\x7d\xd0\x59\xe5\x29\xc7\x66\x3b\x29\x5d\xad\xe8\xcd\x85\xfe\x83\x2c\xca\xe8\xc8\x6c\x00\x22\x1f\x44\xf6\x67\xc3\x57\xa7\x82\x96\xd3\x5f\xd2\x1f\xc2\xd2\x31\xd1\x80\xea\x91\xd4\x4a\xfa\x3c\x45\xf7\x24\x44\x0e\xf0\xf7\xdc\xec\x3c\x99\x57\x67\x23\xf5\xeb\x0b\xde\xe5\xf0\xf0\x3e\xc1\xb7\xdf\xe7\xcf\xa7\xb5\x77\xf8\x6e\xd5\x55\xab\xd6\xce\x69\x75\x5e\xdb\x2d\xb2\x42\xa5\xaa\x9d\x2a\x76\x5b\xa6\x6e\x2c\x7e\x52\xdc\x74\xd7\xa9\x1a\x11\x29\x7f\xe4\x59\x14\x7e\x87\x16\x6e\xd5\xe5\x80\xfd\xc3\x7b\xe4\xc6\x9e\x91\x51\x4e\x9d\xa6\x13\x9d\x2d\xc9\x4d\x1b\xa6\x29\xd5\x03\xd4\x14\x97\x6c\x5e\x50\x5c\x91\x59\x19\x55\xf5\x53\x5f\x95\x71\xd3\x7d\xa6\x88\x4d\x70\xcc\xe2\x6a\xe0\x4a\x7f\x42\xcc\x33\x42\x71\xde\x96\x97\xc0\x95\xd4\xdc\x29\xc8\xbd\x9a\xbc\x96\x3e\xb2\x7e\x6c\xcd\x15\x73\x0a\x1a\x68\x6b\x1c\x71\xb4\x42\xcf\x86\x1a\x0c\x62\x08\x7d\xea\xae\xc1\x0b\x90\xee\x5c\x10\x8e\x79\xc7\xc2\x97\x1f\xab\x27\x6f\x63\xb9\x75\x34\x4f\x02\xf6\x0b\x88\x0a\x39\x41\x0f\xb3\x42\xe5\xd6\x89\xe0\xc4\x75\x8e\xd8\xc9\x0c\x98\xe2\x79\x91\x9d\xc1\x02\x21\xb9\xb4\x45\xbd\x08\xe1\x09\xee\x15\x08\xa3\x31\x08\xf5\xe6\xd4\xc6\xaf\xc6\x50\xcb\x94\xef\x9c\xc9\x01\xcd\xab\x94\x81\x81\x1e\xe5\xc8\x07\xf8\x0b\xef\xf0\x10\xbe\x91\x0f\x69\x64\x2f\x70\x21\x8b\x0f\x58\xad\x99\xf2\xa4\x2d\x38\x35\xae\xca\xf1\x09\x82\xf7\x43\x99\x30\xb7\xde\xd5\x20\x9b\xf1\x6f\x41\x4b\xeb\x8c\xfd\x87\x1f\xff\xc3\xff\x1b\x00\x00\xff\xff\x96\x8e\x8b\x21\xa1\xcc\x02\x00")
func cf_i18n_resources_fr_fr_all_json_bytes() ([]byte, error) {
return bindata_read(
_cf_i18n_resources_fr_fr_all_json,
"cf/i18n/resources/fr_FR.all.json",
)
}
func cf_i18n_resources_fr_fr_all_json() (*asset, error) {
bytes, err := cf_i18n_resources_fr_fr_all_json_bytes()
if err != nil {
return nil, err
}
info := bindata_file_info{name: "cf/i18n/resources/fr_FR.all.json", size: 183457, mode: os.FileMode(436), modTime: time.Unix(1426081216, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _cf_i18n_resources_it_it_all_json = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xec\xbd\x7b\x77\xdb\x46\xb2\x2f\xfa\xff\xfe\x14\x7d\x7d\xff\xb0\x73\x97\x28\xdb\x49\x66\xd6\xbe\xda\xeb\xac\x39\xb4\x44\xdb\x3a\xa3\xd7\x48\x94\x67\xb2\xe3\x2c\x07\x22\x5b\x24\x62\x10\xc0\xe0\x21\x85\xc9\xf6\xf9\xec\xa7\xab\xba\xf1\x22\xd1\x8d\xae\x06\x48\x79\xcf\xc9\xac\x35\xb1\x08\x74\x57\xfd\xaa\xd1\xcf\xea\x7a\xfc\xf8\x6f\x8c\xb1\xdf\xe1\x3f\xe2\x7f\xcf\xfc\xf9\xb3\x23\xf6\xec\x63\xf8\x31\x9c\x9e\x5e\x1d\x7d\x0c\x9f\x1d\x14\x6f\xb2\xc4\x0b\xd3\xc0\xcb\xfc\x28\xd4\x15\x59\x45\x73\xff\xde\xe7\x40\xe2\xde\x0b\x52\x0e\xcf\xbf\x1c\x68\xe8\xff\x10\xe5\x09\xfb\x5f\x37\x97\x17\x2c\xcd\x12\x3f\x5c\xb0\x74\x1d\x66\xde\xaf\xcc\x4f\x99\x1f\x3e\x78\x81\x3f\x3f\x64\xec\x2a\x89\x62\x9e\xd4\x5e\x65\x4b\x3f\x3d\x62\x6c\x76\xcf\x52\x9e\x8d\x92\x3c\x0c\x45\xd5\x11\x0f\x1f\xfc\x24\x0a\x57\x3c\xcc\x46\x0f\x5e\xe2\x7b\x77\x01\x1f\x2d\x92\x28\x8f\xd9\xf3\xdf\x3f\x3e\x0b\xbd\x15\xff\xf8\xec\xe8\xe3\x33\x41\x36\x17\x7f\x1d\x6c\x3f\xfa\xf2\xdc\x28\xe9\xd7\x0b\x76\xef\x6d\x9e\x66\xde\xe2\xbf\x4d\x9b\xef\x06\x2c\xa1\xcd\xff\x3f\x36\x5d\xf2\x94\x0b\x30\xc9\x83\x3f\xe3\x2c\x0e\x84\x9c\x6c\xe9\x3d\x70\xe6\x85\xcc\x4b\xd3\x68\xe6\x7b\x19\x9f\xb3\x59\x94\x66\x87\xec\x38\xe1\xa2\x0d\x84\xac\x5e\x59\xc3\x0f\x85\x10\xa1\xf8\xe3\xd1\x0f\x02\xf1\x6b\x26\x5a\x05\x84\x94\x35\xb4\x2d\x88\x8c\xd9\x9c\x87\x11\x50\x6f\x61\x9f\xc6\x7c\x26\xa4\x98\x21\x9d\xb4\x0e\xe5\xd1\xcf\x96\x82\x05\x5f\x1d\xb2\xd3\xfb\x36\x24\xd1\xbd\x44\x90\xad\x63\x0e\x6d\x3e\x03\xd4\x7c\x7e\x20\xca\x02\x31\x89\xf4\x8e\x4b\xb0\x09\x9f\x1f\xb6\x36\x5d\x96\xe4\xa6\x96\x1b\xc7\xb1\xf8\xf0\x5e\x22\x08\x1b\xa7\x21\x4d\x39\xc2\x37\x02\x0a\xbf\xff\x7e\x28\xfe\xb9\x10\x1f\xfd\xcb\x17\xf6\xe8\xa5\x05\x49\x96\xa7\xf0\x39\x54\x83\xaf\x56\x5e\x38\x67\x3f\x8b\xc2\xc7\xf2\xef\x2f\x5f\x7e\xee\x04\x37\x0c\x69\x82\x3c\x17\x11\xf3\x62\x9f\xf1\x70\x1e\x47\x7e\x98\xc1\x40\xd0\xf7\x93\xae\xe2\x04\xbe\xd7\x51\x9e\x71\x96\x45\xf0\xe9\xf3\x70\xe5\xc5\xb1\x10\x52\x08\x27\xba\x20\xc3\x8e\x10\x66\xc1\x9a\xa9\xe7\xa2\x98\xe8\x62\x82\x73\x1c\xf8\x33\x44\x63\xc2\x38\x1c\x69\x82\x3c\xb0\xbc\x31\x76\x2b\x46\xef\x73\x31\x9d\xac\xbc\xe4\x33\xcf\xc4\x00\x12\x03\x60\x94\xb2\x9b\xc9\xf5\x87\xd3\xe3\xc9\x73\xe0\xf6\xe0\xf3\x47\x31\xd4\xd2\x59\xe2\xc7\xc0\x2e\x85\x11\xe2\x87\x73\xff\xc1\x9f\xe7\x5e\xa0\x46\x5d\x04\x63\x69\xe1\x3f\xf0\xb0\x18\x51\x26\x89\xf7\xc9\x9c\xda\x26\xe3\x34\xf5\x17\x21\x4b\xa2\x80\xa7\x72\xb6\x78\x0e\xfd\x56\x7e\x07\x01\x39\x11\x1d\x1d\x66\xdf\x28\x59\x8c\xa0\xd0\x73\x06\x7d\xbb\xbd\x4c\x1a\x0b\x99\x64\xa9\xae\xd6\xd8\x39\x5b\x6a\x3b\xe0\xd7\x01\xf2\x6f\xa7\x5e\xb2\xe0\x59\x39\x72\xf1\xc3\x64\xf8\x8c\x85\xe2\xf3\x20\xb7\x2e\xf1\x5c\xa9\x39\xa3\xd6\xd1\x17\xed\x67\x8d\xd5\x8a\x06\x15\x61\xae\x7a\x7d\x10\x89\xc5\x9b\x8d\x3c\x36\xbe\x3a\x65\xa3\x51\xfa\xd9\x8f\x47\x69\x1a\x8c\x70\xf1\x47\x48\xcf\x05\x23\x2c\x0a\x33\x98\xa1\x94\x00\x97\xe6\x71\x9c\xf0\x54\xee\x10\x18\x4f\x92\x28\xe9\x92\x72\xff\x38\xac\x5b\x4a\xfc\xf5\x46\xac\xb2\x62\x01\x39\xf7\x42\x6f\x21\xb6\x40\x23\xb9\x79\xe0\xd8\xe9\x57\xf8\x10\xa7\xc1\x3b\x59\x8c\x79\xb3\x59\x94\x8b\xe9\x1d\x5e\xc7\xde\x1a\xb6\x42\x62\x9a\xb8\x8f\x0c\xeb\xd7\x6e\x98\x50\x64\x3c\x7e\xfb\xe9\x62\x7c\x3e\x61\x5e\x2e\x46\x3b\x6c\xc9\xfe\x27\xff\xd5\x5b\xc5\x01\x3f\x14\x2b\x26\xfb\xf8\xec\xe3\xc7\x8f\xcf\x62\xb1\x75\x79\x8c\x92\x39\xfc\xfd\xf1\x19\x7b\x21\xa6\x42\x4f\xec\x4b\xfe\x99\x8b\x9d\x8f\xd8\x2a\xde\xc3\x67\x14\x8b\x45\xc8\x8a\x82\xdf\x98\x04\xde\x35\xc7\x21\xa5\x5f\xad\x4b\x0e\x00\x03\xba\xab\xc2\x70\x2f\xba\x63\xf1\x4a\xcd\x95\x9e\x9c\x37\xbe\x31\x7f\xef\x9d\xb3\x74\x91\x7f\x16\xc5\xeb\x51\x2a\x8e\x03\x62\xf5\xbb\xb9\xbc\xbd\x3e\x9e\x8c\xc6\x57\x57\x6c\x3a\xbe\x7e\x37\x99\xe2\x9f\x3f\x8e\xa2\xe2\xe7\xe5\xf5\xbb\x9f\xc4\xef\xb4\xf8\x7d\x73\x35\x3e\x9e\xc0\x93\x51\x18\x8d\xc4\xc0\x83\xcd\xd7\x4f\x76\x8d\xb0\x5b\xbe\x2e\x2d\x21\x67\xa2\x17\xd1\xca\xcf\xa0\x93\x25\xf0\x85\xd4\x60\x93\x2d\x0f\x33\x8c\x2c\x24\xb6\x72\x3c\xf1\x66\x99\x58\xf3\xc5\xd6\x68\x34\x2a\x69\xe0\xee\x3c\x4e\xa2\x55\x9c\xe1\x47\xbb\x8b\xb2\xa5\x65\xaf\xd8\x0b\x7b\xf7\x76\x11\x93\x6e\x1a\xb1\x17\x9b\x9c\xc4\x46\x48\xa0\x64\x79\x12\x00\xbc\xe8\x2e\xf3\x44\x59\x8f\x45\x21\x1f\x65\xbe\x10\x60\x0b\xbc\xd5\x04\xb1\x33\x96\x3d\xe4\xcf\xb7\x87\xec\x28\xde\xe9\x34\xb9\x63\xc6\x3b\x68\x8b\x1d\x4e\x9a\xbb\xe6\x3c\x78\x6b\xc4\xde\x9f\xfe\xf4\x18\x5d\x9f\xb0\x17\x52\x1b\xb0\xd6\x8c\x6a\x71\x68\x15\x5b\xbb\x1c\x96\xf3\x74\x88\xb6\xe8\xcd\xd7\xa5\x25\xe2\x3c\x5d\x8a\xbd\xd9\x95\xfc\xf5\xe3\xe8\x8e\xbd\xb9\x3d\x3d\x3b\x11\xd3\xf4\x5f\xf1\x11\xcc\xd5\x33\x76\x7c\x79\x7e\x3e\xbe\x38\x81\x1f\x73\x76\x72\x79\x3e\x3e\xbd\x80\xbf\xef\x99\x78\x7a\xfa\x76\x72\x33\xfd\x74\x35\x9e\xbe\xb7\x5c\x40\x0a\x96\x43\x72\xb3\xd5\xa0\x6c\xc2\xe8\x25\x83\x35\xa4\xce\xaf\x71\x99\x2c\xc6\xf9\xdc\xcf\x22\xd8\x4c\x5e\x73\x6f\x3e\x8a\x42\xb1\x40\x88\x8d\x23\xee\x89\x23\x38\x39\xe0\x96\x11\x7b\x42\xc2\xe3\x28\xc9\x52\x33\xd2\xde\x24\x89\xf8\xab\xcd\xf0\x69\xf8\xe0\x37\x37\xc3\xd0\x8f\xd3\x03\x71\xc4\x0c\xf8\x4c\x6e\x83\x67\x4b\x2f\x5c\x28\xcd\xdb\x01\x3e\x11\xe7\x4f\xd0\xbe\x89\x23\xba\xd8\x31\x07\xbe\x58\x4c\xbb\x05\xdc\x31\x4f\x4a\x0b\x5c\x79\x62\x7a\x4a\x97\x51\x1e\xcc\x41\x1d\xe3\xb1\xdf\xfc\x98\xdd\xfb\x01\x3f\xa8\x56\xbc\xfa\x43\xf1\x59\x3c\x31\x1d\xcc\xbc\x80\xcd\xfd\x44\x40\x8c\x92\xf5\x21\xbb\x8a\x52\x1f\x44\x04\x2d\x8e\xc7\x62\xfc\xf5\xc0\x71\xdb\x20\xe4\x04\x69\xb2\x54\xac\xa4\x7e\x94\xf8\xd9\x5a\xca\x20\x4a\xa6\x11\x6a\xce\xee\xc5\xf6\x41\x90\x7c\x14\xbb\x2a\xe0\xb6\xf4\x17\x4b\x6e\x52\x86\xee\x06\x75\x38\x14\x5a\xc2\x90\xbe\x82\xd1\xb8\xca\x83\xcc\x17\xd3\x29\xa8\xb8\xca\xe5\x42\x74\x06\xff\x5e\xd0\x35\x5d\xda\xd0\x09\x50\x3a\xc6\x0d\x2c\x58\xd5\x48\xfc\x00\x8a\x29\xb1\x0c\x88\x1e\xa8\xc6\x5c\xd9\x15\x41\xc5\x9d\x8a\xdd\x90\x3c\x03\xe3\x42\x67\x46\x3d\x18\x69\xb2\x3c\x27\x5c\x6c\x60\xf1\x8e\xa1\xed\xec\x8b\xed\x27\x39\xa3\x52\xad\xc4\xc1\x11\x9e\xfd\x1c\xb6\x3b\x5e\x64\x89\x2d\xa6\x1a\x78\xc2\x43\xb8\x44\x61\xf7\x02\x66\x9e\xa8\x3d\x4c\xa9\x62\xb4\xfc\xa2\xbb\x60\x45\x91\x17\xae\x48\xd4\x6e\x1d\x76\x1d\x62\x18\xcc\xc4\xa8\xbe\x93\x77\x33\x77\x69\x14\x80\xd6\x59\x30\x4b\x38\x60\x7f\xe0\xb2\x0c\xce\x14\x30\x4b\x1c\x7e\x0c\x05\x91\xd3\xac\x98\x57\xe4\xb5\x0e\x03\xb5\x3e\x8c\xad\x24\xf1\xd6\x72\x70\xe1\x2d\x56\x74\xf7\x8b\x98\x46\xe0\xf2\x2a\x85\xd3\x81\x54\xd9\xde\xc9\x2b\x00\xce\x92\x3c\xe0\xa9\x71\x06\xfb\x8a\xc1\xee\xb3\xcd\x25\x05\xf8\xb3\x2e\x09\x0a\xd7\x4b\x1a\x49\x17\x8b\xbf\xf1\xc4\xd6\xfc\x12\xeb\xc0\x34\x8e\xb4\xe1\xcc\x0b\x93\x39\xf4\x47\xdc\x5e\x40\xcd\xf4\x9f\xb9\x97\x70\x76\x27\x0e\xba\x9f\x61\x05\x80\x97\xf5\x3b\xbd\xa5\x2f\xe0\x49\xe6\x0c\x0a\x26\xfc\x9f\xb9\x58\x4c\xf0\xb4\x93\x29\x29\x04\x63\xb8\xed\x14\x2c\x3e\x80\xa2\x90\xfd\x92\x8a\xc9\x0b\xc5\x53\x9b\xe6\x23\x7c\xf9\x23\xfe\x57\x34\xa8\xfa\x57\xd4\x7a\x26\x9a\x31\x8b\x66\x51\xf0\x51\x34\xed\xc7\x67\xd9\x2c\x86\x9b\xcb\xea\xb5\x10\x53\xcc\x86\xd8\x85\x64\x89\xd7\xaf\x0e\xbf\xfd\xfe\xfb\xc3\xd7\x87\xaf\xff\xbd\x59\x52\x4e\x1a\x58\xe6\xbb\xef\x5e\xfd\x59\x9c\xd3\xe4\xbb\x2f\xf8\xef\x4f\xbb\xec\x95\x7f\x7c\xce\x27\xfc\x9c\x94\x71\x8b\x6b\xae\x17\x88\x7d\x0c\x4e\xc6\x70\x72\xf5\x8a\x6b\x98\xe2\xac\x20\x1f\xea\x2f\x72\x5c\xc9\x50\x70\xfe\x38\xf2\xd9\xc5\xed\xf9\xa7\xd3\x8b\x9b\xe9\xf8\xe2\x78\x72\x03\x07\xaa\xcf\xec\xe4\xf4\xe6\xaf\xf0\xd7\x8a\x9d\x4f\xce\x2f\xaf\x7f\x80\xbf\x43\xf6\xfe\xf2\x66\x0a\x7f\xc5\x0c\x0f\x35\xa8\xbf\x13\xd5\x8e\xb1\x68\xc6\xa6\xa7\xe7\x93\xcb\xdb\x69\xc7\x49\x69\xd7\x1c\xed\xa5\xf7\xe6\x30\x0a\x45\x7b\x1a\x3e\x41\x5b\x19\x7b\x0e\xf3\x88\xcb\x5b\x57\xfe\xab\x2f\xb6\xb3\x70\x40\xc7\x4d\x87\x9e\x5f\x77\x0d\x7b\xee\xb0\xeb\x0e\xc4\xc6\x68\xbe\x2e\x2e\xd1\xf5\x7c\x4d\x65\x1d\x39\x46\x70\xbd\x6c\xc9\x71\xa3\x2c\x89\x23\x5f\xc5\xd9\xda\xc8\x67\xa3\x04\x89\x3a\x7c\x0b\x8f\xe1\xad\x14\x1c\x7c\x0e\xc4\x31\x91\xc3\x0c\xd9\x50\x5b\x1e\x30\x7e\xb8\x38\x64\xcb\x2c\x8b\x8f\x5e\xbe\x5c\x47\x79\xf2\x09\x3e\x1a\x28\x70\x8c\xc0\x86\x23\x4e\x97\xe9\xc1\xf3\x03\x9c\x54\xc4\x74\x0c\xf4\x4c\xa3\xc0\xa6\x0e\x19\x81\xd8\x9b\xc6\x11\x1e\xb1\xc5\x49\x51\xca\xbd\xf2\x3e\x8b\x75\x45\xec\x5a\x99\x9f\xc9\xa3\xae\x6c\x9b\x38\xc8\x17\x8a\xa5\x61\xd3\x37\x14\x5d\x7b\x49\x80\xdd\x7d\x94\x87\x86\x6e\xde\x52\xc4\x9e\x7e\xc2\x57\xd1\x43\x79\x26\x86\x09\x21\xba\x47\xb4\x29\x1c\xed\x7c\x9e\xea\xf9\x12\xaa\xda\x5f\x38\x3f\xbb\xc2\x06\x13\xab\x65\xb1\xb0\x97\xe2\x15\xab\xba\x6a\x7d\xc1\x79\xee\x65\x9e\xc1\x66\xa3\x0f\x2d\x6b\xc4\xdf\x94\x73\x0c\xce\xa7\x86\x23\x83\xa1\xa4\x35\xb7\x71\x69\x99\x14\xf8\x21\x18\xe0\x44\xa8\x28\x29\x2e\x77\xe4\xba\x7d\x1c\x44\xf9\x9c\xbd\x05\x39\x13\xfd\xb4\xd5\x87\x94\x3d\xde\x93\x93\x97\xd7\x62\xb5\xfd\x30\x61\x57\x67\xb7\xef\x4e\x2f\xb4\x70\x36\x5f\xdb\xea\x60\xb6\x38\xb0\xeb\xc9\xd5\xe5\xcd\xe9\x54\xac\xf0\x7a\xd9\xad\x2a\x11\xa4\xfc\x00\xfb\x8c\x13\x03\xbf\xcd\x02\xf6\xb4\xaf\x4e\x4b\x53\x30\x3d\xfd\xd6\x42\x4e\x3c\xd8\x8b\x72\x2d\x48\xc5\x62\xe0\xc5\xfe\x61\xed\xb2\x40\x7f\x07\xe5\x44\xc3\x09\xe1\x91\x15\x86\xa3\xbe\x5c\xa4\x9d\xa0\x3f\x51\xbf\xbf\x7c\xb1\x63\x6b\xa8\x36\x10\x0e\xf6\x02\xde\x3f\xf0\x24\x15\xfc\x8b\xd7\x1f\xe4\xcf\x2f\x5f\xec\xbe\x50\x0f\xaa\xee\x52\xb8\x34\x65\xcf\x76\xbc\xba\x31\xb0\xaa\xbf\xb4\xa7\x39\x83\x33\x26\x9c\x6d\x95\xfd\x38\x4b\xf9\x2c\x07\x35\x33\x43\xfb\xe5\x14\xb7\xf2\x02\x79\x71\x83\xf6\xc5\x60\x56\xdd\x8f\x98\x03\x66\x65\x7f\xbd\xc1\x06\xb8\x34\x98\x58\x00\x26\x53\xb2\x47\x3b\x17\xc7\x21\x34\x5a\xab\x6d\x9e\x70\x4f\x61\x58\xcc\x6c\xea\x10\x11\xc0\x25\x44\x52\xd8\xb9\x82\xf6\x24\x8e\x3b\xf8\x1b\x6b\x50\xb8\x63\x8f\x40\x42\xa2\x31\x6f\xaf\xcf\xc4\xf0\x04\x8a\x9b\xc6\xcb\x42\x4e\xb8\x4a\x13\xcf\x2e\x93\x85\x7a\xf6\x52\x6a\x60\xe1\x21\xaa\x74\xd5\x63\xf9\x5d\x6e\xcb\xef\x72\x78\xa8\xdf\xa8\xec\x1f\x80\x7d\xdb\x04\xbe\x20\xd4\xb4\xca\x2e\xf6\x72\xea\xcb\xdf\x71\x00\x8f\xb6\xf1\x41\x20\xad\x92\x45\xcf\x90\xba\xae\xe3\xb7\xc5\xa6\xe7\xa5\x07\x94\x0e\x19\xbb\xe6\x78\xcd\x0d\x04\x36\xc8\x16\xdb\xa3\x0e\xf2\xd0\x04\x73\x9e\x40\xfb\x28\xbd\xb8\x2f\x55\x61\x50\x00\xdb\x14\xf5\x56\x62\x48\x18\x5a\xfc\x5f\x44\xac\x9e\xdf\x31\x45\x87\x85\x9a\x20\x68\x85\x22\x01\xc2\x2c\x28\xf7\xf3\xb2\x43\x3d\x17\x42\xfe\x10\xe5\xa2\x3c\xe8\x28\xb3\x64\xcd\xf2\x50\xa1\x03\x49\x74\xb5\x10\xb4\x90\x3b\x2c\x44\x91\xf7\x52\xaa\x78\x5d\x6a\x3f\x7c\x88\x3e\x9b\x5a\x50\x00\x78\x1f\x3d\xf2\x07\xb8\x6f\x14\x67\xe6\x42\x5d\x7a\xef\x27\xe2\x28\x74\x9f\x07\x01\x40\x12\xc4\xc0\x49\x03\x79\x32\x7f\x15\xc3\xce\x5a\x1c\x93\x1a\x58\xe1\x15\x1e\x09\xe0\xc7\x36\x62\x89\x4d\xdf\x79\x7e\x96\x8d\xf9\x47\x5b\xba\xb4\xa5\xf5\x31\x23\xa8\x59\xee\xa3\x6e\x5a\x39\xe1\x80\xde\xb9\x38\xd7\x49\x0b\x07\x1f\xef\xc6\xe0\x4a\x4c\xd4\x11\xd3\xa3\xfe\x08\x3d\x0c\x51\xc2\xa0\xa3\xb3\xc3\x2f\x6a\x32\x40\x77\x23\xca\xb5\x06\xe9\xfd\xbf\x82\x1f\xee\xe4\x3b\x58\x90\x1d\xf6\x4b\x6c\x31\x1c\xe6\x5b\xb4\x90\x75\xfe\x1a\x69\xc4\xe6\x3c\xe0\x78\x51\x5c\xba\xfb\xe0\xbe\xc1\xd4\xd8\x56\xb5\xec\xdb\x52\xee\x41\x56\xb9\x98\x29\xee\xb8\xf2\x79\xe0\x60\x54\x22\x84\x2b\x7e\x2b\x17\x3e\xa3\xdb\x87\x3b\x21\x7b\xac\x62\x03\xa5\xe7\xdf\x78\x49\xa2\x89\x6b\xbd\x2f\x35\xf9\xea\x0a\x4c\xd4\x0d\xf4\x4a\x43\xbb\x4a\x24\x0c\x8d\x8d\x61\xf3\x92\xc1\xb0\xf1\xb1\xae\xe8\x8e\x05\x45\x7c\x8c\x92\xcf\x68\x18\xf4\xd9\x8f\xe3\x6a\x77\x8b\x9e\x92\x80\xc5\x1a\x20\x8d\x5a\x3f\xd4\x6a\xc4\xde\xa1\xc6\x52\x2c\xa3\xb0\xa5\x96\x23\x5a\x16\x22\xb4\x2b\x91\x1c\x05\xb7\x38\xaf\xa3\x8b\x0d\xf4\x22\x30\xa9\x9a\xfb\xde\x22\x8c\xc4\x0a\x3c\x4b\xe5\xbd\x72\x10\x2d\xf0\xc6\xd5\x84\xd6\x81\x08\x05\x63\x6a\x50\x1a\x35\xdf\xda\x53\x95\xde\x6f\x9e\xbc\x1d\x55\x27\x3e\xe3\xec\xdc\x59\x81\xce\x5b\x1e\xb5\x24\xc1\x39\xbf\xf7\x43\x69\x0d\x87\x2d\xd6\x31\xdb\x39\x90\x70\xc5\x07\x6e\x7d\x92\x20\x28\x06\x6c\x21\xe9\x6a\x91\x51\xc8\x79\x9d\x08\xc2\x5c\x89\x88\x41\x4c\xad\x1f\xc0\x6d\xbd\x83\xeb\x76\x31\x22\x1f\x39\x15\x05\x78\xf8\xbe\x16\xff\xca\x63\x3b\x40\x87\x27\xd2\x8d\x51\x39\x5d\x56\x47\x77\xf9\x58\x1c\xe0\x9b\x87\x77\xf9\x18\x8f\xf0\xe5\xf1\xbd\xe1\xb7\x69\x54\x21\x3c\x31\x9c\x7d\xb7\xdb\xd3\x34\xcf\x0e\x5a\x61\x43\x9d\x27\xc8\x17\x4f\x3e\xe1\x13\x89\xb1\xfc\x2a\xa9\xfa\x1e\x15\x3e\xf1\x8f\x17\xfa\xbf\xa1\xa8\x25\xc4\xdc\x4e\xef\xf4\x34\x28\x5c\x5a\xa9\x36\x67\x0a\xc2\x7f\x83\x3f\xd4\x42\x5b\xc7\xe5\xac\x80\xdb\x19\x23\x7b\x59\xb3\x0c\x6c\x1a\xf0\x48\x2d\xb6\xeb\xd1\x63\x18\x44\x9e\xd8\x0b\x8b\xd3\x43\xb2\x96\xf6\x53\x78\xef\x8b\xd7\x85\x21\xcf\xc0\x8c\x05\xbc\x68\x8d\x62\x0d\x41\xd3\x51\x82\x95\xbf\x48\x3c\xa9\xce\x54\x7b\x9e\x53\x15\x3d\xe3\xa4\x72\xd5\xef\xf8\x2a\xbd\x09\x92\xb0\x87\x19\x5e\xc4\xa0\x3d\x9f\x38\xd3\xa1\xe2\xe4\x4a\xfc\x21\x3f\xf3\xcf\x70\xc4\x2b\x8e\x77\x3f\x6f\xee\xe4\x7e\x2e\x2c\x15\xee\x13\x5e\x98\xf4\x95\xd1\x42\x7e\xde\x86\x5c\xd4\xaa\x85\x34\xf1\x54\x04\x14\x76\x1c\x85\x19\x68\x5a\xc0\x2c\x44\x7c\x91\x95\xd8\x20\xa4\xa2\x65\xc0\xf0\xdb\xbf\x47\x65\x8d\x38\x97\x86\x9f\xe5\xe9\x14\x63\xc1\x48\x27\x6a\x73\x43\xfe\x0b\x49\x67\xff\x55\x73\x50\x96\x65\x10\x03\x43\x9a\x53\x0b\x21\xc2\x51\xc3\x31\x53\xdf\x66\x94\xba\x2e\x88\xc0\x98\xc5\xd4\xf9\xf5\x25\x9d\xb8\x89\x1d\xe6\x52\xcc\x54\xfc\xd7\x18\x0e\x9e\x10\x38\x48\xda\xd1\xc0\x36\xff\xce\x9b\x7d\x46\xf5\x74\x24\x8e\x03\x23\xaf\x26\xf9\x61\x11\xe5\x0a\x03\x1e\xfc\x5c\x0f\x05\xf0\x31\x7f\xf5\xea\xbb\x59\x71\x77\x88\xbf\x38\xb8\xbb\xc9\xe7\xd0\x62\xc5\xb3\x48\x3d\x13\x6b\x44\xf1\x28\x55\x8f\xa4\xf1\x3a\x3e\xfc\x59\xb9\x82\x96\x68\xa4\x39\x7f\x13\x8e\x55\x73\xfd\xab\x89\x6a\xfd\xbd\xdf\x9c\x9e\x9d\x9d\x5e\xbc\x03\x47\xb5\xf1\xbb\xc9\xb5\xb6\xb1\xb4\xe5\xec\x39\x81\x2b\x1f\xda\x6a\xea\xcf\x79\xad\x65\x68\x1c\xc0\x59\x50\x7f\xa1\xdc\x56\xc4\x9e\xbe\x0f\xb6\xcd\x9b\x1b\x1f\x8b\x73\x9c\x7d\xc5\xfe\x58\x40\x53\x58\x18\x7a\x6d\x5e\x54\xab\x58\x40\xe0\x3a\x0c\x4a\xc5\xe2\x3e\xbb\x16\xf4\x47\xaf\x12\xdc\x3d\xc3\xbd\xca\x5e\x5c\x8d\xef\x4d\x76\x33\x43\xba\xec\x1b\xe1\xc5\xba\xaf\xbf\x09\x35\x49\x68\x40\xa8\x3b\x9e\x3d\x72\x1e\xc2\x46\xab\xb9\xa0\xe3\x34\xd5\x54\x1e\xfa\xf3\x4a\x77\x68\x04\x3b\x0c\x61\xb2\x2c\x76\xe7\x9a\x39\xbf\xf7\xf2\x20\x4b\x9b\xfd\xda\xd6\x44\x63\xa7\xbc\x76\x24\x71\xd9\x81\x77\x23\x64\x37\x79\x07\xb9\x64\x57\xd7\xed\x36\x87\x31\x97\xb0\x56\x28\x7c\x2d\xb0\x06\x68\xc7\x21\x81\xda\x1d\xb7\x9f\x14\x0b\xb9\xc5\xea\x06\x39\x75\x44\x36\x12\x5a\xd5\xb5\x47\x94\xfb\xc1\x3c\x86\x3d\xa3\xa0\x55\xfe\x28\x84\x6e\xd8\x3a\xeb\x91\xb9\xd0\x18\x06\xa1\xed\x1d\x95\x1b\x11\x7b\x8c\xeb\x0c\x34\x3c\x9e\xd8\x68\x8b\x79\xac\xb8\x7d\xac\x9c\xd9\x0b\x77\xf0\x3c\xf4\x71\x2f\xb0\x12\x87\x87\x3c\xe1\x18\xca\x2b\xf0\x3f\x73\x76\x7e\xc0\xce\xdf\x1c\xb0\x77\xe8\x23\xff\xee\x8d\x5e\x8e\x76\x46\x5b\xbe\xfe\xee\x0c\x6d\x2f\x8e\xcb\xa0\x56\xf3\xf9\x48\x5a\x64\x8c\xd0\xd7\xe3\x47\xb0\xc2\x2e\xa2\x71\x88\x8e\xfa\x13\x9c\x81\x26\xff\x18\x9f\x5f\x9d\x4d\xa4\x9b\x1e\x44\x74\xdb\xa8\x74\x95\xf8\x0f\xe2\x80\x72\x0d\x7f\x2b\x0f\x96\xd5\x3a\x96\x0f\x0b\x2f\x96\x97\xf0\xc7\x4b\x83\xd7\xd8\x57\x80\xc8\xba\xc3\x94\x58\x63\x5f\x62\xea\x96\x6a\xbb\xa4\x03\xb7\xb8\x0c\xd6\x62\xc1\x10\x0b\xf7\xe8\x19\x10\xee\xec\xf6\x66\x72\x8d\xbf\xae\xc6\x37\x37\x7f\xbf\xbc\x3e\x81\xc6\xef\xe6\x6d\x51\x95\x2c\xfd\x9d\x98\x40\xcb\x80\xd1\xc5\x16\x43\x05\x2c\xbe\x99\x1c\xdf\x5e\x9f\x4e\x7f\xf8\xf4\xee\xfa\xf2\xf6\xaa\x13\x9f\x0b\x29\x37\xbc\x46\xe2\xec\xf2\xfa\x1d\xc3\x98\x68\x76\x88\xc9\xc4\x5c\x31\xcb\x35\xb8\x8c\x0b\xa4\x42\xab\x96\xce\x9c\xb6\x68\x4b\x32\x06\x0a\xd4\x5e\x29\x49\xab\x10\xd6\x03\xf4\x02\x22\x29\x7a\x8b\x16\x8b\x95\x7e\xfd\x35\x15\x25\xf3\x9b\x2d\xf9\xec\xf3\x48\xda\x42\x80\x5f\xad\x8a\xa0\xd4\xc9\xbc\xb3\x1e\x1d\x49\x14\xde\xfb\x0b\x08\xf6\xe7\xa5\xeb\x70\x86\x41\xde\x04\xf9\xc2\x9d\x57\xf4\x85\x4f\xe7\xa7\x17\xb7\x53\xe9\x1b\x3c\x12\xb8\xe0\xb4\x2a\xfa\x00\xfb\x2f\xc9\x41\xfc\x0b\x8e\xf1\x2f\xb3\xe8\x25\x5c\x4c\x60\xa9\x59\x14\x80\xb9\x54\xad\x14\x3e\xc6\xa0\x34\x9c\xbd\x38\xbb\x3c\x1e\x9f\x4d\xc4\xab\xe3\xb3\xc9\xf8\xfa\x9b\xee\x69\x79\x5f\x20\xdd\x3b\xbc\x0c\x24\x3e\x12\xd3\xf9\xa8\x88\x46\xa3\xc2\x67\xc5\xec\x65\xc1\x5a\xea\x13\xa1\x0c\xc6\x68\x47\x95\x62\x59\xfc\x70\xbd\x0a\x0c\x01\x0b\x4c\x8c\xdc\x99\x38\x8a\x59\x8e\x81\x2a\x34\x18\x3a\x85\x33\x74\x0d\x3b\xbd\xbc\x80\xf6\x95\xc6\xd0\xff\x35\x1a\xcd\xfd\x14\xfe\xb2\x96\xad\x2f\x75\xfa\x18\x90\x7c\xe7\xd1\x0a\x82\x1d\xc2\x0c\x6d\x3b\x1c\x3b\x2b\xba\x62\x81\x13\x93\xa0\x67\x8b\x60\xab\xb8\x2b\x5f\x79\x81\xfa\xb7\xdb\xcb\xe9\x18\x03\x00\x4c\xc5\x1f\x67\x9f\xaa\x30\x00\x3e\x2b\x16\x87\xda\xc3\x84\x89\xe9\x57\x0d\xbe\x74\x6b\x15\x91\x63\x12\x03\x27\x8c\x62\xcf\x2f\x97\x9c\x11\x1a\x60\x5a\xf7\x8a\x4d\x64\x83\xb3\x77\x1c\x0b\x72\x32\xc6\x25\x5d\x7d\xfd\x32\x5a\x02\xee\x86\x6d\xe5\xb3\xa7\xe3\xfa\x6d\xcd\x1b\x13\x18\x61\x9f\xa6\x97\x9f\x20\xf0\xc8\xa7\xeb\xdb\xb3\xc9\xcd\xa7\xb7\xa7\x67\xdd\xbb\x88\x61\x88\xbb\xcb\x24\xb7\x2f\xea\xab\xb3\xab\xb3\xf1\xc5\x56\x17\xd8\x3a\x8a\x68\x88\xcc\xef\x3c\x48\x72\xe0\x07\x0f\xe2\x6c\xb7\x5a\xcf\xef\xaa\x54\x31\x4c\x45\xb4\xdf\xa8\x09\x1a\xb2\x51\x11\x44\xa6\xa0\x83\xc1\xb2\xd1\xcd\xbd\xf1\xba\x8c\x7e\x55\xf3\xdd\x17\x05\x31\xf4\x76\xdc\xbd\xef\xd8\x85\xc0\xb3\x80\x7b\xc9\xfc\x0e\x94\x31\xc9\x67\xf9\x6b\x34\xbf\x1b\xad\xfc\x90\x3f\x89\xe8\x8e\x43\xb0\x18\xd1\x70\xa0\x19\x65\xd1\x67\x1e\xb2\xb3\xf1\x9b\xc9\x19\xbb\xba\xbe\xfc\x70\x7a\x32\xb9\x16\xd3\xd8\x5f\x27\xd6\xd3\x39\x99\x5c\xcf\xce\x3b\xba\x4b\x04\x93\xa4\xfc\x8a\x6f\xae\x05\xf9\xeb\xed\x93\x19\x13\x07\x53\xaa\x0c\x4e\xa4\x9d\xe5\x59\x7a\x89\xe8\x0b\x6a\x39\xa4\xad\xa1\xe6\xba\xce\x88\x50\xcb\x28\x27\x55\x88\x78\xad\x42\x5d\xff\x53\x3e\x1a\xe1\x6a\x62\x3d\x43\xb7\x11\xeb\xdf\x77\x31\x9d\x43\x73\x71\x6b\x5d\x64\x77\xb0\xe2\x59\x88\xfb\x44\xc8\x5c\xbf\x37\xda\x7b\x6c\xf5\x6e\x5b\x89\xbb\x6a\xf7\x41\xb5\x35\x55\x6e\x35\x0e\x6e\xe3\x8f\xaf\x27\x27\x93\x8b\xe9\xe9\xf8\x0c\xdb\x2a\x60\x37\x3f\xdc\x9c\x5d\xbe\x1b\x9d\x5c\x8b\xf1\x30\x2a\xf4\x6a\x0c\xa2\x82\xa6\x2a\xf9\x8e\x98\x5c\xc5\xf4\x2d\xe3\x7c\x89\x21\x04\x76\x08\x90\x3c\x45\x3c\x5a\xf1\x0c\xcc\x5f\xc4\xbf\x69\xdd\x3b\xb1\x32\x85\x61\x42\x22\xde\xba\x42\x58\x42\xc6\xe8\xd0\x88\xe2\xa0\x82\x71\x50\x31\x3f\x90\xdc\x3f\x3e\x6b\xa0\x6e\x41\x89\xfe\xdb\x18\xf3\x0c\xd6\x05\x15\x41\xb2\xbc\x67\xd8\xb2\xe0\xe9\x89\xd9\x3a\x73\x56\xd7\x42\xda\xce\x72\xb5\x2e\x56\x51\xd9\x40\xc5\x3d\xda\x41\x2d\x8a\xb6\x2b\x35\x80\x5e\xd0\x43\xac\x68\x8a\x85\xf0\x2b\xe2\x47\xf0\x43\x06\xaa\x96\x52\x50\x78\x25\x62\x02\x2e\x1f\x88\x1e\x98\xae\xd3\x20\x5a\x1c\xbd\x7c\x59\x8b\x4c\x61\xa1\x5d\xfc\xa3\xef\xff\x5f\xd9\xf7\x23\x81\x33\xe0\x43\xf6\xff\x6d\x8a\x5f\xdf\x18\x20\x2f\xfe\x10\x00\x01\x75\x1a\x62\x4d\x7d\x80\xde\xfe\x0f\xb1\x88\x4e\xdf\x5f\x62\x40\xf5\xf7\xec\xfd\x64\x2c\xf6\x99\x2a\xb8\xfa\x58\xec\x51\x60\xdd\x14\x07\xc4\x38\xcf\x18\x1c\x9c\x2c\x16\xf1\xe1\x38\x90\x97\x3d\xe5\xb3\x58\x8b\x58\x7f\xcf\x46\x49\x37\xe6\xaa\xde\x76\x15\x6a\x0b\x4b\x5a\xad\xba\x24\x41\xdb\x16\x8b\x45\x7d\xc7\xd6\x69\xee\x74\x49\x98\x4c\x35\x5d\xd1\x28\x05\x12\x09\x47\x7b\x1d\x77\x04\xf1\xd2\x0b\xc5\x38\x94\xfe\xad\x44\x24\xa6\xba\xae\x88\x9a\x5b\x5f\x7b\x34\xfa\x7a\xae\x48\xa4\x6e\xa8\x4d\x2b\x44\x02\x66\x4d\xc6\x15\xa7\x59\x09\x44\x81\x4a\xa1\xe4\x8e\x56\xbb\x19\xa1\x00\xb5\x22\xd2\x13\xa3\x41\x17\xe1\x00\xd6\x9a\x5a\x5f\xd4\xed\xda\x07\x17\xc4\x36\x94\x9c\xd1\xb6\xa8\x1e\x68\x20\xbb\x09\x38\x63\x6b\xe8\x1c\x08\x90\xb4\xf5\x7a\x21\x51\x73\x5b\x4d\x7b\x32\xb2\x32\x73\x20\xd1\x70\x45\xd8\x3c\xbe\x53\x5a\xcb\x54\x93\x8e\x46\x5e\x48\x8d\x54\xd0\xff\xd1\x7d\xe0\x2d\xd8\xdb\xc9\x78\x7a\x7b\x3d\xb1\x33\x0a\x21\x50\x20\xa3\x93\x07\xa1\x1e\xe0\xec\x09\x38\x60\x7b\xb0\xb7\x9c\x51\x85\xdd\x77\x88\xfc\x01\x92\x33\x11\x18\x96\xe5\xdd\x79\xba\x37\xfb\x2e\xda\xbb\x4e\xb3\xfb\x02\x42\x53\x9a\xce\xd5\x87\x2c\xb8\xd5\xe1\xa0\x88\x26\x5e\xe9\x16\xbb\xc7\x6d\x49\x43\x55\x77\xff\x22\x2a\x22\x92\x32\x4b\x03\x3d\x38\xd8\xea\xa1\x85\xc2\x08\x48\xbf\x9c\x5e\xbe\x54\x91\x4f\x51\xbb\x59\x5a\xb9\xe1\x05\xc9\x92\x97\x51\xc2\xd0\x67\xae\x74\xd5\xac\x07\x0c\x53\x5e\x9b\xe0\xb0\x59\x05\xdb\x03\xa7\xb9\xe7\xa3\xe4\x39\xb8\xca\x15\x47\xd0\x36\x93\xb9\x0d\x7c\x45\xa4\xd0\x85\x9f\x2d\xf3\x3b\xb4\x8f\x9b\xdd\x8f\xf8\xaf\x31\x4f\x7c\xb0\x3b\xf4\x82\x97\xca\xc0\xee\x3e\x8a\xee\xbc\x44\x43\xe6\x7f\xbf\x3c\x51\x48\x53\xab\xf2\xaa\x0c\x9f\x2d\x23\x71\x2c\x63\xe7\xeb\x11\xda\xec\x59\xa8\x81\x36\x08\x35\x9b\xd4\xfd\xb3\x81\xbf\x47\xdd\x94\xb0\xbb\xfb\x6e\xd6\xe8\xc1\x1b\xdd\xcb\x7e\x94\x59\x75\x3f\x81\x5e\x4a\xfc\xc8\xcb\xf5\xa3\x88\x91\x2f\xb5\xc7\x3f\xd5\xef\x1d\x52\xb9\xea\xfd\x64\x65\x9e\x37\x34\x1b\xf2\x40\x15\x00\xc4\x81\xc1\x06\x67\xa3\x98\x0b\x1f\xc2\x34\x5c\x94\x76\xff\x7e\x2b\x2f\x56\x47\xa1\x72\x12\x72\xba\xb8\x6f\xd0\xb1\xbf\xb3\xb7\xc3\x28\x9d\xa6\xcb\xfd\x6f\xe1\x28\x94\xb2\x87\xd7\x9f\x8a\xbb\x5f\xf1\x67\xb9\x71\x87\xbf\xe1\x2a\xf8\xe1\xdb\xea\xf5\xb7\xf8\xc8\xaa\xb3\xed\x8c\x1f\xb9\x37\x44\xd5\xe1\xa4\x13\x75\x6b\x59\x3a\x47\x4b\x5b\x9b\xfe\x46\x36\x90\xdf\x1d\xb3\x43\xd9\xf2\x6b\x2b\x4d\xe6\x8a\x3a\x51\x7d\x84\x2b\x5d\x31\x3a\x1f\x19\x44\xbe\x9b\xd1\x66\x39\x3a\xa7\x3c\x59\x54\x7d\x35\xba\xbf\xe7\x18\x69\xb7\xe8\x88\x38\x31\xaa\x8e\xda\x3d\x8c\xdd\x88\x91\x31\xd7\xb4\x42\x9d\x90\x5a\xcb\xba\x71\xec\xfe\x1c\x9b\xc5\xc8\x7c\x64\x7a\x03\xba\x37\x40\x4b\xbd\x9a\x43\x80\xc5\xa4\xb5\x7b\xc6\x0e\x6d\x81\xc1\xe2\xca\x85\xe5\x62\xf2\xf7\x4f\xd6\x4b\x9b\x5d\x65\x47\x4c\x6d\xaa\xec\x8a\x4d\xf3\x91\x25\x52\x37\x92\xae\xf8\x0b\x75\x33\xd0\xb6\x99\x3e\xbb\xaa\xb9\xe2\xd0\x6a\xfc\x80\x03\xd9\x08\xbf\x1f\xd1\x9e\x32\x68\xd4\x6a\x75\x9e\xf2\x11\x51\x0c\x07\xba\xce\x92\xd4\x14\x5d\x48\xdf\xca\x51\xc3\xae\xb2\x03\xa6\x38\x52\xd3\x4a\xda\x3e\xf1\x54\xef\xb7\x8e\x93\x16\xa0\xed\xa9\xf7\xb9\x9c\xc4\x94\xff\x0b\x6e\xbf\x25\xaf\x55\xe8\xc9\x35\xc9\x88\x5c\x65\x85\xde\x5c\xd1\x9e\xbe\x74\xc6\x2f\x27\xe0\xd3\x8b\x93\xc9\x3f\x6c\x81\x6c\xd1\xd8\xac\x4e\xc6\xa6\x5c\x9f\x78\xf8\xe0\x27\x51\x08\xc7\xfb\xd1\x83\x97\xf8\xa8\x7f\xc3\x7b\x11\x2d\x34\xe8\x0d\x84\xda\x54\x64\x29\xfa\x71\xd4\xee\x77\x2b\xdd\x8d\x21\x85\x9c\x85\x3e\xb6\x24\xec\x42\x93\x2c\x45\x2f\xbf\xa4\x5d\xb9\x22\xe9\x56\x02\x0b\x40\x5d\x15\x5d\xb1\xd4\xee\x8b\xba\xb7\x93\xc6\x3a\x0e\x08\xb2\x51\x5d\x2d\xcc\x26\x17\x1f\x3e\x7d\x18\x5f\x37\x7f\x7c\x18\x9f\xdd\xda\x34\x50\x49\x8b\xe1\x83\x8d\x6a\xf4\xfe\x93\xc1\xee\x62\x84\x91\x09\xcb\xdb\x03\xd8\x6b\x5c\x5f\x9e\x4d\xac\x8e\xdd\x14\x12\x4e\x6d\x27\x4f\x12\x40\x10\x4f\x13\xd6\xa0\x8c\xf5\x9c\x90\x74\xcf\x47\xf6\xa6\x49\x56\x22\xec\x86\xa1\x93\xec\xdb\xf7\x5e\xf8\x8a\x7c\x8d\xe6\x44\xab\x07\xe2\xed\x6e\x29\xf7\x4a\xa4\xfe\x4d\x25\xe5\x86\x57\x39\x88\xee\xad\x77\xed\x86\x21\x5d\xf6\x6a\x07\xdb\x0d\xbb\xad\xac\x1b\xc7\x7a\xff\xfb\x84\x9d\xce\x6e\xcf\x66\x57\xb9\x0f\x26\x8b\x05\xaa\xb5\xb0\x23\xcf\x52\x3f\x47\xf9\x06\xfa\x5a\x6e\x28\x2c\x65\xee\x25\x6d\x66\xe5\x1c\xbd\x59\xcc\x85\x4f\xc7\xb0\xb2\xc1\x60\x4d\xc2\x05\x1f\xe5\x8c\x32\xc0\x09\x05\x12\xf2\x52\x18\x46\x3d\x03\x4a\xc8\xec\x0d\x6d\xd7\x49\x9d\xcc\x6d\xaa\x92\x5b\x3c\x0f\x07\x0c\x29\xe1\x46\xcc\x15\xf3\x50\x61\x25\x5c\xc9\xb9\xe3\xee\x1b\x5a\x62\x9b\xd0\x80\xc1\x25\x0a\xe2\x83\x84\x97\x70\x23\xe6\xd0\xb2\x9b\x17\xe1\x78\x01\x6e\xb7\xed\xb3\xab\xec\x80\x69\xa8\x9b\xd0\x0d\x4a\x03\xdf\x85\xe6\xa1\xf1\x14\x68\x81\x6e\xf3\xe4\xd7\x17\x4b\xcf\x53\x1f\x8d\x88\xc3\x77\x6d\x3d\x27\x10\x4e\x80\x04\x0a\xbd\xd0\xf5\x3e\x5f\xb8\x11\xa3\x63\x8e\xe7\xba\xc0\x14\xd2\x08\xa3\xb0\x60\x2a\x22\x54\xfc\xd4\x1a\xa2\x42\xc5\x40\xf9\x2c\x1e\xe5\x21\xfc\x61\x31\xb2\x76\xcf\xd9\xb5\x35\xe8\xa1\x22\x60\x3e\x00\x35\xbb\xba\x9e\xeb\xe5\x2c\xca\xfe\x8b\x49\xf1\x9c\xdd\x5c\x35\x62\x54\x02\x3c\x09\x58\xf2\x84\x24\xa5\xd8\x4d\x6c\x87\x61\x88\xbb\x76\xb0\xcd\x50\x07\xd0\xe1\xe1\x8b\x80\x91\x89\xf5\xe7\xb5\x24\xd2\x13\x63\xef\xd0\x03\xae\xe4\xfa\xe2\x1e\x32\xf4\xc0\x10\xa4\x5d\xbb\xbf\xc1\xb0\x1c\xa7\xa2\xf3\xf1\x3f\x46\xc5\x58\x1d\xb5\xbb\xae\x5b\x0c\xf7\x3d\x4d\x49\x4f\x20\x0d\x78\x99\xde\x79\xa9\x3f\x1b\x95\xa1\x3a\x1a\xd2\x6c\xbf\xef\x3f\x67\x0d\xea\x1a\xac\x77\x57\x35\x72\x1b\xd8\xb9\xba\x93\x97\x8d\x63\xa9\x6d\x37\xf9\x1a\xda\x6f\x07\xce\xb9\x03\xb7\x21\xa1\x73\x4e\xaf\x61\xbf\x38\xb9\xbe\xbe\xbc\x86\x16\x1b\x4f\x21\xd7\x82\x68\x26\x74\x88\x85\x98\xb6\x57\x5e\xb6\xfc\xf2\x45\x34\x0f\xe4\xdb\x4f\x12\x43\xd8\xed\x9e\xd4\xec\xa7\x75\x2f\xc4\xa0\xba\xd8\x50\xa9\x60\xce\x2a\xcb\xcd\xe8\x9e\xc1\x24\x54\x5e\x0c\xe2\x24\xa4\x47\xec\x4e\x89\x84\x76\x18\xa4\x5f\x0d\x4a\xf6\xe2\x44\x06\x86\x3f\x62\xc5\x64\xc9\xe7\xdf\x0c\x83\xbd\x8b\x36\x45\x22\xf8\xb4\x98\x24\x61\xe5\x25\x9f\x79\x26\xe8\xcf\x78\x15\x96\x09\x02\x19\x43\x40\x45\xaf\x4a\xe6\x6a\x4e\xa6\x31\x00\x45\x27\xf4\x98\x02\xc9\x0f\xef\xa3\x64\x85\x58\x30\x1a\xff\x56\x18\xf2\x5e\xe2\x0c\xc5\x82\x2a\xdf\x20\x03\x63\x0f\x23\x18\x58\xa4\x31\x9f\xf9\xf7\x90\x21\x35\x5b\x32\x38\x4f\xca\x14\xf7\x78\xb4\x64\x11\x66\xf4\x4a\xf5\x71\xc2\xdd\x88\xf4\xc2\x08\x53\x2c\x1e\x8a\xe7\x55\xd6\x8a\x13\x79\x38\x9e\x9b\xd2\xc3\xf6\xa2\xe5\x8c\xb8\x3c\xed\xdf\xf9\x59\x8a\x2c\xa0\x4d\x5e\xca\xa6\xb1\x07\x6b\x4b\xc6\x1e\xe7\xd2\x0b\x17\xb0\xe8\xb3\x07\x9f\x3f\xca\xec\xf2\x85\xc1\xd3\x2c\xca\xc3\xec\x00\x26\xaa\xcf\xea\xa6\x31\xf0\x57\xbe\x78\x02\x7c\x57\x7c\x05\x3e\x4f\xf8\x44\xa6\x04\x37\xa7\x49\xd9\x1d\x23\xaa\xac\xf5\x01\x23\x09\x6e\x25\x6f\xe9\x92\x82\x44\x82\x8a\x0f\x5d\x57\x8b\x8d\x55\x17\x12\x4d\x61\x1a\x4f\x30\x8e\x2f\x68\x98\x52\x29\x98\x0b\x13\x78\xf2\xd9\x67\x20\x83\x79\x57\x40\xc5\x6c\x66\x6a\x2c\x6d\xcf\x55\x79\xf5\xbd\xe7\x81\xa1\x97\xb6\x16\x22\xf3\x80\x15\xa5\x93\x47\xd8\x28\x64\xbd\xa9\x55\xb5\x21\xd7\x9f\xfa\x1b\xb3\x02\x86\x0d\x07\x45\x0e\x0d\xa6\xae\x18\xc4\x3a\x86\x89\xbb\x43\x0f\x83\x24\x1d\xbf\x2d\x1c\x1c\x5f\x7a\x81\xef\xa5\x87\x8c\x5d\x4b\x2b\x75\x20\xb0\x41\xb6\x70\x85\xec\x20\x0f\xf9\x40\xe6\xa2\x23\xd6\xc2\x32\x65\x69\x51\x40\x2e\xb9\xb8\x10\xa4\x86\xb4\x71\x03\x0a\xf6\x64\x22\xf5\xfd\x88\x29\x26\x67\xac\x7d\x1c\x56\x7a\x6a\x8a\x53\x18\x64\x89\x84\x3f\xe5\x7e\xe5\xb9\x90\xf2\x87\x28\x87\xc9\x33\x98\x0b\x76\xeb\xea\x52\x09\x87\xa8\xa6\x16\xa2\x86\xdc\x76\x85\x2c\x32\xbd\xa3\x2a\x5e\x17\xdb\x0f\x1f\xa2\xcf\xa6\x26\x14\x00\xde\x8b\xfd\xeb\x03\x04\xc6\x82\x6c\x91\xe9\x12\xa1\xdc\xfb\x89\xd8\x73\xdd\xe7\x41\x00\x90\x04\x31\x98\x10\xa5\xff\xac\xbf\x8a\x21\xe1\xa4\xd8\xba\x34\xb0\xc2\x2b\xcc\x21\x02\x3f\xb6\x11\x4b\x6c\xfa\x9e\x63\x68\xc5\x3f\xda\xaf\xad\xfd\xa8\xdd\x14\xf3\x8d\x42\xe6\xfc\xee\x39\x6d\xbb\x24\x65\xf2\x8c\xe1\xba\x11\xe8\x88\xa6\x90\x7b\x84\x74\xe9\xbd\x66\x68\x56\x05\x52\xb7\xf8\x60\x9b\x72\xeb\x0f\x40\x91\x88\x1e\x53\x29\x01\x03\x58\xac\xaa\xd9\x44\x99\xf0\x1f\xc8\xbe\xb2\xf2\xd6\xe2\x88\xf1\x19\x42\xc2\x3d\x2e\x21\xf3\xaf\x71\xf9\x1b\x8a\x2e\x41\x92\x30\xe4\x33\x8c\x7c\x37\xcf\x57\x31\x66\xea\xe6\x33\xcc\x80\x03\x8e\xba\xb8\xdd\x19\x36\x23\x94\xe9\x5a\xf0\x49\xc1\xb8\xb4\x59\xe6\xf9\x38\x28\x9f\xb6\xb1\xf6\x89\x82\xd0\x4a\xf1\x1a\x7b\x72\x94\x27\x33\x95\xf0\x5a\xe1\xba\xc1\x47\x02\x9d\x4c\xd0\xa5\xec\x8e\xd4\x4b\x99\xf7\x5d\xbe\xdc\x51\x1e\xb4\xaf\x09\x1a\xa1\x3d\x61\xbd\x80\x39\x17\x2c\x5e\x30\xdb\x9f\x26\x8d\xdb\xc7\x70\x02\x99\x9b\x8f\x58\xb7\x9a\x73\x08\x9a\x0e\x12\xcc\xc4\x07\x68\xce\xc4\x47\xac\xd0\xa3\x46\x76\x80\xed\x49\x38\xe0\x9b\x43\x5c\x4f\xd4\x88\xc3\x92\x31\x93\x59\x00\x99\x38\x04\xe1\xd9\x64\xee\x8b\x59\x09\x82\x80\xfc\x3f\x16\x38\xe9\xa4\x1c\xf0\xde\xcb\xb4\xa4\x2a\xc7\x25\x93\x91\xac\x2c\xc0\x75\xd4\x73\x46\x22\x86\x0b\x74\xf5\x39\xee\x4f\xca\x59\xe8\x39\x0c\x9a\x22\x95\x89\x35\x3a\x12\x2d\x57\xc4\x78\xb6\xc7\x74\x70\x78\x92\xa8\x7a\x7f\x95\xaa\xdd\x16\x30\x89\x94\x2b\x5e\xdd\x30\xc5\x84\xb9\x6a\x28\xd7\x9b\xcb\x16\xbc\x3b\x5d\x67\x49\x1a\x33\x66\x39\xb1\x8a\x2f\xfb\x9b\x3c\x78\xc9\x19\x96\x20\x02\x9d\xa0\x03\xf6\xd8\x4b\x52\xce\xc4\x6e\x1e\x15\xb5\x61\xbe\xba\xe3\x72\x72\x3c\x0d\xc5\x0e\xce\x0a\xad\x3d\x09\x07\x7c\xe2\x43\xfa\xe2\x50\xf9\x1b\xaf\xab\xc2\x2d\x40\x75\xd4\xeb\x85\x44\xde\x0c\x9a\x14\xcb\x56\x95\x1c\x30\xa8\x65\x5c\x74\x83\x43\x5c\x23\xc6\xb1\x6f\xbb\x30\x76\x57\xa5\xe1\x09\x9f\x67\x45\x90\xe8\x8c\xaf\x62\x3c\x81\xe0\x9e\x2d\x8f\x21\x9e\x93\x19\x91\x75\x65\x3a\xa6\x28\x16\xa7\xdc\x4a\xe5\xdc\x71\xd4\xb2\xa9\x44\xc7\xf0\x98\xf8\x42\xb2\xdf\xfc\xd8\x92\xbd\xae\xbc\x3d\xe7\x22\x5a\x77\x29\x83\x9e\xa9\xa1\x28\x9d\x9f\x8a\x35\xe9\x83\x5e\x09\xf7\x91\xf0\x11\x03\x48\x9b\x09\x4a\xa6\x6e\x10\xb6\xf5\x9d\x91\x65\x4b\x4f\x74\x35\x2f\x2c\xd3\xaf\xdf\xad\x19\xe8\x3f\x04\xaf\x94\xbd\x40\x9b\x80\x51\x14\x06\x6b\xc3\x55\x69\x7f\x8a\x74\xf4\x21\x7f\x44\x2d\x79\x37\xaa\xed\x92\x74\x6e\x82\xf4\x1c\xa2\xc2\xa1\xe1\x34\x7c\x01\x3c\x99\x1b\x2f\x46\x08\x55\xe9\x78\x9a\x49\xc2\xbb\x41\xe8\xca\xbb\x70\x96\xfb\x06\xcc\x49\xda\x11\xfc\xc9\xa6\x8e\x3b\x02\x69\xb6\x66\xcf\x7d\xb3\xbc\x3b\xe7\xee\xfb\xa4\xee\x1a\x0e\xdc\xcd\x17\xe3\x9a\x62\x74\x3e\x10\x8f\x5e\xf6\x56\x98\x74\xd4\x2e\x8b\x38\x6b\x51\x68\x90\x11\xe2\x45\x61\x79\x24\xa8\x5d\x1e\xca\x99\x67\x29\x4e\xe1\x77\x5c\x2c\x57\x71\x9e\x2e\xe1\xb6\x3f\x9f\xcd\x78\x9a\xa2\xe6\xd5\xb0\x23\x19\x94\xb8\x83\x4c\x62\x76\xb4\x00\xd7\x28\x45\xe3\x02\xa7\xd0\x2d\xf1\x40\x21\x52\x1c\x55\x53\x9e\x41\x21\xb4\x41\x80\x52\x66\x38\x3d\xc8\x39\xe0\xde\x53\xde\xfc\xdd\x33\xa4\xcb\x7e\x67\x48\xd6\x6e\x25\x8b\x35\x01\x3a\x36\xb5\xe2\x83\x5d\x05\xfe\xa5\x5a\x00\x46\xcd\x56\x6b\x39\x7d\x87\xc1\x18\xd0\x65\x1b\x46\x80\x5d\xa3\x94\xc6\xc7\x82\xe2\xdf\xe0\x8f\x3e\x48\xe9\x94\xe8\x68\xe5\x9a\x20\x28\xbe\x8f\xd2\x2c\x34\x7c\xcb\x21\xc7\xf2\x4e\x99\x0e\xd2\x06\xae\x62\xf4\x44\xd2\xdc\x15\x02\xe9\xe2\xc9\x27\x7c\x52\xca\x9e\x97\xb2\x77\xc3\xec\x45\xd4\x45\x86\xcd\xbd\xa5\x22\x7f\x2c\x97\x21\xf8\x6c\x96\x0d\xec\x40\xca\x1d\xaf\x72\xba\x10\xd4\xfb\x74\x6d\x37\x6a\xee\xa8\x4b\xdb\xae\x2d\xb5\x21\x79\x7d\x74\xff\x3e\x7b\x01\xe1\xd0\x46\x98\x5c\x42\xb7\x62\xb9\x7d\x5e\x77\x92\x0e\xf8\xb1\x99\x5a\x57\x81\xe1\xd6\xf3\x81\xc8\x5b\x9b\x3a\x34\x85\xdb\xe8\x03\x6d\xdd\xc5\xb9\x73\x0e\xc5\x80\xfe\xe1\xa4\xb1\xe0\x46\x06\xdf\x27\x19\xa1\xfb\x47\xe2\xd8\x5a\xe5\x15\xaf\x24\xd9\x4f\x60\x2a\x31\x0a\x66\x95\x83\xd0\x60\x4a\xde\x56\xc6\x85\x03\x7b\xe4\x09\x67\x09\xff\x45\x99\x1a\xc4\x01\xf7\x52\x8e\x16\x54\xde\xc2\x33\x19\x6a\xb9\x11\xb1\xc7\xa8\xce\x93\xc7\x6f\x21\xbe\x7e\x79\x8d\x22\x35\xf4\x1f\xe4\x2f\xd3\xc6\x84\x58\xdd\x05\xd7\xf1\x59\x83\x30\x09\x54\x77\x5d\x32\xa2\xab\x4e\x2b\x63\x6d\x41\x32\xaf\xc2\x66\x98\xcd\x7d\x79\x8d\xb2\xf2\xb2\xd9\xb2\x93\x73\x57\x35\x02\x8e\x34\x8b\x56\x75\x13\xfa\xb5\xbc\x8e\x7d\xc1\x0f\x17\x87\xe0\x86\x56\xbe\xfa\x06\xcc\xd4\xdf\x9d\x4e\x31\x77\x88\x7c\xfd\xbc\x25\x4d\xc7\x92\x8b\xcd\x54\xae\xfe\xa9\x6a\x83\x6b\xe8\xfa\x50\x94\x7b\x5e\xd2\x79\x73\x3d\xbe\x38\x7e\xdf\x93\xdc\xff\x3b\xe7\x0f\x3c\x88\xe2\xe7\xb8\x0c\x3e\x2f\x7f\xdd\x89\x86\x9b\x2d\xbf\x31\x68\x61\x7a\x49\xee\x80\xb4\x5d\x5f\x6f\x5e\x7f\x25\xc6\x25\xf7\xc0\xe0\x51\x9a\x4f\xce\x82\x7c\xce\x0b\x3b\xdd\x84\xff\x33\xe7\x69\x76\xc0\x30\x5d\x8e\xba\x34\x90\x7e\x11\x82\x3c\x5b\xe5\x41\xe6\xc7\x90\x84\xde\x5f\x99\xa2\x67\xed\x88\x8d\x75\x2f\x94\x71\x54\x6e\xb4\x00\xb7\xde\xdb\x53\xf6\xd2\xe5\x5d\xe4\x25\x73\xbc\x30\x16\xdf\xcf\x30\xab\x18\xcb\xda\x73\xe4\xf7\x60\xc4\x22\x2f\x4e\x12\xae\x4c\xa7\x70\xe3\xa6\xe7\x6c\x53\xc7\x0d\x81\xdc\x16\xb8\xe0\x30\xd7\x24\xa0\xc1\x64\xa7\x36\x57\x87\xa6\xa2\x74\x7e\x1d\xc6\x3d\xda\x72\x74\x4e\x5d\x8d\xda\x5e\x8c\xce\x07\x55\x18\xdd\x7c\x36\x8a\xd1\xf9\x10\x2e\xa9\xac\xea\xb8\x23\xe8\xb8\xa4\xea\x2c\xef\xce\xb9\xf3\x92\xca\xa2\x86\x03\xf7\xfa\x89\xd5\x82\x75\x7b\x71\x07\xbe\xc6\xcb\x31\x5d\x31\x47\x3e\xea\x14\x3b\x87\xc9\xc6\xaf\x7c\x46\x42\xb1\xa7\xf1\x17\x72\xc1\xa9\x97\x93\x56\xa7\x41\xd0\x15\x03\x92\xed\x86\x8b\xed\x5a\x5d\x72\x37\x5e\xab\x6b\x4a\x91\x5b\x12\xed\x01\x64\x32\x60\xa6\x92\x01\xe3\xc6\x44\x80\x5c\x46\x70\x64\x80\xdb\x36\xd1\x39\xd4\xe6\x30\x8e\x39\x9a\xa4\xc9\x1b\x27\xbd\x2d\xc2\xd0\xe4\xc9\x72\x99\xdd\x25\x35\xa5\x1c\xb8\x98\xae\x0b\x35\xa5\xa8\x5c\x66\x30\x19\x80\x43\x42\x17\xa3\x96\x82\x44\x5e\xa9\xbd\x4d\x43\x77\x05\x1a\xef\x7d\x5e\x2f\xee\x9e\x21\x5d\x76\xd7\xeb\x45\x3a\x01\x3a\xb6\x01\x74\xa9\xbd\x68\xd1\x11\xf7\xd2\x92\x3a\x52\xa1\xa3\xec\x7d\x69\xd8\x83\x12\x1d\x6d\x79\xf1\x75\x0d\x7f\x58\x02\x33\x56\xea\x81\x01\x4f\x55\x34\x04\xdb\x55\xe8\xfc\x87\xbc\xaa\x1b\x86\xa8\x8b\x0c\x36\xf7\x6b\x36\xb0\x69\x74\xdc\x91\xf6\xba\xa4\xeb\x49\xcd\x1d\xf5\x1e\x35\xff\x7b\xe5\xed\xd0\x22\xfa\x2b\x2d\xb7\x2f\xe9\x48\xcf\x15\x79\x79\xb3\xd0\xf4\x70\xa8\x9e\xa3\x7b\x83\xfb\x47\x1b\x92\x09\x5d\xc6\x21\x6e\x62\xfa\x11\x23\x60\x4e\x67\x89\x8f\x91\x6e\x8e\x6a\x7d\xbc\xf6\xd8\x38\x71\x51\x2a\xdb\x63\x92\x91\x6c\x98\x87\x16\x88\x45\xbc\x92\x52\xa7\x59\xf7\x84\xd1\x43\x73\xa1\xe1\x8a\x10\xce\x57\xe5\x44\x21\x38\x6d\x85\x5b\x89\x42\x7c\x5e\xd8\x8a\xdb\xa2\x76\xa7\xdb\x4f\x92\xb2\x99\xea\x0c\x69\xa0\x3b\x48\x90\xf1\x81\x52\xa0\xe6\xa5\x01\x2a\x01\x19\x02\x03\xed\xf0\xa1\x2d\x54\xfc\xf4\x4e\x98\x0d\x4a\x0e\xca\x84\x1a\x19\xc1\x1b\x6d\x40\x8b\xc4\xf4\x2c\x8d\xe4\xf9\x5b\x66\xd7\x58\x7a\x0f\x8d\x56\x09\xe7\xa8\xa0\xcf\x53\x59\x5b\x55\x32\x4c\x01\x3b\x64\x45\xfc\x00\x78\xb4\x93\xe4\x21\x8e\x17\xf4\xbf\xdf\x21\x6c\x83\x57\xb7\x5b\xd4\x2e\x95\xa4\x25\x69\xd7\xfc\xdc\x25\x87\x86\x15\x23\x4d\x06\xc6\x13\xb0\xb4\xfc\xef\x6b\x63\xb2\x06\xc6\xe2\xe8\xb9\x07\x96\x7b\x92\x1f\xba\x5d\xbf\x33\xe3\x9e\xd9\xf7\x6a\x97\x96\x1e\xda\x85\x70\xf0\xc6\xd9\x39\x06\x4a\x0b\x7d\x56\x01\xd0\xe4\x9d\xec\xb7\x7f\xfa\xf3\xf9\x01\x7b\xfd\xea\xdb\xef\xe1\x9f\x77\x06\x2d\xa7\x7d\x4d\x0a\x1a\xb8\xe8\x85\x4b\xd4\x40\x9c\xab\x30\xb8\x4a\x26\xe6\xc3\x32\xce\x84\x09\x8d\x6d\x4d\x7b\x34\x91\xf2\xfd\x0f\xa2\x04\x9c\x43\xc5\x59\x3a\xce\xf5\xae\xe4\x5d\xc5\xa9\x7c\x57\x5e\x5c\xdc\x43\x61\x70\x08\xe5\xb2\x85\xb2\xc9\xa4\xd4\x85\x56\x19\xd7\xd8\x38\xe1\x0f\x7e\x24\x04\x46\xaf\x90\x54\x46\xa0\x91\x55\x0c\x9d\xd3\xc8\xca\x61\xc9\x95\xf4\x64\x26\x23\xe5\x99\xe1\xdd\x83\xbb\x0d\xa0\x32\xae\xf9\xf6\x35\x09\x0d\x39\xcb\x21\xa3\x13\x32\x01\x7f\x20\x9b\xfb\x6b\x9b\x3a\x04\x04\xa8\xf0\x93\x03\xa4\x16\x71\xd8\x30\xac\xba\x6b\x10\xb9\xa7\x47\x1d\xcc\xea\x05\x08\xb4\x1f\x43\xf0\x02\x66\x5e\x06\xce\xc1\x99\x28\xee\x07\x7c\x5e\x84\xec\x80\xa0\x18\x10\x24\xfa\x56\x06\x38\x43\x6b\x08\x0c\x2d\x74\x50\xc6\xb3\x4a\xf1\x83\x7b\x0f\xa2\x1e\x96\xc1\x5e\x0c\x8b\xc1\xc2\x7f\xe0\xd8\xf4\xa6\x7e\x6b\xc1\x9d\xca\x3b\x88\x66\x5e\xf0\xd2\x0f\x45\xa7\x0b\x79\xe6\x60\xe9\x59\xa0\x2a\xc3\x27\xa9\x58\x21\xcf\x53\x36\x83\x50\x83\x69\xbe\x62\xf3\x88\xa7\x95\xb1\x11\xa6\x61\x66\x2b\x9e\x79\x73\xcf\x74\xfb\x3d\x18\x61\xfb\xef\x9b\xaf\xe2\x46\x3c\x24\x68\x43\x2e\x5a\x1c\xe6\x15\x19\x01\x48\x0f\x97\x52\xd7\x1a\xd1\xe4\xe2\xc3\xe9\xf5\xe5\xc5\xf9\xe4\x62\xca\x3e\x8c\xaf\x4f\xc7\x6f\xce\x26\x0c\xb3\x4a\xe8\x6d\x5e\xac\xea\xf4\x42\x70\xa3\x1f\x5d\x5d\xc5\x6d\xbb\x55\x15\x68\x5d\xcf\xaa\xa5\x88\xbd\x58\x72\x9c\x94\x51\xc8\xe5\xc2\x55\xee\x53\x95\xdd\x52\xaa\x16\x9e\x34\x8e\xc2\xd4\x70\x83\xdc\x93\x1a\x15\xf5\xfb\xe9\xf4\x0a\xcc\x7d\x7f\x5d\x17\x81\x3c\xc1\xc2\xb2\xe0\xd2\x85\xd2\xb6\x36\x15\x55\x1f\x7d\x88\x0b\x09\x47\x7c\x83\x69\x43\x86\x22\xdb\x4b\x0e\x9a\x2e\xc4\x81\x02\x15\x9d\x10\x51\xe5\x54\x92\xbb\xc2\x2e\x2c\xfa\xf2\x54\xce\x4d\x1d\x0c\x84\xd3\xe1\xf6\xea\x97\x36\x1a\x0e\xb3\x56\xb8\x2f\xe5\xcb\x0e\x39\xd1\xda\x7d\x7f\xaa\x97\x5d\xb3\x73\x96\xbb\xaf\x16\x84\x2e\xfa\x0e\x38\xee\x47\xfa\xde\x6a\x97\x3d\x73\xef\xd3\x2a\xfb\x56\xba\x3c\x05\x04\x42\xfb\x3c\xb0\x22\xc7\x30\xba\x5b\x78\x4a\xf9\xc7\x1e\xbd\x54\x05\xa4\xca\x4c\xb2\xd1\xaa\xdb\xe3\x82\x83\x93\x9c\xf2\x65\x30\x54\xdc\x05\xe9\x71\x74\x14\x27\xf2\x9d\x15\xfe\x4c\x55\x24\x07\x71\xa4\x3b\xd2\xfb\x1e\xd8\x56\x73\xc5\xa1\x04\xb2\x49\xe0\x43\xa8\xe9\x8a\x26\x53\x01\xb8\x2c\xe2\x6c\x12\x6a\xba\xa2\xe9\x08\x1f\xd6\x51\xda\x99\x6b\xcb\xfd\xea\xa1\x55\x24\x4f\x77\x42\x44\xac\xf3\x56\x8b\x34\x39\x3e\x09\x48\xe9\x64\x5c\x71\xb6\x9b\xa4\xd9\xc5\xad\xeb\x43\x8a\x8a\xb7\x8c\xd0\x8c\x43\xab\x1a\x59\xa6\x43\xb1\x7d\x4d\x67\x34\xf2\xfc\xea\x04\xc7\x54\x95\x88\x07\x42\x51\xe2\x6a\x57\x2a\xb4\x60\x93\x43\xf9\x88\x24\x0a\xbd\xd1\x49\xf3\x70\xeb\x89\x95\x42\xc0\x11\x5b\x11\xd4\x1f\x4c\x35\x56\xf3\xa2\xe7\x5a\xe2\xea\xaa\xec\x88\xa9\xff\xd0\x74\xa2\xe4\x88\xb6\x33\xd4\x6e\x57\x71\x47\xbe\x9b\x9b\xb4\x6a\x7a\xb4\xb3\x8c\xe9\x49\x6d\x60\xd4\xbd\x81\x0e\x80\xad\xcd\x30\x8e\x8c\xcf\x96\x08\x11\xe3\x42\x06\xf4\x82\xeb\xa1\xc0\x9f\xc9\x4b\x9a\x34\x17\xc3\x0f\x22\x72\x77\x40\xb3\xac\xeb\x88\xa8\x98\x04\x30\x2d\x9c\xbc\x91\x93\xaa\x7a\x21\xf3\x5b\xb1\xfd\x92\x09\x1c\x2d\x21\x52\x89\x39\x62\xc6\x88\xae\x10\x7a\xd7\x12\x56\x4b\x79\x47\xce\x4a\x9c\xe2\x82\x42\xca\x08\x77\x16\xd6\x5f\xd1\x8a\x02\x11\x9d\xa0\x07\xdb\x04\x3f\xe1\x70\x05\xd8\x01\x44\x57\x98\xc8\x53\x74\xbf\x74\xe9\xe1\x61\x15\x92\x62\x77\x30\xd5\x96\x26\x72\x85\x58\xba\xcd\xfd\xa5\x31\x08\xae\x5d\x25\x22\x06\x08\x49\x6d\x29\x76\x7b\x51\x47\x7e\xca\x45\xdb\x92\xe5\x56\x69\x2a\x57\x9e\x40\x68\x6b\xfb\x13\xb5\xa9\x02\x95\x77\x12\x81\xfa\x03\xb7\x00\xe5\x18\x01\x95\x07\xc4\xfe\xee\x82\x61\x57\x97\x88\x48\x9c\xc0\xe6\xdb\xa7\x75\xeb\xd5\xc5\xbe\xba\x23\xae\x62\x5b\x6e\x89\x63\xbb\x78\x4f\xbe\xd8\xcc\x44\xe6\x1b\x75\x86\x40\x60\xdb\x49\x6c\x2b\x93\x31\x85\xde\xaa\xff\x29\x9a\x4e\x86\x8c\x13\xc7\x27\x2e\x8d\x36\xdf\x4d\x53\x9a\xcc\x35\x8d\x82\x87\xd2\xbd\x87\x32\x7a\xba\x2b\x12\xb1\x60\xc0\xfc\xfe\x5f\x8a\x4e\x86\x8c\x13\x54\x50\x1b\xbb\x3f\xcb\xf0\xfc\x0e\x14\x9c\xd1\xf5\x6d\x46\x32\x1d\x22\x52\x08\x82\x8f\x4a\xc5\x88\xae\x91\xb4\xac\x4b\x44\xf4\x9b\x1f\xc7\x1b\x5f\xa5\x03\x87\xb1\x06\x8d\xfb\x11\xbb\x88\x64\xc0\x1b\x4c\x4d\xd7\x69\xa6\x68\x57\x89\x8a\x01\x22\xc6\xcc\xc1\xd0\x82\x3d\x7a\xb2\x89\x91\x64\xba\x0e\x67\xec\x97\xe8\x0e\x73\xd9\x88\xa2\x68\xc4\xf6\x1c\x9a\x1f\xbc\xf9\x53\x7d\x80\xa4\xa1\xc8\x52\xe5\xb0\xeb\x47\xfd\xfa\xcc\xaf\x7c\x96\x4b\xd7\xed\xc4\x7b\xac\x62\xf2\xcc\xa2\x30\x13\xbb\xf8\x51\xb6\x8e\x21\x07\x6f\x86\x97\x69\x55\xff\x78\xf9\x4b\x2a\x0e\x8b\x77\xeb\x22\x79\x91\x1e\xe1\xd0\xf4\x09\x92\xc5\x18\xf0\xac\x71\xbc\x95\x37\xff\x9e\x3c\x47\x46\xf7\xec\x33\x5f\xbf\x94\x09\x0a\x63\xcf\x4f\x52\x95\x67\x8b\x45\x33\x0c\x98\x3d\xaf\xa7\x39\x62\x21\xf7\x12\xb1\x44\xc0\x57\xfe\x61\x15\xdc\x84\x62\xd4\xf0\x4c\x7c\x69\x83\xec\x7b\x47\xd0\xab\x75\xd2\x06\x38\x92\x58\xba\xaa\x74\x3c\xe5\xf4\x5c\x52\x84\xde\x21\x1b\x8a\xfd\x8f\x8f\xf9\xab\x57\xdf\x71\x99\x53\xf2\x40\x4c\xea\x19\xf3\x33\xbc\xe6\x43\xdf\xbf\xa9\xe8\x4c\xa6\x7c\xe4\xbb\x61\xe2\x24\xe3\x55\x22\x0e\x8f\x49\xb6\xde\x80\x71\x17\x45\x01\xf7\x0c\x71\xfd\x9c\x68\x0c\x89\xb0\xe8\xb7\x69\x96\x88\x19\xd0\x90\x4e\xa8\x17\xad\x21\x11\xcb\xdc\x4e\xdb\x1f\xb2\x28\x4e\xe9\x35\x43\xb1\xb0\x96\xef\xed\xf8\xf4\x6c\x72\xa2\xc5\xb6\xf9\xda\x9e\xee\x64\x3c\xbd\xbd\x9e\xb0\xb7\x67\xe3\x77\x7a\x73\x51\x4d\x29\x7b\x2e\x68\x85\xcc\xee\x79\x36\x5b\x36\x76\x61\xa9\xdd\x35\x25\xb9\xbe\x33\x32\x79\x23\x90\x5a\xee\x80\x89\xb5\x9d\x51\xf1\x07\xb1\x46\xba\x82\x32\x57\x76\xc6\x14\x25\x8b\x91\xb4\x1e\x93\x59\xe2\xa5\xd1\xc5\x65\xb2\xb8\x16\x7f\x4e\x23\xe5\x78\xa2\xbc\xb7\x9c\xbe\xf2\x00\x1c\xfa\x48\xe7\xda\xde\xa6\xaa\xce\x78\xa4\x47\xcb\xa1\xc5\x91\x96\x50\xd3\x19\x4d\x33\x6a\x82\xe3\x20\xb6\x23\xe2\x8e\x11\xee\x57\x5a\xfa\x0f\xde\xbb\x0c\xd6\x47\x07\xe2\xd2\x4f\xca\x7a\xdb\xd9\x5d\xee\xb9\x92\xa1\xe2\x14\x0b\xa3\xca\x94\x87\x1b\xf9\x7b\xa5\x6c\x81\x98\x8f\x9f\x0a\x7f\x0c\xb3\xee\xd7\x9d\x90\x3b\xd6\x62\xa3\x7d\x00\x11\xdd\x94\xab\x8c\xcc\x13\xc9\xc3\x07\x3f\x89\x42\xb8\xd8\x28\x6d\xcd\x0c\xca\xc0\x01\x29\x3b\x48\xa3\xee\x44\xcc\xf7\x08\x5d\xc5\x1d\xf8\x4a\x5f\xb5\x08\x43\xc0\xd8\x7f\x5e\x63\x2d\x7b\x14\xca\xbe\x19\xee\x03\xe5\x9f\x6f\x03\x0f\x42\x64\x28\x4f\xf4\xb9\x7e\x7f\x47\xa9\xda\x1f\x8f\x34\xce\x76\x81\xb3\x5d\x93\x8a\x46\x7f\xc5\xb3\x5d\xc0\x9e\x36\xdc\x81\x62\xfe\x57\x54\xde\xa0\xd3\x58\xb0\x3e\x10\xdd\xea\xb3\x38\xd9\x83\x24\x68\x4a\x0e\xa5\xf8\xaf\x3e\x7a\xba\x64\xca\xa5\x2d\xf6\xc4\x37\x37\x99\xad\xea\x68\x2b\x2f\x37\xa5\x3c\x9b\x17\xce\x6f\xd2\x09\x4c\xe5\xe5\x04\xc5\x7b\xe1\xbb\xa6\x4d\xcf\x6f\xb4\xd8\x7f\x1b\x41\x88\xda\xb9\x8c\xa7\xf7\x62\x2e\x1d\x32\x63\x41\x37\x96\xee\x3b\xb3\x28\xbc\xf7\x55\x92\x56\xbd\x03\xa3\x23\x15\xfb\xf6\xaf\xe8\x83\x7e\x01\x72\x1f\x83\x8a\xaa\x4e\xd6\x06\x5b\x77\x5d\x22\xa2\x95\xbf\x48\x3c\x57\x48\xb6\x95\x89\x98\x44\x0f\x97\xb3\x8d\xcc\x7e\x56\xd0\x96\x5f\xa3\x03\x92\x65\x5d\x6b\x44\xef\x26\xd3\xe9\xe9\xc5\x3b\x76\x33\x1d\x5f\x4f\x0d\x47\x3c\x6d\x39\x7b\x4e\x67\x97\x6f\xc6\x67\xec\xf2\x6a\x7a\x7a\x79\x61\xf0\xcf\xd3\x96\xb3\x1d\x30\xef\x94\x29\xc2\xe5\xb8\x8c\x02\x66\x1a\xdd\x5d\xc5\xed\x05\x2c\x0c\x59\x20\xd2\xaa\xdc\x5d\x2a\x27\x70\xb1\xb6\x7d\xe6\x99\xd8\x86\xcd\xb8\x0d\x12\x7b\x02\x74\x6c\x71\x9c\xee\x2a\x84\xe5\x4e\x78\x90\x25\xac\x1d\xce\x0f\x0f\x0d\xb6\x82\x9d\xe5\xc9\x9c\xd5\xf1\xdb\x90\xda\x85\xd6\x8e\xce\xf4\xc8\xc8\x79\xcd\x77\xa1\x0c\xcd\xc0\x7e\xdf\x43\xd8\xd3\x27\x40\x40\x6f\x1d\xd4\x60\xec\x02\x94\x45\xf7\xdc\x0f\x73\x72\x9b\xc0\xe6\xe6\x69\x7a\xca\x1e\x38\x93\x5b\x03\x6c\xef\xfa\x7b\x47\xf5\xa4\xe6\x8e\x7a\xc8\x08\xa2\xc3\x12\xef\x21\x53\x57\x00\x43\xe7\xbc\x5e\xbb\x64\x45\x96\x57\xe7\x35\x69\x31\xb3\xd8\x54\x25\xe3\x91\xe6\x9f\x69\x15\x72\x1e\x4c\x3f\x53\x3f\x8b\x12\x5f\x8c\x5a\x41\x5d\xaf\xad\x70\x21\xd1\x0f\x5f\x49\x78\xcd\xf4\xd7\xa7\xe6\x9a\x00\xa9\xfd\xe2\xd3\x6a\x8b\xda\x1a\x2f\x14\x3b\x96\xcb\xc4\xe1\x48\x8d\xdc\x88\xc8\x87\xe6\x1e\x4c\xa9\x4a\xc6\xa3\xe2\x2d\x6d\x12\x65\x76\xe3\xc0\xb2\x36\x19\x55\x73\xe2\x4b\xe9\x53\xa8\x3d\x01\x07\x6c\x2a\x4e\xb2\xf4\xc3\xa5\x7c\xc9\x85\x03\x09\xea\xb0\xd8\xa0\x0d\x93\x6c\x15\x21\xf9\x0d\xfe\x05\x93\x69\xd8\x8c\xbb\xa1\xa6\xda\xf2\x37\x71\xf9\xd5\x08\xb6\x23\xe6\xbb\x6b\x92\x6d\xdf\xe9\xaf\xa1\xad\x76\x82\x6a\xdf\x8d\xf8\x04\x2d\xf4\x04\xe2\xef\x4e\xca\x1d\x0b\xb3\x9f\x0e\xfe\xc4\x1d\xf6\x89\x87\xf7\xd7\x3a\x8e\x77\x39\x60\xf7\x38\x32\x4b\x15\x64\xea\x7a\x2c\x71\x21\xe5\xbc\x7f\x50\x97\xe7\x8e\x27\x10\x22\x15\x67\x94\x18\x63\x04\xf6\xc1\x4a\x71\x6f\x13\x81\xc7\xb9\xdd\x87\x65\xb6\x1f\x99\x77\x26\xdf\x20\xb2\x6c\xeb\xc0\x77\x98\xb6\x62\xaf\xbc\xdd\x5b\x64\x8f\x0d\xf0\xa4\xf2\xb6\x64\xd5\xe8\x73\x42\x76\xa6\xd7\x07\xb9\xdb\x49\xd9\x9e\x80\x1b\xb6\xb4\x2d\x99\x87\xf1\x3b\xda\xcc\xe8\xfd\x29\xd3\xa5\xc9\xe0\xf2\xa6\xd9\x4d\xcb\x9d\xc7\xf0\xfa\xe7\x5d\xb1\x23\xcb\x2d\xad\xbe\xda\x33\xb2\xbc\xd4\x29\x25\x29\x59\x95\x76\xc7\x68\x50\x59\x1d\xe7\xb7\x3e\x24\xad\xf1\x63\x20\x53\xf4\xd3\xd5\x26\x9e\x66\x77\xd1\x7c\xad\x45\x4b\x27\x40\xc3\xb6\xe2\xd9\x32\x9a\xb3\x17\xef\x26\xd3\x83\xab\xcb\x1b\xf1\x9f\xdb\xe9\xc1\xc9\xe4\x6c\x32\x9d\x1c\xf0\x6c\xa6\xb7\x27\x21\xd6\xb6\x47\x15\xa5\x19\x8c\x0e\x3d\xe3\xad\x02\x64\xda\x55\x1a\xf4\x34\xbf\x93\xb7\xac\x06\x41\xad\x2a\x59\x63\x38\xbd\xb8\x99\x8e\xcf\xce\x26\x27\xec\xea\xec\xf6\xdd\xe9\x05\x3b\xbe\x3c\x3f\x1f\x5f\x9c\xe8\xad\xdf\xb5\xe5\x6c\x0f\x19\xa7\x8b\x30\x4a\x78\xd3\x39\x5b\xcb\xcd\x5c\xd8\x5e\x4c\xd5\x55\x4b\x0f\xe4\x22\x01\xbb\xea\xbb\x1d\x41\xfb\xa9\xd5\x29\xb8\x22\x31\xaa\x67\x19\xbb\x4d\xbd\x85\xa1\x19\x74\xe5\x5c\x39\x99\x56\x4f\x53\x51\x67\x7e\xec\xb8\x0c\x56\x12\x72\x4c\x6e\x0f\x79\x6e\x7f\x9d\xf1\x38\x63\xa3\xfb\x6f\x20\xc2\x2a\x98\x80\x81\xe3\x08\x38\x50\xf1\x39\x7b\x5c\x82\x31\x9c\x0c\xeb\x5f\xe5\xbd\x47\x6b\x0e\x79\x17\xd3\xec\x15\xfa\x29\xf6\x29\xa1\x38\xb4\x57\x61\xd2\x2b\xce\x33\x47\x95\xfb\x2b\xd8\xa1\x82\xe1\x1f\x06\xcc\xcf\x5f\xbd\x7a\xf5\xff\xab\xff\x86\x1f\xbc\xc0\x9f\xab\x5a\xd2\x9e\x10\xd3\x01\x1c\x7d\x0c\x7f\xfc\x18\x0a\x3e\xf0\x1f\xc6\x3e\x3e\x8b\x93\x28\x8b\x66\x51\xf0\x51\xb0\xfb\xf8\x2c\x9b\xc5\x1f\x9f\x1d\x14\xef\xe6\xe8\x71\x8e\x2d\x26\x5f\xbf\x7e\x75\xf8\xed\xf7\xdf\x1f\xbe\x3e\x7c\xfd\xef\xb5\x62\x71\x94\x64\xa9\x2c\xf0\xdd\x77\xaf\xfe\xfc\xf1\x19\xbc\x10\x80\x7e\xb2\x68\xfb\xff\xde\x62\x39\x7c\x47\xe9\xfe\x84\x96\x71\xc9\x02\xb3\x45\xe8\x2d\x4d\x2d\x6b\x39\xa0\xc8\x2d\xe7\x95\xdc\x79\x5e\xc1\xa4\x09\x38\x0d\xaa\x60\x3b\x98\x07\x5c\x3a\x69\x16\x11\x8a\x0a\x59\xb4\x40\x54\xee\x85\x91\x22\x71\x35\x9e\xbe\x7f\x39\xbd\x7c\x29\x17\x9b\xd1\xc5\xf8\x7c\xc2\xd8\x88\xb9\x32\xb3\x5e\x9a\x24\xfd\xea\x7e\x15\xba\xe8\x15\xfe\x25\x63\x29\x99\x76\x72\xb4\xca\xb4\x06\x36\x65\xc7\xdf\x2e\x40\xa6\xcd\xce\xf9\x2a\x4a\xf4\xdb\x3e\x6d\x39\x3a\xa7\x55\x9e\x66\xca\x3d\x30\x0a\x47\x21\x5f\x08\x26\x0f\x1c\x6d\x92\x17\x86\x64\xee\xe4\xfa\xd6\xc8\xe0\x50\x94\x79\x99\x32\x91\x10\xb3\xc9\x42\xac\xf2\xe9\xa1\x58\x2b\x38\xfa\xae\x2b\x05\x52\xaa\x16\x0d\x70\x62\x8f\x92\xfa\x9b\xda\x0b\x70\x6d\x80\x4c\x1b\x10\x03\x49\x59\xea\xca\xfc\x42\xfa\x5e\xb3\x6f\xf6\x84\x2f\xf6\x80\x33\x30\xcc\xd0\xad\x91\x5b\x0c\xdf\xca\xba\x26\x19\xcd\xb5\xf2\x28\x82\x7f\x0d\x67\xc5\xae\xe2\x64\xbe\x37\x37\x67\xec\x98\x27\xd2\x38\xfd\x77\x95\xea\x07\x1d\x84\xa6\x7e\x7c\x2e\xbe\x98\x98\x3d\x2d\xf0\x50\xc9\x90\x71\xca\xb8\x0b\x4e\x9f\xcb\xa6\x2a\x1d\x4f\xa9\xf6\x3f\xd2\x9b\xda\x98\x0b\x93\x79\x56\x81\xa8\x60\x98\x80\x6d\x8c\x54\x78\x3c\x17\x2b\x48\xb1\x6a\x40\x91\x32\x17\x0e\x7a\x60\x74\xa2\xeb\x4b\x96\x2e\x07\xe4\x4e\x43\x8d\x1b\x6e\x95\x20\x95\x9a\xd2\x10\x52\x1d\xdc\x06\xa0\xb8\x03\xf4\x83\x00\xee\x85\xd1\x2f\x56\x95\x59\x94\x87\x19\xb2\x28\x16\x9a\x63\x78\x02\x6c\x4e\x1b\x65\x6a\xeb\x0f\x9a\x5c\xd9\xad\x5d\x3b\xe5\x36\xa4\xd4\xe9\x7e\xc5\xee\xc5\xce\x5d\xee\x15\xee\x62\x64\x5a\x42\xc4\x23\xb7\x35\x67\xf0\x9b\xd4\x3d\x7b\x50\x74\x46\xdf\x68\xc0\x46\xd3\x0d\xf0\x8d\xfa\x11\xdf\xa1\x4c\x01\xe6\x67\x58\xca\xe4\x0c\x1b\xa3\x66\x40\xe9\xec\xd8\x90\xe5\xc4\x53\x6c\xb9\x7e\x74\xe2\xd5\x15\x27\xf3\x2d\xb4\x12\x87\xac\x0a\x4f\x03\x69\x1c\x3b\x11\x74\x57\xa4\x63\x69\x19\x22\xf4\x11\x47\xa4\x32\x08\x4a\xa7\xa9\x61\x0f\x33\x82\x86\x85\xfb\xf6\xc0\x9d\x20\x19\xbb\x9c\x44\xa2\xf0\x90\xb9\x41\xb5\xae\x4f\x46\x06\xf1\xcc\xd0\x85\xd1\x4b\xbc\x15\xb6\xc2\x54\x3e\x21\x7d\x7e\x22\x15\x32\xca\x2e\xb5\x4e\x6b\x29\x32\x17\x19\x82\xeb\x5e\x1d\x38\x9b\x61\x7e\x9e\xa3\x54\x37\x18\xa4\xe8\x83\x17\x58\x46\x20\xbc\x0d\x79\x31\xa1\x54\xc4\xb7\x68\xb3\xa3\xce\xc0\x10\x46\x3d\x0e\x9e\x3c\x7d\x50\xcf\xa3\x1c\x47\xc4\x4e\x46\xad\x6e\xdd\xae\x67\x10\xda\x09\x14\x58\x85\x4f\x22\x28\xb2\x32\xbc\xe9\x93\x17\x97\x5a\x48\x84\x9a\x0e\x68\xca\x8c\x09\x85\x57\x81\x60\x80\x2f\xe6\x90\x4c\xb4\xee\x5d\x60\x01\xd0\x85\x18\x1d\x73\xe5\x27\xd9\x0d\xa9\xad\x2c\x9d\xa3\x31\xb5\xa1\xa6\x14\x9d\x8b\x32\xff\x57\x5f\x78\x26\xef\x7c\xd5\xad\x76\x94\x34\x1e\x5a\xe5\x89\x1c\x8e\x30\x5d\x16\xbc\x15\x56\xc9\xa7\x23\x99\x56\x4d\x59\x64\x44\xf7\x8e\x52\xf4\x20\x49\xc7\xbf\xe1\xf1\xd0\x8d\x4e\x5b\xc1\x85\xb7\x34\x61\x2b\xf6\xae\x8e\xd3\x05\x91\x8c\x03\xce\xd2\xc4\xc6\x43\xdb\x05\x0b\x48\xda\x1a\x0e\xdc\xa5\xf5\xcb\x0b\x4f\xfe\x05\x93\xb6\x07\x39\xce\x47\x30\xe4\xe5\x65\x1c\x4b\xd7\x69\xc6\x57\x07\xca\x5c\x01\x3d\xc2\xc3\x42\x43\x0a\x06\x34\xea\x35\x26\x80\x84\x3c\x8f\x49\x8e\x79\xc5\x53\xfd\x1d\xfc\xbe\xd9\xd3\xdb\xa5\xb4\x26\x51\x09\xfc\xba\x45\xd1\xd7\x20\x72\xaf\x52\x03\xdd\xdf\x73\x8c\x60\x58\x50\xad\x59\x2d\x76\xe0\x21\xd2\x70\x45\x28\x27\xbf\x22\x72\x92\x32\x6e\xb3\x85\xd6\x51\xd9\x15\x13\x6e\xd9\x88\x50\xda\xeb\xd0\x10\xd4\xbc\xfb\x6b\xd3\x43\x67\xd7\xb1\xa8\x46\xc3\xb1\xe9\x65\xa6\x08\xab\x48\xa4\x9b\x6f\x31\xf2\x55\x1e\x86\x1b\x81\x9a\x3b\x5a\x6e\x68\x1e\xc3\x48\x28\xf3\xed\x22\x0a\xe5\x4e\xde\x53\x1c\x2b\x82\x54\xec\x0d\x6f\x84\x54\x1a\xaf\x75\xe2\xeb\xa8\xe4\x88\xa1\xf2\x28\xb0\xe4\xdf\x56\xc1\x8d\xb7\x72\x11\xb0\xe3\xbb\x55\x98\xc4\x13\x3e\xa1\xba\x5a\x16\xdb\x67\x79\x9f\x9c\x9a\xee\xa1\xed\x2a\xd9\x63\x88\x20\x37\xf4\x66\xa6\x68\xb1\xc8\x41\x24\x08\x19\x92\xdf\x74\x2c\xd8\xaa\x4d\x3f\xcd\x9d\x45\x2a\x17\xa3\x6f\xd8\x20\xb6\x95\x21\xc8\xa8\x6a\x47\x06\x23\xb0\xf6\x42\x14\x1e\x0b\xf1\x2d\x38\x9c\x23\x53\x7d\xb8\x21\x5d\x31\x12\x1f\xf4\xa7\xcf\x33\x63\x2f\xd1\x14\x23\xf1\x49\xe0\xfa\x5d\x4c\x2d\x3c\x9c\xc7\x91\x0f\x7a\x7b\x5f\xe6\x82\xc1\x6b\x32\x0c\x4e\xb5\x30\xdb\xf7\x39\x52\x21\xa0\x8c\x3e\xa3\x79\x6d\x8c\x2a\x8c\xfb\x32\x2b\xd6\xf3\x6d\x9f\xfb\xe6\xad\x9e\x01\x72\x7f\x92\xd6\xf8\xcf\x21\x5e\x9c\x27\x1a\x21\x5e\x17\x31\xb6\xd4\x86\x63\x16\xcd\xd5\x25\x2d\xe4\xc9\xdf\x08\xa6\xee\x85\x91\x18\x74\xc9\x21\x63\xb7\x21\xea\xb4\xa3\x07\xd1\xa3\x7c\x71\x02\x0f\x0f\xe4\x51\x4f\x10\x1c\x95\x94\xa4\xdd\xcc\xa3\x8f\xd1\x0d\x64\x40\x2f\x28\x54\x4f\x61\xa1\x6d\x8e\xaf\x10\x21\xb5\x75\x61\x54\x8f\xe2\x24\x7a\xf0\xe7\xb5\xac\xfe\xe5\xe5\x4e\xb5\xd1\x02\x03\x0b\x14\x51\x3f\xe1\x0d\x41\x92\x80\xbf\x66\x75\xa8\xa2\x6a\x0a\x6e\x39\x2e\xb4\xf7\x79\x10\xac\x21\xac\xa0\x01\x2b\xad\xba\x23\x2e\x3f\xad\x45\x2b\xdc\xd0\x3f\xcc\x7d\xb0\x3e\x13\x63\xe5\x80\xc5\x01\xf7\x52\xce\x54\xa3\x31\xee\x43\xff\x80\xc3\x12\x74\x29\x34\x79\xc6\xcc\x66\x1d\xf9\x23\xf7\xc9\x9a\xd0\x1e\xb1\xd2\x5c\x44\xc5\x96\x19\xf3\x9b\x2c\xe1\xc0\x68\x48\x04\x62\x5d\x8f\x80\xe4\x57\xcc\xd3\x81\x0a\xea\x32\x6c\x51\xd9\x2f\x71\x64\xe5\xf1\x01\x26\x58\xf0\xc3\xdc\xb4\xb4\xf7\x21\xd5\x03\x6f\xb5\x0d\x51\x1b\x5c\x47\xb0\x96\x74\x28\x48\xfd\x55\xbe\x62\xde\x0a\x6f\xb0\xc5\x54\xa8\xae\x53\x64\x37\x2a\xe7\xbe\xea\x3a\x5c\xbc\x58\x7a\x0f\x85\x25\xff\xeb\x57\xdf\x7e\x7f\x7e\xc0\x5e\xbf\x13\xff\x7f\xf5\x4e\xaf\x7c\xd8\x19\x9f\xa7\x92\xf4\x90\x8d\x5e\xc3\xa2\x29\xe6\x75\x8c\x2d\x26\x0a\xe7\x21\xde\x41\xc1\xad\x23\xf2\x30\xad\x3e\x4f\x88\xe5\x6b\x6e\x31\xf6\xe2\x44\x26\x89\x39\xaa\xde\xed\xa0\x53\xed\x0a\x9f\xed\xd9\xa0\x00\x8e\xc3\xfa\x85\x18\xc0\xe2\x30\x1c\x85\xf3\xf4\x1b\x1c\xe3\xc7\x67\xa7\x30\x5f\xe2\xc0\xdf\x38\x02\xcb\xf9\xe9\x80\xe1\x2e\x44\xd9\xb9\xb1\x14\x66\x7f\x75\x75\x97\x8a\x09\x7f\x8d\x35\xf4\x76\xb1\x37\x72\x23\xa2\xee\xfa\x2a\xee\x0e\x72\xd4\xae\x5e\xd5\x47\xff\xf6\x4f\x7f\x86\x36\x2d\x9a\xd6\xf0\xf1\x28\x75\xed\xfb\xac\xb4\x46\x54\xf7\xc0\x5d\x06\x8e\x1d\xa5\xed\xb9\x62\x88\x5b\xde\xa2\xb7\x2e\x37\x92\x0d\xcf\xef\x6a\x27\xa9\x87\x36\x00\x49\x6b\xfc\x60\xa9\xae\x3f\xdc\x6d\xbc\xb5\xa7\x6a\xf2\x40\xbb\x70\xf3\x3e\xbb\xe0\x8f\xec\xca\x4b\xd3\xc7\x28\x99\xeb\x69\xb7\x16\x22\xf1\x30\x7a\xcf\x6d\x17\xb0\xa7\x1d\xb1\xf1\xd5\x69\x75\x68\x4c\x79\x56\x59\x4d\x8b\x63\xa5\x1f\x4e\xfd\xb8\x66\x2e\x2d\x0a\xab\x07\xb0\x83\x92\x7a\x4a\xf1\xb5\x8b\xfa\xfa\x25\x66\x77\x8c\x6c\x27\x07\x81\xc0\x9b\xc9\x83\x93\x07\xe1\x80\x19\xfb\x21\xca\xa5\xcd\xd2\x5c\x46\x63\x2f\x74\x6b\xd0\x77\xc5\x11\x09\xfa\x31\xde\x88\x6d\x05\x78\x28\x7a\x7a\x71\x79\x26\xa3\xee\x89\xcd\x71\x06\x2e\x4e\x62\xa0\x08\x01\x6b\xa1\x46\xca\x22\xca\x3d\x0a\x36\xa3\x0d\xcf\x7b\xf1\x52\xdf\x72\x57\x08\xc3\x4b\x0a\x78\x3e\x20\xad\x93\x3d\x64\x53\x31\x71\x25\x62\xfe\xc2\x7c\x93\x2d\x8c\x0f\x24\x30\x1e\xd6\xa5\x94\x21\x1e\x02\x70\x5b\x41\x2a\x3b\x6e\x51\x25\x34\x48\xa3\xa4\xc6\x79\xe2\xc9\x9b\x77\xba\x54\x33\x96\x02\x57\x80\x40\x1d\xb6\x26\xc0\x07\x1c\x1c\x02\xc8\xc7\xba\x16\xf3\xe0\xc6\x57\xd9\x0c\xab\xe0\xd6\xac\xb1\xaf\x19\x2a\x85\xb5\x34\x64\x37\x68\x0e\x09\xd3\xd0\xeb\x47\x8f\x32\x9b\x48\x77\x3e\x38\x29\x9a\xf1\x6c\x97\xa2\x70\xa9\x6c\x11\xba\x79\xe9\xcb\x52\x38\xce\x96\x5e\xb8\x10\xab\xdd\x23\x47\x47\xda\xb9\x61\x36\x36\x16\xa6\xf0\x2c\xae\x85\x3a\x45\xd4\x14\xa4\xf0\x32\x84\x24\x36\x71\xb6\xaa\x46\xc1\x21\x1d\x49\xd3\x98\xcf\xb0\xca\x21\x6b\x6b\x4e\xe3\x32\x43\xa5\x40\x41\x07\x83\x1b\xc3\xba\xe1\xb5\xa5\x5c\x96\xf8\xfc\x00\x14\x55\x38\x9a\x9a\x6e\x44\xd5\xb2\xd5\xa8\x67\x02\x3f\x30\x03\xaa\x6c\x65\xe0\xdb\x16\xce\x6f\x65\x30\x85\x0a\x41\x97\x1c\x8e\xc4\xa8\x98\x87\x80\xba\x77\x84\xfa\xcf\x68\xec\xdb\x7d\xa8\x11\x51\x5b\x4c\x3b\x6d\xa5\x28\x5c\x4a\x13\xa4\x0e\x3e\xed\xe5\x48\x9c\xd4\xcd\x73\x33\x22\x3d\xea\x06\xee\x38\x87\x13\xa7\x71\xf9\x24\x55\x77\xc1\xb5\x79\xf9\x6c\x89\xc7\x58\x8d\x82\xc3\xd6\x46\xcb\x54\x94\xc6\xaf\x19\x24\xae\xb3\x0b\x74\x54\x70\xe1\x5d\x59\xc5\x58\x73\xd7\x56\x71\xe0\x6f\xcf\xb6\x1f\xb7\x41\xa6\xf3\x5d\xcf\xe3\xb4\xe5\xae\x7b\x19\xed\x47\x8f\x8c\x1c\x62\x79\xa5\xfe\x22\xe4\xe6\xcf\xa9\x2b\xea\xc0\xaf\xbb\xef\xb4\x96\x23\x71\x52\x96\x2f\x8e\x73\x26\xa9\xba\x0b\xae\x8d\x1c\x04\x96\x70\x4c\xb5\x48\x28\xd0\xe2\xb0\xba\x9c\x74\x6d\x25\x17\x32\x14\x9c\x78\x85\x5a\x84\x77\x70\x04\x49\xa7\x41\x40\x18\xc2\xb4\xca\xd6\x51\xde\x54\x2c\xcb\x8c\x20\x48\x5e\x6e\xde\x71\x23\x9f\x61\xec\x18\xbc\xc0\xbe\xe3\x2c\x8f\x21\x35\x9b\x29\xe1\xdd\xd0\xe4\x09\x72\x65\x2c\x90\x46\x28\x7e\x58\x9d\xb6\x8f\xdf\xa2\xaa\xab\x39\x0d\x89\x72\x50\xc8\x20\x44\x0f\x5a\x14\xc4\xfc\x48\x5e\x8a\x82\xca\x3e\xc3\x14\x7b\xd1\x4a\x6a\xf2\x4d\xd8\x6c\x6a\xd9\xa3\x28\x03\xb7\x94\x0a\x66\x3d\x6f\x53\x59\x6b\x8e\x97\x7f\xd5\x32\xa8\xbf\xb2\xa7\x77\xfd\x8e\x8d\x4f\xce\x4f\xf5\xe9\x31\x5b\x4a\xd0\xa8\xdf\x9e\x9c\x4e\x2f\xaf\xcd\xf4\x37\xcb\x90\x38\x9c\x8f\x2f\xc6\xef\x26\x66\x0e\x5b\x65\x28\x1c\xf4\x81\xd1\x9a\x2f\xed\x69\x1a\x4c\x6c\x2f\x9d\xec\x68\x2f\xe1\xa8\x85\xe6\xe4\x51\x98\xa1\x76\xa5\x66\x9a\x5b\x9b\x4a\x4c\x6c\x89\x04\x48\xd8\x1a\x1a\xce\x42\x1b\x29\xb3\x60\x1a\x21\x59\xd5\x73\x47\xd2\x8c\xdb\x00\x3a\x00\x65\x3d\x52\xa9\x49\xed\xe1\x91\x88\x0d\x85\x59\x3f\x11\xdb\x57\xa4\x60\xd1\x5f\x74\x35\x5f\x52\x68\x76\xfb\x02\xb5\x17\xb2\xe7\x21\xed\xcc\xb8\xcc\xb3\x0a\x89\x52\xe5\x3d\x74\x61\x68\x58\x9a\x05\xe9\x01\xd0\x29\xf4\x47\xa7\x22\x8c\xf4\x07\xd9\x49\x88\x8e\xb5\x96\x04\x74\xc3\x28\x0f\x6d\xae\xe4\xbc\x51\x4f\xe9\xec\xdd\x67\x3c\xd9\xb4\xf0\x8b\x21\x17\xac\x61\x06\xd8\x2d\x37\x6b\xa9\xaf\x3c\x7f\xde\xb8\x30\xd6\x43\x36\x15\x25\xf0\x4b\x53\xe9\x46\x2c\x00\xcb\xa8\xf4\xe8\x9f\x5a\xa5\xd1\xf6\xea\x5a\x9e\xad\xb4\xd9\xf2\xb8\x60\xc0\x38\x2c\xf9\x41\xe5\xaa\x9d\xc4\x76\x21\x17\x85\x3c\x49\x2e\xe3\x9d\x7a\x8f\xfb\xf4\xa2\x2a\x13\x63\x41\xd4\x50\xbd\xbe\x9c\xcb\x31\xf5\x7b\x27\x5f\xbb\xca\x04\x4c\x72\x7e\x81\x4b\x94\x72\x36\x81\x05\xcf\x68\xf7\x8d\xb5\x94\xb9\x70\xa3\xd6\x6f\x7e\xac\xb7\xf5\x36\x5e\x3e\x16\x40\x3a\xc8\xb5\x01\xe9\xae\x45\x6e\x8e\x4e\x43\x55\x7d\x41\x7b\x5e\x3c\x81\x80\x9a\xd0\x93\x7d\x98\xd0\x54\xf4\x37\x9c\xec\x45\xa7\x5f\x41\x78\xd3\xc7\x25\x97\xc6\xac\x52\x17\x5d\x58\xbf\x06\xc5\xce\x09\xc4\x15\x9f\xdf\x70\x89\xbf\x13\x26\xf6\x32\xc2\x05\xf7\xc6\x6e\xea\x5e\xf9\x2b\xeb\xae\xdf\x8d\x06\x09\xee\xc4\x68\x98\x2b\x7a\x35\xc3\x81\x2a\xb4\xac\x59\x0d\xe6\x40\x61\x00\x74\x4b\x0f\x1a\xa6\xc5\x50\x0a\xba\xa9\xb4\xa2\x72\x40\x4c\xa2\x4a\x92\xe2\xa8\x95\xa1\x11\x62\x57\x15\x02\x7f\x34\x19\x9f\x2d\xa3\x28\xad\x2c\xc6\x83\x20\x7a\x84\xce\x0e\x46\x24\xf0\xf7\x21\x7b\x13\x89\x61\x2e\x2f\x76\xc1\x10\x06\xd3\xdc\xc3\xa8\xc9\xc0\x16\x52\xb4\xc0\x1d\xec\xd0\xd2\x94\x97\xe6\xe9\x29\x98\x9b\x2b\x87\x07\x93\x69\xcd\x7e\xd9\x53\xdb\x65\x1e\x85\xcf\x0d\x73\x5f\x6b\x21\x2a\x0f\xa9\x31\x62\xde\xc2\x33\x38\x86\x19\xcb\x52\x39\x16\x0e\x02\xd8\x50\xa8\xa8\x87\x84\xf7\x95\xd3\x74\x95\x71\x4a\x9d\x9c\x61\x77\x41\x3c\x7c\xef\x92\x15\x41\x5e\x3c\x24\x18\xed\x0e\x55\x19\xad\xf9\x9e\x79\xb1\xae\x2a\x57\x61\x72\x5b\xcf\xa6\x36\xfc\xad\x49\x0c\x01\xaf\x66\x42\x85\xc6\x63\x4e\x00\xf5\x44\xa8\xdf\x08\xfc\xcb\x90\xc7\x9c\x7d\x7c\xd6\xf0\x37\xfb\xf8\x6c\x43\x4b\x52\x3a\xba\xc0\xa5\x92\xb2\x71\xc5\xaa\xa6\x79\x66\x17\x4c\xe8\x32\x62\x6a\x09\xc1\x5d\x2d\x26\x77\x7e\xe8\x81\x75\x7a\xe9\x46\x05\xab\x38\xaa\xca\x2f\x6f\x8e\xf4\x0e\x4f\x7d\xc9\x51\x71\x6f\x7e\xf5\x86\x6b\x55\x1e\xfa\x85\x87\x6e\x67\xfb\xb7\xf6\x21\x1d\x35\xe7\xee\xbe\xc9\xe0\x41\x3c\xf8\x20\x0e\x4f\x3e\xa6\xcc\x6b\xb0\xb3\x87\x6e\x44\xdd\x46\xc6\x1a\x74\x02\x26\x81\x60\x9a\x5b\x64\x1e\x99\xfb\xde\x22\x8c\xd2\xcc\x9f\xe1\xe6\x22\xcd\xe6\x26\x7f\x5e\x72\x7d\xfb\xaf\x8f\x94\xc1\x25\xc0\x63\x01\xaa\xff\xee\xd5\xb5\x0d\x2c\x41\xcd\xa3\x86\x74\x75\x0c\x33\x34\x46\x83\x03\x51\x61\xff\x35\xeb\x38\xb7\xec\x82\x07\x51\x42\xa0\xfb\x20\xfb\x47\x07\xce\xd6\x92\x04\x6e\x91\x18\x94\xab\xca\x50\x78\x1e\x3d\x86\xf2\x86\xab\x18\xba\xb0\x30\xf2\x55\xed\x2c\x69\x9a\x05\x7a\x92\xa3\xe0\xc6\xa0\x66\x6d\xd1\xd3\x2a\x9f\xc4\x2a\xd6\xe2\x14\x2e\xa3\xee\xb9\x97\xe5\x89\x72\x5d\x14\xfb\x96\x70\x01\x8e\x29\x79\x0c\x49\x0a\xe0\xae\x4f\xed\x0f\x10\xbc\x28\x95\x49\xf3\x62\x98\xbd\x60\x6f\x63\x18\x8e\x4f\x0a\x86\xd2\x66\xb0\xef\xd1\xbb\x73\x6c\x17\xb0\xa7\x9d\x27\x8b\x7a\xee\xc0\xcd\x23\x9f\xc9\x5f\x9e\x54\x97\x80\x28\x5d\x42\x28\x7b\xfe\x88\x9a\x10\xb0\x3b\x84\x20\xdc\x85\xd1\x27\xba\xa2\xc8\x75\x55\x45\x1f\x31\xe0\x73\xa6\x44\x45\x0b\xbe\xf9\x32\xfd\x09\x7b\x01\x9b\x52\x60\x06\xff\xca\xc9\xa8\xe8\x41\xdf\x1c\x19\x52\xcc\xf4\xa0\x64\x8d\x16\x03\x45\xb3\x13\xb8\xfc\xc7\x50\x91\x65\x86\x3d\xda\xcd\x93\x2b\x19\x22\x4e\xf8\x40\x68\x5e\x53\x78\x1c\x88\x2f\x29\x16\xc8\xc2\x29\x1b\xcc\x27\x21\x47\x8d\x0a\x21\x85\xd7\xd6\x11\x06\x22\x04\x7d\x78\x1e\x64\x72\xde\x47\x0a\xa8\xc7\x14\xd3\x7c\xa1\xf1\xc7\xc0\x40\x7a\xf7\xb1\xbd\xf3\x1f\xb6\x65\xe4\xe1\xe8\x29\xdb\x66\x58\x04\xc4\xd6\xd9\xe8\x8d\x96\x67\x27\x52\x5d\x6b\x44\xd7\x93\xbf\xdd\x4e\x6e\xa6\xfa\x6b\xc1\xed\x02\x04\xda\x37\x57\x97\x17\x37\x06\xe7\xba\x96\x12\xf6\xd4\x2f\xcf\x26\x37\xa6\x09\x6b\xbb\x00\x81\xf6\xed\x74\xa2\x37\x1b\xd8\x7c\x6d\x4f\x97\x7b\xb0\x85\x9e\x73\xb8\xc9\x12\x03\x34\x16\x53\x3d\x04\xd8\x44\x93\xe3\xbf\xc8\x45\x7e\x15\x9b\xe2\x63\x3b\x50\x70\x44\xa7\x14\xac\xe7\x91\xf8\x3d\x5d\xc7\xd0\xdb\x8a\x9f\xc5\x34\x2a\x36\x0e\x5c\x6c\x11\xd7\xd2\x92\x49\x8c\x95\x68\xe6\xe3\xf0\xc2\x85\xc1\xcf\xfe\x62\x29\xc6\xb0\xac\x76\x25\xef\x60\xd2\xf4\xc0\xaa\x94\xaf\xb5\xad\x4c\x11\xf1\xbc\x11\xe7\x56\xba\xc9\x16\x8e\x66\x97\xc1\x7c\x5b\xc5\x2b\xa6\x45\x70\xc8\xe2\x8f\x5b\xaf\xfe\x02\xe9\xbc\xbe\xd3\x1f\x63\x9e\x12\x0a\xb5\xbd\x62\xb1\x05\xe4\x5b\x16\xd5\xdb\x17\x07\x08\xf2\x38\x88\xf2\x39\x7b\x0b\xfb\xea\x64\xdd\xf9\xb5\x07\x21\x4d\x90\x67\xc6\xfd\x07\xd4\xf9\x56\x69\x69\x66\xe2\x3c\x20\xaf\x05\x55\xd0\x1e\x03\x66\x5a\x75\x0a\xae\x5c\x9c\x11\x1f\x78\xb0\x2e\x8e\x14\x5e\x15\xbd\x4d\x8c\xda\xd9\xd2\x0f\xc4\x5e\xe4\xee\x17\x71\x28\x4b\x5b\x1a\x03\x83\xe6\xdf\xc1\x89\xa4\xd8\x45\xae\x3c\x8c\xd5\xa4\x4e\xf8\x72\x1f\xbc\x61\x92\x6f\x92\xf3\x49\xe1\x10\xda\x4d\x81\x8b\x2b\x6d\x9d\x8c\x40\x65\x90\xad\xbb\x0a\x9d\xbf\x8a\x89\x09\x49\x97\x54\x5e\x44\x30\xc0\xed\x06\xd1\x55\x8f\x8e\x24\x4f\x54\xc4\x63\x45\x30\x34\x1e\x9e\x6c\xab\x91\x71\x60\xc0\xee\x9a\x03\xab\x54\xce\x8b\x2e\xd0\x09\xc5\xa2\x26\x19\x4d\xd8\x30\x81\xee\x84\xa0\x2b\xee\xc0\x17\x8e\x0f\xe4\x6e\xd1\x55\x8d\x86\x63\xd3\xa2\x1f\x26\xd7\x0f\x5e\x52\x9f\x58\x37\xfd\x40\x77\x98\xd6\xfe\x6b\x80\x44\x6f\xbf\xa4\x91\x4e\x4d\x22\xc4\x90\x88\xbf\x17\x09\xab\x25\x9b\x01\xb2\x73\x5b\x35\xde\x53\xe1\xd9\x7b\xcb\x3d\x51\x03\xed\xa2\x1d\x72\xb9\xcd\xc3\xcc\x77\x43\xf5\x71\xbb\x94\xf9\x4f\x03\xa2\x6f\x1b\x39\x48\xe4\xca\x1f\x6f\x99\xbc\xb6\x50\xad\x5b\x7c\xf5\x45\xe9\xfc\xac\xb7\x63\x1d\xe5\xdd\x39\xfb\x5d\x39\x56\x2d\x6a\x38\x70\x37\xfa\x02\xea\x8a\x91\xf9\x74\x6d\x7d\x5a\x4b\x39\x70\x31\xc5\x0a\xd7\x94\xa2\x71\x51\x8a\xeb\xe6\x30\x2d\xcf\x7b\xbb\x9e\x3b\xf6\x0d\x80\xde\x36\x55\x44\x43\x79\x38\x7e\x53\xfc\xde\x44\xba\xf1\xc2\x4a\xee\x41\x88\xd3\x65\xda\x6a\xca\xcd\xe6\x76\xfa\x88\xfd\xa8\xd2\xa5\x68\xce\x58\xaa\x05\x2d\x59\x77\x4b\x33\x0c\x75\x77\xa9\xb6\xb4\x14\x9b\x3a\x98\x3d\xec\xa6\x9f\x1e\x92\x43\xfb\x15\x6c\x40\x91\x55\xe3\x54\x61\xad\x3d\x6c\x43\xea\xdc\x4a\xbb\x66\x4c\x68\x8b\x38\x32\x5b\x99\xb5\x94\xa0\x53\x67\x23\x86\x11\xf9\x8b\x8c\x54\xb8\xe3\xfb\x05\xa2\x7d\xe1\x55\x8d\x95\xbe\xc4\x9d\x14\x09\xaf\xac\x6c\xb0\x5e\x68\x2f\x44\xe0\x01\x5e\x0f\x16\xdb\x82\xf6\x62\x44\x3e\xad\x2b\xe6\x2e\xe7\x81\x7d\x30\xa5\xb5\x41\x92\x59\xb5\x75\x4b\x31\x2a\x1f\x90\xbb\x0c\xd0\xfa\x7b\x3d\xd3\xa9\xf2\xb4\x28\xfd\xa4\x1a\x2d\x43\x58\x70\x76\xc3\x86\x20\x67\x96\xf8\x5c\xaa\x86\xfc\x70\xee\x3f\xf8\xf3\xdc\x0b\x4a\x23\x15\x30\x73\x96\x57\x38\x32\xeb\xbd\x41\x10\x47\x3a\x2e\x48\x31\x89\x75\x1c\x80\x8b\xf9\x92\xb3\xcb\x71\x99\x84\xa4\xf4\x3c\x28\x73\xb1\x81\x63\xa8\xc1\x94\x6a\x18\xa2\xfd\x65\x58\xf8\x0f\x1c\xbb\xea\xf3\x94\x2d\x72\x7f\x7e\xc8\xd8\x18\x02\x19\xa2\xa5\xe7\x92\x7b\x81\x00\x83\x11\xbd\xb0\xf5\xc0\x46\x2d\xce\x2b\x3f\x0b\x0c\x12\x9e\xa2\x11\x51\xc2\xc1\xf2\xdc\x34\x9c\xf7\x8e\x60\xa8\xd6\x11\x73\x4d\x1b\xb6\x0d\x24\x30\x23\x0d\xd3\x16\xfd\xf9\x0d\x25\xb9\xda\x82\x59\xa0\x29\xcf\xd2\x83\xb4\xc0\x70\x7c\x07\x6b\x09\x58\x53\x6c\xf0\xe0\x22\x34\x50\x2b\x0c\xc2\x93\xde\x02\xa5\x09\x6a\x6d\x0e\x4d\xeb\x93\x28\xbc\xe4\xde\x4c\x3a\xa3\x8c\xa4\x91\xb5\x2c\xdb\x2d\xea\x20\xc4\xe9\x32\x6d\x9a\xcd\x62\x26\x06\x77\x4f\xdb\xc1\xe8\x0e\x23\x49\x0f\xdf\xda\xc1\xe8\x52\x25\xc1\xc3\x4b\xf9\xc5\xe1\x8e\x0c\x3e\x38\x84\x97\x51\x9f\x3b\x25\xea\x03\x06\xa1\xda\x4f\x0a\x41\xf7\xad\x64\xf3\x56\x70\x25\x6b\x34\x7a\x53\x74\x41\xef\xd6\x83\x5d\x25\xdb\x05\xb7\xa1\xa4\xee\xee\xed\x43\x4a\xdd\x97\x9b\xbd\xd4\xc5\x7d\xc2\xfb\x28\xcd\x94\x22\x4f\xfc\x3a\xc1\x68\xbd\x75\x73\x41\xb3\x99\xa1\x2b\x99\xe1\x71\x76\x9b\x44\xf6\x21\x45\xc7\x2b\x6f\x9e\x2c\x4d\x90\x2d\x6b\xd1\x50\x74\xb0\x73\xa2\x9b\x07\x26\xb2\xcd\xb7\x04\xaa\x72\xa8\x4f\x6a\x9d\xfe\x43\xd1\xe9\xdf\x61\x28\x4f\x83\x51\x28\xa9\xb2\x35\xa6\x9b\xc9\xf1\xed\xf5\xe9\xf4\x07\xf6\xee\xfa\xf2\xf6\x4a\xcb\x5d\x57\x8c\xc0\xe7\xfa\xc3\xe9\xf1\xa4\x23\x2c\x97\xa6\x14\x95\x8b\xde\x46\x75\xbb\x80\x3d\xed\xab\x71\x37\xfe\xb6\x32\x54\x0e\x1d\xa1\xc5\x34\xa5\x88\x5c\x4e\x26\x1f\x26\x67\x97\x57\x86\x00\x63\xda\x72\x44\x4e\x5d\x81\xcc\x34\xa5\x68\x5c\x0c\x5f\x7c\xe3\xb5\x3d\xdd\x99\x17\xec\x59\xeb\xb7\x0f\x96\xf6\xf2\x17\x51\x3a\xbb\x66\x26\x7d\x41\x3a\x2f\xb9\xf4\x0b\x01\x8a\x18\xa1\x9f\xf0\x89\xfd\xe2\xd7\x83\xd2\x90\x68\xc5\x33\x4c\x7c\xfa\x69\xd5\x99\x70\xa8\x27\x35\x02\x6a\xcc\x33\x52\xd8\x28\xbe\x10\xe7\x67\x3c\x2f\x8b\x3d\x18\x44\x95\x02\x37\xd1\xcf\x7e\xfc\x8d\xe9\x3b\x53\x09\x90\xb1\xc9\x6e\xee\x0e\xcd\xba\x3e\x01\x19\xe6\xd3\xc2\xe6\x3f\x28\x8e\x26\x90\x0f\xf4\x88\x7d\xff\xea\xbb\x23\x36\x96\x39\x50\xfc\x94\xcd\x79\xe8\x83\x27\x21\x26\x60\x99\x47\xd8\xc3\x30\xb8\x69\x9c\xf8\x0f\x7e\xc0\x95\xf3\x1a\xff\x55\x7c\x5d\xb4\x87\xf7\xd3\xee\xe8\x18\xfb\x66\x3f\x44\xbb\x88\xde\x3a\x49\x92\x1b\x7c\x74\x2c\x9e\x7c\xf9\x72\x20\xcb\x35\xde\x8f\x63\x7f\x02\x0f\x8b\x12\xab\x5a\xde\x2d\xf1\xa2\x61\x2d\xef\xd2\x3c\xbb\x44\x41\x6a\x25\x50\xd0\xa1\x5a\x7b\x8a\x6a\x6d\x41\xf8\xcc\xbb\xe3\x81\x1c\xd6\x85\x0f\x28\x21\x02\xe2\x20\x34\xc9\x12\xbc\x29\xaf\xe4\x5b\x4f\x10\xdd\x70\xed\x09\x90\xb1\x15\xf7\x36\x45\x64\x4a\xb4\x0b\x2c\xc2\x39\x77\x02\xb3\xac\x4d\x46\x55\xdc\x2c\x1d\x6d\xdd\xe1\x77\x42\xb2\xa9\x4a\xc6\x53\xfa\x62\x34\x1b\xfe\x63\x38\x3d\xbd\x3a\x62\xa7\x18\xa0\x19\x43\xeb\x64\xc9\x1a\x8f\xed\x91\x72\xe6\xf0\xd8\xc3\xeb\x2d\x8f\x8e\x03\x2c\x8e\x79\xa6\x20\x67\x11\x9c\xe9\x47\x31\xaa\x9b\xba\xbb\xc2\x13\x20\x71\x6f\xad\x32\xeb\xae\xbd\x58\x2d\x55\xc8\xfc\xb7\xec\x3e\xa8\xe3\xcd\x9e\x00\x15\x5b\xbd\x57\xda\x4f\xd3\x76\x15\xa9\x58\xf4\x87\xf4\xed\x02\x64\xda\xa6\xfd\xc6\x56\x09\x02\xf5\x6c\xd3\x23\x41\xe6\x6e\x32\xdf\xad\xdb\x56\x23\xe1\x10\xf5\x1f\x7c\xfe\x58\x85\x5a\xf2\xc1\x71\xc4\x88\xa1\xab\x8a\x1b\xff\x65\x95\x29\xa2\x91\xb7\xc8\x0e\x4a\x77\x6d\x0a\x2a\x15\x57\xa0\xee\xb2\x82\xe6\x44\x13\xf5\xb3\xe3\x0c\x47\x26\x40\xc6\xd6\xe8\x03\x10\x04\xa3\x74\xb5\xc0\xf8\xf3\xea\xc9\x07\x2f\xc8\xb9\x0c\x89\xb1\x9d\x18\x6c\x97\x87\xd8\xaf\x13\x25\xb9\x95\xff\xd9\xe6\x59\x9e\x45\x3a\x1b\x32\x3b\xb5\xf8\xb0\xc4\xc9\x32\x0d\x74\x59\xd3\x97\x1c\x19\xf7\x1e\xae\x69\x76\xc9\x6a\x10\x79\x07\xbe\xa0\xd9\x25\x2b\x7b\x79\x97\xd1\x63\x15\x3d\xa5\x99\x17\x46\x8f\xdc\xaa\x12\x11\x43\x10\x6c\x64\x55\xb1\x59\x92\xed\x6b\xd2\xd0\x2c\x79\xd0\xc1\xb5\x59\x82\x46\x1d\x6d\x67\xc2\xfb\xc8\xcc\x61\xbb\x14\x9d\x0b\x1c\xa5\x52\x76\xb7\x46\xef\xad\x6e\x76\x9a\xe2\x34\xbe\xe8\x53\x3f\xe7\x99\xe7\x07\xea\x53\x40\xf0\xec\xcc\x9f\xe5\x81\x97\x6c\x1d\x1e\xcc\xa0\x5c\x69\xd1\x10\xcb\xb5\xa0\xfb\x8b\xb4\x95\xa3\x71\x4a\xf8\x0c\xc3\xc8\x8b\x65\x56\x26\x0d\x35\x33\x34\x14\xa7\xf1\xdd\xf4\x35\xb2\x10\xb6\xa3\x0a\x91\xbf\xb4\x11\xea\x66\xda\x52\xce\x85\x93\xed\x17\xd5\x97\x76\xe1\x4a\x18\x6d\xc6\x0a\x24\xde\xb0\x4c\x94\x16\x9a\x33\x2f\xe0\x45\x2c\xf4\x7d\xed\x36\x9f\x02\x03\xb9\x85\xb6\x2d\x39\x87\xd9\xee\x5a\x2e\xf5\x4f\x83\xc2\xbe\x95\xcc\x27\x3d\xd7\x93\x1c\x02\x1e\x28\x76\x5a\x3f\x62\x2e\x98\x0d\xca\x87\xd6\x42\x44\x1e\xbd\xd2\x2a\xb9\x90\x20\xe2\xdb\xec\x68\x94\xcf\x64\x59\x97\x86\xa8\xe3\x7b\xb8\x7d\x09\x88\x5d\xba\xc6\x5d\x05\x04\x37\x57\xa9\x26\x64\x38\x36\x41\xfc\x10\x74\xa1\xf8\x0a\xd4\x76\x65\x36\xed\x83\x32\x9e\xa0\x2c\x0e\x17\x39\x2a\x80\x1b\xa4\xc3\x51\x13\xe1\x63\x94\x60\x84\x96\x32\xf0\xa7\x61\x7e\xe8\xc4\xa1\x03\xd2\xe4\x0f\xec\x93\x28\xca\xea\x31\x5b\xb7\x53\xdb\x94\x99\x6b\x74\x19\xc0\x8d\xb1\x72\x6f\x32\x4f\xe6\x6c\x80\xa0\xcc\x2f\x30\xf3\x89\xf8\x0d\x41\xa8\xe1\xca\x6f\x04\xce\x9d\xaa\x59\x64\x5a\xc7\x03\x01\xaa\x88\x66\x07\xd7\x83\x31\x4f\x3c\x79\x76\x55\xaf\x65\x2f\x16\xaf\xc4\x21\x0f\x73\xe2\xeb\x63\xe8\xed\x95\xb7\x7d\x2f\x52\x87\x35\x27\xab\x22\x5a\x65\x0a\xa6\x6e\x6f\xa1\xf6\x42\x54\x1e\x62\xf5\x82\x3c\x87\x51\x9e\x7d\x0c\xd5\x0d\x42\x4b\xa6\x59\xe8\xd3\xab\x28\x91\x9b\xbb\x64\xd5\x31\xbd\x0d\x47\x99\x28\x4d\x1e\x56\x41\xa5\x07\x16\x67\x18\xd2\x34\x79\xf6\x6d\x3e\xb3\x0f\x9e\xb4\x16\xc8\xe3\xe2\x92\xfd\x40\xde\x4e\x45\x2c\xcc\x83\x00\xfe\x4d\xb8\x7a\x50\xc4\xcf\x94\xbe\x73\xaa\xb8\x59\xc8\x01\xc8\x52\xe4\x30\x64\x4b\xd9\x78\x4b\xa2\x9a\xa7\xf2\x46\x08\x48\x98\x6e\x8f\x0c\x45\x09\xfc\xa2\xb8\x7b\x42\x6a\x29\x43\xe2\x10\xef\xbd\xc7\xef\x81\xa7\x7d\x0b\xac\x53\xc8\x4e\x72\x92\x88\x0d\x21\xbb\x35\xdd\x23\x69\x0b\x52\x78\x41\xd2\x66\x65\xeb\x30\x37\xac\x70\xda\x82\xd6\xbc\x60\xaa\x34\x44\x54\xdd\x7c\x4d\xa2\xcb\x8e\x55\x5c\x6b\xcc\x78\x8c\x79\x35\xc5\x5e\x69\x2d\x4d\x75\x54\x8c\xeb\x42\xfd\x5c\xdb\x45\xa5\x62\x3e\xcf\xfc\x00\x36\x57\x6b\xbc\x2a\x57\xb9\x04\x4d\x0e\x57\xbb\x66\x47\x93\xdb\x94\x21\xfe\x7e\x33\xa3\x3d\x21\xf3\xfc\xb0\xc4\x69\x32\x4d\x21\x09\xda\x67\xf4\x26\x4a\x79\x15\xb1\x1c\x1e\xf1\xfb\x7b\xb1\x25\xae\x67\xed\xbf\x0d\xef\xfc\x70\xde\x84\x91\xe3\xb3\xba\x6f\xdf\x81\x2a\xfd\x46\x96\xad\x8a\x26\x1c\x8a\x1e\xc8\x38\xf5\x4b\x1e\xaa\x72\xca\xdd\x7d\x83\x6c\x3c\xf7\x54\x08\x56\x98\x28\xd0\xdf\x4c\x45\x7f\x6e\xea\xae\xcd\xad\xfa\x2f\x24\x1e\xed\xbb\x16\xe9\xbe\xc7\xb1\xdf\xe4\x0c\xa7\x5f\x3f\xcc\x65\x58\x4c\xe9\x84\x8d\xf7\x11\x1c\xb3\x71\x14\xd7\xbf\xe6\x56\x1d\x8c\xb8\x9b\x4c\xc7\x6f\x9b\x5c\xb9\xd8\x27\x0a\x16\x98\x33\xa6\x71\x85\xdb\xf2\xbd\xed\x04\x1b\x86\x83\xa3\x74\xbb\x96\x6d\xef\x92\x55\xf3\xd8\x2d\x76\xfb\x32\x4a\x91\x66\x4c\x88\xe3\x69\x77\x18\xb4\x01\x29\xdb\x4b\xe3\x89\x05\x05\x2c\x35\x6a\x57\x0d\x62\x57\x60\x75\xf3\x46\xaa\x4b\x40\x54\xb3\x21\xa9\xef\x9c\x4c\x8b\xbf\x4d\x1d\x3a\x82\xb6\x8d\x9a\x0d\x8a\xae\x7a\xf6\x48\x30\x21\x66\x31\xad\xb6\x6c\x09\x2a\xbb\x49\x2f\xab\xb9\x6d\x8b\x49\x9b\xff\x8a\xb3\xb6\xbc\xb9\xc9\x7c\x99\xa1\x16\xe6\xe2\xf2\x2e\xa7\x45\x2b\x54\x4e\xda\x98\xb6\x0f\xa9\xe8\xa5\xfd\x9a\xb0\xd9\xb7\xa8\x20\x80\xca\xa1\xdf\x8b\x3c\x52\x13\xb4\xc5\x86\x09\xa2\x55\x53\x29\x96\xcb\x39\x97\x4e\xee\x2a\xb6\x71\xa5\xcb\x33\xf5\x85\x5d\xf1\x21\x49\x1a\x25\x40\x53\xd0\x7a\x5c\xfa\x33\xd9\x7a\xe5\x64\x21\x33\x38\x62\xf6\x55\xd1\x65\xe7\x79\xd2\x0c\xcb\xe6\xe5\x59\x34\x82\x94\xac\x33\xa3\x5a\xa3\x9c\x9e\x18\x86\x11\x82\x0f\xe5\xad\x22\x88\x89\x86\x61\x02\x2a\x6e\x74\x25\xe3\x74\x29\xb3\x5c\xd7\x93\xdb\x55\xe9\xee\xe5\x24\x03\xf1\x08\x92\x85\x61\xc7\xe4\x42\x83\xd4\xc4\x1d\xd4\x65\xee\x0e\x43\x28\x43\x27\x1a\xbd\x10\x8a\x41\xeb\xda\x8a\xd8\x99\xcb\xd8\xf8\x62\x90\x6a\x03\xa4\x75\xb7\x37\x4e\x01\x61\x24\x5e\x63\xaf\x81\xd4\x79\x77\x9c\x87\x32\x7f\xa1\x9c\x32\x04\x11\xd0\xfd\x39\x28\xa8\xad\xe4\xb6\xff\x36\x4e\x72\x5b\xb4\x33\x45\x9c\x8d\x28\xb3\x0d\x46\xb0\x6b\x38\x54\xda\x44\x79\xb6\xc4\xb1\xbe\x8c\xd2\x0c\xae\x04\xe5\xdc\x39\x0a\xd9\xfb\xcb\x9b\xe9\xc5\xf8\x7c\x02\xab\x36\x6c\x34\x46\x23\x21\xf0\x3c\x5a\x8d\x24\x71\xb1\xaf\x58\xf0\x90\x27\xd5\x84\x2c\x9f\x97\xdb\xff\x18\xf3\x2c\x99\x13\x83\x7d\xd5\x58\x29\x03\x47\xcc\x8e\x32\xc7\x6d\xb9\xb8\x55\xb9\x86\x71\x7d\x02\xb1\xe2\xd8\xd8\x12\x74\x1a\x0e\x08\xb3\x08\xd3\x7e\xaf\x55\x8e\xa0\x54\xe6\x1f\xc7\x50\x2e\x65\xf6\xcc\x6c\x1d\xf3\x22\x27\x2f\x34\xb3\x0d\xea\x9e\x74\x89\x92\x40\x4b\x84\xca\x39\x28\x96\x49\xc2\x6b\xb9\x0d\x58\x24\x0f\x9f\x10\x10\xef\x36\x09\xc4\x2e\xf8\x48\x1f\xd3\xce\x91\xa0\xcb\xb8\x04\x9f\x2f\x74\xe9\xc7\xe0\x37\x4b\xd1\x6c\x73\x31\xa3\x25\x51\x9a\x96\xc3\x5d\x74\xf6\x13\xc8\xbe\x82\x5f\x3f\x93\x3a\x9f\xa4\x16\x96\xbf\xca\x17\x23\x33\xe5\xc8\xe3\x36\x16\xc3\x83\x3e\x7c\x81\xda\x89\xba\xe2\x98\x87\x09\x44\xa9\x81\x2d\x85\xe0\x31\x96\x67\x1e\x56\x1c\x7e\xd8\xa3\x17\x2a\x15\x74\x99\xfa\x45\x55\xfc\xbd\x19\x87\xe0\x2f\xa6\x96\xfc\x57\x13\x90\xd0\x2b\x41\x60\xdc\xc9\x17\x93\x17\xac\x51\x5e\x91\x78\xab\xdc\xe7\xa3\xe5\x90\x69\x3c\x39\xd2\xa1\x21\xc5\xe6\x9c\x79\x30\x53\x16\x2a\x18\x79\x0f\x01\x1a\xc2\x43\xa6\x6d\x3c\x69\xaa\x53\xd7\x5a\xeb\xb3\xcb\xec\x8e\x91\xbd\xac\xf2\x2e\x50\xae\xa7\x98\x92\xf0\xfd\x74\x7a\x55\x66\x40\xd1\x43\xb7\xad\x47\x40\x12\xab\xd3\xba\x37\x9f\x8f\xe4\x9e\x7d\x04\xb3\x89\xd2\x9c\x2d\xc4\xae\x5e\x6d\xe8\xe1\xa9\x01\x99\x23\x1d\x7b\xa4\xf2\xae\x5c\xe5\x7e\x52\x7a\x04\xb5\x5f\x51\x21\x89\xa4\xfb\x56\xc8\x65\x16\xf7\x3c\x5e\x24\x9e\x4a\x16\x7e\xfc\x16\x15\x5d\x90\x59\x46\x9c\xee\xc5\x9c\x9f\x01\x91\x73\x3f\x1c\xc7\xbe\x4a\xe6\x7b\xee\xfd\x12\x25\x32\xbc\x49\xf3\xb9\x1f\xb6\x3e\xbf\xf2\xb2\xd9\xd2\x70\xd5\xf4\xd5\xe3\x25\xb4\x7c\xe6\x05\xec\x5c\xcc\x85\x86\x58\xb0\x9b\xaf\xad\x17\x1f\x24\x2e\x4e\x5b\xb9\xcc\x00\xb8\x42\x3a\xec\x05\x3f\x5c\x1c\xb2\xd7\xaf\xbe\xfd\xfe\xfc\x80\xbd\x7e\x27\xfe\xff\xea\x9d\xde\x9a\xc2\x8d\x08\xb1\x01\xb6\xc8\x17\xde\xeb\x60\x75\x81\xee\xd1\x83\x80\xde\xa4\x6a\x2f\x84\x45\x3b\x87\xf9\xea\x0e\xe2\xde\xdd\xab\x45\xac\x03\x9c\xbe\x38\xb1\xed\x2a\x42\x9b\xc6\xb8\xf6\x10\x0c\x35\xed\xd1\x24\xd0\xb4\x96\x93\xad\xa9\xac\x35\xc7\xdb\xf1\xb8\xf2\xdd\x5a\xf9\x29\xb8\x1a\xc8\xf8\xc8\xb3\x28\xbc\xf7\x17\xe6\x84\xd6\xc4\xda\xf6\xa8\x6e\xc6\xef\x0c\x59\x23\x37\x5f\x13\xe8\x4e\xae\x3b\xe2\xda\xb4\x15\x21\xd1\xd7\xc7\x67\xd9\x78\x6b\x4f\x35\x44\xcd\x3a\xcc\xb6\x32\x06\x42\x9b\xea\x53\xec\xdd\xe4\xcd\xca\x24\x49\x0c\xd3\x7e\x2f\x5a\x2e\x88\x73\x38\x27\x66\x98\x63\x4e\xbf\x7d\xeb\x2c\xef\xc0\x59\x6e\x58\x0f\xd4\x89\xf5\x79\x71\x4e\x7e\x6e\xed\x5e\xdc\x87\x94\x03\xde\xe8\x0e\xac\x4b\x0b\xbd\x24\x9e\xd2\x61\x1f\xc5\x4b\x8d\x26\xfa\x55\x96\xbf\xac\xbe\x71\x0f\x9a\x14\x09\x64\x9e\x5d\x4f\x99\xf7\xab\xbc\x5f\xe6\xbb\x6b\xcb\x5a\x64\x14\x55\xa8\xfc\x56\xbf\x43\xe4\xd2\xdb\xca\x7c\xb7\xcc\x08\x32\xe3\x1d\xb3\xb7\xe1\x18\x66\xfb\x01\x28\x95\x87\xc1\x24\x6f\xc3\x33\xb9\x5a\xd6\x5f\xcb\xdb\xac\x36\x6b\x0c\x37\xfc\xbd\x18\xed\x45\xd6\x5a\xcc\xfb\xdd\xca\x6a\x66\xe4\x22\xeb\x86\xb7\x92\x4d\xae\x46\x62\x6d\x22\xaa\x56\xab\x30\x39\xf8\xb4\x1a\xe4\x9d\xd9\xa9\x7d\x0d\x90\x1c\xda\x2f\xed\x0e\xcd\x85\xf0\x95\xa9\xe5\xc6\x38\x42\x3c\x79\x77\x36\x82\x9d\xf3\xdb\x97\xe4\xe5\xa8\xda\x93\xe4\xdd\xfc\x76\x28\xb9\x78\x21\x7a\xa6\x17\xfa\xbf\x79\x32\x88\xc9\x4b\x28\xda\x48\xbb\xb8\x93\x16\x70\xe4\x4b\x68\x09\xfe\x6b\xcc\x67\xa0\x33\x95\x0a\x6c\x50\x19\x46\x33\x74\x2b\x99\x1f\xe1\x1e\x18\x23\x66\x19\x85\xa2\x93\x20\xe0\xc3\x69\x32\x08\x1a\x17\xd6\xe0\x92\xa5\xfc\x5f\xa4\xd2\x86\x79\xc9\x22\x07\x77\x06\x2d\xca\xab\xb3\xdb\x77\xa7\x17\x23\xbc\xe8\x19\x31\x77\xb2\xb6\x87\xf9\x92\x03\x7c\x6d\xc5\xa0\xbc\xa2\xbf\xb0\xd8\x5e\xd1\xaa\x13\x1a\xf4\x73\x18\x3d\x86\x18\x31\xc9\xc0\xbd\xad\x90\x13\x0f\x83\x37\x8a\xae\x18\x81\x4f\x10\x81\x8b\x4e\xdd\xda\x40\x1a\x66\xe1\xbe\x5e\x9a\x2e\x99\xb6\x14\xdb\xd5\x5d\x3e\x74\xda\x12\x03\xc6\xfc\x6d\x3b\x6b\xd8\x37\x81\x34\xcf\xb2\x49\x7e\x69\x2a\x4a\xe7\x67\x19\xbd\xa1\xb3\xbc\x0b\x67\x95\xc9\xbc\x4c\x1e\x63\xc3\x5d\x5f\xc7\x1d\x41\x47\xe2\xcf\xce\xf2\xee\x9c\x3b\x13\x7f\x5a\xd4\x20\x73\x0f\x6b\x46\xe3\x5c\xf9\xf5\xe1\xa1\xaf\x13\x85\x45\x4d\x2a\x1a\x58\xf5\x46\x45\xdc\xbe\xed\x3d\x35\x9e\xf3\x1f\x20\xda\x10\x8b\x3d\x3f\x31\x4c\x02\x3d\xc9\xd1\x70\x0f\xe3\xbc\x61\x79\x42\xdf\x39\x43\xba\xec\x8d\x6c\x9c\x84\x74\x9e\x74\x02\x74\x6c\xad\xfa\x0b\xa7\x06\xa7\x53\xa2\xa3\xb5\xd8\x40\xda\x6f\x4b\x07\x21\xea\x22\xc3\xe6\xac\x4c\x3e\x69\xf6\x20\xe5\x8e\xf7\x6e\x33\xb8\xa9\x53\x2f\x71\xa3\xe6\x8e\xba\x9e\xfb\xae\x79\xec\xae\x18\x12\x46\x62\x4f\xb2\x0e\x72\xb4\x68\x19\x9d\xdb\xde\x81\x16\x1d\x71\x23\xb6\xec\x93\x28\x62\x9e\x0e\x09\xa1\xb5\x82\xc8\x2b\x95\x45\x70\x59\x26\x93\x93\xa2\x07\xe8\x95\x97\x99\x2e\xf0\x49\x75\x1d\x10\xb9\x2f\x57\x64\x0a\x0e\xe8\xea\x6b\xba\x1d\x1a\x6d\x0d\x37\xee\xff\xe9\xc7\x6f\x45\x9b\xbf\x59\x8b\x53\x16\x84\xd3\x16\x8f\xe0\xf7\x31\x5c\x97\x83\x02\xc3\x37\xf9\x98\xf5\xa0\x64\x8f\xd6\xe0\x95\xea\xe6\x88\x5a\x78\x02\xc9\x36\x44\xcb\x19\x0c\x4a\x0a\xfa\x29\x9e\x49\x5f\x20\xe5\x5d\x08\x23\x09\x83\xef\x98\xef\x20\x7a\x13\x24\x61\xf7\x58\x14\xf2\x11\x18\x3b\x8b\x8d\x6c\x9a\x3e\x46\x09\x1a\xb6\x04\xd1\xc2\x37\x1c\xa3\xac\x2b\x52\xb0\xe0\x92\x27\x5d\x59\xe4\xfc\x61\x7f\x2b\x49\xaa\x4c\xc2\x64\xe1\x62\xac\x2b\x46\xe2\x63\x26\xef\x4a\x15\x56\x2d\x23\xe1\x66\x01\x02\x6d\x18\xa7\xcd\x38\x34\xe5\x0c\x6b\x70\x4e\xb1\xae\x47\x44\x52\x9a\x7d\x63\xca\x27\xbc\x88\xee\xc0\x60\xac\x41\xe4\x2e\x03\xc1\xfc\x8e\xf1\x09\xac\x56\x03\xbb\x5a\xd6\x28\x3e\x4c\xae\x6f\x4e\x2f\x2f\xf4\x5d\x68\xbb\x80\x3d\xed\xc2\x87\xf1\xc2\xd4\x95\x34\xa5\xec\xb9\xf0\x04\x22\x10\x5d\xa9\x89\x44\xcf\x47\x57\x8e\xc2\xc9\x98\x9b\x78\xeb\xbd\x35\xe5\xbf\x8f\xaf\x2f\x4e\x2f\xde\x1d\x7d\x0c\xc5\x33\x39\x1d\xc0\x67\xc6\x09\xbb\x9c\x21\xc1\xfe\xb6\x54\x26\x07\x7e\xc8\x95\x89\x3b\xd8\x38\x2f\xfd\xc5\x32\x58\x83\xa1\xfb\x4c\xd4\xf1\x16\x7c\x8e\xa4\x7e\x68\x10\x58\x79\x6b\x76\xc7\xc5\x92\x20\xbd\x3b\xc0\x9e\x01\xfc\x9d\xa4\x53\x8b\x7a\x99\xf0\x19\xf8\x5f\xa1\xe2\x1a\xd9\xa7\x4b\x1e\x04\x82\x7e\x0a\x4e\x5d\x10\xfd\x45\x2b\xfe\x7f\x4f\x21\xc8\xdf\x88\xa1\x41\xb1\x8a\xc8\x14\xa1\x41\x74\xbe\x02\x07\xdd\xa5\xf2\x18\xdc\x38\x8b\x25\x3c\x8d\xa3\x70\xc3\x81\x67\x33\x00\xa8\xcc\x20\x21\x56\xc0\x70\x21\xaa\x78\x0f\x9e\x1f\xc0\x98\x90\x46\xe7\x70\xb5\xb0\x65\x0d\x27\x4d\x10\xd1\xf9\x48\x9a\xd3\xcc\x0f\xc0\x72\x14\xd3\x26\x46\x49\xbc\x84\xd0\x50\xd8\x0c\x29\xb4\xc2\x71\x10\xe5\x73\xf6\x16\x32\x0b\x24\xeb\xe7\x29\x13\x5b\x79\xef\xce\x4b\xf9\x21\x66\xc7\x05\xd5\x79\xc0\xe7\x8b\xd2\x85\xb1\xe0\x86\x66\xd3\xd8\xa0\x60\x18\x3f\x97\xd7\x48\x0d\x5a\xf5\x40\x55\xdb\x18\x71\x87\x51\x34\x87\xbc\xad\x4a\x0f\x21\xc4\x82\x97\x65\x7c\x15\x67\x25\x83\x15\x5a\xc2\x4a\xc7\x75\x6f\xd6\xd6\x8e\xff\x51\xde\x56\xd6\xf3\xcf\xa0\xf9\x3d\x98\x48\xcf\xc5\x9a\x90\x44\xeb\x22\x2c\xf1\xc6\x37\xa8\x99\x7f\xab\xb6\xd9\xc2\x2a\x5a\xe2\x1e\x4c\x96\x5b\xb9\x60\x9a\x08\xd1\xb7\x0a\xb3\x70\x08\xba\xc5\x7d\x74\x16\x94\x8d\x3f\x52\xf4\x46\xa0\x33\x18\x49\x9d\x41\xb4\xf5\x52\xa1\x41\x39\x57\x71\x69\xff\x3f\x13\xdf\x2d\xcc\x0d\x3e\x39\x7f\x74\xbd\x3f\xba\xde\xbe\xba\x5e\xef\xf9\xd0\x87\xaf\x9e\xc1\xf6\x10\x83\x4a\x35\x3e\xd9\x7f\x6c\xb4\x4e\x2d\x98\xcc\x1d\x2f\xbe\x00\xf8\xea\x08\xc1\x0b\xe5\xbe\xba\xb0\xdf\xfa\xc0\xf5\x9a\x5e\x20\x18\x42\x0a\x2b\x74\x7e\x4c\xfc\x95\x97\xac\xd1\x1c\x7f\x06\xee\x5e\x95\xdb\x64\x1d\x24\xfa\x29\xc4\x01\xba\xb8\x6c\x7d\x34\xf4\x3c\xf6\xa1\xa1\x56\x18\xdd\x1c\xda\xea\xe1\x35\xbb\x69\x66\x24\x02\x9b\x7d\x19\x61\xc3\x5c\xf1\x5b\x2c\x09\xd1\x72\xf9\xca\x93\x51\x97\xb6\xe5\xc1\x0e\x2e\x78\x80\xef\x26\xa2\x13\xd5\xf0\xef\x43\xc6\xfe\x2e\xd7\xb4\x95\xa0\x09\x8b\xdc\xe7\xa2\xaf\xa9\xe2\x98\xa8\x0b\x6e\x1e\x30\xae\x41\x2e\xef\x03\xe7\x70\x1d\xaa\x0a\x55\x5f\x3f\x4e\x30\x1e\x33\xf3\xe6\x73\x74\x7c\x16\x1f\x69\x03\xc2\x1d\xc7\xa0\xb8\x32\x2c\xe4\x21\xbb\x04\x75\x9c\x69\x0a\x58\xf9\x0b\xf0\x67\x9c\x1f\x14\xcc\x54\x61\x39\x04\xa5\x34\x60\xdc\x6e\x1c\xcb\xf4\xb9\xef\x8f\x6e\xf6\x47\x37\xeb\xd3\xcd\xec\xe7\x39\x2f\x81\x59\xf9\x08\x22\x43\xc8\x18\x3a\xcb\x2c\x8b\x1b\x81\x74\x98\x0c\x39\x20\x4e\xf0\xac\x56\x24\x6d\x94\x49\x55\xf0\x2b\xd5\xbc\xb0\xb7\xd5\xf7\xf9\x3d\xb0\xa4\xcb\x2f\x0d\x72\x20\xa2\x3d\x7c\x39\x88\x99\xd2\x2d\x80\xa9\x8e\x3d\x82\xc4\x17\x9d\x4e\x08\x29\xd6\xeb\x68\x8e\x11\xc7\xde\x9e\x9e\x4d\xb0\x9b\x70\x6f\x8e\x96\x9a\xd9\x5c\x2c\xc5\x7a\x3c\x74\x0a\xd6\xe8\xfe\xd3\x8f\x45\x3b\xcf\x96\xfe\x03\xaf\xf4\x46\x2a\xb6\xb1\x95\x2d\x05\x9d\x80\x35\xb6\x1f\xcf\x6f\xcf\xa6\xa7\x57\xe3\xeb\xe9\xcb\xb7\x97\xd7\xe7\xa3\x93\xf1\x74\xcc\x8e\x2f\x2f\xa6\x93\x8b\x29\x7b\x7f\x7a\x72\x32\xb9\xf8\x49\x8b\x8b\x56\xd9\x1e\xd3\xd5\xf5\xe9\x87\xf1\x74\xc2\x90\x5e\x27\x08\x73\x69\x7b\xae\x6d\x09\x49\x52\x03\xdf\xae\xf2\xf6\x9c\x17\x41\x74\x27\xe6\x3f\xe5\x8f\xfe\x53\xb9\xb3\xfb\xb1\x30\x08\x4b\x0f\x0f\x0f\x7f\x62\x3f\x16\xcf\x8b\x82\x7a\x6c\xfd\x29\x5a\xa3\x97\x5e\x2d\x5a\x28\x9b\xaf\x89\x74\x71\xcd\x94\x73\x37\xc4\xdd\xaf\xa7\xc8\xe8\xb0\x87\x51\x56\x4f\x45\x6e\x0d\x15\x58\x7a\x56\xac\x0a\x74\xd3\xab\x4e\x40\xd6\xf9\x3f\x74\xd0\x0c\x16\x3b\x1d\xc8\xb2\x48\xdf\x10\x1b\x6f\xed\x3f\x40\xa0\xbf\xce\x68\xbc\xa3\x50\x8c\x1e\xb9\x5e\x01\xb7\xf5\x9e\x40\xd9\x2a\x84\x7b\xef\x68\xed\x26\x93\x7b\x37\x83\x7a\xb8\x4a\x9c\x25\x5e\xba\x34\xb5\x4b\x5b\x19\x0a\x07\x43\x8b\x34\x5e\xda\xd3\x04\xc3\x87\x22\xe4\xc4\xbd\x58\xbc\x4d\xe8\x4d\x65\xad\x39\xc2\x2d\x71\xb1\x6b\x9e\xae\x63\xb8\x14\xc6\x98\xd3\xdc\x94\x86\xd5\xae\x92\x35\x86\x3b\xd8\x23\x32\x63\x7b\xb6\x15\xb1\xa7\x8f\xe3\xff\xa8\x32\xce\xd0\xb3\xd1\x97\xb4\xe7\x06\xd7\x9f\xb8\x3b\x87\xab\x51\x43\x2b\xea\x0b\x5a\xf3\x9a\xc5\xb9\x96\x7c\xe3\x9d\x3d\xc5\x8e\x31\xe3\x3e\x5e\xb0\xa6\x69\xfa\xde\x2e\x60\x4d\x7b\x5e\x65\x26\xd5\x92\x6f\x2d\x43\xe0\x80\x19\xa5\x0c\xd4\x37\xde\xdb\x53\xf6\xd3\xae\x09\xbc\xad\x08\x85\xbe\x7e\x0b\xdc\x7c\x49\xa2\xa9\xbf\xb9\xda\x78\x6b\x4f\xd5\xf2\xe6\xb8\xff\x25\xb1\x0c\xfc\x62\x60\xd0\x7c\x4d\xa4\x6b\xb0\x96\xdf\x2e\x40\xa0\xfd\x68\x42\xfc\xe8\x82\x57\xda\xd8\xeb\x3b\xde\xd6\x7b\x02\x65\x0c\xa5\x8a\x56\x11\x57\x09\x28\x66\xb2\x75\x61\x1d\x91\x2e\xa3\x3c\x98\x17\xba\x1d\x08\x82\x6f\x00\xe0\x46\xc6\x1e\xe7\x83\xc9\xdf\x64\xe3\x6d\x9f\x55\xb5\x63\x35\xb7\xa8\x61\xcd\x5d\x56\x64\x59\x8e\xba\x00\xd8\x37\xc3\xa9\x36\x8d\x02\xce\xf8\x6c\x19\xc9\xad\x76\x71\xad\x27\x04\x4c\xd6\x35\x07\x1f\xbb\xec\xd0\xbb\x60\x61\x2f\x9f\xe0\x6d\x34\x92\xd8\x2e\x60\x4f\x3b\xe1\xa8\x66\x8b\x3d\x5f\xff\xb1\xda\x0b\x59\xf3\x80\xe0\x75\x5a\xda\xcd\x97\xd6\x34\xfd\x70\x16\x25\x10\x01\x94\xe5\xa9\xb7\xd0\x37\x8d\xb6\x1c\x81\x93\x32\x15\x55\x71\x54\x02\x7f\xe5\xeb\xc5\xe9\x28\x4d\xe6\x8a\x7b\xb3\x22\x54\xec\x29\x84\x75\x05\x4b\x33\x71\xfc\x48\xa3\xf0\x48\x06\x01\xf0\xb3\x46\x07\x3b\x80\x65\x22\xfb\x94\x56\x19\x29\xa0\x88\x4c\x50\x61\xe8\xe1\xbb\x67\x48\x96\x5d\xbf\xfb\xe8\x13\xaa\xa5\xac\xab\x5f\xb5\xda\x8a\x10\xe8\x3f\x78\x81\x0f\x26\x01\x4b\x71\x7c\xcf\x64\x4e\x2a\x3f\x2c\x0d\x8a\x0c\x5c\x6d\x2b\x92\xb1\x48\x27\x10\x8c\x20\xa1\x16\x98\xe3\xb7\x9f\x6e\xa6\xe3\x77\xa7\x17\xef\x3e\x4d\x4f\xcf\x27\x97\xb7\xd3\x62\xbe\x32\xf6\x91\x7e\xe4\x06\xc3\x7d\x3d\xbd\xbd\x1a\x10\x77\x17\x39\x6b\xdc\x81\x77\xc7\xf5\x8b\xfb\xc6\x5b\x02\x55\x71\xe2\xcd\x63\x79\x6a\xd2\xf7\x5a\x50\xdd\x8a\x29\xae\xad\xa4\xad\x06\x08\x67\x2b\xc3\xaa\xbd\xf5\xde\x5e\x06\xb1\x73\x95\xf1\x0e\x8b\x7b\xff\xc2\x41\x54\xe9\x0e\xf5\x83\x9d\x52\x95\x8e\x07\xa3\xf4\xcd\xc1\x86\x47\x11\x85\x30\x72\xa9\x9f\x99\x62\x92\xd1\x2a\xdb\x63\x8a\x20\xd8\xb4\x9e\xeb\xc6\x6b\x6b\xba\x2b\x73\x84\xb5\xcd\xd7\x44\xba\xfa\x0e\xb9\xf5\xde\x9a\xb2\x71\xb7\xe3\xb8\xd3\x09\xa3\x90\xdd\x79\x69\xa5\xba\xd5\xf7\x38\x53\x51\x0a\x3f\x83\x0c\x8d\x97\x04\x9a\x70\x47\x00\x53\x99\xbc\x03\xe6\x85\x42\x4c\xf4\x40\xe3\x2e\xcb\xbe\xa2\x35\x16\x53\x68\x68\xb7\x70\xdc\xf5\x98\x01\x26\xd2\x2d\x85\x28\x3c\xf4\xdf\xdd\x31\xd0\xb9\x38\x8b\x1a\x86\xed\xc6\x5b\x6b\xaa\xb0\xd9\x2e\xef\x02\xf0\xa6\xc0\x30\xf3\xeb\x8b\xda\xf3\x13\xf5\xf4\x1c\x1a\x2f\x49\x34\x0d\xb0\x7b\x20\x4d\xeb\x81\xd3\xef\xd6\xcd\x1b\x14\xab\x8e\xe4\x48\xc5\x1e\xa5\x8a\xf8\xaf\x07\xb0\x55\xc0\x9e\xb6\x34\xe4\xd7\x5f\xd6\x6c\x17\xb0\xa6\xfd\x4f\x73\x66\xdf\xcd\xd7\xd6\x74\x61\x69\x94\x2e\xc9\x8f\x18\x80\xba\x16\xc3\xe2\xce\x0f\xc1\xc0\xc5\x4f\x99\x58\xe3\x3c\xd3\x06\xc4\x8d\x08\x09\xa3\x0a\x32\xab\xef\xb6\xed\x85\x08\x3c\x8a\x89\x37\x35\x66\x2d\xd4\x96\x73\xe5\xa4\xff\xa6\xfa\x82\xf6\xbc\xcc\x61\x3f\x9d\xc3\x7c\x2a\x53\x45\x3d\xe1\xcd\xf7\xd6\x94\x2d\x63\x41\xf4\x0e\x01\xb1\x75\x51\xbc\xc5\x40\x7f\x91\x6c\x45\xd9\x26\xa6\xc4\x20\xa1\x24\xac\xe3\x38\x0c\x10\xbe\xc1\x3e\x9c\xeb\x10\xe1\x5b\xeb\x6b\x67\x27\x23\xc7\xb5\xb0\x69\x20\xdb\xc5\x65\xab\x18\x95\x4f\x67\x83\x39\xb5\x13\x46\xb8\xd7\x53\xde\x78\x6d\x4f\xd7\x37\x76\x27\xdf\xb1\x0f\x19\x7d\x18\x5d\x1d\x12\x6b\x5e\xd8\x06\x15\x92\xa6\x14\x8d\x4b\x17\x7d\x0d\x65\xe3\x11\x3f\x55\x09\x88\xf5\x94\xb7\x0a\xd8\x83\x46\x9d\x9f\x89\x72\xe3\x35\x81\x6e\x14\xc7\xa6\x7e\xb7\xf9\x9e\x4a\x99\x79\x68\x17\xff\x5a\x9c\x8a\x64\x5e\xa9\x2e\x56\x86\x0a\xd6\xbc\xc1\x2d\x55\xcb\xa7\xf9\xd2\x9e\x26\xc6\xb6\xb6\xd2\x54\x77\x2a\xa8\x8d\xdd\xa8\xe5\xfe\x06\xe2\xd5\x26\xd1\x22\x31\x99\x71\xd9\x56\xb3\x16\x38\x57\xe1\xb8\x60\x61\x8b\x60\x9d\xd6\xb2\x36\x94\x24\x70\xeb\xd2\x90\xb5\x94\xb0\xa7\xbe\x1d\x78\xa8\x36\x8d\xe8\x59\x5a\x56\xb3\xc7\x61\x70\x40\xcf\x9d\x1c\xd0\x45\x2d\x7d\x9f\x68\xbe\x24\xd1\xd4\xcf\x8f\x1b\x6f\xed\xa9\xc2\x2d\x91\x81\xec\xc6\x6b\x02\x5d\xc3\x9a\xdf\x7c\x49\xa2\x59\x86\x7f\x32\x12\x6f\x29\x65\xcd\xe5\xa1\xc3\x19\x75\xeb\xbd\x35\xe5\x47\x34\x96\x2e\x72\xc0\xa3\x72\x1e\x1d\x05\xd0\x5f\x08\xc3\xd0\x6b\x99\x52\xaa\x5a\xe3\x59\x1b\x36\x4d\x6b\xa7\xfd\x92\x0a\xc6\xae\xcc\xe4\xc5\x64\xf7\x02\xcc\xe6\x55\x8b\x1d\xc9\xc8\x16\x45\x1e\x8d\x9b\x0c\x8c\x3d\xbf\x7c\xd1\x27\x76\xe8\x49\x8d\x82\xfa\xf8\x6d\x11\x31\x25\xf6\x4d\x78\xda\xcb\x39\x71\x32\x47\x73\x30\x94\x24\x71\x2b\xd2\xc4\xb2\x25\x0f\x62\xf6\xe3\xf1\xe5\xf9\xf9\xf8\xe2\x44\x6f\x02\x6d\x55\x87\x86\x20\x0f\xb3\xcb\x7b\xe5\x79\x93\x0a\xaa\x85\xc3\x89\xde\x00\xc8\xb6\x1a\x09\x87\x34\x6c\x2b\x82\x95\x74\xd9\xc1\x59\xd4\xa0\x70\x3f\xf1\xd3\xcf\xb7\x30\x97\xca\x84\x81\xea\x89\x8a\x68\x64\x02\x61\x59\x91\x84\x45\xec\x0a\x0a\xa1\x8c\x46\x47\xc6\xb2\x14\x8e\xdb\x56\x21\x2a\xe3\x5f\x95\x8e\xba\xf8\xd0\xcd\xbc\xc6\x18\x64\xa5\xe6\x2a\x9b\xca\xe4\x72\x32\x51\x63\x15\x66\xc5\xd8\x93\xf6\xc8\x9c\xd8\x26\x80\x44\x61\xc9\xb7\x73\x57\xc3\xc5\x85\xd8\xb1\xc2\x41\x1f\x92\xd5\x99\x95\xbb\xfd\x09\x52\xb0\xbf\x0d\xa4\x17\x5c\x19\xf9\x47\xba\x21\x99\xd0\x75\x56\xa1\xf0\x3f\xe7\xab\xe6\x98\x10\x0f\x2c\xc6\x92\x55\x35\x12\x8e\x68\xce\x03\xb5\xad\x2f\x7e\xb6\xa6\xf3\x35\xa2\xa2\x13\xa1\x60\x6c\x5a\xd5\xb1\x55\x9e\x4a\x8f\x4b\x96\xe2\x8a\x09\x66\x4e\x60\x5a\x27\xf7\x14\x26\x9c\x8e\x84\x86\xc4\xda\x1b\xe3\x70\xd8\x08\x36\x8e\xb4\xca\x14\x4c\xf5\xc8\x95\x2f\x64\x7f\x16\x47\xdc\x33\x38\x90\x7d\xf9\x72\xde\x38\x16\x1f\xd4\xcd\x9c\x1a\xe5\x58\xab\x09\xd7\x41\x19\x86\x27\x2d\xca\x15\xe9\x1a\xab\x80\x74\xe5\xab\x62\x86\x3c\x60\xf5\xab\x39\x0c\x3e\x77\x11\x85\x6f\xe0\x6a\xb9\xa8\x32\x96\x86\xce\x1d\xfb\x3e\xaa\x64\xfb\x42\x4a\x50\x17\x5c\x4b\x4d\x7d\x31\xe1\xc9\x19\x07\x73\x71\x15\x8f\x2a\x6f\xdc\x2e\xad\x7f\x5f\x72\x94\x4e\x75\xa3\xf4\x61\x05\xd9\x4e\x05\x9a\x55\x9d\x21\x10\x60\x4f\x38\x91\x86\xf8\x1d\xfd\x87\x4c\x82\x82\xaf\x58\x44\x60\x59\xc3\x85\x54\xec\x4a\x65\x07\x15\x0f\x7f\xad\x0f\xb4\xad\x4f\x63\xc2\x3c\x08\xd9\xaf\xc0\xe1\xe1\x0c\xcc\xb7\x4a\xad\x97\x96\x81\xae\x18\xcd\x4c\x2c\xea\xe4\xa3\x2b\x46\xd2\xf2\x1a\xd4\xea\x8e\x97\x95\x55\xe0\x67\x19\x02\x00\xee\x24\xfd\x84\x4b\x47\xf3\x07\x18\xf0\xf2\xc1\xfc\xf8\x58\x3c\x51\xa7\x5c\x18\xf8\x09\xa4\xb7\xe6\xc9\xa1\x0c\xdf\x34\x93\xb1\x3d\x8b\xe8\x83\x62\x73\xfa\x50\x45\xfc\x6c\x56\xb5\x09\x42\xfd\x04\x58\x5a\x5b\xec\xdf\x7e\xfa\xb7\xff\x13\x00\x00\xff\xff\xd9\x79\x0e\xfc\x2e\xb1\x02\x00")
func cf_i18n_resources_it_it_all_json_bytes() ([]byte, error) {
return bindata_read(
_cf_i18n_resources_it_it_all_json,
"cf/i18n/resources/it_IT.all.json",
) | bytes, err := cf_i18n_resources_it_it_all_json_bytes()
if err != nil {
return nil, err
}
info := bindata_file_info{name: "cf/i18n/resources/it_IT.all.json", size: 176430, mode: os.FileMode(436), modTime: time.Unix(1426081216, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _cf_i18n_resources_ja_ja_all_json = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xec\xbd\x7b\x77\xdb\x46\xb2\x2f\xfa\xff\xfe\x14\x7d\x7d\xff\xb0\x73\x97\x28\xdb\x49\x66\xd6\xbe\xda\xeb\xac\x39\xb4\x44\xdb\x3a\xa3\xd7\x48\x94\x67\xb2\xe3\x2c\x07\x22\x5b\x24\x62\x10\xc0\xe0\x21\x85\xc9\xf6\xf9\xec\xa7\xab\xba\xf1\x22\xd1\x8d\xae\x06\x48\x79\xcf\xc9\xac\x35\xb1\x08\x74\x57\xfd\xaa\xd1\xcf\xea\x7a\xfc\xf8\x6f\x8c\xb1\xdf\xe1\x3f\xe2\x7f\xcf\xfc\xf9\xb3\x23\xf6\xec\x63\xf8\x31\x9c\x9e\x5e\x1d\x7d\x0c\x9f\x1d\x14\x6f\xb2\xc4\x0b\xd3\xc0\xcb\xfc\x28\xd4\x15\x59\x45\x73\xff\xde\xe7\x40\xe2\xde\x0b\x52\x0e\xcf\xbf\x1c\x68\xe8\xff\x10\xe5\x09\xfb\x5f\x37\x97\x17\x2c\xcd\x12\x3f\x5c\xb0\x74\x1d\x66\xde\xaf\xcc\x4f\x99\x1f\x3e\x78\x81\x3f\x3f\x64\xec\x2a\x89\x62\x9e\xd4\x5e\x65\x4b\x3f\x3d\x62\x6c\x76\xcf\x52\x9e\x8d\x92\x3c\x0c\x45\xd5\x11\x0f\x1f\xfc\x24\x0a\x57\x3c\xcc\x46\x0f\x5e\xe2\x7b\x77\x01\x1f\x2d\x92\x28\x8f\xd9\xf3\xdf\x3f\x3e\x0b\xbd\x15\xff\xf8\xec\xe8\xe3\x33\x41\x36\x17\x7f\x1d\x6c\x3f\xfa\xf2\xdc\x28\xe9\xd7\x0b\x76\xef\x6d\x9e\x66\xde\xe2\xbf\x4d\x9b\xef\x06\x2c\xa1\xcd\xff\x3f\x36\x5d\xf2\x94\x0b\x30\xc9\x83\x3f\xe3\x2c\x0e\x84\x9c\x6c\xe9\x3d\x70\xe6\x85\xcc\x4b\xd3\x68\xe6\x7b\x19\x9f\xb3\x59\x94\x66\x87\xec\x38\xe1\xa2\x0d\x84\xac\x5e\x59\xc3\x0f\x85\x10\xa1\xf8\xe3\xd1\x0f\x02\xf1\x6b\x26\x5a\x05\x84\x94\x35\xb4\x2d\x88\x8c\xd9\x9c\x87\x11\x50\x6f\x61\x9f\xc6\x7c\x26\xa4\x98\x21\x9d\xb4\x0e\xe5\xd1\xcf\x96\x82\x05\x5f\x1d\xb2\xd3\xfb\x36\x24\xd1\xbd\x44\x90\xad\x63\x0e\x6d\x3e\x03\xd4\x7c\x7e\x20\xca\x02\x31\x89\xf4\x8e\x4b\xb0\x09\x9f\x1f\xb6\x36\x5d\x96\xe4\xa6\x96\x1b\xc7\xb1\xf8\xf0\x5e\x22\x08\x1b\xa7\x21\x4d\x39\xc2\x37\x02\x0a\xbf\xff\x7e\x28\xfe\xb9\x10\x1f\xfd\xcb\x17\xf6\xe8\xa5\x05\x49\x96\xa7\xf0\x39\x54\x83\xaf\x56\x5e\x38\x67\x3f\x8b\xc2\xc7\xf2\xef\x2f\x5f\x7e\xee\x04\x37\x0c\x69\x82\x3c\x17\x11\xf3\x62\x9f\xf1\x70\x1e\x47\x7e\x98\xc1\x40\xd0\xf7\x93\xae\xe2\x04\xbe\xd7\x51\x9e\x71\x96\x45\xf0\xe9\xf3\x70\xe5\xc5\xb1\x10\x52\x08\x27\xba\x20\xc3\x8e\x10\x66\xc1\x9a\xa9\xe7\xa2\x98\xe8\x62\x82\x73\x1c\xf8\x33\x44\x63\xc2\x38\x1c\x69\x82\x3c\xb0\xbc\x31\x76\x2b\x46\xef\x73\x31\x9d\xac\xbc\xe4\x33\xcf\xc4\x00\x12\x03\x60\x94\xb2\x9b\xc9\xf5\x87\xd3\xe3\xc9\x73\xe0\xf6\xe0\xf3\x47\x31\xd4\xd2\x59\xe2\xc7\xc0\x2e\x85\x11\xe2\x87\x73\xff\xc1\x9f\xe7\x5e\xa0\x46\x5d\x04\x63\x69\xe1\x3f\xf0\xb0\x18\x51\x26\x89\xf7\xc9\x9c\xda\x26\xe3\x34\xf5\x17\x21\x4b\xa2\x80\xa7\x72\xb6\x78\x0e\xfd\x56\x7e\x07\x01\x39\x11\x1d\x1d\x66\xdf\x28\x59\x8c\xa0\xd0\x73\x06\x7d\xbb\xbd\x4c\x1a\x0b\x99\x64\xa9\xae\xd6\xd8\x39\x5b\x6a\x3b\xe0\xd7\x01\xf2\x6f\xa7\x5e\xb2\xe0\x59\x39\x72\xf1\xc3\x64\xf8\x8c\x85\xe2\xf3\x20\xb7\x2e\xf1\x5c\xa9\x39\xa3\xd6\xd1\x17\xed\x67\x8d\xd5\x8a\x06\x15\x61\xae\x7a\x7d\x10\x89\xc5\x9b\x8d\x3c\x36\xbe\x3a\x65\xa3\x51\xfa\xd9\x8f\x47\x69\x1a\x8c\x70\xf1\x47\x48\xcf\x05\x23\x2c\x0a\x33\x98\xa1\x94\x00\x97\xe6\x71\x9c\xf0\x54\xee\x10\x18\x4f\x92\x28\xe9\x92\x72\xff\x38\xac\x5b\x4a\xfc\xf5\x46\xac\xb2\x62\x01\x39\xf7\x42\x6f\x21\xb6\x40\x23\xb9\x79\xe0\xd8\xe9\x57\xf8\x10\xa7\xc1\x3b\x59\x8c\x79\xb3\x59\x94\x8b\xe9\x1d\x5e\xc7\xde\x1a\xb6\x42\x62\x9a\xb8\x8f\x0c\xeb\xd7\x6e\x98\x50\x64\x3c\x7e\xfb\xe9\x62\x7c\x3e\x61\x5e\x2e\x46\x3b\x6c\xc9\xfe\x27\xff\xd5\x5b\xc5\x01\x3f\x14\x2b\x26\xfb\xf8\xec\xe3\xc7\x8f\xcf\x62\xb1\x75\x79\x8c\x92\x39\xfc\xfd\xf1\x19\x7b\x21\xa6\x42\x4f\xec\x4b\xfe\x99\x8b\x9d\x8f\xd8\x2a\xde\xc3\x67\x14\x8b\x45\xc8\x8a\x82\xdf\x98\x04\xde\x35\xc7\x21\xa5\x5f\xad\x4b\x0e\x00\x03\xba\xab\xc2\x70\x2f\xba\x63\xf1\x4a\xcd\x95\x9e\x9c\x37\xbe\x31\x7f\xef\x9d\xb3\x74\x91\x7f\x16\xc5\xeb\x51\x2a\x8e\x03\x62\xf5\xbb\xb9\xbc\xbd\x3e\x9e\x8c\xc6\x57\x57\x6c\x3a\xbe\x7e\x37\x99\xe2\x9f\x3f\x8e\xa2\xe2\xe7\xe5\xf5\xbb\x9f\xc4\xef\xb4\xf8\x7d\x73\x35\x3e\x9e\xc0\x93\x51\x18\x8d\xc4\xc0\x83\xcd\xd7\x4f\x76\x8d\xb0\x5b\xbe\x2e\x2d\x21\x67\xa2\x17\xd1\xca\xcf\xa0\x93\x25\xf0\x85\xd4\x60\x93\x2d\x0f\x33\x8c\x2c\x24\xb6\x72\x3c\xf1\x66\x99\x58\xf3\xc5\xd6\x68\x34\x2a\x69\xe0\xee\x3c\x4e\xa2\x55\x9c\xe1\x47\xbb\x8b\xb2\xa5\x65\xaf\xd8\x0b\x7b\xf7\x76\x11\x93\x6e\x1a\xb1\x17\x9b\x9c\xc4\x46\x48\xa0\x64\x79\x12\x00\xbc\xe8\x2e\xf3\x44\x59\x8f\x45\x21\x1f\x65\xbe\x10\x60\x0b\xbc\xd5\x04\xb1\x33\x96\x3d\xe4\xcf\xb7\x87\xec\x28\xde\xe9\x34\xb9\x63\xc6\x3b\x68\x8b\x1d\x4e\x9a\xbb\xe6\x3c\x78\x6b\xc4\xde\x9f\xfe\xf4\x18\x5d\x9f\xb0\x17\x52\x1b\xb0\xd6\x8c\x6a\x71\x68\x15\x5b\xbb\x1c\x96\xf3\x74\x88\xb6\xe8\xcd\xd7\xa5\x25\xe2\x3c\x5d\x8a\xbd\xd9\x95\xfc\xf5\xe3\xe8\x8e\xbd\xb9\x3d\x3d\x3b\x11\xd3\xf4\x5f\xf1\x11\xcc\xd5\x33\x76\x7c\x79\x7e\x3e\xbe\x38\x81\x1f\x73\x76\x72\x79\x3e\x3e\xbd\x80\xbf\xef\x99\x78\x7a\xfa\x76\x72\x33\xfd\x74\x35\x9e\xbe\xb7\x5c\x40\x0a\x96\x43\x72\xb3\xd5\xa0\x6c\xc2\xe8\x25\x83\x35\xa4\xce\xaf\x71\x99\x2c\xc6\xf9\xdc\xcf\x22\xd8\x4c\x5e\x73\x6f\x3e\x8a\x42\xb1\x40\x88\x8d\x23\xee\x89\x23\x38\x39\xe0\x96\x11\x7b\x42\xc2\xe3\x28\xc9\x52\x33\xd2\xde\x24\x89\xf8\xab\xcd\xf0\x69\xf8\xe0\x37\x37\xc3\xd0\x8f\xd3\x03\x71\xc4\x0c\xf8\x4c\x6e\x83\x67\x4b\x2f\x5c\x28\xcd\xdb\x01\x3e\x11\xe7\x4f\xd0\xbe\x89\x23\xba\xd8\x31\x07\xbe\x58\x4c\xbb\x05\xdc\x31\x4f\x4a\x0b\x5c\x79\x62\x7a\x4a\x97\x51\x1e\xcc\x41\x1d\xe3\xb1\xdf\xfc\x98\xdd\xfb\x01\x3f\xa8\x56\xbc\xfa\x43\xf1\x59\x3c\x31\x1d\xcc\xbc\x80\xcd\xfd\x44\x40\x8c\x92\xf5\x21\xbb\x8a\x52\x1f\x44\x04\x2d\x8e\xc7\x62\xfc\xf5\xc0\x71\xdb\x20\xe4\x04\x69\xb2\x54\xac\xa4\x7e\x94\xf8\xd9\x5a\xca\x20\x4a\xa6\x11\x6a\xce\xee\xc5\xf6\x41\x90\x7c\x14\xbb\x2a\xe0\xb6\xf4\x17\x4b\x6e\x52\x86\xee\x06\x75\x38\x14\x5a\xc2\x90\xbe\x82\xd1\xb8\xca\x83\xcc\x17\xd3\x29\xa8\xb8\xca\xe5\x42\x74\x06\xff\x5e\xd0\x35\x5d\xda\xd0\x09\x50\x3a\xc6\x0d\x2c\x58\xd5\x48\xfc\x00\x8a\x29\xb1\x0c\x88\x1e\xa8\xc6\x5c\xd9\x15\x41\xc5\x9d\x8a\xdd\x90\x3c\x03\xe3\x42\x67\x46\x3d\x18\x69\xb2\x3c\x27\x5c\x6c\x60\xf1\x8e\xa1\xed\xec\x8b\xed\x27\x39\xa3\x52\xad\xc4\xc1\x11\x9e\xfd\x1c\xb6\x3b\x5e\x64\x89\x2d\xa6\x1a\x78\xc2\x43\xb8\x44\x61\xf7\x02\x66\x9e\xa8\x3d\x4c\xa9\x62\xb4\xfc\xa2\xbb\x60\x45\x91\x17\xae\x48\xd4\x6e\x1d\x76\x1d\x62\x18\xcc\xc4\xa8\xbe\x93\x77\x33\x77\x69\x14\x80\xd6\x59\x30\x4b\x38\x60\x7f\xe0\xb2\x0c\xce\x14\x30\x4b\x1c\x7e\x0c\x05\x91\xd3\xac\x98\x57\xe4\xb5\x0e\x03\xb5\x3e\x8c\xad\x24\xf1\xd6\x72\x70\xe1\x2d\x56\x74\xf7\x8b\x98\x46\xe0\xf2\x2a\x85\xd3\x81\x54\xd9\xde\xc9\x2b\x00\xce\x92\x3c\xe0\xa9\x71\x06\xfb\x8a\xc1\xee\xb3\xcd\x25\x05\xf8\xb3\x2e\x09\x0a\xd7\x4b\x1a\x49\x17\x8b\xbf\xf1\xc4\xd6\xfc\x12\xeb\xc0\x34\x8e\xb4\xe1\xcc\x0b\x93\x39\xf4\x47\xdc\x5e\x40\xcd\xf4\x9f\xb9\x97\x70\x76\x27\x0e\xba\x9f\x61\x05\x80\x97\xf5\x3b\xbd\xa5\x2f\xe0\x49\xe6\x0c\x0a\x26\xfc\x9f\xb9\x58\x4c\xf0\xb4\x93\x29\x29\x04\x63\xb8\xed\x14\x2c\x3e\x80\xa2\x90\xfd\x92\x8a\xc9\x0b\xc5\x53\x9b\xe6\x23\x7c\xf9\x23\xfe\x57\x34\xa8\xfa\x57\xd4\x7a\x26\x9a\x31\x8b\x66\x51\xf0\x51\x34\xed\xc7\x67\xd9\x2c\x86\x9b\xcb\xea\xb5\x10\x53\xcc\x86\xd8\x85\x64\x89\xd7\xaf\x0e\xbf\xfd\xfe\xfb\xc3\xd7\x87\xaf\xff\xbd\x59\x52\x4e\x1a\x58\xe6\xbb\xef\x5e\xfd\x59\x9c\xd3\xe4\xbb\x2f\xf8\xef\x4f\xbb\xec\x95\x7f\x7c\xce\x27\xfc\x9c\x94\x71\x8b\x6b\xae\x17\x88\x7d\x0c\x4e\xc6\x70\x72\xf5\x8a\x6b\x98\xe2\xac\x20\x1f\xea\x2f\x72\x5c\xc9\x50\x70\xfe\x38\xf2\xd9\xc5\xed\xf9\xa7\xd3\x8b\x9b\xe9\xf8\xe2\x78\x72\x03\x07\xaa\xcf\xec\xe4\xf4\xe6\xaf\xf0\xd7\x8a\x9d\x4f\xce\x2f\xaf\x7f\x80\xbf\x43\xf6\xfe\xf2\x66\x0a\x7f\xc5\x0c\x0f\x35\xa8\xbf\x13\xd5\x8e\xb1\x68\xc6\xa6\xa7\xe7\x93\xcb\xdb\x69\xc7\x49\x69\xd7\x1c\xed\xa5\xf7\xe6\x30\x0a\x45\x7b\x1a\x3e\x41\x5b\x19\x7b\x0e\xf3\x88\xcb\x5b\x57\xfe\xab\x2f\xb6\xb3\x70\x40\xc7\x4d\x87\x9e\x5f\x77\x0d\x7b\xee\xb0\xeb\x0e\xc4\xc6\x68\xbe\x2e\x2e\xd1\xf5\x7c\x4d\x65\x1d\x39\x46\x70\xbd\x6c\xc9\x71\xa3\x2c\x89\x23\x5f\xc5\xd9\xda\xc8\x67\xa3\x04\x89\x3a\x7c\x0b\x8f\xe1\xad\x14\x1c\x7c\x0e\xc4\x31\x91\xc3\x0c\xd9\x50\x5b\x1e\x30\x7e\xb8\x38\x64\xcb\x2c\x8b\x8f\x5e\xbe\x5c\x47\x79\xf2\x09\x3e\x1a\x28\x70\x8c\xc0\x86\x23\x4e\x97\xe9\xc1\xf3\x03\x9c\x54\xc4\x74\x0c\xf4\x4c\xa3\xc0\xa6\x0e\x19\x81\xd8\x9b\xc6\x11\x1e\xb1\xc5\x49\x51\xca\xbd\xf2\x3e\x8b\x75\x45\xec\x5a\x99\x9f\xc9\xa3\xae\x6c\x9b\x38\xc8\x17\x8a\xa5\x61\xd3\x37\x14\x5d\x7b\x49\x80\xdd\x7d\x94\x87\x86\x6e\xde\x52\xc4\x9e\x7e\xc2\x57\xd1\x43\x79\x26\x86\x09\x21\xba\x47\xb4\x29\x1c\xed\x7c\x9e\xea\xf9\x12\xaa\xda\x5f\x38\x3f\xbb\xc2\x06\x13\xab\x65\xb1\xb0\x97\xe2\x15\xab\xba\x6a\x7d\xc1\x79\xee\x65\x9e\xc1\x66\xa3\x0f\x2d\x6b\xc4\xdf\x94\x73\x0c\xce\xa7\x86\x23\x83\xa1\xa4\x35\xb7\x71\x69\x99\x14\xf8\x21\x18\xe0\x44\xa8\x28\x29\x2e\x77\xe4\xba\x7d\x1c\x44\xf9\x9c\xbd\x05\x39\x13\xfd\xb4\xd5\x87\x94\x3d\xde\x93\x93\x97\xd7\x62\xb5\xfd\x30\x61\x57\x67\xb7\xef\x4e\x2f\xb4\x70\x36\x5f\xdb\xea\x60\xb6\x38\xb0\xeb\xc9\xd5\xe5\xcd\xe9\x54\xac\xf0\x7a\xd9\xad\x2a\x11\xa4\xfc\x00\xfb\x8c\x13\x03\xbf\xcd\x02\xf6\xb4\xaf\x4e\x4b\x53\x30\x3d\xfd\xd6\x42\x4e\x3c\xd8\x8b\x72\x2d\x48\xc5\x62\xe0\xc5\xfe\x61\xed\xb2\x40\x7f\x07\xe5\x44\xc3\x09\xe1\x91\x15\x86\xa3\xbe\x5c\xa4\x9d\xa0\x3f\x51\xbf\xbf\x7c\xb1\x63\x6b\xa8\x36\x10\x0e\xf6\x02\xde\x3f\xf0\x24\x15\xfc\x8b\xd7\x1f\xe4\xcf\x2f\x5f\xec\xbe\x50\x0f\xaa\xee\x52\xb8\x34\x65\xcf\x76\xbc\xba\x31\xb0\xaa\xbf\xb4\xa7\x39\x83\x33\x26\x9c\x6d\x95\xfd\x38\x4b\xf9\x2c\x07\x35\x33\x43\xfb\xe5\x14\xb7\xf2\x02\x79\x71\x83\xf6\xc5\x60\x56\xdd\x8f\x98\x03\x66\x65\x7f\xbd\xc1\x06\xb8\x34\x98\x58\x00\x26\x53\xb2\x47\x3b\x17\xc7\x21\x34\x5a\xab\x6d\x9e\x70\x4f\x61\x58\xcc\x6c\xea\x10\x11\xc0\x25\x44\x52\xd8\xb9\x82\xf6\x24\x8e\x3b\xf8\x1b\x6b\x50\xb8\x63\x8f\x40\x42\xa2\x31\x6f\xaf\xcf\xc4\xf0\x04\x8a\x9b\xc6\xcb\x42\x4e\xb8\x4a\x13\xcf\x2e\x93\x85\x7a\xf6\x52\x6a\x60\xe1\x21\xaa\x74\xd5\x63\xf9\x5d\x6e\xcb\xef\x72\x78\xa8\xdf\xa8\xec\x1f\x80\x7d\xdb\x04\xbe\x20\xd4\xb4\xca\x2e\xf6\x72\xea\xcb\xdf\x71\x00\x8f\xb6\xf1\x41\x20\xad\x92\x45\xcf\x90\xba\xae\xe3\xb7\xc5\xa6\xe7\xa5\x07\x94\x0e\x19\xbb\xe6\x78\xcd\x0d\x04\x36\xc8\x16\xdb\xa3\x0e\xf2\xd0\x04\x73\x9e\x40\xfb\x28\xbd\xb8\x2f\x55\x61\x50\x00\xdb\x14\xf5\x56\x62\x48\x18\x5a\xfc\x5f\x44\xac\x9e\xdf\x31\x45\x87\x85\x9a\x20\x68\x85\x22\x01\xc2\x2c\x28\xf7\xf3\xb2\x43\x3d\x17\x42\xfe\x10\xe5\xa2\x3c\xe8\x28\xb3\x64\xcd\xf2\x50\xa1\x03\x49\x74\xb5\x10\xb4\x90\x3b\x2c\x44\x91\xf7\x52\xaa\x78\x5d\x6a\x3f\x7c\x88\x3e\x9b\x5a\x50\x00\x78\x1f\x3d\xf2\x07\xb8\x6f\x14\x67\xe6\x42\x5d\x7a\xef\x27\xe2\x28\x74\x9f\x07\x01\x40\x12\xc4\xc0\x49\x03\x79\x32\x7f\x15\xc3\xce\x5a\x1c\x93\x1a\x58\xe1\x15\x1e\x09\xe0\xc7\x36\x62\x89\x4d\xdf\x79\x7e\x96\x8d\xf9\x47\x5b\xba\xb4\xa5\xf5\x31\x23\xa8\x59\xee\xa3\x6e\x5a\x39\xe1\x80\xde\xb9\x38\xd7\x49\x0b\x07\x1f\xef\xc6\xe0\x4a\x4c\xd4\x11\xd3\xa3\xfe\x08\x3d\x0c\x51\xc2\xa0\xa3\xb3\xc3\x2f\x6a\x32\x40\x77\x23\xca\xb5\x06\xe9\xfd\xbf\x82\x1f\xee\xe4\x3b\x58\x90\x1d\xf6\x4b\x6c\x31\x1c\xe6\x5b\xb4\x90\x75\xfe\x1a\x69\xc4\xe6\x3c\xe0\x78\x51\x5c\xba\xfb\xe0\xbe\xc1\xd4\xd8\x56\xb5\xec\xdb\x52\xee\x41\x56\xb9\x98\x29\xee\xb8\xf2\x79\xe0\x60\x54\x22\x84\x2b\x7e\x2b\x17\x3e\xa3\xdb\x87\x3b\x21\x7b\xac\x62\x03\xa5\xe7\xdf\x78\x49\xa2\x89\x6b\xbd\x2f\x35\xf9\xea\x0a\x4c\xd4\x0d\xf4\x4a\x43\xbb\x4a\x24\x0c\x8d\x8d\x61\xf3\x92\xc1\xb0\xf1\xb1\xae\xe8\x8e\x05\x45\x7c\x8c\x92\xcf\x68\x18\xf4\xd9\x8f\xe3\x6a\x77\x8b\x9e\x92\x80\xc5\x1a\x20\x8d\x5a\x3f\xd4\x6a\xc4\xde\xa1\xc6\x52\x2c\xa3\xb0\xa5\x96\x23\x5a\x16\x22\xb4\x2b\x91\x1c\x05\xb7\x38\xaf\xa3\x8b\x0d\xf4\x22\x30\xa9\x9a\xfb\xde\x22\x8c\xc4\x0a\x3c\x4b\xe5\xbd\x72\x10\x2d\xf0\xc6\xd5\x84\xd6\x81\x08\x05\x63\x6a\x50\x1a\x35\xdf\xda\x53\x95\xde\x6f\x9e\xbc\x1d\x55\x27\x3e\xe3\xec\xdc\x59\x81\xce\x5b\x1e\xb5\x24\xc1\x39\xbf\xf7\x43\x69\x0d\x87\x2d\xd6\x31\xdb\x39\x90\x70\xc5\x07\x6e\x7d\x92\x20\x28\x06\x6c\x21\xe9\x6a\x91\x51\xc8\x79\x9d\x08\xc2\x5c\x89\x88\x41\x4c\xad\x1f\xc0\x6d\xbd\x83\xeb\x76\x31\x22\x1f\x39\x15\x05\x78\xf8\xbe\x16\xff\xca\x63\x3b\x40\x87\x27\xd2\x8d\x51\x39\x5d\x56\x47\x77\xf9\x58\x1c\xe0\x9b\x87\x77\xf9\x18\x8f\xf0\xe5\xf1\xbd\xe1\xb7\x69\x54\x21\x3c\x31\x9c\x7d\xb7\xdb\xd3\x34\xcf\x0e\x5a\x61\x43\x9d\x27\xc8\x17\x4f\x3e\xe1\x13\x89\xb1\xfc\x2a\xa9\xfa\x1e\x15\x3e\xf1\x8f\x17\xfa\xbf\xa1\xa8\x25\xc4\xdc\x4e\xef\xf4\x34\x28\x5c\x5a\xa9\x36\x67\x0a\xc2\x7f\x83\x3f\xd4\x42\x5b\xc7\xe5\xac\x80\xdb\x19\x23\x7b\x59\xb3\x0c\x6c\x1a\xf0\x48\x2d\xb6\xeb\xd1\x63\x18\x44\x9e\xd8\x0b\x8b\xd3\x43\xb2\x96\xf6\x53\x78\xef\x8b\xd7\x85\x21\xcf\xc0\x8c\x05\xbc\x68\x8d\x62\x0d\x41\xd3\x51\x82\x95\xbf\x48\x3c\xa9\xce\x54\x7b\x9e\x53\x15\x3d\xe3\xa4\x72\xd5\xef\xf8\x2a\xbd\x09\x92\xb0\x87\x19\x5e\xc4\xa0\x3d\x9f\x38\xd3\xa1\xe2\xe4\x4a\xfc\x21\x3f\xf3\xcf\x70\xc4\x2b\x8e\x77\x3f\x6f\xee\xe4\x7e\x2e\x2c\x15\xee\x13\x5e\x98\xf4\x95\xd1\x42\x7e\xde\x86\x5c\xd4\xaa\x85\x34\xf1\x54\x04\x14\x76\x1c\x85\x19\x68\x5a\xc0\x2c\x44\x7c\x91\x95\xd8\x20\xa4\xa2\x65\xc0\xf0\xdb\xbf\x47\x65\x8d\x38\x97\x86\x9f\xe5\xe9\x14\x63\xc1\x48\x27\x6a\x73\x43\xfe\x0b\x49\x67\xff\x55\x73\x50\x96\x65\x10\x03\x43\x9a\x53\x0b\x21\xc2\x51\xc3\x31\x53\xdf\x66\x94\xba\x2e\x88\xc0\x98\xc5\xd4\xf9\xf5\x25\x9d\xb8\x89\x1d\xe6\x52\xcc\x54\xfc\xd7\x18\x0e\x9e\x10\x38\x48\xda\xd1\xc0\x36\xff\xce\x9b\x7d\x46\xf5\x74\x24\x8e\x03\x23\xaf\x26\xf9\x61\x11\xe5\x0a\x03\x1e\xfc\x5c\x0f\x05\xf0\x31\x7f\xf5\xea\xbb\x59\x71\x77\x88\xbf\x38\xb8\xbb\xc9\xe7\xd0\x62\xc5\xb3\x48\x3d\x13\x6b\x44\xf1\x28\x55\x8f\xa4\xf1\x3a\x3e\xfc\x59\xb9\x82\x96\x68\xa4\x39\x7f\x13\x8e\x55\x73\xfd\xab\x89\x6a\xfd\xbd\xdf\x9c\x9e\x9d\x9d\x5e\xbc\x03\x47\xb5\xf1\xbb\xc9\xb5\xb6\xb1\xb4\xe5\xec\x39\x81\x2b\x1f\xda\x6a\xea\xcf\x79\xad\x65\x68\x1c\xc0\x59\x50\x7f\xa1\xdc\x56\xc4\x9e\xbe\x0f\xb6\xcd\x9b\x1b\x1f\x8b\x73\x9c\x7d\xc5\xfe\x58\x40\x53\x58\x18\x7a\x6d\x5e\x54\xab\x58\x40\xe0\x3a\x0c\x4a\xc5\xe2\x3e\xbb\x16\xf4\x47\xaf\x12\xdc\x3d\xc3\xbd\xca\x5e\x5c\x8d\xef\x4d\x76\x33\x43\xba\xec\x1b\xe1\xc5\xba\xaf\xbf\x09\x35\x49\x68\x40\xa8\x3b\x9e\x3d\x72\x1e\xc2\x46\xab\xb9\xa0\xe3\x34\xd5\x54\x1e\xfa\xf3\x4a\x77\x68\x04\x3b\x0c\x61\xb2\x2c\x76\xe7\x9a\x39\xbf\xf7\xf2\x20\x4b\x9b\xfd\xda\xd6\x44\x63\xa7\xbc\x76\x24\x71\xd9\x81\x77\x23\x64\x37\x79\x07\xb9\x64\x57\xd7\xed\x36\x87\x31\x97\xb0\x56\x28\x7c\x2d\xb0\x06\x68\xc7\x21\x81\xda\x1d\xb7\x9f\x14\x0b\xb9\xc5\xea\x06\x39\x75\x44\x36\x12\x5a\xd5\xb5\x47\x94\xfb\xc1\x3c\x86\x3d\xa3\xa0\x55\xfe\x28\x84\x6e\xd8\x3a\xeb\x91\xb9\xd0\x18\x06\xa1\xed\x1d\x95\x1b\x11\x7b\x8c\xeb\x0c\x34\x3c\x9e\xd8\x68\x8b\x79\xac\xb8\x7d\xac\x9c\xd9\x0b\x77\xf0\x3c\xf4\x71\x2f\xb0\x12\x87\x87\x3c\xe1\x18\xca\x2b\xf0\x3f\x73\x76\x7e\xc0\xce\xdf\x1c\xb0\x77\xe8\x23\xff\xee\x8d\x5e\x8e\x76\x46\x5b\xbe\xfe\xee\x0c\x6d\x2f\x8e\xcb\xa0\x56\xf3\xf9\x48\x5a\x64\x8c\xd0\xd7\xe3\x47\xb0\xc2\x2e\xa2\x71\x88\x8e\xfa\x13\x9c\x81\x26\xff\x18\x9f\x5f\x9d\x4d\xa4\x9b\x1e\x44\x74\xdb\xa8\x74\x95\xf8\x0f\xe2\x80\x72\x0d\x7f\x2b\x0f\x96\xd5\x3a\x96\x0f\x0b\x2f\x96\x97\xf0\xc7\x4b\x83\xd7\xd8\x57\x80\xc8\xba\xc3\x94\x58\x63\x5f\x62\xea\x96\x6a\xbb\xa4\x03\xb7\xb8\x0c\xd6\x62\xc1\x10\x0b\xf7\xe8\x19\x10\xee\xec\xf6\x66\x72\x8d\xbf\xae\xc6\x37\x37\x7f\xbf\xbc\x3e\x81\xc6\xef\xe6\x6d\x51\x95\x2c\xfd\x9d\x98\x40\xcb\x80\xd1\xc5\x16\x43\x05\x2c\xbe\x99\x1c\xdf\x5e\x9f\x4e\x7f\xf8\xf4\xee\xfa\xf2\xf6\xaa\x13\x9f\x0b\x29\x37\xbc\x46\xe2\xec\xf2\xfa\x1d\xc3\x98\x68\x76\x88\xc9\xc4\x5c\x31\xcb\x35\xb8\x8c\x0b\xa4\x42\xab\x96\xce\x9c\xb6\x68\x4b\x32\x06\x0a\xd4\x5e\x29\x49\xab\x10\xd6\x03\xf4\x02\x22\x29\x7a\x8b\x16\x8b\x95\x7e\xfd\x35\x15\x25\xf3\x9b\x2d\xf9\xec\xf3\x48\xda\x42\x80\x5f\xad\x8a\xa0\xd4\xc9\xbc\xb3\x1e\x1d\x49\x14\xde\xfb\x0b\x08\xf6\xe7\xa5\xeb\x70\x86\x41\xde\x04\xf9\xc2\x9d\x57\xf4\x85\x4f\xe7\xa7\x17\xb7\x53\xe9\x1b\x3c\x12\xb8\xe0\xb4\x2a\xfa\x00\xfb\x2f\xc9\x41\xfc\x0b\x8e\xf1\x2f\xb3\xe8\x25\x5c\x4c\x60\xa9\x59\x14\x80\xb9\x54\xad\x14\x3e\xc6\xa0\x34\x9c\xbd\x38\xbb\x3c\x1e\x9f\x4d\xc4\xab\xe3\xb3\xc9\xf8\xfa\x9b\xee\x69\x79\x5f\x20\xdd\x3b\xbc\x0c\x24\x3e\x12\xd3\xf9\xa8\x88\x46\xa3\xc2\x67\xc5\xec\x65\xc1\x5a\xea\x13\xa1\x0c\xc6\x68\x47\x95\x62\x59\xfc\x70\xbd\x0a\x0c\x01\x0b\x4c\x8c\xdc\x99\x38\x8a\x59\x8e\x81\x2a\x34\x18\x3a\x85\x33\x74\x0d\x3b\xbd\xbc\x80\xf6\x95\xc6\xd0\xff\x35\x1a\xcd\xfd\x14\xfe\xb2\x96\xad\x2f\x75\xfa\x18\x90\x7c\xe7\xd1\x0a\x82\x1d\xc2\x0c\x6d\x3b\x1c\x3b\x2b\xba\x62\x81\x13\x93\xa0\x67\x8b\x60\xab\xb8\x2b\x5f\x79\x81\xfa\xb7\xdb\xcb\xe9\x18\x03\x00\x4c\xc5\x1f\x67\x9f\xaa\x30\x00\x3e\x2b\x16\x87\xda\xc3\x84\x89\xe9\x57\x0d\xbe\x74\x6b\x15\x91\x63\x12\x03\x27\x8c\x62\xcf\x2f\x97\x9c\x11\x1a\x60\x5a\xf7\x8a\x4d\x64\x83\xb3\x77\x1c\x0b\x72\x32\xc6\x25\x5d\x7d\xfd\x32\x5a\x02\xee\x86\x6d\xe5\xb3\xa7\xe3\xfa\x6d\xcd\x1b\x13\x18\x61\x9f\xa6\x97\x9f\x20\xf0\xc8\xa7\xeb\xdb\xb3\xc9\xcd\xa7\xb7\xa7\x67\xdd\xbb\x88\x61\x88\xbb\xcb\x24\xb7\x2f\xea\xab\xb3\xab\xb3\xf1\xc5\x56\x17\xd8\x3a\x8a\x68\x88\xcc\xef\x3c\x48\x72\xe0\x07\x0f\xe2\x6c\xb7\x5a\xcf\xef\xaa\x54\x31\x4c\x45\xb4\xdf\xa8\x09\x1a\xb2\x51\x11\x44\xa6\xa0\x83\xc1\xb2\xd1\xcd\xbd\xf1\xba\x8c\x7e\x55\xf3\xdd\x17\x05\x31\xf4\x76\xdc\xbd\xef\xd8\x85\xc0\xb3\x80\x7b\xc9\xfc\x0e\x94\x31\xc9\x67\xf9\x6b\x34\xbf\x1b\xad\xfc\x90\x3f\x89\xe8\x8e\x43\xb0\x18\xd1\x70\xa0\x19\x65\xd1\x67\x1e\xb2\xb3\xf1\x9b\xc9\x19\xbb\xba\xbe\xfc\x70\x7a\x32\xb9\x16\xd3\xd8\x5f\x27\xd6\xd3\x39\x99\x5c\xcf\xce\x3b\xba\x4b\x04\x93\xa4\xfc\x8a\x6f\xae\x05\xf9\xeb\xed\x93\x19\x13\x07\x53\xaa\x0c\x4e\xa4\x9d\xe5\x59\x7a\x89\xe8\x0b\x6a\x39\xa4\xad\xa1\xe6\xba\xce\x88\x50\xcb\x28\x27\x55\x88\x78\xad\x42\x5d\xff\x53\x3e\x1a\xe1\x6a\x62\x3d\x43\xb7\x11\xeb\xdf\x77\x31\x9d\x43\x73\x71\x6b\x5d\x64\x77\xb0\xe2\x59\x88\xfb\x44\xc8\x5c\xbf\x37\xda\x7b\x6c\xf5\x6e\x5b\x89\xbb\x6a\xf7\x41\xb5\x35\x55\x6e\x35\x0e\x6e\xe3\x8f\xaf\x27\x27\x93\x8b\xe9\xe9\xf8\x0c\xdb\x2a\x60\x37\x3f\xdc\x9c\x5d\xbe\x1b\x9d\x5c\x8b\xf1\x30\x2a\xf4\x6a\x0c\xa2\x82\xa6\x2a\xf9\x8e\x98\x5c\xc5\xf4\x2d\xe3\x7c\x89\x21\x04\x76\x08\x90\x3c\x45\x3c\x5a\xf1\x0c\xcc\x5f\xc4\xbf\x69\xdd\x3b\xb1\x32\x85\x61\x42\x22\xde\xba\x42\x58\x42\xc6\xe8\xd0\x88\xe2\xa0\x82\x71\x50\x31\x3f\x90\xdc\x3f\x3e\x6b\xa0\x6e\x41\x89\xfe\xdb\x18\xf3\x0c\xd6\x05\x15\x41\xb2\xbc\x67\xd8\xb2\xe0\xe9\x89\xd9\x3a\x73\x56\xd7\x42\xda\xce\x72\xb5\x2e\x56\x51\xd9\x40\xc5\x3d\xda\x41\x2d\x8a\xb6\x2b\x35\x80\x5e\xd0\x43\xac\x68\x8a\x85\xf0\x2b\xe2\x47\xf0\x43\x06\xaa\x96\x52\x50\x78\x25\x62\x02\x2e\x1f\x88\x1e\x98\xae\xd3\x20\x5a\x1c\xbd\x7c\x59\x8b\x4c\x61\xa1\x5d\xfc\xa3\xef\xff\x5f\xd9\xf7\x23\x81\x33\xe0\x43\xf6\xff\x6d\x8a\x5f\xdf\x18\x20\x2f\xfe\x10\x00\x01\x75\x1a\x62\x4d\x7d\x80\xde\xfe\x0f\xb1\x88\x4e\xdf\x5f\x62\x40\xf5\xf7\xec\xfd\x64\x2c\xf6\x99\x2a\xb8\xfa\x58\xec\x51\x60\xdd\x14\x07\xc4\x38\xcf\x18\x1c\x9c\x2c\x16\xf1\xe1\x38\x90\x97\x3d\xe5\xb3\x58\x8b\x58\x7f\xcf\x46\x49\x37\xe6\xaa\xde\x76\x15\x6a\x0b\x4b\x5a\xad\xba\x24\x41\xdb\x16\x8b\x45\x7d\xc7\xd6\x69\xee\x74\x49\x98\x4c\x35\x5d\xd1\x28\x05\x12\x09\x47\x7b\x1d\x77\x04\xf1\xd2\x0b\xc5\x38\x94\xfe\xad\x44\x24\xa6\xba\xae\x88\x9a\x5b\x5f\x7b\x34\xfa\x7a\xae\x48\xa4\x6e\xa8\x4d\x2b\x44\x02\x66\x4d\xc6\x15\xa7\x59\x09\x44\x81\x4a\xa1\xe4\x8e\x56\xbb\x19\xa1\x00\xb5\x22\xd2\x13\xa3\x41\x17\xe1\x00\xd6\x9a\x5a\x5f\xd4\xed\xda\x07\x17\xc4\x36\x94\x9c\xd1\xb6\xa8\x1e\x68\x20\xbb\x09\x38\x63\x6b\xe8\x1c\x08\x90\xb4\xf5\x7a\x21\x51\x73\x5b\x4d\x7b\x32\xb2\x32\x73\x20\xd1\x70\x45\xd8\x3c\xbe\x53\x5a\xcb\x54\x93\x8e\x46\x5e\x48\x8d\x54\xd0\xff\xd1\x7d\xe0\x2d\xd8\xdb\xc9\x78\x7a\x7b\x3d\xb1\x33\x0a\x21\x50\x20\xa3\x93\x07\xa1\x1e\xe0\xec\x09\x38\x60\x7b\xb0\xb7\x9c\x51\x85\xdd\x77\x88\xfc\x01\x92\x33\x11\x18\x96\xe5\xdd\x79\xba\x37\xfb\x2e\xda\xbb\x4e\xb3\xfb\x02\x42\x53\x9a\xce\xd5\x87\x2c\xb8\xd5\xe1\xa0\x88\x26\x5e\xe9\x16\xbb\xc7\x6d\x49\x43\x55\x77\xff\x22\x2a\x22\x92\x32\x4b\x03\x3d\x38\xd8\xea\xa1\x85\xc2\x08\x48\xbf\x9c\x5e\xbe\x54\x91\x4f\x51\xbb\x59\x5a\xb9\xe1\x05\xc9\x92\x97\x51\xc2\xd0\x67\xae\x74\xd5\xac\x07\x0c\x53\x5e\x9b\xe0\xb0\x59\x05\xdb\x03\xa7\xb9\xe7\xa3\xe4\x39\xb8\xca\x15\x47\xd0\x36\x93\xb9\x0d\x7c\x45\xa4\xd0\x85\x9f\x2d\xf3\x3b\xb4\x8f\x9b\xdd\x8f\xf8\xaf\x31\x4f\x7c\xb0\x3b\xf4\x82\x97\xca\xc0\xee\x3e\x8a\xee\xbc\x44\x43\xe6\x7f\xbf\x3c\x51\x48\x53\xab\xf2\xaa\x0c\x9f\x2d\x23\x71\x2c\x63\xe7\xeb\x11\xda\xec\x59\xa8\x81\x36\x08\x35\x9b\xd4\xfd\xb3\x81\xbf\x47\xdd\x94\xb0\xbb\xfb\x6e\xd6\xe8\xc1\x1b\xdd\xcb\x7e\x94\x59\x75\x3f\x81\x5e\x4a\xfc\xc8\xcb\xf5\xa3\x88\x91\x2f\xb5\xc7\x3f\xd5\xef\x1d\x52\xb9\xea\xfd\x64\x65\x9e\x37\x34\x1b\xf2\x40\x15\x00\xc4\x81\xc1\x06\x67\xa3\x98\x0b\x1f\xc2\x34\x5c\x94\x76\xff\x7e\x2b\x2f\x56\x47\xa1\x72\x12\x72\xba\xb8\x6f\xd0\xb1\xbf\xb3\xb7\xc3\x28\x9d\xa6\xcb\xfd\x6f\xe1\x28\x94\xb2\x87\xd7\x9f\x8a\xbb\x5f\xf1\x67\xb9\x71\x87\xbf\xe1\x2a\xf8\xe1\xdb\xea\xf5\xb7\xf8\xc8\xaa\xb3\xed\x8c\x1f\xb9\x37\x44\xd5\xe1\xa4\x13\x75\x6b\x59\x3a\x47\x4b\x5b\x9b\xfe\x46\x36\x90\xdf\x1d\xb3\x43\xd9\xf2\x6b\x2b\x4d\xe6\x8a\x3a\x51\x7d\x84\x2b\x5d\x31\x3a\x1f\x19\x44\xbe\x9b\xd1\x66\x39\x3a\xa7\x3c\x59\x54\x7d\x35\xba\xbf\xe7\x18\x69\xb7\xe8\x88\x38\x31\xaa\x8e\xda\x3d\x8c\xdd\x88\x91\x31\xd7\xb4\x42\x9d\x90\x5a\xcb\xba\x71\xec\xfe\x1c\x9b\xc5\xc8\x7c\x64\x7a\x03\xba\x37\x40\x4b\xbd\x9a\x43\x80\xc5\xa4\xb5\x7b\xc6\x0e\x6d\x81\xc1\xe2\xca\x85\xe5\x62\xf2\xf7\x4f\xd6\x4b\x9b\x5d\x65\x47\x4c\x6d\xaa\xec\x8a\x4d\xf3\x91\x25\x52\x37\x92\xae\xf8\x0b\x75\x33\xd0\xb6\x99\x3e\xbb\xaa\xb9\xe2\xd0\x6a\xfc\x80\x03\xd9\x08\xbf\x1f\xd1\x9e\x32\x68\xd4\x6a\x75\x9e\xf2\x11\x51\x0c\x07\xba\xce\x92\xd4\x14\x5d\x48\xdf\xca\x51\xc3\xae\xb2\x03\xa6\x38\x52\xd3\x4a\xda\x3e\xf1\x54\xef\xb7\x8e\x93\x16\xa0\xed\xa9\xf7\xb9\x9c\xc4\x94\xff\x0b\x6e\xbf\x25\xaf\x55\xe8\xc9\x35\xc9\x88\x5c\x65\x85\xde\x5c\xd1\x9e\xbe\x74\xc6\x2f\x27\xe0\xd3\x8b\x93\xc9\x3f\x6c\x81\x6c\xd1\xd8\xac\x4e\xc6\xa6\x5c\x9f\x78\xf8\xe0\x27\x51\x08\xc7\xfb\xd1\x83\x97\xf8\xa8\x7f\xc3\x7b\x11\x2d\x34\xe8\x0d\x84\xda\x54\x64\x29\xfa\x71\xd4\xee\x77\x2b\xdd\x8d\x21\x85\x9c\x85\x3e\xb6\x24\xec\x42\x93\x2c\x45\x2f\xbf\xa4\x5d\xb9\x22\xe9\x56\x02\x0b\x40\x5d\x15\x5d\xb1\xd4\xee\x8b\xba\xb7\x93\xc6\x3a\x0e\x08\xb2\x51\x5d\x2d\xcc\x26\x17\x1f\x3e\x7d\x18\x5f\x37\x7f\x7c\x18\x9f\xdd\xda\x34\x50\x49\x8b\xe1\x83\x8d\x6a\xf4\xfe\x93\xc1\xee\x62\x84\x91\x09\xcb\xdb\x03\xd8\x6b\x5c\x5f\x9e\x4d\xac\x8e\xdd\x14\x12\x4e\x6d\x27\x4f\x12\x40\x10\x4f\x13\xd6\xa0\x8c\xf5\x9c\x90\x74\xcf\x47\xf6\xa6\x49\x56\x22\xec\x86\xa1\x93\xec\xdb\xf7\x5e\xf8\x8a\x7c\x8d\xe6\x44\xab\x07\xe2\xed\x6e\x29\xf7\x4a\xa4\xfe\x4d\x25\xe5\x86\x57\x39\x88\xee\xad\x77\xed\x86\x21\x5d\xf6\x6a\x07\xdb\x0d\xbb\xad\xac\x1b\xc7\x7a\xff\xfb\x84\x9d\xce\x6e\xcf\x66\x57\xb9\x0f\x26\x8b\x05\xaa\xb5\xb0\x23\xcf\x52\x3f\x47\xf9\x06\xfa\x5a\x6e\x28\x2c\x65\xee\x25\x6d\x66\xe5\x1c\xbd\x59\xcc\x85\x4f\xc7\xb0\xb2\xc1\x60\x4d\xc2\x05\x1f\xe5\x8c\x32\xc0\x09\x05\x12\xf2\x52\x18\x46\x3d\x03\x4a\xc8\xec\x0d\x6d\xd7\x49\x9d\xcc\x6d\xaa\x92\x5b\x3c\x0f\x07\x0c\x29\xe1\x46\xcc\x15\xf3\x50\x61\x25\x5c\xc9\xb9\xe3\xee\x1b\x5a\x62\x9b\xd0\x80\xc1\x25\x0a\xe2\x83\x84\x97\x70\x23\xe6\xd0\xb2\x9b\x17\xe1\x78\x01\x6e\xb7\xed\xb3\xab\xec\x80\x69\xa8\x9b\xd0\x0d\x4a\x03\xdf\x85\xe6\xa1\xf1\x14\x68\x81\x6e\xf3\xe4\xd7\x17\x4b\xcf\x53\x1f\x8d\x88\xc3\x77\x6d\x3d\x27\x10\x4e\x80\x04\x0a\xbd\xd0\xf5\x3e\x5f\xb8\x11\xa3\x63\x8e\xe7\xba\xc0\x14\xd2\x08\xa3\xb0\x60\x2a\x22\x54\xfc\xd4\x1a\xa2\x42\xc5\x40\xf9\x2c\x1e\xe5\x21\xfc\x61\x31\xb2\x76\xcf\xd9\xb5\x35\xe8\xa1\x22\x60\x3e\x00\x35\xbb\xba\x9e\xeb\xe5\x2c\xca\xfe\x8b\x49\xf1\x9c\xdd\x5c\x35\x62\x54\x02\x3c\x09\x58\xf2\x84\x24\xa5\xd8\x4d\x6c\x87\x61\x88\xbb\x76\xb0\xcd\x50\x07\xd0\xe1\xe1\x8b\x80\x91\x89\xf5\xe7\xb5\x24\xd2\x13\x63\xef\xd0\x03\xae\xe4\xfa\xe2\x1e\x32\xf4\xc0\x10\xa4\x5d\xbb\xbf\xc1\xb0\x1c\xa7\xa2\xf3\xf1\x3f\x46\xc5\x58\x1d\xb5\xbb\xae\x5b\x0c\xf7\x3d\x4d\x49\x4f\x20\x0d\x78\x99\xde\x79\xa9\x3f\x1b\x95\xa1\x3a\x1a\xd2\x6c\xbf\xef\x3f\x67\x0d\xea\x1a\xac\x77\x57\x35\x72\x1b\xd8\xb9\xba\x93\x97\x8d\x63\xa9\x6d\x37\xf9\x1a\xda\x6f\x07\xce\xb9\x03\xb7\x21\xa1\x73\x4e\xaf\x61\xbf\x38\xb9\xbe\xbe\xbc\x86\x16\x1b\x4f\x21\xd7\x82\x68\x26\x74\x88\x85\x98\xb6\x57\x5e\xb6\xfc\xf2\x45\x34\x0f\xe4\xdb\x4f\x12\x43\xd8\xed\x9e\xd4\xec\xa7\x75\x2f\xc4\xa0\xba\xd8\x50\xa9\x60\xce\x2a\xcb\xcd\xe8\x9e\xc1\x24\x54\x5e\x0c\xe2\x24\xa4\x47\xec\x4e\x89\x84\x76\x18\xa4\x5f\x0d\x4a\xf6\xe2\x44\x06\x86\x3f\x62\xc5\x64\xc9\xe7\xdf\x0c\x83\xbd\x8b\x36\x45\x22\xf8\xb4\x98\x24\x61\xe5\x25\x9f\x79\x26\xe8\xcf\x78\x15\x96\x09\x02\x19\x43\x40\x45\xaf\x4a\xe6\x6a\x4e\xa6\x31\x00\x45\x27\xf4\x98\x02\xc9\x0f\xef\xa3\x64\x85\x58\x30\x1a\xff\x56\x18\xf2\x5e\xe2\x0c\xc5\x82\x2a\xdf\x20\x03\x63\x0f\x23\x18\x58\xa4\x31\x9f\xf9\xf7\x90\x21\x35\x5b\x32\x38\x4f\xca\x14\xf7\x78\xb4\x64\x11\x66\xf4\x4a\xf5\x71\xc2\xdd\x88\xf4\xc2\x08\x53\x2c\x1e\x8a\xe7\x55\xd6\x8a\x13\x79\x38\x9e\x9b\xd2\xc3\xf6\xa2\xe5\x8c\xb8\x3c\xed\xdf\xf9\x59\x8a\x2c\xa0\x4d\x5e\xca\xa6\xb1\x07\x6b\x4b\xc6\x1e\xe7\xd2\x0b\x17\xb0\xe8\xb3\x07\x9f\x3f\xca\xec\xf2\x85\xc1\xd3\x2c\xca\xc3\xec\x00\x26\xaa\xcf\xea\xa6\x31\xf0\x57\xbe\x78\x02\x7c\x57\x7c\x05\x3e\x4f\xf8\x44\xa6\x04\x37\xa7\x49\xd9\x1d\x23\xaa\xac\xf5\x01\x23\x09\x6e\x25\x6f\xe9\x92\x82\x44\x82\x8a\x0f\x5d\x57\x8b\x8d\x55\x17\x12\x4d\x61\x1a\x4f\x30\x8e\x2f\x68\x98\x52\x29\x98\x0b\x13\x78\xf2\xd9\x67\x20\x83\x79\x57\x40\xc5\x6c\x66\x6a\x2c\x6d\xcf\x55\x79\xf5\xbd\xe7\x81\xa1\x97\xb6\x16\x22\xf3\x80\x15\xa5\x93\x47\xd8\x28\x64\xbd\xa9\x55\xb5\x21\xd7\x9f\xfa\x1b\xb3\x02\x86\x0d\x07\x45\x0e\x0d\xa6\xae\x18\xc4\x3a\x86\x89\xbb\x43\x0f\x83\x24\x1d\xbf\x2d\x1c\x1c\x5f\x7a\x81\xef\xa5\x87\x8c\x5d\x4b\x2b\x75\x20\xb0\x41\xb6\x70\x85\xec\x20\x0f\xf9\x40\xe6\xa2\x23\xd6\xc2\x32\x65\x69\x51\x40\x2e\xb9\xb8\x10\xa4\x86\xb4\x71\x03\x0a\xf6\x64\x22\xf5\xfd\x88\x29\x26\x67\xac\x7d\x1c\x56\x7a\x6a\x8a\x53\x18\x64\x89\x84\x3f\xe5\x7e\xe5\xb9\x90\xf2\x87\x28\x87\xc9\x33\x98\x0b\x76\xeb\xea\x52\x09\x87\xa8\xa6\x16\xa2\x86\xdc\x76\x85\x2c\x32\xbd\xa3\x2a\x5e\x17\xdb\x0f\x1f\xa2\xcf\xa6\x26\x14\x00\xde\x8b\xfd\xeb\x03\x04\xc6\x82\x6c\x91\xe9\x12\xa1\xdc\xfb\x89\xd8\x73\xdd\xe7\x41\x00\x90\x04\x31\x98\x10\xa5\xff\xac\xbf\x8a\x21\xe1\xa4\xd8\xba\x34\xb0\xc2\x2b\xcc\x21\x02\x3f\xb6\x11\x4b\x6c\xfa\x9e\x63\x68\xc5\x3f\xda\xaf\xad\xfd\xa8\xdd\x14\xf3\x8d\x42\xe6\xfc\xee\x39\x6d\xbb\x24\x65\xf2\x8c\xe1\xba\x11\xe8\x88\xa6\x90\x7b\x84\x74\xe9\xbd\x66\x68\x56\x05\x52\xb7\xf8\x60\x9b\x72\xeb\x0f\x40\x91\x88\x1e\x53\x29\x01\x03\x58\xac\xaa\xd9\x44\x99\xf0\x1f\xc8\xbe\xb2\xf2\xd6\xe2\x88\xf1\x19\x42\xc2\x3d\x2e\x21\xf3\xaf\x71\xf9\x1b\x8a\x2e\x41\x92\x30\xe4\x33\x8c\x7c\x37\xcf\x57\x31\x66\xea\xe6\x33\xcc\x80\x03\x8e\xba\xb8\xdd\x19\x36\x23\x94\xe9\x5a\xf0\x49\xc1\xb8\xb4\x59\xe6\xf9\x38\x28\x9f\xb6\xb1\xf6\x89\x82\xd0\x4a\xf1\x1a\x7b\x72\x94\x27\x33\x95\xf0\x5a\xe1\xba\xc1\x47\x02\x9d\x4c\xd0\xa5\xec\x8e\xd4\x4b\x99\xf7\x5d\xbe\xdc\x51\x1e\xb4\xaf\x09\x1a\xa1\x3d\x61\xbd\x80\x39\x17\x2c\x5e\x30\xdb\x9f\x26\x8d\xdb\xc7\x70\x02\x99\x9b\x8f\x58\xb7\x9a\x73\x08\x9a\x0e\x12\xcc\xc4\x07\x68\xce\xc4\x47\xac\xd0\xa3\x46\x76\x80\xed\x49\x38\xe0\x9b\x43\x5c\x4f\xd4\x88\xc3\x92\x31\x93\x59\x00\x99\x38\x04\xe1\xd9\x64\xee\x8b\x59\x09\x82\x80\xfc\x3f\x16\x38\xe9\xa4\x1c\xf0\xde\xcb\xb4\xa4\x2a\xc7\x25\x93\x91\xac\x2c\xc0\x75\xd4\x73\x46\x22\x86\x0b\x74\xf5\x39\xee\x4f\xca\x59\xe8\x39\x0c\x9a\x22\x95\x89\x35\x3a\x12\x2d\x57\xc4\x78\xb6\xc7\x74\x70\x78\x92\xa8\x7a\x7f\x95\xaa\xdd\x16\x30\x89\x94\x2b\x5e\xdd\x30\xc5\x84\xb9\x6a\x28\xd7\x9b\xcb\x16\xbc\x3b\x5d\x67\x49\x1a\x33\x66\x39\xb1\x8a\x2f\xfb\x9b\x3c\x78\xc9\x19\x96\x20\x02\x9d\xa0\x03\xf6\xd8\x4b\x52\xce\xc4\x6e\x1e\x15\xb5\x61\xbe\xba\xe3\x72\x72\x3c\x0d\xc5\x0e\xce\x0a\xad\x3d\x09\x07\x7c\xe2\x43\xfa\xe2\x50\xf9\x1b\xaf\xab\xc2\x2d\x40\x75\xd4\xeb\x85\x44\xde\x0c\x9a\x14\xcb\x56\x95\x1c\x30\xa8\x65\x5c\x74\x83\x43\x5c\x23\xc6\xb1\x6f\xbb\x30\x76\x57\xa5\xe1\x09\x9f\x67\x45\x90\xe8\x8c\xaf\x62\x3c\x81\xe0\x9e\x2d\x8f\x21\x9e\x93\x19\x91\x75\x65\x3a\xa6\x28\x16\xa7\xdc\x4a\xe5\xdc\x71\xd4\xb2\xa9\x44\xc7\xf0\x98\xf8\x42\xb2\xdf\xfc\xd8\x92\xbd\xae\xbc\x3d\xe7\x22\x5a\x77\x29\x83\x9e\xa9\xa1\x28\x9d\x9f\x8a\x35\xe9\x83\x5e\x09\xf7\x91\xf0\x11\x03\x48\x9b\x09\x4a\xa6\x6e\x10\xb6\xf5\x9d\x91\x65\x4b\x4f\x74\x35\x2f\x2c\xd3\xaf\xdf\xad\x19\xe8\x3f\x04\xaf\x94\xbd\x40\x9b\x80\x51\x14\x06\x6b\xc3\x55\x69\x7f\x8a\x74\xf4\x21\x7f\x44\x2d\x79\x37\xaa\xed\x92\x74\x6e\x82\xf4\x1c\xa2\xc2\xa1\xe1\x34\x7c\x01\x3c\x99\x1b\x2f\x46\x08\x55\xe9\x78\x9a\x49\xc2\xbb\x41\xe8\xca\xbb\x70\x96\xfb\x06\xcc\x49\xda\x11\xfc\xc9\xa6\x8e\x3b\x02\x69\xb6\x66\xcf\x7d\xb3\xbc\x3b\xe7\xee\xfb\xa4\xee\x1a\x0e\xdc\xcd\x17\xe3\x9a\x62\x74\x3e\x10\x8f\x5e\xf6\x56\x98\x74\xd4\x2e\x8b\x38\x6b\x51\x68\x90\x11\xe2\x45\x61\x79\x24\xa8\x5d\x1e\xca\x99\x67\x29\x4e\xe1\x77\x5c\x2c\x57\x71\x9e\x2e\xe1\xb6\x3f\x9f\xcd\x78\x9a\xa2\xe6\xd5\xb0\x23\x19\x94\xb8\x83\x4c\x62\x76\xb4\x00\xd7\x28\x45\xe3\x02\xa7\xd0\x2d\xf1\x40\x21\x52\x1c\x55\x53\x9e\x41\x21\xb4\x41\x80\x52\x66\x38\x3d\xc8\x39\xe0\xde\x53\xde\xfc\xdd\x33\xa4\xcb\x7e\x67\x48\xd6\x6e\x25\x8b\x35\x01\x3a\x36\xb5\xe2\x83\x5d\x05\xfe\xa5\x5a\x00\x46\xcd\x56\x6b\x39\x7d\x87\xc1\x18\xd0\x65\x1b\x46\x80\x5d\xa3\x94\xc6\xc7\x82\xe2\xdf\xe0\x8f\x3e\x48\xe9\x94\xe8\x68\xe5\x9a\x20\x28\xbe\x8f\xd2\x2c\x34\x7c\xcb\x21\xc7\xf2\x4e\x99\x0e\xd2\x06\xae\x62\xf4\x44\xd2\xdc\x15\x02\xe9\xe2\xc9\x27\x7c\x52\xca\x9e\x97\xb2\x77\xc3\xec\x45\xd4\x45\x86\xcd\xbd\xa5\x22\x7f\x2c\x97\x21\xf8\x6c\x96\x0d\xec\x40\xca\x1d\xaf\x72\xba\x10\xd4\xfb\x74\x6d\x37\x6a\xee\xa8\x4b\xdb\xae\x2d\xb5\x21\x79\x7d\x74\xff\x3e\x7b\x01\xe1\xd0\x46\x98\x5c\x42\xb7\x62\xb9\x7d\x5e\x77\x92\x0e\xf8\xb1\x99\x5a\x57\x81\xe1\xd6\xf3\x81\xc8\x5b\x9b\x3a\x34\x85\xdb\xe8\x03\x6d\xdd\xc5\xb9\x73\x0e\xc5\x80\xfe\xe1\xa4\xb1\xe0\x46\x06\xdf\x27\x19\xa1\xfb\x47\xe2\xd8\x5a\xe5\x15\xaf\x24\xd9\x4f\x60\x2a\x31\x0a\x66\x95\x83\xd0\x60\x4a\xde\x56\xc6\x85\x03\x7b\xe4\x09\x67\x09\xff\x45\x99\x1a\xc4\x01\xf7\x52\x8e\x16\x54\xde\xc2\x33\x19\x6a\xb9\x11\xb1\xc7\xa8\xce\x93\xc7\x6f\x21\xbe\x7e\x79\x8d\x22\x35\xf4\x1f\xe4\x2f\xd3\xc6\x84\x58\xdd\x05\xd7\xf1\x59\x83\x30\x09\x54\x77\x5d\x32\xa2\xab\x4e\x2b\x63\x6d\x41\x32\xaf\xc2\x66\x98\xcd\x7d\x79\x8d\xb2\xf2\xb2\xd9\xb2\x93\x73\x57\x35\x02\x8e\x34\x8b\x56\x75\x13\xfa\xb5\xbc\x8e\x7d\xc1\x0f\x17\x87\xe0\x86\x56\xbe\xfa\x06\xcc\xd4\xdf\x9d\x4e\x31\x77\x88\x7c\xfd\xbc\x25\x4d\xc7\x92\x8b\xcd\x54\xae\xfe\xa9\x6a\x83\x6b\xe8\xfa\x50\x94\x7b\x5e\xd2\x79\x73\x3d\xbe\x38\x7e\xdf\x93\xdc\xff\x3b\xe7\x0f\x3c\x88\xe2\xe7\xb8\x0c\x3e\x2f\x7f\xdd\x89\x86\x9b\x2d\xbf\x31\x68\x61\x7a\x49\xee\x80\xb4\x5d\x5f\x6f\x5e\x7f\x25\xc6\x25\xf7\xc0\xe0\x51\x9a\x4f\xce\x82\x7c\xce\x0b\x3b\xdd\x84\xff\x33\xe7\x69\x76\xc0\x30\x5d\x8e\xba\x34\x90\x7e\x11\x82\x3c\x5b\xe5\x41\xe6\xc7\x90\x84\xde\x5f\x99\xa2\x67\xed\x88\x8d\x75\x2f\x94\x71\x54\x6e\xb4\x00\xb7\xde\xdb\x53\xf6\xd2\xe5\x5d\xe4\x25\x73\xbc\x30\x16\xdf\xcf\x30\xab\x18\xcb\xda\x73\xe4\xf7\x60\xc4\x22\x2f\x4e\x12\xae\x4c\xa7\x70\xe3\xa6\xe7\x6c\x53\xc7\x0d\x81\xdc\x16\xb8\xe0\x30\xd7\x24\xa0\xc1\x64\xa7\x36\x57\x87\xa6\xa2\x74\x7e\x1d\xc6\x3d\xda\x72\x74\x4e\x5d\x8d\xda\x5e\x8c\xce\x07\x55\x18\xdd\x7c\x36\x8a\xd1\xf9\x10\x2e\xa9\xac\xea\xb8\x23\xe8\xb8\xa4\xea\x2c\xef\xce\xb9\xf3\x92\xca\xa2\x86\x03\xf7\xfa\x89\xd5\x82\x75\x7b\x71\x07\xbe\xc6\xcb\x31\x5d\x31\x47\x3e\xea\x14\x3b\x87\xc9\xc6\xaf\x7c\x46\x42\xb1\xa7\xf1\x17\x72\xc1\xa9\x97\x93\x56\xa7\x41\xd0\x15\x03\x92\xed\x86\x8b\xed\x5a\x5d\x72\x37\x5e\xab\x6b\x4a\x91\x5b\x12\xed\x01\x64\x32\x60\xa6\x92\x01\xe3\xc6\x44\x80\x5c\x46\x70\x64\x80\xdb\x36\xd1\x39\xd4\xe6\x30\x8e\x39\x9a\xa4\xc9\x1b\x27\xbd\x2d\xc2\xd0\xe4\xc9\x72\x99\xdd\x25\x35\xa5\x1c\xb8\x98\xae\x0b\x35\xa5\xa8\x5c\x66\x30\x19\x80\x43\x42\x17\xa3\x96\x82\x44\x5e\xa9\xbd\x4d\x43\x77\x05\x1a\xef\x7d\x5e\x2f\xee\x9e\x21\x5d\x76\xd7\xeb\x45\x3a\x01\x3a\xb6\x01\x74\xa9\xbd\x68\xd1\x11\xf7\xd2\x92\x3a\x52\xa1\xa3\xec\x7d\x69\xd8\x83\x12\x1d\x6d\x79\xf1\x75\x0d\x7f\x58\x02\x33\x56\xea\x81\x01\x4f\x55\x34\x04\xdb\x55\xe8\xfc\x87\xbc\xaa\x1b\x86\xa8\x8b\x0c\x36\xf7\x6b\x36\xb0\x69\x74\xdc\x91\xf6\xba\xa4\xeb\x49\xcd\x1d\xf5\x1e\x35\xff\x7b\xe5\xed\xd0\x22\xfa\x2b\x2d\xb7\x2f\xe9\x48\xcf\x15\x79\x79\xb3\xd0\xf4\x70\xa8\x9e\xa3\x7b\x83\xfb\x47\x1b\x92\x09\x5d\xc6\x21\x6e\x62\xfa\x11\x23\x60\x4e\x67\x89\x8f\x91\x6e\x8e\x6a\x7d\xbc\xf6\xd8\x38\x71\x51\x2a\xdb\x63\x92\x91\x6c\x98\x87\x16\x88\x45\xbc\x92\x52\xa7\x59\xf7\x84\xd1\x43\x73\xa1\xe1\x8a\x10\xce\x57\xe5\x44\x21\x38\x6d\x85\x5b\x89\x42\x7c\x5e\xd8\x8a\xdb\xa2\x76\xa7\xdb\x4f\x92\xb2\x99\xea\x0c\x69\xa0\x3b\x48\x90\xf1\x81\x52\xa0\xe6\xa5\x01\x2a\x01\x19\x02\x03\xed\xf0\xa1\x2d\x54\xfc\xf4\x4e\x98\x0d\x4a\x0e\xca\x84\x1a\x19\xc1\x1b\x6d\x40\x8b\xc4\xf4\x2c\x8d\xe4\xf9\x5b\x66\xd7\x58\x7a\x0f\x8d\x56\x09\xe7\xa8\xa0\xcf\x53\x59\x5b\x55\x32\x4c\x01\x3b\x64\x45\xfc\x00\x78\xb4\x93\xe4\x21\x8e\x17\xf4\xbf\xdf\x21\x6c\x83\x57\xb7\x5b\xd4\x2e\x95\xa4\x25\x69\xd7\xfc\xdc\x25\x87\x86\x15\x23\x4d\x06\xc6\x13\xb0\xb4\xfc\xef\x6b\x63\xb2\x06\xc6\xe2\xe8\xb9\x07\x96\x7b\x92\x1f\xba\x5d\xbf\x33\xe3\x9e\xd9\xf7\x6a\x97\x96\x1e\xda\x85\x70\xf0\xc6\xd9\x39\x06\x4a\x0b\x7d\x56\x01\xd0\xe4\x9d\xec\xb7\x7f\xfa\xf3\xf9\x01\x7b\xfd\xea\xdb\xef\xe1\x9f\x77\x06\x2d\xa7\x7d\x4d\x0a\x1a\xb8\xe8\x85\x4b\xd4\x40\x9c\xab\x30\xb8\x4a\x26\xe6\xc3\x32\xce\x84\x09\x8d\x6d\x4d\x7b\x34\x91\xf2\xfd\x0f\xa2\x04\x9c\x43\xc5\x59\x3a\xce\xf5\xae\xe4\x5d\xc5\xa9\x7c\x57\x5e\x5c\xdc\x43\x61\x70\x08\xe5\xb2\x85\xb2\xc9\xa4\xd4\x85\x56\x19\xd7\xd8\x38\xe1\x0f\x7e\x24\x04\x46\xaf\x90\x54\x46\xa0\x91\x55\x0c\x9d\xd3\xc8\xca\x61\xc9\x95\xf4\x64\x26\x23\xe5\x99\xe1\xdd\x83\xbb\x0d\xa0\x32\xae\xf9\xf6\x35\x09\x0d\x39\xcb\x21\xa3\x13\x32\x01\x7f\x20\x9b\xfb\x6b\x9b\x3a\x04\x04\xa8\xf0\x93\x03\xa4\x16\x71\xd8\x30\xac\xba\x6b\x10\xb9\xa7\x47\x1d\xcc\xea\x05\x08\xb4\x1f\x43\xf0\x02\x66\x5e\x06\xce\xc1\x99\x28\xee\x07\x7c\x5e\x84\xec\x80\xa0\x18\x10\x24\xfa\x56\x06\x38\x43\x6b\x08\x0c\x2d\x74\x50\xc6\xb3\x4a\xf1\x83\x7b\x0f\xa2\x1e\x96\xc1\x5e\x0c\x8b\xc1\xc2\x7f\xe0\xd8\xf4\xa6\x7e\x6b\xc1\x9d\xca\x3b\x88\x66\x5e\xf0\xd2\x0f\x45\xa7\x0b\x79\xe6\x60\xe9\x59\xa0\x2a\xc3\x27\xa9\x58\x21\xcf\x53\x36\x83\x50\x83\x69\xbe\x62\xf3\x88\xa7\x95\xb1\x11\xa6\x61\x66\x2b\x9e\x79\x73\xcf\x74\xfb\x3d\x18\x61\xfb\xef\x9b\xaf\xe2\x46\x3c\x24\x68\x43\x2e\x5a\x1c\xe6\x15\x19\x01\x48\x0f\x97\x52\xd7\x1a\xd1\xe4\xe2\xc3\xe9\xf5\xe5\xc5\xf9\xe4\x62\xca\x3e\x8c\xaf\x4f\xc7\x6f\xce\x26\x0c\xb3\x4a\xe8\x6d\x5e\xac\xea\xf4\x42\x70\xa3\x1f\x5d\x5d\xc5\x6d\xbb\x55\x15\x68\x5d\xcf\xaa\xa5\x88\xbd\x58\x72\x9c\x94\x51\xc8\xe5\xc2\x55\xee\x53\x95\xdd\x52\xaa\x16\x9e\x34\x8e\xc2\xd4\x70\x83\xdc\x93\x1a\x15\xf5\xfb\xe9\xf4\x0a\xcc\x7d\x7f\x5d\x17\x81\x3c\xc1\xc2\xb2\xe0\xd2\x85\xd2\xb6\x36\x15\x55\x1f\x7d\x88\x0b\x09\x47\x7c\x83\x69\x43\x86\x22\xdb\x4b\x0e\x9a\x2e\xc4\x81\x02\x15\x9d\x10\x51\xe5\x54\x92\xbb\xc2\x2e\x2c\xfa\xf2\x54\xce\x4d\x1d\x0c\x84\xd3\xe1\xf6\xea\x97\x36\x1a\x0e\xb3\x56\xb8\x2f\xe5\xcb\x0e\x39\xd1\xda\x7d\x7f\xaa\x97\x5d\xb3\x73\x96\xbb\xaf\x16\x84\x2e\xfa\x0e\x38\xee\x47\xfa\xde\x6a\x97\x3d\x73\xef\xd3\x2a\xfb\x56\xba\x3c\x05\x04\x42\xfb\x3c\xb0\x22\xc7\x30\xba\x5b\x78\x4a\xf9\xc7\x1e\xbd\x54\x05\xa4\xca\x4c\xb2\xd1\xaa\xdb\xe3\x82\x83\x93\x9c\xf2\x65\x30\x54\xdc\x05\xe9\x71\x74\x14\x27\xf2\x9d\x15\xfe\x4c\x55\x24\x07\x71\xa4\x3b\xd2\xfb\x1e\xd8\x56\x73\xc5\xa1\x04\xb2\x49\xe0\x43\xa8\xe9\x8a\x26\x53\x01\xb8\x2c\xe2\x6c\x12\x6a\xba\xa2\xe9\x08\x1f\xd6\x51\xda\x99\x6b\xcb\xfd\xea\xa1\x55\x24\x4f\x77\x42\x44\xac\xf3\x56\x8b\x34\x39\x3e\x09\x48\xe9\x64\x5c\x71\xb6\x9b\xa4\xd9\xc5\xad\xeb\x43\x8a\x8a\xb7\x8c\xd0\x8c\x43\xab\x1a\x59\xa6\x43\xb1\x7d\x4d\x67\x34\xf2\xfc\xea\x04\xc7\x54\x95\x88\x07\x42\x51\xe2\x6a\x57\x2a\xb4\x60\x93\x43\xf9\x88\x24\x0a\xbd\xd1\x49\xf3\x70\xeb\x89\x95\x42\xc0\x11\x5b\x11\xd4\x1f\x4c\x35\x56\xf3\xa2\xe7\x5a\xe2\xea\xaa\xec\x88\xa9\xff\xd0\x74\xa2\xe4\x88\xb6\x33\xd4\x6e\x57\x71\x47\xbe\x9b\x9b\xb4\x6a\x7a\xb4\xb3\x8c\xe9\x49\x6d\x60\xd4\xbd\x81\x0e\x80\xad\xcd\x30\x8e\x8c\xcf\x96\x08\x11\xe3\x42\x06\xf4\x82\xeb\xa1\xc0\x9f\xc9\x4b\x9a\x34\x17\xc3\x0f\x22\x72\x77\x40\xb3\xac\xeb\x88\xa8\x98\x04\x30\x2d\x9c\xbc\x91\x93\xaa\x7a\x21\xf3\x5b\xb1\xfd\x92\x09\x1c\x2d\x21\x52\x89\x39\x62\xc6\x88\xae\x10\x7a\xd7\x12\x56\x4b\x79\x47\xce\x4a\x9c\xe2\x82\x42\xca\x08\x77\x16\xd6\x5f\xd1\x8a\x02\x11\x9d\xa0\x07\xdb\x04\x3f\xe1\x70\x05\xd8\x01\x44\x57\x98\xc8\x53\x74\xbf\x74\xe9\xe1\x61\x15\x92\x62\x77\x30\xd5\x96\x26\x72\x85\x58\xba\xcd\xfd\xa5\x31\x08\xae\x5d\x25\x22\x06\x08\x49\x6d\x29\x76\x7b\x51\x47\x7e\xca\x45\xdb\x92\xe5\x56\x69\x2a\x57\x9e\x40\x68\x6b\xfb\x13\xb5\xa9\x02\x95\x77\x12\x81\xfa\x03\xb7\x00\xe5\x18\x01\x95\x07\xc4\xfe\xee\x82\x61\x57\x97\x88\x48\x9c\xc0\xe6\xdb\xa7\x75\xeb\xd5\xc5\xbe\xba\x23\xae\x62\x5b\x6e\x89\x63\xbb\x78\x4f\xbe\xd8\xcc\x44\xe6\x1b\x75\x86\x40\x60\xdb\x49\x6c\x2b\x93\x31\x85\xde\xaa\xff\x29\x9a\x4e\x86\x8c\x13\xc7\x27\x2e\x8d\x36\xdf\x4d\x53\x9a\xcc\x35\x8d\x82\x87\xd2\xbd\x87\x32\x7a\xba\x2b\x12\xb1\x60\xc0\xfc\xfe\x5f\x8a\x4e\x86\x8c\x13\x54\x50\x1b\xbb\x3f\xcb\xf0\xfc\x0e\x14\x9c\xd1\xf5\x6d\x46\x32\x1d\x22\x52\x08\x82\x8f\x4a\xc5\x88\xae\x91\xb4\xac\x4b\x44\xf4\x9b\x1f\xc7\x1b\x5f\xa5\x03\x87\xb1\x06\x8d\xfb\x11\xbb\x88\x64\xc0\x1b\x4c\x4d\xd7\x69\xa6\x68\x57\x89\x8a\x01\x22\xc6\xcc\xc1\xd0\x82\x3d\x7a\xb2\x89\x91\x64\xba\x0e\x67\xec\x97\xe8\x0e\x73\xd9\x88\xa2\x68\xc4\xf6\x1c\x9a\x1f\xbc\xf9\x53\x7d\x80\xa4\xa1\xc8\x52\xe5\xb0\xeb\x47\xfd\xfa\xcc\xaf\x7c\x96\x4b\xd7\xed\xc4\x7b\xac\x62\xf2\xcc\xa2\x30\x13\xbb\xf8\x51\xb6\x8e\x21\x07\x6f\x86\x97\x69\x55\xff\x78\xf9\x4b\x2a\x0e\x8b\x77\xeb\x22\x79\x91\x1e\xe1\xd0\xf4\x09\x92\xc5\x18\xf0\xac\x71\xbc\x95\x37\xff\x9e\x3c\x47\x46\xf7\xec\x33\x5f\xbf\x94\x09\x0a\x63\xcf\x4f\x52\x95\x67\x8b\x45\x33\x0c\x98\x3d\xaf\xa7\x39\x62\x21\xf7\x12\xb1\x44\xc0\x57\xfe\x61\x15\xdc\x84\x62\xd4\xf0\x4c\x7c\x69\x83\xec\x7b\x47\xd0\xab\x75\xd2\x06\x38\x92\x58\xba\xaa\x74\x3c\xe5\xf4\x5c\x52\x84\xde\x21\x1b\x8a\xfd\x8f\x8f\xf9\xab\x57\xdf\x71\x99\x53\xf2\x40\x4c\xea\x19\xf3\x33\xbc\xe6\x43\xdf\xbf\xa9\xe8\x4c\xa6\x7c\xe4\xbb\x61\xe2\x24\xe3\x55\x22\x0e\x8f\x49\xb6\xde\x80\x71\x17\x45\x01\xf7\x0c\x71\xfd\x9c\x68\x0c\x89\xb0\xe8\xb7\x69\x96\x88\x19\xd0\x90\x4e\xa8\x17\xad\x21\x11\xcb\xdc\x4e\xdb\x1f\xb2\x28\x4e\xe9\x35\x43\xb1\xb0\x96\xef\xed\xf8\xf4\x6c\x72\xa2\xc5\xb6\xf9\xda\x9e\xee\x64\x3c\xbd\xbd\x9e\xb0\xb7\x67\xe3\x77\x7a\x73\x51\x4d\x29\x7b\x2e\x68\x85\xcc\xee\x79\x36\x5b\x36\x76\x61\xa9\xdd\x35\x25\xb9\xbe\x33\x32\x79\x23\x90\x5a\xee\x80\x89\xb5\x9d\x51\xf1\x07\xb1\x46\xba\x82\x32\x57\x76\xc6\x14\x25\x8b\x91\xb4\x1e\x93\x59\xe2\xa5\xd1\xc5\x65\xb2\xb8\x16\x7f\x4e\x23\xe5\x78\xa2\xbc\xb7\x9c\xbe\xf2\x00\x1c\xfa\x48\xe7\xda\xde\xa6\xaa\xce\x78\xa4\x47\xcb\xa1\xc5\x91\x96\x50\xd3\x19\x4d\x33\x6a\x82\xe3\x20\xb6\x23\xe2\x8e\x11\xee\x57\x5a\xfa\x0f\xde\xbb\x0c\xd6\x47\x07\xe2\xd2\x4f\xca\x7a\xdb\xd9\x5d\xee\xb9\x92\xa1\xe2\x14\x0b\xa3\xca\x94\x87\x1b\xf9\x7b\xa5\x6c\x81\x98\x8f\x9f\x0a\x7f\x0c\xb3\xee\xd7\x9d\x90\x3b\xd6\x62\xa3\x7d\x00\x11\xdd\x94\xab\x8c\xcc\x13\xc9\xc3\x07\x3f\x89\x42\xb8\xd8\x28\x6d\xcd\x0c\xca\xc0\x01\x29\x3b\x48\xa3\xee\x44\xcc\xf7\x08\x5d\xc5\x1d\xf8\x4a\x5f\xb5\x08\x43\xc0\xd8\x7f\x5e\x63\x2d\x7b\x14\xca\xbe\x19\xee\x03\xe5\x9f\x6f\x03\x0f\x42\x64\x28\x4f\xf4\xb9\x7e\x7f\x47\xa9\xda\x1f\x8f\x34\xce\x76\x81\xb3\x5d\x93\x8a\x46\x7f\xc5\xb3\x5d\xc0\x9e\x36\xdc\x81\x62\xfe\x57\x54\xde\xa0\xd3\x58\xb0\x3e\x10\xdd\xea\xb3\x38\xd9\x83\x24\x68\x4a\x0e\xa5\xf8\xaf\x3e\x7a\xba\x64\xca\xa5\x2d\xf6\xc4\x37\x37\x99\xad\xea\x68\x2b\x2f\x37\xa5\x3c\x9b\x17\xce\x6f\xd2\x09\x4c\xe5\xe5\x04\xc5\x7b\xe1\xbb\xa6\x4d\xcf\x6f\xb4\xd8\x7f\x1b\x41\x88\xda\xb9\x8c\xa7\xf7\x62\x2e\x1d\x32\x63\x41\x37\x96\xee\x3b\xb3\x28\xbc\xf7\x55\x92\x56\xbd\x03\xa3\x23\x15\xfb\xf6\xaf\xe8\x83\x7e\x01\x72\x1f\x83\x8a\xaa\x4e\xd6\x06\x5b\x77\x5d\x22\xa2\x95\xbf\x48\x3c\x57\x48\xb6\x95\x89\x98\x44\x0f\x97\xb3\x8d\xcc\x7e\x56\xd0\x96\x5f\xa3\x03\x92\x65\x5d\x6b\x44\xef\x26\xd3\xe9\xe9\xc5\x3b\x76\x33\x1d\x5f\x4f\x0d\x47\x3c\x6d\x39\x7b\x4e\x67\x97\x6f\xc6\x67\xec\xf2\x6a\x7a\x7a\x79\x61\xf0\xcf\xd3\x96\xb3\x1d\x30\xef\x94\x29\xc2\xe5\xb8\x8c\x02\x66\x1a\xdd\x5d\xc5\xed\x05\x2c\x0c\x59\x20\xd2\xaa\xdc\x5d\x2a\x27\x70\xb1\xb6\x7d\xe6\x99\xd8\x86\xcd\xb8\x0d\x12\x7b\x02\x74\x6c\x71\x9c\xee\x2a\x84\xe5\x4e\x78\x90\x25\xac\x1d\xce\x0f\x0f\x0d\xb6\x82\x9d\xe5\xc9\x9c\xd5\xf1\xdb\x90\xda\x85\xd6\x8e\xce\xf4\xc8\xc8\x79\xcd\x77\xa1\x0c\xcd\xc0\x7e\xdf\x43\xd8\xd3\x27\x40\x40\x6f\x1d\xd4\x60\xec\x02\x94\x45\xf7\xdc\x0f\x73\x72\x9b\xc0\xe6\xe6\x69\x7a\xca\x1e\x38\x93\x5b\x03\x6c\xef\xfa\x7b\x47\xf5\xa4\xe6\x8e\x7a\xc8\x08\xa2\xc3\x12\xef\x21\x53\x57\x00\x43\xe7\xbc\x5e\xbb\x64\x45\x96\x57\xe7\x35\x69\x31\xb3\xd8\x54\x25\xe3\x91\xe6\x9f\x69\x15\x72\x1e\x4c\x3f\x53\x3f\x8b\x12\x5f\x8c\x5a\x41\x5d\xaf\xad\x70\x21\xd1\x0f\x5f\x49\x78\xcd\xf4\xd7\xa7\xe6\x9a\x00\xa9\xfd\xe2\xd3\x6a\x8b\xda\x1a\x2f\x14\x3b\x96\xcb\xc4\xe1\x48\x8d\xdc\x88\xc8\x87\xe6\x1e\x4c\xa9\x4a\xc6\xa3\xe2\x2d\x6d\x12\x65\x76\xe3\xc0\xb2\x36\x19\x55\x73\xe2\x4b\xe9\x53\xa8\x3d\x01\x07\x6c\x2a\x4e\xb2\xf4\xc3\xa5\x7c\xc9\x85\x03\x09\xea\xb0\xd8\xa0\x0d\x93\x6c\x15\x21\xf9\x0d\xfe\x05\x93\x69\xd8\x8c\xbb\xa1\xa6\xda\xf2\x37\x71\xf9\xd5\x08\xb6\x23\xe6\xbb\x6b\x92\x6d\xdf\xe9\xaf\xa1\xad\x76\x82\x6a\xdf\x8d\xf8\x04\x2d\xf4\x04\xe2\xef\x4e\xca\x1d\x0b\xb3\x9f\x0e\xfe\xc4\x1d\xf6\x89\x87\xf7\xd7\x3a\x8e\x77\x39\x60\xf7\x38\x32\x4b\x15\x64\xea\x7a\x2c\x71\x21\xe5\xbc\x7f\x50\x97\xe7\x8e\x27\x10\x22\x15\x67\x94\x18\x63\x04\xf6\xc1\x4a\x71\x6f\x13\x81\xc7\xb9\xdd\x87\x65\xb6\x1f\x99\x77\x26\xdf\x20\xb2\x6c\xeb\xc0\x77\x98\xb6\x62\xaf\xbc\xdd\x5b\x64\x8f\x0d\xf0\xa4\xf2\xb6\x64\xd5\xe8\x73\x42\x76\xa6\xd7\x07\xb9\xdb\x49\xd9\x9e\x80\x1b\xb6\xb4\x2d\x99\x87\xf1\x3b\xda\xcc\xe8\xfd\x29\xd3\xa5\xc9\xe0\xf2\xa6\xd9\x4d\xcb\x9d\xc7\xf0\xfa\xe7\x5d\xb1\x23\xcb\x2d\xad\xbe\xda\x33\xb2\xbc\xd4\x29\x25\x29\x59\x95\x76\xc7\x68\x50\x59\x1d\xe7\xb7\x3e\x24\xad\xf1\x63\x20\x53\xf4\xd3\xd5\x26\x9e\x66\x77\xd1\x7c\xad\x45\x4b\x27\x40\xc3\xb6\xe2\xd9\x32\x9a\xb3\x17\xef\x26\xd3\x83\xab\xcb\x1b\xf1\x9f\xdb\xe9\xc1\xc9\xe4\x6c\x32\x9d\x1c\xf0\x6c\xa6\xb7\x27\x21\xd6\xb6\x47\x15\xa5\x19\x8c\x0e\x3d\xe3\xad\x02\x64\xda\x55\x1a\xf4\x34\xbf\x93\xb7\xac\x06\x41\xad\x2a\x59\x63\x38\xbd\xb8\x99\x8e\xcf\xce\x26\x27\xec\xea\xec\xf6\xdd\xe9\x05\x3b\xbe\x3c\x3f\x1f\x5f\x9c\xe8\xad\xdf\xb5\xe5\x6c\x0f\x19\xa7\x8b\x30\x4a\x78\xd3\x39\x5b\xcb\xcd\x5c\xd8\x5e\x4c\xd5\x55\x4b\x0f\xe4\x22\x01\xbb\xea\xbb\x1d\x41\xfb\xa9\xd5\x29\xb8\x22\x31\xaa\x67\x19\xbb\x4d\xbd\x85\xa1\x19\x74\xe5\x5c\x39\x99\x56\x4f\x53\x51\x67\x7e\xec\xb8\x0c\x56\x12\x72\x4c\x6e\x0f\x79\x6e\x7f\x9d\xf1\x38\x63\xa3\xfb\x6f\x20\xc2\x2a\x98\x80\x81\xe3\x08\x38\x50\xf1\x39\x7b\x5c\x82\x31\x9c\x0c\xeb\x5f\xe5\xbd\x47\x6b\x0e\x79\x17\xd3\xec\x15\xfa\x29\xf6\x29\xa1\x38\xb4\x57\x61\xd2\x2b\xce\x33\x47\x95\xfb\x2b\xd8\xa1\x82\xe1\x1f\x06\xcc\xcf\x5f\xbd\x7a\xf5\xff\xab\xff\x86\x1f\xbc\xc0\x9f\xab\x5a\xd2\x9e\x10\xd3\x01\x1c\x7d\x0c\x7f\xfc\x18\x0a\x3e\xf0\x1f\xc6\x3e\x3e\x8b\x93\x28\x8b\x66\x51\xf0\x51\xb0\xfb\xf8\x2c\x9b\xc5\x1f\x9f\x1d\x14\xef\xe6\xe8\x71\x8e\x2d\x26\x5f\xbf\x7e\x75\xf8\xed\xf7\xdf\x1f\xbe\x3e\x7c\xfd\xef\xb5\x62\x71\x94\x64\xa9\x2c\xf0\xdd\x77\xaf\xfe\xfc\xf1\x19\xbc\x10\x80\x7e\xb2\x68\xfb\xff\xde\x62\x39\x7c\x47\xe9\xfe\x84\x96\x71\xc9\x02\xb3\x45\xe8\x2d\x4d\x2d\x6b\x39\xa0\xc8\x2d\xe7\x95\xdc\x79\x5e\xc1\xa4\x09\x38\x0d\xaa\x60\x3b\x98\x07\x5c\x3a\x69\x16\x11\x8a\x0a\x59\xb4\x40\x54\xee\x85\x91\x22\x71\x35\x9e\xbe\x7f\x39\xbd\x7c\x29\x17\x9b\xd1\xc5\xf8\x7c\xc2\xd8\x88\xb9\x32\xb3\x5e\x9a\x24\xfd\xea\x7e\x15\xba\xe8\x15\xfe\x25\x63\x29\x99\x76\x72\xb4\xca\xb4\x06\x36\x65\xc7\xdf\x2e\x40\xa6\xcd\xce\xf9\x2a\x4a\xf4\xdb\x3e\x6d\x39\x3a\xa7\x55\x9e\x66\xca\x3d\x30\x0a\x47\x21\x5f\x08\x26\x0f\x1c\x6d\x92\x17\x86\x64\xee\xe4\xfa\xd6\xc8\xe0\x50\x94\x79\x99\x32\x91\x10\xb3\xc9\x42\xac\xf2\xe9\xa1\x58\x2b\x38\xfa\xae\x2b\x05\x52\xaa\x16\x0d\x70\x62\x8f\x92\xfa\x9b\xda\x0b\x70\x6d\x80\x4c\x1b\x10\x03\x49\x59\xea\xca\xfc\x42\xfa\x5e\xb3\x6f\xf6\x84\x2f\xf6\x80\x33\x30\xcc\xd0\xad\x91\x5b\x0c\xdf\xca\xba\x26\x19\xcd\xb5\xf2\x28\x82\x7f\x0d\x67\xc5\xae\xe2\x64\xbe\x37\x37\x67\xec\x98\x27\xd2\x38\xfd\x77\x95\xea\x07\x1d\x84\xa6\x7e\x7c\x2e\xbe\x98\x98\x3d\x2d\xf0\x50\xc9\x90\x71\xca\xb8\x0b\x4e\x9f\xcb\xa6\x2a\x1d\x4f\xa9\xf6\x3f\xd2\x9b\xda\x98\x0b\x93\x79\x56\x81\xa8\x60\x98\x80\x6d\x8c\x54\x78\x3c\x17\x2b\x48\xb1\x6a\x40\x91\x32\x17\x0e\x7a\x60\x74\xa2\xeb\x4b\x96\x2e\x07\xe4\x4e\x43\x8d\x1b\x6e\x95\x20\x95\x9a\xd2\x10\x52\x1d\xdc\x06\xa0\xb8\x03\xf4\x83\x00\xee\x85\xd1\x2f\x56\x95\x59\x94\x87\x19\xb2\x28\x16\x9a\x63\x78\x02\x6c\x4e\x1b\x65\x6a\xeb\x0f\x9a\x5c\xd9\xad\x5d\x3b\xe5\x36\xa4\xd4\xe9\x7e\xc5\xee\xc5\xce\x5d\xee\x15\xee\x62\x64\x5a\x42\xc4\x23\xb7\x35\x67\xf0\x9b\xd4\x3d\x7b\x50\x74\x46\xdf\x68\xc0\x46\xd3\x0d\xf0\x8d\xfa\x11\xdf\xa1\x4c\x01\xe6\x67\x58\xca\xe4\x0c\x1b\xa3\x66\x40\xe9\xec\xd8\x90\xe5\xc4\x53\x6c\xb9\x7e\x74\xe2\xd5\x15\x27\xf3\x2d\xb4\x12\x87\xac\x0a\x4f\x03\x69\x1c\x3b\x11\x74\x57\xa4\x63\x69\x19\x22\xf4\x11\x47\xa4\x32\x08\x4a\xa7\xa9\x61\x0f\x33\x82\x86\x85\xfb\xf6\xc0\x9d\x20\x19\xbb\x9c\x44\xa2\xf0\x90\xb9\x41\xb5\xae\x4f\x46\x06\xf1\xcc\xd0\x85\xd1\x4b\xbc\x15\xb6\xc2\x54\x3e\x21\x7d\x7e\x22\x15\x32\xca\x2e\xb5\x4e\x6b\x29\x32\x17\x19\x82\xeb\x5e\x1d\x38\x9b\x61\x7e\x9e\xa3\x54\x37\x18\xa4\xe8\x83\x17\x58\x46\x20\xbc\x0d\x79\x31\xa1\x54\xc4\xb7\x68\xb3\xa3\xce\xc0\x10\x46\x3d\x0e\x9e\x3c\x7d\x50\xcf\xa3\x1c\x47\xc4\x4e\x46\xad\x6e\xdd\xae\x67\x10\xda\x09\x14\x58\x85\x4f\x22\x28\xb2\x32\xbc\xe9\x93\x17\x97\x5a\x48\x84\x9a\x0e\x68\xca\x8c\x09\x85\x57\x81\x60\x80\x2f\xe6\x90\x4c\xb4\xee\x5d\x60\x01\xd0\x85\x18\x1d\x73\xe5\x27\xd9\x0d\xa9\xad\x2c\x9d\xa3\x31\xb5\xa1\xa6\x14\x9d\x8b\x32\xff\x57\x5f\x78\x26\xef\x7c\xd5\xad\x76\x94\x34\x1e\x5a\xe5\x89\x1c\x8e\x30\x5d\x16\xbc\x15\x56\xc9\xa7\x23\x99\x56\x4d\x59\x64\x44\xf7\x8e\x52\xf4\x20\x49\xc7\xbf\xe1\xf1\xd0\x8d\x4e\x5b\xc1\x85\xb7\x34\x61\x2b\xf6\xae\x8e\xd3\x05\x91\x8c\x03\xce\xd2\xc4\xc6\x43\xdb\x05\x0b\x48\xda\x1a\x0e\xdc\xa5\xf5\xcb\x0b\x4f\xfe\x05\x93\xb6\x07\x39\xce\x47\x30\xe4\xe5\x65\x1c\x4b\xd7\x69\xc6\x57\x07\xca\x5c\x01\x3d\xc2\xc3\x42\x43\x0a\x06\x34\xea\x35\x26\x80\x84\x3c\x8f\x49\x8e\x79\xc5\x53\xfd\x1d\xfc\xbe\xd9\xd3\xdb\xa5\xb4\x26\x51\x09\xfc\xba\x45\xd1\xd7\x20\x72\xaf\x52\x03\xdd\xdf\x73\x8c\x60\x58\x50\xad\x59\x2d\x76\xe0\x21\xd2\x70\x45\x28\x27\xbf\x22\x72\x92\x32\x6e\xb3\x85\xd6\x51\xd9\x15\x13\x6e\xd9\x88\x50\xda\xeb\xd0\x10\xd4\xbc\xfb\x6b\xd3\x43\x67\xd7\xb1\xa8\x46\xc3\xb1\xe9\x65\xa6\x08\xab\x48\xa4\x9b\x6f\x31\xf2\x55\x1e\x86\x1b\x81\x9a\x3b\x5a\x6e\x68\x1e\xc3\x48\x28\xf3\xed\x22\x0a\xe5\x4e\xde\x53\x1c\x2b\x82\x54\xec\x0d\x6f\x84\x54\x1a\xaf\x75\xe2\xeb\xa8\xe4\x88\xa1\xf2\x28\xb0\xe4\xdf\x56\xc1\x8d\xb7\x72\x11\xb0\xe3\xbb\x55\x98\xc4\x13\x3e\xa1\xba\x5a\x16\xdb\x67\x79\x9f\x9c\x9a\xee\xa1\xed\x2a\xd9\x63\x88\x20\x37\xf4\x66\xa6\x68\xb1\xc8\x41\x24\x08\x19\x92\xdf\x74\x2c\xd8\xaa\x4d\x3f\xcd\x9d\x45\x2a\x17\xa3\x6f\xd8\x20\xb6\x95\x21\xc8\xa8\x6a\x47\x06\x23\xb0\xf6\x42\x14\x1e\x0b\xf1\x2d\x38\x9c\x23\x53\x7d\xb8\x21\x5d\x31\x12\x1f\xf4\xa7\xcf\x33\x63\x2f\xd1\x14\x23\xf1\x49\xe0\xfa\x5d\x4c\x2d\x3c\x9c\xc7\x91\x0f\x7a\x7b\x5f\xe6\x82\xc1\x6b\x32\x0c\x4e\xb5\x30\xdb\xf7\x39\x52\x21\xa0\x8c\x3e\xa3\x79\x6d\x8c\x2a\x8c\xfb\x32\x2b\xd6\xf3\x6d\x9f\xfb\xe6\xad\x9e\x01\x72\x7f\x92\xd6\xf8\xcf\x21\x5e\x9c\x27\x1a\x21\x5e\x17\x31\xb6\xd4\x86\x63\x16\xcd\xd5\x25\x2d\xe4\xc9\xdf\x08\xa6\xee\x85\x91\x18\x74\xc9\x21\x63\xb7\x21\xea\xb4\xa3\x07\xd1\xa3\x7c\x71\x02\x0f\x0f\xe4\x51\x4f\x10\x1c\x95\x94\xa4\xdd\xcc\xa3\x8f\xd1\x0d\x64\x40\x2f\x28\x54\x4f\x61\xa1\x6d\x8e\xaf\x10\x21\xb5\x75\x61\x54\x8f\xe2\x24\x7a\xf0\xe7\xb5\xac\xfe\xe5\xe5\x4e\xb5\xd1\x02\x03\x0b\x14\x51\x3f\xe1\x0d\x41\x92\x80\xbf\x66\x75\xa8\xa2\x6a\x0a\x6e\x39\x2e\xb4\xf7\x79\x10\xac\x21\xac\xa0\x01\x2b\xad\xba\x23\x2e\x3f\xad\x45\x2b\xdc\xd0\x3f\xcc\x7d\xb0\x3e\x13\x63\xe5\x80\xc5\x01\xf7\x52\xce\x54\xa3\x31\xee\x43\xff\x80\xc3\x12\x74\x29\x34\x79\xc6\xcc\x66\x1d\xf9\x23\xf7\xc9\x9a\xd0\x1e\xb1\xd2\x5c\x44\xc5\x96\x19\xf3\x9b\x2c\xe1\xc0\x68\x48\x04\x62\x5d\x8f\x80\xe4\x57\xcc\xd3\x81\x0a\xea\x32\x6c\x51\xd9\x2f\x71\x64\xe5\xf1\x01\x26\x58\xf0\xc3\xdc\xb4\xb4\xf7\x21\xd5\x03\x6f\xb5\x0d\x51\x1b\x5c\x47\xb0\x96\x74\x28\x48\xfd\x55\xbe\x62\xde\x0a\x6f\xb0\xc5\x54\xa8\xae\x53\x64\x37\x2a\xe7\xbe\xea\x3a\x5c\xbc\x58\x7a\x0f\x85\x25\xff\xeb\x57\xdf\x7e\x7f\x7e\xc0\x5e\xbf\x13\xff\x7f\xf5\x4e\xaf\x7c\xd8\x19\x9f\xa7\x92\xf4\x90\x8d\x5e\xc3\xa2\x29\xe6\x75\x8c\x2d\x26\x0a\xe7\x21\xde\x41\xc1\xad\x23\xf2\x30\xad\x3e\x4f\x88\xe5\x6b\x6e\x31\xf6\xe2\x44\x26\x89\x39\xaa\xde\xed\xa0\x53\xed\x0a\x9f\xed\xd9\xa0\x00\x8e\xc3\xfa\x85\x18\xc0\xe2\x30\x1c\x85\xf3\xf4\x1b\x1c\xe3\xc7\x67\xa7\x30\x5f\xe2\xc0\xdf\x38\x02\xcb\xf9\xe9\x80\xe1\x2e\x44\xd9\xb9\xb1\x14\x66\x7f\x75\x75\x97\x8a\x09\x7f\x8d\x35\xf4\x76\xb1\x37\x72\x23\xa2\xee\xfa\x2a\xee\x0e\x72\xd4\xae\x5e\xd5\x47\xff\xf6\x4f\x7f\x86\x36\x2d\x9a\xd6\xf0\xf1\x28\x75\xed\xfb\xac\xb4\x46\x54\xf7\xc0\x5d\x06\x8e\x1d\xa5\xed\xb9\x62\x88\x5b\xde\xa2\xb7\x2e\x37\x92\x0d\xcf\xef\x6a\x27\xa9\x87\x36\x00\x49\x6b\xfc\x60\xa9\xae\x3f\xdc\x6d\xbc\xb5\xa7\x6a\xf2\x40\xbb\x70\xf3\x3e\xbb\xe0\x8f\xec\xca\x4b\xd3\xc7\x28\x99\xeb\x69\xb7\x16\x22\xf1\x30\x7a\xcf\x6d\x17\xb0\xa7\x1d\xb1\xf1\xd5\x69\x75\x68\x4c\x79\x56\x59\x4d\x8b\x63\xa5\x1f\x4e\xfd\xb8\x66\x2e\x2d\x0a\xab\x07\xb0\x83\x92\x7a\x4a\xf1\xb5\x8b\xfa\xfa\x25\x66\x77\x8c\x6c\x27\x07\x81\xc0\x9b\xc9\x83\x93\x07\xe1\x80\x19\xfb\x21\xca\xa5\xcd\xd2\x5c\x46\x63\x2f\x74\x6b\xd0\x77\xc5\x11\x09\xfa\x31\xde\x88\x6d\x05\x78\x28\x7a\x7a\x71\x79\x26\xa3\xee\x89\xcd\x71\x06\x2e\x4e\x62\xa0\x08\x01\x6b\xa1\x46\xca\x22\xca\x3d\x0a\x36\xa3\x0d\xcf\x7b\xf1\x52\xdf\x72\x57\x08\xc3\x4b\x0a\x78\x3e\x20\xad\x93\x3d\x64\x53\x31\x71\x25\x62\xfe\xc2\x7c\x93\x2d\x8c\x0f\x24\x30\x1e\xd6\xa5\x94\x21\x1e\x02\x70\x5b\x41\x2a\x3b\x6e\x51\x25\x34\x48\xa3\xa4\xc6\x79\xe2\xc9\x9b\x77\xba\x54\x33\x96\x02\x57\x80\x40\x1d\xb6\x26\xc0\x07\x1c\x1c\x02\xc8\xc7\xba\x16\xf3\xe0\xc6\x57\xd9\x0c\xab\xe0\xd6\xac\xb1\xaf\x19\x2a\x85\xb5\x34\x64\x37\x68\x0e\x09\xd3\xd0\xeb\x47\x8f\x32\x9b\x48\x77\x3e\x38\x29\x9a\xf1\x6c\x97\xa2\x70\xa9\x6c\x11\xba\x79\xe9\xcb\x52\x38\xce\x96\x5e\xb8\x10\xab\xdd\x23\x47\x47\xda\xb9\x61\x36\x36\x16\xa6\xf0\x2c\xae\x85\x3a\x45\xd4\x14\xa4\xf0\x32\x84\x24\x36\x71\xb6\xaa\x46\xc1\x21\x1d\x49\xd3\x98\xcf\xb0\xca\x21\x6b\x6b\x4e\xe3\x32\x43\xa5\x40\x41\x07\x83\x1b\xc3\xba\xe1\xb5\xa5\x5c\x96\xf8\xfc\x00\x14\x55\x38\x9a\x9a\x6e\x44\xd5\xb2\xd5\xa8\x67\x02\x3f\x30\x03\xaa\x6c\x65\xe0\xdb\x16\xce\x6f\x65\x30\x85\x0a\x41\x97\x1c\x8e\xc4\xa8\x98\x87\x80\xba\x77\x84\xfa\xcf\x68\xec\xdb\x7d\xa8\x11\x51\x5b\x4c\x3b\x6d\xa5\x28\x5c\x4a\x13\xa4\x0e\x3e\xed\xe5\x48\x9c\xd4\xcd\x73\x33\x22\x3d\xea\x06\xee\x38\x87\x13\xa7\x71\xf9\x24\x55\x77\xc1\xb5\x79\xf9\x6c\x89\xc7\x58\x8d\x82\xc3\xd6\x46\xcb\x54\x94\xc6\xaf\x19\x24\xae\xb3\x0b\x74\x54\x70\xe1\x5d\x59\xc5\x58\x73\xd7\x56\x71\xe0\x6f\xcf\xb6\x1f\xb7\x41\xa6\xf3\x5d\xcf\xe3\xb4\xe5\xae\x7b\x19\xed\x47\x8f\x8c\x1c\x62\x79\xa5\xfe\x22\xe4\xe6\xcf\xa9\x2b\xea\xc0\xaf\xbb\xef\xb4\x96\x23\x71\x52\x96\x2f\x8e\x73\x26\xa9\xba\x0b\xae\x8d\x1c\x04\x96\x70\x4c\xb5\x48\x28\xd0\xe2\xb0\xba\x9c\x74\x6d\x25\x17\x32\x14\x9c\x78\x85\x5a\x84\x77\x70\x04\x49\xa7\x41\x40\x18\xc2\xb4\xca\xd6\x51\xde\x54\x2c\xcb\x8c\x20\x48\x5e\x6e\xde\x71\x23\x9f\x61\xec\x18\xbc\xc0\xbe\xe3\x2c\x8f\x21\x35\x9b\x29\xe1\xdd\xd0\xe4\x09\x72\x65\x2c\x90\x46\x28\x7e\x58\x9d\xb6\x8f\xdf\xa2\xaa\xab\x39\x0d\x89\x72\x50\xc8\x20\x44\x0f\x5a\x14\xc4\xfc\x48\x5e\x8a\x82\xca\x3e\xc3\x14\x7b\xd1\x4a\x6a\xf2\x4d\xd8\x6c\x6a\xd9\xa3\x28\x03\xb7\x94\x0a\x66\x3d\x6f\x53\x59\x6b\x8e\x97\x7f\xd5\x32\xa8\xbf\xb2\xa7\x77\xfd\x8e\x8d\x4f\xce\x4f\xf5\xe9\x31\x5b\x4a\xd0\xa8\xdf\x9e\x9c\x4e\x2f\xaf\xcd\xf4\x37\xcb\x90\x38\x9c\x8f\x2f\xc6\xef\x26\x66\x0e\x5b\x65\x28\x1c\xf4\x81\xd1\x9a\x2f\xed\x69\x1a\x4c\x6c\x2f\x9d\xec\x68\x2f\xe1\xa8\x85\xe6\xe4\x51\x98\xa1\x76\xa5\x66\x9a\x5b\x9b\x4a\x4c\x6c\x89\x04\x48\xd8\x1a\x1a\xce\x42\x1b\x29\xb3\x60\x1a\x21\x59\xd5\x73\x47\xd2\x8c\xdb\x00\x3a\x00\x65\x3d\x52\xa9\x49\xed\xe1\x91\x88\x0d\x85\x59\x3f\x11\xdb\x57\xa4\x60\xd1\x5f\x74\x35\x5f\x52\x68\x76\xfb\x02\xb5\x17\xb2\xe7\x21\xed\xcc\xb8\xcc\xb3\x0a\x89\x52\xe5\x3d\x74\x61\x68\x58\x9a\x05\xe9\x01\xd0\x29\xf4\x47\xa7\x22\x8c\xf4\x07\xd9\x49\x88\x8e\xb5\x96\x04\x74\xc3\x28\x0f\x6d\xae\xe4\xbc\x51\x4f\xe9\xec\xdd\x67\x3c\xd9\xb4\xf0\x8b\x21\x17\xac\x61\x06\xd8\x2d\x37\x6b\xa9\xaf\x3c\x7f\xde\xb8\x30\xd6\x43\x36\x15\x25\xf0\x4b\x53\xe9\x46\x2c\x00\xcb\xa8\xf4\xe8\x9f\x5a\xa5\xd1\xf6\xea\x5a\x9e\xad\xb4\xd9\xf2\xb8\x60\xc0\x38\x2c\xf9\x41\xe5\xaa\x9d\xc4\x76\x21\x17\x85\x3c\x49\x2e\xe3\x9d\x7a\x8f\xfb\xf4\xa2\x2a\x13\x63\x41\xd4\x50\xbd\xbe\x9c\xcb\x31\xf5\x7b\x27\x5f\xbb\xca\x04\x4c\x72\x7e\x81\x4b\x94\x72\x36\x81\x05\xcf\x68\xf7\x8d\xb5\x94\xb9\x70\xa3\xd6\x6f\x7e\xac\xb7\xf5\x36\x5e\x3e\x16\x40\x3a\xc8\xb5\x01\xe9\xae\x45\x6e\x8e\x4e\x43\x55\x7d\x41\x7b\x5e\x3c\x81\x80\x9a\xd0\x93\x7d\x98\xd0\x54\xf4\x37\x9c\xec\x45\xa7\x5f\x41\x78\xd3\xc7\x25\x97\xc6\xac\x52\x17\x5d\x58\xbf\x06\xc5\xce\x09\xc4\x15\x9f\xdf\x70\x89\xbf\x13\x26\xf6\x32\xc2\x05\xf7\xc6\x6e\xea\x5e\xf9\x2b\xeb\xae\xdf\x8d\x06\x09\xee\xc4\x68\x98\x2b\x7a\x35\xc3\x81\x2a\xb4\xac\x59\x0d\xe6\x40\x61\x00\x74\x4b\x0f\x1a\xa6\xc5\x50\x0a\xba\xa9\xb4\xa2\x72\x40\x4c\xa2\x4a\x92\xe2\xa8\x95\xa1\x11\x62\x57\x15\x02\x7f\x34\x19\x9f\x2d\xa3\x28\xad\x2c\xc6\x83\x20\x7a\x84\xce\x0e\x46\x24\xf0\xf7\x21\x7b\x13\x89\x61\x2e\x2f\x76\xc1\x10\x06\xd3\xdc\xc3\xa8\xc9\xc0\x16\x52\xb4\xc0\x1d\xec\xd0\xd2\x94\x97\xe6\xe9\x29\x98\x9b\x2b\x87\x07\x93\x69\xcd\x7e\xd9\x53\xdb\x65\x1e\x85\xcf\x0d\x73\x5f\x6b\x21\x2a\x0f\xa9\x31\x62\xde\xc2\x33\x38\x86\x19\xcb\x52\x39\x16\x0e\x02\xd8\x50\xa8\xa8\x87\x84\xf7\x95\xd3\x74\x95\x71\x4a\x9d\x9c\x61\x77\x41\x3c\x7c\xef\x92\x15\x41\x5e\x3c\x24\x18\xed\x0e\x55\x19\xad\xf9\x9e\x79\xb1\xae\x2a\x57\x61\x72\x5b\xcf\xa6\x36\xfc\xad\x49\x0c\x01\xaf\x66\x42\x85\xc6\x63\x4e\x00\xf5\x44\xa8\xdf\x08\xfc\xcb\x90\xc7\x9c\x7d\x7c\xd6\xf0\x37\xfb\xf8\x6c\x43\x4b\x52\x3a\xba\xc0\xa5\x92\xb2\x71\xc5\xaa\xa6\x79\x66\x17\x4c\xe8\x32\x62\x6a\x09\xc1\x5d\x2d\x26\x77\x7e\xe8\x81\x75\x7a\xe9\x46\x05\xab\x38\xaa\xca\x2f\x6f\x8e\xf4\x0e\x4f\x7d\xc9\x51\x71\x6f\x7e\xf5\x86\x6b\x55\x1e\xfa\x85\x87\x6e\x67\xfb\xb7\xf6\x21\x1d\x35\xe7\xee\xbe\xc9\xe0\x41\x3c\xf8\x20\x0e\x4f\x3e\xa6\xcc\x6b\xb0\xb3\x87\x6e\x44\xdd\x46\xc6\x1a\x74\x02\x26\x81\x60\x9a\x5b\x64\x1e\x99\xfb\xde\x22\x8c\xd2\xcc\x9f\xe1\xe6\x22\xcd\xe6\x26\x7f\x5e\x72\x7d\xfb\xaf\x8f\x94\xc1\x25\xc0\x63\x01\xaa\xff\xee\xd5\xb5\x0d\x2c\x41\xcd\xa3\x86\x74\x75\x0c\x33\x34\x46\x83\x03\x51\x61\xff\x35\xeb\x38\xb7\xec\x82\x07\x51\x42\xa0\xfb\x20\xfb\x47\x07\xce\xd6\x92\x04\x6e\x91\x18\x94\xab\xca\x50\x78\x1e\x3d\x86\xf2\x86\xab\x18\xba\xb0\x30\xf2\x55\xed\x2c\x69\x9a\x05\x7a\x92\xa3\xe0\xc6\xa0\x66\x6d\xd1\xd3\x2a\x9f\xc4\x2a\xd6\xe2\x14\x2e\xa3\xee\xb9\x97\xe5\x89\x72\x5d\x14\xfb\x96\x70\x01\x8e\x29\x79\x0c\x49\x0a\xe0\xae\x4f\xed\x0f\x10\xbc\x28\x95\x49\xf3\x62\x98\xbd\x60\x6f\x63\x18\x8e\x4f\x0a\x86\xd2\x66\xb0\xef\xd1\xbb\x73\x6c\x17\xb0\xa7\x9d\x27\x8b\x7a\xee\xc0\xcd\x23\x9f\xc9\x5f\x9e\x54\x97\x80\x28\x5d\x42\x28\x7b\xfe\x88\x9a\x10\xb0\x3b\x84\x20\xdc\x85\xd1\x27\xba\xa2\xc8\x75\x55\x45\x1f\x31\xe0\x73\xa6\x44\x45\x0b\xbe\xf9\x32\xfd\x09\x7b\x01\x9b\x52\x60\x06\xff\xca\xc9\xa8\xe8\x41\xdf\x1c\x19\x52\xcc\xf4\xa0\x64\x8d\x16\x03\x45\xb3\x13\xb8\xfc\xc7\x50\x91\x65\x86\x3d\xda\xcd\x93\x2b\x19\x22\x4e\xf8\x40\x68\x5e\x53\x78\x1c\x88\x2f\x29\x16\xc8\xc2\x29\x1b\xcc\x27\x21\x47\x8d\x0a\x21\x85\xd7\xd6\x11\x06\x22\x04\x7d\x78\x1e\x64\x72\xde\x47\x0a\xa8\xc7\x14\xd3\x7c\xa1\xf1\xc7\xc0\x40\x7a\xf7\xb1\xbd\xf3\x1f\xb6\x65\xe4\xe1\xe8\x29\xdb\x66\x58\x04\xc4\xd6\xd9\xe8\x8d\x96\x67\x27\x52\x5d\x6b\x44\xd7\x93\xbf\xdd\x4e\x6e\xa6\xfa\x6b\xc1\xed\x02\x04\xda\x37\x57\x97\x17\x37\x06\xe7\xba\x96\x12\xf6\xd4\x2f\xcf\x26\x37\xa6\x09\x6b\xbb\x00\x81\xf6\xed\x74\xa2\x37\x1b\xd8\x7c\x6d\x4f\x97\x7b\xb0\x85\x9e\x73\xb8\xc9\x12\x03\x34\x16\x53\x3d\x04\xd8\x44\x93\xe3\xbf\xc8\x45\x7e\x15\x9b\xe2\x63\x3b\x50\x70\x44\xa7\x14\xac\xe7\x91\xf8\x3d\x5d\xc7\xd0\xdb\x8a\x9f\xc5\x34\x2a\x36\x0e\x5c\x6c\x11\xd7\xd2\x92\x49\x8c\x95\x68\xe6\xe3\xf0\xc2\x85\xc1\xcf\xfe\x62\x29\xc6\xb0\xac\x76\x25\xef\x60\xd2\xf4\xc0\xaa\x94\xaf\xb5\xad\x4c\x11\xf1\xbc\x11\xe7\x56\xba\xc9\x16\x8e\x66\x97\xc1\x7c\x5b\xc5\x2b\xa6\x45\x70\xc8\xe2\x8f\x5b\xaf\xfe\x02\xe9\xbc\xbe\xd3\x1f\x63\x9e\x12\x0a\xb5\xbd\x62\xb1\x05\xe4\x5b\x16\xd5\xdb\x17\x07\x08\xf2\x38\x88\xf2\x39\x7b\x0b\xfb\xea\x64\xdd\xf9\xb5\x07\x21\x4d\x90\x67\xc6\xfd\x07\xd4\xf9\x56\x69\x69\x66\xe2\x3c\x20\xaf\x05\x55\xd0\x1e\x03\x66\x5a\x75\x0a\xae\x5c\x9c\x11\x1f\x78\xb0\x2e\x8e\x14\x5e\x15\xbd\x4d\x8c\xda\xd9\xd2\x0f\xc4\x5e\xe4\xee\x17\x71\x28\x4b\x5b\x1a\x03\x83\xe6\xdf\xc1\x89\xa4\xd8\x45\xae\x3c\x8c\xd5\xa4\x4e\xf8\x72\x1f\xbc\x61\x92\x6f\x92\xf3\x49\xe1\x10\xda\x4d\x81\x8b\x2b\x6d\x9d\x8c\x40\x65\x90\xad\xbb\x0a\x9d\xbf\x8a\x89\x09\x49\x97\x54\x5e\x44\x30\xc0\xed\x06\xd1\x55\x8f\x8e\x24\x4f\x54\xc4\x63\x45\x30\x34\x1e\x9e\x6c\xab\x91\x71\x60\xc0\xee\x9a\x03\xab\x54\xce\x8b\x2e\xd0\x09\xc5\xa2\x26\x19\x4d\xd8\x30\x81\xee\x84\xa0\x2b\xee\xc0\x17\x8e\x0f\xe4\x6e\xd1\x55\x8d\x86\x63\xd3\xa2\x1f\x26\xd7\x0f\x5e\x52\x9f\x58\x37\xfd\x40\x77\x98\xd6\xfe\x6b\x80\x44\x6f\xbf\xa4\x91\x4e\x4d\x22\xc4\x90\x88\xbf\x17\x09\xab\x25\x9b\x01\xb2\x73\x5b\x35\xde\x53\xe1\xd9\x7b\xcb\x3d\x51\x03\xed\xa2\x1d\x72\xb9\xcd\xc3\xcc\x77\x43\xf5\x71\xbb\x94\xf9\x4f\x03\xa2\x6f\x1b\x39\x48\xe4\xca\x1f\x6f\x99\xbc\xb6\x50\xad\x5b\x7c\xf5\x45\xe9\xfc\xac\xb7\x63\x1d\xe5\xdd\x39\xfb\x5d\x39\x56\x2d\x6a\x38\x70\x37\xfa\x02\xea\x8a\x91\xf9\x74\x6d\x7d\x5a\x4b\x39\x70\x31\xc5\x0a\xd7\x94\xa2\x71\x51\x8a\xeb\xe6\x30\x2d\xcf\x7b\xbb\x9e\x3b\xf6\x0d\x80\xde\x36\x55\x44\x43\x79\x38\x7e\x53\xfc\xde\x44\xba\xf1\xc2\x4a\xee\x41\x88\xd3\x65\xda\x6a\xca\xcd\xe6\x76\xfa\x88\xfd\xa8\xd2\xa5\x68\xce\x58\xaa\x05\x2d\x59\x77\x4b\x33\x0c\x75\x77\xa9\xb6\xb4\x14\x9b\x3a\x98\x3d\xec\xa6\x9f\x1e\x92\x43\xfb\x15\x6c\x40\x91\x55\xe3\x54\x61\xad\x3d\x6c\x43\xea\xdc\x4a\xbb\x66\x4c\x68\x8b\x38\x32\x5b\x99\xb5\x94\xa0\x53\x67\x23\x86\x11\xf9\x8b\x8c\x54\xb8\xe3\xfb\x05\xa2\x7d\xe1\x55\x8d\x95\xbe\xc4\x9d\x14\x09\xaf\xac\x6c\xb0\x5e\x68\x2f\x44\xe0\x01\x5e\x0f\x16\xdb\x82\xf6\x62\x44\x3e\xad\x2b\xe6\x2e\xe7\x81\x7d\x30\xa5\xb5\x41\x92\x59\xb5\x75\x4b\x31\x2a\x1f\x90\xbb\x0c\xd0\xfa\x7b\x3d\xd3\xa9\xf2\xb4\x28\xfd\xa4\x1a\x2d\x43\x58\x70\x76\xc3\x86\x20\x67\x96\xf8\x5c\xaa\x86\xfc\x70\xee\x3f\xf8\xf3\xdc\x0b\x4a\x23\x15\x30\x73\x96\x57\x38\x32\xeb\xbd\x41\x10\x47\x3a\x2e\x48\x31\x89\x75\x1c\x80\x8b\xf9\x92\xb3\xcb\x71\x99\x84\xa4\xf4\x3c\x28\x73\xb1\x81\x63\xa8\xc1\x94\x6a\x18\xa2\xfd\x65\x58\xf8\x0f\x1c\xbb\xea\xf3\x94\x2d\x72\x7f\x7e\xc8\xd8\x18\x02\x19\xa2\xa5\xe7\x92\x7b\x81\x00\x83\x11\xbd\xb0\xf5\xc0\x46\x2d\xce\x2b\x3f\x0b\x0c\x12\x9e\xa2\x11\x51\xc2\xc1\xf2\xdc\x34\x9c\xf7\x8e\x60\xa8\xd6\x11\x73\x4d\x1b\xb6\x0d\x24\x30\x23\x0d\xd3\x16\xfd\xf9\x0d\x25\xb9\xda\x82\x59\xa0\x29\xcf\xd2\x83\xb4\xc0\x70\x7c\x07\x6b\x09\x58\x53\x6c\xf0\xe0\x22\x34\x50\x2b\x0c\xc2\x93\xde\x02\xa5\x09\x6a\x6d\x0e\x4d\xeb\x93\x28\xbc\xe4\xde\x4c\x3a\xa3\x8c\xa4\x91\xb5\x2c\xdb\x2d\xea\x20\xc4\xe9\x32\x6d\x9a\xcd\x62\x26\x06\x77\x4f\xdb\xc1\xe8\x0e\x23\x49\x0f\xdf\xda\xc1\xe8\x52\x25\xc1\xc3\x4b\xf9\xc5\xe1\x8e\x0c\x3e\x38\x84\x97\x51\x9f\x3b\x25\xea\x03\x06\xa1\xda\x4f\x0a\x41\xf7\xad\x64\xf3\x56\x70\x25\x6b\x34\x7a\x53\x74\x41\xef\xd6\x83\x5d\x25\xdb\x05\xb7\xa1\xa4\xee\xee\xed\x43\x4a\xdd\x97\x9b\xbd\xd4\xc5\x7d\xc2\xfb\x28\xcd\x94\x22\x4f\xfc\x3a\xc1\x68\xbd\x75\x73\x41\xb3\x99\xa1\x2b\x99\xe1\x71\x76\x9b\x44\xf6\x21\x45\xc7\x2b\x6f\x9e\x2c\x4d\x90\x2d\x6b\xd1\x50\x74\xb0\x73\xa2\x9b\x07\x26\xb2\xcd\xb7\x04\xaa\x72\xa8\x4f\x6a\x9d\xfe\x43\xd1\xe9\xdf\x61\x28\x4f\x83\x51\x28\xa9\xb2\x35\xa6\x9b\xc9\xf1\xed\xf5\xe9\xf4\x07\xf6\xee\xfa\xf2\xf6\x4a\xcb\x5d\x57\x8c\xc0\xe7\xfa\xc3\xe9\xf1\xa4\x23\x2c\x97\xa6\x14\x95\x8b\xde\x46\x75\xbb\x80\x3d\xed\xab\x71\x37\xfe\xb6\x32\x54\x0e\x1d\xa1\xc5\x34\xa5\x88\x5c\x4e\x26\x1f\x26\x67\x97\x57\x86\x00\x63\xda\x72\x44\x4e\x5d\x81\xcc\x34\xa5\x68\x5c\x0c\x5f\x7c\xe3\xb5\x3d\xdd\x99\x17\xec\x59\xeb\xb7\x0f\x96\xf6\xf2\x17\x51\x3a\xbb\x66\x26\x7d\x41\x3a\x2f\xb9\xf4\x0b\x01\x8a\x18\xa1\x9f\xf0\x89\xfd\xe2\xd7\x83\xd2\x90\x68\xc5\x33\x4c\x7c\xfa\x69\xd5\x99\x70\xa8\x27\x35\x02\x6a\xcc\x33\x52\xd8\x28\xbe\x10\xe7\x67\x3c\x2f\x8b\x3d\x18\x44\x95\x02\x37\xd1\xcf\x7e\xfc\x8d\xe9\x3b\x53\x09\x90\xb1\xc9\x6e\xee\x0e\xcd\xba\x3e\x01\x19\xe6\xd3\xc2\xe6\x3f\x28\x8e\x26\x90\x0f\xf4\x88\x7d\xff\xea\xbb\x23\x36\x96\x39\x50\xfc\x94\xcd\x79\xe8\x83\x27\x21\x26\x60\x99\x47\xd8\xc3\x30\xb8\x69\x9c\xf8\x0f\x7e\xc0\x95\xf3\x1a\xff\x55\x7c\x5d\xb4\x87\xf7\xd3\xee\xe8\x18\xfb\x66\x3f\x44\xbb\x88\xde\x3a\x49\x92\x1b\x7c\x74\x2c\x9e\x7c\xf9\x72\x20\xcb\x35\xde\x8f\x63\x7f\x02\x0f\x8b\x12\xab\x5a\xde\x2d\xf1\xa2\x61\x2d\xef\xd2\x3c\xbb\x44\x41\x6a\x25\x50\xd0\xa1\x5a\x7b\x8a\x6a\x6d\x41\xf8\xcc\xbb\xe3\x81\x1c\xd6\x85\x0f\x28\x21\x02\xe2\x20\x34\xc9\x12\xbc\x29\xaf\xe4\x5b\x4f\x10\xdd\x70\xed\x09\x90\xb1\x15\xf7\x36\x45\x64\x4a\xb4\x0b\x2c\xc2\x39\x77\x02\xb3\xac\x4d\x46\x55\xdc\x2c\x1d\x6d\xdd\xe1\x77\x42\xb2\xa9\x4a\xc6\x53\xfa\x62\x34\x1b\xfe\x63\x38\x3d\xbd\x3a\x62\xa7\x18\xa0\x19\x43\xeb\x64\xc9\x1a\x8f\xed\x91\x72\xe6\xf0\xd8\xc3\xeb\x2d\x8f\x8e\x03\x2c\x8e\x79\xa6\x20\x67\x11\x9c\xe9\x47\x31\xaa\x9b\xba\xbb\xc2\x13\x20\x71\x6f\xad\x32\xeb\xae\xbd\x58\x2d\x55\xc8\xfc\xb7\xec\x3e\xa8\xe3\xcd\x9e\x00\x15\x5b\xbd\x57\xda\x4f\xd3\x76\x15\xa9\x58\xf4\x87\xf4\xed\x02\x64\xda\xa6\xfd\xc6\x56\x09\x02\xf5\x6c\xd3\x23\x41\xe6\x6e\x32\xdf\xad\xdb\x56\x23\xe1\x10\xf5\x1f\x7c\xfe\x58\x85\x5a\xf2\xc1\x71\xc4\x88\xa1\xab\x8a\x1b\xff\x65\x95\x29\xa2\x91\xb7\xc8\x0e\x4a\x77\x6d\x0a\x2a\x15\x57\xa0\xee\xb2\x82\xe6\x44\x13\xf5\xb3\xe3\x0c\x47\x26\x40\xc6\xd6\xe8\x03\x10\x04\xa3\x74\xb5\xc0\xf8\xf3\xea\xc9\x07\x2f\xc8\xb9\x0c\x89\xb1\x9d\x18\x6c\x97\x87\xd8\xaf\x13\x25\xb9\x95\xff\xd9\xe6\x59\x9e\x45\x3a\x1b\x32\x3b\xb5\xf8\xb0\xc4\xc9\x32\x0d\x74\x59\xd3\x97\x1c\x19\xf7\x1e\xae\x69\x76\xc9\x6a\x10\x79\x07\xbe\xa0\xd9\x25\x2b\x7b\x79\x97\xd1\x63\x15\x3d\xa5\x99\x17\x46\x8f\xdc\xaa\x12\x11\x43\x10\x6c\x64\x55\xb1\x59\x92\xed\x6b\xd2\xd0\x2c\x79\xd0\xc1\xb5\x59\x82\x46\x1d\x6d\x67\xc2\xfb\xc8\xcc\x61\xbb\x14\x9d\x0b\x1c\xa5\x52\x76\xb7\x46\xef\xad\x6e\x76\x9a\xe2\x34\xbe\xe8\x53\x3f\xe7\x99\xe7\x07\xea\x53\x40\xf0\xec\xcc\x9f\xe5\x81\x97\x6c\x1d\x1e\xcc\xa0\x5c\x69\xd1\x10\xcb\xb5\xa0\xfb\x8b\xb4\x95\xa3\x71\x4a\xf8\x0c\xc3\xc8\x8b\x65\x56\x26\x0d\x35\x33\x34\x14\xa7\xf1\xdd\xf4\x35\xb2\x10\xb6\xa3\x0a\x91\xbf\xb4\x11\xea\x66\xda\x52\xce\x85\x93\xed\x17\xd5\x97\x76\xe1\x4a\x18\x6d\xc6\x0a\x24\xde\xb0\x4c\x94\x16\x9a\x33\x2f\xe0\x45\x2c\xf4\x7d\xed\x36\x9f\x02\x03\xb9\x85\xb6\x2d\x39\x87\xd9\xee\x5a\x2e\xf5\x4f\x83\xc2\xbe\x95\xcc\x27\x3d\xd7\x93\x1c\x02\x1e\x28\x76\x5a\x3f\x62\x2e\x98\x0d\xca\x87\xd6\x42\x44\x1e\xbd\xd2\x2a\xb9\x90\x20\xe2\xdb\xec\x68\x94\xcf\x64\x59\x97\x86\xa8\xe3\x7b\xb8\x7d\x09\x88\x5d\xba\xc6\x5d\x05\x04\x37\x57\xa9\x26\x64\x38\x36\x41\xfc\x10\x74\xa1\xf8\x0a\xd4\x76\x65\x36\xed\x83\x32\x9e\xa0\x2c\x0e\x17\x39\x2a\x80\x1b\xa4\xc3\x51\x13\xe1\x63\x94\x60\x84\x96\x32\xf0\xa7\x61\x7e\xe8\xc4\xa1\x03\xd2\xe4\x0f\xec\x93\x28\xca\xea\x31\x5b\xb7\x53\xdb\x94\x99\x6b\x74\x19\xc0\x8d\xb1\x72\x6f\x32\x4f\xe6\x6c\x80\xa0\xcc\x2f\x30\xf3\x89\xf8\x0d\x41\xa8\xe1\xca\x6f\x04\xce\x9d\xaa\x59\x64\x5a\xc7\x03\x01\xaa\x88\x66\x07\xd7\x83\x31\x4f\x3c\x79\x76\x55\xaf\x65\x2f\x16\xaf\xc4\x21\x0f\x73\xe2\xeb\x63\xe8\xed\x95\xb7\x7d\x2f\x52\x87\x35\x27\xab\x22\x5a\x65\x0a\xa6\x6e\x6f\xa1\xf6\x42\x54\x1e\x62\xf5\x82\x3c\x87\x51\x9e\x7d\x0c\xd5\x0d\x42\x4b\xa6\x59\xe8\xd3\xab\x28\x91\x9b\xbb\x64\xd5\x31\xbd\x0d\x47\x99\x28\x4d\x1e\x56\x41\xa5\x07\x16\x67\x18\xd2\x34\x79\xf6\x6d\x3e\xb3\x0f\x9e\xb4\x16\xc8\xe3\xe2\x92\xfd\x40\xde\x4e\x45\x2c\xcc\x83\x00\xfe\x4d\xb8\x7a\x50\xc4\xcf\x94\xbe\x73\xaa\xb8\x59\xc8\x01\xc8\x52\xe4\x30\x64\x4b\xd9\x78\x4b\xa2\x9a\xa7\xf2\x46\x08\x48\x98\x6e\x8f\x0c\x45\x09\xfc\xa2\xb8\x7b\x42\x6a\x29\x43\xe2\x10\xef\xbd\xc7\xef\x81\xa7\x7d\x0b\xac\x53\xc8\x4e\x72\x92\x88\x0d\x21\xbb\x35\xdd\x23\x69\x0b\x52\x78\x41\xd2\x66\x65\xeb\x30\x37\xac\x70\xda\x82\xd6\xbc\x60\xaa\x34\x44\x54\xdd\x7c\x4d\xa2\xcb\x8e\x55\x5c\x6b\xcc\x78\x8c\x79\x35\xc5\x5e\x69\x2d\x4d\x75\x54\x8c\xeb\x42\xfd\x5c\xdb\x45\xa5\x62\x3e\xcf\xfc\x00\x36\x57\x6b\xbc\x2a\x57\xb9\x04\x4d\x0e\x57\xbb\x66\x47\x93\xdb\x94\x21\xfe\x7e\x33\xa3\x3d\x21\xf3\xfc\xb0\xc4\x69\x32\x4d\x21\x09\xda\x67\xf4\x26\x4a\x79\x15\xb1\x1c\x1e\xf1\xfb\x7b\xb1\x25\xae\x67\xed\xbf\x0d\xef\xfc\x70\xde\x84\x91\xe3\xb3\xba\x6f\xdf\x81\x2a\xfd\x46\x96\xad\x8a\x26\x1c\x8a\x1e\xc8\x38\xf5\x4b\x1e\xaa\x72\xca\xdd\x7d\x83\x6c\x3c\xf7\x54\x08\x56\x98\x28\xd0\xdf\x4c\x45\x7f\x6e\xea\xae\xcd\xad\xfa\x2f\x24\x1e\xed\xbb\x16\xe9\xbe\xc7\xb1\xdf\xe4\x0c\xa7\x5f\x3f\xcc\x65\x58\x4c\xe9\x84\x8d\xf7\x11\x1c\xb3\x71\x14\xd7\xbf\xe6\x56\x1d\x8c\xb8\x9b\x4c\xc7\x6f\x9b\x5c\xb9\xd8\x27\x0a\x16\x98\x33\xa6\x71\x85\xdb\xf2\xbd\xed\x04\x1b\x86\x83\xa3\x74\xbb\x96\x6d\xef\x92\x55\xf3\xd8\x2d\x76\xfb\x32\x4a\x91\x66\x4c\x88\xe3\x69\x77\x18\xb4\x01\x29\xdb\x4b\xe3\x89\x05\x05\x2c\x35\x6a\x57\x0d\x62\x57\x60\x75\xf3\x46\xaa\x4b\x40\x54\xb3\x21\xa9\xef\x9c\x4c\x8b\xbf\x4d\x1d\x3a\x82\xb6\x8d\x9a\x0d\x8a\xae\x7a\xf6\x48\x30\x21\x66\x31\xad\xb6\x6c\x09\x2a\xbb\x49\x2f\xab\xb9\x6d\x8b\x49\x9b\xff\x8a\xb3\xb6\xbc\xb9\xc9\x7c\x99\xa1\x16\xe6\xe2\xf2\x2e\xa7\x45\x2b\x54\x4e\xda\x98\xb6\x0f\xa9\xe8\xa5\xfd\x9a\xb0\xd9\xb7\xa8\x20\x80\xca\xa1\xdf\x8b\x3c\x52\x13\xb4\xc5\x86\x09\xa2\x55\x53\x29\x96\xcb\x39\x97\x4e\xee\x2a\xb6\x71\xa5\xcb\x33\xf5\x85\x5d\xf1\x21\x49\x1a\x25\x40\x53\xd0\x7a\x5c\xfa\x33\xd9\x7a\xe5\x64\x21\x33\x38\x62\xf6\x55\xd1\x65\xe7\x79\xd2\x0c\xcb\xe6\xe5\x59\x34\x82\x94\xac\x33\xa3\x5a\xa3\x9c\x9e\x18\x86\x11\x82\x0f\xe5\xad\x22\x88\x89\x86\x61\x02\x2a\x6e\x74\x25\xe3\x74\x29\xb3\x5c\xd7\x93\xdb\x55\xe9\xee\xe5\x24\x03\xf1\x08\x92\x85\x61\xc7\xe4\x42\x83\xd4\xc4\x1d\xd4\x65\xee\x0e\x43\x28\x43\x27\x1a\xbd\x10\x8a\x41\xeb\xda\x8a\xd8\x99\xcb\xd8\xf8\x62\x90\x6a\x03\xa4\x75\xb7\x37\x4e\x01\x61\x24\x5e\x63\xaf\x81\xd4\x79\x77\x9c\x87\x32\x7f\xa1\x9c\x32\x04\x11\xd0\xfd\x39\x28\xa8\xad\xe4\xb6\xff\x36\x4e\x72\x5b\xb4\x33\x45\x9c\x8d\x28\xb3\x0d\x46\xb0\x6b\x38\x54\xda\x44\x79\xb6\xc4\xb1\xbe\x8c\xd2\x0c\xae\x04\xe5\xdc\x39\x0a\xd9\xfb\xcb\x9b\xe9\xc5\xf8\x7c\x02\xab\x36\x6c\x34\x46\x23\x21\xf0\x3c\x5a\x8d\x24\x71\xb1\xaf\x58\xf0\x90\x27\xd5\x84\x2c\x9f\x97\xdb\xff\x18\xf3\x2c\x99\x13\x83\x7d\xd5\x58\x29\x03\x47\xcc\x8e\x32\xc7\x6d\xb9\xb8\x55\xb9\x86\x71\x7d\x02\xb1\xe2\xd8\xd8\x12\x74\x1a\x0e\x08\xb3\x08\xd3\x7e\xaf\x55\x8e\xa0\x54\xe6\x1f\xc7\x50\x2e\x65\xf6\xcc\x6c\x1d\xf3\x22\x27\x2f\x34\xb3\x0d\xea\x9e\x74\x89\x92\x40\x4b\x84\xca\x39\x28\x96\x49\xc2\x6b\xb9\x0d\x58\x24\x0f\x9f\x10\x10\xef\x36\x09\xc4\x2e\xf8\x48\x1f\xd3\xce\x91\xa0\xcb\xb8\x04\x9f\x2f\x74\xe9\xc7\xe0\x37\x4b\xd1\x6c\x73\x31\xa3\x25\x51\x9a\x96\xc3\x5d\x74\xf6\x13\xc8\xbe\x82\x5f\x3f\x93\x3a\x9f\xa4\x16\x96\xbf\xca\x17\x23\x33\xe5\xc8\xe3\x36\x16\xc3\x83\x3e\x7c\x81\xda\x89\xba\xe2\x98\x87\x09\x44\xa9\x81\x2d\x85\xe0\x31\x96\x67\x1e\x56\x1c\x7e\xd8\xa3\x17\x2a\x15\x74\x99\xfa\x45\x55\xfc\xbd\x19\x87\xe0\x2f\xa6\x96\xfc\x57\x13\x90\xd0\x2b\x41\x60\xdc\xc9\x17\x93\x17\xac\x51\x5e\x91\x78\xab\xdc\xe7\xa3\xe5\x90\x69\x3c\x39\xd2\xa1\x21\xc5\xe6\x9c\x79\x30\x53\x16\x2a\x18\x79\x0f\x01\x1a\xc2\x43\xa6\x6d\x3c\x69\xaa\x53\xd7\x5a\xeb\xb3\xcb\xec\x8e\x91\xbd\xac\xf2\x2e\x50\xae\xa7\x98\x92\xf0\xfd\x74\x7a\x55\x66\x40\xd1\x43\xb7\xad\x47\x40\x12\xab\xd3\xba\x37\x9f\x8f\xe4\x9e\x7d\x04\xb3\x89\xd2\x9c\x2d\xc4\xae\x5e\x6d\xe8\xe1\xa9\x01\x99\x23\x1d\x7b\xa4\xf2\xae\x5c\xe5\x7e\x52\x7a\x04\xb5\x5f\x51\x21\x89\xa4\xfb\x56\xc8\x65\x16\xf7\x3c\x5e\x24\x9e\x4a\x16\x7e\xfc\x16\x15\x5d\x90\x59\x46\x9c\xee\xc5\x9c\x9f\x01\x91\x73\x3f\x1c\xc7\xbe\x4a\xe6\x7b\xee\xfd\x12\x25\x32\xbc\x49\xf3\xb9\x1f\xb6\x3e\xbf\xf2\xb2\xd9\xd2\x70\xd5\xf4\xd5\xe3\x25\xb4\x7c\xe6\x05\xec\x5c\xcc\x85\x86\x58\xb0\x9b\xaf\xad\x17\x1f\x24\x2e\x4e\x5b\xb9\xcc\x00\xb8\x42\x3a\xec\x05\x3f\x5c\x1c\xb2\xd7\xaf\xbe\xfd\xfe\xfc\x80\xbd\x7e\x27\xfe\xff\xea\x9d\xde\x9a\xc2\x8d\x08\xb1\x01\xb6\xc8\x17\xde\xeb\x60\x75\x81\xee\xd1\x83\x80\xde\xa4\x6a\x2f\x84\x45\x3b\x87\xf9\xea\x0e\xe2\xde\xdd\xab\x45\xac\x03\x9c\xbe\x38\xb1\xed\x2a\x42\x9b\xc6\xb8\xf6\x10\x0c\x35\xed\xd1\x24\xd0\xb4\x96\x93\xad\xa9\xac\x35\xc7\xdb\xf1\xb8\xf2\xdd\x5a\xf9\x29\xb8\x1a\xc8\xf8\xc8\xb3\x28\xbc\xf7\x17\xe6\x84\xd6\xc4\xda\xf6\xa8\x6e\xc6\xef\x0c\x59\x23\x37\x5f\x13\xe8\x4e\xae\x3b\xe2\xda\xb4\x15\x21\xd1\xd7\xc7\x67\xd9\x78\x6b\x4f\x35\x44\xcd\x3a\xcc\xb6\x32\x06\x42\x9b\xea\x53\xec\xdd\xe4\xcd\xca\x24\x49\x0c\xd3\x7e\x2f\x5a\x2e\x88\x73\x38\x27\x66\x98\x63\x4e\xbf\x7d\xeb\x2c\xef\xc0\x59\x6e\x58\x0f\xd4\x89\xf5\x79\x71\x4e\x7e\x6e\xed\x5e\xdc\x87\x94\x03\xde\xe8\x0e\xac\x4b\x0b\xbd\x24\x9e\xd2\x61\x1f\xc5\x4b\x8d\x26\xfa\x55\x96\xbf\xac\xbe\x71\x0f\x9a\x14\x09\x64\x9e\x5d\x4f\x99\xf7\xab\xbc\x5f\xe6\xbb\x6b\xcb\x5a\x64\x14\x55\xa8\xfc\x56\xbf\x43\xe4\xd2\xdb\xca\x7c\xb7\xcc\x08\x32\xe3\x1d\xb3\xb7\xe1\x18\x66\xfb\x01\x28\x95\x87\xc1\x24\x6f\xc3\x33\xb9\x5a\xd6\x5f\xcb\xdb\xac\x36\x6b\x0c\x37\xfc\xbd\x18\xed\x45\xd6\x5a\xcc\xfb\xdd\xca\x6a\x66\xe4\x22\xeb\x86\xb7\x92\x4d\xae\x46\x62\x6d\x22\xaa\x56\xab\x30\x39\xf8\xb4\x1a\xe4\x9d\xd9\xa9\x7d\x0d\x90\x1c\xda\x2f\xed\x0e\xcd\x85\xf0\x95\xa9\xe5\xc6\x38\x42\x3c\x79\x77\x36\x82\x9d\xf3\xdb\x97\xe4\xe5\xa8\xda\x93\xe4\xdd\xfc\x76\x28\xb9\x78\x21\x7a\xa6\x17\xfa\xbf\x79\x32\x88\xc9\x4b\x28\xda\x48\xbb\xb8\x93\x16\x70\xe4\x4b\x68\x09\xfe\x6b\xcc\x67\xa0\x33\x95\x0a\x6c\x50\x19\x46\x33\x74\x2b\x99\x1f\xe1\x1e\x18\x23\x66\x19\x85\xa2\x93\x20\xe0\xc3\x69\x32\x08\x1a\x17\xd6\xe0\x92\xa5\xfc\x5f\xa4\xd2\x86\x79\xc9\x22\x07\x77\x06\x2d\xca\xab\xb3\xdb\x77\xa7\x17\x23\xbc\xe8\x19\x31\x77\xb2\xb6\x87\xf9\x92\x03\x7c\x6d\xc5\xa0\xbc\xa2\xbf\xb0\xd8\x5e\xd1\xaa\x13\x1a\xf4\x73\x18\x3d\x86\x18\x31\xc9\xc0\xbd\xad\x90\x13\x0f\x83\x37\x8a\xae\x18\x81\x4f\x10\x81\x8b\x4e\xdd\xda\x40\x1a\x66\xe1\xbe\x5e\x9a\x2e\x99\xb6\x14\xdb\xd5\x5d\x3e\x74\xda\x12\x03\xc6\xfc\x6d\x3b\x6b\xd8\x37\x81\x34\xcf\xb2\x49\x7e\x69\x2a\x4a\xe7\x67\x19\xbd\xa1\xb3\xbc\x0b\x67\x95\xc9\xbc\x4c\x1e\x63\xc3\x5d\x5f\xc7\x1d\x41\x47\xe2\xcf\xce\xf2\xee\x9c\x3b\x13\x7f\x5a\xd4\x20\x73\x0f\x6b\x46\xe3\x5c\xf9\xf5\xe1\xa1\xaf\x13\x85\x45\x4d\x2a\x1a\x58\xf5\x46\x45\xdc\xbe\xed\x3d\x35\x9e\xf3\x1f\x20\xda\x10\x8b\x3d\x3f\x31\x4c\x02\x3d\xc9\xd1\x70\x0f\xe3\xbc\x61\x79\x42\xdf\x39\x43\xba\xec\x8d\x6c\x9c\x84\x74\x9e\x74\x02\x74\x6c\xad\xfa\x0b\xa7\x06\xa7\x53\xa2\xa3\xb5\xd8\x40\xda\x6f\x4b\x07\x21\xea\x22\xc3\xe6\xac\x4c\x3e\x69\xf6\x20\xe5\x8e\xf7\x6e\x33\xb8\xa9\x53\x2f\x71\xa3\xe6\x8e\xba\x9e\xfb\xae\x79\xec\xae\x18\x12\x46\x62\x4f\xb2\x0e\x72\xb4\x68\x19\x9d\xdb\xde\x81\x16\x1d\x71\x23\xb6\xec\x93\x28\x62\x9e\x0e\x09\xa1\xb5\x82\xc8\x2b\x95\x45\x70\x59\x26\x93\x93\xa2\x07\xe8\x95\x97\x99\x2e\xf0\x49\x75\x1d\x10\xb9\x2f\x57\x64\x0a\x0e\xe8\xea\x6b\xba\x1d\x1a\x6d\x0d\x37\xee\xff\xe9\xc7\x6f\x45\x9b\xbf\x59\x8b\x53\x16\x84\xd3\x16\x8f\xe0\xf7\x31\x5c\x97\x83\x02\xc3\x37\xf9\x98\xf5\xa0\x64\x8f\xd6\xe0\x95\xea\xe6\x88\x5a\x78\x02\xc9\x36\x44\xcb\x19\x0c\x4a\x0a\xfa\x29\x9e\x49\x5f\x20\xe5\x5d\x08\x23\x09\x83\xef\x98\xef\x20\x7a\x13\x24\x61\xf7\x58\x14\xf2\x11\x18\x3b\x8b\x8d\x6c\x9a\x3e\x46\x09\x1a\xb6\x04\xd1\xc2\x37\x1c\xa3\xac\x2b\x52\xb0\xe0\x92\x27\x5d\x59\xe4\xfc\x61\x7f\x2b\x49\xaa\x4c\xc2\x64\xe1\x62\xac\x2b\x46\xe2\x63\x26\xef\x4a\x15\x56\x2d\x23\xe1\x66\x01\x02\x6d\x18\xa7\xcd\x38\x34\xe5\x0c\x6b\x70\x4e\xb1\xae\x47\x44\x52\x9a\x7d\x63\xca\x27\xbc\x88\xee\xc0\x60\xac\x41\xe4\x2e\x03\xc1\xfc\x8e\xf1\x09\xac\x56\x03\xbb\x5a\xd6\x28\x3e\x4c\xae\x6f\x4e\x2f\x2f\xf4\x5d\x68\xbb\x80\x3d\xed\xc2\x87\xf1\xc2\xd4\x95\x34\xa5\xec\xb9\xf0\x04\x22\x10\x5d\xa9\x89\x44\xcf\x47\x57\x8e\xc2\xc9\x98\x9b\x78\xeb\xbd\x35\xe5\xbf\x8f\xaf\x2f\x4e\x2f\xde\x1d\x7d\x0c\xc5\x33\x39\x1d\xc0\x67\xc6\x09\xbb\x9c\x21\xc1\xfe\xb6\x54\x26\x07\x7e\xc8\x95\x89\x3b\xd8\x38\x2f\xfd\xc5\x32\x58\x83\xa1\xfb\x4c\xd4\xf1\x16\x7c\x8e\xa4\x7e\x68\x10\x58\x79\x6b\x76\xc7\xc5\x92\x20\xbd\x3b\xc0\x9e\x01\xfc\x9d\xa4\x53\x8b\x7a\x99\xf0\x19\xf8\x5f\xa1\xe2\x1a\xd9\xa7\x4b\x1e\x04\x82\x7e\x0a\x4e\x5d\x10\xfd\x45\x2b\xfe\x7f\x4f\x21\xc8\xdf\x88\xa1\x41\xb1\x8a\xc8\x14\xa1\x41\x74\xbe\x02\x07\xdd\xa5\xf2\x18\xdc\x38\x8b\x25\x3c\x8d\xa3\x70\xc3\x81\x67\x33\x00\xa8\xcc\x20\x21\x56\xc0\x70\x21\xaa\x78\x0f\x9e\x1f\xc0\x98\x90\x46\xe7\x70\xb5\xb0\x65\x0d\x27\x4d\x10\xd1\xf9\x48\x9a\xd3\xcc\x0f\xc0\x72\x14\xd3\x26\x46\x49\xbc\x84\xd0\x50\xd8\x0c\x29\xb4\xc2\x71\x10\xe5\x73\xf6\x16\x32\x0b\x24\xeb\xe7\x29\x13\x5b\x79\xef\xce\x4b\xf9\x21\x66\xc7\x05\xd5\x79\xc0\xe7\x8b\xd2\x85\xb1\xe0\x86\x66\xd3\xd8\xa0\x60\x18\x3f\x97\xd7\x48\x0d\x5a\xf5\x40\x55\xdb\x18\x71\x87\x51\x34\x87\xbc\xad\x4a\x0f\x21\xc4\x82\x97\x65\x7c\x15\x67\x25\x83\x15\x5a\xc2\x4a\xc7\x75\x6f\xd6\xd6\x8e\xff\x51\xde\x56\xd6\xf3\xcf\xa0\xf9\x3d\x98\x48\xcf\xc5\x9a\x90\x44\xeb\x22\x2c\xf1\xc6\x37\xa8\x99\x7f\xab\xb6\xd9\xc2\x2a\x5a\xe2\x1e\x4c\x96\x5b\xb9\x60\x9a\x08\xd1\xb7\x0a\xb3\x70\x08\xba\xc5\x7d\x74\x16\x94\x8d\x3f\x52\xf4\x46\xa0\x33\x18\x49\x9d\x41\xb4\xf5\x52\xa1\x41\x39\x57\x71\x69\xff\x3f\x13\xdf\x2d\xcc\x0d\x3e\x39\x7f\x74\xbd\x3f\xba\xde\xbe\xba\x5e\xef\xf9\xd0\x87\xaf\x9e\xc1\xf6\x10\x83\x4a\x35\x3e\xd9\x7f\x6c\xb4\x4e\x2d\x98\xcc\x1d\x2f\xbe\x00\xf8\xea\x08\xc1\x0b\xe5\xbe\xba\xb0\xdf\xfa\xc0\xf5\x9a\x5e\x20\x18\x42\x0a\x2b\x74\x7e\x4c\xfc\x95\x97\xac\xd1\x1c\x7f\x06\xee\x5e\x95\xdb\x64\x1d\x24\xfa\x29\xc4\x01\xba\xb8\x6c\x7d\x34\xf4\x3c\xf6\xa1\xa1\x56\x18\xdd\x1c\xda\xea\xe1\x35\xbb\x69\x66\x24\x02\x9b\x7d\x19\x61\xc3\x5c\xf1\x5b\x2c\x09\xd1\x72\xf9\xca\x93\x51\x97\xb6\xe5\xc1\x0e\x2e\x78\x80\xef\x26\xa2\x13\xd5\xf0\xef\x43\xc6\xfe\x2e\xd7\xb4\x95\xa0\x09\x8b\xdc\xe7\xa2\xaf\xa9\xe2\x98\xa8\x0b\x6e\x1e\x30\xae\x41\x2e\xef\x03\xe7\x70\x1d\xaa\x0a\x55\x5f\x3f\x4e\x30\x1e\x33\xf3\xe6\x73\x74\x7c\x16\x1f\x69\x03\xc2\x1d\xc7\xa0\xb8\x32\x2c\xe4\x21\xbb\x04\x75\x9c\x69\x0a\x58\xf9\x0b\xf0\x67\x9c\x1f\x14\xcc\x54\x61\x39\x04\xa5\x34\x60\xdc\x6e\x1c\xcb\xf4\xb9\xef\x8f\x6e\xf6\x47\x37\xeb\xd3\xcd\xec\xe7\x39\x2f\x81\x59\xf9\x08\x22\x43\xc8\x18\x3a\xcb\x2c\x8b\x1b\x81\x74\x98\x0c\x39\x20\x4e\xf0\xac\x56\x24\x6d\x94\x49\x55\xf0\x2b\xd5\xbc\xb0\xb7\xd5\xf7\xf9\x3d\xb0\xa4\xcb\x2f\x0d\x72\x20\xa2\x3d\x7c\x39\x88\x99\xd2\x2d\x80\xa9\x8e\x3d\x82\xc4\x17\x9d\x4e\x08\x29\xd6\xeb\x68\x8e\x11\xc7\xde\x9e\x9e\x4d\xb0\x9b\x70\x6f\x8e\x96\x9a\xd9\x5c\x2c\xc5\x7a\x3c\x74\x0a\xd6\xe8\xfe\xd3\x8f\x45\x3b\xcf\x96\xfe\x03\xaf\xf4\x46\x2a\xb6\xb1\x95\x2d\x05\x9d\x80\x35\xb6\x1f\xcf\x6f\xcf\xa6\xa7\x57\xe3\xeb\xe9\xcb\xb7\x97\xd7\xe7\xa3\x93\xf1\x74\xcc\x8e\x2f\x2f\xa6\x93\x8b\x29\x7b\x7f\x7a\x72\x32\xb9\xf8\x49\x8b\x8b\x56\xd9\x1e\xd3\xd5\xf5\xe9\x87\xf1\x74\xc2\x90\x5e\x27\x08\x73\x69\x7b\xae\x6d\x09\x49\x52\x03\xdf\xae\xf2\xf6\x9c\x17\x41\x74\x27\xe6\x3f\xe5\x8f\xfe\x53\xb9\xb3\xfb\xb1\x30\x08\x4b\x0f\x0f\x0f\x7f\x62\x3f\x16\xcf\x8b\x82\x7a\x6c\xfd\x29\x5a\xa3\x97\x5e\x2d\x5a\x28\x9b\xaf\x89\x74\x71\xcd\x94\x73\x37\xc4\xdd\xaf\xa7\xc8\xe8\xb0\x87\x51\x56\x4f\x45\x6e\x0d\x15\x58\x7a\x56\xac\x0a\x74\xd3\xab\x4e\x40\xd6\xf9\x3f\x74\xd0\x0c\x16\x3b\x1d\xc8\xb2\x48\xdf\x10\x1b\x6f\xed\x3f\x40\xa0\xbf\xce\x68\xbc\xa3\x50\x8c\x1e\xb9\x5e\x01\xb7\xf5\x9e\x40\xd9\x2a\x84\x7b\xef\x68\xed\x26\x93\x7b\x37\x83\x7a\xb8\x4a\x9c\x25\x5e\xba\x34\xb5\x4b\x5b\x19\x0a\x07\x43\x8b\x34\x5e\xda\xd3\x04\xc3\x87\x22\xe4\xc4\xbd\x58\xbc\x4d\xe8\x4d\x65\xad\x39\xc2\x2d\x71\xb1\x6b\x9e\xae\x63\xb8\x14\xc6\x98\xd3\xdc\x94\x86\xd5\xae\x92\x35\x86\x3b\xd8\x23\x32\x63\x7b\xb6\x15\xb1\xa7\x8f\xe3\xff\xa8\x32\xce\xd0\xb3\xd1\x97\xb4\xe7\x06\xd7\x9f\xb8\x3b\x87\xab\x51\x43\x2b\xea\x0b\x5a\xf3\x9a\xc5\xb9\x96\x7c\xe3\x9d\x3d\xc5\x8e\x31\xe3\x3e\x5e\xb0\xa6\x69\xfa\xde\x2e\x60\x4d\x7b\x5e\x65\x26\xd5\x92\x6f\x2d\x43\xe0\x80\x19\xa5\x0c\xd4\x37\xde\xdb\x53\xf6\xd3\xae\x09\xbc\xad\x08\x85\xbe\x7e\x0b\xdc\x7c\x49\xa2\xa9\xbf\xb9\xda\x78\x6b\x4f\xd5\xf2\xe6\xb8\xff\x25\xb1\x0c\xfc\x62\x60\xd0\x7c\x4d\xa4\x6b\xb0\x96\xdf\x2e\x40\xa0\xfd\x68\x42\xfc\xe8\x82\x57\xda\xd8\xeb\x3b\xde\xd6\x7b\x02\x65\x0c\xa5\x8a\x56\x11\x57\x09\x28\x66\xb2\x75\x61\x1d\x91\x2e\xa3\x3c\x98\x17\xba\x1d\x08\x82\x6f\x00\xe0\x46\xc6\x1e\xe7\x83\xc9\xdf\x64\xe3\x6d\x9f\x55\xb5\x63\x35\xb7\xa8\x61\xcd\x5d\x56\x64\x59\x8e\xba\x00\xd8\x37\xc3\xa9\x36\x8d\x02\xce\xf8\x6c\x19\xc9\xad\x76\x71\xad\x27\x04\x4c\xd6\x35\x07\x1f\xbb\xec\xd0\xbb\x60\x61\x2f\x9f\xe0\x6d\x34\x92\xd8\x2e\x60\x4f\x3b\xe1\xa8\x66\x8b\x3d\x5f\xff\xb1\xda\x0b\x59\xf3\x80\xe0\x75\x5a\xda\xcd\x97\xd6\x34\xfd\x70\x16\x25\x10\x01\x94\xe5\xa9\xb7\xd0\x37\x8d\xb6\x1c\x81\x93\x32\x15\x55\x71\x54\x02\x7f\xe5\xeb\xc5\xe9\x28\x4d\xe6\x8a\x7b\xb3\x22\x54\xec\x29\x84\x75\x05\x4b\x33\x71\xfc\x48\xa3\xf0\x48\x06\x01\xf0\xb3\x46\x07\x3b\x80\x65\x22\xfb\x94\x56\x19\x29\xa0\x88\x4c\x50\x61\xe8\xe1\xbb\x67\x48\x96\x5d\xbf\xfb\xe8\x13\xaa\xa5\xac\xab\x5f\xb5\xda\x8a\x10\xe8\x3f\x78\x81\x0f\x26\x01\x4b\x71\x7c\xcf\x64\x4e\x2a\x3f\x2c\x0d\x8a\x0c\x5c\x6d\x2b\x92\xb1\x48\x27\x10\x8c\x20\xa1\x16\x98\xe3\xb7\x9f\x6e\xa6\xe3\x77\xa7\x17\xef\x3e\x4d\x4f\xcf\x27\x97\xb7\xd3\x62\xbe\x32\xf6\x91\x7e\xe4\x06\xc3\x7d\x3d\xbd\xbd\x1a\x10\x77\x17\x39\x6b\xdc\x81\x77\xc7\xf5\x8b\xfb\xc6\x5b\x02\x55\x71\xe2\xcd\x63\x79\x6a\xd2\xf7\x5a\x50\xdd\x8a\x29\xae\xad\xa4\xad\x06\x08\x67\x2b\xc3\xaa\xbd\xf5\xde\x5e\x06\xb1\x73\x95\xf1\x0e\x8b\x7b\xff\xc2\x41\x54\xe9\x0e\xf5\x83\x9d\x52\x95\x8e\x07\xa3\xf4\xcd\xc1\x86\x47\x11\x85\x30\x72\xa9\x9f\x99\x62\x92\xd1\x2a\xdb\x63\x8a\x20\xd8\xb4\x9e\xeb\xc6\x6b\x6b\xba\x2b\x73\x84\xb5\xcd\xd7\x44\xba\xfa\x0e\xb9\xf5\xde\x9a\xb2\x71\xb7\xe3\xb8\xd3\x09\xa3\x90\xdd\x79\x69\xa5\xba\xd5\xf7\x38\x53\x51\x0a\x3f\x83\x0c\x8d\x97\x04\x9a\x70\x47\x00\x53\x99\xbc\x03\xe6\x85\x42\x4c\xf4\x40\xe3\x2e\xcb\xbe\xa2\x35\x16\x53\x68\x68\xb7\x70\xdc\xf5\x98\x01\x26\xd2\x2d\x85\x28\x3c\xf4\xdf\xdd\x31\xd0\xb9\x38\x8b\x1a\x86\xed\xc6\x5b\x6b\xaa\xb0\xd9\x2e\xef\x02\xf0\xa6\xc0\x30\xf3\xeb\x8b\xda\xf3\x13\xf5\xf4\x1c\x1a\x2f\x49\x34\x0d\xb0\x7b\x20\x4d\xeb\x81\xd3\xef\xd6\xcd\x1b\x14\xab\x8e\xe4\x48\xc5\x1e\xa5\x8a\xf8\xaf\x07\xb0\x55\xc0\x9e\xb6\x34\xe4\xd7\x5f\xd6\x6c\x17\xb0\xa6\xfd\x4f\x73\x66\xdf\xcd\xd7\xd6\x74\x61\x69\x94\x2e\xc9\x8f\x18\x80\xba\x16\xc3\xe2\xce\x0f\xc1\xc0\xc5\x4f\x99\x58\xe3\x3c\xd3\x06\xc4\x8d\x08\x09\xa3\x0a\x32\xab\xef\xb6\xed\x85\x08\x3c\x8a\x89\x37\x35\x66\x2d\xd4\x96\x73\xe5\xa4\xff\xa6\xfa\x82\xf6\xbc\xcc\x61\x3f\x9d\xc3\x7c\x2a\x53\x45\x3d\xe1\xcd\xf7\xd6\x94\x2d\x63\x41\xf4\x0e\x01\xb1\x75\x51\xbc\xc5\x40\x7f\x91\x6c\x45\xd9\x26\xa6\xc4\x20\xa1\x24\xac\xe3\x38\x0c\x10\xbe\xc1\x3e\x9c\xeb\x10\xe1\x5b\xeb\x6b\x67\x27\x23\xc7\xb5\xb0\x69\x20\xdb\xc5\x65\xab\x18\x95\x4f\x67\x83\x39\xb5\x13\x46\xb8\xd7\x53\xde\x78\x6d\x4f\xd7\x37\x76\x27\xdf\xb1\x0f\x19\x7d\x18\x5d\x1d\x12\x6b\x5e\xd8\x06\x15\x92\xa6\x14\x8d\x4b\x17\x7d\x0d\x65\xe3\x11\x3f\x55\x09\x88\xf5\x94\xb7\x0a\xd8\x83\x46\x9d\x9f\x89\x72\xe3\x35\x81\x6e\x14\xc7\xa6\x7e\xb7\xf9\x9e\x4a\x99\x79\x68\x17\xff\x5a\x9c\x8a\x64\x5e\xa9\x2e\x56\x86\x0a\xd6\xbc\xc1\x2d\x55\xcb\xa7\xf9\xd2\x9e\x26\xc6\xb6\xb6\xd2\x54\x77\x2a\xa8\x8d\xdd\xa8\xe5\xfe\x06\xe2\xd5\x26\xd1\x22\x31\x99\x71\xd9\x56\xb3\x16\x38\x57\xe1\xb8\x60\x61\x8b\x60\x9d\xd6\xb2\x36\x94\x24\x70\xeb\xd2\x90\xb5\x94\xb0\xa7\xbe\x1d\x78\xa8\x36\x8d\xe8\x59\x5a\x56\xb3\xc7\x61\x70\x40\xcf\x9d\x1c\xd0\x45\x2d\x7d\x9f\x68\xbe\x24\xd1\xd4\xcf\x8f\x1b\x6f\xed\xa9\xc2\x2d\x91\x81\xec\xc6\x6b\x02\x5d\xc3\x9a\xdf\x7c\x49\xa2\x59\x86\x7f\x32\x12\x6f\x29\x65\xcd\xe5\xa1\xc3\x19\x75\xeb\xbd\x35\xe5\x47\x34\x96\x2e\x72\xc0\xa3\x72\x1e\x1d\x05\xd0\x5f\x08\xc3\xd0\x6b\x99\x52\xaa\x5a\xe3\x59\x1b\x36\x4d\x6b\xa7\xfd\x92\x0a\xc6\xae\xcc\xe4\xc5\x64\xf7\x02\xcc\xe6\x55\x8b\x1d\xc9\xc8\x16\x45\x1e\x8d\x9b\x0c\x8c\x3d\xbf\x7c\xd1\x27\x76\xe8\x49\x8d\x82\xfa\xf8\x6d\x11\x31\x25\xf6\x4d\x78\xda\xcb\x39\x71\x32\x47\x73\x30\x94\x24\x71\x2b\xd2\xc4\xb2\x25\x0f\x62\xf6\xe3\xf1\xe5\xf9\xf9\xf8\xe2\x44\x6f\x02\x6d\x55\x87\x86\x20\x0f\xb3\xcb\x7b\xe5\x79\x93\x0a\xaa\x85\xc3\x89\xde\x00\xc8\xb6\x1a\x09\x87\x34\x6c\x2b\x82\x95\x74\xd9\xc1\x59\xd4\xa0\x70\x3f\xf1\xd3\xcf\xb7\x30\x97\xca\x84\x81\xea\x89\x8a\x68\x64\x02\x61\x59\x91\x84\x45\xec\x0a\x0a\xa1\x8c\x46\x47\xc6\xb2\x14\x8e\xdb\x56\x21\x2a\xe3\x5f\x95\x8e\xba\xf8\xd0\xcd\xbc\xc6\x18\x64\xa5\xe6\x2a\x9b\xca\xe4\x72\x32\x51\x63\x15\x66\xc5\xd8\x93\xf6\xc8\x9c\xd8\x26\x80\x44\x61\xc9\xb7\x73\x57\xc3\xc5\x85\xd8\xb1\xc2\x41\x1f\x92\xd5\x99\x95\xbb\xfd\x09\x52\xb0\xbf\x0d\xa4\x17\x5c\x19\xf9\x47\xba\x21\x99\xd0\x75\x56\xa1\xf0\x3f\xe7\xab\xe6\x98\x10\x0f\x2c\xc6\x92\x55\x35\x12\x8e\x68\xce\x03\xb5\xad\x2f\x7e\xb6\xa6\xf3\x35\xa2\xa2\x13\xa1\x60\x6c\x5a\xd5\xb1\x55\x9e\x4a\x8f\x4b\x96\xe2\x8a\x09\x66\x4e\x60\x5a\x27\xf7\x14\x26\x9c\x8e\x84\x86\xc4\xda\x1b\xe3\x70\xd8\x08\x36\x8e\xb4\xca\x14\x4c\xf5\xc8\x95\x2f\x64\x7f\x16\x47\xdc\x33\x38\x90\x7d\xf9\x72\xde\x38\x16\x1f\xd4\xcd\x9c\x1a\xe5\x58\xab\x09\xd7\x41\x19\x86\x27\x2d\xca\x15\xe9\x1a\xab\x80\x74\xe5\xab\x62\x86\x3c\x60\xf5\xab\x39\x0c\x3e\x77\x11\x85\x6f\xe0\x6a\xb9\xa8\x32\x96\x86\xce\x1d\xfb\x3e\xaa\x64\xfb\x42\x4a\x50\x17\x5c\x4b\x4d\x7d\x31\xe1\xc9\x19\x07\x73\x71\x15\x8f\x2a\x6f\xdc\x2e\xad\x7f\x5f\x72\x94\x4e\x75\xa3\xf4\x61\x05\xd9\x4e\x05\x9a\x55\x9d\x21\x10\x60\x4f\x38\x91\x86\xf8\x1d\xfd\x87\x4c\x82\x82\xaf\x58\x44\x60\x59\xc3\x85\x54\xec\x4a\x65\x07\x15\x0f\x7f\xad\x0f\xb4\xad\x4f\x63\xc2\x3c\x08\xd9\xaf\xc0\xe1\xe1\x0c\xcc\xb7\x4a\xad\x97\x96\x81\xae\x18\xcd\x4c\x2c\xea\xe4\xa3\x2b\x46\xd2\xf2\x1a\xd4\xea\x8e\x97\x95\x55\xe0\x67\x19\x02\x00\xee\x24\xfd\x84\x4b\x47\xf3\x07\x18\xf0\xf2\xc1\xfc\xf8\x58\x3c\x51\xa7\x5c\x18\xf8\x09\xa4\xb7\xe6\xc9\xa1\x0c\xdf\x34\x93\xb1\x3d\x8b\xe8\x83\x62\x73\xfa\x50\x45\xfc\x6c\x56\xb5\x09\x42\xfd\x04\x58\x5a\x5b\xec\xdf\x7e\xfa\xb7\xff\x13\x00\x00\xff\xff\xd9\x79\x0e\xfc\x2e\xb1\x02\x00")
func cf_i18n_resources_ja_ja_all_json_bytes() ([]byte, error) {
return bindata_read(
_cf_i18n_resources_ja_ja_all_json,
"cf/i18n/resources/ja_JA.all.json",
)
}
func cf_i18n_resources_ja_ja_all_json() (*asset, error) {
bytes, err := cf_i18n_resources_ja_ja_all_json_bytes()
if err != nil {
return nil, err
}
info := bindata_file_info{name: "cf/i18n/resources/ja_JA.all.json", size: 176430, mode: os.FileMode(436), modTime: time.Unix(1426081216, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _cf_i18n_resources_pt_br_all_json = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xec\xfd\x4b\x73\x24\x47\x76\x28\x08\xef\xef\xaf\x88\xcb\x6f\x51\xc5\xcf\x90\x28\x92\xdd\x92\xdd\x29\xd9\x98\x26\x09\x64\x55\x61\x04\x20\xd1\x40\xa2\xa4\xbe\x2c\x5a\x75\x20\xc3\x91\x08\x56\x64\x44\x32\x1e\x28\x82\xbc\x1c\x33\x8d\x16\x6d\xb3\x98\xd5\xd8\xdd\xcc\xaa\xa9\x5e\xc8\x78\xcd\xb8\xe2\x68\xd3\xdb\xfc\x63\x73\x1e\xee\xf1\xca\x08\x0f\x0f\x8f\x48\x54\x49\xa3\x36\x6b\x56\x22\xd3\xfd\x9c\xe3\xaf\xe3\xc7\xcf\xf3\xab\xff\xe4\x38\xce\x0f\xf8\x1f\xf8\xdf\x27\xbe\xf7\xc9\x73\xe7\x93\x37\xe1\x9b\x70\x71\x72\xf1\xfc\x4d\xf8\xc9\x81\xfa\x25\x8d\xdd\x30\x09\xdc\xd4\x8f\x42\xd5\xe4\xf8\xe4\x68\x5a\x69\xb3\x8e\x3c\xff\xd6\x17\x08\xe3\xd6\x0d\x12\x81\xdf\xff\x78\xd0\x82\xe0\xf7\x51\x16\x3b\xff\xeb\xd5\xfc\xdc\x49\xd2\xd8\x0f\x57\x4e\xf2\x10\xa6\xee\x77\x8e\x9f\x38\x7e\x78\xef\x06\xbe\x77\xe8\x38\x17\x71\xb4\x11\x71\xe9\xa7\xf4\xce\x4f\x9e\x3b\xce\xf2\xd6\x49\x44\x3a\x89\xb3\x30\x84\xae\x13\x11\xde\xfb\x71\x14\xae\x45\x98\x4e\xee\xdd\xd8\x77\x6f\x02\x31\x59\xc5\x51\xb6\x71\x9e\xfc\xf0\xe6\x93\xd0\x5d\x8b\x37\x9f\x3c\x7f\xf3\x09\x80\xcd\xe0\xd3\xc1\xee\x57\x3f\x3e\xd1\x0e\xf5\xe3\x25\xf6\xd1\xe7\x3c\x49\xdd\xd5\xbf\x99\x39\xdf\x0f\xb1\x3d\xe6\xfc\xff\xef\x2c\xee\x44\x22\x80\x98\xf8\xde\x5f\x0a\x67\x13\xc0\x38\x9d\x3b\xf7\x5e\x38\x6e\xe8\xb8\x49\x12\x2d\x7d\x37\x15\x9e\xb3\x8c\x92\xf4\xd0\x39\x8a\x05\xcc\x01\x8c\xd5\xcd\x7b\xf8\x21\x0c\x22\x84\x0f\xef\xfd\x20\x80\xbf\x96\x30\x2b\x38\x48\xee\xd1\x3a\x83\x84\xd8\xf1\x44\x18\x21\xf4\x06\xf4\xc9\x46\x2c\x61\x14\x4b\x82\x93\x94\x49\x79\xef\xa7\x77\x80\x42\xac\x0f\x9d\x93\xdb\x26\x4a\xa2\x5b\xa6\x20\x7d\xd8\x08\x9c\xf3\x25\x52\x2d\xbc\x03\x68\x8b\xc0\x98\xd2\x1b\xc1\xc4\xc6\xc2\x3b\x6c\x9c\xba\x34\xce\x74\x33\x37\xdd\x6c\x60\xe1\xdd\x18\x00\x6b\xf9\xd0\x74\x13\xf8\x4b\xf8\xfb\x3e\x02\x7c\x3e\x0c\xc1\x8b\x2c\x79\x12\x62\xfc\xe1\x87\x43\xf8\xe7\x1c\x16\xff\xc7\x1f\x9d\xf7\x6e\xa2\x48\x70\xb2\x04\x97\x45\x4e\xfc\x7a\xed\x86\x9e\xf3\x07\x68\x7c\xc4\x9f\x7f\xfc\xf1\x0f\x1d\x44\x8e\x05\xba\xc7\x78\xce\x23\xc7\xdd\xf8\x8e\x08\xbd\x4d\xe4\x87\x29\x1e\x88\xf6\xfd\xd2\xd5\xbc\x07\xde\xcb\x28\x4b\x85\x93\x46\xb8\x05\xb2\x70\xed\x6e\x36\x30\x48\x18\x1c\x6c\x45\x87\x36\x44\x98\x06\x0f\x8e\xfc\x1e\x9a\xc1\x56\x03\xcc\x72\x19\xa3\x50\x47\xe3\x78\xa0\x7b\x8c\x07\xaf\x42\xc7\xb9\x86\x53\xfc\x04\xd8\xca\xda\x8d\xdf\x89\x14\x0e\x12\x1c\x84\x49\xe2\x5c\xcd\x2e\x5f\x9f\x1c\xcd\x9e\x20\xb6\x7b\x5f\xbc\x87\x23\x97\x2c\x63\x7f\x83\xe8\x12\x3c\x29\x7e\xe8\xf9\xf7\xbe\x97\xb9\x81\x3c\x7d\x11\x9e\xa9\x95\x7f\x2f\x42\x75\xb2\x74\x23\x7e\x4c\xe4\x7d\xe7\x64\x9a\x24\xfe\x2a\x74\xe2\x28\x10\x09\x73\x8d\x27\xb8\x6f\x79\x1d\x80\xe4\x18\x36\x3a\x72\xe1\x28\x5e\x4d\xb0\xd1\x13\x07\xf7\x76\x73\x9b\x64\x03\x63\xe2\x56\x9a\xd9\x20\x91\x83\xf0\x86\x6e\x20\x9c\xdb\x2c\xdc\xfe\xcb\xf6\x5f\x05\x1d\x9c\x4e\xe4\xa2\x0f\xea\xbe\x73\x41\x2b\x84\xe0\x5f\x2c\xdc\x78\x25\xd2\xfc\xf4\xd2\xe2\xa4\xf4\x9d\x13\xc2\x12\x11\xb6\xce\x21\x5e\xa7\x7e\xe0\x7f\xdf\x0a\x72\xe3\xc6\x2e\x2c\xf6\x2d\x70\xbc\xd8\x11\x00\x72\xfb\x2f\x70\x7a\x83\xfb\x68\x84\x01\xb4\x11\x0e\x13\xd9\x4d\xf6\x2e\x10\x22\x95\x89\x59\xba\x31\xec\x3e\x80\xe3\x86\xfe\xf7\x40\xf2\xf6\xcf\x43\x89\xce\xe4\xb9\x08\x22\xb8\xe6\x9d\x89\xeb\x4c\x2f\x4e\x9c\xc9\x24\x79\xe7\x6f\x26\x49\x12\x4c\x48\x4c\x20\x2a\x9f\x00\x5e\x6a\x8a\x3c\x4e\xd3\x0a\xc6\x9c\x64\x9b\x4d\x2c\x12\x96\x25\x1c\x11\xc7\x51\xdc\x39\xf0\x4c\xad\x97\x29\x31\x99\x09\x31\x34\x77\x40\x4e\xec\xaf\x69\x9d\x81\xf7\x21\x39\x16\xf3\x05\x9f\xbe\x84\x5b\x19\x2e\x9a\x33\x37\x74\x57\x20\x32\x4d\x58\xd8\x10\x74\x26\xd7\xf4\x25\xb1\xcb\x1b\x6e\xe6\xb8\xcb\x65\x94\xc1\x35\x80\x3f\x6f\xdc\x07\x14\x9d\x80\x9d\xdc\x46\x9a\x7b\xae\x19\x89\x0f\xab\x2e\x1c\xf8\x4b\x84\x4b\x9f\x76\xc0\x32\x02\x69\x0d\xb6\x2f\xd0\x9c\x66\xb1\x8b\xa0\x23\x47\x10\xf4\x78\xed\xca\x13\x0d\x3f\x6f\xdc\x15\xff\x68\x75\x01\xc2\xa7\xa3\x17\x6f\xcf\xa7\x67\x33\xc7\xcd\x80\x37\xa1\x44\xf7\xbf\x88\xef\xdc\xf5\x26\x10\x87\xc8\x2f\xde\x7c\xf2\xe6\xcd\x9b\x4f\x36\x20\xf9\xbc\x8f\x62\x0f\x3f\xbf\xf9\xc4\x79\x0a\x1c\xd4\x05\xb1\xe6\xdb\x0c\x04\x27\x90\x34\x6f\x71\x8f\xc1\x1d\x13\x3a\xaa\xe1\xa7\xba\xf1\x9b\x60\x4c\x44\x78\xe7\x56\xd0\xe1\xac\xc0\x21\x06\x91\x00\xae\xb5\x04\x24\x18\xe8\xea\x50\xb3\x4f\xf7\x33\xf0\xf5\x43\x3e\x1c\x24\x02\x8f\x91\x1c\x30\x2c\x41\xfe\x93\x64\xea\x2e\xf3\xac\x4f\xf5\x2b\xdf\x89\xd2\x87\xe1\xf0\xa0\x18\x65\x3e\x68\xde\xe5\xf8\x03\xf3\x71\xc9\xcf\x3e\x1d\xba\xea\xcb\x68\xf3\x30\x49\xe0\x15\x01\x97\xe5\xd5\xfc\xfa\xf2\x68\x36\x99\x5e\x5c\x38\x8b\xe9\xe5\xcb\xd9\x82\x3e\x7e\x35\x89\xd4\x9f\xf3\xcb\x97\x5f\xc3\xdf\x89\xfa\xfb\xea\x62\x7a\x34\xc3\x6f\x26\x61\x34\x01\x6e\x80\xb2\xda\xd7\x66\x33\xb0\x5f\xbc\x36\x33\xc1\x1c\xe9\x69\xb4\xf6\x53\xdc\xce\x31\x2e\x8f\x3c\xd8\xbc\xd2\xc8\xf6\xb8\x11\x48\x7e\x22\x76\x97\x20\x4f\x0b\x90\xa4\x26\x93\x1c\x06\x09\xf5\x9b\x38\x5a\x6f\x52\xda\x24\x37\x51\x7a\x67\xb8\x25\x4a\xe8\x5d\xc0\x9f\x6d\x7f\x8a\x7d\x3c\xf0\xb4\xe6\xbc\xfc\xe2\x56\xa4\x19\xec\x88\x2a\x19\x40\x05\x31\x00\x51\x26\xc4\x8f\xb7\x3f\x39\x49\x04\x32\x9d\x9f\x6e\x7f\x9a\x04\x51\x32\x78\xa7\x48\x8e\x0d\xfc\x37\x72\x9e\xd6\x07\x0c\xf2\x13\x4c\x96\x93\xc5\x01\xce\x52\x74\x93\xba\xd0\x16\xae\xb1\x50\x4c\x52\x7f\x2d\x76\xe7\xd0\x88\x41\x34\xa2\xa4\xa1\xc1\xe4\x86\x62\x09\xcc\x33\x5b\xbb\xce\xf5\xe5\x29\x60\x02\x02\xee\xa3\xe5\xf6\x7f\x38\x9b\xc8\x13\xd8\x06\xa8\x90\x0d\x78\x0e\x3d\xe4\x1b\x91\xb3\xfd\x0b\xbc\x80\xa2\x81\x3c\x43\x52\x96\xed\x1e\xe2\xc9\x66\xaf\x3c\xd3\x00\xf1\x23\xb2\xce\x0e\x6a\xf6\xc8\x41\xbb\x30\x3f\x3a\x23\xd5\x12\xb4\x71\xff\xea\xaf\xde\x47\x97\xc7\xce\x53\xd6\x28\x3c\xb4\x70\x18\xa0\x09\x64\xc9\x0c\x8f\x73\x32\xc6\x44\xfc\xd5\x6f\xc2\xbb\xdf\xe2\x26\x90\x7a\x0c\x98\x85\x1d\xd6\x02\x4d\xa3\x1c\xeb\x08\x7c\x62\x93\x25\x77\x20\xaf\x5d\xf0\x5f\x5f\x4d\x6e\x9c\x2f\xaf\x4f\x4e\x8f\x81\x65\xff\x1d\x7d\x85\x7c\x7b\xe9\x1c\xcd\xcf\xce\xa6\xe7\xc7\xf8\x87\xe7\x1c\xcf\xcf\xa6\x27\xe7\xf8\xf9\xd6\x81\x6f\x4f\x5e\xcc\xae\x16\x6f\x2f\xa6\x8b\x57\x86\x97\x89\x42\xa9\xc3\x06\xc8\xe6\x39\xb6\xed\xff\x79\x7e\x32\x67\x7c\x47\xd3\xb3\x93\xf3\x57\xf3\xc9\xf1\x7c\xa2\x50\xcf\xdb\xee\x12\xad\x36\xa6\x4e\xcf\xa0\xc1\xf4\xa5\xac\x73\x75\xe6\xf1\x6a\x9a\x79\x7e\x1a\xa1\xbc\x79\x29\x5c\x6f\x12\x85\x70\x77\x81\x00\x4b\x42\x7c\x84\x2f\x0e\x12\x2e\x69\x43\xc6\x62\x13\xc5\x69\xa2\x27\xb8\x02\x72\x8a\x70\xe0\x59\x10\xf1\x55\x14\x08\x1f\xa5\x56\x67\xfb\xa7\x9a\xc4\x2a\x00\x36\x40\xd9\xfe\x0a\x5b\x10\xe4\x57\x17\xa1\x14\x2f\x9d\x01\xa3\x2b\xa4\xe9\x93\xf0\xde\xaf\x8a\xec\x78\xd8\x92\x03\xd8\xef\x81\x58\xb2\xb0\xbe\xbc\x73\xc3\x95\x54\xf5\x1d\xd0\x37\xf0\xc8\x45\x75\x5f\xe8\xa1\x5c\x1f\xc0\x5b\xc2\x60\xf8\x25\x09\x3e\x02\xa4\x5e\x4d\x88\x57\x47\x4d\xa1\x86\xbe\xd4\xc2\x0d\xf0\xde\x8e\x09\x7b\x84\x53\xa2\x1e\xa9\x84\x96\xc5\xfa\x95\x9b\xc0\x61\xb4\x9d\x8f\x0b\x17\x18\x6a\x72\x17\x65\x81\x87\x5a\x20\xd7\xf9\xde\xdf\x38\xb7\x7e\x20\x0e\x8a\x4b\xba\xfc\x65\x84\x2f\x8e\x20\x5a\xba\x81\xe3\xf9\x31\x4c\x52\x14\x3f\x1c\x3a\x17\x51\xe2\xe3\x80\x51\x79\x04\x22\x08\xfd\x75\x2f\x48\xec\x80\x41\xe2\xa0\x52\xe0\xa7\x30\xc0\xd8\x4f\x1f\x78\x16\xa1\x65\x12\x91\xc2\xee\x16\xa4\x20\x00\xf9\x1e\xa4\x33\xc4\x76\xe7\xaf\xee\x84\x4e\x17\x8b\x27\xc0\x45\xb6\x1d\xc1\xf0\xef\xe9\x02\x4f\xe8\xfa\x06\xde\xf4\x6d\x86\x9a\x4b\x20\xf7\x80\xae\x73\x1c\x00\xb1\xf1\xfa\x8f\xf0\x60\x84\xaf\x70\x04\xbc\xc1\x78\x48\x3c\x10\x7e\x49\x6f\x7f\xc6\x16\xe1\xf6\x2f\x6b\x11\x47\x34\x12\x1f\xfe\xfd\x36\x93\x6b\x20\xe4\x70\x3c\xd7\xa3\xbd\x0a\xcd\x97\x01\x30\x67\xe2\x9d\xb0\x59\xe1\xe6\x84\xfd\x4d\x77\x17\xa0\x87\x3f\x5c\x68\xed\xc0\x6b\x34\x8a\x2d\xf4\xb7\xb8\x50\x78\xd8\xd7\x59\x90\xfa\xc0\xb5\x51\x0b\x97\x5f\x86\xb0\x75\xfd\x5b\x98\x31\x9d\x81\x09\xbe\x9a\xc1\xbe\x13\xce\x7a\xfb\x17\x02\x01\xbb\xc9\xcd\x55\xbd\x7c\xbf\xc1\x70\x15\xa8\xc8\xce\x10\x05\x9f\xae\xf0\x66\x2e\x0e\xfb\x6b\x54\xa3\xc1\xc5\x03\x1b\x5b\x72\x8a\xfc\x0c\xa1\x62\x3e\x01\x69\x8c\xf5\x02\x74\xa3\xeb\x07\x50\x03\x7d\x12\xd2\x5d\x45\x27\x45\x61\x28\xf8\x85\xc0\x67\xf1\xad\xbf\x02\xd6\x22\xf9\x49\xc8\x0f\x7e\xbe\xc4\x07\x0d\xef\x18\x76\x5d\x40\x86\x92\xa6\x57\x3f\x2d\x0d\x8f\x91\x34\x82\xf9\x88\x05\x91\x69\xce\x35\x1b\x70\xed\x3c\xfe\x4b\x4b\x28\xad\x22\x30\x38\xc0\x48\xe6\x85\xca\xf4\x54\xf9\xe9\xa0\xf1\x1b\x30\x50\xfc\x46\x84\x68\x17\x72\x6e\x05\xaa\x25\xa4\x24\x97\x6b\x4b\x0d\x97\xdb\x9c\x6f\x02\x15\xf8\xbe\x89\x61\x94\xcb\x2c\x4e\xa2\x24\x3f\xf8\x9e\x00\x26\x0a\xfc\x02\xa5\xd9\x81\xcb\x8f\x46\x20\xf9\x86\x41\x59\x0c\x8e\xdf\xd2\x0d\x89\x6f\xc2\x1b\xe6\x06\x5e\x51\xa8\x4f\x8f\x62\x9e\x69\xe4\x80\xd4\x86\x58\x28\xb2\xcf\xc3\x37\x21\x00\x39\x49\x15\xc3\x65\xc3\x95\x83\x06\x0b\x3c\xd3\x71\xec\x3e\xf0\xa1\x26\x3b\x5d\x74\xf3\x0d\xf0\x57\x34\xcf\x25\xf8\x66\x62\x65\xf4\x0d\x1b\x37\x60\x31\xb3\x40\x24\x5a\x26\x39\x07\xe2\x98\x4d\x16\x52\x1d\x4c\x01\x3e\x7a\x14\xc3\x54\x0d\x24\xed\x11\xf2\x45\x49\x7b\x54\x67\x9c\x4c\xfc\x3c\xe7\xa3\xc8\x7b\x49\xf7\x24\x9f\x4e\xf4\x5a\x42\x6e\x94\xc6\xfe\xf7\xc4\x50\x70\x00\x70\x35\xf1\x68\x88\x7c\xe8\x12\x02\x09\x20\xbc\xc6\x62\x15\xbb\x89\x8d\xb6\x7c\x84\x65\x60\x08\xf8\xb1\xbc\x12\x34\xbe\x41\xab\xc1\x70\xa9\xf9\x97\x2e\x3c\x61\xe6\xd4\x07\xaf\x3a\x82\x8d\x2f\x76\xbc\xf0\xf0\x70\x90\x4c\x85\x3d\x93\x6f\xe1\xa1\x2e\x9c\x9b\xd8\x5d\xbe\xc3\x5b\x12\x7f\x2c\x1b\x32\xef\x7c\x20\x8f\x91\x3b\xd8\x30\x16\x30\xfd\x31\xbf\x07\x53\x39\x0a\x40\x8c\x26\x5e\x40\xf1\x1a\xd5\x9d\xce\x37\x09\xb0\x55\x1a\x9e\x94\xf2\x9f\xd3\x8f\x5f\xd1\x7f\x61\x42\xe5\xbf\xd0\xeb\x13\x98\xc6\x34\x5a\x46\xc1\x1b\x98\xda\x37\x9f\xa4\xcb\x0d\x9a\x6b\x8b\x9f\x61\x98\xc0\xa7\x69\x57\x71\x8b\xcf\x3f\x3b\xfc\xe2\xb7\xbf\x3d\xfc\xfc\xf0\xf3\xff\x52\x6d\xc9\x0c\x8d\xda\xfc\xe6\x37\x9f\xfd\x35\xbc\x29\xf9\xb7\x1f\xe9\xdf\xaf\x75\x1b\xf5\x3f\x96\xf3\xdf\xf0\x72\xf6\x39\xb7\x24\x0d\xb8\x01\xc8\x7a\x74\x33\xe0\x0b\xdf\x55\xa6\x2e\xf5\xa8\xe1\x2f\xdb\xad\x56\xf0\xd5\x59\x94\xa4\x28\x15\x2f\xa9\xbb\xe7\x27\x9b\x28\xdc\xfe\x72\x2f\xd8\xe2\x0b\xc2\x16\xfc\xd7\x45\x3e\xd3\x0e\xb4\x0f\xd5\x5f\x4d\x7c\xe7\xfc\xfa\xec\xed\xc9\xf9\xd5\x62\x7a\x7e\x34\xbb\xc2\xe7\xe0\x3b\xe7\xf8\xe4\xea\xef\xf0\xd3\xda\x39\x9b\x9d\xcd\x2f\x7f\x8f\x9f\x43\xe7\xd5\xfc\x6a\x81\x9f\x36\x0e\x3d\xe4\x48\x17\x09\xdd\x8e\xa8\x69\xea\x2c\x4e\xce\x66\xf3\xeb\x45\xc7\x03\x0f\x31\xfe\x6e\x71\x3c\x39\x9e\x4d\x10\xe9\xf6\x7f\x3f\x3f\x3a\x99\x4a\xb4\xaf\x8e\x8f\x73\xac\xdb\xff\xeb\xf2\x64\x5a\xe0\x55\xaf\xd8\x8d\x7a\x10\x1a\xa1\x37\x9f\x0a\xd7\xc3\x03\x0a\x53\xae\x59\x9d\xa6\x36\xe6\x18\xbc\x48\xb0\xf5\x59\x7c\xe7\xc3\x6b\x00\x95\x1c\x24\x2b\xb5\xe3\xeb\xee\x61\x8e\x1d\x1f\x2f\x01\xc8\x73\xde\x83\x72\x26\x68\xc7\xfb\x0d\xbc\x3a\xe0\x30\xc1\x7f\xa5\x9b\x84\x3b\x18\x63\x84\x66\x76\x13\x8c\x78\x31\x5b\xe3\x13\xeb\x4d\xfa\xd0\x8e\x85\x31\xdc\xbb\xdf\xfb\xb6\x53\x88\x8b\xe1\x3a\x64\x77\xc3\xf7\xd7\x01\x3c\x5e\x05\x72\xcf\x8a\xee\x17\xe4\xb5\xc3\xd5\xa1\x73\x97\xa6\x9b\xe7\xcf\x9e\x3d\x44\x59\xfc\x16\x57\x0d\xb5\x51\xed\xb4\x8d\x0a\xbc\xff\x98\xee\x5d\x3f\x20\xbe\x05\xac\x1a\xe1\xe9\x8e\x81\x49\x9f\xde\x14\x80\x10\x0d\x9c\x0e\xd5\x0e\xf0\x50\xe5\x71\xaf\xdd\x77\x70\xe7\x80\x78\xed\xf8\x29\x3f\xbe\x79\x6e\x36\x41\xb6\x92\x28\x35\x32\xe2\x58\x70\xcd\x47\x82\xe8\x6e\xa3\x2c\xd4\xec\xf3\x10\x5f\xdf\x20\xdf\x83\x64\x09\xdb\xdc\x6a\x17\xc6\x62\x1d\xdd\xe7\x9a\x05\xe4\x0b\xd1\x2d\xd1\x9c\xe0\xdb\xd1\x17\x49\x3b\xf6\x1e\x5d\xcd\xad\xeb\x9f\x5c\xd0\xb4\xc1\x7d\xaa\xae\xfe\x7c\x1e\xd4\xbd\x2f\xd7\x00\x30\x7b\x6e\xea\x6a\x5c\x58\x86\xc0\x32\xa6\xf8\xd3\x9c\x2d\x11\x5b\xd5\xbc\x33\x34\x2d\x8d\xb1\x4d\x73\x47\xad\x00\x15\x2b\x69\x14\x91\xda\x49\xd9\xce\x58\x40\x38\x0a\xa2\xcc\x73\x5e\xe0\x38\xe3\x76\xfe\x75\x0d\x0f\x91\x5b\x11\xb3\x15\x9c\x0c\x39\x81\x2f\x2d\x3a\x4a\x28\xa0\x67\x0d\xc3\x5e\xf9\x31\x49\x0c\x2d\xb0\xcd\x07\x70\x7c\xfc\xec\x12\x84\x80\xd7\x33\xe7\xe2\xf4\xfa\xe5\xc9\x79\x2b\x7d\xf5\x9f\x4d\x15\x40\x3b\x18\x9c\xcb\xd9\xc5\xfc\xea\x64\x01\x82\x47\x2b\x32\xb3\x4e\x3d\x46\xf9\x1a\xc5\x9f\xe3\x76\x7c\xf0\xfb\xf6\x8f\xd3\xe3\xb9\x0d\xf0\x8b\x93\xdc\x57\xae\x15\xc1\x82\xdf\xf1\x01\x3a\x79\x0c\xc4\xe1\x3c\xcd\xef\x88\x04\x2e\x09\x77\xe3\x1f\x96\x2c\x22\xed\x06\xb6\x32\x09\xc6\x30\xac\x28\x7c\xde\x4d\x83\x47\x4e\x31\xcf\x87\x22\x62\x5f\x4a\x7f\x26\xff\xfe\xf1\x47\xa3\xd1\xeb\xba\x8d\x44\x87\xf3\x14\x7f\xbf\x17\x71\x02\xf8\xd5\xcf\xaf\xf9\xcf\x1f\x7f\x34\x5b\xa4\x26\xa8\x08\x02\x6f\x19\x39\x7f\x1a\xc0\xf6\x03\xb1\x99\xcd\x81\x53\x79\x71\xd5\x7e\x34\x2f\x4e\x4f\x8e\xa6\x8b\x93\xd7\xf3\x2b\x1b\xd0\x4b\x7c\xa4\xe2\xe3\x58\x7a\xdd\x3b\x09\x2a\xd9\xfc\xf4\xc1\x21\xaf\xef\x84\x04\x7e\x18\x80\xb2\x55\xfe\xa8\x71\x46\x9f\xdf\xa4\xa4\x04\x5a\xc5\xd9\x26\x22\x0b\x46\x22\x50\x4d\x1b\x6e\xff\x45\x79\x2f\x7c\x07\xd0\x59\x0b\x4f\x26\xc7\x56\xc8\x16\x03\x90\x2e\xec\xb5\x01\x20\xfd\x15\x24\x43\xa8\x0f\x97\x22\x74\x4b\xe4\xb7\x00\x36\x27\xde\x83\x07\x15\xf9\x0c\x96\xa4\x2f\x12\x47\xda\xef\x41\xa3\x3e\x3d\x29\x40\x63\x4a\xac\x3c\x86\x51\x35\xb3\xd9\x68\xf0\xfb\x52\xf7\x8c\xaa\xc1\x18\x5e\xdf\xe4\x7b\x91\xab\x14\x73\xbd\xb5\x1d\x35\xb4\x15\x89\x14\x98\x5c\x00\x0c\x87\x1a\x69\xaa\xbb\x85\xc3\xb8\xd1\x58\x09\xdf\xcd\xe3\x95\xfc\xee\x19\xeb\x9e\xf1\x4b\xd2\x30\xcb\xaf\x79\x03\x5c\xe7\xeb\x74\x78\xd8\x2e\xf3\xa8\xc1\xe1\x3e\xa0\xa1\xe5\x44\xd0\xf8\x76\xc8\x08\xdd\x26\x32\x94\x9f\x69\x8d\x10\xb5\x65\x5a\x48\x31\x9f\xa5\xc0\x87\x31\x55\x3d\xdf\x95\x80\x28\xf7\xc4\x8d\xc0\x79\xa4\x38\x84\x20\x60\xcf\x6f\xd8\x33\xac\x62\x3b\x7a\xa1\x84\xb2\x67\x2e\x42\x3a\x74\x9c\x4b\x41\x6e\x08\x08\xa0\x06\x56\x89\x6f\x1d\xe0\x71\x35\x3c\x11\xe3\x52\x49\xdb\x80\xcf\x1a\x38\x6c\x40\xb3\x4b\xea\x32\x38\x2c\x9a\xb9\xff\x77\x32\xac\x81\xeb\x98\x90\xdf\x67\x69\x20\xe4\x1e\xc4\x04\x22\xbb\xe4\x47\x02\x6f\xa9\x27\x30\xc8\xdf\x47\x19\xb4\x47\xd5\x68\x1a\x3f\x38\x59\x28\xa9\xc3\x91\xb4\xf5\x22\xa2\x61\xdc\xa1\x1a\x0a\x1b\xea\x64\xf3\xf2\xa8\xfd\xf0\x3e\x7a\xa7\x9b\x41\x20\xe0\x55\xf4\x1e\x6d\xb5\x07\x0e\x3c\xc7\x95\x96\xf6\xd6\x8f\xe1\x7d\x75\x9b\x05\x01\x92\x04\xc0\x30\x20\x86\x70\x3a\xfe\x7a\x83\x92\x3f\xbc\xbd\x2a\xb4\xe2\x4f\xf4\xce\xc0\x3f\x76\x29\x66\xda\xda\x37\xcf\x1f\x78\x32\xff\x63\x2e\x6d\xe6\xd2\xf8\xa9\x12\x94\xa2\x23\x48\x25\x2e\x03\x9e\x50\xdd\xad\x1e\x8b\xec\x4d\xe2\x93\x7d\x10\xcd\x82\xd0\x07\x58\x64\xfb\xbb\x7c\x11\x79\x70\xdb\xa2\x51\x8f\x3d\x21\x3c\x32\xe6\x2a\x83\x67\xae\x1b\x43\x0f\x78\x04\x2c\xb5\xc1\x2e\xcc\xa8\xe7\x92\x74\x52\x72\x93\xff\x57\xab\x47\xbc\xcd\xb0\x68\x91\x75\x8e\xfe\xf5\x61\x6d\x44\x9c\x92\xfc\x80\xbe\x1d\xdb\x3f\x39\xcd\xa3\xfc\xa9\x18\xa4\x74\x6f\x40\xc7\xd6\x6a\x24\xc0\x9e\xd6\x0d\xc4\xd5\xbd\xad\x1c\xc2\x2e\xd6\x8e\xc6\xf5\xc8\xcb\xb7\x33\xba\x3d\x2d\x60\xf3\x60\xc7\x59\xc4\x04\x2d\xb3\x81\x20\xab\x7c\x1e\xbb\x45\xb2\x92\x66\x8d\xdc\xf5\xcd\xf6\xe7\x35\x2b\xbf\x58\x5c\x4b\xb0\x2b\x4c\x8a\x6b\x35\xd9\x2c\x77\xad\x33\x60\x49\x37\x42\x46\xbd\x08\x74\x30\x82\x49\x55\x7f\xcb\xb8\x4c\x6d\xfc\x0e\xaa\x73\xaa\x01\x2e\xca\xe3\x87\x5c\xb9\xa5\x3b\x94\xa7\x5c\x13\x83\x7b\x14\x4c\xa5\x5f\x94\x72\x95\xca\x72\xcf\x4d\x9b\x91\x80\x2c\xd7\x2e\x8b\x54\x7e\xec\x05\x93\x44\x0e\x9f\x8d\x15\xd2\x00\x08\x7d\x83\x76\xb5\xe8\x79\x04\x1d\xd0\x74\x5e\xc4\x67\xb2\x87\xd2\xd2\x5d\x6f\xd0\x8f\x3a\xf6\x57\xd2\xb9\xc3\x92\xa4\x8a\xc8\x5a\x35\xab\x68\xc4\xb1\x82\x9c\xaa\xc8\x4b\x4a\x5c\xec\x6b\x27\xf4\xec\x48\xf2\x38\x55\xef\xa3\xf8\x1d\x79\x93\xbd\xf3\x37\x9b\xe2\x09\x40\xf1\xb2\x48\x8f\x6e\x9d\x2a\xd0\x78\xe6\xa0\xd5\x8d\x1b\xdc\xb9\x5e\x04\x30\xfd\x55\x18\xc5\x24\xd1\x2f\x63\x3f\xdf\x6b\x7c\x14\xc6\x1a\x80\xe4\x32\x37\xa4\xab\x4d\x59\xf2\x67\x2e\xc4\x8d\x74\xd3\x5c\x03\x57\x5c\x05\xf7\x18\x16\x1c\xb8\x7c\x06\x74\x20\xfb\xd0\x0e\x4f\x5c\x52\x70\xe1\xe6\x44\xb7\x3c\xcf\x77\x61\x7e\x40\x54\x58\x26\x6c\x77\x0f\xa2\x15\x59\xa4\xdb\x29\x0e\xc5\x77\x70\x40\x77\x82\x90\x08\xd2\xf6\x57\x04\x25\x55\xb1\xc0\x9f\x7c\x64\xa2\xa4\x41\x59\x97\xdc\x4b\x10\x89\x1d\xf9\x49\xbb\xee\xac\xf6\xab\x39\x54\x0e\xce\x74\xd9\x94\x2c\x5f\xc0\xba\x9b\x41\x46\x55\x4a\x33\xb5\x7a\xf9\x9a\x30\x78\x43\x42\xf8\x19\xcb\xe4\x30\xaf\xa3\xa7\x06\x2d\x8f\x9e\xab\xda\x80\xb0\xa5\x0f\xe3\x40\x19\x20\xea\x40\xba\x66\x4b\xd0\x14\x71\x1c\x2a\x1e\xc0\xdc\x61\x2b\xd7\x1c\x28\x8f\xaf\x01\x94\xf1\xe5\x34\x8c\x30\x7e\xd1\x8f\x46\x14\xb0\xff\xd7\x98\x18\xa1\x63\xc9\x76\x9b\xf5\xc4\xc3\x4c\x33\x20\xed\xc7\x25\xfc\xcb\x7a\x13\x9c\x00\xfc\x86\xe3\x62\x65\x28\x6f\xa1\x3b\xe1\xaf\xe7\xf1\xaa\xaa\x3d\xe1\xaf\x49\x75\x91\xeb\x4f\x2a\xd1\xc0\x5a\x15\x8a\x3c\x1d\xc8\x70\xf3\x59\x2d\x88\xe2\x89\x55\xf1\x07\x75\xd2\x0a\x7d\x4a\x95\xb4\x92\x46\xa5\x4a\x9c\xd2\xa9\xb4\x93\xf7\xd8\xf3\xf8\xe1\xa7\x6b\x2f\x73\x52\xd3\xaa\x02\x78\xf5\xcd\x5b\xfa\x86\xe7\x29\xdf\x42\x89\x5c\x9f\x62\x8e\x14\x77\x4c\x49\x11\xbf\xa3\x96\x35\x9d\x23\xd2\xce\xd6\x94\xb3\x4d\xc4\x48\xb9\x3b\xdf\x36\x8a\xa0\x62\xca\x6a\x04\xed\x2a\x74\x07\x4f\x59\x89\x07\x03\xe0\xdf\xe1\x07\x79\xc9\x97\xa7\xca\x5a\x57\xb9\x37\x44\xe6\x63\x4d\x53\x74\x3a\x21\x9d\x03\xf2\xf4\xf7\x61\x10\xb9\xf0\x18\x80\xd5\x8a\x1f\xd8\xaf\x8d\xac\xed\x64\x93\x0d\x45\x8a\x3e\x44\x18\x30\xae\x1d\xd6\x18\x30\x2d\x47\xb0\xf6\x57\xb1\xcb\xaa\x67\x29\x6b\x9d\xc8\x54\x2e\xc7\x45\xbe\x08\xfd\xaa\x2c\xd0\x3a\x8d\x1b\x95\x60\xc5\xbd\x40\xf5\xa2\x3a\x4c\xc9\x72\x46\x1e\x96\x70\x34\x48\xa7\x74\x01\x1f\x78\x81\xff\x80\x8f\x61\xf5\x10\xfe\x43\x5d\x76\xfc\x83\xf2\x0f\xb9\x8d\x85\x72\xb2\xcc\x93\xd6\xfc\x61\x97\x64\xd5\xab\x94\x59\xc7\x95\x89\x78\xd0\x7b\x3b\x45\x25\x14\x3a\xe3\xc0\x5a\xac\x41\xd4\x40\x1f\x3e\xf4\xe4\xf7\x6f\x49\x8f\x05\x4f\xed\xf0\x1d\x3f\xb8\x29\x25\x11\x67\x0a\xd0\xef\x80\x7f\x47\xa3\x33\x5f\xd5\x0c\xf5\x88\x29\xbe\xba\xd8\xdb\x1e\x06\x11\x4e\x2a\x71\xc6\xed\x73\x96\xa5\xdc\xb5\x14\xdc\x17\xb2\x36\xa2\x12\x1f\x3c\x8c\x2c\xf4\x23\xd2\x1d\x5d\x45\x04\xec\x7f\xcb\x8d\x5d\xc2\x05\xe2\x2a\xc6\x67\x8a\xef\x36\xf8\x88\xc6\x14\x56\xec\xc0\x84\x0f\x94\x1b\x77\xf9\x8e\x94\xf7\x11\x3c\x64\x26\x6e\x69\xe2\x0e\x55\x4e\x36\x4a\xb1\xf1\x87\x72\x96\x89\x37\xd9\x67\x9f\xfd\x66\xa9\x4c\xb9\xf4\x97\xc0\xa0\x49\xfe\x1e\x27\x5c\x7d\x17\xc9\xef\xe0\x8a\x50\x5f\x25\xf2\x2b\x0e\x6f\xa0\x2f\xff\x20\x03\x99\x73\x6a\x38\xfe\xa3\x4a\x8e\x6e\xb2\xfe\xdd\x0e\xd5\x78\xbd\xbf\x3c\x39\x3d\x3d\x39\x7f\x89\x31\x92\xd3\x97\xb3\xcb\xd6\xc9\x82\xdf\x66\xe7\x8b\x99\x73\x3c\x73\x5e\x4c\x17\xd7\x97\xd3\x33\xf8\xd3\xc6\x19\x85\x02\x43\xc9\x59\xb6\xfd\x21\x79\x34\x3f\xbb\x38\x39\x9d\x1e\xcf\x9d\xd9\x99\xcd\x83\x32\x0f\x3e\x6d\x37\xda\x37\x35\x31\x87\xef\xa3\xe7\x79\x5d\x22\x33\x78\x1d\xbe\x66\x85\x02\x29\xce\x9a\xe4\xa8\xed\x9f\x86\xa9\xd4\x5a\x09\x43\xad\xac\xf2\xb8\xab\xfb\x17\xc8\x1c\x55\x18\x07\x8f\x7a\x59\xe5\x86\x50\x4a\x46\xd5\xae\xdd\xe4\x01\x09\xcd\x78\x10\x2b\xf9\x88\x49\xab\xbe\x8c\xfc\x8e\xc5\x9a\x83\xe0\x13\xc7\xc3\xd6\x18\x3e\x56\xb8\x26\xa0\xb7\x69\x11\x7e\xf5\x81\x26\x42\xb9\x33\x3c\xfe\x44\x94\xbc\x1c\xc6\x9b\x89\x5a\x66\xbc\x6e\x3f\x83\x7c\xb3\x62\x9f\xed\x3f\x63\x54\x18\x8f\x4a\x6a\xdc\x87\x7b\x1b\x20\x6d\x38\xc3\x37\x22\x7d\x2f\x44\x88\xa2\x5a\x55\x24\x20\x2e\x57\x55\x9e\xfa\x5e\xa1\x3b\x6d\x27\x7d\xfb\x0b\xd2\x8e\x46\xe3\x34\x16\x0d\x70\x45\xab\x4a\x75\xc0\x30\xcc\x5e\x68\x9e\xb8\x75\xb3\x20\x4d\xaa\x87\xcd\xd4\x47\x46\x2e\x4a\x9f\x87\x18\xea\x2e\x37\xae\x17\x2b\x35\x61\xdd\x05\x68\xa8\x0f\x4d\xbf\xe1\xe7\xa7\xea\x31\x47\x3c\xb6\xdb\x50\x31\x64\x3e\x55\x6d\x22\xed\x38\x9e\x33\xc6\xaa\x8c\xd2\x54\xe5\xa7\xb4\x95\x34\x9c\xa4\x71\xdc\x69\x46\x50\x73\xb4\x4f\xe8\x98\x13\x69\xf6\xac\xd7\xcf\xe2\xe8\xb3\x37\x54\x05\xa0\xa6\xae\xec\xad\x55\xa6\xca\x70\xa8\x79\x77\x69\xea\x68\xee\x6f\x4e\x55\xe6\x07\xde\x06\x65\x55\x80\x95\xff\xa1\x56\xa3\xe2\xd6\xde\x2e\xa3\xe9\x60\x90\x95\xc6\x9a\x63\xeb\x20\x9b\xda\xe7\xb4\x40\x06\x1a\xe9\xbe\x7c\x48\x51\x9f\x04\xe2\x00\x32\x54\x65\xec\x75\x43\x95\xf6\x41\xe5\x27\xc8\x42\x9f\x44\x99\x35\xbc\x56\x32\x10\x25\x30\xf5\x5d\xe0\xbf\x13\xce\xd9\x81\x73\xf6\xe5\x81\xf3\x92\xb2\x4a\xbc\xfc\xb2\x7d\x10\x7b\x43\x64\x3c\xd6\x3c\x1d\x9b\xe7\x4d\xd8\x33\x66\x42\xe1\x3c\x5f\xa1\x47\xbd\x4a\x1f\x03\x7b\xf3\x6b\x7c\x6d\xcd\xfe\x61\x7a\x76\x71\x3a\xe3\x28\x4d\x4c\x4b\x58\xeb\x74\x11\xc3\x43\x3b\x15\x97\xf8\x59\x06\x29\xad\x1f\x36\xfc\xa5\x0a\x54\x7a\x86\x1f\x9e\x69\xc2\x04\x3f\x02\x8a\xfa\xcf\xde\xc6\x67\x9a\xba\x47\xb5\xdb\xd2\x02\xdb\x26\xcf\x2e\x64\x80\x90\x1a\xf7\xf7\xb8\xa8\x24\xea\xbb\xbe\x9a\x5d\xd2\x5f\x17\xd3\xab\xab\xbf\x9f\x5f\x1e\xe3\xe4\x77\xe3\xe6\xae\xd7\xdb\x7f\xbc\x3c\x99\x3b\x57\xb3\xf3\x57\xd3\x6a\xbf\xde\x43\xbf\x01\x7e\x9b\x67\x48\x57\xa2\x87\xcc\xd0\x7d\x35\x3b\xba\xbe\x3c\x59\xfc\xfe\xed\xcb\xcb\xf9\xf5\x45\x27\x71\x3a\x50\x2f\x2f\xaf\x2f\xe6\x18\xa5\x7a\x35\x7b\x09\xcf\x6d\x0c\xfe\x18\x4a\xb4\x96\x58\x67\x7e\xf9\xd2\xa1\x94\x7e\x66\x64\x77\x93\x4b\x10\x67\x00\x72\xfb\x47\x1b\x45\x41\x0d\x1b\xcb\x05\x79\x46\x2b\x99\x4f\x38\x0f\x1c\x36\x25\x3a\x07\xe3\x14\xd1\xbf\x6f\x8f\x67\x6f\x09\x5e\x1b\xa1\x46\x9b\x94\x11\xc8\x2c\xee\x23\xec\x8b\x16\x50\x23\xef\x0b\x75\x6d\xb5\xdf\xc2\xba\xa6\xbd\xf1\x2d\xef\xc4\xf2\xdd\x84\x7d\x4b\x30\xac\x5a\x26\x1d\xeb\x44\xde\xd9\xaf\x3f\x25\x94\xc2\x06\xb3\x57\xba\xc9\x43\xb8\xa4\x04\x89\x00\x5e\x85\x71\xc3\xc6\x7a\x7b\x76\x72\x7e\xbd\xe0\x90\xf4\x09\xd0\x85\x8f\x66\xd8\x08\xce\x7f\x63\x0c\xf0\x2f\xe6\x4a\x78\x96\x46\xcf\xd0\x26\x42\xad\x96\x51\x80\x9e\x6d\xa5\x56\xf4\x35\x25\x40\x12\xce\xd3\xd3\xf9\xd1\xf4\x74\x06\x3f\x1d\x9d\xce\xa6\x97\x9f\x76\xb3\xea\x56\x22\x67\x67\xb0\x09\x4e\x4f\xce\x4e\x16\xb3\xc9\xec\x6c\x42\x94\xce\x35\x94\xca\x64\x24\xcf\x50\xe9\xf0\x4c\xba\x81\x3c\x0b\xa2\x55\x1b\xd5\xf6\xc7\x80\x33\xec\x4f\x80\xe7\x4f\x54\xc6\x23\x99\x14\x6e\xe3\x3c\x53\x13\xc6\xea\x4d\x6c\x43\xc5\x0b\x48\xc3\x99\x37\x3f\x7c\x58\x07\x9a\xa4\x16\x3a\x44\xf6\x48\x2c\x87\x99\x1f\x8a\x22\xe1\x1d\x25\x27\x70\x28\x16\xf0\x64\x7e\x8e\xf3\xcb\x9e\xeb\xff\x6d\x32\xf1\xfc\x04\x3f\x19\x8f\xad\x09\xba\x4c\x3f\x40\x08\xb6\x7f\xdc\xfe\xd3\xbc\x03\x43\xff\x83\xc1\xb8\xbd\x68\x8d\xd9\x43\x91\x87\x9b\x9e\xd1\xa6\x8e\x94\xe3\x6f\x38\x35\xf8\xac\x02\x88\xa6\x34\xec\x34\xb7\xc5\xcb\x26\xdd\xdf\x5d\xcf\x17\x53\x4a\x0c\xb1\x80\x0f\xa7\x6f\x8b\xa4\x14\xbe\xa3\x2e\xa0\xd2\x97\xb1\x03\x5c\x5e\x32\x8e\x64\xe7\xa6\xe2\x53\x4a\x99\x3a\x26\x1b\xd7\xcf\x2f\xa5\x09\xb9\xd0\x1a\xef\x8d\x0f\x49\x99\xed\x6c\x32\xff\x26\x21\x43\x6e\xaa\x6a\x7e\x0d\xd3\xb1\x33\x1c\x29\x5a\xe4\xbb\xac\x0d\x96\x2d\xb5\x7a\x71\x09\x4f\xf9\xdb\xc5\xfc\x2d\xa6\xb0\x79\x7b\x79\x7d\x3a\xbb\x7a\xfb\xe2\xe4\xb4\x5b\x0e\x69\x06\xde\x24\x3e\x4d\x2f\x7f\x77\x7d\xf2\x9a\xbe\xbd\x9c\xbd\xbc\x9c\x5e\x4d\x10\xd7\x18\xe3\x62\x21\x48\x2e\xbf\x73\x71\x3a\x3d\xdf\xd9\x0b\x3b\x2f\x9b\x16\x20\xde\x8d\x8b\x19\x6d\xfd\xe0\x1e\xde\x8a\xeb\x07\xef\xa6\xa8\xc8\xe4\xc8\x62\x10\xb5\x9e\xa8\x78\x9b\xa8\x94\x44\x0a\x0e\x65\xb3\xa7\xc4\x08\x95\x9f\xf3\x3c\x6f\xa5\x6c\x0f\xd0\x90\xd2\xd1\x6f\xba\x45\x96\xa6\x01\xe3\x8e\xc1\x11\xcf\x5b\x86\x0c\x37\xeb\xe9\x5c\x3b\xe4\x65\x20\xdc\xd8\xbb\x41\x45\x53\xfc\x8e\xff\x9a\x78\x37\x13\xb8\x60\x45\xa9\xd6\x14\x8e\x5e\x65\xda\x37\x9b\x01\x32\x08\xdc\xba\xdf\x0b\x0e\x9c\xc7\x74\x88\x79\xd6\x39\x99\x6a\x99\x9c\x39\x37\x22\x88\x0a\x1b\x73\x22\xbe\x71\xd7\xd5\x44\x3d\x2a\x52\xae\x59\x50\xeb\x73\xbd\x29\x06\x80\xaf\xa8\x49\x1a\xbd\x13\xa1\x73\x3a\xfd\x72\x76\xea\x5c\x5c\xce\x5f\x9f\x1c\xcf\x2e\x81\xed\xfc\xdd\xcc\xf8\x6a\x68\x02\x37\x7b\x39\x3b\x3f\x9e\x12\xc0\xd9\xf1\x7c\x07\xe0\xc0\x4d\x3e\xb9\x89\x01\x4d\x9c\xaf\xf5\x97\x97\x00\xfe\x72\xf7\x2d\x89\x11\x94\x7d\x47\x21\x41\x1f\xcd\x2f\x2f\x67\x8b\xf9\x25\x9f\x5e\xb9\xc3\xaa\x2f\xce\x2a\x74\xeb\x21\xdd\xb9\x31\xec\x17\x79\xbf\xf6\xbb\x94\x77\xfa\x8e\x74\x2f\xb3\xb2\x95\x39\x3a\xa6\x8a\x97\x39\xe2\xbf\xe5\xaf\x26\x74\x3d\x19\xb3\x75\x06\xa6\xd8\xba\x02\x37\x7c\x13\x53\xd1\x94\xea\x7d\xd9\x78\x3b\x96\xb3\x4d\x3d\xca\x1d\xfe\x21\x29\xb3\x5d\x71\x72\x8b\xd9\x39\x3f\xa6\x23\x96\xbd\xcb\x87\x63\x1c\x92\x76\xf8\xe9\xce\xcc\x70\xf2\xae\xcb\xd9\xf1\xec\x7c\x71\x32\x3d\xa5\x89\x0a\x9c\xab\xdf\x5f\x9d\xce\x5f\x4e\x8e\x2f\xe1\x30\x4d\x94\x4a\xcf\xc1\xdc\xbd\x89\xac\x71\x05\x1c\x16\x19\x2a\x65\x98\x83\x33\x84\xce\x16\x2e\x87\x86\xad\x31\xf9\x25\x85\x9b\x24\xe5\x00\xd5\xc2\x5d\x08\x8b\xc9\x88\xc6\xbb\xc4\x90\x64\xca\xa2\x4e\x54\x1c\x14\x64\x1c\x14\xc8\x0f\x18\xfb\x9b\x4f\x2a\x54\x37\x50\x49\x81\x5e\x94\x6d\x0f\xaf\x4f\x99\x57\x35\xb7\xb6\xec\x78\x39\x0d\xa4\xd9\xb8\x50\x5d\x97\x94\xd1\x8c\x72\xfd\xa0\xee\x5b\x9e\x20\x65\xca\x3b\x28\xe5\xb9\xb7\x85\x86\xa4\x2b\x78\x44\x2b\xb9\x9c\x11\xf9\x05\xf0\xe7\xf8\x07\xe7\x92\xe7\x51\xf4\xc1\x15\x03\x07\xce\xbf\x80\x1d\x98\x3c\x24\xf0\x10\x7f\xfe\xec\x59\x29\xbf\x89\x81\x62\xf3\x3f\xf6\xfe\xff\x27\xf7\x7e\x04\x74\x06\x62\xcc\xfd\xbf\x0b\xf1\xe3\x3b\x03\xbd\x6f\x7e\xcc\xa7\x41\x7a\x18\xb8\x50\xef\x71\xb7\xff\x03\xdc\xa0\x8b\x57\x73\xca\xef\xf8\xca\x79\x35\x9b\x82\xf0\x2a\x0b\x11\x4c\x17\x94\xe7\x71\x02\x8f\xca\x4d\x96\x3a\xf8\x8a\x33\xb8\xc1\x9b\x30\x6c\xff\x8f\xc5\x9c\xeb\x1b\xbc\x72\x8e\x40\x4e\x86\x57\xdc\xe9\xab\x79\x33\x1a\xf9\xba\x1b\x72\x23\xcb\x58\xd4\x52\x95\x87\x5b\x67\x12\x77\xd3\x5e\xf4\xdb\xed\xd2\x77\xa6\x19\x56\xa3\xa6\x0a\x60\x9b\xd2\x62\xd0\xdf\x72\x76\xaa\xe2\x72\x2f\x9a\x6a\xc2\xf2\x48\xf4\x48\xd5\x54\x2f\x4a\x9a\xfb\xd8\x53\xb0\xb9\x73\x43\x38\x91\x1c\xb9\xdc\x93\x12\x5d\x5f\x5b\x8a\xaa\x12\xb0\x39\x35\xdc\xef\x68\xb7\x9b\x2d\x21\xac\x58\x6a\x52\x4d\xf5\xa2\x2b\x07\xd3\xa0\x97\x1a\x89\x52\xbd\x72\xaa\x0f\xb1\x06\x9a\xa8\xb1\x48\x6e\x15\x4e\xfa\x50\x6b\x04\x64\x20\x8d\x1a\x85\x87\x05\xb1\x5a\x7d\xc7\xb8\x74\x37\xab\x3b\x6c\x68\xae\x69\x37\xca\x36\xd2\xab\xb1\x88\x6e\x50\x68\xf4\xa3\xb5\x51\xab\x31\x16\x75\x15\xd5\x46\x0f\xa2\x6a\x5a\x8c\xd1\x68\x91\xec\xae\xa4\x59\x99\x18\xb9\x5f\xf4\x82\x61\x4b\x61\x55\x2d\xd0\x67\xbe\xaa\x2a\x81\xa1\xf3\xc5\xf6\xaf\x89\x2c\x8c\x31\xb9\x0d\xdc\x95\xf3\x62\x86\x11\x0b\x33\x33\x67\x95\x1e\x10\x7a\x53\xc7\xaf\xa4\x01\xc4\x99\x03\xb0\xa0\xed\xde\xdc\xa3\x47\x36\xb6\x17\x1b\xb1\x58\x45\x9a\xf4\x40\x98\xb7\xb7\xc7\x69\x3f\xed\xfb\x98\xef\x32\xcc\x6e\x4b\x46\x4b\xeb\xfe\x58\x7d\x2c\x80\x5d\xbc\x18\x54\x22\xfd\x42\xeb\xd8\x7d\x6e\x73\x18\x79\x3f\x76\xa3\x01\x38\x2a\x37\xbe\xfd\x22\xc9\x24\x5a\xd2\x83\x8e\x8b\x4a\xc6\x0e\x39\x4e\x4c\x90\xd8\x67\x8b\xf9\x33\x99\x70\x97\x54\xa1\xb9\x43\x1e\xd9\x9d\xee\x44\x9e\x58\x8e\x62\x09\xf3\xe0\xd5\x72\x8e\x39\x19\xc7\x8a\x21\xac\x45\xe6\x46\x0c\x26\x7c\x32\x89\x9f\x60\x08\xa1\x7a\xb2\x36\x79\xf7\xd5\xe8\x53\xf9\x69\x57\x7e\x7a\x97\xdd\x90\x2b\xdf\xf2\x76\x22\xbe\xdb\x88\xd8\xa7\x34\xc9\xc1\x33\xe9\x0b\x78\x1b\x45\x37\x6e\xdc\x02\xe6\x7f\x7b\x76\x2c\x29\x4d\x8c\xda\xcb\x36\x62\x79\x17\xc1\xf3\xcd\x39\x7b\x98\x90\x7b\xa1\x81\xda\xa8\x06\xa8\x3a\xa5\xf6\xcb\x86\xc1\x2d\x65\xaf\xc7\xee\x1d\x5d\xef\x31\x00\x37\xc5\xdc\x7d\xc5\x55\xac\xdf\xa2\x1e\x0b\xfe\xc8\xf2\xcb\x48\x55\x8c\x60\x45\xf5\xd7\x65\x33\x45\xc2\x17\xe1\xd7\x46\x9e\x84\xad\x68\xf8\xe6\x62\x34\xa4\xd1\xae\xe1\x90\xa2\xc0\xd7\x03\xfd\x0e\x01\x3f\x3c\x2b\x4c\xc8\xac\x34\xb3\xc1\xd3\x83\x31\xab\xd6\xf6\xcb\xb7\x76\x37\xf2\xc1\x94\xb3\x25\x2b\xdf\x80\x0a\x9c\x3e\x4e\x01\x66\x54\x72\x60\x7a\x2e\x1e\xab\x38\xaa\xc4\xb9\xff\xfc\xad\xb2\xa4\xc3\xc7\xfc\x9d\x80\x9f\xd1\xb0\x7e\xff\x45\xf1\xf3\x17\xf4\x95\xd1\x6e\x6b\xc7\xa7\xa4\xf0\xb7\xf7\x9f\xe7\xaf\x08\xfa\x8c\x46\x6d\xfc\x50\x34\xf8\x42\x7d\xf9\xc5\xc0\xbd\x17\x15\x2f\x98\x4e\xca\x1b\xdb\xf6\xc7\x68\xe8\xf0\x33\xdc\xd3\x07\x20\x90\x0c\x9a\x98\xe2\x6b\x6a\xdd\x1b\x2b\x29\x52\xdb\x53\x92\xb5\x35\xeb\x8f\x87\x2b\x1a\x74\x23\xaa\xb7\xeb\x8f\x29\x8b\x57\xc5\x7e\x8d\x6e\x6f\x05\x25\x85\x56\x9b\x9f\x98\xb0\x3c\x1c\xdd\x87\xd9\x10\x18\xee\xfd\x21\xcf\x85\x92\xe2\xa9\x93\xa4\x42\xd9\x34\x14\x61\xf7\x6a\xd4\x9b\xf5\xc6\xc3\xa5\x36\xfa\x07\x2f\x34\xf4\x2b\xc5\x2f\x18\xf0\xad\xfd\x23\xb6\x98\x0b\xca\x08\x98\xdf\x2e\xe7\xb3\xbf\x7f\x6b\x7c\xbf\xc9\xce\xe7\xf3\xb3\x19\x96\x00\xc6\xab\xe5\x7c\xfe\x7a\x3e\x29\x7d\x31\x98\xb4\x26\xed\x77\x41\x6a\xf5\x2b\x43\x82\xed\x40\xda\xd2\xaf\xf4\xd3\x08\xdb\x84\x89\x76\x75\xb3\xa5\xa3\x55\x39\x88\x18\x7a\x47\x0c\xd4\x80\xe2\x8a\xbf\x3d\x9e\xbe\x6d\x8e\x1b\xa0\x5d\xf1\x56\xdf\x66\xb4\x01\xb6\xa8\xf9\xca\xa3\xe4\xaf\x7a\x8e\x51\xc1\xe5\x61\xcc\xdf\x36\x2b\xff\x4a\x23\x6d\x69\x32\xc2\x40\x4b\xca\x37\x1a\x96\x51\x60\x4a\xa5\xb3\xd2\xc0\xd1\x71\x1d\x1e\x86\x82\x2c\x49\xb2\xa7\xa4\x99\x81\x15\xbf\xef\x3c\x4d\x0d\x28\x37\x87\x3e\xc4\x30\x1a\x63\x6e\xd7\x95\x30\x97\xef\x4b\x1d\x06\x62\x8d\xd3\x9e\x58\xb9\xc3\x60\xac\x14\x21\x90\xa7\x3d\xc8\x6f\x81\x93\xf3\xe3\xd9\x3f\x98\x12\xb2\x03\xa3\xde\xbd\x37\x6d\x32\xe8\x4b\x84\xf7\x7e\x1c\x85\xa8\x2a\x98\xdc\xbb\xb1\x4f\xea\x3d\x32\xc4\xb4\x92\x86\xbb\xa1\x47\xef\xbe\x94\x25\x14\xaa\x52\xb2\x29\x17\xaa\x21\x4d\x71\x46\x03\x75\x6f\x0e\xb8\x7f\x09\xc6\x16\x95\xb0\xd9\x78\x06\x45\x62\xed\x35\xf8\xaa\xed\xba\x32\xa0\x8a\x3b\x8e\x7e\xcd\xec\x1a\xac\xba\x65\x55\x6d\x1f\x0b\x0a\xd2\x49\x59\x15\xed\xcc\xce\x5f\xbf\x7d\x3d\xbd\xac\xfe\xf1\x7a\x7a\x7a\x6d\x32\x4d\x39\x2c\xba\xd2\x1c\xe8\x36\xbf\x1c\xb2\x95\x52\x94\x59\x26\x94\x9d\x32\xb7\x75\xa0\x04\x73\x39\x3f\x9d\x19\x3d\xeb\x6b\x20\xa4\xd1\x03\x41\xbc\xb8\x3e\xa7\x70\x9e\x81\x2f\x75\x44\xc0\x2f\x15\x04\x4a\x2f\x1b\x63\xc2\x8a\x7e\x47\x3b\xdd\xac\x08\xe9\xe6\x53\xe6\xee\x52\x46\x23\xd8\x0f\x42\xab\xb1\xef\x9a\xdb\xe8\xa7\xde\xd6\x3b\x2b\x58\x03\x28\xde\xdd\xdc\x2c\x85\xf5\xda\xe2\x15\x50\xa5\x4d\xae\x64\xb2\x11\x37\xbb\x0a\x93\x7d\xb4\x3d\xb6\x1f\x84\xfd\xc7\x5e\x48\xc8\xdd\x64\x97\x05\xe2\xa1\x38\xcb\xfb\xf0\x2d\x6d\x3e\x33\x99\xce\xac\xf3\x10\x9a\x0c\xee\xaa\xc6\xc6\x96\x38\x73\x35\x60\x9f\x55\x28\xf5\x1a\x69\x3d\x0c\x47\x3d\x68\xbc\xa9\x51\x84\x78\xbd\x99\x0d\x9e\x8e\xa3\x65\x42\x83\x31\x08\x1b\xfa\xfa\xbc\x62\x46\x78\xc3\x60\xe5\xea\x3e\x08\xa3\x81\x99\x36\xb8\x7c\x48\x93\x8d\xac\x13\x79\x53\x57\x65\xfa\x1a\x30\xe7\x59\x38\x62\xc2\x0d\x3d\xb0\x71\xa5\x7b\x89\x6b\xac\xa4\x1b\xcd\xe0\xf6\x97\x76\x23\xc7\x37\x34\xf1\xc6\x2e\x20\x0d\x8c\xbe\xfb\x55\x01\x1f\x25\xed\x86\x1e\xd8\xd8\xbb\xa3\x6e\x89\x27\x0b\xbc\x99\x4c\x68\xd6\xd9\x82\xa6\xb1\x6c\xb1\x35\x48\xa3\x5b\x63\xb3\x50\xfb\x4e\x34\xa0\xaf\xfe\x36\x1c\x4a\xcb\xc0\x77\xe1\x0e\x90\xf1\x5f\x86\x8c\x62\x47\x0a\xeb\xf1\x46\xec\x01\x61\x10\x75\x83\x9f\x20\x0d\xc0\xf6\xf7\x08\xc9\x36\x5e\x5b\xae\x0e\x76\x3c\x51\x1e\x56\x2a\x25\xc8\xd7\x8d\x19\x3b\x64\x9e\x98\x77\xf0\x55\x16\xe2\x07\x83\x53\xa6\xc7\xac\x9c\xb1\x72\xe4\x34\xda\xfe\xd8\x6d\x67\xa4\x7f\x86\x0a\xe4\x0e\xa8\xed\x97\xb6\xc2\x41\xa1\xae\xce\x7f\x73\x78\x78\xd6\x41\xba\xff\xd6\x86\x61\xbb\x4e\xfb\xc9\x73\xd1\x0c\xfc\x51\xf2\x5c\xe4\xa8\xab\x79\x2e\xf0\x4c\xe0\xb2\xa0\x4f\x8c\xf1\xea\x1b\x02\x19\x48\xe3\xe0\x04\x0b\x1a\x70\x63\x27\x58\xa8\xa1\x1a\x33\xc1\x82\x11\x68\xbd\x6f\xdf\x04\xe3\xf2\x5a\x93\x1b\x9a\x5d\xe8\x92\x0a\x8d\xbf\x3c\x1d\xfb\xb3\xe9\x3f\x4c\xd4\x21\x9e\x34\xc7\xea\x1b\xf0\x81\x47\xe2\x62\x1f\x60\x34\x18\x59\x7b\xe3\x26\xfe\x72\x92\x67\x71\xa9\x8c\x66\xf7\xf7\xe1\x8b\x36\x6a\x38\x74\x7b\x88\xae\x16\xdb\xc8\x01\xe5\x9d\xb8\x4c\x82\x69\x4d\xb7\xc9\x3e\xe6\xaf\x21\xa3\x8e\x16\x5b\x5b\x40\x32\x27\xbc\xa9\xcd\x61\x22\xc2\x3b\xf7\x51\x27\xb0\xc7\xce\x5c\x5c\xa2\xd8\x3a\xbb\xbc\x04\xb6\x0b\xd3\x35\x5d\x60\xa5\x0d\x98\x23\x8a\x31\xc6\xac\xc1\x17\x6e\x7a\xf7\xe3\x8f\x30\x37\xf0\x79\x16\xc7\x9a\x2c\xe8\x15\x68\x00\xec\x64\x7a\x7e\x3c\x57\x57\x27\x56\xe5\x40\xb0\x7a\x88\xe6\x9c\xde\x0d\x29\xff\x31\x4d\x56\x02\x04\x38\x85\xf7\x69\x74\xeb\x20\x17\xca\x4d\x90\xc4\x85\xda\xa9\xb6\x87\xd4\x8b\xda\xe1\x94\x5e\x88\x78\xed\xa7\xbe\xac\x51\x5a\xae\x79\x90\x94\x8b\x1e\x60\x72\xa5\x95\x55\x1d\x86\x5e\x64\x3a\x4f\x8f\xb9\x4a\xc0\x73\x47\xb1\x4b\xe1\x7d\xaa\x9d\xe6\xd1\x60\xf7\x19\x11\xae\x2d\x55\xd3\x58\xbb\xf1\x3b\x91\x02\xfc\xa5\x28\x72\x76\x61\xea\x68\xcc\x56\xe9\x16\x55\x8a\xf5\xe5\x51\xce\x31\x69\xf6\xf6\x67\x67\x13\xa9\x0a\xdc\xe2\x3b\xff\xc6\x8f\x4b\xd3\x5f\x49\x74\x15\x46\xce\x5a\xc4\x4b\x97\x32\xb5\xaf\x1d\xcc\x48\x51\x94\x4f\xe1\x92\xc5\xb2\x8a\xb1\x4d\x75\x8a\xf2\xf8\xa8\x04\x96\x2c\xb8\x8a\xd4\x52\xf1\x86\x9d\xa4\xf0\xbd\x07\xbc\x0f\x14\x7d\xc7\x37\xc2\xd9\x89\x23\x58\x25\x5c\x84\xec\x26\x59\xc6\x58\x45\x1a\x0b\x9e\xe4\x45\xc9\xc7\x39\x3d\x48\x6b\xb2\x11\x4b\xff\x16\xcb\xfc\xa6\x77\x0e\x3e\x53\xa9\x40\x08\xbf\x58\x9d\x88\x2a\xba\x25\xed\x09\xdb\x1b\xb6\x17\x03\xa4\xaa\x5d\x58\x09\x7d\x23\x8b\xe9\xde\x04\xd1\xb7\x99\x80\x2f\xb1\xd4\x75\x92\xff\x95\xf8\x6b\x38\x37\x6e\x28\xb8\x94\x97\x4d\x62\xf7\xa6\x81\x20\xab\xa6\x07\xb9\x57\x54\x3c\x39\xe6\x87\xb9\xa7\xab\x5c\xac\x1f\x4f\x05\xaa\xa8\xc2\xdc\xc7\x48\x72\x2d\xc4\x8d\x9f\x26\x34\x0c\x5c\x95\x67\xbc\x38\xb6\x83\x20\x58\xb0\xb3\x0a\xe8\x70\xce\x97\x51\xf8\x4d\x16\xa6\x54\xcb\x23\x5f\xaa\x67\xa5\x85\xb2\x1a\xce\x9d\x1b\xae\x50\xf8\x70\xee\x7d\xf1\x9e\x02\xc6\x72\x87\xaf\x65\x04\xe8\x0e\x90\xf7\xbc\x93\xb6\xd4\xc0\x87\xdb\xe2\x80\x46\xb9\x16\x6b\x8c\x1f\xa3\x6f\xb8\x6c\xbf\xbe\xac\xce\x34\xc0\x64\x33\xb1\x13\x65\x8a\xbb\xb9\x32\x01\xbf\xe7\x52\x69\xf5\xf2\xdd\x73\xc0\x70\x31\x4d\x0d\xa2\x5f\x46\x4e\xbc\xfd\x65\x05\x67\xed\xc0\x11\xea\x27\xe8\x01\x34\x60\x79\xf2\xbc\x14\xf2\xb0\xb2\x3c\x72\x2a\xca\x87\x9f\x07\xb6\x53\x45\xa8\x9d\xb1\x59\x80\xe8\x4b\x1f\x05\x0e\x2b\x19\xba\x95\x92\x33\x82\x8a\x7b\x89\x44\x45\xdc\x4c\x03\x4a\x0a\x13\x6a\x8c\x44\x50\x78\x75\xd5\x35\x14\x6a\xae\x24\x02\xc8\xed\x4a\x69\x1c\x61\xee\x6b\xc4\x49\x05\x83\x50\xa7\xae\x43\xda\xd1\xda\x1c\xab\x8c\xa3\x7c\x25\x02\x8d\xd5\xb5\xb1\x51\x6f\x1c\x78\xb7\x75\xe2\x08\x2b\x8d\x8c\xa5\x70\xd9\x1b\xab\x4e\xca\xcf\x54\x9f\x32\xac\x84\x84\x0a\x9c\x30\x69\x53\x81\x1b\x95\x2a\xe2\x87\x2e\xa5\xb1\x3a\x7a\xa1\x42\x4a\x9f\xb9\x01\x9c\xc8\x43\xc7\xb9\xe4\x98\x00\x04\x50\x03\xab\x82\x4f\x3b\xc0\x63\xdd\x1a\x0f\x36\x6f\x29\x71\x56\x9a\xa8\x06\x7c\xf9\xd3\xbd\x96\x68\xaa\x17\x8e\x38\xb0\x0f\x36\xa4\xa1\x8b\x98\x50\x99\xd0\xd2\xe2\x38\x79\x6c\x2c\xbc\x19\xb1\x5e\x29\x7e\x64\xc9\xe9\x09\x8c\xf2\xf7\xc0\x73\x81\x97\x07\x1e\xa0\x7b\x28\xac\x68\x74\x9e\x5b\x7a\x11\xd5\x58\x62\x51\x8d\x85\x0b\x8d\xca\xe6\xe5\x61\xfb\xe1\x7d\xf4\x4e\x37\x85\x40\xc0\x2b\x90\xb5\xef\x31\x75\x19\xd6\x2d\x4d\xee\x88\x94\x5b\x3f\x06\xe9\xef\x36\x0b\x02\x24\x09\x80\x21\x5f\xe4\x88\x65\x7f\xbd\xc1\xd2\xa7\x20\x8d\x55\x68\xc5\x9f\xa8\xb4\x0c\xfe\xb1\x4b\x31\xd3\xd6\xbe\x73\x34\xb3\xf8\x1f\xf3\xd7\x34\x7f\x7d\xb7\x29\x55\xbe\x05\x91\x41\x13\xde\x17\xad\xe9\x56\xe0\x2a\x41\x21\x08\x34\xd0\xc0\xee\x91\x12\xad\x37\x68\x65\x45\xbc\x30\x21\x2c\xb8\x24\x77\xee\xe7\x0e\x39\x99\xe1\xd8\x1b\x62\xdf\xfd\x40\xcb\x6f\x87\x42\xec\x49\x3d\x15\xfe\x42\x04\x78\x65\x15\x3c\x45\x86\x3b\x1c\xf0\x8e\x59\xbb\x0f\xf0\xe4\x79\x87\xa9\xfb\xde\xdf\x61\x0d\x6a\xed\x25\x38\x16\xdc\x1e\x23\x09\x43\xb1\xa4\x0c\x85\x5e\xb6\xde\x50\x11\x7b\xb1\xa4\x2a\x49\x18\x21\x4d\xb2\xcf\xb8\xf5\xcb\x74\x76\xd0\x08\x69\x71\x51\x4a\x5c\x47\x58\x2d\x19\xf7\x1a\xd1\xc1\x34\x89\x22\x47\xf4\xd8\x05\xcc\xec\x4c\xa9\xc5\xe4\xa5\xae\x4f\x67\xf4\xa3\x9a\x35\x3c\x9f\x7e\x98\xb9\x1e\xbf\x96\x3e\xb6\xc9\xdb\x3c\xd0\x4e\x8f\xb2\x78\x29\x4b\xb3\x4b\xda\xae\xe8\x2b\xa0\x90\xab\xc2\x49\x0f\x2d\xf9\xe3\x82\xfe\xe2\x1f\xf7\x54\x49\xef\x63\x22\xad\xc7\x7c\xe2\xad\x82\x3c\x1c\xbd\x81\xa8\x64\x65\x4b\x51\xc2\x37\xe1\x0c\x2b\x8d\x3f\x77\x3a\xb5\xb7\xf4\xc8\xbd\x8d\xfc\xd2\x2b\xf7\x5e\x55\x57\x75\x35\x65\x06\x35\x18\x2c\xc6\xb3\x84\xe5\xa8\xf2\xed\xe7\x8e\x52\x14\x47\x5a\xe5\xb3\x05\x08\x0b\xfa\x3c\xcc\xd6\x4a\x3a\x7f\xbc\x60\x96\x5c\x55\xd2\x81\x57\x16\xbd\x67\x3c\x1f\x98\x17\xa6\x6a\xf9\xcf\x7d\xa6\x59\xc1\xc4\x07\x37\x81\x48\xf1\xa1\x4c\x45\x44\xa1\xf3\x8d\x1b\xdc\x45\x8e\x9b\x66\x6e\xf0\x9f\x07\x91\x7e\xcb\x55\x76\x65\x6d\x57\x87\x33\x92\xf5\xa1\x53\x09\x01\x31\xf6\xdd\xfe\x12\x02\x89\x54\xc1\xf4\xcf\x76\x42\x41\x95\x2e\x38\x55\x78\x22\x3c\x12\x76\x72\x86\xf5\x04\xcf\x96\xaa\x87\x63\x47\x6b\xa1\x66\x20\x5d\x0c\x08\x34\x11\xbc\x22\x6a\x58\x50\x4b\x2b\xb1\x8c\x30\x18\x52\x25\x50\x51\x42\x7a\xb1\x14\x27\xe6\x02\x7e\x38\xd7\x97\x92\xd5\x8e\x85\xd4\x95\x34\x0c\x1a\x84\x1e\xb0\x2d\xf5\x6d\xac\x84\x6a\x4f\x4b\x76\x53\x9e\x3d\xbb\xa1\xb4\xf2\x13\xbe\xb9\x72\xd6\xb3\xfd\x53\x0b\x32\xeb\xe1\x55\xd8\x72\xce\xbd\x61\xf5\xbf\xe7\x37\x20\xb3\x71\x23\x56\x63\x0b\xd0\x82\x76\x98\x95\x44\x38\xf0\xb0\x20\x35\x78\x98\xad\x6f\x04\xf3\xdc\x93\x10\xc4\xc8\x7e\xab\xe0\x86\xf0\x12\x4d\x88\xdd\x84\xdb\xbf\xac\x45\x0c\xbc\xc6\x25\xd8\xd0\xb6\x19\xa8\x05\xc5\xb0\xc2\xbe\x4b\xc5\x45\x4a\x16\x83\x3e\x64\x2a\x00\x64\xea\x22\x08\xac\xfa\x1e\x89\x2a\xb6\xb9\x76\xe9\xe2\x5b\x49\x22\x8e\x0c\x9f\x98\xa6\x61\xb7\xb8\x14\x2d\x60\xd7\x1c\xd2\x4d\x35\xdd\xf8\xbd\x2f\x6b\xb6\x22\xc5\xf9\xd6\x2b\x95\x92\x46\x2b\x53\x1b\xe0\x7e\xd4\x86\x4f\x52\x95\x9e\x3c\x15\xeb\x0d\xbd\xa9\x48\x04\xce\x36\x98\x19\xac\x0f\xbd\x6c\xc3\x94\x75\xde\x08\x5a\x14\x73\xb9\x18\x56\x10\xd7\x00\xf6\xa7\x33\xda\xc0\x8b\xbe\x50\xca\x6b\x1f\x94\x4d\x87\xe4\x26\xf6\x0b\xfa\x72\x38\x43\x28\x7a\x1f\xa3\x2e\xfc\x7b\x7f\xd3\x9b\x98\x55\xec\xde\x97\x66\x0b\x40\xd8\xd0\xa1\xf2\xca\x37\x0c\xa6\xce\xe2\x68\x71\xb2\xf5\xb0\x71\x2b\x7c\x32\xf9\xa9\x8f\xfa\x35\x92\x94\x71\xc7\x04\x2e\xd9\x42\x13\xcd\x2b\x5f\x11\x91\x8b\x1b\x62\x0d\x7f\xba\xb5\x2d\xce\xdb\x25\x89\x70\xba\x00\xa4\x1f\xc5\x23\xd0\x9a\xde\xb9\xb0\xd3\x5d\xd4\x22\x22\x8d\x9e\x73\xf3\xe0\xa0\x66\x08\x50\x27\xce\x53\xf2\xed\x98\x44\x61\xf0\xa0\x31\x78\xef\x50\x8f\xd5\x92\x36\x11\xdb\x1a\x9d\x8c\x0a\x2f\xa1\x59\x78\x83\x85\x0d\x23\xcf\xa5\x1a\x00\xa5\xa1\xa1\x91\xef\x69\x12\xf1\x73\x8e\x30\x5a\x59\xc0\xd5\xc0\x42\xf1\x9e\xcc\x11\x1d\x04\x87\xd1\xfd\x30\xeb\x83\xc2\x47\x6f\xd3\x35\xab\xf7\x69\xc1\x49\x95\xa1\xb3\x3a\xa9\x19\x83\xbe\xe8\x02\x86\x00\xb6\xff\xcf\x1a\x84\x37\x5e\x62\x90\xcd\x44\xb5\x7f\x7f\xa2\xaa\xf5\xff\xbb\xd7\xae\xa1\x9a\xff\x30\xf4\x2c\x5a\x51\xc5\xdf\x8e\x54\x65\x8a\x04\x76\x91\xf4\xa8\x13\x96\x8d\x58\xca\x6d\x5f\xb2\x59\x8f\x41\x12\x3b\x32\x76\x93\xb3\x8c\xe0\xc9\x03\x4f\x9c\x8a\xcd\x7c\x0c\x02\xba\xed\x75\xf9\xf6\x28\x8c\x8f\xa3\xcd\x82\xde\x05\x42\x0d\x5e\x2a\x4a\x86\x60\x42\xdf\x4f\x3e\x13\xc8\x0e\xa5\xf0\xd8\x8f\x1f\xca\xf3\x81\x79\x47\x89\x21\xe6\xfa\x9b\x51\x39\x21\x59\x88\xf3\x57\x51\xc9\x6a\xcc\xbc\xf1\x0e\x98\xd5\x8d\x80\x9d\xb9\xc9\x92\x3b\xf4\xf0\xc8\x96\x4b\x91\x24\xa4\xe3\xd6\x68\x5b\x46\x05\x6e\x31\x26\xe0\xaf\x06\xf3\x5b\xb9\x60\x6c\xf1\xa1\x42\x60\x67\xa0\xa8\x5e\x52\x5a\x83\x44\xa4\xd8\x88\x5c\x59\xb0\x95\x7e\xd6\x06\x80\xb3\xa0\x7b\x5c\x8d\xa6\x76\xca\x51\x85\xb9\x07\x45\xe5\x90\xe1\x17\x52\x23\x40\xfd\x52\xfd\x71\x6e\x3c\x1c\xe3\xfe\xfd\x49\x93\xf2\x09\xba\xca\xd0\x27\x39\x05\x78\x82\x76\x26\xcc\x66\x25\x72\x69\xa5\x8e\x81\x98\xcb\x0e\x8a\xd1\xa7\x7e\x94\x41\xec\x9f\x4c\xf6\x52\x07\x88\xbf\xc3\x0f\x03\x48\x5d\x36\xc0\x19\x9d\x5a\xbe\x70\x00\xe2\x2b\xb8\x18\x42\xcd\x8e\x19\xf1\x48\xc7\x72\x60\x25\x94\xcd\x5b\xe8\xf1\x8e\x75\xc3\x34\xd8\x8d\x64\x20\x1d\x55\x29\x14\x41\xab\x6f\xde\xd2\x37\xf9\x8c\x67\xf9\xc8\x3b\x89\x6c\x90\x54\x1b\x01\xab\x49\x6d\x02\x6d\x33\x92\xba\x40\x2b\x29\x3f\xe2\x4b\x09\x97\xce\x6c\x92\x39\x2b\x93\x5e\xce\x4d\x72\xea\xdb\xc1\xdb\x8f\x41\x86\xf2\x00\xf4\x41\xc7\xb9\x41\x3c\x2e\xc1\x1c\x7d\x4f\xd7\xc5\xe7\x5d\x7d\x6a\xef\xab\xbb\xf7\xda\xb5\xeb\x72\xad\xae\xf1\x51\x17\x97\xca\xaf\xb4\xdd\x9a\x83\x2e\x48\x20\x17\x18\x1a\x3c\xe3\xef\xf0\x15\x5f\x07\x3d\xfe\x42\xd3\x82\x35\xde\x3b\x23\x5c\xfe\xba\x6b\xad\x3f\x78\x63\x6f\x94\xea\xe0\x6a\xfb\xa1\x69\xe3\x5a\xee\xd0\x96\x1d\xd7\xb4\x3d\xf7\xb1\x0b\xd9\x0d\xb4\x56\x30\xfc\x83\x9e\xd4\xbc\x56\x37\xa9\x9f\xf2\x4a\xdd\x1f\xdf\x01\xa6\xa9\xcb\xed\xed\x0c\xd2\x76\xf4\xe5\x61\x56\xe0\x8d\x4b\xb8\xac\xee\xa9\x09\x39\x6a\x6a\x63\x83\xc1\x79\x2f\x62\xe1\xc4\xe2\x1b\xe9\x99\xb2\x09\x84\x9b\x08\xf2\x7c\x73\x57\xae\xce\xc1\x8e\x81\x2c\x7d\xd7\x27\x17\x16\x77\x4d\x50\xfc\xd4\xf5\xd0\xa1\x1b\xf7\xc4\xad\x7b\x1f\xc5\x07\x4e\x4a\xea\xc7\x30\xba\x1f\xe0\x85\x2f\x1f\xa8\x47\x2f\xb0\x2c\x45\x6e\xc3\x62\x73\xc4\x6b\xfe\x4b\x27\xe1\xf4\xec\x6e\x43\xd7\xd1\x69\x05\x70\x2f\xa2\xba\xfb\xf6\xa6\xe8\xa2\xcb\x63\xfc\x8a\xfc\xc4\xc9\x04\x35\x00\x8d\x72\x10\x77\x3c\x9f\xed\x50\x6b\x37\x5d\xde\x99\x20\x45\x4f\xc8\xed\x4f\x81\xef\x59\xa9\x43\xb3\x24\x8d\xd6\xe5\x68\x8c\x07\x36\x94\x3f\x15\x87\xab\x43\x0c\x77\xcc\x7f\xfa\x14\x83\x1d\x5e\x9e\x2c\x48\xd9\xc5\x3f\x3f\x69\xa8\x67\x73\x27\x40\x76\xcb\xe4\x3f\x45\x6f\x8c\x3f\x7e\x38\x84\x76\x4f\x72\x38\x5f\x5e\x4e\xcf\x8f\x5e\x0d\x04\xf7\xff\xf3\xc4\xbd\x08\xa2\xcd\x13\xba\x1a\x9f\xe4\x7f\xdd\xc0\x7c\x2d\xef\x3e\x6d\x57\xe4\xe4\xaa\x00\x67\x03\xbb\x24\x0a\xdd\x92\x09\x80\x2c\xfa\x72\x06\x44\x56\x99\x82\x8c\xe8\x45\xf2\xf9\x77\x0b\x92\x9b\x4d\x07\xfa\xcb\x99\x97\xe9\x4e\xb8\xe8\xb0\xca\xee\xaf\xcb\x20\xa3\xe0\x0f\xf2\x7e\x89\xc5\xb7\x99\x48\xd2\x03\x87\x6a\x4e\x49\x63\x89\x0c\x8c\x81\x6b\x0e\xa3\x77\x7c\xe0\x48\x4e\xea\xaf\x75\x19\xe0\xdc\x1b\x01\x8f\x95\xe0\x0e\x43\xaf\xca\xb3\x22\x1d\x00\x09\xa9\x8f\xf3\x03\x3f\xc3\x46\x8d\x0e\x9d\x2b\x5f\xb5\x89\x9b\x0c\x2a\xeb\xed\x5f\x08\x33\xdc\x12\xf7\xe2\x7b\x3b\xdb\x2c\xa7\x14\xba\x6a\xa5\x5a\x65\x0b\xb2\xc9\x23\x7e\xec\x26\x77\x37\x91\x1b\x7b\x64\x6a\x87\xa5\xd5\xf0\x19\x6d\x5b\x73\x8c\x68\x1b\x56\x46\xa0\x58\x48\x5f\x37\x12\xf6\xda\x31\x4b\x7b\x32\xea\x43\x91\xfd\xb3\xa6\xc2\xc3\x65\x87\x27\x65\x62\xa5\xf4\xaf\xd0\xc1\x72\x4d\x1f\x6a\xcc\x7a\xf6\xa0\x86\x6a\x0c\x9b\xd8\x43\x2f\xa9\xf4\xc3\x60\x8b\x68\x8e\xb1\xc3\xf9\xaa\x84\x4e\x3d\x37\x86\x60\xd3\x4f\x6d\x81\x8c\xd7\x78\x08\x26\xd2\xb0\x18\x61\x8a\x07\x62\xea\x61\x4a\x2b\xcd\xe6\x7e\x8c\x69\x3b\x44\x75\x18\xd3\x4a\x04\x8d\x65\x4e\xdb\x21\xa1\xd3\x9c\xa6\x88\x18\xcd\x98\x56\x90\x50\x7e\x73\xf7\xd9\xe3\xd5\x27\xf5\x20\x12\xb4\xf6\xbc\x12\x6a\x7b\x8b\x5e\x15\x97\x7c\x39\xb3\x13\x4e\x11\x4a\x14\x82\x84\xe5\xaf\xf8\xba\x2c\xb7\x63\x37\xe3\x20\xe8\x4a\x8f\xea\xec\x07\x8b\xa9\x08\x90\x63\xd7\x3a\x0e\x94\xa6\x73\x80\xe3\x80\xc2\x45\x4e\x16\x5c\xc1\xdb\x91\x15\xbc\x49\xea\x01\x52\x41\x44\x10\x6c\x20\x84\x0d\x26\x05\xd6\x0d\x08\x05\x28\x9b\xb0\x69\xac\xdd\x1d\x43\x11\x99\x7b\x5a\x20\x03\x4a\x9c\xed\xaf\xf1\xed\xf6\xcf\x39\x0a\x17\x24\x1a\x94\x1b\xd0\x55\x83\x03\x5f\xe0\x70\xfc\x19\x9d\x43\x37\xc2\xa5\x8e\x1c\xb9\xba\xb1\x71\xc5\x50\x23\xd4\xc7\xde\x96\x66\x73\x50\x84\x6c\x81\x4d\x67\xf3\x2c\xb3\xe4\xa1\x56\x4f\x89\x71\x89\x6c\x07\xa3\x58\xb4\x48\xa5\x7b\x1a\xb5\x75\xad\x9e\x11\x8c\x2e\x31\xf7\xea\xe0\xb1\x8e\xe7\xd6\x41\x04\x3c\xa6\xb5\x94\x07\xf0\xf1\xd8\x4b\xf3\x09\xb0\xb5\x97\x16\x03\x1a\xdf\x62\x9a\x13\x37\x82\xee\xb7\xa0\xb3\xd5\x3c\x3a\xfa\x9c\x0e\x52\xe8\x16\x04\xef\xcd\x14\x9a\x13\x3a\xd8\x14\x5a\x10\xbb\x4f\x63\x68\x4e\x6f\x6e\x05\xbc\xc4\x0f\xa6\xa4\x29\x23\x60\x53\xa7\x01\x34\xd0\x8b\xae\x1f\x05\xbb\x5d\xfa\xe3\x1f\xd3\x02\x59\x50\xf8\xa8\x36\xc8\xd2\x58\x4c\x6c\x90\x06\xe4\x1b\x3c\x0e\x9a\x35\xc5\x63\x50\x3f\xc8\xfa\x58\x3e\x41\x8f\x63\x7f\xdc\xa1\xff\x11\x8d\x19\xc5\x68\xdb\x0d\x8f\x62\xfd\x61\xec\x16\xc5\xbc\xb4\x9b\xeb\xfa\xac\xec\x60\x78\xb6\x94\xe7\x26\x92\x6a\x54\x4b\xf1\x3d\x85\xb4\xd8\x2f\x5d\x69\x29\xaa\x78\x0a\x49\xa6\x8c\x67\x1f\x4b\x34\x86\x69\xa9\x18\xd0\x63\x18\x97\x8e\x45\xb2\x8c\x7d\xca\x21\xf5\xbc\xb4\xe7\x4b\x5f\xeb\x54\x89\xd4\x8a\x58\x9a\x41\x67\x73\x9a\x38\x63\x93\xe3\x92\x8b\xa6\xca\xa0\x93\x6b\x81\xcb\x91\x50\xed\xa4\xd9\xc0\xb0\xa5\x10\x1f\x8b\x39\xdb\x8a\xe2\xdd\x04\x40\x51\x48\xdf\x2b\x77\x7f\xdd\x84\xba\x37\x7e\xe0\xa7\x18\x99\x81\xa0\x23\x7e\x1e\xe6\x5c\x29\xca\x64\xc4\x5e\xf9\x06\x91\xe9\x8f\x5c\xfc\xb5\xc5\xed\x7f\xac\x31\xe6\x13\x58\x1e\xa2\xe9\x22\x18\x81\xe8\x4d\x1f\xaa\x28\x4a\x31\x39\xa8\xa0\xe0\x3c\x2d\x14\x64\x81\xb3\x2f\x4b\x1b\x18\xcd\x7a\xa7\x3a\x56\xaf\xdd\x28\xd1\x04\xe8\xc9\x6f\xd6\xb9\x15\x6e\x9a\xc5\xb0\x5e\x11\x6b\x1a\xb8\x16\xce\x9d\x7b\x5f\x99\x98\xd0\x23\x7b\x47\x96\x70\x6f\xd9\x49\xc3\xc6\xf7\x88\xaa\xe7\x1a\xd0\x83\x95\xc1\x63\x0a\x3d\xdc\xf4\x3f\x60\x7a\x11\xb7\xec\x4a\xda\x7a\xab\xf7\xbb\xbb\xd4\x4a\xd1\x93\x55\x9d\x10\x3e\x12\x55\x9c\x74\x28\xda\x6f\xf3\xd1\xa4\x96\xfa\x0c\xe0\x04\xc3\x31\xe7\xa4\x93\x30\x1d\xad\xe3\xbe\x2d\x31\x84\xd2\x24\x74\x3f\x71\x5b\x26\x01\x4e\x3e\xc8\x65\x68\xe3\x92\x19\x08\x75\xc2\x0c\xcd\x4e\x5b\x88\x50\x79\x6e\x06\xbd\x97\x07\xcd\x0d\x6e\xcd\x41\x2f\xd6\xd1\xe6\xa9\x1e\x1e\xb6\x9f\xc7\x6f\xc3\x64\x35\x1c\xa5\xae\x59\xdb\xc7\x8c\x35\x1d\xaf\xee\x59\xdb\x9f\x9a\x00\x13\x12\x72\xe2\x41\x36\x5e\x7f\xf1\x57\x7f\x7d\x76\xe0\x7c\xfe\xd9\x17\xbf\xc5\x7f\x5e\xb6\x6b\x6c\x4f\xf3\xd4\x81\x95\xac\x82\x9d\x60\xfa\x90\x86\xe6\x71\xb4\x70\x07\xf0\x74\xa4\x64\x42\x29\x70\xd7\x3c\xa9\x4b\x2b\x69\x33\x99\xf2\x95\x5b\xab\x84\x86\x79\x1e\x07\x52\xd0\x0d\x51\xdd\x46\x32\x91\x45\x10\xc5\x18\xa9\x1c\x65\xe9\x26\xeb\x48\x7f\xc0\x8d\x81\x26\x77\xfb\x8b\x9d\x3a\x35\x52\x1a\x75\x65\xc7\xa3\xa4\x27\x32\x68\x8f\x66\x87\x0b\xe0\x2b\xad\x3c\x5d\xde\x9b\x58\xdc\xfb\x11\x4e\x02\x46\xea\x24\x9c\x79\x89\xbb\x74\x04\x56\xa3\x4a\xdd\x17\x45\x38\x53\x77\x8c\x9f\xfe\x32\x67\xf2\xb9\x9e\x99\x8c\x93\x71\x6f\x31\xa4\x0a\x29\xd3\x09\x14\x44\x8d\x1f\xfa\x4b\x19\x17\x2e\x69\xc8\xb3\x46\xb8\x9b\xed\xaf\x89\x83\xc5\xda\xec\xd6\x72\x99\xa1\xe7\x14\xa7\x02\xc8\xe2\xc0\xc0\xe8\x8f\xde\x1e\xb8\xed\x55\xd7\x42\x66\xb7\x76\x00\x60\x1d\x28\x1f\x9d\x52\xca\xf0\xf6\xd3\x77\xac\x14\x9d\xba\x3e\x3d\xf1\x27\xcf\x3b\xd1\x95\x9b\xf4\x80\xfe\x3e\xc4\x68\x71\xc7\x4d\x31\x8e\x3c\x85\xe6\x7e\x20\x3c\x95\x92\x06\x93\xbe\x60\x9a\xf7\x6b\x4e\xfa\x47\x8e\x2c\x94\x68\xeb\x20\xcf\xf1\x96\xd0\xe6\x71\xef\xa1\x1f\xb5\xa1\xbd\x8d\x77\xda\xca\x87\xd7\x1d\x2e\x9b\x86\x0f\x9b\x60\xef\x8b\x3b\x88\x96\x6e\xf0\xcc\x0f\x61\x03\x87\x22\xb5\x70\xad\x55\x54\xe5\xc9\xc4\x64\x2e\x9c\x27\x20\x31\x60\xfa\xcd\x84\xec\xae\x22\x29\xfc\xbe\xa8\x80\xbb\xb3\x16\xe8\x03\xa8\xf3\xc4\x18\x0d\xb0\xf9\xfa\x66\xeb\x4d\x25\x55\x19\xce\xa1\x80\x19\x47\x6e\xc3\xc9\xb8\xba\x58\x35\x30\x9b\x10\x2e\xd7\x6a\x82\x31\x97\x32\xfa\x6d\x7f\xa6\xb0\x03\x95\x40\x8b\xdc\x1c\x2d\x88\x9c\x9d\xbf\x3e\xb9\x9c\x9f\x9f\xcd\xce\x17\xce\xeb\xe9\xe5\xc9\xf4\xcb\xd3\x99\x43\xf5\x69\xda\xbd\x88\x8c\xfa\x0c\xa2\xe0\xaa\xfd\xc8\x61\x93\xed\x3f\xbe\x9e\x9d\x5c\x61\x6e\xfe\xe9\xd9\x97\x27\xd0\x71\xd6\x7c\xfe\xb4\x5b\xad\x28\x3f\xd1\x3e\xd0\xbc\xc2\x82\xcd\xb8\xf8\xec\xe4\xe5\x05\xf8\x3a\xcc\x45\x72\xe9\x86\x96\xc8\x2b\x0a\x73\xaf\x27\x1a\x93\xfa\xab\xfc\xf5\x58\x49\x2a\xc2\x72\x86\xbb\x0a\x81\xd9\xa7\x3e\x88\x1b\x39\x3a\x25\x7d\x4b\x39\x94\x7c\xd0\xe0\x3e\x60\x54\x89\x5d\x95\x56\x39\xa4\x57\x8b\xc5\x05\xfa\x85\x7f\xf7\xa0\xb2\xe1\xa2\x87\xab\x1a\x90\xc1\x10\xa8\xaf\x04\x83\x64\x2a\xea\x00\x8c\x3d\x55\x43\x34\x39\x36\x20\x2c\xe9\x1b\x4d\x8f\xf3\xea\xa3\xd1\xe2\x34\x0d\xb0\x9f\x12\xc7\x02\x42\x5f\xea\xd0\xb8\x20\xd5\x19\x24\x74\x1a\xcc\x2b\x4c\x92\x57\x52\xdb\x2c\xa3\x78\xc8\xf4\x54\x75\x48\x98\x95\x4a\x98\xab\x8f\x4a\x44\x0d\xd1\x1d\x95\x48\xd9\xb3\xea\x68\x8f\x98\xfa\x4d\xfc\xe3\x29\x8e\x5e\x7d\x64\x6a\xa3\xfa\xf0\x87\x6a\x8d\x2c\x67\x60\x3f\x3a\xa3\x0f\x36\x31\x83\x55\x46\x8f\x8c\x7d\xc8\xac\x3c\xb6\x6e\xe8\x43\x90\xd0\x63\x7e\xee\x1d\x55\xef\x9c\x22\x66\x5c\xa9\xb8\x74\xde\xbb\x89\x4c\xd2\x96\xb6\x8f\x0d\x9a\xfb\xdb\x9f\x38\xe5\x99\xe3\xae\x6f\x7c\x8a\x50\xaa\xc0\x09\x55\x06\x2d\x59\x5a\xc7\xb5\x22\x13\xdf\x6e\x7c\x47\x70\xaa\x64\x92\xca\xda\xa7\x1c\x9a\xe3\x23\x22\x81\x7b\xc3\xc7\x73\xcb\xb2\x98\x35\xe2\xa5\x8a\x80\x2b\xb2\x7d\xc0\xb3\xf2\x79\x7b\x70\x89\x69\x37\x5b\x3a\xe4\x04\x98\x54\x02\xe3\xb9\x90\x51\x77\x3c\x0f\xc3\xca\x7d\xd5\x48\x49\x65\xea\x39\x83\xb4\xb6\x15\x52\x1a\xb2\xcd\x0d\xca\x5b\x5b\x23\xab\x23\x09\x5e\x85\x14\xeb\xfc\x76\x75\x9c\x0d\x46\xec\x43\xa3\x8c\xb9\x55\x72\x5a\xac\xd7\x2d\xa0\x7a\x52\xeb\x35\x3a\x0a\xf2\x61\x35\xa7\x35\x6e\xf6\x16\xd4\x81\xb1\xa5\xb3\xd9\x67\xd0\x2c\x37\xe3\x0b\x37\xc0\x30\x39\x45\x6f\xdc\xea\x33\x38\x34\x23\xa3\xa4\x39\x4f\xe5\x4e\xc7\xb3\x38\x66\xba\xe7\x38\x4e\x67\x91\x40\x9c\x4f\x68\x73\x4f\x6b\x6a\xf8\x1d\x6e\x43\x8e\x7a\x58\x8f\x42\x10\xa6\x68\xa5\x8b\x30\xd7\xaf\xa1\x30\x66\xb6\x92\x44\x97\x4a\x59\xab\x9c\x29\x8b\xea\x6e\xc1\x38\x0b\xb8\x4b\x21\xbb\xeb\x9b\xf2\xd9\x32\x81\xca\xab\xa6\x4e\xe4\x38\x14\xaa\x0a\x1c\xe8\xcc\xb2\xf6\xd4\x26\x36\xa7\x6e\x29\x4b\x4a\xb4\xf5\xb7\x24\x6b\xc8\x61\xcd\xd5\xdc\xb5\x32\x17\xfb\x39\xab\x8a\xe2\xce\x8c\xd6\x53\x79\x51\x61\xdd\x2c\x95\x97\x7a\x84\x4a\x1c\x55\x2a\xea\xe2\x5d\xc1\x42\xcd\x1c\x8a\x18\x5a\xfd\x7c\xf4\x82\x38\x32\xe5\x7d\xcf\x72\x17\x0c\x4b\xf2\x9a\x9c\x1c\x87\x9c\xe6\x6e\x48\x3d\x09\x5d\x71\xaa\x38\x34\x92\xb1\x99\x2b\x0a\x9d\x24\x83\xc3\x8d\xb9\xf2\x3b\xd6\xdb\xb0\xaf\x25\x45\x8a\xc5\x50\xb9\x49\xb6\x30\xb2\x91\x01\xc6\xfc\x02\x24\x3e\xae\x1d\x6b\x48\x62\x5f\x60\x96\x34\x53\x12\x64\x54\x26\x1b\x92\xd5\xd0\xde\x12\xb3\x1c\x8e\x32\xad\xf0\x18\xd1\xda\x62\xbc\x8a\x46\x10\x7a\x52\x07\xf0\x50\x18\xf1\x41\xfe\x81\xa7\x99\x7e\xbb\x87\x11\x0b\x2e\xb1\x8f\x6d\xed\x67\x04\xb6\x5f\x72\xe7\xd2\x93\xb7\x5a\x99\xbf\x09\x29\xc9\x66\x32\x8d\xb7\xec\x88\xca\x14\xcb\x92\xfe\x4c\x00\x66\x9b\xae\x4a\xb8\xda\x1c\xcf\x4c\xc7\x4d\xec\x97\x9f\x25\x43\x42\x8b\x99\x0a\xcc\x12\x6f\x38\x07\x9c\x03\x3e\x1c\x3a\x6e\x85\x51\xa6\x09\x30\x46\xba\x2c\xc2\xfe\xed\x71\x8b\x18\x2d\x38\xc6\xaf\x73\x0f\x83\x12\xb0\x36\xce\xb0\x97\xf9\x26\x8e\x50\xa9\x42\xa2\x47\x7e\x66\x50\x91\x82\x19\xf9\x3b\xce\x9d\x61\xdf\x9e\x14\xc1\x6e\xf6\x76\xdf\xfc\xa6\x57\x0e\x1c\x87\x40\x14\xc9\xc5\xcb\x32\xc7\x18\xaf\x76\x45\x9c\x7a\x12\x18\x11\xa3\xde\x00\xa3\x61\xa5\x99\xee\x58\x9c\x8e\x3e\x63\x50\x60\xba\x4f\x4c\x3b\xf7\xa6\x29\x74\xd7\x23\x3c\xc4\x31\x59\x09\xf9\x39\xed\xeb\x25\x2e\xcf\x33\x5d\x97\x26\x0b\xd7\xd2\xba\x37\xd6\x24\x0a\xee\xf3\x00\x2d\xe3\x13\xc4\xfd\xf2\x28\xad\x31\x4e\x0d\x55\xa7\x18\xbc\x52\xaa\x48\xc5\x3e\x95\x26\xac\xc9\xaa\x89\x84\x86\x75\x2c\xa4\xc8\x7b\xaf\xb2\x00\x2b\xa7\xab\xc1\xd5\x2a\xea\xa4\x0d\x9a\xc5\x9c\xc0\x7d\x4d\x21\x16\x86\x20\xbd\x66\xd4\x5b\xb5\x49\x95\x21\xe8\xb1\xb0\xde\x93\x7a\xf3\x7b\x7f\xb3\xa9\xad\xae\x9e\x24\xe8\x50\x5b\x4e\x5b\xdc\xcf\x9d\xf3\x88\x53\x43\x51\xad\xca\x6e\xbf\x4c\xe8\x84\x7d\xd6\xe8\x3c\x57\xf6\xe1\x0b\x39\x8e\xcf\xba\xce\xbe\xa4\x06\x33\x19\x79\xe8\x7f\xe2\xbc\x77\x79\xc5\x88\xa2\xe4\x21\x5c\x3a\xdf\x44\x37\x54\x55\x0a\x9a\x92\x97\xde\x13\x5c\x4d\x44\x98\xb4\x67\xd4\x62\x7a\x69\xb9\xf0\xda\xc5\xaa\xe2\xe8\xc4\x81\xe6\xa9\xbc\xf0\x17\x96\x00\x09\x97\x71\x04\x92\x72\x15\xbc\x48\x56\x51\x3a\x40\x0f\x60\xb8\xc3\x86\xed\xa0\xef\xc4\x32\xe3\x20\xfd\xd8\x7d\x5f\x64\x8c\xc2\x37\x2e\xc8\xfb\x93\xf4\x61\x83\x4e\x15\x29\xd9\xee\x8a\xfd\xf5\xec\x9b\x04\x5e\x95\x37\x0f\xaa\x58\x99\xc6\xbb\x0b\xe1\x73\x24\x08\x4b\x75\x5c\x40\x8d\xbd\xb8\x1c\x7e\x4a\x03\xf2\xe9\xc5\xc9\x81\x13\x55\xd1\x6e\x7f\xce\x77\x84\x2c\x93\x53\x27\x60\x43\xf2\xad\x6d\x85\xb3\xd9\x77\x1b\x4a\xcb\x57\x79\x29\xb3\xb7\x82\xcb\x4f\xd2\xe8\xd6\x79\x27\x1e\x9e\x71\xcd\xd2\x8d\xeb\xc7\x89\x2c\xa6\xe7\x44\x4b\xca\xea\xee\x95\xcb\x9f\x39\xa1\x70\x63\xb8\x5a\x70\x17\xfc\x7e\x1d\x5c\x85\x70\x2e\x45\x0a\x3b\xa1\x5d\x8b\x94\x1f\x00\x74\x6f\x02\xc9\x61\xfb\x13\xa7\xca\x5a\x33\x01\x94\xf1\x65\x89\x6e\x03\x48\x03\x3a\x65\x30\xfe\xb2\x1e\xac\x5c\x19\x0d\xa4\xd7\xed\xaf\xdf\xf9\x38\x55\x7a\x3a\x06\xcd\x51\x52\x99\x24\xfb\xc1\x0d\x21\x27\x67\xef\x39\x2d\xb8\x49\x79\xbd\x9c\xff\xf9\x4d\xf6\xd9\x67\xbf\x11\x5c\x6b\xf6\x00\x2e\x85\xd4\xf1\x53\xb2\x5d\x52\x68\xe6\x02\x36\xd7\x8f\x3f\xb6\xdb\x2f\x0b\xd8\x75\xb2\x61\x17\xa2\x2f\x65\x1e\x75\x4c\x4b\x53\x46\x87\x09\x19\x2b\x4e\x8b\x4d\xe8\xac\x46\x7b\x11\xc3\x03\x36\x4e\x1f\x6a\xa3\xbe\x89\xa2\x40\xb8\x9a\x3c\x92\xbb\x5d\xcb\x83\xc2\xee\x70\x73\x46\x7b\xa2\x4e\x1d\xa2\x24\x8d\xb1\xf0\x81\x2d\x95\x95\xe3\xb0\x0b\x6b\x4c\x8a\xb9\x6e\xdb\xee\x9e\x51\xcd\x0d\xf6\x8e\x76\x20\xaa\x9e\xdb\xee\x36\x69\xc5\x60\x3c\xbc\x17\xd3\x93\xd3\xd9\x71\xbb\xd9\x6b\x7a\xfa\x6a\x6a\x03\x76\x36\x5d\x5c\x5f\xce\x9c\x17\xa7\xd3\x97\xed\x9e\xb2\x2d\xad\xcc\xb1\x90\x4f\xb6\x73\x2b\xd2\xe5\x5d\x45\x1e\x4c\xcc\x8c\xa5\xb9\x51\x2f\xba\xc1\x98\x82\xce\xee\xd6\x84\xb1\x31\x23\x31\x94\x9f\x99\x2c\xa4\xa9\x9c\x9c\xa4\xb5\xb7\x35\x55\xb0\xc9\xc2\xb4\x1f\x51\xf9\x5c\x51\xdf\x3d\xd0\x14\xc5\xab\x09\x3b\xbe\xa1\x10\x16\x47\xec\x4c\x32\x8f\x57\x97\xf0\x71\x11\xc9\xe8\x1e\x19\x12\xd7\x63\x91\xd5\x6c\x2a\x93\x78\x82\xc5\x11\xd1\x5a\x40\x2e\x55\xb7\x59\x58\x8e\x2b\x33\xc7\x35\x64\x9c\x96\x33\x5f\xf5\xfa\x1a\x7d\x01\x38\x0e\xe8\xd0\xe0\x91\x5c\xa3\x8b\x52\x6f\x35\xf6\xb3\xa6\xa5\x9a\x46\xc3\xee\x50\xab\xdc\x19\xec\x0c\x9e\x67\xcf\x18\x7b\x3d\xc9\x3a\xd4\xb0\x73\xc9\xc4\x33\xfe\xde\x8d\xaa\xe5\xa1\xca\xfb\xb7\x27\xc6\x61\x23\x2e\xcf\xa3\x99\x7d\xb1\x3a\x24\x39\x0a\x03\x30\x7d\xe9\x4c\x23\x55\xd3\x92\xa4\xfe\x5b\xa9\x08\xc2\xdc\xa2\x6f\x55\x00\x8b\x5e\xbb\x9c\x6f\x24\x2e\x6a\x89\x0a\xf5\xb2\x3f\x7e\x0d\xdc\x18\x94\x2a\x99\xfc\x00\xb3\xff\xc9\xc8\x22\x2e\x11\x8b\xca\x0a\x78\x2d\xe2\x03\x28\xf7\xb2\xd3\xa8\x1b\x47\x84\x6c\x31\x1a\x65\x7d\xd1\xda\x2b\x4a\x0e\x35\xa3\x19\x6d\x0a\x12\x38\x62\x30\xa2\xec\x41\xc6\xeb\xcc\xe1\x82\xb1\x5a\x5f\xea\x6d\x43\x85\xf4\xe3\x46\x7b\x24\x7f\x7c\x11\xb8\x98\xee\x44\xe6\x0b\xf0\xda\x25\xc1\x3e\x5d\x87\xd3\xc3\x4e\xe8\x36\xe4\xec\xf6\xec\x4b\x4d\xbb\x4d\x69\xb7\x81\x39\x6c\xb4\xc1\x52\x09\x67\x52\x2c\x51\xb8\x5d\xf0\x70\x00\x3b\xeb\x1d\xb0\x7e\x1c\x09\xb9\xcc\x63\x2b\xf1\x9d\x4f\xd1\x45\xa9\x0c\x06\xdc\xb8\xb0\x53\x74\xce\xb7\x6d\xb0\x65\x7c\xa0\x54\xf4\x79\x2a\x6c\x90\xc3\xe7\x64\x29\x5d\xd4\xf2\xab\xa8\x3f\xc7\xaa\xa6\xc6\x8b\x08\x73\x22\x7b\x9c\x8b\xf1\xa9\xc7\x61\xb1\x1b\x80\xbb\xe1\x90\x29\x78\xd9\xdf\xfa\xb2\x1a\x73\x7b\xf8\xa7\x25\x14\xf3\xf9\x2f\xe0\xa3\x5a\x04\x8b\xa5\xa3\x5a\xad\x0c\x56\x47\xdb\xf6\x5f\xdc\x98\xfc\xeb\xf8\x2e\x4b\xc4\x3a\xef\x6a\x9b\xbd\x92\x29\x5a\xfb\xab\xd8\xb5\x27\x89\xba\x8f\x4d\x13\xec\x70\xe6\x51\x5c\xd7\x4f\x11\xc6\xab\x61\x30\x4b\x79\x6c\xb3\xd2\x2c\x70\xfe\xc8\x31\x08\x7c\x39\x5b\x2c\x4e\xce\x5f\x3a\x57\x8b\xe9\xe5\x42\xf3\x38\x3c\x9a\x9f\xcd\xb6\x7f\x9c\x9e\x1f\xcf\x6d\x90\x9c\xce\xbf\x9c\x9e\x3a\xf3\x8b\xc5\xc9\xfc\x5c\x13\xd0\x38\xbf\xd8\xfe\x71\xfb\xdf\x67\x57\x0e\x75\x38\xb9\xb2\x08\x65\x7c\x29\xdd\x22\xe6\xd3\x3c\x99\x9c\xee\xa4\x77\x35\x37\x1f\xa2\x72\xaa\x09\x02\x25\xca\xca\x00\x7b\xb8\xea\xde\x89\x14\x64\xb3\xa5\xd0\x51\x32\x97\x52\x52\x1e\x23\x52\x24\x7f\x2b\x7c\x01\x29\xd4\xd8\x59\x8b\x78\xe9\x7a\xd1\x40\x42\x37\x9b\x64\x5f\x69\x4e\xd5\x58\x08\xc7\x07\x49\x6c\xaa\x46\x59\x7a\xe6\x1f\x1e\x6a\x3c\x1d\x15\xc5\xad\xed\x7b\x63\x96\x6a\x00\x4d\x0d\xa4\x7e\x73\x99\xab\x06\xe4\x84\xee\x3b\x41\x8a\x1a\x87\x28\xc5\x7a\xe4\x79\x35\x9c\x1f\x1e\x21\x59\xae\x1a\xf9\xbd\x0c\x17\xf1\x93\x4a\xbc\x08\xbc\xe9\x3f\x8e\x24\xba\xf9\x4c\x91\x8a\x65\x1f\x53\x64\xb0\x71\xa5\x8e\x66\x4f\xb3\x32\xe8\x24\xa0\x5c\xf4\x61\x76\x8e\x34\xa7\xee\x6b\x56\x06\xcc\x09\x3a\x0f\x0e\x0f\x12\x53\xe3\xac\xc6\xc1\xab\x74\x40\x8f\xc5\x21\xf2\xb1\x8c\x99\x93\xb6\x79\x68\x49\x74\x03\x82\xfd\xa3\x66\xa9\xdd\x1d\x65\x57\x76\x4d\xeb\x5a\x77\x9a\xe5\x34\x48\xb6\xb9\x97\x02\x78\x6a\xf4\x6d\xf1\xaf\x06\x9c\xc9\x24\x72\x75\x10\x7f\x61\x0f\xd8\xa4\x28\x96\x80\xde\xaf\x89\x9f\x46\xb1\x0f\xf8\x00\x7a\xbb\xee\xc4\x06\xc4\x30\xfa\x72\xc0\x0f\x4e\xbb\xd9\x57\xdf\x13\x49\x6a\x36\xd5\x1a\x49\xc6\x8d\x19\x68\x69\x77\x0f\x67\x3d\x9e\xbb\xd7\x0c\xe0\x95\x21\xf4\x8b\xc7\x56\xf4\x2e\xa9\xe7\xd8\x04\xc9\x84\x5a\x75\x82\x1c\xb3\x13\x12\xb7\xd0\x54\xef\xde\x9b\xac\x2a\x43\x4e\xfa\x73\x5f\xe2\xb4\x49\x8d\xd5\x8e\xca\x56\x95\xda\x5f\x86\x39\xf7\x59\xd2\x95\x05\x88\xbe\x87\xa5\x06\x1b\xf9\x7f\x91\xe7\xfb\x4b\xfa\x84\x7c\x3e\xac\x66\x46\x91\xec\x38\xff\xbb\xe7\xb5\xde\x32\xb0\x3d\x21\xdf\xdf\x94\xec\x86\xa6\x7f\x0c\x73\xb5\x17\xaa\x1e\x7b\x12\x3f\xc0\x0c\x7d\x80\xe1\xef\x6f\x94\x7b\x1e\xcc\xe3\x6c\xf0\x0f\xbc\x61\x3f\xf0\xf1\xfe\x58\xcf\xf1\x3e\x0f\xec\x23\x9e\xcc\x5c\x1f\x9a\xd8\x3e\x63\x64\x6f\x6d\x39\x8e\x64\x1f\x8f\x95\x9a\x2b\x41\xcf\x77\xcb\x29\x3a\x92\x95\x2b\x71\xd4\xbc\x09\xf6\xf0\x82\x29\xa7\xf5\x52\x12\x35\xed\x5e\x83\x84\x4c\xc6\xcb\xb2\x5f\x64\x8f\x33\xe6\xbd\x8d\x6f\x94\xb1\xec\x2a\xfc\xf7\x58\x43\x45\x9d\xb2\x4e\x33\x41\x4b\x7a\xe8\xc7\xa8\xa5\xb2\x33\x3f\x8f\x39\x1d\x1f\xaa\xf0\x7d\x3e\xe8\x86\x7a\x2f\x36\x2f\xed\xc1\xf0\x86\x50\xde\xef\x45\xd6\x1f\x80\x1d\x6d\x49\x53\x2d\x1b\xed\xbe\x31\xd1\xa0\x4b\xf7\xa4\xa6\xfa\x35\x1d\xbb\x64\x18\xf3\x4f\xd1\xdc\x54\x3d\x1a\xb9\xbc\x32\xbe\x4e\x5c\xa2\xab\x9c\x8e\x5d\x74\x8f\xa4\x06\x67\x1f\xba\xe6\xc2\x44\xcf\xda\x34\xad\x7d\x6a\x83\xcd\x77\xdc\xe9\x9a\xab\x13\x3d\x6b\xd7\xb0\x8e\x55\x30\xcc\x64\xcc\x96\x4c\xaf\x6b\x74\x23\x72\x37\xca\x54\x4b\x81\xcf\xad\xe5\xe4\x9d\x9b\xc8\x7b\x68\xa5\xf9\x98\x0a\xc3\x17\x09\x6f\x09\x46\x82\x62\x61\x48\x22\xd7\x86\xdc\x1b\xac\x03\xbc\x09\xf0\x5a\xa4\x77\x91\xe7\x3c\x7d\x39\x5b\x1c\x5c\xcc\xaf\xe0\x3f\xd7\x8b\x83\xe3\xd9\xe9\x6c\x31\x3b\x10\xe9\xb2\xdd\x69\xe6\x6c\xfb\x33\xda\xdf\x99\x3c\x83\xee\xe6\x64\x45\x49\x8a\x07\xa6\x15\xf3\x6e\x83\xde\xb0\x65\xa2\xf7\xf5\xc3\x24\xc9\x6e\xd8\xfc\xdc\x3e\xd2\x7a\x27\x91\xc9\x5e\x64\x64\xb6\x19\xe2\xc9\xf9\xd5\x62\x7a\x7a\x3a\x3b\x76\x2e\x4e\xaf\x5f\x9e\x9c\x3b\x47\xf3\xb3\xb3\xe9\xf9\x71\x7b\x48\x40\x6b\x3b\xd3\x47\xcb\xc9\x2a\x04\xf1\xbc\x1a\x34\xdf\x8a\x8d\x1a\xbb\xcd\x51\xf2\x36\xc3\x95\x7b\x3f\x8f\xef\x96\xf9\x13\xd4\x61\xe8\x28\xf9\x40\xdd\xfd\xb8\x9c\x45\xc1\xf1\x8a\x94\xd4\x78\x90\xad\x0b\x41\x00\x6c\x7c\xba\x2c\x53\xe7\x3a\x71\x57\xed\x33\x72\x9d\xfa\x85\x4f\x91\xcf\x9d\xac\xa2\xae\x6a\x08\x75\xb7\x6d\x33\x4e\xbb\x1b\xb4\x8e\xd6\x39\xca\xd3\xc5\x84\xc2\xb9\x0d\xdc\x15\x96\x85\xfe\x6e\x29\x36\xa9\x33\xb9\xfd\x14\x73\xe9\xa2\x13\xdc\x8d\xe0\x60\x35\xe1\x39\xef\xef\xd0\x1d\x90\xcb\x4b\x38\xeb\x2c\x48\xfd\x4d\x20\xd8\x6d\x85\x4d\x41\xd5\xbd\xd5\xce\x89\x5b\x86\xe5\x5c\xf9\x21\xf9\x6d\x79\xfc\x8c\xc4\x30\xa5\xf0\x8e\xa3\xf6\x64\x2a\xad\xa7\xf0\xc1\x41\x22\xf3\xb7\x31\x92\x4a\xe1\xae\x9b\xc8\x13\x6b\x8e\x0b\x62\xf0\xc8\x39\xbf\xcd\x38\x58\x58\x45\x34\x4b\xaa\xa3\x84\xc9\x76\x81\x30\x15\x34\x94\xad\x1b\x37\xbb\x0d\xdb\x2f\xa6\x5a\x79\x58\xc3\xa3\xea\x79\x11\xe7\x8c\x4e\xbc\xe8\x35\x49\x75\x1a\xb2\xcf\x3e\xfb\xec\x7f\x92\xff\x0d\x5f\xc3\xf8\x3d\xd9\x8b\x9d\x31\xa9\x0e\xc5\xf3\x37\xe1\x57\x6f\x42\xc0\x83\xff\x71\x9c\x37\x9f\x6c\xe2\x28\x8d\x96\x51\xf0\x06\xd0\xbd\xf9\x24\x5d\x6e\xde\x7c\x72\xa0\x7e\xf3\x28\x35\x00\x4d\x36\xff\xfc\xf9\x67\x87\x5f\xfc\xf6\xb7\x87\x9f\x1f\x7e\xfe\x5f\x4a\xcd\x36\x51\x9c\x26\xdc\xe0\x37\xbf\xf9\xec\xaf\xdf\x7c\x82\x3f\x00\x41\x5f\xeb\x4e\xe1\xbf\x8b\x61\x59\xac\x23\x07\xb2\x91\x4b\x62\xbc\xa2\x2a\x25\xed\x6e\xba\xe7\x1c\x93\x46\xaa\x1c\xd9\x38\x4a\xf2\x6d\x6e\xc9\x3d\x25\x1d\xd9\x63\xb1\x28\x2a\xda\x41\xac\x59\xa6\x4c\xa2\xd8\x61\x8e\xd0\x55\x79\xa6\xd4\xe8\x5a\xe9\x91\xb5\x3f\x26\x12\xc4\xc5\x74\xf1\xea\xd9\x62\xfe\x8c\x6f\xb2\xc9\xf9\xf4\x6c\xe6\x38\x13\xc7\x16\x99\xf1\xbd\xc7\xf0\x4b\xe9\x9f\x7e\xc0\xb4\xc0\xf8\x89\x33\x62\xe9\x84\xc6\x7e\x9d\xfb\x4d\x70\xb8\xd4\xdc\xbf\xd0\x60\xfb\xcf\xe1\xd2\xb7\x5e\x3e\x80\xee\x9c\x89\x75\x14\xb7\x4b\x97\xad\xed\xfa\x63\x5a\x67\x49\x2a\x63\x3e\xa3\x70\x12\x8a\x15\x86\x2a\x0b\xf2\xed\x5e\x89\xf6\x9c\xf9\xbd\xfb\x1b\x53\x86\x6f\xb1\xd4\x4d\xa5\xb3\x09\x30\x96\x15\xdc\x29\xc9\x21\x5c\x7e\x82\x12\x0b\x48\x85\x56\x22\x6f\x41\xcc\x30\x10\xc5\xe5\x5f\x4a\x3f\x60\xb4\x08\xd6\x7a\xc1\xac\x57\xd2\x5d\x9a\x6b\x61\x69\x23\x57\x1f\x15\x7d\x8f\x15\xbb\x27\x66\x4c\x41\x3b\x4d\xe9\x76\x5a\x87\x74\xa9\xa4\x2d\xea\xaa\xb4\x47\x1e\x65\x40\xbb\xdf\xfe\x04\x40\xed\xf6\x2a\xd3\x73\x29\xc3\xc2\xf0\x5f\x5d\x90\x94\x8a\xe7\xca\x71\x36\x75\xea\x8d\xfd\xea\xea\xd4\x39\x12\x31\x3b\xfb\xff\x20\x0b\x4f\x51\xe4\xd5\xc2\xdf\x9c\xc1\xca\x01\xdb\xd5\x50\x85\x5d\x01\x21\x29\x10\x11\x94\x22\x4e\xaa\x13\x0d\x00\xf6\xa6\x98\xb3\x70\xd8\x2d\x60\x91\x64\xc3\x1d\x7d\x1d\x0b\x53\xc8\xf3\x76\x4f\xa2\x45\x4b\xe9\xf1\x7c\xde\x9e\xdb\xb8\x10\x29\x12\x8a\x4c\x63\x78\x9e\xd0\x13\x88\x15\x32\x4f\xe0\xb2\x51\x17\x0c\x36\xc9\xcb\x36\x51\xc8\x8b\x86\x47\x8d\x03\xb6\xff\x38\xb0\x96\x20\xe9\x05\x49\xbc\xc2\xd2\x82\x52\x8f\xd9\x37\xb4\xf0\x28\xe2\x68\xff\x6a\x65\xc1\x7c\xb9\x7b\x83\xdf\xc3\x50\xc6\xa7\x7e\x10\xc1\xbe\xba\x98\x96\x51\x16\xa6\x84\x42\xdd\x55\x47\xf8\x0d\xa2\x39\xa9\xb4\x29\x5d\x61\xe4\x7a\x66\x72\xfd\xfd\x0e\x9e\x27\x29\x0c\xc1\xa3\xba\x8f\x7e\x7e\xe7\x27\xb5\xd1\xed\xa0\x9e\xd2\xcb\xa6\xb9\x2b\xa6\x48\xa8\xe5\x47\x20\x42\xfc\x38\x52\x94\xd9\x09\xa1\x9d\x33\x93\x7c\xc0\xa9\x49\x3e\xaa\xb9\x59\x93\x40\xc5\x85\x40\x89\x4c\x96\xb0\xa8\xc6\xa7\xd1\x9e\x1f\x01\xa2\x35\xf5\x95\x79\xad\xac\xa6\xc5\x3a\x16\x82\x6c\xcb\xc2\x21\x82\x39\x67\x7b\x69\xc9\xee\xb1\x8f\x15\xea\x1e\x63\x40\x85\x44\xee\xb8\x8a\x48\xed\x00\x8e\x3f\x5a\x78\xda\xc0\x37\xdf\x66\x42\x8b\xad\xf7\x70\xe9\xc9\x9d\x5f\x5c\x9d\xbb\xad\xad\x79\x6f\xbc\x4a\x7d\x72\xe8\x14\x29\x8f\xb0\x04\x6a\x2b\x05\x8d\x19\xc0\x73\x71\xe0\xd0\x39\x2e\xcf\x95\xdb\x5c\x30\xd5\x90\xb4\x86\x83\x64\x7e\x2e\x8b\x2a\xbd\x00\x67\xfb\x6b\x5c\x5a\xe8\xc8\x00\xda\x28\xd4\xf6\x62\x24\x26\x04\x8f\xcc\x47\x5a\x68\xee\x2f\xb6\x18\xd2\xbe\x0f\x81\x85\x59\x4d\x14\x1e\x3a\xfd\x48\xbe\x80\x7e\xb5\x07\x4a\x27\x88\xde\xc4\x61\x5e\x3e\x0a\x89\x85\xc7\xc5\x9a\x26\x62\xc1\xdf\x18\xed\x88\x0b\x37\xde\xfe\xf3\x5a\xa4\xac\xa2\xe2\x6c\x7c\x01\xcf\x74\x75\x76\xb5\x40\x7b\x13\xdd\x4b\x75\x35\xfc\x1d\xc2\x59\xe6\x6e\xe5\xa3\xba\x9a\x45\xea\x09\x0d\xef\x8a\x52\x5f\xbd\x76\x03\xc3\xdc\x98\xaf\x89\x69\xab\x07\x5d\x2d\x2f\x95\x1f\x72\x36\xc3\x52\xe5\x9f\xd6\x6c\x22\x5a\x6d\x15\x3d\xae\x7d\x92\x72\x70\x1c\xcf\x7b\xee\x3f\xee\x5e\x59\xc6\x51\xb6\x1e\xfa\x79\x51\xac\x87\x8a\x84\x45\x6d\x5d\x4a\x56\x53\xb6\x3c\xb7\x52\x24\x2b\xd2\xe6\x91\xba\x6e\x29\x91\x5d\x58\x2b\x23\x2e\xcd\xca\x83\xe8\xcb\xcb\x8a\xa8\x78\x10\x20\x96\x7e\xf0\xb0\x86\x6f\x39\x2e\x44\xeb\xd4\x66\x0f\xac\x3f\xcd\x45\x1c\xad\xf1\x2c\x36\x75\xe9\x8f\x58\x5b\x27\xb4\x40\x39\x52\xb9\xcf\x1c\xad\x0c\x00\x91\xbb\x68\xc9\x76\x76\xe9\xc0\x20\x6b\xd5\xa9\x2f\x8d\xaa\xb0\x8e\x07\xb8\xff\x58\xc8\x94\x2f\x2b\xc4\xcb\xf2\x87\xd2\xeb\x26\xba\xb5\x1c\xc5\x00\x90\xfd\xe9\xaf\x45\xbd\x18\x6f\xc0\xa6\x60\x97\x61\x74\xb0\xaf\xa1\x12\xd0\x6d\x99\x0c\xef\xd5\xea\x9b\x4f\x02\x27\xa7\x09\xe5\xb9\xe2\x06\x56\xef\x88\x82\xde\xdc\xb5\xca\x25\xe7\x14\xe3\x89\xcb\x3d\xa7\xc4\x9a\x2b\xea\x96\xfb\x5a\xd0\xc1\x1e\x4a\x4f\x5d\xfe\x84\x57\x07\xbc\xce\x62\x31\x41\x0e\xc1\x86\x58\x27\x79\x48\xe0\x9a\x3f\x90\x1e\x28\x94\xcf\x20\x54\xca\x64\xf4\xa9\x92\x3f\x53\x6d\x55\x2c\xa1\x1a\x67\x21\xf1\xf9\x76\x87\x88\xfa\x7c\x2b\x2a\x70\x40\x4c\xc7\xf6\x67\x7c\xc1\x61\x5e\x55\x17\xee\x46\xac\x04\xb0\xfd\x79\x42\x69\x56\xb3\xed\x2f\x5e\x24\x89\xa1\x7a\x10\x58\x7d\xd8\x47\x12\x5c\xb6\x99\xc9\x30\x64\xc1\x24\x2e\x01\xa5\x1b\x1c\x00\x61\x1b\xf7\x7b\x4a\x1b\xac\x92\xe0\xd6\x48\xec\x3f\x77\xb9\x73\x91\xac\x8e\x69\xbc\x86\x75\x17\x22\x6b\x22\x8a\x2a\x5d\xb7\xb7\x82\x32\x71\x2a\x72\x4a\x7e\xb1\x5d\x64\x45\xd0\x15\x7d\x07\x5b\x5c\x5a\x87\x13\xc7\x0c\x54\x65\xf5\x92\xae\x8a\x1d\x7c\xcc\xb4\xb3\x2d\x4d\x24\x4e\x76\x91\x22\x27\x88\xc3\x18\xd1\xc6\x5f\x96\x32\xcb\xd3\x65\x4b\x4f\x29\x6f\x45\x89\x57\x19\x6c\x25\x4d\x82\x8a\x21\x9c\xa9\x1e\xc3\x28\xe9\x92\xd9\x7c\xeb\xbf\x52\xea\xb7\x2c\x0c\x6b\xe9\xce\x3b\xe7\xb3\x31\xd0\x11\x4b\xf4\x6e\x5c\x4f\x15\x97\xa7\x53\x6a\x9b\x67\x47\x3b\x16\xae\x78\x4d\x63\x92\x69\x12\x46\x21\x3c\xce\x29\x87\xdb\x27\xb4\x4e\x11\x24\x49\xaf\x04\xa3\x24\xec\xcc\x68\xb0\x4f\xc3\x5b\x1f\xe9\x2a\x6a\xf4\xcb\x6a\xc8\xe5\x90\x8a\xc1\x44\x15\xc1\x2a\xdd\x0c\xcf\x20\x28\x65\x28\x3d\x32\xf0\xa4\x7b\x72\x1a\x03\x4c\x2c\xb1\xe3\x0e\x92\xb6\x7d\x10\xe4\xd9\xa0\x9f\xe8\x1c\x01\xcc\x3a\x99\xd3\x10\x61\x2d\xf7\x7a\x65\x77\xb8\xb7\x31\x33\x09\x57\xc3\xd0\x3c\x50\xbe\x0c\xa2\x6f\x33\x31\xb4\xa8\xfb\x69\x24\xeb\xa9\xfa\xed\x42\xe9\x51\x14\x8a\x25\x65\x9c\x97\x57\x9e\xd5\x58\x25\x9e\x48\xe3\xe2\x87\x0f\xd4\x71\x70\xad\x60\x6d\x04\xbe\x79\x93\xf6\xdc\x59\x6d\xcd\x7a\xe1\xa1\x54\x0f\x59\xaa\xdb\x35\xc5\xa8\x42\xdb\x14\x54\x88\x29\x46\x7f\x08\x2a\x3e\xe8\x6d\x22\x1f\x0d\x2a\x3e\x17\x55\x22\x73\x24\xb3\x0d\xbd\x3f\xe7\x82\xdf\xd8\x81\x13\x94\xc0\xb9\xb0\x2a\x98\x1c\x48\x54\x5c\xdf\xca\x5c\xc8\x8e\x05\x46\xd1\x3b\xae\x0f\x4c\xba\x97\xdb\xbc\xf4\xdc\x93\xdd\xac\x0e\x55\x4b\xaa\x66\xbd\x86\x83\x34\xa6\xff\x0c\x93\x22\x62\xe4\xfe\xe6\x41\x25\xa1\x93\xc2\xcb\x32\xf2\xa4\xa9\x1d\x16\xb5\x5e\xe8\xc0\x0d\x23\x38\xd0\xf1\xa1\xe3\x5c\x87\x64\x3c\xc0\x6a\xb8\xb1\xef\x79\x22\x3c\xe0\xa7\x27\x00\x9c\xe4\x90\xd8\xad\xe9\xbd\x4f\xf9\x33\x38\xe3\x1d\x36\x2a\x17\x95\x69\x9d\x8e\x8f\x90\xc2\xbe\xb3\x8b\x0c\x61\xb2\x89\xa3\x7b\x1f\x35\x29\xf5\xd7\x5f\x49\xd0\x43\xef\x17\x1a\xa2\x26\x31\xa6\xfb\x3d\xe5\x33\x5e\x93\x01\x25\x5b\xe7\xb7\x03\x0a\x08\x70\xfa\xc8\x11\x43\x04\xa5\xb2\xcf\x30\x1c\xf1\x8d\x5b\xae\x1b\xcb\x8a\xbd\x92\x72\xca\x6a\x68\x25\xf7\x57\x99\x60\x16\xc6\x96\x91\x14\x70\x9b\x05\xc1\x03\xa6\xd5\xd4\xac\x6a\xbf\xee\x96\x74\xf9\x49\x29\x5b\x67\x4d\x55\x82\xd5\x44\x96\x78\x8c\x0e\x9c\x4d\x20\xdc\x44\x38\x72\x89\x1c\xe1\xe3\xd6\xc1\x87\x23\xee\x36\x72\x86\xa7\x3a\x84\x1d\x95\x5d\x1f\x13\x75\x8f\xf9\xd8\x48\x25\x4b\xa4\x44\x78\xaa\x45\x74\xe7\x27\xda\x7a\x3b\xd0\x8f\x2f\xdd\xbc\xc4\x75\xec\xfa\xdf\xab\x9c\x43\xa9\x18\x56\x02\xe8\xcc\xfd\x8e\xea\xec\x90\x7a\x3f\xcf\x00\x96\x9f\x08\x3a\x80\xd9\xe6\x80\x6a\xa4\xf8\x61\xa6\x93\x0f\x16\xb5\x12\x3b\xeb\xed\x4f\x54\xc7\x44\xc6\x90\x34\xe4\xc7\x54\x74\x1f\xe0\x65\x40\xe0\x2d\x4f\x40\x7d\x0c\x85\x7c\x23\x05\xf7\xe1\x03\x28\x09\xe8\x4e\x39\x0b\xe1\x70\xda\xfd\x35\x7a\x81\xaf\xc9\x67\x01\xf8\xaa\x34\x64\xf1\xc6\xcb\x19\x69\xe1\x00\x01\x3f\x50\xc9\x12\x8e\x0a\xf9\xfc\xb3\x2f\x7e\x7b\x76\xe0\x7c\xfe\x12\xfe\xff\xd9\x4b\x4d\xd8\xcc\xbe\xf0\x7c\xa8\x91\x1e\x3a\x93\xcf\xf1\x06\x86\x4b\x82\x72\xfa\x41\xe3\x2c\x64\x8b\x92\x27\x71\xe8\xae\xb2\x0f\x48\xcb\xc7\x3c\x63\xce\xd3\x63\xae\x06\xf5\xbc\xf8\x6d\x0f\x9b\x6a\x5f\xf4\x99\x3e\x42\x14\xe1\xc4\x30\x9e\x02\x6b\x80\x67\x7f\x14\x7a\xc9\xa7\xc4\x3d\x8e\x4e\x4f\x90\x33\x13\x4b\xa9\x3d\xf6\x99\x21\x1e\x38\x24\xd2\x48\xd7\x47\x27\xc1\xfb\x42\x9a\x47\x13\xb8\x22\x1e\xa8\x47\xbb\x07\x74\x9d\xcf\x48\x3b\x68\x23\x9f\xa4\xe8\x92\x15\xdc\x5c\x2d\xdc\x45\x3f\xcc\x92\x4d\x5c\xee\x89\x2f\xfe\xea\xaf\x71\xca\xd5\xcc\xb7\xaf\x6d\x83\x19\xbc\x0b\x82\xf9\xc6\x66\x57\x54\x69\x4d\xef\xf2\x73\xed\x68\x6d\x8e\x95\xd2\x4e\x8b\x06\xa5\x7f\x2e\xba\x56\x12\x13\x14\xb2\x6b\x3b\x69\x08\x32\x6e\x51\xfc\xab\x00\x1f\x04\x56\x51\x5e\x80\x20\x0a\x3b\x25\xb6\xb9\xae\x31\x7c\xa1\xfd\x81\x79\x3e\xaf\xfc\x6a\x0e\x55\x17\xf6\x88\x95\xfe\x6c\x60\x8a\xf7\xce\x85\x9b\x24\xef\xa3\xd8\xd3\xc0\xbe\x77\x9d\x2b\x11\xde\xd9\x58\x71\x10\x83\x36\x60\x13\xa0\xa3\xf5\xc5\x8e\xfc\x08\xeb\xd9\x15\x6f\xdf\x44\xa4\x85\x1f\x3d\xbc\x8e\xfd\x70\xe1\x6f\x4a\x0e\xf4\xd0\x58\x7e\x81\x32\x1d\x6b\x64\x61\x0f\xa9\xfe\xed\x57\xd1\x39\x8c\x1e\x39\x91\x7a\x2a\x23\x56\x55\x32\x0f\x30\x92\xee\xb8\x01\x6b\x56\xc3\x4a\xcc\x83\xfb\xc5\x16\xb9\x65\x60\xb8\xee\x92\x5f\x6c\x2e\x26\xd8\x76\x9c\xdf\x03\x0a\xf2\x4a\xf3\xb8\xd6\x81\x52\x2b\xe2\xa9\x80\xb7\x19\x6e\x6a\x32\x0d\xee\xa4\x21\x51\x67\x48\x59\x11\x39\x2f\x25\x88\xde\x29\x46\xf2\xc1\x79\x81\xd9\x2c\xe5\xcb\xc9\x9b\xc8\x28\x40\x14\x91\x2b\x09\x21\xe0\xc7\xae\xd9\x83\x27\x94\xe4\x96\xb7\x22\xcd\x5c\xf4\x7e\x99\x2b\x25\xe6\xf6\x4f\x85\x05\x85\x4e\x62\xe2\x94\x72\x50\xec\x92\x5f\xf6\x8f\xc3\xe4\xf7\xe8\xa4\xee\x60\xb9\x82\x9b\x04\x63\xa7\xc3\x54\x70\xd9\xc3\x3b\xf7\x06\x96\x26\xcd\xb3\x77\xb4\x58\xac\x9d\x5a\xec\xa0\x2e\xed\xeb\xbe\xd7\x4d\x4e\xed\x05\xcc\x82\x1c\x2c\xf1\xb9\x7f\x03\x8b\xe8\x46\x92\x8b\x4a\xf2\xf3\xc5\xfa\xf7\xb5\x92\x1b\xbf\x85\xe1\x28\x9f\x7f\x2c\xa5\x52\x65\x2c\xdd\xba\x37\xb8\x78\x90\xa7\x84\x6e\xd4\xc2\x57\x14\xf0\x32\x0b\xb1\xe3\x98\x1c\x95\x8b\xef\xec\x2e\x76\x57\x2a\x1b\x5b\xd4\xc1\xb4\x43\x5a\x38\xa5\x98\xa1\x2e\xde\x86\x43\x31\x2f\xef\xdc\x70\x05\x1b\xe3\xbd\xa0\x08\x77\x4f\x77\x13\xe9\x1a\xf7\xc1\xa9\x6c\x7f\x46\x43\xcd\x35\x06\x43\x47\xaa\xc9\x9b\xde\x45\x03\x67\x3d\xaf\x2b\xba\x5a\x40\xf4\xa1\x89\x83\xc7\x41\x82\x5e\x52\x97\x43\xa7\x69\x92\x3b\xef\xdd\xa4\x88\xfe\x26\x71\x7c\x29\x23\xaa\x00\x9c\xe4\x4a\x4c\x93\xb2\x41\xdd\x46\xbe\x73\x2b\x80\x5b\xd8\x3c\xe8\xce\x29\xd5\x32\x27\x70\x24\x03\x35\x0b\x0a\xc2\x3b\x40\xcd\x24\x1d\xc6\x6a\x04\x5e\x21\x48\x54\xfa\xe9\x06\xc5\x44\x57\x59\x13\x5c\x09\x65\x0f\x94\x9c\x0f\x1c\x48\xdb\xf4\x0e\xea\xe1\xac\x00\xe9\xcd\x33\x71\x37\x0c\xf3\x05\x27\x3f\x29\x70\xb6\x8e\x69\xde\x36\x94\xdc\xe1\xb0\x36\x0c\x0d\xe8\xbe\x23\x18\x91\xf0\xdc\xbd\xf4\x51\xa9\x6d\xdf\x4d\xdd\xd7\xf1\xae\x83\x80\xda\x38\xf5\x31\x34\x6f\x1c\xfb\x13\x62\xc6\xde\xea\x14\xe6\x4c\xce\xea\x31\x11\x15\xde\x6f\x26\xa8\x31\x21\xf4\x70\x8c\xd2\x0d\xa2\x5a\xc0\x83\x34\x38\x37\x42\xa0\x56\xa2\xfd\x7e\xef\xdb\xdd\x86\xae\xba\x33\x84\x96\x1e\xe6\xa7\x4d\x89\xff\x2b\x8e\x19\x83\xef\x22\x53\xdf\xc1\x76\x82\x6c\xf1\x56\x53\x56\x1a\xdd\xc0\xca\x7f\xa0\xf2\xfc\x1f\x3e\x03\x4c\x49\xe1\xbe\x65\x78\x5c\xc8\x65\xab\x99\x94\x61\x93\x62\x38\x1b\xe3\xcd\xc0\xf0\x6b\x65\xf6\x38\xb7\x48\xbf\x7b\xbe\xfb\x7a\x27\x91\xca\xfa\x2e\xb7\x64\xc9\xd2\xed\xd4\x4d\x12\x7f\x15\x8a\xce\x65\xce\xe9\x4b\x48\xba\x1a\xb6\xca\x86\x5b\x4b\xe1\x1c\xbc\xb3\xa4\xa3\x97\x25\x4b\xee\xd5\xdd\x86\xae\x5a\x01\x97\x01\x1c\xb9\x64\xcf\x1a\x3c\x69\xe4\xcb\x5b\x18\xd6\xad\x26\x4f\x32\x29\x55\x4a\x2a\xa8\x54\x92\x52\x26\x75\x97\x4d\xea\xca\x73\x17\xbe\x76\xd7\xb9\x54\x62\x63\x7f\x3b\x8f\xd8\x29\x40\x25\x7f\xd9\x3b\xe9\xb9\x37\xc0\x18\xb4\x87\x78\x09\x38\x0f\x51\x56\x35\x52\x70\x39\x27\x22\x9e\x5f\x44\xf4\x3a\x4a\x29\x85\x16\x79\x56\xdc\x08\x27\xdb\x60\x61\x4c\x5d\xb9\xd1\xfc\x11\x99\x94\xaa\x34\xe1\x36\xca\xca\x0f\x39\x1e\x86\x7a\x24\x41\x63\x40\x05\xd7\x09\xf2\xfa\xed\x4f\x9c\x03\xcb\xb3\xca\x67\x05\x04\x93\xdf\x10\x65\xe4\x29\x54\x21\x47\x2f\x48\x0f\x5a\xe5\x9f\xd0\x0e\x1b\xb5\x0f\x85\x76\x79\x92\x02\x45\xd2\x33\xaa\xae\x04\xd9\x05\xcb\x56\x5f\xd2\x45\xa1\xf5\x7d\x07\x45\x9f\x81\x88\xe7\x6c\xe7\x47\xdb\x50\x4a\xd5\x4f\xa3\x35\x9b\x8c\x34\xcc\xc4\xa8\x97\x39\x15\x79\x32\xa9\xdc\xee\xd1\x8a\xbb\x35\x0c\xde\x02\xef\xfc\xef\xda\x1f\x48\x7f\x67\x03\xef\xf2\xa5\x33\x3d\x3e\x3b\x69\x2f\x65\x4c\xbf\x9e\x5c\x2d\x2e\xa7\xdb\x3f\x6e\xff\x69\xee\x1c\x4f\x1d\xe8\x64\x8b\xea\xfa\xf8\x64\x31\xbf\x6c\x1f\xc3\xf5\xeb\x93\xf3\xc5\x6c\x18\x92\xb3\xe9\xf9\xf4\xe5\xac\x1d\x09\xfc\x36\x1b\x8a\xa4\x3d\xc7\x63\xf5\x47\x73\x98\x1a\x7f\xf3\xb9\x55\x74\xc2\x1c\xdf\xb0\x14\x0e\xc2\x01\x1c\x49\xd9\xbd\xbd\xc4\xdf\x74\x68\x7b\x02\xe8\x45\x5b\x45\xa3\xed\x06\xb1\x70\xbd\x07\x59\xb9\xd8\x50\x09\x50\x81\xf0\x0d\xf2\x47\xec\x6d\x73\x9c\x77\xe8\xa9\x26\x80\x41\xdd\x8b\xf4\x7b\x62\x35\xbd\x7f\xa3\xf1\xd3\xdc\x01\x46\xb9\x0d\x99\x36\xd6\xb8\x20\xe7\x04\x59\x0e\x21\x91\xe3\xda\xf8\x14\x6b\x52\xe8\xb6\x4f\x61\x89\x4e\x1b\xce\x0c\x80\x34\x95\x6e\x2b\x3f\xf6\x81\xd9\x1d\x75\x57\x19\x92\x0d\x12\x76\xa1\x14\x5c\x27\x3b\xa5\x57\x00\x7a\x45\x28\xaf\xdc\xdc\xad\xad\x95\x82\xab\xec\x26\x49\xfd\x94\xf3\x9b\xae\xfd\xf0\x4e\x25\xa1\xa7\xbe\x29\x1a\xfc\x1b\xfc\x72\x39\x64\x61\x5c\x92\x65\x16\x23\x63\xca\xed\x01\xf5\xa7\xb5\x54\x15\xba\xe6\x84\x4a\x8e\x84\xcc\x58\xca\x25\xfb\xdd\xdb\x94\x9c\x42\x2b\x1e\xad\x1b\x2c\xf0\xad\x61\x11\xfb\xc5\x66\x3c\xea\x0b\xd7\xf7\x2a\x1e\x10\xed\x24\x5f\x48\x43\x6a\xb9\xe6\xc6\xc6\x5d\x59\x79\xc0\xa1\x93\x00\x27\x15\xc0\x98\x6c\x32\xbc\x51\x3c\x39\xba\xe0\x92\x37\x2a\x3c\x8b\x4b\x9a\xae\x7c\xf0\x4a\x4a\xe7\x97\x50\x3b\xa9\x23\x83\x1f\x75\x5c\xa5\xe7\xe2\x3e\xc6\xd5\x07\x7c\xaf\x71\x69\x9d\x3a\x6c\xfd\x39\x14\x60\x07\xce\x03\x3d\x26\x68\xe7\xe7\xb7\xc4\xda\x4d\x97\x77\xad\x48\x5f\xcb\x3e\xa5\x48\x21\xcc\xe2\x8b\x56\x4f\xd2\xc1\xa1\xcb\xb5\x95\xcd\xed\x42\x72\x19\xb4\x7b\xe5\x3c\x05\xaf\x57\x6d\xe4\xc3\x51\x3b\x4f\x2d\x3b\xbe\xe2\xe5\xaa\x82\x20\xbe\xf7\x9b\x57\x43\x6b\x35\x56\xd4\x55\x28\x03\x48\x3d\xa8\x2b\xd1\x66\x40\x8d\xd9\x64\x75\x7a\x68\x57\x28\x18\x29\xdd\xf7\x85\x88\x31\x3b\x30\xee\x7b\x1f\xb9\xa0\xcc\x5f\x49\x37\x04\xbb\xd7\x08\xcc\x26\xcd\x6e\xdd\xac\xed\x57\x7e\xe0\x81\x92\xe3\x70\xfa\x60\xb3\xb5\x0b\x23\xfb\x41\x62\x3e\x46\x74\xd8\xa8\x89\x7a\xb7\x32\xc9\x40\x9b\x13\x87\x96\x8b\xdb\x03\xeb\x47\x73\x01\xaf\xe4\x7e\x52\x64\xfb\xd6\xeb\xf8\x2e\x94\xef\xc7\x2e\x88\x3c\x0b\x37\xb9\x79\x0c\x52\x64\xb5\xd3\x79\xe7\x52\x68\xf3\xae\xe3\x20\x6e\x75\xf6\x2a\xb4\xa6\x1d\x09\xde\xfe\xbc\x6e\xf5\x21\x24\x4d\x0a\xb9\x98\xaf\x50\x4d\x6f\x75\xc3\x02\xca\xe7\x8d\x24\xe8\xa9\xee\xea\xd3\x83\x00\x0a\xad\x58\xde\x45\x51\x52\x44\x56\x04\x41\xf4\x1e\x8f\x02\x3a\x2a\xe1\xe7\x43\xe7\xcb\x08\xd8\x07\xdb\xf5\xdd\x58\xd0\xae\xdc\xe0\x99\x4a\xd1\x03\x18\xe6\xfa\x06\x85\xbe\x24\x11\x79\x18\x47\x82\x61\x19\x32\x66\x48\x73\x66\x91\x5b\xbb\xf7\x64\xe1\x5f\x46\xc1\x1d\x1a\xee\x52\x80\xcf\xb0\x31\x96\x3d\xa3\xb5\x50\x1a\x21\x8c\xf2\x5f\xdf\xb0\xcb\x58\x52\xc9\x0e\x4f\x2b\xb6\xfd\x59\xf5\xf4\x22\x8e\x78\x4f\xd6\x91\x4a\x16\x6f\x77\xa8\x69\x7a\xbc\x28\x7c\xa2\xf3\xe7\xa1\xa0\xb9\x7b\x1f\xe4\x40\x7b\x1c\xac\xc5\x72\xdc\x95\xab\x09\xbf\x2c\xe6\x8b\x95\x65\xb8\x12\xf7\x2e\x39\x4b\xd9\x63\x56\x71\x35\xb4\x6c\x64\x14\x79\xef\xa3\x46\x52\xa5\x41\x28\xea\x01\xca\xc7\x3b\x0a\x2e\x3d\xdf\xff\xfb\x44\xd5\x63\xbc\xf4\x0c\xd1\xfa\xd4\xca\x36\xad\xd5\x44\xf4\x77\x7e\xd1\xb9\xc8\x0b\xde\xf8\xa6\x36\xc1\x6f\x0c\x62\x0c\xf2\x30\xd4\x49\xea\x4d\xc8\x5f\xd1\x8a\xc0\x76\x20\x7d\xd7\x08\x23\x36\x09\x87\xe7\xbc\xf9\xa4\x12\xc1\xf9\xe6\x93\x9a\x82\x27\x8f\x0f\x43\x03\x9e\x74\x0b\xa7\xae\x1a\xb6\xb3\x17\x24\xfd\xc7\x48\x15\x7f\x00\xbb\xbc\xc5\x6e\x80\xa3\x61\x88\x46\x1e\xeb\x88\x57\x3e\x99\x10\xe6\x57\xcf\xdb\xe3\x04\x87\x82\xeb\x4b\x77\x7d\xd5\x2b\x11\x89\x59\xe8\xab\x88\xf8\xce\xf9\x6f\xdc\x43\x6d\xd0\xac\xb7\x7b\x1d\xc1\x3d\x7c\x01\x6f\x92\xc4\xa7\x82\xa6\x15\x74\xe6\xa4\x6b\xa9\x6e\x02\x63\x4c\x74\x8c\x2e\xa6\xe8\x16\xaa\x0a\x42\x79\xbe\xbb\x82\x27\x7d\xea\x2f\x49\xaa\x49\x52\x4f\x17\x37\xaf\xf2\x89\x60\xa7\xed\xaf\xd8\x8b\xb5\x01\x5c\x13\x2a\x41\xc8\x36\x2b\x4f\x54\x61\x8e\x41\x8c\x89\x49\x48\x11\xc2\xa6\x2c\xbc\xb2\xaa\x6f\x1c\x0e\x1c\x0e\x53\xf2\x4b\xc4\x68\x64\xe5\x09\xb8\xd4\x3f\x7d\x24\xe5\x08\xbe\x96\xf8\x07\x13\x23\xd5\x1e\x43\x84\x60\xfb\x17\x2f\xaa\x95\x6a\x21\x47\xc1\xed\x2f\x80\xcc\x4a\xce\xa4\x61\xe2\x00\xee\x79\x83\x74\x11\x8b\xcd\xec\x94\x6e\x17\x71\x04\x47\x72\x2d\xdd\x9f\xe1\x96\xf3\xa2\xf7\x21\xdb\xfd\xd4\xc1\xc5\x6b\x51\xac\x4b\x6f\x5b\x1d\x0f\x18\x08\xae\x0f\xdd\x94\xe7\xb0\x29\x8d\x62\x11\xc8\x5b\xe4\x7b\x5d\xa0\x99\xec\x56\xb8\x69\x16\xcb\x78\x5f\x90\x74\xc2\x15\xc6\x66\x65\x1b\x2c\xce\x82\x16\x50\x29\x1d\x10\xf1\xd0\x2a\x65\x7f\x76\xe4\x5d\x28\x0d\x69\x0e\x23\xe0\x8f\x81\x6a\x34\x87\x35\xd1\x53\xf8\xd0\x90\x34\x98\xd7\xf0\x71\x66\xb8\xc7\x6e\x55\xed\x00\x25\x3b\xae\x5d\x20\x10\xc8\x02\xaa\xc8\xc9\xbd\x90\xb6\x88\x32\x10\x4e\x9d\x94\x64\xbd\x5c\xe8\xb2\xe2\xfe\x2c\x03\xb5\x87\x2e\x61\x03\x01\x52\xad\x0d\xec\x2c\x5e\x95\xcb\xb8\xd6\xdf\x8a\xba\xdc\x14\x97\x34\xfb\xa1\xce\x71\xdf\x2e\x63\xc5\x45\x96\xdc\x61\x21\x0f\xf1\x9e\x54\x35\xe8\x7b\x8a\xb5\x0a\x94\x47\x30\x05\x73\xf1\x35\x2b\x13\x0f\xb5\x9f\x3a\xb4\x59\x73\x2a\x68\x0c\x20\xaa\x6a\x6b\xe0\x3d\x80\x25\x0c\xe8\x91\x50\xf2\x0c\xc6\xf8\x80\xed\x9f\xb0\x4f\x61\xd5\xb1\x14\x97\x79\x1c\x98\x68\x83\xeb\x5c\x39\x4f\x51\x7a\xc5\x01\xe1\xbf\xcc\x1d\xd5\x26\xfb\xf4\xb9\xa6\x8e\x57\x31\x8e\xed\x5f\x42\x4c\x44\x47\xc0\x30\x8a\x01\xc7\x81\x4f\x4a\xb5\x55\xab\x60\x8c\x49\xa5\xd4\xf7\xce\x31\x79\x30\x90\x38\xfd\x83\xac\x79\xda\xcf\x44\xc6\x00\x72\xc5\xdd\xb2\x5c\x3d\x75\x0c\x53\x19\x93\x99\x46\xd2\x7f\x49\x45\xc2\xc0\x4e\x81\x5b\x54\x25\x3c\x40\xff\x59\x2c\x44\x26\x53\xd5\x91\xdd\x3d\xa2\xcc\xa5\xa8\x96\xcf\x82\x94\x2f\x21\x82\x40\x7a\x54\xb8\x73\x94\xe1\x81\xf2\x81\xb5\x47\x52\x3e\x3a\xfe\x71\x67\x86\x5f\x50\x1f\x72\x6e\xc6\xa5\xa0\xe7\xec\xd4\x76\xa2\xe1\x03\xeb\xa8\xa1\x6b\xc9\x58\x69\x41\xcd\xe5\xec\x77\xd7\xb3\xab\x45\xbb\xbd\xf2\x62\x76\x7c\x72\x3c\xb7\x31\x59\x5e\xce\xae\x2e\xe6\xe7\x57\x9a\xc0\x52\x6a\x71\xb5\x98\x5a\x41\x9f\x9f\xce\xae\x74\x7c\xea\xc5\xf5\xf9\xf6\x8f\xdb\xff\x5e\x6b\xd4\x03\xfe\xf5\x62\xd6\xee\xdd\x70\x39\x5f\x4c\x6d\xdc\x1b\x2e\x85\x8b\x52\xb6\x27\xd0\x9c\x06\xc7\x73\x03\x17\x09\x66\xdf\x25\x27\xf1\xbf\x65\x31\x60\xbd\xd1\xa5\xe5\x3f\x16\x09\xa6\x7b\x81\x4d\x1c\x70\xa0\x19\x4b\x1e\x31\xf9\x8e\xc3\x75\xf1\x6b\x7c\xbb\xfd\x73\x0b\x28\x4b\x32\xa5\xe6\xf6\x2c\x82\xbf\x17\x0f\x1b\xdc\x75\xea\x4f\xc5\x93\x41\xe6\xc1\xb8\xb8\x07\xf6\x06\x83\x23\x13\x2d\x7d\x3a\x65\x74\xcb\xf8\xe9\xdf\xf6\x1f\x8f\x1e\x23\x50\x95\x51\xa9\x7e\xb8\x77\x28\x55\x0e\x96\xd4\xc3\x6e\x12\xb7\x17\xfd\xed\xfe\xc7\x3d\xf6\xa8\x06\x90\x2c\x15\xc6\x25\xb1\x47\x55\x5e\xa8\xa4\xcb\xe6\xa0\xf4\x8d\xd4\x49\xcf\x03\x6f\x57\x7f\x9c\x92\xec\x74\x2e\xde\xef\xfc\xf4\xb7\x58\x03\xf1\x37\xed\xaf\xa0\x9d\x41\xaf\x39\x90\xbd\x8b\x26\xaf\x14\x87\xd9\x48\x92\x4a\x54\xde\x48\x94\xfd\x9c\x6d\x40\xe2\x14\x3b\x7e\xef\xbb\x46\x0a\x9a\xb3\xa3\x20\xca\x3c\xe7\x05\xbe\x12\xe2\x07\x8b\x85\x6f\x70\x93\x6f\x88\x2d\x6d\x45\xd3\x63\x6c\x4b\x01\x07\xc1\x53\x59\xd7\xa9\x88\xd7\x52\x15\xf5\x4a\x65\x46\xad\xf6\x2b\xa6\xb5\xfc\x17\xbc\xbc\xc4\x8d\xcf\xaf\x56\x3b\xba\x32\x78\x97\xde\x0b\x98\x78\xf9\x58\x72\x8b\x3c\x8e\xc0\x3f\x96\x77\x7e\x00\x12\xcb\xcd\x37\xf0\xc2\x4b\x1a\xe6\x9c\x8a\x79\xdc\xe0\x5b\x4b\x49\xac\x6b\x97\x12\xa9\x49\x65\x03\x4b\xe3\xb5\x80\x8a\x8e\x17\x03\xbe\x8e\x98\x2c\x7e\x13\x55\x12\x6e\x91\x53\x6a\x42\x14\x61\xd5\xcb\x5b\x9f\x6b\xf5\x46\xce\x0d\x6c\x61\x9a\x06\x8f\x0a\xb3\xc2\x37\x15\x42\x0f\x48\x0c\xbe\x95\x89\xbc\xc2\xd4\x4d\x15\x9f\x6a\x8a\xdb\xb0\x31\xbd\x5c\xaa\xf9\xdb\x14\xca\x40\x4e\x19\xd7\x31\x5e\x7d\x97\xfe\xf8\x65\x42\x5c\xac\x77\x27\xcb\xe6\xa2\xdb\x73\xe7\xa4\xa3\x5b\x73\xfe\x82\x2d\x72\xe5\x4b\x7d\xc8\x80\x94\x89\x39\x61\x59\x2c\x33\xa8\x4b\xba\x42\xed\xdb\xac\x4c\x17\x85\x60\x5d\x5f\x9e\x2a\xe5\xcc\x90\x34\x58\x8a\x1c\xaa\x35\x50\x8a\xc2\x66\x8b\x00\xec\xdd\xce\xe5\x32\xe8\xd9\x9b\x9a\xb0\xe2\x8e\x6e\x34\x29\x8d\x3e\xe8\x83\x48\xc0\x97\xc9\xc0\x7d\x53\x8f\xd4\x1b\x67\xf7\xd4\xe3\x2c\x90\x4b\xbf\x76\xe3\xf2\x55\x50\x0f\x56\x2e\xd5\xf4\x2f\x9c\x08\x9f\xc9\xc3\x81\x4c\x1e\x3f\x28\x49\xa9\x5f\xa1\xff\x42\xb1\xd1\x1c\x06\x50\x21\xce\x8b\x76\x49\xe3\x94\xcc\x75\xd2\xd4\x81\xab\x11\x07\x5c\x2a\xd2\x93\xd7\x7f\x2e\xe3\x4a\x31\x4c\x9e\x40\xca\xa0\x8a\x55\x59\x68\x37\x33\x9a\xd2\x24\xf2\xd7\x40\x6f\x75\x1a\xf9\x6b\xa2\x77\xc8\x44\xe6\x1b\xa8\x20\xca\x2b\x05\x50\xd4\xc9\x2a\x26\xb0\x4a\x56\x69\x0a\xab\x84\x7d\x84\x93\xf8\x61\xe7\x6a\x3f\x13\x92\xf1\xee\xa7\x62\xa4\x63\x1d\x4b\x24\x2d\xec\xa1\x6c\x8c\xe5\x7b\x9c\x89\x18\xed\xf8\xb5\x90\x31\x74\x96\x2c\xc6\x64\x8b\x9f\xac\x63\x6e\x53\x42\xe7\x1d\xbc\x98\x49\xc9\x20\xfb\xb3\x21\x46\x63\xe9\x4f\xa2\x6d\x09\xa6\xb5\x13\xca\x6a\x34\xf8\x5d\x85\xb1\x4b\x54\xb8\x25\x4f\x9d\x32\x21\x83\xe8\xd0\x46\x7d\x96\xa7\xc0\xbe\x56\x91\x42\xd6\x25\x5f\x15\xb8\x06\x0a\x54\x0a\x9d\xae\x2e\x41\x65\x5e\xa3\x81\x4e\xf1\x84\x52\x2a\xf7\xab\x67\x3b\x7f\x28\xef\x9b\xdd\xd0\x68\xc2\x26\xf6\x52\x7a\x18\x7f\x58\x86\x23\xe7\xa8\xc8\x82\xc3\x4f\xf9\x2f\xd5\xdf\xf5\x29\xab\xfd\x60\x38\xfe\x2e\xf0\xa5\xe9\xd0\x21\xe8\x3f\xae\x9d\x29\xad\xaf\x7d\xff\x05\x0d\x69\x44\x3b\x80\x77\x57\x74\xf4\x45\xaa\xf2\x48\x39\x95\x86\xe3\x32\x1a\x54\x63\x7a\x82\x0a\x1a\x93\x51\x8e\x31\xc4\x1d\x0d\x4b\x5d\xb9\xf5\x08\x02\x7c\xbe\x7b\xdb\xf5\x3e\xbb\xfa\xad\x0f\x2e\xbd\xab\x89\x54\x53\x80\x7a\xb9\x12\xae\x62\x1e\x4b\x5f\x36\xcd\xa2\xd5\x74\x95\x0b\xe8\x35\x20\x2f\x4f\x57\xe9\xeb\xa6\xc9\x1a\x75\x4e\x36\x91\xde\xff\xae\xa1\x45\x7f\xe8\xce\xc4\xa1\x92\x22\xaa\x4a\x1f\x89\xb6\xdf\x60\xea\x3d\xb2\x4f\x19\xa9\x7a\xec\x41\xf5\xa2\x97\x3b\x6b\x3c\x3b\x9a\x1b\xf5\xc0\x81\xa1\x26\x06\xd2\xc5\x84\xd3\x0e\x8c\x21\x5f\xa8\xe0\x96\x47\x7d\xe3\x4b\xfa\x1b\xaf\xf8\x0f\xc7\x02\x38\x6c\xac\x73\xf2\x8b\xdc\xc2\x23\xcd\x7f\x4c\xbe\x14\x79\x76\xe7\x1f\xca\x15\xa7\x65\x89\x88\x3c\x82\xad\x32\x55\x3d\x2e\xab\xfd\xa0\xe9\x31\xce\x34\xf6\x05\x6b\xc2\xfc\xd0\xf3\xef\x7d\x2f\x73\x83\xdc\xd7\x08\x9d\xd5\xd9\x72\x06\x04\xa5\x59\xbb\x93\x83\x35\x1c\x1b\x4a\x3d\xaa\x31\x11\x60\xda\x80\x3b\xe1\xcc\xa7\x79\xed\xa5\x3c\xbc\x23\xaf\x52\x89\xa1\xc1\x1a\x0f\xb4\x71\x80\x0e\x1f\xc3\xca\x87\x37\x2f\x2e\xf4\x93\xc4\x59\x65\xbe\x77\xe8\x38\x53\xcc\x39\x4a\x1e\xb2\x77\xc2\x0d\x80\x18\x4a\x8f\x47\xb3\x87\x3e\x84\x9b\xac\x08\x66\xa1\x92\x06\xe4\x74\x85\xc9\xc5\x13\x9d\xe7\xe5\x07\xa0\x60\xac\xd9\x01\xe6\xd3\x44\x5b\x8d\x12\x64\x51\xe3\xcc\xc5\x70\x7c\x63\x8d\x5c\x0a\x91\x06\xd4\xe4\x2f\xfe\x51\x66\x60\x3c\xbc\xa3\xcd\x04\x5e\x31\x26\xf4\xd0\x6d\x38\xd2\x2c\x8c\x82\xb3\xff\x0c\xe4\x2e\xc2\x25\x1e\x9a\x94\x99\x28\xfe\x28\xdc\x25\x87\x14\x4d\xd8\x39\x9d\xdb\x76\x0f\x75\x14\xe0\xfd\xc7\x54\x77\x6b\xa6\x82\x31\xf6\xc1\xcf\xa3\xc1\x1d\x67\x24\x03\xc2\x9d\x47\x83\xdb\x77\x24\xf4\xb6\xca\x57\x1c\xcd\x7c\xb8\xe0\x98\x95\x48\x2e\x77\xd2\x53\xa5\x30\x0a\xd4\x61\xa3\x00\xb8\x2f\x18\xcd\x0b\xc0\xda\x5b\x29\x32\x18\xa2\x0d\xf5\x76\x3b\xd8\x76\x64\xfb\xc0\x36\xd6\xa8\xbb\x77\xfb\x98\xa3\x1e\x8a\xcd\x7c\xd4\xca\x04\xf2\x2a\x4a\x52\xa9\x0b\x84\xbf\x8e\x29\xe1\x75\xd9\xfb\x52\xef\x79\x69\x0b\x66\x7c\x3a\xbb\xbd\x44\x87\x80\xea\x4f\x2f\xdb\xbe\x0c\x9d\xb2\x2f\x2b\x06\xb3\x41\xfe\xd7\x44\x80\x1e\x93\xd5\x7b\x27\x0b\x74\x50\xc5\x2a\xb6\x04\xcb\xa7\x7c\x56\xda\xef\xaf\xd5\x7e\x7f\x49\x29\x67\x35\x7e\xb2\xbd\x3a\x1b\xd3\x74\x35\x3b\xba\xbe\x3c\x59\xfc\xde\x79\x79\x39\xbf\xbe\x68\xc5\xfe\xf2\xf2\xfa\x62\x7e\xe5\x1c\xcf\x9c\xab\xd9\xcb\xeb\xcb\xe9\xf9\xf6\x8f\x53\x2b\x6c\x97\xaf\x4f\x8e\x66\x7d\xb3\xac\x21\x56\xe8\xb8\xfd\xe3\xdc\xc6\xdd\x56\x22\x6d\xf7\xe3\x1d\x04\xfc\x62\xda\x39\x9e\xc6\x36\x7d\x31\x98\x26\x8b\x9b\x3b\x33\xe8\x01\xa3\xb1\x46\x75\x3c\x7b\x3d\x3b\x9d\x5f\x68\x92\xc6\xe5\x2d\xc6\x40\x67\x9c\xa1\x6e\x30\xaa\xf6\x1d\x20\x01\x5b\x6d\x80\xa5\x1b\x3c\xb2\xae\x70\x96\x00\xce\x8f\x4b\x51\x78\xa5\x72\xc7\x76\xb1\xb1\x97\x79\xc5\xf2\xab\x3c\x67\xac\x15\xdf\xaa\x26\xab\x85\x51\xa8\xf4\xb5\x6f\xe9\x1b\xf3\x9b\xf2\x65\x43\x12\xdb\x26\x70\xc3\x62\x2c\x0c\xe8\x85\xef\xa8\x7e\xf3\xdb\x75\x67\xdd\x32\x53\x9a\x75\x20\x7b\x90\x1e\x88\x65\x9e\x41\xda\x79\x0a\x6f\x6e\x7a\x63\x63\xaa\x0b\x11\x53\x48\xef\x3b\x7f\xf3\x69\xfb\x9a\x13\x00\x1f\x33\xca\x96\xb2\x29\x3f\x8d\x32\x06\x43\x3f\x30\x28\xb2\xe9\x6c\xb2\xc0\x8d\x3f\xb5\xdb\x13\x4c\x28\x1f\xbc\x61\x74\xba\x12\xc6\x1e\x88\xa4\xc2\x7e\xb4\x2c\x07\xea\x99\x83\x55\x8e\x9f\x3b\xbf\xfd\xec\x37\xcf\x9d\x29\x97\x3e\xf2\xf1\x8c\x84\x3e\x06\x97\x52\xdd\x25\xca\x07\x92\x72\xe2\xdd\x4d\xec\xdf\xfb\x81\x90\xb1\x87\x94\xff\x9e\x02\x15\xfc\xa4\x3b\x61\xc9\x63\xa3\x1f\x63\x5e\x60\x17\xcf\xe2\xf8\x8a\xbe\x3a\x82\x6f\x7e\xfc\xf1\x80\xdb\x55\x7e\x9f\x6e\xfc\x19\x7e\xa9\x5a\xac\x4b\xb5\xfd\xe0\x87\x4a\xb4\x41\x3b\x6b\x05\x08\x79\x3e\x1e\x0f\x29\x59\x6e\x7f\xf5\xfc\x15\x1d\x36\x4a\xf5\x05\x94\x35\x53\x54\x6a\x88\xc4\xb5\x93\x15\x22\x59\xeb\x0e\xba\x7a\xcd\x1b\xaa\xff\x48\x69\xbe\x20\xa5\x39\x00\x3e\x75\x6f\x44\xc0\x0c\x40\x85\xeb\xf6\x48\x8b\xc9\x60\xd0\xc5\x34\xc3\x07\x5b\x35\xf7\x59\x61\xbf\x6e\x46\x32\x30\x71\xa6\x1a\xcf\x97\xb9\x63\x42\xe3\x6b\xa5\x9d\xf8\xa3\x26\x57\xae\x12\x9c\x91\xe8\x53\x76\x22\x95\x0b\x95\x3c\x31\x55\x9a\xf2\x56\xe2\x4e\x1a\x1d\xbc\xf2\x00\xee\x96\x84\xde\x03\xc8\x54\xa6\xad\xe7\x3b\x0e\x07\x3d\x69\xd4\x01\xe8\x4d\x55\x1e\x66\x53\x5d\xd4\x37\xe1\xe2\xe4\xe2\xb9\x73\x42\x79\xc7\x29\x4f\x53\x1a\x3f\x90\xf6\x20\x92\x71\x3a\xae\x73\xff\xf9\x4e\xb0\xce\x01\x35\xa7\xca\x74\x58\xc2\x0c\x55\x0b\x93\x0d\x69\xbd\x34\x99\x5f\x77\x23\x71\x4a\x1b\xe3\x4d\x78\x7c\x72\x34\x7d\x0e\x32\x8a\x73\x1f\x2d\xb7\xff\x43\xa6\xa9\xc5\xc3\x40\x72\x57\x5c\xf2\x45\x6f\x88\xe9\xb9\xff\xfc\xc0\x89\x2a\xf5\x9f\x80\x1e\x58\xde\xe8\x26\xf6\x57\x2e\x27\x81\x18\xb2\xf7\xf2\xe9\xcb\x8b\x8f\x6b\xf9\x7d\x57\x97\xde\xf8\x77\x7c\x57\x4c\xcf\xe6\x55\xab\xf7\xcb\x38\xa7\xb2\xbc\x49\xcd\x18\xfe\x55\xc3\xf6\x1e\x89\x25\xb7\x6b\x10\xae\x06\x78\x98\x2a\xe0\x3a\x31\x46\x42\xb7\x13\x4f\xd2\x7a\x70\x08\xd7\x66\xd3\x7b\x00\x70\xa0\xbd\x26\x4e\x84\xc5\xa6\xa1\xae\x01\x48\x1d\x10\x73\xef\x8b\xf7\x45\x46\x2d\x1f\x03\x7d\x3a\x29\xc3\x5c\xd3\x9c\xf3\x84\xe2\x7a\x5c\xcb\x44\x32\x15\x0a\xee\x8a\xf2\x2b\x95\xaa\x64\x3d\x88\xa9\xd5\x99\x7a\x56\xab\xa7\x66\x47\xa1\xcc\x43\x51\x0e\x19\xa2\x23\x37\x93\x7f\xea\x9f\x97\x4c\x24\xb2\xb9\x4a\xe5\x58\xf5\x5a\x6c\x01\xd2\x9b\xbe\xca\x16\xc3\xe4\x27\x79\x0c\x0b\xd5\x5d\x90\xdf\xbc\x76\x83\x4c\x70\x6a\x96\xdd\x02\x81\x7b\x7c\x63\x17\x93\xd0\xbc\x9d\x6b\x04\xd3\xe4\xd4\x49\x96\x85\x09\x3f\x9a\x27\x3a\xcf\xfb\xb7\x4d\xb9\x07\xd2\x06\x2f\xd4\x3e\x9a\xfe\xa9\xac\xc7\xc3\x9e\x9f\xbb\xf0\x39\x59\x6d\x9b\x63\xde\x50\xfd\xbe\x1a\xda\x48\x66\xa8\xa1\xe0\x7a\xd3\xfd\x08\x06\xa8\x7d\xa2\x1a\x65\xbc\x23\x9b\x9e\xf6\x89\xca\x7c\xbc\x77\xd1\xfb\x22\xe1\x4e\xb5\xbe\x52\xfb\x13\x94\x2f\x86\x22\xb7\xce\x38\x65\xe6\x98\x96\x20\xa8\x95\x21\x32\xb8\xdb\x25\x41\x79\xed\x62\xc5\x10\x49\x47\x30\xf6\x05\x8f\x54\xde\x89\xa0\x93\x1a\xf7\x9b\xcc\xaa\xb0\x1c\x21\x20\xc7\xa1\xf0\x36\xea\x42\x82\x6d\xe2\xb5\x4a\xc2\x54\x8f\x35\x1d\x82\x1d\x5f\x8b\x89\x73\xf3\x40\x41\x7d\x9d\x5b\x41\x3e\x03\x15\x09\xce\x06\xf3\x7a\xc9\xa8\x3c\x5b\x2a\x28\xfd\x83\x27\x52\xd7\x0f\xe4\x2e\xc0\x15\x84\xb7\x3e\x6a\xb6\x76\x9e\x58\xed\xe7\x6c\x08\xac\x7e\x14\xf3\xc5\x65\xb1\x6e\x9c\xf8\xc9\x16\x2d\xa6\x3c\x08\x29\x73\xab\xac\x55\xdc\x85\x9d\xcb\x12\x27\xb2\xa3\x48\xf2\x93\xa1\xd2\x78\xbb\x95\x44\xed\xb6\x74\xd5\x23\xcc\xec\x76\xf4\x68\x11\x67\x4c\x13\xfb\x61\xd9\x2c\x91\x7d\xf8\x59\x09\xb3\xc1\x16\xe9\x68\x6d\x83\xd5\xf6\x30\x17\xe1\x0d\x23\x1c\x68\xbc\xd0\x72\x2f\xd9\xa5\x1b\x08\xe9\xbe\xfc\x58\x02\xf3\x59\x94\xe0\x37\x34\x28\x34\x4f\x39\x20\x2e\x61\x89\xf8\x8f\xc9\x48\x25\xa7\x69\xd7\xa5\x76\x9c\xc7\x85\x99\x64\x52\x4c\x94\x44\xee\x8d\xf5\x48\x18\x2c\xae\x68\xdf\xae\x33\xfb\x03\x4a\x53\x36\x52\x4a\xbf\x61\xc0\x6c\x68\xd6\x68\x5a\x1a\x1b\xf5\xc4\x31\xa8\x2c\x99\x0d\x88\x9e\xf4\xd5\xb7\xba\xd9\x32\xcd\x9a\xb7\xea\x20\x6f\x1f\x02\xd4\xbe\x1a\x12\xa5\xdd\x4a\x60\x82\xdf\x07\x92\x5b\xb0\x4e\x80\xac\xc1\xc2\x69\x02\x01\xfc\x21\xea\xa4\xe9\x27\x54\x72\xca\x74\xc0\x58\x73\x57\xe5\xb9\xe4\xe6\x68\x01\x93\x89\x05\xb1\x5a\x94\xe4\xc6\xef\xa3\x98\x52\x14\xe5\x79\x6b\x35\xaf\x96\x4e\x3a\xda\x08\xa9\xe2\x47\xf4\x71\x14\xa5\xe5\xc4\xc6\xbb\x95\x9f\xf2\xc2\x4e\x5e\x8b\xce\x55\x9b\xe8\xf9\x2a\x75\xb9\x3a\x09\x66\x14\x7f\x4a\x15\x81\xe0\x6f\xcc\xa0\x8e\x26\xd3\x09\x86\xe9\xca\x69\xe1\x1a\xae\x07\x40\x94\xca\xb2\x88\x26\xda\x8d\x88\x5d\x7e\x66\xcb\x9f\x79\x17\xc3\x4f\xf0\x1e\x45\x3a\x93\xf6\xdc\x8e\x8c\x9b\xa2\xec\x65\x6d\x62\x4c\x91\xfb\x14\xb5\x8f\x4c\xc6\xf6\x67\x8e\xea\xa7\x23\x41\x86\x99\xed\xcf\x13\xca\xa5\x9b\x6d\x7f\xc1\x8a\xc6\x44\x0b\xe9\x77\x30\xdb\x93\xac\xf9\x5a\x49\xda\xcc\x14\xa2\x3d\xd8\x0d\x0e\x80\xae\x8d\xfb\x7d\x5e\x6e\x3c\x75\xe3\x3a\x85\xe6\x7b\x4d\xbe\x3e\xad\xbc\xc0\xfa\x75\xee\x43\x53\x77\x94\xd7\x09\xc5\x78\x0d\x8f\xef\x92\xc8\xe0\xca\xc3\x7a\xa3\x51\x96\xbe\x09\xa5\xe1\xa7\xa1\x82\x35\x1e\x81\x75\x14\x0b\x25\x30\x6a\xb9\xe1\x42\xac\xf9\xa5\x5c\x84\xa3\xb1\x5e\x35\xf0\xd7\xbe\x7a\xa2\x16\xb4\x23\x5e\xb6\xf3\xe8\xea\x5b\xaf\x5d\x9f\x0a\x74\x54\x24\x56\xeb\x61\x67\x61\x91\x69\x7d\xb4\x71\x9f\xd4\x86\x4b\xc6\x14\xc0\x83\x29\xd3\xdd\x0f\x30\xca\x47\xf6\x87\x2a\x86\xff\x71\xf9\x44\xe1\x54\x64\x1b\xe5\x14\x71\xc0\xc6\x49\x58\x9d\x2c\x08\xf0\x5f\x98\x6e\xfe\x42\xa5\x93\xe5\x58\x4b\xd9\x5c\x63\xdf\xa6\x6a\x30\x0d\xdb\xfc\x80\x4b\x3e\xbb\x3c\x08\x40\x23\x8b\x60\xc5\x42\xd6\x68\xe7\x1f\xec\x0b\x2d\xa2\xc3\x43\xbb\x80\x58\xfb\xb5\x17\xd4\x2c\x61\x03\x1c\x82\xd0\x59\xeb\x34\x4d\x7b\xe0\x8b\x36\x5d\xbc\xee\xc2\x8d\x47\xe1\x74\xd1\x66\xf3\xc8\x87\x01\x29\xff\xb8\x8e\xc1\x43\x82\xa5\x81\x8e\x63\xb8\x89\x9d\x6b\x8d\xa5\x0e\xed\x72\xb4\x5f\x73\x3b\x3a\x77\xb5\xc3\x89\x55\xe3\xa5\x57\x8a\xd7\x7e\x9f\xbe\xa8\x3a\x5c\x5c\xb1\x20\x60\x73\x85\x22\x23\xd7\x64\x22\x26\x0e\x6c\x95\x84\x98\x6e\x88\x23\x99\x6b\x9e\x4a\xac\x53\xe9\x5d\x90\xe3\x1e\xd8\xff\x4a\xe6\x9d\x57\x5a\xfc\x92\x84\x97\xc0\x75\x03\x3c\x1f\x05\xbf\x07\x72\xa7\x90\x65\x40\x75\x11\x79\xfb\x46\xd7\x6f\xdc\xe7\x91\x3c\x14\xca\xce\x7a\x50\x5c\x96\xb7\x9c\x5f\xac\x5a\xae\x5d\x3d\x7c\xba\x0c\xb1\x74\x21\xce\x4a\x96\x56\xbe\x34\x65\xcd\x7c\x60\xa5\x95\xcb\x72\x17\x15\xd7\x37\x64\xb6\x6a\x3d\xba\x05\xd6\x74\x78\x47\x81\x67\x89\x28\xea\x09\xe0\x57\xe2\xf6\x16\x04\xf7\xd2\x68\x5f\x5c\x87\x37\x20\xaf\x56\x47\x9b\xd1\x77\xe5\x30\xd0\x03\xd9\xfa\x4b\x6e\x5b\x34\x8d\x05\x36\x3d\xe0\xca\x14\x77\x22\x94\xed\x64\x7a\x85\x1a\xd8\x8d\xe7\xca\xd4\xc7\xc8\x46\x28\x34\x51\xe6\x4e\xaf\x9a\x0f\x3a\xe6\x17\x79\x51\x9e\x03\x75\xad\x32\x34\x03\x43\x5b\x67\x1e\xd9\x31\x12\x2e\x97\xb6\xc6\x12\x29\xf7\xfe\x0a\xfd\xed\x2a\xf3\xbe\x3b\x68\x39\xef\xc9\x3d\x08\xf0\xa4\x5d\x2e\x52\xaa\x34\x0f\x5d\xde\x80\x13\xd5\xe1\x00\x24\x7b\xbc\x24\x65\x66\xde\xb6\x59\x60\x51\x11\x55\x58\x94\xd3\x80\xf9\x29\xfe\x1f\x07\x42\xe5\x89\xee\x5b\x4d\x21\xb6\xdb\xe1\x5a\xae\xf5\x74\xe3\x57\xd7\x03\x1f\x2e\x7e\x98\x71\xd2\x5b\x0e\xf3\x27\x63\x92\x20\xc3\xbc\x32\xf2\x77\x2c\xc6\x75\x69\x62\xab\x18\x68\xac\x12\x87\xcb\x4b\x05\x37\x5f\xc5\xf8\x8f\x08\x57\x59\x6c\x73\x09\x56\x86\x76\xf4\xa2\x3a\x32\x01\xe2\x30\x0c\x83\x8a\x3a\x55\x1c\x02\x1a\x0e\x43\x8f\xf1\x55\xd0\xd0\xf0\x56\x78\x2d\x62\x41\x3e\xdc\x84\xc5\xf6\x0b\xdb\xed\x59\xb5\x9d\x39\x78\xe4\x8f\x32\x6e\xed\xa8\x89\xee\x65\x49\xe7\x3e\xf6\x58\x0b\xd6\x7c\x4d\x1c\x24\xcf\xbf\xd5\xc2\x5e\x60\xc6\xbb\xb3\x03\x36\xbc\x5d\x34\xe0\x6b\xe7\x16\xeb\x89\x0d\x4a\x2a\xb8\x70\xe1\x42\x43\xbf\x9e\x92\x29\x08\x64\x92\x3e\x86\x53\x6a\x9e\x1b\x83\x64\xed\x27\x3c\x6a\x9e\xbb\x1e\xcf\x72\xba\x28\x3b\x22\x95\x85\x3c\x8d\x50\x52\x2d\x7f\x4f\xb7\x60\x5b\xcf\xfe\x74\x34\x09\xb3\xba\x92\x32\xe5\xbb\xb8\xbd\x97\x39\x1d\xcc\xbe\xe4\x35\xd6\x20\xad\x14\x1e\xbc\x6e\x5a\x4a\x39\x00\x97\x87\xf8\x8e\x6e\x49\x36\xac\xa5\x3e\x17\xbc\xc6\xbb\x2f\x37\xb5\x35\x28\xd3\xf2\x4b\x92\x0a\x87\x12\x14\x8d\x9e\xe2\x23\xa2\xcd\x7c\x46\xef\x04\xeb\xf3\x7e\x50\xb5\xe3\x66\xac\x0b\x03\xbe\xd5\xa8\x1c\x06\xf1\xc4\x13\x9c\xa0\x41\x26\x1c\x2f\x54\xa0\x9a\x9d\xb0\x37\x3c\xbd\x46\x1a\xc5\x08\x13\x60\xbd\xbf\xf3\x97\x3c\x7b\x39\x1f\xe1\x1a\xb2\x54\x9e\x19\x36\xba\x97\xc5\xd5\xb4\x87\x6e\x96\x46\x13\x34\xf6\x2e\xb5\x5a\x9b\x8b\x28\xf1\xf3\xec\xe7\x45\x6f\x2a\x82\x16\xc8\x33\xb9\xfd\x13\xa6\xba\x88\xa3\x12\xa3\x6c\xd6\xca\x68\x55\xb5\x8b\x3b\xae\xba\x5f\xae\x6f\xe9\x92\x16\xca\xcf\xfd\x3b\x31\xb5\x46\xbc\x6a\x97\xe8\xe6\xb2\x3c\x03\x69\xf0\xc9\x1b\xda\x45\x00\xdb\x5f\xd0\x33\xce\x2d\xbc\x43\x4a\x2e\x12\x76\x1a\x24\x03\x62\xb9\x48\x8f\x26\xf9\x67\x07\xb1\x28\xed\x0d\xf6\xe5\x68\xa2\x13\x0e\xf5\xe0\x69\x45\x18\x39\xad\xb0\xfe\x7d\x66\xb6\xf7\x2e\xd8\x21\xb8\x73\x6a\x67\x78\xa3\x6a\x69\xa6\xeb\xcc\x70\x8a\x3b\x09\xae\xe5\x78\xae\x90\x8e\xf2\xc6\xa1\x54\xa1\xf2\x8b\x95\x8e\xe9\x5d\x94\xa4\x68\x06\x65\xb6\x37\x09\x9d\x57\xf3\xab\xc5\xf9\xf4\x6c\x86\xf7\x38\x8a\x28\x93\x09\xa9\x48\xd6\x13\x06\x0e\x12\xc9\x4a\x84\x22\x2e\x78\x29\x7f\x9f\xbf\x94\x36\x54\x37\x4d\x5f\xc9\x6f\x5a\xcb\x03\x2d\xe7\xc6\xa5\xe2\x8f\x49\x74\xa8\x74\xb0\x67\x34\x76\x14\xc7\xa2\x82\xd0\x2c\x21\x95\x4d\x85\xd4\xac\x89\x54\x16\xea\x44\x2c\xd3\xda\xe2\x23\x84\xf1\x0a\x10\xe7\xe0\x11\x90\x8c\x51\xdf\x0f\xa6\x3d\x16\xb2\x4a\x76\x7e\x39\x15\x85\xc9\xe9\x7e\xc1\x75\xd8\x6c\xda\xa7\xe3\x1c\x99\xd7\x1d\xed\x8c\x72\xed\x71\xdc\x3b\xa5\xa2\x77\x28\x72\x22\x6b\xa7\xfd\x31\x8c\xd4\x34\xa2\xfa\x88\x0f\xb2\x76\x17\x85\xa6\xc9\x7c\x42\x79\xe9\xdb\xf4\x61\x23\x54\x79\x6f\x9c\x77\x4d\x84\x2d\x99\x28\xd7\xf0\x50\xf0\xf1\xb9\x1a\x6d\xa4\xcc\xac\x2a\xa6\x93\xf3\x36\x1c\xcb\x03\xf6\xdc\xa0\x12\x8b\x9e\xbf\xf2\xb9\x78\x08\x66\xaf\xb4\x1f\x0d\x4e\x6d\x28\xe3\xdb\x36\x22\x46\x75\x7c\xa9\xc0\x89\x13\xf1\xcb\x1d\xf3\x36\x5e\xc7\x01\x88\xbc\xcf\xdb\x53\x2f\x5a\x02\xb4\x39\xa9\xf8\x78\xa2\xdc\x12\x94\x85\xe9\x0e\x96\xc4\x03\x9e\x0b\x17\x57\x92\xf3\x40\x3c\x03\x58\x53\x89\xb6\x53\xca\xba\xa5\xb8\x54\xe2\xa2\xa8\x17\xc5\x95\xb0\x58\x57\x41\xcd\x48\x4b\x82\xab\x5b\x52\x47\x14\x18\xb3\x30\xc6\x74\x49\x28\x1f\x00\x8e\x29\xbf\xab\x1c\xf5\xc0\x72\xde\xbb\xa1\x54\xb3\xe7\x05\x9d\x64\xc7\x1f\xaa\x09\x31\xfe\xb6\x7d\x26\x89\xeb\x41\xaf\xed\x2f\xa1\x4f\x91\x5a\xf0\x48\x26\x17\xb7\xe0\xce\x95\x15\xa8\x5a\xf8\x34\x50\x94\xe7\x55\x9f\x44\x8e\x1f\xc3\xa1\x50\xe1\x43\x79\x17\x2e\xdb\xa5\xaa\x56\xe1\xbe\x02\x6e\xec\x62\xd3\x6f\xe1\x25\x03\xeb\x14\x97\x8f\x8d\xe4\xb6\xfe\x3d\x56\x71\x04\x42\xef\xb7\x3f\xab\xc3\xa5\x48\x3c\x74\x16\xb0\x4d\xb1\xe2\x8f\xf8\xde\xa5\xd7\x9f\xa7\x6a\x12\x31\xea\x7c\x2c\xf5\x39\xb0\xda\xb7\xb8\xe6\x24\xee\x2b\xe6\x8c\x15\x9c\x5d\x55\x36\x2f\x7f\x0c\x90\xc3\x95\x46\xf5\x68\x0b\xa7\x1f\xa5\xb4\xa3\x96\x2e\xb2\x57\xa5\xe1\x62\x6b\x0c\xea\x2a\x0f\x9d\xd6\xfd\xc3\x5e\x55\x65\x9d\x7a\x7b\x05\xa8\x93\x04\x3a\xf0\x0a\x2a\xcd\x57\xa5\xdc\xa7\x5c\x0b\x36\xe0\x78\xed\xcb\xc5\xbe\x54\xbb\xce\x49\x56\xcb\xc4\xd6\x56\x96\x4b\xa8\x82\xe9\xab\xc5\xe2\x22\xaf\x9c\xd4\x6d\x55\xc5\xda\xc4\xb1\x5b\x31\xa6\xaa\xaa\xcc\xf0\x2b\x01\x73\x51\x08\xa0\x32\xa6\x56\xc1\x4d\x0b\x7f\x23\xb5\x08\xae\xe7\x4d\x58\x98\x9f\x20\x67\x92\x2a\xcc\x15\xb2\x65\x96\xf4\xf1\xdb\x76\x92\x6d\xe1\x98\x53\xca\x7e\x0f\xb2\x3a\x9c\x54\x40\xc8\xd7\x89\xcc\xb3\xc5\x61\x89\xa1\x80\x6d\x4b\x4a\x8f\x55\x8c\x65\x7e\xb1\xc7\xd1\x0b\x52\xaa\x61\xa9\xaa\xd4\xc1\xbb\x29\x45\x20\x67\x7e\x38\xdd\xf8\xb2\xb2\xf7\x99\xfb\x4d\x14\x73\xce\x9e\xea\xf7\x7e\xd8\xf8\xfd\x85\x9b\x2e\xef\x34\x96\xb3\x8f\x9e\xde\x1e\x33\x9f\xba\x81\x73\x06\x7c\x4c\x93\xfe\xb8\xb9\x51\x4f\x1c\xee\x3a\xca\xb8\xe0\xe7\x9a\x00\x39\x4f\xc5\xe1\xea\xd0\xf9\xfc\xb3\x2f\x7e\x7b\x76\xe0\x7c\xfe\x12\xfe\xff\xd9\x4b\x5d\x01\x52\x7c\xa1\x53\x6d\xe7\x94\xe0\xc1\x07\x00\x84\xd1\x9f\x6e\x17\xa8\xa1\x94\xaa\x64\x0d\xe8\x4e\x43\x41\xfb\xfd\x48\x37\x84\x6a\x3e\x08\xbd\xf4\x40\xd8\xc2\x6c\x7d\x43\x25\xf2\xe4\xf5\xdf\x6b\x5e\x63\xcb\x4c\x4f\x75\xd4\x75\xa7\xea\x7e\x54\x54\x85\xdd\x41\x85\x44\x16\x31\x4e\xb4\x21\x83\x8e\x41\xd6\x70\xe3\x9c\x19\x63\x2f\x0b\x94\xd7\xd3\x69\x11\x30\xb8\xf6\x31\xa2\x6b\xc5\xe9\xc2\x97\x51\x78\xeb\xaf\xf4\xd5\xef\x17\xca\x5c\x80\x60\xf0\x72\x25\xbd\x72\x51\xd8\x9e\xbc\xf0\x11\x4c\x16\x5b\x3f\xb9\xaf\xaf\xa6\x2f\x35\xa5\x64\xaf\xaf\xac\x6a\xd4\x5e\x5f\xcd\x2e\xfb\x67\xa4\xba\xbe\xba\xde\xfe\xe3\xe5\x89\x55\xce\x20\xc4\xd8\x9e\x8c\x68\x10\xe4\x90\xac\x08\xc8\xa9\x39\x91\x47\x93\x16\x16\x44\x52\xb6\x01\xcd\xe2\x58\x73\x65\x9c\xcb\xa4\x04\x9b\x28\xd7\x9c\x20\x48\xd2\xaa\x37\x39\x0d\xb4\x81\xb5\x21\x3e\xc3\x87\x77\x4a\xb5\x2a\x3b\x1e\x99\xb7\x91\x5f\xa6\x50\x25\xac\xb0\x32\xca\x16\x04\xf0\x5b\xe1\x40\x6a\x02\x9e\xa8\x67\xfd\x13\xe3\x48\xf7\x06\xda\xa4\xe8\x7d\xc0\x2f\xf6\x12\xcc\x81\xb1\xef\x05\xd5\xd1\x0d\xba\x3b\x2a\x25\x28\xa9\x16\x50\xd8\x13\xb9\xfa\x94\xe2\x77\xf3\xbf\x34\x6b\x3f\x0a\xcc\x3e\x23\xe0\x1a\xdd\xae\x8c\xc9\x90\xf5\x00\xf5\x36\x7c\xc3\x5e\xbd\xa9\x28\x4a\x5e\x34\x86\xca\x12\x96\xc1\x51\x00\xfb\x45\xd6\x63\xcc\xe4\x40\xe0\xd6\x82\x13\xcd\x16\xe0\xb8\x64\x86\x6f\x08\x52\x94\xb5\x18\xed\x03\x7b\xb4\xc4\xb1\xcf\x43\xca\x97\x76\xf9\x67\x36\xcd\x35\xb9\xa7\x18\x0d\x04\x28\x6e\x1a\x0b\x99\xfd\x29\x75\x33\x8d\x6b\xc5\x69\xcc\x94\xbb\x12\x29\xf9\xb8\x0e\x2c\x76\x48\x45\x49\xaf\x45\x86\xd6\xfc\xe5\x67\x23\x0b\x0c\x99\x87\x52\x29\x8b\x0f\x33\x0f\x54\xd4\x62\xfc\x89\xa8\xc5\xbe\x99\x14\x78\x2d\x8f\xae\x21\xec\x6d\x29\x8b\x87\xba\x55\x20\x3d\x89\x6b\xf4\xf6\xe3\x53\xdc\x96\x3c\x65\x9f\x49\x0c\xd4\x88\x1b\x3d\x02\xb5\xe5\x88\x3e\x94\xbb\x60\x31\x8d\x49\x77\xca\x3c\x9a\x58\xe9\x3e\x5b\x3b\xf7\x34\x53\x59\x77\x19\x90\xea\x1c\x35\x6d\xf9\x26\xc4\x1e\x6d\x7a\x2f\xce\xa3\x17\x8b\xe3\xae\xe6\xa2\x09\xf7\x63\xcd\x42\x7e\xea\x1f\x79\x16\x4a\x87\xfd\x03\x4d\x03\xfc\xa0\xf4\xaf\x9c\xbf\xe7\x19\x36\xad\x94\x8b\xdd\xdf\x74\xb8\xbb\xe8\xab\x67\x26\xa9\x95\x87\x1d\x38\x39\xe2\xbb\x8d\x58\xa2\xc2\x9c\x95\xfb\xa8\x2c\x8d\x96\x14\x76\xe4\x3d\x27\x61\x9c\x32\xcf\x69\xc5\xbc\xfe\x20\x7a\xd0\x47\xec\x39\x08\x2a\x96\x79\x74\x99\x94\xf1\x51\xac\x84\x82\x17\xe2\x2a\x43\x63\x55\xbb\xa1\xfc\xf4\xfa\xe5\xc9\xf9\x84\xec\x62\x13\xc7\x1e\xac\xa9\x3e\x22\xc7\x80\x1b\x4f\x22\xc8\x7d\x11\xce\x0d\x44\xbb\x7e\xdd\x7b\x4c\xe8\xbb\x30\x7a\x1f\x52\x66\x33\x0d\xf6\xa6\x46\x56\x38\x34\x71\x48\x6d\xcd\x7a\xe0\x09\x22\x0c\x1f\x2b\xbb\x55\xb0\x63\x1c\xbd\x29\xd8\x45\x4c\x2b\xa9\xdc\x04\xd1\xb7\x99\xac\x27\xaa\xf7\xf0\xea\x58\xec\xa4\x21\x61\x92\x7e\x7d\x3b\x7b\x98\x4f\x03\xbb\xc2\x99\x54\xc9\x9d\xe6\x4e\x6d\x9d\x03\x36\xc4\x69\x98\x90\xa4\x82\x78\x9c\x64\x24\x25\x12\x58\x28\x72\xf3\x92\x4f\x06\x64\xa4\x6d\xe9\x29\xa3\x21\x09\x0c\x76\x68\xea\x28\x1f\x5c\xd0\xd3\x54\xea\x72\x0c\x02\x3a\x6b\x07\x1b\xf4\xe8\x8d\x3d\x2c\xb9\xf8\x0b\x19\x21\x4a\x4f\x53\xa3\xfd\xe1\x72\xf6\x27\x4a\x96\x0a\x9b\x2b\x89\x64\x31\x04\x4b\xb7\x68\x49\x14\x5e\x93\x13\x95\x5b\x73\x57\xf8\x27\xa5\xc4\x3d\x66\xdd\x02\x69\xc4\x8f\xdb\xb9\x46\x41\x29\x3c\x58\x90\x48\xe8\x44\x51\x6f\x9e\x20\xa3\x7d\x55\x87\x5b\x49\xe9\xa8\x32\x73\x46\x83\x33\x73\xd2\x98\xc6\x09\x0a\x32\xcc\xcd\x25\x47\x3d\x5e\x54\xd0\x60\xad\x83\x9a\x82\x4a\x2d\xdf\x1e\xe5\x80\xcb\x43\x32\x86\xd1\x9f\xbc\x46\x95\x8c\xed\xd4\x37\xa5\x45\x1b\x7d\x42\x0d\xc4\x64\x63\x21\xb8\x4c\xbc\xa9\x08\x3c\x8e\x60\x5b\x8c\xa6\x7e\x3b\xf4\x7d\x01\x97\xc7\xd0\x7a\x6d\x94\x8e\xf9\x98\x0f\xd9\xfa\x28\x6e\xea\x19\x8d\xed\x77\x52\x73\x69\xe5\xfd\x6d\xaa\x1a\xc3\xdd\x51\x16\x14\x23\x31\x10\x8f\x47\x02\x6b\x31\x8e\x06\x3d\x6b\x5f\xb5\xed\x10\x58\xfd\x29\xae\x24\x95\xfe\x10\x1a\xa4\xf2\xb6\xeb\xba\x0b\x3f\x22\x1d\xd2\x26\x88\xdc\x5c\x15\x87\x66\x4b\xae\x7b\x4c\x81\xc3\x17\x6e\xaa\x73\x94\xc0\xcc\x0a\xf9\x55\x49\xda\x4e\x95\x11\x02\x4f\x1e\x16\xc4\xbe\x8b\x1a\xe1\x58\x50\x67\x7b\xfd\xe5\x34\xee\xe3\xee\x53\xc4\x95\xc5\x04\x23\x62\x5a\x3b\xd8\x21\xff\xaf\xfe\xe6\x05\xac\xdc\x97\x0f\xf0\x0e\xc4\xc4\xf9\xf0\x15\xfe\x7d\x84\x3e\x09\xa8\xed\xf1\x75\xf1\x87\x65\xa2\x3a\x00\xa9\xf5\xb5\xa1\x57\x17\xcd\x5c\xfe\xcd\x1c\xa2\x8c\xa0\x2a\x25\xc2\xa5\x54\xc3\xa8\xd3\x13\x29\xc7\x8b\xc9\x10\x57\x3c\x59\x94\xc2\x4a\x6f\x24\x2b\xc5\x4d\x29\xa0\x9c\xf0\x81\xd2\x50\x51\x2a\x62\x95\x1d\x20\xc9\xdc\x7a\x3e\x62\x3a\xac\x4b\xeb\x5c\xc4\x38\x1c\x80\x19\x8a\x09\xa6\xfa\x00\xc4\x49\xf2\x3e\x8a\xc9\xbf\x28\x88\x56\x7e\xfb\x63\x4f\x91\x4d\x19\x5d\x44\x78\xc7\xc6\xa4\x24\x52\x39\x31\x55\xc8\xa2\x58\xc2\x6c\xd8\x11\x46\x37\x31\x47\x2b\x31\xaf\x31\xb6\xed\x5e\x97\x18\x5e\x05\xc0\x50\x43\x2e\x3e\x73\x7a\xc7\xac\x2b\x6a\xac\xb4\x30\x80\x51\xa3\xe4\x19\x08\x19\xaf\xc0\x4e\xe0\x56\xb0\x91\x45\x54\x53\x2f\xe5\x0c\x59\x13\x58\xc4\x9b\x8a\x99\x7b\xe1\x95\xa2\xe0\x44\xcd\x30\x7a\x52\x95\xc7\x2b\x50\x69\x3a\x32\xf0\x6b\xa6\x80\x8b\x09\x48\x19\xa2\xa9\x47\x4f\xec\x9c\xfc\xe8\x07\xca\x8e\x61\x72\x91\x94\x66\xa4\xb3\xab\x31\x29\xaf\x67\x97\x57\x27\xf3\xf3\xf6\x7d\x85\x0d\xb6\xff\x64\xe5\xab\x93\xe7\x3a\x3a\xd7\xed\xad\x96\x56\xe6\x58\x44\x8c\x59\xb8\x2e\x24\xbb\x6a\xc7\x83\xed\x28\x98\xe3\x0a\x79\x94\x1d\x26\x6d\x91\xf4\x9d\xdf\x8d\x21\xff\xfd\xf4\xf2\xfc\xe4\xfc\xe5\xf3\x37\x21\x7c\xc7\x4c\x05\x77\x08\xdd\x20\x39\x1f\x46\xef\xea\x5c\x61\x1e\xf8\xa1\x90\xe1\x13\xe8\xc4\x7f\xe7\xaf\xee\x82\x07\x0c\xa2\x58\x42\x1f\x77\x25\x3c\x02\xf5\xfb\x0a\x80\xb5\xfb\xe0\xdc\x08\xb8\xa3\x38\x82\x08\xfd\x45\xb0\x3e\x73\x42\x37\x93\xfc\x31\x16\x4b\x0c\xa6\x23\xe5\x3c\xa1\x4f\xee\x44\x10\x00\xfc\x04\x23\xf4\x30\x3d\x51\xbb\xf8\xb9\x98\x9d\x93\xc7\x15\x0f\x83\x39\x9f\xa0\xed\x9a\xa9\x8b\xa1\xf0\x80\x47\xbb\xb4\xbc\x2a\x96\x32\x49\xce\xf6\x67\xb8\xba\x52\x19\x67\xeb\x89\x04\xee\xb2\x30\x11\xc1\x1d\x25\x74\x27\x98\x57\x39\xa0\x4d\xe4\x09\x74\xd8\xc6\x18\x69\xcc\xf0\x5f\x0e\x67\x92\x41\x78\x95\xe4\x9d\x32\x6b\x18\xfa\xea\x63\x57\x4a\x46\x96\xc0\x45\xe9\xaa\x34\x3b\x31\x39\xe4\xc3\xf7\x19\x0d\x16\x1d\x3f\xd9\xc8\x4c\x13\x50\x1d\x78\xef\x75\x75\xc8\x97\x5d\x66\x51\x8b\xc8\x45\x3e\x5b\x63\xe0\xf8\x9d\x0c\x19\xad\x3d\x3b\xa9\x78\x51\x58\x0b\xf4\xaa\xa7\xe6\xe5\x62\x36\x70\x37\x87\x2b\x0c\x39\xb8\x77\xfd\x00\xcf\x11\x47\x62\xa0\xc9\x65\xc7\x3f\x92\xbd\x4b\x6f\x04\xbd\xac\x03\xce\xd0\x11\x08\x97\x6a\xbe\x46\xf1\xe6\x0e\xd3\xb9\xd1\xfa\x63\x6a\x29\xe7\x28\x88\x32\x0f\x96\x31\x0b\xbd\xf8\xe1\x09\x2e\x59\xea\xde\xb8\x89\x38\xa4\xd2\xde\x68\x52\x08\x84\xb7\xca\x63\x58\x15\x36\xf2\xd8\xa7\x9d\x84\x1e\x54\x1e\x5b\xfa\x2a\xb0\xca\xc9\xe5\x76\x69\x24\x31\x49\x4d\x07\x1b\x14\x93\x43\xcc\x2d\xe2\xa6\xb0\x82\x9b\x34\x47\xb0\x66\x77\x4e\x4e\x1c\xb7\x6c\x9a\xc7\xbf\xc9\x2d\xcc\xe5\x82\x57\x14\x93\x82\xbe\xf5\x18\x85\x11\x47\x0f\x2a\xf3\x78\x6d\x0d\x4a\x91\x07\x72\x6e\x76\x68\x85\x99\xb8\x45\xd7\xf4\x46\x2c\x54\xe6\x06\x0e\x95\x8a\x48\xc0\x44\x79\xc2\xa7\x82\xe8\x3c\xf9\x13\x09\x6f\x82\x1a\x93\x09\x2b\x3c\xa2\x9d\x1f\x25\x35\x34\xce\xf5\x26\x0f\x8a\x59\xc2\xba\x85\x99\x26\xa8\xab\x38\x8d\xce\x8c\xc2\xfb\x70\xf3\xb1\xa0\x48\x45\xd2\xb2\xcd\xf6\x5f\x85\x8c\x75\x68\xd4\x51\xc8\x3d\xc8\xd5\x14\x30\x72\x8a\xa3\x04\xdb\x4a\xf1\x50\x68\xe1\xda\xc5\x40\x1f\x1f\x3b\xd2\x79\xc4\xe3\x96\xc7\xcd\xb4\x39\xdc\xe2\x0e\x77\xd7\x8e\xc0\x50\x85\x90\x03\x6a\x3c\xe1\x7f\x27\x6b\xf7\xa0\xf7\x3f\x9e\x66\x38\x90\xb7\x80\x88\xb6\xfc\x0d\xcc\x3e\x9d\x4d\x8f\xdd\x57\xa2\xea\xfe\x3a\x74\x16\x11\x7c\x47\x3b\xe3\x0e\x84\x2f\x64\x28\x70\xb2\xa3\x9b\x58\x94\x32\x90\xe0\x07\x15\xde\x83\xcf\x63\xaf\x0e\xb7\x9c\x77\xb0\x95\x76\x60\xa7\x18\x43\x91\x05\x51\xe5\x07\xd8\xb0\x94\xd6\x8d\x79\x14\x2c\x3b\xc6\x2a\x86\x77\x28\x21\x53\x5d\xa2\xd4\xbf\x97\xac\x0f\xff\xe0\x98\xa4\xe6\x75\xf8\x9b\xaa\x77\x52\x92\x14\xfc\x32\x11\x6b\xde\xc3\x19\xd6\x26\x69\x5e\xc5\x6a\x58\x4b\xfb\x2a\x00\x0b\x45\x87\x20\x9e\x65\xd8\xd8\xc7\x1c\xa1\x58\xce\xa1\x48\x31\x4b\x12\xf7\x81\x2c\xb5\x44\xbc\x14\x43\x9e\x44\x5c\x34\xd4\x6c\xef\xac\x65\x7b\xcb\x27\x02\x6d\x70\x8c\xa0\xc1\xb8\x95\x8d\xf8\xde\x2a\x6e\xa8\x8d\xe9\xfa\x38\xf8\x14\x25\x5d\xca\xe8\x56\xd9\x32\x7f\x53\x3b\xfd\xa5\x6c\x4a\x37\x42\x71\x18\x8c\x92\x83\x83\xad\x2c\x2d\xd2\x7b\x63\x87\x81\x95\x7b\xc2\x7d\x06\x73\xe3\xc1\x8e\xbc\xa3\x5a\x7c\x6b\x37\x7e\xa0\xd8\x8e\x25\xc6\x38\x16\x31\xbc\x65\x22\x29\xe8\x65\x13\x50\x64\xd5\x0e\x53\xa2\xf8\x76\x1f\xe7\x69\x4d\x55\x12\x90\x17\xdc\x7f\xee\x5c\x55\x0b\xb1\x61\x00\x08\xa7\x9f\xd1\x77\xfc\x82\x5a\x62\x32\x6c\xb8\x1b\x39\xfb\xd9\xee\x78\x88\x81\x03\x0e\x8c\x23\x26\xea\xa0\x1b\x7d\x3e\x74\x9c\xbf\x67\x89\x61\x0d\x30\x51\x84\x78\xa7\x78\xa9\x6c\x4e\xe5\x07\xd1\x28\x44\x49\x39\x32\x36\xc4\x7a\x68\x8b\x96\x8d\x0a\xee\x06\x4c\xe9\x9e\x52\xb7\x7b\x1e\x25\x09\x86\x45\xaa\x91\x70\x23\x28\x6d\x36\xe7\x6c\x3d\x74\xe6\xa8\x85\xd4\x5d\x71\x6b\x7f\x85\x61\xc2\xde\x81\x42\x26\x1b\xf3\x15\xc3\xa3\xc1\xe0\x08\xed\x5d\x65\xce\x60\x29\x8b\x69\x85\xcf\xca\xdd\xb6\xc3\x9f\xfe\x86\x59\x26\x52\xca\x87\xb3\xc4\x03\x92\xfc\x18\x8b\x1d\x4e\x93\x5b\xe9\xe8\xb4\xb4\xb2\xa4\x50\x71\x1e\x4a\x13\x02\x24\x20\x33\x83\xf9\xc2\x3d\xc7\x6e\x73\xfc\x90\x50\x97\x81\xbf\xe6\x07\x72\x29\x14\xbc\x18\x03\x8c\x0a\x81\x67\x37\x49\xea\xa7\x19\x97\xba\x68\x62\x34\x09\xf1\x97\x7c\x7f\x81\xa4\x47\x5b\x0b\x8b\xab\xc9\x14\x45\x79\xaf\xe6\x86\x5f\x70\x78\x2e\x6d\x44\xe1\x32\xcb\xd6\x44\x69\xb0\x3b\x13\x46\xb6\x27\xb4\xd9\x48\xee\x2b\xbe\xf9\xe2\xd0\xb9\xc4\x7d\x09\xdb\xd2\x5d\x4b\xe2\x2a\x1d\x30\x60\x6f\x0d\x3b\x36\x5e\xd2\x15\xc2\x42\x20\x6e\x56\xfc\x8b\xd8\x54\x12\xf8\x2b\x62\xb3\x2d\x9c\x55\x61\x15\xf7\x3e\xb2\x2c\x1a\x55\x1b\xb1\xae\xe7\x53\x6e\x5a\x92\xe2\x10\xf1\x32\xa6\xd0\xd1\x43\xe7\x1a\x6b\x70\x89\xef\x3b\xb8\x33\xb1\x1a\x0c\x71\xc6\x2d\x4d\x37\x64\x94\x54\xb6\x46\x69\x26\x80\x23\x93\xff\x62\x7e\xb3\x35\x5c\x90\x36\x5c\xd5\x8d\x51\xc6\x79\x8e\xd9\x4e\x38\x9d\xd5\x5d\x9a\x6e\x2a\x39\xad\x1c\x4e\xa3\x21\xbc\xe7\x4e\xa9\x49\x52\x69\x93\xc8\x5c\x73\x92\x67\xe0\x3b\x45\xa3\xcf\x16\x9c\x65\x1f\x58\xb9\x0a\x58\xa1\x20\x1b\x4f\x54\xf2\x5c\x49\xbc\xb0\x74\xcf\xab\x7b\x1b\x2f\x58\x10\x57\x28\x91\x12\xce\xc3\xd5\xd5\x29\x8a\x0f\x95\x64\x59\x95\x47\x47\xac\xf6\x8c\x17\xd9\xc9\xfb\x6a\x92\xd8\x41\x0b\x6b\x6c\x20\xcf\xc2\xa4\x42\x26\xa3\x04\xe0\xf8\x46\x8a\x58\x46\x88\x55\xd9\x31\xca\x49\x54\xcb\x43\x64\x43\x5c\x8c\x91\xa0\xb0\x2e\x20\x3d\x47\x1e\x25\x08\x7c\x71\x72\x3a\xa3\x3d\x27\x5c\x8f\x9c\x92\x53\x0f\x04\xe3\x56\x52\x5f\xc2\xe3\x8d\x5d\x28\x36\x95\x1a\xab\x0c\xb4\x14\x3f\xe4\x22\xf3\x93\x91\xce\x3b\x40\x8d\x09\xfe\xaf\xfe\x06\x20\x2e\xef\xfc\x7b\x51\xa8\xfb\x64\x9a\x68\x33\x2f\x1c\x49\xce\xf7\x00\x28\x64\x3f\xc7\x30\xdd\xfe\xbc\x1e\xea\x94\xf3\xd5\xd9\xf5\xe9\xe2\xe4\x62\x7a\xb9\x78\xf6\x62\x7e\x79\x36\x39\x9e\x2e\xa6\xce\xd1\xfc\x1c\x6e\x84\x85\xf3\xea\xe4\xf8\x78\x76\xfe\x75\x2b\x51\xf5\xce\xd4\x6f\xfb\x7f\x53\xc5\x74\xf8\x7c\x7c\x72\x3c\xff\xda\x86\xa6\x8b\xcb\x93\xd7\x53\x2c\xbd\x8e\xc4\x74\x12\x71\x3c\x3d\x9e\x5f\x39\xd4\x07\x3f\xe4\xa8\xaf\xac\x70\x37\x15\x67\x4a\x34\xd8\x9b\xb3\xb8\x59\xa1\x5e\x05\xd1\x0d\x1c\x65\x99\x49\xe2\xeb\xfc\xf9\xf5\x95\x72\x29\x4c\x0e\x0f\x0f\xbf\x76\xbe\x52\xdf\xab\x86\xed\xc4\xe5\x09\x24\x08\xb4\xcf\x30\xe9\x26\xc8\x61\x46\x12\x68\xde\xb4\xd0\x62\xd8\x0c\x82\xc3\xbf\x5a\x29\xe2\x9f\x6d\x94\xaf\x32\xae\x0c\xe5\x4c\x96\x77\xb0\xcc\x48\xb9\xdc\x4f\x87\xdb\x54\x39\x08\x50\x0e\x53\xde\x34\x18\x5e\xbe\xdc\xfe\x82\x9c\x35\xc1\xc4\x37\xa5\x0b\xbe\xbf\x5b\x5f\x27\x99\xc6\x15\x8e\xfa\x10\xdc\xf4\x98\xb5\xa1\xbd\x32\xe4\xfa\xd2\xb5\xcd\x47\xc7\xba\x05\xed\xb6\xaa\xca\x6f\x7d\x20\x46\xef\x45\xbb\x76\x74\x83\x77\x62\x0a\xd2\x82\x15\x6c\xa3\x2a\x13\x83\xca\x49\xe8\x62\x45\xec\x42\x40\xc8\x64\x1c\xbb\xc9\x9d\x66\x56\xc8\x22\x0d\x97\x72\x94\xd9\x21\xd0\x9c\xe9\xca\x8f\xe6\x30\xd1\xb9\x46\x25\x83\xb9\x05\xf1\x42\x43\x3c\x4b\x13\x70\x2b\x73\xa8\xf1\xae\x33\x8d\x05\x7e\xf4\x0e\x50\x6f\xd5\xc5\xc3\x06\x5d\x01\x28\x45\xbe\xd0\xd5\xd1\x36\xeb\x64\x4c\xc3\x0d\x0a\xb1\x4e\xc7\xec\xe6\x91\x4b\x8e\x8c\x0d\xf0\xac\x8c\xc6\xcc\x1f\x9f\x17\x0e\x3b\x1a\xce\xc3\xdc\xaf\xb1\xad\x39\x3e\xb4\x7b\xd3\x0b\x19\x8d\xeb\x9a\x39\x6d\x6f\x68\x8c\x6b\xb9\xc9\xda\x47\xb3\xb1\xd9\xf1\x5d\xc7\x69\xe7\xf7\x7e\x90\x75\x8c\x9f\x36\x7b\x68\xc5\xbe\xbc\xa2\x82\x74\x2b\x78\x6e\x63\x7b\x6a\x64\xb5\x3d\x0d\xf4\xda\xef\xe6\x90\xfd\xa4\x8b\xb3\x93\xe0\x3b\x84\xbd\x03\x8e\x76\x11\x9b\x2c\x4e\x4e\xbc\xfd\x65\x65\x0f\xbc\xdd\xf8\x58\x81\x6e\x63\x82\x34\xf5\x12\x18\xe8\x0c\xc0\x29\xaa\xda\x87\x21\xf3\x37\x59\x43\xd6\x04\x77\x40\x03\x1f\x40\x5b\xc5\x75\x20\xfb\x68\x05\x8c\xa6\x17\x54\xe4\xc3\xeb\xcb\x46\xe0\xe0\xd8\x90\xf6\x6d\x79\xe7\xde\xc0\xe3\x18\x1f\xed\x56\xc0\x29\x0b\x33\x39\xca\x5c\xc4\xa8\xae\x4a\x1f\x94\xc3\x4c\x02\xb7\x75\xe0\x29\x05\x2c\xd6\xef\x68\xa5\xa1\xbd\x5a\x74\x1d\xa8\xcc\x37\x7f\xcf\x86\x43\x00\x6a\x63\x3f\x26\x05\x67\x2b\x31\x5c\x89\x72\x9c\x3b\xb9\x43\x32\x30\xe8\x61\x8c\x9d\x3b\x3a\x69\x46\x9a\x0f\x94\xd0\xf1\x95\x9d\x44\x81\x70\xc4\xf2\x2e\x62\xa1\x5e\x59\xa0\x31\x75\xf5\x43\x29\x54\xcd\xac\xec\x7f\xae\x16\x41\x9b\x30\xef\x9a\x98\x81\x17\x81\xcb\x29\xea\xc5\x58\x92\x0f\xef\xdc\x6e\x14\xe6\xe3\x83\xe1\x69\x7d\x63\x54\x2c\x82\xd4\x7d\xd8\xa0\x88\x05\x69\xc8\x37\xae\xaf\x91\xe6\x1a\x1b\x19\xe3\xc0\xf4\x95\xed\x67\xb1\xf2\xa3\x31\x4c\x10\xac\x50\xe8\x59\xa6\x18\x47\xbe\x6a\x9f\xa1\x8a\x4e\x4e\x76\xb2\x2a\xf1\x9a\x3b\x1f\xcb\x14\x47\x94\xdc\x4c\xc3\xc0\xb4\xad\x7b\x63\x25\xc9\x4e\xe5\x7a\x3e\xc1\xbc\xcc\xe8\xa0\x08\x4f\x9f\x24\x0a\x9f\x73\x62\x0d\x3f\xad\x6c\xb7\x03\xbc\x52\xd2\xb7\x49\x51\x08\x07\x9b\x70\x5d\x1c\xcd\x7e\x2f\x94\xc0\xcd\x28\xd7\x11\x4a\xb6\x6d\x28\x97\xdb\x5f\x3d\x7f\xc5\xae\x0b\xee\xf6\x17\xcf\xd5\x20\xee\x3d\x07\xed\x32\x4c\x49\x73\x3d\x04\x7e\xfb\x45\x57\x42\x60\x73\xd7\xf9\xe1\xbd\x1b\xf8\xe8\xd7\x72\x27\x62\x3f\xe5\xba\x7c\x7e\x98\x7b\x94\xb5\xe2\x3d\x62\x37\x62\x9c\x4f\xe8\xc9\xd1\x14\xa8\xdc\xfc\x29\xc0\x47\x55\x18\x15\x3e\x69\x03\xa8\xe2\x80\x28\xca\xd5\x22\xaf\xb6\xa3\x17\x6f\xaf\x16\xd3\x97\x27\xe7\x2f\xdf\x2e\x4e\xce\x66\xf3\xeb\x85\xe2\x69\x9a\x9d\x43\x21\x52\x25\xea\xc8\x40\xd1\x7c\xcb\x99\xc1\x1f\x6d\x20\x97\x8b\xeb\x8b\x7d\x0e\xa4\x0b\xbe\xf1\x40\x02\xf7\x46\xb4\x4b\x0c\x81\x58\xa1\x79\xc0\x0a\x2e\xbc\xd8\xb3\x0d\xbf\xd6\xda\x77\x39\x6a\xa4\x81\x97\x36\xb5\x34\xd5\x48\x71\xca\xc7\xf6\x9b\x84\x7e\xb7\x93\xbb\x30\x95\x08\xe7\x7f\x55\xde\x46\x2a\x66\x5a\xaa\x57\xdb\xf9\x43\x9f\xae\xfd\xe9\xa1\xdc\xa0\x1e\xfa\xad\x49\xa0\x98\x29\x32\xf1\x53\x5d\xda\xc1\x7e\x9d\xcd\x69\x8a\x30\xd1\x7c\xfb\xc3\x9d\x23\xa1\xad\xa6\x7f\xad\xcf\xa3\xa8\xf2\x15\x5a\x43\x6e\xdf\x96\x0a\xb4\x0d\xe7\xed\x94\x9e\x6c\x60\x46\xa1\x73\xe3\x26\xfe\x32\x37\xea\x6b\x30\xb4\x37\xed\x83\x4f\x37\x86\xd0\x6e\x0c\x68\x2c\x41\xa6\xc9\x7e\x20\x42\x29\xf6\x60\x23\x6a\xc5\xb5\x1a\x5b\xe4\xdc\xe4\x0e\x88\xdc\xfe\xd2\xf6\x60\xeb\x92\xc8\x57\x7e\xeb\x03\x31\xcf\xac\xa1\x03\x3d\x28\xad\xbf\x36\x5b\x7f\xf5\x47\x73\x98\xef\x43\x9d\x9e\x3c\xde\xfe\xba\xb1\xf3\x84\x47\xc9\x3d\xb7\x64\x90\x9d\xa3\x1d\x0b\xdb\x2c\x2a\x1e\x00\x1b\x77\x65\xa5\xc2\x44\x58\x7a\x44\x96\x40\xbb\xc8\xb7\x05\x5b\x2e\x20\x71\xf3\x50\x35\x04\x19\xed\x2a\x39\x7b\x79\x95\x03\x2a\x73\x4c\xf6\x9e\x6a\xbc\xcc\xba\x04\xd9\x86\x58\xbc\x23\xb4\x74\xa8\x9a\x21\x36\xc0\x39\xb2\xa4\xdd\xb2\x84\x0d\x84\x67\x65\x5d\xfa\x56\x5f\x28\x7d\x69\x59\x21\x1d\x6f\x4d\x0e\xef\x7f\x4f\xa9\xec\x4b\x19\x5f\x6e\xfc\x10\x1d\xdf\x60\x21\xe0\x76\x74\x75\xc2\x89\x1d\x90\x5e\x34\xca\x14\xd3\xed\xdb\xb7\xb9\x51\x0f\x1c\x8a\x8b\x27\xda\x12\xac\xe8\x6a\x45\x2e\xae\xe8\x3f\x69\xa7\x3d\xad\xa1\x6a\x5f\xd3\x3a\x2e\xab\xf5\xd5\x67\xfa\xb5\xcd\xea\x2b\x9d\xa7\xdb\x49\x67\xb7\x52\x3b\xdd\xbe\x61\xd6\x94\x71\x12\xa5\x48\xde\xde\x8a\x65\x40\xba\x91\x1e\xa9\x57\x0c\x22\xe7\x07\x10\xd0\x99\xe6\xa4\x39\x25\xc7\x08\x18\x8d\x54\x0f\x43\x33\x39\x97\xaf\x67\xfd\x3a\xee\x34\xea\x8b\x63\xd2\xe1\x7b\xd1\xd6\xac\x2f\x9e\xf6\x79\x1b\x20\x0f\x73\xd1\x10\xcd\x15\x52\x2a\xb8\x61\x03\xde\xd7\x6d\x31\x4f\x24\x9e\x8d\xc0\xad\x0f\xbe\xb5\x4f\x7d\x5a\x4a\x2f\xa0\xd1\x5f\xb5\xb4\xea\x87\x45\x03\x5f\xd2\x6f\x07\x5b\x16\x82\xd7\x1c\x31\xac\x7d\x61\xc9\x83\x49\xed\xd8\x3e\x2f\xb5\x9f\x7b\xc0\x8d\x36\x1b\x9d\xa8\xee\xc6\x96\xbb\x8f\x01\x3b\x2e\x05\xf7\x7c\x8e\x25\xd9\xa9\x44\x9d\x66\x76\x52\x74\xf8\x5c\x6f\x7c\x4a\x45\xb0\xfd\x35\x41\x7f\x28\xd9\x0d\xfd\x7e\xd7\x96\xa6\x1d\x0c\xc4\x6e\x67\xf4\x58\xea\xc3\x06\x28\x65\xc0\x37\x52\xa1\xeb\x9a\x0e\xb1\x4f\x61\x8e\xea\x38\x5a\xc5\x3a\xaf\x37\xd3\x6e\xc6\x74\x64\x32\x0d\x1e\xde\xa1\x11\x0a\x05\xad\xa8\xb1\x26\x60\xcc\xe5\x02\xd0\xf0\xcf\x51\x44\x56\x5a\xbf\x2c\xec\xd2\xc6\x35\xb4\x30\x87\xbe\x9b\x06\xac\xc4\x65\xda\x51\x1a\x76\x33\xa7\x43\x93\x5a\x21\xb3\x4a\xad\x00\xbd\xda\x77\x46\xf5\xc7\x5e\x30\xdb\xd9\x67\xed\x57\x73\xa8\x68\xfa\xd2\x80\x4d\xac\x64\x6d\xcc\x25\xa3\x81\x69\x1d\x8d\x5f\x49\xce\xa6\x41\xd0\xd8\xca\x18\xcb\x7d\x47\xa0\xf4\xce\xef\xc6\x90\xdf\x93\x0f\xbb\x4c\x9f\xcb\xc6\x06\x0a\x49\xa2\x90\x48\xf2\xfd\x6c\x45\x2a\x9d\xd7\x55\x16\x39\x4a\x85\xfb\xe7\x22\x39\xc5\xb0\x62\x17\x0f\x3a\x31\xcb\x5f\xdb\x71\x4d\xac\xce\x20\xc3\x26\x80\xf9\x3d\xa5\x30\x19\x9e\xb9\xe7\x9c\xbf\x45\xd5\xe7\xb9\x4a\xd1\x29\xf6\xc7\x1f\xdb\x6b\xc4\xec\x42\xc3\xae\xf4\x2c\xa0\xf8\x9b\x6e\x80\x7d\x08\x3f\x7a\xa1\x12\x18\x6d\x7c\x1d\x49\xcd\xed\xac\x30\xe9\x33\x94\x68\x5a\xf6\xc2\xa6\x4a\x57\x3b\x77\x22\xd8\x38\x5f\x1d\xcd\xcf\xce\xa6\xe7\xc7\xed\xbe\xe4\x46\x7d\xfa\x51\x90\x85\xe9\xfc\x56\x86\xfb\x25\x00\x55\x45\xb9\xb5\xfb\x36\xb5\x77\xf3\xac\xea\x38\x22\x3c\x76\xe4\x53\x59\x79\xba\xfc\xfe\x0c\x7a\xf4\xc1\x7e\xec\x27\xef\xae\x91\xed\x02\xa0\xe8\xd6\x91\xdf\xc8\xac\x5e\x3a\x22\xca\x1d\x3d\xd1\xda\xb1\x17\x2d\x20\x51\xa8\x41\x69\xdd\xa9\x6a\x6d\x95\x77\x15\x85\x49\xdb\xa1\xde\x75\x6f\x91\xe5\x55\x8b\xfa\xfd\x6a\xc1\xab\x25\xdd\x29\x49\x51\x29\x41\x40\xc2\x75\x36\xb9\x96\x6c\x91\xa6\x48\xbb\xa3\x9a\x90\x37\x95\xf6\x6f\xa0\xa0\x92\xd1\x28\x8d\x28\xe0\xae\x1c\xcd\x16\xaa\x72\xb4\x32\xa3\x11\x86\x53\x5b\xcf\x10\xd2\x25\xa7\x25\xdb\x2d\xee\x8f\x86\x17\x90\x6d\x51\xc9\x80\x95\x36\xf5\x6a\xe5\x32\xc0\x86\x3a\xf7\xf5\x01\xba\x3e\xdd\x33\x12\xb2\x75\x85\x65\x4c\x80\x15\x70\x6c\x6e\x9e\x4d\x8b\xc3\xca\x74\x84\xee\x76\xb1\x76\x8f\x05\x68\x67\x62\x5d\x3d\x6f\xf0\x85\xc1\x71\x2b\x75\xe3\xd3\xd6\xd4\xad\x17\x1d\x91\x27\x02\xf9\x16\x50\x7f\x36\x16\x19\xd7\x52\xd5\x0e\x64\x50\x84\xc2\x8e\xd7\xa0\xb3\xce\x12\x0e\x02\x77\x12\xba\x4f\xd1\x7d\x0b\xfd\x11\x59\x6e\xd1\xd1\x58\x03\x84\x8e\x87\x18\x29\x8c\xbe\x87\x94\x64\x4b\x82\xcb\x58\x9a\x41\xa0\x96\x2b\xdb\x45\xf1\x38\x94\x8e\x42\x5b\x0f\xbf\xce\xdd\xce\xa3\xf8\x6f\xd6\xf2\xc1\x3e\xe5\x1d\x0d\x4f\xe3\x53\x7c\xc1\xfd\xf8\xe3\x59\xe5\xa5\x7c\x50\xf6\xdd\xaa\xb4\x73\x1a\x3d\xd3\x0e\xf2\xb4\x52\x89\x6a\xa7\x4a\xeb\x16\xb9\x1a\xf3\x9f\x14\xeb\x3e\x70\xca\x66\x45\xca\x17\x79\x1e\x85\x5f\xa2\xbd\x5b\x75\x99\xb2\x83\x78\x87\x78\xd8\x31\x32\x59\x47\xb4\x54\x15\xb1\x91\xde\xd4\xd5\x90\x8b\xdc\xfd\xa0\x6e\xd1\x34\xa5\xd8\xd4\xfb\x05\x89\x62\x8b\x82\xe2\x7d\xcc\xb2\xa8\x78\x60\x71\xfb\xaa\x74\x01\x5d\xd6\x87\x5d\x70\xcc\xca\x76\xc0\x29\x05\x74\xa5\x4c\xb6\xdd\x26\xbb\x92\xda\x38\x05\xbe\x53\x3b\xd7\xd0\x67\x88\xc2\x4e\x43\x02\x6d\x8d\x63\x0e\x57\xe8\xd8\x50\xbd\x41\xf4\xa1\x4f\xdd\x2b\x78\xd5\xd1\xc5\x0d\x12\x30\xef\x58\xf8\xf2\xbb\xf2\xc9\xdb\x59\x72\x1d\xcd\x76\x60\xed\xdd\x1e\xf7\x17\x18\x72\x8a\xee\x66\xb9\xfe\xac\x15\x41\x5b\xb3\x7e\x6e\x6d\x51\x27\x9e\xb6\x66\xbd\x94\xc8\x5d\xa6\x54\x0b\xb0\x45\x7e\x77\xce\x57\x82\x06\x52\x1f\xc5\x36\x7a\x6c\xe3\xe1\xe7\x2f\xbc\xa3\x23\xf8\x46\xbe\x8e\x91\xa7\xc0\x25\x22\xde\x8b\xf8\x90\x53\xac\x2d\x39\x0d\xae\xca\xf6\x09\x92\xf4\x7d\x91\x1c\xb7\xda\xd5\x20\x5d\xf1\x87\xa0\xa5\x71\xc6\xfe\xd3\xd7\xff\xe9\xff\x0d\x00\x00\xff\xff\x3d\x6d\xa2\x20\x65\xc9\x02\x00")
func cf_i18n_resources_pt_br_all_json_bytes() ([]byte, error) {
return bindata_read(
_cf_i18n_resources_pt_br_all_json,
"cf/i18n/resources/pt_BR.all.json",
)
}
func cf_i18n_resources_pt_br_all_json() (*asset, error) {
bytes, err := cf_i18n_resources_pt_br_all_json_bytes()
if err != nil {
return nil, err
}
info := bindata_file_info{name: "cf/i18n/resources/pt_BR.all.json", size: 182629, mode: os.FileMode(436), modTime: time.Unix(1426081216, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _cf_i18n_resources_zh_hans_all_json = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xec\xfd\x6b\x77\x13\xd7\x96\x30\x0a\x7f\x7f\x7e\x45\xbd\x79\x3f\x90\x9c\x61\x9b\x24\x7b\x77\x8f\xe7\xf0\x8c\x33\xfa\x38\x60\x88\x4f\x03\x76\xdb\x86\xee\xfd\x84\x0c\x76\x59\x2a\xdb\xb5\x91\x55\xda\x2a\xc9\xc4\x3b\x9d\x33\x4c\x82\xc1\x5c\x4d\x12\xee\x71\x02\x24\x38\xe4\x86\xed\x5c\x3a\x18\x5f\xe0\xc7\x6c\x95\x24\x7f\xca\x5f\x38\xf3\xb2\xaa\x54\x25\x55\xad\xaa\x5a\x25\x43\xba\x47\xf7\xe8\x1d\x64\x69\xad\x39\xe7\xba\xcd\x35\xd7\xbc\xbe\xf3\x3f\x34\x4d\x7b\x1f\xff\x03\xff\xf7\x8a\x99\x7f\x65\x9f\xf6\xca\x89\xe2\x89\xe2\xd8\xe0\xf0\xbe\x13\xc5\x57\x7a\xdc\x5f\x2a\x65\xbd\x68\x17\xf4\x8a\x69\x15\xdd\x26\xce\xda\x62\xf3\x97\x5f\x9c\xaf\xbe\x0f\x34\x9c\xb6\xf2\xe6\x84\x69\x20\xa0\x09\xbd\x60\x1b\xf8\xfd\x07\x3d\x11\x58\xfe\x64\x55\xcb\xda\xff\x33\x3a\x74\x54\xb3\x2b\x65\xb3\x38\xa9\xd9\xb3\xc5\x8a\xfe\x9e\x66\xda\x9a\x59\x9c\xd1\x0b\x66\xbe\x4f\xd3\x86\xcb\x56\xc9\x28\xfb\x7e\xaa\x4c\x99\xf6\x3e\x4d\xcb\x4d\x68\xb6\x51\xe9\x2d\x57\x8b\x45\xe8\xda\x6b\x14\x67\xcc\xb2\x55\x9c\x36\x8a\x95\xde\x19\xbd\x6c\xea\xe3\x05\xa3\x77\xb2\x6c\x55\x4b\xda\x9e\xf7\x4f\xbc\x52\xd4\xa7\x8d\x13\xaf\xec\x3b\xf1\x0a\x80\xad\xc2\xa7\x9e\xce\xaf\x3e\xd8\x23\x1d\xef\xef\x97\xd8\x17\x3e\xe7\x76\x45\x9f\xfc\x4f\x33\xe7\xbb\x43\x6c\x8a\x39\xff\x3f\xb4\xb1\x29\xc3\x36\x80\x98\xf2\x8c\x99\x33\xb4\x52\x01\xc6\xa9\x4d\xe9\x33\x86\xa6\x17\x35\xdd\xb6\xad\x9c\xa9\x57\x8c\xbc\x96\xb3\xec\x4a\x9f\xb6\xbf\x6c\xc0\x1c\xc0\x58\x75\xaf\x87\x59\x84\x41\x14\xe1\xc3\x69\xb3\x50\x80\xbf\x72\x30\x2b\x38\x48\xee\x11\x39\x83\x84\x58\xcb\x1b\x45\x0b\xa1\x87\xa0\xb7\x4b\x46\x0e\x46\x91\x23\x38\xb6\x9f\x94\xd3\x66\x65\x0a\x50\x18\xd3\x7d\xda\xe0\x44\x18\x25\xd6\x04\x53\x50\x99\x2d\x19\x38\xe7\x39\xa4\xda\xc8\xf7\x40\x5b\x04\xc6\x94\x8e\x1b\x4c\x6c\xd9\xc8\xf7\x85\x4e\x5d\xa5\x5c\x95\xcd\x5c\x7f\xa9\x04\x0b\xaf\x97\x01\xb0\x94\x19\x39\x1b\xd7\x1b\xd7\xbf\x69\x7c\x73\xc9\xd9\x58\x74\x9e\xfc\xe4\x5c\x5b\x75\x2e\x7e\xa3\xc8\x95\x10\xe7\xfb\xef\xf7\xc1\x3f\x47\x61\xf9\x3f\xf8\x40\x3b\xad\xdb\x2e\x11\x5a\xd5\xc6\x85\x11\x53\x3f\x3d\xad\x17\xf3\xda\x9f\xa1\xf1\x7e\xfe\xfc\xc1\x07\x7f\x96\x92\xd9\x3d\xd0\x29\xc6\x73\xd4\xd2\xf4\x92\xa9\x19\xc5\x7c\xc9\x32\x8b\x15\x3c\x12\xd1\x3b\x26\xae\x79\x0a\xbc\x23\x56\xb5\x62\x68\x15\x0b\x37\x41\xb5\x38\xad\x97\x4a\x30\x48\x18\x1c\x6c\x46\x8d\xb6\x44\xb1\x52\x98\xd5\xc4\xf7\xd0\x0c\x36\x1b\x60\x2e\x15\xcc\x1c\x51\x23\xa3\xb1\x7b\xa0\x53\x8c\x07\x6f\x44\x4d\x3b\x06\xe7\x78\x0f\x30\x96\x69\xbd\x7c\xca\xa8\xc0\x51\x82\xa3\xd0\x6b\x6b\xa3\x03\x23\xc7\x07\xf7\x0f\xec\x41\x6c\x33\xa6\x71\x1a\x0e\x9d\x9d\x2b\x9b\x25\x44\x67\xe3\x59\x31\x8b\x79\x73\xc6\xcc\x57\xf5\x82\x38\x7f\x16\x9e\xaa\x49\x73\xc6\x28\xba\x67\x4b\x36\xe2\x17\x89\x3c\xed\x9c\xf4\xdb\xb6\x39\x59\xd4\xca\x56\xc1\xb0\x99\x6f\xec\xc1\x7d\xcb\xeb\x00\x24\x97\x61\xa3\x23\x1f\xb6\xca\x93\xbd\xd8\x68\x8f\x86\x7b\x3b\xbc\x8d\x5d\x82\x31\x71\x2b\xd9\x71\xf7\x24\x0f\xad\xb6\xbe\x01\x27\xbf\xbe\xf0\xa4\x1d\x9c\xb3\x70\x6e\x67\xfe\x8a\xb6\xa7\xb1\x79\xb6\xb1\x79\xbe\xfe\xf9\x47\x3b\x77\xae\xed\x71\x16\x2f\xee\x69\x7c\xbb\xb1\x73\xeb\x17\xfe\x42\x7d\xd0\xb4\x14\x88\xf3\xe0\x98\x5e\x9e\x34\x2a\xde\x31\xa5\x55\xa8\xd0\x77\x5a\x11\xd6\x82\x46\x94\x70\x2c\xdb\xcf\x61\x2c\xe1\x50\xeb\x97\xcf\x3b\x2b\x77\xeb\x37\xd7\x98\xfc\x2e\x10\x1e\x45\x30\x2c\x53\x6a\x72\x3d\x58\x3b\x73\x17\xea\x97\xbe\x45\x32\x69\xda\xd5\xc9\xac\x8a\xad\x5e\xb0\xe0\xee\xd6\x7a\x75\xad\x7f\x78\x50\xeb\xed\xb5\x4f\x99\xa5\x5e\xdb\x2e\xf4\xd2\xdd\x4f\x74\xed\x01\x8a\xa9\x29\xb2\x2d\x49\x2b\x18\xa5\x5d\x2d\x95\xca\x86\xcd\x02\x82\x66\x94\xcb\x56\x39\xd9\x50\x77\xe6\xee\x36\x9f\x9f\x77\xc9\xa9\x2f\xdc\x6c\xce\xcd\x33\x46\xe7\xe3\xed\xda\xe6\xc3\xfa\xe7\xcb\xce\xf3\xed\xc6\x8d\xe5\x3d\xe1\xc8\x77\xae\xdf\x69\xae\xae\x2a\xcc\x06\x7c\x7a\x0b\x2e\x52\xb8\x19\x8e\xe8\x45\x7d\x12\xa4\x9c\x5e\x96\x0f\x0c\x3a\x44\xd3\xf4\x25\xf1\xb7\x71\x6e\xa6\xe9\xb9\x9c\x55\x05\xbe\x8d\x3f\x97\xf4\x59\x94\x76\xe0\xfc\x4f\x58\x92\x8b\x29\x0c\x89\xb3\xf0\x99\xb3\xb9\xe1\x7c\x72\xb9\xb1\xf2\xa0\x71\xed\x5c\x73\xe5\x41\xf3\x97\xa7\xcd\x5f\xbe\x86\x93\x06\x5f\xd6\x36\x6f\xd7\x7f\x78\x56\x7b\xfe\xa0\x7e\x66\x55\xe9\x5a\x82\x4f\xfb\x0f\x9e\x3c\xda\x7f\x64\x40\xd3\xab\xc0\x31\x50\xd2\xfa\xbf\x8d\xf7\xf4\xe9\x52\xc1\xe8\x83\xeb\x4f\x3b\xf1\xca\x89\x13\x27\x5e\x29\x81\x44\x72\xda\x2a\xe7\xf1\xf3\x89\x57\xb4\x57\x81\xaf\xe9\x20\x6e\xfc\xb5\x0a\x02\x0d\x48\x80\x13\xb8\x4d\x80\xf3\x17\x35\xb7\xe1\x6b\xb2\x41\x26\xc1\xe8\xac\x9e\x6b\xdc\x3f\xe3\xe2\xe3\xbf\x6a\xeb\x8f\x9b\x97\x96\xeb\x4b\x17\x9c\xad\x1b\xce\xe2\x93\xdf\xb6\x2e\xef\x2c\xcd\xed\x9c\x3f\x0f\xbb\xbf\xb9\xfd\x43\xed\xa9\xf8\xfe\xb5\xdd\x99\x87\xe9\x59\x6f\x74\x48\x12\x1e\x0c\x31\xfe\x09\xd8\xf8\xee\x4f\x82\xf3\xea\xcc\x6f\x5e\x93\xaf\x76\x4a\x94\x6d\xb3\x00\x1c\xa8\x7e\x7f\x8b\x67\xa1\xf9\xf5\x19\x9e\x02\xfe\xf2\xb5\xac\x9b\x21\x67\x95\x66\x7b\x6d\x10\xfa\xe1\x66\x1b\x1d\x3a\x36\xb2\x7f\xa0\xb7\x7f\x78\x58\x1b\xeb\x1f\x39\x34\x30\x46\x1f\xdf\xe9\xb5\xdc\x3f\x87\x46\x0e\xbd\x0b\x7f\xdb\xee\xdf\xa3\xc3\xfd\xfb\x07\xf0\x9b\xde\xa2\xd5\x0b\xe7\x1c\x05\xab\x77\x93\xcd\xc4\xee\xe2\x55\x99\x09\x66\x7c\xaf\x5a\xd3\x66\x05\x77\x79\x19\x97\x49\x1c\x6a\x5e\x19\x64\x68\xdc\x08\xc4\x34\xa3\xac\xe7\x2a\x70\x9f\x83\xd8\xd3\xdb\xeb\xc1\x20\x19\xbc\x54\xb6\xa6\x4b\x15\xda\x2c\xe3\x56\x65\x2a\xe1\xd6\x10\xe8\x6b\xeb\x57\xf8\xe6\xe1\x4b\xd6\xb9\x76\x05\x4e\x3f\xef\x07\x67\xf1\xc3\xfa\x8d\x35\xd8\x06\xa2\x8b\xb3\x76\xae\xf9\xfc\xb3\xda\xfa\x5c\xfd\xf1\x72\x7d\xf1\x5a\xe3\xe1\x46\x6d\xfb\x7e\xf3\xd9\xa7\xce\xfc\x72\x67\xe7\xcc\x1b\x45\xdc\x0b\xc0\x68\x2d\xed\xd5\xf6\xf1\x82\xac\x03\x73\xa5\x55\xcb\x05\x9c\x24\x6b\xbc\xa2\x43\x5b\x5d\xb3\x8a\x46\x6f\xc5\x84\x69\xec\x98\xc2\x44\x6c\x23\x14\x25\x8c\x1a\x06\x5b\x7b\x86\x03\xaf\xad\x7f\xe7\x2c\xae\xd6\x36\x97\x9b\x57\x9f\x38\xcf\x6e\xe1\x54\xfc\xf0\xa0\x3e\xf7\x88\x87\xdc\xb8\x7b\x76\xe7\xd3\x67\xf5\xab\xcb\xdd\x1a\x7b\xb5\xf3\xe8\xf6\x96\x76\x95\x71\x2a\x20\x4e\xc7\x41\x77\x79\x66\x76\x91\x95\xa6\xc3\xfc\x02\x39\xaa\x94\xb0\x92\xfe\x0f\xff\x70\xda\x1a\x39\xa0\xbd\xca\x9a\x80\xd9\x08\x56\x03\xcf\x54\x10\x10\xab\x28\x4c\xd8\xdd\x98\x90\x16\xde\x28\xee\x52\xdb\x5e\x02\xd1\x9e\x79\x4c\xe6\x39\x28\x55\xed\x29\x10\x0d\x87\xf9\xaf\x77\x7a\xc7\xb5\xb7\x8e\x0d\x1e\x3e\x00\x6c\xfb\x9f\xe9\x2b\xe4\xdd\x39\x6d\xff\xd0\x91\x23\xfd\x47\x0f\xe0\x1f\x79\xed\xc0\xd0\x91\xfe\xc1\xa3\xf8\x79\x42\x83\x6f\x07\x0f\x0e\x8c\x8e\x9d\x1c\xee\x1f\x7b\x3b\xe1\x85\x42\x28\xfd\x6a\x09\xc4\xea\x5c\x9e\x87\x31\x32\x36\x16\x1c\x19\x99\x73\xef\x9e\xf8\x7e\x42\xdb\xf9\xe8\x9b\xc6\xf6\x4f\xf5\xc5\xc5\xe6\xf3\xb5\xfa\xcd\xf3\xb5\xcd\x5f\x9b\x4f\x56\x9d\x67\x67\xa3\x2e\x14\xa9\x06\xa5\x9d\xa0\xae\x8d\x46\x89\xd4\xd8\xf5\x1a\x2a\x4f\xf6\x57\xf3\x66\xc5\x42\x09\x74\xc4\xd0\xf3\xbd\x56\x11\x6e\x34\x10\x69\x49\x68\xb7\xf0\x6d\x42\xc2\x2c\xed\xce\xb2\x51\xb2\xca\x15\x5b\x3e\x82\x00\x48\x67\xf1\xbb\xe6\x47\xdb\xcd\x95\xe7\x3b\xb7\x56\xf8\x81\x02\x4c\x99\xa5\x58\xd8\x78\xf5\x8b\xcb\xce\xc7\x17\x33\xd0\xde\x92\x9e\x07\x8b\x33\x66\x50\x44\xc7\x73\x65\xf7\xc0\x1b\xb7\x60\xe4\x58\x38\xcf\x4d\xe9\xc5\x49\xa1\x8d\xeb\xa1\x6f\xe0\x01\x8c\x1a\x39\x78\xac\x83\x1c\x5f\x30\xe1\xe6\x8f\x1f\x5c\x0b\xe7\xce\x87\x73\xcd\xd5\x27\x9e\xc4\xce\x47\x0a\x79\x0a\x3d\xc9\x70\x7c\xd7\x9f\x3a\x8b\xb7\xeb\x4b\x57\x9c\x8b\x0f\x40\x9e\x77\x16\x3e\x81\x5f\x9b\x2b\xcf\x1a\xdb\x2b\xf0\x52\xde\xf9\xf2\x73\x78\x10\x3b\x0b\xbf\xaa\x4e\xc0\xb0\x0e\x4c\xd3\x9e\xb2\xaa\x85\x3c\xea\x65\x74\xed\x6f\x66\x49\x9b\x30\x0b\x46\x4f\xeb\x2a\xf6\x7f\x09\x2b\xa2\x03\x97\xc8\xe9\x05\x2d\x6f\x96\x61\x56\xac\xf2\x6c\x9f\x36\x6c\xd9\x26\x8e\x10\xd5\x39\xba\x56\xa2\xbf\x66\x0c\x12\x71\x60\x98\x38\x81\x15\x1b\xae\x78\xd3\x2a\x9b\x95\x59\x9e\x36\x68\x69\x5b\xa4\x42\x9b\x00\x51\x07\x40\x9e\x06\x11\x0c\xb1\x4d\x99\x93\x53\x86\x4c\x3f\x0a\x5f\xf1\x8e\x85\xad\xdd\x5c\x5d\xae\xdf\x5e\xe5\x5b\x1c\x88\xe4\xfd\x0c\x13\xc4\xdf\x1c\x1b\x39\xec\x2c\xac\x75\xfe\x0a\x4f\xc1\xfa\xd2\x0f\xce\xd2\x5a\xe3\xb3\x15\x67\xfb\xc6\xdf\xe7\x3e\xac\x6d\x5f\x81\x09\xf5\x40\xd5\x6f\xfc\xc2\x52\x12\x4f\x74\x6d\xeb\xb6\x33\xbf\xd0\xd8\x78\x04\xdf\x38\x4f\x7f\x05\x81\xa9\xf9\xe0\x72\xfd\xea\x27\x70\xa4\x10\xd7\xe6\xd5\xfa\xd2\x5c\x6d\xfb\x2a\xe0\x82\x0f\x3b\xdf\xdf\x56\x3a\xf2\xc3\x78\x5a\xa7\xab\x85\x8a\x09\x2c\x17\x15\x5f\xde\x8d\x06\x9b\xd1\x9c\x80\x29\x91\x99\x76\xe0\x2b\x7e\xd9\x77\x1e\x6f\xfe\xc6\x79\x78\x17\x25\x1d\x1f\x37\x50\x33\x00\xc1\xa7\x51\xbc\x61\x5b\xe7\xf3\x38\x2a\xaf\xe0\xe2\x80\xf3\x20\x0e\xb7\x77\x30\x50\x21\x6e\x83\x04\xc7\x4f\x77\xba\x99\xe5\x63\x68\x03\x5d\xbf\xb7\xdc\x58\xba\x54\x7f\xfc\x90\xf5\x27\x70\xf5\xc2\xd1\xaf\xdf\x82\x67\xfb\x2d\x5c\x46\x3a\xfa\x70\x46\xc4\x2a\x65\x7a\xd8\x12\xe6\x03\x06\x08\xe3\x64\x96\x08\x7b\xb0\xd3\x9a\xf0\xc8\x48\xfb\xe6\x8d\xd3\xa0\xe1\x27\x67\x6f\x1d\xb8\xda\xde\xed\x01\xc5\x38\xb0\x00\x3a\xfc\x38\x60\x9e\x0e\x1a\x7f\x66\xd6\x47\x44\x24\x60\x7e\xf8\x8d\x51\x44\xb3\x8b\x36\x01\x33\x52\x2d\x0b\xc1\xcb\x53\x45\x26\x5c\xd5\x04\x3c\xef\x93\x05\x67\xf5\xa9\x38\x81\x2c\x61\xdc\x3d\xcb\x2b\xef\x5c\x5b\x85\x66\xce\xb5\xb3\x3b\x0f\x9e\x3a\x17\xef\xc1\x7d\xa0\x3a\x6c\xb4\xad\x88\xc7\x06\x8a\x4a\x70\xc0\x72\x7a\x91\x58\x1f\x3c\x36\xc6\x6d\xab\x80\x4a\x6a\x18\x5e\xd9\xc0\x21\xcc\x18\xdc\x86\xb8\x20\x72\xc0\xbe\x13\x45\x00\x32\x58\x71\x79\x26\xdb\x83\x34\xb4\x02\xe0\xa9\x2d\x97\xf5\x59\x3e\xb6\x64\xfe\xb2\xc6\xff\x02\x2c\x12\xad\x5e\x36\x3e\x6e\x58\xc3\x3b\xce\x16\x03\x43\x2b\x57\x0b\x86\x2d\xe5\x73\xbf\x63\x62\x5f\xe4\x9c\x33\x04\xfc\xe8\x1f\x09\x0d\x2e\xd3\x68\x18\x2e\x35\x7f\x4b\x87\x67\xc5\x10\xf5\xc1\xab\x89\x60\xe3\x2b\x1e\x2f\x28\x3c\x01\x24\xd2\x60\x4f\xfb\xaf\x55\xbd\x6c\x68\xe3\xf0\x74\x3f\x85\xb7\x1a\xfe\xe8\x37\x06\x4e\x99\x40\x1e\x23\xd7\xb0\x61\xd9\xf8\x6b\x15\x2e\x4a\x7a\xb6\x55\xc4\x28\x00\x31\x9a\x49\x01\xc5\x71\xd4\x36\x6a\x7f\xb1\x81\x45\xd2\xf0\x84\xc4\xbd\x8f\x7e\x7c\x87\xfe\x0b\x13\x2a\xfe\x85\x5e\xaf\xc0\x34\x56\xac\x9c\x55\x38\x01\x53\x7b\xe2\x95\x4a\xae\x84\x26\xcf\xd6\xcf\x30\x4c\xe0\xb9\xb4\x85\xb8\xc5\x1b\xaf\xf7\xbd\xf9\xc7\x3f\xf6\xbd\xd1\xf7\xc6\xff\x0c\xb6\x64\x36\x45\x6d\xfe\xf0\x87\xd7\xff\x11\xde\x7d\xfc\xdb\x07\xf4\xef\xbb\xbb\xb9\x2b\xff\x7b\x39\x5f\xe2\x72\xa6\x39\xb7\x74\xb3\xeb\x05\x90\xcd\x88\xfd\xe3\xab\x5b\x77\x8d\x45\xee\x23\x83\xbf\x8c\xb6\xfb\xc0\x57\x7c\x6d\x39\xf3\x67\x9a\x2b\xeb\x2c\xb3\x36\xe7\x2e\x47\x03\x48\x43\xe1\x3b\xbd\xa6\x76\xf4\xd8\x91\x93\x83\x47\x47\xc7\xfa\x8f\xee\x1f\x18\xc5\xe7\xd8\x29\xed\xc0\xe0\xe8\x3f\xe3\xa7\x69\xed\xc8\xc0\x91\xa1\x91\x3f\xe1\xe7\xa2\xf6\xf6\xd0\xe8\x18\x7e\x2a\x69\xf4\x88\x22\x65\x20\x74\xdb\x4f\x4d\x2b\xda\xd8\xe0\x91\x81\xa1\x63\x63\x31\x8f\x2b\xc4\xe8\xac\x7c\x51\x7b\x76\x09\x24\x44\xc6\xd6\xf8\xea\x4c\xe3\xb3\xdb\x3c\x32\xc6\xea\x9c\x9b\x77\x1e\xfb\xbe\x29\x6a\xb5\xf5\xcd\xfa\xd2\x06\x63\xe7\xeb\x9d\x25\x50\x78\x5c\xd6\x2f\xcc\x39\x4b\xdf\x88\x47\x18\x11\x55\xbf\xbf\x50\x7f\xf2\xa3\xb3\xf1\x35\x13\xd6\xfc\x75\xbe\x7e\xeb\x57\xf8\x7f\xb8\x08\x15\x5f\x69\x7a\x1e\xcf\x2a\x2c\x9e\x64\xa1\xc2\xda\x24\xc7\x90\xb7\x0c\x36\xe5\x1a\xef\x99\x20\xc8\xa3\xee\x81\x84\xa1\x68\x7c\xf1\x3d\x92\x63\xc7\x77\x47\x01\x04\xb6\xfc\xac\x6b\x99\x8f\xc6\xeb\xb9\x1a\x64\x46\x64\xa1\xa9\x5a\x8e\xe8\xcc\x52\xfd\xf1\x97\x8a\x88\x8c\xe9\x52\x65\x36\x1a\x3c\xbc\x56\x40\x38\x02\x11\x49\x11\x3c\x4e\xbd\xae\x91\xbd\x0b\x5f\x7a\x3d\xf0\xa8\x35\x90\x6d\x06\x54\xb1\x3d\x9a\xd1\x37\xd9\xa7\x4d\x55\x2a\xa5\x7d\x7b\xf7\xce\x5a\xd5\xf2\x49\x5c\x23\x54\x09\x45\x53\xd6\x55\xe0\xe9\xc7\x34\xa3\x9b\x05\x62\x58\xc0\xa3\x11\x9e\x6c\xd3\x27\xe9\x93\x9a\x02\x10\x91\x4b\x16\x29\x04\xe0\x69\xcc\xe3\x9e\xd6\x4f\xc1\x65\x03\xc2\xb3\x66\x56\xf8\x95\xcc\x73\x53\x2a\x54\x27\x05\x4a\x89\x24\xd8\x2d\xb8\xc9\x47\x82\xe8\x26\xac\x6a\x51\xb2\xbd\xeb\x4b\xdf\xd5\x2f\x3c\x83\x47\xaf\x0a\xfc\xb2\x31\x6d\xcd\x78\x8f\x7f\x3c\xff\xd6\x04\x51\x6b\xe3\xd3\xcf\x34\xec\x68\xbc\x29\xba\x26\xb7\x5f\xbf\x32\x4c\x13\x06\x57\xa8\x7b\xdb\x7b\x33\xe0\x5e\xf5\x62\xf6\x01\x73\x5e\xaf\xe8\x12\xbf\x8f\x2c\xb0\x12\x53\xfc\x9a\xc7\x87\x88\x7d\x4a\xde\x11\x92\x96\x89\xb1\xf5\x7b\xde\x4d\x05\xb3\x88\x4e\x3c\x16\x69\x86\x5c\x1b\x16\xcb\x04\xfb\x0b\x56\x35\xaf\x1d\xc4\x71\x96\xa3\xf9\x56\x6d\xfd\x6a\xa0\x61\x6d\xe3\x61\x6d\xe3\x13\x60\x63\xac\x5b\x6d\x3e\xb8\xec\x3c\x59\x76\xe6\x9f\xa8\x50\x79\xe0\xc0\xde\x11\xb8\xf0\x8f\x0f\x68\xc3\x87\x8f\x1d\x1a\x3c\x1a\x49\x44\xfb\xcf\x49\xf5\x34\x1d\x18\xb4\x91\x81\xe1\xa1\xd1\xc1\x31\x10\x32\x22\x91\x25\xeb\x94\x62\x94\xc7\x51\xd4\x39\x10\x89\x6f\xe7\xfb\xdb\x8d\x8d\x47\x2a\x90\x87\x07\x3d\x17\xb2\xe8\xd1\x40\xa3\xc6\xe6\x42\xe3\x7b\x15\xcf\x08\x3f\x06\xed\x55\x8f\xfb\xdb\xc0\xfe\xf5\x92\xd9\xe7\x33\x38\x44\x9b\xb6\x5a\x04\x24\x86\xa0\x44\xdf\xbe\x04\x14\xec\xcb\x8a\x83\x3d\x0b\xcd\x01\xf1\xf7\x07\x1f\x24\x41\x2a\xe9\xd4\x25\x2a\xb4\x57\xf1\xf7\x19\xa3\x6c\x03\x76\xf7\xe7\xe3\xfc\xe7\x07\x1f\x24\x59\x9b\x28\x98\x8d\x0b\x0b\x20\xf9\xca\x40\xaa\x0f\x21\xfd\x2c\x66\x9c\xc2\xe1\xd1\x48\x44\x7e\x1d\x9e\x0a\xec\x1c\xbe\x33\xf1\x7d\x2b\x9c\xcf\x35\xdb\xc8\x55\x51\x7d\xae\x91\xf3\xb3\x4d\x82\x3a\x8c\xc0\x35\xfd\x7d\x20\xf1\xc9\xce\x06\x4c\x81\x66\xe1\xbc\xdd\x86\x06\xb1\x04\x90\x24\x20\x38\x35\xa4\xe4\xd4\xe6\xe1\xb1\x43\xbe\x73\x3e\x59\x89\x44\x88\xe8\xbb\x2b\x51\x9f\x94\x14\xa0\x91\xa5\xec\xba\xc6\xa2\x06\xa5\x54\x8a\xc1\x2f\xed\x91\x06\x3b\xed\x08\x02\x04\x93\x79\x6c\xe4\x30\x9c\x51\x84\xd8\xee\xef\x0c\xe3\x44\x13\x1e\x7c\x37\x54\x9e\x14\xdf\xed\x65\xbd\x2f\x7e\x49\xda\x5d\xf1\x35\xaf\xcb\x31\x6f\x5d\xfa\xfa\xa2\xe5\x92\x17\x4f\x40\xf2\xb9\x29\x98\x00\x28\xe8\xc8\xed\x8a\x6e\x62\xe5\xc7\x0d\x24\x9e\x1c\xeb\x0b\x05\x76\x64\x86\x9d\xc1\xfa\xae\xfd\x07\x5d\x71\x69\xaf\x8e\x90\xfa\x34\x6d\xc4\x20\xfb\x3c\x02\x68\x03\xeb\x0a\x56\x31\xe0\x71\x0a\xf2\x46\x19\xe7\x47\x68\xe3\x4d\x56\x87\x61\x03\x9a\x53\xd2\x5d\xc1\x91\x90\xcc\xf8\x7f\x91\x61\x65\x5c\x47\x9b\xa2\x1d\x7c\x03\x21\x97\x1a\x26\x10\xb9\x20\x8b\xef\xbc\xa1\xf6\xc0\x20\xff\x64\x55\xa1\x3d\xea\x29\x2b\xe5\x59\xad\x5a\x14\xd4\xe1\x48\xa2\x7a\x11\xd1\x30\xee\xa2\x3b\x14\xb6\x80\x89\xe6\xfe\x51\x9b\xc5\x19\xeb\x94\x6c\x06\x81\x80\xb7\xad\xd3\xc6\x0c\xda\x51\xe1\x89\xec\xaa\x4c\x27\xcc\x32\xbc\x7c\x26\xaa\x85\x02\x92\x04\xc0\x30\xc2\x83\x70\x6a\xe6\x74\x09\x65\x72\x78\x15\x05\x68\xc5\x9f\xe8\x05\x80\x7f\x74\x52\xcc\xb4\x45\x6f\x9e\x3f\xf3\x64\xfe\xf7\x5c\xaa\xcc\x65\xe2\xf7\x45\xc1\xe7\xec\x4f\xfa\x69\x11\xc1\x83\xba\x67\xf7\x19\xc7\x9e\x15\x26\x59\xe4\xd0\x10\x07\x7d\x80\x3d\x46\xbf\x98\xbb\x03\x34\xc5\xa1\x4b\x8f\x8e\x56\x54\xe6\xc3\xae\x06\xd4\x08\xc2\xec\xea\x2a\x98\xc5\x5d\x59\x87\x04\x60\xbb\xbb\x12\x1d\x08\xbb\xb3\x16\x21\x60\x95\x57\xc3\xb6\xb4\xbc\x51\x30\xc8\x3c\xed\x45\x08\x91\xdc\x10\x3d\xd9\xce\xb5\xcb\xf5\x5b\xbf\x3a\x0b\xf7\x77\xee\x3c\xac\x5f\x98\x43\x7f\xbd\xcd\x8f\xd9\xa4\xcc\x8e\x5b\x2a\xf3\xc9\x72\xc8\x74\x15\xb8\xc5\xb8\x21\xc2\x2f\x0c\x74\x9c\x81\x01\xba\x7f\x8b\x18\x40\x69\x00\x89\xb3\xf4\x0d\x3b\xf8\x08\xbf\x86\xa7\x97\x9c\x0b\x57\x9c\xe7\xf3\x3b\x0f\x36\xf9\x7b\x36\x82\x2b\x87\x63\x60\xc8\x5a\xa2\x97\x89\xa6\x08\x9c\x6e\x7d\x93\x35\xf6\xc2\x20\x06\x7d\x0b\xd1\xda\xc2\x80\x4b\xc3\xb5\x2b\x8d\x47\x6b\xe8\x28\xf8\x7c\xde\x79\xf0\xbd\xf3\xf8\x56\x7d\xe5\x3f\x14\x09\x09\xc8\x89\x41\x8b\x42\xf4\x55\xe6\x27\xc6\x0f\xa0\xb6\x7e\xc5\x79\x7c\x1b\x16\xa7\x1b\xc4\xd0\xec\x9c\xb6\xca\xa7\xc8\x01\xea\x94\x59\x2a\xb5\xa4\x5d\x0a\xbb\x44\x62\x12\xad\x91\x1f\xac\xe7\xa2\xc4\x90\xb9\x05\x3a\x2a\x3d\xf9\xb9\xf9\xfc\x7c\xf3\xc9\x6a\xe3\xfa\x8f\xb8\xc5\xc9\xa1\xa4\x5b\xc3\x10\x47\x7a\x9c\x34\x98\x70\xcf\xa2\xcc\xcd\x47\x9e\x1b\xc5\xcd\xb4\x1f\xa0\xf3\xe4\xa7\xc6\xe6\x62\x6d\xfd\x2a\x7b\xb5\xb4\x83\xe2\x43\x5a\xdb\x38\xa7\x24\xee\x95\xd0\x0f\x8f\xc2\x89\x70\x5b\xa2\x43\x59\xde\xd4\x27\x8b\x16\xdc\xd3\x39\x9b\x2d\xd0\x05\x6b\x92\x6c\xb3\x91\x24\x37\x9f\x6f\x3b\x17\xef\x03\x8c\xe6\xea\x93\xfa\x8f\x1f\x36\x57\x2f\xd6\x6f\x3e\x16\xee\x86\x0b\x6b\xec\x7c\xc3\x8e\x55\x6a\x14\xda\xd1\x7a\xa5\x80\x77\x96\x0a\x74\x8e\xe9\xd3\xd9\xa6\x2a\x5e\x87\x32\x4e\xde\xd8\xbc\xc3\x3c\x86\xe3\xee\xd8\x60\x99\x05\x31\xbf\xc9\x18\x7d\xde\x98\x30\x8b\xec\x16\x48\x33\x2f\x67\x89\x2a\x20\x54\xe9\xc3\x48\x45\x06\x88\x1a\x04\xe9\xec\xb0\x8b\x33\xcd\x0e\xf3\xea\xe6\xa3\x4f\x9a\x17\x7e\xca\x40\x03\xdf\x21\x8a\x24\xd0\x62\x65\x24\x01\x78\xf5\x71\x8c\x8c\x8f\x59\x8a\xce\x66\x29\xf1\x30\xbb\x2b\xd0\x13\x7d\x04\xfe\xe5\xc7\x3d\x0e\x17\xbf\xe1\x50\x49\x11\x44\xda\x7a\xe0\xf3\xd7\xf0\xcc\x0f\x3e\xf1\xf9\x6b\x7a\xe8\x7b\x8f\xfc\x40\xe0\xa8\x4c\xd1\xc0\x73\xc7\xb3\xb6\xcf\x23\x06\xd8\x3c\x4f\x67\x10\x6b\x7d\xe1\x26\x2f\x74\x3b\xd6\xda\xfa\x63\x06\xc4\x41\xa8\xde\xca\xb4\x8f\xe5\x55\x76\x82\x0f\x8f\x6f\x7d\x4d\x53\x54\x48\x74\x67\x46\x77\x73\xe2\xba\x33\x3f\x59\xa7\xa7\x4d\x4f\x08\xf0\xdd\x6f\x4e\xd2\x37\x3c\x65\xde\xbe\xb2\xc5\x8e\x6a\x4d\x17\xfc\xa3\x17\xcd\xbf\xd1\x1c\x78\x33\x56\x4d\xa6\xd0\x7a\x39\x54\xa8\xcc\x92\x8f\xc7\x02\xe0\x7f\xc1\x0f\xe2\xbe\xf7\xd3\xa5\xac\xd9\xdb\x35\x44\xc9\xc7\x5a\xa9\xa0\xfb\x04\xbd\xd5\xe1\xf5\x60\x9d\x2e\x16\x2c\x1d\x24\x75\x78\x96\x94\x67\xd9\x39\x8b\xec\xc7\x64\xc1\x2c\x1a\x15\xf4\x7e\xc1\x20\x63\xe9\xb0\xba\x01\x53\x71\x04\xd3\xe6\x64\x59\x67\x3d\xa9\x90\x97\x06\x45\x4e\x8f\x03\xad\xb4\x01\xf2\x55\xa9\x3f\xfe\xca\x59\xfb\xbc\xb9\x7a\xa3\xf9\xfc\x4c\xe3\xd1\x66\x1a\x48\xa9\x88\x2e\x56\xc8\x66\x44\x5e\x82\xf0\x4a\x24\x55\xcc\x30\x7c\xe0\xf5\xfd\x33\x3e\x1a\xdd\x07\xe3\x9f\xdb\xc5\xbf\x3f\xbb\xae\x0e\x13\x65\xc3\x75\x14\xf4\x92\x97\xfc\xb9\x93\x64\xb7\x97\x2f\xc3\x8a\x2e\x12\xb2\x68\xfb\xad\x62\x05\x75\x37\xe8\x57\x02\x4b\x31\x0d\x92\x84\x0d\x53\x82\x9e\xe5\xe6\x04\xa9\x7f\xe0\xa5\x5b\x3c\xc5\xef\x5d\x4a\x4d\xc3\xc1\xe5\xf2\x0d\xf0\x5f\x68\x74\xc9\x57\xb5\x8a\xea\xb7\x0a\x26\xe2\x60\xb7\x70\x18\x44\xb1\x37\x10\xc0\x1a\x6d\x8c\xfe\xfc\x0b\xb6\xf0\x3b\x5b\x8b\xcc\xf3\x9b\x1b\xdf\xd7\x36\xb7\x77\xbe\xbb\xdc\x5c\x3d\x93\x8d\x18\x74\x84\x89\xd9\xf0\xf0\xd0\x26\x44\xf8\x44\x5a\x7d\xd2\x78\x7c\xc1\x79\x36\xaf\xb8\xb5\x7d\x78\x41\x1e\x9d\x02\x3e\x65\xbc\x57\xc2\xa7\x2f\x26\x33\x62\x6f\x1c\x7c\x5c\x8c\xeb\xb9\x53\xa4\xf5\xb6\xe0\x11\xd2\xab\xfb\xa6\xae\xcf\x4d\xd1\x45\xe9\x1c\xfe\xec\xcf\x93\x70\xa2\xfa\xfa\xeb\x7f\xc8\xb9\xc6\x4c\xfa\xcb\xc0\x30\x3c\xfe\x1e\xa7\xdc\xfd\xce\x12\xdf\xc1\x0d\xe1\x7e\x65\x8b\xaf\xd8\x13\x9f\xbe\xfc\xb3\x08\x92\xf5\xa8\xe1\xd8\x84\x20\x39\xd1\xfb\xfc\xbf\xf0\x50\x13\xaf\xf7\x5b\x83\x87\x0f\x0f\x1e\x3d\x84\x91\x77\xfd\x87\x06\x46\xa2\xdf\x8b\x94\x64\x81\x43\x19\x54\xd0\x60\x4c\x23\xf9\x9e\x46\xbf\x0b\xeb\x5f\x9c\x85\xd7\x3c\x3b\x80\xaa\xbc\x0b\xbd\xb8\xc9\x68\x73\x75\x58\x93\xe4\xf0\x4d\xf4\x9a\x6e\x97\x7a\x12\x3c\xfa\x92\x77\xcc\x4e\x0b\xea\x1f\x5d\x6f\xb1\x76\xf3\xb7\x48\x4a\x84\xd1\xd5\xa8\xaa\x74\xad\xe4\xbe\xec\x43\xd1\x8a\xc6\xdd\x47\xf8\x42\xc7\xee\x1a\xdc\x5f\xd8\xd8\xe5\x08\xd3\x8f\xbd\x2d\xe3\x59\xbc\x51\x5d\xa8\x9c\x38\xec\x88\x94\x52\xec\xdf\xed\x2c\xac\x65\x74\xe2\x40\x9a\x70\x68\xe3\x46\xe5\xb4\x61\x14\x51\x78\x0b\x5e\xed\xc4\xab\x82\x2a\x4c\x33\xdf\xd2\x60\x46\x92\xdc\x01\xc8\xf9\xe4\x72\x40\x91\xf9\xf4\x12\x66\x4b\xfa\xe9\x81\xa7\xf6\x76\xe6\x7f\x6e\xfc\xbc\x99\x61\x0c\xc9\x9e\x34\x79\x63\x42\xaf\x16\x2a\x76\x70\x57\x27\x75\xfb\xd8\x55\x5c\xbb\x34\x62\x6f\xfb\xee\xce\x20\xe3\xc1\x2b\x8c\x8b\x8f\x48\x94\xbc\xd9\x1d\x17\x8c\xc4\x4a\x86\x70\x45\x00\xcb\x6e\xbc\x77\xdb\x35\xc5\x6d\x5b\x1f\x8e\xe9\x8f\x20\x63\x5e\xf5\x94\x12\x1e\x85\x18\x62\xe8\xea\x72\x7c\x14\x72\x18\x69\x94\x11\x40\x4d\x3a\x8c\x9e\xdc\x6e\x4e\x6a\xb2\xe7\x37\xe7\xbd\xf2\xe6\xb5\xd5\xa9\xb1\x79\x07\x66\xab\x73\x9e\xf6\x86\xcf\xd2\x25\x6f\x96\x82\x64\xfb\x57\xa5\xd3\x16\x90\x69\xfa\xfc\x6e\x40\x91\x8b\x12\xca\xbf\xdd\x9e\x30\xc0\x2e\xac\x66\xd5\x2c\xe4\x4b\x28\x4f\x02\x2c\xef\x0f\x77\x29\x02\xde\xd4\x91\x64\x8d\xcb\x60\xb0\x15\x44\xd9\xd8\x24\xa5\x2f\xa9\x15\x4c\x4a\x60\x16\x53\xd8\x5b\xb3\x15\xd4\xf9\xe8\x20\x7c\x03\x7b\x73\xad\xa5\x7a\xd1\xcd\x07\xe0\xc6\xb5\x57\x8b\x26\x09\x08\xd3\xf0\xa0\xa8\x96\x0d\x4a\x7a\x56\x30\x4f\x19\xda\x91\x1e\xed\xc8\x5b\x3d\xda\x21\x4a\x37\x70\xe8\xad\x68\xfd\xe4\xe3\x5b\xcd\x8b\x98\x6b\x64\xe7\x3c\xda\xc0\xd8\x80\x8a\x16\xb2\xcd\xe5\x23\xf0\xf7\x91\xb7\xe0\x3f\x87\xea\x0b\x37\x0f\xbd\x85\xc6\xc6\x2b\x37\x30\xca\xff\xee\x59\x60\x2d\x1c\xdf\x9f\xde\x14\xed\xa5\xe0\xca\xe7\x7b\xd9\xc7\xa3\x97\x82\x45\xde\x41\x87\x6e\x37\x29\x09\x6c\xc3\x77\xf1\xf9\x33\xf0\x6f\xfd\x47\x86\x0f\x0f\x70\xf0\x1f\xe6\x9d\x6b\xeb\x34\x5c\x36\x67\xe0\x6d\x32\x82\x9f\x45\x08\xcc\xf4\x6c\x89\xbf\x74\xc3\x60\xf6\xe2\x87\xbd\x92\x88\xb4\xdf\x01\x45\x89\xf7\x85\x47\x6b\xc9\x64\x9a\xe2\x47\xd5\xd9\x52\x01\x5b\xc9\xcb\x22\x93\x00\x61\x49\x6b\x33\x55\x67\xd8\x25\x98\xa8\xed\xd8\xe8\xc0\x08\xfd\x35\xdc\x3f\x3a\xfa\xaf\x43\x23\x07\x70\x21\xe2\xe9\xc0\xae\x5e\x7e\x1d\x4d\xe4\xb7\x2b\x66\x9a\xf6\x71\xe0\xb1\x5e\x2a\x6b\x57\xd6\x10\xa9\x94\x47\x07\xf6\x1f\x1b\x19\x1c\xfb\xd3\xc9\x43\x23\x43\xc7\x86\x63\xc9\x53\x01\xa5\x46\xaf\x14\xb8\x36\x34\x72\x48\xa3\x3c\x6e\xc9\x28\x4e\x0d\x4c\x95\x66\x96\x01\xbc\xdc\x45\x22\xd5\xab\x17\xa5\x9a\x94\x5a\x06\x13\xf0\x05\xf0\x3f\x50\xd4\x77\x26\xc3\x17\x19\xb6\xbb\xb0\x15\x52\x82\x4a\x3f\xad\xee\xed\x14\x7d\xdd\xca\x9a\xa6\xc6\x97\x9b\x32\x72\xa7\x7a\xd9\x57\x03\xa3\x86\x45\x62\xa9\x58\xe4\xb1\xfd\xd2\x53\x62\x15\x27\xcc\x49\xcc\x52\xa8\xdb\xb3\xc5\x1c\x65\xc2\x03\xf0\x6e\xb0\x32\x6c\xa9\x93\x47\x06\x8f\x1e\x1b\xe3\xc8\xe7\x5e\xa0\x0b\xdf\xbc\xb0\x07\xb4\x7f\x67\x0c\xf0\x2f\x86\xdf\xef\xad\x58\x7b\xd1\x42\x41\xad\x72\x56\x01\x1d\xb2\x7c\xad\xe8\x6b\x4a\xeb\x63\x68\xaf\x1e\x1e\xda\xdf\x7f\x78\x00\x7e\xda\x7f\x78\xa0\x7f\xe4\xb5\x78\x36\x1d\x45\x24\x07\x2e\x9f\x84\xeb\x18\x2d\x83\x9f\xdc\xf3\x6e\xe1\x68\x5a\x45\x46\x2a\x4a\xf6\xd4\x0a\x89\x0e\xa3\x58\x7d\xf7\x73\xd2\xf3\x5e\xe0\xf5\xbd\x6e\x6a\x1d\x8d\x93\x45\x96\xb4\xbd\xee\x64\xb1\x9e\x11\xdb\x50\x3e\x79\x52\x35\x7a\xcd\xfb\x66\xa7\x0b\x92\x1c\x09\x32\x44\xea\x48\x14\x87\xd9\x12\xf3\x3c\x1d\x1f\xc5\xbf\x6b\x14\x82\x36\x38\x74\x14\xe7\x97\x7d\xaf\xff\xbd\xb7\x37\x6f\xda\xf8\x29\xf1\xd8\x5a\xd0\x79\x2c\x1e\x0e\xa1\xb1\xe5\x6f\x79\x25\x03\x5f\x71\xc6\x25\xf1\x95\x9c\x82\xf4\x87\x86\x69\xcb\x5b\xd3\x98\x42\x12\xf9\x7a\xd2\xf3\x1b\xdb\x51\x95\x16\x7c\xe7\x01\xbc\xa4\x14\x60\x73\x65\xef\xbf\x36\x58\x6c\x7d\xfd\x97\x63\x43\x63\xfd\x94\x9c\x60\x0c\x3e\x1c\x3e\xd9\x4a\x8c\x60\x6a\xee\xbd\xe4\xfb\xb2\xac\x01\xcb\x16\x5c\xc5\xee\xb8\xc0\x98\xd9\x50\x66\x88\xde\x92\x6e\x7a\x77\x55\x2f\xb9\x85\x26\xde\x3c\xed\x94\x75\x1d\xbd\xe2\x91\x61\x06\x4e\xb2\x80\xd8\x00\x5e\xfe\x08\x92\xa8\x93\x8e\x2f\x39\x1c\xd5\xb5\x95\x4b\x34\x78\xcc\x4f\x8e\x0d\x9d\xc4\x94\x28\x27\x47\x8e\x1d\x1e\x18\x3d\x79\x70\xf0\x70\xbc\xf8\xd1\x1d\xe0\xea\x63\x62\xb9\x47\xac\xba\x36\x7c\xb8\xff\x68\xc7\x16\xe8\x78\xce\x44\x00\xc9\x8f\xeb\x58\xad\xc1\x2c\xcc\xc0\xbb\x73\x7a\x36\x3f\xde\x2a\x93\xa3\x89\xd4\xfc\x6d\x3d\x51\xc7\xd6\xeb\xa6\xb7\x71\xe1\x50\x22\x72\x8a\xb5\x0f\xfc\xec\x65\x02\xf3\x25\x10\x80\x86\x94\x64\xbc\x14\x2f\xab\xb4\xd1\xca\xb2\x5d\xe3\xc7\x4d\xe7\x8b\x4b\x9a\x3f\xe3\x9f\x48\x38\xc2\x7e\xb3\x38\x00\x4c\xd3\xfb\xec\x92\x74\xe0\xb9\x82\xa1\x97\xf3\xe3\xa8\x4d\x2a\x9f\xe2\xbf\x7a\xf3\xe3\xbd\xd3\x66\xd1\x68\x2f\x03\xa4\xb9\xb9\xe3\x92\x4d\x05\xa6\x4d\x27\xf7\x52\x74\x35\xa5\x27\x0a\xe7\xd2\xc5\xa7\x35\x11\x0d\x9f\x59\x66\x65\xa8\x7f\x9f\xfb\x30\xf3\x89\x74\x0f\x38\xbe\x8b\x7a\x2b\xd6\x29\xa3\xa8\x1d\xee\x7f\x6b\xe0\xb0\x36\x3c\x32\x74\x7c\xf0\xc0\xc0\x08\x70\xb5\x7f\x1e\x48\xcc\xe0\x53\x83\xcb\xb8\x97\x7b\xc7\xcb\x80\xa4\xec\xed\xe2\xb7\x46\x00\xfc\x48\xe7\xdb\x50\x83\xb7\x6e\xda\x31\x28\x81\x56\x1e\xcf\x94\x5e\x86\xad\x20\x2e\xc8\x74\xb7\xaa\xbc\xaf\x32\x45\xa4\x2d\x65\x1e\x8b\xd9\xbe\x45\x9a\xef\xbf\xf2\x57\xbd\x74\xb9\x24\x66\xd8\x0c\x8c\xb5\xa1\x04\x8d\xef\xe0\xec\x37\x0a\x57\xc8\x08\xde\x77\xa1\xf7\xee\x2e\x5c\x82\x09\x86\xfc\x92\x28\x53\x5d\x73\x72\x41\xe9\xd8\xe1\x49\x47\x4c\xbd\xdb\x75\x2b\xdd\x21\xaa\x83\x59\x76\xcc\x0d\xc9\xff\xfb\x47\x06\x0e\x0c\x1c\x1d\x1b\xec\x3f\x4c\x53\x55\xd0\x46\xff\x34\x7a\x78\xe8\x50\xef\x81\x11\x38\x12\xbd\xae\xb6\x4e\xc3\xec\xac\xb6\xa8\x2b\x04\x37\x0d\x30\x72\xce\x49\x06\xa7\x08\x1d\x1b\xb0\x2e\x0c\x7c\x35\x6d\x54\xd0\x21\x07\xfe\xb5\xfd\x51\x94\x2d\xe7\x1c\x0d\x46\x64\x84\xde\x15\x09\x49\xa6\x5c\xd8\x44\x45\x4f\x8b\x8c\x9e\x16\xf2\x1e\xc6\x7e\xe2\x95\x00\xd5\x21\x54\x52\x9c\x39\xe5\x67\xc3\x4b\x52\xe4\xd7\xf4\x4c\x26\x1d\x3e\x45\x19\x69\x4e\x5c\x1e\x2c\x4e\x96\x08\x47\x39\x3d\xeb\xde\xa7\x3c\x41\xae\x6d\xae\xc7\x97\x33\x5c\x15\x1a\x92\xee\xc2\x23\x5a\xc9\xc1\x8b\xc8\x6f\x01\xdf\x87\x7f\x70\x46\x6e\x1e\x45\x1a\x5c\x65\xe0\xc1\xde\x17\xb0\x03\xed\x59\xbb\x60\x4d\xee\xdb\xbb\xd7\x97\x40\x23\x81\x9e\x52\x8a\xc7\xaf\xab\xe2\xc4\x67\x94\x18\x3c\xb0\xe5\x19\x6f\x73\xfb\x07\x67\xf1\x63\x4c\x87\xf6\xf9\x9c\xbb\xf7\xd9\x8a\xb5\x33\x77\xcb\x59\x24\xef\xf7\xbb\xd7\xb9\x3b\x88\x1f\x2c\x57\xb0\x5b\x59\xfd\x9b\x07\xce\xd6\x62\x8a\x75\x0b\x50\x45\x2b\xc7\x38\xd0\x80\x40\x68\x40\x8e\xc1\xcf\x6e\xa1\x04\x21\x75\xb9\x9b\xbb\xb6\x75\x7f\x67\xee\x13\xdc\xc4\xf5\xfb\x5b\xe8\xd3\x76\xf7\x6c\x1b\x5d\x9e\xc7\x5b\xfd\xe6\x53\x68\xc0\xb2\x12\x63\xcd\x40\x26\x6e\x09\x97\x14\x58\x79\x67\x6e\x8b\xb6\x43\xfb\x57\xbc\x9b\x25\xf2\x61\x38\x36\x0b\x0e\x5d\xc1\x08\x6e\x68\x4e\x59\xd7\xa3\x35\xbe\x5f\x75\x16\xbf\xea\xd1\x70\x8c\x57\x56\x9c\x8d\x4f\x01\x67\x4f\x8b\x81\xf6\xb8\xda\xe9\x14\xbb\xbd\x13\x1d\x0e\xcf\x03\xd9\xb6\xe5\x5d\xf8\x2f\x74\xc3\xa7\xbe\xe8\x31\x2b\x03\xe9\x55\xe0\xfe\x9c\xc1\x3d\xfe\x6f\x70\x61\x8e\xbd\x3d\x44\xa9\xe9\xdf\xd6\xde\x1e\xe8\x07\xb9\x52\xa4\xa9\xef\x07\x99\x04\xef\x48\x78\x1f\x96\xaa\x15\x0d\xdf\x4d\x09\x2e\xec\xee\x61\x48\x7d\xc7\x89\xf0\x4b\x5f\x36\xfe\x09\xad\xb7\x1c\x4f\xb3\xe8\xd7\x66\x52\xe9\xec\x9e\x76\xb6\x19\x6e\xa8\x6e\x0b\x60\x27\xa5\x2b\x41\x7f\xc5\x99\x0a\x4a\xb9\xa9\x68\x92\xf5\x54\xa5\x46\x68\x9f\x52\xd1\xd1\x52\x41\x75\x8d\x88\xd2\x94\x5e\x84\x63\xc9\x91\xbb\x29\x89\x91\xf5\x55\xa5\x28\x28\xf5\x26\xa7\x26\xba\x9f\x2a\x25\xac\x29\x0a\xd3\x11\xa5\x22\x2c\x31\x18\x55\x3a\xe5\x2a\xa1\x34\xa4\xa6\x81\xa4\x4e\x6d\xa4\x10\x9e\x86\xd0\x50\x69\xa6\x8b\xf4\x49\xd4\x10\x0a\x84\x26\x86\x96\x95\xea\x70\xc5\x83\x0a\xc5\x49\x20\x29\x53\x1b\xa2\x75\x48\x47\x64\x3c\x00\x65\xda\x02\xba\x8b\x14\x24\x05\xd5\x14\x5d\x23\x45\x30\x36\x9f\xe6\xa4\x37\x91\xd7\x44\x2a\x18\xaa\x14\x06\x1f\xfd\x69\xa6\xab\xed\xc1\x9f\x75\xc2\xd8\x3e\xd5\x2b\x8a\x21\xf4\x4e\x14\xf4\x49\xed\xe0\x40\xff\xd8\xb1\x91\x81\x64\x4e\x26\x29\x20\xa4\xa6\x8e\x9f\xff\x19\x88\x4b\x0e\x40\x81\xb6\x99\xe4\x9e\x38\xd8\xb8\x6b\x9e\x38\xc6\x0c\xd6\xc0\x4a\x81\x9c\xdb\x77\x0d\xbf\xfa\x72\xec\xc6\x3a\xf8\x61\xc6\x1b\x29\x22\x5a\xa7\xc7\x6a\x62\xa5\xe1\xd6\x0b\xc2\xcd\xc1\xde\x52\x36\xc6\x1f\x68\x86\xd1\xf1\x9a\x10\x8e\x02\xea\xeb\x23\x32\x3b\x09\x67\x38\x54\x95\xa3\xe7\x21\xf9\x41\xf4\x22\x9d\x7b\xc7\x86\xf6\x8a\xd4\xad\xa4\xfc\xf4\x7c\xeb\xc8\x9a\x34\x65\x78\xd9\xce\x28\x52\xcf\x8b\x0c\xf5\x27\x3e\x13\x41\xa2\x18\x1f\xda\x4a\x1a\x88\xa1\x7a\x7b\x7a\xcb\x7b\x30\x40\xcf\x7d\xb5\x86\x39\xea\xb5\xd1\xe7\x26\x3c\x9d\x34\x2b\x53\xd5\x71\xf2\xca\xcb\x4d\xf4\x1a\xef\x95\x8c\xb2\x89\x5e\x94\x7a\x61\xaf\x70\xeb\x9b\xb0\xac\x71\xbd\x1c\x01\xe6\xff\xdd\x7b\x40\x50\x6a\x27\x6a\x2f\xda\x18\xb9\x29\x0b\x5e\x6f\xda\x91\xd9\x5e\xf2\x14\x4c\xa0\x26\x6a\x03\x14\x9c\x52\xf5\x65\xc3\x08\x13\xbf\x03\x63\xfc\x66\x6e\xef\x91\x01\x37\xc5\xb3\xbd\xc3\x35\x8e\x4f\xa2\xce\x16\xfe\xa8\x7a\x17\x94\x5b\x67\x80\x55\xd3\xef\xfa\x4d\x13\x36\x5f\x8e\xef\x26\x72\x04\x8c\x40\xe3\xdd\x66\xa2\xa2\x00\x69\x48\xde\xf5\x9b\x2c\x08\x11\x8b\x08\xef\x66\x74\x1c\x04\x1a\xe0\x5d\x91\x84\xd4\x40\x33\x15\x3c\x29\x78\x34\xb5\xee\x1a\x87\x9e\xd6\x4b\xe2\xf5\xe4\x71\x28\x25\xcb\x7f\x00\x4e\x72\xa3\x7f\x32\x1a\x39\x06\xdc\x13\x9b\xdd\x18\x27\x5b\x9b\x79\xe3\xa4\x6b\x2d\x87\x8f\x9e\xbc\x8f\x9f\xd1\x78\x3e\xf3\x66\xeb\xe7\x37\xe9\xab\x44\x7b\x4f\x8a\x4f\x3c\x87\x48\xfd\x48\x7f\x93\x0d\xb8\x39\x37\xdf\xfa\x51\x18\xaf\x01\x65\xb0\xf1\x9b\x81\xdf\x33\x6e\x4e\xab\xf5\xdc\x89\x1d\x50\x68\xdb\xf4\x18\x13\xba\xf2\x74\xc5\x87\x07\xcb\xef\x53\x21\xae\xa4\x28\x45\xeb\xcc\x88\xc9\xce\x10\x9d\xcf\x2b\xaa\x59\x7a\x3c\x9c\x2b\x3f\x1e\x51\x7b\xbb\xf4\x98\xaa\xe5\xc9\xd6\x66\xb6\x26\x26\x0c\xca\x30\xec\x9e\x0c\xe2\xd7\xe2\xe4\xc4\x9f\xf3\x08\x60\x22\x28\x06\x61\x79\x07\x22\xcb\x63\xc3\xa7\x69\x8a\x25\x29\xb4\xad\x1a\xc6\xf8\xe5\x68\x6f\x96\x1a\x0f\x57\x71\x48\x1f\xb3\x10\xd2\xcf\x17\xb6\x90\x80\xab\xed\x3e\x62\x85\xb9\xa0\x7c\x7a\xde\xcd\x73\x74\xe0\x5f\x4f\x26\xbe\x07\x45\xe7\x76\xa1\xb8\x7e\x73\x2d\xc9\xe5\x98\x86\xc0\x30\x75\x79\x8b\xe0\xe0\x57\x09\xc9\xf6\x81\xf4\x3e\x89\x6b\x02\x06\xd0\xb8\x7b\xb6\xed\xdb\xec\x63\x70\x55\xe1\x48\x72\x12\x96\xea\xeb\x26\xb4\xe1\x48\x58\x56\xee\x2a\xa0\x46\x2a\x28\x91\xba\xd4\x51\x03\x6d\x40\x9d\xab\xf7\x02\xe1\xcc\xde\xb4\x76\x7e\xdb\xb5\x91\x44\xa8\xf2\xfc\xc3\xe1\xaf\x52\x0e\x46\x01\xae\xf2\x48\x7c\x4a\x39\x82\x9f\x28\xbe\x24\xd0\x59\x68\xe6\x70\xa3\xd0\xa7\x4c\x44\x95\x2c\xc1\x73\xec\x70\xae\xd4\xfa\xbd\xe3\x6d\x9a\x80\xea\xe4\xd0\xb3\x18\x47\xcb\x06\x46\x88\x18\xc9\x85\x7b\xb7\x43\xd7\xe4\x7b\x02\x58\xae\xa4\xa4\x00\x3a\x74\x9b\x02\x8a\x06\xf0\xb2\x13\x78\x2c\x7f\xf0\xe8\x81\x81\x7f\x4b\x4a\x54\x07\x8c\xf6\xee\xa9\x69\x13\xa1\x5c\x46\x71\xc6\x2c\x5b\x45\xd4\x21\xf4\xce\xe8\x65\x93\x54\x81\x64\xa0\x89\x24\x0d\x77\x49\x8a\xde\x69\x29\xb3\x29\x24\xc5\x67\x77\x6e\xa9\x8b\x24\xb5\xfe\x12\xe8\x86\x19\x70\x5b\x75\xf4\x88\xd2\x7e\xfe\xa2\x7e\x12\x4b\x5a\xb2\x01\x65\x8a\xb6\xda\xad\x00\xab\xa8\x8b\x28\x01\x41\x9d\xd6\xb1\xec\x74\xf8\x6c\x58\xf1\xa2\xa8\xb4\x8f\x02\x05\x95\x5e\xbf\xa2\x5a\x1b\x38\x7a\xfc\xe4\xf1\xfe\x91\xe0\x1f\xc7\xfb\x0f\x1f\x4b\x32\x39\x0c\xab\x5d\x36\x6b\x5c\x5d\x75\xbe\xfc\x88\x9c\x0f\xe7\xb6\xb2\x6c\xa5\x0a\xca\x25\xbd\x94\x12\xd2\xb3\x8c\xa0\x70\x33\x32\x74\x78\x20\xd1\x13\x3f\x00\xa2\x65\x22\x11\x92\x0e\x67\x7e\xcc\xf8\x40\x47\x14\xfc\x34\x41\xca\xe8\x79\x92\x98\x34\xee\x27\xa8\xe1\xec\xb4\x5d\xa0\x26\x9e\x5f\x25\xf7\x1d\x4c\x34\x8c\xdd\x41\xa8\x34\xf6\x4e\x1b\x1d\xfd\x94\xda\xe4\xa7\x04\x2b\x03\xc5\x9d\x7b\x9c\x25\xb4\x54\x3b\xdd\x07\xaa\x63\xaf\x0b\x99\xad\x6b\x5b\xde\x0d\x89\x7d\x61\x9b\x6c\x77\x10\xa6\x1f\x7b\x4b\x7c\x8e\x27\xdb\x27\x2d\x67\x45\xe9\xdf\x87\x27\x69\xf3\x25\x93\xf3\x92\x75\xce\x42\x53\x82\x1b\x2c\xb4\xb1\x22\x4e\x4f\x5b\x98\x66\x11\x02\x5a\xc3\x2e\xad\x48\xc2\x71\x67\x1a\x71\x25\x51\x4c\x78\x7b\x33\x15\x3c\x31\x67\x2b\x09\x0d\x89\x41\xa8\xd0\x97\xe6\x6d\xd3\xe5\x97\x0d\x16\x42\x4e\x83\xdc\x0a\xe6\xd8\x50\x47\xcc\x05\x37\xc2\x6c\x6b\xb1\x54\xf8\xba\x86\x18\xcc\x32\x2c\x45\xb5\xd8\xc5\x3c\x1b\x6a\xc0\x54\x69\xee\x56\xae\x0d\x55\x70\xea\x74\x67\xcd\xb7\xd1\x06\x68\x17\x32\x6e\xb8\x18\xba\x92\x73\x43\x0d\x98\xc2\xf4\xb6\xdb\xed\xc9\x5e\x9f\x4c\x40\x4c\xd6\x59\x81\xa6\x6e\x59\x6a\xdb\x20\x75\xd9\x56\x5b\x2d\x4a\x1f\x92\x09\xa8\x0b\x7b\x3c\x6a\x12\x75\x6d\x0a\xb2\x32\x3e\x1a\xdb\x80\xec\xce\xb3\x91\x91\x74\x48\x67\x29\x1e\x90\x29\x20\x64\xa2\x2e\xf3\xd3\xa4\x03\xd8\xae\x3e\x4e\xaa\xa5\x7c\x54\x5a\x10\x76\x59\x71\xdd\xb2\xdc\xfc\x20\xef\x86\xa6\xe7\x10\x09\x63\x4e\xc1\x57\xd5\x22\x7e\x48\x70\xe2\xe4\x98\x5b\xe9\x5e\x4c\x8d\xb3\x83\xa4\xc7\xac\x3a\x1b\xe9\x73\x64\x20\x9f\x40\xf3\x80\xb0\x1a\x66\x0a\x89\xd5\xfe\x5d\xe3\xe1\x29\x07\xf3\x46\x0c\xa3\x35\x80\x97\x42\x6c\x6a\xee\xc4\xa3\xd8\x9d\xa4\x16\xdd\x01\xae\xba\xc1\xda\x93\x5a\xe0\x86\xc7\x15\x41\x67\x9c\xc4\xcb\x9b\x10\x48\x46\x1a\x33\x27\x59\x50\x05\x97\x95\xee\x6e\x26\x59\xe8\x06\x68\xd5\xed\x2f\x71\xa3\x27\x56\x74\xa4\xff\xdf\x7a\xdd\xb3\xda\x1b\x1e\xa0\x9f\xe0\xb8\xbf\x20\x96\xf4\x12\x46\x83\x81\xe4\xe3\xba\x6d\xe6\x7a\xbd\xf4\x2c\x81\xd1\x74\xfe\x9e\x9d\x67\x75\x35\xfa\x3f\x3a\x22\x5d\x8a\xad\xcb\x31\xe4\xb1\xb8\x92\x84\xd4\x26\xdd\x26\x5d\x8d\x20\x8f\x8c\x81\x96\x22\xeb\x7e\x50\x72\x97\x67\x30\xc5\xd6\x1c\x1b\x41\x09\x74\x60\x64\x64\x68\x04\xf7\x5b\xff\x18\x56\xb2\x80\xd9\xa2\x40\x60\xcc\xf7\x3b\xac\x57\xa6\x3e\xf8\x00\x66\x07\x3e\x0f\x94\xcb\x92\x7c\xe5\x1e\x34\x11\xc8\xee\x2b\x80\xb8\x73\xfd\x4e\x73\x75\x35\x06\x5c\x72\xae\xae\x17\x29\x6d\x31\xcd\x94\x0d\xd8\xb5\x96\xc3\xa9\x35\xa1\x21\x0f\xf2\xcc\x8d\xc4\x83\xa2\x49\x56\x87\x94\x8a\xda\xee\x50\xfa\xbb\xa1\x52\x7b\xf5\x00\xa7\xd4\xdf\xa7\xb9\xbc\xd2\xc8\xbf\xd6\x1d\xda\xe3\x60\xa7\x19\x11\x2e\x2d\x15\x97\x98\xd6\xcb\xa7\x8c\x0a\xc0\xcf\x19\xad\x4c\x5c\x98\x5c\x1a\x93\x4f\xea\xad\xfa\xbc\xb1\xc5\x78\xb9\x52\x42\xfd\xf2\x79\x2c\x10\x4c\x6f\x2d\x4c\x66\xf5\xd1\xbc\x73\xee\x3f\x6a\xeb\x97\xea\xb7\xee\xd7\x7f\xbe\xd1\xbc\xfa\xc4\x59\xbc\x29\x38\xd2\xc2\xad\xe6\x03\x95\xd4\xd8\x7e\xea\xa9\x7c\x94\x59\x9c\xb0\xca\xd3\x44\x0b\xd5\x31\xe8\xc8\x1b\x9f\x7a\x38\xbb\x81\x22\xed\xf8\xba\x72\x30\x5e\xc0\x09\x46\x14\x76\xc9\xc8\x99\x13\x58\xdd\xb6\x32\xa5\xe1\x73\x92\x8a\x72\xf0\xcb\x52\xb3\xa8\x1a\x9a\x1d\x9d\x44\xbd\xb6\x7e\xa5\xf9\xd1\x36\x17\x9b\xe6\xfd\xb3\x73\xfd\x0c\xd6\xdb\xf8\xe4\x72\xf3\xd1\x57\xf0\x79\x67\xee\xc2\xce\x83\xa7\x5d\x22\x0f\xb9\x2b\x3d\x87\xf3\xad\xda\x21\x07\xf8\x59\x9c\x97\x95\xe1\xed\xa4\xd2\x0f\x89\x8b\x87\x84\xc2\x51\xa6\xb6\xe5\xd6\x69\x56\x6c\x22\x15\xe7\x73\x2f\x4f\xab\xa4\x64\x17\x1d\x35\x26\xd1\x83\x81\xf9\x63\x17\x2f\x3a\xab\x4f\x9d\xf9\x5f\x9d\x8b\xf7\x61\x52\xf7\xf2\xdc\xaa\xd0\x39\xa5\x17\x27\xf1\xae\xd7\x66\x4c\xe3\x34\x97\xf8\x77\x1d\xa9\x72\x56\xb5\x58\xe9\x41\xfe\x74\x4a\x98\x26\x0b\xe6\xb4\x09\xdf\x20\xf9\xd3\xc6\x34\x06\x6c\xd1\x37\x5c\x97\x5d\x5e\x55\xa6\xfe\xd9\x2f\xf5\xeb\x4f\xeb\x0b\x37\xeb\xf7\x96\x1b\x4b\x97\xfc\x5a\x3c\x4c\x19\x43\x22\x0d\x16\x9c\xa1\x1c\x33\xec\x66\xc4\x9c\x87\xdd\x1c\x60\x4d\xd8\xdf\x48\xb9\x26\xaf\x18\xa9\xff\x94\x30\xdd\x1d\x35\x72\xa2\x0f\xa1\x02\x88\xb4\xf4\x51\x70\xae\x2b\x90\xc6\xcc\xa6\x90\xc5\x94\x13\x76\x21\x46\xf4\xd2\x77\xd1\xc5\x17\x8f\x63\xbc\x8c\x51\xad\x94\xc4\x7e\x4c\x09\x8d\x48\xa9\x4a\x0d\x6a\x9b\x65\x58\x63\x5a\x27\xc7\x2a\xe2\x11\xdf\x36\x0a\x12\xd3\x64\x68\xa3\xd4\x38\xf0\x16\x89\xc5\x51\x0c\x34\x4a\x2c\xc9\x8a\xde\x58\x1b\x51\x7c\xa6\x2a\x8a\xc5\x40\x68\xa5\x81\x13\x26\xac\x0d\x70\x77\x51\xe1\xf5\xa2\x4e\xa9\xcf\xf6\x1f\x74\x43\x33\xf7\xea\x05\x53\xb7\xfb\x34\x6d\x84\xfd\xe5\x11\x40\x1b\x58\x37\x88\x33\x06\x3c\x16\x6d\xc9\xc3\xa6\xf5\x25\x5b\xab\xd8\x6e\x03\xbe\x66\xe9\x06\xb1\x25\x15\xf6\xba\x38\xb0\x97\x36\xa4\xac\x8b\x68\x53\x31\x4b\xdf\xe2\x68\x5e\x8c\x29\xbc\xbc\xb0\xaa\x26\x7e\x64\x19\x65\x0f\x8c\xf2\x4f\x56\x15\x59\x74\x21\x0f\xe8\x66\x5b\xf6\x25\x3a\xd0\x11\xbd\x88\x6a\x2c\x03\xe8\x8e\x85\xcb\x61\x8a\xe6\xfe\x61\x9b\xc5\x19\xeb\x94\x6c\x0a\x81\x80\xb7\x41\x66\x9d\xc1\x74\x77\x58\x5d\xd3\x9e\x22\x52\x26\xcc\x32\xc8\x59\x13\xd5\x42\x01\x49\x02\x60\xc8\x0f\x39\xf2\xd7\x9c\x2e\x61\x81\x4e\x10\x57\x02\xb4\xe2\x4f\x54\x99\x05\xff\xe8\xa4\x98\x69\x8b\xde\x39\x92\x59\xfc\xef\xf9\x0b\x9b\xbf\xb4\xdb\x94\xea\xb3\x82\x24\x20\xb9\x8c\x40\x48\xb9\xb1\xe0\x7c\xbc\x5d\xdb\x7c\xa8\xc6\x37\x4b\x68\x74\x44\x64\x30\x0b\x2c\x84\xd8\x53\xfa\x1b\x1a\xf9\x5f\xe1\x80\x43\x02\xc7\xcd\x82\x94\xc9\x66\x85\x98\x92\x7a\x2a\x75\x85\x08\xf0\x9e\x6a\x31\x12\x11\x2a\xd0\xc3\xdb\x64\x5a\x9f\x85\x17\xc5\x29\xcc\xf1\x78\x7a\x0a\xab\x23\x4b\x6f\xbe\x6e\xc1\x4d\x31\x92\x62\xd1\xc8\x51\x2a\xcb\x7c\x75\xba\x44\xc5\xd5\x8d\x1c\x15\x21\xc2\xd0\x62\x12\x74\xba\x5b\xb1\x4b\x62\x0b\x74\x9e\xfc\xd4\x7c\xfe\x45\xfd\xea\x32\x4a\x83\x21\x95\xbb\xae\xdf\xab\x2f\x5c\x13\xd6\xc0\x36\xec\xc2\x38\xd8\x51\xbd\x2b\xaa\xc0\x99\x86\x6f\x5b\xd2\xe2\xb4\x91\xa4\x32\x73\x15\xdd\xa4\x53\xf9\xfb\x9b\xb2\xe6\xea\x26\xbc\xd7\x7f\x3f\x53\x56\x9a\xa5\xcd\x6d\x55\xcb\x39\x51\x27\x5c\x4c\xd5\x28\x7d\x05\xb8\xb8\xec\x99\xf0\x4c\x12\x3f\x72\xe9\x7c\xfe\x71\x97\xca\xc5\xfd\x9e\x48\x4b\x31\x9f\x78\x7b\x20\xaf\x46\x57\x18\xaa\x94\x18\x51\x79\xef\x44\x71\x00\xeb\x5e\xef\xd3\x62\x35\x9d\xfc\xf8\x14\xf5\x32\x17\xd6\xda\xcb\x0e\xba\xe0\x58\xeb\x59\x5b\xdf\x08\x03\xa9\x30\x80\x1c\xcc\x7f\x90\x37\xef\xd3\x5c\x45\xaa\x25\xd5\xcc\x2a\x80\x50\xa0\x2f\x8f\xa9\x7b\x49\x25\x8e\x97\x48\x8e\xab\x34\x6a\xf0\x7e\xa2\x87\x4a\xde\x04\xa6\x89\xb9\x4c\xfe\x7f\x71\xf3\xfa\x60\x05\xe7\x75\xfb\x53\xe7\x02\x56\x61\x73\x9e\x2c\xd7\xb6\x97\x1a\x9f\xad\x38\xdb\x37\x7e\xdb\x52\x7a\xce\x79\x14\x4e\x70\xed\x57\x51\x10\x54\xe3\x54\x5d\xd1\xe4\x5c\x78\x86\xd5\xed\x16\xd6\x76\x36\x6f\x37\x57\x1e\x3a\xf7\xee\x29\x06\xc7\xb6\xe1\x87\x53\x81\x3b\x3a\x4f\x42\x89\xc7\x3a\xf6\xe0\xd9\x70\x4b\xba\xc4\x4c\x11\x56\x2b\xff\xe8\x9b\xc6\xf6\x4f\xf5\xc5\xc5\xe6\xf3\x35\x56\xb2\xd7\xd6\x1f\x03\xc5\x58\xe5\xf2\xda\x15\xd8\x74\x41\xe0\x6d\x75\x2c\xb3\x8f\x82\xde\xf8\x54\x9f\x8f\x9e\x14\xad\xdd\xdf\xaa\x71\x1f\xa7\xbc\xf1\x11\x1b\xd6\xdd\x2b\x13\xc0\xe9\x1f\xb2\x93\x1c\x75\xf0\xa9\xd0\xb0\x60\x0e\xfe\x49\x4b\x46\xff\xe2\x2a\xde\x29\xa1\x2c\xc0\xe3\x10\xe1\x50\x95\xc7\x11\xe0\x96\x1e\x53\x85\xad\xf3\x37\x7e\x82\x31\x77\x4d\xc4\x10\x54\x01\x2a\xd0\x5e\xd2\xcb\xb6\xa1\x81\x5c\x4f\x6a\xda\x62\x75\x7a\xdc\x60\x66\x3b\x58\x04\x81\x2e\x76\xba\x9b\x8f\xbe\xaa\x7f\x71\xad\x71\x61\xa1\xbe\xf4\x83\xb3\xf8\x24\xbc\xa7\x02\x59\xb0\x2b\x4c\x78\x55\xfe\xcd\xf0\xeb\xbf\xe3\xce\xdf\xc6\xa2\xb3\x70\xcb\xb9\x7c\xb3\xf6\xfc\x41\xfd\xcc\x6a\x97\xf0\xb3\x15\x50\xa2\x43\x6e\x43\x8e\x3a\xa7\x9b\x6b\xc0\x08\x9c\x05\x95\x82\xf2\x2d\x12\xc4\x75\x0d\x4b\xde\x47\x97\x41\x7f\xc9\x4c\x72\x01\xee\xcc\x5d\xa8\x5f\xfa\x96\x05\xa7\xa8\x8e\xe9\xa8\x29\xee\xa9\xb8\xe9\xde\x2b\xc6\x74\x89\x9e\x1e\x24\x2c\x56\x4b\x98\x7d\x2a\x6e\x62\xc8\xee\x58\x5b\xbf\x58\xdb\xba\x5f\xbf\x30\xb7\xb3\x34\x07\x2c\xa4\xb6\xfe\x0b\xea\xb2\x89\x43\x66\x21\xcb\x2a\xc1\xe3\xb6\xa5\xad\x96\x3e\xb3\x5c\xfe\xf0\xa9\xb3\x35\xe7\x75\xc9\x4e\xc2\xe9\xb2\x09\x13\xf3\x37\xb3\x94\x04\xbb\x73\xee\x8e\x33\xbf\x0c\x8d\xd5\xf1\xba\x79\xf7\xbd\x21\x44\x4b\xd8\x34\xf3\x61\x0d\xd3\x63\x13\xf9\x33\x4d\xd4\x24\x91\xac\x88\xeb\x5f\xc0\xc2\xa2\xa8\x56\x8a\x66\x69\x69\xfb\x2b\x53\x56\x99\xd2\x61\x97\xea\x45\xaf\x38\xfd\xf8\xac\x86\x1a\x0f\xc0\x65\x6b\xaf\x92\xe1\xbf\xd7\x2a\x16\x66\x25\x06\xd1\xec\x10\xd3\x53\x5f\x34\x4e\x93\x0e\x3d\x66\x11\x45\x79\xfb\x9b\x6b\xfc\x52\xca\x82\x11\xc0\xe7\x31\x8b\x1d\x79\x4e\xe3\x2a\xd0\xa3\x5c\x66\x0b\xc1\xba\x7f\x24\xf7\x05\x42\x4e\x88\xae\x9d\xbb\x8b\xf5\xa5\x8d\xe6\x13\xb8\x6d\x7f\xcc\x42\x54\xb0\x9a\x7a\xfc\x12\x45\xb5\x57\xc1\xcc\xe2\x07\x95\x6c\x8d\xc9\x43\x95\xa4\x8f\x3a\x05\xec\xa4\x96\x1c\x7b\x7b\x7b\x75\xcc\xb1\x96\x24\x7f\x11\x04\xf5\x20\x71\x0f\xad\xdc\x9e\xbf\xf0\xd9\xce\xdc\x7d\xf5\x18\x36\x17\x0b\xa6\xdb\xe7\x4d\x8e\x4c\x47\x48\x53\x29\xb9\x56\x1a\x18\xa9\x29\x24\x03\xa4\xf7\xb6\xf0\x19\x25\x99\xf3\x4c\xc1\x4b\x7b\xdc\x80\xeb\xad\x54\xb5\xa7\xd0\xa6\x5f\xcd\xe5\x0c\xdb\x26\x5d\xab\x44\x1b\xd0\x55\xe0\x0a\x63\x02\xee\x18\xb3\x8d\xd4\xb3\xef\x20\x12\x7c\xb4\x76\x8c\x0e\x75\x1e\xee\xcb\xd6\x36\x2a\xd8\x88\x1c\x0d\xb0\x95\x7c\xaa\x32\x80\x53\xa0\xbb\xbb\xca\xb5\xc8\x91\x85\xa8\xd3\xe0\x6d\xca\xf3\xee\xc7\xb5\x97\x4f\x59\xbb\x1e\xed\x31\xaf\x53\x94\x36\x4d\x51\xe3\xe3\x4e\x82\xac\x6e\xbd\x6c\x50\x4c\x54\xe2\xde\xe9\x09\x13\xd7\x3e\xfa\x52\xd0\x27\x31\xf1\x78\x74\x3a\x16\x29\x95\x82\xae\xeb\x08\xd2\x8f\x2d\xd3\x00\xc2\xb6\x93\xef\x24\xfb\xe1\x66\x24\x93\xfd\x8c\x01\xe0\xbf\xe0\x87\x2c\x73\x9d\x1e\x52\x7a\x6a\xf9\x66\x00\x88\x6f\x5b\x76\xa5\x28\x59\xcc\x6e\x68\x79\x5f\x08\xd2\xae\xcc\x41\xfc\x21\x66\x79\x51\xd2\x2b\x3d\x1d\x41\x81\x10\x41\xbb\xdf\x9c\xa4\x6f\xbc\x91\x57\xbd\x91\xc7\xcf\x75\x26\xa0\x2a\x63\x68\x17\x2b\x05\xf8\xfd\x7c\x17\xe1\xa2\x25\xdc\x25\x0a\xa0\xd4\xe9\x15\xd1\x15\x00\x3d\xcb\xc6\x56\x83\xa6\x4e\xb5\xe7\x37\xd6\xa1\x78\x4c\x7d\x2b\x27\x5e\x1f\x8f\x93\x06\x7a\x28\xdc\xcd\xe1\x9a\xcd\xac\x33\x43\xa5\x32\xa2\xae\x29\xb5\x45\x55\x07\xa9\x40\x3f\xad\x50\x28\xe7\xef\xde\x25\xde\x25\xf0\x89\xdd\x1a\x82\x83\x6b\xdb\x7e\x61\x3b\x35\xe5\x96\x14\x37\x39\x6d\x36\xd8\x5e\xfb\x52\x6c\x51\x6f\x37\x86\x6d\xd5\x8c\x6b\xc9\x7e\x85\x6d\x75\x9a\xff\x53\x1e\xd5\xa8\x32\xcb\x5d\x3e\xbc\x34\x61\x9e\x59\x97\xa9\x55\xdc\x0b\x44\x2d\xee\x05\x61\xed\x0b\x9d\x09\x76\xb0\x14\xdc\xc8\xd5\x4b\xb5\xe1\x57\x1e\x92\x28\x3d\x2a\xf1\x2f\x0f\x6b\xa3\x82\x41\x3b\x6d\x94\x0d\xad\x6c\xfc\x45\x38\x44\x94\x0a\x86\x6e\x1b\xe4\x62\xa5\x4f\xea\x32\x4f\xae\x9d\xef\x2e\x37\x57\xcf\x38\x0f\x7f\x6c\xfe\x82\x2e\x0c\xcd\xd5\x27\x3b\xe7\xaf\x34\x57\x6f\xa8\xd0\x23\xde\x9a\xfb\x0f\x62\x99\x00\xcf\x18\xc3\xaa\xfb\xe3\xfc\x97\x4c\x5e\x49\xd9\x5d\x85\xae\xfd\x87\x03\x80\x53\x11\x15\xdf\x37\x35\x45\xc3\x71\x1e\xc7\x42\x61\xa9\xec\x6b\x2c\xf0\xb8\xae\xc6\x5a\xde\x64\xa3\xcc\xb4\x5e\xc9\x4d\x45\x63\x25\x7c\x68\x9e\xbe\xfc\x74\x67\x5e\xc9\x2a\x5d\xb5\x2b\xd6\xb4\xdf\x01\x7f\x96\x4d\xb9\xaf\x1a\x7d\x93\x7d\x18\x75\xe6\xfd\xf4\x1a\xba\xc1\x1f\x1a\x1c\xa3\x7a\x27\xfc\xf3\x9e\x90\xd2\x22\x53\x06\x08\x54\x55\xf1\x4f\xab\x37\xc6\x81\xce\xf6\x41\xbb\x3d\x1e\x9c\xb7\x46\xfa\x8f\xee\x7f\x3b\x23\xb8\xff\x7f\xde\x98\x31\x0a\x56\x69\x0f\x5d\x8a\x7b\xbc\xbf\xc6\x61\xa6\x72\x53\xaf\x45\xab\x63\xb8\xfa\x2a\x67\xc8\x08\x19\x6c\x7d\xe1\x26\xd0\xd8\xd8\xfe\xd8\xf9\x7c\x8e\x7f\x56\x20\xee\x35\xad\x79\xfe\x3b\x67\xe5\x6e\xed\xe9\x05\xb9\x55\x44\x7e\x27\xf3\x1a\x4d\x19\x3a\x3a\x3c\xb2\xfb\x64\xae\x50\xcd\x1b\xae\x9f\x6e\xd9\xf8\x6b\xd5\xb0\x2b\x3d\x1a\x95\xfd\x11\x26\x04\x8e\xad\x00\xf0\xda\x74\xb5\x50\x31\x81\xd1\x68\x15\x73\x5a\x92\x66\x0b\xd8\x2b\x30\x95\xfa\x8f\x1f\x02\x2b\xf6\xc8\x7e\x7b\x6c\x6c\xb8\x7e\x71\xd9\x79\xf8\x0b\xf0\x1c\xcd\x59\x5c\xc5\xe8\x8a\x87\x77\xeb\x3f\x3c\xe0\xf9\x53\xd8\x72\x9c\x39\x65\x34\x9a\x8e\x7b\xf7\x54\xa0\xea\xf6\xd4\xb8\xa5\x97\xf3\x64\x12\x86\x3d\x25\xe1\x15\xd2\xb6\xc9\x31\x1a\x13\xe8\xe5\xc2\x36\x95\xb2\x21\xfc\xa1\x48\x5e\x8b\xc6\x9c\xa4\x8f\x1a\x05\x2c\x84\xa8\xd0\x21\xef\x99\x82\x1a\x2a\xde\x9a\xcc\x52\x78\x7f\xe7\xce\xc3\x2c\x86\x42\x0f\x59\x8c\xf7\x4e\x64\xbb\xf4\x98\xe2\x66\x34\xbc\x59\x7a\x3c\xa4\xe2\x88\xc7\xd3\xd6\x2c\x3d\x9e\x14\x96\xa8\x44\x7d\xd4\x29\x88\xb1\x44\xc5\xb6\x57\xc7\x9c\xc0\x12\x85\x3b\x35\xa3\x25\xaa\x85\xd6\xff\x3c\x4d\x30\xde\xf0\xe6\x0a\x78\x63\x2c\x60\x38\x46\x65\x0b\x58\x10\x8b\x78\xb0\xe6\x91\xc1\x98\xad\x50\x90\x22\x08\x36\xe6\x24\x5f\x57\xfe\x76\xec\x3e\x5a\x28\xc4\xe5\x80\xd4\x76\x07\x4b\xd2\x2b\xd8\xc3\x1e\x63\x3b\xa7\x89\x54\x35\x99\xbb\x48\xc8\xe6\xcf\x05\x8c\x35\x51\xc0\x98\x24\x10\xa0\x71\xca\xc2\xc7\x02\x5a\xd4\x60\x67\x08\x01\xb1\x54\x32\xc8\x69\x8d\xcd\x4a\xd1\xfe\x06\xdd\x06\x9f\x7a\x5c\xf2\x08\x48\x9e\x3c\x76\x3c\xc8\xe8\xa4\xd8\x42\x28\xb7\x0e\xd2\x6a\xa9\x5a\x07\x05\x92\x1c\xb2\x0f\x8c\x3a\x88\xf6\xc4\xf9\xe4\xe1\xce\xf5\x39\xc6\xa6\x8c\xc7\x4e\xee\xb4\x10\xdf\x21\x1d\xee\x17\x69\x49\xac\x6d\x2f\xd5\xd6\x37\xb2\xdb\x13\x71\xae\x23\xbd\xf3\xd5\xd4\x04\xde\x5c\xa8\x1b\x14\x03\x42\x4f\xd7\x0c\x8a\x1e\x61\x5d\x50\xa4\x66\x82\x95\x9e\xe2\xee\x9b\x09\x5b\x47\x3a\xbb\x99\xd0\x23\x33\xb3\x99\x30\x03\xa4\xf4\xd4\x7a\x26\xb2\x11\xfc\x90\x90\x30\x69\xa7\x0c\x34\xd0\xe3\x2a\x1d\x05\x9d\x5d\xd2\xe3\xef\xa6\x79\xae\x3b\x40\x55\xc6\x90\xc4\xa6\x96\x84\xec\x74\x70\xd4\x29\xcd\x64\x98\xcb\x08\x4d\x9d\xea\x17\xa8\xe4\xf7\x0b\x88\x69\x55\xfd\x7e\x12\xe1\x8e\x0b\xe8\xf5\xb3\x9a\x41\x5a\x73\x12\x6d\xd2\x52\x5b\x4b\x45\x78\xaa\x94\x7b\x06\x81\x60\x0c\x43\xeb\x7b\x0a\x60\xe8\x92\x6d\x26\x78\xd9\xf8\xe0\xf3\xf2\x78\x4b\x17\xa0\x28\xe3\x30\xbb\x63\x76\x69\xed\xc2\xa4\x66\x97\xc0\xbe\xcd\x6e\x73\x39\x60\xd8\xb9\xb2\x49\xd9\x72\xf6\xf9\x0e\xa0\xef\x6b\x59\xdc\x01\x85\x3b\x25\xe8\x97\x9c\x1c\x4e\x66\xa3\xe9\xe4\x95\xe8\x26\x2d\xf1\x14\xa8\xfe\x28\x98\xe8\x3d\xaf\x02\x43\x95\x42\x7c\x8f\x69\xad\x4c\x74\x9d\x39\x57\xac\x22\x7d\xef\xfa\x8f\x27\xa5\x5a\x1d\x6e\xb6\x91\x78\xd3\xe4\x47\x98\x8e\xe8\x18\x10\xa9\xe9\x43\x1d\x82\x2f\xd2\x03\x35\x08\x9c\x08\x83\x7c\xf3\x71\x2e\x44\x42\xf5\x68\xb6\xf1\xf5\x19\x38\x32\x19\x14\xff\x7e\x52\x00\x2b\xb9\x84\xba\x05\xf6\x35\xdb\xe2\x97\x3a\x97\xe2\x98\xd2\x67\x02\xf3\x51\xcc\x93\x1d\xa0\x6a\x73\x6f\xd1\x49\xc2\xb1\x77\x11\x55\xca\xa9\xa7\xf7\x26\x83\xc7\xdc\x5d\xb8\xf3\xde\xc7\xb4\x0d\xba\xdf\x81\x31\xf2\xf2\x4e\x75\x4d\xed\x36\x3e\xf5\x91\xe3\xc4\xc2\x19\xe3\x64\x78\x40\x56\x24\xfe\x09\xdf\x69\xf4\x11\x13\xff\x1c\x7d\x11\x28\x5f\xd0\xf8\x71\xdb\x65\x7a\x4a\xbe\x68\xf4\x99\xe6\x25\x64\x87\xc6\x51\xd8\xf5\xc9\xd9\x75\x1a\xd2\xcc\xd0\x29\x91\x66\x8d\xcd\xb4\x6f\xfe\xc3\x3f\x1e\xe9\xd1\xde\x78\xfd\xcd\x3f\xe2\x3f\x87\xa2\xf5\xa1\x9c\x45\x6d\xe7\xce\xb5\x9d\x2f\x3f\xff\x6d\x6b\x01\xab\xdb\x7e\xfd\x21\xf6\xfe\x6d\xeb\x32\x75\xc7\x7f\x0f\xfd\xb6\x75\x41\x8d\x2a\xb4\x01\xa3\xcd\xb6\x00\xaf\x2e\xca\xb4\x52\x01\xbe\xe8\x25\xbd\x88\x16\x6e\x6e\x3f\x6b\x3c\xdc\x68\xcf\xff\x76\x66\xd9\xd9\x78\xd2\xb8\xf8\x6b\x7d\x4e\xc5\xbb\xe0\x80\x25\xc2\xfe\x0b\x56\x19\x43\x4c\xe1\xa5\x5d\xaa\x46\x47\x97\xc3\xbd\x55\x7f\xfc\xa5\xb3\xfd\x6d\xf3\xc2\x4f\xcd\x67\x9f\x3a\xe7\x37\xd4\x71\x4e\xeb\x25\xd7\x56\x45\x29\x21\x44\xec\x17\xcd\x08\x97\xc8\x76\x75\xd0\x74\xc3\x96\xca\xc6\x8c\x69\xc1\x34\x51\x9c\x88\xcd\xa9\x68\xb8\x8b\x34\x5d\x61\x6d\x7d\xa3\xf9\xfc\x8e\xa7\x39\xae\xdf\xbe\xef\xac\x9d\x65\x5d\xb2\x24\x58\x4c\x7e\xf9\xf2\x00\xb8\xf8\x91\x08\xd9\xd0\x27\x30\x0c\x07\x69\x93\xdd\xfb\xf5\xab\xdf\xec\xcc\x9d\x71\xae\x5d\x45\xc7\x8c\x6b\xab\xce\xc5\x6f\x98\x2a\xa5\x59\xcc\x55\xb1\xf6\x13\x07\x60\x57\xcb\x85\x04\xd6\xed\xfa\xcd\xf3\xf5\x07\x5f\x41\x9b\x6c\xd6\x6d\x56\x00\xf2\x99\xf2\xe5\x17\x8e\x3e\x4f\x9c\x19\xc1\x3b\x49\xbe\x3e\x8a\x67\x88\x28\xb0\xf7\xc5\x20\xdc\xa7\x04\xfa\x74\x11\x43\x89\x35\xbd\x82\x11\xc6\x15\x68\x6e\x16\x8c\xbc\x9b\xa1\x03\x73\x60\x60\x4e\xe8\x63\x9c\xdc\x8c\x1c\x2e\x28\xb7\x50\x8f\x97\xcb\xca\xa6\xcd\xa1\xcf\x40\x3f\x6a\x43\xbb\x17\x2f\x82\x49\x73\xc6\xa0\x95\x92\x30\xd4\x24\xd8\xd3\xe2\x2e\x58\x39\xbd\xb0\xd7\x2c\xc2\x06\x2d\x1a\x15\x05\xcf\x4f\x97\x2a\x2f\x7f\x92\x48\x0d\xb2\xc7\xd6\x72\x98\x66\xd0\xae\x4e\x6b\x79\xcb\xb0\x5b\x6e\x49\x54\xef\x59\x9b\x36\x2a\x7a\x5e\x97\x59\xc6\xbb\x06\x38\xf9\xfa\x56\xa7\x4b\x81\xec\x4c\x38\x87\x06\xcc\x38\xf2\x13\x4e\x41\x24\x79\xec\x63\xee\xa4\xfa\xd2\x5c\xf3\xf9\xc7\x5e\x1e\x1f\x0e\x9f\x46\xb7\xbb\xb9\xcb\x3b\x9f\x7f\xc1\xc9\x82\xf8\x27\xcc\xbb\xb9\xa2\x92\xb1\x75\xe0\xe8\xf1\xc1\x91\xa1\xa3\x47\x06\x8e\x8e\x69\xc7\xfb\x47\x06\xfb\xdf\x3a\x3c\xa0\x51\x5d\x89\x68\xdf\x98\x44\x7d\x32\x51\x30\x1a\x7d\xde\x44\x1d\xda\xc5\xdb\x3b\xe7\x17\xc3\x4f\x9d\x74\x83\xb5\x32\xd4\x47\x73\x72\xe0\x1c\x8f\xaf\xed\x53\x4a\x99\xc4\xf9\x69\x35\x2f\xff\x38\x5f\x72\x9e\xb0\x2a\x7c\xa4\x6c\x71\xf3\xd8\x25\xab\x68\xcb\x9c\xa1\x88\x6f\xbb\xc0\xf8\x16\xac\x5f\x98\xab\x2f\x5d\x60\x1f\x29\x4c\xb8\xfa\x29\x06\x28\xab\x53\x8a\xae\x55\xe8\x72\xfc\xde\xac\x9b\xc1\x13\xbd\x29\x5d\x3a\x25\xb7\xdd\x06\xb4\x13\x54\x5c\xc3\xb4\x23\x08\xa8\xb6\xf9\x55\xe3\x9a\x4a\xfe\x07\x41\x4c\x16\xcd\x87\x0a\x08\x45\xfa\xba\xa6\xf7\xe8\x16\xd8\x4c\xe3\x48\xa7\xf5\x50\x80\x90\x96\x3a\x18\xa2\x28\x9b\xc4\xc2\xa2\xec\x78\x90\x36\xf0\x26\xeb\x38\x40\x56\xac\x5f\xf8\x54\x59\x56\x14\xd8\x83\x1a\x17\x4c\xc7\x63\x24\x57\xb6\x30\x45\x19\x94\x2d\x3e\x22\x76\x59\xd7\xb2\x8b\x98\xd2\x4d\xf9\x8b\xd3\xb4\xec\x36\x3a\xe5\x71\x67\x55\x7a\xa4\x1f\xfa\x2e\x60\x7c\x31\xa3\xcf\xac\x65\x79\xc1\xd8\xb3\xcc\xca\x8b\xd6\xb1\xbc\x0c\x12\x52\xcc\xcf\x8c\xe6\xd6\x1e\xa6\x80\x0a\x5d\xe8\xfa\xb4\xd3\xba\x2d\xb2\x57\x55\x24\xd6\x33\x9f\xd8\xe8\xef\x5d\x5f\xfa\xae\xb9\xf2\xac\xb1\xbd\xa2\x42\x12\x3e\x93\xf8\xb2\xe0\x44\xac\x24\x34\xc5\xc8\xf4\x2c\x33\x71\x3e\x46\x65\x9c\x39\x37\x00\xaa\x95\xbe\x01\x1e\x6f\xfb\xa2\xe3\x0c\x92\x76\x53\xa5\x43\x8c\x3d\x49\x6d\x1e\x11\x0d\xed\x9b\x86\x6c\x25\x78\xda\x28\xa9\x88\x5c\x5d\x89\x73\x67\xba\xb9\x86\x5a\xb9\xb9\x32\xe5\xc8\x6c\x23\x27\x26\x5b\x98\x3f\x4f\x58\x6d\x73\xd3\xb9\xf8\xa0\x5b\x3b\x23\xcc\x46\xdb\x97\x28\x45\xa7\x3f\x20\xae\x0d\x00\x13\xd7\xe7\xe6\x13\xf5\x2b\x0b\x94\x29\xce\x87\xba\xb4\xf1\xe9\x4c\x48\x2f\xda\x85\xc3\xba\xf7\xb8\x84\xfe\xb6\x75\xb7\x9b\x94\x86\xfb\xa5\x25\xcb\x57\x97\x05\x54\x5a\x7a\xbd\x0c\xd1\x74\x38\x5b\xa7\x4c\xf2\xf8\xc5\x4c\x71\x57\xd6\x44\x08\xce\xf6\xa7\x3c\x7d\xe1\x3d\x95\xa9\xe1\x67\x6f\x0a\x72\xf8\x91\xdb\x45\x5a\x30\xd5\x24\x5d\x74\x9e\xfa\x0a\xe5\x9b\x34\x09\x07\xfd\x19\x37\xd1\xcd\x82\x1c\x30\xba\xb3\x6c\x9d\xc4\xb1\xc3\x78\x02\xde\x1a\x4e\x1b\xb9\x80\x74\x81\xc7\xba\x84\xb9\xa9\xfb\xd1\x4d\x63\x3a\xef\xee\xd8\x68\xa2\x96\xbe\x13\x14\x51\xf6\x79\x2d\xa2\x97\x22\x31\xd9\xcf\xa2\x12\x24\x45\x6a\x13\x26\xd5\xe5\xf9\x0a\x69\xad\x88\xb6\x5d\x26\x6b\xf1\xd5\x84\xce\x2e\x6e\xfa\xe1\x4e\xe7\x30\x2f\xb7\x34\xa5\x1f\x6d\xdd\x08\x59\xbd\x61\x92\x0d\x20\xe1\x59\x08\xc9\xa8\xde\xc5\xf3\x10\xe6\x94\x97\x96\xc0\xb0\xe4\xee\x5d\x20\x71\x92\x13\x79\xa1\xdd\xa8\x60\xe6\xd8\x80\x63\x57\xe1\xf8\x62\xb6\xed\x98\x73\x91\xb0\xaf\x22\x45\x2e\x13\xa1\x9a\x6f\x6c\x76\x63\xbd\x3c\x8c\xf9\x20\xc8\x6f\x5c\x9d\x31\x21\x89\x69\x81\x29\xd2\x4c\x39\x60\x31\x35\x6f\x42\xb2\x42\xda\x2b\x62\x16\xc3\x71\xad\x11\x3c\x46\x34\x50\x24\x5e\xc5\x44\x10\x52\x52\x07\xf0\x50\xb6\x30\xcb\x06\x9a\x07\x23\x09\xe9\xca\x93\x07\xb6\x9d\x3d\xa5\xd3\xf3\x14\x0b\x5d\x47\x23\xdb\xfe\xa1\x7e\xe5\x4b\x6c\x52\xbf\xbf\xe5\x6c\x2d\x66\x44\x8b\xb9\x76\x83\xc2\xa9\x3c\xe1\x6d\x58\xa2\x5d\x78\x58\x38\xe7\x37\x80\x10\x65\x2a\x30\x5f\x75\xfc\xc8\x29\x2b\x35\x36\xc9\x38\x66\x17\x9b\x88\xf5\x8e\x16\xbc\x1f\xfe\xe2\xdc\xbb\xc7\x68\xb3\xa2\x34\xca\x98\xf0\x3a\xc9\x33\xba\x7e\xe1\x51\xf3\xc1\xe5\xae\xec\xa9\x52\xd9\x42\x45\x07\x5d\xfe\xde\x99\x40\xe5\x06\x66\x03\x8f\x39\x57\x09\xfb\xa6\xa4\x08\x5e\x6f\xf9\xce\x07\x7a\x82\xcb\x84\x8d\x81\x9d\x99\xf8\xbb\xf7\xc2\x76\x49\x73\xe5\xf7\x18\x52\xfc\x32\x7b\xd7\x70\xd2\x2c\xc7\x2c\x4c\x4c\x9f\x6e\x50\x90\x74\x8f\x24\xed\x9c\x9a\xa6\xa2\x3e\x9d\xe5\xc5\xbc\x73\xfe\x0a\xc8\xe2\xce\xb5\x2b\xa1\x00\xba\xf9\x64\x16\x87\x99\x2e\xc3\x24\x4b\x17\xd1\x3a\x35\x56\xdb\x2a\xcc\x78\xf1\x3c\x49\xce\x4f\xf2\x8e\x29\x69\xa1\x4c\xfa\x59\x16\x4b\xa4\xd6\xe7\xb2\xd5\xbb\xbe\x60\xac\xaf\x6a\x13\xfb\x12\xa6\xe2\x67\x35\x96\xdf\x6b\x6c\x5f\xa0\x63\x46\x66\xd0\x22\x4d\x75\x2a\x99\xc0\xdd\x57\x14\x61\x76\x7c\xd2\x45\x5a\x69\xd4\x91\x7e\x15\x24\xa7\xcc\x0f\x6a\xd9\x32\x10\xf4\x37\xb3\x54\x6a\x5b\xd3\xe8\x5b\xfd\xea\xa5\xc6\xd6\xb7\xfe\x55\xcc\xb6\x6e\xfb\xb4\xa3\x16\x67\xf3\xa1\x0a\x75\xb1\xbe\x87\xee\xa0\x45\x7d\x6b\x7a\x1e\x35\x57\x97\x03\x69\xd8\x95\x6a\xdf\x08\x6a\x30\xff\x4c\x1e\x1d\x33\xb4\xd3\x3a\x2f\x13\x51\x64\xcf\x16\x73\xda\x5f\xac\x71\xaa\x84\x03\x4d\xc9\x65\x6d\x0f\x2e\x21\x46\xf7\xdb\xd1\xe9\x8f\x5c\x7a\x33\xc3\x4d\x3b\x90\xd8\x0d\xd5\x8d\xed\xf3\x9e\x91\xab\x72\x1c\x77\x59\x3f\xdd\xca\xf1\x93\xb3\x8a\x15\x10\xf9\x7b\x2b\xb3\x25\xac\xb5\x5b\x21\x33\x5a\x6b\x73\xed\xfd\x8b\x0d\x8f\xc5\xf1\x59\xb7\xbc\x51\x8c\x30\xe7\x5c\xbd\xe7\x3c\xba\xc4\x22\xdd\x6f\x5b\x97\xfd\xc0\xb9\xde\x11\x9b\x68\x6a\xeb\x1b\xfe\xb7\xe8\x5e\x0d\xb1\x28\x0d\xaa\x44\x89\xcf\x02\x2f\x5b\xb6\xf4\xeb\xfc\x84\xb4\x26\xb4\x53\xc6\xec\x5e\xae\x44\x58\xd2\xcd\xb2\x2d\x2a\x72\x69\x56\x8e\x72\x64\xe7\xfd\x15\x92\xb4\xa2\xa1\x97\x81\xd5\xe1\x0a\xff\x69\xba\x30\x5a\x84\xd3\x66\x54\x60\x95\xa3\x57\xe6\xcb\xb3\xcd\x95\x07\x8d\xeb\x3f\xe3\x98\x17\xae\xc1\xc0\x76\xae\xaf\xec\x75\xe6\xb6\x04\x2e\x5e\x39\xae\xd8\xee\x2c\x7e\xdc\xb8\x7e\x0f\xf3\x22\x2d\xfc\xe8\x5c\xb9\xb1\x73\xe7\x6c\xf3\xf9\xc7\x72\x6c\x99\x66\xc2\x0e\x4c\x45\x34\x9b\xf0\x33\x88\xcf\xce\xc1\x9f\x70\x48\xeb\xb7\x57\x45\xee\x04\xd5\x62\xf3\x1e\x45\x1e\x6f\xf6\xc8\xc1\x6d\xc6\x0b\xa3\xfd\x5f\x27\xaa\xaf\xbf\xfe\x07\x83\x4b\x45\xf6\xc0\x7d\x50\xd1\xcc\x0a\x19\x02\x29\xc2\x6f\x0c\x36\x8e\xac\xb4\x38\x4c\x7f\x7d\xe9\x5e\x6d\xf3\xa1\x87\x04\x56\x00\x08\x6f\x6c\x9e\x75\xe6\x7f\x86\xa5\x70\xe1\xd7\x36\x9f\xc0\xa2\xc0\x96\xac\x6d\x9f\x73\x56\x3e\xe2\xe1\x79\x08\x32\x0e\x6f\xb8\x0c\x8f\xcb\x72\x65\xb6\x6d\x98\xe3\x96\x55\x30\x74\x49\x0e\xbe\xce\xae\x30\xf9\x58\xae\x62\xfd\x23\x67\xed\x3a\x9b\x38\x77\x87\x34\xf7\x6c\xd8\x95\x32\x66\x87\x57\x20\xf1\xf1\xad\xc6\x0f\x5f\xd7\xd6\x7f\xda\x1d\xfa\xb8\x90\x53\xe7\x7e\x70\x9b\xc7\xed\x8b\x28\xb2\xeb\x37\xd6\x80\x72\xdc\x06\xeb\x57\x60\x0f\xc8\x20\x26\x1e\xce\xc1\xfe\xc1\xc3\x03\x07\x24\x6f\x6b\x4c\xb1\xa8\x02\x77\xa0\x7f\xec\xd8\xc8\x80\x76\xf0\x70\xff\xa1\x68\x17\xce\x88\x56\xc9\xb1\x90\xb3\xb0\x36\x61\x54\x72\x53\x01\x89\xcc\x4e\x66\x63\xac\x5f\xfc\x14\xde\x88\x5e\x2f\x1e\x6d\xb7\x84\xb0\x76\xe2\x58\xb1\x6f\x27\x94\x62\x53\xf6\x56\xa6\xca\x98\x81\x3b\x2e\x29\x51\xf5\xc5\x6b\x30\x5f\xb5\x8d\x4b\x28\x1b\x06\x26\x8b\xae\xf7\x2e\x92\x65\x95\x27\x7b\xd9\xef\x8b\xcb\xb9\xb3\xb7\xc5\x50\x79\x72\x04\x3e\x8e\x59\x22\xa6\x44\x84\x59\x25\x5b\x6b\xae\x99\x76\xf5\x89\x57\xda\x94\x6d\xcb\x8d\xbb\x67\x9b\x8f\x3e\x69\x5e\xf8\x49\x06\xbf\x2b\x86\xe6\x90\x31\xa6\x9b\x78\x26\x9b\x27\xbe\x6f\xb7\x66\x9e\x43\x50\xfa\x12\x3c\x56\x53\xf4\x54\xa6\x26\x98\x00\x21\xe1\xb1\x56\x03\xa2\x4e\x23\xda\x4a\x42\x76\x2b\xd9\x50\xd4\xf7\xeb\xd2\x77\xcd\x8f\xb6\xc5\x7e\x25\xbb\x4c\xe7\x7e\x95\x60\xd8\x95\x1d\xcb\x16\xe0\xbe\xb4\x76\x3b\x1e\x84\x30\xdd\xd1\x50\xfa\x76\xcb\x5e\x27\x28\x86\xab\x58\x54\xcd\xa3\x27\xc0\x84\x50\xaa\x60\x4e\xc7\x93\x6e\x58\x45\x8c\x7e\xd7\xe7\x95\xd3\x52\xe3\xc3\xe4\x07\xe1\xf0\x6b\xa1\x1b\x84\xba\x62\x7c\x0f\xa6\x6e\x13\xe1\x2e\x5c\x20\xd2\x28\xce\x98\x65\xab\x88\xc6\x0d\xcf\xf7\x4c\xa2\xf4\xeb\x22\x64\x85\xd1\x08\x03\xc9\x0b\xb2\x8e\xb4\xf0\x72\x6c\x9a\x45\x89\x5d\x12\xae\x2d\x87\xa3\x6d\xcd\xd5\xaf\x3f\xab\x5f\x5d\xa8\x7f\xfe\x91\xfa\x62\x0a\x8f\x65\xb4\xf3\xf1\xc7\x83\x05\x1d\x93\x6b\x88\x50\xf2\x7c\xb4\xb0\x97\xa6\x6b\x76\x7a\xd8\xdd\x5a\x85\x9c\xce\x9e\x69\xa9\x89\xb6\xe0\x74\x36\x48\x0e\x1b\x6d\x9b\x54\xb6\x95\xb4\x3a\x14\xf9\x55\x98\xed\x81\x6d\x78\xca\xd0\x6c\x1c\x09\x39\x87\x63\x2b\xe3\x3d\x93\x62\x5e\x2a\x22\x2e\xad\xa4\xc3\x56\x91\x39\xa2\x46\xc1\x16\xa1\x6a\x42\xb5\x96\x77\x23\xd8\x38\x92\x4b\x54\xe8\x44\x0d\xbb\x1b\x80\x16\x99\x64\x4d\xea\x83\x7f\xd0\xc2\x04\xb4\x79\xce\xac\xf7\x6a\x9e\x23\x30\x4b\x00\xb7\xc4\x81\x3c\x39\xab\x38\x61\x8a\xe2\xac\xd1\x81\x88\x8a\x50\x92\xcf\x7f\x0b\x3e\xaa\x2f\xb0\xfc\x31\xea\x9e\xfc\x60\x25\x9a\xc6\x2b\x3b\x73\x77\x9b\xcf\xcf\x37\x1e\xac\x60\x35\xe9\xad\x0d\x67\xe1\x57\xe5\xdc\x80\x4c\xc9\xb4\x39\x59\xd6\xd3\x93\xc2\xb8\x9b\xcf\xcf\x34\x1e\x6d\x2a\xe3\x86\x1d\xcc\x4c\x88\xab\x95\xb9\x04\xf0\x6c\x4b\x99\x11\x07\xc9\x12\x0d\x68\x14\x01\xc6\xa4\x1a\x24\x7b\x68\x60\x6c\x6c\xf0\xe8\x21\x6d\x74\xac\x7f\x64\x4c\xf6\xb0\x9b\x5f\xde\xb9\xa5\x84\xe0\xf0\xd0\x5b\xfd\x87\xb5\xa1\xe1\xb1\xc1\xa1\xa3\x92\x00\x39\x67\xfe\x1b\xe7\xc7\xb9\x9d\xb9\x0b\x3b\x0f\x9e\x2a\x04\xc8\x1d\x12\xfe\x02\x43\xfd\x5e\xa6\x2e\xd9\x51\x8d\x6b\x9e\x7c\x78\xae\xb7\x09\x26\x48\x65\xb1\x51\x84\x63\xc3\xc5\x76\xca\xa8\x80\x8c\x95\x33\xa4\x59\x1b\x37\xaf\x8a\x0c\xb9\xeb\x1f\x3a\x4b\x1b\x2c\xfa\x70\xb4\x1c\x7f\x9f\x91\xae\x52\xc9\x7e\xe1\x09\x27\x79\x10\x5e\x52\xae\x76\xc4\xa1\x5e\x43\x1a\x27\x7e\xe2\x8d\xcc\x7a\xb8\x6c\x23\xf7\xbd\xed\xfb\xfa\x24\x7e\x7e\x4c\x6c\x64\xeb\xd4\x78\xc5\xc3\x5b\x52\xef\x25\xd9\xec\x66\x86\x97\x9a\x72\xc3\x17\xab\xe0\x25\x5b\xe0\xd7\xe2\xcb\x4a\x5d\xda\xb6\x93\x42\x37\x92\x64\x1f\x05\x68\x47\x9f\x52\x5f\x38\x85\x62\x2a\x53\x6f\xb2\x48\x0f\xb2\x1b\xb3\x24\x8b\xf1\x7d\x41\xf3\xc4\x1a\x1b\x7e\x6b\x65\x9c\x27\x14\x6f\xfe\x6b\x6e\x26\x36\x79\x76\x65\x92\xd0\xd9\x2e\x7b\x20\x54\xd8\x90\xe9\x85\xd2\x39\x5e\x5c\x63\x22\xbc\x4b\x74\x77\x33\x67\x68\x77\x81\x67\x18\x53\x5c\x56\x44\xe5\x3a\x5e\x7e\x25\x0d\x2f\x43\xfa\x6a\x5e\x91\x49\x12\xbb\xb1\xae\x51\x61\x93\x12\xd6\x14\xb3\xf9\xb2\xde\xaa\xec\x07\x6a\xb7\xb2\xd1\xa3\x0f\xa8\x6d\x56\xac\xb2\x09\xec\x05\xa0\x47\xeb\x37\x54\x40\x64\xa3\xcf\x03\x3c\xab\x45\x1b\x53\xe5\x3d\x91\xa4\x70\xd3\x68\x22\x31\x38\x34\x6b\x28\xed\x6c\x15\x11\x44\x11\x5a\xea\x49\x24\x3c\xe9\x22\x84\xd3\x74\x4d\x4d\x8f\xc8\xae\xd4\x0e\x54\x93\x9f\x84\x94\xbd\x53\x53\x15\x64\x87\x76\x7a\xc6\x9a\x1c\x80\x02\x6d\x22\x5f\x32\x87\xe2\xa6\x59\xc9\x49\x05\x10\x69\x8f\x45\x1b\x6c\xe4\xf2\xad\x4c\xc9\x6f\xd1\x27\xe4\xe6\xc5\x60\xe6\x0d\xc1\xeb\xbd\xbf\x53\x5e\xcb\x11\x03\xdb\x25\xe4\xbb\x37\x25\x9d\xe1\xd3\xbf\x87\xb9\xda\x15\xaa\x5e\xf4\x24\xbe\x84\x19\x7a\x09\xc3\xdf\xbd\x51\xee\xf2\x60\x5e\xcc\x06\x7f\xc9\x1b\xf6\x25\x1f\xef\xdf\xeb\x39\xde\xcd\x03\xfb\x02\x4f\xa6\xa7\xe6\xb4\xd3\x3e\x56\xb2\x80\x52\x96\x1f\x84\xe5\x3d\xe5\x1b\x44\x11\x8a\x32\x95\x94\x66\x04\xe5\x60\x61\x2e\x48\x92\x84\x47\x79\xde\xbb\x8b\xec\xc5\x8c\x79\xd7\xc6\xd7\x95\xb1\x74\x2a\xea\x77\xb1\x7c\x45\xa8\x9e\x3f\xaa\x38\xc2\xb9\x9d\xf9\x2b\xa9\xaa\x36\x79\x15\x2d\xba\x34\x31\xbb\x37\x0f\xd2\x81\xbf\x8c\x21\x87\x54\xd9\xc8\xf2\x56\x56\x86\x97\x85\x72\xb5\x37\x73\x72\x00\x6a\xb4\xd9\x61\x15\x44\xa4\xbb\x26\xd6\x4c\xc3\x7b\x21\x81\xaa\xac\x0d\x1f\x96\xe5\xf5\x01\xc8\x7c\x01\x54\xd0\x52\x14\x3c\x25\x9e\x50\xd2\x3d\x4d\x76\xa4\x4e\x8d\x39\x84\xff\xac\xb4\x61\x97\x1c\x1a\xa6\x3d\xdb\xf2\xb2\xef\x5a\x78\x7d\x98\xbd\x51\x8a\xd3\x34\x05\x98\xc2\x17\x38\x74\xf0\x3e\xdc\x7b\x23\x34\xa2\xac\x2d\x55\x2d\x2d\x99\x64\xd0\x5d\x29\x8a\x13\x37\x3c\xff\x38\xd4\xd6\x8f\xd2\xa6\x52\xdc\x6f\x64\x21\x6c\x6d\xdc\xca\xcf\x46\x5b\xe9\x2f\xcf\x3b\xd7\xbe\xa7\xd0\x26\xa4\xb5\xb9\xfa\xd8\x59\x5c\x66\xba\xa8\xda\xf5\x8d\xb5\xfa\x15\x95\x9c\x64\x44\xd8\xb4\x51\x99\xb2\xf2\xda\xab\x87\x06\xc6\x7a\x86\x87\x46\xe1\x3f\xc7\xc6\x7a\x0e\x0c\x1c\x1e\x18\x1b\xe8\x31\x2a\xb9\x68\xa7\x95\x94\xbd\x93\x53\x65\xd9\x15\x3c\x76\xd1\x88\x3b\x1a\xa4\x86\xdd\x2a\x16\x6f\x57\xc7\xd9\xd6\x1b\x97\x26\x1c\x0b\x0e\x6d\xcd\x69\xaf\x72\xae\xf0\xdf\xb6\xee\x46\xf5\x4e\x4c\xcc\xe0\xd1\xd1\xb1\xfe\xc3\x87\x07\x0e\x68\xc3\x87\x8f\x1d\x1a\x3c\xaa\xed\x1f\x3a\x72\xa4\xff\xe8\x81\x68\x4f\xfc\xc8\x76\x49\x5f\x28\x83\x93\x45\xab\x6c\x04\x23\xc6\xa3\xc7\xfd\x7c\xbb\x71\x63\xb9\x33\x4c\x5c\x65\xa8\x62\xd7\x7b\xc1\xcd\x6e\x69\x78\x71\x0c\x62\xf2\xfb\x73\x9e\x56\x3e\x06\xb8\xed\x38\x5e\xdc\x79\xa8\x52\xfc\x17\x48\xb1\xe0\xf8\xe7\x2a\xda\x31\x5b\x9f\x8c\x1e\x7d\x64\x3b\x55\x4c\x52\x13\xf3\xfa\x95\xfa\xe3\xaf\x1a\x0f\x56\xd0\x44\x48\x65\xea\x95\x6e\xca\x76\x8c\xda\x7e\x2f\xd7\x49\xd1\xa0\x5a\xfb\x58\x39\xf7\xbd\x9c\x51\xaa\x68\xbd\x13\xaf\x61\x6a\x56\xf4\x34\xc3\x78\x18\x8c\xe9\x32\xf2\xda\xe9\x29\xf4\xb9\xe3\x72\x01\xad\x32\xfc\xe4\xcf\xc2\x16\x9c\xe0\xde\x91\x96\x38\xe0\x11\xf1\x70\xea\x37\x9f\xd6\x7f\xbe\xf1\xf7\x39\x60\xb4\xdf\xc2\x9f\x21\xb9\x07\xe8\x1b\xe7\xe1\xdd\xb6\x62\xba\xf5\x5b\xbf\x72\x2c\x4d\xf3\xa3\x6d\x06\xc5\x99\xa1\x9a\x0f\x2e\xd7\xef\x9f\x77\x9e\xdf\xfa\x6d\x6b\x01\xab\xf0\x6e\x9c\xeb\x9d\x50\xcb\xda\xdf\x9a\x34\xd7\x0b\x19\x9e\x42\xfb\x5a\x81\xb8\xe8\x00\x8b\x4e\x86\x94\x61\xbf\xfa\xfa\xeb\xaf\xff\x9f\xe2\xbf\xc5\xe3\x7a\xc1\xcc\x8b\x5e\xec\xbb\x48\x05\x04\xf6\x9d\x28\xbe\x73\xa2\x08\x78\xf0\x3f\x9a\x76\xe2\x95\x52\xd9\xaa\x58\x39\xab\x70\x02\xd0\x9d\x78\xa5\x92\x2b\x9d\x78\xa5\xc7\xfd\x2d\x4f\x31\xec\x34\x6d\xfc\xf3\x1b\xaf\xf7\xbd\xf9\xc7\x3f\xf6\xbd\xd1\xf7\xc6\xff\xf4\x35\x2b\x59\xe5\x8a\xcd\x0d\xfe\xf0\x87\xd7\xff\xf1\xc4\x2b\xf8\x03\x10\xf4\x6e\x82\xfd\xfb\x9f\x7b\x58\x0a\xeb\xc8\xa1\x5d\xe4\xe1\x57\x9e\xa4\x6a\x14\x92\xbc\x24\x8b\x1f\xc2\xfd\x09\x9b\x0e\xfe\xab\xec\xe0\xdc\x42\x5d\x95\xf2\x94\xce\x63\xae\x84\x8c\xaa\x2b\x10\xdf\x14\x89\x7a\xa8\xaa\x38\xc7\x99\xba\xd9\x8d\xdc\x91\x47\xd2\x22\x8a\x34\xf4\x0a\x10\xc3\xfd\x63\x6f\xef\x1d\x1b\xda\xcb\x57\x4c\xef\xd1\xfe\x23\x03\x9a\xd6\xab\xa9\x22\x4b\x7c\x21\x31\x7c\x5f\xd2\xa1\xf7\x31\x81\x2c\x7e\xe2\x3c\x4c\x32\x81\x2e\x5d\xe7\x74\x13\x2c\x2b\xb1\xdf\xd9\x20\x35\x6c\xed\x88\x31\x6d\x95\xa3\x45\xbe\xc8\x76\xe9\x31\x4d\x57\xed\x8a\x08\x79\xb4\x8a\xbd\x45\x63\x12\x90\xcc\x18\xe4\xf7\x3c\x29\x29\x0d\x9f\xba\x7f\x62\xca\xf0\x7d\x54\xd1\x2b\xc2\xad\x03\xb8\xc8\x24\x88\x05\x76\x1f\xdc\x59\x06\x05\xbe\x0b\x9d\x93\x2d\x2e\x2f\x8c\x80\xb7\xca\xfe\x5f\x7c\x3f\x60\xfc\x04\x96\xe4\xc0\xdc\x4b\xc2\xa5\x98\xcb\x16\x49\x03\x37\x5f\x28\xfa\x14\x2b\x36\x43\x9c\x17\x39\x73\x68\x1a\x18\xa9\x77\xf2\x8d\x05\x4f\x37\xe3\xdc\xf9\x06\x61\x28\x97\x7b\x70\x09\x19\x11\x21\x52\xf8\x6f\x4c\xcc\x1e\x61\xe7\x88\xa7\xb0\x1e\xa9\x51\x8f\x8e\x1e\xd6\xf6\x1b\x65\x76\x7f\x7f\x5f\x14\x05\xa2\x88\xa6\x31\xb3\x74\x04\xd6\x0b\xd8\xac\x2c\x96\x69\xe5\xf9\xce\xad\x15\xb7\x1f\x15\x45\x41\x1a\x01\x6a\x73\xf5\x4c\xed\xe9\xd7\x12\x48\xa9\x49\xe5\xac\x0d\xe9\xd6\xcb\x5d\x26\x6f\xea\x9c\xad\x0f\xeb\x8f\x97\x33\xaf\x58\xcb\x4c\xb0\x2f\xda\x35\xa7\xb5\x5e\x1b\xdf\xd7\x36\xb7\x77\xbe\xbb\x8c\x93\xb2\xf9\xb0\x71\xe1\xf2\x3e\x15\x6f\x1c\x17\x79\x2b\xb5\x15\x1e\x16\x74\xaa\x61\x0d\xc8\x1e\xb8\x47\xdc\xbb\x03\x9b\x78\xa5\x73\x28\xd6\x43\xc2\x80\xba\x03\x36\xfd\x38\xb0\x40\x1b\x29\xe8\x48\x50\xc2\x7a\x6d\x42\xa1\x98\x3a\x15\xa6\x3b\xd3\xa2\x72\xdb\xfc\x95\x9d\x2f\x3f\x4f\x0d\x74\x17\x06\xd0\x2d\x9a\x33\x91\x69\xba\x37\x4c\xce\xaa\x16\x2b\x84\xc2\xbd\x74\xf6\xe3\x37\x88\x66\x30\xd0\xc6\x77\x17\x91\xc7\x56\x92\x7b\xac\x75\xc4\x56\xbe\x80\xb7\x3b\x88\x79\xe1\x98\xbc\x9f\x9d\xe7\xf3\x3b\x0f\x36\xeb\xb7\x57\x41\x54\xab\xdf\xf8\x05\xbe\xd9\x9d\x31\xda\x2f\x6e\x90\x76\xe7\x28\x77\xce\x2f\x7a\x03\x45\xe9\xb7\x9b\x63\x9d\x26\x99\x85\x6b\x1c\x12\x1d\x2c\xc4\x1c\xc6\xbf\x13\xed\xc1\x2e\x40\x54\xa6\x3e\x30\x71\x81\xd5\x51\x58\x97\xee\x02\xdf\xc5\x31\x15\xa8\x86\xc3\x14\x17\x70\x68\x3b\x1b\x5d\x1c\x5d\x32\x34\xa9\xc7\x49\x6f\x55\xef\x9e\x88\xa5\x37\xaa\x79\x6a\xbc\xae\x2e\xa4\x4f\x6b\x25\xc7\xc1\x02\x92\xf1\xe7\x14\x95\xcd\x4a\x75\x24\x3c\xd4\x21\x27\x22\xf9\x01\x6b\xf1\x8b\x73\xf3\xce\x63\x3f\x93\x97\x83\xe9\x0a\x99\x4a\xac\xe0\x05\x70\x80\x08\x14\x19\xae\xfd\xb0\xd9\x4d\x06\x31\x35\xf1\xcc\x35\xac\x62\x9f\x96\x8e\xd6\xd4\xfd\x53\x53\x86\xb9\xce\x28\xc2\x52\x2f\xeb\xd3\x34\x0b\x63\xfc\x4d\xba\x9d\xda\xfc\x75\x1e\x73\xe3\x92\xba\xa6\xb9\xf2\xcc\x59\xb9\x1b\x0f\x2b\x35\xad\x72\xf5\x0d\xd3\x92\x41\x71\xc3\x48\x38\x53\xd8\x84\x78\x54\x06\x93\x08\xed\xa1\x41\x8d\x52\xce\xa4\xe3\x7a\x21\x69\x8e\xce\xcf\xbf\xa8\xff\x7c\xa3\x03\x98\x33\xb7\xb5\x2f\x71\x8e\x09\xa9\x9a\x86\x9e\xa4\x26\xaa\xeb\x69\x08\xb1\x99\x20\xa2\x16\x11\xe1\x74\x2f\x8d\xc4\x61\x4c\x31\x85\xda\x29\x37\xde\x12\xb5\x54\x15\x32\xdd\xb1\x39\x34\x5a\xeb\xb7\x70\xcb\x39\xbf\xd1\xf8\x6c\xa5\x7e\xff\xbc\x88\x08\x61\xdf\x06\x0a\x01\xf5\xeb\x9f\x33\x91\xe5\x15\x65\x70\xc3\x0d\x80\x46\xfa\x21\x8f\xb5\x45\xfd\x61\x07\x91\x94\x66\x03\x96\x9e\xe6\x56\x48\x66\xcc\xe4\xf1\x54\x85\x35\x4f\x8f\x54\x5a\xf8\xd0\x8f\x8e\x0d\xb4\x59\x50\x89\xf8\x00\xb1\x59\x72\x6c\x09\x16\xc6\x73\x51\xb4\xcb\xfd\x32\x51\x29\xc9\xee\x01\x4e\x3f\x16\x32\x20\x8b\x5a\xd4\xa2\xf4\x9a\x70\x01\xb1\x26\x14\x47\x91\x01\x64\x7a\xfa\xdb\x42\x22\xe2\xa9\x8b\xec\xa0\x82\x9b\x7d\xdc\x5c\xd9\xb5\x9b\xfc\x43\xa8\x77\xe8\xa9\x95\x89\x46\xcf\x9f\x47\x27\xff\x87\x38\x72\xe8\x70\x00\x21\xe2\xac\xb8\xb1\x6a\x99\x48\x60\x9f\x9b\x57\x75\xfe\x84\x77\x80\x8e\x35\xcf\x7b\xf1\xe0\xb3\x0d\x50\xb3\x67\xed\x8a\x31\xdd\x23\x5c\x1b\x28\xfe\xbd\xe8\x2a\x44\xd1\x6d\x47\xfc\x4c\x55\x22\xb1\x18\x64\xb9\x4a\xb5\xc9\x6d\x89\xc5\xdd\x77\xe4\x5d\x0a\xe8\x5f\x78\xac\xee\x7c\x79\xd6\x99\x5f\xc0\xa2\x53\xdf\x5f\x72\x96\xb7\xbd\x90\xd0\xc6\xcf\x9b\x8d\xcd\x7b\xbf\x6d\x5d\xd6\x84\xbb\xc4\xe2\x6a\x6d\x73\xb9\xf9\xfc\x1a\xe6\x0c\x0d\x16\xa7\xaf\x7f\x7a\xa5\xb6\xbd\xc4\x1d\x54\x0c\xf7\xde\xec\x78\xce\x29\xa2\xd6\x5f\xea\x05\xaa\x2f\x6d\xd4\xbf\x38\xab\x4c\x42\xab\x22\xd1\xc4\x84\x41\x69\x16\x5d\x62\x7c\xee\x95\x89\x66\xd9\x2b\x00\xc4\x7b\x37\x3b\x45\xcc\xf8\xdc\x34\x4c\xc2\xdf\x2d\xe6\x84\x27\xed\xac\x4a\x13\x49\x77\x29\x49\x09\xef\x93\x8e\x02\x5f\x32\x01\x1f\x87\x91\xed\x97\xa4\xdd\xd2\xd1\xd1\x1e\x82\x26\x00\x8b\x5c\xa9\xed\xbf\x52\x3a\xae\x6a\xb1\xd8\x96\x0b\x3a\x66\xe6\xba\x8d\xa3\x3b\x23\xe4\x52\xbc\x44\x85\x08\x8a\xcf\x38\x9c\x44\x00\xd3\xd2\x1e\x08\x55\xb0\xd9\x01\x2e\x96\xbe\x98\x4e\x8a\x34\xb4\xc2\x0d\x12\xe2\x0f\xeb\xa0\x86\x5b\xc4\x0f\x24\xc3\xdb\xd1\x38\x15\x4e\x5c\x42\x61\x44\x06\x11\x9a\x2d\xc7\xb6\xcc\xe2\x9c\xac\x53\x72\x1a\x2c\x2c\x1b\xdd\x5e\x44\x1a\xae\x57\x4c\x73\xc1\xd5\x00\x24\x4f\x83\x9d\xeb\x67\xe0\x15\xdc\x5c\x5d\xd6\x32\x14\x91\x3e\x6c\x89\xf2\x8f\x66\x5c\x94\x79\xe3\xce\xa6\xb3\x7d\x43\x69\x94\x02\x85\x25\x71\xf1\x62\x1c\x3b\x73\x73\x6a\x05\xb9\x01\xc7\x24\xac\x86\x81\xcf\x4a\x3b\x3a\xdf\x51\x54\xb3\x54\x78\x28\x56\xbf\x5a\x91\xed\x93\xfa\xe3\xaf\x9c\xa5\x6f\x78\x34\xaa\x5b\x63\x72\xb2\x8c\xb6\x76\xe0\x2e\x46\x31\x5f\xb2\x4c\xb4\x0c\x98\x5c\x44\x86\xac\x61\x94\x32\x6b\x52\xee\xc2\xc7\x6a\x46\x91\x33\x03\xe4\x0e\x4a\x93\x5f\x68\x81\x76\x96\xd6\x9c\xcf\xe7\x38\x79\x81\x12\x91\xd6\x29\x72\xd2\x2d\x91\x2a\x63\xc2\xab\x9e\xb5\xa7\x33\x24\x3f\x68\xbb\x93\xac\x50\x76\x90\x89\xe9\x3f\x82\xf9\xe7\x74\x98\xc9\xd2\xac\x9b\x0f\x4c\x88\x1c\x39\x2b\x2f\x4c\xb9\x58\x48\xbf\x2d\xf7\xbb\x5e\xb4\xe0\xd0\x96\xfb\x34\xed\x58\x91\x34\xda\xd6\x0c\xec\x28\x13\xde\xe1\xc5\x1e\x7e\xe8\x01\xc0\x5e\x0f\x12\xfb\xc8\x9c\x36\x29\xf9\x01\x27\x1f\xc3\x46\xfe\x9a\x19\x91\xd3\xf1\x3b\xa4\x30\xed\xec\xe2\xd1\xef\x2d\x95\xad\x19\x33\xef\x2b\xfb\xef\x99\x76\x5a\xa2\x16\x3a\x53\xd0\x10\xa3\x59\x5e\x6d\xfb\x79\xf3\xf9\x9d\xda\xfa\x77\x8d\xeb\x3f\x32\xc7\xa8\x2f\x5e\xab\x3d\xfb\xac\xe5\xfa\x40\x8f\x2e\x67\xf5\xa9\x10\xf9\xaf\xdf\xab\xdf\x58\x50\xa2\xdd\xe7\xe5\x28\x52\x74\x02\xf1\x55\xba\x66\x27\xaa\x85\xc2\x2c\xa6\x28\x94\x2c\x5b\xba\xee\x8a\x74\x99\xb6\x2f\xf3\x61\x9b\xe6\x21\x6f\xa2\x43\x1a\x9c\x93\x1e\xad\x54\x30\x74\xdb\xd0\xc4\x1a\x68\x86\x89\x7b\x03\x1f\x69\xb8\x9d\xc8\x1d\x9a\x6a\xa6\xc5\x54\x9b\x7c\x91\xa8\x53\xcc\x47\x49\xe8\x2c\x2c\x57\x60\xa6\x4a\x2a\x53\xf8\x50\x95\x14\x0e\xa9\xdf\xbe\xef\xac\x9d\xad\xdf\x7f\x2a\x9c\xbb\x17\xd6\xea\x8f\x1f\x66\xd4\xfb\x1d\xd1\xdf\xa3\x72\x1e\xa4\xf1\xf6\x92\x2f\x79\x1b\x9d\xce\x55\xb5\xd4\x43\xd5\x20\xcc\x62\x55\x76\xb5\x8b\x84\x6c\xbc\x99\x29\x03\x2a\xed\xf0\xb9\x9d\x1b\xcf\x1b\x8f\x2f\x38\xcf\x50\x15\x0e\x2f\x7b\xf4\x8c\xdd\x5c\xc6\xd8\x85\x4f\xee\x61\xc6\xfc\x2b\x37\x6a\xdb\x2a\xd5\x4e\x3a\x29\x6f\x09\x24\x42\xd4\x4d\x44\x76\xab\x96\xdd\x85\x4f\xe1\x15\xbe\xdb\x34\x9b\xd3\xd5\x69\x4d\x9f\x26\xa3\x39\x30\x47\x61\xbf\xe1\xcd\xe5\x71\xc3\x96\x05\x1e\x7e\x98\xd2\x67\x5c\xdf\xff\x37\x5e\x7f\xf3\x8f\x47\x7a\xb4\x37\x0e\xc1\xff\x5e\x3f\x14\xad\x8b\xd8\x35\x3c\x2f\x6b\xa4\x7d\x5a\xef\x1b\x78\x8d\x02\xa7\xa7\x64\x6a\xd0\xb8\x5a\x24\xa3\x17\x9a\x2f\x09\x87\xec\x3e\x7a\x89\xb4\xfc\x9e\x67\x4c\x7b\xf5\x00\x97\xaf\xd9\xd7\xfa\x6d\x17\x36\xd5\x6e\xd1\x97\xf4\xb9\xe0\x12\x4e\x8c\xe2\x55\x60\x09\xf0\x40\xb6\x8a\x79\xfb\x35\xe2\x1a\xfb\x0f\x0f\x22\xf7\x25\x56\xd2\xf6\x2c\x66\xf6\xd7\xa3\x91\x5c\x22\xfc\xe3\x34\x1b\xef\x04\x61\x1f\xb4\xe1\x1a\x98\xa5\x1e\x92\x40\xa8\xa5\x6f\xea\x37\xd6\x1a\x8f\x3e\x41\xc3\x2a\xb1\x45\xb6\x0a\x2a\x8c\xc3\x67\xeb\x15\x8b\xfe\xe6\x3f\xfc\x23\xce\xa9\x3b\xb5\x12\xed\xa4\xcf\xaa\xfb\xdb\xd6\x02\x07\x04\x61\x6f\x60\x6d\xd4\x1d\xff\x3d\xa4\x16\x8c\x20\x1c\x12\x85\xb1\x38\xce\xcd\x31\xa6\x75\x72\xac\x94\x8f\xd7\x08\x51\x8a\x7b\x02\x66\x20\x60\xbc\x25\x61\x46\x4f\xd2\xda\x39\xbf\x44\x56\xdb\xbc\xca\xc5\x7e\xf8\xcb\xe6\xca\x03\x67\xe1\x13\xce\xe4\x4b\xe5\xc7\xbf\xe6\x5f\x15\x68\x47\x4f\x75\x49\x82\xdb\x6b\x57\x1a\x8f\xd6\x54\x5e\x7a\x47\x65\x21\x68\x47\xd5\xc2\xcf\x8e\x1a\xa7\xb5\x61\xdd\xb6\x4f\x5b\xe5\x7c\xb4\x68\x72\x73\x0d\x5d\x07\x56\xcf\x35\xee\x9f\x51\xc4\x21\x0d\x9f\xeb\x6c\x90\x1c\xb6\xa5\xf5\x0f\x0f\xb6\xde\xa3\xb6\x51\x69\xf9\x4d\xc3\x8b\xd5\x2c\x8e\x99\x25\x9f\xc3\x34\x34\x16\x5f\xa0\x4c\xc6\xfa\x4b\xd8\x3e\x6e\x7f\xc9\xfb\x99\xeb\xb9\x5d\x3e\xef\xac\xdc\x05\x20\x8d\xcd\x85\xc6\xf7\xab\x7f\x9f\xfb\x90\x6d\xef\x6d\xd8\xea\x0b\x37\x03\xc8\x76\xe6\x2e\xd4\x2f\x7d\xcb\x7d\xd2\x73\x06\x18\xa3\x9e\xe3\x77\x94\x8e\x09\x8a\x35\xed\x4f\x56\x95\x1d\x98\xf2\x9c\xec\xdd\x55\xb6\xe1\x29\x80\x17\x13\x9e\x08\x32\x8f\x75\xa4\x83\x70\xcf\x8c\x6b\x49\xe3\x04\x7f\x20\x2f\x57\x30\xca\x0a\x8e\x1c\x4c\xa1\x2f\x31\x89\xd7\x44\x44\x68\xa1\x5c\x1b\xc8\x05\x00\x3f\x46\x4f\xd9\x30\x91\xa1\x97\x5d\xf2\x4c\xa4\xd4\x0f\xb6\x4f\x1b\x03\x8e\x57\x06\xc6\x47\x45\x2b\x43\x10\xf7\x30\x61\x46\xd1\x3f\x4a\x4e\x08\x51\xc0\xe0\x16\x82\xb2\xcb\x33\x2a\x06\x8d\xa3\x11\xa3\x26\x8e\xf3\xd2\xa7\x77\x6c\x4a\xf0\x3e\x41\x9c\x4b\x04\x29\xb5\x23\xd2\x81\xe0\x1b\xa4\x80\x75\x5d\x67\x81\xa3\xb6\xad\x4a\x7b\xa2\x07\xb5\x69\x2d\x99\x11\x87\xd1\x75\x91\xc6\x9a\x0b\xc1\x43\x17\xcd\x17\xb2\xc2\x4b\xc3\x46\x38\xa2\x10\x1f\x8f\x71\x3c\x80\x6a\x3a\x66\x7c\x99\x01\xc2\x96\xa3\x42\x0c\xda\xd6\x1b\x66\xe9\x3b\x46\xae\x86\x30\x37\xa5\x17\x27\xe1\x06\x3d\x6d\x50\xc0\x6d\x5e\xc2\x90\xa5\x8d\xd3\xe0\x74\x2d\x46\xf2\x11\x46\x37\x4c\x83\x4b\x92\x8a\x39\xf5\x92\xfa\x3b\x7b\x89\x90\xd5\xc8\xe2\x20\x57\xbb\x64\xe4\xa8\x4b\x9f\x16\x36\xbb\xc9\x2e\x1e\xbc\x85\xc9\xdd\x0c\x2e\x1e\xac\xf3\xf3\xfc\xb3\xe6\x03\x78\xbb\x6e\xd6\xb6\x6f\x60\x9d\xdd\xeb\x4f\xe1\x7b\x35\x22\xf1\xf0\x53\x92\x38\xb2\x73\xf2\xc5\x68\xe4\x7b\x50\x55\x46\xa7\x2d\x18\x61\xd4\xba\x38\x03\xfd\x92\x8d\x81\x8b\x51\x7d\x72\x99\x5d\x01\xa8\x3a\xa1\x7b\x85\xb6\xb0\xb8\x37\x66\xa0\xad\xfa\xd0\xbc\x34\xbe\x21\x23\x3b\xc8\xa9\x15\x5a\xb8\x53\x0c\x03\x2e\xfa\xb0\x61\x74\x80\xf4\x0f\xc7\xeb\xa3\x3e\x9c\x2e\x8f\x22\x05\xf1\x5d\xa5\x39\x7a\x4f\x25\x3c\x0e\x21\xd4\x87\x52\xad\xf2\x62\x67\xb2\xd3\x5c\x09\x7c\x10\xb3\xcc\x93\xe7\xe7\x14\xc3\x2c\xc3\xdb\xa5\xc2\x24\x4c\xdc\xc1\x5c\xff\xa4\x70\x18\x37\x0c\x7c\x44\x4b\xaf\xe5\x54\xdd\x55\xe8\x6a\xb7\x72\x27\xa4\x47\xda\x2d\x0d\x1d\x49\x1d\xc1\x64\x4d\xd3\xe1\x0b\xa6\xaa\x8b\xdd\x02\x31\x1d\x54\x70\xb7\x5c\x76\x92\xef\x79\x65\xe7\x9c\x16\xde\x17\x86\xae\xcb\x17\x40\x12\xbe\xef\x6f\xda\x65\xaa\x43\x99\x67\x9a\x7b\x58\x76\xfd\x76\x89\x6e\x4c\x27\x66\x9b\x93\x45\x43\xbe\x95\xa3\x9a\x2a\xe0\x4b\xbe\x95\x32\x0d\x4e\x38\xdb\x28\x72\xcf\x54\xdd\x55\xe8\x6a\xab\x94\x90\x90\x1c\x59\xaf\x54\x54\x90\x7b\x65\xcb\xc0\xaa\x32\x4b\xec\x0a\xe9\x99\x52\xfd\x05\x5b\x50\xf0\xa5\x82\xea\x6a\xd4\x91\xf1\xd7\xcd\x18\xa1\x44\x1a\x59\x79\xe1\x78\xd4\x9e\x5e\xe8\x2a\x69\x45\x64\xc1\xda\xac\x55\x0d\xaa\xa9\xb9\x72\x0a\xd1\xc6\xcf\x06\x7a\x42\x54\x28\x1f\x0e\x19\xc8\xc7\x0d\xad\x5a\xc2\x52\x72\xb2\x02\x7d\xb5\xed\xfb\x5e\x05\x13\x91\xc7\x86\x7c\x30\xf8\x48\x88\x2a\xed\x8b\xb7\x9d\x8b\xdf\x70\x72\x9b\xda\xd6\xdd\xda\xfa\xc5\xda\xd6\x7d\x96\x6a\x50\xc3\xbc\xf2\x54\x69\x58\x15\xad\xc0\x3e\x2e\x66\xb1\xf5\x7a\xdf\x7f\x90\xd4\x65\x41\x2e\x06\xed\xb0\x91\x44\x83\x7b\x17\x66\x98\xbd\x7e\x80\xca\xe6\xea\x13\x3f\xef\x6d\x03\x58\xff\x7c\x59\xd9\x3f\x08\x88\x36\xf6\xb1\xc9\x16\x4d\x00\x15\x2a\x0a\x68\x4d\xb3\x65\x40\x72\x94\x12\xf5\x4a\x4e\x85\x97\x34\xc6\xd3\x7e\x47\x4f\x8d\x1b\x45\xab\x80\x67\xe8\x9f\xa3\xbd\x75\xa8\xce\x9e\x0a\xcc\x91\x43\x5a\xff\x81\x23\x83\xd1\xb5\x3c\x45\x2d\xe5\x95\x07\x8d\x6b\xe7\x9c\x8f\x6f\xab\xe2\x38\x76\x60\x70\x6c\x68\x24\x06\x8b\xb3\x82\xfa\x7d\x45\x14\x47\xfa\x8f\xf6\x1f\x1a\x88\x43\xc1\x03\x51\x43\x11\x9d\x5e\x4d\xf9\x31\x31\x24\x71\xe5\xcd\x02\x54\xf8\xcc\x5b\xc5\x0a\x69\x6b\x7c\x5e\xc0\x3e\x96\x15\x89\x39\x3d\x80\x54\xb4\x05\x74\xa7\xae\x9e\x93\xcb\x77\xc6\x4c\x86\xbf\xa7\xf3\xe4\xa7\xc6\xe6\xa2\xf3\xf8\xb6\xb3\xa4\x12\x53\xd7\x41\x48\x30\x0b\x04\xaa\x22\x84\xa7\x4a\x4b\xff\x9a\x82\x3a\xac\x86\x4c\xa4\xd5\x17\x6e\x8a\xd2\xe4\x94\x59\xa4\xfb\x94\x4a\xd2\x56\x46\x53\xa5\x46\x46\xb4\xb5\x8c\x51\xa9\x58\xcb\x86\x92\x44\x19\x85\x37\x4a\x8e\x83\x7d\xd8\x0c\xae\x09\x8b\x45\x5d\xd9\xa2\xed\x7a\x42\x7a\x6e\x47\xd1\xd7\xf2\xf3\x95\xfa\xf5\xa7\xb9\x09\xbf\x5b\x24\x77\xee\xc3\x98\x70\x8c\x32\x7d\xb2\xea\x3c\x3b\xfb\xdb\xd6\x42\x73\x75\x99\x3f\xef\x6c\xde\x6e\xae\x3c\xac\xad\x6f\xfc\xb6\xfd\xc5\xde\xbe\x9c\x62\x92\xb9\x48\xda\x45\x06\x93\xc4\x43\x50\x07\x94\x9e\x56\x5f\xa9\xd4\x36\x77\x40\xf2\xf8\x62\x46\xe2\xaf\x4e\xad\x4f\x54\x8c\x72\xbb\x6f\x61\x09\xab\xda\x46\xb3\x84\x5d\xc6\x96\x78\xd4\xc3\xba\x99\x0f\x58\xb9\xa3\x49\x96\x35\x4d\x81\xcf\xb6\x39\x26\x1a\x08\xe6\x74\xf9\x14\x65\xdb\xaa\x08\xae\xfb\x15\x3f\x1d\x15\xc0\xf9\xdd\x20\xa1\xb1\xbb\xe0\xbb\x3a\x2e\xdf\x93\x6c\x37\xc6\x95\x06\x7c\xaa\x71\x49\xed\xf6\xca\x16\x7b\x17\xb2\x06\x27\x01\x7a\x88\x3d\xef\x5d\x0f\x54\xc1\x3e\x06\xab\xc8\xe1\x04\xf7\xc2\xe5\xa7\xc0\xdc\x94\x88\x60\x76\x82\xb6\x1c\x8f\x79\xe0\xf5\x29\x4f\x11\xeb\x0f\xac\xfb\x6c\x05\xe4\x7f\xb8\x28\xff\x66\x96\x9c\xab\x97\x1a\x5b\xdf\x32\x83\x65\x36\x9a\xde\xbe\xe9\x52\x14\xa0\x06\x60\xcb\x29\xf2\x53\x11\x8b\x3f\xd9\x94\xc4\x7a\xc6\x76\x66\x33\xf5\x6e\x12\x15\xb4\x46\x19\x93\x75\xe2\x3e\x36\x91\x9d\x89\x0c\x73\xc4\xea\x61\xcb\x4f\x63\x2a\xd7\xd3\x53\x06\x3b\xd2\xb2\x72\xda\xf5\xbc\x2d\xb8\x02\x18\x4e\x15\xec\x1d\x89\xb7\xc0\xae\x20\x49\x3e\x46\xb4\xa4\xb7\x89\x6a\x13\x22\x4a\x3a\xca\xce\x2f\xf5\x7c\x50\x07\x96\x8e\xe6\x16\x3c\x9f\x87\x42\x2b\x8d\x6e\x8c\x42\x2c\x98\xa6\x8f\x9d\xa0\xc2\x20\x76\x95\xba\x29\x1d\x27\x26\xc4\xb7\x0b\xb7\x36\x3b\x7e\x45\x53\x1c\x43\xa8\x50\xf1\xf9\x5d\xef\x17\x57\x95\x0b\xb4\x23\xdc\x7d\xa1\x83\x90\xae\x7d\x5c\x97\x14\xf8\xc9\x59\x3d\x37\x65\x59\x76\xcb\x57\xbd\x50\xb0\x4e\xe3\x56\x47\x5f\x15\xfc\xdc\xa7\xbd\x65\x01\x63\x60\x43\x33\xfa\xdb\x50\xb1\x7e\x3c\x33\x15\xf4\xb7\x84\x59\x1d\x47\xe9\xcc\xb6\x0d\xcf\x31\xde\x46\x47\x77\x11\x66\x21\xf3\xe0\x79\xb1\xe8\xd3\xce\x4b\xde\x2a\xee\x91\xe4\xe8\x5e\x7d\x82\x59\x9a\xbf\x56\xba\x01\x19\x01\x6b\xa4\x34\x7d\x52\x97\x04\xa3\x01\x9e\x9d\xf3\x57\xd0\x49\x4e\x55\xdf\x34\x1c\x8c\x49\xa0\x19\x22\xbd\xff\x69\x13\xf5\x7c\x6e\x30\x77\xab\xfe\x95\x78\x3f\xa3\x48\x91\xf2\x09\xbe\x9b\xa8\x52\x8c\x97\x5e\x06\x52\x87\x46\xd1\x26\xd2\x2f\x50\x7e\x53\xb7\x3a\xb7\x32\xf0\x86\xbe\x72\x93\xe0\x4f\x0c\xa2\x1b\xe4\xf9\x5c\xb4\xc8\x39\x4d\x89\xc0\x68\x20\x69\xd7\x08\xc3\xd9\x08\x47\x5e\x3b\xf1\x4a\x20\xbc\xed\xc4\x2b\x6d\x3a\x16\x2f\xb6\x06\x6d\x54\xc2\x1b\x97\xba\xca\x18\xcc\x6e\x20\x49\x3f\x46\x2a\x79\x01\xd8\xc5\xcd\x34\x6e\x16\x75\x74\x7d\xf7\x02\xc1\xf0\xf2\x26\xc5\xfc\xd0\xe8\xbe\xe8\x18\xab\xac\xe0\xd2\xd2\xdd\xbe\xea\x81\x68\xae\x6a\xd1\x74\x43\x82\x63\xe7\x3f\x74\x0f\x45\x41\x53\xde\xee\xed\x08\x66\xe0\x8b\xe3\xf0\x62\x32\xa9\x80\x5f\x00\x5d\x72\xd2\xa5\x54\x87\x81\x49\x4c\x74\x19\x5d\x0e\xd1\xb9\xd8\xad\x88\x92\x37\xf5\xc9\xa2\x65\x57\xcc\x1c\x49\x2a\x76\x25\x2f\x0b\x1f\xc6\x80\xa3\x2b\x6b\xd0\xdf\x2d\x91\x72\xb1\x7e\xf3\x31\xc7\xb5\xa2\x21\xfb\xfe\x79\xe7\xfc\x39\xae\x22\xa1\xb2\x01\x88\x38\xcc\x61\xa6\x6b\x05\xd2\x2a\x4e\x08\x3b\x11\xde\x56\xc1\x07\x0a\x07\x57\x16\x2b\xe4\x1c\x87\x11\x9b\xae\x2f\x5a\x4e\xfe\x6e\xe1\x01\xf0\xeb\xa5\xb6\x7e\xc9\x4b\x6b\x52\x5f\x9f\x77\xae\xa0\xfd\x05\x9e\x34\xcd\xb9\xf9\xc6\x85\xa7\xce\xca\x5d\xef\x91\xa1\x6c\x28\xe2\x21\x21\xb1\x33\xbc\x27\xe2\x08\xbb\xb0\x50\x5f\xfa\xc1\x59\x54\x29\xe5\x33\x5c\xb6\xe0\x18\x4e\xb7\x5c\x8f\xf3\xd6\xe9\x22\x5b\xd0\xdc\xc3\x8a\x57\xa1\x31\xed\x7b\x79\xca\xce\x7d\x46\x70\x69\xe8\xa6\x64\x6a\x61\x69\xda\x5a\x81\x8f\xad\x1c\x90\x63\x68\x8b\x9a\x30\xf4\x4a\xb5\x2c\xe2\x23\x41\xa2\x29\x4e\x62\x9c\x4b\xb5\x84\x95\x0e\xd0\x96\x28\x24\x02\x22\x1e\x5a\x55\xd8\x61\x19\xf9\x15\x4a\x3d\x12\x4f\x2c\xda\x07\x18\xc3\xbd\x74\x21\x84\x1e\xf4\x8d\x87\xd7\xff\xb9\x2b\xf5\xeb\xab\xf5\xcb\x67\x30\x98\xf1\xe2\xbd\xe6\x47\xdb\xf0\x3d\x9c\x08\x67\xe1\xfe\xce\x9d\x87\xce\xca\x47\xb0\x8f\xa0\x4d\x73\x15\x00\xcd\xd5\x7f\x50\xb1\xd1\x0c\xb3\x28\x23\x49\x45\x4b\x56\x64\xd8\xaa\x2a\xc0\xab\xe5\x49\x7f\x75\xc2\xf6\xd7\x9b\x34\xe4\x7e\x7d\xbe\x71\x4d\xc4\x9c\x48\xfb\xa5\xa0\xc6\x9e\xc2\xac\xf7\xc6\x69\xd2\x8a\xa0\x57\x23\x66\xfa\x76\xbd\x49\x29\x08\x86\xef\x49\x91\xbe\x24\x4e\x41\xc0\x81\x1d\x7e\xa3\xf0\xc2\x4d\xe7\xda\xe5\xfa\xe3\x65\xf6\x27\x75\x9e\xfc\xc4\x7a\xfd\xb6\x66\xea\xb4\x63\xb6\x00\xae\xdf\xa2\xbd\x8a\x22\x27\x0e\x02\xff\x65\x5e\xe6\x6e\xdd\xd7\xf6\x49\x4a\xd3\x88\xc2\x2c\xb8\xf7\xe6\xfc\x44\xfd\xb6\xb5\xe0\xac\x7f\x0d\x23\xc0\x7d\xb7\xfe\x75\xa7\x0e\xe4\xb7\xad\x0b\xfb\x94\xaa\xd8\x50\x8e\x69\xed\x00\x3a\x0d\x50\x4a\x4a\xaf\xa2\x5f\x3a\x5b\x93\x2a\x98\x94\x74\xe2\x36\x20\x5f\x1a\x37\x7a\x01\xf6\x0b\x5c\x86\x6e\xcc\x37\x3a\x63\x62\xc9\x1d\x91\x19\x8b\xec\xd5\x16\xa5\x3c\x44\x85\x77\xb5\x50\xe1\x4b\x84\x20\x90\xa2\x12\xee\x0c\x57\xa5\x4f\x59\x87\xa2\xe3\xd0\x5e\x38\xfe\xee\xce\x0c\x3f\x84\x5e\xe6\xdc\x74\x97\x82\x94\xb3\xd3\xb6\x1b\x13\xbe\x93\x52\xf5\x4d\x4c\xd1\xc8\xc0\xbf\x1c\x1b\x18\x1d\x8b\x36\x0c\xb2\x54\xa5\x62\x18\x1c\x19\x18\x1d\x1e\x3a\x3a\x2a\x0b\xd1\xa3\xa2\x07\x4a\xb0\x87\x0e\x0f\x8c\xca\x78\x17\x17\xa4\x50\xe3\x42\x23\x43\xc7\xc6\x06\xa2\x7d\x05\x9a\x4f\x56\x1b\xd7\x7f\x54\x81\x6b\xe8\x28\x2c\xe7\x0d\x34\x54\xc1\xf1\x2c\xc1\x75\x82\xf9\x3b\xc9\xc9\xf8\x9f\xf8\x66\x9f\x2e\xc9\xd2\x6e\x2b\x40\x50\xa4\x4e\x68\x50\x8f\x58\xf0\xf7\xd8\x6c\x09\xf7\x9a\xfb\xa7\xcb\x44\x41\x7a\x31\x40\x84\x9c\x65\x0f\x29\x38\x29\x56\xce\xa4\xc3\x45\xd7\x8d\x59\xf9\xa7\x68\x4d\xfd\x83\x15\x10\x65\x59\x34\x91\x22\xc1\x74\x01\x8b\x17\x45\xce\xbc\xcf\xd6\x9d\xf9\x9f\xb9\xe2\xa1\xf3\xc9\x65\xf7\xa6\xb9\xb7\xfb\x43\xed\xc2\x40\x32\xd1\x29\x54\xb5\x3e\x99\xc8\xcd\x9f\x1e\x48\xa3\xcb\x11\xbb\x6e\xa4\xda\x50\x21\xdf\xa9\x10\x06\x5e\x88\x11\x5d\xc6\xe9\x8e\x9f\xfe\x09\x4b\x80\xfd\x41\xf2\x48\xf9\xf0\x1b\x1e\x6c\xf3\xeb\x33\x5e\x80\x6f\x0c\x41\x5e\x09\x66\x4f\x8b\x1c\x46\x94\x17\x0a\xec\xb5\x0a\xa3\x0f\x26\xb0\x9d\xc2\xb4\xd3\x58\x02\x11\xd3\xe8\x70\xc2\xee\xb4\x13\xd0\x34\xee\x2f\x58\xd5\xbc\x76\x10\x45\xfd\xf2\x6c\xdc\x06\x80\x39\x81\xb1\x06\xba\xe0\x2b\x4e\x22\x96\x3a\xd7\x6e\xfd\x93\xd2\x48\x72\x86\x39\x43\xea\xdd\x56\xb1\x9c\x1c\x3c\x06\xd8\x78\x28\xb2\x02\x45\x2f\xe2\xd5\xe5\xfa\xf5\x5f\xf1\x55\xec\x9a\x23\xbc\xb2\x38\x3d\x1a\x8c\x40\xe9\xad\x34\x82\xde\xac\x36\x50\x55\x98\x75\xdf\x36\x7a\x2b\x39\x1c\x30\x89\xdc\x94\x59\x00\x69\x64\xfc\x2f\xf0\x20\xb3\x43\x66\x97\xf2\xf1\x8f\xe3\xd3\xc8\x95\x4f\xa7\x75\x4a\x04\x25\xf4\x01\x2c\x6f\xb7\x39\xe2\x47\x3b\x7a\xac\x5f\x69\x6c\x82\x28\x7a\x9e\x2f\x2e\x9e\x7e\x2e\x71\x03\x4f\xa0\x9d\xb9\x4f\x9c\xed\x4f\x9c\xa5\xb5\xb0\xf5\x62\xd6\xb2\xf1\x29\x3c\xb5\xf8\x48\xfb\xe3\xd6\x9d\xd5\xa7\xcd\x1f\x1f\x00\xe3\x71\x1e\x5f\xe3\xcf\x4a\x73\x25\xe6\xa7\xd4\xd2\xc7\x71\x4a\x2b\x09\xcb\x8f\xef\x92\x1e\xbf\x48\xb3\x89\x55\x9e\x44\x71\x47\x74\xd7\x8d\xbe\xa8\x69\x3a\x84\x43\x2e\x3c\x52\x7c\x79\x6f\xf9\xa2\xcd\x42\x4b\xb5\x2c\x52\x28\x0b\x52\x8a\xd2\x07\x55\xd2\x6e\xa9\xe9\xa0\x64\xe2\xbe\x20\x58\x56\xc0\xc3\x3e\x8c\x25\x25\x41\xcf\xd4\xd4\x14\x03\x2e\xd3\x31\x0b\xc3\xfb\xd4\xef\x20\x9d\x09\x33\x3e\x1c\x94\xb7\x86\x9b\xe8\x36\xf3\xd6\x68\x77\xdc\x47\x46\x7d\x5c\x2f\xfb\x99\x74\x7b\xf4\xe9\x2e\x96\xd1\x8f\xa8\x80\xce\x83\x4f\x5c\x43\x5f\x12\xf9\xea\x5f\x3d\xff\x48\xd5\x14\x18\xde\x0c\x96\x03\x85\xdc\x78\xda\x28\x23\xe3\xfb\x6e\xa9\x6b\x1e\x49\x17\x8a\x8b\xcb\xa6\x8f\x27\x4a\x08\xe5\x29\xaa\xc9\x7f\xf0\x81\x50\x7e\x46\x15\x1a\xf7\x6f\xbf\xb6\x21\x79\x3b\xd0\x1b\xfe\xcb\x9d\xcb\x5d\x9c\x32\x98\x88\xf7\xdb\x4b\x97\xbf\xd8\x99\xa9\xb2\x7c\x4a\x45\xf7\xba\x75\x38\x93\x15\xed\x7f\x39\x44\x64\x9d\xa3\x04\x2b\x4f\xcf\xcc\xf0\x0e\x29\xb0\x93\xc9\x49\x0f\xcb\x13\xdb\xae\xed\x3b\x7f\xc5\xf9\x78\xdb\xb9\x76\x45\x9e\x52\x36\x21\xbe\x84\xd2\x5a\x6c\x7b\x75\xcc\x66\x5c\x2d\x57\x6f\xc0\x19\x93\xf6\xb7\x30\x4b\x63\x02\x3d\x74\xca\x01\x71\x2e\x22\xb9\x80\xe4\xe1\x61\xa9\x20\xa3\x36\xb9\x85\x53\x96\xb4\xbc\x0d\xa7\x72\xe0\x03\x61\x13\x2a\xf5\xe0\xb9\xf5\x5e\xae\xbb\xcb\x4c\x3c\x76\xd9\x6a\x0e\xaf\xdd\xce\x0b\x5e\x8b\xba\xe1\xdb\xf4\xf7\xfe\x31\xf8\x26\x69\xc3\x3f\x96\x0c\x27\x1b\xa7\xaa\x95\xaf\x91\x1f\xd8\x6f\xb9\x7f\xb7\xcf\x5c\xdb\x0f\xb2\x69\xf0\x48\x8d\x85\x0e\x8f\xc9\x04\xe0\xd3\x8f\xaa\x63\x71\xdb\x37\x40\x9a\x55\x6d\x1d\xbd\xce\x20\x94\x85\x35\x3f\x58\x58\x9a\x90\x2d\x90\x71\x2c\x41\xde\x26\x26\x32\xe1\xb0\xe4\x9c\xb3\x7b\xd0\xd5\x47\xd5\xa1\x3f\x69\x57\x32\xed\xba\x6c\x1e\xa2\x8f\x8a\x3a\x71\x81\x9f\x29\xb4\x71\x59\x70\xff\x1f\xbf\xa8\x6d\x5c\x4d\x7a\xd0\xe1\x94\xb7\x13\xc8\xdb\x26\xeb\x4e\x71\x67\x03\x15\x65\xbe\x09\x69\x4d\xa9\xef\xcb\xb0\x09\x4d\x39\x73\x6d\x77\x52\x02\xc9\xdc\x17\x89\xf4\x18\xe6\xbd\x83\xd4\x90\x29\x6f\xfd\xa8\x3a\x3b\x25\x4b\xee\xc2\x16\xd2\x22\x3d\x74\xad\x57\xa3\xfa\x02\x6e\x8d\x2d\x92\x1f\xff\x82\xa9\xca\xc8\x36\x94\x48\x55\xa3\x0e\x2a\x15\xbd\xdc\x59\xe2\x28\x11\xde\x28\x05\x0e\x8c\xa3\x48\x22\x69\xd4\x6f\xae\x35\xbf\x9a\x6f\x6e\x6f\x77\x49\xd8\x70\xe3\x37\x5e\xfa\xcb\x1e\xdd\x25\xc2\xb6\x7d\xd4\xbd\x5f\xf6\x48\x8f\xba\xfe\x55\x37\x3f\x87\x46\x25\x5a\x0a\x4e\x8c\xda\xbd\xa5\x28\x93\x7b\x83\x97\x89\xf6\x7d\x7f\x89\x57\x91\x93\xde\x0b\xd4\x0a\xac\x56\x8a\x5b\x6c\x77\xd0\xa4\x18\x67\xa5\x6c\x1a\xac\xf7\x32\x8b\x79\x73\xc6\xcc\x57\xf5\x82\xe7\xcb\x83\xbe\xd6\x6c\xcf\xe2\xe2\xfe\x92\x81\x28\xc2\x51\xa1\x94\xea\x7c\x97\x0a\x18\xfb\x3e\x65\x68\x43\xfd\x5e\x05\x16\x2f\xf8\xc1\x2b\x42\x87\x81\xaf\x12\x17\xaf\xee\x00\xcd\x3e\x86\x49\x73\xc6\xa0\x1d\xbe\xc7\xd6\x26\xab\x66\xbe\x4f\xd3\xfa\x31\x69\x23\x79\x9d\x4e\x19\x7a\x01\x88\xa1\xf4\x67\x34\x7b\xe8\x90\x57\xaa\xb6\x42\x3d\x28\xd9\xba\x4d\xbe\x56\x70\x0e\x6d\x99\x37\xe3\x4b\xa0\xa0\x5b\xb3\x03\xfc\x2f\x8c\xb6\x36\x4a\x90\x4b\x76\x67\x2e\xb2\xe3\xeb\xd6\xc8\x85\xa8\x99\x80\x1a\xef\xf1\xdf\x95\x19\xe8\x1e\xde\xae\xcd\x04\x5e\x3a\x49\xe8\xa1\x8b\xb1\x4b\xb3\xd0\x15\x9c\xe9\x67\xc0\xf3\xb7\xf5\xf1\x50\xdb\xcf\x44\xf1\x47\x43\xcf\x71\x44\x4c\x2f\x3b\x7c\x73\xdb\xf8\xa1\x76\x05\x78\xfa\x31\xb5\xfb\x08\x53\x01\x0b\xf5\x50\xdf\xae\xc1\xed\xce\x48\x32\x04\xf7\x76\x0d\x6e\xda\x91\xd0\xb3\xcb\x5b\x71\xb4\xe5\xe1\x82\x63\x1a\x1d\xb1\xdc\x76\x4a\x6d\x74\x57\xa0\x66\x1b\x05\xc0\x3d\xc8\x68\x0e\x02\xd6\xd4\xfa\xf4\xcc\x10\x55\xa8\x57\xdb\xc1\xaa\x23\xdb\x0d\x6c\xdd\x1a\x75\xfc\x6e\xef\xe6\xa8\xb3\x62\x4b\x3e\x6a\xd7\xfe\xf1\xb6\x65\x57\xc4\x93\x08\xfe\x3a\x40\xf9\x88\xfd\xee\x8c\x72\x37\x48\x55\x30\xdd\xa7\x33\xde\x65\x33\x0b\xa8\xf4\xf4\xb2\xd9\x2b\xa1\x8b\x74\xc2\x5e\xe9\xa8\x88\x41\xa7\x04\xb7\x5a\x90\x81\x0d\xfe\x9a\x02\x2a\x1f\xf5\x01\xdf\xa6\x3f\xee\x6e\xfa\x43\x94\x5e\x34\xda\x6b\x35\x5d\xe7\xc4\x34\x8d\x0e\xec\x3f\x36\x32\x38\xf6\x27\xed\xd0\xc8\xd0\xb1\xe1\x48\xec\x51\xcd\x52\xe0\x19\x39\x3e\xb8\x7f\x20\x26\x6b\x18\x6b\x45\xb3\x64\x0d\x13\x78\xa2\xfd\x68\x95\x73\x8c\x8e\x0e\xf7\xc7\xd2\x1f\xda\x26\x2d\x86\xb8\x9c\x67\xa4\x0a\x52\xce\x79\xc6\x48\x0e\x0c\x1c\x1f\x38\x3c\x34\x2c\xcb\x7b\xc6\x68\xb6\xe6\x9c\xc5\x8f\xd5\x82\x6b\x18\x53\x6c\x7e\x35\xc2\xc3\x4b\x9e\x01\x8f\x24\xc9\x9a\xaa\xe1\x73\x34\xa7\x17\x7e\x17\x5a\xc1\xda\xd6\x7a\x63\xeb\xdb\xe4\x5a\x41\x89\x35\x50\xed\x12\x1d\x75\x53\x87\xc6\x31\x29\x67\xe5\x82\x33\x8f\xfa\x4b\x25\x56\x14\x4c\x50\x0a\x64\xbb\x29\x4b\x4f\xd2\x37\xc9\x6f\xc0\x0c\x90\xba\x49\x2d\x7c\x47\x85\x5f\x4f\x4e\xc7\x16\x56\xca\x08\x2d\x05\xd5\x54\x58\xc5\x75\xc5\x7c\x15\x1e\xd1\xf4\x68\x06\x41\x0c\x73\x5b\x61\xdc\xeb\x29\xb3\xf4\x5a\xf4\x0a\x73\xde\x75\x61\x70\x17\x39\x86\x17\x30\x59\xdd\xe5\x0b\xce\x67\x5f\x34\xb7\xbf\x6e\x6c\x3e\x6a\x6c\x3e\xc6\x58\xac\x0c\xe4\xf1\x01\xcb\x48\x9d\x48\x1f\xdf\x4d\xea\xa8\x88\x18\xad\x42\x8f\xfb\x4c\xc1\xb2\xa8\xfb\xb4\x3f\xbe\xfe\x87\x7d\x5a\x3f\xd7\x7e\x31\x6d\x2d\x6f\x14\x4d\x0c\xbe\xa4\xc2\x33\x79\x8b\x36\x1a\xa5\x78\x2d\x95\xcd\x19\xb3\x60\x88\x70\x3e\xe3\x3d\x58\x64\x8a\x05\x30\xed\xf8\x74\x1d\x2f\x1a\x7d\x37\xe6\x05\x36\xed\x40\xb9\x3c\x4a\x5f\xed\x87\x6f\x3e\xf8\xa0\x87\xdb\x05\x7e\xef\x2f\x99\x03\xf8\xa5\xdb\x62\xda\x57\x66\x0c\x7e\x08\xb8\xf7\xc7\x5c\xec\xce\x9d\x6f\x76\xae\xdf\x69\xae\xae\xfe\xb6\x75\xb9\x71\xf1\xd7\xfa\xdc\x99\xda\xe6\x57\x8d\xfb\x67\xc2\x49\xe1\xa6\xc1\x16\xed\xc4\x70\x50\x77\x0c\x2d\xa9\xe6\x0a\x55\x76\xa4\xe8\x1e\x23\x45\x37\x00\x3e\xac\x8f\x1b\x05\x3e\xe3\x6e\xbc\x6b\x8a\x84\x8d\x5d\x81\x99\x7a\x04\x6f\x79\x96\xff\xd0\x37\x45\x3c\xb9\xc9\x01\xa4\xa6\xcd\xb5\xe4\xb8\xb9\x38\xc9\x5f\xd2\xcd\x58\x1d\x49\x58\x6d\xfd\x4a\xfd\xf6\x6a\x5b\x02\xe8\x8c\x6e\x5a\xa3\x6d\x7e\x61\xfb\x3a\x3c\x17\xe2\x36\x34\x61\x96\x75\x4b\x4d\x8b\x17\x84\x12\x9c\xf0\x13\xc5\xb1\xc1\xe1\x7d\xda\x20\x25\xa9\xa6\x4c\x3f\x95\xf2\x2c\x3d\xe0\x2d\x11\xc5\xa2\x6b\x33\x6f\x74\x84\xb2\xf4\x50\x73\xaa\xae\x85\x95\x9a\xf0\x75\xdf\x5b\x22\xc5\x93\x24\x76\x9a\xe3\x23\xdc\xb4\xa2\x27\x8a\xce\xda\x62\xf3\x97\x5f\x9c\xaf\xbe\xdf\xa7\x39\x5f\x7f\x58\xff\x62\xa9\xb6\x7d\xbf\xfe\xd1\xcf\x1c\xcc\xc2\xfc\x7c\xe6\x0d\x6f\x35\x38\x3b\x34\xe7\xe2\xee\x2d\x79\x35\x73\xba\x31\x25\x5e\x8d\xe1\xd8\xed\x2b\xeb\x92\x1a\x7f\x87\x3b\x4b\xd2\xc3\x14\xee\x82\x92\x25\x61\xab\x00\xe4\xdf\x71\x69\x18\x30\x47\x64\x27\xe8\x9d\x96\xa0\xe8\xf7\x78\x67\x83\xd4\xb0\xa3\x45\x0a\x1e\x95\x9a\xb8\x50\x69\x8f\xa8\xe0\xea\x55\x72\xa3\x7a\x6d\x7d\xa3\xd3\x96\xce\x7b\x3d\x63\xac\x05\x12\x04\xf8\x67\x4c\xe3\x74\x2b\xd1\x93\x89\x21\x2d\x91\xc4\x30\x5e\x94\xa0\xee\x2d\x37\x96\x2e\x79\x75\xaa\xb0\x46\xe2\xf6\xc7\x8d\xcd\x25\x2e\xe8\x9f\x95\x98\xa9\x56\x0d\x8c\x40\x41\xa7\xd4\x74\x65\xaf\xc1\x04\x74\x89\xf4\x0a\xfe\xd8\x1a\xf2\x84\x1a\x10\x7f\xc6\xfa\x85\x79\x15\x24\x99\x4c\x58\x51\x49\xf7\xd4\x94\x05\x36\x14\xa6\xe6\xf0\xa2\x36\x28\xcd\xbe\xf8\xe6\xb8\x5e\xa8\x1a\x9c\x38\xa4\xb3\x60\xda\x2e\x3e\x61\x6b\xdb\x4b\x7e\x77\xc6\x40\x3f\xb1\x8b\xbb\xf1\x90\x6d\x8b\x5d\x09\x4e\x03\x10\xd0\x36\x0b\xd9\x66\xfc\xaf\x61\x41\xf0\x15\x2b\xca\x11\x4e\xd9\xe9\x17\x27\xae\x63\x72\x78\xd2\xb8\xfa\x6f\x90\x84\x6c\x83\xea\x92\xe1\x26\x2b\xb8\xd4\x74\xbf\x00\x93\xcd\x6e\xa2\xea\xca\x78\xbb\x6c\xac\xd9\x4d\x54\xc9\xc7\x3b\x65\x9d\x6e\x65\x90\x09\x56\xab\x89\xa6\x3c\x51\xa7\x94\x34\x14\x0a\x6d\x95\x63\x12\xdc\xda\xf5\xdb\xcf\x1a\x0f\x37\x02\xb9\x76\x38\x7f\x40\xc6\x2b\x1b\x09\x9a\x32\x0a\xb1\x88\xd7\x57\x9c\x8b\xdf\xaa\x22\x20\x6f\x9a\xe2\x84\x15\x7d\xa7\xfd\x78\x03\x90\x88\xa8\x2f\x7a\x0f\x67\x41\x85\xaf\x31\x5b\x1b\x9f\xa5\xd0\x36\x89\x2e\x07\x8b\x93\x70\xc4\x18\xe2\xbf\xba\x26\x4a\x71\x00\xe7\x27\xd6\xa9\x4a\x02\xe5\x2a\xc8\x1b\x15\xdd\x2c\x88\xa5\xc5\xfc\xde\x15\x33\x57\x2d\xe8\xe5\x8e\xe7\x8d\x7c\xeb\xa9\xc2\x4a\x47\x31\xdf\x3f\xd2\x15\x8a\x6c\x97\x0e\x53\xd9\xc8\x51\xa6\x7b\x90\x17\xb8\xde\x6a\x9a\x0d\xbf\x34\xd7\x7c\xfe\x71\x96\x72\xaa\x44\x42\x7b\x24\x95\x7c\xdc\x4c\x86\xff\xa9\x8c\x04\x64\xda\xa2\xc2\xa3\x28\x1e\xab\x08\x48\xef\x02\xb2\xa4\x0b\x1c\xdd\x5a\x05\xab\xf2\x39\x64\x93\x4d\xc6\x73\x88\x97\x8a\xe7\xdb\x99\xd3\x0b\x86\x70\xba\x7d\xb9\xb6\x16\xb1\xb2\xdd\x88\xad\xf6\x8a\x36\x69\xea\x17\x22\x4e\x52\xa7\x1b\x68\x77\x44\xfa\x64\xb2\x41\x9b\x3c\xdf\xea\x94\x6a\xa6\x64\xd3\x74\x66\xd9\xd9\x78\xc2\xba\x5a\xc5\x89\x92\x3e\x15\xdb\x7e\x4d\x07\x55\xeb\x52\x6e\xb8\x6c\xc0\x54\x68\x8e\xd6\x68\x84\x37\x4a\x89\x23\x53\xa1\x28\x15\x10\x29\xe9\x6b\xdf\xf1\x09\xcb\x45\x85\x6d\xdd\x6c\x05\xa3\x08\x92\xa4\x02\x12\x87\x40\x29\x01\xc6\x34\xaf\xb3\x24\x71\x60\x7e\x76\x51\x3a\x83\x93\xcd\x01\xf4\x3e\xd4\xe4\xd2\x4f\xa8\x46\xf4\x0a\x94\xf7\x78\x59\x18\xb9\x39\x9a\x7e\x44\x7a\x3a\xac\xe6\x23\x18\xf2\x69\xab\x4c\xc9\x70\xbc\x84\xa6\x92\xc7\x43\x2c\x1d\x51\x84\x04\xf1\x23\xfa\xb2\x65\x55\xfc\xe9\x6d\x3b\x2b\xf3\x78\x85\x77\xf2\x11\x29\xa1\xa5\x59\x7f\x47\x2b\x3a\x17\x9d\xc0\xf4\xd2\xaf\x52\xe1\x16\xf8\x1b\xd3\x69\xa3\xa1\xb1\x17\xc3\x4e\xc5\xb4\x70\x95\xcb\x1e\x20\xca\xcd\xd5\x87\x46\xc9\x92\x51\xd6\xf9\xb5\x2b\x7e\xe6\x3d\x0c\x3f\xc1\xb3\x10\xe9\xb4\xa3\x33\x04\x3a\xf7\xcf\xd5\xef\x2f\x70\x49\x43\xcc\x65\x49\x7f\xd6\x6f\xaf\xb2\xb2\x6f\xe7\xcb\xb3\xce\xfc\x42\xfd\x8b\xb3\xce\xe6\x86\x97\x8b\x97\xcb\x64\x62\x50\xd0\xe5\xf9\xfa\xa5\x1f\x44\x62\xa0\x4f\xaf\x00\x4f\x6e\xfd\xb4\xb8\x5a\xdb\x5c\x46\xfe\xfc\xf9\x72\xf3\xf9\xb5\xe6\x83\xcb\xc1\xa4\x99\x2a\xc5\xa3\x46\xc5\x9b\x4f\xc9\x51\x29\x5d\xe7\x34\x34\xc5\x07\x24\x71\x28\x52\xc6\x20\x24\x81\x09\xee\x57\xac\xec\x68\x55\x2b\x27\x8a\xc2\x34\x12\x52\x9d\x17\xb7\xfb\xb4\x55\x66\x79\xb1\x3c\x2d\xe7\x7b\x9d\xe4\x35\x7f\x9d\xaf\xdf\xfa\x15\x11\xf8\x2c\x20\x61\x25\x7b\x61\x8d\x9b\x57\x9f\x38\x8b\x37\xeb\x9f\xfd\xe2\x3c\xbc\xab\x2e\x74\xd2\xe0\xaa\xc5\x56\x22\xed\x2e\x8f\x0e\x8d\x68\x0b\xd7\x9c\x8b\xf7\x5e\xf4\xa0\x5e\xb0\xab\x8e\x4c\xcf\xc9\x33\xf1\x32\x1d\x76\x70\x42\xaa\x25\xd7\xa8\xdf\xc3\x96\x39\x4b\x2b\x56\x0b\x05\xfc\xb7\x6c\x88\x2f\xdc\xdc\xa2\x1c\xee\x27\x9a\xc7\xed\xdf\x8f\xb7\x6b\x9b\x0f\xd1\x06\xe7\x6a\xb7\x11\x2c\xf3\xa1\x9d\xf3\x57\xf8\x2b\xae\x62\xe7\xef\xa0\x36\x0c\x49\xad\x98\xb6\x5f\x53\x41\xad\xda\x6c\xa1\x42\x10\x32\xb7\x1c\x49\xd3\x14\xf8\xac\x52\x2c\xe3\x3a\xb3\x54\x7f\xfc\x65\x57\x62\x28\x11\x5d\xe9\xf7\x74\x18\x68\x68\xa1\xa1\xdc\x2f\xee\x3c\xcc\xda\x58\xeb\xe5\x40\x19\x44\x4d\xed\x98\xc4\xde\xc5\x0d\x9b\xdb\x3f\x38\x8b\x1f\xab\x9b\xb6\xb8\x42\xb6\xf0\xba\xc8\x4b\x84\xbf\x60\x19\x6c\x95\x6b\x11\x39\xb7\x24\x21\x6d\x8b\x01\x2b\xe5\xa4\xa5\x7b\x61\xbf\xc8\x3f\x4e\xd5\xa8\xa9\xb2\x29\xc8\x63\xb3\xec\x40\x24\x72\x91\xbb\x4a\x71\x9f\xa4\x66\xc3\x25\x53\x31\x0b\x28\xc0\xcd\x92\x33\x81\x28\xb7\x28\x0b\x09\xdb\x6d\x74\xe9\xc6\x2d\x2b\xcf\x3f\xc1\x89\xad\x94\xca\xf4\xfb\x2e\xc5\xb8\x8a\xfd\x1d\x68\x32\x56\xee\xa7\x71\x8d\x61\x85\xb9\x53\x14\xf3\x64\x1b\xad\xec\xf2\xf8\x95\x31\x31\x01\xa2\xb7\x6f\x9c\x07\x8f\x15\xc7\xcd\x62\x3e\x38\xce\x2a\x7d\xe7\x8f\x40\xec\x11\xad\xdf\xe2\xb6\xad\xa6\x65\x03\x9b\xf6\x70\xd1\x81\x29\xa3\x28\xda\x89\x50\xff\x36\xb0\xa5\xbc\x2e\x12\xe3\x22\xeb\xa2\xa8\x38\x91\x43\x3b\xa8\x8f\x4f\x32\xb3\x68\x45\xdf\x38\x07\x53\xd9\x7c\x7e\xa7\xb6\xf1\x19\xe7\xbb\x6f\x5c\xbf\x57\xbf\xb1\x00\x53\xec\x97\x46\xda\x87\xd8\x7c\xf4\x15\x65\xd7\xfb\x98\x2d\xca\x9e\xc7\x89\xbf\x8b\x7f\x9c\xa2\x38\x14\xb5\xf7\x1a\x37\xce\xfe\xea\x5c\xbb\xea\xef\xd2\x31\x64\x24\xe9\xe6\x1a\xf3\x39\x6c\xe8\x33\x14\x30\x9d\x6a\x1e\x2d\xb4\xc4\x6e\x1d\xf6\xfe\x92\x19\x9c\x63\x7c\x6e\x9b\xc5\x2a\x27\x3d\xe5\xa8\x71\x32\x9a\x18\x54\x0a\xc5\xb5\x77\x27\x9a\x60\x6f\x6c\x01\x24\xec\x60\xb9\xf3\xf9\x17\xc2\x15\x98\x5d\x05\x84\x31\x5c\xb1\x92\x71\x60\x48\xfb\x0f\x06\x47\x64\x80\x28\x0b\xe4\x53\xbd\x9d\x80\x65\x3c\x64\x63\xa7\x1b\x97\x1f\x13\xd6\x43\xf9\x7c\xb9\xf1\x60\xa5\xf6\xfc\x73\x4c\x4a\x1c\xb4\x3e\xfb\x77\x57\xe6\xf1\xbd\xa8\xd1\x05\x4a\xe9\xd3\xc0\x6a\xdb\xf7\x77\x61\x60\x2d\x9e\x79\x8c\x0e\xb8\x97\xb1\x29\xe2\xf4\xc3\x6b\x3c\x3e\x6d\x5c\xf8\x90\x24\x18\x60\x90\x7c\xe0\xea\x8f\x1f\x66\x49\x35\x37\xa6\xc3\x25\x83\xee\x29\x3e\x6b\x09\x48\x0c\x89\x6c\x84\xfc\xd6\xe9\x14\xf2\x9c\xb5\x67\x3b\x1f\x7d\xc3\xaf\x1f\x74\x69\x71\xed\x28\xf5\x5b\xcb\xce\xf3\x5b\x4a\x44\xfa\x7c\x69\xfc\x32\x97\x4c\x52\x78\xf2\x13\x7b\x4f\xb3\xa4\x16\xd9\x2d\x3d\x11\x61\x02\x66\x22\x42\xe8\x96\x93\x74\x4c\x4e\x0a\x15\x18\x75\x2f\x97\x10\xe9\xa1\xe5\x30\xaa\x57\x7c\x31\xe8\xc0\xe5\x8d\xf7\xe8\xee\x62\x63\x54\xc5\xe4\x7a\xbf\x78\x23\x79\xe6\xa9\x10\x25\x95\x77\x75\x51\x21\x44\x82\x12\x2d\xf3\xfc\x9e\x68\x4b\x3e\xa3\x00\x80\xf4\x64\xef\xbb\x05\xba\x06\xc8\x99\x1c\x79\x53\xa8\xca\x15\x84\x86\xbc\xc1\x11\xfb\x22\xa5\x74\x4b\xb5\x28\xd9\x0c\xbb\x86\x27\xd5\x48\xad\x32\xc2\x04\x58\xa7\xa7\xcc\x1c\xcf\x9e\xc7\x43\xb8\x26\x26\x55\xb3\x85\xbd\x9e\xaf\x96\x83\xd9\xf1\xf4\x6a\xc5\xea\xc5\x12\xb7\x39\xb9\xee\x64\xfe\x57\x78\xf7\xb4\xba\xb5\xc0\xd7\xb6\xf1\x45\x9d\x5e\xd5\x39\x36\xc5\xa5\xc2\xfd\xc5\x02\x75\xd2\xf9\x98\x9e\x23\x22\xe6\x54\x28\x4f\x46\xcb\x53\x4a\x30\x52\xcd\x6c\x0c\x74\xae\x8f\x22\x49\x01\xa9\x04\x23\x13\x85\x70\x56\x55\x67\x91\xf6\xb0\x57\x15\x01\xce\x66\x64\x32\xbb\xf8\xf9\xa6\x93\x5f\xb4\xe0\x67\x3a\xd5\x58\x8a\x70\xdc\x30\x8a\x5c\x0f\x92\x39\x05\x00\x41\x05\xa6\x82\x9a\x3c\xd1\xb8\x93\xaf\x8d\xd2\xb8\x13\xcc\x73\x9a\xe1\xb4\xa5\xe9\x0d\x20\x42\x11\xa5\x4f\x28\x41\xf9\xf5\x49\x47\x7c\xca\xb2\x2b\x68\xea\x64\x96\xd9\x5b\xd4\xde\x1e\x1a\x1d\x3b\xda\x7f\x64\x00\xef\x7f\x94\x6a\x7a\x7b\x61\xc0\x79\x6b\xba\x97\x81\x83\x10\x33\x69\x14\x8d\x72\x8b\x0f\xf3\xf7\xde\xdb\xa7\x44\x35\xb2\xe4\x65\xd7\xda\xf2\xef\x6a\x70\x1b\x36\xbf\xfc\xde\xb9\x72\x1f\xa4\x85\x80\x3e\x15\xcb\xdf\x92\xe4\xe3\x27\x8c\x35\x6d\xcd\x07\x97\xb1\xb8\xd7\xe2\xed\xda\xfa\x66\x7d\x69\x03\x13\xed\x3d\x5a\xe3\x8a\x7e\xa2\x4b\x80\x70\xee\x84\x42\xde\xc2\x35\x61\x62\xb8\xb9\xc6\x74\x78\x2f\x19\x7e\xe4\x70\x6f\x1c\x86\xb2\x4a\x0f\xd6\x02\xd8\x25\x97\x11\xf6\x6e\xbb\x56\x89\x68\xba\xb0\x70\x71\x4a\x25\xc9\x1c\xc1\x93\x6e\xfd\x3b\xe1\x74\xc2\x2f\xe8\xc7\x5f\x39\x4b\xdf\xb0\xf9\xc3\xb3\xbc\x67\xa2\xae\x62\x51\x1d\xf6\x59\x51\x9d\xc9\xe6\xc2\xf0\x94\xa4\xc6\xab\x51\x5a\x99\x2d\x19\x6e\xc9\x63\xdc\x28\x12\x9f\x60\x2a\x9b\xe8\x3c\xfc\xce\x79\x78\x17\x17\xe2\xd6\xfd\xfa\xcf\x37\xd8\x80\x2e\x62\x19\x9e\x7d\xea\xcc\x2f\xf3\x4a\x29\xd3\x8d\xf3\x56\x14\xe1\x55\x25\xae\xb7\xee\x2b\x68\xa1\x59\xfc\xfa\xc6\x3c\x80\xc7\xca\x05\x10\x8a\xf7\x45\xa7\xf2\x53\x04\xa8\x72\x36\x31\x5e\x8d\x52\x13\x50\x12\x9f\x29\x98\xfc\x3c\x70\xb5\xb2\x65\xdb\xde\x91\x87\xc3\x79\x00\xab\xe6\xd0\x5e\xa9\xb0\x66\xa8\xec\x2b\x83\xd0\x2a\x02\xc4\x35\x89\x58\xdf\x40\xcd\x48\xd3\x81\xeb\xe8\x53\x29\xb4\x30\x56\x8b\x65\xcc\xb6\x83\xd2\x04\xe0\xe8\xe7\x97\x96\xe6\x3e\xb9\xb4\xd3\x7a\x51\x68\xc9\xbd\x92\x3d\xa2\xe3\xfb\xc1\x7c\x0a\xff\x24\x9b\xc9\xff\x6a\x03\x4c\xb1\x2b\x71\xc0\x24\xfd\xbb\xcc\x16\xef\x29\xdd\x2d\x70\xe6\xbd\x0d\xc8\xa1\x49\xa2\x16\x54\x85\x93\x8e\x52\x9a\xce\x9c\x8e\x9c\xdd\xd5\x41\xb1\xa9\x04\xf5\x88\x7d\x5a\xe4\xe4\xb1\xf3\x92\x5f\x49\x1d\x5d\xb9\x07\x58\x97\xb3\x76\xce\x59\xdd\x6a\x9e\xff\xc5\xff\x04\xf4\x67\x52\xfc\xfb\xdc\x87\xfe\xba\x47\x1c\xfd\xed\x07\xaf\x56\xd6\x69\x8c\x8d\x99\x7c\x97\x52\x61\xc9\xb7\xc7\xc6\x86\xbd\x72\x37\xd1\xbc\x6b\xeb\xc3\xfa\xe3\x65\x6c\x2b\x4a\xdd\x92\xc9\x52\x89\x80\x92\xd0\x06\xe8\xf9\x7c\x2f\x4b\xe7\xbd\xc8\x3c\x84\xa6\x70\x12\xe4\x77\x21\xba\xe3\xb7\xd1\xdb\x41\x15\x4e\x72\x4a\xd9\x41\x40\x94\xe8\x12\x5a\x04\x21\xa2\x88\x4c\x4a\x1c\xf5\x56\x34\xb8\x02\x7e\xb5\x34\x59\xd6\x45\xbd\xf5\xfd\x07\x49\x97\x86\xd5\x83\x2a\x1a\x5e\x14\x15\x04\x72\xc4\x2c\xf6\x97\x4c\x51\x0f\xf9\x88\xfe\x17\xab\xcc\x59\x59\x82\xdf\x9b\xc5\xd0\xef\x87\xf5\x4a\x6e\x4a\x62\xa6\xfa\xdd\xd3\x9b\x62\xe6\x2b\x7a\x41\x3b\x02\xac\x4f\x92\xf1\xb6\xfd\xe7\xc4\x77\x0d\x01\xd7\xa7\xad\x2a\x17\x56\x9c\x26\x38\xda\xab\x46\xdf\x64\x9f\xf6\xc6\xeb\x6f\xfe\xf1\x48\x8f\xf6\xc6\x21\xf8\xdf\xeb\x87\xa2\xdd\x38\xd4\x80\xa4\x9c\x80\x0e\xf0\x6e\xc0\x3e\xba\x9a\x50\x24\x77\x57\x88\x6e\x87\x9a\x7c\x10\x09\xe6\xb9\x58\x9d\x1e\xc7\x74\x7d\x13\xe2\xce\x8a\x21\x2e\xba\x79\xca\xb9\x6b\x01\x6a\xf7\x24\x4e\x4e\x82\xa4\x67\x72\x6a\xca\x38\xb5\xc9\x78\x6c\xf3\xc9\xbd\xe6\xfa\x77\x2d\x1e\xab\x80\xee\x58\x7f\x7f\x2b\x5e\x6d\xda\xb4\x31\x24\x82\x53\x40\xe7\xac\xe2\x84\x39\x29\xaf\x06\xbe\x33\x8f\x5a\x06\xf6\x3a\xc2\x9a\xcf\x24\x55\x23\x48\x60\x0d\x6c\x07\x55\x76\xce\x38\x36\xda\x7f\x48\x52\x8d\x13\x8d\xc6\x3f\xdf\x50\x31\x7d\x1e\x1b\x1d\x18\x89\xc9\xc7\xc3\x16\xe9\x2c\xf9\x84\x10\x89\x24\xb7\x8c\xaa\x03\xf4\xb1\x22\x69\xf1\x91\xe9\x72\xd6\x86\x30\x25\x29\x48\x6c\x6c\x5e\x19\x28\x97\x65\x71\xb7\xf4\x9a\x60\xeb\x4a\x98\x41\x1d\x5e\x18\x27\x8a\x9c\xe9\x60\x9f\x16\x0a\x50\x85\xec\x2a\x3e\x69\x2b\x54\xff\x4f\x12\x9d\x4c\xa4\xed\x7c\x07\x4f\x9c\x33\x2a\x72\x59\x0b\x1f\x4b\xa8\x3d\xe2\x49\xbd\xc7\x7d\x1f\xef\x49\x1c\x28\x9d\x05\x94\x02\xbd\xd6\x38\xba\xb5\xba\x3a\x48\x52\x23\xa0\xe0\x65\x78\xda\x4b\x8a\x08\xf5\xfe\x92\x2c\x6f\x57\x60\xa6\x19\x01\x17\x30\xd6\x45\x98\x81\xa8\xc6\x26\x37\x69\x27\xec\x95\x9a\x8a\x56\x75\x82\xd0\x10\x4c\xc2\x92\xd9\xc3\x7d\x77\x91\xa5\x18\x33\x59\xd5\xf5\xb6\x28\xb6\xa4\x0b\x90\xa6\x73\x77\x68\x62\xfb\x7f\x85\xef\x4b\xff\xcf\x6c\x0c\x0b\x73\xd2\x50\xa3\x3f\x13\xa2\x17\x32\x56\x5f\x01\x81\xdd\x1d\xab\x1c\x91\xca\x58\xdb\x82\xad\x92\x14\xc3\xac\x6d\x5e\x0d\xc9\x50\xf0\xe8\xab\xc6\xe6\xc7\x81\xda\xa5\xaa\x5a\x38\xa6\x2e\xd4\x85\x8d\x0f\x61\xa4\xfa\xf8\x45\x07\x0b\x91\xda\x11\x1f\xf4\x11\xde\x6a\x30\x53\x51\x25\x5e\xa2\x2a\xbc\x44\x25\xf4\xb8\xc8\x13\x9c\x85\xb7\x70\xfd\x9c\xd8\x44\x63\x34\xc7\xc2\x31\xb4\xed\x84\xd1\xa4\x55\xe3\x0b\x2c\xec\x3a\xbe\x17\x35\x72\xef\xbc\xbd\xa0\x91\xc7\xe3\xdb\xc5\x91\xc3\x0f\x70\x7c\xf4\xa2\xf9\x37\x9d\x93\xb5\xec\xc5\xa6\x81\xd2\x9b\xbb\x32\x03\x8a\x78\x53\xcc\x84\xf1\x5e\xc9\xc8\xa1\xfa\x94\x75\xd9\xa8\x3d\xb4\x72\x14\xeb\x92\xdf\x47\x42\x36\x65\xfc\x92\x0e\x2a\x3d\x88\x14\xf4\x11\xfb\x2d\x14\x02\x66\x6b\x8c\x12\x13\x41\x39\xac\xd0\xd1\xf4\xf2\x64\x15\xc3\x29\x22\xa9\x1c\x3e\x7c\xec\xd0\xe0\xd1\x5e\x32\x05\xf5\x6a\xea\x60\x93\x3e\xf4\x3d\x0c\xb8\xda\x02\x81\x67\xa8\x0f\xf1\xd7\xed\x98\xd4\x74\xdd\x53\x4c\xe8\xa9\xa2\x75\xba\x48\x49\xa8\x24\xd8\xc3\x1a\x29\xe1\x90\x44\xc3\x44\x35\x4b\x81\xa7\x60\x61\xcc\x92\xdf\xe7\x80\x3d\xc3\x48\xe2\x67\xb7\x29\x89\x66\xe1\xd1\x57\x3b\xd7\xcf\xc8\x3d\x9e\x62\xd6\xd8\x0e\xc9\x88\x23\x5f\xd6\xd8\x1e\xc9\x47\xcf\x5e\x61\x49\x2a\x89\xb2\x7b\x57\x16\xdf\x2e\x0f\x59\xc2\xe4\x13\xb1\xed\x55\x30\x8b\x0a\xf6\x5e\x1d\x9c\x24\xd8\xa3\xfb\xa8\x53\x10\x53\x42\x35\xb6\xbd\x3a\xe6\xd8\x12\xaa\x09\x7a\xa4\xc6\x5e\xf4\x79\x97\x1b\x22\xc8\x90\x9e\x81\xb1\x54\x24\xe8\x99\x96\x1a\xbc\xed\x7a\xdd\x74\x85\x9d\x32\x3a\xbd\xfc\x67\x30\xb3\x91\x56\xd2\xcd\xb2\x24\x47\x03\x1d\x09\x96\x5d\xbd\x28\x03\xbf\x70\xce\x06\x67\x67\x6e\xcb\x59\x7d\xaa\x4a\x6e\x77\x42\x4d\xb2\x06\xa3\xf3\x48\x5f\x5e\xc4\x95\x37\x15\x81\xd2\xa5\x29\x8a\x9f\xb6\xb1\xaf\xb8\xde\xe9\x09\x0b\x55\x6a\xa4\xd2\x93\xa8\x43\x4a\x4f\x6d\x02\xd9\x31\xb9\x44\xda\x15\xa0\x2a\x63\x68\x67\xcc\x69\x9f\x9d\x59\x40\xa9\xd3\x3b\xde\x9e\x98\x55\x69\x97\xa8\x41\x53\xa7\xda\x5f\xc9\x2f\xa8\x16\x68\x21\x4c\x20\x93\x76\x09\xac\xc2\x38\x42\x54\x8f\xca\x73\xaf\x00\x2b\x3d\xc5\x81\xac\xba\xbf\x37\xad\x8c\x08\xaf\x49\xa9\x7d\x69\x5c\xff\x31\xf4\xba\x6c\x1f\x94\xea\xcc\x15\x2c\xdd\x53\x6c\xa1\x41\x8e\xab\xb4\x92\x59\x66\x58\xaf\xc8\x6c\xfc\xb5\xf5\x8b\xb5\xad\xfb\x81\x7c\x4b\x64\xad\xeb\xa9\x6d\x5e\x0d\xed\xaf\x40\x95\xea\xdd\xc5\xb4\xed\xc6\xdd\xe5\x52\x16\x79\x41\xc7\xce\x52\x37\xae\x76\x1f\x15\xff\xdb\x2c\x1d\x84\x75\x7b\x6b\x16\x1e\x5d\x98\x1d\x1c\xbe\xc2\xbf\xf7\xa3\x65\x1d\xf5\x19\xa6\x2c\x3e\x8d\xa9\x8b\x85\xc2\x0b\xab\x42\xa9\x24\xb2\x35\xf0\x5b\x72\x88\x22\x78\x47\x24\xd6\xc4\x87\x27\x65\x6c\x45\x55\x95\x51\xe1\xb8\x24\x11\xf6\x88\x67\x9c\x72\x14\x49\x0d\x15\xad\x68\x1d\x01\x12\x03\x73\x38\x87\xeb\xc2\x4d\x11\x50\xbe\x7d\x5f\x04\x80\xb8\xf9\x5c\x9d\x4f\x2e\x2b\x87\x3c\xe2\x08\x74\xcd\x2a\x1a\xbd\xe8\x0c\x0d\x02\xb3\x6d\x9f\xb6\xca\xe4\x05\x53\xb0\x26\xcd\xe8\xf7\x15\x53\x5a\x5b\x9f\xab\xff\xf0\xa0\x3e\xf7\xc8\x59\x3d\xd7\xb8\x7f\xa6\x71\x67\xd3\xd9\xbe\xa1\x46\x06\xdd\x81\x1c\x15\xc3\x8c\x2a\xb1\xed\xd2\xe3\x73\xfe\xde\x5e\x8e\x67\xa5\x3d\x8d\x2f\x8c\x04\x01\xca\x41\x5e\xa8\xa4\xbf\x00\x4c\x71\x08\x54\xe1\xe2\x2d\x16\x03\x1a\x5e\x38\x4a\xc0\xf1\xb8\x07\x13\xe5\x78\x2c\x56\x12\xae\xc2\x7b\xc6\xef\x4c\x11\xda\x2b\x25\x1d\x9e\xef\x3a\xd5\xb3\x22\x63\x75\x0c\x05\x2d\x2f\xf2\xb0\x2e\x29\xd1\x73\x92\x9c\xf7\x29\x05\x42\xa2\xdb\x80\x48\xe0\xfc\x36\x92\x5e\x89\xa9\x38\x3e\x30\x32\x3a\x38\x74\x54\xb2\x89\x2e\x2c\xd4\x97\x7e\x50\xd9\x44\x5e\x5e\x9a\xa3\xb2\x9d\x14\xd1\x2a\x39\x16\xa3\x8c\x09\x92\x86\x05\xeb\x89\x7e\x02\xde\x7f\xb0\xf3\xdd\x65\x66\x34\x6a\x68\xa4\x55\x97\x3b\x7e\x4f\x0c\xf9\x5f\xfb\x47\x8e\x0e\x1e\x3d\xb4\xef\x44\x11\xbe\x63\xae\x81\x1b\x83\xb8\xbf\xc7\x50\xd1\x23\xd7\xd3\x29\x17\xcc\xa2\x21\x5c\xe7\xd1\xeb\x79\xca\x9c\x9c\x2a\xcc\xa2\x03\x7d\x0e\xfa\xe8\x93\x46\x9e\x40\xfd\x29\x00\x60\x5a\x9f\xd5\xc6\x0d\xb8\x5f\x38\xe6\x03\x1d\x1e\xb0\xe0\x2b\x87\xba\x88\x1f\xcb\x46\x0e\x83\xb1\x48\x7f\x4d\xe8\xed\x29\xa3\x50\x00\xf8\x36\x46\x78\x61\xca\x99\x68\x4d\xe8\xe3\xaf\x9d\x8f\x2f\xf2\x18\x9c\xad\x8d\xc6\x47\x0b\xce\xe6\x46\x73\x65\x05\xf8\x68\xf3\xeb\x33\x68\xc7\x73\x83\x27\xb8\xa0\xc0\xce\xf9\xcb\x1c\x6d\xcf\x0b\x42\x5e\x34\xd0\x15\x93\x9c\xdc\xfe\xa9\xb6\x79\xb3\xb6\xb1\xd1\x5c\xdd\xc4\xe4\x35\x0b\x37\x39\x47\x22\x03\x70\xae\x9e\x73\x16\x7f\x6a\xae\xac\xc1\x45\x01\x37\x5b\xfd\xc2\x33\x67\x61\x8d\x61\x04\xe9\x4b\x3d\xfd\x1a\xb9\x29\x8b\x24\x54\x16\x79\x3f\x57\xa7\x31\x06\x78\x4a\x44\x06\xb6\x3d\xb9\xca\x86\x5d\xb2\x8a\x6d\x11\x3b\xed\x39\x49\xb9\x44\x06\xdc\x85\xc5\x49\xe8\xa2\xcf\xe8\x66\x01\xf7\x3a\x7b\x98\xa3\xf1\xa0\xc3\x17\x8e\x1d\x10\x29\xda\x88\x5d\x69\xf2\x3d\xe8\x37\x4a\xb5\x1e\xad\x72\x69\x0a\xb3\x61\xd1\x32\xd9\xb8\x4a\xfb\x0b\x56\x35\xaf\x1d\xc4\xfa\x08\xe5\xd9\x3d\xb6\x06\x6f\x07\x7d\x5c\xb7\x8d\x3e\x2a\xe9\x8b\xca\xf1\x82\x91\x9f\xf4\x42\x15\x5d\x6c\xe4\x8c\x4d\x0b\x8e\x5e\xf0\x79\x36\x14\x05\x60\xf9\x73\x73\x75\xd2\x48\x92\x88\x3b\x1d\x6c\x8f\xb2\xfb\x30\xa5\x83\x5e\xa9\x18\xd3\xa5\x8a\x87\x60\x9a\xfc\x60\x39\x32\x5e\xcf\x85\xcd\xe3\xff\xf2\xec\x91\xfe\x42\x39\xe4\x6b\x8f\xfe\xd4\x79\xb8\x21\xca\xd6\xac\x9b\x3f\xb9\x6d\x0d\x7c\x4e\xe5\x62\x6e\x3a\x68\x85\x99\x98\x40\x87\xe5\x50\x2c\x54\x5b\x03\xf6\xbe\xeb\x6c\x8e\x79\xc6\x0c\x93\x0a\x21\xf3\xe4\xf7\x0a\x78\xbd\xa8\x1a\xe8\x65\xd5\x80\xd5\xf1\xa3\xa0\x86\xc6\x39\x5d\xf2\x9c\xfd\x73\xb0\x6e\xc5\xaa\x2c\xd4\x86\x0f\x8d\x56\x7f\xfc\x90\xf3\x8e\x35\x57\x1e\xd6\xd6\x37\x82\x25\x5c\xea\x17\xe6\x9a\xbf\xdc\x6b\xfe\xf2\x55\xf3\xf9\x9d\x9d\x07\x4f\x85\x82\x91\xd2\xe6\xa1\x90\x72\xee\x8a\xb3\xb8\x4a\x49\xcf\x2e\x73\x4e\xe4\x80\x06\x92\xe3\x9b\x16\xee\xef\xdc\xc1\x94\x42\xce\xd3\x5f\x6b\xeb\xd7\x45\xca\xbd\xa5\x6f\x02\x0b\x8e\x8f\xb1\x1b\x6b\xf5\x2b\x2b\xce\xc6\xa7\xa8\xc2\xbb\x71\xa7\xb6\x7e\xa9\xb6\x71\xce\x79\xfc\xd0\x39\xfb\x9c\x0f\xdc\xdf\xe7\x3e\x6c\xae\x2e\x33\xa9\xf5\x0b\x8f\xf0\x30\x5f\xbb\x1a\x80\x82\xde\x8d\x82\x8a\x0b\xce\xfc\xcf\xd8\x9a\x8b\x0e\xba\x69\x63\x77\x3e\xda\x76\xd6\xce\x05\x88\xa2\xec\x6b\x01\xaa\x3f\xb9\x2c\x7a\x51\xda\x07\x3f\x56\x18\x71\x6d\xeb\xae\xb3\xf6\x79\x73\xf5\x06\xb0\x85\xc6\xbd\x65\xdf\x64\xe5\x70\x3b\x01\x7a\x60\x22\x30\x3a\x9c\x1c\xc2\xd1\xd6\x02\x07\xfa\xd1\xbc\x73\xee\x3f\x60\x7c\x1c\xd3\x04\xd3\x2f\x98\xcb\xda\x39\x80\xbe\x73\xe6\x16\x8c\x9e\xc7\xed\x27\x0b\x23\x07\x6e\xcc\xb7\x77\xb9\x76\x15\xc7\x40\xbc\xae\xfe\xe1\x37\x3c\x2b\x91\x7b\x07\xa5\xf0\xb9\xf9\xd0\xdd\x03\x92\xba\xb3\x72\xb9\xbe\x70\x0d\x96\x19\x65\x62\xaa\xcd\xe2\x3c\x59\x86\x41\xab\x5c\xeb\x51\x5c\xcd\x44\xb6\x51\x41\xe1\x8e\x52\x55\x05\x16\xef\x7f\xb5\x1d\x2f\x5f\x96\x98\x71\xc3\x3d\xc2\x18\x5e\x03\x27\xc7\x55\xc6\x0b\xc3\x7a\x07\x87\xf0\xf7\xd4\x0b\x80\x10\x2b\x66\x51\xcc\x62\xd9\x9c\xd6\xcb\xb3\xe4\x52\x9f\xc3\x38\xaf\x56\xb4\xa3\x9f\x48\x8a\x35\x28\x15\x28\x2a\xa5\xe3\xd4\x53\x9c\xb0\x89\x27\x6d\x9a\x92\xa9\xe3\x61\x9b\x79\x43\x6b\x2b\x7d\x84\x7e\xf7\x9c\x88\x43\xde\xf1\x4d\x6a\x89\x89\x7a\x8d\x69\x9d\x93\x3b\x75\x8e\x87\x38\x24\xe0\xc0\x90\x4b\xa2\x0e\xba\xd1\xe7\x3e\x4d\xfb\x57\xbe\x39\xa7\x01\x26\x5e\xa5\xa7\x5c\x66\x25\x9a\x53\x5d\x30\x34\x3c\x50\x62\x83\x2a\x1b\xef\xf2\x68\xb6\x14\x8d\x5a\xec\xa3\x54\xa6\xbc\xd0\x9a\x9e\xcf\x53\x0a\x53\x58\xa4\x36\x12\xc6\x0d\xca\xec\xcb\x39\x25\xfb\xb4\x21\xd4\x9d\xc9\xee\x90\x69\x73\x12\x43\x26\xf3\x3d\x2e\x32\xd1\x98\x79\x38\x8f\x06\x1d\xd4\xa5\x97\x41\x34\x07\xd3\x04\x0b\xc3\x4d\xeb\x26\x5b\x0c\x74\x75\xce\xcd\xef\x7c\xf4\x0d\x1f\xde\xff\x15\x5c\x20\x3e\xcb\xc0\x0a\xf8\x20\x23\x03\xf3\x9d\x36\x38\xc7\xce\xc2\x39\x14\xf6\xef\x9e\x6d\xfe\xc7\xd9\xfa\xc6\xb5\xda\xd3\x7b\x5e\x17\x8e\xc0\xc4\x13\xf9\xf8\x21\x32\x45\xce\xda\x08\x4c\x66\x7d\x13\xc4\x8d\x9d\xb9\x0f\x51\x46\x5e\xda\xa8\xdf\x59\x05\xb2\x84\xfc\xb0\x76\xce\x0f\xbf\xb6\x79\x75\xe6\x0d\xfe\xa2\xb9\xf2\xc0\x59\xf8\xa4\x7e\xfb\xbe\xb3\x76\x16\xa4\x89\x99\x37\xfd\x5f\x73\x6e\x12\x0a\x2b\x7a\x8a\x9a\x8f\xbb\x67\x61\x12\x31\xeb\xca\xdd\xb3\x6d\x7c\xfa\xb3\xe7\xf5\x2b\x5f\x02\xfb\x9e\x79\x93\x45\x66\xa4\x6e\xe1\xe3\xda\xe6\x0f\x1e\x77\x00\x8e\xb8\x73\xeb\x31\x95\x5a\x6a\x63\x4a\xc0\x99\xf9\x79\xee\xab\xc3\xc4\xf8\xd1\x22\xf3\xe8\x0c\xb0\x53\x4c\x92\x43\xd2\x51\xfd\xf1\x97\xc0\x75\x1a\x9b\x8f\x79\xd4\xce\xc2\x67\x80\x60\xe7\xcb\xcf\x9d\x87\x37\xbd\xe8\x4c\xc0\x8d\x6f\xeb\x5b\x5f\xfb\xaf\x8b\xe6\xf3\x33\x8d\x47\x9b\xcc\x65\x90\x69\xad\xfd\xc8\x69\xe5\x60\x2a\xda\x99\x38\x73\x4e\x1f\x31\x1e\x4f\x66\xaa\xd4\xb2\xe7\xfc\xab\x5e\xc6\x3b\x78\x1f\x26\x5d\xe0\xbc\x38\x53\x95\x4a\x29\x90\x1c\x47\xe3\x68\x7e\x78\x36\x6b\xbe\x26\x76\xa0\x8d\x2d\x52\x50\x89\x23\x87\xe2\x6e\xfc\x15\xfb\xd5\x5c\xfd\x3f\x2e\xc1\xea\xe2\xb5\xe0\x26\xcf\xa1\xf0\x81\xfe\xe1\x31\xce\xa0\xe3\xf1\x71\x7e\x62\xe1\x8f\xa2\xe5\x85\x05\xcd\xcb\xb3\xa3\x26\x63\xba\x03\x67\xf7\x16\x4c\x68\x8f\xc7\x18\x53\x9b\xc4\x52\x2e\x72\x38\x52\xb6\x12\xe7\xfc\xc6\xce\xf5\x3b\x2a\x04\x94\x4d\x60\x40\x30\x9f\x20\x95\x59\x79\xca\xf7\x75\x70\xf0\xf0\x00\xb1\x0c\x43\xcf\x93\x43\x64\x25\x0f\x02\x57\x24\x39\x0a\x10\x12\x53\xf7\xbf\xcd\x12\x2c\x69\x6e\xca\x9c\x31\x5a\x5a\x1b\x91\xbb\x38\x91\x77\x82\x73\xf5\x52\x63\xeb\xdb\xfa\xcd\xf3\xf5\x07\x5f\x79\x01\x16\x59\x9c\x15\xde\x39\x72\xec\xf0\xd8\xe0\x70\xff\xc8\xd8\xde\x83\x43\x23\x47\x7a\x0f\xf4\x8f\xf5\x6b\xfb\x87\x8e\x8e\x0d\x1c\x1d\xd3\xde\x1e\x3c\x70\x60\xe0\xe8\xbb\x91\xd4\x84\x76\x16\xc2\x15\x85\x2a\xef\xdc\xbd\xd6\xbc\xb5\xf8\xae\x0a\x5d\xc3\x23\x83\xc7\xfb\xc7\x06\x34\x82\x19\x4b\x08\x73\x0e\x46\x9d\x01\x69\x58\x75\x12\x5b\x86\xd6\x97\xe4\x48\x09\xe1\x64\xc1\x1a\x87\xbb\x4f\x44\x87\xbf\xeb\xc9\xeb\xef\xb8\xde\x54\x76\x5f\x5f\xdf\xbb\xda\x3b\xee\xf7\x6e\xc3\x68\x92\xe0\x18\x3b\x3f\xce\xed\xcc\x5d\x80\xdb\xe2\x5d\x11\xc9\xaf\xbd\xc3\x6f\x51\x86\xc5\xdf\x89\x16\x0a\x44\x73\xa8\x49\x24\x05\xed\x3f\xa7\x84\x4b\x62\x12\x5f\xd7\x98\xc8\xdf\x5f\x07\x23\xc6\x97\x44\xb8\x0b\xb9\x05\x34\x44\x86\xe8\x9c\x2b\x08\xa4\xf7\x59\x8a\x25\x28\x71\x91\x8f\x28\xd2\x24\xde\x2e\x31\x94\x55\xac\xe8\x89\x60\xd9\x5c\xad\x0a\x36\x3c\xd5\xa3\x57\xb6\xa0\xa2\xfb\x87\x5e\xd6\x69\x43\x92\x0d\x76\xfe\x4c\x73\x65\x5d\x09\x70\xa2\x64\xec\x99\xb3\xe1\x4b\x13\xae\x66\x4b\xb2\x8a\xf6\xbb\x5c\x59\xb7\xa7\x64\xf3\xe3\x4f\xf1\xf5\xcb\xb7\xf5\x8d\x8f\xd4\x10\x49\x66\x28\xf0\x63\x72\x98\xe8\x44\xe0\x26\x71\x98\x80\x9b\x5e\x32\x88\xe6\xc6\xf7\xb5\xcd\x6d\x8e\xe0\xe2\xd8\x44\xe7\xe1\x8f\xcd\x5f\x96\x15\xd0\xa2\xfd\xd5\x7d\x40\x8d\xcd\x96\xd0\xde\x4b\x59\xa8\x0d\x59\x4d\xd6\x64\x9d\x12\xd3\x30\x8e\xf2\xa3\x26\x9d\x54\x92\x44\x45\xf2\x47\x5e\x42\x15\x3c\xc4\x1f\xf6\xb5\xbc\x1e\x22\xd1\x49\x5a\x26\xc7\x86\x76\x44\x7a\xb0\xa1\xa5\x52\x32\x9b\xd1\x0d\x13\xe3\xca\x95\xaa\x91\xe0\xf7\x0f\x1f\x03\xf1\xa1\x7e\x5f\x85\x29\xc4\x9d\xa6\x8e\xdf\xd3\x41\x96\x31\x79\xe5\xc3\x99\x6f\x55\x36\x8d\xe6\xe9\x54\x0f\x55\x09\x38\x55\x95\x8a\x04\xdc\xf1\x7b\x72\xc8\xa6\x1d\xc7\xdb\x1b\x5f\x9f\x81\x47\x9c\x1a\xec\x68\x21\xb8\xf1\xd5\x99\xc6\x67\x2a\x51\xb8\x08\x55\x62\xff\x21\xb0\x2a\xf6\x9f\xa4\x06\xd8\xec\x91\xa1\x9c\x56\x45\x82\x20\xf8\x73\x4a\xb8\x12\x07\x74\xe7\xde\x3d\x85\xb4\x3c\xc8\x22\xa2\xb7\xf4\x4f\x0f\xbc\x6c\x4b\x0a\x24\xb3\xe7\xba\xe4\xde\x7c\xf2\x93\x73\x6d\x55\x8d\xef\x8a\x1c\xa9\xe4\xb3\x30\x5c\x46\x7d\x5d\x65\xd6\xf5\x5d\xb0\xa7\xac\x6a\x21\xef\xaa\xfc\x30\x67\x7d\xf4\x8e\x6a\x2b\x2d\xda\x06\x0a\x4d\x46\x1f\x6d\xa3\xde\xe3\xdb\x0d\x15\x22\x67\x64\x41\x1c\xca\xd5\xd3\x42\xae\xca\x98\xcb\x3d\x41\x8f\xc4\xd8\xb9\xa3\x56\xa9\x92\x1e\x01\x25\x6b\x7c\x1f\xdb\x56\xc1\xd0\x8c\xdc\x94\xc5\xc2\xb8\x6b\xea\x83\xf1\x97\x67\x7d\x61\x33\x09\x0b\x4c\xd3\xa3\x99\x55\x54\x9c\x30\xcb\x4b\xa1\xc5\xa9\x6b\xd9\xca\xc6\xda\x7b\xfe\x29\x1e\x47\xf2\x01\xc2\xf8\xa4\x0e\x07\x6c\xf0\x57\x73\x38\x98\x28\x1b\xa4\x7d\x2d\xe9\x66\xf4\x72\x85\x37\x4a\x8c\x03\xf3\xd9\x45\xc2\x0e\xfe\x98\x18\xa6\x59\xcc\x59\x65\xcc\xaf\xa9\x55\x6d\x7d\x52\xe2\xf6\xb3\x7e\xa5\xfe\xf8\xab\xc6\x83\x15\xd4\x80\x92\xf2\x4a\x09\x99\x70\xc5\x14\xe9\x4b\x0a\xe6\xb4\x19\x3d\xa2\x98\xd6\xa9\xb1\x92\x88\xe6\xe6\x62\x1d\xc4\xbc\xa9\xe8\xb9\x05\x4f\x14\xdb\x2a\xee\xe3\xc8\x7b\xb3\x12\xd8\x64\x3d\x78\x5d\x54\x4e\xda\xad\x22\x12\xd8\x84\x6b\x4a\x48\xb6\xb9\xaf\xe2\x7f\x07\x3a\xe7\xea\x3d\xe7\xb3\xfb\x51\xe8\x76\xe6\xe6\x9c\xf3\x1b\x5c\x4a\x6d\x6f\xf3\xf9\x75\xe7\xb3\x2f\xe0\x3c\x48\x30\xa7\x9e\x04\x89\xd8\xac\x1a\xed\xeb\x81\x96\xdc\x61\x3c\x23\x4a\xc0\x67\xf4\x82\x89\xee\x02\x53\xf0\xd0\xaf\x70\x19\x2a\xb3\xe8\xb9\xf6\x44\x1f\xe6\xf5\x79\xe7\xca\x0d\xd4\xd4\xdd\xba\x5f\xbf\xb1\xd0\xd8\x7c\x54\xbf\xf0\xbc\xf9\x64\xd5\x79\x76\x36\x03\x19\x1c\xb4\x41\x49\x1b\xc4\x45\xb5\xff\xe0\xc9\xd1\xb1\xfe\x43\x83\x47\x0f\x9d\x1c\x1b\x3c\x32\x30\x74\x6c\xcc\xe5\x58\x31\x19\x3f\x80\xa6\x60\xae\x6e\x67\x6e\x2b\x19\xb0\xae\x51\x3d\x32\x76\x6c\xb8\x6b\x54\xc7\x01\x4b\x4c\x75\x41\x1f\x37\xa2\x6f\xf6\xb6\x5f\x53\x40\x85\xb7\x72\xb5\xc4\xcf\xa6\xe8\x9d\x8a\xca\x5c\xe0\x83\x61\x2d\x93\x8a\x5e\xc4\xa7\x24\x97\x76\xc7\xef\xc9\xc7\x00\xb2\x2b\xe7\x13\x74\xbd\x3c\xdc\xa8\x4b\xa1\xa5\x8c\x3e\xdd\x69\xba\xa6\xa7\x87\xd2\xed\xe5\xd1\xad\x47\x00\xc5\xbc\x6d\xb6\x59\x91\x25\x01\x4b\xd7\x39\x39\x4d\x68\xec\x8a\x9e\xfc\x9d\xeb\x67\x9c\x95\xbb\x0a\x70\xa7\xe5\x29\xcd\x50\xeb\xfe\x58\xe5\x65\xc4\x70\x25\xac\x93\x00\xab\xb0\x4e\xa9\xac\xa3\x9c\xa9\xb4\x68\x15\xb5\x71\xdd\x6e\x69\x77\xa3\xf7\x9c\xac\x69\x1a\x7c\xd1\xa3\x08\xfe\x98\x02\x26\x1a\x19\x90\x33\xb2\x67\x80\xe1\x2a\xd3\x60\x0f\x4a\x85\x2c\x56\xa0\xb1\x11\x98\x13\xf3\x32\x4f\x54\xa0\x41\x96\x78\x99\x9d\xa6\xd5\x80\x7a\x51\xf8\xbb\x02\x3d\x7a\xb1\x15\x73\x88\xc3\x33\x55\x72\x5a\xdb\x7e\x4d\x0c\x15\x05\x6c\xcf\x46\x40\x16\x04\x09\xc3\x8f\x6e\x9a\x1c\x1f\xf4\x8b\xbe\x36\x7d\x46\x6d\x45\xd8\x92\x08\xd1\x2e\x00\xf7\xa7\x28\x1f\x9f\x0d\x1a\x5a\x12\xed\x28\x45\x28\xc9\xa9\xc4\xeb\x40\x46\x80\x24\xc7\x7e\x0c\x64\xf6\xa0\x8f\xb6\xe8\x74\x36\x48\x0c\xfb\xaf\xf2\x2a\xbe\x3b\xf3\x57\x76\xbe\xfc\x5c\x41\xbe\xc0\xeb\x91\x43\x88\x4f\x53\x92\x67\x5f\x72\x88\x71\xb3\x88\x8e\x4f\xa6\xad\xc1\x35\xa8\xcb\x84\x10\x35\x20\x89\xc7\x8e\xe0\x45\x66\xd7\xe8\xbd\x1b\xde\x28\x05\x0e\x97\x67\xdb\xd2\x32\x83\x82\x69\xd3\xa3\x2a\x3b\x9a\xe8\x05\xf5\xe3\x51\xb9\xaf\x63\xb2\x6c\x2a\x67\xd5\x14\x6e\xa9\xd1\x74\xab\xea\x01\x13\x66\x59\xc8\x9c\x5c\xa1\xc3\x8c\x1c\xca\x03\xd5\x01\x27\x49\xd6\xd0\x95\x1c\x0d\x89\x13\x24\x64\xcc\xbf\x95\x3c\x6f\x6a\x37\xf2\xa4\xfa\x2f\xcf\x58\x44\xc1\x46\x69\x71\xf4\xc6\x3a\x22\x84\x37\x4b\x8b\x27\x76\xc2\x94\xe6\x89\x32\xc7\x47\x43\x6e\xfb\x39\x39\x5c\x53\xb6\x95\x6a\x9b\x57\x55\x60\x4a\x63\x00\x95\x63\xf9\x7c\x61\xcd\x12\x6d\x51\x44\xab\x74\x58\x24\xf0\x65\x25\xdb\xa5\x37\xaf\x2d\xca\x14\x4b\x5e\x55\x5c\x41\xf9\xb1\x0a\xd5\xa4\xdc\x8b\x9e\x94\xb6\x9f\x53\xc0\xb5\x4a\xa5\x18\x6b\x0d\x55\x78\x55\x87\xad\xe9\x14\xff\xf0\x06\x3c\xa3\xb8\x58\x93\x44\x8d\x8c\xd1\x98\x3b\xe7\xaf\xc0\x23\x1c\x84\x36\xe7\xda\x55\x65\xdc\x18\x0d\x2a\x51\x55\xfd\xaa\xb6\x43\x2b\x94\x48\x3a\x91\x7e\x3a\x56\x2d\x2d\xdd\x4b\x21\xa6\x1b\x4c\x0d\x5b\xb6\x26\xcb\x32\x1f\xaf\xa4\xdd\x12\x0f\xb8\x2a\xf2\x5b\xe1\xc5\x66\xe1\x35\x2d\xb9\x94\xbe\x6b\xdc\x5b\x46\x5f\xe9\x95\x87\xcd\x55\x15\x51\xaa\x5a\x8c\xd3\x8d\x85\xb4\x48\x0e\xbd\x33\x9f\x8f\x8f\x93\x44\xa3\x4c\xd8\x2d\x39\x1d\x92\x20\xee\xaa\x52\x10\x37\xf4\x8a\xde\x11\x8d\xed\x8f\xd5\xaa\x1c\x23\x54\x09\x93\x24\xb0\x2a\xec\x97\x0c\x49\xbb\x91\x2f\x1c\xd3\x55\x48\xc1\x2a\x65\xf2\x0e\xe4\x6a\x92\x80\x6f\xcf\x2b\xa1\x80\x6a\x26\x26\xc0\xb3\xe3\xf7\xc4\x90\x4f\x93\xeb\xb4\x5b\x0c\x9e\xf4\xfd\x14\x42\x42\x31\x62\x94\x3e\x3e\x9a\xff\x2f\x7d\xd3\x96\x3c\xde\x39\x77\xc7\x99\x5f\xe6\x02\xf0\xfc\x93\x02\x45\xb3\x12\x21\xaa\x7e\x7b\x55\x6d\x02\x45\xf2\x73\xe1\xa4\x0f\xbc\xef\x55\x74\xda\x17\xd3\xe6\xe6\x46\x17\x61\xb2\xa3\x15\x74\x0c\xfd\xe0\x83\xe8\xa2\x0a\xe1\xd0\x44\x30\x72\x2c\xb0\x34\x44\xef\x3f\xe8\xe6\x47\x29\x99\x32\x72\xc2\xdb\x29\x61\x92\xe7\x46\x90\xb4\x4c\x85\xcd\xad\xcf\xaa\x4d\x19\x85\x92\xf6\xce\xfe\xa1\x23\x47\xfa\x8f\x1e\x88\x76\x92\x0e\xe9\xc3\x4e\xd1\x2a\xee\xd0\x04\xac\x5a\xac\x0c\x4d\x88\x50\x17\x1b\x80\xba\xd1\x48\xd1\xbe\x40\xa1\xdd\x38\x70\x45\xc5\x31\x08\xc1\xb1\x6b\x9b\x9b\x43\x24\xce\x13\x2e\x41\x8f\x34\xd8\x0f\x98\xf6\xa9\x63\xc8\x73\xb9\x36\x9f\xf8\x46\xa4\x0c\x92\x11\xe1\x6b\xc6\x19\xd5\x82\xc0\x14\xa9\x01\x61\xc2\x1d\x96\xd4\x09\xa9\xad\xad\xf3\xf0\x47\x35\x45\x7a\xa8\x7b\x88\x28\x06\xd8\xaa\x39\xed\x2e\x75\xb0\x66\x31\xa5\x42\xf1\xc5\x48\xdb\x5c\x0d\x8e\xeb\x22\xb6\x92\xa1\x48\xf7\x52\x18\xf2\x88\x72\xd4\x9d\x44\x78\xc9\x53\x44\x49\xbc\x60\xb6\x94\x9d\xf3\x58\x0c\xcf\x1f\x73\xab\x16\x14\xe5\x1a\x63\x31\x7c\x3d\x58\xd2\xb9\x35\x1b\x68\x09\x01\x79\x16\x55\x01\x58\x26\x4e\xae\xf0\xf5\x03\x8c\x29\x4e\x8d\x03\xf8\xec\x17\xe7\xe1\x5d\xe5\xfa\x23\x98\x5b\xa7\xc0\x51\x93\x5e\x96\x1e\x8e\x6e\x92\xd1\xd7\xde\x25\x8b\xd7\xf3\x11\x63\x3a\x78\xc0\xe0\x8b\x04\xe7\xab\xd5\xca\x3b\x5e\x2d\x48\x8a\x94\x58\x79\xa3\x20\xe4\x7e\xf7\xcf\xd0\x32\xba\x52\xba\xa2\x81\xe0\x63\x90\x72\xd2\xa8\x91\x17\x74\xb3\xd3\xa6\xab\x36\x47\xe7\x6a\x36\xdd\x9f\xe8\xfb\x84\x6e\x7b\x2c\xa0\xc8\x48\x6c\x03\xe4\x3c\x9f\xdf\x79\xb0\xe9\x85\x7f\x3a\x8f\x6f\x35\x7e\xf8\xba\xb6\xfe\x53\x7d\xe1\x26\x9c\x14\x67\x6e\x6b\x77\xc8\xed\x16\x99\xdd\x22\x30\x85\x03\x64\x67\xe7\x8c\x3e\x8f\x6d\xd9\x22\x5f\xe5\xcd\x0c\x0f\xe0\xc3\xf8\x60\xfb\xe0\x83\x23\x81\x47\x73\x8f\xdf\xf9\x29\xd0\x4e\x0b\x75\xeb\xea\xf1\x52\xdd\xd8\x6e\x3b\xb7\x50\x62\x2b\x73\x9b\xf7\x93\xcb\xad\x7b\x34\xbf\xf5\x8e\x52\xcf\x1d\xb5\x8a\x6f\xa1\xc9\xd9\xed\xd2\xcf\x7e\xd2\x31\x62\x60\xcc\xc8\xd8\x06\xbf\x73\xe7\x9a\xb3\xf0\x6b\x08\xa5\x9c\xac\x27\x94\x52\xe6\xda\x3d\x1a\xba\x3d\x9e\x11\xa1\xfe\x49\xc9\x4c\xa1\x49\x18\x61\x15\xbf\xcb\xeb\x98\x49\x51\x4d\x2c\xf7\xab\x56\xe0\x76\x9c\x39\xa0\xad\xa7\xc7\xba\x82\x38\x70\x7b\x73\x10\xb5\xaf\x72\xab\xda\xb6\x1a\x15\x5a\x35\x97\xd4\x58\x2d\x5b\x67\x1f\x51\xc7\x81\xb4\x6f\xdd\x25\x82\xb6\xc3\x01\xf6\xd4\x8f\xd9\x44\xa9\x41\xa4\xa1\xcf\xbd\x7f\xf0\x66\xa3\xeb\x19\x44\x5c\xde\xa5\xf0\xe5\x7b\xfe\xd3\xd6\xb1\xe2\x32\x9a\xa5\x60\x6b\x4f\x6f\xd7\x36\x97\x43\x60\x8b\x95\xbf\xf1\xfb\x8a\x8a\x38\x8c\x1e\x5e\x9e\x72\x2c\x12\x41\x54\xb3\x74\x9e\x64\x56\x2c\x9e\xa8\x66\xa9\x14\xc2\x12\x1d\xbc\xaa\x3d\xb3\x95\xf3\x99\x53\x47\xa0\x7d\xd3\x2c\x1b\x1c\xff\x3e\x83\x07\x9d\xbf\xc8\xef\xdf\x0f\xdf\x88\xf7\x2f\x32\x95\x32\x96\xc4\x36\xca\x7d\x9c\xf5\x29\xc7\x19\x3b\xdd\xe4\x81\x20\x32\xcf\xb4\xf2\x78\x06\xbb\x26\xc8\x77\xfa\x32\x68\x09\x9d\xb1\xff\xf1\xee\xff\xf8\xff\x02\x00\x00\xff\xff\x22\xa7\xd3\x34\x4b\xb4\x02\x00")
func cf_i18n_resources_zh_hans_all_json_bytes() ([]byte, error) {
return bindata_read(
_cf_i18n_resources_zh_hans_all_json,
"cf/i18n/resources/zh_Hans.all.json",
)
}
func cf_i18n_resources_zh_hans_all_json() (*asset, error) {
bytes, err := cf_i18n_resources_zh_hans_all_json_bytes()
if err != nil {
return nil, err
}
info := bindata_file_info{name: "cf/i18n/resources/zh_Hans.all.json", size: 177227, mode: os.FileMode(436), modTime: time.Unix(1426081216, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _cf_i18n_resources_zh_hant_all_json = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xec\xbd\x7b\x77\xdb\x46\xb2\x2f\xfa\xff\xfe\x14\x7d\x7d\xff\xb0\x73\x97\x28\xdb\x49\x66\xd6\xbe\xda\xeb\xac\x39\xb4\x44\xdb\x3a\xa3\xd7\x48\x94\x67\xb2\xe3\x2c\x07\x22\x5b\x24\x62\x10\xc0\xe0\x21\x85\xc9\xf6\xf9\xec\xa7\xab\xba\xf1\x22\xd1\x8d\xae\x06\x48\x79\xcf\xc9\xac\x35\xb1\x08\x74\x57\xfd\xaa\xd1\xcf\xea\x7a\xfc\xf8\x6f\x8c\xb1\xdf\xe1\x3f\xe2\x7f\xcf\xfc\xf9\xb3\x23\xf6\xec\x63\xf8\x31\x9c\x9e\x5e\x1d\x7d\x0c\x9f\x1d\x14\x6f\xb2\xc4\x0b\xd3\xc0\xcb\xfc\x28\xd4\x15\x59\x45\x73\xff\xde\xe7\x40\xe2\xde\x0b\x52\x0e\xcf\xbf\x1c\x68\xe8\xff\x10\xe5\x09\xfb\x5f\x37\x97\x17\x2c\xcd\x12\x3f\x5c\xb0\x74\x1d\x66\xde\xaf\xcc\x4f\x99\x1f\x3e\x78\x81\x3f\x3f\x64\xec\x2a\x89\x62\x9e\xd4\x5e\x65\x4b\x3f\x3d\x62\x6c\x76\xcf\x52\x9e\x8d\x92\x3c\x0c\x45\xd5\x11\x0f\x1f\xfc\x24\x0a\x57\x3c\xcc\x46\x0f\x5e\xe2\x7b\x77\x01\x1f\x2d\x92\x28\x8f\xd9\xf3\xdf\x3f\x3e\x0b\xbd\x15\xff\xf8\xec\xe8\xe3\x33\x41\x36\x17\x7f\x1d\x6c\x3f\xfa\xf2\xdc\x28\xe9\xd7\x0b\x76\xef\x6d\x9e\x66\xde\xe2\xbf\x4d\x9b\xef\x06\x2c\xa1\xcd\xff\x3f\x36\x5d\xf2\x94\x0b\x30\xc9\x83\x3f\xe3\x2c\x0e\x84\x9c\x6c\xe9\x3d\x70\xe6\x85\xcc\x4b\xd3\x68\xe6\x7b\x19\x9f\xb3\x59\x94\x66\x87\xec\x38\xe1\xa2\x0d\x84\xac\x5e\x59\xc3\x0f\x85\x10\xa1\xf8\xe3\xd1\x0f\x02\xf1\x6b\x26\x5a\x05\x84\x94\x35\xb4\x2d\x88\x8c\xd9\x9c\x87\x11\x50\x6f\x61\x9f\xc6\x7c\x26\xa4\x98\x21\x9d\xb4\x0e\xe5\xd1\xcf\x96\x82\x05\x5f\x1d\xb2\xd3\xfb\x36\x24\xd1\xbd\x44\x90\xad\x63\x0e\x6d\x3e\x03\xd4\x7c\x7e\x20\xca\x02\x31\x89\xf4\x8e\x4b\xb0\x09\x9f\x1f\xb6\x36\x5d\x96\xe4\xa6\x96\x1b\xc7\xb1\xf8\xf0\x5e\x22\x08\x1b\xa7\x21\x4d\x39\xc2\x37\x02\x0a\xbf\xff\x7e\x28\xfe\xb9\x10\x1f\xfd\xcb\x17\xf6\xe8\xa5\x05\x49\x96\xa7\xf0\x39\x54\x83\xaf\x56\x5e\x38\x67\x3f\x8b\xc2\xc7\xf2\xef\x2f\x5f\x7e\xee\x04\x37\x0c\x69\x82\x3c\x17\x11\xf3\x62\x9f\xf1\x70\x1e\x47\x7e\x98\xc1\x40\xd0\xf7\x93\xae\xe2\x04\xbe\xd7\x51\x9e\x71\x96\x45\xf0\xe9\xf3\x70\xe5\xc5\xb1\x10\x52\x08\x27\xba\x20\xc3\x8e\x10\x66\xc1\x9a\xa9\xe7\xa2\x98\xe8\x62\x82\x73\x1c\xf8\x33\x44\x63\xc2\x38\x1c\x69\x82\x3c\xb0\xbc\x31\x76\x2b\x46\xef\x73\x31\x9d\xac\xbc\xe4\x33\xcf\xc4\x00\x12\x03\x60\x94\xb2\x9b\xc9\xf5\x87\xd3\xe3\xc9\x73\xe0\xf6\xe0\xf3\x47\x31\xd4\xd2\x59\xe2\xc7\xc0\x2e\x85\x11\xe2\x87\x73\xff\xc1\x9f\xe7\x5e\xa0\x46\x5d\x04\x63\x69\xe1\x3f\xf0\xb0\x18\x51\x26\x89\xf7\xc9\x9c\xda\x26\xe3\x34\xf5\x17\x21\x4b\xa2\x80\xa7\x72\xb6\x78\x0e\xfd\x56\x7e\x07\x01\x39\x11\x1d\x1d\x66\xdf\x28\x59\x8c\xa0\xd0\x73\x06\x7d\xbb\xbd\x4c\x1a\x0b\x99\x64\xa9\xae\xd6\xd8\x39\x5b\x6a\x3b\xe0\xd7\x01\xf2\x6f\xa7\x5e\xb2\xe0\x59\x39\x72\xf1\xc3\x64\xf8\x8c\x85\xe2\xf3\x20\xb7\x2e\xf1\x5c\xa9\x39\xa3\xd6\xd1\x17\xed\x67\x8d\xd5\x8a\x06\x15\x61\xae\x7a\x7d\x10\x89\xc5\x9b\x8d\x3c\x36\xbe\x3a\x65\xa3\x51\xfa\xd9\x8f\x47\x69\x1a\x8c\x70\xf1\x47\x48\xcf\x05\x23\x2c\x0a\x33\x98\xa1\x94\x00\x97\xe6\x71\x9c\xf0\x54\xee\x10\x18\x4f\x92\x28\xe9\x92\x72\xff\x38\xac\x5b\x4a\xfc\xf5\x46\xac\xb2\x62\x01\x39\xf7\x42\x6f\x21\xb6\x40\x23\xb9\x79\xe0\xd8\xe9\x57\xf8\x10\xa7\xc1\x3b\x59\x8c\x79\xb3\x59\x94\x8b\xe9\x1d\x5e\xc7\xde\x1a\xb6\x42\x62\x9a\xb8\x8f\x0c\xeb\xd7\x6e\x98\x50\x64\x3c\x7e\xfb\xe9\x62\x7c\x3e\x61\x5e\x2e\x46\x3b\x6c\xc9\xfe\x27\xff\xd5\x5b\xc5\x01\x3f\x14\x2b\x26\xfb\xf8\xec\xe3\xc7\x8f\xcf\x62\xb1\x75\x79\x8c\x92\x39\xfc\xfd\xf1\x19\x7b\x21\xa6\x42\x4f\xec\x4b\xfe\x99\x8b\x9d\x8f\xd8\x2a\xde\xc3\x67\x14\x8b\x45\xc8\x8a\x82\xdf\x98\x04\xde\x35\xc7\x21\xa5\x5f\xad\x4b\x0e\x00\x03\xba\xab\xc2\x70\x2f\xba\x63\xf1\x4a\xcd\x95\x9e\x9c\x37\xbe\x31\x7f\xef\x9d\xb3\x74\x91\x7f\x16\xc5\xeb\x51\x2a\x8e\x03\x62\xf5\xbb\xb9\xbc\xbd\x3e\x9e\x8c\xc6\x57\x57\x6c\x3a\xbe\x7e\x37\x99\xe2\x9f\x3f\x8e\xa2\xe2\xe7\xe5\xf5\xbb\x9f\xc4\xef\xb4\xf8\x7d\x73\x35\x3e\x9e\xc0\x93\x51\x18\x8d\xc4\xc0\x83\xcd\xd7\x4f\x76\x8d\xb0\x5b\xbe\x2e\x2d\x21\x67\xa2\x17\xd1\xca\xcf\xa0\x93\x25\xf0\x85\xd4\x60\x93\x2d\x0f\x33\x8c\x2c\x24\xb6\x72\x3c\xf1\x66\x99\x58\xf3\xc5\xd6\x68\x34\x2a\x69\xe0\xee\x3c\x4e\xa2\x55\x9c\xe1\x47\xbb\x8b\xb2\xa5\x65\xaf\xd8\x0b\x7b\xf7\x76\x11\x93\x6e\x1a\xb1\x17\x9b\x9c\xc4\x46\x48\xa0\x64\x79\x12\x00\xbc\xe8\x2e\xf3\x44\x59\x8f\x45\x21\x1f\x65\xbe\x10\x60\x0b\xbc\xd5\x04\xb1\x33\x96\x3d\xe4\xcf\xb7\x87\xec\x28\xde\xe9\x34\xb9\x63\xc6\x3b\x68\x8b\x1d\x4e\x9a\xbb\xe6\x3c\x78\x6b\xc4\xde\x9f\xfe\xf4\x18\x5d\x9f\xb0\x17\x52\x1b\xb0\xd6\x8c\x6a\x71\x68\x15\x5b\xbb\x1c\x96\xf3\x74\x88\xb6\xe8\xcd\xd7\xa5\x25\xe2\x3c\x5d\x8a\xbd\xd9\x95\xfc\xf5\xe3\xe8\x8e\xbd\xb9\x3d\x3d\x3b\x11\xd3\xf4\x5f\xf1\x11\xcc\xd5\x33\x76\x7c\x79\x7e\x3e\xbe\x38\x81\x1f\x73\x76\x72\x79\x3e\x3e\xbd\x80\xbf\xef\x99\x78\x7a\xfa\x76\x72\x33\xfd\x74\x35\x9e\xbe\xb7\x5c\x40\x0a\x96\x43\x72\xb3\xd5\xa0\x6c\xc2\xe8\x25\x83\x35\xa4\xce\xaf\x71\x99\x2c\xc6\xf9\xdc\xcf\x22\xd8\x4c\x5e\x73\x6f\x3e\x8a\x42\xb1\x40\x88\x8d\x23\xee\x89\x23\x38\x39\xe0\x96\x11\x7b\x42\xc2\xe3\x28\xc9\x52\x33\xd2\xde\x24\x89\xf8\xab\xcd\xf0\x69\xf8\xe0\x37\x37\xc3\xd0\x8f\xd3\x03\x71\xc4\x0c\xf8\x4c\x6e\x83\x67\x4b\x2f\x5c\x28\xcd\xdb\x01\x3e\x11\xe7\x4f\xd0\xbe\x89\x23\xba\xd8\x31\x07\xbe\x58\x4c\xbb\x05\xdc\x31\x4f\x4a\x0b\x5c\x79\x62\x7a\x4a\x97\x51\x1e\xcc\x41\x1d\xe3\xb1\xdf\xfc\x98\xdd\xfb\x01\x3f\xa8\x56\xbc\xfa\x43\xf1\x59\x3c\x31\x1d\xcc\xbc\x80\xcd\xfd\x44\x40\x8c\x92\xf5\x21\xbb\x8a\x52\x1f\x44\x04\x2d\x8e\xc7\x62\xfc\xf5\xc0\x71\xdb\x20\xe4\x04\x69\xb2\x54\xac\xa4\x7e\x94\xf8\xd9\x5a\xca\x20\x4a\xa6\x11\x6a\xce\xee\xc5\xf6\x41\x90\x7c\x14\xbb\x2a\xe0\xb6\xf4\x17\x4b\x6e\x52\x86\xee\x06\x75\x38\x14\x5a\xc2\x90\xbe\x82\xd1\xb8\xca\x83\xcc\x17\xd3\x29\xa8\xb8\xca\xe5\x42\x74\x06\xff\x5e\xd0\x35\x5d\xda\xd0\x09\x50\x3a\xc6\x0d\x2c\x58\xd5\x48\xfc\x00\x8a\x29\xb1\x0c\x88\x1e\xa8\xc6\x5c\xd9\x15\x41\xc5\x9d\x8a\xdd\x90\x3c\x03\xe3\x42\x67\x46\x3d\x18\x69\xb2\x3c\x27\x5c\x6c\x60\xf1\x8e\xa1\xed\xec\x8b\xed\x27\x39\xa3\x52\xad\xc4\xc1\x11\x9e\xfd\x1c\xb6\x3b\x5e\x64\x89\x2d\xa6\x1a\x78\xc2\x43\xb8\x44\x61\xf7\x02\x66\x9e\xa8\x3d\x4c\xa9\x62\xb4\xfc\xa2\xbb\x60\x45\x91\x17\xae\x48\xd4\x6e\x1d\x76\x1d\x62\x18\xcc\xc4\xa8\xbe\x93\x77\x33\x77\x69\x14\x80\xd6\x59\x30\x4b\x38\x60\x7f\xe0\xb2\x0c\xce\x14\x30\x4b\x1c\x7e\x0c\x05\x91\xd3\xac\x98\x57\xe4\xb5\x0e\x03\xb5\x3e\x8c\xad\x24\xf1\xd6\x72\x70\xe1\x2d\x56\x74\xf7\x8b\x98\x46\xe0\xf2\x2a\x85\xd3\x81\x54\xd9\xde\xc9\x2b\x00\xce\x92\x3c\xe0\xa9\x71\x06\xfb\x8a\xc1\xee\xb3\xcd\x25\x05\xf8\xb3\x2e\x09\x0a\xd7\x4b\x1a\x49\x17\x8b\xbf\xf1\xc4\xd6\xfc\x12\xeb\xc0\x34\x8e\xb4\xe1\xcc\x0b\x93\x39\xf4\x47\xdc\x5e\x40\xcd\xf4\x9f\xb9\x97\x70\x76\x27\x0e\xba\x9f\x61\x05\x80\x97\xf5\x3b\xbd\xa5\x2f\xe0\x49\xe6\x0c\x0a\x26\xfc\x9f\xb9\x58\x4c\xf0\xb4\x93\x29\x29\x04\x63\xb8\xed\x14\x2c\x3e\x80\xa2\x90\xfd\x92\x8a\xc9\x0b\xc5\x53\x9b\xe6\x23\x7c\xf9\x23\xfe\x57\x34\xa8\xfa\x57\xd4\x7a\x26\x9a\x31\x8b\x66\x51\xf0\x51\x34\xed\xc7\x67\xd9\x2c\x86\x9b\xcb\xea\xb5\x10\x53\xcc\x86\xd8\x85\x64\x89\xd7\xaf\x0e\xbf\xfd\xfe\xfb\xc3\xd7\x87\xaf\xff\xbd\x59\x52\x4e\x1a\x58\xe6\xbb\xef\x5e\xfd\x59\x9c\xd3\xe4\xbb\x2f\xf8\xef\x4f\xbb\xec\x95\x7f\x7c\xce\x27\xfc\x9c\x94\x71\x8b\x6b\xae\x17\x88\x7d\x0c\x4e\xc6\x70\x72\xf5\x8a\x6b\x98\xe2\xac\x20\x1f\xea\x2f\x72\x5c\xc9\x50\x70\xfe\x38\xf2\xd9\xc5\xed\xf9\xa7\xd3\x8b\x9b\xe9\xf8\xe2\x78\x72\x03\x07\xaa\xcf\xec\xe4\xf4\xe6\xaf\xf0\xd7\x8a\x9d\x4f\xce\x2f\xaf\x7f\x80\xbf\x43\xf6\xfe\xf2\x66\x0a\x7f\xc5\x0c\x0f\x35\xa8\xbf\x13\xd5\x8e\xb1\x68\xc6\xa6\xa7\xe7\x93\xcb\xdb\x69\xc7\x49\x69\xd7\x1c\xed\xa5\xf7\xe6\x30\x0a\x45\x7b\x1a\x3e\x41\x5b\x19\x7b\x0e\xf3\x88\xcb\x5b\x57\xfe\xab\x2f\xb6\xb3\x70\x40\xc7\x4d\x87\x9e\x5f\x77\x0d\x7b\xee\xb0\xeb\x0e\xc4\xc6\x68\xbe\x2e\x2e\xd1\xf5\x7c\x4d\x65\x1d\x39\x46\x70\xbd\x6c\xc9\x71\xa3\x2c\x89\x23\x5f\xc5\xd9\xda\xc8\x67\xa3\x04\x89\x3a\x7c\x0b\x8f\xe1\xad\x14\x1c\x7c\x0e\xc4\x31\x91\xc3\x0c\xd9\x50\x5b\x1e\x30\x7e\xb8\x38\x64\xcb\x2c\x8b\x8f\x5e\xbe\x5c\x47\x79\xf2\x09\x3e\x1a\x28\x70\x8c\xc0\x86\x23\x4e\x97\xe9\xc1\xf3\x03\x9c\x54\xc4\x74\x0c\xf4\x4c\xa3\xc0\xa6\x0e\x19\x81\xd8\x9b\xc6\x11\x1e\xb1\xc5\x49\x51\xca\xbd\xf2\x3e\x8b\x75\x45\xec\x5a\x99\x9f\xc9\xa3\xae\x6c\x9b\x38\xc8\x17\x8a\xa5\x61\xd3\x37\x14\x5d\x7b\x49\x80\xdd\x7d\x94\x87\x86\x6e\xde\x52\xc4\x9e\x7e\xc2\x57\xd1\x43\x79\x26\x86\x09\x21\xba\x47\xb4\x29\x1c\xed\x7c\x9e\xea\xf9\x12\xaa\xda\x5f\x38\x3f\xbb\xc2\x06\x13\xab\x65\xb1\xb0\x97\xe2\x15\xab\xba\x6a\x7d\xc1\x79\xee\x65\x9e\xc1\x66\xa3\x0f\x2d\x6b\xc4\xdf\x94\x73\x0c\xce\xa7\x86\x23\x83\xa1\xa4\x35\xb7\x71\x69\x99\x14\xf8\x21\x18\xe0\x44\xa8\x28\x29\x2e\x77\xe4\xba\x7d\x1c\x44\xf9\x9c\xbd\x05\x39\x13\xfd\xb4\xd5\x87\x94\x3d\xde\x93\x93\x97\xd7\x62\xb5\xfd\x30\x61\x57\x67\xb7\xef\x4e\x2f\xb4\x70\x36\x5f\xdb\xea\x60\xb6\x38\xb0\xeb\xc9\xd5\xe5\xcd\xe9\x54\xac\xf0\x7a\xd9\xad\x2a\x11\xa4\xfc\x00\xfb\x8c\x13\x03\xbf\xcd\x02\xf6\xb4\xaf\x4e\x4b\x53\x30\x3d\xfd\xd6\x42\x4e\x3c\xd8\x8b\x72\x2d\x48\xc5\x62\xe0\xc5\xfe\x61\xed\xb2\x40\x7f\x07\xe5\x44\xc3\x09\xe1\x91\x15\x86\xa3\xbe\x5c\xa4\x9d\xa0\x3f\x51\xbf\xbf\x7c\xb1\x63\x6b\xa8\x36\x10\x0e\xf6\x02\xde\x3f\xf0\x24\x15\xfc\x8b\xd7\x1f\xe4\xcf\x2f\x5f\xec\xbe\x50\x0f\xaa\xee\x52\xb8\x34\x65\xcf\x76\xbc\xba\x31\xb0\xaa\xbf\xb4\xa7\x39\x83\x33\x26\x9c\x6d\x95\xfd\x38\x4b\xf9\x2c\x07\x35\x33\x43\xfb\xe5\x14\xb7\xf2\x02\x79\x71\x83\xf6\xc5\x60\x56\xdd\x8f\x98\x03\x66\x65\x7f\xbd\xc1\x06\xb8\x34\x98\x58\x00\x26\x53\xb2\x47\x3b\x17\xc7\x21\x34\x5a\xab\x6d\x9e\x70\x4f\x61\x58\xcc\x6c\xea\x10\x11\xc0\x25\x44\x52\xd8\xb9\x82\xf6\x24\x8e\x3b\xf8\x1b\x6b\x50\xb8\x63\x8f\x40\x42\xa2\x31\x6f\xaf\xcf\xc4\xf0\x04\x8a\x9b\xc6\xcb\x42\x4e\xb8\x4a\x13\xcf\x2e\x93\x85\x7a\xf6\x52\x6a\x60\xe1\x21\xaa\x74\xd5\x63\xf9\x5d\x6e\xcb\xef\x72\x78\xa8\xdf\xa8\xec\x1f\x80\x7d\xdb\x04\xbe\x20\xd4\xb4\xca\x2e\xf6\x72\xea\xcb\xdf\x71\x00\x8f\xb6\xf1\x41\x20\xad\x92\x45\xcf\x90\xba\xae\xe3\xb7\xc5\xa6\xe7\xa5\x07\x94\x0e\x19\xbb\xe6\x78\xcd\x0d\x04\x36\xc8\x16\xdb\xa3\x0e\xf2\xd0\x04\x73\x9e\x40\xfb\x28\xbd\xb8\x2f\x55\x61\x50\x00\xdb\x14\xf5\x56\x62\x48\x18\x5a\xfc\x5f\x44\xac\x9e\xdf\x31\x45\x87\x85\x9a\x20\x68\x85\x22\x01\xc2\x2c\x28\xf7\xf3\xb2\x43\x3d\x17\x42\xfe\x10\xe5\xa2\x3c\xe8\x28\xb3\x64\xcd\xf2\x50\xa1\x03\x49\x74\xb5\x10\xb4\x90\x3b\x2c\x44\x91\xf7\x52\xaa\x78\x5d\x6a\x3f\x7c\x88\x3e\x9b\x5a\x50\x00\x78\x1f\x3d\xf2\x07\xb8\x6f\x14\x67\xe6\x42\x5d\x7a\xef\x27\xe2\x28\x74\x9f\x07\x01\x40\x12\xc4\xc0\x49\x03\x79\x32\x7f\x15\xc3\xce\x5a\x1c\x93\x1a\x58\xe1\x15\x1e\x09\xe0\xc7\x36\x62\x89\x4d\xdf\x79\x7e\x96\x8d\xf9\x47\x5b\xba\xb4\xa5\xf5\x31\x23\xa8\x59\xee\xa3\x6e\x5a\x39\xe1\x80\xde\xb9\x38\xd7\x49\x0b\x07\x1f\xef\xc6\xe0\x4a\x4c\xd4\x11\xd3\xa3\xfe\x08\x3d\x0c\x51\xc2\xa0\xa3\xb3\xc3\x2f\x6a\x32\x40\x77\x23\xca\xb5\x06\xe9\xfd\xbf\x82\x1f\xee\xe4\x3b\x58\x90\x1d\xf6\x4b\x6c\x31\x1c\xe6\x5b\xb4\x90\x75\xfe\x1a\x69\xc4\xe6\x3c\xe0\x78\x51\x5c\xba\xfb\xe0\xbe\xc1\xd4\xd8\x56\xb5\xec\xdb\x52\xee\x41\x56\xb9\x98\x29\xee\xb8\xf2\x79\xe0\x60\x54\x22\x84\x2b\x7e\x2b\x17\x3e\xa3\xdb\x87\x3b\x21\x7b\xac\x62\x03\xa5\xe7\xdf\x78\x49\xa2\x89\x6b\xbd\x2f\x35\xf9\xea\x0a\x4c\xd4\x0d\xf4\x4a\x43\xbb\x4a\x24\x0c\x8d\x8d\x61\xf3\x92\xc1\xb0\xf1\xb1\xae\xe8\x8e\x05\x45\x7c\x8c\x92\xcf\x68\x18\xf4\xd9\x8f\xe3\x6a\x77\x8b\x9e\x92\x80\xc5\x1a\x20\x8d\x5a\x3f\xd4\x6a\xc4\xde\xa1\xc6\x52\x2c\xa3\xb0\xa5\x96\x23\x5a\x16\x22\xb4\x2b\x91\x1c\x05\xb7\x38\xaf\xa3\x8b\x0d\xf4\x22\x30\xa9\x9a\xfb\xde\x22\x8c\xc4\x0a\x3c\x4b\xe5\xbd\x72\x10\x2d\xf0\xc6\xd5\x84\xd6\x81\x08\x05\x63\x6a\x50\x1a\x35\xdf\xda\x53\x95\xde\x6f\x9e\xbc\x1d\x55\x27\x3e\xe3\xec\xdc\x59\x81\xce\x5b\x1e\xb5\x24\xc1\x39\xbf\xf7\x43\x69\x0d\x87\x2d\xd6\x31\xdb\x39\x90\x70\xc5\x07\x6e\x7d\x92\x20\x28\x06\x6c\x21\xe9\x6a\x91\x51\xc8\x79\x9d\x08\xc2\x5c\x89\x88\x41\x4c\xad\x1f\xc0\x6d\xbd\x83\xeb\x76\x31\x22\x1f\x39\x15\x05\x78\xf8\xbe\x16\xff\xca\x63\x3b\x40\x87\x27\xd2\x8d\x51\x39\x5d\x56\x47\x77\xf9\x58\x1c\xe0\x9b\x87\x77\xf9\x18\x8f\xf0\xe5\xf1\xbd\xe1\xb7\x69\x54\x21\x3c\x31\x9c\x7d\xb7\xdb\xd3\x34\xcf\x0e\x5a\x61\x43\x9d\x27\xc8\x17\x4f\x3e\xe1\x13\x89\xb1\xfc\x2a\xa9\xfa\x1e\x15\x3e\xf1\x8f\x17\xfa\xbf\xa1\xa8\x25\xc4\xdc\x4e\xef\xf4\x34\x28\x5c\x5a\xa9\x36\x67\x0a\xc2\x7f\x83\x3f\xd4\x42\x5b\xc7\xe5\xac\x80\xdb\x19\x23\x7b\x59\xb3\x0c\x6c\x1a\xf0\x48\x2d\xb6\xeb\xd1\x63\x18\x44\x9e\xd8\x0b\x8b\xd3\x43\xb2\x96\xf6\x53\x78\xef\x8b\xd7\x85\x21\xcf\xc0\x8c\x05\xbc\x68\x8d\x62\x0d\x41\xd3\x51\x82\x95\xbf\x48\x3c\xa9\xce\x54\x7b\x9e\x53\x15\x3d\xe3\xa4\x72\xd5\xef\xf8\x2a\xbd\x09\x92\xb0\x87\x19\x5e\xc4\xa0\x3d\x9f\x38\xd3\xa1\xe2\xe4\x4a\xfc\x21\x3f\xf3\xcf\x70\xc4\x2b\x8e\x77\x3f\x6f\xee\xe4\x7e\x2e\x2c\x15\xee\x13\x5e\x98\xf4\x95\xd1\x42\x7e\xde\x86\x5c\xd4\xaa\x85\x34\xf1\x54\x04\x14\x76\x1c\x85\x19\x68\x5a\xc0\x2c\x44\x7c\x91\x95\xd8\x20\xa4\xa2\x65\xc0\xf0\xdb\xbf\x47\x65\x8d\x38\x97\x86\x9f\xe5\xe9\x14\x63\xc1\x48\x27\x6a\x73\x43\xfe\x0b\x49\x67\xff\x55\x73\x50\x96\x65\x10\x03\x43\x9a\x53\x0b\x21\xc2\x51\xc3\x31\x53\xdf\x66\x94\xba\x2e\x88\xc0\x98\xc5\xd4\xf9\xf5\x25\x9d\xb8\x89\x1d\xe6\x52\xcc\x54\xfc\xd7\x18\x0e\x9e\x10\x38\x48\xda\xd1\xc0\x36\xff\xce\x9b\x7d\x46\xf5\x74\x24\x8e\x03\x23\xaf\x26\xf9\x61\x11\xe5\x0a\x03\x1e\xfc\x5c\x0f\x05\xf0\x31\x7f\xf5\xea\xbb\x59\x71\x77\x88\xbf\x38\xb8\xbb\xc9\xe7\xd0\x62\xc5\xb3\x48\x3d\x13\x6b\x44\xf1\x28\x55\x8f\xa4\xf1\x3a\x3e\xfc\x59\xb9\x82\x96\x68\xa4\x39\x7f\x13\x8e\x55\x73\xfd\xab\x89\x6a\xfd\xbd\xdf\x9c\x9e\x9d\x9d\x5e\xbc\x03\x47\xb5\xf1\xbb\xc9\xb5\xb6\xb1\xb4\xe5\xec\x39\x81\x2b\x1f\xda\x6a\xea\xcf\x79\xad\x65\x68\x1c\xc0\x59\x50\x7f\xa1\xdc\x56\xc4\x9e\xbe\x0f\xb6\xcd\x9b\x1b\x1f\x8b\x73\x9c\x7d\xc5\xfe\x58\x40\x53\x58\x18\x7a\x6d\x5e\x54\xab\x58\x40\xe0\x3a\x0c\x4a\xc5\xe2\x3e\xbb\x16\xf4\x47\xaf\x12\xdc\x3d\xc3\xbd\xca\x5e\x5c\x8d\xef\x4d\x76\x33\x43\xba\xec\x1b\xe1\xc5\xba\xaf\xbf\x09\x35\x49\x68\x40\xa8\x3b\x9e\x3d\x72\x1e\xc2\x46\xab\xb9\xa0\xe3\x34\xd5\x54\x1e\xfa\xf3\x4a\x77\x68\x04\x3b\x0c\x61\xb2\x2c\x76\xe7\x9a\x39\xbf\xf7\xf2\x20\x4b\x9b\xfd\xda\xd6\x44\x63\xa7\xbc\x76\x24\x71\xd9\x81\x77\x23\x64\x37\x79\x07\xb9\x64\x57\xd7\xed\x36\x87\x31\x97\xb0\x56\x28\x7c\x2d\xb0\x06\x68\xc7\x21\x81\xda\x1d\xb7\x9f\x14\x0b\xb9\xc5\xea\x06\x39\x75\x44\x36\x12\x5a\xd5\xb5\x47\x94\xfb\xc1\x3c\x86\x3d\xa3\xa0\x55\xfe\x28\x84\x6e\xd8\x3a\xeb\x91\xb9\xd0\x18\x06\xa1\xed\x1d\x95\x1b\x11\x7b\x8c\xeb\x0c\x34\x3c\x9e\xd8\x68\x8b\x79\xac\xb8\x7d\xac\x9c\xd9\x0b\x77\xf0\x3c\xf4\x71\x2f\xb0\x12\x87\x87\x3c\xe1\x18\xca\x2b\xf0\x3f\x73\x76\x7e\xc0\xce\xdf\x1c\xb0\x77\xe8\x23\xff\xee\x8d\x5e\x8e\x76\x46\x5b\xbe\xfe\xee\x0c\x6d\x2f\x8e\xcb\xa0\x56\xf3\xf9\x48\x5a\x64\x8c\xd0\xd7\xe3\x47\xb0\xc2\x2e\xa2\x71\x88\x8e\xfa\x13\x9c\x81\x26\xff\x18\x9f\x5f\x9d\x4d\xa4\x9b\x1e\x44\x74\xdb\xa8\x74\x95\xf8\x0f\xe2\x80\x72\x0d\x7f\x2b\x0f\x96\xd5\x3a\x96\x0f\x0b\x2f\x96\x97\xf0\xc7\x4b\x83\xd7\xd8\x57\x80\xc8\xba\xc3\x94\x58\x63\x5f\x62\xea\x96\x6a\xbb\xa4\x03\xb7\xb8\x0c\xd6\x62\xc1\x10\x0b\xf7\xe8\x19\x10\xee\xec\xf6\x66\x72\x8d\xbf\xae\xc6\x37\x37\x7f\xbf\xbc\x3e\x81\xc6\xef\xe6\x6d\x51\x95\x2c\xfd\x9d\x98\x40\xcb\x80\xd1\xc5\x16\x43\x05\x2c\xbe\x99\x1c\xdf\x5e\x9f\x4e\x7f\xf8\xf4\xee\xfa\xf2\xf6\xaa\x13\x9f\x0b\x29\x37\xbc\x46\xe2\xec\xf2\xfa\x1d\xc3\x98\x68\x76\x88\xc9\xc4\x5c\x31\xcb\x35\xb8\x8c\x0b\xa4\x42\xab\x96\xce\x9c\xb6\x68\x4b\x32\x06\x0a\xd4\x5e\x29\x49\xab\x10\xd6\x03\xf4\x02\x22\x29\x7a\x8b\x16\x8b\x95\x7e\xfd\x35\x15\x25\xf3\x9b\x2d\xf9\xec\xf3\x48\xda\x42\x80\x5f\xad\x8a\xa0\xd4\xc9\xbc\xb3\x1e\x1d\x49\x14\xde\xfb\x0b\x08\xf6\xe7\xa5\xeb\x70\x86\x41\xde\x04\xf9\xc2\x9d\x57\xf4\x85\x4f\xe7\xa7\x17\xb7\x53\xe9\x1b\x3c\x12\xb8\xe0\xb4\x2a\xfa\x00\xfb\x2f\xc9\x41\xfc\x0b\x8e\xf1\x2f\xb3\xe8\x25\x5c\x4c\x60\xa9\x59\x14\x80\xb9\x54\xad\x14\x3e\xc6\xa0\x34\x9c\xbd\x38\xbb\x3c\x1e\x9f\x4d\xc4\xab\xe3\xb3\xc9\xf8\xfa\x9b\xee\x69\x79\x5f\x20\xdd\x3b\xbc\x0c\x24\x3e\x12\xd3\xf9\xa8\x88\x46\xa3\xc2\x67\xc5\xec\x65\xc1\x5a\xea\x13\xa1\x0c\xc6\x68\x47\x95\x62\x59\xfc\x70\xbd\x0a\x0c\x01\x0b\x4c\x8c\xdc\x99\x38\x8a\x59\x8e\x81\x2a\x34\x18\x3a\x85\x33\x74\x0d\x3b\xbd\xbc\x80\xf6\x95\xc6\xd0\xff\x35\x1a\xcd\xfd\x14\xfe\xb2\x96\xad\x2f\x75\xfa\x18\x90\x7c\xe7\xd1\x0a\x82\x1d\xc2\x0c\x6d\x3b\x1c\x3b\x2b\xba\x62\x81\x13\x93\xa0\x67\x8b\x60\xab\xb8\x2b\x5f\x79\x81\xfa\xb7\xdb\xcb\xe9\x18\x03\x00\x4c\xc5\x1f\x67\x9f\xaa\x30\x00\x3e\x2b\x16\x87\xda\xc3\x84\x89\xe9\x57\x0d\xbe\x74\x6b\x15\x91\x63\x12\x03\x27\x8c\x62\xcf\x2f\x97\x9c\x11\x1a\x60\x5a\xf7\x8a\x4d\x64\x83\xb3\x77\x1c\x0b\x72\x32\xc6\x25\x5d\x7d\xfd\x32\x5a\x02\xee\x86\x6d\xe5\xb3\xa7\xe3\xfa\x6d\xcd\x1b\x13\x18\x61\x9f\xa6\x97\x9f\x20\xf0\xc8\xa7\xeb\xdb\xb3\xc9\xcd\xa7\xb7\xa7\x67\xdd\xbb\x88\x61\x88\xbb\xcb\x24\xb7\x2f\xea\xab\xb3\xab\xb3\xf1\xc5\x56\x17\xd8\x3a\x8a\x68\x88\xcc\xef\x3c\x48\x72\xe0\x07\x0f\xe2\x6c\xb7\x5a\xcf\xef\xaa\x54\x31\x4c\x45\xb4\xdf\xa8\x09\x1a\xb2\x51\x11\x44\xa6\xa0\x83\xc1\xb2\xd1\xcd\xbd\xf1\xba\x8c\x7e\x55\xf3\xdd\x17\x05\x31\xf4\x76\xdc\xbd\xef\xd8\x85\xc0\xb3\x80\x7b\xc9\xfc\x0e\x94\x31\xc9\x67\xf9\x6b\x34\xbf\x1b\xad\xfc\x90\x3f\x89\xe8\x8e\x43\xb0\x18\xd1\x70\xa0\x19\x65\xd1\x67\x1e\xb2\xb3\xf1\x9b\xc9\x19\xbb\xba\xbe\xfc\x70\x7a\x32\xb9\x16\xd3\xd8\x5f\x27\xd6\xd3\x39\x99\x5c\xcf\xce\x3b\xba\x4b\x04\x93\xa4\xfc\x8a\x6f\xae\x05\xf9\xeb\xed\x93\x19\x13\x07\x53\xaa\x0c\x4e\xa4\x9d\xe5\x59\x7a\x89\xe8\x0b\x6a\x39\xa4\xad\xa1\xe6\xba\xce\x88\x50\xcb\x28\x27\x55\x88\x78\xad\x42\x5d\xff\x53\x3e\x1a\xe1\x6a\x62\x3d\x43\xb7\x11\xeb\xdf\x77\x31\x9d\x43\x73\x71\x6b\x5d\x64\x77\xb0\xe2\x59\x88\xfb\x44\xc8\x5c\xbf\x37\xda\x7b\x6c\xf5\x6e\x5b\x89\xbb\x6a\xf7\x41\xb5\x35\x55\x6e\x35\x0e\x6e\xe3\x8f\xaf\x27\x27\x93\x8b\xe9\xe9\xf8\x0c\xdb\x2a\x60\x37\x3f\xdc\x9c\x5d\xbe\x1b\x9d\x5c\x8b\xf1\x30\x2a\xf4\x6a\x0c\xa2\x82\xa6\x2a\xf9\x8e\x98\x5c\xc5\xf4\x2d\xe3\x7c\x89\x21\x04\x76\x08\x90\x3c\x45\x3c\x5a\xf1\x0c\xcc\x5f\xc4\xbf\x69\xdd\x3b\xb1\x32\x85\x61\x42\x22\xde\xba\x42\x58\x42\xc6\xe8\xd0\x88\xe2\xa0\x82\x71\x50\x31\x3f\x90\xdc\x3f\x3e\x6b\xa0\x6e\x41\x89\xfe\xdb\x18\xf3\x0c\xd6\x05\x15\x41\xb2\xbc\x67\xd8\xb2\xe0\xe9\x89\xd9\x3a\x73\x56\xd7\x42\xda\xce\x72\xb5\x2e\x56\x51\xd9\x40\xc5\x3d\xda\x41\x2d\x8a\xb6\x2b\x35\x80\x5e\xd0\x43\xac\x68\x8a\x85\xf0\x2b\xe2\x47\xf0\x43\x06\xaa\x96\x52\x50\x78\x25\x62\x02\x2e\x1f\x88\x1e\x98\xae\xd3\x20\x5a\x1c\xbd\x7c\x59\x8b\x4c\x61\xa1\x5d\xfc\xa3\xef\xff\x5f\xd9\xf7\x23\x81\x33\xe0\x43\xf6\xff\x6d\x8a\x5f\xdf\x18\x20\x2f\xfe\x10\x00\x01\x75\x1a\x62\x4d\x7d\x80\xde\xfe\x0f\xb1\x88\x4e\xdf\x5f\x62\x40\xf5\xf7\xec\xfd\x64\x2c\xf6\x99\x2a\xb8\xfa\x58\xec\x51\x60\xdd\x14\x07\xc4\x38\xcf\x18\x1c\x9c\x2c\x16\xf1\xe1\x38\x90\x97\x3d\xe5\xb3\x58\x8b\x58\x7f\xcf\x46\x49\x37\xe6\xaa\xde\x76\x15\x6a\x0b\x4b\x5a\xad\xba\x24\x41\xdb\x16\x8b\x45\x7d\xc7\xd6\x69\xee\x74\x49\x98\x4c\x35\x5d\xd1\x28\x05\x12\x09\x47\x7b\x1d\x77\x04\xf1\xd2\x0b\xc5\x38\x94\xfe\xad\x44\x24\xa6\xba\xae\x88\x9a\x5b\x5f\x7b\x34\xfa\x7a\xae\x48\xa4\x6e\xa8\x4d\x2b\x44\x02\x66\x4d\xc6\x15\xa7\x59\x09\x44\x81\x4a\xa1\xe4\x8e\x56\xbb\x19\xa1\x00\xb5\x22\xd2\x13\xa3\x41\x17\xe1\x00\xd6\x9a\x5a\x5f\xd4\xed\xda\x07\x17\xc4\x36\x94\x9c\xd1\xb6\xa8\x1e\x68\x20\xbb\x09\x38\x63\x6b\xe8\x1c\x08\x90\xb4\xf5\x7a\x21\x51\x73\x5b\x4d\x7b\x32\xb2\x32\x73\x20\xd1\x70\x45\xd8\x3c\xbe\x53\x5a\xcb\x54\x93\x8e\x46\x5e\x48\x8d\x54\xd0\xff\xd1\x7d\xe0\x2d\xd8\xdb\xc9\x78\x7a\x7b\x3d\xb1\x33\x0a\x21\x50\x20\xa3\x93\x07\xa1\x1e\xe0\xec\x09\x38\x60\x7b\xb0\xb7\x9c\x51\x85\xdd\x77\x88\xfc\x01\x92\x33\x11\x18\x96\xe5\xdd\x79\xba\x37\xfb\x2e\xda\xbb\x4e\xb3\xfb\x02\x42\x53\x9a\xce\xd5\x87\x2c\xb8\xd5\xe1\xa0\x88\x26\x5e\xe9\x16\xbb\xc7\x6d\x49\x43\x55\x77\xff\x22\x2a\x22\x92\x32\x4b\x03\x3d\x38\xd8\xea\xa1\x85\xc2\x08\x48\xbf\x9c\x5e\xbe\x54\x91\x4f\x51\xbb\x59\x5a\xb9\xe1\x05\xc9\x92\x97\x51\xc2\xd0\x67\xae\x74\xd5\xac\x07\x0c\x53\x5e\x9b\xe0\xb0\x59\x05\xdb\x03\xa7\xb9\xe7\xa3\xe4\x39\xb8\xca\x15\x47\xd0\x36\x93\xb9\x0d\x7c\x45\xa4\xd0\x85\x9f\x2d\xf3\x3b\xb4\x8f\x9b\xdd\x8f\xf8\xaf\x31\x4f\x7c\xb0\x3b\xf4\x82\x97\xca\xc0\xee\x3e\x8a\xee\xbc\x44\x43\xe6\x7f\xbf\x3c\x51\x48\x53\xab\xf2\xaa\x0c\x9f\x2d\x23\x71\x2c\x63\xe7\xeb\x11\xda\xec\x59\xa8\x81\x36\x08\x35\x9b\xd4\xfd\xb3\x81\xbf\x47\xdd\x94\xb0\xbb\xfb\x6e\xd6\xe8\xc1\x1b\xdd\xcb\x7e\x94\x59\x75\x3f\x81\x5e\x4a\xfc\xc8\xcb\xf5\xa3\x88\x91\x2f\xb5\xc7\x3f\xd5\xef\x1d\x52\xb9\xea\xfd\x64\x65\x9e\x37\x34\x1b\xf2\x40\x15\x00\xc4\x81\xc1\x06\x67\xa3\x98\x0b\x1f\xc2\x34\x5c\x94\x76\xff\x7e\x2b\x2f\x56\x47\xa1\x72\x12\x72\xba\xb8\x6f\xd0\xb1\xbf\xb3\xb7\xc3\x28\x9d\xa6\xcb\xfd\x6f\xe1\x28\x94\xb2\x87\xd7\x9f\x8a\xbb\x5f\xf1\x67\xb9\x71\x87\xbf\xe1\x2a\xf8\xe1\xdb\xea\xf5\xb7\xf8\xc8\xaa\xb3\xed\x8c\x1f\xb9\x37\x44\xd5\xe1\xa4\x13\x75\x6b\x59\x3a\x47\x4b\x5b\x9b\xfe\x46\x36\x90\xdf\x1d\xb3\x43\xd9\xf2\x6b\x2b\x4d\xe6\x8a\x3a\x51\x7d\x84\x2b\x5d\x31\x3a\x1f\x19\x44\xbe\x9b\xd1\x66\x39\x3a\xa7\x3c\x59\x54\x7d\x35\xba\xbf\xe7\x18\x69\xb7\xe8\x88\x38\x31\xaa\x8e\xda\x3d\x8c\xdd\x88\x91\x31\xd7\xb4\x42\x9d\x90\x5a\xcb\xba\x71\xec\xfe\x1c\x9b\xc5\xc8\x7c\x64\x7a\x03\xba\x37\x40\x4b\xbd\x9a\x43\x80\xc5\xa4\xb5\x7b\xc6\x0e\x6d\x81\xc1\xe2\xca\x85\xe5\x62\xf2\xf7\x4f\xd6\x4b\x9b\x5d\x65\x47\x4c\x6d\xaa\xec\x8a\x4d\xf3\x91\x25\x52\x37\x92\xae\xf8\x0b\x75\x33\xd0\xb6\x99\x3e\xbb\xaa\xb9\xe2\xd0\x6a\xfc\x80\x03\xd9\x08\xbf\x1f\xd1\x9e\x32\x68\xd4\x6a\x75\x9e\xf2\x11\x51\x0c\x07\xba\xce\x92\xd4\x14\x5d\x48\xdf\xca\x51\xc3\xae\xb2\x03\xa6\x38\x52\xd3\x4a\xda\x3e\xf1\x54\xef\xb7\x8e\x93\x16\xa0\xed\xa9\xf7\xb9\x9c\xc4\x94\xff\x0b\x6e\xbf\x25\xaf\x55\xe8\xc9\x35\xc9\x88\x5c\x65\x85\xde\x5c\xd1\x9e\xbe\x74\xc6\x2f\x27\xe0\xd3\x8b\x93\xc9\x3f\x6c\x81\x6c\xd1\xd8\xac\x4e\xc6\xa6\x5c\x9f\x78\xf8\xe0\x27\x51\x08\xc7\xfb\xd1\x83\x97\xf8\xa8\x7f\xc3\x7b\x11\x2d\x34\xe8\x0d\x84\xda\x54\x64\x29\xfa\x71\xd4\xee\x77\x2b\xdd\x8d\x21\x85\x9c\x85\x3e\xb6\x24\xec\x42\x93\x2c\x45\x2f\xbf\xa4\x5d\xb9\x22\xe9\x56\x02\x0b\x40\x5d\x15\x5d\xb1\xd4\xee\x8b\xba\xb7\x93\xc6\x3a\x0e\x08\xb2\x51\x5d\x2d\xcc\x26\x17\x1f\x3e\x7d\x18\x5f\x37\x7f\x7c\x18\x9f\xdd\xda\x34\x50\x49\x8b\xe1\x83\x8d\x6a\xf4\xfe\x93\xc1\xee\x62\x84\x91\x09\xcb\xdb\x03\xd8\x6b\x5c\x5f\x9e\x4d\xac\x8e\xdd\x14\x12\x4e\x6d\x27\x4f\x12\x40\x10\x4f\x13\xd6\xa0\x8c\xf5\x9c\x90\x74\xcf\x47\xf6\xa6\x49\x56\x22\xec\x86\xa1\x93\xec\xdb\xf7\x5e\xf8\x8a\x7c\x8d\xe6\x44\xab\x07\xe2\xed\x6e\x29\xf7\x4a\xa4\xfe\x4d\x25\xe5\x86\x57\x39\x88\xee\xad\x77\xed\x86\x21\x5d\xf6\x6a\x07\xdb\x0d\xbb\xad\xac\x1b\xc7\x7a\xff\xfb\x84\x9d\xce\x6e\xcf\x66\x57\xb9\x0f\x26\x8b\x05\xaa\xb5\xb0\x23\xcf\x52\x3f\x47\xf9\x06\xfa\x5a\x6e\x28\x2c\x65\xee\x25\x6d\x66\xe5\x1c\xbd\x59\xcc\x85\x4f\xc7\xb0\xb2\xc1\x60\x4d\xc2\x05\x1f\xe5\x8c\x32\xc0\x09\x05\x12\xf2\x52\x18\x46\x3d\x03\x4a\xc8\xec\x0d\x6d\xd7\x49\x9d\xcc\x6d\xaa\x92\x5b\x3c\x0f\x07\x0c\x29\xe1\x46\xcc\x15\xf3\x50\x61\x25\x5c\xc9\xb9\xe3\xee\x1b\x5a\x62\x9b\xd0\x80\xc1\x25\x0a\xe2\x83\x84\x97\x70\x23\xe6\xd0\xb2\x9b\x17\xe1\x78\x01\x6e\xb7\xed\xb3\xab\xec\x80\x69\xa8\x9b\xd0\x0d\x4a\x03\xdf\x85\xe6\xa1\xf1\x14\x68\x81\x6e\xf3\xe4\xd7\x17\x4b\xcf\x53\x1f\x8d\x88\xc3\x77\x6d\x3d\x27\x10\x4e\x80\x04\x0a\xbd\xd0\xf5\x3e\x5f\xb8\x11\xa3\x63\x8e\xe7\xba\xc0\x14\xd2\x08\xa3\xb0\x60\x2a\x22\x54\xfc\xd4\x1a\xa2\x42\xc5\x40\xf9\x2c\x1e\xe5\x21\xfc\x61\x31\xb2\x76\xcf\xd9\xb5\x35\xe8\xa1\x22\x60\x3e\x00\x35\xbb\xba\x9e\xeb\xe5\x2c\xca\xfe\x8b\x49\xf1\x9c\xdd\x5c\x35\x62\x54\x02\x3c\x09\x58\xf2\x84\x24\xa5\xd8\x4d\x6c\x87\x61\x88\xbb\x76\xb0\xcd\x50\x07\xd0\xe1\xe1\x8b\x80\x91\x89\xf5\xe7\xb5\x24\xd2\x13\x63\xef\xd0\x03\xae\xe4\xfa\xe2\x1e\x32\xf4\xc0\x10\xa4\x5d\xbb\xbf\xc1\xb0\x1c\xa7\xa2\xf3\xf1\x3f\x46\xc5\x58\x1d\xb5\xbb\xae\x5b\x0c\xf7\x3d\x4d\x49\x4f\x20\x0d\x78\x99\xde\x79\xa9\x3f\x1b\x95\xa1\x3a\x1a\xd2\x6c\xbf\xef\x3f\x67\x0d\xea\x1a\xac\x77\x57\x35\x72\x1b\xd8\xb9\xba\x93\x97\x8d\x63\xa9\x6d\x37\xf9\x1a\xda\x6f\x07\xce\xb9\x03\xb7\x21\xa1\x73\x4e\xaf\x61\xbf\x38\xb9\xbe\xbe\xbc\x86\x16\x1b\x4f\x21\xd7\x82\x68\x26\x74\x88\x85\x98\xb6\x57\x5e\xb6\xfc\xf2\x45\x34\x0f\xe4\xdb\x4f\x12\x43\xd8\xed\x9e\xd4\xec\xa7\x75\x2f\xc4\xa0\xba\xd8\x50\xa9\x60\xce\x2a\xcb\xcd\xe8\x9e\xc1\x24\x54\x5e\x0c\xe2\x24\xa4\x47\xec\x4e\x89\x84\x76\x18\xa4\x5f\x0d\x4a\xf6\xe2\x44\x06\x86\x3f\x62\xc5\x64\xc9\xe7\xdf\x0c\x83\xbd\x8b\x36\x45\x22\xf8\xb4\x98\x24\x61\xe5\x25\x9f\x79\x26\xe8\xcf\x78\x15\x96\x09\x02\x19\x43\x40\x45\xaf\x4a\xe6\x6a\x4e\xa6\x31\x00\x45\x27\xf4\x98\x02\xc9\x0f\xef\xa3\x64\x85\x58\x30\x1a\xff\x56\x18\xf2\x5e\xe2\x0c\xc5\x82\x2a\xdf\x20\x03\x63\x0f\x23\x18\x58\xa4\x31\x9f\xf9\xf7\x90\x21\x35\x5b\x32\x38\x4f\xca\x14\xf7\x78\xb4\x64\x11\x66\xf4\x4a\xf5\x71\xc2\xdd\x88\xf4\xc2\x08\x53\x2c\x1e\x8a\xe7\x55\xd6\x8a\x13\x79\x38\x9e\x9b\xd2\xc3\xf6\xa2\xe5\x8c\xb8\x3c\xed\xdf\xf9\x59\x8a\x2c\xa0\x4d\x5e\xca\xa6\xb1\x07\x6b\x4b\xc6\x1e\xe7\xd2\x0b\x17\xb0\xe8\xb3\x07\x9f\x3f\xca\xec\xf2\x85\xc1\xd3\x2c\xca\xc3\xec\x00\x26\xaa\xcf\xea\xa6\x31\xf0\x57\xbe\x78\x02\x7c\x57\x7c\x05\x3e\x4f\xf8\x44\xa6\x04\x37\xa7\x49\xd9\x1d\x23\xaa\xac\xf5\x01\x23\x09\x6e\x25\x6f\xe9\x92\x82\x44\x82\x8a\x0f\x5d\x57\x8b\x8d\x55\x17\x12\x4d\x61\x1a\x4f\x30\x8e\x2f\x68\x98\x52\x29\x98\x0b\x13\x78\xf2\xd9\x67\x20\x83\x79\x57\x40\xc5\x6c\x66\x6a\x2c\x6d\xcf\x55\x79\xf5\xbd\xe7\x81\xa1\x97\xb6\x16\x22\xf3\x80\x15\xa5\x93\x47\xd8\x28\x64\xbd\xa9\x55\xb5\x21\xd7\x9f\xfa\x1b\xb3\x02\x86\x0d\x07\x45\x0e\x0d\xa6\xae\x18\xc4\x3a\x86\x89\xbb\x43\x0f\x83\x24\x1d\xbf\x2d\x1c\x1c\x5f\x7a\x81\xef\xa5\x87\x8c\x5d\x4b\x2b\x75\x20\xb0\x41\xb6\x70\x85\xec\x20\x0f\xf9\x40\xe6\xa2\x23\xd6\xc2\x32\x65\x69\x51\x40\x2e\xb9\xb8\x10\xa4\x86\xb4\x71\x03\x0a\xf6\x64\x22\xf5\xfd\x88\x29\x26\x67\xac\x7d\x1c\x56\x7a\x6a\x8a\x53\x18\x64\x89\x84\x3f\xe5\x7e\xe5\xb9\x90\xf2\x87\x28\x87\xc9\x33\x98\x0b\x76\xeb\xea\x52\x09\x87\xa8\xa6\x16\xa2\x86\xdc\x76\x85\x2c\x32\xbd\xa3\x2a\x5e\x17\xdb\x0f\x1f\xa2\xcf\xa6\x26\x14\x00\xde\x8b\xfd\xeb\x03\x04\xc6\x82\x6c\x91\xe9\x12\xa1\xdc\xfb\x89\xd8\x73\xdd\xe7\x41\x00\x90\x04\x31\x98\x10\xa5\xff\xac\xbf\x8a\x21\xe1\xa4\xd8\xba\x34\xb0\xc2\x2b\xcc\x21\x02\x3f\xb6\x11\x4b\x6c\xfa\x9e\x63\x68\xc5\x3f\xda\xaf\xad\xfd\xa8\xdd\x14\xf3\x8d\x42\xe6\xfc\xee\x39\x6d\xbb\x24\x65\xf2\x8c\xe1\xba\x11\xe8\x88\xa6\x90\x7b\x84\x74\xe9\xbd\x66\x68\x56\x05\x52\xb7\xf8\x60\x9b\x72\xeb\x0f\x40\x91\x88\x1e\x53\x29\x01\x03\x58\xac\xaa\xd9\x44\x99\xf0\x1f\xc8\xbe\xb2\xf2\xd6\xe2\x88\xf1\x19\x42\xc2\x3d\x2e\x21\xf3\xaf\x71\xf9\x1b\x8a\x2e\x41\x92\x30\xe4\x33\x8c\x7c\x37\xcf\x57\x31\x66\xea\xe6\x33\xcc\x80\x03\x8e\xba\xb8\xdd\x19\x36\x23\x94\xe9\x5a\xf0\x49\xc1\xb8\xb4\x59\xe6\xf9\x38\x28\x9f\xb6\xb1\xf6\x89\x82\xd0\x4a\xf1\x1a\x7b\x72\x94\x27\x33\x95\xf0\x5a\xe1\xba\xc1\x47\x02\x9d\x4c\xd0\xa5\xec\x8e\xd4\x4b\x99\xf7\x5d\xbe\xdc\x51\x1e\xb4\xaf\x09\x1a\xa1\x3d\x61\xbd\x80\x39\x17\x2c\x5e\x30\xdb\x9f\x26\x8d\xdb\xc7\x70\x02\x99\x9b\x8f\x58\xb7\x9a\x73\x08\x9a\x0e\x12\xcc\xc4\x07\x68\xce\xc4\x47\xac\xd0\xa3\x46\x76\x80\xed\x49\x38\xe0\x9b\x43\x5c\x4f\xd4\x88\xc3\x92\x31\x93\x59\x00\x99\x38\x04\xe1\xd9\x64\xee\x8b\x59\x09\x82\x80\xfc\x3f\x16\x38\xe9\xa4\x1c\xf0\xde\xcb\xb4\xa4\x2a\xc7\x25\x93\x91\xac\x2c\xc0\x75\xd4\x73\x46\x22\x86\x0b\x74\xf5\x39\xee\x4f\xca\x59\xe8\x39\x0c\x9a\x22\x95\x89\x35\x3a\x12\x2d\x57\xc4\x78\xb6\xc7\x74\x70\x78\x92\xa8\x7a\x7f\x95\xaa\xdd\x16\x30\x89\x94\x2b\x5e\xdd\x30\xc5\x84\xb9\x6a\x28\xd7\x9b\xcb\x16\xbc\x3b\x5d\x67\x49\x1a\x33\x66\x39\xb1\x8a\x2f\xfb\x9b\x3c\x78\xc9\x19\x96\x20\x02\x9d\xa0\x03\xf6\xd8\x4b\x52\xce\xc4\x6e\x1e\x15\xb5\x61\xbe\xba\xe3\x72\x72\x3c\x0d\xc5\x0e\xce\x0a\xad\x3d\x09\x07\x7c\xe2\x43\xfa\xe2\x50\xf9\x1b\xaf\xab\xc2\x2d\x40\x75\xd4\xeb\x85\x44\xde\x0c\x9a\x14\xcb\x56\x95\x1c\x30\xa8\x65\x5c\x74\x83\x43\x5c\x23\xc6\xb1\x6f\xbb\x30\x76\x57\xa5\xe1\x09\x9f\x67\x45\x90\xe8\x8c\xaf\x62\x3c\x81\xe0\x9e\x2d\x8f\x21\x9e\x93\x19\x91\x75\x65\x3a\xa6\x28\x16\xa7\xdc\x4a\xe5\xdc\x71\xd4\xb2\xa9\x44\xc7\xf0\x98\xf8\x42\xb2\xdf\xfc\xd8\x92\xbd\xae\xbc\x3d\xe7\x22\x5a\x77\x29\x83\x9e\xa9\xa1\x28\x9d\x9f\x8a\x35\xe9\x83\x5e\x09\xf7\x91\xf0\x11\x03\x48\x9b\x09\x4a\xa6\x6e\x10\xb6\xf5\x9d\x91\x65\x4b\x4f\x74\x35\x2f\x2c\xd3\xaf\xdf\xad\x19\xe8\x3f\x04\xaf\x94\xbd\x40\x9b\x80\x51\x14\x06\x6b\xc3\x55\x69\x7f\x8a\x74\xf4\x21\x7f\x44\x2d\x79\x37\xaa\xed\x92\x74\x6e\x82\xf4\x1c\xa2\xc2\xa1\xe1\x34\x7c\x01\x3c\x99\x1b\x2f\x46\x08\x55\xe9\x78\x9a\x49\xc2\xbb\x41\xe8\xca\xbb\x70\x96\xfb\x06\xcc\x49\xda\x11\xfc\xc9\xa6\x8e\x3b\x02\x69\xb6\x66\xcf\x7d\xb3\xbc\x3b\xe7\xee\xfb\xa4\xee\x1a\x0e\xdc\xcd\x17\xe3\x9a\x62\x74\x3e\x10\x8f\x5e\xf6\x56\x98\x74\xd4\x2e\x8b\x38\x6b\x51\x68\x90\x11\xe2\x45\x61\x79\x24\xa8\x5d\x1e\xca\x99\x67\x29\x4e\xe1\x77\x5c\x2c\x57\x71\x9e\x2e\xe1\xb6\x3f\x9f\xcd\x78\x9a\xa2\xe6\xd5\xb0\x23\x19\x94\xb8\x83\x4c\x62\x76\xb4\x00\xd7\x28\x45\xe3\x02\xa7\xd0\x2d\xf1\x40\x21\x52\x1c\x55\x53\x9e\x41\x21\xb4\x41\x80\x52\x66\x38\x3d\xc8\x39\xe0\xde\x53\xde\xfc\xdd\x33\xa4\xcb\x7e\x67\x48\xd6\x6e\x25\x8b\x35\x01\x3a\x36\xb5\xe2\x83\x5d\x05\xfe\xa5\x5a\x00\x46\xcd\x56\x6b\x39\x7d\x87\xc1\x18\xd0\x65\x1b\x46\x80\x5d\xa3\x94\xc6\xc7\x82\xe2\xdf\xe0\x8f\x3e\x48\xe9\x94\xe8\x68\xe5\x9a\x20\x28\xbe\x8f\xd2\x2c\x34\x7c\xcb\x21\xc7\xf2\x4e\x99\x0e\xd2\x06\xae\x62\xf4\x44\xd2\xdc\x15\x02\xe9\xe2\xc9\x27\x7c\x52\xca\x9e\x97\xb2\x77\xc3\xec\x45\xd4\x45\x86\xcd\xbd\xa5\x22\x7f\x2c\x97\x21\xf8\x6c\x96\x0d\xec\x40\xca\x1d\xaf\x72\xba\x10\xd4\xfb\x74\x6d\x37\x6a\xee\xa8\x4b\xdb\xae\x2d\xb5\x21\x79\x7d\x74\xff\x3e\x7b\x01\xe1\xd0\x46\x98\x5c\x42\xb7\x62\xb9\x7d\x5e\x77\x92\x0e\xf8\xb1\x99\x5a\x57\x81\xe1\xd6\xf3\x81\xc8\x5b\x9b\x3a\x34\x85\xdb\xe8\x03\x6d\xdd\xc5\xb9\x73\x0e\xc5\x80\xfe\xe1\xa4\xb1\xe0\x46\x06\xdf\x27\x19\xa1\xfb\x47\xe2\xd8\x5a\xe5\x15\xaf\x24\xd9\x4f\x60\x2a\x31\x0a\x66\x95\x83\xd0\x60\x4a\xde\x56\xc6\x85\x03\x7b\xe4\x09\x67\x09\xff\x45\x99\x1a\xc4\x01\xf7\x52\x8e\x16\x54\xde\xc2\x33\x19\x6a\xb9\x11\xb1\xc7\xa8\xce\x93\xc7\x6f\x21\xbe\x7e\x79\x8d\x22\x35\xf4\x1f\xe4\x2f\xd3\xc6\x84\x58\xdd\x05\xd7\xf1\x59\x83\x30\x09\x54\x77\x5d\x32\xa2\xab\x4e\x2b\x63\x6d\x41\x32\xaf\xc2\x66\x98\xcd\x7d\x79\x8d\xb2\xf2\xb2\xd9\xb2\x93\x73\x57\x35\x02\x8e\x34\x8b\x56\x75\x13\xfa\xb5\xbc\x8e\x7d\xc1\x0f\x17\x87\xe0\x86\x56\xbe\xfa\x06\xcc\xd4\xdf\x9d\x4e\x31\x77\x88\x7c\xfd\xbc\x25\x4d\xc7\x92\x8b\xcd\x54\xae\xfe\xa9\x6a\x83\x6b\xe8\xfa\x50\x94\x7b\x5e\xd2\x79\x73\x3d\xbe\x38\x7e\xdf\x93\xdc\xff\x3b\xe7\x0f\x3c\x88\xe2\xe7\xb8\x0c\x3e\x2f\x7f\xdd\x89\x86\x9b\x2d\xbf\x31\x68\x61\x7a\x49\xee\x80\xb4\x5d\x5f\x6f\x5e\x7f\x25\xc6\x25\xf7\xc0\xe0\x51\x9a\x4f\xce\x82\x7c\xce\x0b\x3b\xdd\x84\xff\x33\xe7\x69\x76\xc0\x30\x5d\x8e\xba\x34\x90\x7e\x11\x82\x3c\x5b\xe5\x41\xe6\xc7\x90\x84\xde\x5f\x99\xa2\x67\xed\x88\x8d\x75\x2f\x94\x71\x54\x6e\xb4\x00\xb7\xde\xdb\x53\xf6\xd2\xe5\x5d\xe4\x25\x73\xbc\x30\x16\xdf\xcf\x30\xab\x18\xcb\xda\x73\xe4\xf7\x60\xc4\x22\x2f\x4e\x12\xae\x4c\xa7\x70\xe3\xa6\xe7\x6c\x53\xc7\x0d\x81\xdc\x16\xb8\xe0\x30\xd7\x24\xa0\xc1\x64\xa7\x36\x57\x87\xa6\xa2\x74\x7e\x1d\xc6\x3d\xda\x72\x74\x4e\x5d\x8d\xda\x5e\x8c\xce\x07\x55\x18\xdd\x7c\x36\x8a\xd1\xf9\x10\x2e\xa9\xac\xea\xb8\x23\xe8\xb8\xa4\xea\x2c\xef\xce\xb9\xf3\x92\xca\xa2\x86\x03\xf7\xfa\x89\xd5\x82\x75\x7b\x71\x07\xbe\xc6\xcb\x31\x5d\x31\x47\x3e\xea\x14\x3b\x87\xc9\xc6\xaf\x7c\x46\x42\xb1\xa7\xf1\x17\x72\xc1\xa9\x97\x93\x56\xa7\x41\xd0\x15\x03\x92\xed\x86\x8b\xed\x5a\x5d\x72\x37\x5e\xab\x6b\x4a\x91\x5b\x12\xed\x01\x64\x32\x60\xa6\x92\x01\xe3\xc6\x44\x80\x5c\x46\x70\x64\x80\xdb\x36\xd1\x39\xd4\xe6\x30\x8e\x39\x9a\xa4\xc9\x1b\x27\xbd\x2d\xc2\xd0\xe4\xc9\x72\x99\xdd\x25\x35\xa5\x1c\xb8\x98\xae\x0b\x35\xa5\xa8\x5c\x66\x30\x19\x80\x43\x42\x17\xa3\x96\x82\x44\x5e\xa9\xbd\x4d\x43\x77\x05\x1a\xef\x7d\x5e\x2f\xee\x9e\x21\x5d\x76\xd7\xeb\x45\x3a\x01\x3a\xb6\x01\x74\xa9\xbd\x68\xd1\x11\xf7\xd2\x92\x3a\x52\xa1\xa3\xec\x7d\x69\xd8\x83\x12\x1d\x6d\x79\xf1\x75\x0d\x7f\x58\x02\x33\x56\xea\x81\x01\x4f\x55\x34\x04\xdb\x55\xe8\xfc\x87\xbc\xaa\x1b\x86\xa8\x8b\x0c\x36\xf7\x6b\x36\xb0\x69\x74\xdc\x91\xf6\xba\xa4\xeb\x49\xcd\x1d\xf5\x1e\x35\xff\x7b\xe5\xed\xd0\x22\xfa\x2b\x2d\xb7\x2f\xe9\x48\xcf\x15\x79\x79\xb3\xd0\xf4\x70\xa8\x9e\xa3\x7b\x83\xfb\x47\x1b\x92\x09\x5d\xc6\x21\x6e\x62\xfa\x11\x23\x60\x4e\x67\x89\x8f\x91\x6e\x8e\x6a\x7d\xbc\xf6\xd8\x38\x71\x51\x2a\xdb\x63\x92\x91\x6c\x98\x87\x16\x88\x45\xbc\x92\x52\xa7\x59\xf7\x84\xd1\x43\x73\xa1\xe1\x8a\x10\xce\x57\xe5\x44\x21\x38\x6d\x85\x5b\x89\x42\x7c\x5e\xd8\x8a\xdb\xa2\x76\xa7\xdb\x4f\x92\xb2\x99\xea\x0c\x69\xa0\x3b\x48\x90\xf1\x81\x52\xa0\xe6\xa5\x01\x2a\x01\x19\x02\x03\xed\xf0\xa1\x2d\x54\xfc\xf4\x4e\x98\x0d\x4a\x0e\xca\x84\x1a\x19\xc1\x1b\x6d\x40\x8b\xc4\xf4\x2c\x8d\xe4\xf9\x5b\x66\xd7\x58\x7a\x0f\x8d\x56\x09\xe7\xa8\xa0\xcf\x53\x59\x5b\x55\x32\x4c\x01\x3b\x64\x45\xfc\x00\x78\xb4\x93\xe4\x21\x8e\x17\xf4\xbf\xdf\x21\x6c\x83\x57\xb7\x5b\xd4\x2e\x95\xa4\x25\x69\xd7\xfc\xdc\x25\x87\x86\x15\x23\x4d\x06\xc6\x13\xb0\xb4\xfc\xef\x6b\x63\xb2\x06\xc6\xe2\xe8\xb9\x07\x96\x7b\x92\x1f\xba\x5d\xbf\x33\xe3\x9e\xd9\xf7\x6a\x97\x96\x1e\xda\x85\x70\xf0\xc6\xd9\x39\x06\x4a\x0b\x7d\x56\x01\xd0\xe4\x9d\xec\xb7\x7f\xfa\xf3\xf9\x01\x7b\xfd\xea\xdb\xef\xe1\x9f\x77\x06\x2d\xa7\x7d\x4d\x0a\x1a\xb8\xe8\x85\x4b\xd4\x40\x9c\xab\x30\xb8\x4a\x26\xe6\xc3\x32\xce\x84\x09\x8d\x6d\x4d\x7b\x34\x91\xf2\xfd\x0f\xa2\x04\x9c\x43\xc5\x59\x3a\xce\xf5\xae\xe4\x5d\xc5\xa9\x7c\x57\x5e\x5c\xdc\x43\x61\x70\x08\xe5\xb2\x85\xb2\xc9\xa4\xd4\x85\x56\x19\xd7\xd8\x38\xe1\x0f\x7e\x24\x04\x46\xaf\x90\x54\x46\xa0\x91\x55\x0c\x9d\xd3\xc8\xca\x61\xc9\x95\xf4\x64\x26\x23\xe5\x99\xe1\xdd\x83\xbb\x0d\xa0\x32\xae\xf9\xf6\x35\x09\x0d\x39\xcb\x21\xa3\x13\x32\x01\x7f\x20\x9b\xfb\x6b\x9b\x3a\x04\x04\xa8\xf0\x93\x03\xa4\x16\x71\xd8\x30\xac\xba\x6b\x10\xb9\xa7\x47\x1d\xcc\xea\x05\x08\xb4\x1f\x43\xf0\x02\x66\x5e\x06\xce\xc1\x99\x28\xee\x07\x7c\x5e\x84\xec\x80\xa0\x18\x10\x24\xfa\x56\x06\x38\x43\x6b\x08\x0c\x2d\x74\x50\xc6\xb3\x4a\xf1\x83\x7b\x0f\xa2\x1e\x96\xc1\x5e\x0c\x8b\xc1\xc2\x7f\xe0\xd8\xf4\xa6\x7e\x6b\xc1\x9d\xca\x3b\x88\x66\x5e\xf0\xd2\x0f\x45\xa7\x0b\x79\xe6\x60\xe9\x59\xa0\x2a\xc3\x27\xa9\x58\x21\xcf\x53\x36\x83\x50\x83\x69\xbe\x62\xf3\x88\xa7\x95\xb1\x11\xa6\x61\x66\x2b\x9e\x79\x73\xcf\x74\xfb\x3d\x18\x61\xfb\xef\x9b\xaf\xe2\x46\x3c\x24\x68\x43\x2e\x5a\x1c\xe6\x15\x19\x01\x48\x0f\x97\x52\xd7\x1a\xd1\xe4\xe2\xc3\xe9\xf5\xe5\xc5\xf9\xe4\x62\xca\x3e\x8c\xaf\x4f\xc7\x6f\xce\x26\x0c\xb3\x4a\xe8\x6d\x5e\xac\xea\xf4\x42\x70\xa3\x1f\x5d\x5d\xc5\x6d\xbb\x55\x15\x68\x5d\xcf\xaa\xa5\x88\xbd\x58\x72\x9c\x94\x51\xc8\xe5\xc2\x55\xee\x53\x95\xdd\x52\xaa\x16\x9e\x34\x8e\xc2\xd4\x70\x83\xdc\x93\x1a\x15\xf5\xfb\xe9\xf4\x0a\xcc\x7d\x7f\x5d\x17\x81\x3c\xc1\xc2\xb2\xe0\xd2\x85\xd2\xb6\x36\x15\x55\x1f\x7d\x88\x0b\x09\x47\x7c\x83\x69\x43\x86\x22\xdb\x4b\x0e\x9a\x2e\xc4\x81\x02\x15\x9d\x10\x51\xe5\x54\x92\xbb\xc2\x2e\x2c\xfa\xf2\x54\xce\x4d\x1d\x0c\x84\xd3\xe1\xf6\xea\x97\x36\x1a\x0e\xb3\x56\xb8\x2f\xe5\xcb\x0e\x39\xd1\xda\x7d\x7f\xaa\x97\x5d\xb3\x73\x96\xbb\xaf\x16\x84\x2e\xfa\x0e\x38\xee\x47\xfa\xde\x6a\x97\x3d\x73\xef\xd3\x2a\xfb\x56\xba\x3c\x05\x04\x42\xfb\x3c\xb0\x22\xc7\x30\xba\x5b\x78\x4a\xf9\xc7\x1e\xbd\x54\x05\xa4\xca\x4c\xb2\xd1\xaa\xdb\xe3\x82\x83\x93\x9c\xf2\x65\x30\x54\xdc\x05\xe9\x71\x74\x14\x27\xf2\x9d\x15\xfe\x4c\x55\x24\x07\x71\xa4\x3b\xd2\xfb\x1e\xd8\x56\x73\xc5\xa1\x04\xb2\x49\xe0\x43\xa8\xe9\x8a\x26\x53\x01\xb8\x2c\xe2\x6c\x12\x6a\xba\xa2\xe9\x08\x1f\xd6\x51\xda\x99\x6b\xcb\xfd\xea\xa1\x55\x24\x4f\x77\x42\x44\xac\xf3\x56\x8b\x34\x39\x3e\x09\x48\xe9\x64\x5c\x71\xb6\x9b\xa4\xd9\xc5\xad\xeb\x43\x8a\x8a\xb7\x8c\xd0\x8c\x43\xab\x1a\x59\xa6\x43\xb1\x7d\x4d\x67\x34\xf2\xfc\xea\x04\xc7\x54\x95\x88\x07\x42\x51\xe2\x6a\x57\x2a\xb4\x60\x93\x43\xf9\x88\x24\x0a\xbd\xd1\x49\xf3\x70\xeb\x89\x95\x42\xc0\x11\x5b\x11\xd4\x1f\x4c\x35\x56\xf3\xa2\xe7\x5a\xe2\xea\xaa\xec\x88\xa9\xff\xd0\x74\xa2\xe4\x88\xb6\x33\xd4\x6e\x57\x71\x47\xbe\x9b\x9b\xb4\x6a\x7a\xb4\xb3\x8c\xe9\x49\x6d\x60\xd4\xbd\x81\x0e\x80\xad\xcd\x30\x8e\x8c\xcf\x96\x08\x11\xe3\x42\x06\xf4\x82\xeb\xa1\xc0\x9f\xc9\x4b\x9a\x34\x17\xc3\x0f\x22\x72\x77\x40\xb3\xac\xeb\x88\xa8\x98\x04\x30\x2d\x9c\xbc\x91\x93\xaa\x7a\x21\xf3\x5b\xb1\xfd\x92\x09\x1c\x2d\x21\x52\x89\x39\x62\xc6\x88\xae\x10\x7a\xd7\x12\x56\x4b\x79\x47\xce\x4a\x9c\xe2\x82\x42\xca\x08\x77\x16\xd6\x5f\xd1\x8a\x02\x11\x9d\xa0\x07\xdb\x04\x3f\xe1\x70\x05\xd8\x01\x44\x57\x98\xc8\x53\x74\xbf\x74\xe9\xe1\x61\x15\x92\x62\x77\x30\xd5\x96\x26\x72\x85\x58\xba\xcd\xfd\xa5\x31\x08\xae\x5d\x25\x22\x06\x08\x49\x6d\x29\x76\x7b\x51\x47\x7e\xca\x45\xdb\x92\xe5\x56\x69\x2a\x57\x9e\x40\x68\x6b\xfb\x13\xb5\xa9\x02\x95\x77\x12\x81\xfa\x03\xb7\x00\xe5\x18\x01\x95\x07\xc4\xfe\xee\x82\x61\x57\x97\x88\x48\x9c\xc0\xe6\xdb\xa7\x75\xeb\xd5\xc5\xbe\xba\x23\xae\x62\x5b\x6e\x89\x63\xbb\x78\x4f\xbe\xd8\xcc\x44\xe6\x1b\x75\x86\x40\x60\xdb\x49\x6c\x2b\x93\x31\x85\xde\xaa\xff\x29\x9a\x4e\x86\x8c\x13\xc7\x27\x2e\x8d\x36\xdf\x4d\x53\x9a\xcc\x35\x8d\x82\x87\xd2\xbd\x87\x32\x7a\xba\x2b\x12\xb1\x60\xc0\xfc\xfe\x5f\x8a\x4e\x86\x8c\x13\x54\x50\x1b\xbb\x3f\xcb\xf0\xfc\x0e\x14\x9c\xd1\xf5\x6d\x46\x32\x1d\x22\x52\x08\x82\x8f\x4a\xc5\x88\xae\x91\xb4\xac\x4b\x44\xf4\x9b\x1f\xc7\x1b\x5f\xa5\x03\x87\xb1\x06\x8d\xfb\x11\xbb\x88\x64\xc0\x1b\x4c\x4d\xd7\x69\xa6\x68\x57\x89\x8a\x01\x22\xc6\xcc\xc1\xd0\x82\x3d\x7a\xb2\x89\x91\x64\xba\x0e\x67\xec\x97\xe8\x0e\x73\xd9\x88\xa2\x68\xc4\xf6\x1c\x9a\x1f\xbc\xf9\x53\x7d\x80\xa4\xa1\xc8\x52\xe5\xb0\xeb\x47\xfd\xfa\xcc\xaf\x7c\x96\x4b\xd7\xed\xc4\x7b\xac\x62\xf2\xcc\xa2\x30\x13\xbb\xf8\x51\xb6\x8e\x21\x07\x6f\x86\x97\x69\x55\xff\x78\xf9\x4b\x2a\x0e\x8b\x77\xeb\x22\x79\x91\x1e\xe1\xd0\xf4\x09\x92\xc5\x18\xf0\xac\x71\xbc\x95\x37\xff\x9e\x3c\x47\x46\xf7\xec\x33\x5f\xbf\x94\x09\x0a\x63\xcf\x4f\x52\x95\x67\x8b\x45\x33\x0c\x98\x3d\xaf\xa7\x39\x62\x21\xf7\x12\xb1\x44\xc0\x57\xfe\x61\x15\xdc\x84\x62\xd4\xf0\x4c\x7c\x69\x83\xec\x7b\x47\xd0\xab\x75\xd2\x06\x38\x92\x58\xba\xaa\x74\x3c\xe5\xf4\x5c\x52\x84\xde\x21\x1b\x8a\xfd\x8f\x8f\xf9\xab\x57\xdf\x71\x99\x53\xf2\x40\x4c\xea\x19\xf3\x33\xbc\xe6\x43\xdf\xbf\xa9\xe8\x4c\xa6\x7c\xe4\xbb\x61\xe2\x24\xe3\x55\x22\x0e\x8f\x49\xb6\xde\x80\x71\x17\x45\x01\xf7\x0c\x71\xfd\x9c\x68\x0c\x89\xb0\xe8\xb7\x69\x96\x88\x19\xd0\x90\x4e\xa8\x17\xad\x21\x11\xcb\xdc\x4e\xdb\x1f\xb2\x28\x4e\xe9\x35\x43\xb1\xb0\x96\xef\xed\xf8\xf4\x6c\x72\xa2\xc5\xb6\xf9\xda\x9e\xee\x64\x3c\xbd\xbd\x9e\xb0\xb7\x67\xe3\x77\x7a\x73\x51\x4d\x29\x7b\x2e\x68\x85\xcc\xee\x79\x36\x5b\x36\x76\x61\xa9\xdd\x35\x25\xb9\xbe\x33\x32\x79\x23\x90\x5a\xee\x80\x89\xb5\x9d\x51\xf1\x07\xb1\x46\xba\x82\x32\x57\x76\xc6\x14\x25\x8b\x91\xb4\x1e\x93\x59\xe2\xa5\xd1\xc5\x65\xb2\xb8\x16\x7f\x4e\x23\xe5\x78\xa2\xbc\xb7\x9c\xbe\xf2\x00\x1c\xfa\x48\xe7\xda\xde\xa6\xaa\xce\x78\xa4\x47\xcb\xa1\xc5\x91\x96\x50\xd3\x19\x4d\x33\x6a\x82\xe3\x20\xb6\x23\xe2\x8e\x11\xee\x57\x5a\xfa\x0f\xde\xbb\x0c\xd6\x47\x07\xe2\xd2\x4f\xca\x7a\xdb\xd9\x5d\xee\xb9\x92\xa1\xe2\x14\x0b\xa3\xca\x94\x87\x1b\xf9\x7b\xa5\x6c\x81\x98\x8f\x9f\x0a\x7f\x0c\xb3\xee\xd7\x9d\x90\x3b\xd6\x62\xa3\x7d\x00\x11\xdd\x94\xab\x8c\xcc\x13\xc9\xc3\x07\x3f\x89\x42\xb8\xd8\x28\x6d\xcd\x0c\xca\xc0\x01\x29\x3b\x48\xa3\xee\x44\xcc\xf7\x08\x5d\xc5\x1d\xf8\x4a\x5f\xb5\x08\x43\xc0\xd8\x7f\x5e\x63\x2d\x7b\x14\xca\xbe\x19\xee\x03\xe5\x9f\x6f\x03\x0f\x42\x64\x28\x4f\xf4\xb9\x7e\x7f\x47\xa9\xda\x1f\x8f\x34\xce\x76\x81\xb3\x5d\x93\x8a\x46\x7f\xc5\xb3\x5d\xc0\x9e\x36\xdc\x81\x62\xfe\x57\x54\xde\xa0\xd3\x58\xb0\x3e\x10\xdd\xea\xb3\x38\xd9\x83\x24\x68\x4a\x0e\xa5\xf8\xaf\x3e\x7a\xba\x64\xca\xa5\x2d\xf6\xc4\x37\x37\x99\xad\xea\x68\x2b\x2f\x37\xa5\x3c\x9b\x17\xce\x6f\xd2\x09\x4c\xe5\xe5\x04\xc5\x7b\xe1\xbb\xa6\x4d\xcf\x6f\xb4\xd8\x7f\x1b\x41\x88\xda\xb9\x8c\xa7\xf7\x62\x2e\x1d\x32\x63\x41\x37\x96\xee\x3b\xb3\x28\xbc\xf7\x55\x92\x56\xbd\x03\xa3\x23\x15\xfb\xf6\xaf\xe8\x83\x7e\x01\x72\x1f\x83\x8a\xaa\x4e\xd6\x06\x5b\x77\x5d\x22\xa2\x95\xbf\x48\x3c\x57\x48\xb6\x95\x89\x98\x44\x0f\x97\xb3\x8d\xcc\x7e\x56\xd0\x96\x5f\xa3\x03\x92\x65\x5d\x6b\x44\xef\x26\xd3\xe9\xe9\xc5\x3b\x76\x33\x1d\x5f\x4f\x0d\x47\x3c\x6d\x39\x7b\x4e\x67\x97\x6f\xc6\x67\xec\xf2\x6a\x7a\x7a\x79\x61\xf0\xcf\xd3\x96\xb3\x1d\x30\xef\x94\x29\xc2\xe5\xb8\x8c\x02\x66\x1a\xdd\x5d\xc5\xed\x05\x2c\x0c\x59\x20\xd2\xaa\xdc\x5d\x2a\x27\x70\xb1\xb6\x7d\xe6\x99\xd8\x86\xcd\xb8\x0d\x12\x7b\x02\x74\x6c\x71\x9c\xee\x2a\x84\xe5\x4e\x78\x90\x25\xac\x1d\xce\x0f\x0f\x0d\xb6\x82\x9d\xe5\xc9\x9c\xd5\xf1\xdb\x90\xda\x85\xd6\x8e\xce\xf4\xc8\xc8\x79\xcd\x77\xa1\x0c\xcd\xc0\x7e\xdf\x43\xd8\xd3\x27\x40\x40\x6f\x1d\xd4\x60\xec\x02\x94\x45\xf7\xdc\x0f\x73\x72\x9b\xc0\xe6\xe6\x69\x7a\xca\x1e\x38\x93\x5b\x03\x6c\xef\xfa\x7b\x47\xf5\xa4\xe6\x8e\x7a\xc8\x08\xa2\xc3\x12\xef\x21\x53\x57\x00\x43\xe7\xbc\x5e\xbb\x64\x45\x96\x57\xe7\x35\x69\x31\xb3\xd8\x54\x25\xe3\x91\xe6\x9f\x69\x15\x72\x1e\x4c\x3f\x53\x3f\x8b\x12\x5f\x8c\x5a\x41\x5d\xaf\xad\x70\x21\xd1\x0f\x5f\x49\x78\xcd\xf4\xd7\xa7\xe6\x9a\x00\xa9\xfd\xe2\xd3\x6a\x8b\xda\x1a\x2f\x14\x3b\x96\xcb\xc4\xe1\x48\x8d\xdc\x88\xc8\x87\xe6\x1e\x4c\xa9\x4a\xc6\xa3\xe2\x2d\x6d\x12\x65\x76\xe3\xc0\xb2\x36\x19\x55\x73\xe2\x4b\xe9\x53\xa8\x3d\x01\x07\x6c\x2a\x4e\xb2\xf4\xc3\xa5\x7c\xc9\x85\x03\x09\xea\xb0\xd8\xa0\x0d\x93\x6c\x15\x21\xf9\x0d\xfe\x05\x93\x69\xd8\x8c\xbb\xa1\xa6\xda\xf2\x37\x71\xf9\xd5\x08\xb6\x23\xe6\xbb\x6b\x92\x6d\xdf\xe9\xaf\xa1\xad\x76\x82\x6a\xdf\x8d\xf8\x04\x2d\xf4\x04\xe2\xef\x4e\xca\x1d\x0b\xb3\x9f\x0e\xfe\xc4\x1d\xf6\x89\x87\xf7\xd7\x3a\x8e\x77\x39\x60\xf7\x38\x32\x4b\x15\x64\xea\x7a\x2c\x71\x21\xe5\xbc\x7f\x50\x97\xe7\x8e\x27\x10\x22\x15\x67\x94\x18\x63\x04\xf6\xc1\x4a\x71\x6f\x13\x81\xc7\xb9\xdd\x87\x65\xb6\x1f\x99\x77\x26\xdf\x20\xb2\x6c\xeb\xc0\x77\x98\xb6\x62\xaf\xbc\xdd\x5b\x64\x8f\x0d\xf0\xa4\xf2\xb6\x64\xd5\xe8\x73\x42\x76\xa6\xd7\x07\xb9\xdb\x49\xd9\x9e\x80\x1b\xb6\xb4\x2d\x99\x87\xf1\x3b\xda\xcc\xe8\xfd\x29\xd3\xa5\xc9\xe0\xf2\xa6\xd9\x4d\xcb\x9d\xc7\xf0\xfa\xe7\x5d\xb1\x23\xcb\x2d\xad\xbe\xda\x33\xb2\xbc\xd4\x29\x25\x29\x59\x95\x76\xc7\x68\x50\x59\x1d\xe7\xb7\x3e\x24\xad\xf1\x63\x20\x53\xf4\xd3\xd5\x26\x9e\x66\x77\xd1\x7c\xad\x45\x4b\x27\x40\xc3\xb6\xe2\xd9\x32\x9a\xb3\x17\xef\x26\xd3\x83\xab\xcb\x1b\xf1\x9f\xdb\xe9\xc1\xc9\xe4\x6c\x32\x9d\x1c\xf0\x6c\xa6\xb7\x27\x21\xd6\xb6\x47\x15\xa5\x19\x8c\x0e\x3d\xe3\xad\x02\x64\xda\x55\x1a\xf4\x34\xbf\x93\xb7\xac\x06\x41\xad\x2a\x59\x63\x38\xbd\xb8\x99\x8e\xcf\xce\x26\x27\xec\xea\xec\xf6\xdd\xe9\x05\x3b\xbe\x3c\x3f\x1f\x5f\x9c\xe8\xad\xdf\xb5\xe5\x6c\x0f\x19\xa7\x8b\x30\x4a\x78\xd3\x39\x5b\xcb\xcd\x5c\xd8\x5e\x4c\xd5\x55\x4b\x0f\xe4\x22\x01\xbb\xea\xbb\x1d\x41\xfb\xa9\xd5\x29\xb8\x22\x31\xaa\x67\x19\xbb\x4d\xbd\x85\xa1\x19\x74\xe5\x5c\x39\x99\x56\x4f\x53\x51\x67\x7e\xec\xb8\x0c\x56\x12\x72\x4c\x6e\x0f\x79\x6e\x7f\x9d\xf1\x38\x63\xa3\xfb\x6f\x20\xc2\x2a\x98\x80\x81\xe3\x08\x38\x50\xf1\x39\x7b\x5c\x82\x31\x9c\x0c\xeb\x5f\xe5\xbd\x47\x6b\x0e\x79\x17\xd3\xec\x15\xfa\x29\xf6\x29\xa1\x38\xb4\x57\x61\xd2\x2b\xce\x33\x47\x95\xfb\x2b\xd8\xa1\x82\xe1\x1f\x06\xcc\xcf\x5f\xbd\x7a\xf5\xff\xab\xff\x86\x1f\xbc\xc0\x9f\xab\x5a\xd2\x9e\x10\xd3\x01\x1c\x7d\x0c\x7f\xfc\x18\x0a\x3e\xf0\x1f\xc6\x3e\x3e\x8b\x93\x28\x8b\x66\x51\xf0\x51\xb0\xfb\xf8\x2c\x9b\xc5\x1f\x9f\x1d\x14\xef\xe6\xe8\x71\x8e\x2d\x26\x5f\xbf\x7e\x75\xf8\xed\xf7\xdf\x1f\xbe\x3e\x7c\xfd\xef\xb5\x62\x71\x94\x64\xa9\x2c\xf0\xdd\x77\xaf\xfe\xfc\xf1\x19\xbc\x10\x80\x7e\xb2\x68\xfb\xff\xde\x62\x39\x7c\x47\xe9\xfe\x84\x96\x71\xc9\x02\xb3\x45\xe8\x2d\x4d\x2d\x6b\x39\xa0\xc8\x2d\xe7\x95\xdc\x79\x5e\xc1\xa4\x09\x38\x0d\xaa\x60\x3b\x98\x07\x5c\x3a\x69\x16\x11\x8a\x0a\x59\xb4\x40\x54\xee\x85\x91\x22\x71\x35\x9e\xbe\x7f\x39\xbd\x7c\x29\x17\x9b\xd1\xc5\xf8\x7c\xc2\xd8\x88\xb9\x32\xb3\x5e\x9a\x24\xfd\xea\x7e\x15\xba\xe8\x15\xfe\x25\x63\x29\x99\x76\x72\xb4\xca\xb4\x06\x36\x65\xc7\xdf\x2e\x40\xa6\xcd\xce\xf9\x2a\x4a\xf4\xdb\x3e\x6d\x39\x3a\xa7\x55\x9e\x66\xca\x3d\x30\x0a\x47\x21\x5f\x08\x26\x0f\x1c\x6d\x92\x17\x86\x64\xee\xe4\xfa\xd6\xc8\xe0\x50\x94\x79\x99\x32\x91\x10\xb3\xc9\x42\xac\xf2\xe9\xa1\x58\x2b\x38\xfa\xae\x2b\x05\x52\xaa\x16\x0d\x70\x62\x8f\x92\xfa\x9b\xda\x0b\x70\x6d\x80\x4c\x1b\x10\x03\x49\x59\xea\xca\xfc\x42\xfa\x5e\xb3\x6f\xf6\x84\x2f\xf6\x80\x33\x30\xcc\xd0\xad\x91\x5b\x0c\xdf\xca\xba\x26\x19\xcd\xb5\xf2\x28\x82\x7f\x0d\x67\xc5\xae\xe2\x64\xbe\x37\x37\x67\xec\x98\x27\xd2\x38\xfd\x77\x95\xea\x07\x1d\x84\xa6\x7e\x7c\x2e\xbe\x98\x98\x3d\x2d\xf0\x50\xc9\x90\x71\xca\xb8\x0b\x4e\x9f\xcb\xa6\x2a\x1d\x4f\xa9\xf6\x3f\xd2\x9b\xda\x98\x0b\x93\x79\x56\x81\xa8\x60\x98\x80\x6d\x8c\x54\x78\x3c\x17\x2b\x48\xb1\x6a\x40\x91\x32\x17\x0e\x7a\x60\x74\xa2\xeb\x4b\x96\x2e\x07\xe4\x4e\x43\x8d\x1b\x6e\x95\x20\x95\x9a\xd2\x10\x52\x1d\xdc\x06\xa0\xb8\x03\xf4\x83\x00\xee\x85\xd1\x2f\x56\x95\x59\x94\x87\x19\xb2\x28\x16\x9a\x63\x78\x02\x6c\x4e\x1b\x65\x6a\xeb\x0f\x9a\x5c\xd9\xad\x5d\x3b\xe5\x36\xa4\xd4\xe9\x7e\xc5\xee\xc5\xce\x5d\xee\x15\xee\x62\x64\x5a\x42\xc4\x23\xb7\x35\x67\xf0\x9b\xd4\x3d\x7b\x50\x74\x46\xdf\x68\xc0\x46\xd3\x0d\xf0\x8d\xfa\x11\xdf\xa1\x4c\x01\xe6\x67\x58\xca\xe4\x0c\x1b\xa3\x66\x40\xe9\xec\xd8\x90\xe5\xc4\x53\x6c\xb9\x7e\x74\xe2\xd5\x15\x27\xf3\x2d\xb4\x12\x87\xac\x0a\x4f\x03\x69\x1c\x3b\x11\x74\x57\xa4\x63\x69\x19\x22\xf4\x11\x47\xa4\x32\x08\x4a\xa7\xa9\x61\x0f\x33\x82\x86\x85\xfb\xf6\xc0\x9d\x20\x19\xbb\x9c\x44\xa2\xf0\x90\xb9\x41\xb5\xae\x4f\x46\x06\xf1\xcc\xd0\x85\xd1\x4b\xbc\x15\xb6\xc2\x54\x3e\x21\x7d\x7e\x22\x15\x32\xca\x2e\xb5\x4e\x6b\x29\x32\x17\x19\x82\xeb\x5e\x1d\x38\x9b\x61\x7e\x9e\xa3\x54\x37\x18\xa4\xe8\x83\x17\x58\x46\x20\xbc\x0d\x79\x31\xa1\x54\xc4\xb7\x68\xb3\xa3\xce\xc0\x10\x46\x3d\x0e\x9e\x3c\x7d\x50\xcf\xa3\x1c\x47\xc4\x4e\x46\xad\x6e\xdd\xae\x67\x10\xda\x09\x14\x58\x85\x4f\x22\x28\xb2\x32\xbc\xe9\x93\x17\x97\x5a\x48\x84\x9a\x0e\x68\xca\x8c\x09\x85\x57\x81\x60\x80\x2f\xe6\x90\x4c\xb4\xee\x5d\x60\x01\xd0\x85\x18\x1d\x73\xe5\x27\xd9\x0d\xa9\xad\x2c\x9d\xa3\x31\xb5\xa1\xa6\x14\x9d\x8b\x32\xff\x57\x5f\x78\x26\xef\x7c\xd5\xad\x76\x94\x34\x1e\x5a\xe5\x89\x1c\x8e\x30\x5d\x16\xbc\x15\x56\xc9\xa7\x23\x99\x56\x4d\x59\x64\x44\xf7\x8e\x52\xf4\x20\x49\xc7\xbf\xe1\xf1\xd0\x8d\x4e\x5b\xc1\x85\xb7\x34\x61\x2b\xf6\xae\x8e\xd3\x05\x91\x8c\x03\xce\xd2\xc4\xc6\x43\xdb\x05\x0b\x48\xda\x1a\x0e\xdc\xa5\xf5\xcb\x0b\x4f\xfe\x05\x93\xb6\x07\x39\xce\x47\x30\xe4\xe5\x65\x1c\x4b\xd7\x69\xc6\x57\x07\xca\x5c\x01\x3d\xc2\xc3\x42\x43\x0a\x06\x34\xea\x35\x26\x80\x84\x3c\x8f\x49\x8e\x79\xc5\x53\xfd\x1d\xfc\xbe\xd9\xd3\xdb\xa5\xb4\x26\x51\x09\xfc\xba\x45\xd1\xd7\x20\x72\xaf\x52\x03\xdd\xdf\x73\x8c\x60\x58\x50\xad\x59\x2d\x76\xe0\x21\xd2\x70\x45\x28\x27\xbf\x22\x72\x92\x32\x6e\xb3\x85\xd6\x51\xd9\x15\x13\x6e\xd9\x88\x50\xda\xeb\xd0\x10\xd4\xbc\xfb\x6b\xd3\x43\x67\xd7\xb1\xa8\x46\xc3\xb1\xe9\x65\xa6\x08\xab\x48\xa4\x9b\x6f\x31\xf2\x55\x1e\x86\x1b\x81\x9a\x3b\x5a\x6e\x68\x1e\xc3\x48\x28\xf3\xed\x22\x0a\xe5\x4e\xde\x53\x1c\x2b\x82\x54\xec\x0d\x6f\x84\x54\x1a\xaf\x75\xe2\xeb\xa8\xe4\x88\xa1\xf2\x28\xb0\xe4\xdf\x56\xc1\x8d\xb7\x72\x11\xb0\xe3\xbb\x55\x98\xc4\x13\x3e\xa1\xba\x5a\x16\xdb\x67\x79\x9f\x9c\x9a\xee\xa1\xed\x2a\xd9\x63\x88\x20\x37\xf4\x66\xa6\x68\xb1\xc8\x41\x24\x08\x19\x92\xdf\x74\x2c\xd8\xaa\x4d\x3f\xcd\x9d\x45\x2a\x17\xa3\x6f\xd8\x20\xb6\x95\x21\xc8\xa8\x6a\x47\x06\x23\xb0\xf6\x42\x14\x1e\x0b\xf1\x2d\x38\x9c\x23\x53\x7d\xb8\x21\x5d\x31\x12\x1f\xf4\xa7\xcf\x33\x63\x2f\xd1\x14\x23\xf1\x49\xe0\xfa\x5d\x4c\x2d\x3c\x9c\xc7\x91\x0f\x7a\x7b\x5f\xe6\x82\xc1\x6b\x32\x0c\x4e\xb5\x30\xdb\xf7\x39\x52\x21\xa0\x8c\x3e\xa3\x79\x6d\x8c\x2a\x8c\xfb\x32\x2b\xd6\xf3\x6d\x9f\xfb\xe6\xad\x9e\x01\x72\x7f\x92\xd6\xf8\xcf\x21\x5e\x9c\x27\x1a\x21\x5e\x17\x31\xb6\xd4\x86\x63\x16\xcd\xd5\x25\x2d\xe4\xc9\xdf\x08\xa6\xee\x85\x91\x18\x74\xc9\x21\x63\xb7\x21\xea\xb4\xa3\x07\xd1\xa3\x7c\x71\x02\x0f\x0f\xe4\x51\x4f\x10\x1c\x95\x94\xa4\xdd\xcc\xa3\x8f\xd1\x0d\x64\x40\x2f\x28\x54\x4f\x61\xa1\x6d\x8e\xaf\x10\x21\xb5\x75\x61\x54\x8f\xe2\x24\x7a\xf0\xe7\xb5\xac\xfe\xe5\xe5\x4e\xb5\xd1\x02\x03\x0b\x14\x51\x3f\xe1\x0d\x41\x92\x80\xbf\x66\x75\xa8\xa2\x6a\x0a\x6e\x39\x2e\xb4\xf7\x79\x10\xac\x21\xac\xa0\x01\x2b\xad\xba\x23\x2e\x3f\xad\x45\x2b\xdc\xd0\x3f\xcc\x7d\xb0\x3e\x13\x63\xe5\x80\xc5\x01\xf7\x52\xce\x54\xa3\x31\xee\x43\xff\x80\xc3\x12\x74\x29\x34\x79\xc6\xcc\x66\x1d\xf9\x23\xf7\xc9\x9a\xd0\x1e\xb1\xd2\x5c\x44\xc5\x96\x19\xf3\x9b\x2c\xe1\xc0\x68\x48\x04\x62\x5d\x8f\x80\xe4\x57\xcc\xd3\x81\x0a\xea\x32\x6c\x51\xd9\x2f\x71\x64\xe5\xf1\x01\x26\x58\xf0\xc3\xdc\xb4\xb4\xf7\x21\xd5\x03\x6f\xb5\x0d\x51\x1b\x5c\x47\xb0\x96\x74\x28\x48\xfd\x55\xbe\x62\xde\x0a\x6f\xb0\xc5\x54\xa8\xae\x53\x64\x37\x2a\xe7\xbe\xea\x3a\x5c\xbc\x58\x7a\x0f\x85\x25\xff\xeb\x57\xdf\x7e\x7f\x7e\xc0\x5e\xbf\x13\xff\x7f\xf5\x4e\xaf\x7c\xd8\x19\x9f\xa7\x92\xf4\x90\x8d\x5e\xc3\xa2\x29\xe6\x75\x8c\x2d\x26\x0a\xe7\x21\xde\x41\xc1\xad\x23\xf2\x30\xad\x3e\x4f\x88\xe5\x6b\x6e\x31\xf6\xe2\x44\x26\x89\x39\xaa\xde\xed\xa0\x53\xed\x0a\x9f\xed\xd9\xa0\x00\x8e\xc3\xfa\x85\x18\xc0\xe2\x30\x1c\x85\xf3\xf4\x1b\x1c\xe3\xc7\x67\xa7\x30\x5f\xe2\xc0\xdf\x38\x02\xcb\xf9\xe9\x80\xe1\x2e\x44\xd9\xb9\xb1\x14\x66\x7f\x75\x75\x97\x8a\x09\x7f\x8d\x35\xf4\x76\xb1\x37\x72\x23\xa2\xee\xfa\x2a\xee\x0e\x72\xd4\xae\x5e\xd5\x47\xff\xf6\x4f\x7f\x86\x36\x2d\x9a\xd6\xf0\xf1\x28\x75\xed\xfb\xac\xb4\x46\x54\xf7\xc0\x5d\x06\x8e\x1d\xa5\xed\xb9\x62\x88\x5b\xde\xa2\xb7\x2e\x37\x92\x0d\xcf\xef\x6a\x27\xa9\x87\x36\x00\x49\x6b\xfc\x60\xa9\xae\x3f\xdc\x6d\xbc\xb5\xa7\x6a\xf2\x40\xbb\x70\xf3\x3e\xbb\xe0\x8f\xec\xca\x4b\xd3\xc7\x28\x99\xeb\x69\xb7\x16\x22\xf1\x30\x7a\xcf\x6d\x17\xb0\xa7\x1d\xb1\xf1\xd5\x69\x75\x68\x4c\x79\x56\x59\x4d\x8b\x63\xa5\x1f\x4e\xfd\xb8\x66\x2e\x2d\x0a\xab\x07\xb0\x83\x92\x7a\x4a\xf1\xb5\x8b\xfa\xfa\x25\x66\x77\x8c\x6c\x27\x07\x81\xc0\x9b\xc9\x83\x93\x07\xe1\x80\x19\xfb\x21\xca\xa5\xcd\xd2\x5c\x46\x63\x2f\x74\x6b\xd0\x77\xc5\x11\x09\xfa\x31\xde\x88\x6d\x05\x78\x28\x7a\x7a\x71\x79\x26\xa3\xee\x89\xcd\x71\x06\x2e\x4e\x62\xa0\x08\x01\x6b\xa1\x46\xca\x22\xca\x3d\x0a\x36\xa3\x0d\xcf\x7b\xf1\x52\xdf\x72\x57\x08\xc3\x4b\x0a\x78\x3e\x20\xad\x93\x3d\x64\x53\x31\x71\x25\x62\xfe\xc2\x7c\x93\x2d\x8c\x0f\x24\x30\x1e\xd6\xa5\x94\x21\x1e\x02\x70\x5b\x41\x2a\x3b\x6e\x51\x25\x34\x48\xa3\xa4\xc6\x79\xe2\xc9\x9b\x77\xba\x54\x33\x96\x02\x57\x80\x40\x1d\xb6\x26\xc0\x07\x1c\x1c\x02\xc8\xc7\xba\x16\xf3\xe0\xc6\x57\xd9\x0c\xab\xe0\xd6\xac\xb1\xaf\x19\x2a\x85\xb5\x34\x64\x37\x68\x0e\x09\xd3\xd0\xeb\x47\x8f\x32\x9b\x48\x77\x3e\x38\x29\x9a\xf1\x6c\x97\xa2\x70\xa9\x6c\x11\xba\x79\xe9\xcb\x52\x38\xce\x96\x5e\xb8\x10\xab\xdd\x23\x47\x47\xda\xb9\x61\x36\x36\x16\xa6\xf0\x2c\xae\x85\x3a\x45\xd4\x14\xa4\xf0\x32\x84\x24\x36\x71\xb6\xaa\x46\xc1\x21\x1d\x49\xd3\x98\xcf\xb0\xca\x21\x6b\x6b\x4e\xe3\x32\x43\xa5\x40\x41\x07\x83\x1b\xc3\xba\xe1\xb5\xa5\x5c\x96\xf8\xfc\x00\x14\x55\x38\x9a\x9a\x6e\x44\xd5\xb2\xd5\xa8\x67\x02\x3f\x30\x03\xaa\x6c\x65\xe0\xdb\x16\xce\x6f\x65\x30\x85\x0a\x41\x97\x1c\x8e\xc4\xa8\x98\x87\x80\xba\x77\x84\xfa\xcf\x68\xec\xdb\x7d\xa8\x11\x51\x5b\x4c\x3b\x6d\xa5\x28\x5c\x4a\x13\xa4\x0e\x3e\xed\xe5\x48\x9c\xd4\xcd\x73\x33\x22\x3d\xea\x06\xee\x38\x87\x13\xa7\x71\xf9\x24\x55\x77\xc1\xb5\x79\xf9\x6c\x89\xc7\x58\x8d\x82\xc3\xd6\x46\xcb\x54\x94\xc6\xaf\x19\x24\xae\xb3\x0b\x74\x54\x70\xe1\x5d\x59\xc5\x58\x73\xd7\x56\x71\xe0\x6f\xcf\xb6\x1f\xb7\x41\xa6\xf3\x5d\xcf\xe3\xb4\xe5\xae\x7b\x19\xed\x47\x8f\x8c\x1c\x62\x79\xa5\xfe\x22\xe4\xe6\xcf\xa9\x2b\xea\xc0\xaf\xbb\xef\xb4\x96\x23\x71\x52\x96\x2f\x8e\x73\x26\xa9\xba\x0b\xae\x8d\x1c\x04\x96\x70\x4c\xb5\x48\x28\xd0\xe2\xb0\xba\x9c\x74\x6d\x25\x17\x32\x14\x9c\x78\x85\x5a\x84\x77\x70\x04\x49\xa7\x41\x40\x18\xc2\xb4\xca\xd6\x51\xde\x54\x2c\xcb\x8c\x20\x48\x5e\x6e\xde\x71\x23\x9f\x61\xec\x18\xbc\xc0\xbe\xe3\x2c\x8f\x21\x35\x9b\x29\xe1\xdd\xd0\xe4\x09\x72\x65\x2c\x90\x46\x28\x7e\x58\x9d\xb6\x8f\xdf\xa2\xaa\xab\x39\x0d\x89\x72\x50\xc8\x20\x44\x0f\x5a\x14\xc4\xfc\x48\x5e\x8a\x82\xca\x3e\xc3\x14\x7b\xd1\x4a\x6a\xf2\x4d\xd8\x6c\x6a\xd9\xa3\x28\x03\xb7\x94\x0a\x66\x3d\x6f\x53\x59\x6b\x8e\x97\x7f\xd5\x32\xa8\xbf\xb2\xa7\x77\xfd\x8e\x8d\x4f\xce\x4f\xf5\xe9\x31\x5b\x4a\xd0\xa8\xdf\x9e\x9c\x4e\x2f\xaf\xcd\xf4\x37\xcb\x90\x38\x9c\x8f\x2f\xc6\xef\x26\x66\x0e\x5b\x65\x28\x1c\xf4\x81\xd1\x9a\x2f\xed\x69\x1a\x4c\x6c\x2f\x9d\xec\x68\x2f\xe1\xa8\x85\xe6\xe4\x51\x98\xa1\x76\xa5\x66\x9a\x5b\x9b\x4a\x4c\x6c\x89\x04\x48\xd8\x1a\x1a\xce\x42\x1b\x29\xb3\x60\x1a\x21\x59\xd5\x73\x47\xd2\x8c\xdb\x00\x3a\x00\x65\x3d\x52\xa9\x49\xed\xe1\x91\x88\x0d\x85\x59\x3f\x11\xdb\x57\xa4\x60\xd1\x5f\x74\x35\x5f\x52\x68\x76\xfb\x02\xb5\x17\xb2\xe7\x21\xed\xcc\xb8\xcc\xb3\x0a\x89\x52\xe5\x3d\x74\x61\x68\x58\x9a\x05\xe9\x01\xd0\x29\xf4\x47\xa7\x22\x8c\xf4\x07\xd9\x49\x88\x8e\xb5\x96\x04\x74\xc3\x28\x0f\x6d\xae\xe4\xbc\x51\x4f\xe9\xec\xdd\x67\x3c\xd9\xb4\xf0\x8b\x21\x17\xac\x61\x06\xd8\x2d\x37\x6b\xa9\xaf\x3c\x7f\xde\xb8\x30\xd6\x43\x36\x15\x25\xf0\x4b\x53\xe9\x46\x2c\x00\xcb\xa8\xf4\xe8\x9f\x5a\xa5\xd1\xf6\xea\x5a\x9e\xad\xb4\xd9\xf2\xb8\x60\xc0\x38\x2c\xf9\x41\xe5\xaa\x9d\xc4\x76\x21\x17\x85\x3c\x49\x2e\xe3\x9d\x7a\x8f\xfb\xf4\xa2\x2a\x13\x63\x41\xd4\x50\xbd\xbe\x9c\xcb\x31\xf5\x7b\x27\x5f\xbb\xca\x04\x4c\x72\x7e\x81\x4b\x94\x72\x36\x81\x05\xcf\x68\xf7\x8d\xb5\x94\xb9\x70\xa3\xd6\x6f\x7e\xac\xb7\xf5\x36\x5e\x3e\x16\x40\x3a\xc8\xb5\x01\xe9\xae\x45\x6e\x8e\x4e\x43\x55\x7d\x41\x7b\x5e\x3c\x81\x80\x9a\xd0\x93\x7d\x98\xd0\x54\xf4\x37\x9c\xec\x45\xa7\x5f\x41\x78\xd3\xc7\x25\x97\xc6\xac\x52\x17\x5d\x58\xbf\x06\xc5\xce\x09\xc4\x15\x9f\xdf\x70\x89\xbf\x13\x26\xf6\x32\xc2\x05\xf7\xc6\x6e\xea\x5e\xf9\x2b\xeb\xae\xdf\x8d\x06\x09\xee\xc4\x68\x98\x2b\x7a\x35\xc3\x81\x2a\xb4\xac\x59\x0d\xe6\x40\x61\x00\x74\x4b\x0f\x1a\xa6\xc5\x50\x0a\xba\xa9\xb4\xa2\x72\x40\x4c\xa2\x4a\x92\xe2\xa8\x95\xa1\x11\x62\x57\x15\x02\x7f\x34\x19\x9f\x2d\xa3\x28\xad\x2c\xc6\x83\x20\x7a\x84\xce\x0e\x46\x24\xf0\xf7\x21\x7b\x13\x89\x61\x2e\x2f\x76\xc1\x10\x06\xd3\xdc\xc3\xa8\xc9\xc0\x16\x52\xb4\xc0\x1d\xec\xd0\xd2\x94\x97\xe6\xe9\x29\x98\x9b\x2b\x87\x07\x93\x69\xcd\x7e\xd9\x53\xdb\x65\x1e\x85\xcf\x0d\x73\x5f\x6b\x21\x2a\x0f\xa9\x31\x62\xde\xc2\x33\x38\x86\x19\xcb\x52\x39\x16\x0e\x02\xd8\x50\xa8\xa8\x87\x84\xf7\x95\xd3\x74\x95\x71\x4a\x9d\x9c\x61\x77\x41\x3c\x7c\xef\x92\x15\x41\x5e\x3c\x24\x18\xed\x0e\x55\x19\xad\xf9\x9e\x79\xb1\xae\x2a\x57\x61\x72\x5b\xcf\xa6\x36\xfc\xad\x49\x0c\x01\xaf\x66\x42\x85\xc6\x63\x4e\x00\xf5\x44\xa8\xdf\x08\xfc\xcb\x90\xc7\x9c\x7d\x7c\xd6\xf0\x37\xfb\xf8\x6c\x43\x4b\x52\x3a\xba\xc0\xa5\x92\xb2\x71\xc5\xaa\xa6\x79\x66\x17\x4c\xe8\x32\x62\x6a\x09\xc1\x5d\x2d\x26\x77\x7e\xe8\x81\x75\x7a\xe9\x46\x05\xab\x38\xaa\xca\x2f\x6f\x8e\xf4\x0e\x4f\x7d\xc9\x51\x71\x6f\x7e\xf5\x86\x6b\x55\x1e\xfa\x85\x87\x6e\x67\xfb\xb7\xf6\x21\x1d\x35\xe7\xee\xbe\xc9\xe0\x41\x3c\xf8\x20\x0e\x4f\x3e\xa6\xcc\x6b\xb0\xb3\x87\x6e\x44\xdd\x46\xc6\x1a\x74\x02\x26\x81\x60\x9a\x5b\x64\x1e\x99\xfb\xde\x22\x8c\xd2\xcc\x9f\xe1\xe6\x22\xcd\xe6\x26\x7f\x5e\x72\x7d\xfb\xaf\x8f\x94\xc1\x25\xc0\x63\x01\xaa\xff\xee\xd5\xb5\x0d\x2c\x41\xcd\xa3\x86\x74\x75\x0c\x33\x34\x46\x83\x03\x51\x61\xff\x35\xeb\x38\xb7\xec\x82\x07\x51\x42\xa0\xfb\x20\xfb\x47\x07\xce\xd6\x92\x04\x6e\x91\x18\x94\xab\xca\x50\x78\x1e\x3d\x86\xf2\x86\xab\x18\xba\xb0\x30\xf2\x55\xed\x2c\x69\x9a\x05\x7a\x92\xa3\xe0\xc6\xa0\x66\x6d\xd1\xd3\x2a\x9f\xc4\x2a\xd6\xe2\x14\x2e\xa3\xee\xb9\x97\xe5\x89\x72\x5d\x14\xfb\x96\x70\x01\x8e\x29\x79\x0c\x49\x0a\xe0\xae\x4f\xed\x0f\x10\xbc\x28\x95\x49\xf3\x62\x98\xbd\x60\x6f\x63\x18\x8e\x4f\x0a\x86\xd2\x66\xb0\xef\xd1\xbb\x73\x6c\x17\xb0\xa7\x9d\x27\x8b\x7a\xee\xc0\xcd\x23\x9f\xc9\x5f\x9e\x54\x97\x80\x28\x5d\x42\x28\x7b\xfe\x88\x9a\x10\xb0\x3b\x84\x20\xdc\x85\xd1\x27\xba\xa2\xc8\x75\x55\x45\x1f\x31\xe0\x73\xa6\x44\x45\x0b\xbe\xf9\x32\xfd\x09\x7b\x01\x9b\x52\x60\x06\xff\xca\xc9\xa8\xe8\x41\xdf\x1c\x19\x52\xcc\xf4\xa0\x64\x8d\x16\x03\x45\xb3\x13\xb8\xfc\xc7\x50\x91\x65\x86\x3d\xda\xcd\x93\x2b\x19\x22\x4e\xf8\x40\x68\x5e\x53\x78\x1c\x88\x2f\x29\x16\xc8\xc2\x29\x1b\xcc\x27\x21\x47\x8d\x0a\x21\x85\xd7\xd6\x11\x06\x22\x04\x7d\x78\x1e\x64\x72\xde\x47\x0a\xa8\xc7\x14\xd3\x7c\xa1\xf1\xc7\xc0\x40\x7a\xf7\xb1\xbd\xf3\x1f\xb6\x65\xe4\xe1\xe8\x29\xdb\x66\x58\x04\xc4\xd6\xd9\xe8\x8d\x96\x67\x27\x52\x5d\x6b\x44\xd7\x93\xbf\xdd\x4e\x6e\xa6\xfa\x6b\xc1\xed\x02\x04\xda\x37\x57\x97\x17\x37\x06\xe7\xba\x96\x12\xf6\xd4\x2f\xcf\x26\x37\xa6\x09\x6b\xbb\x00\x81\xf6\xed\x74\xa2\x37\x1b\xd8\x7c\x6d\x4f\x97\x7b\xb0\x85\x9e\x73\xb8\xc9\x12\x03\x34\x16\x53\x3d\x04\xd8\x44\x93\xe3\xbf\xc8\x45\x7e\x15\x9b\xe2\x63\x3b\x50\x70\x44\xa7\x14\xac\xe7\x91\xf8\x3d\x5d\xc7\xd0\xdb\x8a\x9f\xc5\x34\x2a\x36\x0e\x5c\x6c\x11\xd7\xd2\x92\x49\x8c\x95\x68\xe6\xe3\xf0\xc2\x85\xc1\xcf\xfe\x62\x29\xc6\xb0\xac\x76\x25\xef\x60\xd2\xf4\xc0\xaa\x94\xaf\xb5\xad\x4c\x11\xf1\xbc\x11\xe7\x56\xba\xc9\x16\x8e\x66\x97\xc1\x7c\x5b\xc5\x2b\xa6\x45\x70\xc8\xe2\x8f\x5b\xaf\xfe\x02\xe9\xbc\xbe\xd3\x1f\x63\x9e\x12\x0a\xb5\xbd\x62\xb1\x05\xe4\x5b\x16\xd5\xdb\x17\x07\x08\xf2\x38\x88\xf2\x39\x7b\x0b\xfb\xea\x64\xdd\xf9\xb5\x07\x21\x4d\x90\x67\xc6\xfd\x07\xd4\xf9\x56\x69\x69\x66\xe2\x3c\x20\xaf\x05\x55\xd0\x1e\x03\x66\x5a\x75\x0a\xae\x5c\x9c\x11\x1f\x78\xb0\x2e\x8e\x14\x5e\x15\xbd\x4d\x8c\xda\xd9\xd2\x0f\xc4\x5e\xe4\xee\x17\x71\x28\x4b\x5b\x1a\x03\x83\xe6\xdf\xc1\x89\xa4\xd8\x45\xae\x3c\x8c\xd5\xa4\x4e\xf8\x72\x1f\xbc\x61\x92\x6f\x92\xf3\x49\xe1\x10\xda\x4d\x81\x8b\x2b\x6d\x9d\x8c\x40\x65\x90\xad\xbb\x0a\x9d\xbf\x8a\x89\x09\x49\x97\x54\x5e\x44\x30\xc0\xed\x06\xd1\x55\x8f\x8e\x24\x4f\x54\xc4\x63\x45\x30\x34\x1e\x9e\x6c\xab\x91\x71\x60\xc0\xee\x9a\x03\xab\x54\xce\x8b\x2e\xd0\x09\xc5\xa2\x26\x19\x4d\xd8\x30\x81\xee\x84\xa0\x2b\xee\xc0\x17\x8e\x0f\xe4\x6e\xd1\x55\x8d\x86\x63\xd3\xa2\x1f\x26\xd7\x0f\x5e\x52\x9f\x58\x37\xfd\x40\x77\x98\xd6\xfe\x6b\x80\x44\x6f\xbf\xa4\x91\x4e\x4d\x22\xc4\x90\x88\xbf\x17\x09\xab\x25\x9b\x01\xb2\x73\x5b\x35\xde\x53\xe1\xd9\x7b\xcb\x3d\x51\x03\xed\xa2\x1d\x72\xb9\xcd\xc3\xcc\x77\x43\xf5\x71\xbb\x94\xf9\x4f\x03\xa2\x6f\x1b\x39\x48\xe4\xca\x1f\x6f\x99\xbc\xb6\x50\xad\x5b\x7c\xf5\x45\xe9\xfc\xac\xb7\x63\x1d\xe5\xdd\x39\xfb\x5d\x39\x56\x2d\x6a\x38\x70\x37\xfa\x02\xea\x8a\x91\xf9\x74\x6d\x7d\x5a\x4b\x39\x70\x31\xc5\x0a\xd7\x94\xa2\x71\x51\x8a\xeb\xe6\x30\x2d\xcf\x7b\xbb\x9e\x3b\xf6\x0d\x80\xde\x36\x55\x44\x43\x79\x38\x7e\x53\xfc\xde\x44\xba\xf1\xc2\x4a\xee\x41\x88\xd3\x65\xda\x6a\xca\xcd\xe6\x76\xfa\x88\xfd\xa8\xd2\xa5\x68\xce\x58\xaa\x05\x2d\x59\x77\x4b\x33\x0c\x75\x77\xa9\xb6\xb4\x14\x9b\x3a\x98\x3d\xec\xa6\x9f\x1e\x92\x43\xfb\x15\x6c\x40\x91\x55\xe3\x54\x61\xad\x3d\x6c\x43\xea\xdc\x4a\xbb\x66\x4c\x68\x8b\x38\x32\x5b\x99\xb5\x94\xa0\x53\x67\x23\x86\x11\xf9\x8b\x8c\x54\xb8\xe3\xfb\x05\xa2\x7d\xe1\x55\x8d\x95\xbe\xc4\x9d\x14\x09\xaf\xac\x6c\xb0\x5e\x68\x2f\x44\xe0\x01\x5e\x0f\x16\xdb\x82\xf6\x62\x44\x3e\xad\x2b\xe6\x2e\xe7\x81\x7d\x30\xa5\xb5\x41\x92\x59\xb5\x75\x4b\x31\x2a\x1f\x90\xbb\x0c\xd0\xfa\x7b\x3d\xd3\xa9\xf2\xb4\x28\xfd\xa4\x1a\x2d\x43\x58\x70\x76\xc3\x86\x20\x67\x96\xf8\x5c\xaa\x86\xfc\x70\xee\x3f\xf8\xf3\xdc\x0b\x4a\x23\x15\x30\x73\x96\x57\x38\x32\xeb\xbd\x41\x10\x47\x3a\x2e\x48\x31\x89\x75\x1c\x80\x8b\xf9\x92\xb3\xcb\x71\x99\x84\xa4\xf4\x3c\x28\x73\xb1\x81\x63\xa8\xc1\x94\x6a\x18\xa2\xfd\x65\x58\xf8\x0f\x1c\xbb\xea\xf3\x94\x2d\x72\x7f\x7e\xc8\xd8\x18\x02\x19\xa2\xa5\xe7\x92\x7b\x81\x00\x83\x11\xbd\xb0\xf5\xc0\x46\x2d\xce\x2b\x3f\x0b\x0c\x12\x9e\xa2\x11\x51\xc2\xc1\xf2\xdc\x34\x9c\xf7\x8e\x60\xa8\xd6\x11\x73\x4d\x1b\xb6\x0d\x24\x30\x23\x0d\xd3\x16\xfd\xf9\x0d\x25\xb9\xda\x82\x59\xa0\x29\xcf\xd2\x83\xb4\xc0\x70\x7c\x07\x6b\x09\x58\x53\x6c\xf0\xe0\x22\x34\x50\x2b\x0c\xc2\x93\xde\x02\xa5\x09\x6a\x6d\x0e\x4d\xeb\x93\x28\xbc\xe4\xde\x4c\x3a\xa3\x8c\xa4\x91\xb5\x2c\xdb\x2d\xea\x20\xc4\xe9\x32\x6d\x9a\xcd\x62\x26\x06\x77\x4f\xdb\xc1\xe8\x0e\x23\x49\x0f\xdf\xda\xc1\xe8\x52\x25\xc1\xc3\x4b\xf9\xc5\xe1\x8e\x0c\x3e\x38\x84\x97\x51\x9f\x3b\x25\xea\x03\x06\xa1\xda\x4f\x0a\x41\xf7\xad\x64\xf3\x56\x70\x25\x6b\x34\x7a\x53\x74\x41\xef\xd6\x83\x5d\x25\xdb\x05\xb7\xa1\xa4\xee\xee\xed\x43\x4a\xdd\x97\x9b\xbd\xd4\xc5\x7d\xc2\xfb\x28\xcd\x94\x22\x4f\xfc\x3a\xc1\x68\xbd\x75\x73\x41\xb3\x99\xa1\x2b\x99\xe1\x71\x76\x9b\x44\xf6\x21\x45\xc7\x2b\x6f\x9e\x2c\x4d\x90\x2d\x6b\xd1\x50\x74\xb0\x73\xa2\x9b\x07\x26\xb2\xcd\xb7\x04\xaa\x72\xa8\x4f\x6a\x9d\xfe\x43\xd1\xe9\xdf\x61\x28\x4f\x83\x51\x28\xa9\xb2\x35\xa6\x9b\xc9\xf1\xed\xf5\xe9\xf4\x07\xf6\xee\xfa\xf2\xf6\x4a\xcb\x5d\x57\x8c\xc0\xe7\xfa\xc3\xe9\xf1\xa4\x23\x2c\x97\xa6\x14\x95\x8b\xde\x46\x75\xbb\x80\x3d\xed\xab\x71\x37\xfe\xb6\x32\x54\x0e\x1d\xa1\xc5\x34\xa5\x88\x5c\x4e\x26\x1f\x26\x67\x97\x57\x86\x00\x63\xda\x72\x44\x4e\x5d\x81\xcc\x34\xa5\x68\x5c\x0c\x5f\x7c\xe3\xb5\x3d\xdd\x99\x17\xec\x59\xeb\xb7\x0f\x96\xf6\xf2\x17\x51\x3a\xbb\x66\x26\x7d\x41\x3a\x2f\xb9\xf4\x0b\x01\x8a\x18\xa1\x9f\xf0\x89\xfd\xe2\xd7\x83\xd2\x90\x68\xc5\x33\x4c\x7c\xfa\x69\xd5\x99\x70\xa8\x27\x35\x02\x6a\xcc\x33\x52\xd8\x28\xbe\x10\xe7\x67\x3c\x2f\x8b\x3d\x18\x44\x95\x02\x37\xd1\xcf\x7e\xfc\x8d\xe9\x3b\x53\x09\x90\xb1\xc9\x6e\xee\x0e\xcd\xba\x3e\x01\x19\xe6\xd3\xc2\xe6\x3f\x28\x8e\x26\x90\x0f\xf4\x88\x7d\xff\xea\xbb\x23\x36\x96\x39\x50\xfc\x94\xcd\x79\xe8\x83\x27\x21\x26\x60\x99\x47\xd8\xc3\x30\xb8\x69\x9c\xf8\x0f\x7e\xc0\x95\xf3\x1a\xff\x55\x7c\x5d\xb4\x87\xf7\xd3\xee\xe8\x18\xfb\x66\x3f\x44\xbb\x88\xde\x3a\x49\x92\x1b\x7c\x74\x2c\x9e\x7c\xf9\x72\x20\xcb\x35\xde\x8f\x63\x7f\x02\x0f\x8b\x12\xab\x5a\xde\x2d\xf1\xa2\x61\x2d\xef\xd2\x3c\xbb\x44\x41\x6a\x25\x50\xd0\xa1\x5a\x7b\x8a\x6a\x6d\x41\xf8\xcc\xbb\xe3\x81\x1c\xd6\x85\x0f\x28\x21\x02\xe2\x20\x34\xc9\x12\xbc\x29\xaf\xe4\x5b\x4f\x10\xdd\x70\xed\x09\x90\xb1\x15\xf7\x36\x45\x64\x4a\xb4\x0b\x2c\xc2\x39\x77\x02\xb3\xac\x4d\x46\x55\xdc\x2c\x1d\x6d\xdd\xe1\x77\x42\xb2\xa9\x4a\xc6\x53\xfa\x62\x34\x1b\xfe\x63\x38\x3d\xbd\x3a\x62\xa7\x18\xa0\x19\x43\xeb\x64\xc9\x1a\x8f\xed\x91\x72\xe6\xf0\xd8\xc3\xeb\x2d\x8f\x8e\x03\x2c\x8e\x79\xa6\x20\x67\x11\x9c\xe9\x47\x31\xaa\x9b\xba\xbb\xc2\x13\x20\x71\x6f\xad\x32\xeb\xae\xbd\x58\x2d\x55\xc8\xfc\xb7\xec\x3e\xa8\xe3\xcd\x9e\x00\x15\x5b\xbd\x57\xda\x4f\xd3\x76\x15\xa9\x58\xf4\x87\xf4\xed\x02\x64\xda\xa6\xfd\xc6\x56\x09\x02\xf5\x6c\xd3\x23\x41\xe6\x6e\x32\xdf\xad\xdb\x56\x23\xe1\x10\xf5\x1f\x7c\xfe\x58\x85\x5a\xf2\xc1\x71\xc4\x88\xa1\xab\x8a\x1b\xff\x65\x95\x29\xa2\x91\xb7\xc8\x0e\x4a\x77\x6d\x0a\x2a\x15\x57\xa0\xee\xb2\x82\xe6\x44\x13\xf5\xb3\xe3\x0c\x47\x26\x40\xc6\xd6\xe8\x03\x10\x04\xa3\x74\xb5\xc0\xf8\xf3\xea\xc9\x07\x2f\xc8\xb9\x0c\x89\xb1\x9d\x18\x6c\x97\x87\xd8\xaf\x13\x25\xb9\x95\xff\xd9\xe6\x59\x9e\x45\x3a\x1b\x32\x3b\xb5\xf8\xb0\xc4\xc9\x32\x0d\x74\x59\xd3\x97\x1c\x19\xf7\x1e\xae\x69\x76\xc9\x6a\x10\x79\x07\xbe\xa0\xd9\x25\x2b\x7b\x79\x97\xd1\x63\x15\x3d\xa5\x99\x17\x46\x8f\xdc\xaa\x12\x11\x43\x10\x6c\x64\x55\xb1\x59\x92\xed\x6b\xd2\xd0\x2c\x79\xd0\xc1\xb5\x59\x82\x46\x1d\x6d\x67\xc2\xfb\xc8\xcc\x61\xbb\x14\x9d\x0b\x1c\xa5\x52\x76\xb7\x46\xef\xad\x6e\x76\x9a\xe2\x34\xbe\xe8\x53\x3f\xe7\x99\xe7\x07\xea\x53\x40\xf0\xec\xcc\x9f\xe5\x81\x97\x6c\x1d\x1e\xcc\xa0\x5c\x69\xd1\x10\xcb\xb5\xa0\xfb\x8b\xb4\x95\xa3\x71\x4a\xf8\x0c\xc3\xc8\x8b\x65\x56\x26\x0d\x35\x33\x34\x14\xa7\xf1\xdd\xf4\x35\xb2\x10\xb6\xa3\x0a\x91\xbf\xb4\x11\xea\x66\xda\x52\xce\x85\x93\xed\x17\xd5\x97\x76\xe1\x4a\x18\x6d\xc6\x0a\x24\xde\xb0\x4c\x94\x16\x9a\x33\x2f\xe0\x45\x2c\xf4\x7d\xed\x36\x9f\x02\x03\xb9\x85\xb6\x2d\x39\x87\xd9\xee\x5a\x2e\xf5\x4f\x83\xc2\xbe\x95\xcc\x27\x3d\xd7\x93\x1c\x02\x1e\x28\x76\x5a\x3f\x62\x2e\x98\x0d\xca\x87\xd6\x42\x44\x1e\xbd\xd2\x2a\xb9\x90\x20\xe2\xdb\xec\x68\x94\xcf\x64\x59\x97\x86\xa8\xe3\x7b\xb8\x7d\x09\x88\x5d\xba\xc6\x5d\x05\x04\x37\x57\xa9\x26\x64\x38\x36\x41\xfc\x10\x74\xa1\xf8\x0a\xd4\x76\x65\x36\xed\x83\x32\x9e\xa0\x2c\x0e\x17\x39\x2a\x80\x1b\xa4\xc3\x51\x13\xe1\x63\x94\x60\x84\x96\x32\xf0\xa7\x61\x7e\xe8\xc4\xa1\x03\xd2\xe4\x0f\xec\x93\x28\xca\xea\x31\x5b\xb7\x53\xdb\x94\x99\x6b\x74\x19\xc0\x8d\xb1\x72\x6f\x32\x4f\xe6\x6c\x80\xa0\xcc\x2f\x30\xf3\x89\xf8\x0d\x41\xa8\xe1\xca\x6f\x04\xce\x9d\xaa\x59\x64\x5a\xc7\x03\x01\xaa\x88\x66\x07\xd7\x83\x31\x4f\x3c\x79\x76\x55\xaf\x65\x2f\x16\xaf\xc4\x21\x0f\x73\xe2\xeb\x63\xe8\xed\x95\xb7\x7d\x2f\x52\x87\x35\x27\xab\x22\x5a\x65\x0a\xa6\x6e\x6f\xa1\xf6\x42\x54\x1e\x62\xf5\x82\x3c\x87\x51\x9e\x7d\x0c\xd5\x0d\x42\x4b\xa6\x59\xe8\xd3\xab\x28\x91\x9b\xbb\x64\xd5\x31\xbd\x0d\x47\x99\x28\x4d\x1e\x56\x41\xa5\x07\x16\x67\x18\xd2\x34\x79\xf6\x6d\x3e\xb3\x0f\x9e\xb4\x16\xc8\xe3\xe2\x92\xfd\x40\xde\x4e\x45\x2c\xcc\x83\x00\xfe\x4d\xb8\x7a\x50\xc4\xcf\x94\xbe\x73\xaa\xb8\x59\xc8\x01\xc8\x52\xe4\x30\x64\x4b\xd9\x78\x4b\xa2\x9a\xa7\xf2\x46\x08\x48\x98\x6e\x8f\x0c\x45\x09\xfc\xa2\xb8\x7b\x42\x6a\x29\x43\xe2\x10\xef\xbd\xc7\xef\x81\xa7\x7d\x0b\xac\x53\xc8\x4e\x72\x92\x88\x0d\x21\xbb\x35\xdd\x23\x69\x0b\x52\x78\x41\xd2\x66\x65\xeb\x30\x37\xac\x70\xda\x82\xd6\xbc\x60\xaa\x34\x44\x54\xdd\x7c\x4d\xa2\xcb\x8e\x55\x5c\x6b\xcc\x78\x8c\x79\x35\xc5\x5e\x69\x2d\x4d\x75\x54\x8c\xeb\x42\xfd\x5c\xdb\x45\xa5\x62\x3e\xcf\xfc\x00\x36\x57\x6b\xbc\x2a\x57\xb9\x04\x4d\x0e\x57\xbb\x66\x47\x93\xdb\x94\x21\xfe\x7e\x33\xa3\x3d\x21\xf3\xfc\xb0\xc4\x69\x32\x4d\x21\x09\xda\x67\xf4\x26\x4a\x79\x15\xb1\x1c\x1e\xf1\xfb\x7b\xb1\x25\xae\x67\xed\xbf\x0d\xef\xfc\x70\xde\x84\x91\xe3\xb3\xba\x6f\xdf\x81\x2a\xfd\x46\x96\xad\x8a\x26\x1c\x8a\x1e\xc8\x38\xf5\x4b\x1e\xaa\x72\xca\xdd\x7d\x83\x6c\x3c\xf7\x54\x08\x56\x98\x28\xd0\xdf\x4c\x45\x7f\x6e\xea\xae\xcd\xad\xfa\x2f\x24\x1e\xed\xbb\x16\xe9\xbe\xc7\xb1\xdf\xe4\x0c\xa7\x5f\x3f\xcc\x65\x58\x4c\xe9\x84\x8d\xf7\x11\x1c\xb3\x71\x14\xd7\xbf\xe6\x56\x1d\x8c\xb8\x9b\x4c\xc7\x6f\x9b\x5c\xb9\xd8\x27\x0a\x16\x98\x33\xa6\x71\x85\xdb\xf2\xbd\xed\x04\x1b\x86\x83\xa3\x74\xbb\x96\x6d\xef\x92\x55\xf3\xd8\x2d\x76\xfb\x32\x4a\x91\x66\x4c\x88\xe3\x69\x77\x18\xb4\x01\x29\xdb\x4b\xe3\x89\x05\x05\x2c\x35\x6a\x57\x0d\x62\x57\x60\x75\xf3\x46\xaa\x4b\x40\x54\xb3\x21\xa9\xef\x9c\x4c\x8b\xbf\x4d\x1d\x3a\x82\xb6\x8d\x9a\x0d\x8a\xae\x7a\xf6\x48\x30\x21\x66\x31\xad\xb6\x6c\x09\x2a\xbb\x49\x2f\xab\xb9\x6d\x8b\x49\x9b\xff\x8a\xb3\xb6\xbc\xb9\xc9\x7c\x99\xa1\x16\xe6\xe2\xf2\x2e\xa7\x45\x2b\x54\x4e\xda\x98\xb6\x0f\xa9\xe8\xa5\xfd\x9a\xb0\xd9\xb7\xa8\x20\x80\xca\xa1\xdf\x8b\x3c\x52\x13\xb4\xc5\x86\x09\xa2\x55\x53\x29\x96\xcb\x39\x97\x4e\xee\x2a\xb6\x71\xa5\xcb\x33\xf5\x85\x5d\xf1\x21\x49\x1a\x25\x40\x53\xd0\x7a\x5c\xfa\x33\xd9\x7a\xe5\x64\x21\x33\x38\x62\xf6\x55\xd1\x65\xe7\x79\xd2\x0c\xcb\xe6\xe5\x59\x34\x82\x94\xac\x33\xa3\x5a\xa3\x9c\x9e\x18\x86\x11\x82\x0f\xe5\xad\x22\x88\x89\x86\x61\x02\x2a\x6e\x74\x25\xe3\x74\x29\xb3\x5c\xd7\x93\xdb\x55\xe9\xee\xe5\x24\x03\xf1\x08\x92\x85\x61\xc7\xe4\x42\x83\xd4\xc4\x1d\xd4\x65\xee\x0e\x43\x28\x43\x27\x1a\xbd\x10\x8a\x41\xeb\xda\x8a\xd8\x99\xcb\xd8\xf8\x62\x90\x6a\x03\xa4\x75\xb7\x37\x4e\x01\x61\x24\x5e\x63\xaf\x81\xd4\x79\x77\x9c\x87\x32\x7f\xa1\x9c\x32\x04\x11\xd0\xfd\x39\x28\xa8\xad\xe4\xb6\xff\x36\x4e\x72\x5b\xb4\x33\x45\x9c\x8d\x28\xb3\x0d\x46\xb0\x6b\x38\x54\xda\x44\x79\xb6\xc4\xb1\xbe\x8c\xd2\x0c\xae\x04\xe5\xdc\x39\x0a\xd9\xfb\xcb\x9b\xe9\xc5\xf8\x7c\x02\xab\x36\x6c\x34\x46\x23\x21\xf0\x3c\x5a\x8d\x24\x71\xb1\xaf\x58\xf0\x90\x27\xd5\x84\x2c\x9f\x97\xdb\xff\x18\xf3\x2c\x99\x13\x83\x7d\xd5\x58\x29\x03\x47\xcc\x8e\x32\xc7\x6d\xb9\xb8\x55\xb9\x86\x71\x7d\x02\xb1\xe2\xd8\xd8\x12\x74\x1a\x0e\x08\xb3\x08\xd3\x7e\xaf\x55\x8e\xa0\x54\xe6\x1f\xc7\x50\x2e\x65\xf6\xcc\x6c\x1d\xf3\x22\x27\x2f\x34\xb3\x0d\xea\x9e\x74\x89\x92\x40\x4b\x84\xca\x39\x28\x96\x49\xc2\x6b\xb9\x0d\x58\x24\x0f\x9f\x10\x10\xef\x36\x09\xc4\x2e\xf8\x48\x1f\xd3\xce\x91\xa0\xcb\xb8\x04\x9f\x2f\x74\xe9\xc7\xe0\x37\x4b\xd1\x6c\x73\x31\xa3\x25\x51\x9a\x96\xc3\x5d\x74\xf6\x13\xc8\xbe\x82\x5f\x3f\x93\x3a\x9f\xa4\x16\x96\xbf\xca\x17\x23\x33\xe5\xc8\xe3\x36\x16\xc3\x83\x3e\x7c\x81\xda\x89\xba\xe2\x98\x87\x09\x44\xa9\x81\x2d\x85\xe0\x31\x96\x67\x1e\x56\x1c\x7e\xd8\xa3\x17\x2a\x15\x74\x99\xfa\x45\x55\xfc\xbd\x19\x87\xe0\x2f\xa6\x96\xfc\x57\x13\x90\xd0\x2b\x41\x60\xdc\xc9\x17\x93\x17\xac\x51\x5e\x91\x78\xab\xdc\xe7\xa3\xe5\x90\x69\x3c\x39\xd2\xa1\x21\xc5\xe6\x9c\x79\x30\x53\x16\x2a\x18\x79\x0f\x01\x1a\xc2\x43\xa6\x6d\x3c\x69\xaa\x53\xd7\x5a\xeb\xb3\xcb\xec\x8e\x91\xbd\xac\xf2\x2e\x50\xae\xa7\x98\x92\xf0\xfd\x74\x7a\x55\x66\x40\xd1\x43\xb7\xad\x47\x40\x12\xab\xd3\xba\x37\x9f\x8f\xe4\x9e\x7d\x04\xb3\x89\xd2\x9c\x2d\xc4\xae\x5e\x6d\xe8\xe1\xa9\x01\x99\x23\x1d\x7b\xa4\xf2\xae\x5c\xe5\x7e\x52\x7a\x04\xb5\x5f\x51\x21\x89\xa4\xfb\x56\xc8\x65\x16\xf7\x3c\x5e\x24\x9e\x4a\x16\x7e\xfc\x16\x15\x5d\x90\x59\x46\x9c\xee\xc5\x9c\x9f\x01\x91\x73\x3f\x1c\xc7\xbe\x4a\xe6\x7b\xee\xfd\x12\x25\x32\xbc\x49\xf3\xb9\x1f\xb6\x3e\xbf\xf2\xb2\xd9\xd2\x70\xd5\xf4\xd5\xe3\x25\xb4\x7c\xe6\x05\xec\x5c\xcc\x85\x86\x58\xb0\x9b\xaf\xad\x17\x1f\x24\x2e\x4e\x5b\xb9\xcc\x00\xb8\x42\x3a\xec\x05\x3f\x5c\x1c\xb2\xd7\xaf\xbe\xfd\xfe\xfc\x80\xbd\x7e\x27\xfe\xff\xea\x9d\xde\x9a\xc2\x8d\x08\xb1\x01\xb6\xc8\x17\xde\xeb\x60\x75\x81\xee\xd1\x83\x80\xde\xa4\x6a\x2f\x84\x45\x3b\x87\xf9\xea\x0e\xe2\xde\xdd\xab\x45\xac\x03\x9c\xbe\x38\xb1\xed\x2a\x42\x9b\xc6\xb8\xf6\x10\x0c\x35\xed\xd1\x24\xd0\xb4\x96\x93\xad\xa9\xac\x35\xc7\xdb\xf1\xb8\xf2\xdd\x5a\xf9\x29\xb8\x1a\xc8\xf8\xc8\xb3\x28\xbc\xf7\x17\xe6\x84\xd6\xc4\xda\xf6\xa8\x6e\xc6\xef\x0c\x59\x23\x37\x5f\x13\xe8\x4e\xae\x3b\xe2\xda\xb4\x15\x21\xd1\xd7\xc7\x67\xd9\x78\x6b\x4f\x35\x44\xcd\x3a\xcc\xb6\x32\x06\x42\x9b\xea\x53\xec\xdd\xe4\xcd\xca\x24\x49\x0c\xd3\x7e\x2f\x5a\x2e\x88\x73\x38\x27\x66\x98\x63\x4e\xbf\x7d\xeb\x2c\xef\xc0\x59\x6e\x58\x0f\xd4\x89\xf5\x79\x71\x4e\x7e\x6e\xed\x5e\xdc\x87\x94\x03\xde\xe8\x0e\xac\x4b\x0b\xbd\x24\x9e\xd2\x61\x1f\xc5\x4b\x8d\x26\xfa\x55\x96\xbf\xac\xbe\x71\x0f\x9a\x14\x09\x64\x9e\x5d\x4f\x99\xf7\xab\xbc\x5f\xe6\xbb\x6b\xcb\x5a\x64\x14\x55\xa8\xfc\x56\xbf\x43\xe4\xd2\xdb\xca\x7c\xb7\xcc\x08\x32\xe3\x1d\xb3\xb7\xe1\x18\x66\xfb\x01\x28\x95\x87\xc1\x24\x6f\xc3\x33\xb9\x5a\xd6\x5f\xcb\xdb\xac\x36\x6b\x0c\x37\xfc\xbd\x18\xed\x45\xd6\x5a\xcc\xfb\xdd\xca\x6a\x66\xe4\x22\xeb\x86\xb7\x92\x4d\xae\x46\x62\x6d\x22\xaa\x56\xab\x30\x39\xf8\xb4\x1a\xe4\x9d\xd9\xa9\x7d\x0d\x90\x1c\xda\x2f\xed\x0e\xcd\x85\xf0\x95\xa9\xe5\xc6\x38\x42\x3c\x79\x77\x36\x82\x9d\xf3\xdb\x97\xe4\xe5\xa8\xda\x93\xe4\xdd\xfc\x76\x28\xb9\x78\x21\x7a\xa6\x17\xfa\xbf\x79\x32\x88\xc9\x4b\x28\xda\x48\xbb\xb8\x93\x16\x70\xe4\x4b\x68\x09\xfe\x6b\xcc\x67\xa0\x33\x95\x0a\x6c\x50\x19\x46\x33\x74\x2b\x99\x1f\xe1\x1e\x18\x23\x66\x19\x85\xa2\x93\x20\xe0\xc3\x69\x32\x08\x1a\x17\xd6\xe0\x92\xa5\xfc\x5f\xa4\xd2\x86\x79\xc9\x22\x07\x77\x06\x2d\xca\xab\xb3\xdb\x77\xa7\x17\x23\xbc\xe8\x19\x31\x77\xb2\xb6\x87\xf9\x92\x03\x7c\x6d\xc5\xa0\xbc\xa2\xbf\xb0\xd8\x5e\xd1\xaa\x13\x1a\xf4\x73\x18\x3d\x86\x18\x31\xc9\xc0\xbd\xad\x90\x13\x0f\x83\x37\x8a\xae\x18\x81\x4f\x10\x81\x8b\x4e\xdd\xda\x40\x1a\x66\xe1\xbe\x5e\x9a\x2e\x99\xb6\x14\xdb\xd5\x5d\x3e\x74\xda\x12\x03\xc6\xfc\x6d\x3b\x6b\xd8\x37\x81\x34\xcf\xb2\x49\x7e\x69\x2a\x4a\xe7\x67\x19\xbd\xa1\xb3\xbc\x0b\x67\x95\xc9\xbc\x4c\x1e\x63\xc3\x5d\x5f\xc7\x1d\x41\x47\xe2\xcf\xce\xf2\xee\x9c\x3b\x13\x7f\x5a\xd4\x20\x73\x0f\x6b\x46\xe3\x5c\xf9\xf5\xe1\xa1\xaf\x13\x85\x45\x4d\x2a\x1a\x58\xf5\x46\x45\xdc\xbe\xed\x3d\x35\x9e\xf3\x1f\x20\xda\x10\x8b\x3d\x3f\x31\x4c\x02\x3d\xc9\xd1\x70\x0f\xe3\xbc\x61\x79\x42\xdf\x39\x43\xba\xec\x8d\x6c\x9c\x84\x74\x9e\x74\x02\x74\x6c\xad\xfa\x0b\xa7\x06\xa7\x53\xa2\xa3\xb5\xd8\x40\xda\x6f\x4b\x07\x21\xea\x22\xc3\xe6\xac\x4c\x3e\x69\xf6\x20\xe5\x8e\xf7\x6e\x33\xb8\xa9\x53\x2f\x71\xa3\xe6\x8e\xba\x9e\xfb\xae\x79\xec\xae\x18\x12\x46\x62\x4f\xb2\x0e\x72\xb4\x68\x19\x9d\xdb\xde\x81\x16\x1d\x71\x23\xb6\xec\x93\x28\x62\x9e\x0e\x09\xa1\xb5\x82\xc8\x2b\x95\x45\x70\x59\x26\x93\x93\xa2\x07\xe8\x95\x97\x99\x2e\xf0\x49\x75\x1d\x10\xb9\x2f\x57\x64\x0a\x0e\xe8\xea\x6b\xba\x1d\x1a\x6d\x0d\x37\xee\xff\xe9\xc7\x6f\x45\x9b\xbf\x59\x8b\x53\x16\x84\xd3\x16\x8f\xe0\xf7\x31\x5c\x97\x83\x02\xc3\x37\xf9\x98\xf5\xa0\x64\x8f\xd6\xe0\x95\xea\xe6\x88\x5a\x78\x02\xc9\x36\x44\xcb\x19\x0c\x4a\x0a\xfa\x29\x9e\x49\x5f\x20\xe5\x5d\x08\x23\x09\x83\xef\x98\xef\x20\x7a\x13\x24\x61\xf7\x58\x14\xf2\x11\x18\x3b\x8b\x8d\x6c\x9a\x3e\x46\x09\x1a\xb6\x04\xd1\xc2\x37\x1c\xa3\xac\x2b\x52\xb0\xe0\x92\x27\x5d\x59\xe4\xfc\x61\x7f\x2b\x49\xaa\x4c\xc2\x64\xe1\x62\xac\x2b\x46\xe2\x63\x26\xef\x4a\x15\x56\x2d\x23\xe1\x66\x01\x02\x6d\x18\xa7\xcd\x38\x34\xe5\x0c\x6b\x70\x4e\xb1\xae\x47\x44\x52\x9a\x7d\x63\xca\x27\xbc\x88\xee\xc0\x60\xac\x41\xe4\x2e\x03\xc1\xfc\x8e\xf1\x09\xac\x56\x03\xbb\x5a\xd6\x28\x3e\x4c\xae\x6f\x4e\x2f\x2f\xf4\x5d\x68\xbb\x80\x3d\xed\xc2\x87\xf1\xc2\xd4\x95\x34\xa5\xec\xb9\xf0\x04\x22\x10\x5d\xa9\x89\x44\xcf\x47\x57\x8e\xc2\xc9\x98\x9b\x78\xeb\xbd\x35\xe5\xbf\x8f\xaf\x2f\x4e\x2f\xde\x1d\x7d\x0c\xc5\x33\x39\x1d\xc0\x67\xc6\x09\xbb\x9c\x21\xc1\xfe\xb6\x54\x26\x07\x7e\xc8\x95\x89\x3b\xd8\x38\x2f\xfd\xc5\x32\x58\x83\xa1\xfb\x4c\xd4\xf1\x16\x7c\x8e\xa4\x7e\x68\x10\x58\x79\x6b\x76\xc7\xc5\x92\x20\xbd\x3b\xc0\x9e\x01\xfc\x9d\xa4\x53\x8b\x7a\x99\xf0\x19\xf8\x5f\xa1\xe2\x1a\xd9\xa7\x4b\x1e\x04\x82\x7e\x0a\x4e\x5d\x10\xfd\x45\x2b\xfe\x7f\x4f\x21\xc8\xdf\x88\xa1\x41\xb1\x8a\xc8\x14\xa1\x41\x74\xbe\x02\x07\xdd\xa5\xf2\x18\xdc\x38\x8b\x25\x3c\x8d\xa3\x70\xc3\x81\x67\x33\x00\xa8\xcc\x20\x21\x56\xc0\x70\x21\xaa\x78\x0f\x9e\x1f\xc0\x98\x90\x46\xe7\x70\xb5\xb0\x65\x0d\x27\x4d\x10\xd1\xf9\x48\x9a\xd3\xcc\x0f\xc0\x72\x14\xd3\x26\x46\x49\xbc\x84\xd0\x50\xd8\x0c\x29\xb4\xc2\x71\x10\xe5\x73\xf6\x16\x32\x0b\x24\xeb\xe7\x29\x13\x5b\x79\xef\xce\x4b\xf9\x21\x66\xc7\x05\xd5\x79\xc0\xe7\x8b\xd2\x85\xb1\xe0\x86\x66\xd3\xd8\xa0\x60\x18\x3f\x97\xd7\x48\x0d\x5a\xf5\x40\x55\xdb\x18\x71\x87\x51\x34\x87\xbc\xad\x4a\x0f\x21\xc4\x82\x97\x65\x7c\x15\x67\x25\x83\x15\x5a\xc2\x4a\xc7\x75\x6f\xd6\xd6\x8e\xff\x51\xde\x56\xd6\xf3\xcf\xa0\xf9\x3d\x98\x48\xcf\xc5\x9a\x90\x44\xeb\x22\x2c\xf1\xc6\x37\xa8\x99\x7f\xab\xb6\xd9\xc2\x2a\x5a\xe2\x1e\x4c\x96\x5b\xb9\x60\x9a\x08\xd1\xb7\x0a\xb3\x70\x08\xba\xc5\x7d\x74\x16\x94\x8d\x3f\x52\xf4\x46\xa0\x33\x18\x49\x9d\x41\xb4\xf5\x52\xa1\x41\x39\x57\x71\x69\xff\x3f\x13\xdf\x2d\xcc\x0d\x3e\x39\x7f\x74\xbd\x3f\xba\xde\xbe\xba\x5e\xef\xf9\xd0\x87\xaf\x9e\xc1\xf6\x10\x83\x4a\x35\x3e\xd9\x7f\x6c\xb4\x4e\x2d\x98\xcc\x1d\x2f\xbe\x00\xf8\xea\x08\xc1\x0b\xe5\xbe\xba\xb0\xdf\xfa\xc0\xf5\x9a\x5e\x20\x18\x42\x0a\x2b\x74\x7e\x4c\xfc\x95\x97\xac\xd1\x1c\x7f\x06\xee\x5e\x95\xdb\x64\x1d\x24\xfa\x29\xc4\x01\xba\xb8\x6c\x7d\x34\xf4\x3c\xf6\xa1\xa1\x56\x18\xdd\x1c\xda\xea\xe1\x35\xbb\x69\x66\x24\x02\x9b\x7d\x19\x61\xc3\x5c\xf1\x5b\x2c\x09\xd1\x72\xf9\xca\x93\x51\x97\xb6\xe5\xc1\x0e\x2e\x78\x80\xef\x26\xa2\x13\xd5\xf0\xef\x43\xc6\xfe\x2e\xd7\xb4\x95\xa0\x09\x8b\xdc\xe7\xa2\xaf\xa9\xe2\x98\xa8\x0b\x6e\x1e\x30\xae\x41\x2e\xef\x03\xe7\x70\x1d\xaa\x0a\x55\x5f\x3f\x4e\x30\x1e\x33\xf3\xe6\x73\x74\x7c\x16\x1f\x69\x03\xc2\x1d\xc7\xa0\xb8\x32\x2c\xe4\x21\xbb\x04\x75\x9c\x69\x0a\x58\xf9\x0b\xf0\x67\x9c\x1f\x14\xcc\x54\x61\x39\x04\xa5\x34\x60\xdc\x6e\x1c\xcb\xf4\xb9\xef\x8f\x6e\xf6\x47\x37\xeb\xd3\xcd\xec\xe7\x39\x2f\x81\x59\xf9\x08\x22\x43\xc8\x18\x3a\xcb\x2c\x8b\x1b\x81\x74\x98\x0c\x39\x20\x4e\xf0\xac\x56\x24\x6d\x94\x49\x55\xf0\x2b\xd5\xbc\xb0\xb7\xd5\xf7\xf9\x3d\xb0\xa4\xcb\x2f\x0d\x72\x20\xa2\x3d\x7c\x39\x88\x99\xd2\x2d\x80\xa9\x8e\x3d\x82\xc4\x17\x9d\x4e\x08\x29\xd6\xeb\x68\x8e\x11\xc7\xde\x9e\x9e\x4d\xb0\x9b\x70\x6f\x8e\x96\x9a\xd9\x5c\x2c\xc5\x7a\x3c\x74\x0a\xd6\xe8\xfe\xd3\x8f\x45\x3b\xcf\x96\xfe\x03\xaf\xf4\x46\x2a\xb6\xb1\x95\x2d\x05\x9d\x80\x35\xb6\x1f\xcf\x6f\xcf\xa6\xa7\x57\xe3\xeb\xe9\xcb\xb7\x97\xd7\xe7\xa3\x93\xf1\x74\xcc\x8e\x2f\x2f\xa6\x93\x8b\x29\x7b\x7f\x7a\x72\x32\xb9\xf8\x49\x8b\x8b\x56\xd9\x1e\xd3\xd5\xf5\xe9\x87\xf1\x74\xc2\x90\x5e\x27\x08\x73\x69\x7b\xae\x6d\x09\x49\x52\x03\xdf\xae\xf2\xf6\x9c\x17\x41\x74\x27\xe6\x3f\xe5\x8f\xfe\x53\xb9\xb3\xfb\xb1\x30\x08\x4b\x0f\x0f\x0f\x7f\x62\x3f\x16\xcf\x8b\x82\x7a\x6c\xfd\x29\x5a\xa3\x97\x5e\x2d\x5a\x28\x9b\xaf\x89\x74\x71\xcd\x94\x73\x37\xc4\xdd\xaf\xa7\xc8\xe8\xb0\x87\x51\x56\x4f\x45\x6e\x0d\x15\x58\x7a\x56\xac\x0a\x74\xd3\xab\x4e\x40\xd6\xf9\x3f\x74\xd0\x0c\x16\x3b\x1d\xc8\xb2\x48\xdf\x10\x1b\x6f\xed\x3f\x40\xa0\xbf\xce\x68\xbc\xa3\x50\x8c\x1e\xb9\x5e\x01\xb7\xf5\x9e\x40\xd9\x2a\x84\x7b\xef\x68\xed\x26\x93\x7b\x37\x83\x7a\xb8\x4a\x9c\x25\x5e\xba\x34\xb5\x4b\x5b\x19\x0a\x07\x43\x8b\x34\x5e\xda\xd3\x04\xc3\x87\x22\xe4\xc4\xbd\x58\xbc\x4d\xe8\x4d\x65\xad\x39\xc2\x2d\x71\xb1\x6b\x9e\xae\x63\xb8\x14\xc6\x98\xd3\xdc\x94\x86\xd5\xae\x92\x35\x86\x3b\xd8\x23\x32\x63\x7b\xb6\x15\xb1\xa7\x8f\xe3\xff\xa8\x32\xce\xd0\xb3\xd1\x97\xb4\xe7\x06\xd7\x9f\xb8\x3b\x87\xab\x51\x43\x2b\xea\x0b\x5a\xf3\x9a\xc5\xb9\x96\x7c\xe3\x9d\x3d\xc5\x8e\x31\xe3\x3e\x5e\xb0\xa6\x69\xfa\xde\x2e\x60\x4d\x7b\x5e\x65\x26\xd5\x92\x6f\x2d\x43\xe0\x80\x19\xa5\x0c\xd4\x37\xde\xdb\x53\xf6\xd3\xae\x09\xbc\xad\x08\x85\xbe\x7e\x0b\xdc\x7c\x49\xa2\xa9\xbf\xb9\xda\x78\x6b\x4f\xd5\xf2\xe6\xb8\xff\x25\xb1\x0c\xfc\x62\x60\xd0\x7c\x4d\xa4\x6b\xb0\x96\xdf\x2e\x60\xbb\x19\x81\x79\xc2\x40\xf6\xd1\x05\xae\x34\xb1\xd7\xf7\xbb\xad\xf7\x04\xca\x18\x49\x15\x8d\x22\xae\x12\xd0\xcb\x64\xeb\xc2\x38\x22\x5d\x46\x79\x30\x2f\x54\x3b\x10\x03\xdf\x00\xc0\x8d\x8c\x3d\xce\x07\x93\xbb\xc9\xc6\xdb\x3e\x8b\x6a\xc7\x62\x6e\x51\xc3\x9a\xbb\xac\xc8\xb2\x1c\x55\x01\xb0\x6d\x86\x43\x6d\x1a\x05\x9c\xf1\xd9\x32\x92\x3b\xed\xe2\x56\x4f\x08\x98\xac\x6b\xfe\x3d\x76\xc9\xa1\x77\xc1\xc2\x5e\x3e\xc1\xdb\x68\x23\xb1\x5d\xc0\x9e\x76\xc2\x51\xcb\x16\x7b\xbe\xfe\x63\xb5\x17\xb2\xe6\x01\xb1\xeb\xb4\xb4\x9b\x2f\xad\x69\xfa\xe1\x2c\x4a\x20\x00\x28\xcb\x53\x6f\xa1\x6f\x1a\x6d\x39\x02\x27\x65\x29\xaa\xc2\xa8\x04\xfe\xca\xd7\x8b\xd3\x51\x9a\xcc\x15\xb7\x66\x45\xa4\xd8\x53\x88\xea\x0a\x86\x66\xe2\xf4\x91\x46\xe1\x91\x8c\x01\xe0\x67\x8d\x0e\x76\x00\xab\x44\xf6\x29\xad\x12\x52\x40\x11\x99\x9f\xc2\xd0\xc3\x77\xcf\x90\x2c\xbb\x7e\xf3\xd1\x27\x52\x4b\x59\x57\xbf\x68\xb5\x15\x21\xd0\x7f\xf0\x02\x1f\x2c\x02\x96\xe2\xf4\x9e\xc9\x94\x54\x7e\x58\xda\x13\x19\xb8\xda\x56\x24\x63\x91\x3e\x20\x18\x40\x42\x2d\x30\xc7\x6f\x3f\xdd\x4c\xc7\xef\x4e\x2f\xde\x7d\x9a\x9e\x9e\x4f\x2e\x6f\xa7\xc5\x7c\x65\xec\x23\xfd\xc8\x0d\x86\xfb\x7a\x7a\x7b\x35\x20\xee\x2e\x72\xd6\xb8\x03\xef\x8e\xeb\x17\xf7\x8d\xb7\x04\xaa\xe2\xc0\x9b\xc7\xf2\xd0\xa4\xef\xb5\xa0\xb9\x15\x53\x5c\x5b\x49\xdb\x3d\x17\xce\x56\x86\x55\x7b\xeb\xbd\xbd\x0c\x62\xe3\x2a\xc3\x1d\x16\xd7\xfe\x85\x7f\xa8\x52\x1d\xea\x07\x3b\xa5\x2a\x1d\x0f\x06\xe9\x9b\x83\x09\x8f\x22\x0a\x51\xe4\x52\x3f\x33\x85\x24\xa3\x55\xb6\xc7\x14\x41\xac\x69\x3d\xd7\x8d\xd7\xd6\x74\x57\xe6\x00\x6b\x9b\xaf\x89\x74\xf5\x1d\x72\xeb\xbd\x35\x65\xe3\x6e\xc7\x71\xa7\x13\x46\x21\xbb\xf3\xd2\x4a\x73\xab\xef\x71\xa6\xa2\x14\x7e\x06\x19\x1a\x2f\x09\x34\xe1\x8a\x00\xa6\x32\x79\x05\xcc\x0b\x7d\x98\xe8\x81\xc6\x5d\x96\x7d\x45\x6b\x2c\xa6\xc8\xd0\x6e\xd1\xb8\xeb\x21\x03\x4c\xa4\x5b\x0a\x51\x78\xe8\xbf\xbb\x63\x9c\x73\x71\x16\x35\x0c\xdb\x8d\xb7\xd6\x54\x61\xb3\x5d\x5e\x05\xe0\x45\x81\x61\xe6\xd7\x17\xb5\xe7\x27\xea\xe9\x39\x34\x5e\x92\x68\x1a\x60\xf7\x40\x9a\xd6\xe3\xa6\xdf\xad\x9b\x17\x28\x56\x1d\xc9\x91\x8a\x3d\x4a\x15\xf0\x5f\x0f\x60\xab\x80\x3d\x6d\x69\xc7\xaf\xbf\xab\xd9\x2e\x60\x4d\xfb\x9f\xe6\xc4\xbe\x9b\xaf\x6d\xb7\x16\xb0\x32\x4a\x87\xe4\x47\x0c\x3f\x5d\x8b\x60\x71\xe7\x87\x60\xde\xe2\xa7\x4c\x2c\x71\x9e\x69\xff\xe1\x46\xc4\x5a\x74\x20\xaf\x42\xcc\xea\x7b\x6d\x7b\x21\x02\x8f\x62\xde\x4d\x8d\x39\x0b\xb5\xe5\x5c\x39\xe9\x3f\xa9\xbe\xa0\x3d\x2f\x73\xd0\x4f\xe7\x20\x9f\xca\x50\x51\x4f\x78\xf3\xbd\x35\x65\xcb\x48\x10\xbd\x03\x40\x6c\x5d\x13\x6f\x31\xd0\x5f\x23\x5b\x51\xb6\x89\x28\x31\x48\x20\x09\xeb\x28\x0e\x03\x04\x6f\xb0\x0f\xe6\x3a\x44\xf0\xd6\xfa\xd2\xd9\xc9\xc8\x71\x29\x6c\x9a\xc7\x76\x71\xd9\x2a\x46\xe5\xd3\xd9\x60\x4e\xed\x84\xf1\xed\xf5\x94\x37\x5e\xdb\xd3\xf5\x8d\xdd\xc9\x77\xec\x43\x46\x0f\x46\x57\x77\xc4\x9a\x0f\xb6\x41\x83\xa4\x29\x45\xe3\xd2\x45\xdf\xe5\x56\x25\x55\xe9\x87\xf5\x94\xb7\x0a\xd8\x83\x46\x95\x9f\x89\x72\xe3\x35\x81\x6e\x14\xc7\xa6\x7e\xb7\xf9\x9e\x4a\x99\x79\x68\x15\xff\x5a\x1c\x8a\x64\x56\xa9\x2e\x56\x86\x0a\xd6\xbc\xc1\x29\x55\xcb\xa7\xf9\xd2\x9e\x26\x46\xb6\xb6\x52\x54\x77\xea\xa7\x8d\xdd\xa8\xe5\xfa\x06\xa2\xd5\x26\xd1\x22\x31\x19\x71\xd9\x56\xb3\x16\x38\x57\xc1\xb8\x60\x61\x8b\x60\x9d\xd6\xb2\x36\x94\x24\x70\xeb\x52\x90\xb5\x94\xb0\xa7\xbe\x1d\x76\xa8\x36\x8d\xe8\x59\x5a\x56\xb3\xc7\x61\x70\x3f\xcf\x9d\xdc\xcf\x45\x2d\x7d\x9f\x68\xbe\x24\xd1\xd4\xcf\x8f\x1b\x6f\xed\xa9\xc2\x25\x91\x81\xec\xc6\x6b\x02\x5d\xc3\x9a\xdf\x7c\x49\xa2\x59\x06\x7f\x32\x12\x6f\x29\x65\xcd\xe5\xa1\xc3\x15\x75\xeb\xbd\x35\xe5\x47\x34\x95\x2e\x32\xc0\xa3\x6e\x1e\xdd\x04\xd0\x5b\x08\x83\xd0\x6b\x99\x52\xaa\x5a\xe3\x59\x1b\x36\x4d\x6b\xa7\xfd\x92\x0a\xc5\xae\x8c\xe4\xc5\x64\xf7\x02\x8c\xe6\x55\x8b\x1d\xc9\xb8\x16\x45\x16\x8d\x9b\x0c\x4c\x3d\xbf\x7c\xd1\xa7\x75\xe8\x49\x8d\x82\xfa\xf8\x6d\x11\x2f\x25\xf6\x4d\x78\xda\xcb\x39\x71\x32\xc7\x72\x30\x94\x24\x71\x2b\x92\xc4\xb2\x25\x0f\x62\xf6\xe3\xf1\xe5\xf9\xf9\xf8\xe2\x44\x6f\x00\x6d\x55\x87\x86\x20\x0f\xb3\xcb\x7b\xe5\x77\x93\x0a\xaa\x85\xbb\x89\xde\xfc\xc7\xb6\x1a\x09\x87\x34\x6b\x2b\x42\x95\x74\x59\xc1\x59\xd4\xa0\x70\x3f\xf1\xd3\xcf\xb7\x30\x97\xca\x74\x81\xea\x89\x8a\x67\x64\x02\x61\x59\x91\x84\x45\xec\x0a\x0a\xa1\x8c\x36\x47\xc6\xb2\x14\x8e\xdb\x46\x21\x2a\xdf\x5f\x95\x8c\xba\xf8\xd0\xcd\xac\xc6\x18\x62\xa5\xe6\x28\x9b\xca\xd4\x72\x32\x4d\x63\x15\x64\xc5\xd8\x93\xf6\xc8\x9c\xd8\x26\x80\x44\x61\xc9\xb7\x33\x57\xc3\xbd\x85\xd8\xb1\xc2\x41\x1f\x52\xd5\x99\x75\xbb\xfd\x09\x52\xb0\xbf\x0d\xa4\x0f\x5c\x19\xf7\x47\x3a\x21\x99\xd0\x75\x56\xa1\xf0\x3f\xe7\xab\xe6\x98\x10\x0f\x2c\xc6\x92\x55\x35\x12\x8e\x68\xce\x03\xb5\xad\x2f\x7e\xb6\x26\xf3\x35\xa2\xa2\x13\xa1\x60\x6c\x1a\xd5\xb1\x55\x9e\x4a\x7f\x4b\x96\xe2\x8a\x09\x56\x4e\x60\x59\x27\xf7\x14\x26\x9c\x8e\x84\x86\xc4\xda\x1b\xe3\x70\xd8\x08\x26\x8e\xb4\xca\x14\x4c\xf5\xb8\x95\x2f\x64\x7f\x16\x47\xdc\x33\x38\x90\x7d\xf9\x72\xde\x38\x16\x1f\xd4\xad\x9c\x1a\xe5\x58\xab\x05\xd7\x41\x19\x84\x27\x2d\xca\x15\xc9\x1a\xab\x70\x74\xe5\xab\x62\x86\x3c\x60\xf5\x9b\x39\x0c\x3d\x77\x11\x85\x6f\xe0\x66\xb9\xa8\x32\x96\x66\xce\x1d\xfb\x3e\xaa\x64\xfb\x42\x4a\x50\x17\x5c\x4b\x4d\x7d\x31\xe1\xc9\x19\x07\x33\x71\x15\x8f\x2a\x5f\xdc\x2e\xad\x7f\x5f\x72\x94\x4e\x75\xa3\xf4\x61\x05\xd9\x4e\x05\x9a\x55\x9d\x21\x10\x60\x4f\x38\x91\x66\xf8\x1d\xfd\x87\x4c\x82\x82\xaf\x58\x44\x60\x59\xc3\x85\x54\xec\x4a\x65\x07\x15\x0f\x7f\xad\x0f\xb4\xad\x4f\x63\xc2\x3c\x08\xd9\xaf\xc0\xdd\xe1\x0c\xac\xb7\x4a\xad\x97\x96\x81\xae\x18\xcd\x4a\x2c\xea\xe4\xa3\x2b\x46\xd2\xf2\x1a\xd4\xea\x8e\x97\x95\x55\xd8\x67\x19\x00\x00\xee\x24\xfd\x84\x4b\x37\xf3\x07\x18\xf0\xf2\xc1\xfc\xf8\x58\x3c\x51\xa7\x5c\x18\xf8\x09\x24\xb7\xe6\xc9\xa1\x0c\xde\x34\x93\x91\x3d\x8b\xd8\x83\x62\x73\xfa\x50\xc5\xfb\x6c\x56\xb5\x09\x41\xfd\x04\x58\x5a\x5b\xec\xdf\x7e\xfa\xb7\xff\x13\x00\x00\xff\xff\x1e\x58\x59\xb6\x2c\xb1\x02\x00")
func cf_i18n_resources_zh_hant_all_json_bytes() ([]byte, error) {
return bindata_read(
_cf_i18n_resources_zh_hant_all_json,
"cf/i18n/resources/zh_Hant.all.json",
)
}
func cf_i18n_resources_zh_hant_all_json() (*asset, error) {
bytes, err := cf_i18n_resources_zh_hant_all_json_bytes()
if err != nil {
return nil, err
}
info := bindata_file_info{name: "cf/i18n/resources/zh_Hant.all.json", size: 176428, mode: os.FileMode(436), modTime: time.Unix(1426081216, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _cf_i18n_test_fixtures_en_us_all_json = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x9c\x90\x31\x8b\x84\x30\x10\x85\x7b\x7f\xc5\x90\x5a\xf2\x03\xae\x3d\x6b\xbb\xab\x8e\x2b\xe6\xcc\xe8\x0e\x1b\x33\x92\x49\x58\x16\xf1\xbf\xaf\x11\xb6\x53\x91\x4d\x11\x86\xc7\x9b\xf7\x0d\xef\xb7\x02\x80\xb9\x7c\xeb\x33\xec\xcc\x17\x98\x86\x3c\x25\x52\x40\x50\xea\x72\xe4\xf4\x84\x21\x4a\x9e\x4c\xfd\xf6\xa5\x88\x41\x3d\x26\x96\x70\x6d\x61\x14\xc7\x3d\x53\x89\xef\xd1\x2b\x15\x7d\xa9\x77\xd8\xad\xc0\x7f\x66\xef\x26\xec\xee\x0a\xbd\xe4\xe0\x0e\xb1\xa7\xde\xcb\xc4\xef\x1b\x86\x81\x20\x2b\x45\x98\x50\xf5\x21\xf1\x18\x79\x6e\xbe\xcc\xdc\x0a\xe3\x30\x80\x93\x11\x39\xc0\x3c\xdb\x66\x9b\x5a\x1c\x69\x59\x00\xb5\x48\x3f\x2b\x25\x6c\x82\xb5\xf6\xbc\xfc\x4f\xb3\x76\x2f\xae\xfe\xaa\x57\x00\x00\x00\xff\xff\x6c\x31\x2e\x76\x17\x02\x00\x00")
func cf_i18n_test_fixtures_en_us_all_json_bytes() ([]byte, error) {
return bindata_read(
_cf_i18n_test_fixtures_en_us_all_json,
"cf/i18n/test_fixtures/en_US.all.json",
)
}
func cf_i18n_test_fixtures_en_us_all_json() (*asset, error) {
bytes, err := cf_i18n_test_fixtures_en_us_all_json_bytes()
if err != nil {
return nil, err
}
info := bindata_file_info{name: "cf/i18n/test_fixtures/en_US.all.json", size: 535, mode: os.FileMode(436), modTime: time.Unix(1426081216, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _cf_i18n_test_fixtures_fr_fr_all_json = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x9c\x90\x41\x4a\xc5\x30\x10\x86\xf7\x3d\xc5\xd0\x8d\x9b\x47\x0f\xe0\xd6\xb7\x7e\x08\xe2\x4a\x5c\x8c\xcd\xb4\x0e\x26\x99\x90\xc9\x28\x52\x7a\x20\xcf\xe1\xc5\x4c\xab\x82\xe0\xab\x48\xb3\x08\x93\x9f\x3f\xff\xf7\x27\x77\x0d\x00\x4c\xcb\x56\x57\xcb\xae\xbd\x84\xf6\x48\x9e\x0a\x29\x20\x28\xf5\x96\xb9\xbc\xc2\x98\xc5\x52\x7b\xf8\xf6\x95\x8c\x51\x3d\x16\x96\xf8\xbf\x0b\x41\x1c\x0f\x4c\x4b\xfc\x80\x5e\x69\xd1\xe7\xc3\x19\xf6\x49\xe0\xc1\xd8\xbb\x84\xfd\x93\xc2\x20\x16\xdd\x26\xf6\x1a\xf5\xa7\xb9\x54\xe4\xf3\xfb\x9b\xee\xa0\x5e\x3d\x62\x1c\x09\x4c\x29\x43\x42\xd5\x17\xc9\xdb\xd8\x4f\x73\x86\x20\x05\x1c\xad\x7e\x5a\x06\x7f\x61\x85\x3d\x2b\x16\xb2\xbc\xa3\xc4\xfa\x8b\x1c\x47\x70\x12\x90\x23\x4c\x53\x77\x5c\xa7\x13\x06\x9a\x67\xa8\xaf\xad\xd2\x6d\xed\x18\x57\xa1\xeb\xba\xcd\x8e\x37\x96\x52\x26\xd5\x7a\xfc\x8a\xa3\x5f\x79\xbd\x84\x40\x7f\x44\x9e\x2d\xde\xdc\x37\x1f\x01\x00\x00\xff\xff\xe0\x1a\x25\x24\x33\x02\x00\x00")
func cf_i18n_test_fixtures_fr_fr_all_json_bytes() ([]byte, error) {
return bindata_read(
_cf_i18n_test_fixtures_fr_fr_all_json,
"cf/i18n/test_fixtures/fr_FR.all.json",
)
}
func cf_i18n_test_fixtures_fr_fr_all_json() (*asset, error) {
bytes, err := cf_i18n_test_fixtures_fr_fr_all_json_bytes()
if err != nil {
return nil, err
}
info := bindata_file_info{name: "cf/i18n/test_fixtures/fr_FR.all.json", size: 563, mode: os.FileMode(436), modTime: time.Unix(1426081216, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _cf_i18n_test_fixtures_zh_hans_all_json = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x8a\xe6\x52\x50\x50\xa8\x06\x11\x40\xa0\x94\x99\xa2\x64\xa5\xa0\xe4\x92\x9a\x93\x5a\x92\x5a\xac\x90\xa8\x50\x9c\x9a\x5c\x5a\x94\x59\x52\xa9\x90\x5e\x94\x5f\x5a\xa0\xa4\x03\x53\x57\x52\x94\x98\x57\x9c\x93\x58\x92\x99\x9f\x47\x9c\x86\xdc\xfc\x94\xcc\xb4\xcc\x54\x90\xf1\x69\x89\x39\xc5\xa9\x20\xf1\x5a\x1d\x2c\x76\xfb\xe5\x2b\x24\x95\x66\xe6\xa4\x14\x24\x26\x67\x17\x2b\xa4\xe5\x97\xe6\xa5\xe0\xb4\x16\xae\xf0\xd9\x9c\x55\xcf\x3a\xf7\x3d\xed\xd8\x40\x86\x85\xce\x19\x89\x79\xe9\xa9\x0a\xa5\xc5\xa9\x45\x0a\x05\x89\xc5\xc5\xe5\xf9\x45\xb8\x6d\x7c\x36\x7b\xcb\xb3\x29\x3b\x9f\x4f\x59\xf1\xac\x63\xfb\xd3\xf5\x6d\xcf\x17\x34\x92\x61\x23\x38\xb4\x32\xf3\xd2\x15\x52\xf2\x73\x13\x33\xf3\x14\xaa\xab\xf5\x5c\xc0\x2c\xbf\xc4\xdc\xd4\xda\x5a\x85\xc4\x62\x90\x50\x28\xd0\x41\x79\x60\x01\x3d\x3d\x3d\xfc\x21\x4f\xae\x59\x58\x5d\xcc\x15\xcb\x05\x08\x00\x00\xff\xff\xc4\x6e\xce\xf7\x14\x02\x00\x00")
func cf_i18n_test_fixtures_zh_hans_all_json_bytes() ([]byte, error) {
return bindata_read(
_cf_i18n_test_fixtures_zh_hans_all_json,
"cf/i18n/test_fixtures/zh_Hans.all.json",
)
}
func cf_i18n_test_fixtures_zh_hans_all_json() (*asset, error) {
bytes, err := cf_i18n_test_fixtures_zh_hans_all_json_bytes()
if err != nil {
return nil, err
}
info := bindata_file_info{name: "cf/i18n/test_fixtures/zh_Hans.all.json", size: 532, mode: os.FileMode(436), modTime: time.Unix(1426081216, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _cf_i18n_test_fixtures_zh_hant_all_json = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x9c\x91\xc1\x6a\x84\x30\x10\x86\xef\x3e\xc5\x90\x53\x0b\x92\x07\xe8\xb5\x1e\x7a\xf2\xd6\x53\xe9\x61\x6a\x46\x3b\x34\x4e\x24\x93\x50\x16\xf1\xdd\xd7\x08\x7b\x13\x95\xcd\x21\x84\x9f\x7c\xf9\x7e\x32\x5f\x15\x00\xcc\x65\x5b\x97\x61\x67\xde\xc0\x34\xe4\x29\x91\x02\x82\x52\x97\x23\xa7\x1b\x0c\x31\xe4\xc9\xd4\x8f\x7b\x29\xa2\xa8\xc7\xc4\x41\x0a\xf0\xf2\x81\x92\x5e\xcf\xb1\x31\x38\xee\x99\x8a\xa4\x47\xaf\x54\xf2\xa5\xde\x69\xd0\x06\xf8\xc9\xec\xdd\x84\xdd\x9f\x42\x1f\xb2\xb8\x13\xf9\x21\x71\xd9\xfb\xfe\x8b\x32\x10\x64\xa5\x08\x13\xaa\xfe\x87\x78\x26\x3e\x46\x2e\x9b\xb7\xcf\x63\x19\xc0\x85\x11\x59\x60\x9e\x6d\xb3\x9d\x5a\x1c\x69\x59\x00\xb5\x44\x9f\xab\x45\xb6\xc0\x5a\x7b\x65\x1c\xcf\xbe\xb8\xdb\xbb\xfa\xae\xee\x01\x00\x00\xff\xff\x09\x9e\xcb\x1f\x2f\x02\x00\x00")
func cf_i18n_test_fixtures_zh_hant_all_json_bytes() ([]byte, error) {
return bindata_read(
_cf_i18n_test_fixtures_zh_hant_all_json,
"cf/i18n/test_fixtures/zh_Hant.all.json",
)
}
func cf_i18n_test_fixtures_zh_hant_all_json() (*asset, error) {
bytes, err := cf_i18n_test_fixtures_zh_hant_all_json_bytes()
if err != nil {
return nil, err
}
info := bindata_file_info{name: "cf/i18n/test_fixtures/zh_Hant.all.json", size: 559, mode: os.FileMode(436), modTime: time.Unix(1426081216, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
// Asset loads and returns the asset for the given name.
// It returns an error if the asset could not be found or
// could not be loaded.
func Asset(name string) ([]byte, error) {
cannonicalName := strings.Replace(name, "\\", "/", -1)
if f, ok := _bindata[cannonicalName]; ok {
a, err := f()
if err != nil {
return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err)
}
return a.bytes, nil
}
return nil, fmt.Errorf("Asset %s not found", name)
}
// MustAsset is like Asset but panics when Asset would return an error.
// It simplifies safe initialization of global variables.
func MustAsset(name string) []byte {
a, err := Asset(name)
if (err != nil) {
panic("asset: Asset(" + name + "): " + err.Error())
}
return a
}
// AssetInfo loads and returns the asset info for the given name.
// It returns an error if the asset could not be found or
// could not be loaded.
func AssetInfo(name string) (os.FileInfo, error) {
cannonicalName := strings.Replace(name, "\\", "/", -1)
if f, ok := _bindata[cannonicalName]; ok {
a, err := f()
if err != nil {
return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err)
}
return a.info, nil
}
return nil, fmt.Errorf("AssetInfo %s not found", name)
}
// AssetNames returns the names of the assets.
func AssetNames() []string {
names := make([]string, 0, len(_bindata))
for name := range _bindata {
names = append(names, name)
}
return names
}
// _bindata is a table, holding each asset generator, mapped to its name.
var _bindata = map[string]func() (*asset, error){
"cf/i18n/resources/de_DE.all.json": cf_i18n_resources_de_de_all_json,
"cf/i18n/resources/en_US.all.json": cf_i18n_resources_en_us_all_json,
"cf/i18n/resources/es_ES.all.json": cf_i18n_resources_es_es_all_json,
"cf/i18n/resources/fr_FR.all.json": cf_i18n_resources_fr_fr_all_json,
"cf/i18n/resources/it_IT.all.json": cf_i18n_resources_it_it_all_json,
"cf/i18n/resources/ja_JA.all.json": cf_i18n_resources_ja_ja_all_json,
"cf/i18n/resources/pt_BR.all.json": cf_i18n_resources_pt_br_all_json,
"cf/i18n/resources/zh_Hans.all.json": cf_i18n_resources_zh_hans_all_json,
"cf/i18n/resources/zh_Hant.all.json": cf_i18n_resources_zh_hant_all_json,
"cf/i18n/test_fixtures/en_US.all.json": cf_i18n_test_fixtures_en_us_all_json,
"cf/i18n/test_fixtures/fr_FR.all.json": cf_i18n_test_fixtures_fr_fr_all_json,
"cf/i18n/test_fixtures/zh_Hans.all.json": cf_i18n_test_fixtures_zh_hans_all_json,
"cf/i18n/test_fixtures/zh_Hant.all.json": cf_i18n_test_fixtures_zh_hant_all_json,
}
// AssetDir returns the file names below a certain
// directory embedded in the file by go-bindata.
// For example if you run go-bindata on data/... and data contains the
// following hierarchy:
// data/
// foo.txt
// img/
// a.png
// b.png
// then AssetDir("data") would return []string{"foo.txt", "img"}
// AssetDir("data/img") would return []string{"a.png", "b.png"}
// AssetDir("foo.txt") and AssetDir("notexist") would return an error
// AssetDir("") will return []string{"data"}.
func AssetDir(name string) ([]string, error) {
node := _bintree
if len(name) != 0 {
cannonicalName := strings.Replace(name, "\\", "/", -1)
pathList := strings.Split(cannonicalName, "/")
for _, p := range pathList {
node = node.Children[p]
if node == nil {
return nil, fmt.Errorf("Asset %s not found", name)
}
}
}
if node.Func != nil {
return nil, fmt.Errorf("Asset %s not found", name)
}
rv := make([]string, 0, len(node.Children))
for name := range node.Children {
rv = append(rv, name)
}
return rv, nil
}
type _bintree_t struct {
Func func() (*asset, error)
Children map[string]*_bintree_t
}
var _bintree = &_bintree_t{nil, map[string]*_bintree_t{
"cf": &_bintree_t{nil, map[string]*_bintree_t{
"i18n": &_bintree_t{nil, map[string]*_bintree_t{
"resources": &_bintree_t{nil, map[string]*_bintree_t{
"de_DE.all.json": &_bintree_t{cf_i18n_resources_de_de_all_json, map[string]*_bintree_t{
}},
"en_US.all.json": &_bintree_t{cf_i18n_resources_en_us_all_json, map[string]*_bintree_t{
}},
"es_ES.all.json": &_bintree_t{cf_i18n_resources_es_es_all_json, map[string]*_bintree_t{
}},
"fr_FR.all.json": &_bintree_t{cf_i18n_resources_fr_fr_all_json, map[string]*_bintree_t{
}},
"it_IT.all.json": &_bintree_t{cf_i18n_resources_it_it_all_json, map[string]*_bintree_t{
}},
"ja_JA.all.json": &_bintree_t{cf_i18n_resources_ja_ja_all_json, map[string]*_bintree_t{
}},
"pt_BR.all.json": &_bintree_t{cf_i18n_resources_pt_br_all_json, map[string]*_bintree_t{
}},
"zh_Hans.all.json": &_bintree_t{cf_i18n_resources_zh_hans_all_json, map[string]*_bintree_t{
}},
"zh_Hant.all.json": &_bintree_t{cf_i18n_resources_zh_hant_all_json, map[string]*_bintree_t{
}},
}},
"test_fixtures": &_bintree_t{nil, map[string]*_bintree_t{
"en_US.all.json": &_bintree_t{cf_i18n_test_fixtures_en_us_all_json, map[string]*_bintree_t{
}},
"fr_FR.all.json": &_bintree_t{cf_i18n_test_fixtures_fr_fr_all_json, map[string]*_bintree_t{
}},
"zh_Hans.all.json": &_bintree_t{cf_i18n_test_fixtures_zh_hans_all_json, map[string]*_bintree_t{
}},
"zh_Hant.all.json": &_bintree_t{cf_i18n_test_fixtures_zh_hant_all_json, map[string]*_bintree_t{
}},
}},
}},
}},
}}
// Restore an asset under the given directory
func RestoreAsset(dir, name string) error {
data, err := Asset(name)
if err != nil {
return err
}
info, err := AssetInfo(name)
if err != nil {
return err
}
err = os.MkdirAll(_filePath(dir, path.Dir(name)), os.FileMode(0755))
if err != nil {
return err
}
err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode())
if err != nil {
return err
}
err = os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime())
if err != nil {
return err
}
return nil
}
// Restore assets under the given directory recursively
func RestoreAssets(dir, name string) error {
children, err := AssetDir(name)
if err != nil { // File
return RestoreAsset(dir, name)
} else { // Dir
for _, child := range children {
err = RestoreAssets(dir, path.Join(name, child))
if err != nil {
return err
}
}
}
return nil
}
func _filePath(dir, name string) string {
cannonicalName := strings.Replace(name, "\\", "/", -1)
return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...)
} | }
func cf_i18n_resources_it_it_all_json() (*asset, error) { |
keystore.rs | use std::io::{self, BufReader};
use crypto::pbkdf2::pbkdf2;
use crypto::chacha20::ChaCha20;
use crypto::hmac::Hmac;
use crypto::sha2::Sha512;
use crypto::mac::Mac;
use crypto::symmetriccipher::SynchronousStreamCipher;
use std::str::FromStr;
use crate::error::*;
use std::path::Path;
use std::fs;
use std::convert::TryFrom;
use data_encoding::HEXLOWER_PERMISSIVE;
// We liberally use newtypes to help prevent accidentally mixing up data, and making it more explicit what kind of data
// functions accept and return. For example, you don't want to decrypt block data as if it were archive data.
new_type!{ secret HmacKey(128); }
new_type!{ public BlockId(32); }
new_type!{ public ArchiveId(32); }
new_type!{ public SIV(32); }
impl ToString for BlockId {
fn to_string(&self) -> String {
HEXLOWER_PERMISSIVE.encode(&self.0)
}
}
impl ToString for ArchiveId {
fn to_string(&self) -> String {
HEXLOWER_PERMISSIVE.encode(&self.0)
}
}
impl FromStr for ArchiveId {
type Err = Error;
fn from_str(s: &str) -> ::std::result::Result<ArchiveId, Self::Err> {
let v = HEXLOWER_PERMISSIVE.decode(s.as_bytes()).map_err(|_| Error::InvalidArchiveId)?;
ArchiveId::from_slice(&v).ok_or(Error::InvalidArchiveId)
}
}
pub struct EncryptedArchiveName(pub Vec<u8>);
pub struct EncryptedBlock(pub Vec<u8>);
pub struct EncryptedArchiveMetadata(pub Vec<u8>);
#[derive(PartialEq, Clone)]
struct SivEncryptionKeys {
/// Used to calculate the siv for plaintext
siv_key: HmacKey,
/// The cipher key
cipher_key: HmacKey,
}
impl SivEncryptionKeys {
fn encrypt(&self, aad: &[u8], plaintext: &[u8]) -> (SIV, Vec<u8>) {
let siv = self.calculate_siv(aad, plaintext);
let ciphertext = self.cipher(&siv, plaintext);
(siv, ciphertext)
}
fn decrypt(&self, aad: &[u8], siv: &SIV, ciphertext: &[u8]) -> Option<Vec<u8>> {
let plaintext = self.cipher(siv, ciphertext);
let expected_siv = self.calculate_siv(aad, &plaintext);
if !siv.constant_eq(&expected_siv) {
return None;
}
Some(plaintext)
}
// TODO: This method should be private
/// Encrypts or decrypts data using the combination of self.cipher_key and nonce.
/// First derives an encryption key using HMAC-SHA-512 (cipher_key, nonce)
/// and then performs ChaCha20 (derived_key, data).
fn cipher(&self, nonce: &SIV, data: &[u8]) -> Vec<u8> {
let big_key = {
let mut hmac = Hmac::new(Sha512::new(), &self.cipher_key[..]);
hmac.input(&nonce[..]);
hmac.result()
};
let (chacha_key, chacha_nonce) = big_key.code().split_at(32);
// Using slice notation here so this code panics in case we accidentally didn't derive the right size big_key
let mut encryptor = ChaCha20::new(&chacha_key[..32], &chacha_nonce[..8]);
let mut output = vec!(0u8; data.len());
encryptor.process(data, &mut output);
output
}
// TODO: This method should be private
/// Calculate the unique SIV for the combination of self.siv_key, aad, and plaintext.
/// Equivilent to: HMAC-SHA-512-256 (siv_key, aad || plaintext || le64(aad.length) || le64(plaintext.length))
fn calculate_siv(&self, aad: &[u8], plaintext: &[u8]) -> SIV {
let mut hmac = Hmac::new(Sha512::new(), &self.siv_key[..]);
hmac.input(aad);
hmac.input(plaintext);
hmac.input(&u64::try_from(aad.len()).expect("calculate_siv: length did not fit into u64").to_le_bytes());
hmac.input(&u64::try_from(plaintext.len()).expect("calculate_siv: length did not fit into u64").to_le_bytes());
// Truncated to 256-bits
SIV::from_slice(&hmac.result().code()[..32]).expect("internal error")
}
fn from_slice(bs: &[u8]) -> Option<SivEncryptionKeys> {
if bs.len() != 256 {
return None;
}
let (siv_key, cipher_key) = bs.split_at(128);
Some(SivEncryptionKeys {
siv_key: HmacKey::from_slice(siv_key)?,
cipher_key: HmacKey::from_slice(cipher_key)?,
})
}
}
#[derive(PartialEq)]
pub struct KeyStore {
/// The key all other keys are derived from. This is the only value that needs to be saved and loaded.
master_key: HmacKey,
block_keys: SivEncryptionKeys,
archive_name_keys: SivEncryptionKeys,
blocklist_keys: SivEncryptionKeys,
metadata_keys: SivEncryptionKeys,
}
impl KeyStore {
/// Create a new, random, KeyStore
pub fn new() -> KeyStore {
let master_key = HmacKey::from_rng();
KeyStore::from_master_key(master_key)
}
/// Derive the KeyStore from master_key.
/// This is done using PBKDF2-HMAC-SHA512 (password=master_key, salt=[], iterations=1)
/// to derive all the other keys in the KeyStore.
pub fn from_master_key(master_key: HmacKey) -> KeyStore {
let raw_keys = {
let mut raw_keys = vec![0u8; 4 * 256];
let mut hmac = Hmac::new(Sha512::new(), &master_key[..]);
pbkdf2(&mut hmac, &[], 1, &mut raw_keys);
raw_keys
};
let (block_keys, raw_keys) = raw_keys.split_at(256);
let (archive_name_keys, raw_keys) = raw_keys.split_at(256);
let (blocklist_keys, raw_keys) = raw_keys.split_at(256);
let (metadata_keys, _) = raw_keys.split_at(256);
KeyStore {
master_key,
block_keys: SivEncryptionKeys::from_slice(block_keys).expect("internal error"),
archive_name_keys: SivEncryptionKeys::from_slice(archive_name_keys).expect("internal error"),
blocklist_keys: SivEncryptionKeys::from_slice(blocklist_keys).expect("internal error"),
metadata_keys: SivEncryptionKeys::from_slice(metadata_keys).expect("internal error"),
}
}
/// Save this KeyStore to writer. This writes a hex encoded 1024-bit master key.
pub fn save<W: io::Write>(&self, mut writer: W) -> Result<()> {
Ok(writer.write_all(HEXLOWER_PERMISSIVE.encode(&self.master_key[..]).as_bytes())?)
}
/// Load KeyStore from reader. Expects a hex encoded 1024-bit master key, from which the KeyStore is derived.
pub fn load<R: io::Read>(mut reader: R) -> Result<KeyStore> {
let mut hexbytes = [0u8; 256];
reader.read_exact(&mut hexbytes)?;
let slice = HEXLOWER_PERMISSIVE.decode(&hexbytes).map_err(|_| Error::CorruptKeystore)?;
let master_key = HmacKey::from_slice(&slice).ok_or(Error::CorruptKeystore)?;
Ok(KeyStore::from_master_key(master_key))
}
pub fn load_from_path<P: AsRef<Path>>(path: P) -> Result<KeyStore> {
let file = fs::File::open(path)?;
let mut reader = BufReader::new(file);
KeyStore::load(&mut reader)
}
pub fn encrypt_block(&self, block: &[u8]) -> (BlockId, EncryptedBlock) {
let (id, ciphertext) = self.block_keys.encrypt(&[], block);
(BlockId(id.0), EncryptedBlock(ciphertext))
}
pub fn decrypt_block(&self, block_id: &BlockId, encrypted_block: &EncryptedBlock) -> Result<Vec<u8>> {
self.block_keys.decrypt(&[], &SIV(block_id.clone().0), &encrypted_block.0).ok_or(Error::CorruptBlock)
}
pub fn encrypt_archive_name(&self, name: &str) -> (ArchiveId, EncryptedArchiveName) {
let (id, ciphertext) = self.archive_name_keys.encrypt(&[], name.as_bytes());
(ArchiveId(id.0), EncryptedArchiveName(ciphertext))
}
pub fn decrypt_archive_name(&self, archive_id: &ArchiveId, encrypted_name: &EncryptedArchiveName) -> Result<String> {
let plaintext = self.archive_name_keys.decrypt(&[], &SIV(archive_id.clone().0), &encrypted_name.0).ok_or(Error::CorruptArchiveName)?;
String::from_utf8(plaintext).map_err(|_| Error::CorruptArchiveName)
}
pub fn encrypt_archive_metadata(&self, archive_id: &ArchiveId, metadata: &[u8]) -> EncryptedArchiveMetadata |
pub fn decrypt_archive_metadata(&self, archive_id: &ArchiveId, encrypted_metadata: &EncryptedArchiveMetadata) -> Result<Vec<u8>> {
if encrypted_metadata.0.len() < 32 {
return Err(Error::CorruptArchiveMetadata);
}
let (siv, ciphertext) = encrypted_metadata.0.split_at(32);
let plaintext = self.metadata_keys.decrypt(&archive_id[..], &SIV::from_slice(siv).expect("internal error"), ciphertext).ok_or(Error::CorruptArchiveMetadata)?;
Ok(plaintext)
}
}
#[cfg(test)]
mod test {
use super::{HmacKey, SivEncryptionKeys, KeyStore, SIV};
use crypto::pbkdf2::pbkdf2;
use crypto::hmac::Hmac;
use crypto::sha2::Sha512;
use data_encoding::HEXLOWER_PERMISSIVE;
use rand::rngs::OsRng;
use rand::Rng;
use rand::seq::SliceRandom;
// TODO: As a sanity check, we should perform some statistical tests on the outputs from all the encryption functions.
// If they are implemented correctly, all output should look indistiguishable from random.
fn from_hexstr(hexstr: &str) -> Vec<u8> {
HEXLOWER_PERMISSIVE.decode(hexstr.as_bytes()).unwrap()
}
// PBKDF2 output should be extendable (i.e. we can add keys to the KeyStore later by increasing the length passed to PBKDF2)
#[test]
fn test_pbkdf2_extendable() {
let key = HmacKey::from_rng();
let out1 = {
let mut output = vec![0u8; 100];
let mut hmac = Hmac::new(Sha512::new(), &key[..]);
pbkdf2(&mut hmac, &[], 1, &mut output);
output
};
let out2 = {
let mut output = vec![0u8; 200];
let mut hmac = Hmac::new(Sha512::new(), &key[..]);
pbkdf2(&mut hmac, &[], 1, &mut output);
output.truncate(100);
output
};
assert_eq!(out1, out2);
}
// Exercises the encryption system
#[test]
fn test_encryption() {
let keys = SivEncryptionKeys {
siv_key: HmacKey::from_rng(),
cipher_key: HmacKey::from_rng(),
};
let other_keys = SivEncryptionKeys {
siv_key: HmacKey::from_rng(),
cipher_key: HmacKey::from_rng(),
};
let mut plaintext = vec![0u8; OsRng.gen_range(16, 1024)];
let mut aad = vec![0u8; OsRng.gen_range(0, 1024)];
OsRng.fill(&mut plaintext[..]);
OsRng.fill(&mut aad[..]);
// The same aad and plaintext should result in the same siv and ciphertext
let (siv1, ciphertext1) = keys.encrypt(&aad, &plaintext);
let (siv2, ciphertext2) = keys.encrypt(&aad, &plaintext);
assert_eq!(siv1, siv2);
assert_eq!(ciphertext1, ciphertext2);
// But not if the key changes (NOTE: Random chance could result in ciphertexts being equal, but the liklihood is impossibly small for our test case (which has a minimum 16 byte plaintext))
let (other_siv, other_ciphertext) = other_keys.encrypt(&aad, &plaintext);
assert_ne!(other_siv, siv1);
assert_ne!(other_ciphertext, ciphertext1);
// Changing aad or plaintext should change siv and ciphertext
let (siv3, ciphertext3) = keys.encrypt(b"different inputs", &plaintext);
let (siv4, ciphertext4) = keys.encrypt(&aad, b"different inputs");
assert_ne!(siv1, siv3);
assert_ne!(ciphertext1, ciphertext3);
assert_ne!(siv1, siv4);
assert_ne!(ciphertext1, ciphertext4);
assert_ne!(siv3, siv4);
assert_ne!(ciphertext3, ciphertext4);
// Ciphertext should be completely different even if only one byte of plaintext is different.
let mut mutated_plaintext = plaintext.clone();
*mutated_plaintext.choose_mut(&mut OsRng).unwrap() ^= 0xa;
let (siv5, ciphertext5) = keys.encrypt(&aad, &plaintext[..plaintext.len() - 1]);
let (siv6, ciphertext6) = keys.encrypt(&aad, &mutated_plaintext);
assert_ne!(siv1, siv5);
assert_ne!(&ciphertext1[..plaintext.len() - 1], &ciphertext5[..]);
assert_ne!(siv1, siv6);
assert_ne!(&ciphertext1, &ciphertext6);
// Length preserving
assert_eq!(plaintext.len(), ciphertext1.len());
// Can be decrypted
assert_eq!(keys.decrypt(&aad, &siv1, &ciphertext1).unwrap(), plaintext);
// Using the wrong key, siv, aad, or ciphertext should cause decryption errors
assert!(keys.decrypt(&aad, &siv3, &ciphertext1).is_none());
assert!(keys.decrypt(&aad, &siv1, &ciphertext3).is_none());
assert!(keys.decrypt(b"this is not the aad you are looking for", &siv1, &ciphertext1).is_none());
assert!(keys.decrypt(&aad, &siv1, &ciphertext1[..ciphertext1.len()-1]).is_none());
assert!(other_keys.decrypt(&aad, &siv1, &ciphertext1).is_none());
}
#[test]
fn test_known_encryption_vectors() {
let test_keys = SivEncryptionKeys {
siv_key: HmacKey::from_slice(&from_hexstr("2ceaccb6b306992f6affd27049b62d823a90f8125a808d292e27f5f82bf7629b8f9ada4a8135ed99cf5d5aef0ca6a69fe54104a8246e7e5a6bb210d0c945559834d3d12b40bd61cf75a462aad1a0d71d0d963957fb8270e83902f48bfd7b8e8f0603c503238c3b24c8f4ab645c521732f31bd0b3d455448f33d56102476ee5c3")).unwrap(),
cipher_key: HmacKey::from_slice(&from_hexstr("8d45ccdc385e71c9ab0619d212fcc5118fb44c7d8b37d5dc0db4214b9787905913bdd73e3afe1db5fbea82263d3171c17d2acdf88517e6d78cdb5339f10f50ef68a55950aca578c7a170476da81a705abdf031e74bf6fbf65180e51ee14983c7d100f377cea3a27caca46fd2e2bb2cca48afd5f49cf18fbe43d580e0465b308a")).unwrap(),
};
let test_aad = b"aad";
let test_plaintext = b"plaintext";
let test_siv = SIV::from_slice(&from_hexstr("805165cad67979f70e16de978a34693972856db82c390b5bc824fc197a68d5d5")).unwrap();
let test_ciphertext = from_hexstr("c7a4a22690419ee831");
let (siv, ciphertext) = test_keys.encrypt(test_aad, test_plaintext);
assert_eq!(siv, test_siv);
assert_eq!(ciphertext, test_ciphertext);
// This test vector was generated using an independent Python implementation
let test_keys = SivEncryptionKeys {
siv_key: HmacKey::from_slice(&from_hexstr("bf2bb483cb12aa8fb38370c3f1debfbe6f357ab0b4f0468107e95fa744f8f8419ad3a24dc2789e815ddd4a91852c96b79c6a79da6fd0b90a80359f1f91630a66389788d704e011870c04211527c7175f8dfa560779113ebe2f2486bde5d1cef883d9ad5b80f2e0530782c2d287107023f7b5834f98a370bb3310b39d58376d28")).unwrap(),
cipher_key: HmacKey::from_slice(&from_hexstr("0b4d46a0f976497075238d681c7738c128eaeed7394eb700af0a00f7a452193cad43d2fa99360da728f42d1ddd45a4bc8c14ffe0eb4a40e33bf9180c5bb1201ef25615b55dd8b109f6a9f019157460aeae57bc2dd1ab6b0676386cbfd30d60ce96413dee81a339fc7d537f9a5c21bcf9836e9e40c68edaaf6a0fb18a0f7a1338")).unwrap(),
};
let test_aad = b"archive id";
let test_plaintext = b"deterministic authenticated encryption";
let test_siv = SIV::from_slice(&from_hexstr("1f5453bee0dee9b19cecc680249d3410d275801109f8780204d698fba56fb33c")).unwrap();
let test_ciphertext = from_hexstr("5f0271a16eb3f842cd268078a34bca95b7b35a57b260edb6870a058c37461efb373a02d419e8");
let (siv, ciphertext) = test_keys.encrypt(test_aad, test_plaintext);
assert_eq!(siv, test_siv);
assert_eq!(ciphertext, test_ciphertext);
}
#[test]
fn test_keystore() {
// Test vector generated manually using Python: hexlify(hashlib.pbkdf2_hmac('sha512', master_key, b'', 1, dklen=256*4))
let master_key = HmacKey::from_slice(&from_hexstr("46efca626234765806a7079a8f51f6d172fd2912106eee2f6a826c8869286684eb27d026c5368827424be8ae915987f820af7ac9a3e670cfd16b3e8e611cb1a9cea329489f2049472b4bd924872526d012336356aa949833a279c469720e617f2e9096803a27b674e71265c417eff499b40d86da9aceb17be46d8f470d2a11db")).unwrap();
let keystore = KeyStore::from_master_key(master_key.clone());
let keystore_data = [
&keystore.block_keys.siv_key[..], &keystore.block_keys.cipher_key[..],
&keystore.archive_name_keys.siv_key[..], &keystore.archive_name_keys.cipher_key[..],
&keystore.blocklist_keys.siv_key[..], &keystore.blocklist_keys.cipher_key[..],
&keystore.metadata_keys.siv_key[..], &keystore.metadata_keys.cipher_key[..],
].concat();
assert_eq!(keystore_data, from_hexstr("054c9173d52fb8b6fd4bd001230f934ba922ee2a72931a1bf3b82e2852b5ba3ac39fdd5c49173dc345fc42d551025aa41a537dbb9ccfbcd1ac596bdb47f8e61a1e98fe4767984ddc43622e5f3c4ffd6219328bea11ec9b59b913297f8f23991fce948448202fe46923cfd5e08abe293c0f4b3080d588e84c53197b3ba8a129e77bb1a0d5edddb15563c2d41d3e90e8a5857242f17364a70e7bbf73ca717b0930288e966dc3b84dee3e4beeb89fedd92bbbc03c7a26a822eca2fe0dda425adea887bef8f968c2584e8e234583db00eed0f768db9b56bbf1def531a67e3f22f0658024a508d5bae8a04b40163ca4e5ced838987f95d9bd9f4bae2f36d77b3f4e9d254f98b6286e3a1ee1324fb996aeeec95ba4dd4aa658a93bea87ec2ba766cab922322ddb529c03db2fb6ac19d515f11331faaff3c4d26888e98bc84e165dabe842528372a60f4c3ea46bbdc47a255d21728d066d3965bb618407b57aa3f155500a0eccf2e632b0af30d54012464fcde6fe96e5e4f1931ff28bd55bf29a0c5bc21ab566b7a05d9282f9fcc91d49465404384b0512dc03ae6cd7044e366b4e4dec4e9ed869382cb3cc6db2700b9c5c0965e3847b3b045b8cfb2e0209318bd4ba29d97afbfdd738c93cf78477e0d274bae95f64187dd4f9752b959ae7dacadc7eb257661d125d1cc4a08d0243d105c7f7e2f87d63340da0ff106b759b52bc608b99a57df18e143f78d85f1e1b7340d49fee84920ee1275b85a00dce55bbed81d0db883c710ee5a9d232ae8bd1793ed33223f5b3aba8610d005b11c9d1fd6aa0148f67468d4f51c2c889fb26d66c9cbd57072bfbfa5649f759e1d13ee5397babb50674598dd51ad9e29f2684c57ec6642efb11ea67a8cc48617d696203c300bb3fae17ac4036208b7876f1e59da4126229a52103cd1995a95da4ab96d4e68ab6d62e1f15d65a71c9f54a605d03be5902ebbef49c68c190ad5948d0fbfedae17e376613ee28ada120a346c5dd70e8f762bb48cddaa006a93b041b71b1bd5e6b9c6b24558047e719a11d6293a876a149c9667642c9f311c1a4779432af7d7f39f90998dd3f3c87e73dc976cc06d825c58168711825729e91c4608b492482585085d1c9d8669fc1dd4157297d290c560ebd136aadc18c6e5f48df8b125b235586dc36fa9330fc773ae00e33fa6491cf71bc0e323c1f578e40a399b3e9a3d48b6bcb0cb098e8e8783496991d5d887be527fcdfa56fe3c27ff2c0eadaaeb5706eee881b633618dfc8468d0d9a5f131ff3a976b2cbb817978eb62caf07cf6edaa879aea79fcb9f451ab06fb2b4f40c51375d27a2dff25c3ea4afab2e2ed7b03f3c64a223e2d3deec7023ee43300b9648b12732004dc34b5b21ba087b21efcb7e0c4af8a4fb5c2a3f47a9c7e40e461d63d4d4961bc576fa35cc3a4f09a19b109bbbcaf07468"));
// Test serialization
let mut buffer = Vec::new();
keystore.save(&mut buffer).unwrap();
let restored_keystore = KeyStore::load(&buffer[..]).unwrap();
assert!(restored_keystore == keystore);
assert_eq!(restored_keystore.master_key, master_key);
}
// Tests the higher level APIs (encrypt block, encrypt archive, etc)
// Mostly just sanity checks, since other tests verify that the underlying encryption functions are correct.
#[test]
fn test_encrypt_objects() {
let keystore = KeyStore::new();
let test_data = "just plain old data";
let (block_id, mut block_ciphertext) = keystore.encrypt_block(test_data.as_bytes());
let (archive_id, name_ciphertext) = keystore.encrypt_archive_name(test_data);
let metadata_ciphertext = keystore.encrypt_archive_metadata(&archive_id, test_data.as_bytes());
// Decryption should work
assert_eq!(test_data.as_bytes(), &keystore.decrypt_block(&block_id, &block_ciphertext).unwrap()[..]);
assert_eq!(test_data, keystore.decrypt_archive_name(&archive_id, &name_ciphertext).unwrap());
assert_eq!(test_data.as_bytes(), &keystore.decrypt_archive_metadata(&archive_id, &metadata_ciphertext).unwrap()[..]);
// Even when the data is the same, every type of object should get different IDs because different keys are used
assert_ne!(&block_id[..], &archive_id[..]);
assert_ne!(block_ciphertext.0, name_ciphertext.0);
// Decryption should fail if ciphertext is modified
block_ciphertext.0[0] ^= 0xbe;
assert!(keystore.decrypt_block(&block_id, &block_ciphertext).is_err());
// Make sure encrypting unicode names works
let unicode_name = "(╯°□°)╯︵ ┻━┻";
let (archive_id, name_ciphertext) = keystore.encrypt_archive_name(unicode_name);
assert_eq!(unicode_name, keystore.decrypt_archive_name(&archive_id, &name_ciphertext).unwrap());
}
// Tests to make sure the underlying Encode function is working correctly
#[test]
fn test_encode() {
let keystore = KeyStore::new();
let test1_a = b"a";
let test1_b = b"ab";
let test2_a = b"aa";
let test2_b = b"b";
assert_ne!(keystore.block_keys.encrypt(test1_a, test1_b).0, keystore.block_keys.encrypt(test2_a, test2_b).0);
}
// This test makes sure that the encryption system is using the right keys for handling different types of objects.
// For example, blocks should be encrypted using the block keys, not the archive name keys.
#[test]
fn test_object_encryption_keys_unique() {
let keystore = KeyStore::new();
let test_data = "just plain old data";
let (block_id, block_ciphertext) = keystore.encrypt_block(test_data.as_bytes());
let (archive_id, name_ciphertext) = keystore.encrypt_archive_name(test_data);
let metadata_ciphertext = keystore.encrypt_archive_metadata(&archive_id, test_data.as_bytes());
// Now try to decrypt, but corrupt all the other keys that shouldn't be used. If the system is using the right key, that decryption should still be successful.
let mut modified_keystore = KeyStore::new();
modified_keystore.block_keys = keystore.block_keys.clone();
assert_eq!(test_data.as_bytes(), &modified_keystore.decrypt_block(&block_id, &block_ciphertext).unwrap()[..]);
let mut modified_keystore = KeyStore::new();
modified_keystore.archive_name_keys = keystore.archive_name_keys.clone();
assert_eq!(test_data, modified_keystore.decrypt_archive_name(&archive_id, &name_ciphertext).unwrap());
let mut modified_keystore = KeyStore::new();
modified_keystore.metadata_keys = keystore.metadata_keys.clone();
assert_eq!(test_data.as_bytes(), &modified_keystore.decrypt_archive_metadata(&archive_id, &metadata_ciphertext).unwrap()[..]);
}
}
| {
let (metadata_siv, encrypted_metadata) = self.metadata_keys.encrypt(&archive_id[..], metadata);
let mut result = Vec::new();
result.extend_from_slice(&metadata_siv[..]);
result.extend_from_slice(&encrypted_metadata);
EncryptedArchiveMetadata(result)
} |
test_peering.py | # Copyright 2016 Bridgewater Associates
#
# 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.
"""
.. module: security_monkey.tests.watchers.vpc.test_peering
:platform: Unix
.. version:: $$VERSION$$
.. moduleauthor:: Bridgewater OSS <[email protected]>
"""
from security_monkey.tests.watchers import SecurityMonkeyWatcherTestCase
from security_monkey.watchers.vpc.peering import Peering
import boto
from moto import mock_sts, mock_ec2
from freezegun import freeze_time
|
@freeze_time("2016-07-18 12:00:00")
@mock_sts
@mock_ec2
def test_slurp(self):
conn = boto.connect_vpc('the_key', 'the secret')
vpc = conn.create_vpc("10.0.0.0/16")
peer_vpc = conn.create_vpc("10.0.0.0/16")
conn.create_vpc_peering_connection(vpc.id, peer_vpc.id)
watcher = Peering(accounts=[self.account.name])
item_list, exception_map = watcher.slurp()
self.assertIs(
expr1=len(item_list),
expr2=1,
msg="Watcher should have 1 item but has {}".format(len(item_list))) | class PeeringWatcherTestCase(SecurityMonkeyWatcherTestCase): |
system_TAL_glucose.py | #!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Bioindustrial-Park: BioSTEAM's Premier Biorefinery Models and Results
# Copyright (C) 2022-2023, Sarang Bhagwat <[email protected]> (this biorefinery)
#
# This module is under the UIUC open-source license. See
# github.com/BioSTEAMDevelopmentGroup/biosteam/blob/master/LICENSE.txt
# for license details.
"""
@author: sarangbhagwat
Created on Sun Aug 23 12:11:15 2020
This module is a modified implementation of modules from the following:
[1] Bhagwat et al., Sustainable Production of Acrylic Acid via 3-Hydroxypropionic Acid from Lignocellulosic Biomass. ACS Sustainable Chem. Eng. 2021, 9 (49), 16659–16669. https://doi.org/10.1021/acssuschemeng.1c05441
[2] Li et al., Sustainable Lactic Acid Production from Lignocellulosic Biomass. ACS Sustainable Chem. Eng. 2021, 9 (3), 1341–1351. https://doi.org/10.1021/acssuschemeng.0c08055
[3] Cortes-Peña et al., BioSTEAM: A Fast and Flexible Platform for the Design, Simulation, and Techno-Economic Analysis of Biorefineries under Uncertainty. ACS Sustainable Chem. Eng. 2020, 8 (8), 3302–3310. https://doi.org/10.1021/acssuschemeng.9b07040
All units are explicitly defined here for transparency and easy reference.
Naming conventions:
D = Distillation column
AC = Adsorption column
F = Flash tank or multiple-effect evaporator
H = Heat exchange
M = Mixer
P = Pump (including conveying belt)
R = Reactor
S = Splitter (including solid/liquid separator)
T = Tank or bin for storage
U = Other units
Processes:
100: Feedstock preprocessing
200: Pretreatment
300: Conversion
400: Separation
500: Wastewater treatment
600: Storage
700: Co-heat and power
800: Cooling utility generation
900: Miscellaneous facilities
1000: Heat exchanger network
"""
# %% Setup
import biosteam as bst
import thermosteam as tmo
import flexsolve as flx
import numpy as np
from math import exp as math_exp
# from biosteam import main_flowsheet as F
# from copy import deepcopy
# from biosteam import System
from thermosteam import Stream
# from biorefineries.cornstover import CellulosicEthanolTEA
from biorefineries.TAL import units, facilities
from biorefineries.TAL._process_specification import ProcessSpecification
from biorefineries.TAL.process_settings import price, CFs
from biorefineries.TAL.utils import find_split, splits_df, baseline_feedflow
from biorefineries.TAL.chemicals_data import TAL_chemicals, chemical_groups, \
soluble_organics, combustibles
# from biorefineries.TAL.tea import TALTEA
from biorefineries.cornstover import CellulosicEthanolTEA as TALTEA
from biosteam import SystemFactory
from warnings import filterwarnings
filterwarnings('ignore')
Rxn = tmo.reaction.Reaction
ParallelRxn = tmo.reaction.ParallelReaction
# from lactic.hx_network import HX_Network
# # Do this to be able to show more streams in a diagram
# bst.units.Mixer._graphics.edge_in *= 2
bst.speed_up()
flowsheet = bst.Flowsheet('TAL')
bst.main_flowsheet.set_flowsheet(flowsheet)
# Speeds up ShortcutDistillation
bst.units.ShortcutColumn.minimum_guess_distillate_recovery = 0
# Baseline cost year is 2016
bst.CE = 541.7
# _labor_2007to2016 = 22.71 / 19.55
# Set default thermo object for the system
tmo.settings.set_thermo(TAL_chemicals)
# %% Utils
R = 8.314
TAL_Hm = 30883.66976 # by Dannenfelser-Yalkowsky method
TAL_Tm = TAL_chemicals['TAL'].Tm # 458.15 K
TAL_c = 6056.69421768496 # fitted parameter
TAL_c_by_R = TAL_c/R
TAL_Hm_by_R = TAL_Hm/R
def get_TAL_solubility_in_water(T): # mol TAL : mol (TAL+water)
return math_exp(-(TAL_Hm_by_R) * (1/T - 1/TAL_Tm))/math_exp(TAL_c_by_R/T)
def get_mol_TAL_dissolved(T, mol_water):
TAL_x = get_TAL_solubility_in_water(T)
return mol_water*TAL_x/(1-TAL_x)
def get_TAL_solubility_in_water_gpL(T):
return get_mol_TAL_dissolved(T, 1000./18.)*TAL_chemicals['TAL'].MW
def get_K(chem_ID, stream, phase_1, phase_2):
return (stream[phase_1].imol[chem_ID]/stream[phase_1].F_mol)/max(1e-6, (stream[phase_2].imol[chem_ID]/stream[phase_2].F_mol))
def get_TAL_solublity_in_solvent_very_rough(T, solvent_ID='Hexanol', units='g/L'):
temp_stream =\
tmo.Stream('temp_stream_get_TAL_solublity_in_solvent_very_rough')
mol_water = mol_solvent = 1000
mol_TAL = get_mol_TAL_dissolved(T, mol_water)
temp_stream.imol['Water'] = mol_water
temp_stream.imol[solvent_ID] = mol_solvent
temp_stream.imol['TAL'] = mol_TAL
temp_stream.lle(T=T, P=temp_stream.P)
# temp_stream.show(N=100)
phase_1 = 'l' if temp_stream.imol['l', solvent_ID] > temp_stream.imol['L', solvent_ID] else 'L'
phase_2 = 'L' if phase_1=='l' else 'l'
K_TAL_in_extract = get_K('TAL', temp_stream, phase_1, phase_2)
# print(K_TAL_in_extract)
if units=='g/L':
temp_stream_2 = tmo.Stream('temp_stream_2_get_TAL_solublity_in_solvent_very_rough')
temp_stream_2.imol['TAL'] = K_TAL_in_extract*mol_TAL
temp_stream_2.imol[solvent_ID] = mol_solvent
return temp_stream_2.imass['TAL']/temp_stream_2.F_vol
elif units=='mol/mol':
return K_TAL_in_extract*mol_TAL/(mol_TAL+mol_solvent) #
def get_TAL_solubility_in_hexanol():
return 2.*0.0222/(2.*0.0222+0.951) # mol/mol; 2 * Marco's initial experimental solubility of 2.8 wt% at 21 C
def get_TAL_solubility_in_ethanol_ww():
return 0.167682 # solubility of 157.425 g-TAL per L-ethanol
# %%
@SystemFactory(ID = 'TAL_sys')
def create_ | uts):
# %%
# =============================================================================
# Feedstock
# =============================================================================
# feedstock = Stream('feedstock',
# baseline_feedflow.copy(),
# units='kg/hr',
# price=price['Feedstock'])
feedstock = Stream('feedstock')
feedstock.imass['Glucose'] = 29000.
feedstock.imass['H2O'] = 500.
feedstock.price = price['Glucose']*feedstock.imass['Glucose']/feedstock.F_mass
feedstock.F_mass = 25802.9 # at the baseline, the amount of TAL produced would exactly satisfy the US demand for sorbic acid with a hypothetical 100% TAL->sorbic acid conversion.
U101 = units.FeedstockPreprocessing('U101', ins=feedstock)
# Handling costs/utilities included in feedstock cost thus not considered here
U101.cost_items['System'].cost = 0
U101.cost_items['System'].kW = 0
# %%
# =============================================================================
# Conversion streams
# =============================================================================
# Flow and price will be updated in EnzymeHydrolysateMixer
enzyme = Stream('enzyme', units='kg/hr', price=price['Enzyme'])
# Used to adjust enzymatic hydrolysis solid loading, will be updated in EnzymeHydrolysateMixer
enzyme_water = Stream('enzyme_water', units='kg/hr')
# Corn steep liquor as nitrogen nutrient for microbes, flow updated in R301
CSL = Stream('CSL', units='kg/hr')
# Lime for neutralization of produced acid
# fermentation_lime = Stream('fermentation_lime', units='kg/hr')
# For diluting concentrated, inhibitor-reduced hydrolysate
dilution_water = Stream('dilution_water', units='kg/hr')
# =============================================================================
# Conversion units
# =============================================================================
# Cool hydrolysate down to fermentation temperature at 50°C
H301 = bst.units.HXutility('H301', ins=U101-0, T=50+273.15)
M304 = bst.units.Mixer('M304', ins=(H301-0, dilution_water))
M304.water_to_sugar_mol_ratio = 5.
@M304.add_specification()
def adjust_M304_water():
M304_ins_1 = M304.ins[1]
M304_ins_1.imol['Water'] = M304.water_to_sugar_mol_ratio * M304.ins[0].imol['Glucose', 'Xylose'].sum()
M304._run()
# M304.specification = adjust_M304_water()
M304_H = bst.units.HXutility('M304_H', ins=M304-0, T=30+273.15, rigorous=True)
# Mix pretreatment hydrolysate/enzyme mixture with fermentation seed
S302 = bst.Splitter('S302', ins=M304_H-0,
outs = ('to_seedtrain', 'to_cofermentation'),
split = 0.07) # split = inoculum ratio
# Cofermentation
R302 = units.CoFermentation('R302',
ins=(S302-1, '', CSL),
outs=('fermentation_effluent', 'CO2_fermentation'))
def include_seed_CSL_in_cofermentation(): # note: effluent always has 0 CSL
R302._run()
R302.ins[2].F_mass*=1./(1-S302.split[0])
R302.specification = include_seed_CSL_in_cofermentation
# ferm_ratio is the ratio of conversion relative to the fermenter
R303 = units.SeedTrain('R303', ins=S302-0, outs=('seed', 'CO2_seedtrain'), ferm_ratio=0.95)
T301 = units.SeedHoldTank('T301', ins=R303-0, outs=1-R302)
# %%
# =============================================================================
# Separation streams
# =============================================================================
# This flow will be automatically updated in CellMassFilter
# separation_sulfuric_acid = Stream('separation_sulfuric_acid', units='kg/hr')
# # # To be mixed with sulfuric acid, will be updated in SulfuricAdditionTank
# # separation_acid_water = Stream('separation_acid_water', units='kg/hr')
# separation_DPHP = Stream('DPHP', DPHP =feedstock_dry_mass*22.1/1000*0.93,
# H2O=feedstock_dry_mass*22.1/1000*0.07, units='kg/hr')
# # Ethanol for esterification reaction, will be updated in the EsterificationReactor
# separation_ethanol = Stream('separation_ethanol', Ethanol=feedstock_dry_mass*22.1/1000*0.93,
# H2O=feedstock_dry_mass*22.1/1000*0.07, units='kg/hr')
# For ester hydrolysis
# separation_hydrolysis_water = Stream('separation_hydrolysis_water', units='kg/hr')
Hexanol_minimal = Stream('Hexanol_minimal', units = 'kg/hr')
# Heptane = Stream('Heptane', units = 'kg/hr')
# Toluene = Stream('Toluene', units = 'kg/hr')
# Hexanol_s = Stream('Hexanol_s', units = 'kg/hr')
Heptane_s = Stream('Heptane_s', units = 'kg/hr')
Toluene_s = Stream('Toluene_s', units = 'kg/hr')
Hydrogen = Stream('Hydrogen', units = 'kg/hr')
KOH = Stream('KOH', units = 'kg/hr')
HCl = Stream('HCl', units = 'kg/hr')
# =============================================================================
# Separation units
# =============================================================================
# Fake unit to enable solid-liquid equilibrium for fermentation broth
U401 = bst.Unit('U401', ins=R302-0, outs=('fermentation_broth_first_sle'))
def U401_spec():
U401_ins_0 = U401.ins[0]
tot_TAL = U401_ins_0.imol['TAL']
U401_outs_0 = U401.outs[0]
U401_outs_0.copy_like(U401_ins_0)
mol_TAL_dissolved = get_mol_TAL_dissolved(U401_outs_0.T, U401_outs_0.imol['Water'])
# U401_outs_0.sle('TAL', U401_outs_0.T) #!!! TODO: use computationally cheaper way of changing from Stream to MultiStream
U401_outs_0.phases=['s', 'l']
U401_outs_0.imol['l', 'TAL'] = min(mol_TAL_dissolved, tot_TAL)
U401_outs_0.imol['s', 'TAL'] = tot_TAL - min(mol_TAL_dissolved, tot_TAL)
U401.specification = U401_spec
# Change broth temperature to adjust TAL solubility
H401 = bst.HXutility('H401', ins=U401-0, outs=('H401_0'), T=273.15+70.)
def H401_spec():
H401_ins_0 = H401.ins[0]
H401_ins_0_water=H401_ins_0.imol['Water']
tot_TAL = H401_ins_0.imol['TAL']
# H401_spec_obj_fn = lambda T: get_TAL_solubility_in_water_gpL(T) -\
# H401_ins_0.imass['TAL']/H401_ins_0.F_vol
H401_spec_obj_fn = lambda T: get_mol_TAL_dissolved(T, H401_ins_0_water) - tot_TAL
H401.T = flx.IQ_interpolation(H401_spec_obj_fn, H401.ins[0].T, 99.+273.15)
H401._run()
H401_outs_0 = H401.outs[0]
mol_TAL_dissolved = get_mol_TAL_dissolved(H401_outs_0.T, H401_outs_0.imol['Water'])
# H401_outs_0.sle('TAL', H401_outs_0.T) #!!! TODO: use computationally cheaper way of changing from Stream to MultiStream
H401_outs_0.phases = ('l', 's')
H401_outs_0.imol['l', 'TAL'] = min(mol_TAL_dissolved, tot_TAL)
H401_outs_0.imol['s', 'TAL'] = max(0., round(tot_TAL - min(mol_TAL_dissolved, tot_TAL), 5))
# H401_outs_0.imol['s', 'TAL'] = max(0.0001, tot_TAL - min(mol_TAL_dissolved, tot_TAL))
# if H401_outs_0.imol['s', 'TAL'] == 0.0001:
# H401_ins_0.imol['s', 'TAL'] += 0.0001
H401.specification = H401_spec
U402 = bst.FakeSplitter('U402', ins=H401-0, outs = ('thermally_decarboxylated_broth','vented_CO2'))
U402.decarboxylation_rxns = ParallelRxn([
Rxn('TAL + H2O -> PD + CO2', 'TAL', 0.25),
])
def get_TAL_decarboxylation_conversion(T=273.15+80.):
return (0.2*(T-273.15) + 8.)/100. # temporaury
def U402_spec():
U402_outs_0 = U402.outs[0]
U402_outs_0.copy_like(U402.ins[0])
U402_outs_0.phases = ('l', 's')
U402.decarboxylation_rxns[0].X = get_TAL_decarboxylation_conversion(T=U402_outs_0.T)
U402.decarboxylation_rxns[0](U402_outs_0['l'])
U402.outs[1].imol['CO2'] = U402_outs_0.imol['l', 'CO2']
U402.outs[1].phase = 'g'
U402_outs_0.imol['l', 'CO2'] = 0.
U402.specification = U402_spec
# H401_design_og = H401._design
# def H401_design_modified():
# H401.ins[0].copy_like(U401.ins[0])
# H401.outs[0].copy_like(U401.ins[0])
# H401_design_og()
# # Remove solids from fermentation broth, modified from the pressure filter in Humbird et al.
S401_index = [splits_df.index[0]] + splits_df.index[2:].to_list()
S401_cell_mass_split = [splits_df['stream_571'][0]] + splits_df['stream_571'][2:].to_list()
S401_filtrate_split = [splits_df['stream_535'][0]] + splits_df['stream_535'][2:].to_list()
S401 = bst.units.SolidsCentrifuge('S401', ins=U402-0, outs=('S401_solid_fraction', 'S401_liquid_fraction'),
# moisture_content=0.50,
split=find_split(S401_index,
S401_cell_mass_split,
S401_filtrate_split,
chemical_groups),
solids =\
['Xylan', 'Glucan', 'Lignin', 'FermMicrobe',\
'Ash', 'Arabinan', 'Galactan', 'Mannan'])
# def S401_TAL_split_spec():
# S401._run()
# S401_ins_0 = S401.ins[0]
# TOT_TAL = S401_ins_0.imol['TAL']
# dissolved_TAL = get_mol_TAL_dissolved(S401_ins_0.T, S401_ins_0.imol['Water'])
# S401.outs[0].imol['TAL'] = TOT_TAL - dissolved_TAL # crystallized TAL
# S401.outs[1].imol['TAL'] = dissolved_TAL
def S401_TAL_split_spec():
S401._run()
S401_ins_0 = S401.ins[0]
S401.outs[0].imol['TAL'] = S401_ins_0.imol['s', 'TAL']
S401.outs[1].imol['TAL'] = S401_ins_0.imol['l', 'TAL']
S401.specification = S401_TAL_split_spec
H402 = bst.HXutility('H402', ins=S401-1, outs=('H402_0'), T=273.15+1.)
# def HXcrystalize(stream, T=None, H=None, P=None, V=None):
# tot_TAL = stream.imol['TAL']
# mol_TAL_dissolved = get_mol_TAL_dissolved(stream.T, stream.imol['Water'])
# stream.phases = ('s', 'l')
# stream.T = H402.T
# tal_dissolved = min(mol_TAL_dissolved, tot_TAL)
# stream.imol['l', 'TAL'] =
# stream.imol['s', 'TAL'] = max(0.0001, tot_TAL - min(mol_TAL_dissolved, tot_TAL))
def H402_spec():
H402._run()
H402_ins_0 = H402.ins[0]
tot_TAL = H402_ins_0.imol['TAL']
H402_outs_0 = H402.outs[0]
TAL_solubility = get_mol_TAL_dissolved(H402_outs_0.T, H402_outs_0.imol['Water'])
H402_outs_0.phases = ('s', 'l')
H402_outs_0.T = H402.T
TAL_dissolved = min(TAL_solubility, tot_TAL)
H402_outs_0.imol['l', 'TAL'] = TAL_dissolved
H402_outs_0.imol['s', 'TAL'] = max(0, tot_TAL - TAL_dissolved)
# H402_outs_0.imol['s', 'TAL'] = max(0.0001, tot_TAL - TAL_dissolved)
# if H402_outs_0.imol['s', 'TAL'] == 0.0001:
# H402_ins_0.imol['s', 'TAL'] += 0.0001
H402.specification = H402_spec
S402 = bst.units.SolidsCentrifuge('S402', ins=H402-0, outs=('S402_solid_fraction', 'S402_liquid_fraction'),
# moisture_content=0.50,
split=find_split(S401_index,
S401_cell_mass_split,
S401_filtrate_split,
chemical_groups), solids =\
['Xylan', 'Glucan', 'Lignin', 'FermMicrobe',\
'Ash', 'Arabinan', 'Galactan', 'Mannan'])
def S402_TAL_split_spec():
# S402._run()
# S402_ins_0 = S402.ins[0]
# S402_outs_0 = S402.outs[0]
# S402_outs_0.imol['TAL'] = 1.
# S402_outs_0.sle('TAL', S402_outs_0.T) #!!! TODO: use computationally cheaper way of changing from Stream to MultiStream
# S402_outs_0.imol['s', 'TAL'] = S402_ins_0.imol['s', 'TAL']
# S402_outs_0.imol['l', 'TAL'] = 0.
# S402.outs[1].imol['TAL'] = S402_ins_0.imol['l', 'TAL']
S402_ins_0 = S402.ins[0]
solid_TAL = float(S402_ins_0.imol['s', 'TAL'])
S402_ins_0.imol['s', 'TAL'] = 0.
S402._run()
S402.outs[0].imol['TAL'] = solid_TAL
S402.outs[1].imol['TAL'] = S402_ins_0.imol['l', 'TAL']
S402_ins_0.imol['s', 'TAL'] = solid_TAL
S402.specification = S402_TAL_split_spec
H403 = bst.HXutility('H403', ins=S402-0, outs=('heated_TAL'), T=273.15+40.)
F401 = bst.Flash('F401', ins=H403-0, outs = ('volatiles', 'pure_TAL_product'), V = 0.99, P=101325.)
def F401_spec():
F401_ins_0 = F401.ins[0]
F401.V = sum(F401_ins_0.imol['H2O',
'AceticAcid',
'Furfural',
'HMF',]) / F401_ins_0.F_mol
F401._run()
# F401.outs[1].imol['TAL'] = F401.ins[0].imol['TAL']
# F401.outs[0].imol['TAL'] = 0.
F401.specification = F401_spec
# %%
# =============================================================================
# Wastewater treatment streams
# =============================================================================
# For aerobic digestion, flow will be updated in AerobicDigestion
air_lagoon = Stream('air_lagoon', phase='g', units='kg/hr')
# To neutralize nitric acid formed by nitrification in aerobic digestion
# flow will be updated in AerobicDigestion
# The active chemical is modeled as NaOH, but the price is cheaper than that of NaOH
aerobic_caustic = Stream('aerobic_caustic', units='kg/hr', T=20+273.15, P=2*101325,
price=price['Caustics'])
# =============================================================================
# Wastewater treatment units
# =============================================================================
# Mix waste liquids for treatment
M501 = bst.units.Mixer('M501', ins=(
# F301-1,
S402-1,
F401-0,
# r_S402_s-1, r_S403_s-1, r_S404_s-1,
# X401-1, S408-0,
))
# This represents the total cost of wastewater treatment system
WWT_cost = units.WastewaterSystemCost('WWTcost501', ins=M501-0)
R501 = units.AnaerobicDigestion('R501', ins=WWT_cost-0,
outs=('biogas', 'anaerobic_treated_water',
'anaerobic_sludge'),
reactants=soluble_organics,
split=find_split(splits_df.index,
splits_df['stream_611'],
splits_df['stream_612'],
chemical_groups),
T=35+273.15)
get_flow_tpd = lambda: (feedstock.F_mass-feedstock.imass['H2O'])*24/907.185
# Mix recycled stream and wastewater after R501
M502 = bst.units.Mixer('M502', ins=(R501-1, ''))
R502 = units.AerobicDigestion('R502', ins=(M502-0, air_lagoon, aerobic_caustic),
outs=('aerobic_vent', 'aerobic_treated_water'),
reactants=soluble_organics,
ratio=get_flow_tpd()/2205)
# Membrane bioreactor to split treated wastewater from R502
S501 = bst.units.Splitter('S501', ins=R502-1, outs=('membrane_treated_water',
'membrane_sludge'),
split=find_split(splits_df.index,
splits_df['stream_624'],
splits_df['stream_625'],
chemical_groups))
S501.line = 'Membrane bioreactor'
# Recycled sludge stream of memberane bioreactor, the majority of it (96%)
# goes to aerobic digestion and the rest to sludge holding tank then to BT
S502 = bst.units.Splitter('S502', ins=S501-1, outs=('to_aerobic_digestion',
'to_boiler_turbogenerator'),
split=0.96)
M503 = bst.units.Mixer('M503', ins=(S502-0, 'centrate'), outs=1-M502)
# Mix anaerobic and 4% of membrane bioreactor sludge
M504 = bst.units.Mixer('M504', ins=(R501-2, S502-1))
# Sludge centrifuge to separate water (centrate) from sludge
S503 = bst.units.Splitter('S503', ins=M504-0, outs=(1-M503, 'sludge'),
split=find_split(splits_df.index,
splits_df['stream_616'],
splits_df['stream_623'],
chemical_groups))
S503.line = 'Sludge centrifuge'
# Reverse osmosis to treat membrane separated water
S504 = bst.units.Splitter('S504', ins=S501-0, outs=('discharged_water', 'waste_brine'),
split=find_split(splits_df.index,
splits_df['stream_626'],
splits_df['stream_627'],
chemical_groups))
S504.line = 'Reverse osmosis'
# Mix solid wastes to boiler turbogenerator
M505 = bst.units.Mixer('M505', ins=(S503-1,
# S301-0,
S401-0,
# F401-0, D401-0,
),
outs='wastes_to_boiler_turbogenerator')
# %%
# =============================================================================
# Facilities streams
# =============================================================================
sulfuric_acid_fresh = Stream('sulfuric_acid_fresh', price=price['Sulfuric acid'])
# TCP_fresh = Stream('TCP_fresh', price=price['TCP'])
ammonia_fresh = Stream('ammonia_fresh', price=price['AmmoniumHydroxide'])
CSL_fresh = Stream('CSL_fresh', price=price['CSL'])
# lime_fresh = Stream('lime_fresh', price=price['Lime'])
HCl_fresh = Stream('HCl_fresh', price=price['HCl'])
hexanol_fresh = Stream('hexanol_fresh', price=price['Hexanol'])
# heptane_fresh = Stream('heptane_fresh', price=price['Heptane'])
# toluene_fresh = Stream('toluene_fresh', price=price['Toluene'])
# hexanol_fresh_s = Stream('hexanol_fresh_s', price=price['Hexanol'])
heptane_fresh_s = Stream('heptane_fresh_s', price=price['Heptane'])
toluene_fresh_s = Stream('toluene_fresh_s', price=price['Toluene'])
hydrogen_fresh = Stream('hydrogen_fresh', price=price['Hydrogen'])
KOH_fresh = Stream('KOH_fresh', price=price['KOH'])
# S401_out1_F_mass = S401.outs[1].F_mass
# if not (S401_out1_F_mass == 0):
# ethanol_fresh = Stream('ethanol_fresh', Ethanol = 0.24 * S401_out1_F_mass, units='kg/hr', price=price['Ethanol']) - M401.ins[3].imass['Ethanol']
# DPHP_fresh = Stream('DPHP_fresh', DPHP = 0.25 * S401_out1_F_mass, units='kg/hr', price=price['DPHP']) - M401.ins[3].imass['Dipotassium hydrogen phosphate']
# else:
# ethanol_fresh = Stream('ethanol_fresh', Ethanol = get_feedstock_dry_mass()*48*22.1/1000*0.93, units='kg/hr', price=price['Ethanol'])
# DPHP_fresh = Stream('DPHP_fresh', DPHP = get_feedstock_dry_mass()*50*22.1/1000*0.93, units='kg/hr', price=price['DPHP'])
# Water used to keep system water usage balanced
system_makeup_water = Stream('system_makeup_water', price=price['Makeup water'])
# TAL stream
# TAL = Stream('TAL', units='kg/hr', price=price['TAL'])
# SA product
SA = Stream('SA', units='kg/hr', price=price['SA'])
# Acetoin product
# Acetoin = Stream('Acetoin', units='kg/hr', price=price['Acetoin'])
# # Isobutyraldehyde product
# IBA = Stream('IBA', units='kg/hr', price=price['IBA'])
# Chemicals used/generated in BT
# FGD_lime = Stream('FGD_lime')
ash = Stream('ash', price=price['Ash disposal'])
# boiler_chems = Stream('boiler_chems', price=price['Boiler chems'])
# baghouse_bag = Stream('baghouse_bag', price=price['Baghouse bag'])
# Supplementary natural gas for BT if produced steam not enough for regenerating
# all steam streams required by the system
# natural_gas = Stream('natural_gas', price=price['Natural gas'])
# Cooling tower chemicals
cooling_tower_chems = Stream('cooling_tower_chems', price=price['Cooling tower chems'])
# 145 based on equipment M-910 (clean-in-place system) in Humbird et al.
CIP_chems_in = Stream('CIP_chems_in', Water=145*get_flow_tpd()/2205, units='kg/hr')
# 1372608 based on stream 950 in Humbird et al.
# Air needed for multiple processes (including enzyme production that was not included here),
# not rigorously modeled, only scaled based on plant size
plant_air_in = Stream('plant_air_in', phase='g', units='kg/hr',
N2=0.79*1372608*get_flow_tpd()/2205,
O2=0.21*1372608*get_flow_tpd()/2205)
# 8021 based on stream 713 in Humbird et al.
fire_water_in = Stream('fire_water_in',
Water=8021*get_flow_tpd()/2205, units='kg/hr')
# =============================================================================
# Facilities units
# =============================================================================
# T601 = units.SulfuricAcidStorageTank('T601', ins=sulfuric_acid_fresh,
# outs=sulfuric_acid_T201)
# T601.line = 'Sulfuric acid storage tank'
# S601 = bst.units.ReversedSplitter('S601', ins=T601-0,
# outs=(pretreatment_sulfuric_acid,
# ''))
# T608 = units.TCPStorageTank('T608', ins=TCP_fresh,
# outs='TCP_catalyst')
# T608-0-3-R401
# T608.line = 'Tricalcium diphosphate storage tank'
#
# T602 = units.AmmoniaStorageTank('T602', ins=ammonia_fresh, outs=ammonia_M205)
# T602.line = 'Ammonia storage tank'
T603 = units.CSLstorageTank('T603', ins=CSL_fresh, outs=CSL)
T603.line = 'CSL storage tank'
# DPHP storage
#!!! Yalin suggests to use BioSTEAM's storage tank, and maybe we don't need the ConveryingBelt
# (Yalin removed that from lactic acid biorefinery)
T604 = units.DPHPStorageTank('T604', ins=hexanol_fresh)
T604.line = 'Hexanol storage tank'
T604_P = units.TALPump('T604_P', ins=T604-0, outs = Hexanol_minimal)
# T604_P = bst.units.ConveyingBelt('T604_P', ins=T604-0, outs = Hexanol)
# # 7-day storage time, similar to ethanol's in Humbird et al.
# T605 = units.DPHPStorageTank('T605', ins=heptane_fresh)
# T605.line = 'Heptane storage tank'
# T605_P = units.TALPump('T605_P', ins=T605-0, outs = Heptane)
# T606 = units.DPHPStorageTank('T606', ins=toluene_fresh)
# T606.line = 'Toluene storage tank'
# T606_P = units.TALPump('T606_P', ins=T606-0, outs = Toluene)
T607 = units.DPHPStorageTank('T607', ins=hydrogen_fresh, outs = Hydrogen)
T607.line = 'Hydrogen storage tank'
T608 = units.DPHPStorageTank('T608', ins=HCl_fresh, outs = HCl,
vessel_material = 'Stainless steel')
T608.line = 'HCl storage tank'
T609 = units.DPHPStorageTank('T609', ins=KOH_fresh, outs = KOH,
vessel_material = 'Stainless steel')
T609.line = 'KOH storage tank'
# T604_s = units.DPHPStorageTank('T604_s', ins=hexanol_fresh_s)
# T604_s.line = 'Hexanol storage tank s'
# T604_s_P = units.TALPump('T604_s_P', ins=T604_s-0, outs = Hexanol_s)
# 7-day storage time, similar to ethanol's in Humbird et al.
T605_s = units.DPHPStorageTank('T605_s', ins=heptane_fresh_s)
T605_s.line = 'Heptane storage tank s'
T605_s_P = units.TALPump('T605_s_P', ins=T605_s-0, outs = Heptane_s)
T606_s = units.DPHPStorageTank('T606_s', ins=toluene_fresh_s)
T606_s.line = 'Toluene storage tank s'
T606_s_P = units.TALPump('T606_s_P', ins=T606_s-0, outs = Toluene_s)
# T607_P = units.TALPump('T607_P', ins=T607-0, outs = Hydrogen)
# Connections to ATPE Mixer
# T604_P-0-1-M401
# T605_P-0-2-M401
# 7-day storage time, similar to ethanol's in Humbird et al.
T620 = units.TALStorageTank('T620', ins=F401-1, tau=7*24, V_wf=0.9,
vessel_type='Floating roof',
vessel_material='Stainless steel')
T620.line = 'SAStorageTank'
T620_P = units.TALPump('T620_P', ins=T620-0, outs=SA)
# # 7-day storage time, similar to ethanol's in Humbird et al.
# T607 = units.TALStorageTank('T607', ins=D402_H-0, tau=7*24, V_wf=0.9,
# vessel_type='Floating roof',
# vessel_material='Stainless steel')
# T607.line = 'AcetoinStorageTank'
# T607_P = units.TALPump('T607_P', ins=T607-0, outs=Acetoin)
# # 7-day storage time, similar to ethanol's in Humbird et al.
# T608 = units.TALStorageTank('T608', ins=D403_H-0, tau=7*24, V_wf=0.9,
# vessel_type='Floating roof',
# vessel_material='Stainless steel')
# T608.line = 'IBAStorageTank'
# T608_P = units.TALPump('T608_P', ins=T608-0, outs=IBA)
CIP = facilities.CIP('CIP901', ins=CIP_chems_in, outs='CIP_chems_out')
ADP = facilities.ADP('ADP902', ins=plant_air_in, outs='plant_air_out',
ratio=get_flow_tpd()/2205)
FWT = units.FireWaterTank('FWT903', ins=fire_water_in, outs='fire_water_out')
CWP = facilities.CWP('CWP802', ins='return_chilled_water',
outs='process_chilled_water')
# M505-0 is the liquid/solid mixture, R501-0 is the biogas, blowdown is discharged
# BT = facilities.BT('BT', ins=(M505-0, R501-0,
# FGD_lime, boiler_chems,
# baghouse_bag, natural_gas,
# 'BT_makeup_water'),
# B_eff=0.8, TG_eff=0.85,
# combustibles=combustibles,
# side_streams_to_heat=(water_M201, water_M202, steam_M203),
# outs=('gas_emission', ash, 'boiler_blowdown_water'))
BT = bst.facilities.BoilerTurbogenerator('BT701',
ins=(M505-0,
R501-0,
'boiler_makeup_water',
'natural_gas',
'lime',
'boilerchems'),
outs=('gas_emission', 'boiler_blowdown_water', ash,),
turbogenerator_efficiency=0.85)
# BT = bst.BDunits.BoilerTurbogenerator('BT',
# ins=(M505-0, R501-0, 'boiler_makeup_water', 'natural_gas', FGD_lime, boiler_chems),
# boiler_efficiency=0.80,
# turbogenerator_efficiency=0.85)
# Blowdown is discharged
CT = facilities.CT('CT801', ins=('return_cooling_water', cooling_tower_chems,
'CT_makeup_water'),
outs=('process_cooling_water', 'cooling_tower_blowdown'))
# All water used in the system, here only consider water usage,
# if heating needed, then heeating duty required is considered in BT
process_water_streams = (enzyme_water,
aerobic_caustic,
CIP.ins[-1], BT.ins[-1], CT.ins[-1])
PWC = facilities.PWC('PWC904', ins=(system_makeup_water, S504-0),
process_water_streams=process_water_streams,
recycled_blowdown_streams=None,
outs=('process_water', 'discharged_water'))
# Heat exchanger network
from hxn._heat_exchanger_network import HeatExchangerNetwork
# from biosteam import HeatExchangerNetwork
HXN = HeatExchangerNetwork('HXN1001',
# ignored=[H401, H402],
)
def HXN_no_run_cost():
HXN.heat_utilities = tuple()
HXN._installed_cost = 0.
# To simulate without HXN, uncomment the following 3 lines:
# HXN._cost = HXN_no_run_cost
# HXN.energy_balance_percent_error = 0.
# HXN.new_HXs = HXN.new_HX_utils = []
# HXN = HX_Network('HXN')
# %%
# =============================================================================
# Complete system
# =============================================================================
TAL_sys = create_TAL_sys()
f = bst.main_flowsheet
u = f.unit
s = f.stream
feedstock = s.feedstock
SA = s.SA
get_flow_tpd = lambda: (feedstock.F_mass-feedstock.imass['H2O'])*24/907.185
TEA_feeds = set([i for i in TAL_sys.feeds if i.price]+ \
[i for i in TAL_sys.feeds if i.price])
TEA_products = set([i for i in TAL_sys.products if i.price]+ \
[i for i in TAL_sys.products if i.price]+[SA])
for ui in u:
globals().update({ui.ID: ui})
# %%
# =============================================================================
# TEA
# =============================================================================
# TAL_tea = CellulosicEthanolTEA(system=TAL_sys, IRR=0.10, duration=(2016, 2046),
# depreciation='MACRS7', income_tax=0.21, operating_days=0.9*365,
# lang_factor=None, construction_schedule=(0.08, 0.60, 0.32),
# startup_months=3, startup_FOCfrac=1, startup_salesfrac=0.5,
# startup_VOCfrac=0.75, WC_over_FCI=0.05,
# finance_interest=0.08, finance_years=10, finance_fraction=0.4,
# # biosteam Splitters and Mixers have no cost,
# # cost of all wastewater treatment units are included in WWT_cost,
# # BT is not included in this TEA
# OSBL_units=(u.U101, u.WWT_cost,
# u.T601, u.T602, u.T603, u.T606, u.T606_P,
# u.CWP, u.CT, u.PWC, u.CIP, u.ADP, u.FWT, u.BT),
# warehouse=0.04, site_development=0.09, additional_piping=0.045,
# proratable_costs=0.10, field_expenses=0.10, construction=0.20,
# contingency=0.10, other_indirect_costs=0.10,
# labor_cost=3212962*get_flow_tpd()/2205,
# labor_burden=0.90, property_insurance=0.007, maintenance=0.03,
# steam_power_depreciation='MACRS20', boiler_turbogenerator=u.BT)
# TAL_no_BT_tea = TAL_tea
TAL_tea = TALTEA(system=TAL_sys, IRR=0.10, duration=(2016, 2046),
depreciation='MACRS7', income_tax=0.21, operating_days=0.9*365,
lang_factor=None, construction_schedule=(0.08, 0.60, 0.32),
startup_months=3, startup_FOCfrac=1, startup_salesfrac=0.5,
startup_VOCfrac=0.75, WC_over_FCI=0.05,
finance_interest=0.08, finance_years=10, finance_fraction=0.4,
# biosteam Splitters and Mixers have no cost,
# cost of all wastewater treatment units are included in WWT_cost,
# BT is not included in this TEA
OSBL_units=(u.U101, u.WWTcost501,
# u.T601, u.T602,
u.T603, u.T604, u.T620,
# u.T606, u.T606_P,
u.CWP802, u.CT801, u.PWC904, u.CIP901, u.ADP902, u.FWT903, u.BT701),
warehouse=0.04, site_development=0.09, additional_piping=0.045,
proratable_costs=0.10, field_expenses=0.10, construction=0.20,
contingency=0.10, other_indirect_costs=0.10,
labor_cost=3212962*get_flow_tpd()/2205,
labor_burden=0.90, property_insurance=0.007, maintenance=0.03,
steam_power_depreciation='MACRS20', boiler_turbogenerator=u.BT701)
TAL_no_BT_tea = TAL_tea
# # Removed because there is not double counting anyways.
# # Removes feeds/products of BT_sys from TAL_sys to avoid double-counting
# for i in BT_sys.feeds:
# TAL_sys.feeds.remove(i)
# for i in BT_sys.products:
# TAL_sys.products.remove(i)
# Boiler turbogenerator potentially has different depreciation schedule
# BT_tea = bst.TEA.like(BT_sys, TAL_no_BT_tea)
# BT_tea.labor_cost = 0
# Changed to MACRS 20 to be consistent with Humbird
# BT_tea.depreciation = 'MACRS20'
# BT_tea.OSBL_units = (BT,)
# %%
# =============================================================================
# Simulate system and get results
# =============================================================================
# def get_TAL_MPSP():
# TAL_sys.simulate()
# for i in range(3):
# TAL.price = TAL_tea.solve_price(TAL, TAL_no_BT_tea)
# return TAL.price
def get_SA_MPSP():
for i in range(3):
TAL_sys.simulate()
for i in range(3):
SA.price = TAL_tea.solve_price(SA)
return SA.price*SA.F_mass/SA.imass['TAL']
def get_titer():
return R302.outs[0].imass['TAL']/R302.outs[0].F_vol
def set_titer(titer):
M304.water_multiplier *= get_titer()/titer
get_SA_MPSP()
return get_titer()
# get_SA_MPSP()
# R301 = F('R301') # Fermentor
# yearly_production = 125000 # ton/yr
spec = ProcessSpecification(
evaporator = None,
pump = None,
mixer = u.M304,
heat_exchanger = u.M304_H,
seed_train_system = [],
reactor= u.R302,
reaction_name='fermentation_reaction',
substrates=('Xylose', 'Glucose'),
products=('TAL',),
spec_1=0.19,
spec_2=28.,
spec_3=0.19,
xylose_utilization_fraction = 0.80,
feedstock = feedstock,
dehydration_reactor = None,
byproduct_streams = [],
HXN = u.HXN1001,
maximum_inhibitor_concentration = 1.,
# pre_conversion_units = process_groups_dict['feedstock_group'].units + process_groups_dict['pretreatment_group'].units + [u.H301], # if the line below does not work (depends on BioSTEAM version)
pre_conversion_units = TAL_sys.split(u.M304.ins[0])[0],
# set baseline fermentation performance here
baseline_yield = 0.19,
baseline_titer = 28.,
baseline_productivity = 0.19,
# baseline_yield = 0.30,
# baseline_titer = 25.,
# baseline_productivity = 0.19,
feedstock_mass = feedstock.F_mass,
pretreatment_reactor = None)
spec.load_spec_1 = spec.load_yield
# spec.load_spec_2 = spec.load_titer
spec.load_spec_3 = spec.load_productivity
def M304_titer_obj_fn(water_to_sugar_mol_ratio):
M304, R302 = u.M304, u.R302
M304.water_to_sugar_mol_ratio = water_to_sugar_mol_ratio
M304.specification[0][0]()
u.M304_H._run()
u.S302._run()
u.R303._run()
u.T301._run()
R302.specification[0][0]()
# broth = R302.outs[0]
# return broth.imass['TAL']/broth.F_vol - R302.titer_to_load
return R302.effluent_titer - R302.titer_to_load
def load_titer_with_glucose(titer_to_load):
spec.spec_2 = titer_to_load
u.R302.titer_to_load = titer_to_load
flx.IQ_interpolation(M304_titer_obj_fn, 1e-3, 20000.)
# u.AC401.regeneration_velocity = min(14.4, 3.1158 + ((14.4-3.1158)/(30.-3.))*(titer_to_load-3.)) # heuristic to obtain regeneration velocity at which MPSP is minimum fitted to results from simulations at target_recovery=0.99
# u.AC401.regeneration_velocity = 14.4
spec.load_spec_2 = load_titer_with_glucose
# path = (F301, R302)
# @np.vectorize
# def calculate_titer(V):
# F301.V = V
# for i in path: i._run()
# return spec._calculate_titer()
# @np.vectorize
# def calculate_MPSP(V):
# F301.V = V
# TAL_sys.simulate()
# MPSP = SA.price = TAL_tea.solve_price(SA, TAL_no_BT_tea)
# return MPSP
# vapor_fractions = np.linspace(0.20, 0.80)
# titers = calculate_titer(vapor_fractions)
# MPSPs = calculate_MPSP(vapor_fractions)
# import matplotlib.pyplot as plt
# plt.plot(vapor_fractions, titers)
# plt.show()
# plt.plot(titers, MPSPs)
# plt.show()
# %%
# =============================================================================
# Life cycle analysis (LCA), waste disposal emission not included
# =============================================================================
# 100-year global warming potential (GWP) from material flows
LCA_streams = TEA_feeds.copy()
LCA_stream = Stream('LCA_stream', units='kg/hr')
def get_material_GWP():
LCA_stream.mass = sum(i.mass for i in LCA_streams)
chemical_GWP = LCA_stream.mass*CFs['GWP_CF_stream'].mass
# feedstock_GWP = feedstock.F_mass*CFs['GWP_CFs']['Corn stover']
return chemical_GWP.sum()/SA.F_mass
# GWP from combustion of non-biogenic carbons
get_non_bio_GWP = lambda: (natural_gas.get_atomic_flow('C'))* TAL_chemicals.CO2.MW / SA.F_mass
# +ethanol_fresh.get_atomic_flow('C')) \
# GWP from electricity
get_electricity_use = lambda: sum(i.power_utility.rate for i in TAL_sys.units)
get_electricity_GWP = lambda: get_electricity_use()*CFs['GWP_CFs']['Electricity'] \
/ SA.F_mass
# CO2 fixed in lactic acid product
get_fixed_GWP = lambda: \
SA.get_atomic_flow('C')*TAL_chemicals.CO2.MW/SA.F_mass
# carbon_content_of_feedstock = 0
get_GWP = lambda: get_material_GWP()+get_non_bio_GWP()+get_electricity_GWP()
# Fossil energy consumption (FEC) from materials
def get_material_FEC():
LCA_stream.mass = sum(i.mass for i in LCA_streams)
chemical_FEC = LCA_stream.mass*CFs['FEC_CF_stream'].mass
# feedstock_FEC = feedstock.F_mass*CFs['FEC_CFs']['Corn stover']
return chemical_FEC.sum()/SA.F_mass
# FEC from electricity
get_electricity_FEC = lambda: \
get_electricity_use()*CFs['FEC_CFs']['Electricity']/SA.F_mass
# Total FEC
get_FEC = lambda: get_material_FEC()+get_electricity_FEC()
# get_SPED = lambda: BT.system_heating_demand*0.001/SA.F_mass
SA_LHV = 31.45 # MJ/kg SA
# %% Full analysis
def simulate_and_print():
get_SA_MPSP()
print('\n---------- Simulation Results ----------')
print(f'MPSP is ${get_SA_MPSP():.3f}/kg')
# print(f'GWP is {get_GWP():.3f} kg CO2-eq/kg SA')
# print(f'FEC is {get_FEC():.2f} MJ/kg SA or {get_FEC()/SA_LHV:.2f} MJ/MJ SA')
# print(f'SPED is {get_SPED():.2f} MJ/kg SA or {get_SPED()/SA_LHV:.2f} MJ/MJ SA')
# print('--------------------\n')
# simulate_and_print()
# TAL_sys.simulate()
get_SA_MPSP()
spec.load_specifications(0.203, 35.9, 0.21)
simulate_and_print()
# %%
# =============================================================================
# For Monte Carlo and analyses
# =============================================================================
TAL_sub_sys = {
# 'feedstock_sys': (U101,),
# 'pretreatment_sys': (T201, M201, M202, M203,
# R201, R201_H, T202, T203,
# F201, F201_H,
# M204, T204, T204_P,
# M205, M205_P),
# 'conversion_sys': (H301, M301, M302, R301, R302, T301),
# 'separation_sys': (S401, M401, M401_P,
# S402,
# # F401, F401_H, X401,
# D401, D401_H, D401_P, S403,
# M402_P, S403,
# D403, D403_H, D403_P,
# M501,
# T606, T606_P, T607, T607_P)
# F402, F402_H, F402_P,
# D405, D405_H1, D405_H2, D405_P,
# M401, M401_P)
# 'wastewater_sys': (M501, WWT_cost, R501,
# M502, R502, S501, S502, M503,
# M504, S503, S504, M505),
# 'HXN': (HXN,),
# 'BT': (BT,),
# 'CT': (CT,),
# 'other_facilities': (T601, S601,
# T602, T603,
# T604, T604_P,
# T605, T605_P,
# T606, T606_P,
# PWC, CIP, ADP, FWT)
}
# for unit in sum(TAL_sub_sys.values(), ()):
# if not unit in TAL_sys.units:
# print(f'{unit.ID} not in TAL_sys.units')
# for unit in TAL_sys.units:
# if not unit in sum(TAL_sub_sys.values(), ()):
# print(f'{unit.ID} not in TAL_sub_sys') | TAL_sys(ins, o |
index.js | import React from 'react';
import About from './About';
import Awards from './Awards';
import Experience from './Experience';
import Interests from './Interests';
import Skills from './Skills';
export default function | () {
return <>
<div class="container-fluid p-0">
<About/>
<hr class="m-0" />
<Experience/>
<hr class="m-0" />
<Skills/>
<hr class="m-0" />
<Interests/>
<hr class="m-0" />
<Awards/>
</div>
</>;
}
| PageContent |
app.py | import quart
from views import city_api
from views import home
from config import settings
import services.weather_service
import services.sun_service
import services.location_service
app = quart.Quart(__name__)
is_debug = True
app.register_blueprint(home.blueprint)
app.register_blueprint(city_api.blueprint)
def configure_app():
mode = 'dev' if is_debug else 'prod'
data = settings.load(mode)
services.weather_service.global_init(data.get('weather_key'))
services.sun_service.use_cached_data = data.get('use_cached_data')
services.location_service.use_cached_data = data.get('use_cached_data')
print("Using cached data? {}".format(data.get('use_cached_data')))
def | ():
app.run(debug=is_debug, port=5001)
configure_app()
if __name__ == '__main__':
run_web_app()
| run_web_app |
google_cloud.py | from google.cloud import storage
def upload_blob(bucket_name, source_file_name, destination_blob_name):
storage_client = storage.Client('liquid-force-295404')
"""Uploads a file to the bucket. https://cloud.google.com/storage/docs/ """
bucket = storage_client.get_bucket(bucket_name)
blob = bucket.blob(destination_blob_name)
blob.upload_from_filename(source_file_name)
print('File {} uploaded to {}.'.format(
source_file_name,
destination_blob_name))
def download_to_kaggle(bucket_name,destination_directory,file_name,prefix=''):
| """Takes the data from your GCS Bucket and puts it into the working directory of your Kaggle notebook"""
storage_client = storage.Client('liquid-force-295404')
os.makedirs(destination_directory, exist_ok = True)
full_file_path = os.path.join(destination_directory, file_name)
blobs = storage_client.list_blobs(bucket_name,prefix=prefix)
for blob in blobs:
blob.download_to_filename(full_file_path) |
|
diagnostic_profiles.py | """
Diagnostic:
Diagnostic to produce images of the profile over time from a cube.
These plost show cube value (ie temperature) on the x-axis, and depth/height
on the y axis. The colour scale is the annual mean of the cube data.
Note that this diagnostic assumes that the preprocessors do the bulk of the
hard work, and that the cube received by this diagnostic (via the settings.yml
and metadata.yml files) has a time component, and depth component, but no
latitude or longitude coordinates.
An approproate preprocessor for a 3D+time field would be:
preprocessors:
prep_profile:
extract_volume:
long1: 0.
long2: 20.
lat1: -30.
lat2: 30.
z_min: 0.
z_max: 3000.
average_region:
coord1: longitude
coord2: latitude
This tool is part of the ocean diagnostic tools package in the ESMValTool.
Author: Lee de Mora (PML)
[email protected]
"""
import logging
import os
import sys
import matplotlib
matplotlib.use('Agg') # noqa
import matplotlib.pyplot as plt
import iris
import iris.quickplot as qplt
import diagnostic_tools as diagtools
from esmvaltool.diag_scripts.shared import run_diagnostic
# This part sends debug statements to stdout
logger = logging.getLogger(os.path.basename(__file__))
logging.getLogger().addHandler(logging.StreamHandler(sys.stdout))
def determine_profiles_str(cube):
"""
Determine a string from the cube, to describe the profile.
Used in image titles, descriptions and filenames.
"""
options = ['latitude', 'longitude']
for option in options:
coord = cube.coord(option)
if len(coord.points) > 1:
continue
value = coord.points.mean()
if option == 'latitude':
return str(value) + ' N'
if option == 'longitude':
if value > 180.:
return str(value - 360.) + ' W'
return str(value) + ' E'
return ''
def make_profiles_plots(
cfg,
metadata,
filename,
):
"""
Make a simple profile plot for an individual model.
The cfg is the opened global config,
metadata is the metadata dictionairy
filename is the preprocessing model file.
"""
# Load cube and set up units
cube = iris.load_cube(filename)
cube = diagtools.bgc_units(cube, metadata['short_name'])
# Make annual means from:
cube = cube.aggregated_by('year', iris.analysis.MEAN)
# Is this data is a multi-model dataset?
multi_model = metadata['dataset'].find('MultiModel') > -1
#
times = cube.coord('time')
times_float = diagtools.timecoord_to_float(times)
time_0 = times_float[0]
cmap = plt.cm.get_cmap('jet')
plot_details = {}
for time_index, time in enumerate(times_float):
color = cmap((time - time_0) / (times_float[-1] - time_0))
qplt.plot(cube[time_index, :], cube[time_index, :].coord('depth'),
c=color)
plot_details[time_index] = {'c': color, 'ls': '-', 'lw': 1,
'label': str(int(time))}
# Add title to plot
title = ' '.join([
metadata['dataset'],
metadata['long_name'],
])
plt.title(title)
# Add Legend outside right.
diagtools.add_legend_outside_right(plot_details, plt.gca())
# Load image format extention
image_extention = diagtools.get_image_format(cfg)
# Determine image filename:
if multi_model:
path = diagtools.folder(
cfg['plot_dir']) + os.path.basename(filename).replace(
'.nc', '_profile' + image_extention)
else:
path = diagtools.get_image_path(
cfg,
metadata,
suffix='profile' + image_extention,
)
# Saving files:
if cfg['write_plots']: | logger.info('Saving plots to %s', path)
plt.savefig(path)
plt.close()
def main(cfg):
"""
Load the config file, and send it to the plot maker.
The cfg is the opened global config.
"""
for index, metadata_filename in enumerate(cfg['input_files']):
logger.info(
'metadata filename:\t%s',
metadata_filename
)
metadatas = diagtools.get_input_files(cfg, index=index)
for filename in sorted(metadatas.keys()):
logger.info('-----------------')
logger.info(
'model filenames:\t%s',
filename,
)
######
# Time series of individual model
make_profiles_plots(cfg, metadatas[filename], filename)
logger.info('Success')
if __name__ == '__main__':
with run_diagnostic() as config:
main(config) | |
zip.test.js | /**
*
* create by ligx
*
* @flow
*/
import { unZip, unZipCopyData, zip, zipCopyData } from '../src';
import LayoutFile from './LayoutFile';
import LayoutFileZip from './LayoutFileZip';
import CopyDataZip from './copydata_zip';
import CopyData from './copydata';
import LugiaDFile from './lugiaDFile';
import LugiaDFileZip from './lugiaDFileZip';
import CopyChildrenData from './CopyChildrenData';
describe('zip.test', () => {
it('zip', () => {
const orginal = JSON.parse(JSON.stringify(LayoutFile));
const file: Object = LayoutFile;
const zipJSONString = JSON.stringify(zip(file));
expect(zipJSONString).toEqual(JSON.stringify(LayoutFileZip));
expect(unZip(zipJSONString)).toEqual({ ...orginal, zip: true });
});
it('zip lugiaDFile', () => {
const meta = JSON.parse(JSON.stringify(LugiaDFile));
expect(JSON.stringify(LugiaDFileZip)).toEqual(
JSON.stringify(zip(LugiaDFile))
);
expect(
unZip(JSON.stringify(JSON.parse(JSON.stringify(LugiaDFileZip))))
).toEqual(meta);
});
function deepClone(target: Object): Object {
return JSON.parse(JSON.stringify(target));
} | it('copydata', () => {
expect(unZipCopyData(deepClone(CopyDataZip))).toEqual(deepClone(CopyData));
expect(zipCopyData(deepClone(CopyData))).toEqual(deepClone(CopyDataZip));
expect(unZipCopyData(deepClone(zipCopyData(deepClone(CopyData))))).toEqual(
deepClone(CopyData)
);
});
it('CopyChildrenData', () => {
expect(zipCopyData(deepClone(unZipCopyData(deepClone(CopyChildrenData))))).toEqual(
deepClone(CopyChildrenData)
);
});
}); | |
run_expert.py | #!/usr/bin/env python
"""
Code to load an expert policy and generate roll-out data for behavioral cloning.
Example usage:
python run_expert.py experts/Humanoid-v1.pkl Humanoid-v1 --render \
--num_rollouts 20
Author of this script and included expert policies: Jonathan Ho ([email protected])
"""
import os
import pickle
import tensorflow as tf
import numpy as np
import tf_util
import gym
import load_policy
def | ():
import argparse
parser = argparse.ArgumentParser()
parser.add_argument('expert_policy_file', type=str)
parser.add_argument('envname', type=str)
parser.add_argument('--render', action='store_true')
parser.add_argument("--max_timesteps", type=int)
parser.add_argument('--num_rollouts', type=int, default=20,
help='Number of expert roll outs')
args = parser.parse_args()
print('loading and building expert policy')
policy_fn = load_policy.load_policy(args.expert_policy_file)
print('loaded and built')
with tf.Session():
tf_util.initialize()
import gym
env = gym.make(args.envname)
max_steps = args.max_timesteps or env.spec.timestep_limit
returns = []
observations = []
actions = []
for i in range(args.num_rollouts):
print('iter', i)
obs = env.reset()
done = False
totalr = 0.
steps = 0
while not done:
action = policy_fn(obs[None,:])
observations.append(obs)
actions.append(action)
obs, r, done, _ = env.step(action)
totalr += r
steps += 1
if args.render:
env.render()
if steps % 100 == 0: print("%i/%i"%(steps, max_steps))
if steps >= max_steps:
break
returns.append(totalr)
print('returns', returns)
print('mean return', np.mean(returns))
print('std of return', np.std(returns))
expert_data = {'observations': np.array(observations),
'actions': np.array(actions)}
#
# with open(os.path.join('expert_data', args.envname + '.pkl'), 'wb') as f:
# pickle.dump(expert_data, f
# , pickle.HIGHEST_PROTOCOL)
if __name__ == '__main__':
main()
| main |
app.js | if (process.env.NODE_ENV !== "production") {
require("dotenv").config();
}
const express = require("express");
const app = express();
const port = process.env.PORT || 3000;
const methodOverride = require("method-override");
const path = require("path");
const mongoose = require("mongoose");
const dbURL = process.env.DB_URL;
const session = require("express-session");
const MongoStore = require("connect-mongo");
const flash = require("connect-flash");
const helmet = require("helmet");
const mongoSanitize = require('express-mongo-sanitize');
const AppError = require("./src/AppError");
const Article = require("./models/article");
const articleRoutes = require("./routes/articles");
const userRoutes = require("./routes/users");
app.set("view engine", "ejs");
app.set("views", path.join(__dirname, "/views"));
app.use(methodOverride("_method"));
app.use(express.urlencoded({ extended: true }));
app.use(express.static(__dirname + "/public"));
app.use(helmet.contentSecurityPolicy({
directives: {
defaultSrc: [],
scriptSrc: ["'self'"],
fontSrc: ["'self'"],
styleSrc: ["'self'"],
imgSrc: ["'self'", "blob:", "data:", "https://images.unsplash.com"]
}
}));
app.use(mongoSanitize());
const storeConfig = {
mongoUrl: dbURL,
secret: process.env.storeSecret,
touchAfter: 60 * 60 * 24 // uses seconds
};
const sessionConfig = {
secret: process.env.sessionSecret,
name: "sessId.usid",
resave: false,
saveUninitialized: true,
cookie: {
expires: Date.now() + 1000 * 60 * 60 * 24, // one day
maxAge: 1000 * 60 * 60 * 24
},
store: MongoStore.create(storeConfig)
};
app.use(session(sessionConfig));
app.use(flash());
app.use((req, res, next) => {
res.locals.success = req.flash("success");
res.locals.error = req.flash("error");
res.locals.loggedIn = req.session.loggedIn;
res.locals.userId = req.session.userId;
return next();
});
app.use("/articles", articleRoutes);
app.use("/users", userRoutes);
mongoose.connect(dbURL, {
useNewUrlParser: true,
useCreateIndex: true,
useUnifiedTopology: true,
useFindAndModify: false
});
mongoose.connection.on("error", console.error.bind(console, "connection error:"));
mongoose.connection.once("open", () => { console.log("Database connected."); });
app.get('/', async (req, res, next) => {
try {
const posts = await Article.find({}).sort({ updatedAt: -1 }).limit(7);
res.render("home", { posts, title: "The Ripple Effect" });
}
catch (err) {
return next(new AppError());
}
});
app.get("/search", async (req, res, next) => {
const { q } = req.query;
const regex = new RegExp(q, "i");
try {
const posts = await Article.find({ title: regex });
res.render("search", { posts, title: "The Ripple Effect | Search" }); | });
// Must be at end for all other routes
app.get('*', (req, res, next) => {
return next(new AppError());
});
// Error handler
app.use((err, req, res, next) => {
const { message } = err;
res.render("error", { title: "Can't find page", message, err });
});
app.listen(port, () => {
console.log(`Server has started on port ${port}`);
}); | }
catch (err) {
return next(new AppError());
} |
parser.test.js | const parserTestCases = require('./fixtures/parserTestCases.json');
import {parse} from '../../parse';
function withDefaults(expectedNode) {
if (expectedNode.type === 'ElementNode') {
expectedNode.attributes = expectedNode.attributes || {};
expectedNode.children = expectedNode.children || [];
for (const attribute in expectedNode.attributes) {
if (expectedNode.attributes[attribute] === null) {
expectedNode.attributes[attribute] = undefined;
}
}
expectedNode.children = expectedNode.children.map(withDefaults);
}
return expectedNode;
}
function | (actualNode) {
delete actualNode.parent;
delete actualNode.start
delete actualNode.id
if (actualNode.children) {
actualNode.children = actualNode.children.map(adjust);
}
delete actualNode.closed;
return actualNode;
}
test.each(parserTestCases.map(({input, expected}) => [input, expected]))('%s', (input, expectedNodes) => {
const actualNodes = parse(input);
for (let i = 0; i < expectedNodes.length; i++) {
const actualNode = adjust(actualNodes[i]);
const expectedNode = withDefaults(expectedNodes[i]);
expect(actualNode).toEqual(expectedNode);
}
});
| adjust |
test_core.py | # copyright openpyxlzip 2014
import datetime
import pytest
from openpyxlzip.tests.helper import compare_xml
from openpyxlzip.xml.constants import DCTERMS_PREFIX, DCTERMS_NS, XSI_NS
from openpyxlzip.xml.functions import (
fromstring,
tostring,
register_namespace,
NS_REGEX,
)
@pytest.fixture()
def SampleProperties():
from .. core import DocumentProperties
props = DocumentProperties()
props.keywords = "one, two, three"
props.created = datetime.datetime(2010, 4, 1, 20, 30, 00)
props.modified = datetime.datetime(2010, 4, 5, 14, 5, 30)
props.lastPrinted = datetime.datetime(2014, 10, 14, 10, 30)
props.category = "The category"
props.contentStatus = "The status"
props.creator = 'TEST_USER'
props.lastModifiedBy = "SOMEBODY"
props.revision = "0"
props.version = "2.5"
props.description = "The description"
props.identifier = "The identifier"
props.language = "The language"
props.subject = "The subject"
props.title = "The title"
return props
def test_ctor(SampleProperties):
expected = """
<coreProperties
xmlns="http://schemas.openxmlformats.org/package/2006/metadata/core-properties"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<dc:creator>TEST_USER</dc:creator>
<dc:title>The title</dc:title>
<dc:description>The description</dc:description>
<dc:subject>The subject</dc:subject>
<dc:identifier>The identifier</dc:identifier>
<dc:language>The language</dc:language>
<dcterms:created xsi:type="dcterms:W3CDTF">2010-04-01T20:30:00Z</dcterms:created>
<dcterms:modified xsi:type="dcterms:W3CDTF">2010-04-05T14:05:30Z</dcterms:modified>
<lastModifiedBy>SOMEBODY</lastModifiedBy>
<category>The category</category>
<contentStatus>The status</contentStatus>
<version>2.5</version>
<revision>0</revision>
<keywords>one, two, three</keywords>
<lastPrinted>2014-10-14T10:30:00Z</lastPrinted>
</coreProperties>
"""
xml = tostring(SampleProperties.to_tree())
diff = compare_xml(xml, expected)
assert diff is None, diff
def test_from_tree(datadir, SampleProperties):
datadir.chdir()
with open("core.xml") as src:
content = src.read()
content = fromstring(content)
props = SampleProperties.from_tree(content)
assert props == SampleProperties
def test_qualified_datetime():
from ..core import QualifiedDateTime
dt = QualifiedDateTime()
tree = dt.to_tree("time", datetime.datetime(2015, 7, 20, 12, 30))
xml = tostring(tree)
expected = """
<time xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="dcterms:W3CDTF">
2015-07-20T12:30:00Z
</time>"""
diff = compare_xml(xml, expected)
assert diff is None, diff
@pytest.fixture(params=['abc', 'dct', 'dcterms', 'xyz'])
def dcterms_prefix(request):
register_namespace(request.param, DCTERMS_NS)
yield request.param
register_namespace(DCTERMS_PREFIX, DCTERMS_NS)
@pytest.mark.no_pypy
def test_qualified_datetime_ns(dcterms_prefix):
from ..core import QualifiedDateTime
dt = QualifiedDateTime() | xsi = tree.attrib["{%s}type" % XSI_NS]
prefix = xsi.split(":")[0]
assert prefix == dcterms_prefix | tree = dt.to_tree("time", datetime.datetime(2015, 7, 20, 12, 30))
xml = tostring(tree) # serialise to make remove QName
tree = fromstring(xml) |
server_20210829052657.js | const mysql = require('mysql');
const inquirer = require('inquirer');
const consoleTable = require('console.table')
const connection = mysql.createConnection({
host: 'localhost',
port: 3307,
user: 'root',
password: 'rootr00t!',
database: 'employee_db'
});
connection.connect(function(err) {
if (err) throw err;
start();
});
function start() {
inquirer
.prompt({
name: 'option',
type: 'list',
message: 'Welcome to our employee database! What would you like to do?',
choices: [
'View All Departments',
'View All Roles',
'View All Employees',
'Add Department',
'Add Role',
'Add an Employee',
'Update Employee Role',
'Delete an employee',
'EXIT'
]
})
.then(function (answer) {
switch (answer.option) {
case 'View all Employees':
viewEmployees();
break;
case 'View all Departments':
viewDepartments();
break;
case 'View all Roles':
viewRoles();
break;
case 'Add an Employee':
addEmployee();
break;
case 'Add a Department':
addDepartment();
break;
case 'Add a Role':
addRole();
break;
case 'Update Employee Role':
updateRoles();
break;
case 'Delete an Employee':
deleteEmployee();
break;
case 'EXIT':
exitApp();
break;
}
});
}
function viewEmployee() {
const query = 'SELECT * FROM employee';
connection.query(query, function(err, res) {
if (err) throw err;
console.table('All employees:', res);
start();
});
}
// view all departments in the Database //
function viewDepartment() {
const query = 'SELECT * FROM department';
connection.query(query, function(err, res) {
if (err) throw err;
console.table('All Departments:', res);
start();
});
}
// view all Roles in the Database //
function viewRole() {
var query = 'SELECT * FROM role';
connection.query(query, function(err, res) {
if (err) throw err;
console.table('All Roles:', res);
start();
});
}
// Add an employee to the Database //
function addEmployee() {
connection.query('SELECT * FROM role', function(err, res) {
if (err) throw (err);
inquirer
.prompt([
{
name: 'first_name',
type: 'input',
message: 'What is the Employees first name?',
},
{
name: 'last_name',
type: 'input',
message: 'What is the Employees last name?',
},
{
name: 'manager_id',
type: 'input',
message: 'What is the employees managers ID?',
},
{
name: 'role',
type: 'list',
choices: function() {
var roleArray = [];
for (let i = 0; i < res.length; i++) {
roleArray.push(res[i].tile);
}
return roleArray;
},
message: 'What is this Employees Role?',
}
]).then(function(answer) {
let role_id;
for (let a = 0; a < res.length; a++) {
if (res[a].title == answer.role) {
role_id = res[a].id;
console.log(role_id)
}
}
connection.query(
'INSERT INTO employee SET ?',
{
first_name: answer.first_name,
last_name: answer.last_name,
manager_id: answer.manager_id,
role_id: role_id,
},
function (err) {
if (err) throw (err);
console.log('Your employee has been Added!');
start();
});
});
})
}
// Add a Department to the DataBase //
function | () {
inquirer
.prompt([
{
name: 'newDepartment',
type: 'input',
message: 'Which Department would you like to Add?',
}
]).then(function (answer) {
connection.query(
'INSERT INTO department SET ?',
{
name: answer.newDepartment
});
var query = 'SELECT * FROM department';
connection.query(query, function(err, res){
if(err) throw (err);
console.log('Your department has been Added!');
console.table('All Departments:', res);
start();
})
})
}
// Add Role to the Database //
function addRole() {
connection.query('SELECT * FROM department', function(err, res) {
if (err) throw (err);
inquirer
.prompt ([
{
name: 'new_role',
type: 'input',
message: 'What is the New Role you would like to Add?',
},
{
name: 'salary',
type: 'input',
message: 'What is the Salary of this role? (Enter a Number)',
},
{
name: 'Department',
type: 'list',
choices: function() {
var deptArray =[];
for (let i = 0; i < res.length; i++) {
deptArray.push(res[i].name);
}
return deptArray;
},
}
]).then(function (answer) {
let department_id;
for (let a = 0; a < res.length; a++) {
department_id = res[a].id;
}
})
connection.query(
'INSERT INTO role SET ?',
{
title: answer.new_role,
salary: answer.salary,
department_id: department_id,
},
function (err, res) {
if(err) throw (err);
console.log('Your New Role has been Added!');
console.table('All Roles:', res);
start();
})
});
};
// Update a Role in the Database //
function updateRole() {
};
// Deletes an Employee
function deleteEmployee() {
};
// Exit the Application
function exitApp() {
connection.end();
};
| addDepartment |
sspimsc.rs | #[doc = "Reader of register SSPIMSC"]
pub type R = crate::R<u32, super::SSPIMSC>;
#[doc = "Writer for register SSPIMSC"]
pub type W = crate::W<u32, super::SSPIMSC>;
#[doc = "Register SSPIMSC `reset()`'s with value 0"]
impl crate::ResetValue for super::SSPIMSC {
type Type = u32;
#[inline(always)]
fn reset_value() -> Self::Type {
0
}
}
#[doc = "Reader of field `TXIM`"]
pub type TXIM_R = crate::R<bool, bool>;
#[doc = "Write proxy for field `TXIM`"]
pub struct TXIM_W<'a> {
w: &'a mut W,
}
impl<'a> TXIM_W<'a> {
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 3)) | (((value as u32) & 0x01) << 3);
self.w
}
}
#[doc = "Reader of field `RXIM`"]
pub type RXIM_R = crate::R<bool, bool>;
#[doc = "Write proxy for field `RXIM`"]
pub struct RXIM_W<'a> {
w: &'a mut W,
}
impl<'a> RXIM_W<'a> {
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn | (self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 2)) | (((value as u32) & 0x01) << 2);
self.w
}
}
#[doc = "Reader of field `RTIM`"]
pub type RTIM_R = crate::R<bool, bool>;
#[doc = "Write proxy for field `RTIM`"]
pub struct RTIM_W<'a> {
w: &'a mut W,
}
impl<'a> RTIM_W<'a> {
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 1)) | (((value as u32) & 0x01) << 1);
self.w
}
}
#[doc = "Reader of field `RORIM`"]
pub type RORIM_R = crate::R<bool, bool>;
#[doc = "Write proxy for field `RORIM`"]
pub struct RORIM_W<'a> {
w: &'a mut W,
}
impl<'a> RORIM_W<'a> {
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !0x01) | ((value as u32) & 0x01);
self.w
}
}
impl R {
#[doc = "Bit 3 - Transmit FIFO interrupt mask: 0 Transmit FIFO half empty or less condition interrupt is masked. 1 Transmit FIFO half empty or less condition interrupt is not masked."]
#[inline(always)]
pub fn txim(&self) -> TXIM_R {
TXIM_R::new(((self.bits >> 3) & 0x01) != 0)
}
#[doc = "Bit 2 - Receive FIFO interrupt mask: 0 Receive FIFO half full or less condition interrupt is masked. 1 Receive FIFO half full or less condition interrupt is not masked."]
#[inline(always)]
pub fn rxim(&self) -> RXIM_R {
RXIM_R::new(((self.bits >> 2) & 0x01) != 0)
}
#[doc = "Bit 1 - Receive timeout interrupt mask: 0 Receive FIFO not empty and no read prior to timeout period interrupt is masked. 1 Receive FIFO not empty and no read prior to timeout period interrupt is not masked."]
#[inline(always)]
pub fn rtim(&self) -> RTIM_R {
RTIM_R::new(((self.bits >> 1) & 0x01) != 0)
}
#[doc = "Bit 0 - Receive overrun interrupt mask: 0 Receive FIFO written to while full condition interrupt is masked. 1 Receive FIFO written to while full condition interrupt is not masked."]
#[inline(always)]
pub fn rorim(&self) -> RORIM_R {
RORIM_R::new((self.bits & 0x01) != 0)
}
}
impl W {
#[doc = "Bit 3 - Transmit FIFO interrupt mask: 0 Transmit FIFO half empty or less condition interrupt is masked. 1 Transmit FIFO half empty or less condition interrupt is not masked."]
#[inline(always)]
pub fn txim(&mut self) -> TXIM_W {
TXIM_W { w: self }
}
#[doc = "Bit 2 - Receive FIFO interrupt mask: 0 Receive FIFO half full or less condition interrupt is masked. 1 Receive FIFO half full or less condition interrupt is not masked."]
#[inline(always)]
pub fn rxim(&mut self) -> RXIM_W {
RXIM_W { w: self }
}
#[doc = "Bit 1 - Receive timeout interrupt mask: 0 Receive FIFO not empty and no read prior to timeout period interrupt is masked. 1 Receive FIFO not empty and no read prior to timeout period interrupt is not masked."]
#[inline(always)]
pub fn rtim(&mut self) -> RTIM_W {
RTIM_W { w: self }
}
#[doc = "Bit 0 - Receive overrun interrupt mask: 0 Receive FIFO written to while full condition interrupt is masked. 1 Receive FIFO written to while full condition interrupt is not masked."]
#[inline(always)]
pub fn rorim(&mut self) -> RORIM_W {
RORIM_W { w: self }
}
}
| set_bit |
views.py | from django.shortcuts import render, HttpResponseRedirect
from django.urls import reverse
from urllib.parse import urlencode, unquote
import requests
from bs4 import BeautifulSoup
from django.utils.crypto import get_random_string
from django.contrib import messages
from urllib.parse import urlparse, urljoin
from django.contrib.auth import get_user_model
from django.contrib.auth import login as login_auth
def redirect_logged_in_users(function):
def _function(request,*args, **kwargs):
if request.user.is_authenticated:
return HttpResponseRedirect(reverse("feed:index"))
return function(request, *args, **kwargs)
return _function
@redirect_logged_in_users
def index(request):
cleanup(request)
return render(request, 'indieauth/index.html', {})
def login(request):
|
def redirect(request):
if request.GET.get('state', None) == request.session.get('state', None) and request.session.get('state', None) != None:
client_id = request.session['client_id']
authorization_endpoint = request.session['authorization_endpoint']
redirect_uri = request.build_absolute_uri(reverse('indieauth:redirect'))
code = request.GET.get('code')
r = requests.post(authorization_endpoint, data = {'code':code, 'client_id':client_id, 'redirect_uri': redirect_uri})
if r.headers['content-type'] == "application/x-www-form-urlencoded":
user_site = unquote(r.text)[3:]
elif r.headers['content-type'] == "application/json":
user_site = r.text['me']
else:
user_site = None
user_site_matches_domain = urlparse(client_id).netloc == urlparse(user_site).netloc
print(urlparse(client_id).netloc, urlparse(user_site).netloc)
if r.status_code == 200 and user_site and user_site_matches_domain:
messages.success(request, 'Your URL is: ' + user_site)
user_model = get_user_model()
user = user_model.objects.filter(site=user_site)
if user:
login_auth(request, user[0])
else:
user = user_model.objects.create_user(username=user_site, site=user_site)
user.set_unusable_password()
login_auth(request, user)
cleanup(request)
return HttpResponseRedirect(reverse('feed:index'))
else:
messages.error(request, 'Error in URL. Please try again.')
cleanup(request)
return HttpResponseRedirect(reverse('indieauth:index'))
else:
messages.error(request, 'Major error. Likely timeout. Please try again.')
cleanup(request)
return HttpResponseRedirect(reverse('indieauth:index'))
def cleanup(request):
try:
del request.session['authorization_endpoint']
del request.session['state']
del request.session['client_id']
except KeyError:
pass
def application_info(request):
return render(request, "indieauth/application_info.html") | try:
if request.method == 'POST':
site = request.POST.get("site", None)
url_data = urlparse(site)
if site and url_data.netloc != '' and (url_data.scheme == 'http' or url_data.scheme == 'https'):
if url_data.path == '':
site = site + '/'
print(site)
r = requests.get(site)
soup = BeautifulSoup(r.text, 'html.parser')
unique_id = get_random_string(length=32)
for link in soup.find_all('link'):
if link.get('rel')[0] == "authorization_endpoint":
authorization_endpoint = link.get('href')
# if relative URL, this will attach it to the end of the redirected url
authorization_endpoint = urljoin(r.url, authorization_endpoint)
if r.headers.get('Link', None):
links = r.headers['Link']
print(links)
for link in links.split(","):
possible_url = link.split(";")[0].strip()
possible_url = possible_url[1:len(possible_url)-1]
possible_rel = link.split(";")[1].strip()
if possible_rel == "rel=authorization_endpoint":
authorization_endpoint = urljoin(r.url, possible_url)
# after redirects, the final URL will be contained in the response
site = r.url
print(r.history)
searchHistory = True
i = -1
# ensure that if there's temp redirects that the "me" url is always the last permanent redirect
while searchHistory and (i*-1) <= len(r.history):
history_piece = r.history[i]
if history_piece.status_code == 301:
site = history_piece.url
i -= 1
# If ALL of them are temporary redirects than use the initial value
if all(i.status_code == 302 for i in r.history):
site = request.POST.get("site", None)
if authorization_endpoint:
request.session['authorization_endpoint']=authorization_endpoint
request.session['client_id'] = site
request.session['state'] = unique_id
payload = {'me': site,
'redirect_uri': request.build_absolute_uri(reverse('indieauth:redirect')),
'client_id': f'{request.scheme}://{ request.get_host() }/indieauth/application_info',
'state': unique_id,
'response_type': 'id'}
redirect_site = authorization_endpoint + "?" + urlencode(payload)
return HttpResponseRedirect(redirect_site)
else:
cleanup(request)
messages.error(request, 'No authorization_endpoint found.')
return HttpResponseRedirect(reverse('indieauth:index'))
except Exception as e:
print(e)
messages.error(request, 'Error in retrieving url.')
return HttpResponseRedirect(reverse('indieauth:index'))
messages.error(request, 'No site submitted or the URL submitted was not valid.')
return HttpResponseRedirect(reverse('indieauth:index')) |
api_op_ListTargetsByRule.go | // Code generated by smithy-go-codegen DO NOT EDIT.
package eventbridge
import (
"context"
awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware"
"github.com/aws/aws-sdk-go-v2/aws/signer/v4"
"github.com/aws/aws-sdk-go-v2/service/eventbridge/types"
"github.com/awslabs/smithy-go/middleware"
smithyhttp "github.com/awslabs/smithy-go/transport/http"
)
// Lists the targets assigned to the specified rule.
func (c *Client) ListTargetsByRule(ctx context.Context, params *ListTargetsByRuleInput, optFns ...func(*Options)) (*ListTargetsByRuleOutput, error) {
if params == nil {
params = &ListTargetsByRuleInput{}
}
result, metadata, err := c.invokeOperation(ctx, "ListTargetsByRule", params, optFns, addOperationListTargetsByRuleMiddlewares)
if err != nil {
return nil, err
}
out := result.(*ListTargetsByRuleOutput)
out.ResultMetadata = metadata
return out, nil
}
type ListTargetsByRuleInput struct {
// The name of the rule.
//
// This member is required.
Rule *string
// The event bus associated with the rule. If you omit this, the default event bus
// is used.
EventBusName *string
// The maximum number of results to return.
Limit *int32
// The token returned by a previous call to retrieve the next set of results.
NextToken *string
}
type ListTargetsByRuleOutput struct {
// Indicates whether there are additional results to retrieve. If there are no more
// results, the value is null.
NextToken *string
// The targets assigned to the rule.
Targets []*types.Target
// Metadata pertaining to the operation's result.
ResultMetadata middleware.Metadata
}
func addOperationListTargetsByRuleMiddlewares(stack *middleware.Stack, options Options) (err error) {
err = stack.Serialize.Add(&awsAwsjson11_serializeOpListTargetsByRule{}, middleware.After)
if err != nil {
return err
}
err = stack.Deserialize.Add(&awsAwsjson11_deserializeOpListTargetsByRule{}, middleware.After)
if err != nil {
return err
}
if err = addSetLoggerMiddleware(stack, options); err != nil {
return err
}
if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil {
return err
}
if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil {
return err
}
if err = addResolveEndpointMiddleware(stack, options); err != nil {
return err
} | return err
}
if err = addRetryMiddlewares(stack, options); err != nil {
return err
}
if err = addHTTPSignerV4Middleware(stack, options); err != nil {
return err
}
if err = awsmiddleware.AddAttemptClockSkewMiddleware(stack); err != nil {
return err
}
if err = addClientUserAgent(stack); err != nil {
return err
}
if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil {
return err
}
if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil {
return err
}
if err = addOpListTargetsByRuleValidationMiddleware(stack); err != nil {
return err
}
if err = stack.Initialize.Add(newServiceMetadataMiddleware_opListTargetsByRule(options.Region), middleware.Before); err != nil {
return err
}
if err = addRequestIDRetrieverMiddleware(stack); err != nil {
return err
}
if err = addResponseErrorMiddleware(stack); err != nil {
return err
}
if err = addRequestResponseLogging(stack, options); err != nil {
return err
}
return nil
}
func newServiceMetadataMiddleware_opListTargetsByRule(region string) *awsmiddleware.RegisterServiceMetadata {
return &awsmiddleware.RegisterServiceMetadata{
Region: region,
ServiceID: ServiceID,
SigningName: "events",
OperationName: "ListTargetsByRule",
}
} | if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil { |
ContactMeForm.tsx | import React, {BaseSyntheticEvent, useState} from "react";
import {Button, CircularProgress, Grid, TextField} from "@material-ui/core";
import {useForm} from "react-hook-form";
import emailjs from 'emailjs-com';
import {toast, ToastContainer, Zoom} from 'react-toastify';
import 'react-toastify/dist/ReactToastify.css';
function ContactMeForm() {
const {register, handleSubmit, errors} = useForm({
defaultValues: {
email: '',
name: '',
message: ''
}
});
const [loading, setLoading] = useState<boolean>(false);
function onSubmit(data: any, event: BaseSyntheticEvent | undefined) {
setLoading(true);
if (event === undefined) {
setLoading(false);
return;
}
emailjs.sendForm('gmail', 'template_djoyjve', event.target, 'user_6EWwJ2wkUdvLuWsqq33Sr')
.then((result: any) => {
setLoading(false);
event.target.reset();
toast.success(`Thank you for your feedback ${data.name}`, {
})
console.log(result.text);
}, (error: any) => {
setLoading(false);
event.target.reset();
toast.error(`Error: ${error.text}`, {
})
console.log(error.text);
});
}
return (
<>
<Grid item={true} xs={12} md={5}>
<form
onSubmit={handleSubmit((data: any, event: BaseSyntheticEvent | undefined) => onSubmit(data, event))}>
<TextField required={true}
fullWidth={true}
label="Name"
name={'name'}
className={'mb-3 mt-2'}
placeholder={'at least 4 chars long'}
inputRef={register({
required: true,
minLength: 4
})}
error={Boolean(errors.name)}
helperText={errors.name ? 'Must be least 4 chars long' : ''}
/> | name={'email'}
className={'mb-3'}
placeholder={'provide some valid email'}
inputRef={register({
required: true,
pattern: new RegExp('^[^@]+@[^@]+\\.[^@]+$')
})}
error={Boolean(errors.email)}
helperText={errors.email ? 'Must have only one @, at least one character before the @, at least one character before the DOT and at least one after it:' : ''}
/>
<TextField required={true}
fullWidth={true}
label="Message"
name={'message'}
className={'mb-3'}
placeholder={'your feedback, min 10 chars'}
multiline={true}
rows={5}
inputRef={register({
required: true,
minLength: 10
})}
error={Boolean(errors.message)}
helperText={errors.message ? 'Must be least 10 chars long' : ''}
/>
<Button variant="contained"
type={'submit'}
disabled={loading}
color="primary">
Send Feedback
{loading && <CircularProgress size={20}/>}
</Button>
</form>
<ToastContainer transition={Zoom} style={{width: '18%', height: '50%'}} position={"bottom-center"}/>
</Grid>
</>
)
}
export {ContactMeForm} | <TextField fullWidth={true}
required={true}
label="E-mail" |
webAppConnectionStrings.go | // *** WARNING: this file was generated by the Pulumi SDK Generator. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package v20160801
import (
"context"
"reflect"
"github.com/pkg/errors"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
// String dictionary resource.
type WebAppConnectionStrings struct {
pulumi.CustomResourceState
// Kind of resource.
Kind pulumi.StringPtrOutput `pulumi:"kind"`
// Resource Name.
Name pulumi.StringOutput `pulumi:"name"`
// Connection strings.
Properties ConnStringValueTypePairResponseMapOutput `pulumi:"properties"`
// Resource type.
Type pulumi.StringOutput `pulumi:"type"`
}
// NewWebAppConnectionStrings registers a new resource with the given unique name, arguments, and options.
func NewWebAppConnectionStrings(ctx *pulumi.Context,
name string, args *WebAppConnectionStringsArgs, opts ...pulumi.ResourceOption) (*WebAppConnectionStrings, error) {
if args == nil {
return nil, errors.New("missing one or more required arguments")
}
if args.Name == nil {
return nil, errors.New("invalid value for required argument 'Name'")
}
if args.ResourceGroupName == nil {
return nil, errors.New("invalid value for required argument 'ResourceGroupName'")
}
aliases := pulumi.Aliases([]pulumi.Alias{
{
Type: pulumi.String("azure-nextgen:web/v20160801:WebAppConnectionStrings"),
},
{
Type: pulumi.String("azure-native:web:WebAppConnectionStrings"),
},
{
Type: pulumi.String("azure-nextgen:web:WebAppConnectionStrings"),
},
{
Type: pulumi.String("azure-native:web/latest:WebAppConnectionStrings"),
},
{
Type: pulumi.String("azure-nextgen:web/latest:WebAppConnectionStrings"),
},
{
Type: pulumi.String("azure-native:web/v20150801:WebAppConnectionStrings"),
},
{
Type: pulumi.String("azure-nextgen:web/v20150801:WebAppConnectionStrings"),
},
{
Type: pulumi.String("azure-native:web/v20180201:WebAppConnectionStrings"),
},
{
Type: pulumi.String("azure-nextgen:web/v20180201:WebAppConnectionStrings"),
},
{
Type: pulumi.String("azure-native:web/v20181101:WebAppConnectionStrings"),
},
{
Type: pulumi.String("azure-nextgen:web/v20181101:WebAppConnectionStrings"),
},
{
Type: pulumi.String("azure-native:web/v20190801:WebAppConnectionStrings"),
},
{
Type: pulumi.String("azure-nextgen:web/v20190801:WebAppConnectionStrings"),
},
{
Type: pulumi.String("azure-native:web/v20200601:WebAppConnectionStrings"),
},
{
Type: pulumi.String("azure-nextgen:web/v20200601:WebAppConnectionStrings"),
},
{
Type: pulumi.String("azure-native:web/v20200901:WebAppConnectionStrings"),
},
{
Type: pulumi.String("azure-nextgen:web/v20200901:WebAppConnectionStrings"),
},
{
Type: pulumi.String("azure-native:web/v20201001:WebAppConnectionStrings"),
},
{
Type: pulumi.String("azure-nextgen:web/v20201001:WebAppConnectionStrings"),
},
})
opts = append(opts, aliases)
var resource WebAppConnectionStrings
err := ctx.RegisterResource("azure-native:web/v20160801:WebAppConnectionStrings", name, args, &resource, opts...)
if err != nil {
return nil, err
}
return &resource, nil
}
// GetWebAppConnectionStrings gets an existing WebAppConnectionStrings resource's state with the given name, ID, and optional
// state properties that are used to uniquely qualify the lookup (nil if not required).
func GetWebAppConnectionStrings(ctx *pulumi.Context,
name string, id pulumi.IDInput, state *WebAppConnectionStringsState, opts ...pulumi.ResourceOption) (*WebAppConnectionStrings, error) {
var resource WebAppConnectionStrings
err := ctx.ReadResource("azure-native:web/v20160801:WebAppConnectionStrings", name, id, state, &resource, opts...)
if err != nil {
return nil, err
}
return &resource, nil
}
// Input properties used for looking up and filtering WebAppConnectionStrings resources.
type webAppConnectionStringsState struct {
// Kind of resource.
Kind *string `pulumi:"kind"`
// Resource Name.
Name *string `pulumi:"name"`
// Connection strings.
Properties map[string]ConnStringValueTypePairResponse `pulumi:"properties"`
// Resource type.
Type *string `pulumi:"type"`
}
type WebAppConnectionStringsState struct {
// Kind of resource.
Kind pulumi.StringPtrInput
// Resource Name.
Name pulumi.StringPtrInput
// Connection strings.
Properties ConnStringValueTypePairResponseMapInput
// Resource type.
Type pulumi.StringPtrInput
}
func (WebAppConnectionStringsState) ElementType() reflect.Type {
return reflect.TypeOf((*webAppConnectionStringsState)(nil)).Elem()
}
type webAppConnectionStringsArgs struct {
// Kind of resource.
Kind *string `pulumi:"kind"`
// Name of the app.
Name string `pulumi:"name"`
// Connection strings.
Properties map[string]ConnStringValueTypePair `pulumi:"properties"`
// Name of the resource group to which the resource belongs.
ResourceGroupName string `pulumi:"resourceGroupName"`
}
// The set of arguments for constructing a WebAppConnectionStrings resource.
type WebAppConnectionStringsArgs struct {
// Kind of resource.
Kind pulumi.StringPtrInput
// Name of the app.
Name pulumi.StringInput
// Connection strings.
Properties ConnStringValueTypePairMapInput
// Name of the resource group to which the resource belongs.
ResourceGroupName pulumi.StringInput
}
func (WebAppConnectionStringsArgs) ElementType() reflect.Type {
return reflect.TypeOf((*webAppConnectionStringsArgs)(nil)).Elem()
}
type WebAppConnectionStringsInput interface {
pulumi.Input
ToWebAppConnectionStringsOutput() WebAppConnectionStringsOutput
ToWebAppConnectionStringsOutputWithContext(ctx context.Context) WebAppConnectionStringsOutput
}
func (*WebAppConnectionStrings) ElementType() reflect.Type {
return reflect.TypeOf((*WebAppConnectionStrings)(nil))
}
func (i *WebAppConnectionStrings) ToWebAppConnectionStringsOutput() WebAppConnectionStringsOutput {
return i.ToWebAppConnectionStringsOutputWithContext(context.Background())
}
func (i *WebAppConnectionStrings) ToWebAppConnectionStringsOutputWithContext(ctx context.Context) WebAppConnectionStringsOutput {
return pulumi.ToOutputWithContext(ctx, i).(WebAppConnectionStringsOutput)
}
type WebAppConnectionStringsOutput struct {
*pulumi.OutputState
}
func (WebAppConnectionStringsOutput) ElementType() reflect.Type {
return reflect.TypeOf((*WebAppConnectionStrings)(nil))
}
func (o WebAppConnectionStringsOutput) ToWebAppConnectionStringsOutput() WebAppConnectionStringsOutput {
return o
}
func (o WebAppConnectionStringsOutput) ToWebAppConnectionStringsOutputWithContext(ctx context.Context) WebAppConnectionStringsOutput {
return o
}
func init() | {
pulumi.RegisterOutputType(WebAppConnectionStringsOutput{})
} |
|
solfege.py | #!/usr/bin/env python3
"""
Author : abennett1 <abennett1@localhost>
Date : 2021-09-20
Purpose: Rock the Casbah
"""
import argparse
# --------------------------------------------------
def get_args():
"""Get command-line arguments"""
parser = argparse.ArgumentParser(
description='Do Re Mi solfege',
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
parser.add_argument('text',
metavar='str',
nargs='+',
help='Solfege')
return parser.parse_args()
# --------------------------------------------------
def | ():
"""Make a jazz noise here"""
args = get_args()
syllable = {'Do': 'Do, A deer, a female deer', 'Re': 'Re, A drop of golden sun',
'Mi': 'Mi, A name I call myself', 'Fa': 'Fa, A long long way to run',
'Sol': 'Sol, A needle pulling thread', 'La': 'La, A note to follow sol',
'Ti': 'Ti, A drink with jam and bread'}
for word in args.text:
if word in syllable:
print(syllable.get(word))
else:
print("I don't know " + '"' + word + '"')
# --------------------------------------------------
if __name__ == '__main__':
main()
| main |
supported-cast.rs | // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
pub fn main() | {
let f = 1 as *libc::FILE;
debug!(f as int);
debug!(f as uint);
debug!(f as i8);
debug!(f as i16);
debug!(f as i32);
debug!(f as i64);
debug!(f as u8);
debug!(f as u16);
debug!(f as u32);
debug!(f as u64);
debug!(1 as int);
debug!(1 as uint);
debug!(1 as float);
debug!(1 as bool);
debug!(1 as *libc::FILE);
debug!(1 as i8);
debug!(1 as i16);
debug!(1 as i32);
debug!(1 as i64);
debug!(1 as u8);
debug!(1 as u16);
debug!(1 as u32);
debug!(1 as u64);
debug!(1 as f32);
debug!(1 as f64);
debug!(1u as int);
debug!(1u as uint);
debug!(1u as float);
debug!(1u as bool);
debug!(1u as *libc::FILE);
debug!(1u as i8);
debug!(1u as i16);
debug!(1u as i32);
debug!(1u as i64);
debug!(1u as u8);
debug!(1u as u16);
debug!(1u as u32);
debug!(1u as u64);
debug!(1u as f32);
debug!(1u as f64);
debug!(1i8 as int);
debug!(1i8 as uint);
debug!(1i8 as float);
debug!(1i8 as bool);
debug!(1i8 as *libc::FILE);
debug!(1i8 as i8);
debug!(1i8 as i16);
debug!(1i8 as i32);
debug!(1i8 as i64);
debug!(1i8 as u8);
debug!(1i8 as u16);
debug!(1i8 as u32);
debug!(1i8 as u64);
debug!(1i8 as f32);
debug!(1i8 as f64);
debug!(1u8 as int);
debug!(1u8 as uint);
debug!(1u8 as float);
debug!(1u8 as bool);
debug!(1u8 as *libc::FILE);
debug!(1u8 as i8);
debug!(1u8 as i16);
debug!(1u8 as i32);
debug!(1u8 as i64);
debug!(1u8 as u8);
debug!(1u8 as u16);
debug!(1u8 as u32);
debug!(1u8 as u64);
debug!(1u8 as f32);
debug!(1u8 as f64);
debug!(1i16 as int);
debug!(1i16 as uint);
debug!(1i16 as float);
debug!(1i16 as bool);
debug!(1i16 as *libc::FILE);
debug!(1i16 as i8);
debug!(1i16 as i16);
debug!(1i16 as i32);
debug!(1i16 as i64);
debug!(1i16 as u8);
debug!(1i16 as u16);
debug!(1i16 as u32);
debug!(1i16 as u64);
debug!(1i16 as f32);
debug!(1i16 as f64);
debug!(1u16 as int);
debug!(1u16 as uint);
debug!(1u16 as float);
debug!(1u16 as bool);
debug!(1u16 as *libc::FILE);
debug!(1u16 as i8);
debug!(1u16 as i16);
debug!(1u16 as i32);
debug!(1u16 as i64);
debug!(1u16 as u8);
debug!(1u16 as u16);
debug!(1u16 as u32);
debug!(1u16 as u64);
debug!(1u16 as f32);
debug!(1u16 as f64);
debug!(1i32 as int);
debug!(1i32 as uint);
debug!(1i32 as float);
debug!(1i32 as bool);
debug!(1i32 as *libc::FILE);
debug!(1i32 as i8);
debug!(1i32 as i16);
debug!(1i32 as i32);
debug!(1i32 as i64);
debug!(1i32 as u8);
debug!(1i32 as u16);
debug!(1i32 as u32);
debug!(1i32 as u64);
debug!(1i32 as f32);
debug!(1i32 as f64);
debug!(1u32 as int);
debug!(1u32 as uint);
debug!(1u32 as float);
debug!(1u32 as bool);
debug!(1u32 as *libc::FILE);
debug!(1u32 as i8);
debug!(1u32 as i16);
debug!(1u32 as i32);
debug!(1u32 as i64);
debug!(1u32 as u8);
debug!(1u32 as u16);
debug!(1u32 as u32);
debug!(1u32 as u64);
debug!(1u32 as f32);
debug!(1u32 as f64);
debug!(1i64 as int);
debug!(1i64 as uint);
debug!(1i64 as float);
debug!(1i64 as bool);
debug!(1i64 as *libc::FILE);
debug!(1i64 as i8);
debug!(1i64 as i16);
debug!(1i64 as i32);
debug!(1i64 as i64);
debug!(1i64 as u8);
debug!(1i64 as u16);
debug!(1i64 as u32);
debug!(1i64 as u64);
debug!(1i64 as f32);
debug!(1i64 as f64);
debug!(1u64 as int);
debug!(1u64 as uint);
debug!(1u64 as float);
debug!(1u64 as bool);
debug!(1u64 as *libc::FILE);
debug!(1u64 as i8);
debug!(1u64 as i16);
debug!(1u64 as i32);
debug!(1u64 as i64);
debug!(1u64 as u8);
debug!(1u64 as u16);
debug!(1u64 as u32);
debug!(1u64 as u64);
debug!(1u64 as f32);
debug!(1u64 as f64);
debug!(1u64 as int);
debug!(1u64 as uint);
debug!(1u64 as float);
debug!(1u64 as bool);
debug!(1u64 as *libc::FILE);
debug!(1u64 as i8);
debug!(1u64 as i16);
debug!(1u64 as i32);
debug!(1u64 as i64);
debug!(1u64 as u8);
debug!(1u64 as u16);
debug!(1u64 as u32);
debug!(1u64 as u64);
debug!(1u64 as f32);
debug!(1u64 as f64);
debug!(true as int);
debug!(true as uint);
debug!(true as float);
debug!(true as bool);
debug!(true as *libc::FILE);
debug!(true as i8);
debug!(true as i16);
debug!(true as i32);
debug!(true as i64);
debug!(true as u8);
debug!(true as u16);
debug!(true as u32);
debug!(true as u64);
debug!(true as f32);
debug!(true as f64);
debug!(1. as int);
debug!(1. as uint);
debug!(1. as float);
debug!(1. as bool);
debug!(1. as i8);
debug!(1. as i16);
debug!(1. as i32);
debug!(1. as i64);
debug!(1. as u8);
debug!(1. as u16);
debug!(1. as u32);
debug!(1. as u64);
debug!(1. as f32);
debug!(1. as f64);
debug!(1f32 as int);
debug!(1f32 as uint);
debug!(1f32 as float);
debug!(1f32 as bool);
debug!(1f32 as i8);
debug!(1f32 as i16);
debug!(1f32 as i32);
debug!(1f32 as i64);
debug!(1f32 as u8);
debug!(1f32 as u16);
debug!(1f32 as u32);
debug!(1f32 as u64);
debug!(1f32 as f32);
debug!(1f32 as f64);
debug!(1f64 as int);
debug!(1f64 as uint);
debug!(1f64 as float);
debug!(1f64 as bool);
debug!(1f64 as i8);
debug!(1f64 as i16);
debug!(1f64 as i32);
debug!(1f64 as i64);
debug!(1f64 as u8);
debug!(1f64 as u16);
debug!(1f64 as u32);
debug!(1f64 as u64);
debug!(1f64 as f32);
debug!(1f64 as f64);
} |
|
tap.js | Tap.options = {
eventName: 'tap',
fingerMaxOffset: 11
}; | attachDeviceEvent = function(eventName) {
return utils.attachEvent(document.documentElement, deviceEvents[eventName], handlers[eventName]);
};
handlers = {
start: function(e) {
e = utils.getRealEvent(e);
coords.start = [e.pageX, e.pageY];
coords.offset = [0, 0];
},
move: function(e) {
if (!coords.start && !coords.move) {
return false;
}
e = utils.getRealEvent(e);
coords.move = [e.pageX, e.pageY];
coords.offset = [
Math.abs(coords.move[0] - coords.start[0]),
Math.abs(coords.move[1] - coords.start[1])
];
},
end: function(e) {
e = utils.getRealEvent(e);
if (coords.offset[0] < Tap.options.fingerMaxOffset && coords.offset[1] < Tap.options.fingerMaxOffset && !utils.fireFakeEvent(e, Tap.options.eventName)) {
// Windows Phone 8.0 trigger `click` after `pointerup` firing
// #16 https://github.com/pukhalski/tap/issues/16
if (window.navigator.msPointerEnabled || window.navigator.pointerEnabled) {
var preventDefault = function(clickEvent) {
clickEvent.preventDefault();
e.target.removeEventListener('click', preventDefault);
};
e.target.addEventListener('click', preventDefault, false);
}
e.preventDefault();
}
coords = {};
},
click: function(e) {
if (!utils.fireFakeEvent(e, Tap.options.eventName)) {
return e.preventDefault();
}
}
};
init = function() {
var i = 0;
for (; i < eventMatrix.length; i++) {
if (eventMatrix[i].test) {
deviceEvents = eventMatrix[i].events;
attachDeviceEvent('start');
attachDeviceEvent('move');
attachDeviceEvent('end');
break;
}
}
return utils.attachEvent(document.documentElement, 'click', handlers.click);
};
utils.attachEvent(window, 'load', init);
if (typeof define === 'function' && define.amd) {
define(function() {
init();
return Tap;
});
} else {
window.Tap = Tap;
} |
var attachDeviceEvent, init, handlers, deviceEvents,
coords = {};
|
pdfinfo.py | import os
import re
import subprocess
import logging
"""
Uses command line pdfinfo utility (from poppler pakage) for various
small operations (e.g. get pdf page count).
"""
logger = logging.getLogger(__name__)
def get_pagecount(filepath):
"""
Returns the number of pages in a PDF document as integer.
filepath - is filesystem path to a PDF document
"""
if not os.path.isfile(filepath):
raise ValueError("Filepath %s is not a file" % filepath)
if os.path.isdir(filepath):
raise ValueError("Filepath %s is a directory!" % filepath)
base, ext = os.path.splitext(filepath)
# pure images (png, jpeg) have only one page :)
if ext and ext.lower() in ('.jpeg', '.png', '.jpg'):
# whatever png/jpg image is there - it is
# considered by default one page document. | raise ValueError(
"Only jpeg, png and pdf are handlerd by this"
" method"
)
# pdfinfo "${PDFFILE}" | grep Pages
cmd = ["/usr/bin/pdfinfo", filepath]
compl = subprocess.run(
cmd,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE
)
if compl.returncode:
logger.error(
"get_pagecount: cmd=%s args=%s stdout=%s stderr=%s code=%s",
cmd,
compl.args,
compl.stdout,
compl.stderr,
compl.returncode,
stack_info=True
)
raise Exception("Error occured while getting document page count.")
lines = compl.stdout.decode('utf-8').split('\n')
# look up for the line containing "Pages: 11"
for line in lines:
x = re.match("Pages:\W+(\d+)$", line.strip())
if x:
return int(x.group(1))
return 0 | return 1
if ext and ext.lower() not in ('.pdf',): |
constants.py | # ============ FIRST ALGORITHM ============
class Circles(object):
test_img = "cargo1.jpeg"
rescale_size = 0.4
circles_dp = 2.2
circles_minDist = 180
circles_param1 = 75
circles_param2 = 90
circles_minRadius = 10
circles_maxRadius = 500
circle_color = (150, 55, 0)
rectangle_color = (150, 55, 0)
green = (77, 199, 44)
frame_width = 640
frame_height = 480
class TrackCircles(object):
| min_blue_HSV = (76, 73, 29)
max_blue_HSV = (134, 255, 255)
min_redx_HSV = (0, 70, 50)
max_redx_HSV = (10, 255, 255)
min_redy_HSV = (160, 33, 45)
max_redy_HSV = (180, 255, 255)
frame_width = 600 |
|
user.tsx | import mongoose, { Schema, model, Document } from 'mongoose'
export interface UserInterface extends Partial<Document> {
name: string
avatar: string
teamId?: string
teamName?: string
password?: string
addUserPassword?: string
}
export interface UserLoginInterface {
userId: string
teamId: string
password: string
} |
export const emptyUser = {
name: 'Nimetön',
avatar: '',
teamId: '',
teamName: '',
}
const UserSchema = new Schema<UserInterface>({
name: { type: String, required: true },
password: { type: String, required: true },
avatar: { type: String, required: true },
teamId: { type: String, required: true },
})
export const User =
mongoose.models?.User || model<UserInterface>('User', UserSchema) | |
nominal_target.py | '''
Created on 29.09.2017
@author: lemmerfn
'''
import numpy as np
import scipy.stats
from functools import total_ordering
from .measures import AbstractInterestingnessMeasure, BoundedInterestingnessMeasure
from .utils import effective_sample_size, powerset
from .subgroup import SubgroupDescription, Subgroup, NominalSelector
@total_ordering
class NominalTarget(object):
def __init__(self, target_attribute=None, target_value=None, target_selector=None):
"""
Creates a new target for the boolean model class (classic subgroup discovery).
If target_attribute and target_value are given, the target_selector is computed using attribute and value
"""
if target_attribute is not None and target_value is not None:
if target_selector is not None:
raise BaseException(
"NominalTarget is to be constructed EITHER by a selector OR by attribute/value pair")
target_selector = NominalSelector(target_attribute, target_value)
if target_selector is None:
raise BaseException("No target selector given")
self.target_selector = target_selector
def __repr__(self):
return "T: " + str(self.target_selector)
def __eq__(self, other):
return self.__dict__ == other.__dict__
def __lt__(self, other):
return str(self) < str(other)
def covers(self, instance):
return self.target_selector.covers(instance)
def get_attributes(self):
return [self.target_selector.get_attribute_name()]
@staticmethod
def get_base_statistics(data, subgroup, weighting_attribute=None):
if weighting_attribute is None:
sg_instances = subgroup.subgroup_description.covers(data)
positives = subgroup.target.covers(data)
instances_subgroup = np.sum(sg_instances)
positives_dataset = np.sum(positives)
instances_dataset = len(data)
positives_subgroup = np.sum(np.logical_and(sg_instances, positives))
return instances_dataset, positives_dataset, instances_subgroup, positives_subgroup
else:
weights = data[weighting_attribute]
sg_instances = subgroup.subgroup_description.covers(data)
positives = subgroup.target.covers(data)
instances_dataset = np.sum(weights)
instances_subgroup = np.sum(np.dot(sg_instances, weights))
positives_dataset = np.sum(np.dot(positives, weights))
positives_subgroup = np.sum(np.dot(np.logical_and(sg_instances, positives), weights))
return instances_dataset, positives_dataset, instances_subgroup, positives_subgroup
@staticmethod
def calculate_statistics(subgroup, data, weighting_attribute=None):
(instances_dataset, positives_dataset, instances_subgroup, positives_subgroup) = \
NominalTarget.get_base_statistics(data, subgroup, weighting_attribute)
subgroup.statistics['size_sg'] = instances_subgroup
subgroup.statistics['size_dataset'] = instances_dataset
subgroup.statistics['positives_sg'] = positives_subgroup
subgroup.statistics['positives_dataset'] = positives_dataset
subgroup.statistics['size_complement'] = instances_dataset - instances_subgroup
subgroup.statistics['relative_size_sg'] = instances_subgroup / instances_dataset
subgroup.statistics['relative_size_complement'] = (instances_dataset - instances_subgroup) / instances_dataset
subgroup.statistics['coverage_sg'] = positives_subgroup / positives_dataset
subgroup.statistics['coverage_complement'] = (positives_dataset - positives_subgroup) / positives_dataset
subgroup.statistics['target_share_sg'] = positives_subgroup / instances_subgroup
subgroup.statistics['target_share_complement'] = (positives_dataset - positives_subgroup) / (
instances_dataset - instances_subgroup)
subgroup.statistics['target_share_dataset'] = positives_dataset / instances_dataset
subgroup.statistics['lift'] = (positives_subgroup / instances_subgroup) / (
positives_dataset / instances_dataset)
if weighting_attribute is not None:
(instances_dataset, positives_dataset, instances_subgroup, positives_subgroup) = \
NominalTarget.get_base_statistics(subgroup, data, weighting_attribute)
subgroup.statistics['size_sg_weighted'] = instances_subgroup
subgroup.statistics['size_dataset_weighted'] = instances_dataset
subgroup.statistics['positives_sg_weighted'] = positives_subgroup
subgroup.statistics['positives_dataset_weighted'] = positives_dataset
subgroup.statistics['size_complement_weighted'] = instances_dataset - instances_subgroup
subgroup.statistics['relative_size_sg_weighted'] = instances_subgroup / instances_dataset
subgroup.statistics['relative_size_complement_weighted'] = \
(instances_dataset - instances_subgroup) / instances_dataset
subgroup.statistics['coverage_sg_weighted'] = positives_subgroup / positives_dataset
subgroup.statistics['coverage_complement_weighted'] = (
positives_dataset - positives_subgroup) / positives_dataset
subgroup.statistics['target_share_sg_weighted'] = positives_subgroup / instances_subgroup
subgroup.statistics['target_share_complement_weighted'] = (positives_dataset - positives_subgroup) / (
instances_dataset - instances_subgroup)
subgroup.statistics['target_share_dataset_weighted'] = positives_dataset / instances_dataset
subgroup.statistics['lift_weighted'] = (positives_subgroup / instances_subgroup) / (
positives_dataset / instances_dataset)
class ChiSquaredQF(AbstractInterestingnessMeasure):
@staticmethod
def chi_squared_qf(instances_dataset, positives_dataset, instances_subgroup, positives_subgroup, min_instances=5,
bidirect=True, direction_positive=True):
if (instances_subgroup < min_instances) or ((instances_dataset - instances_subgroup) < min_instances):
return float("-inf")
p_subgroup = positives_subgroup / instances_subgroup
p_dataset = positives_dataset / instances_dataset
positives_complement = positives_dataset - positives_subgroup
# instancesComplement = instancesDataset - instancesSubgroup
negatives_subgroup = instances_subgroup - positives_subgroup
negatives_dataset = instances_dataset - positives_dataset
negatives_complement = negatives_dataset - negatives_subgroup
# observed = [positivesSubgroup, positives_complement,negatives_subgroup, negatives_complement]
#
# if round(positivesSubgroup) < 0 or
# round(positives_complement) < 0 or
# round(negatives_subgroup) <0 or
# round (negatives_complement) < 0:
# print ("XXXXX")
val = scipy.stats.chi2_contingency([[round(positives_subgroup), round(positives_complement)],
[round(negatives_subgroup), round(negatives_complement)]],
correction=False)[0]
if bidirect:
return val
elif direction_positive and p_subgroup > p_dataset:
return val
elif not direction_positive and p_subgroup < p_dataset:
return val
return -val
@staticmethod
def chi_squared_qf_weighted(subgroup, data, weighting_attribute, effective_sample_size=0, min_instances=5, ):
(instancesDataset, positivesDataset, instancesSubgroup, positivesSubgroup) = subgroup.get_base_statistics(data,
weighting_attribute)
if (instancesSubgroup < min_instances) or ((instancesDataset - instancesSubgroup) < 5):
return float("inf")
if effective_sample_size == 0:
effective_sample_size = effective_sample_size(data[weighting_attribute])
# p_subgroup = positivesSubgroup / instancesSubgroup
# p_dataset = positivesDataset / instancesDataset
negatives_subgroup = instancesSubgroup - positivesSubgroup
negatives_dataset = instancesDataset - positivesDataset
positives_complement = positivesDataset - positivesSubgroup
negatives_complement = negatives_dataset - negatives_subgroup
val = scipy.stats.chi2_contingency([[positivesSubgroup, positives_complement],
[negatives_subgroup, negatives_complement]], correction=True)[0]
return scipy.stats.chi2.sf(val * effective_sample_size / instancesDataset, 1)
def __init__(self, direction='bidirect', min_instances=5):
if direction == 'bidirect':
self.bidirect = True
self.direction_positive = True
if direction == 'positive':
self.bidirect = False
self.direction_positive = True
if direction == 'negative':
self.bidirect = False
self.direction_positive = False
self.min_instances = min_instances
def evaluate_from_dataset(self, data, subgroup, weighting_attribute=None):
if not self.is_applicable(subgroup):
raise BaseException("Quality measure cannot be used for this target class")
if weighting_attribute is None:
result = self.evaluate_from_statistics(*subgroup.get_base_statistics(data))
else:
(instancesDataset, positivesDataset, instancesSubgroup, positivesSubgroup) = subgroup.get_base_statistics(
data, weighting_attribute)
weights = data[weighting_attribute]
base = self.evaluate_from_statistics(instancesDataset, positivesDataset, instancesSubgroup,
positivesSubgroup)
result = base * effective_sample_size(weights) / instancesDataset
return result
def evaluate_from_statistics(self, instances_dataset, positives_dataset, instances_subgroup, positives_subgroup):
return ChiSquaredQF.chi_squared_qf(instances_dataset, positives_dataset, instances_subgroup, positives_subgroup,
self.min_instances, self.bidirect, self.direction_positive)
def supports_weights(self):
return True
def is_applicable(self, subgroup):
return isinstance(subgroup.target, NominalTarget)
class StandardQF(AbstractInterestingnessMeasure, BoundedInterestingnessMeasure):
@staticmethod
def standard_qf(a, instances_dataset, positives_dataset, instances_subgroup, positives_subgroup):
|
def __init__(self, a):
self.a = a
def evaluate_from_dataset(self, data, subgroup, weighting_attribute=None):
if not self.is_applicable(subgroup):
raise BaseException("Quality measure cannot be used for this target class")
return self.evaluate_from_statistics(*subgroup.get_base_statistics(data, weighting_attribute))
def optimistic_estimate_from_dataset(self, data, subgroup, weighting_attribute=None):
if not self.is_applicable(subgroup):
raise BaseException("Quality measure cannot be used for this target class")
return self.optimistic_estimate_from_statistics(*subgroup.get_base_statistics(data, weighting_attribute))
def evaluate_from_statistics(self, instances_dataset, positives_dataset, instances_subgroup, positives_subgroup):
return StandardQF.standard_qf(self.a, instances_dataset, positives_dataset, instances_subgroup,
positives_subgroup)
def optimistic_estimate_from_statistics(self, instances_dataset, positives_dataset, instances_subgroup,
positives_subgroup):
return StandardQF.standard_qf(self.a, instances_dataset, positives_dataset, positives_subgroup,
positives_subgroup)
def supports_weights(self):
return True
def is_applicable(self, subgroup):
return isinstance(subgroup.target, NominalTarget)
class WRAccQF(StandardQF):
def __init__(self, a):
super().__init__(a)
self.a = 1.0
class LiftQF(StandardQF):
def __init__(self, a):
super().__init__(a)
self.a = 0.0
class SimpleBinomial(StandardQF):
def __init__(self, a):
super().__init__(a)
self.a = 0.5
#####
# GeneralizationAware Interestingness Measures
#####
class GAStandardQF(AbstractInterestingnessMeasure):
def __init__(self, a):
self.a = a
def evaluate_from_dataset(self, data, subgroup, weighting_attribute=None):
(instances_dataset, _, instances_subgroup, positives_subgroup) = subgroup.get_base_statistics(data,
weighting_attribute)
if (instances_subgroup == 0) or (instances_dataset == instances_subgroup):
return 0
p_subgroup = positives_subgroup / instances_subgroup
max_target_share = get_max_generalization_target_share(data, subgroup, weighting_attribute)
relative_size = (instances_subgroup / instances_dataset)
return relative_size ** self.a * (p_subgroup - max_target_share)
def supports_weights(self):
return True
def is_applicable(self, subgroup):
return isinstance(subgroup.target, NominalTarget)
def get_max_generalization_target_share(data, subgroup, weighting_attribute=None):
selectors = subgroup.subgroup_description.selectors
generalizations = powerset(selectors)
max_target_share = 0
for sels in generalizations:
sgd = SubgroupDescription(list(sels))
sg = Subgroup(subgroup.target, sgd)
(_, _, instances_subgroup, positives_subgroup) = sg.get_base_statistics(data, weighting_attribute)
target_share = positives_subgroup / instances_subgroup
max_target_share = max(max_target_share, target_share)
return max_target_share
| if instances_subgroup == 0:
return 0
p_subgroup = positives_subgroup / instances_subgroup
p_dataset = positives_dataset / instances_dataset
return (instances_subgroup / instances_dataset) ** a * (p_subgroup - p_dataset) |
combined.py | #!/usr/bin/python3
from __future__ import print_function
import logging
import re
from ssg.constants import OSCAP_PROFILE
from ssg_test_suite import common
from ssg_test_suite import rule
from ssg_test_suite import xml_operations
from ssg_test_suite import test_env
class CombinedChecker(rule.RuleChecker):
"""
Combined mode works like pretty much like the Rule mode -
for every rule selected in a profile:
- Alter the system.
- Run the scan, check that the result meets expectations.
If the test scenario passed as requested, return True,
if it failed or passed unexpectedly, return False.
The following sequence applies if the initial scan
has failed as expected:
- If there are no remediations, return True.
- Run remediation, return False if it failed.
- Return result of the final scan of remediated system.
If a rule doesn't have any test scenario, it is skipped.
Skipped rules are reported at the end.
"""
def __init__(self, test_env):
super(CombinedChecker, self).__init__(test_env)
self.rules_not_tested_yet = set()
self.results = list()
self._current_result = None
self.run_aborted = False
def _rule_matches_rule_spec(self, rule_short_id):
return (rule_short_id in self.rule_spec)
def _modify_parameters(self, script, params):
# If there is no profiles metadata in a script we will use
# the ALL profile - this will prevent failures which might
# be caused by the tested profile selecting different values
# in tested variables compared to defaults. The ALL profile
# is always selecting default values.
# If there is profiles metadata we check the metadata and set
# it to self.profile (the tested profile) only if the metadata
# contains self.profile - otherwise scenario is not supposed to
# be tested using the self.profile and we return empty profiles
# metadata.
if not params["profiles"]:
params["profiles"].append(rule.OSCAP_PROFILE_ALL_ID)
logging.debug(
"Added the {0} profile to the list of available profiles for {1}"
.format(rule.OSCAP_PROFILE_ALL_ID, script))
else:
params['profiles'] = [item for item in params['profiles'] if re.search(self.profile, item)]
return params
def _generate_target_rules(self, profile):
# check if target is a complete profile ID, if not prepend profile prefix
if not profile.startswith(OSCAP_PROFILE):
profile = OSCAP_PROFILE + profile
logging.info("Performing combined test using profile: {0}".format(profile))
# Fetch target list from rules selected in profile
target_rules = xml_operations.get_all_rule_ids_in_profile(
self.datastream, self.benchmark_id,
profile, logging)
logging.debug("Profile {0} expanded to following list of "
"rules: {1}".format(profile, target_rules))
return target_rules
def _test_target(self):
|
def test_rule(self, state, rule, scenarios):
super(CombinedChecker, self).test_rule(state, rule, scenarios)
# In combined mode there is no expectations of matching substrings,
# every entry in the target is expected to be unique.
# Let's remove matched targets, so we can track rules not tested
self.rules_not_tested_yet.discard(rule.short_id)
def perform_combined_check(options):
checker = CombinedChecker(options.test_env)
checker.datastream = options.datastream
checker.benchmark_id = options.benchmark_id
checker.remediate_using = options.remediate_using
checker.dont_clean = options.dont_clean
checker.no_reports = options.no_reports
# No debug option is provided for combined mode
checker.manual_debug = False
checker.benchmark_cpes = options.benchmark_cpes
checker.scenarios_regex = options.scenarios_regex
checker.slice_current = options.slice_current
checker.slice_total = options.slice_total
for profile in options.target:
# Let's keep track of originally targeted profile
checker.profile = profile
target_rules = checker._generate_target_rules(profile)
checker.rule_spec = target_rules
checker.template_spec = None
checker.test_target()
if checker.run_aborted:
return
| self.rules_not_tested_yet = set(self.rule_spec)
try:
super(CombinedChecker, self)._test_target()
except KeyboardInterrupt as exec_interrupt:
self.run_aborted = True
raise exec_interrupt
if len(self.rules_not_tested_yet) != 0:
not_tested = sorted(list(self.rules_not_tested_yet))
logging.info("The following rule(s) were not tested:")
for rule in not_tested:
logging.info("{0}".format(rule)) |
view.js | "use strict";
/**
* Validates information entered by user
* @param {int} id The id of the material.
* @param {string} description The description of the description
* @param {string} siaCode The code of the material in SIA
* @param {string} cutRiteCode The code of the material in CutRite
* @param {string} thickness The thickness of the material
* @param {string} woodType The type of wood the material is made of
* @param {boolean} grain True if the material has a grain
* @param {boolean} isMDF True if the wood type is mdf
*
* @return {bool} If information is valid, returns true. Otherwise, returns false.
*/
function validateInformation(id, description, siaCode, cutRiteCode, thickness, woodType, grain, isMDF){
let err = "";
if(!isPositiveInteger(id, true, true) && id !== "" && id!== null)
{
err += "L'identificateur unique doit être un entier positif. ";
}
if(!description.trim())
{
err += "Description manquante. ";
}
if(!siaCode.trim())
{
err += "Code SIA manquant. ";
}
if(!cutRiteCode.trim())
{
err += "Code CutRite manquant. ";
}
if(!thickness.trim())
{
err += "Épaisseur manquante. ";
}
if(!woodType.trim())
{
err += "Essence manquante. ";
}
if(grain !== "V" && grain !== "H" && grain !== "N")
{
err += "Présence de grain non validée. ";
}
if(isMDF !== true && isMDF !== false)
{
err += "Paramètre est_mdf sans valeur. ";
}
if(err == "")
{
return true;
}
else
{
showError("Les informations du matériel ne sont pas valides", err);
return false;
}
}
/**
* Prompts user to confirm deletion of the current material.
*/
async function delete | let args = [];
if(await askConfirmation("Suppression de matériel", "Voulez-vous vraiment supprimer ce matériel?"))
{
document.getElementById("loadingModal").style.display = "block";
try{
await deleteMaterial(document.getElementById("id").value);
goToIndex();
}
catch(error){
showError("La suppression du matériel a échouée", error);
}
finally{
document.getElementById("loadingModal").style.display = "none";
}
}
}
/**
* Prompts user to confirm the saving of the current material.
*/
async function saveConfirm()
{
let hasGrain = null;
for (let item of document.getElementsByName("has_grain"))
{
if(item.checked)
{
hasGrain = item.value;
break;
}
}
let isMDF = null;
for (let item of document.getElementsByName("est_mdf"))
{
if(item.checked)
{
isMDF = item.value === "Y";
}
}
let args = [
document.getElementById("id").value,
document.getElementById("description").value,
document.getElementById("codeSIA").value,
document.getElementById("codeCutRite").value,
document.getElementById("epaisseur").value,
document.getElementById("essence").value,
hasGrain,
isMDF
];
if(validateInformation.apply(null, args))
{
if(await askConfirmation("Sauvegarde de matériel", "Voulez-vous vraiment sauvegarder ce matériel?"))
{
document.getElementById("loadingModal").style.display = "block";
try{
let id = await saveMaterial.apply(null, args);
openMaterial(id);
}
catch(error){
showError("La sauvegarde du matériel a échouée", error);
}
finally{
document.getElementById("loadingModal").style.display = "none";
}
}
}
}
/**
* Deletes a material.
* @param {int} id The id of the material to delete.
*
* @return {Promise}
*/
function deleteMaterial(id)
{
return new Promise(function(resolve, reject){
ajax.send({
"type": "POST",
"contentType": "application/json;charset=utf-8",
"url": ROOT_URL + "/parametres/material/actions/delete.php",
"data": {"id": id},
"dataType": "json",
"async": true,
"cache": false,
"onSuccess": function(response){
if(response.status === "success")
{
resolve(response.success.data);
}
else
{
reject(response.failure.message);
}
},
"onFailure": function(error){
reject(error);
}
});
});
}
/**
* Saves a material.
* @param {int} id The id of the material.
* @param {string} description The description of the description
* @param {string} siaCode The code of the material in SIA
* @param {string} cutRiteCode The code of the material in CutRite
* @param {string} thickness The thickness of the material
* @param {string} woodType The type of wood the material is made of
* @param {boolean} grain True if the material has a grain
* @param {boolean} mdf True if the wood type is mdf
*
* @return {Promise}
*/
function saveMaterial(id, description, siaCode, cutRiteCode, thickness, woodType, grain, isMDF)
{
return new Promise(function(resolve, reject){
ajax.send({
"type": "POST",
"contentType": "application/json;charset=utf-8",
"url": ROOT_URL + "/parametres/material/actions/save.php",
"data": {
"id": ((id === "") ? null : id),
"description": description,
"siaCode": siaCode,
"cutRiteCode": cutRiteCode,
"thickness": thickness,
"woodType": woodType,
"grain": grain,
"isMDF": isMDF
},
"dataType": "json",
"async": true,
"cache": false,
"onSuccess": function(response){
if(response.status === "success")
{
resolve(response.success.data);
}
else
{
reject(response.failure.message);
}
},
"onFailure": function(error){
reject(error);
}
});
});
}
/**
* Returns to index page.
*/
function goToIndex()
{
window.location.assign("index.php");
} | Confirm()
{
|
0001_initial.py | # Generated by Django 2.2.4 on 2021-01-02 08:08
from django.db import migrations, models
class Migration(migrations.Migration):
| initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Product',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('product_name', models.CharField(max_length=50)),
('desc', models.CharField(max_length=300)),
('pub_date', models.DateField()),
],
),
] |
|
deeplabv3_plus_xception.py | # -*- coding: utf-8 -*-
"""
Created on Wed Apr 21 15:16:18 2021
@author: Administrator
"""
from base import BaseModel
import torch
import math
import torch.nn as nn
import torch.nn.functional as F
from torchvision import models
import torch.utils.model_zoo as model_zoo
from utils.helpers import initialize_weights,set_trainable
from itertools import chain
'''
'xception_65.pth'URL:https://github.com/zhangtianlun12/deeplabv3-/releases/download/v0.1/xception_65.pth
'''
'''
-> ResNet BackBone
'''
class ResNet(nn.Module):
def __init__(self, in_channels=3, output_stride=16, backbone='resnet101', pretrained=True):
super(ResNet, self).__init__()
model = getattr(models, backbone)(pretrained)
if not pretrained or in_channels != 3:
self.layer0 = nn.Sequential(
nn.Conv2d(in_channels, 64, 7, stride=2, padding=3, bias=False),
nn.BatchNorm2d(64),
nn.ReLU(inplace=True),
nn.MaxPool2d(kernel_size=3, stride=2, padding=1)
)
initialize_weights(self.layer0)
else:
self.layer0 = nn.Sequential(*list(model.children())[:4])
self.layer1 = model.layer1
self.layer2 = model.layer2
self.layer3 = model.layer3
self.layer4 = model.layer4
if output_stride == 16: s3, s4, d3, d4 = (2, 1, 1, 2)
elif output_stride == 8: s3, s4, d3, d4 = (1, 1, 2, 4)
if output_stride == 8:
for n, m in self.layer3.named_modules():
if 'conv1' in n and (backbone == 'resnet34' or backbone == 'resnet18'):
m.dilation, m.padding, m.stride = (d3,d3), (d3,d3), (s3,s3)
elif 'conv2' in n:
m.dilation, m.padding, m.stride = (d3,d3), (d3,d3), (s3,s3)
elif 'downsample.0' in n:
m.stride = (s3, s3)
for n, m in self.layer4.named_modules():
if 'conv1' in n and (backbone == 'resnet34' or backbone == 'resnet18'):
m.dilation, m.padding, m.stride = (d4,d4), (d4,d4), (s4,s4)
elif 'conv2' in n:
m.dilation, m.padding, m.stride = (d4,d4), (d4,d4), (s4,s4)
elif 'downsample.0' in n:
m.stride = (s4, s4)
def forward(self, x):
x = self.layer0(x)
x = self.layer1(x)
low_level_features = x
x = self.layer2(x)
x = self.layer3(x)
x = self.layer4(x)
return x, low_level_features
"""
Created on Fri Sep 13 19:04:23 2019
@author: shirhe-lyh
Implementation of Xception model.
Xception: Deep Learning with Depthwise Separable Convolutions, F. Chollect,
arxiv:1610.02357 (https://arxiv.org/abs/1610.02357).
Official tensorflow implementation:
https://github.com/tensorflow/models/blob/master/research/deeplab/core/xception.py
"""
import collections
import os
import torch
_DEFAULT_MULTI_GRID = [1, 1, 1]
# The cap for torch.clamp
_CLIP_CAP = 6
_BATCH_NORM_PARAMS = {
'eps': 0.001,
'momentum': 0.9997,
'affine': True,
}
class Block(collections.namedtuple('Block', ['scope', 'unit_fn', 'args'])):
"""A named tuple describing an Xception block.
Its parts are:
scope: The scope of the block.
unit_fn: The Xception unit function which takes as input a tensor and
returns another tensor with the output of the Xception unit.
args: A list of length equal to the number of units in the block. The
list contains one dictionary for each unit in the block to serve
as argument to unit_fn.
"""
def fixed_padding(inputs, kernel_size, rate=1):
"""Pads the input along the spatial dimensions independently of input size.
Args:
inputs: A tensor of size [batch, height_in, width_in, channels].
kernel_size: The kernel to be used in the conv2d or max_pool2d
operation. Should be a positive integer.
rate: An integer, rate for atrous convolution.
Returns:
padded_inputs: A tensor of size [batch, height_out, width_out,
channels] with the input, either intact (if kernel_size == 1) or
padded (if kernel_size > 1).
"""
kernel_size_effective = kernel_size + (kernel_size - 1) * (rate - 1)
pad_total = kernel_size_effective - 1
pad_beg = pad_total // 2
pad_end = pad_total - pad_beg
padded_inputs = torch.nn.functional.pad(
inputs, pad=(pad_beg, pad_end, pad_beg, pad_end))
return padded_inputs
class Conv2dSame(torch.nn.Module):
"""Strided 2-D convolution with 'SAME' padding."""
def __init__(self, in_channels, out_channels, kernel_size, stride, rate=1):
"""Constructor.
If stride > 1 and use_explicit_padding is True, then we do explicit
zero-padding, followed by conv2d with 'VALID' padding.
Args:
in_channels: An integer, the number of input filters.
out_channels: An integer, the number of output filters.
kernel_size: An integer with the kernel_size of the filters.
stride: An integer, the output stride.
rate: An integer, rate for atrous convolution.
"""
super(Conv2dSame, self).__init__()
self._kernel_size = kernel_size
self._rate = rate
self._without_padding = stride == 1
if self._without_padding:
# Here, we assume that floor(padding) = padding
padding = (kernel_size - 1) * rate // 2
self._conv = torch.nn.Conv2d(in_channels,
out_channels,
kernel_size=kernel_size,
stride=1,
dilation=rate,
padding=padding,
bias=False)
else:
self._conv = torch.nn.Conv2d(in_channels,
out_channels,
kernel_size=kernel_size,
stride=stride,
dilation=rate,
bias=False)
self._batch_norm = torch.nn.BatchNorm2d(out_channels,
**_BATCH_NORM_PARAMS)
self._relu = torch.nn.ReLU(inplace=True)
def forward(self, x):
"""
Args:
x: A 4-D tensor with shape [batch, height_in, width_in, channels].
Returns:
A 4-D tensor of size [batch, height_out, width_out, channels] with
the convolution output.
"""
if not self._without_padding:
x = fixed_padding(x, self._kernel_size, self._rate)
x = self._conv(x)
x = self._batch_norm(x)
x = self._relu(x)
return x
class SeparableConv2dSame(torch.nn.Module):
"""Strided 2-D separable convolution with 'SAME' padding."""
def __init__(self, in_channels, out_channels, kernel_size,
depth_multiplier, stride, rate, use_explicit_padding=True,
activation_fn=None, regularize_depthwise=False, **kwargs):
"""Constructor.
If stride > 1 and use_explicit_padding is True, then we do explicit
zero-padding, followed by conv2d with 'VALID' padding.
Args:
in_channels: An integer, the number of input filters.
out_channels: An integer, the number of output filters.
kernel_size: An integer with the kernel_size of the filters.
depth_multiplier: The number of depthwise convolution output
channels for each input channel. The total number of depthwise
convolution output channels will be equal to `num_filters_in *
depth_multiplier`.
stride: An integer, the output stride.
rate: An integer, rate for atrous convolution.
use_explicit_padding: If True, use explicit padding to make the
model fully compatible with the open source version, otherwise
use the nattive Pytorch 'SAME' padding.
activation_fn: Activation function.
regularize_depthwise: Whether or not apply L2-norm regularization
on the depthwise convolution weights.
**kwargs: Additional keyword arguments to pass to torch.nn.Conv2d.
"""
super(SeparableConv2dSame, self).__init__()
self._kernel_size = kernel_size
self._rate = rate
self._without_padding = stride == 1 or not use_explicit_padding
out_channels_depthwise = in_channels * depth_multiplier
if self._without_padding:
# Separable convolution for padding 'SAME'
# Here, we assume that floor(padding) = padding
padding = (kernel_size - 1) * rate // 2
self._conv_depthwise = torch.nn.Conv2d(in_channels,
out_channels_depthwise,
kernel_size=kernel_size,
stride=stride,
dilation=rate,
groups=in_channels,
padding=padding,
bias=False,
**kwargs)
else:
# Separable convolution for padding 'VALID'
self._conv_depthwise = torch.nn.Conv2d(in_channels,
out_channels_depthwise,
kernel_size=kernel_size,
stride=stride,
dilation=rate,
groups=in_channels,
bias=False,
**kwargs)
self._batch_norm_depthwise = torch.nn.BatchNorm2d(
out_channels_depthwise, **_BATCH_NORM_PARAMS)
self._conv_pointwise = torch.nn.Conv2d(out_channels_depthwise,
out_channels,
kernel_size=1,
stride=1,
bias=False,
**kwargs)
self._batch_norm_pointwise = torch.nn.BatchNorm2d(
out_channels, **_BATCH_NORM_PARAMS)
self._activation_fn = activation_fn
def forward(self, x):
"""
Args:
x: A 4-D tensor with shape [batch, height_in, width_in, channels].
Returns:
A 4-D tensor of size [batch, height_out, width_out, channels] with
the convolution output.
"""
if not self._without_padding:
x = fixed_padding(x, self._kernel_size, self._rate)
x = self._conv_depthwise(x)
x = self._batch_norm_depthwise(x)
if self._activation_fn is not None:
x = self._activation_fn(x)
x = self._conv_pointwise(x)
x = self._batch_norm_pointwise(x)
if self._activation_fn is not None:
x = self._activation_fn(x)
return x
class XceptionModule(torch.nn.Module):
"""An Xception module.
The output of one Xception module is equal to the sum of `residual` and
`shortcut`, where `residual` is the feature computed by three seperable
convolution. The `shortcut` is the feature computed by 1x1 convolution
with or without striding. In some cases, the `shortcut` path could be a
simple identity function or none (i.e, no shortcut).
"""
def __init__(self, in_channels, depth_list, skip_connection_type, stride,
unit_rate_list, rate=1, activation_fn_in_separable_conv=False,
regularize_depthwise=False, use_bounded_activation=False,
use_explicit_padding=True):
"""Constructor.
Args:
in_channels: An integer, the number of input filters.
depth_list: A list of three integers specifying the depth values
of one Xception module.
skip_connection_type: Skip connection type for the residual path.
Only supports 'conv', 'sum', or 'none'.
stride: The block unit's stride. Detemines the amount of
downsampling of the units output compared to its input.
unit_rate_list: A list of three integers, determining the unit
rate for each separable convolution in the Xception module.
rate: An integer, rate for atrous convolution.
activation_fn_in_separable_conv: Includes activation function in
the seperable convolution or not.
regularize_depthwise: Whether or not apply L2-norm regularization
on the depthwise convolution weights.
use_bounded_activation: Whether or not to use bounded activations.
Bounded activations better lend themselves to quantized
inference.
use_explicit_padding: If True, use explicit padding to make the
model fully compatible with the open source version, otherwise
use the nattive Pytorch 'SAME' padding.
Raises:
ValueError: If depth_list and unit_rate_list do not contain three
integers, or if stride != 1 for the third seperable convolution
operation in the residual path, or unsupported skip connection
type.
"""
super(XceptionModule, self).__init__()
if len(depth_list) != 3:
raise ValueError('Expect three elements in `depth_list`.')
if len(unit_rate_list) != 3:
raise ValueError('Expect three elements in `unit_rate_list`.')
if skip_connection_type not in ['conv', 'sum', 'none']:
raise ValueError('Unsupported skip connection type.')
# Activation function
self._input_activation_fn = None
if activation_fn_in_separable_conv:
activation_fn = (torch.nn.ReLU6(inplace=False) if
use_bounded_activation else
torch.nn.ReLU(inplace=False))
else:
if use_bounded_activation:
# When use_bounded_activation is True, we clip the feature
# values and apply relu6 for activation.
activation_fn = lambda x: torch.clamp(x, -_CLIP_CAP, _CLIP_CAP)
self._input_activation_fn = torch.nn.ReLU6(inplace=False)
else:
# Original network design.
activation_fn = None
self._input_activation_fn = torch.nn.ReLU(inplace=False)
self._use_bounded_activation = use_bounded_activation
self._output_activation_fn = None
if use_bounded_activation:
self._output_activation_fn = torch.nn.ReLU6(inplace=True)
# Separable conv block.
layers = []
in_channels_ = in_channels
for i in range(3):
if self._input_activation_fn is not None:
layers += [self._input_activation_fn]
layers += [
SeparableConv2dSame(in_channels_,
depth_list[i],
kernel_size=3,
depth_multiplier=1,
regularize_depthwise=regularize_depthwise,
rate=rate*unit_rate_list[i],
stride=stride if i==2 else 1,
activation_fn=activation_fn,
use_explicit_padding=use_explicit_padding)]
in_channels_ = depth_list[i]
self._separable_conv_block = torch.nn.Sequential(*layers)
# Skip connection
self._skip_connection_type = skip_connection_type
if skip_connection_type == 'conv':
self._conv_skip_connection = torch.nn.Conv2d(in_channels,
depth_list[-1],
kernel_size=1,
stride=stride)
self._batch_norm_shortcut = torch.nn.BatchNorm2d(
depth_list[-1], **_BATCH_NORM_PARAMS)
def forward(self, x):
"""
Args:
x: A 4-D tensor with shape [batch, height, width, channels].
Returns:
The Xception module's output.
"""
residual = self._separable_conv_block(x)
if self._skip_connection_type == 'conv':
shortcut = self._conv_skip_connection(x)
shortcut = self._batch_norm_shortcut(shortcut)
if self._use_bounded_activation:
residual = torch.clamp(residual, -_CLIP_CAP, _CLIP_CAP)
shortcut = torch.clamp(shortcut, -_CLIP_CAP, _CLIP_CAP)
outputs = residual + shortcut
if self._use_bounded_activation:
outputs = self._output_activation_fn(outputs)
elif self._skip_connection_type == 'sum':
if self._use_bounded_activation:
residual = torch.clamp(residual, -_CLIP_CAP, _CLIP_CAP)
x = torch.clamp(x, -_CLIP_CAP, _CLIP_CAP)
outputs = residual + x
if self._use_bounded_activation:
outputs = self._output_activation_fn(outputs)
else:
outputs = residual
return outputs
class StackBlocksDense(torch.nn.Module):
"""Stacks Xception blocks and controls output feature density.
This class allows the user to explicitly control the output stride, which
is the ratio of the input to output spatial resolution. This is useful for
dense prediction tasks such as semantic segmentation or object detection.
Control of the output feature density is implemented by atrous convolution.
"""
def __init__(self, blocks, output_stride=None):
"""Constructor.
Args:
| in the block.
output_stride: If None, then the output will be computed at the
nominal network stride. If output_stride is not None, it
specifies the requested ratio of input to output spatial
resolution, which needs to be equal to the product of unit
strides from the start up to some level of Xception. For
example, if the Xception employs units with strides 1, 2, 1,
3, 4, 1, then valid values for the output_stride are 1, 2, 6,
24 or None (which is equivalent to output_stride=24).
Raises:
ValueError: If the target output_stride is not valid.
"""
super(StackBlocksDense, self).__init__()
# The current_stride variable keeps track of the effective stride of
# the activations. This allows us to invoke atrous convolution whenever
# applying the next residual unit would result in the activations
# having stride larger than the target output_stride.
current_stride = 1
# The atrous convolution rate parameter.
rate = 1
layers = []
for block in blocks:
for i, unit in enumerate(block.args):
if output_stride is not None and current_stride > output_stride:
raise ValueError('The target output_stride cannot be '
'reached.')
# If we have reached the target output_stride, then we need to
# employ atrous convolution with stride=1 and multiply the
# atrous rate by the current unit's stride for use subsequent
# layers.
if output_stride is not None and current_stride == output_stride:
layers += [block.unit_fn(rate=rate, **dict(unit, stride=1))]
rate *= unit.get('stride', 1)
else:
layers += [block.unit_fn(rate=1, **unit)]
current_stride *= unit.get('stride', 1)
if output_stride is not None and current_stride != output_stride:
raise ValueError('The target ouput_stride cannot be reached.')
self._blocks = torch.nn.Sequential(*layers)
def forward(self, x):
"""
Args:
x: A tensor of shape [batch, height, widht, channels].
Returns:
Output tensor with stride equal to the specified output_stride.
"""
x = self._blocks(x)
return x
class Xception(torch.nn.Module):
"""Generator for Xception models.
This class generates a family of Xception models. See the xception_*()
methods for specific model instantiations, obtained by selecting different
block instantiations that produce Xception of various depths.
"""
def __init__(self, blocks, num_classes=None, global_pool=True,
keep_prob=0.5, output_stride=None, scope=None):
"""Constructor.
Args:
blocks: A list of length equal to the number of Xception blocks.
Each element is an Xception Block object describing the units
in the block.
num_classes: Number of predicted classes for classification tasks.
If 0 or None, we return the features before the logit layer.
global_pool: If True, we perform global average pooling before
computing logits. Set to True for image classification, False
for dense prediction.
keep_prob: Keep probability used in the pre-logits dropout layer.
output_stride: If None, the the output will be computed at the
nominal network stride. If output_stride is not None, it
specifies the requested ratio of input to output spatial
resolution.
scope: Optional variable_scope.
Raises:
ValueError: If the target output_stride is not valid.
"""
super(Xception, self).__init__()
self._scope = scope
layers = []
if output_stride is not None:
if output_stride % 2 != 0:
raise ValueError('The output_stride must be a multiple of 2.')
output_stride /= 2
# Root block function operated on inputs
layers += [Conv2dSame(3, 32, 3, stride=2),
Conv2dSame(32, 64, 3, stride=1)]
# Extract features for entry_flow, middle_flow, and exit_flow
layers += [StackBlocksDense(blocks, output_stride)]
if global_pool:
# Global average pooling
layers += [torch.nn.AdaptiveAvgPool2d(output_size=(1, 1))]
if num_classes:
layers += [torch.nn.Dropout2d(p=keep_prob, inplace=True),
torch.nn.Conv2d(blocks[-1].args[-1]['depth_list'][-1],
num_classes, 1)]
self._layers = torch.nn.Sequential(*layers)
def forward(self, x):
"""
Args:
x: A tensor of shape [batch, height, widht, channels].
Returns:
Output tensor with stride equal to the specified output_stride.
"""
output = self._layers(x)
x1 = self._layers[0](x)
x2 = self._layers[1](x1)
low_level_features = self._layers[2]._blocks[0](x2)
#low_level_features = self._layers[2]._blocks[0](x1)
#print('x1',x1.size())
#print('x2',x2.size())
#print('low_level_features',low_level_features.size())
'''
if output_stride = None:
output.size() torch.Size([2, 2048, 7, 7])
low_level_features.size() torch.Size([2, 128, 56, 56])
elif output_stride = 16:
output.size() torch.Size([2, 2048, 14, 14])
low_level_features.size() torch.Size([2, 128, 56, 56])
'''
return output,low_level_features
@property
def scope(self):
return self._scope
def xception_block(scope,
in_channels,
depth_list,
skip_connection_type,
activation_fn_in_separable_conv,
regularize_depthwise,
num_units,
stride,
unit_rate_list=None):
"""Helper function for creating a Xception block.
Args:
scope: The scope of the block.
in_channels: The number of input filters.
depth_list: The depth of the bottleneck layer for each unit.
skip_connection_type: Skip connection type for the residual path. Only
supports 'conv', 'sum', or 'none'.
activation_fn_in_separable_conv: Includes activation function in the
separable convolution or not.
regularize_depthwise: Whether or not apply L2-norm regularization on
the depthwise convolution weights.
num_units: The number of units in the block.
stride: The stride of the block, implemented as a stride in the last
unit. All other units have stride=1.
unit_rate_list: A list of three integers, determining the unit rate in
the corresponding xception block.
Returns:
An xception block.
"""
if unit_rate_list is None:
unit_rate_list = _DEFAULT_MULTI_GRID
return Block(scope, XceptionModule, [{
'in_channels': in_channels,
'depth_list': depth_list,
'skip_connection_type': skip_connection_type,
'activation_fn_in_separable_conv': activation_fn_in_separable_conv,
'regularize_depthwise': regularize_depthwise,
'stride': stride,
'unit_rate_list': unit_rate_list,
}] * num_units)
def Xception41(num_classes=None,
global_pool=True,
keep_prob=0.5,
output_stride=None,
regularize_depthwise=False,
multi_grid=None,
scope='xception_41'):
"""Xception-41 model."""
blocks = [
xception_block('entry_flow/block1',
in_channels=64,
depth_list=[128, 128, 128],
skip_connection_type='conv',
activation_fn_in_separable_conv=False,
regularize_depthwise=regularize_depthwise,
num_units=1,
stride=2),
xception_block('entry_flow/block2',
in_channels=128,
depth_list=[256, 256, 256],
skip_connection_type='conv',
activation_fn_in_separable_conv=False,
regularize_depthwise=regularize_depthwise,
num_units=1,
stride=2),
xception_block('entry_flow/block3',
in_channels=256,
depth_list=[728, 728, 728],
skip_connection_type='conv',
activation_fn_in_separable_conv=False,
regularize_depthwise=regularize_depthwise,
num_units=1,
stride=2),
xception_block('middle_flow/block1',
in_channels=728,
depth_list=[728, 728, 728],
skip_connection_type='sum',
activation_fn_in_separable_conv=False,
regularize_depthwise=regularize_depthwise,
num_units=8,
stride=1),
xception_block('exit_flow/block1',
in_channels=728,
depth_list=[728, 1024, 1024],
skip_connection_type='conv',
activation_fn_in_separable_conv=False,
regularize_depthwise=regularize_depthwise,
num_units=1,
stride=2),
xception_block('exit_flow/block2',
in_channels=1024,
depth_list=[1536, 1536, 2048],
skip_connection_type='none',
activation_fn_in_separable_conv=True,
regularize_depthwise=regularize_depthwise,
num_units=1,
stride=1,
unit_rate_list=multi_grid),
]
return Xception(blocks=blocks, num_classes=num_classes,
global_pool=global_pool, keep_prob=keep_prob,
output_stride=output_stride, scope=scope)
def xception_41(num_classes=None,
global_pool=True,
keep_prob=0.5,
output_stride=None,
regularize_depthwise=False,
multi_grid=None,
scope='xception_41',
pretrained=True,
checkpoint_path='./pretrained/xception_41.pth'):
"""Xception-41 model."""
xception = Xception41(num_classes=num_classes, global_pool=global_pool,
keep_prob=keep_prob, output_stride=output_stride,
scope=scope)
if pretrained:
_load_state_dict(xception, num_classes, checkpoint_path)
return xception
def Xception65(num_classes=None,
global_pool=True,
keep_prob=0.5,
output_stride=None,
regularize_depthwise=False,
multi_grid=None,
scope='xception_65'):
"""Xception-65 model."""
blocks = [
xception_block('entry_flow/block1',
in_channels=64,
depth_list=[128, 128, 128],
skip_connection_type='conv',
activation_fn_in_separable_conv=False,
regularize_depthwise=regularize_depthwise,
num_units=1,
stride=2),
xception_block('entry_flow/block2',
in_channels=128,
depth_list=[256, 256, 256],
skip_connection_type='conv',
activation_fn_in_separable_conv=False,
regularize_depthwise=regularize_depthwise,
num_units=1,
stride=2),
xception_block('entry_flow/block3',
in_channels=256,
depth_list=[728, 728, 728],
skip_connection_type='conv',
activation_fn_in_separable_conv=False,
regularize_depthwise=regularize_depthwise,
num_units=1,
stride=2),
xception_block('middle_flow/block1',
in_channels=728,
depth_list=[728, 728, 728],
skip_connection_type='sum',
activation_fn_in_separable_conv=False,
regularize_depthwise=regularize_depthwise,
num_units=16,
stride=1),
xception_block('exit_flow/block1',
in_channels=728,
depth_list=[728, 1024, 1024],
skip_connection_type='conv',
activation_fn_in_separable_conv=False,
regularize_depthwise=regularize_depthwise,
num_units=1,
stride=2),
xception_block('exit_flow/block2',
in_channels=1024,
depth_list=[1536, 1536, 2048],
skip_connection_type='none',
activation_fn_in_separable_conv=True,
regularize_depthwise=regularize_depthwise,
num_units=1,
stride=1,
unit_rate_list=multi_grid),
]
return Xception(blocks=blocks, num_classes=num_classes,
global_pool=global_pool, keep_prob=keep_prob,
output_stride=output_stride, scope=scope)
def xception_65(num_classes=None,
global_pool=False,
keep_prob=0.5,
output_stride=None,
regularize_depthwise=False,
multi_grid=None,
scope='xception_65',
pretrained=True,
checkpoint_path='./pretrained/xception_65.pth'):
"""Xception-65 model."""
xception = Xception65(num_classes=num_classes, global_pool=global_pool,
keep_prob=keep_prob, output_stride=output_stride,
scope=scope)
if pretrained:
_load_state_dict(xception, num_classes, checkpoint_path='./pretrained/xception_65.pth')
return xception
def Xception71(num_classes=None,
global_pool=True,
keep_prob=0.5,
output_stride=None,
regularize_depthwise=False,
multi_grid=None,
scope='xception_71'):
"""Xception-71 model."""
blocks = [
xception_block('entry_flow/block1',
in_channels=64,
depth_list=[128, 128, 128],
skip_connection_type='conv',
activation_fn_in_separable_conv=False,
regularize_depthwise=regularize_depthwise,
num_units=1,
stride=2),
xception_block('entry_flow/block2',
in_channels=128,
depth_list=[256, 256, 256],
skip_connection_type='conv',
activation_fn_in_separable_conv=False,
regularize_depthwise=regularize_depthwise,
num_units=1,
stride=1),
xception_block('entry_flow/block3',
in_channels=256,
depth_list=[256, 256, 256],
skip_connection_type='conv',
activation_fn_in_separable_conv=False,
regularize_depthwise=regularize_depthwise,
num_units=1,
stride=2),
xception_block('entry_flow/block4',
in_channels=256,
depth_list=[728, 728, 728],
skip_connection_type='conv',
activation_fn_in_separable_conv=False,
regularize_depthwise=regularize_depthwise,
num_units=1,
stride=1),
xception_block('entry_flow/block5',
in_channels=728,
depth_list=[728, 728, 728],
skip_connection_type='conv',
activation_fn_in_separable_conv=False,
regularize_depthwise=regularize_depthwise,
num_units=1,
stride=2),
xception_block('middle_flow/block1',
in_channels=728,
depth_list=[728, 728, 728],
skip_connection_type='sum',
activation_fn_in_separable_conv=False,
regularize_depthwise=regularize_depthwise,
num_units=16,
stride=1),
xception_block('exit_flow/block1',
in_channels=728,
depth_list=[728, 1024, 1024],
skip_connection_type='conv',
activation_fn_in_separable_conv=False,
regularize_depthwise=regularize_depthwise,
num_units=1,
stride=2),
xception_block('exit_flow/block2',
in_channels=1024,
depth_list=[1536, 1536, 2048],
skip_connection_type='none',
activation_fn_in_separable_conv=True,
regularize_depthwise=regularize_depthwise,
num_units=1,
stride=1,
unit_rate_list=multi_grid),
]
return Xception(blocks=blocks, num_classes=num_classes,
global_pool=global_pool, keep_prob=keep_prob,
output_stride=output_stride, scope=scope)
def xception_71(num_classes=None,
global_pool=True,
keep_prob=0.5,
output_stride=None,
regularize_depthwise=False,
multi_grid=None,
scope='xception_71',
pretrained=True,
checkpoint_path='./pretrained/xception_71.pth'):
"""Xception-71 model."""
xception = Xception71(num_classes=num_classes, global_pool=global_pool,
keep_prob=keep_prob, output_stride=output_stride,
scope=scope)
if pretrained:
_load_state_dict(xception, num_classes, checkpoint_path)
return xception
def _load_state_dict(model, num_classes, checkpoint_path):
"""Load pretrained weights."""
if os.path.exists(checkpoint_path):
state_dict = torch.load(checkpoint_path)
if num_classes is None or num_classes != 1001:
state_dict.pop('_layers.5.weight')
state_dict.pop('_layers.5.bias')
model.load_state_dict(state_dict, strict=False)
print('Load pretrained weights successfully.')
else:
raise ValueError('`checkpoint_path` does not exist.')
'''
-> The Atrous Spatial Pyramid Pooling
'''
def assp_branch(in_channels, out_channles, kernel_size, dilation):
padding = 0 if kernel_size == 1 else dilation
return nn.Sequential(
nn.Conv2d(in_channels, out_channles, kernel_size, padding=padding, dilation=dilation, bias=False),
nn.BatchNorm2d(out_channles),
nn.ReLU(inplace=True))
class ASSP(nn.Module):
def __init__(self, in_channels, output_stride):
super(ASSP, self).__init__()
assert output_stride in [8, 16], 'Only output strides of 8 or 16 are suported'
if output_stride == 16: dilations = [1, 6, 12, 18]
elif output_stride == 8: dilations = [1, 12, 24, 36]
self.aspp1 = assp_branch(in_channels, 256, 1, dilation=dilations[0])
self.aspp2 = assp_branch(in_channels, 256, 3, dilation=dilations[1])
self.aspp3 = assp_branch(in_channels, 256, 3, dilation=dilations[2])
self.aspp4 = assp_branch(in_channels, 256, 3, dilation=dilations[3])
self.avg_pool = nn.Sequential(
nn.AdaptiveAvgPool2d((1, 1)),
nn.Conv2d(in_channels, 256, 1, bias=False),
nn.BatchNorm2d(256),
nn.ReLU(inplace=True))
self.conv1 = nn.Conv2d(256*5, 256, 1, bias=False)
self.bn1 = nn.BatchNorm2d(256)
self.relu = nn.ReLU(inplace=True)
self.dropout = nn.Dropout(0.5)
initialize_weights(self)
def forward(self, x):
x1 = self.aspp1(x)
x2 = self.aspp2(x)
x3 = self.aspp3(x)
x4 = self.aspp4(x)
x5 = F.interpolate(self.avg_pool(x), size=(x.size(2), x.size(3)), mode='bilinear', align_corners=True)
x = self.conv1(torch.cat((x1, x2, x3, x4, x5), dim=1))
x = self.bn1(x)
x = self.dropout(self.relu(x))
return x
'''
-> Decoder
'''
class Decoder(nn.Module):
def __init__(self, low_level_channels, num_classes):
super(Decoder, self).__init__()
self.conv1 = nn.Conv2d(low_level_channels, 48, 1, bias=False)
self.bn1 = nn.BatchNorm2d(48)
self.relu = nn.ReLU(inplace=True)
# Table 2, best performance with two 3x3 convs
self.output = nn.Sequential(
nn.Conv2d(48+256, 256, 3, stride=1, padding=1, bias=False),
nn.BatchNorm2d(256),
nn.ReLU(inplace=True),
nn.Conv2d(256, 256, 3, stride=1, padding=1, bias=False),
nn.BatchNorm2d(256),
nn.ReLU(inplace=True),
nn.Dropout(0.1),
nn.Conv2d(256, num_classes, 1, stride=1),
)
initialize_weights(self)
def forward(self, x, low_level_features):
low_level_features = self.conv1(low_level_features)
low_level_features = self.relu(self.bn1(low_level_features))
H, W = low_level_features.size(2), low_level_features.size(3)
x = F.interpolate(x, size=(H, W), mode='bilinear', align_corners=True)
x = self.output(torch.cat((low_level_features, x), dim=1))
return x
'''
-> Deeplab V3 +
'''
class DeepLab(BaseModel):
def __init__(self, num_classes, in_channels=3, backbone='xception', pretrained=True,
output_stride=16, freeze_bn=False,freeze_backbone=False, **_):
super(DeepLab, self).__init__()
assert ('xception' or 'resnet' in backbone)
if 'resnet' in backbone:
self.backbone = ResNet(in_channels=in_channels, output_stride=output_stride, pretrained=pretrained)
low_level_channels = 256
else:
self.backbone = xception_65(output_stride=output_stride, pretrained=pretrained,global_pool=False,checkpoint_path='./pretrained/xception_65.pth')
low_level_channels = 128
self.ASSP = ASSP(in_channels=2048, output_stride=output_stride)
self.decoder = Decoder(low_level_channels, num_classes)
if freeze_bn: self.freeze_bn()
if freeze_backbone:
set_trainable([self.backbone], False)
def forward(self, x):
H, W = x.size(2), x.size(3)
x, low_level_features = self.backbone(x)
x = self.ASSP(x)
x = self.decoder(x, low_level_features)
x = F.interpolate(x, size=(H, W), mode='bilinear', align_corners=True)
return x
# Two functions to yield the parameters of the backbone
# & Decoder / ASSP to use differentiable learning rates
# FIXME: in xception, we use the parameters from xception and not aligned xception
# better to have higher lr for this backbone
def get_backbone_params(self):
return self.backbone.parameters()
def get_decoder_params(self):
return chain(self.ASSP.parameters(), self.decoder.parameters())
def freeze_bn(self):
for module in self.modules():
if isinstance(module, nn.BatchNorm2d): module.eval() | blocks: A list of length equal to the number of Xception blocks.
Each element is an Xception Block object describing the units
|
resource.py | # -*- coding: utf-8 -*-
"""
pygments.lexers.resource
~~~~~~~~~~~~~~~~~~~~~~~~
Lexer for resource definition files.
:copyright: Copyright 2006-2017 by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
import re
from pygments.lexer import RegexLexer, bygroups, words
from pygments.token import Comment, String, Number, Operator, Text, \
Keyword, Name
__all__ = ['ResourceLexer']
class ResourceLexer(RegexLexer):
"""Lexer for `ICU Resource bundles
<http://userguide.icu-project.org/locale/resources>`_.
.. versionadded:: 2.0
"""
name = 'ResourceBundle'
aliases = ['resource', 'resourcebundle']
filenames = ['*.txt']
_types = (':table', ':array', ':string', ':bin', ':import', ':intvector',
':int', ':alias')
flags = re.MULTILINE | re.IGNORECASE
tokens = {
'root': [
(r'//.*?$', Comment),
(r'"', String, 'string'),
(r'-?\d+', Number.Integer),
(r'[,{}]', Operator),
(r'([^\s{:]+)(\s*)(%s?)' % '|'.join(_types),
bygroups(Name, Text, Keyword)),
(r'\s+', Text),
(words(_types), Keyword),
],
'string': [
(r'(\\x[0-9a-f]{2}|\\u[0-9a-f]{4}|\\U00[0-9a-f]{6}|'
r'\\[0-7]{1,3}|\\c.|\\[abtnvfre\'"?\\]|\\\{|[^"{\\])+', String),
(r'\{', String.Escape, 'msgname'),
(r'"', String, '#pop')
],
'msgname': [
(r'([^{},]+)(\s*)', bygroups(Name, String.Escape), ('#pop', 'message'))
],
'message': [
(r'\{', String.Escape, 'msgname'),
(r'\}', String.Escape, '#pop'),
(r'(,)(\s*)([a-z]+)(\s*\})',
bygroups(Operator, String.Escape, Keyword, String.Escape), '#pop'),
(r'(,)(\s*)([a-z]+)(\s*)(,)(\s*)(offset)(\s*)(:)(\s*)(-?\d+)(\s*)',
bygroups(Operator, String.Escape, Keyword, String.Escape, Operator,
String.Escape, Operator.Word, String.Escape, Operator,
String.Escape, Number.Integer, String.Escape), 'choice'),
(r'(,)(\s*)([a-z]+)(\s*)(,)(\s*)',
bygroups(Operator, String.Escape, Keyword, String.Escape, Operator,
String.Escape), 'choice'),
(r'\s+', String.Escape)
],
'choice': [
(r'(=|<|>|<=|>=|!=)(-?\d+)(\s*\{)',
bygroups(Operator, Number.Integer, String.Escape), 'message'),
(r'([a-z]+)(\s*\{)', bygroups(Keyword.Type, String.Escape), 'str'),
(r'\}', String.Escape, ('#pop', '#pop')),
(r'\s+', String.Escape)
],
'str': [
(r'\}', String.Escape, '#pop'),
(r'\{', String.Escape, 'msgname'),
(r'[^{}]+', String)
]
}
def analyse_text(text):
| if text.startswith('root:table'):
return 1.0 |
|
cmd.go | package utils
import (
"fmt"
"os"
"os/exec"
"strings"
"go.uber.org/zap"
)
type CmdExecutor struct {
log *zap.SugaredLogger
}
func NewExecutor(log *zap.SugaredLogger) *CmdExecutor {
return &CmdExecutor{
log: log,
}
}
func (c *CmdExecutor) ExecuteCommandWithOutput(command string, env []string, arg ...string) (string, error) {
commandWithPath, err := exec.LookPath(command)
if err != nil {
return fmt.Sprintf("unable to find command:%s in path", command), err
}
c.log.Infow("running command", "command", commandWithPath, "args", strings.Join(arg, " "))
cmd := exec.Command(commandWithPath, arg...)
cmd.Env = os.Environ()
cmd.Env = append(cmd.Env, env...)
return runCommandWithOutput(cmd, true)
}
func runCommandWithOutput(cmd *exec.Cmd, combinedOutput bool) (string, error) | {
var output []byte
var err error
if combinedOutput {
output, err = cmd.CombinedOutput()
} else {
output, err = cmd.Output()
}
out := strings.TrimSpace(string(output))
return out, err
} |
|
taniumthreatresponse_view.py | # File: taniumthreatresponse_view.py
# Copyright (c) 2020-2021 Splunk Inc.
#
# Licensed under Apache 2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt)def get_events(headers, data):
def get_events(headers, data):
""" Build a list of dictionaries that have the detail and what that detail "contains".
Args:
headers (list): Headers for these type of events (Provides the order and expected output)
data (dict): Event data to lookup
Returns:
list: list of dictionary objects that maps the data to what is contained.
"""
# Map header names to what is contained in each.
contains_map = {
'source_addr': ['ip'],
'destination_ip': ['ip'],
'username': ['user name'],
'process_table_id': ['threatresponse process table id'],
'process_name': ['file path', 'file name'],
'process_id': ['pid'],
'process_command_line': ['file name'],
'file': ['file path'],
'domain': ['domain'],
'ImageLoaded': ['file path', 'file name'],
'Hashes': ['md5']
}
events = []
for event in data:
event_details = []
for head in headers:
data = event.get(head, None)
event_details.append({
'data': data,
'contains': contains_map.get(head, None) if data else None
})
events.append(event_details)
return events
def display_events(provides, all_app_runs, context):
# Use this mapping to control what data gets shown in which order for each event type
headers_map = {
'combined': [
'type',
'id',
'timestamp',
'operation',
'process_name',
'detail'
], # 'timestamp_raw'
'dns': [
'id',
'timestamp',
'operation',
'query',
'response',
'process_name',
'process_table_id',
'process_id',
'domain',
'username'
], # 'timestamp_raw'
'driver': [
'id',
'timestamp',
'ImageLoaded',
'Hashes',
'event_opcode',
'process_table_id',
'Signed',
'Signature',
'sid',
'event_task_id',
'event_record_id'
], # 'event_id','timestamp_raw'
'file': [
'id', | 'process_table_id',
'process_id',
'domain',
'username'
], # 'timestamp_raw'
'network': [
'id',
'timestamp',
'operation',
'source_addr',
'source_port',
'destination_addr',
'destination_port',
'process_name',
'process_table_id',
'process_id',
'domain',
'username'
], # 'timestamp_raw'
'process': [
'create_time',
'end_time',
'exit_code',
'process_name',
'process_table_id',
'process_id',
'process_command_line',
'domain',
'username',
'sid'
], # 'create_time_raw', 'end_time_raw'
'registry': [
'id',
'timestamp',
'operation',
'key_path',
'value_name',
'process_name',
'process_table_id',
'process_id',
'domain',
'username'
], # 'timestamp_raw'
'sid': [
'domain',
'username',
'sid_hash',
'sid'
]
}
context['results'] = results = []
for summary, action_results in all_app_runs:
for result in action_results:
params = result.get_param()
headers = headers_map.get(params['event_type'], [])
results.append({
'headers': headers,
'events': get_events(headers, result.get_data())
})
return 'taniumthreatresponse_display_events.html'
def display_process_tree(provides, all_app_runs, context):
context['results'] = results = []
for summary, action_results in all_app_runs:
for result in action_results:
results.append({
'data': result.get_data(),
'parameter': result.get_param(),
'message': result.get_message()
})
return 'taniumthreatresponse_display_process_tree.html' | 'timestamp',
'operation',
'file',
'process_name', |
handler.py |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT license.
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
import collections
import inspect
from athena.onnx import constants
class athena_op:
_OPSETS = collections.OrderedDict()
_MAPPING = None
def __init__(self, name,onnx_op=None, domain=constants.ONNX_DOMAIN, **kwargs):
if not isinstance(name, list):
name = [name]
self.name = name
if not isinstance(onnx_op,list):
onnx_op=[onnx_op]*len(name)
self.onnx_op=onnx_op
self.domain = domain
self.kwargs = kwargs
def | (self, func):
opset = athena_op._OPSETS.get(self.domain)
if not opset:
opset = []
athena_op._OPSETS[self.domain] = opset
for k, v in inspect.getmembers(func, inspect.ismethod):
if k.startswith("version_"):
version = int(k.replace("version_", ""))
while version >= len(opset):
opset.append({})
opset_dict = opset[version]
for i,name in enumerate(self.name):
opset_dict[name] = (v,self.onnx_op[i], self.kwargs)
return func
@staticmethod
def get_opsets():
return athena_op._OPSETS
@staticmethod
def create_mapping(max_onnx_opset_version):
mapping = {constants.ONNX_DOMAIN: max_onnx_opset_version}
ops_mapping = {}
for domain, opsets in athena_op.get_opsets().items():
for target_opset, op_map in enumerate(opsets):
m = mapping.get(domain)
if m:
if target_opset <= m and op_map:
ops_mapping.update(op_map)
athena_op._MAPPING = ops_mapping
return ops_mapping
@staticmethod
def find_effective_op(name):
"""Find the effective version of an op create_mapping.
This is used if we need to compose ops from other ops where we'd need to find the
op that is doing to be used in the final graph, for example there is a custom op
that overrides a onnx op ...
:param name: The operator name.
"""
map_info = athena_op._MAPPING.get(name)
if map_info is None:
return None
return map_info
| __call__ |
__init__.py | import os
from flask import Flask
def create_app(test_config=None):
| app = Flask(__name__, instance_relative_config=True)
app.config.from_mapping(
SECRET_KEY = "DEVELOPMENT",
DATABASE=os.path.join(app.instance_path, "portal.sqlite3"),
)
if test_config is None:
#load instance config if it exist, when not testing
app.config.from_pyfile("config.py", silent=True)
else:
# load test config if passed in
#app.config.from_mapping(test_config)
app.config.update(test_config)
#ensure instance folder exists
try:
os.makedirs(app.instance_path)
except OSError:
pass
#simple page that say hello you
@app.route('/hello')
def hello():
return "Hello you!"
#return app
#def create_app():
#app = ...
# existing code omitted
#register the db commands
from portal import db
db.init_app(app)
# apply the blueprint to the app
from portal import auth
app.register_blueprint(auth.bp)
from portal import blog
app.register_blueprint(blog.bp)
app.add_url_rule('/', endpoint='index')
return app |
|
api.js | // 引入axios库,vue中用于异步数据请求库,类似于ajax
import axios from 'axios';
let base = '';
// 这里的做法是把所有的api获取都封装成了一个返回promise的方法,后面调用这个方法,就可以返回一个promise
// 还有另一种做法是封装一个通用的做法,在每个调用的地方,通过传入api地址的方式,调用通用方法获取一个promise
export const requestLogin = params => { return axios.post(`${base}/login`, params).then(res => res.data); };
|
export const getUserListPage = params => { return axios.get(`${base}/user/listpage`, { params: params }); };
export const removeUser = params => { return axios.get(`${base}/user/remove`, { params: params }); };
export const batchRemoveUser = params => { return axios.get(`${base}/user/batchremove`, { params: params }); };
export const editUser = params => { return axios.get(`${base}/user/edit`, { params: params }); };
export const addUser = params => { return axios.get(`${base}/user/add`, { params: params }); }; | export const getUserList = params => { return axios.get(`${base}/user/list`, { params: params }); }; |
reference.py | from symbolic import SymbolicReference
from git.util import (
LazyMixin,
Iterable,
)
from gitdb.util import (
isfile,
hex_to_bin
)
__all__ = ["Reference"]
#{ Utilities |
def require_remote_ref_path(func):
"""A decorator raising a TypeError if we are not a valid remote, based on the path"""
def wrapper(self, *args):
if not self.is_remote():
raise ValueError("ref path does not point to a remote reference: %s" % self.path)
return func(self, *args)
# END wrapper
wrapper.__name__ = func.__name__
return wrapper
#}END utilites
class Reference(SymbolicReference, LazyMixin, Iterable):
"""Represents a named reference to any object. Subclasses may apply restrictions though,
i.e. Heads can only point to commits."""
__slots__ = tuple()
_points_to_commits_only = False
_resolve_ref_on_create = True
_common_path_default = "refs"
def __init__(self, repo, path, check_path=True):
"""Initialize this instance
:param repo: Our parent repository
:param path:
Path relative to the .git/ directory pointing to the ref in question, i.e.
refs/heads/master
:param check_path: if False, you can provide any path. Otherwise the path must start with the
default path prefix of this type."""
if check_path and not path.startswith(self._common_path_default + '/'):
raise ValueError("Cannot instantiate %r from path %s" % (self.__class__.__name__, path))
super(Reference, self).__init__(repo, path)
def __str__(self):
return self.name
#{ Interface
def set_object(self, object, logmsg=None):
"""Special version which checks if the head-log needs an update as well"""
oldbinsha = None
if logmsg is not None:
head = self.repo.head
if not head.is_detached and head.ref == self:
oldbinsha = self.commit.binsha
# END handle commit retrieval
# END handle message is set
super(Reference, self).set_object(object, logmsg)
if oldbinsha is not None:
# /* from refs.c in git-source
# * Special hack: If a branch is updated directly and HEAD
# * points to it (may happen on the remote side of a push
# * for example) then logically the HEAD reflog should be
# * updated too.
# * A generic solution implies reverse symref information,
# * but finding all symrefs pointing to the given branch
# * would be rather costly for this rare event (the direct
# * update of a branch) to be worth it. So let's cheat and
# * check with HEAD only which should cover 99% of all usage
# * scenarios (even 100% of the default ones).
# */
self.repo.head.log_append(oldbinsha, logmsg)
# END check if the head
# NOTE: Don't have to overwrite properties as the will only work without a the log
@property
def name(self):
""":return: (shortest) Name of this reference - it may contain path components"""
# first two path tokens are can be removed as they are
# refs/heads or refs/tags or refs/remotes
tokens = self.path.split('/')
if len(tokens) < 3:
return self.path # could be refs/HEAD
return '/'.join(tokens[2:])
@classmethod
def iter_items(cls, repo, common_path=None):
"""Equivalent to SymbolicReference.iter_items, but will return non-detached
references as well."""
return cls._iter_items(repo, common_path)
#}END interface
#{ Remote Interface
@property
@require_remote_ref_path
def remote_name(self):
"""
:return:
Name of the remote we are a reference of, such as 'origin' for a reference
named 'origin/master'"""
tokens = self.path.split('/')
# /refs/remotes/<remote name>/<branch_name>
return tokens[2]
@property
@require_remote_ref_path
def remote_head(self):
""":return: Name of the remote head itself, i.e. master.
:note: The returned name is usually not qualified enough to uniquely identify
a branch"""
tokens = self.path.split('/')
return '/'.join(tokens[3:])
#} END remote interface |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.