blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 2 247 | content_id stringlengths 40 40 | detected_licenses listlengths 0 57 | license_type stringclasses 2 values | repo_name stringlengths 4 111 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringlengths 4 58 | visit_date timestamp[ns]date 2015-07-25 18:16:41 2023-09-06 10:45:08 | revision_date timestamp[ns]date 1970-01-14 14:03:36 2023-09-06 06:22:19 | committer_date timestamp[ns]date 1970-01-14 14:03:36 2023-09-06 06:22:19 | github_id int64 3.89k 689M โ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 25 values | gha_event_created_at timestamp[ns]date 2012-06-07 00:51:45 2023-09-14 21:58:52 โ | gha_created_at timestamp[ns]date 2008-03-27 23:40:48 2023-08-24 19:49:39 โ | gha_language stringclasses 159 values | src_encoding stringclasses 34 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 2 classes | length_bytes int64 7 10.5M | extension stringclasses 111 values | filename stringlengths 1 195 | text stringlengths 7 10.5M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
85b7c7a4777ebbfe1261b14255aced71122c1c69 | 68fc97602415a9f9a07325826066ba7997ab077c | /src/exec/logging_examples/log_test.cpp | c4955d30ad351dc06da9145443ab8fd63f53ba2e | [
"MIT"
] | permissive | LoganBarnes/geometry-visualization-server | 25a6725b7df5c6a78ec0d4f6132bb5dd78287298 | 3ea890d760ada4e5a248e98dded2e27ba6bd5dde | refs/heads/master | 2021-06-10T11:35:57.960308 | 2021-04-17T10:34:52 | 2021-04-17T10:34:52 | 157,933,255 | 1 | 1 | MIT | 2019-07-24T16:51:16 | 2018-11-16T23:40:06 | C++ | UTF-8 | C++ | false | false | 5,775 | cpp | log_test.cpp | // ///////////////////////////////////////////////////////////////////////////////////////
// Geometry Visualization Server
// Copyright (c) 2018 Logan Barnes - All Rights Reserved
//
// 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.
// ///////////////////////////////////////////////////////////////////////////////////////
#include "gvs/log/geometry_logger.hpp"
#include <cmath>
#include <random>
int main(int argc, char* argv[]) {
std::string server_address;
if (argc > 1) {
server_address = argv[1];
}
using namespace std::chrono_literals;
gvs::log::GeometryLogger scene(server_address, 3s);
scene.clear_all_items();
{
auto stream = scene.item_stream("Axes")
<< gvs::positions_3d({0.f, 0.f, 0.f, 1.f, 0.f, 0.f, 0.f, 1.f, 0.f, 0.f, 0.f, 1.f})
<< gvs::vertex_colors_3d({1.f, 1.f, 1.f, 1.f, 0.f, 0.f, 0.f, 1.f, 0.f, 0.f, 0.f, 1.f})
#if 1
<< gvs::coloring(gvs::proto::Coloring::VERTEX_COLORS) << gvs::lines({0, 1, 0, 2, 0, 3})
#else
<< gvs::coloring(gvs::proto::Coloring::GLOBAL_COLOR) << gvs::lines({0, 1, 0, 2, 0, 3})
#endif
<< gvs::replace;
CHECK_WITH_PRINT(stream);
}
std::vector<float> circle;
constexpr int max_verts = 50;
for (int i = 0; i <= max_verts; ++i) {
float angle = float(M_PI) * i * 2.f / max_verts;
circle.emplace_back(std::cos(angle));
circle.emplace_back(std::sin(angle));
circle.emplace_back(0.f);
}
// Snowman
{
auto stream = scene.item_stream("Head")
<< gvs::positions_3d(circle)
<< gvs::transformation({0.75f, 0, 0, 0, 0, 0.75f, 0, 0, 0, 0, 0.75f, 0, 2, 2, 1, 1})
<< gvs::uniform_color({1.f, 0.5f, 1.f}) << gvs::line_strip({}) << gvs::shading(gvs::UniformColorShading{})
<< gvs::replace;
CHECK_WITH_THROW(stream);
}
{
auto body_stream = scene.item_stream("Body")
<< gvs::parent("Head") << gvs::positions_3d(circle)
<< gvs::transformation({1.3f, 0, 0, 0, 0, 1.3f, 0, 0, 0, 0, 1.3f, 0, 0, -2.3f, 0, 1})
<< gvs::uniform_color({1.f, 1.f, 0.5f}) << gvs::line_strip({}) << gvs::replace;
CHECK_WITH_THROW(body_stream);
auto feet_stream = scene.item_stream("Feet")
<< gvs::parent(body_stream.id()) << gvs::positions_3d(circle)
<< gvs::transformation({1.3f, 0, 0, 0, 0, 1.3f, 0, 0, 0, 0, 1.3f, 0, 0, -2.3f, 0, 1})
<< gvs::uniform_color({0.5f, 1.f, 1.f}) << gvs::triangle_fan({}) << gvs::replace;
CHECK_WITH_THROW(feet_stream);
}
gvs::log::GeometryItemStream triangle = scene.item_stream()
<< gvs::positions_3d({-1.f, -1.f, 0.f, 1.f, -1.f, 0.f, 0.f, 1.5f, -1.f})
<< gvs::uniform_color({.5f, 0.25f, 0.05f}) << gvs::triangles({}) << gvs::send;
CHECK_WITH_PRINT(triangle);
gvs::log::GeometryItemStream stream2 = scene.item_stream()
<< gvs::positions_3d({-1.f, -1.f, -2.f, 2.f, -1.f, -2.f, -1.f, 2.f, -2.f, 2.f, 2.f, -2.f})
<< gvs::triangle_strip({}) << gvs::send;
CHECK_WITH_PRINT(stream2);
#if 0
gvs::log::GeometryItemStream blah_stream = scene.item_stream("blah") << gvs::positions_3d({});
blah_stream << gvs::positions_3d({}) << gvs::normals_3d({}) << gvs::tex_coords_3d({}) << gvs::vertex_colors_3d({});
blah_stream << gvs::indices<gvs::proto::GeometryFormat::TRIANGLE_FAN>({}) << gvs::replace;
CHECK_WITH_PRINT(blah_stream);
blah_stream << gvs::points({}) << gvs::append;
CHECK_WITH_PRINT(blah_stream);
blah_stream << gvs::line_strip({}) << gvs::append;
CHECK_WITH_PRINT(blah_stream);
blah_stream << gvs::replace;
CHECK_WITH_PRINT(blah_stream);
#endif
std::vector<float> sphere;
{
float u, theta, coeff;
std::mt19937 gen{std::random_device{}()};
std::uniform_real_distribution<float> u_dist(-1.f, 1.f);
std::uniform_real_distribution<float> theta_dist(0.f, 2.f * M_PIf32);
for (int i = 0; i < 5000; ++i) {
u = u_dist(gen);
theta = theta_dist(gen);
coeff = std::sqrt(1.f - u * u);
sphere.emplace_back(coeff * std::cos(theta));
sphere.emplace_back(coeff * std::sin(theta));
sphere.emplace_back(u);
}
}
CHECK_WITH_PRINT(
scene.item_stream("sphere").send(gvs::positions_3d(sphere),
gvs::normals_3d(sphere),
gvs::transformation({1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -2, 2, 2, 1}),
gvs::shading(gvs::LambertianShading()),
gvs::coloring(gvs::proto::Coloring::NORMALS)));
}
|
27cf8df1f3d0e232e4b241e74ccac57372007900 | 947c92de7e982ad3fc0d72f4f5e8c536753855f0 | /CH_11_01.cpp | 40a091732b519a3e2f31cd4bc652e4b9fd54f162 | [] | no_license | Jpub/MbedProgramming | b8b183fc0d588e6b5964db8d8300bdd7b37e951b | 1850713c472e68c8aef790c8668623c7f36900d8 | refs/heads/master | 2020-05-25T11:53:31.805125 | 2019-08-06T00:36:49 | 2019-08-06T00:36:49 | 187,787,138 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 209 | cpp | CH_11_01.cpp | #include "mbed.h"
DigitalOut myLED(LED1);
int main() {
bool state = true; // LED ์ํ
while(1) {
myLED = state; // LED์ ์ํ ํ์
state = !state; // LED ์ํ ๋ฐ์
wait(1);
}
} |
f166b2e7b2cfecf3ce6b7326ab179b9653f72e70 | 5515f39389d86ef08eb3768432d7699cb656fd0c | /Server/GameServer/TimerDispatcher.cpp | 983f480f9b4ec80475a6387ff689c220144792b6 | [
"MIT"
] | permissive | goodaehoon/tps | f9204c72a1c69d181fa9db7ae5fc026226fcc4a1 | 3ca3b4850175e5a9dbbabf79f5154a6bfc4237ef | refs/heads/master | 2021-05-05T20:47:05.966755 | 2018-01-24T02:30:17 | 2018-01-24T02:30:17 | 115,472,317 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 516 | cpp | TimerDispatcher.cpp | #include "Precompiled.h"
#include "TimerDispatcher.h"
#include "Stream.h"
#include "InterPacket.h"
#include "MySQLConnector.h"
#include "DBManager.h"
#include "SamdaNet.h"
#include "StringUtil.h"
#include "MessageQueue.h"
#include "Application.h"
#include "Log.h"
using namespace InterPacket;
TimerDispatcher::TimerDispatcher()
{
RegisterDispatcher(1, DISPATCHER_TIMER_LOG);
}
TimerDispatcher::~TimerDispatcher()
{
}
int TimerDispatcher::DISPATCHER_TIMER_LOG(void* object)
{
LOG_DEBUG(L"log");
return 0;
}
|
d92dcb5a764c2e1c0e878098c8628fd26ac2cf10 | 8b5258edd7e042532d69e23032ecfc19c0778df6 | /Server_Push/MdfServerConnect.cpp | f8e356754f8d32d4052f7184a4dd032ecf140fdc | [
"BSD-3-Clause"
] | permissive | suzhengquan/MBCAF | 62ee5f0f28389c45b64c0f1bb0c92721720a095d | 53100d7ddc52be34c470bfb9c374b72be58c2549 | refs/heads/master | 2023-02-04T13:23:52.840182 | 2023-01-29T07:14:49 | 2023-01-29T07:14:49 | 169,354,525 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,338 | cpp | MdfServerConnect.cpp | /*
Copyright (c) "2018-2019", Shenzhen Mindeng Technology Co., Ltd(www.niiengine.com),
Mindeng Base Communication Application Framework
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
Redistributions of source code must retain the above copyright notice, this list of
conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice, this list
of conditions and the following disclaimer in the documentation and/or other materials
provided with the distribution.
Neither the name of the "ORGANIZATION" nor the names of its contributors may be used
to endorse or promote products derived from this software without specific prior written
permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "MdfServerConnect.h"
#include "MdfConnectManager.h"
#include "MdfMemStream.h"
#include "MdfMessage.h"
#include "MBCAF.ServerBase.pb.h"
using namespace MBCAF::Proto;
namespace Mdf
{
//-----------------------------------------------------------------------
//-----------------------------------------------------------------------
// ServerConnect
//-----------------------------------------------------------------------
//-----------------------------------------------------------------------
ServerConnect::ServerConnect(ACE_Reactor * tor) :
ServerIO(tor)
{
mNotifyMark = 0;
}
//-----------------------------------------------------------------------
ServerConnect::~ServerConnect()
{
}
//-----------------------------------------------------------------------
ServerIO * ServerConnect::createInstance() const
{
return ServerConnect();
}
//-----------------------------------------------------------------------
void ServerConnect::onConnect()
{
setTimer(true, 0, 3000);
}
//-----------------------------------------------------------------------
void ServerConnect::onTimer(TimeDurMS tick)
{
if (tick > mReceiveMark + M_Client_Timeout)
{
stop();
}
}
//-----------------------------------------------------------------------
void ServerConnect::onMessage(Message * msg)
{
MdfMessage * temp = static_cast<MdfMessage *>(msg);
switch (temp->getCommandID())
{
case MBCAF::Proto::SBID_Heartbeat:
prcHeartBeat(temp);
break;
case MBCAF::Proto::SBID_UserPushQ:
prcPushMessage(temp);
break;
default:
stop();
break;
}
}
//-----------------------------------------------------------------------
void ServerConnect::prcPushMessage(MdfMessage * msg)
{
MBCAF::ServerBase::UserPushQ proto;
if (!msg->toProto(&proto))
{
stop();
return;
}
String strFlash = proto.flash();
String strUserData = proto.data();
APNServer * pClient = M_Only(APNServer);
if(pClient)
{
MBCAF::ServerBase::UserPushA proto2;
for (uint32_t i = 0; i < proto.user_token_list_size(); ++i)
{
MBCAF::Proto::PushResult * push_result = proto2.add_push_result_list();
MBCAF::Proto::UserTokenInfo user_token = proto.user_token_list(i);
if (user_token.user_type() != MBCAF::Proto::CT_IOS)
{
push_result->set_user_token(user_token.token());
push_result->set_result_code(1);
continue;
}
++mNotifyMark;
Mlog("prcPushMessage, token: %s, push count: %d, push_type:%d, notification id: %u.", user_token.token().c_str(), user_token.push_count(),
user_token.push_type(), mNotifyMark);
AppleGateWayQ remsg0;
remsg0.setAlterBody(strFlash);
remsg0.setCustomData(strUserData);
remsg0.setDeviceToken(user_token.token());
time_t time_now = 0;
time(&time_now);
remsg0.setExpirationDate(time_now + 3600);
if (user_token.push_type() == PUSH_TYPE_NORMAL)
{
remsg0.setSound(TRUE);
}
else
{
remsg0.setSound(FALSE);
}
remsg0.setBadge(user_token.push_count());
remsg0.setNotificationID(mNotifyMark);
if (remsg0.proto())
{
pClient->sendGateway(remsg0.getBuffer(), remsg0.getSize());
push_result->set_result_code(0);
}
else
{
push_result->set_result_code(1);
Mlog("GateWayMessage failed.");
}
push_result->set_user_token(user_token.token());
}
MdfMessage remsg;
remsg.setCommandID(SBMSG(UserPushA));
if (remsg.setProto(&proto2))
{
send(remsg);
}
else
{
Mlog("UserPushA failed.");
}
}
}
//-----------------------------------------------------------------------
void ServerConnect::prcHeartBeat(MdfMessage * msg)
{
send(msg);
}
//-----------------------------------------------------------------------
} |
24de9024d29f367f88d4d1889ee9b09c505741bb | b3eca83e9cfedbb2ffa33bd020bb26bc76b2788c | /Source.cpp | d88b762c5111bd8e6fe301ca569e689e1167fe2a | [] | no_license | 6413/vnc | 5079a6eac28110dd1fbc9e3235f4fde04dbeb0a4 | 0a5b43517c59fc4a52da21ce83f617c0efe14ee2 | refs/heads/master | 2023-05-07T17:49:20.185229 | 2021-05-25T11:32:36 | 2021-05-25T11:32:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 34,982 | cpp | Source.cpp | ๏ปฟ#include <WITCH/WITCH.h>
#include <WITCH/PR/PR.h>
#include <WITCH/T/T.h>
#include <WITCH/A/A.h>
#include <WITCH/VEC/VEC.h>
#include <WITCH/RAND/RAND.h>
#include <WITCH/VAS/VAS.h>
#include <WITCH/STR/STR.h>
#include <WITCH/IO/SCR/SCR.h>
#include <WITCH/IO/print.h>
#include <WITCH/EV/EV.h>
#include <WITCH/NET/TCP/TCP.h>
#include <WITCH/NET/TCP/TLS/TLS.h>
#include <WITCH/ETC/AV/AV.h>
#include <fan/graphics/graphics.hpp>
constexpr f_t font_size = 16;
struct base_t{
EV_t listener;
struct{
struct{
VAS_t server;
NET_TCP_t *tcpview;
NET_TCP_eid_t tcpview_secret_eid;
NET_TCP_t *tcpgrabto;
NET_TCP_eid_t tcpgrabto_secret_eid;
NET_TCP_eid_t tcpgrabto_eid;
}tcp;
}net;
struct gui{
static constexpr fan::vec2 box_size{ 200, font_size };
static constexpr fan::vec2 border_size{ 20, 10 };
static constexpr fan::vec2 nowhere{ -10000, -10000 };
gui() : window(fan::vec2(480, 320)), camera(&window), boxes(&camera, fan_2d::gui::e_text_position::middle), tr(&camera), stb(&camera, fan_2d::gui::e_text_position::left) { }
fan::window window;
fan::camera camera;
fan_2d::gui::selectable_sized_text_box boxes;
fan_2d::gui::text_renderer tr;
fan_2d::gui::sized_text_box stb;
f64_t line(uint32_t n){
return font_size * n;
}
fan::vec2 button(uint32_t n){
n++;
fan::vec2ui bottom_center = window.get_size();
bottom_center.x /= 2;
fan::vec2ui r = bottom_center - fan::cast<uint_t>(fan::vec2(box_size.x / 2, (box_size.y * n) + n * (border_size.y + 1)));
return r;
}
void formBegin(){
stb.erase(0, stb.size());
tr.erase(0, tr.size());
}
void formPush(const wchar_t *str0, const fan::color color0, const wchar_t *str1, const fan::color color1){
tr.push_back(str0, 0, color0, font_size);
stb.push_back(str1, font_size, 0, fan::vec2(300, line(1)), 0, color1);
}
void formEnd(fan::vec2 pos){
f64_t longest = tr.get_longest_text() + 20;
for (int j = 0; j < tr.size(); j++) {
tr.set_position(j, stb.get_text_position(j, pos));
stb.set_position(j, fan::vec2(pos.x + longest, pos.y));
stb.set_input_callback(j);
pos.y += stb.get_size(j).y + 1;
}
}
EV_ev_t_t evt;
}gui;
};
void init_tls(NET_TCP_t *tcp){
NET_TCP_TLS_add(tcp, &TLS_generated_ctx);
}
uint32_t server_secret_connstate_cb(NET_TCP_peer_t *peer, uint64_t *secret, uint8_t *pd, uint8_t flag){
if(!(flag & NET_TCP_connstate_succ_e))
return 0;
*pd = 0;
return NET_TCP_EXT_dontgo_e;
}
uint32_t server_secret_read_cb(NET_TCP_peer_t *peer, uint64_t *secret, uint8_t *pd, uint8_t **data, uint_t *size){
if(!*pd)do{
if(*size < sizeof(*secret)){
IO_print(FD_OUT, "[!] %08x%04x sent wrong sized secret\n", peer->sdstaddr.ip, peer->sdstaddr.port);
return NET_TCP_EXT_abconn_e;
}
if(*(uint64_t *)*data != *secret){
IO_print(FD_OUT, "[!] %08x%04x sent wrong secret\n", peer->sdstaddr.ip, peer->sdstaddr.port);
return NET_TCP_EXT_abconn_e;
}
*pd = 1;
peer->loff.connstate++;
uint8_t flag = NET_TCP_EXT_signal_connstate(peer, NET_TCP_connstate_succ_e);
if(flag & NET_TCP_EXT_abconn_e){
NET_TCP_closehard(peer);
}
if(*size >= sizeof(*secret)){
*size -= sizeof(*secret);
*data += sizeof(*secret);
break;
}
return NET_TCP_EXT_dontgo_e;
}while(0);
return 0;
}
void init_server_secret(NET_TCP_t *tcp, uint64_t secret){
IO_print(FD_OUT, "server secret is 0x%llx\n", secret);
NET_TCP_eid_t eid = NET_TCP_EXT_new(tcp, sizeof(secret), 1);
uint64_t *ssecret = (uint64_t *)NET_TCP_EXT_get_sockdata(tcp, eid);
*ssecret = secret;
NET_TCP_EXTcbadd(tcp, NET_TCP_oid_connstate_e, eid, (void *)server_secret_connstate_cb);
NET_TCP_EXTcbadd(tcp, NET_TCP_oid_read_e, eid, (void *)server_secret_read_cb);
}
uint32_t client_secret_connstate_cb(NET_TCP_peer_t *peer, void *sd, uint64_t *psecret, uint8_t flag){
if(!(flag & NET_TCP_connstate_succ_e)){
return 0;
}
NET_TCP_qsend_ptr(peer, psecret, sizeof(*psecret));
return 0;
}
NET_TCP_eid_t init_client_secret(NET_TCP_t *tcp){
NET_TCP_eid_t eid = NET_TCP_EXT_new(tcp, 0, sizeof(uint64_t));
NET_TCP_EXTcbadd(tcp, NET_TCP_oid_connstate_e, eid, (void *)client_secret_connstate_cb);
return eid;
}
void init_client_secret_peerdata(NET_TCP_peer_t *peer, NET_TCP_eid_t eid, uint64_t secret){
uint64_t *psecret = (uint64_t *)NET_TCP_EXT_get_peerdata(peer, eid);
*psecret = secret;
}
enum{
PACKET_FRAME,
PACKET_KEYFRAME,
PACKET_CURSOR,
PACKET_KEY,
PACKET_TOTAL
};
#pragma pack(push, 1)
typedef struct{
uint16_t x;
uint16_t y;
}packet_cursor_t;
typedef struct{
uint16_t key;
uint8_t action;
}packet_key_t;
#pragma pack(pop)
void send_packet_frame(NET_TCP_peer_t *peer, uint32_t size){
#pragma pack(push, 1)
struct{
uint8_t type;
uint32_t size;
}data;
#pragma pack(pop)
data.type = PACKET_FRAME;
data.size = size;
NET_TCP_qsend_ptr(peer, &data, sizeof(data));
}
void send_packet_keyframe(NET_TCP_peer_t *peer, uint32_t size){
#pragma pack(push, 1)
struct{
uint8_t type;
uint32_t size;
}data;
#pragma pack(pop)
data.type = PACKET_KEYFRAME;
data.size = size;
NET_TCP_qsend_ptr(peer, &data, sizeof(data));
}
void send_packet_cursor(NET_TCP_peer_t *peer, uint16_t x, uint16_t y){
#pragma pack(push, 1)
struct{
uint8_t type;
packet_cursor_t c;
}data;
#pragma pack(pop)
data.type = PACKET_CURSOR;
data.c.x = x;
data.c.y = y;
NET_TCP_qsend_ptr(peer, &data, sizeof(data));
}
void send_packet_key(NET_TCP_peer_t *peer, uint16_t key, uint8_t action){
#pragma pack(push, 1)
struct{
uint8_t type;
packet_key_t k;
}data;
#pragma pack(pop)
data.type = PACKET_KEY;
data.k.key = key;
data.k.action = action;
NET_TCP_qsend_ptr(peer, &data, sizeof(data));
}
typedef struct{
uint8_t type;
union{
struct{
uint8_t round;
uint32_t size;
}frame;
}s;
}ptype_t;
typedef bool (*packet_cb_t)(void *u0, void *u1, void *u2);
bool process_incoming_packet(
void *u0,
void *u1,
void *u2,
uint8_t *data,
uint_t size,
ptype_t *ptype,
VEC_t *packet,
packet_cb_t frame_cb,
packet_cb_t keyframe_cb,
packet_cb_t cursor_cb,
packet_cb_t key_cb
){
begin_gt:
switch(ptype->type){
case PACKET_FRAME:{
switch(ptype->s.frame.round){
case 0:{
if((packet->Current + size) >= sizeof(uint32_t)){
uint8_t pushed = sizeof(uint32_t) - packet->Current;
VEC_pushbackn(packet, data, pushed);
ptype->s.frame.round = 1;
ptype->s.frame.size = *(uint32_t *)packet->ptr;
packet->Current = 0;
data += pushed;
size -= pushed;
}
else{
VEC_pushbackn(packet, data, size);
return 0;
}
}
case 1:{
if((packet->Current + size) >= ptype->s.frame.size){
uint32_t pushed = ptype->s.frame.size - packet->Current;
VEC_pushbackn(packet, data, pushed);
frame_cb(u0, u1, u2);
data += pushed;
size -= pushed;
packet->Current = 0;
ptype->type = PACKET_TOTAL;
goto begin_gt;
}
else{
VEC_pushbackn(packet, data, size);
return 0;
}
}
}
break;
}
case PACKET_KEYFRAME:{
switch(ptype->s.frame.round){
case 0:{
if((packet->Current + size) >= sizeof(uint32_t)){
uint8_t pushed = sizeof(uint32_t) - packet->Current;
VEC_pushbackn(packet, data, pushed);
ptype->s.frame.round = 1;
ptype->s.frame.size = *(uint32_t *)packet->ptr;
packet->Current = 0;
data += pushed;
size -= pushed;
}
else{
VEC_pushbackn(packet, data, size);
return 0;
}
}
case 1:{
if((packet->Current + size) >= ptype->s.frame.size){
uint32_t pushed = ptype->s.frame.size - packet->Current;
VEC_pushbackn(packet, data, pushed);
keyframe_cb(u0, u1, u2);
data += pushed;
size -= pushed;
packet->Current = 0;
ptype->type = PACKET_TOTAL;
goto begin_gt;
}
else{
VEC_pushbackn(packet, data, size);
return 0;
}
}
}
break;
}
case PACKET_CURSOR:{
if((packet->Current + size) >= sizeof(packet_cursor_t)){
uint_t pushed = sizeof(packet_cursor_t) - packet->Current;
VEC_pushbackn(packet, data, pushed);
cursor_cb(u0, u1, u2);
data += pushed;
size -= pushed;
packet->Current = 0;
ptype->type = PACKET_TOTAL;
goto begin_gt;
}
else{
VEC_pushbackn(packet, data, size);
return 0;
}
break;
}
case PACKET_KEY:{
if((packet->Current + size) >= sizeof(packet_key_t)){
uint8_t pushed = sizeof(packet_key_t) - packet->Current;
VEC_pushbackn(packet, data, pushed);
key_cb(u0, u1, u2);
data += pushed;
size -= pushed;
packet->Current = 0;
ptype->type = PACKET_TOTAL;
goto begin_gt;
}
else{
VEC_pushbackn(packet, data, size);
return 0;
}
break;
}
case PACKET_TOTAL:{
if(!size){
return 0;
}
ptype->type = data[0];
switch(ptype->type){
case PACKET_FRAME:{
ptype->s.frame.round = 0;
break;
}
case PACKET_KEYFRAME:{
ptype->s.frame.round = 0;
break;
}
case PACKET_CURSOR:{
break;
}
case PACKET_KEY:{
break;
}
default:{
IO_print(FD_OUT, "weird byte: %lu\n", ptype->type);
assert(0);
}
}
data++;
size--;
goto begin_gt;
}
}
return 0;
}
typedef struct{
VAS_t peers;
IO_SCR_t scr;
struct{
AV_codec_t *codec;
AV_dict_t *dict;
AV_context_t *context;
AV_frame_t *frame;
AV_packet_t *packet;
VEC_t initialdata;
uint64_t last;
uint32_t fps;
}av;
EV_ev_t_t evt;
}com_grab_sockdata_t;
typedef struct{
VAS_node_t node;
ptype_t ptype;
VEC_t packet;
}com_grab_peerdata_t;
void com_grab_encode_cb(EV_t *listener, EV_ev_t_t *evt, uint32_t flag){
uint64_t t0 = T_nowi();
com_grab_sockdata_t *sd = OFFSETLESS(evt, com_grab_sockdata_t, evt);
uint8_t *pixelbuf = IO_SCR_read(&sd->scr);
assert(pixelbuf);
assert(!AV_frame_write(listener, sd->av.frame, pixelbuf, sd->scr.res.x, sd->scr.res.y, AV_PIX_FMT_BGRA));
assert(AV_inwrite(sd->av.context, sd->av.frame) > 0);
IO_ssize_t rinread;
while((rinread = AV_inread(sd->av.context, sd->av.packet)) > 0){
if(sd->av.packet->flags & AV_PKT_FLAG_KEY){
sd->av.initialdata.Current = 0;
VEC_pushbackn(&sd->av.initialdata, sd->av.packet->data, rinread);
}
VAS_node_t inode = *VAS_road0(&sd->peers, sd->peers.src);
while(inode != sd->peers.dst){
NET_TCP_peer_t *peer = *(NET_TCP_peer_t **)VAS_out(&sd->peers, inode);
send_packet_frame(peer, rinread);
NET_TCP_qsend_ptr(peer, sd->av.packet->data, rinread);
inode = *VAS_road0(&sd->peers, inode);
}
}
assert(rinread != -1);
sd->av.fps++;
uint64_t t1 = T_nowi();
uint64_t result = t1 - t0;
uint64_t expected = (uint64_t)1000000000 / sd->av.context->time_base.den;
if(t1 > (sd->av.last + 1000000000)){
sd->av.last = t1;
if(sd->av.context->time_base.den > sd->av.fps){
IO_print(FD_OUT, "OVERLOAD fps result %lu expected %lu\n", sd->av.fps, sd->av.context->time_base.den);
}
sd->av.fps = 0;
}
if(result >= expected){
//IO_print(FD_OUT, "OVERLOAD encode result %llu expected %llu\n", result, expected);
}
}
uint32_t com_grab_connstate_cb(NET_TCP_peer_t *peer, com_grab_sockdata_t *sd, com_grab_peerdata_t *pd, uint8_t flag){
if(flag & NET_TCP_connstate_succ_e){
IO_print(FD_OUT, "[+] %08x%04x\n", peer->sdstaddr.ip, peer->sdstaddr.port);
pd->ptype.type = PACKET_TOTAL;
VEC_init(&pd->packet, 1);
pd->node = VAS_getnode_dst(&sd->peers);
*(NET_TCP_peer_t **)VAS_out(&sd->peers, pd->node) = peer;
send_packet_frame(peer, sd->av.initialdata.Current);
NET_TCP_qsend_ptr(peer, sd->av.initialdata.ptr, sd->av.initialdata.Current);
}
else do{
IO_print(FD_OUT, "[-] %08x%04x\n", peer->sdstaddr.ip, peer->sdstaddr.port);
if(!(flag & NET_TCP_connstate_init_e)){
break;
}
VAS_unlink(&sd->peers, pd->node);
VEC_free(&pd->packet);
}while(0);
return 0;
}
void com_grab_cursor_cb(NET_TCP_peer_t *peer, com_grab_sockdata_t *sd, com_grab_peerdata_t *pd){
packet_cursor_t *cursor = (packet_cursor_t *)pd->packet.ptr;
}
void com_grab_key_cb(NET_TCP_peer_t *peer, com_grab_sockdata_t *sd, com_grab_peerdata_t *pd){
packet_key_t *key = (packet_key_t *)pd->packet.ptr;
}
uint32_t com_grab_read_cb(NET_TCP_peer_t *peer, com_grab_sockdata_t *sd, com_grab_peerdata_t *pd, uint8_t **data, uint_t *size){
bool r = process_incoming_packet(
peer,
sd,
pd,
*data,
*size,
&pd->ptype,
&pd->packet,
(packet_cb_t)EMPTY_FUNCTION,
(packet_cb_t)EMPTY_FUNCTION,
(packet_cb_t)com_grab_cursor_cb,
(packet_cb_t)com_grab_key_cb
);
assert(!r);
return 0;
}
struct com_view_peerdata_t{
ptype_t ptype;
VEC_t packet;
VEC_t pixmap;
struct{
AV_codec_t *codec;
AV_context_t *context;
AV_frame_t *frame;
AV_packet_t *packet;
}av;
EV_ev_t_t tmain;
fan::window* window;
fan::camera* camera;
fan_2d::sprite* image;
};
void com_view_main_cb(EV_t* listener, EV_ev_t_t* evt, uint32_t flag){
com_view_peerdata_t *pd = OFFSETLESS(evt, com_view_peerdata_t, tmain);
pd->window->execute(0, [&]{
pd->window->get_fps();
pd->image->draw();
});
//fan::window::handle_events();
}
uint32_t com_view_connstate_cb(NET_TCP_peer_t* peer, void *sd, com_view_peerdata_t* pd, uint8_t flag){
if(flag & NET_TCP_connstate_succ_e){
pd->ptype.type = PACKET_TOTAL;
VEC_init(&pd->packet, 1, AV_resize);
VEC_init(&pd->pixmap, 1, AV_resize);
pd->av.codec = AV_decoder_open(AV_CODEC_ID_H264);
assert(pd->av.codec);
pd->av.context = AV_context_open(pd->av.codec, 0);
assert(pd->av.context);
assert(!AV_context_set(pd->av.codec, pd->av.context, 0));
pd->av.frame = AV_frame_alloc();
assert(pd->av.frame);
pd->av.packet = AV_packet_open();
assert(pd->av.packet);
EV_ev_t_init(&pd->tmain, .001, (EV_ev_cb_t)com_view_main_cb);
EV_ev_t_start(peer->parent->listener, &pd->tmain);
pd->window = new fan::window();
pd->window->set_vsync(true);
pd->window->auto_close(false);
pd->camera = new fan::camera(pd->window);
pd->window->add_mouse_move_callback([peer](fan::window* window){
fan::vec2 position = window->get_mouse_position();
send_packet_cursor(peer, position.x, position.y);
});
pd->window->add_close_callback([peer]{
NET_TCP_closehard(peer);
});
pd->window->add_key_callback(fan::key_escape, [&]{
NET_TCP_closehard(peer);
});
fan_2d::image_load_properties::internal_format = GL_RGB;
fan_2d::image_load_properties::format = GL_RGB;
fan_2d::image_load_properties::type = GL_UNSIGNED_BYTE;
pd->image = new fan_2d::sprite(pd->camera);
pd->window->set_error_callback();
IO_print(FD_OUT, "[+] %08x%04x\n", peer->sdstaddr.ip, peer->sdstaddr.port);
}
else do{
IO_print(FD_OUT, "[-] %08x%04x\n", peer->sdstaddr.ip, peer->sdstaddr.port);
if(!(flag & NET_TCP_connstate_init_e)){
break;
}
VEC_free(&pd->pixmap);
AV_codec_close(pd->av.codec);
AV_context_close(pd->av.context);
AV_frame_close(pd->av.frame);
AV_packet_close(pd->av.packet);
EV_ev_t_stop(peer->parent->listener, &pd->tmain);
delete pd->window;
delete pd->camera;
delete pd->image;
}while(0);
return 0;
}
void com_view_frame_cb(NET_TCP_peer_t *peer, void *sd, com_view_peerdata_t *pd){
IO_ssize_t routwrite = AV_outwrite(pd->av.context, pd->packet.ptr, pd->packet.Current, pd->av.packet);
assert(routwrite == pd->packet.Current);
IO_ssize_t routread = AV_outread(pd->av.context, pd->av.frame);
assert(routread >= 0);
if(!routread){
return;
}
pd->pixmap.Current = 0;
VEC_handle0(&pd->pixmap, pd->av.frame->width * pd->av.frame->height * 3);
assert(!AV_frame_read(pd->av.frame, pd->pixmap.ptr, pd->av.frame->width, pd->av.frame->height, AV_PIX_FMT_RGB24));
pd->image->reload_sprite(0, pd->pixmap.ptr, fan::vec2i(pd->av.frame->width, pd->av.frame->height));
pd->image->set_size(0, pd->window->get_size());
}
void com_view_cursor_cb(NET_TCP_peer_t *peer, void *sd, com_view_peerdata_t *pd){
packet_cursor_t *cursor = (packet_cursor_t *)pd->packet.ptr;
}
void com_view_key_cb(NET_TCP_peer_t *peer, void *sd, com_view_peerdata_t *pd){
packet_key_t *key = (packet_key_t *)pd->packet.ptr;
}
uint32_t com_view_read_cb(NET_TCP_peer_t *peer, void *sd, com_view_peerdata_t *pd, uint8_t **data, uint_t *size){
bool r = process_incoming_packet(
peer,
sd,
pd,
*data,
*size,
&pd->ptype,
&pd->packet,
(packet_cb_t)com_view_frame_cb,
(packet_cb_t)com_view_frame_cb,
(packet_cb_t)com_view_cursor_cb,
(packet_cb_t)com_view_key_cb
);
assert(!r);
return 0;
}
bool com_view_init(base_t* base){
base->net.tcp.tcpview = NET_TCP_alloc(&base->listener);
init_tls(base->net.tcp.tcpview);
base->net.tcp.tcpview_secret_eid = init_client_secret(base->net.tcp.tcpview);
NET_TCP_eid_t eid = NET_TCP_EXT_new(base->net.tcp.tcpview, 0, sizeof(com_view_peerdata_t));
NET_TCP_EXTcbadd(base->net.tcp.tcpview, NET_TCP_oid_connstate_e, eid, (void *)com_view_connstate_cb);
NET_TCP_EXTcbadd(base->net.tcp.tcpview, NET_TCP_oid_read_e, eid, (void *)com_view_read_cb);
return 0;
}
typedef struct{
VAS_t peers;
NET_TCP_eid_t eid;
NET_TCP_peer_t *main_peer;
struct{
VEC_t initialdata;
}av;
ptype_t ptype;
VEC_t packet;
}com_grabfrom_sockdata_t;
typedef struct{
VAS_node_t node;
bool state;
ptype_t ptype;
VEC_t packet;
}com_grabfrom_peerdata_t;
uint32_t com_grabfrom_connstate_cb(NET_TCP_peer_t *peer, com_grabfrom_sockdata_t *sd, com_grabfrom_peerdata_t *pd, uint8_t flag){
if(flag & NET_TCP_connstate_succ_e){
pd->ptype.type = PACKET_TOTAL;
VEC_init(&pd->packet, 1);
if(!sd->main_peer){
IO_print(FD_OUT, "[+] main peer %08x%04x\n", peer->sdstaddr.ip, peer->sdstaddr.port);
sd->main_peer = peer;
}
else{
IO_print(FD_OUT, "[+] %08x%04x\n", peer->sdstaddr.ip, peer->sdstaddr.port);
pd->node = VAS_getnode_dst(&sd->peers);
pd->state = 0;
*(NET_TCP_peer_t **)VAS_out(&sd->peers, pd->node) = peer;
if(sd->av.initialdata.Current){
send_packet_keyframe(peer, sd->av.initialdata.Current);
NET_TCP_qsend_ptr(peer, sd->av.initialdata.ptr, sd->av.initialdata.Current);
}
}
}
else do{
if(!(flag & NET_TCP_connstate_init_e)){
break;
}
if(peer == sd->main_peer){
IO_print(FD_OUT, "[-] main peer %08x%04x\n", peer->sdstaddr.ip, peer->sdstaddr.port);
sd->main_peer = 0;
}
else{
IO_print(FD_OUT, "[-] %08x%04x\n", peer->sdstaddr.ip, peer->sdstaddr.port);
VAS_unlink(&sd->peers, pd->node);
}
}while(0);
return 0;
}
void com_grabfrom_keyframe_cb(NET_TCP_peer_t *peer, com_grabfrom_sockdata_t *sd, void *pd){
if(peer != sd->main_peer){
return;
}
sd->av.initialdata.Current = 0;
VEC_pushbackn(&sd->av.initialdata, sd->packet.ptr, sd->packet.Current);
}
void com_grabfrom_cursor_cb(NET_TCP_peer_t *peer, com_grabfrom_sockdata_t *sd, void *pd){
if(peer == sd->main_peer){
return;
}
/* TODO send it to main peer */
}
void com_grabfrom_key_cb(NET_TCP_peer_t *peer, com_grabfrom_sockdata_t *sd, void *pd){
if(peer == sd->main_peer){
return;
}
/* TODO send it to main peer */
}
uint32_t com_grabfrom_read_cb(NET_TCP_peer_t *peer, com_grabfrom_sockdata_t *sd, com_grabfrom_peerdata_t *pd, uint8_t **data, uint_t *size){
if(peer == sd->main_peer){
VAS_node_t inode = *VAS_road0(&sd->peers, sd->peers.src);
while(inode != sd->peers.dst){
NET_TCP_peer_t *npeer = *(NET_TCP_peer_t **)VAS_out(&sd->peers, inode);
com_grabfrom_peerdata_t *npd = (com_grabfrom_peerdata_t *)NET_TCP_EXT_get_peerdata(npeer, sd->eid);
if(npd->state){
NET_TCP_qsend_ptr(npeer, *data, *size);
}
else do{
/* this means this packet is first of rest */
/* because ptype still didnt assigned */
if(sd->ptype.type != PACKET_TOTAL){
break;
}
npd->state = 1;
NET_TCP_qsend_ptr(npeer, *data, *size);
}while(0);
inode = *VAS_road0(&sd->peers, inode);
}
bool r = process_incoming_packet(
peer,
sd,
0,
*data,
*size,
&sd->ptype,
&sd->packet,
(packet_cb_t)EMPTY_FUNCTION,
(packet_cb_t)com_grabfrom_keyframe_cb,
(packet_cb_t)com_grabfrom_cursor_cb,
(packet_cb_t)com_grabfrom_key_cb
);
assert(!r);
}
else{
bool r = process_incoming_packet(
peer,
sd,
pd,
*data,
*size,
&pd->ptype,
&pd->packet,
(packet_cb_t)EMPTY_FUNCTION,
(packet_cb_t)com_grabfrom_keyframe_cb,
(packet_cb_t)com_grabfrom_cursor_cb,
(packet_cb_t)com_grabfrom_key_cb
);
assert(!r);
}
return 0;
}
typedef struct{
NET_TCP_peer_t *peer;
IO_SCR_t scr;
struct{
AV_codec_t *codec;
AV_dict_t *dict;
AV_context_t *context;
AV_frame_t *frame;
AV_packet_t *packet;
uint64_t last;
uint32_t fps;
}av;
EV_ev_t_t evt;
ptype_t ptype;
VEC_t packet;
}com_grabto_peerdata_t;
void com_grabto_encode_cb(EV_t *listener, EV_ev_t_t *evt, uint32_t flag){
uint64_t t0 = T_nowi();
com_grabto_peerdata_t *pd = OFFSETLESS(evt, com_grabto_peerdata_t, evt);
uint8_t *pixelbuf = IO_SCR_read(&pd->scr);
assert(pixelbuf);
assert(!AV_frame_write(listener, pd->av.frame, pixelbuf, pd->scr.res.x, pd->scr.res.y, AV_PIX_FMT_BGRA));
assert(AV_inwrite(pd->av.context, pd->av.frame) > 0);
IO_ssize_t rinread;
while((rinread = AV_inread(pd->av.context, pd->av.packet)) > 0){
if(pd->av.packet->flags & AV_PKT_FLAG_KEY){
send_packet_keyframe(pd->peer, rinread);
NET_TCP_qsend_ptr(pd->peer, pd->av.packet->data, rinread);
}
else{
send_packet_frame(pd->peer, rinread);
NET_TCP_qsend_ptr(pd->peer, pd->av.packet->data, rinread);
}
}
assert(rinread != -1);
pd->av.fps++;
uint64_t t1 = T_nowi();
uint64_t result = t1 - t0;
uint64_t expected = (uint64_t)1000000000 / pd->av.context->time_base.den;
if(t1 > (pd->av.last + 1000000000)){
pd->av.last = t1;
if(pd->av.context->time_base.den > pd->av.fps){
IO_print(FD_OUT, "OVERLOAD fps result %lu expected %lu\n", pd->av.fps, pd->av.context->time_base.den);
}
pd->av.fps = 0;
}
if(result >= expected){
IO_print(FD_OUT, "OVERLOAD encode result %llu expected %llu\n", result, expected);
}
}
uint32_t com_grabto_connstate_cb(NET_TCP_peer_t *peer, void *sd, com_grabto_peerdata_t *pd, uint8_t flag){
if(flag & NET_TCP_connstate_succ_e){
IO_print(FD_OUT, "[+] %08x%04x\n", peer->sdstaddr.ip, peer->sdstaddr.port);
EV_ev_t_start(peer->parent->listener, &pd->evt);
}
else do{
IO_print(FD_OUT, "[-] %08x%04x\n", peer->sdstaddr.ip, peer->sdstaddr.port);
/* this place needs alot free */
if(!(flag & NET_TCP_connstate_init_e)){
break;
}
EV_ev_t_stop(peer->parent->listener, &pd->evt);
}while(0);
return 0;
}
void com_grabto_cursor_cb(NET_TCP_peer_t *peer, void *sd, com_grabto_peerdata_t *pd){
packet_cursor_t *cursor = (packet_cursor_t *)pd->packet.ptr;
}
void com_grabto_key_cb(NET_TCP_peer_t *peer, void *sd, com_grabto_peerdata_t *pd){
packet_key_t *key = (packet_key_t *)pd->packet.ptr;
}
uint32_t com_grabto_read_cb(NET_TCP_peer_t *peer, void *sd, com_grabto_peerdata_t *pd, uint8_t **data, uint_t *size){
bool r = process_incoming_packet(
peer,
sd,
pd,
*data,
*size,
&pd->ptype,
&pd->packet,
(packet_cb_t)EMPTY_FUNCTION,
(packet_cb_t)EMPTY_FUNCTION,
(packet_cb_t)com_grabto_cursor_cb,
(packet_cb_t)com_grabto_key_cb
);
assert(!r);
return 0;
}
bool com_grabto_init(base_t *base){
base->net.tcp.tcpgrabto = NET_TCP_alloc(&base->listener);
init_tls(base->net.tcp.tcpgrabto);
base->net.tcp.tcpgrabto_secret_eid = init_client_secret(base->net.tcp.tcpgrabto);
base->net.tcp.tcpgrabto_eid = NET_TCP_EXT_new(base->net.tcp.tcpgrabto, 0, sizeof(com_grabto_peerdata_t));
NET_TCP_EXTcbadd(base->net.tcp.tcpgrabto, NET_TCP_oid_connstate_e, base->net.tcp.tcpgrabto_eid, (void *)com_grabto_connstate_cb);
NET_TCP_EXTcbadd(base->net.tcp.tcpgrabto, NET_TCP_oid_read_e, base->net.tcp.tcpgrabto_eid, (void *)com_grabto_read_cb);
return 0;
}
VAS_node_t com_grab(base_t *base, uint16_t port, uint64_t secret, uint32_t framerate, uint32_t rate){
VAS_node_t node = VAS_getnode_dst(&base->net.tcp.server);
NET_TCP_t **tcp = (NET_TCP_t **)VAS_out(&base->net.tcp.server, node);
*tcp = NET_TCP_alloc(&base->listener);
(*tcp)->ssrcaddr.port = port;
init_tls(*tcp);
init_server_secret(*tcp, secret);
NET_TCP_eid_t eid = NET_TCP_EXT_new(*tcp, sizeof(com_grab_sockdata_t), sizeof(com_grab_peerdata_t));
com_grab_sockdata_t *sd = (com_grab_sockdata_t *)NET_TCP_EXT_get_sockdata(*tcp, eid);
VAS_open(&sd->peers, sizeof(NET_TCP_peer_t *));
NET_TCP_EXTcbadd(*tcp, NET_TCP_oid_connstate_e, eid, (void *)com_grab_connstate_cb);
NET_TCP_EXTcbadd(*tcp, NET_TCP_oid_read_e, eid, (void *)com_grab_read_cb);
if(NET_TCP_listen(*tcp)){
NET_TCP_free(*tcp);
VAS_unlink(&base->net.tcp.server, node);
return (VAS_node_t)-1;
}
EV_ev_io_start(&base->listener, &(*tcp)->ev);
assert(!IO_SCR_open(&sd->scr));
sd->av.codec = AV_encoder_open(AV_CODEC_ID_H264);
assert(sd->av.codec);
sd->av.dict = 0;
assert(!AV_dict_set(&sd->av.dict, "preset", "veryfast", 0));
assert(!AV_dict_set(&sd->av.dict, "tune", "zerolatency", 0));
sd->av.context = AV_context_open(sd->av.codec, framerate);
assert(sd->av.context);
sd->av.context->width = sd->scr.res.x;
sd->av.context->height = sd->scr.res.y;
AV_context_cbr(sd->av.context, rate);
assert(!AV_context_set(sd->av.codec, sd->av.context, &sd->av.dict));
sd->av.frame = AV_frame_open(sd->av.context);
assert(sd->av.frame);
sd->av.packet = AV_packet_open();
assert(sd->av.packet);
VEC_init(&sd->av.initialdata, 1);
sd->av.last = T_nowi();
sd->av.fps = 0;
uint8_t *pixelbuf = A_resize(0, sd->scr.res.x * sd->scr.res.y * 3);
MEM_set(0, pixelbuf, sd->scr.res.x * sd->scr.res.y * 3);
assert(!AV_frame_write(&base->listener, sd->av.frame, pixelbuf, sd->scr.res.x, sd->scr.res.y, AV_PIX_FMT_RGB24));
A_resize(pixelbuf, 0);
assert(AV_inwrite(sd->av.context, sd->av.frame) > 0);
IO_ssize_t rinread;
while((rinread = AV_inread(sd->av.context, sd->av.packet)) > 0){
VEC_pushbackn(&sd->av.initialdata, sd->av.packet->data, rinread);
}
assert(rinread >= 0);
EV_ev_t_init(&sd->evt, (f64_t)1 / framerate, (EV_ev_cb_t)com_grab_encode_cb);
EV_ev_t_start(&base->listener, &sd->evt);
return node;
}
NET_TCP_peer_t *com_view(base_t *base, NET_addr_t addr, uint64_t secret){
NET_TCP_peer_t *peer = NET_TCP_connect(base->net.tcp.tcpview, addr);
if(!peer){
return 0;
}
init_client_secret_peerdata(peer, base->net.tcp.tcpview_secret_eid, secret);
EV_ev_tio_start(&base->listener, &peer->ev);
return peer;
}
VAS_node_t com_grabfrom(base_t *base, uint16_t port, uint64_t secret){
VAS_node_t node = VAS_getnode_dst(&base->net.tcp.server);
NET_TCP_t **tcp = (NET_TCP_t **)VAS_out(&base->net.tcp.server, node);
*tcp = NET_TCP_alloc(&base->listener);
(*tcp)->ssrcaddr.port = port;
init_tls(*tcp);
init_server_secret(*tcp, secret);
NET_TCP_eid_t eid = NET_TCP_EXT_new(*tcp, sizeof(com_grabfrom_sockdata_t), sizeof(com_grabfrom_peerdata_t));
com_grabfrom_sockdata_t *sd = (com_grabfrom_sockdata_t *)NET_TCP_EXT_get_sockdata(*tcp, eid);
sd->eid = eid;
VAS_open(&sd->peers, sizeof(NET_TCP_peer_t *));
sd->main_peer = 0;
VEC_init(&sd->av.initialdata, 1);
sd->ptype.type = PACKET_TOTAL;
VEC_init(&sd->packet, 1);
NET_TCP_EXTcbadd(*tcp, NET_TCP_oid_connstate_e, eid, (void *)com_grabfrom_connstate_cb);
NET_TCP_EXTcbadd(*tcp, NET_TCP_oid_read_e, eid, (void *)com_grabfrom_read_cb);
if(NET_TCP_listen(*tcp)){
NET_TCP_free(*tcp);
VAS_unlink(&base->net.tcp.server, node);
return (VAS_node_t)-1;
}
EV_ev_io_start(&base->listener, &(*tcp)->ev);
return node;
}
bool com_grabto(base_t *base, NET_addr_t addr, uint64_t secret, uint32_t framerate, uint32_t rate){
NET_TCP_peer_t *peer = NET_TCP_connect(base->net.tcp.tcpgrabto, addr);
init_client_secret_peerdata(peer, base->net.tcp.tcpgrabto_secret_eid, secret);
com_grabto_peerdata_t *pd = (com_grabto_peerdata_t *)NET_TCP_EXT_get_peerdata(peer, base->net.tcp.tcpgrabto_eid);
pd->peer = peer;
assert(!IO_SCR_open(&pd->scr));
pd->av.codec = AV_encoder_open(AV_CODEC_ID_H264);
assert(pd->av.codec);
pd->av.dict = 0;
assert(!AV_dict_set(&pd->av.dict, "preset", "veryfast", 0));
assert(!AV_dict_set(&pd->av.dict, "tune", "zerolatency", 0));
pd->av.context = AV_context_open(pd->av.codec, framerate);
assert(pd->av.context);
pd->av.context->width = pd->scr.res.x;
pd->av.context->height = pd->scr.res.y;
AV_context_cbr(pd->av.context, rate);
assert(!AV_context_set(pd->av.codec, pd->av.context, &pd->av.dict));
pd->av.frame = AV_frame_open(pd->av.context);
assert(pd->av.frame);
pd->av.packet = AV_packet_open();
assert(pd->av.packet);
pd->av.last = T_nowi();
pd->av.fps = 0;
pd->ptype.type = PACKET_TOTAL;
VEC_init(&pd->packet, 1);
EV_ev_t_init(&pd->evt, (f64_t)1 / framerate, (EV_ev_cb_t)com_grabto_encode_cb);
return 0;
}
void gui_main_cb(EV_t *listener, EV_ev_t_t *evt, uint32_t flag){
base_t *base = OFFSETLESS(evt, base_t, gui.evt);
base->gui.window.execute(0, [&]{
if (base->gui.window.key_press(fan::mouse_left)) {
bool found = false;
for (int i = 0; i < base->gui.stb.size(); i++) {
base->gui.stb.get_mouse_cursor(i);
}
if (!found) {
//fan_2d::gui::current_focus[base->gui.window.get_handle()] = -1;
}
}
base->gui.stb.draw();
base->gui.boxes.draw();
base->gui.tr.draw();
});
fan::window::handle_events();
}
void run(base_t* base){
EV_open(&base->listener);
VAS_open(&base->net.tcp.server, sizeof(NET_TCP_t *));
com_view_init(base);
com_grabto_init(base);
base->gui.window.set_vsync(false);
base->gui.window.add_close_callback([&]{
PR_exit(0);
});
base->gui.window.add_key_callback(fan::key_escape, [&]{
PR_exit(0);
});
base->gui.boxes.push_back(L"grab", font_size, base->gui.button(5), base->gui.box_size, base->gui.border_size , fan::colors::purple - 0.4);
base->gui.boxes.push_back(L"view", font_size, base->gui.button(4), base->gui.box_size, base->gui.border_size, fan::colors::purple - 0.4);
base->gui.boxes.push_back(L"grab from", font_size, base->gui.button(3), base->gui.box_size, base->gui.border_size , fan::colors::purple - 0.4);
base->gui.boxes.push_back(L"grab to", font_size, base->gui.button(2), base->gui.box_size, base->gui.border_size , fan::colors::purple - 0.4);
base->gui.boxes.push_back(L"start", font_size, base->gui.button(0), base->gui.box_size, base->gui.border_size, fan::colors::purple - 0.4);
base->gui.window.add_resize_callback([&] {
for (int i = 0; i < base->gui.tr.size(); i++) {
const auto offset = fan_2d::gui::get_resize_movement_offset(base->gui.camera.m_window);
base->gui.tr.set_position(i, base->gui.tr.get_position(i) + offset);
}
});
base->gui.boxes.on_click([&](uint_t i) {
auto selected = base->gui.boxes.get_selected();
if (selected != fan::uninitialized) {
base->gui.boxes.set_box_color(selected, fan::colors::purple - 0.4);
}
switch (i) {
case 0:{
base->gui.formBegin();
base->gui.formPush(L"Port:", fan::colors::white, L"8081", fan::colors::cyan - 0.9);
base->gui.formPush(L"Secret:", fan::colors::white, L"123", fan::colors::cyan - 0.9);
base->gui.formPush(L"FPS:", fan::colors::white, L"20", fan::colors::cyan - 0.9);
base->gui.formPush(L"Rate:", fan::colors::white, L"200000", fan::colors::cyan - 0.9);
base->gui.formEnd(0);
base->gui.boxes.set_box_color(i, fan::colors::purple - 0.3);
base->gui.boxes.set_selected(i);
break;
}
case 1:{
base->gui.formBegin();
base->gui.formPush(L"IP:", fan::colors::white, L"127.0.0.1", fan::colors::cyan - 0.9);
base->gui.formPush(L"Port:", fan::colors::white, L"8081", fan::colors::cyan - 0.9);
base->gui.formPush(L"Secret:", fan::colors::white, L"123", fan::colors::cyan - 0.9);
base->gui.formEnd(0);
base->gui.boxes.set_box_color(i, fan::colors::purple - 0.3);
base->gui.boxes.set_selected(i);
break;
}
case 2:{
base->gui.formBegin();
base->gui.formPush(L"Port:", fan::colors::white, L"8081", fan::colors::cyan - 0.9);
base->gui.formPush(L"Secret:", fan::colors::white, L"123", fan::colors::cyan - 0.9);
base->gui.formEnd(0);
base->gui.boxes.set_box_color(i, fan::colors::purple - 0.3);
base->gui.boxes.set_selected(i);
break;
}
case 3:{
base->gui.formBegin();
base->gui.formPush(L"IP:", fan::colors::white, L"127.0.0.1", fan::colors::cyan - 0.9);
base->gui.formPush(L"Port:", fan::colors::white, L"8081", fan::colors::cyan - 0.9);
base->gui.formPush(L"Secret:", fan::colors::white, L"123", fan::colors::cyan - 0.9);
base->gui.formPush(L"FPS:", fan::colors::white, L"20", fan::colors::cyan - 0.9);
base->gui.formPush(L"Rate:", fan::colors::white, L"200000", fan::colors::cyan - 0.9);
base->gui.formEnd(0);
base->gui.boxes.set_box_color(i, fan::colors::purple - 0.3);
base->gui.boxes.set_selected(i);
break;
}
case 4:{
auto selected = base->gui.boxes.get_selected();
switch(selected){
case 0:{
uint16_t port = std::stoi(base->gui.stb.get_line(0, 0));
uint64_t secret = std::stoi(base->gui.stb.get_line(1, 0));
uint32_t fps = std::stoi(base->gui.stb.get_line(2, 0));
uint32_t rate = std::stoi(base->gui.stb.get_line(3, 0));
VAS_node_t node = com_grab(base, port, secret, fps, rate);
assert(node != (VAS_node_t)-1);
break;
}
case 1:{
uint8_t sip[4];
uint_t pi = 0;
auto wstr = base->gui.stb.get_line(0, 0);
if (STR_rscancc(std::string(wstr.begin(), wstr.end()).c_str(), &pi, "(ov8u).(ov8u).(ov8u).(ov8u)", &sip[3], &sip[2], &sip[1], &sip[0])){
throw std::runtime_error("failed to parse ip");
}
NET_addr_t net_addr;
net_addr.port = std::stoi(base->gui.stb.get_line(1, 0));
net_addr.ip = *(uint32_t*)sip;
uint64_t secret = std::stoi(base->gui.stb.get_line(2, 0));
if(!com_view(base, net_addr, secret)){
/* com_view returns NET_TCP_peer_t * */
/* 0 pointer means failed to open. how should we handle this? */
assert(0); /* TODO */
}
break;
}
case 2:{
uint16_t port = std::stoi(base->gui.stb.get_line(0, 0));
uint64_t secret = std::stoi(base->gui.stb.get_line(1, 0));
VAS_node_t node = com_grabfrom(base, port, secret);
assert(node != (VAS_node_t)-1);
break;
}
case 3:{
uint8_t sip[4];
uint_t pi = 0;
auto wstr = base->gui.stb.get_line(0, 0);
if (STR_rscancc(std::string(wstr.begin(), wstr.end()).c_str(), &pi, "(ov8u).(ov8u).(ov8u).(ov8u)", &sip[3], &sip[2], &sip[1], &sip[0])){
throw std::runtime_error("failed to parse ip");
}
NET_addr_t net_addr;
net_addr.port = std::stoi(base->gui.stb.get_line(1, 0));
net_addr.ip = *(uint32_t*)sip;
uint64_t secret = std::stoi(base->gui.stb.get_line(2, 0));
uint32_t fps = std::stoi(base->gui.stb.get_line(3, 0));
uint32_t rate = std::stoi(base->gui.stb.get_line(4, 0));
bool r = com_grabto(base, net_addr, secret, fps, rate);
assert(!r);
break;
}
}
break;
}
}
});
EV_ev_t_init(&base->gui.evt, .2, (EV_ev_cb_t)gui_main_cb);
EV_ev_t_start(&base->listener, &base->gui.evt);
EV_start(&base->listener);
}
int main(){
base_t base;
run(&base);
return 0;
}
|
45c766c82b8d9fb4c4face6d433a3d79a0bef1f0 | 22b524a0c286644ab31eb9a6209478b913aef241 | /Action.cpp | 6aaa79333531036def59e759cdfb678f2fc82d33 | [] | no_license | jmp610/archipelago | ed742e2b57efd392366929ae75b518a7f5f6e9a4 | c73695c4167fe377be18b95644cb266f8ea74783 | refs/heads/master | 2016-09-09T18:57:06.483913 | 2009-09-28T18:17:53 | 2009-09-28T18:17:53 | 296,005 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 93 | cpp | Action.cpp | #include "Action.h"
namespace archipelago
{
Action::Action()
{
}
Action::~Action()
{
}
}
|
51914457294a9e8868ee8bd38d8d009f32f3160d | 9debce1d30acfefd4760edbc53d510f56ce68a0f | /Assignment4/Assignment4/Customer.h | 6639e255577a5154e94d7160df7f46832579aaa2 | [] | no_license | TofuMars/CSS343Assignment4 | 9f6bceeb88446f9ce75eb2df7bba3c5e1e77fb57 | 396325a4249403574d19a5e52460539d0ae1c614 | refs/heads/master | 2020-03-17T08:16:46.419793 | 2018-06-03T23:26:22 | 2018-06-03T23:26:22 | 133,432,097 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 773 | h | Customer.h | #pragma once
#include <string>
#include <list>
using std::string;
using std::list;
class Customer
{
private:
string ID;
string firstName;
string lastName;
list<string> borrowed;
public:
Customer(string id, string firstnme, string lastnme);
~Customer();
bool IsBorrowed(string movie); // checks whether a movie is inside the borrowed list
void addBorrowed(string movie); // adds a movie to the borrowed list
void returnBorrowed(string movie); // removes a movie form the borrowed list
string getKey(); // returns the ID of the customer
virtual string getID();
string getFirstName();
string getLastName();
bool operator==(const Customer& otherCustomer) const; // customers are equal if their ID, first name, and last name are equal
};
|
477cfd5b0773a842a2bc27e83d4e78529366af6a | 615d6b840ee7a4c3b132c503ad8059825086662e | /src/PowerSensorPlugin.cpp | fab2e260e20768faab5bdea635aeb6b02d176486 | [
"MIT"
] | permissive | fusor-io/fusor-state-machine-plugins | b4b2073782bbdbd87e6bca34b63060bee55e4b77 | 178d7ea8e470c0bd1911187e60ba892aa35f16f5 | refs/heads/master | 2023-03-08T20:25:27.696893 | 2021-02-20T16:19:47 | 2021-02-20T16:19:47 | 336,639,653 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,429 | cpp | PowerSensorPlugin.cpp | /**
* Plugin for measuring power consumption based on SCT-013 current sensor
* If device has corrent local system time, this plugin can accumulate
* power consumption for peak hours and for off-peak hours
*
* Input variables:
* "coef_p" - coefficient used to translate AC current amplitude
* measured as voltage on analog input into Watts
* "peak_start" - peak start time in GMT timezone (local device time)
* "peak_end" - peak start time in GMT timezone (local device time)
* "total" - initial electric metter readings, kw/h
* "peak" - initial peak time electric metter readings, kw/h
* "off_peak" - initial off-peak time electric metter readings, kw/h
*
* Output variables:
* "w" - momentary power in Watts
* "total" - momentary value of electric metter. kw/h
* "peak" - momentary value of peak time electric metter, kw/h
* "off_peak" - momentary value of off-peak time electric metter, kw/h
* "is_peak" - indicates if now is peak time (1) or not (0)
*/
#include "PowerSensorPlugin.h"
void _readPowerSensor(Plugin *plugin)
{
((PowerSensorPlugin *)plugin)->read();
}
PowerSensorPlugin::PowerSensorPlugin(const char *instanceId, uint8_t pin) : Plugin(instanceId)
{
_pin = pin;
pinMode(pin, INPUT);
registerAction("read", _readPowerSensor);
}
void PowerSensorPlugin::read()
{
float watts = _readSensor();
unsigned long durationMs = getElapsedTime(_lastPowerCheckPoint);
_lastPowerCheckPoint = millis();
// kW/h = 1000 * W / (60 * 60 * 1000 * ms) = W / (3600 * ms)
float segmentEnergy = (float)watts / ((float)durationMs * 3600.0f);
setVar(VAR_WATTS, watts);
setVar(VAR_TOTAL_METTER, getVarFloat(VAR_TOTAL_METTER) + segmentEnergy);
if (_isPeakTime())
{
setVar(VAR_PEAK_METTER, getVarFloat(VAR_PEAK_METTER) + segmentEnergy);
setVar(VAR_IS_PEAK, 1L);
}
else
{
setVar(VAR_OFF_PEAK_METTER, getVarFloat(VAR_OFF_PEAK_METTER) + segmentEnergy);
setVar(VAR_IS_PEAK, 0L);
}
}
bool PowerSensorPlugin::_isPeakTime()
{
uint8_t wd = weekday();
if (wd == 1 || wd == 7)
return false;
uint8_t hr = hour();
uint8_t peakStart = getVarInt(VAR_PEAK_START_HOUR, DEFAULT_PEAK_START_HOUR_GMT);
uint8_t peakEnd = getVarInt(VAR_PEAK_END_HOUR, DEFAULT_PEAK_END_HOUR_GMT);
return hr >= peakStart && hr < peakEnd;
}
unsigned long PowerSensorPlugin::_getWaveAmplitude()
{
unsigned long waveMin = ULONG_MAX;
unsigned long waveMax = 0UL;
unsigned long startTime = millis();
// 50 Hz -> 1 wave = 1/50s = 20ms ( and couple of ms, "just in case")
// It will work for shorter waves as well, eg. 60 hz
while (getTimeout(startTime) <= 22)
{
unsigned long power = (unsigned long)analogRead(_pin);
if (power > waveMax)
waveMax = power;
if (power < waveMin)
waveMin = power;
}
return (waveMax - waveMin);
}
float PowerSensorPlugin::_readSensor()
{
unsigned long averageAmplitude = 0;
for (int i = 0; i < AVERAGING_CYCLES; i++)
{
averageAmplitude += _getWaveAmplitude();
yield(); // allow MCU to do house keeping, like WiFi
}
// convert voltage to Watts
// P is measured empirically
float P = getVarFloat(VAR_KOEF_P, DEFAULT_P);
return ((float)averageAmplitude / (float)AVERAGING_CYCLES) * P;
}
|
394577b84301aea4cefd1ccbde6033ec99b704dd | 150b768328db3ad1f785f5d6b0d70e4c20a588d4 | /AtomGraphics/graphics/PlatformLayerBackingStore.cpp | c31246bca7856d077357519fe8b68a003754a55a | [] | no_license | Polepoint/AtomGraphics | 2fda9e8e32a56954efbc6656ad5bc867b3f58dcc | 6e0e73119afa4c27ccd65d3d14de682f852ac3dc | refs/heads/master | 2022-08-14T13:31:07.012604 | 2022-07-08T01:13:47 | 2022-07-08T01:13:47 | 127,279,667 | 7 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 5,075 | cpp | PlatformLayerBackingStore.cpp | //
// Created by neo on 2018/7/5.
// Copyright (c) 2018 neo. All rights reserved.
//
#include "PlatformLayerBackingStore.h"
#include <algorithm>
#include <utility>
#include "GraphicsContextStateSaver.h"
#include "PlatformLayerBackingStorePainter.h"
#include "PlatformLayer.h"
#if PLATFORM(IOS)
#include "GraphicsContextCG.h"
#include "ImageBuffer.h"
#elif PLATFORM(ANDROID)
#include "graphics/android/skia/GraphicsContextSkia.h"
#endif
namespace AtomGraphics {
PlatformLayerBackingStore::PlatformLayerBackingStore(PlatformLayer *layerOwner) : m_layerOwner(layerOwner) {
}
IntSize PlatformLayerBackingStore::backingStoreSize() const {
FloatSize scaledSize = m_size;
scaledSize.scale(m_scale);
return roundedIntSize(scaledSize);
}
void PlatformLayerBackingStore::ensureBackingStore(const FloatSize &size, float scale) {
if (m_size == size && m_scale == scale)
return;
m_size = size;
m_scale = scale;
if (m_frontBuffer) {
// If we have a valid backing store, we need to ensure that it gets completely
// repainted the next time display() is called.
setNeedsDisplay();
}
clearBackingStore();
}
void PlatformLayerBackingStore::clearBackingStore() {
m_frontBuffer.discard();
m_backBuffer.discard();
}
void PlatformLayerBackingStore::setNeedsDisplay() {
FloatRect bounds(0, 0, m_size.width, m_size.height);
setNeedsDisplayInRect(IntRect(bounds));
}
void PlatformLayerBackingStore::setNeedsDisplayInRect(const IntRect &rect) {
m_dirtyRegion.unite(rect);
}
bool PlatformLayerBackingStore::display() {
bool backingStoreChanged = false;
IntSize expandedScaledSize = backingStoreSize();
if (!m_dirtyRegion.isEmpty() && !expandedScaledSize.equals(IntSize::ZERO)) {
std::swap(m_frontBuffer, m_backBuffer);
if (!m_frontBuffer) {
m_frontBuffer.reset(expandedScaledSize);
}
bool willPaintEntireBackingStore = m_dirtyRegion.contains(IntRect(IntPoint(), IntSize(m_size)));
#if PLATFORM(IOS)
std::unique_ptr<GraphicsContextCG> context = m_frontBuffer.bitmapBuffer()->createGraphicsContext();
if (m_backBuffer && !willPaintEntireBackingStore) {
RetainPtr<CGImageRef> backImage = m_backBuffer.bitmapBuffer()->makeCGImage();
CGContextRef cgContext = context->getCGContextRef();
GraphicsContextStateSaver stateSaver(context.get());
CGContextSetBlendMode(cgContext, kCGBlendModeCopy);
CGContextTranslateCTM(cgContext, 0, expandedScaledSize.height);
CGContextScaleCTM(cgContext, 1, -1);
CGContextDrawImage(cgContext, CGRectMake(0, 0, expandedScaledSize.width, expandedScaledSize.height), backImage.get());
}
#elif PLATFORM(ANDROID)
SkCanvas *canvas = m_frontBuffer.recordingCanvas();
auto context = std::unique_ptr<GraphicsContextSkia>(new GraphicsContextSkia(canvas));
if (m_backBuffer && !willPaintEntireBackingStore) {
}
#endif
drawInContext(context.get());
m_frontContextPendingFlush = std::move(context);
backingStoreChanged = true;
}
return backingStoreChanged;
}
void PlatformLayerBackingStore::drawInContext(GraphicsContext *context) {
IntRect dirtyBounds = m_dirtyRegion.bounds();
std::vector<IntRect> dirtyRects = m_dirtyRegion.rects();
static const unsigned webLayerMaxRectsToPaint = 5;
constexpr static const float webLayerWastedSpaceThreshold = 0.75f;
if (dirtyRects.size() > webLayerMaxRectsToPaint ||
m_dirtyRegion.totalArea() > webLayerWastedSpaceThreshold * dirtyBounds.width() * dirtyBounds.height()) {
dirtyRects.clear();
dirtyRects.push_back(dirtyBounds);
}
for (const auto &rect : dirtyRects) {
FloatRect scaledRect(rect);
scaledRect.scale(m_scale);
scaledRect = enclosingIntRect(scaledRect);
scaledRect.scale(1 / m_scale);
m_paintingRects.push_back(scaledRect);
}
#if PLATFORM(IOS)
CGRect cgPaintingRects[webLayerMaxRectsToPaint];
for (size_t i = 0, dirtyRectCount = m_paintingRects.size(); i < dirtyRectCount; ++i) {
FloatRect scaledPaintingRect = m_paintingRects[i];
scaledPaintingRect.scale(m_scale);
cgPaintingRects[i] = scaledPaintingRect;
}
CGContextRef cgContext = ((GraphicsContextCG *) context)->getCGContextRef();
CGContextClipToRects(cgContext, cgPaintingRects, m_paintingRects.size());
context->scale(m_scale, m_scale);
#elif PLATFORM(ANDROID)
SkCanvas *canvas = ((GraphicsContextSkia *) context)->getSkCanvas();
for (size_t i = 0, dirtyRectCount = m_paintingRects.size(); i < dirtyRectCount; ++i) {
FloatRect scaledPaintingRect = m_paintingRects[i];
scaledPaintingRect.scale(m_scale);
canvas->clipRect(scaledPaintingRect);
}
canvas->scale(m_scale, m_scale);
#endif
PlatformLayerBackingStorePainter::paintLayer(this, context, m_paintingRects);
m_dirtyRegion = RectRegion();
m_paintingRects.clear();
}
} |
8987aa66a52f439795fc4e0f4bc61ec2e6c1f67b | d25de4ea050534c4d75d8beff9ac56fa03ecd19b | /mytest/src/myblob.cpp | f22cd0834f4222d8788b9c91db8b7c999aae9c8b | [
"LicenseRef-scancode-generic-cla",
"BSD-2-Clause",
"BSD-3-Clause",
"LicenseRef-scancode-public-domain"
] | permissive | HustCoderHu/caffe | 8d668367669445f20c1b7f55b6633582d386c74b | 5cebc9ce23310a0a651dd97ba26686ea706a7238 | refs/heads/master | 2021-09-07T21:30:01.722621 | 2018-03-01T11:27:28 | 2018-03-01T11:27:28 | 113,821,777 | 0 | 0 | null | 2017-12-11T06:34:40 | 2017-12-11T06:34:40 | null | UTF-8 | C++ | false | false | 1,086 | cpp | myblob.cpp | #include <cpu_only.h>
#include <myblob.h>
using std::vector;
namespace mytest {
MyBlob::MyBlob(Blob<float> *blob)
: ranked_(false), blob_(blob)
{
const vector<int>& shape = blob_->shape();
output = 1;
channels = 1;
height = 1;
width = 1;
int shapeSize = shape.size();
switch (shapeSize) {
case 4: width = shape.at(3);
case 3: height = shape.at(2);
case 2: channels = shape.at(1);
case 1: output = shape.at(0);
break;
default:
LOG(INFO) << "shapeSize: " << shapeSize;
break;
}
count = output * channels * height * width;
}
int MyBlob::zeroByRate()
{
my_memset _memset = caffe_memset;
float *blobStart = blob_->mutable_cpu_data();
for (int _offset : v_blockOffset_) {
_memset(blkSize * sizeof(float), float(0),
blobStart + _offset);
}
return 0;
}
void MyBlob::zeroAll()
{
my_memset _memset = caffe_memset;
float *blobStart = blob_->mutable_cpu_data();
_memset(count * sizeof(float), float(0), blobStart);
}
} // end of namespace mytest
|
e968db90977998a9f1e26858d8eb99084188402d | c81b972372fd0eea717f643b57166534b5eb1e7b | /src/libluna-service2++/test/test_disconnection.cpp | 851f53fdf3fb6d5e3e68b34f1102c1e877e38695 | [
"Apache-2.0",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | webosce/luna-service2 | abda920854660d77acc731d3583c2acc2d17689a | 19ea833074bd9e091b13f3a520705d68ff75c29c | refs/heads/webosce | 2023-04-30T03:37:15.567841 | 2018-09-20T04:05:10 | 2018-09-29T05:30:49 | 145,513,161 | 1 | 3 | null | 2023-09-06T09:22:18 | 2018-08-21T05:50:45 | C++ | UTF-8 | C++ | false | false | 3,942 | cpp | test_disconnection.cpp | // Copyright (c) 2014-2018 LG Electronics, 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.
//
// SPDX-License-Identifier: Apache-2.0
#include "util.hpp"
#include <atomic>
#include <iostream>
#include <thread>
#include <gtest/gtest.h>
#include <luna-service2/lunaservice.hpp>
using namespace std;
atomic_uint g_disc_count{0};
#define TEST_CLASS_NAME "TestService"
class TestService
{
public:
TestService()
: _mainloop(g_main_loop_new(nullptr, FALSE))
, _service(LS::registerService("com.palm.test_disconnection"))
{
LSMethod methods[] =
{
{ "killFork", onKillFork },
{ "shutdown", onShutdown },
{ },
};
EXPECT_TRUE(LSSubscriptionSetCancelFunction(_service.get(), onDisconnect, nullptr, nullptr));
_service.registerCategory("testCalls", methods, nullptr, nullptr);
_service.setCategoryData("testCalls", this);
_service.attachToLoop(_mainloop);
}
~TestService()
{
g_main_loop_unref(_mainloop);
}
static bool onDisconnect(LSHandle *, LSMessage *, void *)
{
++g_disc_count;
return true;
}
static bool onKillFork(LSHandle *sh, LSMessage *request, void *)
{
uint pid;
sscanf(LSMessageGetPayload(request), R"({"pid":%d})", &pid);
EXPECT_TRUE(LSSubscriptionAdd(sh, "sub", request, nullptr));
EXPECT_TRUE(0 == kill(pid, SIGKILL));
return true;
}
static bool onShutdown(LSHandle *, LSMessage *, void *user_data)
{
TestService *self = static_cast<TestService *>(user_data);
self->stop();
return true;
}
void run()
{
g_main_loop_run(_mainloop);
}
void stop()
{
g_main_loop_quit(_mainloop);
}
private:
GMainLoop *_mainloop;
LS::Handle _service;
};
void serviceFunc()
{
try
{
TestService ts;
ts.run();
}
catch (std::exception &e)
{
FAIL() << "TestService exception: " << e.what();
}
catch (...)
{
FAIL();
}
}
TEST(TestDiconnection, SubscriptionDisconnectCounter)
{
const uint TRIES = 100;
/* Make our fork to spawn copies and start service
* to kill them all */
if (!fork())
{
for (uint i = 0; i <= TRIES; ++i)
{
if (!fork())
{
auto context = mk_ptr(g_main_context_new(), g_main_context_unref);
LS::Handle client = LS::registerService();
client.attachToLoop(context.get());
LS::Call call;
if (TRIES != i)
{
char payload[50];
sprintf(payload, R"({"pid":%d})", getpid());
call = client.callMultiReply("luna://com.palm.test_disconnection/testCalls/killFork", payload);
}
else
{
call = client.callMultiReply("luna://com.palm.test_disconnection/testCalls/shutdown", "{}");
}
call.get();
}
else
{
int pid_status;
wait(&pid_status);
}
}
exit(0);
}
else
{
serviceFunc();
ASSERT_EQ(TRIES, g_disc_count);
}
}
int main(int argc, char **argv)
{
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
|
6d96069f90eb5437b60e44d00a0d1b7292fbd622 | e3ad51eab6dd24ae415ed53c5bbb304e5ce82b64 | /tools/csvreader.hh | 2c0c2791663eb0273ccceede946de4ec972c5757 | [] | no_license | ggutierrez/cprel-music | b93cd5f28c302c7593e0b0f34c73fea7fab8803e | 492e57b9b9d1c836ddc681825f20ab47968b7cea | refs/heads/master | 2021-01-01T16:13:38.882198 | 2012-02-26T21:24:54 | 2012-02-26T21:24:54 | 2,686,619 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 334 | hh | csvreader.hh | #ifndef __CPRELTOOLS_CSVREADER_HH__
#define __CPRELTOOLS_CSVREADER_HH__
#include <fstream>
#include <bdddomain/rel-impl.hh>
namespace CPRelTools {
/**
* \brief Takes the information in \a is and creates a ground relation out of it.
*/
MPG::VarImpl::RelationImpl
createFromCSV(std::istream& is, int columns);
}
#endif
|
97722a006528970064d7e635eaf5574722caee08 | 8f50c262f89d3dc4f15f2f67eb76e686b8f808f5 | /PhysicsAnalysis/Algorithms/SelectionHelpers/SelectionHelpers/SelectionReadHandle.h | 3ad43fc265e24799bf12a9c7a56857db42b51dc1 | [
"Apache-2.0"
] | permissive | strigazi/athena | 2d099e6aab4a94ab8b636ae681736da4e13ac5c9 | 354f92551294f7be678aebcd7b9d67d2c4448176 | refs/heads/master | 2022-12-09T02:05:30.632208 | 2020-09-03T14:03:18 | 2020-09-03T14:03:18 | 292,587,480 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,932 | h | SelectionReadHandle.h | /*
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
*/
/// @author Nils Krumnack
#ifndef SELECTION_HELPERS_SELECTION_READ_HANDLE_H
#define SELECTION_HELPERS_SELECTION_READ_HANDLE_H
#include <AthContainers/AuxElement.h>
#include <AsgTools/MsgStream.h>
#include <memory>
class StatusCode;
namespace CP
{
class ISelectionAccessor;
/// \brief a data handle for reading selection properties from
/// objects
///
/// Essentially this is just a wrapper around \ref
/// ISelectionAccessor to make it easier to use in an algorithm.
/// Since we are now using this a lot, it seems like a good idea to
/// streamline this as much as possible.
class SelectionReadHandle final
{
//
// public interface
//
/// \brief standard constructor
public:
template<typename T2>
SelectionReadHandle (T2 *owner, const std::string& propertyName,
const std::string& propertyValue,
const std::string& propertyDescription);
/// \brief whether we have a name configured
public:
bool empty () const noexcept;
/// \brief !empty()
public:
explicit operator bool () const noexcept;
/// \brief initialize the accessor
public:
StatusCode initialize ();
/// \brief get the selection as a bool
public:
bool getBool (const SG::AuxElement& element) const;
//
// private interface
//
/// \brief the selection we use
private:
std::string m_selection;
/// \brief the accessor we use
private:
std::unique_ptr<ISelectionAccessor> m_accessor;
/// \brief the message stream we use
private:
MsgStream *m_msg {nullptr};
/// \brief helper for message macros
private:
MsgStream& msg( ) const;
/// \brief helper for message macros
private:
MsgStream& msg( const MSG::Level lvl ) const;
};
}
#include "SelectionReadHandle.icc"
#endif
|
a81f0ad699ba5f1a46e557d124f2ccbe398d30b1 | e68dfb0081d396363c15e9dd486320352af64f4c | /leetcode/JumpGame.cc | f1dc920b7d5d0caed40fb1915fd256c3c0bc44c3 | [] | no_license | bxyang/helloworld | 9abe1176c7973cf8af9451375198a21219d5d7d5 | f96ba5e3e1d1fa18056e15faa6336abb994a4242 | refs/heads/master | 2020-04-09T16:52:09.975377 | 2018-12-17T03:51:00 | 2018-12-17T03:51:00 | 10,117,301 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,148 | cc | JumpGame.cc | /*
* =====================================================================================
*
* Filename: JumpGame.cc
*
* Description:
Given an array of non-negative integers, you are initially positioned at the first index of the array.
Each element in the array represents your maximum jump length at that position.
Determine if you are able to reach the last index.
For example:
A = [2,3,1,1,4], return true.
A = [3,2,1,0,4], return false.
*
*
* Version: 1.0
* Created: 2013/8/5 11:21:32
* Revision: none
* Compiler: gcc
*
* Author: yang_bao_xing@163.com
* Organization: ict
*
* =====================================================================================
*/
class Solution {
public:
bool canJump(int A[], int n) {
// Start typing your C/C++ solution below
// DO NOT write int main() function
int cover = 0;
for (int i = 0; i < n; i++) {
if (cover < i)
return false;
if (A[i] + i > cover)
cover = A[i] + i;
if (cover >= n - 1)
return true;
}
return true;
}
};
class Solution {
public:
bool canJump(int A[], int n) {
// Start typing your C/C++ solution below
// DO NOT write int main() function
if (n < 1)
return false;
vector<int> can_reach(n, -1);
can_reach[n-1] = 1;
return canJump(A, 0, n, can_reach);
}
bool canJump(int A[], int next, int n, vector<int> &can_reach) {
if (can_reach[next] != -1)
return can_reach[next];
int max_step = A[next];
bool ret = false;
int step = n-next-1;
if (step <= max_step)
ret = true;
else {
for (int i = 1; i <= max_step; i++) {
if (i > step)
break;
if (canJump(A, next + i, n, can_reach)) {
ret = true;
break;
}
}
}
can_reach[next] = ret;
return ret;
}
};
// greedy
class Solution {
public:
bool canJump(int A[], int n) {
// Start typing your C/C++ solution below
// DO NOT write int main() function
if (n == 0)
return false;
int step = A[0];
for(int i = 1; i < n; i++) {
if (step > 0) {
step--;
step = max(step, A[i]);
}
else
return false;
}
return true;
}
};
// great explaination http://www.mysjtu.com/page/M0/S884/884146.html
class Solution {
public:
bool canJump(int A[], int n) {
// Start typing your C/C++ solution below
// DO NOT write int main() function
int step = A[0];
for (int i = 1; i < n; i++) {
if (step <= 0)
return false;
step--;
if (A[i] > step)
step = A[i];
}
return true;
}
};
|
cfa252a403a2bcb5fd9e12d44d758e2c4c395ea6 | e26fd216d74070b64debf579488a8310fe4778a3 | /xrd_simulation/lattice.cpp | 982878ee872f8da9d9593f52f8f2a12752eaacd2 | [] | no_license | lacc97/mphys-project-xrd | e4dfd0125559b4f3ea67e9279d3aded84f39b334 | 90488c6eedb7c4103473c51f2faddcb3753198f7 | refs/heads/master | 2023-08-31T05:37:05.496025 | 2021-09-29T10:04:36 | 2021-09-29T10:04:36 | 411,636,398 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 937 | cpp | lattice.cpp | #include "lattice.hpp"
#include <fmt/format.h>
#include <nlohmann/json.hpp>
#include <types_json.hpp>
xrd::lattice nlohmann::adl_serializer<xrd::lattice>::from_json(const nlohmann::json& j) {
if(j.contains("type")) {
auto type = j.at("type").get<std::string>();
if(type == "cubic")
return xrd::lattice::cubic(j.at("a").get<real_t>());
else if(type == "fcc")
return xrd::lattice::fcc(j.at("a").get<real_t>());
else if(type == "fcc_tetragonal")
return xrd::lattice::fcc_tetragonal(j.at("a").get<real_t>(), j.at("c").get<real_t>());
else
throw std::runtime_error(fmt::format("unrecognized lattice type: {}", type));
} else {
return xrd::lattice(j.at("a").get<rvec3_t>(), j.at("b").get<rvec3_t>(), j.at("c").get<rvec3_t>());
}
}
void nlohmann::adl_serializer<xrd::lattice>::to_json(nlohmann::json& j, const xrd::lattice& l) {
j["a"] = l.a();
j["b"] = l.b();
j["c"] = l.c();
}
|
4ff98fa5bac4fe2faf0d17032f69f54be7e49861 | cdf3150fca9c8be880335ebe1e96201c813a4795 | /homework/Kuznetsova/02/calculator.cpp | 7524685a5837951ef4d865c4631ee26a306c1ed3 | [
"MIT"
] | permissive | mtrempoltsev/msu_cpp_autumn_2017 | af2b13377b0132c8204980d484cf07c9673e3165 | 0e87491dc117670b99d2ca2f7e1c5efbc425ae1c | refs/heads/master | 2021-09-20T04:08:23.316188 | 2018-08-03T09:23:51 | 2018-08-03T09:23:51 | 104,074,449 | 10 | 22 | null | 2017-09-28T21:35:52 | 2017-09-19T12:52:20 | C++ | UTF-8 | C++ | false | false | 3,047 | cpp | calculator.cpp | #include "calculator.h"
//ะพะฟัะตะดะตะปัะตะผ ัะธะฟ ัะตะบััะตะณะพ ัะพะบะตะฝะฐ
Token get_token(const char*& input) {
while (auto c = *input++) {
switch (c) {
case ' ':
continue;
case '+':
return Token::Plus;
case '-':
return Token::Minus;
case '*':
return Token::Mul;
case '/':
return Token::Div;
}
if (c >= '0' && c <= '9') {
return Token::Number;
} else
return Token::Invalid;
}
return Token::End;
}
//ะฒัะดะตะปัะตะผ ัะปะฐะณะฐะตะผัะต
int parse_expression(const char*& input) {
if (!(*input)) {
cout << message << endl;
std::cerr << "Invalid syntax\n";
exit(1);
}
auto left = parse_term(input);
auto token = get_token(input);
switch (token) {
case Token::Plus:
return left + parse_expression(input);
case Token::Minus:
return left - parse_expression(input);
case Token::Invalid:
cout << message << endl;
cerr << "Incorrect symbol\n";
exit(1);
default:
return left;
}
}
//ะฒัะดะตะปัะตะผ ะผะฝะพะถะธัะตะปะธ
int parse_term(const char*& input) {
if (!(*input)) {
std::cerr << "Invalid syntax\n";
exit(1);
}
auto left = parse_primary(input);
auto token = get_token(input);
while (token == Token::Mul || token == Token::Div) {
int right = parse_primary(input);
if (token == Token::Mul) {
left *= right;
}
else {
if (right == 0) {
cout << message << endl;
cerr << "Division by zero\n";
exit(1);
}
left /= right;
}
token = get_token(input);
}
if (token == Token::Invalid) {
cout << message << endl;
cerr << "Incorrect symbol\n";
exit(1);
}
--input; //ะดะพะนะดั ะดะพ + ะธะปะธ -, ะฒะพะทะฒัะฐัะฐะตะผ ัะพะบะตะฝ ะพะฑัะฐัะฝะพ
return left;
}
//ะฒัะดะตะปัะตะผ ัะตะปัะต ัะธัะปะฐ
int parse_primary(const char*& input) {
if (!(*input)) {
std::cerr << "Invalid syntax\n";
exit(1);
}
auto token = get_token(input);
int n = 0;
switch (token) {
case Token::Number:
--input; //ะฒะพะทะฒัะฐัะฐะตะผัั ะบ ัะพะปัะบะพ ััะพ ะฟัะพัะธัะฐะฝะฝะพะผั ะฝะฐัะฐะปั ัะธัะปะฐ
for (auto c = *input; c >= '0' && c <= '9';) {
n = n * 10 + c - '0';
c = *++input;
}
return n;
case Token::Minus:
return -parse_primary(input); //ัะฝะฐัะฝัะน ะผะธะฝัั
case Token::Invalid:
cout << message << endl;
cerr << "Incorrect symbol\n";
exit(1);
default:
cout << message << endl;
cerr << "Invalid syntax\n";
exit(1);
}
}
|
eba05986c6b4818dc19d1ca4f1546663aacfb0c0 | ae0dbf9739042461b1b55dd79aad3beff25ba3b0 | /cd3.cpp | e2844a3791dd87fee5ee40d83ab08cd8bf857e3e | [] | no_license | saquib77/Code | b058d587438c5e029a1b422b2facb80924c69f91 | 006faa69f35d3cbfd9aca261ed696cab78ff7fb0 | refs/heads/main | 2023-07-14T01:05:22.466452 | 2021-08-20T06:55:13 | 2021-08-20T06:55:13 | 341,225,695 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 318 | cpp | cd3.cpp | #include<bits/stdc++.h>
using namespace std;
int main(){
int t;cin>>t;
while(t--){
int n,k,d;
cin>>n>>k>>d;
int ar[n];
int dys=0;
int sum=0;
for(int i=0;i<n;i++){
cin>>ar[i];
sum+=ar[i];
}
cout<<sum<<endl;
int host=sum/k;
if(host<=d) cout<<host<<endl;
else cout<<d<<endl;
}
return 0;
}
|
c266bfcc481d0c1aaf2fa8ea31b36557c63d63ae | c6ce1cb14646e43bafa32165f3d959dae1d08841 | /myfunc.h | 95343cd09c45b106ff21690fc54f467b269005ea | [] | no_license | hpml5g115/RS2019_main | 0d99327aebc29d2fd931f43ce13c7e03a209fcca | 74bfa2a2c5b4c956ee4481a8fc6da0c85918f9b7 | refs/heads/master | 2020-03-30T19:37:09.891375 | 2019-01-16T07:18:15 | 2019-01-16T07:18:15 | 151,550,678 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,214 | h | myfunc.h | #ifndef _MYFUNC
#define _MYFUNC
#include "class.h"
// ใใณ็ชๅทใๅฎ็พฉ
// #define R_PULSE 16
// #define R_DIR 12
// #define L_PULSE 21
// #define L_DIR 20
const int X_max = 600;
const int Y_max = 600;
const int X_half = (int)(X_max / 2);
const int Y_half = (int)(Y_max / 2);
//่กจ็คบใใใฌใณใธ(ใใไปฅไธใฏๅใๆจใฆ)
const double dis_range = 6000.;
#ifndef _countof
#define _countof(_Array) (int)(sizeof(_Array) / sizeof(_Array[0]))
#endif
#ifdef _WIN32
#include <Windows.h>
#define delay(x) ::Sleep(x)
#else
#include <unistd.h>
static inline void delay(_word_size_t ms) {
while (ms >= 1000) {
usleep(1000 * 1000);
ms -= 1000;
};
if (ms != 0)
usleep(ms * 1000);
}
#endif
using namespace rp::standalone::rplidar;
//ใฐใฉใๆ็ป็จใใญใฐใฉใ
void GraphGain(double x, double y, int *xr, int *yr);
#ifndef _NO_GUI
void PictureGrid(cv::Mat img);
#endif
//ๅๆๅ้ขๆฐ
bool Initialize(RPlidarDriver * drv);
//ใใผใฟๅๅพ็จ้ขๆฐ
bool FinderMeasure(RPlidarDriver * drv, measure * result);
//็ตไบๆใฎๅฆ็้ขๆฐ
void ExitProcess(RPlidarDriver * drv);
//ใใผใฟไบๅๆธฌๅฎโใฐใซใผใๅ้ขๆฐ
bool MeasureTwice(RPlidarDriver * drv, measure *result);
#endif
|
0f5daaedb4cab42f4b446320915595d8ee8f7bb0 | 56c0c05a3ba44226bd942ed598e83d97d330a986 | /Src/CIL/Interlocked.cpp | d21a4500579a1ec714337bb40ab5368955bfc32c | [] | no_license | alexonea/OpenATL | 6d6b06cd22814ac7e0698986a14c8472a4fb3fb9 | 5f25380a97883ea4ae3c873da81a63f23a387fc1 | refs/heads/master | 2020-04-29T03:54:27.246365 | 2019-03-19T01:49:26 | 2019-03-19T01:49:26 | 175,828,118 | 0 | 0 | null | 2019-03-15T13:45:04 | 2019-03-15T13:45:04 | null | UTF-8 | C++ | false | false | 326 | cpp | Interlocked.cpp | #include <CIL/Interlocked.hpp>
CIL_NAMESPACE_BEGIN (CIL)
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
//
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
CIL_NAMESPACE_END
|
f1593002c34aad269bdd27d9c0c9f90c5f8b0ef2 | 08c1f6d7fe1e83d6d4ae23d5e9adbb96af17ecae | /็ฌฌ3้จๅC++ๆจกๆฟๅๆณๅ็ผ็จ/3.2ๅบๅๅฎนๅจ/3.2.2array/array.cpp | bdd18b69c6f9a9685c464e17cd155743167c0132 | [] | no_license | 13739601330/CPP | a435641add3fbd9e2a8cd0f4d0713e2071238f6f | 9a0157e518fdd1e140554e0d80d8a8053d98b0fb | refs/heads/master | 2023-08-08T04:19:19.525503 | 2021-09-12T01:34:46 | 2021-09-12T01:34:46 | 394,698,682 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,191 | cpp | array.cpp | #include <iostream>
#include <array>
#include <tuple>
#include <type_traits>
using namespace std;
//่ฟไธชๅฝๆฐ้่ฟtuple_valueๅจ็ผ่ฏๆถ็กฎๅฎไบไผ ๅ
ฅarray็ๅ
็ด ๆฐ้
//ๆ็ๆด้ซ๏ผ้็จๆงๅฅฝ
// template <class T>
// void test(T t)
// {
// int a[std::tuple_size<T>::value]; // ่ฝ็จไบ็ผ่ฏๆถ
// std::cout << std::tuple_size<T>::value << '\n';
// }
int main(int argc, char const *argv[])
{
//1.ๅฎไนๅๅๅงๅ
//ๅชๆฏๅฎไน๏ผๆฒกๆๅๅงๅ๏ผๅผๆฏ้ๆบ็
// array<int, 5> b;
//่ๅๅๅงๅ๏ผ็จๅคงๆฌๅท
// array<int, 5> c{1, 1, 2, 3, 4};
// array<int, 0> a2;
// array<int, 6> a = {0, 1, 2, 3, 4, 5};
// array<int, 6> b = {10, 9, 8, 7, 6, 5};
/*C++20
int x[3] = {1,2,3};
array<int,3> x_array = to_array<int,3>(x);
for (int i = 0; i < x_array.size(); i++)
{
cout << "x_array" << i << "=" << x_array.at(i) << endl;
}
*/
//2.่ฎฟ้ฎๅ
็ด
// cout << a2.at(0) << endl;
// cout << a.at(5) << endl; //ไผ่ฟ่ก่ถ็ๆฃๆฅ
// cout << a.front() << endl;
// cout << a.back() << endl;
// int *const p = a.data();
// cout << "*p = " << *p << endl;
// cout << "*(p+1) = " << *(p + 1) << endl;
//3.ๆฐ็ปๅฎน้
// cout << a.empty() << endl;
// cout << a2.empty() << endl;
// cout << "a.size() = " << a.size() << endl;
// cout << "a.max_size() = " << a.max_size() << endl;
//4.ๆฐ็ปๆไฝ
// a.fill(4);
// for (int i = 0; i < a.size(); i++)
// {
// cout << "a" << i << "=" << a.at(i) << endl;
// }
// a.swap(b);
// for (int i = 0; i < a.size(); i++)
// {
// cout << "a" << i << "=" << a.at(i) << endl;
// }
// for (int i = 0; i < b.size(); i++)
// {
// cout << "b" << i << "=" << b.at(i) << endl;
// }
//5.่ฟ็ฎ็ฌฆ้่ฝฝๅฝๆฐ
// cout << "a == b? " << (a == b) << endl;
// array<int, 6> c = a;
// cout << "a == c? " << (a == c) << endl;
// < ๏ผไป็ฌฌไธไธชๅผๅงๆฏ๏ผๅฐไบๅฐฑ่ฟๅtrue,ๅคงไบๅฐฑ่ฟๅfalse,็ธ็ญๅฐฑๆฏ่พไธไธไธช๏ผ''' ๅ
จ้จ็ธ็ญๅฐฑ่ฟๅfalse
// <= ๏ผไป็ฌฌไธไธชๅผๅงๆฏ๏ผๅฐไบๅฐฑ่ฟๅtrue,ๅคงไบๅฐฑ่ฟๅfalse,็ธ็ญๅฐฑๆฏ่พไธไธไธช๏ผ''' ๅ
จ้จ็ธ็ญๅฐฑ่ฟๅtrue
// array<int, 3> c = {3, 4, 5};
// array<int, 3> d = {1, 2, 3};
// cout << "c < d? " << (c < d) << endl;
// cout << "c <= d? " << (c <= d) << endl;
// cout << "get<0>(d) " << ( get<0>(d) ) << endl;
// swap(c,d);
// for (int i = 0; i < c.size(); i++)
// {
// cout << "c" << i << "=" << c.at(i) << endl;
// }
//6.่พ
ๅฉ็ฑปtuple_size,tuple_element
// std::array<float, 3> arr;
// test(arr);
// // ๅฎไน array ๅนถ่ทๅไฝไบไฝ็ฝฎ 0 ็ๅ
็ด ็ฑปๅ
// std::array<int, 10> data{0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
// using T = std::tuple_element<0, std::array<int, 10>>::type; // int
// std::cout << std::boolalpha;
// std::cout << std::is_same<T, int>::value << '\n';
// const auto const_data = data;
// using CT = std::tuple_element<0, decltype(const_data)>::type; // const int
// // tuple_element ็็ปๆๅๅณไบไปฟ tuple ็ฑปๅ็ cv ้ๅฎ
// std::cout << std::is_same<T, CT>::value << '\n';
// std::cout << std::is_same<CT, const int>::value << '\n';
//7.่ฟญไปฃๅจiterator
array<int, 5> arr1 = {1,2,3,4,5};
//decltype(arr1) :: const_iterator c_iter;
// decltype(arr1) :: iterator iter;
// for (iter = arr1.begin();iter!=arr1.end();iter++)//ๅฏ่ฏปๅฏๅ
// {
// *iter = 2;
// cout << "*iter = " << *iter << endl;
// }
// for (auto c_iter = arr1.cbegin(); c_iter != arr1.cend(); c_iter++) //ๅช่ฏป๏ผไธๅฏๅ
// {
// //*c_iter = 1;
// cout << "*c_iter = " << *c_iter << endl;
// }
for (auto c_iter = arr1.rbegin(); c_iter != arr1.rend(); c_iter++) //ๅช่ฏป๏ผไธๅฏๅ
{
//*c_iter = 1;
cout << "*c_iter = " << *c_iter << endl;
}
for (auto c_iter = arr1.end()-1; c_iter != arr1.begin()-1; c_iter--) //ๅช่ฏป๏ผไธๅฏๅ
{
//*c_iter = 1;
cout << "*c_iter = " << *c_iter << endl;
}
return 0;
}
|
3cdcdf11beb7b5e1f5823aade0d4f2d047b012a0 | 2d567eec6aa1a1dd743a9723413fda0f6fe3476e | /xolotl/perf/include/xolotl/perf/os/OSTimer.h | dde651dc1d1688a0c5d37929447457d27eb2a339 | [
"BSD-3-Clause"
] | permissive | ORNL-Fusion/xolotl | 1b46ec711b0544eae74af441a056c6c13e8b3dd6 | 7693b656c39f9d909b70bc1ecf93686888223ae5 | refs/heads/stable | 2023-08-17T15:16:36.937955 | 2023-06-29T14:29:06 | 2023-06-29T14:29:06 | 120,320,792 | 14 | 19 | NOASSERTION | 2022-11-07T20:19:04 | 2018-02-05T15:10:06 | C++ | UTF-8 | C++ | false | false | 1,899 | h | OSTimer.h | #ifndef OSTIMER_H
#define OSTIMER_H
#include <chrono>
#include <limits>
#include <xolotl/perf/ITimer.h>
namespace xolotl
{
namespace perf
{
namespace os
{
/**
* A timer that measures how long something takes to execute.
* Uses an operating system/runtime timer interface.
*/
class OSTimer : public ITimer
{
private:
//! Concise name for type of our time source.
using Clock = std::chrono::system_clock;
//! Concise name for type of a timestamp.
using Timestamp = std::chrono::time_point<Clock>;
//! Concise name for type of a difference between timestamps.
using Duration = std::chrono::duration<ITimer::ValType>;
//! The timestamp value we use to indicate startTime is invalid.
static const Timestamp invalidTimestamp;
//! The timer's value.
ITimer::ValType val;
//! When the timer was started.
//! Will be invalidTimestamp if timer is not running.
Timestamp startTime;
public:
OSTimer() : val(0), startTime(invalidTimestamp)
{
}
virtual ~OSTimer(void)
{
}
/**
* \see ITimer.h
*/
void
start(void) override;
/**
* \see ITimer.h
*/
void
stop(void) override;
/**
* \see ITimer.h
*/
void
reset(void) override;
/**
* Determine if the Timer is currently running.
*
* @return true if the Timer is running, false otherwise.
*/
virtual bool
isRunning(void) const
{
return (startTime != invalidTimestamp);
}
/**
* \see ITimer.h
*/
ITimer::ValType
getValue(void) const override
{
return val;
}
/**
* \see ITimer.h
*/
std::string
getUnits(void) const override;
/**
* Add the given Timer's value to my value.
*
* @param t The timer whose value should be added to my value.
* @return Myself after adding the given timer's value.
*/
virtual ITimer&
operator+=(const ITimer& t)
{
val += t.getValue();
return *this;
}
};
} // namespace os
} // namespace perf
} // namespace xolotl
#endif // OSTIMER_H
|
696309ff7419f21be6f421e65574f174d305c6cc | 1fc8f3ad84f27df094a6a8e340c5a1f7f8744272 | /Leet-Code-Question/longest-common-prefix/longest-common-prefix.cpp | c7864b45fc367e17304858f105689184f36aabe5 | [] | no_license | vaibhavarora14/Ace-The-Code | 528501d7a76b9e36791de54d99c9cecebafb7fa8 | 9c325845c66daab9d286a2709b91d1e2f8e82c74 | refs/heads/master | 2023-06-26T10:12:13.772611 | 2021-07-24T12:01:07 | 2021-07-24T12:01:07 | 389,092,773 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 627 | cpp | longest-common-prefix.cpp | class Solution {
public:
string longestCommonPrefix(vector<string>& strs) {
int numberOfString = strs.size();
if(numberOfString<1){
return "";
}
int wordsInNumber = strs[0].size();
int counter=0;
string ans="";
bool checkFlag=true;
for(int j=0;j<wordsInNumber;j++){
for(int i=0;i<numberOfString-1;i++){
checkFlag = checkFlag && (strs[i][j]==strs[i+1][j]);
}
if(checkFlag){
ans=ans+strs[0][j];
}
}
return ans;
}
}; |
f1dee912c99677c1990a41e55a39afb1d5b6506d | 3593844fd237df13b8f1839beab949f57de27307 | /Codeforces/432-1/A.cpp | 30ae33c5e6a94873dc1ade35dd5fd780c80eace6 | [] | no_license | juniorandrade1/Competitive-Programming | d1330cdde646e770c423abf474c0bfc7ef04c4c0 | 75c11dcfef38088e2367508acfe507f85cfbd36b | refs/heads/master | 2021-01-10T09:32:17.051979 | 2018-05-27T20:06:26 | 2018-05-27T20:06:26 | 51,162,932 | 1 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 1,252 | cpp | A.cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
typedef unsigned long long ull;
typedef pair< ll, ll > ii;
typedef vector< ll > vi;
typedef vector< ii > vii;
#define INF 0x3F3F3F3F
#define LINF 0x3F3F3F3F3F3F3F3FLL
#define pb push_back
#define mp make_pair
#define pq priority_queue
#define LSONE(s) ((s)&(-s))
#define DEG_to_RAD(X) (X * PI / 180)
#define F first
#define S second
#ifdef ONLINE_JUDGE
#define debug(args...)
#else
#define debug(args...) fprintf(stderr,args)
#endif
#define pi acos(-1.0)
const int N = 1001;
int n;
ll v[N][5];
int main() {
scanf("%d", &n);
for(int i = 0; i < n; ++i) for(int j = 0; j < 5; ++j) scanf("%lld", &v[i][j]);
if(n > 100) puts("0");
else {
vi sol;
for(int a = 0; a < n; ++a) {
bool ok = true;
for(int b = 0; b < n; ++b) {
for(int c = 0; c < n; ++c) {
if(a == b || a == c || b == c) continue;
ll dot = 0;
for(int k = 0; k < 5; ++k) dot += (v[b][k] - v[a][k]) * (v[c][k] - v[a][k]);
if(dot > 0) ok = false;
}
}
if(ok) sol.pb(a);
}
printf("%d\n", (int)sol.size());
for(int i = 0; i < (int)sol.size(); ++i) printf("%lld\n", sol[i] + 1);
}
return 0;
} |
9f8002708dbc42f924466f7536c085de6ccdd55e | 6057f75efcc4131ca6f92ae2157b4a9bf1ba1379 | /Example/main.cpp | 5ed061eb8171aa33f89e54881e63f095e4323dba | [] | no_license | fadyosman/Polycode-Qt | 312603a16a4f02f746ca063c35fbae45c494d515 | 0630c5356a6bfdb907cf591dcaa7c0edd5b0b954 | refs/heads/master | 2021-01-10T12:09:28.232685 | 2015-12-18T16:14:18 | 2015-12-18T16:14:18 | 48,244,155 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,289 | cpp | main.cpp | #include <QApplication>
#include "polycodewidget.h"
#include <PolycodeView.h>
#include <PolyScene.h>
#include <PolyScenePrimitive.h>
#include <PolyCamera.h>
#include <PolySceneImage.h>
#include <PolyCoreServices.h>
#include <PolyResourceManager.h>
#include "inputhandlers.h"
#include <QTimer>
#include <PolySceneLabel.h>
using namespace Polycode;
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
PolycodeView *view = new PolycodeView("Space Fighter",true);
PolycodeWidget *widget = new PolycodeWidget(view, 800,600,false,true,0,0,90, 0, true);
Scene *scene = new Scene();
ScenePrimitive *ground = new ScenePrimitive(ScenePrimitive::TYPE_PLANE, 5,5);
ground->setColor(1.0,0.0,0.0,1.0);
scene->addEntity(ground);
scene->clearColor = Color(1.0,0.0,0.0,0.0);
InputHandler handler(widget,scene);
ScenePrimitive *box = new ScenePrimitive(ScenePrimitive::TYPE_BOX, 1,1,1);
box->setColor(0.0,1.0,0.0,1.0);
box->setPosition(0.0, 0.5, 0.0);
scene->addEntity(box);
//scene->addEntity(image);
scene->getDefaultCamera()->setPosition(7,7,7);
scene->getDefaultCamera()->lookAt(Vector3(0,0,0));
widget->show();
QTimer timer;
QObject::connect(&timer,SIGNAL(timeout()),widget,SLOT(update()));
return a.exec();
}
|
1be696b78fcb21ee51d996cc2d20851cafb778ed | 075c94a76df453abc5d831d76493dc1249bd6804 | /Processor.h | 84390da0d31fb8ecd516c11c46f3bc0ac14409de | [] | no_license | gdrane/hw4_embedded_systems | 7c2efca7261a7af16d1424386c08a46b15d216fb | 0cd117b7dda7557781428d87289e7aaddd519d6a | refs/heads/master | 2021-01-01T06:04:38.474062 | 2011-11-16T02:55:09 | 2011-11-16T02:55:09 | 2,746,787 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,094 | h | Processor.h | #ifndef PROCESSOR_H
#define PROCESSOR_H
#define MAX_BUFFER_SIZE 4096
#include "Graph.h"
#include "Scheduler.h"
// -- Variables --
signed long outBuffer[MAX_BUFFER_SIZE] __attribute__ ((section("AHBSRAM1")));
class Processor {
public:
Processor(Graph* topology, Scheduler* scheduler, int buff_length) {
_topology = topology;
_scheduler = scheduler;
_out_buffer_counter = 0;
_in_buffer_length = buff_length;
}
void RunProcess() {
while(_cur_buf_count < _in_buffer_length) {
// Execute one clock according to schedule
ExecuteSchedule();
}
}
void ExecuteSchedule() {
// Execute As per the schedule
int* schedulearr = _scheduler->getSchedule();
for(int i = 0; i < _scheduler->getScheduleLength(); ++i) {
if(_topology->getNode(schedulearr[i])->get_node_id() == 'I') {
// Push input to the I node, Edge 0 is input to Node I
_topology->getEdge(0)->push(inBuffer[_cur_buf_count++]);
}
_topology->processNode(schedulearr[i]);
// check to see if output has been reached yet
if(_topology->getNode(schedulearr[i])->get_node_id() == 'O') {
// Pull output to the O node, Edge numnodes + 1 outputs to Node O
outBuffer[_out_buffer_counter] = _topology->getEdge(_topology->getNumNodes() + 1)->pop();
pc.printf("%d\n\r", outBuffer[_out_buffer_counter]);
_out_buffer_counter = (_out_buffer_counter + 1) % MAX_BUFFER_SIZE;
}
}
}
void SetInBuffer(int *inBuffer) {
_in_buffer = inBuffer;
_cur_buf_count = 0;
}
private:
Graph *_topology;
Scheduler *_scheduler;
int *_in_buffer;
int _out_buffer_counter;
int _in_buffer_length;
int _cur_buf_count;
};
#endif
|
c3d829b6ce8a9038cb4c5dba807ffbdc789d20dc | 8b4a9e04e65c9ef7283b4e33421817c49c5b3173 | /head/src/nau/material/iBuffer.cpp | 97b4a396d33ccadf1f5b03357d52b19ffe48f9b1 | [
"MIT"
] | permissive | david-leal/nau | 365f0bff16349345039a74de544d12433d74c23a | 57a55567e35ce6b095d15e4aed064160a79aacb1 | refs/heads/master | 2020-12-02T19:48:06.654597 | 2016-09-19T21:41:13 | 2016-09-19T21:41:13 | 46,269,171 | 0 | 0 | null | 2015-11-16T10:57:46 | 2015-11-16T10:57:46 | null | ISO-8859-1 | C++ | false | false | 1,843 | cpp | iBuffer.cpp | #include "nau/material/iBuffer.h"
#ifdef NAU_OPENGL
#include "nau/render/opengl/glBuffer.h"
#endif
#include "nau.h"
using namespace nau::render;
using namespace nau;
bool
IBuffer::Init() {
// UINT
Attribs.add(Attribute(SIZE, "SIZE", Enums::DataType::UINT, false, new NauUInt(0)));
Attribs.add(Attribute(STRUCT_SIZE, "STRUCT_SIZE", Enums::DataType::UINT, true, new NauUInt(0)));
// INT
Attribs.add(Attribute(ID, "ID", Enums::DataType::INT, true, new NauInt(-1)));
// ENUM
Attribs.add(Attribute(CLEAR, "CLEAR", Enums::DataType::ENUM, false, new NauInt(NEVER)));
Attribs.setDefault("CLEAR", NauInt(NEVER));
Attribs.listAdd("CLEAR", "NEVER", NEVER);
Attribs.listAdd("CLEAR", "BY_FRAME", BY_FRAME);
// UIVEC3
Attribs.add(Attribute(DIM, "DIM", Enums::DataType::UIVEC3, false, new uivec3(1)));
#ifndef _WINDLL
// for direct access
NAU->registerAttributes("BUFFER", &Attribs);
// for access through material
NAU->registerAttributes("BUFFER_MATERIAL", &Attribs);
#endif
return true;
}
AttribSet IBuffer::Attribs;
bool IBuffer::Inited = Init();
IBuffer*
IBuffer::Create(std::string label)
{
#ifdef NAU_OPENGL
return new GLBuffer (label);
#elif NAU_DIRECTX
//Meter funรงรฃo para DirectX
#endif
}
std::string &
IBuffer::getLabel() {
return m_Label;
}
void
IBuffer::setStructure(std::vector<Enums::DataType> s) {
m_Structure = s;
int sts = 0;
for (auto t : m_Structure) {
sts += Enums::getSize(t);
}
setPropui(STRUCT_SIZE, sts);
}
std::vector<Enums::DataType> &
IBuffer::getStructure() {
return m_Structure;
}
void
IBuffer::appendItemToStruct(Enums::DataType dt) {
int card = Enums::getCardinality(dt);
Enums::DataType bdt = Enums::getBasicType(dt);
for (int i = 0; i < card; ++i)
m_Structure.push_back(bdt);
} |
9529cc8ed9aabb320a86214771c2cd053e99db1b | a92b18defb50c5d1118a11bc364f17b148312028 | /src/prod/src/api/wrappers/ComTransaction.h | 2f9a7f557e722010184e6d03ed5a6e687f4e795e | [
"MIT"
] | permissive | KDSBest/service-fabric | 34694e150fde662286e25f048fb763c97606382e | fe61c45b15a30fb089ad891c68c893b3a976e404 | refs/heads/master | 2023-01-28T23:19:25.040275 | 2020-11-30T11:11:58 | 2020-11-30T11:11:58 | 301,365,601 | 1 | 0 | MIT | 2020-11-30T11:11:59 | 2020-10-05T10:05:53 | null | UTF-8 | C++ | false | false | 1,988 | h | ComTransaction.h | // ------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License (MIT). See License.txt in the repo root for license information.
// ------------------------------------------------------------
#pragma once
namespace Api
{
// {4CC6E05E-E48F-4C28-B136-CB8C27A4B4BB}
static const GUID CLSID_ComTransaction =
{ 0x4cc6e05e, 0xe48f, 0x4c28, { 0xb1, 0x36, 0xcb, 0x8c, 0x27, 0xa4, 0xb4, 0xbb } };
class ComTransaction :
public IFabricTransaction,
private ComTransactionBase
{
DENY_COPY(ComTransaction)
BEGIN_COM_INTERFACE_LIST(ComTransaction)
COM_INTERFACE_ITEM(IID_IFabricTransaction, IFabricTransaction)
COM_INTERFACE_ITEM(CLSID_ComTransaction, ComTransaction)
COM_DELEGATE_TO_BASE_ITEM(ComTransactionBase)
END_COM_INTERFACE_LIST()
public:
ComTransaction(ITransactionPtr const & impl);
virtual ~ComTransaction();
ITransactionPtr const & get_Impl() const { return impl_; }
//
// IFabricTransactionBase methods
//
const FABRIC_TRANSACTION_ID *STDMETHODCALLTYPE get_Id( void);
FABRIC_TRANSACTION_ISOLATION_LEVEL STDMETHODCALLTYPE get_IsolationLevel( void);
//
// IFabricTransaction methods
//
HRESULT STDMETHODCALLTYPE BeginCommit(
/* [in] */ DWORD timeoutMilliseconds,
/* [in] */ IFabricAsyncOperationCallback *callback,
/* [retval][out] */ IFabricAsyncOperationContext **context);
HRESULT STDMETHODCALLTYPE EndCommit(
/* [in] */ IFabricAsyncOperationContext *context,
/* [retval][out] */ FABRIC_SEQUENCE_NUMBER *commitSequenceNumber);
void STDMETHODCALLTYPE Rollback( void);
private:
class CommitOperationContext;
private:
ITransactionPtr impl_;
};
}
|
966b4e6858564d2e7b083937aa00c0bb13138878 | 3ee965a45af942a4f330930f558336557be0845c | /c_compiler/c_compiler/c_ast_expr_unary.hpp | e9f4c4307a412d66133a3ace4f6b39f650aa4a11 | [] | no_license | tomhartley/c_compiler | 5e7ee72eced460d10ae027af9146ed07091d5350 | ffacc4fb6d04d0c11306531d6e946f85ea8c289f | refs/heads/master | 2021-01-10T02:43:33.046089 | 2016-03-26T13:24:24 | 2016-03-26T13:24:24 | 54,780,152 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 253 | hpp | c_ast_expr_unary.hpp | //
// c_ast_expr_unary.hpp
// c_compiler
//
// Created by Tom on 25/03/2016.
// Copyright ยฉ 2016 Tom Hartley. All rights reserved.
//
#ifndef c_ast_expr_unary_hpp
#define c_ast_expr_unary_hpp
#include <stdio.h>
#endif /* c_ast_expr_unary_hpp */
|
6a97ed17daf0d2d9bdc162d5d22b59e82da2f853 | 3f9a0a2c460ca2c36409e64efc553f82404eb0b7 | /World_Biome.cpp | 481ba1a9c1173f0fea141de1db59d7ffc239c18f | [] | no_license | RyanBabij/WorldSim | 9bdeaae850e96c44f6c16a24d8edecef24ff93d5 | 148a909e662b854d759f56d4305fd88eab5fb77c | refs/heads/master | 2023-03-06T17:28:33.626888 | 2023-03-04T04:54:26 | 2023-03-04T04:54:26 | 100,097,164 | 24 | 2 | null | 2020-07-13T08:54:33 | 2017-08-12T07:36:21 | C++ | UTF-8 | C++ | false | false | 9,065 | cpp | World_Biome.cpp | #pragma once
#ifndef WORLDSIM_WORLD_BIOME_CPP
#define WORLDSIM_WORLD_BIOME_CPP
/* WorldSim: World_Biome.cpp
#include "World_Biome.cpp" */
/**
Implementation of World_Biome.hpp
*/
#include "World_Biome.hpp"
#include "Creature_Manager.hpp"
#include <Game/WorldGenerator/WorldGenerator2.hpp>
#include <Container/Table/TableInterface.hpp>
#include <System/Sleep/Sleep.hpp>
World_Biome::World_Biome()
{
name="";
size=0;
rng.seed(globalRandom.rand32());
isGenerated=false;
threadAccess=false;
isFloraGenerated=false;
id=-1;
averageX=-1;
averageY=-1;
centerX=-1;
centerY=-1;
}
World_Biome::~World_Biome()
{
}
// generate entire biome including terrain, flora, etc.
// this seems to not actually be called when entering Worldsim.
void World_Biome::generate(const unsigned short int sleepTime)
{
if ( id == -1 )
{
return;
}
generateFlora();
generateCreatures();
generateLocals(sleepTime);
isGenerated=true;
}
// generate all local maps for this biome
// map generation will be done per-biome rather than per tile
void World_Biome::generateLocals(const unsigned short int sleepTime)
{
if ( id == -1 )
{
return;
}
SaveFileManager sfm;
for (int i=0; i<vMap.size(); ++i)
{
sleep (sleepTime);
if ( QUIT_FLAG )
{
return;
}
short int gX = vMap(i)->globalX;
short int gY = vMap(i)->globalY;
std::cout<<"global coords: "<<gX<<", "<<gY<<"\n";
World_Local* wl0 = 0;
if (world.aWorldTile.isSafe(gX-1,gY+1))
{
wl0 = &world.aWorldTile(gX-1,gY+1);
}
World_Local* wl1 = 0;
if (world.aWorldTile.isSafe(gX,gY+1))
{
wl1 = &world.aWorldTile(gX,gY+1);
}
World_Local* wl2 = 0;
if (world.aWorldTile.isSafe(gX+1,gY+1))
{
wl2 = &world.aWorldTile(gX+1,gY+1);
}
World_Local* wl3 = 0;
if (world.aWorldTile.isSafe(gX-1,gY))
{
wl3 = &world.aWorldTile(gX-1,gY);
}
World_Local* wl4 = 0;
if (world.aWorldTile.isSafe(gX+1,gY))
{
wl4 = &world.aWorldTile(gX+1,gY);
}
World_Local* wl5 = 0;
if (world.aWorldTile.isSafe(gX-1,gY-1))
{
wl5 = &world.aWorldTile(gX-1,gY-1);
}
World_Local* wl6 = 0;
if (world.aWorldTile.isSafe(gX,gY-1))
{
wl6 = &world.aWorldTile(gX,gY-1);
}
World_Local* wl7 = 0;
if (world.aWorldTile.isSafe(gX+1,gY-1))
{
wl7 = &world.aWorldTile(gX+1,gY-1);
}
vMap(i)->biome=this;
vMap(i)->generate(true,wl0,wl1,wl2,wl3,wl4,wl5,wl6,wl7);
vMap(i)->active=true;
vMap(i)->initialized=true;
std::string mapName = DataTools::toString(vMap(i)->globalX) + "-" + DataTools::toString(vMap(i)->globalY);
SaveChunk chonk (mapName);
chonk.add(vMap(i)->getSaveData());
sfm.addChunk(chonk);
vMap(i)->unload();
}
// savefile can be the biomeID
std::string biomePath = currentSavePath + "/" + DataTools::toString(id) + ".dat";
//std::cout<<"saving to: "<<biomePath<<"\n";
sfm.saveToFile(biomePath);
}
void World_Biome::generateFlora()
{
//each biome should have at least 3 floras: 1 common, 1 medium, 1 rare.
// Each biome should have a base flora which will normally be trees.
// Larger biomes should have more. Maximum amount of flora types in a biome is 16 (4 bits).
// In future flora should have non-random spawning rules, for example some flora will only
// spawn near trees.
// Flora will be given unique names for flavour.
// flora diversity will be set based on biome size, however there must be a minimum of 1 common and 1 uncommon flora.
// additional flora is up to sqrt(size)
// it would be better if we first determine the number of valid spots to place flora, before generating flora types.
// that way diversity can be tied to the flora capacity of the biome
// if we already generated flora on this biome, abort.
if (isFloraGenerated) {
return;
}
if (size==0) {
return;
}
if (type==OCEAN || type == ICE) {
return;
}
for (int i=0; i<vMap.size(); ++i)
{
vMap(i)->biome = this;
}
unsigned int minFlora = sqrt(size)/1.5;
if ( minFlora < 3 ) {
minFlora=3;
}
unsigned int floraAmount = minFlora+rng.rand32(1+(sqrt(size)/1.5));
if (floraAmount < 3) {
floraAmount=3;
}
if (floraAmount > 255) {
floraAmount = 255;
}
// Each biome should have up to 3 hardcoded flora. For example deserts will always have Cactuses.
// only additional flora will be randomly generated.
// Flora are all statics, therefore there is max 1 flora per tile.
//std::cout<<"Generating flora\n";
floraManager.generate(floraAmount);
// // assign local ids to the flora (1-255)
// this loop no longer works because we are storing Flora in FloraManager...
// for (int i=0;i<vFlora.size();++i)
// {
// vFlora(i)->id=i+1;
// vFlora(i)->spawnWeight = 10;
// vFlora(i)->setFoodValues(0,0,0);
// std::cout<<"SET BIOME\n";
// vFlora(i)->biome = this;
// }
for (int i=0; i<floraManager.vFlora.size(); ++i)
{
//std::cout<<"Actual flora loop\n";
floraManager.vFlora(i)->biome = this;
}
// save the flora lookup list (in future we could probably hold the whole list in memory)
SaveFileManager sfm;
//std::string mapName = DataTools::toString(vMap(i)->globalX) + "-" + DataTools::toString(vMap(i)->globalY);
SaveChunk chonk ("BIOME");
chonk.add("FLORA LIST GOES HERE");
//chonk.add(vMap(i)->getSaveData());
sfm.addChunk(chonk);
// savefile can be the biomeID + f for Flora
std::string biomePath = currentSavePath + "/" + DataTools::toString(id) + "f.dat";
//std::cout<<"Saving Flora lookup to: "<<biomePath<<"\n";
sfm.saveToFile(biomePath);
isFloraGenerated=true;
}
void World_Biome::generateCreatures()
{
// generate the creatures which exist in this biome
if (size==0) {
return;
}
if (type==OCEAN || type == ICE) {
return;
}
for (int i=0; i<vMap.size(); ++i)
{
vMap(i)->biome = this;
}
unsigned int minCreatures = sqrt(size)/1.5;
if ( minCreatures < 3 ) {
minCreatures=3;
}
unsigned int nCreatures = minCreatures+rng.rand32(1+(sqrt(size)/1.5));
if (nCreatures < 3) {
nCreatures=3;
}
if (nCreatures > 255) {
nCreatures = 255;
}
creatureManager.generate(nCreatures);
// assign local ids to the creatures (1-255)
for (int i=0; i<creatureManager.vSpecies.size(); ++i)
{
creatureManager.vSpecies(i)->biome = this;
//vCreature(i)->id=i+1;
//vCreature(i)->spawnWeight = 10;
//vCreature(i)->setFoodValues(0,0,0);
}
// save the flora lookup list (in future we could probably hold the whole list in memory)
SaveFileManager sfm;
//std::string mapName = DataTools::toString(vMap(i)->globalX) + "-" + DataTools::toString(vMap(i)->globalY);
SaveChunk chonk ("BIOME");
chonk.add("CREATURE LIST GOES HERE");
//chonk.add(vMap(i)->getSaveData());
sfm.addChunk(chonk);
// savefile can be the biomeID + f for Flora
std::string biomePath = currentSavePath + "/" + DataTools::toString(id) + "c.dat";
//std::cout<<"Saving Flora lookup to: "<<biomePath<<"\n";
sfm.saveToFile(biomePath);
}
// pick a flora type from the weighted list to spawn
Flora* World_Biome::getFlora()
{
return floraManager.get();
unsigned long int cumulativeProb = 0;
for (int i=0; i<vFlora.size(); ++i)
{
cumulativeProb += vFlora(i)->spawnWeight;
}
if ( cumulativeProb == 0 )
{
return 0;
}
unsigned long int spawnChoice = rng.rand32(cumulativeProb-1);
cumulativeProb=0;
for (int i=0; i<vFlora.size(); ++i)
{
cumulativeProb += vFlora(i)->spawnWeight;
if (spawnChoice <= cumulativeProb)
{
return vFlora(i);
}
}
return 0;
}
// pick a creature type from the weighted list to spawn
Creature* World_Biome::getCreature()
{
//return 0;
//return new Creature_Deer;
Creature_Species* c = creatureManager.get();
if ( c )
{
return c->spawn();
}
return 0;
}
Vector <Flora*> * World_Biome::getAllFloraTypes()
{
return &floraManager.vFlora;
//return 0;
}
Vector <Creature_Species*> * World_Biome::getAllCreatureTypes()
{
return &creatureManager.vSpecies;
//return 0;
}
// Uses a safe rolling average to prevent overflow.
void World_Biome::getAverageCoordinates(/*Vector <HasXY*> * vXY*/)
{
int n = 0;
int n2 = 0;
averageX = 0;
averageY = 0;
for ( int i=0; i<vXY.size(); ++i)
{
double deltaX = vXY(i).x - averageX;
averageX += deltaX/++n;
double deltaY = vXY(i).y - averageY;
averageY += deltaY/++n2;
}
// now find the tile closest to these average points.
double closestDistance = -1;
for ( int i=0; i<vXY.size(); ++i)
{
double deltaX = abs(vXY(i).x - averageX);
double deltaY = abs(vXY(i).y - averageY);
if ( closestDistance == -1 || closestDistance > deltaX+deltaY)
{
centerX = vXY(i).x;
centerY = vXY(i).y;
closestDistance = deltaX+deltaY;
}
}
}
void World_Biome::addMap(World_Local* map)
{
map->biome=this;
vMap.push(map);
}
// TableInterface
std::string World_Biome::getColumn(std::string _column)
{
if ( _column=="name" )
{
return name;
}
else if ( _column=="size" )
{
return DataTools::toString(size);
}
else if ( _column=="type" )
{
return WorldGenerator2::biomeName[type];
}
return "?";
}
// TableInterface
std::string World_Biome::getColumnType(std::string _column)
{
if ( _column == "size" )
{
return "number";
}
return "string";
}
#endif |
68aa6691e6ce3fbcba88d644bd8a2a9dd38cd9fb | 6b2a8dd202fdce77c971c412717e305e1caaac51 | /solutions_5686275109552128_1/C++/tckwok/b.cpp | ee9e79ea1490860bbd6e102ca0dde6a846e886e8 | [] | no_license | alexandraback/datacollection | 0bc67a9ace00abbc843f4912562f3a064992e0e9 | 076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf | refs/heads/master | 2021-01-24T18:27:24.417992 | 2017-05-23T09:23:38 | 2017-05-23T09:23:38 | 84,313,442 | 2 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 591 | cpp | b.cpp | #include <cstdio>
#define N 1024
int T, n, d[N], ans, t;
bool ok(int y, int x) {
int t = 0;
for (int i = 0; i < n; ++i)
t += (d[i] - 1) / y;
return t <= x;
}
int f(int x) {
int lo = 0, md, hi = N;
while (lo + 1 < hi) {
md = lo + hi >> 1;
if (ok(md, x)) hi = md;
else lo = md;
}
return hi;
}
int main() {
scanf("%d", &T);
for (int r = 1; r <= T; ++r) {
scanf("%d", &n);
for (int i = 0; i < n; ++i)
scanf("%d", d + i);
ans = N;
for (int i = 0; i < N; ++i) {
t = f(i) + i;
if (t < ans)
ans = t;
}
printf("Case #%d: %d\n", r, ans);
}
return 0;
}
|
6b1e1c85d8da31ce3c18bf635839e21cabce8505 | 2dd0253e5f7331e2346cb44aebabc925c5003519 | /include/kernels/common/third/dragon/op_kernel.h | 863ab7e1939e8a904935f91e65f4252fb74e85ce | [] | no_license | KangLin/TenniS | 06e22b734c08781abf3bcb24abeceda777584e6c | d2c44ab369685450beb18fc83685f9e589bb3f35 | refs/heads/master | 2023-07-30T14:11:25.828834 | 2021-10-03T08:49:52 | 2021-10-03T08:49:52 | 412,299,971 | 0 | 0 | null | 2021-10-01T02:35:24 | 2021-10-01T02:35:23 | null | UTF-8 | C++ | false | false | 1,298 | h | op_kernel.h | //
// Created by kier on 2019/9/6.
//
#ifndef TENSORSTACK_THIRD_DRAGON_OP_KERNEL_H
#define TENSORSTACK_THIRD_DRAGON_OP_KERNEL_H
#include "utils/log.h"
#include "core/memory.h"
#include "core/tensor.h"
#include "core/tensor_builder.h"
#include "frontend/intime.h"
#include "type_meta.h"
namespace ts {
namespace dragon {
namespace kernel {
template<typename A, typename B, typename Context>
inline void TypeA2B(size_t count, const A *src, B *dst, Context *ctx) {
auto memory_device = ctx->memory_device();
ts::Tensor SRC(ts::Memory(memory_device, const_cast<A *>(src), count * sizeof(A)),
ts::Tensor::Prototype(dtypeid<A>::id, {int(count)}));
ts::Tensor DST;
if (TypeMeta::Id<Context>() == TypeMeta::Id<CPUContext>()) {
DST = tensor::cast(dtypeid<B>::id, SRC);
} else if (TypeMeta::Id<Context>() == TypeMeta::Id<CUDAContext>()) {
DST = intime::cast(SRC, dtypeid<B>::id);
}
ts::memcpy(dst, memory_device, count * sizeof(B),
DST.data(), memory_device, count * sizeof(B));
}
}
}
}
#endif //TENSORSTACK_THIRD_DRAGON_OP_KERNEL_H
|
6889dbe53251da22af3e45eefd4dc9d6a5983865 | ef173293604c8f2e844b07a5614820c6e805ff01 | /Hardware/LinkITONE/send_and_receive.ino | f9e1a5e148b7d38629de0f219a33c27b5f86cdfa | [] | no_license | Soham-P/ParkCure | 4b3e9221a99e5ca2162b40e4b032afd784e6c1ef | 46ccb776a946a1edf9374791791c5e6a521b9870 | refs/heads/master | 2020-05-16T00:39:51.983603 | 2019-04-21T21:54:15 | 2019-04-21T21:54:15 | 182,585,359 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 913 | ino | send_and_receive.ino | #include <LGSM.h>
String message;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
while(!LSMS.ready())
delay(1000);
Serial.println("SIM initialized!");
//LSMS.beginSMS("5199952026");
}
void loop() {
LSMS.beginSMS("5199952026");
// put your main code here, to run repeatedly:
char buf[20];
int v;
//while (Serial.available() == 0) {}
message = Serial.readString(); // Save user input in the message variable
LSMS.print(message);
LSMS.endSMS();
if(LSMS.available())
{
Serial.println("There is a new message.");
LSMS.remoteNumber(buf, 20);
Serial.print("Number:");
Serial.println(buf);
Serial.print("Content:");
while(true)
{
v = LSMS.read();
if(v < 0)
break;
Serial.print((char)v);
}
Serial.println();
LSMS.flush();
}
delay(1000);
}
|
0e01f817ee187ef70e76bbc51f9e2d5b9765350c | f4e4c477dcaba741b0083256ac515e77187fc17c | /src/geom_core/FitModelMgr.h | 7e42dab1b66e5fe26a234c6a5a45a872e54297b0 | [
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-public-domain"
] | permissive | ramcdona/OpenVSP | 50ede7ea2698da368d1584780c4269637c4ac588 | c011578175da93a5f03cb490b1518c6f91bf439d | refs/heads/main | 2023-08-31T20:37:43.025181 | 2023-08-01T23:52:15 | 2023-08-01T23:52:15 | 3,179,255 | 6 | 3 | NOASSERTION | 2020-11-09T03:29:22 | 2012-01-14T17:58:14 | C | UTF-8 | C++ | false | false | 6,380 | h | FitModelMgr.h | //
// This file is released under the terms of the NASA Open Source Agreement (NOSA)
// version 1.3 as detailed in the LICENSE file which accompanies this software.
//
// FitModelMgr.h: interface for the Fit Model Singleton.
//
//////////////////////////////////////////////////////////////////////
#if !defined(FITMODEL__INCLUDED_)
#define FITMODEL__INCLUDED_
#include "VehicleMgr.h"
#include "Vehicle.h"
#include "Geom.h"
#include "Parm.h"
#include <vector>
#include <string>
#define MIN_FIT_FILE_VER 1
#define CURRENT_FIT_FILE_VER 1
using std::string;
using std::vector;
struct SurfData
{
Geom* m_GeomPtr;
bool m_UClosed;
bool m_WClosed;
};
class TargetPt
{
public:
TargetPt()
{
m_UType = 0;
m_WType = 0;
m_UClosed = false;
m_WClosed = false;
m_MatchGeom = "";
}
virtual ~TargetPt()
{
}
enum { FIXED, FREE };
vec3d GetPt()
{
return m_Pt;
}
void SetPt( const vec3d &p )
{
m_Pt = p;
}
vec2d GetUW()
{
return m_UW;
}
void SetUW( const vec2d & uw )
{
m_UW = uw;
}
string GetMatchGeom()
{
return m_MatchGeom;
}
void SetMatchGeom( const string &geomid )
{
m_MatchGeom = geomid;
}
int GetUType()
{
return m_UType;
}
void SetUType( int type )
{
m_UType = type;
}
int GetWType()
{
return m_WType;
}
void SetWType( int type )
{
m_WType = type;
}
bool IsUClosed() const
{
return m_UClosed;
}
void SetUClosed( bool uClosed )
{
m_UClosed = uClosed;
}
bool IsWClosed() const
{
return m_WClosed;
}
void SetWClosed( bool wClosed )
{
m_WClosed = wClosed;
}
xmlNodePtr WrapXml( xmlNodePtr & node );
xmlNodePtr UnwrapXml( xmlNodePtr & node );
vec3d GetMatchPt();
vec3d GetMatchPt(Geom* matchgeom);
vec3d CalcDelta();
vec3d CalcDelta( Geom* matchgeom );
vec3d CalcDerivU( Geom* matchgeom );
vec3d CalcDerivW( Geom* matchgeom );
void SearchUW( Geom* matchgeom );
void RefineUW( Geom* matchgeom );
bool IsValid();
protected:
int m_UType;
int m_WType;
bool m_UClosed;
bool m_WClosed;
string m_MatchGeom;
vec2d m_UW;
vec3d m_Pt;
};
//==== Fit Model Manager ====//
class FitModelMgrSingleton
{
public:
static FitModelMgrSingleton& getInstance()
{
static FitModelMgrSingleton instance;
return instance;
}
virtual void Renew();
virtual bool AddCurrVar();
virtual void DelCurrVar();
virtual void DelAllVars();
bool CheckForDuplicateVar( const string & p );
virtual bool AddVar( const string& parm_id );
virtual void DelVar( const string& parm_id );
virtual void SetCurrVarIndex( int i )
{
m_CurrVarIndex = i;
}
virtual int GetCurrVarIndex()
{
return m_CurrVarIndex;
}
virtual string GetCurrVar();
virtual void CheckVars();
virtual bool SortVars();
virtual int GetNumVars()
{
return ( int )m_VarVec.size();
}
virtual string GetVar( int index );
virtual vector < string > GetVarVec()
{
return m_VarVec;
}
virtual void SetWorkingParmID( string parm_id );
virtual void ResetWorkingVar();
void AddTargetPt( TargetPt *tpt );
TargetPt* GetCurrTargetPt();
virtual TargetPt* GetTargetPt( int index );
void DelCurrTargetPt();
void DelAllTargetPts();
void ValidateTargetPts();
int GetNumTargetPt()
{
return ( int )m_TargetPts.size();
}
int GetCurrTargetPtIndex()
{
return m_CurrTargetPtIndex;
}
void SetCurrTargetPtIndex( int i )
{
m_CurrTargetPtIndex = i;
}
int GetNumOptVars()
{
return m_NumOptVars;
}
void UpdateNumOptVars();
void RefineTargetUW();
void SearchTargetUW();
void CalcMetrics( const double *x, double *y );
void CalcMetricDeriv( const double *x, double *y, double *yprm );
void UpdateDist();
int Optimize();
virtual void LoadDrawObjs( vector< DrawObj* > & draw_obj_vec );
/*
* Get Feedback Group's name.
*/
virtual std::string getFeedbackGroupName();
/*!
* Process feedbacks.
*/
void SelectPoint( string gid, int index );
void SelectAllShown();
void SelectNone();
void SelectInv();
void HideSelection();
static void HideUnselected();
void HideAll();
void HideInv();
static void ShowAll();
void SetSelectOne();
void SetSelectBox();
void AddSelectedPts( string tgtGeomID );
int GetNumSelected()
{
return m_NumSelected;
}
void SetGUIShown( bool f )
{
m_GUIShown = f;
}
bool IsGUIShown()
{
return m_GUIShown;
}
void SetSaveFitFileName( const string& fileName )
{
m_SaveFitFileName = fileName;
}
string GetSaveFitFileName()
{
return m_SaveFitFileName;
}
void SetLoadFitFileName( const string& fileName )
{
m_LoadFitFileName = fileName;
}
string GetLoadFitFileName()
{
return m_LoadFitFileName;
}
bool Save();
int Load();
double m_DistMetric;
private:
FitModelMgrSingleton();
FitModelMgrSingleton( FitModelMgrSingleton const& copy ); // Not Implemented
FitModelMgrSingleton& operator=( FitModelMgrSingleton const& copy ); // Not Implemented
void Init();
void Wype();
void BuildPtrVec();
void ParmToX( double *x );
void XtoParm( const double *x );
static double Clamp01( double x, bool closed );
bool m_GUIShown;
int m_CurrVarIndex;
int m_CurrTargetPtIndex;
string m_WorkingParmID;
string m_LastSelGeom;
int m_NumSelected;
vector < string > m_VarVec;
vector < TargetPt* > m_TargetPts;
// Normally a no-no to store Parm*'s. However, these will be short-lived and will prevent
// inner-loop lookup by the optimizer.
vector < Parm* > m_ParmPtrVec;
vector < Geom* > m_TargetGeomPtrVec;
int m_NumOptVars;
DrawObj m_TargetPntDrawObj;
DrawObj m_TargetLineDrawObj;
string m_SaveFitFileName;
string m_LoadFitFileName;
};
#define FitModelMgr FitModelMgrSingleton::getInstance()
#endif
|
185fed5c632f6d494ceba15920a11455e759a0f6 | 472d7820a5f5d9d5ab2ec150eab0c9bdeb2008c7 | /Aries/Sodi/odisim/incV60/track_out_mess.H | f52f1ecabdc56eeec817bdc00e80341efb2d2c56 | [] | no_license | slacker247/GPDA | 1ad5ebe0bea4528d9a3472d3c34580648ffb670e | fa9006d0877a691f1ddffe88799c844a3e8a669a | refs/heads/master | 2022-10-08T07:39:09.786313 | 2020-06-10T22:22:58 | 2020-06-10T22:22:58 | 105,063,261 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 382 | h | track_out_mess.H | // track_out_mess.H message file
#ifndef trkout_mess
#define trkout_mess
#include <stdio.h>
#include "headers.H"
/************************************************************************
* output message to stateless object for tracking *
************************************************************************/
class TRACK_OUT_MESS : public C_HEADER {
public:
};
#endif
|
4c061b7f49a3082bd072a7d2996b9b34f2f52371 | a21d7710b1d193ae7ee12205c2af2c47db09905e | /LeetCode/Problems/Algorithms/#2080_RangeFrequencyQueries_sol4_merge_sort_tree_1741ms_382MB.cpp | 5e0ec0faaaea77dfc2f0da5a6f1e36407f33bcd7 | [
"MIT"
] | permissive | Tudor67/Competitive-Programming | 0db89e0f8376cac7c058185b84fdf11dcb99dae8 | 827cabc45951ac33f63d1d6e69e57897207ea666 | refs/heads/master | 2023-08-19T05:22:10.451067 | 2023-08-14T21:21:51 | 2023-08-14T21:21:51 | 243,604,510 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,639 | cpp | #2080_RangeFrequencyQueries_sol4_merge_sort_tree_1741ms_382MB.cpp | class MergeSortTree{
private:
const int N;
vector<vector<int>> tree;
void mergeSort(vector<int>& v1, vector<int>& v2, vector<int>& v3){
const int N1 = v1.size();
const int N2 = v2.size();
v3.resize(N1 + N2);
int i1 = 0;
int i2 = 0;
while(i1 < N1 && i2 < N2){
if(v1[i1] <= v2[i2]){
v3[i1 + i2] = v1[i1];
i1 +=1;
}else{
v3[i1 + i2] = v2[i2];
i2 += 1;
}
}
while(i1 < N1){
v3[i1 + i2] = v1[i1];
i1 += 1;
}
while(i2 < N2){
v3[i1 + i2] = v2[i2];
i2 += 1;
}
}
void buildTree(int node, int l, int r, const vector<int>& V){
if(l == r){
tree[node] = {V[l]};
}else{
int mid = (l + r) / 2;
buildTree(2 * node + 1, l, mid, V);
buildTree(2 * node + 2, mid + 1, r, V);
mergeSort(tree[2 * node + 1], tree[2 * node + 2], tree[node]);
}
}
int query(int node, int l, int r, const int& L, const int& R, const int& VAL){
if(r < L || R < l){
return 0;
}
if(L <= l && r <= R){
if(tree[node].front() <= VAL && VAL <= tree[node].back()){
auto it1 = lower_bound(tree[node].begin(), tree[node].end(), VAL);
auto it2 = upper_bound(it1, tree[node].end(), VAL);
return it2 - it1;
}else{
return 0;
}
}
int mid = (l + r) / 2;
return query(2 * node + 1, l, mid, L, R, VAL) +
query(2 * node + 2, mid + 1, r, L, R, VAL);
}
public:
MergeSortTree(const vector<int>& V): N(V.size()){
int minLeaves = 1;
while(minLeaves < N){
minLeaves *= 2;
}
tree.resize(2 * minLeaves);
buildTree(0, 0, N - 1, V);
}
int query(const int& L, const int& R, const int& VAL){
return query(0, 0, N - 1, L, R, VAL);
}
};
class RangeFreqQuery {
private:
MergeSortTree tree;
public:
RangeFreqQuery(vector<int>& arr): tree(arr){
}
int query(int left, int right, int value) {
return tree.query(left, right, value);
}
};
/**
* Your RangeFreqQuery object will be instantiated and called as such:
* RangeFreqQuery* obj = new RangeFreqQuery(arr);
* int param_1 = obj->query(left,right,value);
*/ |
c3b316d87b2fcef16a0a789722a7cdef12e6ebf9 | f765de7084092004e7a1217a1f461a64421386f5 | /esp8285_led_string/src/Image.cpp | a325526ecff4fb5dca8ada0913a1050a5ed9c9ee | [] | no_license | agoston/ucontroller | 20ccd77f2f962290ec4f682fe69298665a498632 | 9287c157455acd9fcd3c4e0682a2d20a8f6dcaca | refs/heads/master | 2022-07-01T23:03:19.446183 | 2022-06-18T11:55:41 | 2022-06-18T11:55:41 | 48,879,004 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,399 | cpp | Image.cpp | #include "Image.h"
// #define DEVH
#include "log.h"
Image::Image() {
pixels = new AnimPixel[LEDS];
}
Image::~Image() {
delete[] pixels;
}
void Image::initBitmap(uint8_t *bitmap) {
uint16_t strip = 0;
for (uint16_t i = 0; i < COLUMNS * ROWS; i++) {
if (deadPixel(i)) continue;
uint16_t ti = translatePhysicalLayout(i);
LOGP("translate %d to %d", i, ti);
uint8_t *p = bitmap + (ti*3);
pixels[strip].init_factor(p[0], p[1], p[2], 0.1);
LOGP("%d. %ld %x %x %x", i, p - bitmap, p[0], p[1], p[2]);
if (strip++ >= LEDS) return;
}
}
void Image::initAsciiArt(char *img, uint8_t num_symbols, char *symbols, uint8_t *values) {
AnimPixel *ap = pixels;
for (uint16_t i = 0; i < COLUMNS * ROWS; i++) {
if (deadPixel(i)) continue;
uint16_t ti = translatePhysicalLayout(i);
for (uint16_t j = 0; j < num_symbols; j++) {
if (symbols[j] == img[ti]) {
ap->init(values[j*4], values[j*4+1], values[j*4+2], values[j*4+3]);
ap++;
if (ap - pixels >= LEDS) return;
break;
}
}
}
}
// convert row-continous indexing to snake pattern
uint16_t Image::translatePhysicalLayout(uint16_t index) {
uint16_t row = index / COLUMNS;
// even rows are directly mapped
if (!(row & 1)) return index;
uint16_t rowIndex = row * COLUMNS;
uint16_t column = index - rowIndex;
return rowIndex + COLUMNS - column - 1;
}
|
c1bdf4c55a64f635c35f8b86e182793f4af6407f | 5e84c48158341afa34eae19a2e0db26b11d8a267 | /trisicell/external/scistree/PhylogenyTreeBasic.h | c6544ba2c0e3bea4b7d190a269407e5cfd6387da | [
"BSD-3-Clause"
] | permissive | faridrashidi/trisicell | 53fbd97efd4121f717babd218661edbce48cb10e | eff50c7885053250656a60040612e8097c5032a1 | refs/heads/master | 2023-07-24T03:54:25.472928 | 2023-07-21T06:31:18 | 2023-07-21T06:31:18 | 342,698,508 | 6 | 2 | BSD-3-Clause | 2023-07-21T14:42:58 | 2021-02-26T20:54:06 | Python | UTF-8 | C++ | false | false | 15,999 | h | PhylogenyTreeBasic.h | #ifndef PHYLOGENY_TREE_BASIC_H
#define PHYLOGENY_TREE_BASIC_H
#include <iostream>
#include <fstream>
#include <cstdio>
#include <vector>
#include <set>
#include <string>
#include <stack>
#include <sys/types.h>
#include <time.h>
#include <unistd.h>
#include <ctime>
#include <cstdlib>
#include <cstdio>
#include "Utils.h"
using namespace std;
//*****************************************************************************
// Utility classes
//*****************************************************************************
// utilities for Newick format
class NewickUtils
{
public:
NewickUtils() {}
static void RetrieveLabelSet(const string &strNW, multiset<string> &setLabels);
static bool FindSplitIn(const string &strNW, string &strPart1, string &strPart2);
static void UpdateLabells(string &strNW, const map<string, string> &mapOldLabelToNew);
static string RemoveBrLenFromTree(string &strNW);
static void ConsolidateSinglChildChain(string &strNW);
static double GetLenAt(const string &strNW, int posLen);
};
// map between string-based taxa to integer based id (used internally by the code)
class TaxaMapper
{
public:
//
TaxaMapper();
// utility
bool IsInitialized() { return fInit; }
void SetInitialized(bool f) { fInit = f; }
void InitToDec1Mode(int numTaxa);
bool IsEmpty();
bool IsIdIn(int id);
int AddTaxaString(const string &str);
void AddTaxaStringWithId(int tid, const string &str);
int GetId(const string &str);
string GetString(const int id);
string ConvIdStringWithOrigTaxa(const string &strId);
int GetNumTaxaInMapper() const { return mapIdToStr.size(); }
void GetAllTaxaIds(set<int> &taxaIndices) const;
void GetAllTaxaStrs(set<string> &setStrs) const;
void Dump() const;
static string ExtractIdPartFromStr(const string &strIdNW);
static int GetIdFromStr(const string &strPart, TaxaMapper *pTMapper);
private:
map<string, int> mapStrToId;
map<int, string> mapIdToStr;
int curId;
bool fInit;
};
//*****************************************************************************
// Defintions and utilties class, not for external use.
// Myabe I should create a separate file for these implementation-only stuff. Later
// ****************************************************************************
typedef enum
{
PHY_TN_DEFAULT_SHAPE = 0,
PHY_TN_RECTANGLE = 1
} TREE_NODE_SHAPE;
class TreeNode
{
friend class PhylogenyTreeBasic;
friend class PhylogenyTree;
public:
TreeNode();
TreeNode(int iid);
~TreeNode();
TreeNode *Copy();
void AddChild(TreeNode *pChild, const vector<int> &labels);
void AddEdgeLabelToChild(int cIndex, int lbl);
void RemoveChild(TreeNode *pChild);
void RemoveAllChildren();
void DetachAllChildren();
void DetachSelf();
void SetLength(double len) { lenBranchAbove = len; }
double GetLength() const { return lenBranchAbove; }
void SetLabel(const string str) { label = str; }
bool IsLeaf() const { return listChildren.size() == 0; }
void AddNodeValue(int val) { nodeValues.push_back(val); }
int GetChildrenNum() const { return listChildren.size(); }
int GetNumNodesUnder(bool fInternalOnly, bool fAddNonBinary) const; // include itself if this is an internal node
int GetLevel() const; // level: leaf at 0, internal: longest path to some leaf under
TreeNode *GetChild(int i) { return listChildren[i]; }
void GetDescendentLabelSet(set<int> &labelSet);
bool IsAncesterOf(TreeNode *pAssumedDescend, int &branchIndex);
int GetNumEdgesToAncestor(TreeNode *pAssumedAncestor);
int GetID() const { return id; }
void SetID(int i) { id = i; }
string GetLabel() const { return label; }
void SetUserLabel(const string &str) { labelUserProvided = str; }
string GetUserLabel() const { return labelUserProvided; }
void RemoveLabels();
void RemoveLabelsPar();
void IncEdgeLabelsBy(int offset, bool fSub);
int GetIntLabel() const;
void SetIntLabel(int lbl);
TREE_NODE_SHAPE GetShape() { return shape; }
void SetShape(TREE_NODE_SHAPE param) { shape = param; }
void GetEdgeLabelsAtBranch(int i, vector<int> &labels) { labels = listEdgeLabels[i]; }
void GetEdgeLabelsToChild(TreeNode *pChild, vector<int> &lbls);
TreeNode *GetParent() { return parent; }
void SetParent(TreeNode *ppar) { parent = ppar; }
TreeNode *GetRoot() const;
void GetSiblings(vector<TreeNode *> &listSibs);
void GetAllChildren(set<TreeNode *> &setChildren) const;
void GetAllDescendents(set<TreeNode *> &setDescendents);
void GetAllLeavesUnder(set<TreeNode *> &setDescendents);
void GetAllLeavesIdUnder(set<int> &setDescendents);
void GetAllLeafLabeles(vector<string> &listLeafLabels);
void GetAllLeafIntLabeles(vector<int> &listLeafLabels);
void GetAllDistinctLeafLabeles(set<string> &setLeafLabels);
void GetAllDescendIntLbls(set<int> &setIntLbs);
void GetAllAncestors(set<TreeNode *> &listAncestors);
string GetShapeLabel(const set<int> &idTerms, map<int, int> &mapNodeLabel) const;
string GetShapeLabel(const set<int> &idTerms, bool fSort = true) const;
//string GetShapeLabelDistinct(const set<int> &idTerms) const;
string GetShapeLabelNodeBrNum(map<TreeNode *, pair<int, int>> &mapNodeNumBrannches, vector<int> &listORderedLeaves);
TreeNode *GetMRCA(TreeNode *pOther);
void Order();
bool IsMulfurcate();
bool IsCheryNode() { return (GetChildrenNum() == 2 && GetChild(0)->IsLeaf() == true && GetChild(1)->IsLeaf()); }
bool IsRoot() const { return parent == NULL; }
int GetChildIndex(TreeNode *pchild) const;
void Binarize(int &idToUseNext);
int GetMaxIdWithinSubtree() const;
void Dump() const;
private:
vector<TreeNode *> listChildren;
vector<vector<int>> listEdgeLabels; // What labels is used in the edge
TreeNode *parent;
int id; // id of this node, should be UNIQUE
vector<int> nodeValues; // A node can have several values, for example, nodes labeling
// CAUTION: we assume node value is >=0 !!!!!
string label;
string labelUserProvided; // this ist he label before any conversion
TREE_NODE_SHAPE shape;
double lenBranchAbove;
};
// ***************************************************************************
// Utilities
// ***************************************************************************
class PhylogenyTreeBasic;
class PhylogenyTreeIteratorBacktrack
{
public:
PhylogenyTreeIteratorBacktrack(PhylogenyTreeBasic &pt) : phyTree(pt) {}
void Init();
void Next();
void Back(); // do not continue going downwards (i.e. do not explore its descendent)
bool IsDone();
TreeNode *GetCurrNode();
private:
PhylogenyTreeBasic &phyTree;
stack<TreeNode *> stackNodesToExplore;
//TreeNode *pCurr;
};
class PhylogenyTreeIterator
{
public:
PhylogenyTreeIterator(PhylogenyTreeBasic &pt) : phyTree(pt) {}
void Init();
void Next();
bool IsDone();
TreeNode *GetCurrNode();
private:
PhylogenyTreeBasic &phyTree;
stack<TreeNode *> stackPostorder;
//TreeNode *pCurr;
};
// ***************************************************************************
// Define phylogeny tree class
// ***************************************************************************
class PhylogenyTreeBasic
{
friend class PhylogenyTreeIterator;
friend class PhylogenyTreeIteratorBacktrack;
public:
PhylogenyTreeBasic(); // Empty tree
virtual ~PhylogenyTreeBasic();
PhylogenyTreeBasic *Copy();
void InitPostorderWalk(); // when walk, return the value of the node if any
TreeNode *NextPostorderWalk();
void OutputGML(const char *inFileName);
void OutputGMLNoLabel(const char *inFileName);
void ConsNewick(string &strNewick, bool wGridLen = false, double gridWidth = 1.0, bool fUseCurLbl = false);
void ConsNewickSorted(string &strNewick, bool wGridLen = false, double gridWidth = 1.0, bool fUseCurLbl = false);
void ConsNewickEdgeLabel(string &strNewick);
TreeNode *AddTreeNode(TreeNode *parNode, int id);
void ConsOnNewick(const string &nwString, int numLeaves = -1, bool fBottomUp = false, TaxaMapper *pTMapper = NULL);
void ConsOnNewickDupLabels(const string &nwString, TaxaMapper *pTMapper = NULL);
void ConsOnNewickEdgeLabelTree(const string &nwString);
int GetNumVertices() const;
int GetNumLeaves();
int GetNumInternalNodes();
void GetNodeParInfo(vector<int> &nodeIds, vector<int> &parPos);
void GetNodeParInfoNew(vector<int> &nodeIds, vector<int> &parPos);
bool ConsOnParPosList(const vector<int> &parPos, int numLeaves = -1, bool fBottupUpLabel = false);
void GetLeaveIds(set<int> &lvids);
void GetLeafIntLabels(set<int> &setIntLabels);
void GetLeavesIdsWithLabel(const string &label, set<int> &lvids);
void GetLeavesWithLabels(const set<string> &setLabels, set<TreeNode *> &setLvNodes);
void UpdateIntLabel(const vector<int> &listLabels);
TreeNode *GetRoot() const { return rootNode; }
void SetRoot(TreeNode *rn)
{
if (rootNode != NULL)
delete rootNode;
rootNode = rn;
}
void SetRootPlain(TreeNode *rn) { rootNode = rn; }
void GetAllLeafLabeles(vector<string> &listLeafLabels) { rootNode->GetAllLeafLabeles(listLeafLabels); }
void GetAllLeafIntLabeles(vector<int> &listLeafLabels) { rootNode->GetAllLeafIntLabeles(listLeafLabels); }
string GetShapeLabel(const set<int> &idTerms, map<int, int> &mapNodeLabel) const { return rootNode->GetShapeLabel(idTerms, mapNodeLabel); }
string GetShapeLabel(const set<int> &idTerms, bool fSort = true) const { return rootNode->GetShapeLabel(idTerms, fSort); }
//string GetShapeLabelDistinct(const set<int> &idTerms ) const { return rootNode->GetShapeLabelDistinct(idTerms); }
string GetShapeLabelNodeBrNum(map<TreeNode *, pair<int, int>> &mapNodeNumBrannches, vector<int> &listORderedLeaves);
bool TestIsomorphic(PhylogenyTreeBasic &treeOther, map<TreeNode *, TreeNode *> &mapOldNodeToNew) const;
void Reroot(TreeNode *pRootDesc); // pRootDesc: the node in the current tree (must be, but we will not check) which will be root's descendent
void GetAllLeafNodes(vector<TreeNode *> &listLeafNodes) const;
void GetAllNodes(vector<TreeNode *> &listLeafNodes) const;
void Order() { rootNode->Order(); }
bool IsMulfurcate() { return GetRoot()->IsMulfurcate(); }
void CleanNonLabeledLeaves();
void RemoveNode(TreeNode *pn);
void RemoveNodeKeepChildren(TreeNode *pn);
void RemoveDegreeOneNodeAt(TreeNode *pn);
void RemoveDegreeOneNodes();
void RemoveEdgeLabels();
void RemoveEdgeLabelsToLeaves();
void IncEdgeLabelsBy(int offset);
void ConsPhyTreeFromClusters(const set<set<int>> &setClusters);
static void RemoveDescendentsFrom(set<TreeNode *> &setTreeNodes);
void FindCladeOfSubsetLeaves(const set<TreeNode *> &setLeaves, set<set<TreeNode *>> &setSubtreeClades);
void FindCladeOfSubsetLeavesExact(const set<TreeNode *> &setLeaves, set<set<TreeNode *>> &setSubtreeClades);
static void GroupLeavesToSubtrees(const set<TreeNode *> &setLeaves, const set<set<TreeNode *>> &cladeNodesToProc, set<set<TreeNode *>> &setSubtreeClades);
static void GroupLeavesToSubtreesSamePar(const set<TreeNode *> &setLeaves, const set<set<TreeNode *>> &cladeNodesToProc, set<set<TreeNode *>> &setSubtreeClades);
static void GroupNodesWithCommonPars(const set<TreeNode *> &setNodes, map<TreeNode *, set<TreeNode *>> &mapNodesWithSamePar);
void GetAllClades(set<set<int>> &setClades);
void GetAllCladesList(vector<set<int>> &listClades);
void GetAllCladesById(set<set<int>> &setClades);
void GetAllCladeNodess(set<set<TreeNode *>> &setClades);
void GetAllCladeGroupsIntLabel(multiset<multiset<multiset<int>>> &setCladeGroupsDupLabels, multiset<int> &rootClade);
TreeNode *GetSubtreeRootForLeaves(const set<TreeNode *> &setLvNodes);
void GetSubtreesWithMaxSize(set<TreeNode *> &setSTRoots, int maxSzSubtree) const;
void GetMaxSubtrees(set<TreeNode *> &setSTRootsIdents);
void MakeSubtreeUnrefined(TreeNode *pSubtree);
void Binarize();
void CreatePhyTreeFromLeavesWithLabels(const set<string> &setLeafLabels, PhylogenyTreeBasic &treeToProc, bool fUseOldTaxonName);
void AssignLeafLabels(const map<int, string> &mapLeafLbls);
void ReassignLeafLabels(const map<string, string> &mapLeafLbls);
void SetUserLabelToCurrLabels();
void SetLabelsToCurrUserLabels();
int GetMaxDegree() const;
static bool GetSiblingsPairFrom(const set<TreeNode *> &setNodesToChoose, pair<TreeNode *, TreeNode *> &pairSibs);
static bool GetSiblingsNodesFrom(const set<TreeNode *> &setNodesToChoose, set<TreeNode *> &setSibs);
static void FindAllLabelsInSubtrees(const set<TreeNode *> &setSTRoots, set<string> &setLabels);
static void FindDescendentsOfNodeWithin(TreeNode *pAnc, const set<TreeNode *> &setNodesToChoose, set<TreeNode *> &setDescendents);
void Dump() const;
protected:
void PostOrderPushStack(TreeNode *treeNode, stack<TreeNode *> &stackPostorder);
string ConsNewickTreeNode(TreeNode *pNode, bool wGridLen = false, double gridWidth = 1.0, bool fUseCurLbl = false, bool fSort = false, bool fOutEdgeLabel = false);
TreeNode *ConsOnNewickSubtree(const string &nwStringPart, int &leafId, int &invId, int numLeaves = -1, bool fBottomUp = false, TaxaMapper *pTMapper = NULL);
bool ConvParPosToNewick(const vector<int> &parPos, string &strNewick);
void ConvParPosToNewickSubtree(int nodeInd, const vector<int> &parPos, string &strNewick);
TreeNode *ConsOnNewickSubtreeDupLabels(const string &nwStringPart, int &invId, int &leafId, TaxaMapper *pTMapper = NULL);
//void GetSubtreesWithMaxSizeExcludeTaxa(set<TreeNode *> &setSTRoots, int maxSzSubtree, const set<string> &setTaxaAllowed) const;
//int GetIdFromStr( const string &strPart, TaxaMapper *pTMapper );
// Privaet data members
TreeNode *rootNode;
// Postoder traversal
stack<TreeNode *> stackPostorder;
int numLeaves;
};
//*****************************************************************************
string GetStringFromId(int id);
int GetNewickNumLeaves(const string &strNewick, char chSepLeft = '(', char chSepRight = ')', char midSep = ',');
bool GetTripleType(TreeNode *pn1, TreeNode *pn2, TreeNode *pn3, pair<pair<TreeNode *, TreeNode *>, TreeNode *> &triple);
bool ReadinPhyloTreesNewick(ifstream &inFile, int numLeaves, vector<PhylogenyTreeBasic *> &treePtrList, TaxaMapper *pTMapper = NULL);
void InitRandomTree(PhylogenyTreeBasic &treeToInit, int numTaxa, int rndSeed = -1);
void CreatePhyTreeWithRootedSplits(PhylogenyTreeBasic &treeToProc, int numTaxa, const set<set<int>> &setGivenSplits);
void DumpAllSubtreesWithTaxaSize(const vector<PhylogenyTreeBasic *> &listPtrGTrees, int numTaxonSubtree, const char *fileNameOut);
void DumpAllSubtreesWithBoundedSize(const vector<PhylogenyTreeBasic *> &listPtrGTrees, int maxSzSubtree, int maxIdentSubtreeSz, const char *fileNameOut);
PhylogenyTreeBasic *ConsPhyTreeShrinkIdentSubtrees(PhylogenyTreeBasic *ptreeIn, int maxIdentSubtreeSz, bool fIdConsecutive = false);
void ChangebackLeafLabelForTreeWithZeroBaseId(PhylogenyTreeBasic *ptree, TaxaMapper *pTMapper);
void ChangeLeafIntLabelOfTree(PhylogenyTreeBasic &treeToChange, const map<int, int> &mapOldIntLblToNewIntLbl, bool fSetUserLblToo = false);
void AssignConsecutiveIdsForTree(PhylogenyTreeBasic &treeToChange);
bool ConvPhyloTreesToZeroBasedId(vector<PhylogenyTreeBasic *> &treePtrList, TaxaMapper *pTMapper);
void RandTrimLeavesFromTree(PhylogenyTreeBasic *ptreeToTrim, int numLeavesRemain);
PhylogenyTreeBasic *ConsPhyTreeSubsetTaxa(PhylogenyTreeBasic *ptreeIn, const set<int> &setTaxaKept);
string ConsEdgeLabeTree(const string &strNWWithLabels);
#endif // PHYLOGENY_TREE_H
|
2f00ae5caac8088013aaa7621d3322b3e7f724f1 | c01cf3a958da7d3967737e31b063d92ba5cf52f1 | /cpp/04/example.cpp | d89e7e050199b61b636ef7169842acc7cf0eb4bb | [] | no_license | TheNumbat/cpp-course | 568863d6029367bae19e618e7204ddb01cf5b277 | a47cd54700157db47ec28e448479532be21010d0 | refs/heads/gh-pages | 2023-04-27T11:34:04.725564 | 2023-04-14T03:56:54 | 2023-04-14T03:56:54 | 54,758,278 | 22 | 8 | null | 2023-04-14T03:56:55 | 2016-03-26T02:15:51 | HTML | UTF-8 | C++ | false | false | 1,332 | cpp | example.cpp | // If you are not sure what some lines of code do, try looking back at
// previous example programs, notes, or email a question.
#include <iostream>
using namespace std;
// A function that will return an integer, and takes an integer and a double as parameters
int calc(int one, double two);
// A function that will not return anything, and takes two doubles as parameters
void displayDbls(double disp1, double disp2);
int main() {
int value_one = 60;
double value_two = 0.89;
int result;
// Call the function calc. Note that the actual parameters do not need
// to have the same names as the formal parameters.
result = calc(value_one, value_two);
// Display the result
cout << "calc result: " << result << endl << endl;
// Call the function displayDbls using literal values. Note that no return value
// is captured, as displayDbls returns void.
displayDbls(5.67, 10.436);
return 0;
}
// Implementation of calc
int calc(int one, double two) {
// Do some sort of calculation
int result = -(one / two) * (one - two) / (-5648 / (one += two));
// Return the result
return result;
}
// Implementation of displayDbls
void displayDbls(double disp1, double disp2) {
// Output the two parameters to the console
cout << "Double value 1: " << disp1 << endl
<< "Double value 2: " << disp2 << endl;
} |
4207a6a15c34d1198f92a77f7e06873f9c0bb5b3 | 7a81df9012a2ce70f6b08a1489d28595048529e4 | /src/base/mutex.h | f69ff5edc2d90d2591b62f3c4df2843c094b2a10 | [
"ISC",
"MIT"
] | permissive | wangjianbao/logkafka | 0994a54535b959ef415d89d1a83a6afc96e0f4e1 | 53f136500a21f95aca2dae488a123897073570dd | refs/heads/master | 2020-02-26T17:38:27.951830 | 2015-10-14T02:48:46 | 2015-10-14T02:48:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,642 | h | mutex.h | ///////////////////////////////////////////////////////////////////////////
//
// logkafka - Collect logs and send lines to Apache Kafka v0.8+
//
///////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2015 Qihoo 360 Technology Co., Ltd. All rights reserved.
//
// Licensed under the MIT 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://opensource.org/licenses/MIT
//
// 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.
//
///////////////////////////////////////////////////////////////////////////
#ifndef BASE_MUTEX_H_
#define BASE_MUTEX_H_
#include <asm/errno.h>
#include <pthread.h>
namespace base {
class Mutex
{
public:
Mutex()
{
if ((pthread_mutex_init(&m_lock, NULL) != 0)) {
throw "init spin lock failed!!!";
}
}
~Mutex()
{
pthread_mutex_destroy(&m_lock);
}
void lock()
{
pthread_mutex_lock(&m_lock);
}
void unlock()
{
pthread_mutex_unlock(&m_lock);
}
pthread_mutex_t& mutex()
{
return m_lock;
}
private:
pthread_mutex_t m_lock;
};
} // namespace base
#endif // BASE_MUTEX_H_
|
929e042ed23662a640f08de20e1dad251008b71b | c282037fdaaa72b2e97cd6342060a9d34d61bc0a | /framework/sphere.hpp | 9408123317574afcdbe3a6ee843bebb63203b936 | [
"MIT"
] | permissive | Zzrop/pre-programmiersprachen-raytracer | efd47f4fd4313906e8cc16787d3bbe1b5b64f58a | 42169cc92adeb685039de2a14e7484f2afa7e4d5 | refs/heads/master | 2021-01-17T04:53:18.423525 | 2016-06-22T15:01:07 | 2016-06-22T15:01:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 586 | hpp | sphere.hpp | #ifndef SPHERE_BUW_HPP
#define SPHERE_BUW_HPP
#include <glm/vec3.hpp>
#include "shape.hpp"
#include "ray.hpp"
#include <math.h>
class Sphere : public Shape{
public:
Sphere();
Sphere(glm::vec3 const& m , float r);
Sphere(std::string const& name, Material const& mat, glm::vec3 const& m , float r);
~Sphere();
float area() const override;
float volume() const override;
glm::vec3 const& mid() const;
float r() const;
bool intersect(Ray const& ray, float& distance) const;
std::ostream& print(std::ostream& os) const;
protected:
glm::vec3 center_;
float r_;
};
#endif
|
2d11c10f51084b1eb28ed5270d8124ff4c2742f9 | da3c2f805c0d5c1988e278eeef5bccc2bee4d281 | /Lab01/Problem1.cpp | b559b6a6d9d2cb4da8e6a4a6e2c31542e6aa3f70 | [] | no_license | Fred-Nuno/7L3IEACSLab01 | 5abac06e6d703183ac4697b5ec8dca31aa5ff251 | a8b293edd79ceb8cb46acdbe1aa0a861d2d3076c | refs/heads/master | 2021-05-19T09:03:02.026852 | 2020-04-05T16:01:31 | 2020-04-05T16:01:31 | 251,618,869 | 0 | 0 | null | 2020-03-31T13:58:00 | 2020-03-31T13:57:59 | null | UTF-8 | C++ | false | false | 878 | cpp | Problem1.cpp | #include<Problem1.h>
#include<iostream>
//________1_______
void Swap(int var1, int var2)
{
int holder = var1;
var1 = var2;
var2 = holder;
std::cout <<"After the swap a = " << var1 << " and b = " << var2 << std::endl;
}
//________2_______
bool Signs(int var1, int var2)
{
return (var1 >= 0) ^ (var2 < 0);
}
//________3_______
void Even(const int a, int b, int &a1, int &b1)
{
a % 2 == 0 ? a1 = 0 : a1 = 1;
b % 2 == 0 ? b1 = 0 : b1 = 1;
}
//________4_______
void First()
{
std::cout<<"First"<<std::endl;
}
//________5_______
void Display(int ch)
{
if (ch == 1)
{
for (int i = 1; i <= 3; i++)
{
std::cout<<"First"<<std::endl;
}
}
if (ch == 2 )
{
for (int i = 1; i <= 2; i++)
{
std::cout<<"Second"<<std::endl;
}
}
}
|
aec64b3d6f660c7e7658c7bf6964b28217abbcb8 | 25bfa083e30b7796c1279718cf285a19552eae09 | /game/Game/GameData.cpp | 407aeb4e151c6d522e3e8f16ca6a7bf031eaadb4 | [] | no_license | AkakiyAndrew/diploma | 46e9cd5f4cd5c04f5cb688f4787b5a197ed8f504 | 16aab6f4f81af244d5e6492302540a6a1eedd6a5 | refs/heads/main | 2023-08-18T13:20:58.729530 | 2021-09-29T15:33:46 | 2021-09-29T15:33:46 | 337,722,522 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 105,578 | cpp | GameData.cpp | #include "GameClasses.h"
#define TILE_DRAWING
GameData::GameData()
{
net = new NeuralNet(layers, neurons);
//normalizing turret ratio
/*double maxTurretNum = 1;
for (int i = 0; i < 3; i++)
if (turretsCount[i] > maxTurretNum)
maxTurretNum = turretsCount[i];
double turretsRatio[3] = { turretsCount[0] / maxTurretNum, turretsCount[1] / maxTurretNum, turretsCount[2] / maxTurretNum };
net->Forward(3, turretsRatio);*/
screenSize = Vector2{ static_cast<float>(GetScreenWidth()), static_cast<float>(GetScreenHeight()) };
camera.target = { screenSize.x / 2, screenSize.y / 2 };
camera.offset = { screenSize.x / 2, screenSize.y / 2 };
camera.rotation = 0.0f;
camera.zoom = 1.0f;
palette = new Color[]{ DARKBLUE, BLUE, YELLOW, GREEN, DARKGREEN, GRAY, DARKGRAY };
//TILESET TEXTURES
const char* filenames[] = {
"LAKE",
"SWAMP",
"SAND",
"PLAIN",
"TREE",
"STONE",
"MOUNTAIN",
};
for (int i = 0; i < 7; i++)
{
tilesetTex[i] = LoadTexture(TextFormat("textures\\tileset\\%s.png", filenames[i]));
}
//EXPANSION TEXTURES
expansionInsectsTexture = LoadTexture("textures\\tileset\\CREEP.png");
expansionMachinesAnimation = {
new Texture2D[15],
//TODO: return to 15
1
};
for (int i = 0; i < expansionMachinesAnimation.framesAmount; i++)
{
expansionMachinesAnimation.frames[i] = LoadTexture(TextFormat("textures\\tileset\\machines_expansion_frames\\%d.png", i));
}
expansionMachinesAnimation.width = expansionMachinesAnimation.frames[0].width;
expansionMachinesAnimation.height = expansionMachinesAnimation.frames[0].height;
//UNIT SPRITES
//HEAVY INSECT
unitAnimations[ActorType::HEAVY_INSECT][State::GOES] =
{
new Texture2D[1],
1
};
for (int i = 0; i < 1; i++)
{
unitAnimations[ActorType::HEAVY_INSECT][State::GOES].frames[i] = LoadTexture(TextFormat("textures\\sprites\\heavyInsect_goes_%d.png", i));
}
//FLYING INSECT
unitAnimations[ActorType::FLYING_INSECT][State::GOES] =
{
new Texture2D[1],
1
};
for (int i = 0; i < 1; i++)
{
unitAnimations[ActorType::FLYING_INSECT][State::GOES].frames[i] = LoadTexture(TextFormat("textures\\sprites\\flyingInsect_goes_%d.png", i));
}
//LIGHT INSECT
unitAnimations[ActorType::LIGHT_INSECT][State::GOES] =
{
new Texture2D[5],
5
};
for (int i = 0; i < 5; i++)
{
unitAnimations[ActorType::LIGHT_INSECT][State::GOES].frames[i] = LoadTexture(TextFormat("textures\\sprites\\lightInsect_goes_%d.png", i));
}
//TURRET CHASIS
//CHANGING_MODE
unitAnimations[ActorType::TURRET_CHASIS][State::CHANGING_MODE] =
{
new Texture2D[4],
4
};
for (int i = 0; i < 4; i++)
{
unitAnimations[ActorType::TURRET_CHASIS][State::CHANGING_MODE].frames[i] = LoadTexture(TextFormat("textures\\sprites\\turretChasis_changeMode_%d.png", i));
}
//GOES
unitAnimations[ActorType::TURRET_CHASIS][State::GOES] =
{
new Texture2D[3],
3
};
for (int i = 0; i < 3; i++)
{
unitAnimations[ActorType::TURRET_CHASIS][State::GOES].frames[i] = LoadTexture(TextFormat("textures\\sprites\\turretChasis_goes_%d.png", i));
}
//HEAVY_TURRET
unitAnimations[ActorType::HEAVY_TURRET][State::ONLINE] =
{
new Texture2D[1],
1
};
for (int i = 0; i < 1; i++)
{
unitAnimations[ActorType::HEAVY_TURRET][State::ONLINE].frames[i] = LoadTexture(TextFormat("textures\\sprites\\heavyTurret_online_%d.png", i));
}
unitAnimations[ActorType::HEAVY_TURRET][State::ATTACKING] =
{
new Texture2D[6],
6
};
for (int i = 0; i < 6; i++)
{
unitAnimations[ActorType::HEAVY_TURRET][State::ATTACKING].frames[i] = LoadTexture(TextFormat("textures\\sprites\\heavyTurret_attacking_%d.png", i));
}
//LIGHT TURRET
unitAnimations[ActorType::LIGHT_TURRET][State::ONLINE] =
{
new Texture2D[1],
1
};
for (int i = 0; i < 1; i++)
{
unitAnimations[ActorType::LIGHT_TURRET][State::ONLINE].frames[i] = LoadTexture(TextFormat("textures\\sprites\\lightTurret_online_%d.png", i));
}
unitAnimations[ActorType::LIGHT_TURRET][State::ATTACKING] =
{
new Texture2D[1],
1
};
for (int i = 0; i < 1; i++)
{
unitAnimations[ActorType::LIGHT_TURRET][State::ATTACKING].frames[i] = LoadTexture(TextFormat("textures\\sprites\\lightTurret_attacking_%d.png", i));
}
//AIRDEFENSE TURRET
unitAnimations[ActorType::AIRDEFENSE_TURRET][State::ONLINE] =
{
new Texture2D[1],
1
};
for (int i = 0; i < 1; i++)
{
unitAnimations[ActorType::AIRDEFENSE_TURRET][State::ONLINE].frames[i] = LoadTexture(TextFormat("textures\\sprites\\antiAirTurret_online_%d.png", i));
}
unitAnimations[ActorType::AIRDEFENSE_TURRET][State::ATTACKING] =
{
new Texture2D[1],
1
};
for (int i = 0; i < 1; i++)
{
unitAnimations[ActorType::AIRDEFENSE_TURRET][State::ATTACKING].frames[i] = LoadTexture(TextFormat("textures\\sprites\\antiAirTurret_attacking_%d.png", i));
}
//GENERIC ACTORS ATTRIBUTES
genericAttributes[ActorType::TUMOR] = std::map<std::string, int>{
{"maxHP", 100},
{"size", 16},
{"cost", 50},
{"sightRange", 10},
{"armor", 5},
};
genericAttributes[ActorType::HIVE] = std::map<std::string, int>{
{"maxHP", 500},
{"size", 32},
{"cost", 1000},
{"sightRange", 12},
{"armor", 10},
};
genericAttributes[ActorType::CORE] = std::map<std::string, int>{
{"maxHP", 100},
{"size", 16},
{"cost", 50},
{"sightRange", 10},
{"armor", 4},
};
genericAttributes[ActorType::BASE] = std::map<std::string, int>{
{"maxHP", 300},
{"size", 32},
{"cost", 1000},
{"sightRange", 12},
{"armor", 10},
};
genericAttributes[ActorType::LIGHT_TURRET] = std::map<std::string, int>{
{"maxHP", 100},
{"size", 12},
{"cost", 50},
{"sightRange", 12},
{"armor", 5},
};
genericAttributes[ActorType::HEAVY_TURRET] = std::map<std::string, int>{
{"maxHP", 200},
{"size", 12},
{"cost", 50},
{"sightRange", 12},
{"armor", 5},
};
genericAttributes[ActorType::AIRDEFENSE_TURRET] = std::map<std::string, int>{
{"maxHP", 150},
{"size", 12},
{"cost", 50},
{"sightRange", 12},
{"armor", 5},
};
genericAttributes[ActorType::LIGHT_INSECT] = std::map<std::string, int>{
{"maxHP", 15},
{"size", 4},
{"cost", 20},
{"sightRange", 4},
{"armor", 1},
};
genericAttributes[ActorType::HEAVY_INSECT] = std::map<std::string, int>{
{"maxHP", 70},
{"size", 8},
{"cost", 100},
{"sightRange", 3},
{"armor", 10},
};
genericAttributes[ActorType::FLYING_INSECT] = std::map<std::string, int>{
{"maxHP", 50},
{"size", 6},
{"cost", 60},
{"sightRange", 5},
{"armor", 2},
};
//BUILDING ACTORS ATTRIBUTES
buildingsAttributes[ActorType::TUMOR] = std::map<std::string, int>{
{"expansionRange", 8},
{"expansionTime", 12 },
};
buildingsAttributes[ActorType::HIVE] = std::map<std::string, int>{
{"expansionRange", 8},
{"expansionTime", 8 },
};
buildingsAttributes[ActorType::CORE] = std::map<std::string, int>{
{"expansionRange", 8},
{"expansionTime", 4 },
};
buildingsAttributes[ActorType::BASE] = std::map<std::string, int>{
{"expansionRange", 12},
{"expansionTime", 4 },
};
//MILITARY ACTORS ATTRIBUTES
militaryAttributes[ActorType::LIGHT_INSECT] = std::map<std::string, int>{
{"seekRange", 8 * pixelsPerTile},
{"attackRange", 2 * pixelsPerTile},
{"speed", 2},
{"damage", 10},
{"rotationSpeed", 8},
{"cooldownDuration", 30}, //ticks to reload
};
militaryAttributes[ActorType::HEAVY_INSECT] = std::map<std::string, int>{
{"seekRange", 8 * pixelsPerTile},
{"attackRange", 2 * pixelsPerTile},
{"speed", 1},
{"damage", 30},
{"rotationSpeed", 4},
{"cooldownDuration", 90}, //ticks to reload
};
militaryAttributes[ActorType::FLYING_INSECT] = std::map<std::string, int>{
{"seekRange", 8 * pixelsPerTile},
{"attackRange", 2 * pixelsPerTile},
{"speed", 2},
{"damage", 15},
{"rotationSpeed", 8},
{"cooldownDuration", 60}, //ticks to reload
};
militaryAttributes[ActorType::LIGHT_TURRET] = std::map<std::string, int>{
{"seekRange", 10 * pixelsPerTile},
{"attackRange", 4 * pixelsPerTile},
{"speed", 1},
{"damage", 5},
{"rotationSpeed", 6},
{"cooldownDuration", 5}, //ticks to reload
};
militaryAttributes[ActorType::HEAVY_TURRET] = std::map<std::string, int>{
{"seekRange", 12 * pixelsPerTile},
{"attackRange", 10 * pixelsPerTile},
{"speed", 1},
{"damage", 70},
{"rotationSpeed", 2},
{"cooldownDuration", 60}, //ticks to reload
};
militaryAttributes[ActorType::AIRDEFENSE_TURRET] = std::map<std::string, int>{
{"seekRange", 16 * pixelsPerTile},
{"attackRange", 12 * pixelsPerTile},
{"speed", 1},
{"damage", 40},
{"rotationSpeed", 4},
{"cooldownDuration", 30}, //ticks to reload
};
//CONNECTABLE ACTORS ATTRIBUTES
connectableAttributes[ActorType::CORE] = std::map<std::string, int>
{
{"connectRange", 10 * pixelsPerTile},
};
connectableAttributes[ActorType::LIGHT_TURRET] = std::map<std::string, int>
{
{"connectRange", 6 * pixelsPerTile},
};
connectableAttributes[ActorType::HEAVY_TURRET] = std::map<std::string, int>
{
{"connectRange", 6 * pixelsPerTile},
};
connectableAttributes[ActorType::AIRDEFENSE_TURRET] = std::map<std::string, int>
{
{"connectRange", 6 * pixelsPerTile},
};
//CONSTRUCTORS ATTRIBUTES
constructorsAttributes[ActorType::CORE] = std::map<std::string, int>
{
{"buildPower", 10},
{"buildRange", 8 * pixelsPerTile},
};
constructorsAttributes[ActorType::BASE] = std::map<std::string, int>
{
{"buildPower", 20},
{"buildRange", 8 * pixelsPerTile},
};
//TURRETS ATTRIBUTES
turretsAttributes[ActorType::LIGHT_TURRET] = std::map<std::string, int>
{
{"maxCharge", 70},
{"chargeRate", 1},
{"energyPerShot", 3},
};
turretsAttributes[ActorType::HEAVY_TURRET] = std::map<std::string, int>
{
{"maxCharge", 100},
{"chargeRate", 1},
{"energyPerShot", 20},
};
turretsAttributes[ActorType::AIRDEFENSE_TURRET] = std::map<std::string, int>
{
{"maxCharge", 50},
{"chargeRate", 1},
{"energyPerShot", 7},
};
}
bool GameData::isMapLoaded()
{
return this->mapTerrain != nullptr;
}
void GameData::clearMap()
{
std::vector<unsigned int> IDs;
for (GameActor *actor : this->unitsList)
{
if(actor!=nullptr)
IDs.push_back(actor->ID);
}
for (unsigned int ID : IDs)
{
removeActor(ID);
}
lastID = 0;
resourcesInsects = 0;
resourcesMachines = 1000;
basePtr = nullptr;
//creepTilesCount = 0;
//energisedTilesCount = 0;
weights[0] = 0.33; weights[1] = 0.33; weights[2] = 0.33;
battleEfficiency[0] = 1; battleEfficiency[1] = 1; battleEfficiency[2] = 1;
battleEfficiency_previous[0] = { 1 }; battleEfficiency_previous[1] = { 1 }; battleEfficiency_previous[2] = { 1 };
unitsSpawned[0] = 0; unitsSpawned[2] = 0; unitsSpawned[2] = 0;
damageDealt[0] = 0; damageDealt[1] = 0; damageDealt[2] = 0;
damageTaken[0] = 0; damageTaken[1] = 0; damageTaken[2] = 0;
}
void GameData::updateMapPreview()
{
#ifndef TILE_DRAWING
unsigned short* colorPixels = new unsigned short[mapSize.x * mapSize.y];
Image buf = {
colorPixels,
mapSize.x,
mapSize.y,
1,
UNCOMPRESSED_R5G6B5
};
int index;
//TODO: check blending principle for generating texture
#pragma omp parallel for private(index)
for (int i = 0; i < mapHeight; i++)
{
for (int j = 0; j < mapWidth; j++)
{
index = mapWidth * i + j;
ImageDraw(
&buf,
tileset[static_cast<int>(mapTerrain[index])],
Rectangle{ 0,0, pixelsPerTile, pixelsPerTile },
Rectangle{ j * pixelsPerTile, i * pixelsPerTile, pixelsPerTile, pixelsPerTile },
WHITE);
}
}
#else
Color* colorPixels = new Color[mapHeight * mapWidth];
Image buf = {
colorPixels,
mapWidth,
mapHeight,
1,
UNCOMPRESSED_R8G8B8A8
};
int index;
int** fogOfWar = mapsFogOfWar[visionSide];
//#pragma omp parallel for private(index)
for (int x = 0; x < mapWidth; x++) //for (int i = 0; i < mapHeight * mapWidth; i++)
{
for (int y = 0; y < mapHeight; y++)
{
index = mapWidth * y + x;
if (fogOfWar[x][y] != -1)
{
if (mapExpansionCreep[x][y] == ExpandState::EXPANDED || mapExpansionCreep[x][y] == ExpandState::EXPANDED_WITHOUT_SOURCE)
{
colorPixels[index] = DARKPURPLE;
}
else
{
if (mapExpansionEnergised[x][y] == ExpandState::EXPANDED || mapExpansionEnergised[x][y] == ExpandState::EXPANDED_WITHOUT_SOURCE)
{
colorPixels[index] = DARKBLUE;
}
else
{
colorPixels[index] = palette[static_cast<int>(mapTerrain[index])];
}
}
}
else
{
//if there no vision
colorPixels[index] = BLACK;
}
}
}
#endif
terrainTexture = LoadTextureFromImage(buf);
UnloadImage(buf);
}
TerrainType GameData::getTerrainType(int x, int y)
{
return mapTerrain[y * mapWidth + x];
}
void GameData::setTerrain(Terrain terr)
{
//TODO: make check for existence of path from Base to Hive (if not - create it)
//TODO: MAKE NEW FUNCTION TO REDRAW PREVIEW TEXTURE, CALL IT ONLY FEW TIMES IN UPDATE
if (isMapLoaded())
{
clearMap();
UnloadTexture(terrainTexture);
//expansion
for (int x = 0; x < mapWidth; x++)
delete[] mapExpansionCreep[x];
delete[] mapExpansionCreep;
//pathfinding
ActorType types[] = { ActorType::LIGHT_INSECT, ActorType::HEAVY_INSECT, ActorType::FLYING_INSECT };
std::vector<std::string> matrices = { "mapsHeat", "mapsTerrainMod"};
for (ActorType type : types)
{
//support matrices
for (std::string matrixName : matrices)
{
for (int x = 0; x < mapWidth; x++)
delete[] mapsPathfinding[type][matrixName][x];
delete[] mapsPathfinding[type][matrixName];
}
//vector matrix
for (int x = 0; x < mapWidth; x++)
delete[] vectorFields[type][x];
delete[] vectorFields[type];
//damage matrix
for (int x = 0; x < mapWidth; x++)
delete[] mapsDamage[type][x];
delete[] mapsDamage[type];
}
//neighbors matrix
for (int x = 0; x < mapWidth; x++)
delete[] neighborsIndices[x];
delete[] neighborsIndices;
//fog of war
Side sides[] = {Side::INSECTS, Side::MACHINES};
for (Side side : sides)
{
for (int x = 0; x < mapWidth; x++)
delete[] mapsFogOfWar[side][x];
delete[] mapsFogOfWar[side];
}
}
this->mapHeight = terr.height;
this->mapWidth = terr.width;
this->mapTerrain = terr.map;
mapSize.x = mapWidth * pixelsPerTile;
mapSize.y = mapHeight * pixelsPerTile;
//expansion maps memory allocation
mapExpansionCreep = new unsigned char* [mapWidth];
for (int x = 0; x < mapWidth; x++)
mapExpansionCreep[x] = new unsigned char[mapHeight];
mapExpansionEnergised = new unsigned char* [mapWidth];
for (int x = 0; x < mapWidth; x++)
mapExpansionEnergised[x] = new unsigned char[mapHeight];
//expansion pre-calculation
for (int x = 0; x < mapWidth; x++)
{
for (int y = 0; y < mapHeight; y++)
{
switch (getTerrainType(x, y))
{
//if cant expand in this tile
case TerrainType::LAKE:
case TerrainType::SWAMP:
case TerrainType::MOUNTAIN:
mapExpansionCreep[x][y] = ExpandState::UNAVAILABLE;
mapExpansionEnergised[x][y] = ExpandState::UNAVAILABLE;
break;
//if expansion can be provide
case TerrainType::SAND:
case TerrainType::PLAIN:
case TerrainType::TREE:
case TerrainType::STONE:
case TerrainType::ASH:
mapExpansionCreep[x][y] = ExpandState::AVAILABLE;
mapExpansionEnergised[x][y] = ExpandState::AVAILABLE;
break;
//just in case
default:
mapExpansionCreep[x][y] = ExpandState::UNAVAILABLE;
mapExpansionEnergised[x][y] = ExpandState::UNAVAILABLE;
break;
}
}
}
//tiles neighbors allocation
neighborsIndices = new NeighborsIndex * [mapWidth];
for (int x = 0; x < mapWidth; x++)
neighborsIndices[x] = new NeighborsIndex[mapHeight];
//neighbors pre - calculation
for (int x = 0; x < mapWidth; x++)
for (int y = 0; y < mapHeight; y++)
neighborsIndices[x][y] = getNeighbors(x, y);
//vector pathfinding matrix allocation
ActorType types[] = { ActorType::LIGHT_INSECT, ActorType::HEAVY_INSECT, ActorType::FLYING_INSECT };
std::vector<std::string> matrices = { "mapsHeat", "mapsTerrainMod"};
for (ActorType type : types)
{
//memory allocation, support matrices
for (std::string matrixName : matrices)
{
mapsPathfinding[type][matrixName] = new float* [mapWidth];
for (int x = 0; x < mapWidth; x++)
mapsPathfinding[type][matrixName][x] = new float[mapHeight];
}
//vector matrices
vectorFields[type] = new Vector2* [mapWidth];
for (int x = 0; x < mapWidth; x++)
vectorFields[type][x] = new Vector2[mapHeight];
//damage map
int** buf_matrix = new int* [mapWidth];
for (int x = 0; x < mapWidth; x++)
buf_matrix[x] = new int[mapHeight];
//damage map initialisation
for (int x = 0; x < mapWidth; x++)
for (int y = 0; y < mapHeight; y++)
buf_matrix[x][y] = 0;
mapsDamage[type] = buf_matrix;
//terrain speed modifier, individual for each Insect's unit type
float** mapTerrainMod = mapsPathfinding[type]["mapsTerrainMod"];
for (int x = 0; x < mapWidth; x++)
{
for (int y = 0; y < mapHeight; y++)
{
if (type == ActorType::LIGHT_INSECT)
{
switch (getTerrainType(x, y))
{
//cant walk in this tile
case TerrainType::LAKE:
case TerrainType::MOUNTAIN:
mapTerrainMod[x][y] = -1.f;
break;
//can, but much slower
case TerrainType::SWAMP:
mapTerrainMod[x][y] = 0.5f;
break;
case TerrainType::SAND:
mapTerrainMod[x][y] = 0.8f;
break;
case TerrainType::PLAIN:
case TerrainType::TREE:
case TerrainType::STONE:
case TerrainType::ASH:
mapTerrainMod[x][y] = 1.f;
break;
//just in case
default:
mapTerrainMod[x][y] = -1.f;
break;
}
}
if (type == ActorType::HEAVY_INSECT)
{
switch (getTerrainType(x, y))
{
//cant walk in this tile
case TerrainType::MOUNTAIN:
mapTerrainMod[x][y] = -1.f;
break;
//can, but much slower
case TerrainType::LAKE:
case TerrainType::SWAMP:
mapTerrainMod[x][y] = 0.5f;
break;
case TerrainType::SAND:
case TerrainType::TREE:
mapTerrainMod[x][y] = 0.7f;
break;
case TerrainType::PLAIN:
case TerrainType::STONE:
case TerrainType::ASH:
mapTerrainMod[x][y] = 1.f;
break;
//just in case
default:
mapTerrainMod[x][y] = -1.f;
break;
}
}
if (type == ActorType::FLYING_INSECT)
{
switch (getTerrainType(x, y))
{
//can fly through any tile:
case TerrainType::LAKE:
case TerrainType::MOUNTAIN:
case TerrainType::SWAMP:
case TerrainType::SAND:
case TerrainType::PLAIN:
case TerrainType::TREE:
case TerrainType::STONE:
case TerrainType::ASH:
mapTerrainMod[x][y] = 1.f;
break;
//just in case
default:
mapTerrainMod[x][y] = -1.f;
break;
}
}
}
}
}
//fog of war
Side sides[] = { Side::INSECTS, Side::MACHINES };
for (Side side : sides)
{
mapsFogOfWar[side] = new int*[mapWidth];
for (int x = 0; x < mapWidth; x++)
mapsFogOfWar[side][x] = new int[mapHeight];
int** ptr = mapsFogOfWar[side];
for (int x = 0; x < mapWidth; x++)
{
for (int y = 0; y < mapHeight; y++)
ptr[x][y] = -1;
}
}
updateMapPreview();
//calculateVectorPathfinding(
// TileIndex{ 0,0 },
// ActorType::LIGHT_INSECT
//);
}
std::vector<TileIndex> GameData::tilesInsideCircle(Vector2 center, unsigned int radius)
{
std::vector<TileIndex> result;
TileIndex upLeftCorner = { std::clamp<int>(center.x - radius, 0, center.x), std::clamp<int>(center.y - radius, 0, center.y) };
TileIndex downRightCorner = { std::clamp<int>(center.x + radius, center.x, this->mapWidth-1), std::clamp<int>(center.y + radius, center.y, this->mapHeight-1) };
//reducing up limit `cause of max index of maps (not the actual indices)
for (int y = upLeftCorner.y; y <= downRightCorner.y; y++)
{
for (int x = upLeftCorner.x; x <= downRightCorner.x; x++)
{
if (CheckCollisionPointCircle(Vector2{static_cast<float>(x), static_cast<float>(y) }, center, radius))
result.push_back(TileIndex{x,y});
//TODO: optimize this crap (and make parallel computaton?)
}
}
return result;
}
std::vector<TileIndex> GameData::tilesInsideCircleOrdered(TileIndex center, int radius)
{
std::vector<TileIndex> result;
for (int r = 1; r <= radius; r++)
{
for (int x = center.x + 1;x<center.x + r;x++)
{
for (int y = center.y; y > center.y - r; y--) //REVERSE int y = center.y - r; y < center.y + r; y++
{
if (CheckCollisionPointCircle(Vector2{ static_cast<float>(x), static_cast<float>(y) }, center, r))
{
//adding this and opposite tiles
result.push_back(TileIndex{ x,y }); // up-right
result.push_back(TileIndex{ center.x + (center.x - x), y }); //up-left
result.push_back(TileIndex{ x, center.y + (center.y - y) }); //down-right
result.push_back(TileIndex{ center.x + (center.x - x), center.y + (center.y - y) }); //down-left
}
}
}
result.push_back(TileIndex{ center.x, center.y - r }); //up
result.push_back(TileIndex{ center.x, center.y + r }); //down
result.push_back(TileIndex{ center.x + r, center.y }); //right
result.push_back(TileIndex{ center.x - r, center.y });//left
}
std::vector<TileIndex>::iterator iter;
for (iter = result.begin(); iter != result.end(); )
{
if ((*iter).x < 0 ||
(*iter).x>this->mapWidth - 1 ||
(*iter).y < 0 ||
(*iter).y>this->mapHeight - 1)
iter = result.erase(iter);
else
iter++;
}
return result;
}
std::vector<TileIndex> GameData::tilesInPerimeterCircleOrdered(TileIndex center, unsigned int radius)
{
std::vector<TileIndex> buf;
int x_centre = center.x, y_centre = center.y;
int x = radius, y = 0;
// Printing the initial point on the axes
// after translation
// When radius is zero only a single
// point will be printed
if (radius > 0)
{
/*buf.push_back(TileIndex{ x + x_centre, -y + y_centre });
buf.push_back(TileIndex{ y + x_centre, x + y_centre });
buf.push_back(TileIndex{ -y + x_centre, x + y_centre });*/
buf.push_back(TileIndex{ x + x_centre, y_centre }); //right
buf.push_back(TileIndex{ x_centre, -x + y_centre }); //up
buf.push_back(TileIndex{ x_centre, x + y_centre }); //down
buf.push_back(TileIndex{ -x + x_centre, y_centre });//left
}
// Initialising the value of P
int P = 1 - radius;
while (x > y)
{
y++;
// Mid-point is inside or on the perimeter
if (P <= 0)
P = P + 2 * y + 1;
// Mid-point is outside the perimeter
else
{
x--;
P = P + 2 * y - 2 * x + 1;
}
// All the perimeter points have already been printed
if (x < y)
break;
// Printing the generated point and its reflection
// in the other octants after translation
buf.push_back(TileIndex{ x + x_centre, y + y_centre });
buf.push_back(TileIndex{ -x + x_centre, y + y_centre });
buf.push_back(TileIndex{ x + x_centre , -y + y_centre });
buf.push_back(TileIndex{ -x + x_centre , -y + y_centre });
// If the generated point is on the line x = y then
// the perimeter points have already been printed
if (x != y)
{
buf.push_back(TileIndex{ y + x_centre , x + y_centre });
buf.push_back(TileIndex{ -y + x_centre , x + y_centre });
buf.push_back(TileIndex{ y + x_centre , -x + y_centre });
buf.push_back(TileIndex{ -y + x_centre , -x + y_centre });
}
}
std::vector<TileIndex> result;
for (int i = 0; i < buf.size(); i++)
{
//checking to not cross the border, if all right - add TileIndex to result vector
if (!(buf[i].x < 0 ||
buf[i].x>this->mapWidth - 1 ||
buf[i].y < 0 ||
buf[i].y>this->mapHeight - 1))
{
result.push_back(buf[i]);
}
//TODO: consider using result.erase()
}
return result;
}
int GameData::numOfExpansionTileAdjoin(int x, int y, Side side)
{
int result = 0;
if (side == Side::INSECTS)
{
if (x - 1 >= 0) //left
if (mapExpansionCreep[x - 1][y] == ExpandState::EXPANDED || mapExpansionCreep[x - 1][y] == ExpandState::EXPANDED_WITHOUT_SOURCE)
result++;
if (y - 1 >= 0) //up
if (mapExpansionCreep[x][y - 1] == ExpandState::EXPANDED || mapExpansionCreep[x][y - 1] == ExpandState::EXPANDED_WITHOUT_SOURCE)
result++;
if (x + 1 < this->mapWidth) //right
if (mapExpansionCreep[x + 1][y] == ExpandState::EXPANDED || mapExpansionCreep[x + 1][y] == ExpandState::EXPANDED_WITHOUT_SOURCE)
result++;
if (y + 1 < this->mapHeight) //down
if (mapExpansionCreep[x][y + 1] == ExpandState::EXPANDED || mapExpansionCreep[x][y + 1] == ExpandState::EXPANDED_WITHOUT_SOURCE)
result++;
}
if(side==Side::MACHINES)
{
if (x - 1 >= 0) //left
if (mapExpansionEnergised[x - 1][y] == ExpandState::EXPANDED || mapExpansionEnergised[x - 1][y] == ExpandState::EXPANDED_WITHOUT_SOURCE)
result++;
if (y - 1 >= 0) //up
if (mapExpansionEnergised[x][y - 1] == ExpandState::EXPANDED || mapExpansionEnergised[x][y - 1] == ExpandState::EXPANDED_WITHOUT_SOURCE)
result++;
if (x + 1 < this->mapWidth) //right
if (mapExpansionEnergised[x + 1][y] == ExpandState::EXPANDED || mapExpansionEnergised[x + 1][y] == ExpandState::EXPANDED_WITHOUT_SOURCE)
result++;
if (y + 1 < this->mapHeight) //down
if (mapExpansionEnergised[x][y + 1] == ExpandState::EXPANDED || mapExpansionEnergised[x][y + 1] == ExpandState::EXPANDED_WITHOUT_SOURCE)
result++;
}
return result;
}
int GameData::numOfExpansionTileAdjoinFading(int x, int y, Side side)
{
int result = 0;
if (side == Side::INSECTS)
{
if (x - 1 >= 0) //left
if (mapExpansionCreep[x - 1][y] == ExpandState::EXPANDED_WITHOUT_SOURCE)
result++;
if (y - 1 >= 0) //up
if (mapExpansionCreep[x][y - 1] == ExpandState::EXPANDED_WITHOUT_SOURCE)
result++;
if (x + 1 < this->mapWidth) //right
if (mapExpansionCreep[x + 1][y] == ExpandState::EXPANDED_WITHOUT_SOURCE)
result++;
if (y + 1 < this->mapHeight) //down
if (mapExpansionCreep[x][y + 1] == ExpandState::EXPANDED_WITHOUT_SOURCE)
result++;
}
if (side == Side::MACHINES)
{
if (x - 1 >= 0) //left
if (mapExpansionEnergised[x - 1][y] == ExpandState::EXPANDED_WITHOUT_SOURCE)
result++;
if (y - 1 >= 0) //up
if (mapExpansionEnergised[x][y - 1] == ExpandState::EXPANDED_WITHOUT_SOURCE)
result++;
if (x + 1 < this->mapWidth) //right
if (mapExpansionEnergised[x + 1][y] == ExpandState::EXPANDED_WITHOUT_SOURCE)
result++;
if (y + 1 < this->mapHeight) //down
if (mapExpansionEnergised[x][y + 1] == ExpandState::EXPANDED_WITHOUT_SOURCE)
result++;
}
return result;
}
bool GameData::isTileExpanded(TileIndex tile, Side side)
{
if (side == Side::INSECTS)
{
if (mapExpansionCreep[tile.x][tile.y] == ExpandState::EXPANDED || mapExpansionCreep[tile.x][tile.y] == ExpandState::EXPANDED_WITHOUT_SOURCE)
return true;
}
if(side == Side::MACHINES)
{
if (mapExpansionEnergised[tile.x][tile.y] == ExpandState::EXPANDED || mapExpansionEnergised[tile.x][tile.y] == ExpandState::EXPANDED_WITHOUT_SOURCE)
return true;
}
return false;
}
bool GameData::isTileInBounds(TileIndex tile)
{
if (
tile.x < 0 ||
tile.x>this->mapWidth - 1 ||
tile.y < 0 ||
tile.y>this->mapHeight - 1
)
return false;
else
return true;
}
TileIndex GameData::getTileIndex(Vector2 position)
{
return TileIndex{
static_cast<int>(position.x / pixelsPerTile),
static_cast<int>(position.y / pixelsPerTile)
};
}
NeighborsIndex GameData::getNeighbors(int x, int y)
{
NeighborsIndex result;
if (x - 1 >= 0) //left
result.left = { x - 1, y };
if (y - 1 >= 0) //up
result.up = { x, y - 1 };
if (x + 1 < this->mapWidth) //right
result.right = { x + 1, y };
if (y + 1 < this->mapHeight) //down
result.down = { x, y + 1 };
//corners
if (y - 1 >= 0 && x - 1 >= 0) //up-left
result.upLeft = { x - 1, y - 1 };
if (y - 1 >= 0 && x + 1 < this->mapWidth) //up-right
result.upRight = { x + 1, y - 1 };
if (y + 1 < this->mapHeight && x - 1 >= 0) //down-left
result.downLeft = { x - 1, y + 1 };
if (y + 1 < this->mapHeight && x + 1 < this->mapWidth) //down-right
result.downRight = { x + 1, y + 1 };
return result;
}
std::vector<TileIndex> GameData::getNeighborsAsVector(int x, int y)
{
std::vector<TileIndex> result;
result.resize(8);
NeighborsIndex neighbors = neighborsIndices[x][y];
//this tile
//result[0] = TileIndex{ x,y };
//left
if (neighbors.left.x != -1)
result[0] = neighbors.left;
else
result[0] = { -1,-1 };
//up
if (neighbors.up.x != -1)
result[1] = neighbors.up;
else
result[1] = { -1,-1 };
//right
if (neighbors.right.x != -1)
result[2] = neighbors.right;
else
result[2] = { -1,-1 };
//down
if (neighbors.down.x != -1)
result[3] = neighbors.down;
else
result[3] = { -1,-1 };
//upLeft
if (neighbors.upLeft.x != -1)
result[4] = neighbors.upLeft;
else
result[4] = { -1,-1 };
//upRight
if (neighbors.upRight.x != -1)
result[5] = neighbors.upRight;
else
result[5] = { -1,-1 };
//downLeft
if (neighbors.downLeft.x != -1)
result[6] = neighbors.downLeft;
else
result[6] = { -1,-1 };
//downRight
if (neighbors.downRight.x != -1)
result[7] = neighbors.downRight;
else
result[7] = { -1,-1 };
return result;
}
bool GameData::isOnLineOfSight(TileIndex pos1, TileIndex pos2, ActorType unitType)
{
bool result = true;
float** mapMod = nullptr;
switch (unitType)
{
case ActorType::LIGHT_TURRET:
case ActorType::HEAVY_TURRET:
//can shoot only when no mountains on sight
mapMod = mapsPathfinding[ActorType::FLYING_INSECT]["mapsTerrainMod"];
break;
case ActorType::AIRDEFENSE_TURRET:
//can shoot everywhere
mapMod = mapsPathfinding[ActorType::FLYING_INSECT]["mapsTerrainMod"];
break;
case ActorType::LIGHT_INSECT:
case ActorType::HEAVY_INSECT:
case ActorType::FLYING_INSECT:
//checking line of sight according to type of insect
mapMod = mapsPathfinding[unitType]["mapsTerrainMod"];
break;
default:
break;
}
int x0 = pos1.x;
int y0 = pos1.y;
int x1 = pos2.x;
int y1 = pos2.y;
int dx = abs(x1 - x0);
int dy = abs(y1 - y0);
int x = x0;
int y = y0;
int n = 1 + dx + dy;
int x_inc = (x1 > x0) ? 1 : -1;
int y_inc = (y1 > y0) ? 1 : -1;
int error = dx - dy;
dx *= 2;
dy *= 2;
for (; n > 0; --n)
{
//checking tile here
if (mapMod[x][y] == -1.f)
return false;
if (error > 0)
{
x += x_inc;
error -= dy;
}
else
{
y += y_inc;
error += dx;
}
}
//returns true, if all checks fine
return result;
}
void GameData::recalculateExpansion(Side side)
{
if (side == Side::INSECTS)
{
for (Building* actor : this->expansionUnitsList_Insects)
{
if (actor->getState() == State::ONLINE)
actor->markAreaExpand();
}
}
if (side == Side::MACHINES)
{
for (Building* actor : this->expansionUnitsList_Machines)
{
if(actor->getState()==State::ONLINE)
actor->markAreaExpand();
}
}
}
void GameData::recalculateMilitaryTargets(Side side)
{
for (Militaty* unit : militaryUnitsList)
{
if (unit->side == side)
unit->SeekForEnemy();
}
}
void GameData::calculateVectorPathfinding(TileIndex target, ActorType actorType)
{
float** mapHeat = mapsPathfinding[actorType]["mapsHeat"];
float** mapTerrainMod = mapsPathfinding[actorType]["mapsTerrainMod"];
Vector2** mapVector = vectorFields[actorType];
int** mapFogOfWar = mapsFogOfWar[Side::INSECTS];
int** mapDamage = mapsDamage[actorType];
//heat and vector map nullification
for (int x = 0; x < mapWidth; x++)
{
for (int y = 0; y < mapHeight; y++)
{
mapHeat[x][y] = 0.f;
mapVector[x][y] = { 0.f, 0.f };
}
}
//HEATMAP CALCULATION
mapHeat[target.x][target.y] = 1.f; //initial target point
float previous;
int bufHeat;
std::list<TileIndex> toCheck = { target };
std::vector<TileIndex> neighborsVector;
NeighborsIndex neighbors;
std::list<TileIndex>::iterator iter;
//iter = toCheck.erase(iter);
for (iter = toCheck.begin(); iter != toCheck.end(); )
{
//neighborsVector = getNeighborsAsVector((*iter).x, (*iter).y);
neighbors = getNeighbors((*iter).x, (*iter).y);
previous = mapHeat[(*iter).x][(*iter).y];
//left
if (neighbors.left.x != -1) //if index valid
{
//if value not set:
if (mapHeat[neighbors.left.x][neighbors.left.y] == 0.f)
{
//if there's fog of war:
if (mapFogOfWar[neighbors.left.x][neighbors.left.y] == -1)
{
mapHeat[neighbors.left.x][neighbors.left.y] = 1.f;
toCheck.push_back(neighbors.left);
}
else
{
//if there's no obstacle:
if (mapTerrainMod[neighbors.left.x][neighbors.left.y] != -1)
{
//set value, according to terrain speed modification and damage map
mapHeat[neighbors.left.x][neighbors.left.y] = previous + (1 / mapTerrainMod[neighbors.left.x][neighbors.left.y]) + mapDamage[neighbors.left.x][neighbors.left.y];
//add this neighbors.left for further checking
toCheck.push_back(neighbors.left);
}
}
}
else
{
//if there's NO fog of war:
if (mapFogOfWar[neighbors.left.x][neighbors.left.y] != -1)
{
//if value set - check, if it greater
bufHeat = previous + (1 / mapTerrainMod[neighbors.left.x][neighbors.left.y]) + mapDamage[neighbors.left.x][neighbors.left.y];
if (mapHeat[neighbors.left.x][neighbors.left.y] > bufHeat)
{
mapHeat[neighbors.left.x][neighbors.left.y] = bufHeat;
toCheck.push_back(neighbors.left);
}
}
}
}
//up
if (neighbors.up.x != -1) //if index valid
{
//if value not set:
if (mapHeat[neighbors.up.x][neighbors.up.y] == 0.f)
{
//if there's fog of war:
if (mapFogOfWar[neighbors.up.x][neighbors.up.y] == -1)
{
mapHeat[neighbors.up.x][neighbors.up.y] = 1.f;
toCheck.push_back(neighbors.up);
}
else
{
//if there's no obstacle:
if (mapTerrainMod[neighbors.up.x][neighbors.up.y] != -1)
{
//set value, according to terrain speed modification and damage map
mapHeat[neighbors.up.x][neighbors.up.y] = previous + (1 / mapTerrainMod[neighbors.up.x][neighbors.up.y]) + mapDamage[neighbors.up.x][neighbors.up.y];
//add this neighbors.up for further checking
toCheck.push_back(neighbors.up);
}
}
}
else
{
//if there's NO fog of war:
if (mapFogOfWar[neighbors.up.x][neighbors.up.y] != -1)
{
//if value set - check, if it greater
bufHeat = previous + (1 / mapTerrainMod[neighbors.up.x][neighbors.up.y]) + mapDamage[neighbors.up.x][neighbors.up.y];
if (mapHeat[neighbors.up.x][neighbors.up.y] > bufHeat)
{
mapHeat[neighbors.up.x][neighbors.up.y] = bufHeat;
toCheck.push_back(neighbors.up);
}
}
}
}
//right
if (neighbors.right.x != -1) //if index valid
{
//if value not set:
if (mapHeat[neighbors.right.x][neighbors.right.y] == 0.f)
{
//if there's fog of war:
if (mapFogOfWar[neighbors.right.x][neighbors.right.y] == -1)
{
mapHeat[neighbors.right.x][neighbors.right.y] = 1.f;
toCheck.push_back(neighbors.right);
}
else
{
//if there's no obstacle:
if (mapTerrainMod[neighbors.right.x][neighbors.right.y] != -1)
{
//set value, according to terrain speed modification and damage map
mapHeat[neighbors.right.x][neighbors.right.y] = previous + (1 / mapTerrainMod[neighbors.right.x][neighbors.right.y]) + mapDamage[neighbors.right.x][neighbors.right.y];
//add this neighbors.right for further checking
toCheck.push_back(neighbors.right);
}
}
}
else
{
//if there's NO fog of war:
if (mapFogOfWar[neighbors.right.x][neighbors.right.y] != -1)
{
//if value set - check, if it greater
bufHeat = previous + (1 / mapTerrainMod[neighbors.right.x][neighbors.right.y]) + mapDamage[neighbors.right.x][neighbors.right.y];
if (mapHeat[neighbors.right.x][neighbors.right.y] > bufHeat)
{
mapHeat[neighbors.right.x][neighbors.right.y] = bufHeat;
toCheck.push_back(neighbors.right);
}
}
}
}
//down
if (neighbors.down.x != -1) //if index valid
{
//if value not set:
if (mapHeat[neighbors.down.x][neighbors.down.y] == 0.f)
{
//if there's fog of war:
if (mapFogOfWar[neighbors.down.x][neighbors.down.y] == -1)
{
mapHeat[neighbors.down.x][neighbors.down.y] = 1.f;
toCheck.push_back(neighbors.down);
}
else
{
//if there's no obstacle:
if (mapTerrainMod[neighbors.down.x][neighbors.down.y] != -1)
{
//set value, according to terrain speed modification and damage map
mapHeat[neighbors.down.x][neighbors.down.y] = previous + (1 / mapTerrainMod[neighbors.down.x][neighbors.down.y]) + mapDamage[neighbors.down.x][neighbors.down.y];
//add this neighbors.down for further checking
toCheck.push_back(neighbors.down);
}
}
}
else
{
//if there's NO fog of war:
if (mapFogOfWar[neighbors.down.x][neighbors.down.y] != -1)
{
//if value set - check, if it greater
bufHeat = previous + (1 / mapTerrainMod[neighbors.down.x][neighbors.down.y]) + mapDamage[neighbors.down.x][neighbors.down.y];
if (mapHeat[neighbors.down.x][neighbors.down.y] > bufHeat)
{
mapHeat[neighbors.down.x][neighbors.down.y] = bufHeat;
toCheck.push_back(neighbors.down);
}
}
}
}
//upLeft
if (neighbors.upLeft.x != -1) //if index valid
{
//if value not set:
if (mapHeat[neighbors.upLeft.x][neighbors.upLeft.y] == 0.f)
{
//if there's fog of war:
if (mapFogOfWar[neighbors.upLeft.x][neighbors.upLeft.y] == -1)
{
mapHeat[neighbors.upLeft.x][neighbors.upLeft.y] = 1.f;
toCheck.push_back(neighbors.upLeft);
}
else
{
//if there's no obstacle:
if (mapTerrainMod[neighbors.upLeft.x][neighbors.upLeft.y] != -1 && (mapTerrainMod[neighbors.up.x][neighbors.up.y] != -1.f || mapTerrainMod[neighbors.left.x][neighbors.left.y] != -1.f))
{
//set value, according to terrain speed modification and damage map
mapHeat[neighbors.upLeft.x][neighbors.upLeft.y] = previous + (1 / mapTerrainMod[neighbors.upLeft.x][neighbors.upLeft.y]) + mapDamage[neighbors.upLeft.x][neighbors.upLeft.y];
//add this neighbors.upLeft for further checking
toCheck.push_back(neighbors.upLeft);
}
}
}
else
{
//if there's NO fog of war:
if (mapFogOfWar[neighbors.upLeft.x][neighbors.upLeft.y] != -1)
{
//if value set - check, if it greater
bufHeat = previous + (1 / mapTerrainMod[neighbors.upLeft.x][neighbors.upLeft.y]) + mapDamage[neighbors.upLeft.x][neighbors.upLeft.y];
if (mapHeat[neighbors.upLeft.x][neighbors.upLeft.y] > bufHeat)
{
mapHeat[neighbors.upLeft.x][neighbors.upLeft.y] = bufHeat;
toCheck.push_back(neighbors.upLeft);
}
}
}
}
//upRight
if (neighbors.upRight.x != -1) //if index valid
{
//if value not set:
if (mapHeat[neighbors.upRight.x][neighbors.upRight.y] == 0.f)
{
//if there's fog of war:
if (mapFogOfWar[neighbors.upRight.x][neighbors.upRight.y] == -1)
{
mapHeat[neighbors.upRight.x][neighbors.upRight.y] = 1.f;
toCheck.push_back(neighbors.upRight);
}
else
{
//if there's no obstacle:
if (mapTerrainMod[neighbors.upRight.x][neighbors.upRight.y] != -1 && (mapTerrainMod[neighbors.up.x][neighbors.up.y] != -1.f || mapTerrainMod[neighbors.right.x][neighbors.right.y] != -1.f))
{
//set value, according to terrain speed modification and damage map
mapHeat[neighbors.upRight.x][neighbors.upRight.y] = previous + (1 / mapTerrainMod[neighbors.upRight.x][neighbors.upRight.y]) + mapDamage[neighbors.upRight.x][neighbors.upRight.y];
//add this neighbors.upRight for further checking
toCheck.push_back(neighbors.upRight);
}
}
}
else
{
//if there's NO fog of war:
if (mapFogOfWar[neighbors.upRight.x][neighbors.upRight.y] != -1)
{
//if value set - check, if it greater
bufHeat = previous + (1 / mapTerrainMod[neighbors.upRight.x][neighbors.upRight.y]) + mapDamage[neighbors.upRight.x][neighbors.upRight.y];
if (mapHeat[neighbors.upRight.x][neighbors.upRight.y] > bufHeat)
{
mapHeat[neighbors.upRight.x][neighbors.upRight.y] = bufHeat;
toCheck.push_back(neighbors.upRight);
}
}
}
}
//downLeft
if (neighbors.downLeft.x != -1) //if index valid
{
//if value not set:
if (mapHeat[neighbors.downLeft.x][neighbors.downLeft.y] == 0.f)
{
//if there's fog of war:
if (mapFogOfWar[neighbors.downLeft.x][neighbors.downLeft.y] == -1)
{
mapHeat[neighbors.downLeft.x][neighbors.downLeft.y] = 1.f;
toCheck.push_back(neighbors.downLeft);
}
else
{
//if there's no obstacle:
if (mapTerrainMod[neighbors.downLeft.x][neighbors.downLeft.y] != -1 && (mapTerrainMod[neighbors.down.x][neighbors.down.y] != -1.f || mapTerrainMod[neighbors.left.x][neighbors.left.y] != -1.f))
{
//set value, according to terrain speed modification and damage map
mapHeat[neighbors.downLeft.x][neighbors.downLeft.y] = previous + (1 / mapTerrainMod[neighbors.downLeft.x][neighbors.downLeft.y]) + mapDamage[neighbors.downLeft.x][neighbors.downLeft.y];
//add this neighbors.downLeft for further checking
toCheck.push_back(neighbors.downLeft);
}
}
}
else
{
//if there's NO fog of war:
if (mapFogOfWar[neighbors.downLeft.x][neighbors.downLeft.y] != -1)
{
//if value set - check, if it greater
bufHeat = previous + (1 / mapTerrainMod[neighbors.downLeft.x][neighbors.downLeft.y]) + mapDamage[neighbors.downLeft.x][neighbors.downLeft.y];
if (mapHeat[neighbors.downLeft.x][neighbors.downLeft.y] > bufHeat)
{
mapHeat[neighbors.downLeft.x][neighbors.downLeft.y] = bufHeat;
toCheck.push_back(neighbors.downLeft);
}
}
}
}
//downRight
if (neighbors.downRight.x != -1) //if index valid
{
//if value not set:
if (mapHeat[neighbors.downRight.x][neighbors.downRight.y] == 0.f)
{
//if there's fog of war:
if (mapFogOfWar[neighbors.downRight.x][neighbors.downRight.y] == -1)
{
mapHeat[neighbors.downRight.x][neighbors.downRight.y] = 1.f;
toCheck.push_back(neighbors.downRight);
}
else
{
//if there's no obstacle:
if (mapTerrainMod[neighbors.downRight.x][neighbors.downRight.y] != -1 && (mapTerrainMod[neighbors.down.x][neighbors.down.y] != -1.f || mapTerrainMod[neighbors.right.x][neighbors.right.y] != -1.f))
{
//set value, according to terrain speed modification and damage map
mapHeat[neighbors.downRight.x][neighbors.downRight.y] = previous + (1 / mapTerrainMod[neighbors.downRight.x][neighbors.downRight.y]) + mapDamage[neighbors.downRight.x][neighbors.downRight.y];
//add this neighbors.downRight for further checking
toCheck.push_back(neighbors.downRight);
}
}
}
else
{
//if there's NO fog of war:
if (mapFogOfWar[neighbors.downRight.x][neighbors.downRight.y] != -1)
{
//if value set - check, if it greater
bufHeat = previous + (1 / mapTerrainMod[neighbors.downRight.x][neighbors.downRight.y]) + mapDamage[neighbors.downRight.x][neighbors.downRight.y];
if (mapHeat[neighbors.downRight.x][neighbors.downRight.y] > bufHeat)
{
mapHeat[neighbors.downRight.x][neighbors.downRight.y] = bufHeat;
toCheck.push_back(neighbors.downRight);
}
}
}
}
iter++;
toCheck.pop_front();
}
//VECTOR MAP CALCULATION
//float x_buf;
//float y_buf;
float minimumHeat;
//Vector2 buf;
//NeighborsIndex neighbors;
//TileIndex upLeft, rightDown, indexMinimum;
#pragma omp parallel for private(neighbors, minimumHeat)
for (int x = 0; x < mapWidth; x++)
{
for (int y = 0; y < mapHeight; y++)
{
neighbors = neighborsIndices[x][y];
//TODO: remake for using gradient?
minimumHeat = -1;
//left
if (neighbors.left.x != -1) //check for map borders
{
if (mapTerrainMod[x - 1][y] != -1.f) //check for obstruction
if (mapHeat[x - 1][y] < minimumHeat || minimumHeat == -1)
{
minimumHeat = mapHeat[x - 1][y];
mapVector[x][y] = { -1, 0 };
}
}
//right
if (neighbors.right.x != -1) //check for map borders
{
if (mapTerrainMod[x + 1][y] != -1.f) //check for obstruction
if (mapHeat[x + 1][y] < minimumHeat || minimumHeat == -1)
{
minimumHeat = mapHeat[x + 1][y];
mapVector[x][y] = { 1.f, 0.f };
}
}
//up
if (neighbors.up.x != -1) //check for map borders
{
if (mapTerrainMod[x][y - 1] != -1.f) //check for obstruction
if (mapHeat[x][y - 1] < minimumHeat || minimumHeat == -1)
{
minimumHeat = mapHeat[x][y - 1];
mapVector[x][y] = { 0.f, -1.f };
}
}
//down
if (neighbors.down.x != -1) //check for map borders
{
if (mapTerrainMod[x][y + 1] != -1.f) //check for obstruction
if (mapHeat[x][y + 1] < minimumHeat || minimumHeat == -1)
{
minimumHeat = mapHeat[x][y + 1];
mapVector[x][y] = { 0.f, 1.f };
}
}
//upLeft
if (neighbors.upLeft.x != -1) //check for map borders
{
if (mapTerrainMod[x - 1][y - 1] != -1.f && (mapTerrainMod[x][y - 1] != -1.f || mapTerrainMod[x - 1][y] != -1.f)) //check for obstruction
if (mapHeat[x - 1][y - 1] < minimumHeat || minimumHeat == -1)
{
minimumHeat = mapHeat[x - 1][y - 1];
mapVector[x][y] = { -1.f, -1.f };
}
}
//upRight
if (neighbors.upRight.x != -1) //check for map borders
{
if (mapTerrainMod[x + 1][y - 1] != -1.f && (mapTerrainMod[x][y - 1] != -1.f || mapTerrainMod[x + 1][y] != -1.f)) //check for obstruction
if (mapHeat[x + 1][y - 1] < minimumHeat || minimumHeat == -1)
{
minimumHeat = mapHeat[x + 1][y - 1];
mapVector[x][y] = { 1.f, -1.f };
}
}
//downLeft
if (neighbors.downLeft.x != -1) //check for map borders
{
if (mapTerrainMod[x - 1][y + 1] != -1.f && (mapTerrainMod[x][y + 1] != -1.f || mapTerrainMod[x - 1][y] != -1.f)) //check for obstruction
if (mapHeat[x - 1][y + 1] < minimumHeat || minimumHeat == -1)
{
minimumHeat = mapHeat[x - 1][y + 1];
mapVector[x][y] = { -1.f, 1.f };
}
}
//downRight
if (neighbors.downRight.x != -1) //check for map borders
{
if (mapTerrainMod[x + 1][y + 1] != -1.f && (mapTerrainMod[x][y + 1] != -1.f || mapTerrainMod[x + 1][y] != -1.f)) //check for obstruction
if (mapHeat[x + 1][y + 1] < minimumHeat || minimumHeat == -1)
{
minimumHeat = mapHeat[x + 1][y + 1];
mapVector[x][y] = { 1.f, 1.f };
}
}
}
}
}
void GameData::addActor(ActorType type, Vector2 position, State state)
{
Building* buf_building;
Militaty* buf_military;
Turret* buf_turret;
Constructor* buf_constructor;
Hive* buf_hive;
TileIndex mapCenter;
TileIndex positionIndex;
TileIndex desireLocation;
switch (type)
{
case ActorType::LIGHT_TURRET:
case ActorType::HEAVY_TURRET:
case ActorType::AIRDEFENSE_TURRET:
buf_turret = new Turret(
this,
type,
position,
State::UNDER_CONSTRUCTION);
unitsList.push_back(buf_turret);
militaryUnitsList.push_back(buf_turret);
turretUnitsList.push_back(buf_turret);
switch (type)
{
case ActorType::LIGHT_TURRET:
turretsCount[0] += 1;
break;
case ActorType::HEAVY_TURRET:
turretsCount[1] += 1;
break;
case ActorType::AIRDEFENSE_TURRET:
turretsCount[2] += 1;
break;
}
break;
case ActorType::LIGHT_INSECT:
case ActorType::HEAVY_INSECT:
case ActorType::FLYING_INSECT:
buf_military = new Insect(
this,
type,
position,
State::GOES);
unitsList.push_back(buf_military);
militaryUnitsList.push_back(buf_military);
switch (type)
{
case ActorType::LIGHT_INSECT:
unitsSpawned[0] += 1;
break;
case ActorType::HEAVY_INSECT:
unitsSpawned[1] += 1;
break;
case ActorType::FLYING_INSECT:
unitsSpawned[2] += 1;
break;
}
break;
case ActorType::CORE:
buf_constructor = new Core(
this,
ActorType::CORE,
position,
State::UNDER_CONSTRUCTION);
unitsList.push_back(buf_constructor);
expansionUnitsList_Machines.push_back(buf_constructor);
constructorList.push_back(buf_constructor);
break;
case ActorType::BASE:
buf_constructor = new Base(
this,
ActorType::BASE,
position,
State::ONLINE);
unitsList.push_back(buf_constructor);
expansionUnitsList_Machines.push_back(buf_constructor);
basePtr = buf_constructor;
constructorList.push_back(buf_constructor);
insectsDesirePosition = basePtr->getPositionIndex(); //once base placed, game begins
updateMapPreview();
//SPAWNING HIVE
mapCenter = { mapWidth / 2, mapHeight / 2 };
positionIndex = getTileIndex(position);
desireLocation = { mapCenter.x * 2 - positionIndex.x, mapCenter.y * 2 - positionIndex.y };
for (TileIndex tile : tilesInsideCircleOrdered(desireLocation, 50))
{
if (mapExpansionCreep[tile.x][tile.y] == ExpandState::AVAILABLE)
{
addActor(ActorType::HIVE, Vector2{tile.x*pixelsPerTile + pixelsPerTile / 2, tile.y * pixelsPerTile + pixelsPerTile / 2 }, State::ONLINE);
break;
}
}
break;
case ActorType::HIVE:
buf_hive = new Hive(
this,
ActorType::HIVE,
position,
State::ONLINE);
unitsList.push_back(buf_hive);
expansionUnitsList_Insects.push_back(buf_hive);
hivePtr = buf_hive;
break;
case ActorType::TUMOR:
buf_building = new Tumor(
this,
ActorType::TUMOR,
position,
State::UNDER_CONSTRUCTION);
unitsList.push_back(buf_building);
expansionUnitsList_Insects.push_back(buf_building);
break;
}
}
GameActor* GameData::getActorInTile(int x, int y)
{
GameActor* result = nullptr;
TileIndex pos;
for (GameActor* actor : unitsList)
{
if (actor != nullptr)
{
pos = actor->getPositionIndex();
if (pos.x == x && pos.y == y)
{
result = actor;
}
}
}
return result;
}
std::vector<GameActor*> GameData::getActorsInRadius(Vector2 center, float radius)
{
std::vector<GameActor*> result;
for (GameActor* actor: unitsList)
{
if (actor != nullptr)
{
if (CheckCollisionPointCircle(actor->getPosition(), center, radius))
{
result.push_back(actor);
}
}
}
return result;
}
GameActor* GameData::getNearestSpecificActor(Vector2 position, std::vector<GameActor*> actors, GameActor* caller, ActorType type)
{
GameActor* result = nullptr;
double minDistance;
double buf;
//TODO: if type==ActorType::ACTOR_NULL, do search"by default"
for (GameActor* actor : actors)
{
if ((actor->type == type || type == ActorType::ACTOR_NULL) && actor!=caller)
{
if (result == nullptr) //if no actor found yet
{
result = actor;
//eucledian distance
minDistance = sqrt(pow(position.x - actor->getPosition().x, 2) + pow(position.y - actor->getPosition().y, 2)); //+ actor->size;
}
else
{
buf = sqrt(pow(position.x - actor->getPosition().x, 2) + pow(position.y - actor->getPosition().y, 2));// + actor->size;
if (minDistance > buf)
{
minDistance = buf;
result = actor;
}
}
}
}
return result;
}
void GameData::removeActor(unsigned int ID)
{
std::vector<GameActor*>::iterator iter;
GameActor* buf = nullptr;
for (iter = unitsList.begin(); iter != unitsList.end(); iter++)
{
if ((*iter) != nullptr)
{
if ((*iter)->ID == ID)
{
buf = *iter;
//iter = unitsList.erase(iter);
(*iter) = nullptr;
break;
}
}
}
//seek in insects expansion units
std::vector<Building*>::iterator expandIter;
for (expandIter = expansionUnitsList_Insects.begin(); expandIter != expansionUnitsList_Insects.end(); )
{
if ((*expandIter)->ID == ID)
expandIter = expansionUnitsList_Insects.erase(expandIter);
else
expandIter++;
}
//seek in machines expansion units
for (expandIter = expansionUnitsList_Machines.begin(); expandIter != expansionUnitsList_Machines.end(); )
{
if ((*expandIter)->ID == ID)
expandIter = expansionUnitsList_Machines.erase(expandIter);
else
expandIter++;
}
std::vector<Militaty*>::iterator militaryIter;
for (militaryIter = militaryUnitsList.begin(); militaryIter != militaryUnitsList.end(); )
{
if ((*militaryIter)->ID == ID)
militaryIter = militaryUnitsList.erase(militaryIter);
else
militaryIter++;
}
std::vector<Turret*>::iterator turretIter;
for (turretIter = turretUnitsList.begin(); turretIter != turretUnitsList.end(); )
{
if ((*turretIter)->ID == ID)
turretIter = turretUnitsList.erase(turretIter);
else
turretIter++;
}
std::vector<Constructor*>::iterator constructorIter;
for (constructorIter = constructorList.begin(); constructorIter != constructorList.end(); )
{
if ((*constructorIter)->ID == ID)
constructorIter = constructorList.erase(constructorIter);
else
constructorIter++;
}
if (buf != nullptr)
{
switch (buf->type)
{
/*case ActorType::LIGHT_INSECT:
unitsSpawned[0] -= 1;
break;
case ActorType::HEAVY_INSECT:
unitsSpawned[1] -= 1;
break;
case ActorType::FLYING_INSECT:
unitsSpawned[2] -= 1;
break;*/
case ActorType::LIGHT_TURRET:
turretsCount[0] -= 1;
break;
case ActorType::HEAVY_TURRET:
turretsCount[1] -= 1;
break;
case ActorType::AIRDEFENSE_TURRET:
turretsCount[2] -= 1;
break;
}
delete buf;
}
}
bool GameData::Hit(GameActor* target, int damage, ActorType hitBy)
{
bool result = false;
damage -= target->armor;
if (damage <= 0) damage = 1; //every hit deals at least 1 damage
target->setHP(target->getHP() - damage);
target->inBattle = true;
target->inBattleCounter = 60;
//TODO: consider victory
if (target->side == Side::INSECTS)
{
//affect damage map if it is Insect
switch (target->type)
{
case ActorType::LIGHT_INSECT:
case ActorType::HEAVY_INSECT:
case ActorType::FLYING_INSECT:
raiseDamageMap(target->type, damage, target->getPositionIndex());
break;
default:
std::vector<ActorType> types = { ActorType::LIGHT_INSECT, ActorType::HEAVY_INSECT, ActorType::FLYING_INSECT };
for (ActorType type : types)
{
raiseDamageMap(type, damage, target->getPositionIndex());
}
break;
}
switch (target->type)
{
case ActorType::LIGHT_INSECT:
damageTaken[0] += damage;
break;
case ActorType::HEAVY_INSECT:
damageTaken[1] += damage;
break;
case ActorType::FLYING_INSECT:
damageTaken[2] += damage;
break;
}
}
else
{
switch (hitBy)
{
case ActorType::LIGHT_INSECT:
damageDealt[0] += damage;
break;
case ActorType::HEAVY_INSECT:
damageDealt[1] += damage;
break;
case ActorType::FLYING_INSECT:
damageDealt[2] += damage;
break;
}
}
if (target->getHP() <= 0)
{
Side opposite;
if (target->side == Side::INSECTS)
opposite = Side::MACHINES;
else
opposite = Side::INSECTS;
if (target->side == Side::MACHINES)
{
//TODO: make reducing damage map, if damaging Machines unit
for (Constructor* constructor : constructorList)
{
constructor->SeekForTarget();
}
}
removeActor(target->ID);
//recalculateMilitaryTargets(opposite);
result = true;
}
return result;
}
void GameData::raiseDamageMap(ActorType type, int damage, TileIndex tile)
{
int** damageMap = mapsDamage[type];
TileIndex targetTileIndex = tile;
NeighborsIndex neighbors = getNeighbors(targetTileIndex.x, targetTileIndex.y);
damageMap[targetTileIndex.x][targetTileIndex.y] += damage; //center
if (neighbors.left.x != -1)
damageMap[neighbors.left.x][neighbors.left.y] += damage / 2; //left
if (neighbors.up.x != -1)
damageMap[neighbors.up.x][neighbors.up.y] += damage / 2; //up
if (neighbors.right.x != -1)
damageMap[neighbors.right.x][neighbors.right.y] += damage / 2; //right
if (neighbors.down.x != -1)
damageMap[neighbors.down.x][neighbors.down.y] += damage / 2; //down
if (neighbors.upLeft.x != -1)
damageMap[neighbors.upLeft.x][neighbors.upLeft.y] += damage / 2; //upLeft
if (neighbors.upRight.x != -1)
damageMap[neighbors.upRight.x][neighbors.upRight.y] += damage / 2; //upRight
if (neighbors.downLeft.x != -1)
damageMap[neighbors.downLeft.x][neighbors.downLeft.y] += damage / 2; //downLeft
if (neighbors.downRight.x != -1)
damageMap[neighbors.downRight.x][neighbors.downRight.y] += damage / 2; //downRight
}
void GameData::revealTerritory(TileIndex position, int radius, Side side)
{
//revealed tiles numered by distance between unit and tile
int** matrix = mapsFogOfWar[side];
int buf;
int intelPrevious = matrix[position.x][position.y];
//check tile, is it need to reveal for again
if (static_cast<int>(matrix[position.x][position.y]) < radius)
{
matrix[position.x][position.y] = radius;
for (int r = 1; r <= radius; r++)
{
buf = radius - r;
for (int x = position.x + 1; x < position.x + r; x++)
{
for (int y = position.y; y > position.y - r; y--)
{
if (CheckCollisionPointCircle(Vector2{ static_cast<float>(x), static_cast<float>(y) }, position, r))
{
//adding this and opposite tiles
if (isTileInBounds({ x, y }))
if(matrix[x][y]<buf)
matrix[x][y] = buf; // up-right
if (isTileInBounds({ position.x + (position.x - x), y }))
if (matrix[position.x + (position.x - x)][y] < buf)
matrix[position.x + (position.x - x)][y] = buf; //up-left
if (isTileInBounds({ x, position.y + (position.y - y) }))
if (matrix[x][position.y + (position.y - y)] < buf)
matrix[x][position.y + (position.y - y)] = buf; //down-right
if (isTileInBounds({ position.x + (position.x - x), position.y + (position.y - y) }))
if (matrix[position.x + (position.x - x)][position.y + (position.y - y)] < buf)
matrix[position.x + (position.x - x)][position.y + (position.y - y)] = buf; //down-left
}
}
}
if (isTileInBounds({ position.x, position.y - r }))
if (matrix[position.x][position.y - r] < buf)
matrix[position.x][position.y - r] = buf; //up
if (isTileInBounds({ position.x, position.y + r }))
if (matrix[position.x][position.y + r] < buf)
matrix[position.x][position.y + r] = buf; //down
if (isTileInBounds({ position.x + r, position.y }))
if (matrix[position.x + r][position.y] < buf)
matrix[position.x + r][position.y] = buf; //right
if (isTileInBounds({ position.x - r, position.y }))
if (matrix[position.x - r][position.y] < buf)
matrix[position.x - r][position.y] = buf;//left
}
if (side == Side::INSECTS && intelPrevious < matrix[position.x][position.y]) //recalculate only when unit on edge of vision
{
std::vector<ActorType> types = { ActorType::LIGHT_INSECT, ActorType::HEAVY_INSECT, ActorType::FLYING_INSECT };
#pragma omp parallel for
for (int i = 0; i < types.size(); i++)
{
calculateVectorPathfinding(
insectsDesirePosition,
types[i]
);
}
}
}
}
int GameData::trySpendResources(int amount, Side side)
{
int spended;
if (side == Side::INSECTS)
{
if (static_cast<int>(resourcesInsects) - amount < 0)
{
spended = resourcesInsects;
}
else
{
spended = amount;
}
}
if(side == Side::MACHINES)
{
if (static_cast<int>(resourcesMachines) - amount < 0)
{
spended = resourcesMachines;
}
else
{
spended = amount;
}
}
return spended;
}
void GameData::spendResources(int amount, Side side)
{
if (side == Side::INSECTS)
{
resourcesInsects -= amount;
}
if (side == Side::MACHINES)
{
resourcesMachines -= amount;
}
}
int GameData::getAmountOfResources(Side side)
{
if (side == Side::INSECTS)
{
return static_cast<int>(resourcesInsects);
}
if (side == Side::MACHINES)
{
return static_cast<int>(resourcesMachines);
}
}
void GameData::calculateInsectsWeights()
{
//EFFICIENCY
battleEfficiency_previous[0] = battleEfficiency[0];
battleEfficiency_previous[1] = battleEfficiency[1];
battleEfficiency_previous[2] = battleEfficiency[2];
for (int i = 0; i < 3; i++)
{
if (unitsSpawned[i] != 0)
battleEfficiency[i] = (static_cast<double>(damageDealt[i]) * 2 / (1 + static_cast<double>(damageTaken[i]))) / static_cast<double>(unitsSpawned[i]);
else //if no unit spawned - use previous
battleEfficiency[i] = battleEfficiency_previous[i];
if (battleEfficiency[i] == 0)
battleEfficiency[i] = 1;
}
//LEARNING
//normalizing turret ratio
double maxTurretNum = 1;
for (int i = 0; i < 3; i++)
if (turretsCount[i] > maxTurretNum)
maxTurretNum = turretsCount[i];
double turretsRatio[3] = { turretsCount[0] / maxTurretNum, turretsCount[1] / maxTurretNum, turretsCount[2] / maxTurretNum };
double whatNeedToBe[3] = { weights[0], weights[1], weights[2] };
double diff;
double diffWeight;
for (int i = 0; i < 3; i++)
{
diff = (battleEfficiency[i] - battleEfficiency_previous[i]) / (1 + max(battleEfficiency[i], battleEfficiency_previous[i]));
diffWeight = weights[i] * diff;
//difference distribution
switch (i)
{
case 0:
whatNeedToBe[0] += diffWeight;
whatNeedToBe[1] -= diffWeight / 2;
whatNeedToBe[2] -= diffWeight / 2;
break;
case 1:
whatNeedToBe[0] -= diffWeight / 2;
whatNeedToBe[1] += diffWeight;
whatNeedToBe[2] -= diffWeight / 2;
break;
case 2:
whatNeedToBe[0] -= diffWeight / 2;
whatNeedToBe[1] -= diffWeight / 2;
whatNeedToBe[2] += diffWeight;
break;
}
}
net->learnBackpropagation(turretsRatio, whatNeedToBe, 0.5, 200);
//OUTPUT
double output[3] = { 0 };
net->Forward(3, turretsRatio);
net->getResult(3, output);
//normalizing output weights
//double maxOutput = 0.0001;
//for (int i = 0; i < 3; i++)
// if (output[i] > maxOutput)
// maxOutput = output[i];
//weights[0] = { output[0] / maxOutput };
//weights[1] = { output[1] / maxOutput };
//weights[2] = { output[2] / maxOutput };
weights[0] = { output[0] };
weights[1] = { output[1] };
weights[2] = { output[2] };
for (int i = 0; i < 3; i++)
{
unitsSpawned[i] = 0;
damageDealt[i] = 0;
damageTaken[i] = 0;
}
}
void GameData::GameUpdate()
{
if (IsKeyPressed(KEY_ESCAPE)) closed = true;
mousePosition = GetMousePosition();
mouseWorldPosition = GetScreenToWorld2D(mousePosition, camera);
mouseIndex = { std::clamp<int>(mouseWorldPosition.x/pixelsPerTile, 0, this->mapWidth-1), std::clamp<int>(mouseWorldPosition.y / pixelsPerTile, 0, this->mapHeight-1) };
// Camera shifting
if ((mousePosition.x < screenSize.x * 0.15f || IsKeyDown(KEY_A)) && camera.target.x > 100) camera.target.x -= 10 / camera.zoom;
if ((mousePosition.x > screenSize.x * 0.85f || IsKeyDown(KEY_D)) && camera.target.x < mapSize.x) camera.target.x += 10 / camera.zoom;
if ((mousePosition.y < screenSize.y * 0.15f || IsKeyDown(KEY_W)) && camera.target.y > 100) camera.target.y -= 10 / camera.zoom;
if ((mousePosition.y > screenSize.y * 0.85f || IsKeyDown(KEY_S)) && camera.target.y < mapSize.y) camera.target.y += 10 / camera.zoom;
// Camera zoom controls
camera.zoom += ((float)GetMouseWheelMove() * 0.2f);
if (camera.zoom > 10.0f) camera.zoom = 10.0f;
else if (camera.zoom < 0.1f) camera.zoom = 0.1f;
// view borders calculation
Vector2 buf1 = GetScreenToWorld2D(Vector2{ 0,0 }, camera);
Vector2 buf2 = GetScreenToWorld2D(Vector2{ screenSize.x,screenSize.y }, camera);
viewBorders = {
buf1.x,
buf1.y,
buf2.x - buf1.x,
buf2.y - buf1.y
};
renderBorders[0] = (buf1.y / pixelsPerTile) - 1;
renderBorders[1] = (buf1.x / pixelsPerTile) - 1;
renderBorders[2] = (buf2.y / pixelsPerTile) + 1;
renderBorders[3] = (buf2.x / pixelsPerTile) + 1;
if (renderBorders[0] < 0) renderBorders[0] = 0;
if (renderBorders[1] < 0) renderBorders[1] = 0;
if (renderBorders[2] > mapHeight) renderBorders[2] = mapHeight;
if (renderBorders[3] > mapWidth) renderBorders[3] = mapWidth;
//TURRET BUILDING
if (IsKeyPressed(KEY_ONE))
if (wantToBuild == ActorType::ACTOR_NULL)
wantToBuild = ActorType::LIGHT_TURRET;
if (IsKeyPressed(KEY_TWO))
if (wantToBuild == ActorType::ACTOR_NULL)
wantToBuild = ActorType::HEAVY_TURRET;
if (IsKeyPressed(KEY_THREE))
if (wantToBuild == ActorType::ACTOR_NULL)
wantToBuild = ActorType::AIRDEFENSE_TURRET;
//BUILD BASE
if (IsKeyPressed(KEY_B) && basePtr == nullptr)
if (wantToBuild == ActorType::ACTOR_NULL)
wantToBuild = ActorType::BASE;
else
wantToBuild = ActorType::ACTOR_NULL;
//BUILD CORE
if (IsKeyPressed(KEY_Q))
if (wantToBuild == ActorType::ACTOR_NULL)
wantToBuild = ActorType::CORE;
else
wantToBuild = ActorType::ACTOR_NULL;
//MANUAL INSECTS SPAWN
if (IsKeyPressed(KEY_FOUR))
if (wantToBuild == ActorType::ACTOR_NULL)
wantToBuild = ActorType::LIGHT_INSECT;
if (IsKeyPressed(KEY_FIVE))
if (wantToBuild == ActorType::ACTOR_NULL)
wantToBuild = ActorType::HEAVY_INSECT;
if (IsKeyPressed(KEY_SIX))
if (wantToBuild == ActorType::ACTOR_NULL)
wantToBuild = ActorType::FLYING_INSECT;
//SPAWN TUMOR
if (IsKeyPressed(KEY_E))
if(wantToBuild == ActorType::ACTOR_NULL)
wantToBuild = ActorType::TUMOR;
else
wantToBuild = ActorType::ACTOR_NULL;
if (IsKeyPressed(KEY_C))
clearMap();
//clear all fog of war by current vision side
if (IsKeyPressed(KEY_V))
{
int** fogOfWar = mapsFogOfWar[visionSide];
for (int x = 0; x < mapWidth; x++)
for (int y = 0; y < mapHeight; y++)
fogOfWar[x][y] = 100;
calculateVectorPathfinding(insectsDesirePosition, ActorType::LIGHT_INSECT);
calculateVectorPathfinding(insectsDesirePosition, ActorType::HEAVY_INSECT);
calculateVectorPathfinding(insectsDesirePosition, ActorType::FLYING_INSECT);
}
if (IsKeyPressed(KEY_R))
if (wantToRemove)
wantToRemove = false;
else
{
wantToBuild = ActorType::ACTOR_NULL;
wantToRemove = true;
}
if (IsKeyPressed(KEY_T))
{
insectsDesirePosition = mouseIndex;
calculateVectorPathfinding(insectsDesirePosition, ActorType::LIGHT_INSECT);
calculateVectorPathfinding(insectsDesirePosition, ActorType::HEAVY_INSECT);
calculateVectorPathfinding(insectsDesirePosition, ActorType::FLYING_INSECT);
}
if (IsKeyPressed(KEY_F1))
if (visionSide == Side::INSECTS)
visionSide = Side::MACHINES;
else
visionSide = Side::INSECTS;
if (IsKeyPressed(KEY_F2))
if (showingCreepStates)
showingCreepStates = false;
else
showingCreepStates = true;
if (IsKeyPressed(KEY_SPACE))
if (gamePaused)
gamePaused = false;
else
gamePaused = true;
//NEURAL RE-CALCULATION
if (IsKeyPressed(KEY_Y))
{
calculateInsectsWeights();
}
//ACTORS BUILDING
if (IsMouseButtonPressed(MOUSE_RIGHT_BUTTON) && wantToBuild != ActorType::ACTOR_NULL)
{
//right-click to clear
wantToBuild = ActorType::ACTOR_NULL;
}
if (IsMouseButtonPressed(MOUSE_LEFT_BUTTON) && wantToBuild != ActorType::ACTOR_NULL &&
mapExpansionEnergised[mouseIndex.x][mouseIndex.y] != ExpandState::UNAVAILABLE /*&&
getActorInTile(mouseIndex.x, mouseIndex.y) == nullptr*/)
{
Vector2 position = { mouseIndex.x * pixelsPerTile + pixelsPerTile / 2, mouseIndex.y * pixelsPerTile + pixelsPerTile / 2 };
addActor(wantToBuild, position, State::ONLINE);
}
//PREVIEW AND MINIMAP UPDATE
if (timeCount == 0)
{
updateMapPreview();
}
if (!gamePaused && basePtr!=nullptr) //game starts only when base placed
{
//TIME COUNTER
timeCount++;
if (timeCount > 60)
{
timeCount = 0;
timeCountSeconds++;
}
//UNIT UPDATING
std::vector<GameActor*>::iterator iter;
GameActor* buf = nullptr;
for (iter = unitsList.begin(); iter != unitsList.end(); )
{
//removing pointers for killed units from vector
if ((*iter) == nullptr)
{
iter = unitsList.erase(iter);
}
else
{
(*iter)->Update();
iter++;
}
}
//TUMOR SPAWNING
if (timeCountSeconds % 3 == 0 && timeCount == 0)
{
int tumorCost = genericAttributes[ActorType::TUMOR]["cost"];
if (trySpendResources(tumorCost, Side::INSECTS) == tumorCost) //if have enough Food
{
bool builded;
int** maps[] = { mapsDamage[ActorType::LIGHT_INSECT], mapsDamage[ActorType::HEAVY_INSECT],mapsDamage[ActorType::FLYING_INSECT] };
int tumorRadius = buildingsAttributes[ActorType::TUMOR]["expansionRange"];
std::vector<GameActor*> actorBuf;
std::vector<TileIndex> bufTiles;
for (Building* bulding : expansionUnitsList_Insects)
{
if (bulding->getState() != State::UNDER_CONSTRUCTION)
{
builded = false;
bufTiles = tilesInPerimeterCircleOrdered(bulding->getPositionIndex(), tumorRadius + 1);
for (TileIndex tile : bufTiles)
{
Vector2 vectorBuf = { tile.x * pixelsPerTile, tile.y * pixelsPerTile };
if (getActorInTile(tile.x, tile.y) == nullptr &&
getTerrainType(tile.x, tile.y) != TerrainType::MOUNTAIN &&
getTerrainType(tile.x, tile.y) != TerrainType::LAKE &&
mapExpansionCreep[tile.x][tile.y] != ExpandState::EXPANDED &&
mapExpansionCreep[tile.x][tile.y] != ExpandState::UNAVAILABLE &&
maps[0][tile.x][tile.y] == 0 &&
maps[1][tile.x][tile.y] == 0 &&
maps[2][tile.x][tile.y] == 0)
{
addActor(ActorType::TUMOR, vectorBuf, State::ONLINE);
spendResources(tumorCost, Side::INSECTS);
builded = true;
break;
}
}
if (builded)
break;
}
}
}
}
//INSECTS SPAWNING
if ((timeCountSeconds % 10 == 0 && timeCount == 0 && spawningUnits) || IsKeyPressed(KEY_U))
{
hivePtr->SpawnUnits();
}
if (IsKeyPressed(KEY_H))
if (spawningUnits)
spawningUnits = false;
else
spawningUnits = true;
if (IsMouseButtonPressed(MOUSE_LEFT_BUTTON) && wantToRemove)
{
GameActor* buf = getActorInTile(mouseIndex.x, mouseIndex.y);
if (buf != nullptr)
removeActor(buf->ID);
wantToRemove = false;
}
//expansion fading
if (timeCount == 0)
{
std::vector<TileIndex>buf;
//INSECTS
for (int x = 0; x < mapWidth; x++)
{
for (int y = 0; y < mapHeight; y++)
{
if (mapExpansionCreep[x][y] == ExpandState::EXPANDED_WITHOUT_SOURCE)
{
if (numOfExpansionTileAdjoinFading(x, y, Side::INSECTS) < 3)
buf.push_back(TileIndex{ x,y });
}
}
}
creepTilesCount -= buf.size();
for (TileIndex tile : buf)
mapExpansionCreep[tile.x][tile.y] = ExpandState::AVAILABLE;
//MACHINES
buf.clear();
for (int x = 0; x < mapWidth; x++)
{
for (int y = 0; y < mapHeight; y++)
{
if (mapExpansionEnergised[x][y] == ExpandState::EXPANDED_WITHOUT_SOURCE)
{
if (numOfExpansionTileAdjoinFading(x, y, Side::MACHINES) < 4)
buf.push_back(TileIndex{ x,y });
}
}
}
energisedTilesCount -= buf.size();
for (TileIndex tile : buf)
mapExpansionEnergised[tile.x][tile.y] = ExpandState::AVAILABLE;
}
//damage map fading
if (timeCountSeconds % 5 == 0 && timeCount == 0)
{
//iterate through all insects types
std::vector<ActorType> insectsTypes = { ActorType::LIGHT_INSECT,ActorType::HEAVY_INSECT, ActorType::FLYING_INSECT };
for (ActorType actorType : insectsTypes)
{
int** matrixBuf = mapsDamage[actorType];
for (int x = 0; x < mapWidth; x++)
{
for (int y = 0; y < mapHeight; y++)
{
if (matrixBuf[x][y] >= 1)
matrixBuf[x][y] -= 1;
/*else
matrixBuf[x][y] = 0;*/
}
}
//vector field recalculating
calculateVectorPathfinding(insectsDesirePosition, actorType);
}
}
//damage map spread
if (timeCount % 15 == 0)
{
//iterate through all insects types
std::vector<ActorType> insectsTypes = { ActorType::LIGHT_INSECT,ActorType::HEAVY_INSECT, ActorType::FLYING_INSECT };
for (ActorType actorType : insectsTypes)
{
int** matrixBuf = mapsDamage[actorType];
int toTransfer;
NeighborsIndex neighbors;
for (int x = 0; x < mapWidth; x++)
{
for (int y = 0; y < mapHeight; y++)
{
if (matrixBuf[x][y] >= 10) //if damage more than 36
{
neighbors = getNeighbors(x, y);
toTransfer = matrixBuf[x][y] * 0.1;
if (neighbors.left.x != -1)
{
matrixBuf[x][y] -= toTransfer;
matrixBuf[x - 1][y] += toTransfer;
}
if (neighbors.up.x != -1)
{
matrixBuf[x][y] -= toTransfer;
matrixBuf[x][y - 1] += toTransfer;
}
if (neighbors.right.x != -1)
{
matrixBuf[x][y] -= toTransfer;
matrixBuf[x + 1][y] += toTransfer;
}
if (neighbors.down.x != -1)
{
matrixBuf[x][y] -= toTransfer;
matrixBuf[x][y + 1] += toTransfer;
}
}
}
}
}
}
//military targets recalculation
if (timeCountSeconds % 1 == 0 && timeCount == 0)
{
for (Militaty* unit : militaryUnitsList)
{
unit->SeekForEnemy();
}
}
//RESOURCES GATHERING
if (timeCount % 30 == 1)
{
resourcesMachines_previous = resourcesMachines;
resourcesInsects += creepTilesCount / 50;
resourcesMachines += energisedTilesCount / 50;
if (resourcesMachines > 1000) resourcesMachines = 1000; //maximum of Energy
}
//TILE ANIMATION
if (timeCount % 15 == 0)
{
currentFrame++;
if (currentFrame >= expansionMachinesAnimation.framesAmount)
currentFrame = 0;
}
}
}
void GameData::GameDraw()
{
BeginMode2D(camera);
#ifndef TILE_DRAWING
DrawTextureEx(
terrainTexture,
Vector2{ 0.f, 0.f },
0.f, pixelsPerTile, WHITE);
#else
if (camera.zoom < 1.f /*&& !IsKeyDown(KEY_T)*/) //low-detailed map
{
DrawTextureEx(
terrainTexture,
Vector2{ 0.f, 0.f },
0.f, pixelsPerTile, WHITE);
}
else
{ //full-detailed map
//black background for fog of war
DrawRectangle(0, 0, mapSize.x, mapSize.y, BLACK);
Vector2** vectorField = vectorFields[ActorType::LIGHT_INSECT];
float** terrainMod = mapsPathfinding[ActorType::LIGHT_INSECT]["mapsTerrainMod"];
int** fogOfWar = mapsFogOfWar[visionSide];
int** mapDamage = mapsDamage[ActorType::LIGHT_INSECT];
int index;
for (int x = renderBorders[1]; x < renderBorders[3]; x++) //columns
{
for (int y = renderBorders[0]; y < renderBorders[2]; y++) //rows
{
if (fogOfWar[x][y] != -1)
{
index = mapWidth * y + x;
//if there is creep:
if (mapExpansionCreep[x][y] == ExpandState::EXPANDED || mapExpansionCreep[x][y] == ExpandState::EXPANDED_WITHOUT_SOURCE)
{
float x_exp = static_cast<float>(x % (expansionInsectsTexture.width / static_cast<int>(pixelsPerTile)));
float y_exp = static_cast<float>(y % (expansionInsectsTexture.height / static_cast<int>(pixelsPerTile)));
Rectangle buf = {
x_exp * pixelsPerTile,
y_exp * pixelsPerTile,
pixelsPerTile,
pixelsPerTile };
DrawTextureRec(
expansionInsectsTexture,
buf,
Vector2{ x * pixelsPerTile, y * pixelsPerTile, },
WHITE);
}
else
{
//if there is energized tile:
if (mapExpansionEnergised[x][y] == ExpandState::EXPANDED || mapExpansionEnergised[x][y] == ExpandState::EXPANDED_WITHOUT_SOURCE)
{
float x_exp = static_cast<float>(x % (expansionMachinesAnimation.width / static_cast<int>(pixelsPerTile)));
float y_exp = static_cast<float>(y % (expansionMachinesAnimation.height / static_cast<int>(pixelsPerTile)));
Rectangle buf = {
x_exp * pixelsPerTile,
y_exp * pixelsPerTile,
pixelsPerTile,
pixelsPerTile };
DrawTextureRec(
expansionMachinesAnimation.frames[currentFrame],
buf,
Vector2{ x * pixelsPerTile, y * pixelsPerTile, },
WHITE);
}
else
{
DrawTexture(
tilesetTex[static_cast<int>(mapTerrain[index])],
x * pixelsPerTile,
y * pixelsPerTile,
WHITE);
}
}
}
if (showingCreepStates)
DrawText(FormatText("%d", mapExpansionCreep[x][y]), x * pixelsPerTile + pixelsPerTile / 3, y * pixelsPerTile + pixelsPerTile / 3, 14, RED);
//heatmap, light insects
if(IsKeyDown(KEY_F4))
DrawText(FormatText("%.0f", mapsPathfinding[ActorType::LIGHT_INSECT]["mapsHeat"][x][y]), x * pixelsPerTile + pixelsPerTile / 3, y * pixelsPerTile + pixelsPerTile / 3, 6, SKYBLUE);
//damage map, light insects
if (IsKeyDown(KEY_F7))
DrawText(FormatText("%d", mapDamage[x][y]), x * pixelsPerTile + pixelsPerTile / 3, y * pixelsPerTile + pixelsPerTile / 3, 6, RED);
//vector field, light insects
if (IsKeyDown(KEY_F5) && terrainMod[x][y]!=-1.f)
{
DrawLineEx(
Vector2{ x * pixelsPerTile + pixelsPerTile / 2,
y * pixelsPerTile + pixelsPerTile / 2 },
Vector2{ x * pixelsPerTile + pixelsPerTile / 2 + vectorField[x][y].x *6,
y * pixelsPerTile + pixelsPerTile / 2 + vectorField[x][y].y * 6,
},
3.f,
GREEN);
DrawCircle(x * pixelsPerTile + pixelsPerTile / 2, y * pixelsPerTile + pixelsPerTile / 2, 1, RED);
}
//fog of war, INSECTS side
if(IsKeyDown(KEY_F6))
DrawText(FormatText("%d", static_cast<int>(fogOfWar[x][y])), x * pixelsPerTile + pixelsPerTile / 3, y * pixelsPerTile + pixelsPerTile / 3, 10, SKYBLUE);
}
}
}
#endif
//UNIT DRAWING
TileIndex buf_position;
int** mapFogOfWar = mapsFogOfWar[visionSide];
for (GameActor* actor : this->unitsList)
{
if (actor != nullptr)
{
buf_position = actor->getPositionIndex();
if (buf_position.x >= renderBorders[1] &&
buf_position.x < renderBorders[3] &&
buf_position.y >= renderBorders[0] &&
buf_position.y < renderBorders[2] &&
mapFogOfWar[buf_position.x][buf_position.y] != -1)
{
actor->Draw();
}
}
}
if (this->wantToBuild != ActorType::ACTOR_NULL)
{
Texture2D bufTexture;
int size;
Color tint;
unsigned int radius;
int** fogOfWar = mapsFogOfWar[visionSide];
switch (wantToBuild)
{
case ActorType::LIGHT_TURRET:
case ActorType::HEAVY_TURRET:
case ActorType::AIRDEFENSE_TURRET:
DrawCircleLines(
mouseIndex.x * pixelsPerTile + pixelsPerTile / 2,
mouseIndex.y * pixelsPerTile + pixelsPerTile / 2,
militaryAttributes[wantToBuild]["attackRange"],
RED
);
DrawCircleLines(
mouseIndex.x* pixelsPerTile + pixelsPerTile / 2,
mouseIndex.y* pixelsPerTile + pixelsPerTile / 2,
militaryAttributes[wantToBuild]["seekRange"],
ORANGE
);
DrawCircleLines(
mouseIndex.x* pixelsPerTile + pixelsPerTile / 2,
mouseIndex.y* pixelsPerTile + pixelsPerTile / 2,
connectableAttributes[wantToBuild]["connectRange"],
DARKBLUE
);
bufTexture = getUnitAnimation(ActorType::TURRET_CHASIS, State::CHANGING_MODE).frames[3];
size = genericAttributes[wantToBuild]["size"];
if (mapExpansionEnergised[mouseIndex.x][mouseIndex.y] != ExpandState::UNAVAILABLE && getActorInTile(mouseIndex.x, mouseIndex.y) == nullptr)
tint = GREEN;
else
tint = RED;
DrawTexturePro(
bufTexture, //texture
Rectangle{ 0,0, (float)bufTexture.width, (float)bufTexture.height }, //source
Rectangle{
mouseIndex.x * pixelsPerTile + pixelsPerTile / 2,
mouseIndex.y * pixelsPerTile + pixelsPerTile / 2,
(float)size * 2.f, (float)size * 2.f }, //dest
Vector2{ (float)(size), (float)(size) }, //origin
(float)0, //rotation
tint
);
break;
case ActorType::LIGHT_INSECT:
case ActorType::HEAVY_INSECT:
case ActorType::FLYING_INSECT:
break;
case ActorType::CORE:
DrawCircleLines(
mouseIndex.x * pixelsPerTile + pixelsPerTile / 2,
mouseIndex.y * pixelsPerTile + pixelsPerTile / 2,
connectableAttributes[wantToBuild]["connectRange"],
YELLOW
);
case ActorType::BASE:
DrawCircleLines(
mouseIndex.x * pixelsPerTile + pixelsPerTile / 2,
mouseIndex.y * pixelsPerTile + pixelsPerTile / 2,
constructorsAttributes[wantToBuild]["buildRange"],
VIOLET
);
radius = buildingsAttributes[wantToBuild]["expansionRange"];
for (TileIndex tile : tilesInsideCircle(Vector2{ static_cast<float>(mouseIndex.x), static_cast<float>(mouseIndex.y) }, radius))
{
if(mapExpansionEnergised[tile.x][tile.y]==ExpandState::AVAILABLE && fogOfWar[tile.x][tile.y]!=-1)
DrawRectangle(tile.x * pixelsPerTile, tile.y * pixelsPerTile, pixelsPerTile, pixelsPerTile, Fade(SKYBLUE, 0.5f));
}
if (mapExpansionEnergised[mouseIndex.x][mouseIndex.y]!=ExpandState::UNAVAILABLE && getActorInTile(mouseIndex.x, mouseIndex.y) == nullptr)
{
DrawCircle(
mouseIndex.x* pixelsPerTile + pixelsPerTile / 2,
mouseIndex.y* pixelsPerTile + pixelsPerTile / 2,
genericAttributes[wantToBuild]["size"],
Fade(SKYBLUE, 0.5f));
}
else
{
DrawCircle(
mouseIndex.x * pixelsPerTile + pixelsPerTile / 2,
mouseIndex.y * pixelsPerTile + pixelsPerTile / 2,
genericAttributes[wantToBuild]["size"],
Fade(RED, 0.5f));
}
case ActorType::HIVE:
case ActorType::TUMOR:
//draw blue circle of expansion
break;
}
}
if (wantToRemove)
{
DrawRectangle(mouseIndex.x * pixelsPerTile, mouseIndex.y * pixelsPerTile, pixelsPerTile, pixelsPerTile, Fade(RED, 0.3f));
}
EndMode2D();
DrawText(FormatText("Camera zoom: %.2f", camera.zoom), 20, 20, 20, RED);
DrawText(FormatText("Tiles rendering: %d", (renderBorders[2] - renderBorders[0])* (renderBorders[3] - renderBorders[1])), 20, 50, 20, RED);
DrawText(FormatText("Mouse tile index: %d, %d", mouseIndex.x, mouseIndex.y), 20, 140, 20, RED);
DrawText(FormatText("Desire position: %d, %d", insectsDesirePosition.x, insectsDesirePosition.y), 20, 80, 20, RED);
if(visionSide==Side::INSECTS)
DrawText("Vision side: INSECTS", 20, 110, 20, RED);
else
DrawText("Vision side: MACHINES", 20, 110, 20, RED);
DrawText(TextFormat("Creep: %d, food: %d", creepTilesCount, resourcesInsects), 20, 170, 20, RED);
DrawText(TextFormat("Zerolayer: %d, energy: %d", energisedTilesCount, resourcesMachines), 20, 200, 20, RED);
//NEURO STUFF
DrawText(TextFormat("Units spawned: light - %d, heavy - %d, air - %d", unitsSpawned[0], unitsSpawned[1], unitsSpawned[2]), 20, 230, 20, RED);
DrawText(TextFormat("Weights: light - %.2f, heavy - %.2f, air - %.2f", weights[0], weights[1], weights[2]), 20, 260, 20, RED);
DrawText(TextFormat("Efficiency: light - %.2f, heavy - %.2f, air - %.2f", battleEfficiency[0], battleEfficiency[1], battleEfficiency[2]), 20, 290, 20, RED);
DrawText(TextFormat("Previous efficiency: light - %.2f, heavy - %.2f, air - %.2f", battleEfficiency_previous[0], battleEfficiency_previous[1], battleEfficiency_previous[2]), 20, 320, 20, RED);
DrawText(TextFormat("Damage dealt: light - %d, heavy - %d, air - %d", damageDealt[0], damageDealt[1], damageDealt[2]), 20, 350, 20, RED);
DrawText(TextFormat("Damage taken: light - %d, heavy - %d, air - %d", damageTaken[0], damageTaken[1], damageTaken[2]), 20, 380, 20, RED);
if (spawningUnits)
DrawText("Unit autospawn: enabled", 20, 410, 20, RED);
else
DrawText("Unit autospawn: disabled", 20, 440, 20, RED);
//ENERGY BAR
DrawRectangle(screenSize.x / 3, screenSize.y - 70, screenSize.x / 3, 70, DARKGRAY);
DrawRectangle(screenSize.x / 3+5, screenSize.y - 50, ((screenSize.x / 3) * static_cast<float>(resourcesMachines)/1000) - 10, 40, BLUE);
DrawText(FormatText("Energy: %d/%d", resourcesMachines, 1000), (screenSize.x/7)*3, screenSize.y-35, 24, YELLOW);
int textWidth = MeasureText(FormatText("Energy: %d/%d", resourcesMachines, 1000), 24);
if (static_cast<int>(resourcesMachines) - static_cast<int>(resourcesMachines_previous) >= 0)
{
DrawText(FormatText(" + %d/s", (resourcesMachines - resourcesMachines_previous)*2), (screenSize.x / 7) * 3 + textWidth, screenSize.y - 35, 24, GREEN);
}
else
{
DrawText(FormatText(" - %d/s", (resourcesMachines - resourcesMachines_previous) * 2), (screenSize.x / 7) * 3 + textWidth, screenSize.y - 35, 24, RED);
}
DrawFPS(20, 5);
}
GameData::~GameData()
{
//Unloading images and textures
if (isMapLoaded())
{
delete[] mapTerrain;
UnloadTexture(terrainTexture);
for (int x = 0; x < mapWidth; x++)
delete[] mapExpansionCreep[x];
delete[] mapExpansionCreep;
ActorType types[] = { ActorType::LIGHT_INSECT, ActorType::HEAVY_INSECT, ActorType::FLYING_INSECT };
std::vector<std::string> matrices = { "mapsHeat", "mapsTerrainMod"};
for (ActorType type : types)
{
for (std::string matrixName : matrices)
{
for (int x = 0; x < mapWidth; x++)
delete[] mapsPathfinding[type][matrixName][x];
delete[] mapsPathfinding[type][matrixName];
}
//vector matrix
for (int x = 0; x < mapWidth; x++)
delete[] vectorFields[type][x];
delete[] vectorFields[type];
}
//neightbors matrix
for (int x = 0; x < mapWidth; x++)
delete[] neighborsIndices[x];
delete[] neighborsIndices;
//fog of war
Side sides[] = { Side::INSECTS, Side::MACHINES };
for (Side side : sides)
{
for (int x = 0; x < mapWidth; x++)
delete[] mapsFogOfWar[side][x];
delete[] mapsFogOfWar[side];
}
}
UnloadTexture(expansionInsectsTexture);
for (int i = 0; i < 7; i++)
{
UnloadTexture(tilesetTex[i]);
}
delete[] palette;
} |
d7fe23f6c347017b990ddb3759fd7d3f34ef7ea3 | 1c38f3e17e5df85d5ffbbbd66b456f48490fe79e | /music.h | f3ac6db8ef1501c6778f3bf856d6fb6033084e78 | [
"Unlicense"
] | permissive | zrmei/music | b5b62f25fd1a6a171e00e02603bf835ef9401348 | 60a9a71b026a15176a59f9e815f7bc029c90c21f | refs/heads/master | 2023-08-03T15:48:03.217962 | 2014-12-07T06:52:32 | 2014-12-07T06:52:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,843 | h | music.h | #ifndef MUSIC_H
#define MUSIC_H
#include <QtWidgets/QMainWindow>
#include <QMediaPlayer>
#include <QDir>
#include <QFileDialog>
#include <QMediaPlaylist>
#include <QSettings>
#include <QThread>
#include "csqlite3.h"
class Music;
class UpdateUI : public QThread
{
Q_OBJECT
signals:
void UpdateSignal(QStringList);
public:
UpdateUI(QObject *parent=0);
~UpdateUI();
void setStrings(QStringList&);
protected:
virtual void run();
private:
QStringList pathList_;
Music *music;
};
QStringList ToStringList(QList<QFileInfo> *fileInfolist);
namespace Ui {
class Music;
}
enum class Mode{ Repeat,Once,Shuffle };
class Music : public QMainWindow
{
Q_OBJECT
public:
explicit Music(QWidget *parent = 0);
~Music();
unsigned int vol;
public slots:
void on_btnStop_clicked();
protected:
void changeEvent(QEvent *e);
void mousePressEvent(QMouseEvent *e);
private slots:
void add_file_triggered();
void add_folder_triggered();
void clear_clicked();
void on_btnPause_clicked();
void on_vol_valueChanged(int value);
void on_locate_valueChanged(int value);
void on_listMusic_doubleClicked(const QModelIndex &);
void positionChanged(qint64);
void durationChanged(qint64);
void setPosition(int);
void once_clicked();
void repeat_clicked();
void shuffle_clicked();
void listMusic_customContextMenuRequested(const QPoint &pos);
void del_file();
void UpdateSignal(QStringList);
private:
void playFile(int index);
void setConnect();
void getSettings(QString& path);
public:
CSqlite3 *csqlite3;
private:
Ui::Music *ui;
QMediaPlayer *player;
QMediaPlaylist *playlist;
QSettings *inifile;
UpdateUI *thread;
Mode mode=Mode::Shuffle;
};
#endif // MUSIC_H
|
b8efc82c6d8939285543152b32d4fc0b08061bf8 | 12445f58170174a40972d7a254a8949e973898ed | /program_examples/shmipc_client/ctcp.h | 01c3eda613e8ece005b751856f7c0aba8d043962 | [] | no_license | kekland/nti-contest-telecom | 1f1022f567e032d2efe3b496827435a5404cb831 | 5cf30ebb665deab5c57d9ff240b012d5251cb0db | refs/heads/master | 2020-03-06T15:27:28.714264 | 2018-03-27T08:44:26 | 2018-03-27T08:44:26 | 126,956,314 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,428 | h | ctcp.h | #ifndef __TCP_H__
#define __TCP_H__
#include <iostream>
#include <cstring>
#include <unistd.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <arpa/inet.h>
#include <errno.h>
#include <netdb.h>
#include "tcp_proto.h"
//#define SERVER_ADDR "10.12.12.5"
#define SERVER_NAME "rad"
class CClient
{
private:
struct PacketIn {
TCP_STATUS_STRUCT status;
void deserialize(unsigned char *data, unsigned int len) {
memcpy(this, data, len-CRC_SIZE);
}
};
struct PacketOut {
TCP_CONTROL_STRUCT control;
unsigned int serialize(unsigned char *data) {
unsigned int len = sizeof(PacketOut);
memcpy(data, this, len);
return len;
}
};
PacketIn packetIn;
PacketOut packetOut;
unsigned char Buffer[MAX_BUFF_SIZE];
bool flConnected;
int sockFd;
socklen_t clientLen;
struct sockaddr_in servAddr;
unsigned int crc_table[256];
void init_crc32_table();
unsigned int crc_32(unsigned char *buf, unsigned int size);
int in_data(unsigned char *data, unsigned int len);
unsigned int out_data(unsigned char *data, unsigned int len);
int hostname_to_ip(const char* host,char* ip);
public:
char SERVER_ADDR[255];
bool ClientThreadDone;
TCP_CONTROL_STRUCT Control;
TCP_STATUS_STRUCT Status;
CClient();
~CClient();
int clientStart();
int sendCommand();
int Close();
};
#endif
|
dab336bc16b65ad4aa7be6f36cd079b3249ea672 | 013030365857a6b2fa2405929aaba9f3f73ed87e | /seconlevel_f3.cpp | b5c07a0c021922a755d0d14481a3a1b6a6774f44 | [] | no_license | taiyuankejizhu/SparkCNC | 98a8c526b7ce5afd3574cc5d64a05b018609d03a | 16f10155434d0b4c312395226283583c10788a1a | refs/heads/master | 2021-01-23T07:03:10.873569 | 2014-06-21T09:00:50 | 2014-06-21T09:00:50 | 18,831,741 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,205 | cpp | seconlevel_f3.cpp | #include "seconlevel_f3.h"
#include "ui_seconlevel_f3.h"
#include "qdebug.h"
seconlevel_f3::seconlevel_f3(QWidget *parent) :
QWidget(parent),
ui(new Ui::seconlevel_f3)
{
ui->setupUi(this);
coor = new CoorDialog(parent);
coor->hide();
connect(coor ,SIGNAL(finished(int)) ,this ,SLOT(f3_Done(int)));
connect(ui->pushButton_F3,SIGNAL(clicked()),this ,SLOT(F3()));
ui->pushButton_F3->setCheckable(true);
connect(this ,SIGNAL(enter(int)),parent ,SLOT(funcbarUpdate(int)));
connect(ui->pushButton_F8,SIGNAL(clicked()),this ,SLOT(F8()));
setFocusPolicy(Qt::NoFocus);
}
void seconlevel_f3::F3()
{
if(ui->pushButton_F3->isChecked()){
coor->show();
coor->setFocus();
}
else
coor->hide();
}
void seconlevel_f3::F8()
{
if(ui->pushButton_F3->isChecked())
ui->pushButton_F3->click();
emit enter(28);
}
void seconlevel_f3::F0()
{
}
void seconlevel_f3::f3_Done(int r)
{
if(r == 0)
qDebug()<<"F3 Cancel!";
else
qDebug()<<"F3 OK!";
parentWidget()->setFocus();
if(ui->pushButton_F3->isChecked())
ui->pushButton_F3->click();
}
seconlevel_f3::~seconlevel_f3()
{
delete ui;
}
|
dc6bdc4ca2675dee868df25a6aef2f321692efb8 | 08b8cf38e1936e8cec27f84af0d3727321cec9c4 | /data/crawl/git/hunk_3034.cpp | dc19a75b685ccf0d0948d540cd03f43268cbf8f2 | [] | no_license | ccdxc/logSurvey | eaf28e9c2d6307140b17986d5c05106d1fd8e943 | 6b80226e1667c1e0760ab39160893ee19b0e9fb1 | refs/heads/master | 2022-01-07T21:31:55.446839 | 2018-04-21T14:12:43 | 2018-04-21T14:12:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 687 | cpp | hunk_3034.cpp | const char *name = (const char *)rr->items[i].util;
if (has_rerere_resolution(name)) {
- if (!merge(name, path)) {
- const char *msg;
- if (rerere_autoupdate) {
- string_list_insert(&update, path);
- msg = "Staged '%s' using previous resolution.\n";
- } else
- msg = "Resolved '%s' using previous resolution.\n";
- fprintf(stderr, msg, path);
- goto mark_resolved;
- }
+ if (merge(name, path))
+ continue;
+
+ if (rerere_autoupdate)
+ string_list_insert(&update, path);
+ else
+ fprintf(stderr,
+ "Resolved '%s' using previous resolution.\n",
+ path);
+ goto mark_resolved;
}
/* Let's see if we have resolved it. */ |
14e6fd081ec9086f6a05cccb6735039dd88cce6c | 20915b99d7bf7a1470447f71547f5433a0f0d591 | /AOJ/2550-2599/2593-Spuare_in_Circles.cpp | aaf0f0d542c0e977e868c2a9b61f28e6098cf3f1 | [] | no_license | Suikaba/procon-solved | 611005a6001c6d468f2295f6aa7ab06d24c75748 | d49b080258e71d9460688616e8528ce3ad7de36a | refs/heads/master | 2020-03-11T13:37:24.605464 | 2019-09-17T08:47:48 | 2019-09-17T08:47:48 | 130,030,074 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,352 | cpp | 2593-Spuare_in_Circles.cpp | // http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=2593
#include <bits/stdc++.h>
using namespace std;
using pdd = pair<double, double>;
double solve(vector<double> x, vector<double> r) {
const int n = x.size();
auto check = [&] (double h) {
vector<pdd> ps(n);
for(int i = 0; i < n; ++i) {
double x1 = x[i], x2 = x[i];
if(h <= r[i]) {
x1 -= sqrt(r[i] * r[i] - h * h);
x2 += sqrt(r[i] * r[i] - h * h);
}
ps[i] = make_pair(x1, x2);
}
sort(begin(ps), end(ps));
double lx = -1e9, rx = -2e9;
for(int i = 0; i < n; ++i) {
if(rx < ps[i].first) {
if(rx - lx >= 2 * h) return true;
lx = ps[i].first, rx = ps[i].second;
} else {
rx = max(rx, ps[i].second);
}
}
return rx - lx >= 2 * h;
};
double lb = 0, ub = 2e5;
for(int lp = 0; lp < 60; ++lp) {
const auto mid = (lb + ub) / 2;
(check(mid) ? lb : ub) = mid;
}
return lb * 2;
}
int main() {
int n;
while(cin >> n, n) {
vector<double> x(n), r(n);
for(int i = 0; i < n; ++i) {
cin >> x[i] >> r[i];
}
cout << fixed << setprecision(10) << solve(move(x), move(r)) << endl;
}
}
|
0b5b95da878d850c64100c7f6cf594c499878486 | 5aed887e6d595d25f370080ba8b18bdbfd90b25d | /CygnusGame.h | 4f9a498a57a3383ca0f7f905b8e8529d0dc0251c | [] | no_license | HaikuArchives/Cygnus | 9f3e442b9b70c81ef38afddde943f3d4df623b8a | b8e45e6b15b40b64e555aecdc767355adc6ef3d3 | refs/heads/master | 2021-01-20T05:31:17.653592 | 2014-01-09T14:56:52 | 2014-01-09T14:56:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 709 | h | CygnusGame.h | /*
CygnusGame.h
*/
/*
Originally written by Ben Loftis.
This source code is available freely for any use.
If you use this source extensively in your project, I humbly
request that you credit me in your program.
*/
#ifndef CYGNUS_GAME_H
#define CYGNUS_GAME_H
#include "ProtoShip.h"
#include "Star.h"
#include "Asteroid.h"
#include "FuelCrystal.h"
#define NUM_STARS 50
#define NUM_ASTEROIDS 10
class CygnusGame
{
public:
CygnusGame();
~CygnusGame();
void Animate();
void Render();
void Move( EMoveType inMove );
private:
//Game objects
ProtoShip *mShip;
FuelCrystal *mFuelCrystal;
Asteroid *mAsteroids[NUM_ASTEROIDS];
Star *mStars[NUM_STARS];
};
#endif
|
b5315c2060c630ddd99c3e8cab2abf600b92fd29 | 2a78545bf5f1b8705630695026a167aadb006ae3 | /pb-lib/pblib/encoder/SWC.cpp | 4662190916abd0f5c3fd152904bde8ffc36775ae | [
"MIT"
] | permissive | chisui/haskell-ipasir | 5f232aedec28d885494314fa9120e5f3c3ad04f3 | 2add0efe0ab29d03000f5afd8e87ad5655e0c7d2 | refs/heads/master | 2021-01-19T13:22:20.079802 | 2017-10-11T12:51:44 | 2017-10-11T12:51:44 | 88,081,360 | 2 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 4,286 | cpp | SWC.cpp | #include "SWC.h"
using namespace PBLib;
using namespace std;
void SWC_Encoder::encode(const SimplePBConstraint& pbconstraint, ClauseDatabase& formula, AuxVarManager& auxvars)
{
if (config->print_used_encodings)
cout << "c encode with SWC" << endl;
encode_intern(pbconstraint, formula, auxvars);
}
void SWC_Encoder::encode(const shared_ptr< IncSimplePBConstraint >& pbconstraint, ClauseDatabase& formula, AuxVarManager& auxvars)
{
if (config->print_used_encodings)
cout << "c encode incremental with SWC" << endl;
isInc = true;
encode_intern(*pbconstraint, formula, auxvars, true);
isInc = false;
pbconstraint->setIncrementalData(make_shared<SWCIncData>(outlits));
outlits.clear();
}
void SWC_Encoder::encode_intern(const SimplePBConstraint& pbconstraint, ClauseDatabase& formula, AuxVarManager& auxvars, bool encodeComplete)
{
outlits.clear();
if (pbconstraint.getComparator() == BOTH || isInc)
encodeComplete = true;
int n = pbconstraint.getN();
int64_t k = pbconstraint.getLeq();
vector<WeightedLit> const & lits = pbconstraint.getWeightedLiterals();
vector<vector<int> > s(n+1, vector<int>(k+1,0));
for (int i = 1; i <= n; ++i) for (int j = 1; j <= k; ++j)
s[i][j] = auxvars.getVariable();
for (int i = 2; i <= n; ++i) for (int j = 1; j <= k; ++j)
formula.addClause(-s[i-1][j],s[i][j]);
for (int i = 1; i <= n; ++i) for (int j = 1; j <= lits[i-1].weight; ++j)
formula.addClause(-lits[i-1].lit, s[i][j]);
for (int i = 2; i <= n; ++i) for (int j = 1; j <= (k-lits[i-1].weight); ++j)
formula.addClause(-s[i-1][j],-lits[i-1].lit, s[i][j+lits[i-1].weight]);
if (encodeComplete)
{
for (int i = 2; i <= (int)n; ++i) for (int j = 1; j <= k; ++j)
formula.addClause(-s[i][j], lits[i-1].lit, s[i-1][j]);
for (int i = 2; i <= (int)n; ++i) for (int j = lits[i-1].weight + 1; j <= k; ++j)
formula.addClause(-s[i][j], s[i-1][j], s[i-1][j-lits[i-1].weight]);
for (int j = 1; j <= lits[0].weight; ++j)
formula.addClause(-s[1][j], lits[0].lit);
}
for (int j = lits[0].weight + 1; j <= k; ++j)
formula.addClause(-s[1][j]);
if (isInc)
{
outlits.clear();
for (int i = 1; i <= k; ++i)
{
outlits.push_back(s[n][i]);
}
}
formula.addConditionals(pbconstraint.getConditionals());
for (int i = 2; i <= n; ++i)
formula.addClause(-s[i-1][k+1-lits[i-1].weight], -lits[i-1].lit);
if (pbconstraint.getComparator() == BOTH)
{
assert(pbconstraint.getGeq() <= k);
for (int j = 1; j <= pbconstraint.getGeq(); ++j)
formula.addClause(s[n][j]);
}
for (int i = 0; i < pbconstraint.getConditionals().size(); ++i)
formula.getConditionals().pop_back();
}
void SWC_Encoder::SWCIncData::encodeNewGeq(int64_t newGeq, ClauseDatabase& formula, AuxVarManager& auxVars, vector< int32_t > conditionals)
{
formula.addConditionals(conditionals);
if (newGeq > 0)
formula.addClause(outlits[newGeq - 1]); // setting newGeq to true forcing the sum to be at least equal newGeq
for (int i = 0; i < conditionals.size(); ++i)
formula.getConditionals().pop_back();
}
void SWC_Encoder::SWCIncData::encodeNewLeq(int64_t newLeq, ClauseDatabase& formula, AuxVarManager& auxVars, vector< int32_t > conditionals)
{
formula.addConditionals(conditionals);
assert(newLeq < outlits.size());
formula.addClause(-outlits[newLeq]); // setting newLeq + 1 to false forcing the sum to be less equal newLeq
for (int i = 0; i < conditionals.size(); ++i)
formula.getConditionals().pop_back();
}
SWC_Encoder::SWCIncData::SWCIncData(vector< int32_t >& outlits) : outlits(outlits)
{
}
SWC_Encoder::SWCIncData::~SWCIncData()
{
}
int64_t SWC_Encoder::encodingValue(const SimplePBConstraint& pbconstraint)
{
int n = pbconstraint.getN();
int64_t k = pbconstraint.getLeq();
return valueFunction(n*k*(pbconstraint.getComparator() == BOTH ? 4 : 2), n*k);
}
int64_t SWC_Encoder::encodingValue(const shared_ptr< IncSimplePBConstraint >& pbconstraint)
{
int n = pbconstraint->getN();
int64_t k = pbconstraint->getLeq();
return valueFunction(n*k*4, n*k);
}
SWC_Encoder::SWC_Encoder(PBConfig config): Encoder(config)
{
}
SWC_Encoder::~SWC_Encoder()
{
}
|
92009991f45b7a299426164ac60a409900387c1e | 7106724c5de461d5156bc13d48b31cff6b22113a | /modules/StageInterface/src/global.h | 1a7058b0577b53c893a3b551c5cfc246471f0d57 | [] | no_license | YCP-Swarm-Robotics-Capstone-2020-2021/SRCSim | c76d9a4e5a6ded200d83da1b887c0f20371d4042 | 9710b22b9e42f63e48ed20eabdedd7569ce6afd6 | refs/heads/master | 2023-04-20T23:54:50.820904 | 2021-04-30T12:40:01 | 2021-04-30T12:40:01 | 269,135,291 | 0 | 0 | null | 2021-04-30T12:40:02 | 2020-06-03T16:11:12 | C++ | UTF-8 | C++ | false | false | 512 | h | global.h | #ifndef GLOBAL_H
#define GLOBAL_H
#endif // GLOBAL_H
#include <QMutex>
#include <QSemaphore>
#include "Stage-4.3/stage.hh"
#include "VehicleStateDefines.h"
class Robot {
public:
Stg::ModelPosition *position;
Stg::ModelRanger *laser;
double xPos;
double yPos;
double attitude;
double forward_speed;
double side_speed;
double turn_speed;
double current_speed;
bool line_detected = false;
EnumDefs::SensorState sensorState = EnumDefs::SensorState::NONE;
};
extern QList<Robot> RobotList;
|
f0de67ad92c608079c1667b0f728eaf07b275f5c | fc3cfe43834e9b266379cccc1f388be6aee54bc1 | /CTCI/01StringAndArrayProblems.h | 76354f7caef9886803800d451b7dbb7d42163d29 | [] | no_license | firestorm713/InterviewProblems | d7f94c20a5db83e31431742df57c8b3597c9b832 | 8f13c84058b625d4eb64ab98035f1eb2525b0359 | refs/heads/master | 2021-01-02T08:49:30.642943 | 2017-08-03T17:04:02 | 2017-08-03T17:04:02 | 99,073,400 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,529 | h | 01StringAndArrayProblems.h | #pragma once
#include<string>
std::string removeSpaces(std::string str);
void sortChars(std::string &str);
// no additional data structures!
bool IsUnique(const std::string &str);
// returns true iff
// - the lengths of the two strings are the same
// - the number of each character present in the string is identical
bool IsPermutation(const std::string a, std::string b);
// input: Mr John Smith
// output: Mr%20John%20Smith
void URLify(std::string str);
// Tact Coa = true
// permutations( tacocat, acto cta )
bool IsPalindromePermutation(const std::string str);
// pale, ple = true
// pales, pale = true
// pale, bale = true
// pale, bake = false
bool OneAway(const std::string a, const std::string b);
// EG aaabbbcccC = a3b3c3C
std::string RunLengthEncode(const std::string str);
// companion to above function
std::string RunLengthDecode(const std::string str);
struct SimpleRGBA
{
unsigned char R;
unsigned char G;
unsigned char B;
unsigned char A;
};
// Rotate an image by 90 degrees
void RotateMatrix(SimpleRGBA Matrix[], unsigned int w, unsigned int h);
// if a cell is 0, zero out both its row and column
void ZeroMatrix(int Matrix[], unsigned int w, unsigned int h);
// companion function to below
inline bool IsSubstring(const std::string a, const std::string b)
{
return a.find(b)!=std::string::npos;
}
// using only one call to the above IsSubstring, determine if string b is a rotation of string a
// waterbottle erbottlewat
bool IsRotation(const std::string a, const std::string b); |
d6d641e6dd6ef05dbac0bb71ab123029b745875d | 6350e8ffc3a53d11533e4a787e1f41199b755cd6 | /json_serializable.h | 86bbd82810c21a9d1396a86f36e2e0208d9387ce | [] | no_license | aldoshkind/y_me | 0c1960fec25b629585d93de22d968e52ef1c86e8 | 60d6418f2b9bc212d5487868e8b7d94a8b2096f5 | refs/heads/master | 2021-01-19T20:37:30.472606 | 2017-04-17T16:05:24 | 2017-04-17T16:05:24 | 88,525,549 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 320 | h | json_serializable.h | #pragma once
#include <jsoncpp/json/value.h>
class json_serializable
{
public:
/*constructor*/ json_serializable ()
{
//
}
virtual /*destructor*/ ~json_serializable ()
{
//
}
virtual bool serialize (Json::Value &v) const = 0;
virtual bool deserialize (const Json::Value &v) = 0;
};
|
c2d486b9f429293b30b461d42007e3583219daf2 | c97f206bda267696751e5f92aeaec33dda9ad710 | /alica_tests/autogenerated/src/SimpleSwitches.cpp | a6625cf6e64dd7182246ec3408df3da36e92b2b5 | [
"MIT"
] | permissive | hendrik-skubch/alica | 6dd560d1bd7ffb9fbbbce9f5a4160344c1b500fe | fe82928edf3a36df5f07a2258ff21d17ca8fa6d9 | refs/heads/rr-devel | 2022-03-02T04:50:28.673185 | 2019-05-28T03:54:56 | 2019-05-28T03:54:56 | 177,893,068 | 0 | 0 | NOASSERTION | 2019-05-28T03:54:57 | 2019-03-27T01:04:10 | C++ | UTF-8 | C++ | false | false | 74 | cpp | SimpleSwitches.cpp | #include <SimpleSwitches.h>
std::vector<bool> SimpleSwitches::_switches;
|
9ac1d634119211f6513132b0fdce3d8acb84cbfc | bd40065fc32921b6ac83df8b5b976a86b6b6a4ff | /src/compiler/turboshaft/assembler.h | 122965b220a0b52959f6cd82da477ef9e591cd37 | [
"BSD-3-Clause",
"SunPro",
"Apache-2.0"
] | permissive | couchbasedeps/v8-mirror | 6e69f9053d15d37befdecec94804b2a50f91dab8 | bf5e3a8a0edfb78c975da04c0f79eb92215255e3 | refs/heads/main | 2022-08-29T05:53:22.946189 | 2022-08-23T13:57:03 | 2022-08-24T09:03:00 | 153,349,114 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,822 | h | assembler.h | // Copyright 2022 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef V8_COMPILER_TURBOSHAFT_ASSEMBLER_H_
#define V8_COMPILER_TURBOSHAFT_ASSEMBLER_H_
#include <cstring>
#include <iterator>
#include <limits>
#include <memory>
#include <type_traits>
#include "src/base/iterator.h"
#include "src/base/logging.h"
#include "src/base/macros.h"
#include "src/base/small-vector.h"
#include "src/base/template-utils.h"
#include "src/codegen/machine-type.h"
#include "src/codegen/source-position.h"
#include "src/compiler/turboshaft/graph.h"
#include "src/compiler/turboshaft/operations.h"
#include "src/zone/zone-containers.h"
namespace v8::internal::compiler::turboshaft {
// This class is used to extend an assembler with useful short-hands that still
// forward to the regular operations of the deriving assembler.
template <class Subclass, class Superclass>
class AssemblerInterface : public Superclass {
public:
using Superclass::Superclass;
using Base = Superclass;
OpIndex Add(OpIndex left, OpIndex right, MachineRepresentation rep) {
return subclass().Binop(left, right, BinopOp::Kind::kAdd, rep);
}
OpIndex AddWithOverflow(OpIndex left, OpIndex right,
MachineRepresentation rep) {
DCHECK(rep == MachineRepresentation::kWord32 ||
rep == MachineRepresentation::kWord64);
return subclass().OverflowCheckedBinop(
left, right, OverflowCheckedBinopOp::Kind::kSignedAdd, rep);
}
OpIndex Sub(OpIndex left, OpIndex right, MachineRepresentation rep) {
return subclass().Binop(left, right, BinopOp::Kind::kSub, rep);
}
OpIndex SubWithOverflow(OpIndex left, OpIndex right,
MachineRepresentation rep) {
return subclass().OverflowCheckedBinop(
left, right, OverflowCheckedBinopOp::Kind::kSignedSub, rep);
}
OpIndex Mul(OpIndex left, OpIndex right, MachineRepresentation rep) {
return subclass().Binop(left, right, BinopOp::Kind::kMul, rep);
}
OpIndex SignedMulOverflownBits(OpIndex left, OpIndex right,
MachineRepresentation rep) {
return subclass().Binop(left, right, BinopOp::Kind::kSignedMulOverflownBits,
rep);
}
OpIndex UnsignedMulOverflownBits(OpIndex left, OpIndex right,
MachineRepresentation rep) {
return subclass().Binop(left, right,
BinopOp::Kind::kUnsignedMulOverflownBits, rep);
}
OpIndex MulWithOverflow(OpIndex left, OpIndex right,
MachineRepresentation rep) {
DCHECK(rep == MachineRepresentation::kWord32 ||
rep == MachineRepresentation::kWord64);
return subclass().OverflowCheckedBinop(
left, right, OverflowCheckedBinopOp::Kind::kSignedMul, rep);
}
OpIndex SignedDiv(OpIndex left, OpIndex right, MachineRepresentation rep) {
return subclass().Binop(left, right, BinopOp::Kind::kSignedDiv, rep);
}
OpIndex UnsignedDiv(OpIndex left, OpIndex right, MachineRepresentation rep) {
return subclass().Binop(left, right, BinopOp::Kind::kUnsignedDiv, rep);
}
OpIndex SignedMod(OpIndex left, OpIndex right, MachineRepresentation rep) {
return subclass().Binop(left, right, BinopOp::Kind::kSignedMod, rep);
}
OpIndex UnsignedMod(OpIndex left, OpIndex right, MachineRepresentation rep) {
return subclass().Binop(left, right, BinopOp::Kind::kUnsignedMod, rep);
}
OpIndex BitwiseAnd(OpIndex left, OpIndex right, MachineRepresentation rep) {
DCHECK(rep == MachineRepresentation::kWord32 ||
rep == MachineRepresentation::kWord64);
return subclass().Binop(left, right, BinopOp::Kind::kBitwiseAnd, rep);
}
OpIndex BitwiseOr(OpIndex left, OpIndex right, MachineRepresentation rep) {
DCHECK(rep == MachineRepresentation::kWord32 ||
rep == MachineRepresentation::kWord64);
return subclass().Binop(left, right, BinopOp::Kind::kBitwiseOr, rep);
}
OpIndex Min(OpIndex left, OpIndex right, MachineRepresentation rep) {
DCHECK_EQ(rep, MachineRepresentation::kFloat64);
return subclass().Binop(left, right, BinopOp::Kind::kMin, rep);
}
OpIndex Max(OpIndex left, OpIndex right, MachineRepresentation rep) {
DCHECK_EQ(rep, MachineRepresentation::kFloat64);
return subclass().Binop(left, right, BinopOp::Kind::kMax, rep);
}
OpIndex Power(OpIndex left, OpIndex right, MachineRepresentation rep) {
DCHECK_EQ(rep, MachineRepresentation::kFloat64);
return subclass().Binop(left, right, BinopOp::Kind::kPower, rep);
}
OpIndex Atan2(OpIndex left, OpIndex right, MachineRepresentation rep) {
DCHECK_EQ(rep, MachineRepresentation::kFloat64);
return subclass().Binop(left, right, BinopOp::Kind::kAtan2, rep);
}
OpIndex BitwiseXor(OpIndex left, OpIndex right, MachineRepresentation rep) {
DCHECK(rep == MachineRepresentation::kWord32 ||
rep == MachineRepresentation::kWord64);
return subclass().Binop(left, right, BinopOp::Kind::kBitwiseXor, rep);
}
OpIndex ShiftLeft(OpIndex left, OpIndex right, MachineRepresentation rep) {
DCHECK(rep == MachineRepresentation::kWord32 ||
rep == MachineRepresentation::kWord64);
return subclass().Shift(left, right, ShiftOp::Kind::kShiftLeft, rep);
}
OpIndex ShiftRightArithmetic(OpIndex left, OpIndex right,
MachineRepresentation rep) {
DCHECK(rep == MachineRepresentation::kWord32 ||
rep == MachineRepresentation::kWord64);
return subclass().Shift(left, right, ShiftOp::Kind::kShiftRightArithmetic,
rep);
}
OpIndex ShiftRightArithmeticShiftOutZeros(OpIndex left, OpIndex right,
MachineRepresentation rep) {
DCHECK(rep == MachineRepresentation::kWord32 ||
rep == MachineRepresentation::kWord64);
return subclass().Shift(
left, right, ShiftOp::Kind::kShiftRightArithmeticShiftOutZeros, rep);
}
OpIndex ShiftRightLogical(OpIndex left, OpIndex right,
MachineRepresentation rep) {
DCHECK(rep == MachineRepresentation::kWord32 ||
rep == MachineRepresentation::kWord64);
return subclass().Shift(left, right, ShiftOp::Kind::kShiftRightLogical,
rep);
}
OpIndex RotateLeft(OpIndex left, OpIndex right, MachineRepresentation rep) {
DCHECK(rep == MachineRepresentation::kWord32 ||
rep == MachineRepresentation::kWord64);
return subclass().Shift(left, right, ShiftOp::Kind::kRotateLeft, rep);
}
OpIndex RotateRight(OpIndex left, OpIndex right, MachineRepresentation rep) {
DCHECK(rep == MachineRepresentation::kWord32 ||
rep == MachineRepresentation::kWord64);
return subclass().Shift(left, right, ShiftOp::Kind::kRotateRight, rep);
}
OpIndex Word32Constant(uint32_t value) {
return subclass().Constant(ConstantOp::Kind::kWord32, uint64_t{value});
}
OpIndex Word64Constant(uint64_t value) {
return subclass().Constant(ConstantOp::Kind::kWord64, value);
}
OpIndex IntegralConstant(uint64_t value, MachineRepresentation rep) {
switch (rep) {
case MachineRepresentation::kWord32:
return Word32Constant(static_cast<uint32_t>(value));
case MachineRepresentation::kWord64:
return Word64Constant(value);
default:
UNREACHABLE();
}
}
OpIndex Float32Constant(float value) {
return subclass().Constant(ConstantOp::Kind::kFloat32, value);
}
OpIndex Float64Constant(double value) {
return subclass().Constant(ConstantOp::Kind::kFloat64, value);
}
OpIndex TrucateWord64ToWord32(OpIndex value) {
return subclass().Change(value, ChangeOp::Kind::kIntegerTruncate,
MachineRepresentation::kWord64,
MachineRepresentation::kWord32);
}
OpIndex ExceptionValueProjection(OpIndex value) {
return subclass().Projection(value, ProjectionOp::Kind::kExceptionValue, 0);
}
OpIndex TupleProjection(OpIndex value, uint16_t index) {
return subclass().Projection(value, ProjectionOp::Kind::kTuple, index);
}
private:
Subclass& subclass() { return *static_cast<Subclass*>(this); }
};
// This empty base-class is used to provide default-implementations of plain
// methods emitting operations.
template <class Assembler>
class AssemblerBase {
public:
#define EMIT_OP(Name) \
template <class... Args> \
OpIndex Name(Args... args) { \
return static_cast<Assembler*>(this)->template Emit<Name##Op>(args...); \
}
TURBOSHAFT_OPERATION_LIST(EMIT_OP)
#undef EMIT_OP
};
class Assembler
: public AssemblerInterface<Assembler, AssemblerBase<Assembler>> {
public:
Block* NewBlock(Block::Kind kind) { return graph_.NewBlock(kind); }
void EnterBlock(const Block& block) { USE(block); }
void ExitBlock(const Block& block) { USE(block); }
V8_INLINE bool Bind(Block* block) {
if (!graph().Add(block)) return false;
DCHECK_NULL(current_block_);
current_block_ = block;
return true;
}
void SetCurrentOrigin(OpIndex operation_origin) {
current_operation_origin_ = operation_origin;
}
OpIndex Phi(base::Vector<const OpIndex> inputs, MachineRepresentation rep) {
DCHECK(current_block()->IsMerge() &&
inputs.size() == current_block()->Predecessors().size());
return Base::Phi(inputs, rep);
}
template <class... Args>
OpIndex PendingLoopPhi(Args... args) {
DCHECK(current_block()->IsLoop());
return Base::PendingLoopPhi(args...);
}
OpIndex Goto(Block* destination) {
destination->AddPredecessor(current_block());
return Base::Goto(destination);
}
OpIndex Branch(OpIndex condition, Block* if_true, Block* if_false) {
if_true->AddPredecessor(current_block());
if_false->AddPredecessor(current_block());
return Base::Branch(condition, if_true, if_false);
}
OpIndex CatchException(OpIndex call, Block* if_success, Block* if_exception) {
if_success->AddPredecessor(current_block());
if_exception->AddPredecessor(current_block());
return Base::CatchException(call, if_success, if_exception);
}
OpIndex Switch(OpIndex input, base::Vector<const SwitchOp::Case> cases,
Block* default_case) {
for (SwitchOp::Case c : cases) {
c.destination->AddPredecessor(current_block());
}
default_case->AddPredecessor(current_block());
return Base::Switch(input, cases, default_case);
}
explicit Assembler(Graph* graph, Zone* phase_zone)
: graph_(*graph), phase_zone_(phase_zone) {
graph_.Reset();
}
Block* current_block() { return current_block_; }
Zone* graph_zone() { return graph().graph_zone(); }
Graph& graph() { return graph_; }
Zone* phase_zone() { return phase_zone_; }
private:
friend class AssemblerBase<Assembler>;
void FinalizeBlock() {
graph().Finalize(current_block_);
current_block_ = nullptr;
}
template <class Op, class... Args>
OpIndex Emit(Args... args) {
static_assert((std::is_base_of<Operation, Op>::value));
static_assert(!(std::is_same<Op, Operation>::value));
DCHECK_NOT_NULL(current_block_);
OpIndex result = graph().Add<Op>(args...);
graph().operation_origins()[result] = current_operation_origin_;
if (Op::properties.is_block_terminator) FinalizeBlock();
return result;
}
Block* current_block_ = nullptr;
Graph& graph_;
OpIndex current_operation_origin_ = OpIndex::Invalid();
Zone* const phase_zone_;
};
} // namespace v8::internal::compiler::turboshaft
#endif // V8_COMPILER_TURBOSHAFT_ASSEMBLER_H_
|
649ba8c34eab09db19d51389343d207ce8f0cb78 | 788b4664f114e03e2d84060615f5451dc662d66e | /easy_log/basic_logger_main.cpp | 35f17808595ebe19831694789b0609de4a55c1de | [] | no_license | zhouxindong/rola | dbdd7fb3bf034ed084ac67efcb9b59b6de0bb657 | 04b8b039b8786ee123c3a85467869c7708da185d | refs/heads/main | 2023-07-29T10:58:24.271940 | 2021-08-27T07:30:13 | 2021-08-27T07:30:13 | 305,242,132 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,259 | cpp | basic_logger_main.cpp | #include "basic_logger.hpp"
#include <thread>
#include <chrono>
using namespace rola;
int main_blm()
{
auto& logger = console_logger::get("console1");
auto v = std::move(generate_log_item(2));
for (auto& item : v)
{
logger.log(item);
std::this_thread::sleep_for(std::chrono::milliseconds(100));
}
auto& logger2 = console_info_logger::get("console2");
v = std::move(generate_log_item(200, " new log"));
for (auto& item : v)
{
logger2.log(item);
std::this_thread::sleep_for(std::chrono::milliseconds(100));
}
return 0;
}
int main_blm2()
{
auto& logger = file_logger::get("testlog");
auto v = std::move(generate_log_item(200));
for (auto& item : v)
{
logger.log(item);
}
auto& logger2 = file_logger::get("testlog");
v = std::move(generate_log_item(200, " new log"));
for (auto& item : v)
{
logger2.log(item);
}
return 0;
}
int main_udplogger()
{
auto& logger = udp_logger::get("172.10.10.155::8080");
auto v = std::move(generate_log_item(200));
for (auto& item : v)
{
logger.log(item);
}
auto& logger2 = udp_info_logger::get("172.10.10.155::8080");
auto v2 = std::move(generate_log_item(200));
for (auto& item : v2)
{
logger2.log(item);
}
std::cout << "basic_logger_main.cpp successful\n";
return 0;
} |
5eca731d2f840737899d6b5c34074fbacd1314c0 | 9a825a6d32b5b58728d499152a40c0e216cd0182 | /factory_pattern/client.cpp | 9b3dbd15bf4db8d39e64d14a29e0f0c4378410a1 | [] | no_license | yuecheng11/Design_pattern | 56048a1d73f0bf0a71ff06c3866779cd50902777 | 525e8982c4a1a99f59b485ee12e7d3f48468f6ec | refs/heads/master | 2021-01-23T17:57:13.282020 | 2017-02-27T13:08:08 | 2017-02-27T13:08:08 | 82,990,482 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 343 | cpp | client.cpp | #include "SimpleFactory.hpp"
int main()
{
AbsFactory* absFact = new SimpleFactory();
AbsProduct* product = absFact->createProduct(1);
product->operation();
delete product;
product = NULL;
product = absFact->createProduct(2);
product->operation();
delete product;
product = NULL;
delete absFact;
return 0;
}
|
a5a5903b942ead8d0aaabfca57b6e893971a9e62 | 8d39f1699943fa4b540f287557276329b69c7652 | /itk/clitkForwardWarpImageFilter.h | ec46f0ca8fa97a11590c8a0a0c750b5d4e7a809a | [
"BSD-3-Clause",
"CECILL-B",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-cecill-b-en"
] | permissive | open-vv/vv | fdb42c1ba2bb70f5805cb3680b7bd2b5208d287f | 7d8043a8fb86bb58d510ad39da2b71d50109dd5f | refs/heads/master | 2023-06-07T18:26:50.369254 | 2022-10-26T14:59:09 | 2022-10-26T14:59:09 | 78,436,753 | 56 | 20 | NOASSERTION | 2023-05-03T12:14:22 | 2017-01-09T14:36:33 | C++ | UTF-8 | C++ | false | false | 4,525 | h | clitkForwardWarpImageFilter.h | /*=========================================================================
Program: vv http://www.creatis.insa-lyon.fr/rio/vv
Authors belong to:
- University of LYON http://www.universite-lyon.fr/
- Lรฉon Bรฉrard cancer center http://www.centreleonberard.fr
- CREATIS CNRS laboratory http://www.creatis.insa-lyon.fr
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the copyright notices for more information.
It is distributed under dual licence
- BSD See included LICENSE.txt file
- CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
===========================================================================**/
#ifndef __clitkForwardWarpImageFilter_h
#define __clitkForwardWarpImageFilter_h
#include "clitkImageCommon.h"
//itk include
#include "itkImageToImageFilter.h"
#include "itkImage.h"
#include "itkImageRegionIterator.h"
#include "itkImageRegionIteratorWithIndex.h"
#include "itkNumericTraits.h"
#if ITK_VERSION_MAJOR <= 4
#include "itkSimpleFastMutexLock.h"
#else
#include <mutex>
#endif
namespace clitk
{
template < class InputImageType, class OutputImageType, class DeformationFieldType >
class ForwardWarpImageFilter : public itk::ImageToImageFilter<InputImageType, OutputImageType>
{
public:
typedef ForwardWarpImageFilter Self;
typedef itk::ImageToImageFilter<InputImageType,OutputImageType> Superclass;
typedef itk::SmartPointer<Self> Pointer;
typedef itk::SmartPointer<const Self> ConstPointer;
/** Method for creation through the object factory. */
itkNewMacro(Self);
/** Determine the image dimension. */
itkStaticConstMacro(ImageDimension, unsigned int,
InputImageType::ImageDimension );
itkStaticConstMacro(InputImageDimension, unsigned int,
OutputImageType::ImageDimension );
itkStaticConstMacro(DeformationFieldDimension, unsigned int,
DeformationFieldType::ImageDimension );
//Some other typedefs
typedef double CoordRepType;
typedef itk::Image<double, ImageDimension> WeightsImageType;
#if ITK_VERSION_MAJOR <= 4
typedef itk::Image<itk::SimpleFastMutexLock, ImageDimension> MutexImageType;
#endif
/** Point type */
typedef itk::Point<CoordRepType,itkGetStaticConstMacro(ImageDimension)> PointType;
/** Inherit some types from the superclass. */
typedef typename OutputImageType::IndexType IndexType;
typedef typename OutputImageType::SizeType SizeType;
typedef typename OutputImageType::PixelType PixelType;
typedef typename OutputImageType::SpacingType SpacingType;
//Set & Get Methods (inline)
itkSetMacro( Verbose, bool);
itkSetMacro( EdgePaddingValue, PixelType );
itkSetMacro( DeformationField, typename DeformationFieldType::Pointer);
#if ITK_VERSION_MAJOR <= 4
void SetNumberOfThreads(unsigned int r )
#else
void SetNumberOfWorkUnits(unsigned int r )
#endif
{
m_NumberOfThreadsIsGiven=true;
#if ITK_VERSION_MAJOR <= 4
m_NumberOfThreads=r;
#else
m_NumberOfWorkUnits=r;
#endif
}
itkSetMacro(ThreadSafe, bool);
//ITK concept checking, why not?
#ifdef ITK_USE_CONCEPT_CHECKING
/** Begin concept checking */
itkConceptMacro(SameDimensionCheck1,
(itk::Concept::SameDimension<ImageDimension, InputImageDimension>));
itkConceptMacro(SameDimensionCheck2,
(itk::Concept::SameDimension<ImageDimension, DeformationFieldDimension>));
itkConceptMacro(InputHasNumericTraitsCheck,
(itk::Concept::HasNumericTraits<typename InputImageType::PixelType>));
itkConceptMacro(DeformationFieldHasNumericTraitsCheck,
(itk::Concept::HasNumericTraits<typename DeformationFieldType::PixelType::ValueType>));
/** End concept checking */
#endif
protected:
ForwardWarpImageFilter();
~ForwardWarpImageFilter() {};
void GenerateData( );
private:
bool m_Verbose;
bool m_NumberOfThreadsIsGiven;
#if ITK_VERSION_MAJOR <= 4
unsigned int m_NumberOfThreads;
#else
unsigned int m_NumberOfWorkUnits;
#endif
PixelType m_EdgePaddingValue;
typename DeformationFieldType::Pointer m_DeformationField;
bool m_ThreadSafe;
};
} // end namespace clitk
#ifndef ITK_MANUAL_INSTANTIATION
#include "clitkForwardWarpImageFilter.txx"
#endif
#endif // #define __clitkForwardWarpImageFilter_h
|
9018706621d5bedceafeaf5d83248c557e8db0c7 | 9fb456a0f1cc77d148a9c5334c084c2a65630592 | /TrianglesTest/src/TrianglesTestApp.cpp | f30392ce6bfdbde4f705662c578c590408c2ee3d | [
"Apache-2.0"
] | permissive | eighteight/CinderEight | 4deba73910eb3e02d2f881da303205159a77f052 | d9dfc6a0ad9a9e6c5b82624971127f0335d91639 | refs/heads/master | 2021-06-19T14:46:18.448625 | 2021-01-16T20:55:22 | 2021-01-16T20:55:22 | 16,152,693 | 6 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,643 | cpp | TrianglesTestApp.cpp | #include "cinder/app/App.h"
#include "cinder/app/RendererGl.h"
#include "cinder/gl/gl.h"
#include "cinder/CameraUi.h"
using namespace ci;
using namespace ci::app;
using namespace std;
class Day14App : public App {
public:
void setup() override;
void mouseDown( MouseEvent event ) override;
void update() override;
void draw() override;
void saveGif();
CameraPersp mCam;
CameraUi mCamUi;
gl::VboRef mVbo;
gl::VboMeshRef mTriangle;
gl::VaoRef mVao;
gl::BatchRef mBatch;
gl::GlslProgRef mGlsl;
vector < vec3 > mPositions; //VERTEX POSITIONS
vector < vec3 > mNormals;
vector < uint32_t > mIndices; //INDICES
};
void Day14App::setup()
{
mCam.lookAt( vec3( 0, 0, 10 ), vec3( 0 ) );
mCamUi = CameraUi( &mCam, getWindow() );
mPositions.push_back( vec3( -0.5, -0.5, 0.0 ) );
mPositions.push_back( vec3( 0.5, -0.5, 0.0 ) );
mPositions.push_back( vec3( 0.0, 0.5, 0.0 ) );
auto normal = vec3( 0, 0, 1 );
mNormals.push_back( normal );
mNormals.push_back( normal );
mNormals.push_back( normal );
mIndices.push_back( 0 );
mIndices.push_back( 2 );
mIndices.push_back( 1 );
vector < gl::VboMesh::Layout > bufferLayout = {
gl::VboMesh::Layout().usage( GL_STATIC_DRAW ).attrib( geom::Attrib::POSITION , 3 ),
gl::VboMesh::Layout().usage( GL_STATIC_DRAW ).attrib( geom::Attrib::NORMAL , 3 )
};
mTriangle = gl::VboMesh::create( mPositions.size(), GL_TRIANGLES, bufferLayout, mIndices.size(), GL_UNSIGNED_INT );
mTriangle->bufferAttrib( geom::Attrib::POSITION, mPositions );
mTriangle->bufferAttrib( geom::Attrib::NORMAL, mNormals );
mTriangle->bufferIndices( mIndices.size() * sizeof( uint32_t ), mIndices.data() );
mGlsl = gl::getStockShader( gl::ShaderDef().lambert().color() );
mBatch = gl::Batch::create( mTriangle, mGlsl );
}
void Day14App::mouseDown( MouseEvent event )
{
}
void Day14App::update()
{
}
void Day14App::draw()
{
gl::clear( Color::gray( 0.2f ) );
gl::setMatrices( mCam );
gl::color( Color( 1, 1, 1 ) );
mBatch->draw();
}
CINDER_APP( Day14App, RendererGl( RendererGl::Options().msaa( 16 ) ),
[&]( App::Settings *settings ) {
settings->setHighDensityDisplayEnabled();
settings->setWindowSize( 500, 500 );
} ) |
ac5d6e31957257f60577cc1a29ef203243861b6f | 19f6d19e29fa44319c263a759dd06f91745f3d8a | /usn/nail_file.cc | bfb9a778b438863a6799a36e81a477ff7d14cf5f | [] | no_license | richmonkey/nail | efce932f0b0855d832088a7dbbb2367b5cde116c | ede075f10445484d8a5dec8de8dae4c11867a02f | refs/heads/master | 2021-01-01T16:20:24.146694 | 2013-02-17T10:38:44 | 2013-02-17T10:38:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,038 | cc | nail_file.cc | #define _CRT_SECURE_NO_WARNINGS
#include <windows.h>
#include <winioctl.h>
#include <assert.h>
#include <string>
#include "nail_file.h"
#define NAIL_FILE_OBJECT_SIZE(f) (sizeof(nail_file_t) + f->name_len)
char *mem_pool = NULL;
int pool_size = 0;
int next_free_pos = 0;
static int zobie_file_count = 0;
static int zobie_mem = 0;
void *zmalloc(int size) {
char *p = (char*)malloc(size);
memset(p, 0, size);
return p;
}
//return pointer temporary, can not be saved
nail_file_t *malloc_file(int nl) {
int need_size = sizeof(nail_file_s) + nl+1;
if (next_free_pos + need_size > pool_size) {
pool_size += 4*1024*1024;
mem_pool = (char*)realloc(mem_pool, pool_size);
memset(mem_pool + next_free_pos, 0, pool_size-next_free_pos);
}
assert(next_free_pos <= pool_size - need_size);
nail_file_t *f = (nail_file_t*)&mem_pool[next_free_pos];
f->name_len = nl + 1;
next_free_pos += need_size;
return f;
}
int file_position(nail_file_t *f) {
return int((char*)f - mem_pool);
}
nail_file_t* file_object(int pos) {
if (pos < 0 || pos >= next_free_pos) return NULL;
nail_file_t *f = (nail_file_t*)&mem_pool[pos];
while (f->is_moved) {
f = (nail_file_t*)&mem_pool[f->new_position];
}
return f;
}
void free_file(nail_file_t *f) {
f->is_deleted = 1;
zobie_mem += NAIL_FILE_OBJECT_SIZE(f);
zobie_file_count += 1;
}
void free_drive_file(int di) {
int p = 0;
while(p < next_free_pos) {
nail_file_t *f = (nail_file_t*)&mem_pool[p];
if (f->is_deleted) goto NEXT;
if (f->drive_index == di) free_file(f);
NEXT:
p += sizeof(nail_file_t) + f->name_len;
}
}
int find_nail_file_position(int drive, DWORDLONG FRN) {
int p = 0;
while(p < next_free_pos) {
nail_file_t *f = (nail_file_t*)&mem_pool[p];
if (f->is_deleted) goto NEXT;
if (f->drive_index == drive && f->FRN == FRN) return p;
NEXT:
p += sizeof(nail_file_t) + f->name_len;
}
return -1;
}
static nail_file_t* find_nail_file(const char *name) {
int p = 0;
while(p < next_free_pos) {
nail_file_t *f = (nail_file_t*)&mem_pool[p];
if (f->is_deleted) goto NEXT;
if (strcmp(f->filename, name) == 0) return f;
NEXT:
p += NAIL_FILE_OBJECT_SIZE(f);
}
return NULL;
}
nail_file_t *find_first_nail_file(const char *name) {
int p = 0;
while(p < next_free_pos) {
nail_file_t *f = (nail_file_t*)&mem_pool[p];
if (f->is_deleted) goto NEXT;
if (f->is_moved) goto NEXT;
if (strcmp(f->filename, name) == 0) return f;
NEXT:
p += NAIL_FILE_OBJECT_SIZE(f);
}
return NULL;
}
nail_file_t *find_next_nail_file(nail_file_t *last) {
const char *name = last->filename;
int p = file_position(last);
p += NAIL_FILE_OBJECT_SIZE(last);
while(p < next_free_pos) {
nail_file_t *f = (nail_file_t*)&mem_pool[p];
if (f->is_deleted) goto NEXT;
if (f->is_moved) goto NEXT;
if (strcmp(f->filename, name) == 0) return f;
NEXT:
p += NAIL_FILE_OBJECT_SIZE(f);
}
return NULL;
}
std::string nail_file_name(nail_file_t *f) {
std::string name = f->filename;
while (f->parent != -1) {
nail_file_t *parent = file_object(f->parent);
name = std::string(parent->filename) + "\\" + name;
f = parent;
}
return name;
}
int is_pool_need_compact() {
if (zobie_mem > 4*1024*1024)
return 1;
return 0;
}
static void copy_file(nail_file_t *f, char *new_pool, int *next_pos) {
assert(!f->is_deleted);
if (f->is_compacted) return;
assert (!f->is_moved);
int new_position = *next_pos;
nail_file_t *new_file = (nail_file_t*)&new_pool[*next_pos];
new_file->name_len = f->name_len;
strcpy(new_file->filename, f->filename);
new_file->drive_index = f->drive_index;
new_file->FRN = f->FRN;
new_file->is_file = f->is_file;
*next_pos += NAIL_FILE_OBJECT_SIZE(f);
if (f->parent != -1) {
nail_file_t *parent = file_object(f->parent);
copy_file(parent, new_pool, next_pos);
new_file->parent = parent->new_pool_position;
} else {
new_file->parent = -1;
}
f->new_pool_position = new_position;
f->is_compacted = 1;
}
void compact_pool() {
char *new_pool = (char*)zmalloc(pool_size);
int next_pos = 0;
int p = 0;
while(p < next_free_pos) {
nail_file_t *f = (nail_file_t*)&mem_pool[p];
if (f->is_deleted) goto NEXT;
if (f->is_compacted) goto NEXT;
if (f->is_moved) goto NEXT;
copy_file(f, new_pool, &next_pos);
NEXT:
p += NAIL_FILE_OBJECT_SIZE(f);
}
free(mem_pool);
mem_pool = new_pool;
next_free_pos = next_pos;
zobie_mem = 0;
zobie_file_count = 0;
}
void rename_nail_file(nail_file_t *file, std::string &new_name) {
if (new_name.length() >= file->name_len) {
nail_file_t *new_file = malloc_file(new_name.length());
new_file->drive_index = file->drive_index;
new_file->FRN = file->FRN;
new_file->is_file = file->is_file;
new_file->parent = file->parent;
strcpy(new_file->filename, new_name.c_str());
file->is_moved = 1;
file->new_position = file_position(new_file);
} else {
strcpy(file->filename, new_name.c_str());
}
}
|
b11e634ddd9d039bd7be33119ef5cc6efb30f3f5 | 2283d74ae7e67c04e83622608d17958f6a31cb10 | /chip8/parsing.cpp | b5ba04f8d78eb4518d63a9ff64d67bec673fb515 | [
"MIT"
] | permissive | omerk2511/chip-8 | d3f2f6d32a25f4e654dd77ae80e70023e8ee45bb | 30bb431a707d2de4f69fac753d256040d3669fc3 | refs/heads/master | 2022-12-12T19:20:04.145599 | 2020-09-12T17:25:27 | 2020-09-12T17:25:27 | 294,768,979 | 2 | 0 | MIT | 2020-09-12T17:25:28 | 2020-09-11T17:52:17 | null | UTF-8 | C++ | false | false | 6,299 | cpp | parsing.cpp | #include "parsing.h"
#include "instructions.h"
std::unique_ptr<instruction> parsing::parse_instruction(const word opcode)
{
switch (opcode >> 12) {
case 0x00: {
if ((opcode & 0xfff) == 0xe0)
return std::make_unique<instructions::cls>();
else if ((opcode & 0xfff) == 0xee)
return std::make_unique<instructions::ret>();
else
return std::make_unique<instructions::sys>(opcode & 0xfff);
}
case 0x01: {
return std::make_unique<instructions::jp_addr>(opcode & 0xfff);
}
case 0x02: {
return std::make_unique<instructions::call>(opcode & 0xfff);
}
case 0x03: {
return std::make_unique<instructions::se_reg_byte>(
static_cast<reg>((opcode >> 8) & 0xf),
opcode & 0xff
);
}
case 0x04: {
return std::make_unique<instructions::sne_reg_byte>(
static_cast<reg>((opcode >> 8) & 0xf),
opcode & 0xff
);
}
case 0x05: {
return std::make_unique<instructions::se_reg_reg>(
static_cast<reg>((opcode >> 8) & 0xf),
static_cast<reg>((opcode >> 4) & 0xf)
);
}
case 0x06: {
return std::make_unique<instructions::ld_reg_byte>(
static_cast<reg>((opcode >> 8) & 0xf),
opcode & 0xff
);
}
case 0x07: {
return std::make_unique<instructions::add_reg_byte>(
static_cast<reg>((opcode >> 8) & 0xf),
opcode & 0xff
);
}
case 0x08: {
switch (opcode & 0xf) {
case 0x00: {
return std::make_unique<instructions::ld_reg_reg>(
static_cast<reg>((opcode >> 8) & 0xf),
static_cast<reg>((opcode >> 4) & 0xf)
);
}
case 0x01: {
return std::make_unique<instructions::or_reg_reg>(
static_cast<reg>((opcode >> 8) & 0xf),
static_cast<reg>((opcode >> 4) & 0xf)
);
}
case 0x02: {
return std::make_unique<instructions::and_reg_reg>(
static_cast<reg>((opcode >> 8) & 0xf),
static_cast<reg>((opcode >> 4) & 0xf)
);
}
case 0x03: {
return std::make_unique<instructions::xor_reg_reg>(
static_cast<reg>((opcode >> 8) & 0xf),
static_cast<reg>((opcode >> 4) & 0xf)
);
}
case 0x04: {
return std::make_unique<instructions::add_reg_reg>(
static_cast<reg>((opcode >> 8) & 0xf),
static_cast<reg>((opcode >> 4) & 0xf)
);
}
case 0x05: {
return std::make_unique<instructions::sub>(
static_cast<reg>((opcode >> 8) & 0xf),
static_cast<reg>((opcode >> 4) & 0xf)
);
}
case 0x06: {
return std::make_unique<instructions::shr>(
static_cast<reg>((opcode >> 8) & 0xf)
);
}
case 0x07: {
return std::make_unique<instructions::subn>(
static_cast<reg>((opcode >> 8) & 0xf),
static_cast<reg>((opcode >> 4) & 0xf)
);
}
case 0x0e: {
return std::make_unique<instructions::shl>(
static_cast<reg>((opcode >> 8) & 0xf)
);
}
default: {
break;
}
}
break;
}
case 0x09: {
return std::make_unique<instructions::sne_reg_reg>(
static_cast<reg>((opcode >> 8) & 0xf),
static_cast<reg>((opcode >> 4) & 0xf)
);
}
case 0x0a: {
return std::make_unique<instructions::ld_i_addr>(opcode & 0xfff);
}
case 0x0b: {
return std::make_unique<instructions::jp_v0_addr>(opcode & 0xfff);
}
case 0x0c: {
return std::make_unique<instructions::rnd>(
static_cast<reg>((opcode >> 8) & 0xf),
opcode & 0xff
);
}
case 0x0d: {
return std::make_unique<instructions::drw>(
static_cast<reg>((opcode >> 8) & 0xf),
static_cast<reg>((opcode >> 4) & 0xf),
opcode & 0xf
);
}
case 0x0e: {
if ((opcode & 0xff) == 0x9e)
return std::make_unique<instructions::skp>(
static_cast<reg>((opcode >> 8) & 0xf)
);
else if ((opcode & 0xff) == 0xa1)
return std::make_unique<instructions::sknp>(
static_cast<reg>((opcode >> 8) & 0xf)
);
break;
}
case 0x0f: {
switch (opcode & 0xff) {
case 0x07: {
return std::make_unique<instructions::ld_reg_dt>(
static_cast<reg>((opcode >> 8) & 0xf)
);
}
case 0x0a: {
return std::make_unique<instructions::ld_reg_k>(
static_cast<reg>((opcode >> 8) & 0xf)
);
}
case 0x15: {
return std::make_unique<instructions::ld_dt_reg>(
static_cast<reg>((opcode >> 8) & 0xf)
);
}
case 0x18: {
return std::make_unique<instructions::ld_st_reg>(
static_cast<reg>((opcode >> 8) & 0xf)
);
}
case 0x1e: {
return std::make_unique<instructions::add_i_reg>(
static_cast<reg>((opcode >> 8) & 0xf)
);
}
case 0x29: {
return std::make_unique<instructions::ld_f_reg>(
static_cast<reg>((opcode >> 8) & 0xf)
);
}
case 0x33: {
return std::make_unique<instructions::ld_b_reg>(
static_cast<reg>((opcode >> 8) & 0xf)
);
}
case 0x55: {
return std::make_unique<instructions::ld_mem_reg>(
static_cast<reg>((opcode >> 8) & 0xf)
);
}
case 0x65: {
return std::make_unique<instructions::ld_reg_mem>(
static_cast<reg>((opcode >> 8) & 0xf)
);
}
default: {
break;
}
}
break;
}
}
return std::make_unique<instructions::invalid>();
} |
f640a66f34aff3e810bfb1c53ed6db0e1544b963 | 45d41fa7251b7e3e6c391a49d45c8eef395ff376 | /commands/yaw_camera_command.cpp | 3e1b6cd108f68fd271a9ea8e30d35b613232998e | [] | no_license | Kotyarich/computer-graphic-project | dc9e8632f54e081bb49875867d6d29d358a75880 | da0a36b2fef89c8e2f52fe149c49bf23e0cbe1a8 | refs/heads/master | 2020-06-12T19:54:39.713981 | 2020-01-26T23:54:13 | 2020-01-26T23:54:13 | 194,407,816 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 396 | cpp | yaw_camera_command.cpp | #include "yaw_camera_command.h"
namespace commands {
YawCameraCommand::YawCameraCommand(std::string object_name, double angle):
_object_name(object_name), _rotation(0, 0, angle) {}
void YawCameraCommand::execute(std::shared_ptr<intermediary::Intermediary> intermediary) {
math::Vector3d moving(0, 0, 0);
intermediary->transformCamera(moving, _rotation);
}
} // namespace commands
|
cab85456e6543f5f75eea5243c5c3922b2153778 | 0ff3961fab3d7aac799c9555853ef141ffe38eb1 | /Dev/Segmentation/SegmentationCore/hierarchicalization.h | a6162dfb27d82bcffaa133b08f51647d6364abc7 | [] | no_license | liupeng625/DevBundle | d8f8ff5a78730645e91a1a2a9c328c426f9deaa6 | daee1ace1fc929f629d2c916aee2922a02b41493 | refs/heads/master | 2021-03-12T01:55:17.966697 | 2018-09-13T10:04:38 | 2018-09-13T10:04:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,161 | h | hierarchicalization.h | #ifndef HIERARCHICALIZATION_H
#define HIERARCHICALIZATION_H
#include "common.h"
#include "segmentationcore_global.h"
#include <armadillo>
#include <nanoflann.hpp>
typedef struct
{
arma::fvec::fixed<3> normal;
std::vector<arma::uword> index; // The neighborhood
arma::fvec::fixed<3> eval;
bool candidate;
}Neighbor;
typedef struct
{
arma::fmat boxmat;
arma::fvec center;
float width;
float height;
float depth;
}BBox;
typedef struct
{
float size_x;
float size_y;
float size_z;
arma::uword id_;
arma::uword father_id_;
std::vector<arma::uword> child_plane_;
std::vector<arma::uword> child_obj_;
BBox bbox_;
bool is_obj_;
}IdNode;
class SEGMENTATIONCORESHARED_EXPORT Hierarchicalization
{
public:
typedef
nanoflann::KDTreeSingleIndexAdaptor<
nanoflann::L2_Simple_Adaptor<float,MeshKDTreeInterface<DefaultMesh>>,
MeshKDTreeInterface<DefaultMesh>,
3,arma::uword>
KDTree;
Hierarchicalization();
bool configure(Config::Ptr config);
void compute(DefaultMesh&);
void getObjectLabel(arma::uvec&);
void getBBoxLabel(arma::uvec&);
void getObjectBox(DefaultMesh&);
void getPlaneLabel(arma::uvec&);
protected:
void reset(const DefaultMesh&);
void build(DefaultMesh&);
void calsize(const arma::fmat& cloud,const arma::uword);
void calneighbor(DefaultMesh&);
float calarea(float size_x, float size_y, float size_z);
BBox calbbox(arma::fmat&);
float angle(const arma::fvec&,const arma::fvec&);
void regiongrow(const arma::fmat& cloud,const arma::uword);
arma::uvec withinNode(arma::uword);
arma::uvec withinBox(const arma::fmat&);
private:
uint32_t iden;
uint32_t planenum;
std::vector<IdNode> idtree_;
std::vector<Neighbor> nei; //output, every voxel's neighborhood
arma::fmat cloud_;
arma::ivec label_;
bool force_new_normal_;
float neighbor_radius_;
float anglethres_tight_;
float anglethres_relax_;
float point2plane_th_;
};
#endif // HIERARCHICALIZATION_H
|
02e6b9fec1c19b20e0e9c22818c24287a4fa179a | 25f566be9152b1baecbff9d8ce80207249363adb | /llvm/lib/MC/MCRepoTicketFile.cpp | 0c3d5bf023cdf56a8b8458d62f5276f7a7f4011b | [
"NCSA",
"LLVM-exception",
"Apache-2.0"
] | permissive | SNSystems/llvm-project-prepo | cd31a3e919511aae306451981fad5ced44448698 | a728b1ac06e6ae870f4f4f0fc130bf690b3f0d8a | refs/heads/master | 2022-05-27T02:03:44.194085 | 2022-03-28T12:04:43 | 2022-03-28T12:04:43 | 171,315,656 | 31 | 1 | null | 2022-03-07T15:42:58 | 2019-02-18T16:14:47 | C++ | UTF-8 | C++ | false | false | 11,615 | cpp | MCRepoTicketFile.cpp | //===- MCRepoTicketFile.cpp - Repo Ticket File ------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "llvm/MC/MCRepoTicketFile.h"
#include "pstore/core/database.hpp"
#include "pstore/core/hamt_set.hpp"
#include "pstore/core/index_types.hpp"
#include "pstore/core/indirect_string.hpp"
#include "llvm/ADT/Optional.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Support/CRC.h"
#include "llvm/Support/FileSystem.h"
#include "llvm/Support/MemoryBuffer.h"
#include "llvm/Support/Path.h"
#include "llvm/Support/Process.h"
#include "llvm/Support/raw_ostream.h"
#include <array>
#include <type_traits>
using namespace llvm;
namespace {
static constexpr auto MagicSize = size_t{8};
static const std::array<char, MagicSize> BERepoMagic{
{'R', 'e', 'p', 'o', 'T', 'c', 'k', 't'}};
static const std::array<char, MagicSize> LERepoMagic{
{'t', 'k', 'c', 'T', 'o', 'p', 'e', 'R'}};
class TicketErrorCategory final : public std::error_category {
const char *name() const noexcept override { return "llvm.repo.ticket"; }
std::string message(int IE) const override {
switch (static_cast<mc::repo::TicketError>(IE)) {
case mc::repo::TicketError::NotATicket:
return "Not a Ticket File";
case mc::repo::TicketError::DatabaseIDMismatch:
return "Database ID mismatch";
}
llvm_unreachable("Unknown error type!");
}
};
struct TicketFile {
std::array<char, MagicSize> Magic;
uint32_t CRC;
uint16_t Version;
uint16_t Unused;
pstore::uuid::container_type OwnerID;
pstore::index::digest Digest;
};
constexpr uint16_t TicketFileVersion = 1;
// Verify that the compiler used the expected structure layout so that the
// on-disk representation will be consistent between different machines.
static_assert(sizeof(TicketFile) == 48, "Expected TicketFile to be 48 bytes");
static_assert(std::is_standard_layout<TicketFile>::value,
"TicketFile must be StandardLayout");
static_assert(offsetof(TicketFile, Magic) == 0,
"Expected Magic to be at offset 0");
static_assert(offsetof(TicketFile, CRC) == 8, "Expected CRC to be at offset 8");
static_assert(offsetof(TicketFile, Version) == 12,
"Expected Version to be at offset 12");
static_assert(offsetof(TicketFile, Unused) == 14,
"Expected Unused to be at offset 14");
static_assert(offsetof(TicketFile, OwnerID) == 16,
"Expected OwnerID to be at offset 16");
static_assert(offsetof(TicketFile, Digest) == 32,
"Expected Digest to be at offset 32");
class ScopedFD {
public:
ScopedFD() = default;
explicit ScopedFD(int Descriptor) : FD_{Descriptor} {}
ScopedFD(const ScopedFD &) = delete;
ScopedFD(ScopedFD &&Other) {
if (Other.FD_) {
FD_ = *Other.FD_;
Other.FD_.reset();
}
}
~ScopedFD() {
if (FD_) {
sys::Process::SafelyCloseFileDescriptor(*FD_);
}
}
explicit operator bool() const { return FD_.hasValue(); }
bool hasValue() const { return FD_.hasValue(); }
int getValue() const { return FD_.getValue(); }
ScopedFD &operator=(const ScopedFD &) = delete;
ScopedFD &operator=(ScopedFD &&Other) {
if (Other.FD_) {
FD_ = *Other.FD_;
Other.FD_.reset();
} else {
FD_.reset();
}
return *this;
}
private:
Optional<int> FD_;
};
} // end anonymous namespace
namespace pstore {
inline uint128 getSwappedBytes(uint128 const &V) {
return {sys::getSwappedBytes(V.low()), sys::getSwappedBytes(V.high())};
}
} // end namespace pstore
const uint64_t llvm::mc::repo::TicketFileSize = sizeof(TicketFile);
const std::error_category &llvm::mc::repo::ticketErrorCategory() {
static TicketErrorCategory Category;
return Category;
}
template <typename Writer, typename T>
static size_t write(Writer &&W, const T *Data, size_t Elements) {
const auto Size = Elements * sizeof(T);
W.OS.write(reinterpret_cast<const char *>(Data), Size);
return Size;
}
template <typename Writer>
static size_t
writeTicketFileImpl(Writer &&W, const std::array<char, MagicSize> &Signature,
const std::array<uint64_t, 2> &SwappedID,
const std::array<uint64_t, 2> &SwappedDigest) {
auto BytesWritten = write(W, Signature.data(), Signature.size());
BytesWritten += write(W, SwappedID.data(), SwappedID.size());
BytesWritten += write(W, SwappedDigest.data(), SwappedDigest.size());
return BytesWritten;
}
static uint32_t ticketCRC(const TicketFile &T) {
const auto *Base =
reinterpret_cast<const uint8_t *>(&T) + offsetof(TicketFile, Version);
const size_t Size = sizeof(TicketFile) - offsetof(TicketFile, Version);
return crc32(ArrayRef<uint8_t>{Base, Size});
}
template <typename Writer>
static size_t writeTicketFile(Writer &&W, const pstore::database &Db,
const pstore::index::digest &Digest) {
const support::endianness Endian = W.Endian == support::native
? support::endian::system_endianness()
: W.Endian;
assert(Endian == support::little || Endian == support::big);
TicketFile Ticket;
Ticket.Magic = (Endian == support::little) ? LERepoMagic : BERepoMagic;
Ticket.CRC = 0;
Ticket.Version = support::endian::byte_swap(TicketFileVersion, Endian);
Ticket.Unused = 0;
Ticket.OwnerID =
Db.get_header().id().array(); // No need to swap. OwnerID is a UUID whose
// bytes are in network order.
Ticket.Digest = support::endian::byte_swap(Digest, Endian);
Ticket.CRC = support::endian::byte_swap(ticketCRC(Ticket), Endian);
W.OS.write(reinterpret_cast<const char *>(&Ticket), sizeof(Ticket));
return sizeof(Ticket);
}
void llvm::mc::repo::writeTicketFile(support::endian::Writer &&W,
const pstore::database &Db,
const pstore::index::digest &Digest) {
const auto BytesWritten = ::writeTicketFile(W, Db, Digest);
(void)BytesWritten;
assert(BytesWritten == TicketFileSize &&
"TicketFileSize did not match bytes written!");
}
void llvm::mc::repo::writeTicketFile(support::endian::Writer &W,
const pstore::database &Db,
const pstore::index::digest &Digest) {
const auto BytesWritten = ::writeTicketFile(W, Db, Digest);
(void)BytesWritten;
assert(BytesWritten == TicketFileSize &&
"TicketFileSize did not match bytes written!");
}
Error llvm::mc::repo::writeTicketFile(const llvm::StringRef &Path,
const pstore::database &Db,
const pstore::index::digest &Digest) {
std::error_code EC;
llvm::raw_fd_ostream OutFile{Path, EC};
if (EC) {
return errorCodeToError(EC);
}
writeTicketFile(
llvm::support::endian::Writer{OutFile, llvm::support::endianness::native},
Db, Digest);
return errorCodeToError(OutFile.error());
}
static ErrorOr<TicketFile> getTicket(const llvm::MemoryBufferRef &Buffer,
pstore::database const *const Owner) {
const StringRef Contents = Buffer.getBuffer();
assert(mc::repo::TicketFileSize == sizeof(TicketFile) &&
"TicketFileSize must be sizeof(TicketFile)");
if (Contents.size() != sizeof(TicketFile)) {
return mc::repo::TicketError::NotATicket;
}
TicketFile Ticket;
std::memcpy(&Ticket, Contents.data(), sizeof(Ticket));
support::endianness Endian;
if (Ticket.Magic == LERepoMagic) {
Endian = support::little;
} else if (Ticket.Magic == BERepoMagic) {
Endian = support::big;
} else {
return mc::repo::TicketError::NotATicket;
}
const uint32_t ExpectedCRC = ticketCRC(Ticket);
Ticket.CRC = support::endian::byte_swap(Ticket.CRC, Endian);
Ticket.Version = support::endian::byte_swap(Ticket.Version, Endian);
Ticket.Digest = support::endian::byte_swap(Ticket.Digest, Endian);
if (Ticket.Version != TicketFileVersion || Ticket.CRC != ExpectedCRC) {
return mc::repo::TicketError::NotATicket;
}
if (Owner != nullptr) {
if (Ticket.OwnerID != Owner->get_header().id().array()) {
return mc::repo::TicketError::DatabaseIDMismatch;
}
}
return Ticket;
}
static ErrorOr<ScopedFD> openFile(StringRef Path) {
int FD = 0;
if (const std::error_code Err = sys::fs::openFileForRead(Path, FD)) {
return Err;
}
return ScopedFD{FD};
}
static ErrorOr<std::unique_ptr<MemoryBuffer>>
openTicketFile(StringRef TicketPath) {
const auto FDOrErr = openFile(TicketPath);
if (!FDOrErr) {
return FDOrErr.getError();
}
const int FD = FDOrErr->getValue();
sys::fs::file_status Status;
if (const std::error_code Err = sys::fs::status(FD, Status)) {
return Err;
}
const uint64_t FileSize = Status.getSize();
if (FileSize != mc::repo::TicketFileSize) {
return mc::repo::TicketError::NotATicket;
}
return MemoryBuffer::getOpenFile(sys::fs::convertFDToNativeFile(FD),
TicketPath, FileSize, false);
}
ErrorOr<pstore::index::digest>
llvm::mc::repo::getDigestFromTicket(const llvm::MemoryBufferRef &Buffer,
const pstore::database *const Owner) {
const ErrorOr<TicketFile> TicketOrErr = getTicket(Buffer, Owner);
if (!TicketOrErr) {
return TicketOrErr.getError();
}
return TicketOrErr->Digest;
}
ErrorOr<pstore::index::digest>
llvm::mc::repo::getDigestFromTicket(StringRef TicketPath,
pstore::database const *const Owner) {
const auto MemoryBufferOrErr = openTicketFile(TicketPath);
if (!MemoryBufferOrErr) {
return MemoryBufferOrErr.getError();
}
return getDigestFromTicket(**MemoryBufferOrErr, Owner);
}
ErrorOr<pstore::uuid>
llvm::mc::repo::getOwnerIDFromTicket(const llvm::MemoryBufferRef &Buffer) {
const ErrorOr<TicketFile> TicketOrErr = getTicket(Buffer, nullptr);
if (!TicketOrErr) {
return TicketOrErr.getError();
}
return pstore::uuid{TicketOrErr->OwnerID};
}
ErrorOr<pstore::uuid>
llvm::mc::repo::getOwnerIDFromTicket(StringRef TicketPath) {
const auto MemoryBufferOrErr = openTicketFile(TicketPath);
if (!MemoryBufferOrErr) {
return MemoryBufferOrErr.getError();
}
return getOwnerIDFromTicket(**MemoryBufferOrErr);
}
Expected<llvm::SmallString<256>>
llvm::mc::repo::realTicketDirectory(const StringRef &Path) {
// Make absolute and remove component traversals, links, etc.
llvm::SmallString<256> Out = Path;
sys::path::remove_filename(Out);
llvm::SmallString<256> Result;
if (const std::error_code EC = Out.size() == 0U
? llvm::sys::fs::current_path(Result)
: sys::fs::real_path(Out, Result)) {
return llvm::errorCodeToError(EC);
}
return Result;
}
void llvm::mc::repo::recordTicketDirectory(
pstore::transaction<pstore::transaction_lock> &Transaction,
std::shared_ptr<pstore::index::path_index> const &Paths,
llvm::StringRef const &TicketDirectory) {
assert(sys::fs::is_directory(TicketDirectory) &&
"The path being recorded must be a directory");
pstore::indirect_string_adder Adder;
pstore::raw_sstring_view View{TicketDirectory.data(), TicketDirectory.size()};
Adder.add(Transaction, Paths, &View);
Adder.flush(Transaction);
}
|
1826e7781c7d1f50ab55a62b619e910417518fd9 | fded81a37e53d5fc31cacb9a0be86377825757b3 | /buhg_g/l_kv_start.cpp | 2d6f5536e59aacca89d3dc8958ee3f402eb5961e | [] | no_license | iceblinux/iceBw_GTK | 7bf28cba9d994e95bab0f5040fea1a54a477b953 | a4f76e1fee29baa7dce79e8a4a309ae98ba504c2 | refs/heads/main | 2023-04-02T21:45:49.500587 | 2021-04-12T03:51:53 | 2021-04-12T03:51:53 | 356,744,886 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 461 | cpp | l_kv_start.cpp | /*$Id: l_kv_start.c,v 1.1 2013/09/26 09:48:37 sasa Exp $*/
/*05.09.2013 05.09.2013 ะะตะปัั
ะ.ะ. l_kv_start.c
ะ ะฐะฑะพัะฐ ัะพ ัะฟัะฐะฒะพัะฝะธะบะพะผ ะบัััะพะฒ ะฒะฐะปัั
*/
#include "buhg_g.h"
void l_kv(const char *kod_val,GtkWidget *wpredok);
int l_kv_m(class iceb_u_str *kod_val,GtkWidget *wpredok);
void l_kv_start(GtkWidget *wpredok)
{
class iceb_u_str kod_val("");
if(l_kv_m(&kod_val,wpredok) != 0)
return;
l_kv(kod_val.ravno(),wpredok);
} |
4054568dd8d5d4ed4c01b34476091db04145619b | 550d05285a6e995c8190611d9e854b950b2a3531 | /luogu/luogu2261/luogu2261.cpp | 418c2a6988fa6c166064c8c00017aff392884845 | [] | no_license | lrj124/online-judge | 5c21b1a72bfc4623fdd0f04072a60f4871ccc795 | 7027d9b4be7a2737d5af31b0ae445129b11ef214 | refs/heads/main | 2023-06-18T17:33:20.736976 | 2021-07-21T03:45:35 | 2021-07-21T03:45:35 | 387,982,481 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 600 | cpp | luogu2261.cpp | /************************************************
*Author : lrj124
*Created Time : 2019.08.24.17:36
*Mail : 1584634848@qq.com
*Problem : luogu2261
************************************************/
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const ll inf = 1<<62;
ll n,k,ans;
int main() {
freopen("luogu2261.in","r",stdin);
freopen("luogu2261.out","w",stdout);
scanf("%lld%lld",&n,&k); ans = n*k;
for (ll l = 1,r;l <= n;l = r+1) {
if (k/l) r = min(k/(k/l),n);
else r = n;
ans -= (k/l)*(r-l+1)*(l+r)>>1;
}
printf("%lld",ans);
return 0;
}
|
6570edb278c6b434b7e26f14cb26d3b7a2252989 | 500ee2e265e9fc7b4bc70d49a375b38f19ad8b27 | /examples/TextPacketHandler/TextPacketHandler.cpp | b7eb1684392caf6452d039e64cb25c572476d4db | [
"BSD-3-Clause-Clear"
] | permissive | ssilverman/TeensyDMX | eba732505edf1efa30a96791e01ffd4e4c3d403e | b9008368a12b3b5692665c0a06b97a27aeca7eef | refs/heads/master | 2023-07-08T22:36:30.769605 | 2023-06-27T15:15:01 | 2023-06-27T15:15:01 | 85,892,375 | 96 | 6 | BSD-3-Clause-Clear | 2022-10-26T15:52:53 | 2017-03-23T01:15:28 | C++ | UTF-8 | C++ | false | false | 1,135 | cpp | TextPacketHandler.cpp | // This file is part of the TextPacketHandler example in the TeensyDMX library.
// (c) 2018-2019 Shawn Silverman
#include "TextPacketHandler.h"
// Define this here (C++17 doesn't need this but earlier versions do).
constexpr uint8_t TextPacketHandler::kStartCodes[];
void TextPacketHandler::receivePacket(const uint8_t *buf, int len) {
// The packet must contain at least 3 bytes (plus the start code)
if (len < 4) {
return;
}
uint8_t page = buf[1];
uint8_t charsPerLine = buf[2];
// Look for the NUL character
int nulIndex = -1;
for (int i = 3; i < len; i++) {
if (buf[i] == 0) {
nulIndex = i;
break;
}
}
if (nulIndex < 0) {
// Ignore packets missing a NUL character
return;
}
switch (buf[0]) {
case kASCII:
setText(page, charsPerLine,
reinterpret_cast<const char *>(&buf[3]), nulIndex - 3);
break;
case kUTF8:
// TODO: Validate the UTF-8 text
setUTF8Text(page, charsPerLine,
reinterpret_cast<const char *>(&buf[3]), nulIndex - 3);
break;
}
}
|
3df0f1a3cb5d19e98d109a2a805a95c922e695ee | 7c9af7e21362f6fafa503f2d5f50ca069cb0a723 | /Base/Source/AllLevelDetails.h | 61aba1a56529a982bfe2cea12d84a7657a19845f | [] | no_license | JeffreyTeo/SP4 | 57e3192927d06908ff312d3aebf6940967172528 | 17db14d2f1687e4ef1a0ad15597d91424b102840 | refs/heads/master | 2021-01-10T16:34:19.231887 | 2016-03-03T18:44:47 | 2016-03-03T18:44:47 | 51,798,680 | 0 | 6 | null | 2016-03-03T18:44:47 | 2016-02-16T01:30:00 | C | UTF-8 | C++ | false | false | 578 | h | AllLevelDetails.h | #ifndef ALLLEVELDETAILS_H
#define ALLLEVELDETAILS_H
#include <iostream>
#include <string>
#include "LuaUsage.h"
using namespace std;
class AllLevelDetails
{
public:
AllLevelDetails(void);
~AllLevelDetails(void);
//AllLevelDetails Init
void AllLevelDetailsInit(string Varfilepath);
//Get & Set of LevelCleared
bool GetCleared();
void SetCleared(bool m_Cleared);
//Get & Set of CollectedKeys
short GetCollectedKeys();
void SetCollectedKeys(int m_CollectedKeys);
private:
//LevelCleared
bool m_Cleared;
//Collectedkeys per level
short m_CollectedKeys;
};
#endif |
4ae02f9f2d410d11036d8ec96b800dda451c6e96 | c3ffa07567d3d29a7439e33a6885a5544e896644 | /HSNU-OJ/55.cpp | 55d95b0ce85197c844eb88318f87472603c0f50e | [] | no_license | a00012025/Online_Judge_Code | 398c90c046f402218bd14867a06ae301c0c67687 | 7084865a7050fc09ffb0e734f77996172a93d3ce | refs/heads/master | 2018-01-08T11:33:26.352408 | 2015-10-10T23:20:35 | 2015-10-10T23:20:35 | 44,031,127 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,784 | cpp | 55.cpp | #include<bits/stdc++.h>
#define LL long long
using namespace std;
const int maxn=100000+100 ;
int n ;
vector<int> v1[maxn],v2[maxn] ;
int topo[maxn],t,scc[maxn],scnt ;
bool vis[maxn] ;
void dfs1(int x)
{
vis[x]=1 ;
for(int i=0;i<v1[x].size();i++) if(!vis[v1[x][i]])
dfs1(v1[x][i]) ;
topo[--t]=x ;
}
void dfs2(int x,int k)
{
vis[x]=1 ; scc[x]=k ;
for(int i=0;i<v2[x].size();i++) if(!vis[v2[x][i]])
dfs2(v2[x][i],k) ;
}
void SCC()
{
scnt=0 ;
memset(vis,0,sizeof(vis)) ;
t=n+1 ;
for(int i=1;i<=n;i++) if(!vis[i])
dfs1(i) ;
memset(vis,0,sizeof(vis)) ;
for(int i=1;i<=n;i++) if(!vis[topo[i]])
{
scnt++ ;
dfs2(topo[i],scnt) ;
}
}
bool in[maxn],out[maxn] ;
void get_new_edge()
{
memset(in,0,sizeof(in)) ;
memset(out,0,sizeof(out)) ;
for(int i=1;i<=n;i++) for(int j=0;j<v1[i].size();j++)
if(scc[i] != scc[v1[i][j]] )
out[scc[i]]=1 , in[scc[v1[i][j]]]=1 ;
}
main()
{
scanf("%d",&n) ;
for(int i=1;i<=n;i++)
{
int x ;
while(1)
{
scanf("%d",&x) ;
if(!x) break ;
v1[i].push_back(x) , v2[x].push_back(i) ;
}
}
SCC() ;
get_new_edge() ;
int ans1=0,ans2=0,zero=0 ;
for(int i=1;i<=scnt;i++)
{
if(!in[i] && !out[i]) { zero++ ; continue ; }
if(!in[i]) ans1++ ;
if(!out[i]) ans2++ ;
}
if(!zero) printf("%d\n%d\n",ans1,ans1+ans2-1) ;
else
{
if(!ans1 && !ans2)
{
if(zero==1) printf("1\n0\n") ;
else printf("%d\n%d\n",zero,zero) ;
}
else printf("%d\n%d\n",ans1+zero,max(ans1,ans2)+zero) ;
}
}
|
c77b4e5196a8549c340818eed6a301f972383a98 | 43c6ce94913c65ee673fe670b1b354db03497860 | /gpu_asm_def.cpp | 262ac7f24671091c9af880dbaabb224201349dd8 | [] | no_license | yyzreal/AMD-GPU-Asm-Disasm | b472c67145fbf40d2455b1b391450dae99f6606f | ac7c7b4af154857c4c493e1913355fc81ffdd6ff | refs/heads/master | 2021-01-18T04:55:16.670274 | 2012-08-14T20:03:59 | 2012-08-14T20:03:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,948 | cpp | gpu_asm_def.cpp | /*
* Copyright 2011 StreamNovation Ltd. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY StreamNovation Ltd. ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL StreamNovation Ltd. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are those of the
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of StreamNovation Ltd.
*
*
* Author(s):
* Adam Rak <adam.rak@streamnovation.com>
*
*
*
*/
#include <iostream>
#include <stdexcept>
#include <boost/spirit/include/qi.hpp>
#include <boost/spirit/include/phoenix_core.hpp>
#include <boost/spirit/include/phoenix_operator.hpp>
#include <boost/spirit/include/phoenix_stl.hpp>
#include <boost/spirit/repository/include/qi_confix.hpp>
#include "gpu_asm_def.hpp"
using namespace boost::spirit::qi;
using namespace boost::spirit;
using namespace std;
struct printer
{
bool detailed;
typedef boost::spirit::utf8_string string;
printer(bool detailed = false) : detailed(detailed) {}
void element(string const& tag, string const& value, int depth) const
{
for (int i = 0; i < (8+depth*4); ++i) // indent to depth
{
std::cout << ' ';
}
if (detailed)
{
std::cout << "tag: " << tag;
if (value != "")
{
std::cout << ", value: \"" << value << "\"";
}
std::cout << std::endl;
}
else
{
if (value != "")
{
cout << value << endl;
}
else
{
cout << tag << endl;
}
}
}
};
static void print_info(boost::spirit::info const& what, bool detailed = false)
{
using boost::spirit::basic_info_walker;
cout << endl;
printer pr(detailed);
basic_info_walker<printer> walker(pr, what.tag, 0);
boost::apply_visitor(walker, what.value);
}
namespace gpu_asm{
struct cur_attrib
{
bound cur_bound, cur_bound2;
int cur_size;
std::string cur_micro, cur_type, cur_enum, cur_elem, cur_field, cur_tuple;
bool cur_default_val;
};
struct assign_str
{
std::string& str;
assign_str(std::string& s) : str(s)
{
}
void operator()(const vector<char>& s, qi::unused_type, qi::unused_type) const
{
str = std::string(s.begin(), s.end());
}
};
struct assign_int
{
int& i;
assign_int(int& i) : i(i)
{
}
void operator()(const int& i_, qi::unused_type, qi::unused_type) const
{
i = i_;
}
};
struct print_str
{
void operator()(const vector<char>& s, qi::unused_type, qi::unused_type) const
{
cout << std::string(s.begin(), s.end()) << endl;
}
};
struct new_microcode_a
{
asm_definition* asmdef;
cur_attrib& attrib;
new_microcode_a(asm_definition* asmdef, cur_attrib& attrib)
: asmdef(asmdef), attrib(attrib)
{
}
void operator()(qi::unused_type, qi::unused_type, qi::unused_type) const
{
if (asmdef->microcode_formats.count(attrib.cur_micro))
{
throw std::runtime_error("Redefinition of microcode format: " + attrib.cur_micro);
}
asmdef->microcode_formats[attrib.cur_micro].size_in_bits = attrib.cur_size;
asmdef->microcode_formats[attrib.cur_micro].name = attrib.cur_micro;
}
};
struct new_elem_a
{
asm_definition* asmdef;
cur_attrib& attrib;
new_elem_a(asm_definition* asmdef, cur_attrib& attrib)
: asmdef(asmdef), attrib(attrib)
{
}
void operator()(qi::unused_type, qi::unused_type, qi::unused_type) const
{
enum_val val;
val.name = attrib.cur_elem;
val.value_bound = attrib.cur_bound;
val.default_option = attrib.cur_default_val;
if (attrib.cur_bound.start == -1)
{
val.value_bound.start = asmdef->microcode_formats.at(attrib.cur_micro).enums.at(attrib.cur_enum).size();
val.value_bound.stop = asmdef->microcode_formats.at(attrib.cur_micro).enums.at(attrib.cur_enum).size();
}
if (val.default_option and (val.value_bound.start != 0 or val.value_bound.stop != 0))
{
throw std::runtime_error("Default options should evaluate to zero " + attrib.cur_micro + "." + attrib.cur_enum + "." + attrib.cur_elem);
}
if (asmdef->microcode_formats.at(attrib.cur_micro).enums.at(attrib.cur_enum).count(val))
{
throw std::runtime_error("Redefinition of element: " + attrib.cur_micro + "." + attrib.cur_enum + "." + attrib.cur_elem);
}
asmdef->microcode_formats.at(attrib.cur_micro).enums.at(attrib.cur_enum).insert(val);
}
};
struct new_enum_a
{
asm_definition* asmdef;
cur_attrib& attrib;
new_enum_a(asm_definition* asmdef, cur_attrib& attrib)
: asmdef(asmdef), attrib(attrib)
{
}
void operator()(qi::unused_type, qi::unused_type, qi::unused_type) const
{
if (asmdef->microcode_formats.at(attrib.cur_micro).enums.count(attrib.cur_enum))
{
throw std::runtime_error("Redefinition of enum: " + attrib.cur_enum + " in microcode format: " + attrib.cur_micro);
}
asmdef->microcode_formats.at(attrib.cur_micro).enums[attrib.cur_enum];
}
};
struct new_field_a
{
asm_definition* asmdef;
cur_attrib& attrib;
new_field_a(asm_definition* asmdef, cur_attrib& attrib)
: asmdef(asmdef), attrib(attrib)
{
}
void operator()(qi::unused_type, qi::unused_type, qi::unused_type) const
{
bool found = false;
auto fields = asmdef->microcode_formats.at(attrib.cur_micro).fields;
for (int i = 0; i < int(fields.size()); i++)
{
if (fields[i].name == attrib.cur_field)
{
found = true;
}
}
if (found)
{
throw std::runtime_error("Redefinition of field: " + attrib.cur_micro + "." + attrib.cur_field);
}
field ff;
ff.name = attrib.cur_field;
ff.bits = attrib.cur_bound;
// cout << attrib.cur_field << " : " << ff.bits.start << " " << ff.bits.stop << endl;
if (attrib.cur_type == "INT")
{
ff.numeric = true;
ff.flag = false;
ff.numeric_bounds = attrib.cur_bound2;
if (attrib.cur_bound2.start == -1)
{
ff.numeric_bounds.stop = 0;
ff.numeric_bounds.start = int(pow(2, abs(ff.bits.start-ff.bits.stop)+1))-1;
}
}
else if (attrib.cur_type == "BOOL")
{
ff.numeric = false;
ff.flag = true;
}
else
{
if (asmdef->microcode_formats.at(attrib.cur_micro).enums.count(attrib.cur_type) == 0)
{
throw std::runtime_error("Undefined type: " + attrib.cur_micro + "." + attrib.cur_type);
}
ff.vals = asmdef->microcode_formats.at(attrib.cur_micro).enums.at(attrib.cur_type);
ff.enum_name = attrib.cur_type;
}
asmdef->microcode_formats.at(attrib.cur_micro).fields.push_back(ff);
}
};
struct new_constraint_a
{
asm_definition* asmdef;
cur_attrib& attrib;
new_constraint_a(asm_definition* asmdef, cur_attrib& attrib)
: asmdef(asmdef), attrib(attrib)
{
}
void operator()(qi::unused_type, qi::unused_type, qi::unused_type) const
{
if (asmdef->microcode_formats.count(attrib.cur_micro))
{
}
bool found = false;
auto fields = asmdef->microcode_formats.at(attrib.cur_micro).fields;
field ff;
for (int i = 0; i < int(fields.size()); i++)
{
if (fields[i].name == attrib.cur_field)
{
found = true;
ff = fields[i];
}
}
if (!found)
{
throw std::runtime_error("Undefined field: " + attrib.cur_micro + "." + attrib.cur_field);
}
enum_val val;
val.name = attrib.cur_elem;
if (ff.vals.size() == 0)
{
throw std::runtime_error("Field is not a valid enum: " + attrib.cur_micro + "." + attrib.cur_field);
}
if (!ff.vals.count(val))
{
throw std::runtime_error("Undefined element of an enum: " + attrib.cur_micro + "." + attrib.cur_field + "." + ff.enum_name + "." + attrib.cur_elem);
}
asmdef->microcode_format_tuples.at(attrib.cur_tuple).constraints[make_pair(attrib.cur_micro, attrib.cur_field)] = attrib.cur_elem;
}
};
struct new_tuple_a
{
asm_definition* asmdef;
cur_attrib& attrib;
new_tuple_a(asm_definition* asmdef, cur_attrib& attrib)
: asmdef(asmdef), attrib(attrib)
{
}
void operator()(qi::unused_type, qi::unused_type, qi::unused_type) const
{
if (asmdef->microcode_format_tuples.count(attrib.cur_tuple))
{
throw std::runtime_error("Redefinition of microcode format tuple: " + attrib.cur_tuple);
}
asmdef->microcode_format_tuples[attrib.cur_tuple].size_in_bits = attrib.cur_size;
asmdef->microcode_format_tuples[attrib.cur_tuple].name = attrib.cur_tuple;
}
};
struct push_micro_a
{
asm_definition* asmdef;
cur_attrib& attrib;
push_micro_a(asm_definition* asmdef, cur_attrib& attrib)
: asmdef(asmdef), attrib(attrib)
{
}
void operator()(qi::unused_type, qi::unused_type, qi::unused_type) const
{
if (!asmdef->microcode_formats.count(attrib.cur_micro))
{
throw std::runtime_error("Undefined microcode format: " + attrib.cur_tuple + "." + attrib.cur_micro);
}
asmdef->microcode_format_tuples[attrib.cur_tuple].tuple.push_back(attrib.cur_micro);
}
};
struct set_default_elem_a
{
asm_definition* asmdef;
cur_attrib& attrib;
set_default_elem_a(asm_definition* asmdef, cur_attrib& attrib)
: asmdef(asmdef), attrib(attrib)
{
}
void operator()(qi::unused_type, qi::unused_type, qi::unused_type) const
{
attrib.cur_default_val = true;
}
};
struct push_option_a
{
asm_definition* asmdef;
cur_attrib& attrib;
push_option_a(asm_definition* asmdef, cur_attrib& attrib)
: asmdef(asmdef), attrib(attrib)
{
}
void operator()(std::vector<char>& chvec, qi::unused_type, qi::unused_type) const
{
asmdef->microcode_format_tuples.at(attrib.cur_tuple).options.insert(std::string(chvec.begin(), chvec.end()));
}
};
#define ref_ boost::phoenix::ref
std::string asm_definition::clear_comments(std::string text)
{
using boost::phoenix::push_back;
using boost::spirit::repository::confix;
std::vector<char> result;
#define comment_p1 ( confix("/*", "*/")[*(char_ - "*/")])
#define comment_p2 ( confix("//", eol)[*(char_ - eol)])
#define comment_p3 ( confix("(*", "*)")[*(char_ - "*)")])
#define comment_p4 ( confix("#", eol)[*(char_ - eol)])
auto begin = text.begin();
auto end = text.end();
phrase_parse(begin, end, *char_[push_back(ref_(result), _1)], comment_p1 | comment_p2 | comment_p3 | comment_p4);
#undef comment_p1
#undef comment_p2
#undef comment_p3
#undef comment_p4
return std::string(result.begin(), result.end());
}
#define name_(s) name[assign_str(attr.cur_ ## s)]
#define name_c(s) name[assign_str(attr.cur_ ## s)][ref_(attr.cur_bound.start) = -1][ref_(attr.cur_bound2.start) = -1][ref_(attr.cur_default_val) = false]
#define bstart_ int_[assign_int( attr.cur_bound.start )]
#define bstop_ int_[assign_int( attr.cur_bound.stop )]
#define bpos_ int_[assign_int( attr.cur_bound.start )][assign_int( attr.cur_bound.stop )]
#define bstart2_ int_[assign_int( attr.cur_bound2.start )]
#define bstop2_ int_[assign_int( attr.cur_bound2.stop )]
#define new_microcode new_microcode_a(this, attr)
#define new_elem new_elem_a(this, attr)
#define new_enum new_enum_a(this, attr)
#define new_field new_field_a(this, attr)
#define new_constraint new_constraint_a(this, attr)
#define new_tuple new_tuple_a(this, attr)
#define push_micro push_micro_a(this, attr)
#define set_default_elem set_default_elem_a(this, attr)
#define push_option push_option_a(this, attr)
asm_definition::asm_definition(std::string text)
{
text = clear_comments(text);
cur_attrib attr;
std::map<std::string, std::set<enum_val> > enums;
#define name ( lexeme[+(alnum | char_('_'))])
#define header ( "architecture" > name[assign_str(arch_techname)] > name[assign_str(arch_codename)] > ';')
#define bbound_p ( ('(' >> bpos_ >> ')') | ('(' >> bstart_ >> ':' >> bstop_ >> ')'))
#define bbound2_p ( '(' >> bstart2_ >> ':' >> bstop2_ >> ')')
#define bound_p ( (bstart_ >> ':' >> bstop_) | bpos_)
#define size_p ( ('(' > int_[assign_int(attr.cur_size)] > ')'))
#define debug ( lexeme[(*char_)[print_str()]])
#define enum_elem ( !lit("end") > name_c(elem) > -bound_p > -lit("default")[set_default_elem] > lit(';')[new_elem])
#define enum_def ( "enum" > size_p > name_(enum) > lit(':')[new_enum] > *enum_elem > "end" > "enum" > ';')
#define field ( "field" > name_c(field) > bbound_p > name_(type) > -bbound2_p > lit(';')[new_field])
#define microcode_def ( "microcode" > name_(micro) > size_p > lit(':')[new_microcode] > *(enum_def | field) > "end" > "microcode" > ';')
#define microcode_use ( "microcode" > name_(micro) > lit(';')[push_micro])
#define option ( "option" > name[push_option] > lit(';'))
#define constraint_def ( !lit("end") > name_(micro) > '.' > name_(field) > "==" > name_(elem) > lit(';')[new_constraint])
#define constraints_def ( "constraints" >> lit(':') > *constraint_def > "end" > "constraints" > ';')
#define tuple_def ( "tuple" > name_c(tuple) > size_p > lit(':')[new_tuple] > *microcode_use > *option > -constraints_def > "end" > "tuple" > ';')
auto begin = text.begin();
auto end = text.end();
int linenum = 0;
for (int i = 0; i < int(text.length()); i++)
if (text[i] == '\n')
linenum++;
try{
phrase_parse(begin, end, eps > header > *(microcode_def | tuple_def) > "end" > ';' > eoi, space);
#undef name
#undef header
#undef bbound_p
#undef bbound2_p
#undef bound_p
#undef size_p
#undef debug
#undef enum_elem
#undef enum_def
#undef field
#undef microcode_def
#undef microcode_use
#undef option
#undef constraint_def
#undef constraints_def
#undef tuple_def
}
catch (expectation_failure<decltype(begin)> const& x)
{
std::cout << "expected: "; print_info(x.what_);
std::string got(x.first, x.last);
int gotlinenum = 0;
for (int i = 0; i < int(got.length()); i++)
if (got[i] == '\n')
gotlinenum++;
int gotsize = got.size();
if (got.find("\n") != std::string::npos)
{
got.resize(got.find("\n"));
}
std::cout << "got: \"" << got << "\" at line: #" << linenum - gotlinenum +1 << std::endl;
int pos = 0;
int cpos = int(text.length()) - gotsize;
for (int i = int(text.length()) - gotsize; i >= 0; i--)
{
if (text[i] == '\n')
{
pos = i+1;
break;
}
}
int pos2 = text.length();
for (int i = pos; i < int(text.length()); i++)
{
if (text[i] == '\n')
{
pos2 = i;
break;
}
}
std::string line(text.begin()+pos, text.begin()+pos2);
for (int i = 0; i < int(line.length()); i++)
{
if (line[i] == '\t')
{
line[i] = ' ';
}
}
std::cout << line << endl;
for (int i = 0; i < cpos-pos; i++)
{
cout << " ";
}
cout << "^" << endl;
throw std::runtime_error("Syntax error");
}
if (!check(cerr))
{
throw std::runtime_error("Semantic error");
}
}
bool asm_definition::check(std::ostream& o)
{
for (auto i = microcode_format_tuples.begin(); i != microcode_format_tuples.end(); i++)
{
if (!check_tuple(o, i->second))
return false;
}
for (auto i = microcode_formats.begin(); i != microcode_formats.end(); i++)
{
if (!check_format(o, i->second))
return false;
}
return true;
}
bool asm_definition::check_tuple(std::ostream& o, microcode_format_tuple t)
{
int true_size = 0;
std::set<std::string> code_names;
for (int i = 0; i < int(t.tuple.size()); i++)
{
code_names.insert(t.tuple[i]);
true_size += microcode_formats.at(t.tuple[i]).size_in_bits;
assert(microcode_formats.at(t.tuple[i]).name == t.tuple[i]);
}
for (auto i = t.constraints.begin(); i != t.constraints.end(); i++)
{
if (!code_names.count(i->first.first))
{
o << "microcode format is not in tuple: " << t.name << "." << i->first.first << endl;
return false;
}
}
if (true_size > t.size_in_bits)
{
o << "Tuple " << t.name << " is bigger (" << true_size << ")" << "than the nominal size: " << t.size_in_bits << endl;
return false;
}
if (true_size < t.size_in_bits)
{
o << "Tuple " << t.name << " is smaller (" << true_size << ")" << "than the nominal size: " << t.size_in_bits << endl;
}
return true;
}
bool asm_definition::check_format(std::ostream& o, microcode_format f)
{
int true_size = 0;
std::map<int, bool> bit_usage;
for (int i = 0; i < int(f.fields.size()); i++)
{
int cur_size = abs(f.fields[i].bits.start-f.fields[i].bits.stop)+1;
true_size += cur_size;
if (f.fields[i].numeric)
{
long max_val = std::max(f.fields[i].numeric_bounds.start, f.fields[i].numeric_bounds.stop);
long c_max_val = pow(2, cur_size);
if (max_val >= c_max_val)
{
o << "Representation overflow at field: " << f.name << "." << f.fields[i].name << " " << max_val << " > " << c_max_val-1 << "(" << cur_size << " bits)" << endl;
return false;
}
}
else if (f.fields[i].vals.size())
{
for (auto j = f.fields[i].vals.begin(); j != f.fields[i].vals.end(); j++)
{
long max_val = std::max(j->value_bound.start, j->value_bound.stop);
long c_max_val = pow(2, cur_size);
if (max_val >= c_max_val)
{
o << "Representation overflow at field: " << f.name << "." << f.fields[i].name << " " << max_val << " > " << c_max_val-1 << "(" << cur_size << " bits)" << " in elem: " << f.fields[i].enum_name << "." << j->name << endl;
return false;
}
}
}
else if (f.fields[i].flag)
{
if (cur_size != 1)
{
o << "Field " << f.name << "." << f.fields[i].name << " is a flag, but it occupies " << cur_size << " bits instead of one" << endl;
return false;
}
}
else
{
o << "Field " << f.name << "." << f.fields[i].name << " has no valid type" << endl;
return false;
}
long begin = std::min(f.fields[i].bits.start, f.fields[i].bits.stop);
long end = std::max(f.fields[i].bits.start, f.fields[i].bits.stop);
if (std::max(begin, end) >= f.size_in_bits)
{
o << "Field " << f.name << "." << f.fields[i].name << " uses bits outside the microcode format range: " << end << " > " << f.size_in_bits-1 << endl;
return false;
}
for (int j = begin; j <= end; j++)
{
if (bit_usage[j])
{
o << "Bit " << j << " was reused at: " << f.name << "." << f.fields[i].name << endl;
true_size--;
}
bit_usage[j] = true;
}
}
return true;
}
} |
e95981ae506e55200b05452fee592b467f8a604d | 10b5df616a009a94cdc43da209cdbae4aa0f73ec | /codes/swapReference.cpp | 20199ef6c81bac2ff81a411153e7d03bbe2f66e9 | [] | no_license | shivamdargan/Oops-Object-Oriennted | 37de05421a5b776bb8871e613bb3d91dfd0bdaff | e27238cc2745e8089a20d9bff7365ed860877843 | refs/heads/main | 2023-07-16T14:54:49.797300 | 2021-08-23T11:42:11 | 2021-08-23T11:42:11 | 399,080,407 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 803 | cpp | swapReference.cpp | #include<iostream>
using namespace std;
void swapReference(int & x,int & y)
{
int temp;
temp=x;
x=y;
y=temp;
cout<<"Values Inside Function After Swapping: "<<endl<<"A="<<x<<" B="<<y<<endl;
}
void swapWithoutReference(int x,int y)
{
int temp;
temp=x;
x=y;
y=temp;
cout<<"Values Inside Function After Swapping: "<<endl<<"C="<<x<<" D="<<y<<endl;
}
int main()
{
int a,b,c,d;
cout<<"Enter two values:"<<endl;
cin>>a>>b;
cout<<"Before swapping"<<endl<<"A="<<a<<" B="<<b<<endl;
swapReference(a,b);
cout<<"Values Inside Main Function"<<endl;
cout<<"After swapping: A="<<a<<" B="<<b<<endl<<endl;
cout<<"Enter Two Values For Non Reference Function"<<endl;
cin>>c>>d;
swapWithoutReference(c,d);
cout<<"Values Inside Main Function"<<endl;
cout<<"After swapping: C="<<c<<" D="<<d<<endl;
}
|
55ae059f692877832c887b08b5fd750c6f631a65 | 6c35bc5b1d53f6c6b99a645be724a8fc8b7d08d3 | /iobuffer.h | 8fca1017bc6096210e5d53e1ba3d29eace9c3256 | [] | no_license | cmsun/scmlib | bb89c460250649f4e6bffc414f1f21e4952ee759 | fe45cbc67a02383e3f93f404bcd2c61374377695 | refs/heads/master | 2022-05-22T00:06:48.625112 | 2022-05-04T15:02:39 | 2022-05-04T15:02:39 | 97,685,503 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,901 | h | iobuffer.h | /*
********************************************************************************
* COPYRIGHT NOTICE
* Copyright (c) 2016
* All rights reserved
*
* @FileName : iobuffer.h
* @Author : scm 351721714@qq.com
* @Create : 2017/04/08 23:13:49
* @Last Modified : 2017/06/20 11:17:02
********************************************************************************
*/
#ifndef IOBUFFER_H
#define IOBUFFER_H
#include <stdint.h>
#include <string.h>
#include <vector>
class iobuffer
{
public:
typedef int32_t size_type;
typedef int32_t pos_type;
enum seek_dir {seek_set, seek_cur, seek_end};
enum byte_order {little_endian, big_endian};
private:
std::vector<char> mData;
pos_type mPos;
byte_order mLocalByteOrder;
byte_order mTargetByteOrder;
bool mError;
public:
iobuffer(void);
iobuffer(size_type size);
void resize(size_type size);
void setByteOrder(byte_order order);
size_type write(const char *buff, size_type len);
size_type read(char *buff, size_type len);
const char *data(void);
size_type size(void);
pos_type tell(void);
void seek(pos_type off, seek_dir dir = seek_set);
bool error(void);
void reset(void);
iobuffer &operator<<(const char &val);
iobuffer &operator<<(const unsigned char &val);
iobuffer &operator<<(const short &val);
iobuffer &operator<<(const unsigned short &val);
iobuffer &operator<<(const int &val);
iobuffer &operator<<(const unsigned int &val);
iobuffer &operator<<(const long int &val);
iobuffer &operator<<(const unsigned long int &val);
iobuffer &operator<<(const long long &val);
iobuffer &operator<<(const unsigned long long &val);
iobuffer &operator<<(const float &val);
iobuffer &operator<<(const double &val);
iobuffer &operator<<(const bool &val);
iobuffer &operator>>(char &val);
iobuffer &operator>>(unsigned char &val);
iobuffer &operator>>(short &val);
iobuffer &operator>>(unsigned short &val);
iobuffer &operator>>(int &val);
iobuffer &operator>>(unsigned int &val);
iobuffer &operator>>(long int &val);
iobuffer &operator>>(unsigned long int &val);
iobuffer &operator>>(long long &val);
iobuffer &operator>>(unsigned long long &val);
iobuffer &operator>>(float &val);
iobuffer &operator>>(double &val);
iobuffer &operator>>(bool &val);
};
inline void iobuffer::resize(size_type size)
{
mData.resize(size);
if(mPos > size)
{
mPos = size;
}
}
inline void iobuffer::setByteOrder(byte_order order)
{
mTargetByteOrder = order;
}
inline iobuffer::size_type iobuffer::write(const char *buff, size_type len)
{
size_type remain;
if(mError)
{
return 0;
}
remain = (size_type)mData.size() - mPos;
if(remain < len)
{
mError = true;
return 0;
}
memcpy(mData.data() + mPos, buff, len);
mPos += len;
return len;
}
inline iobuffer::size_type iobuffer::read(char *buff, size_type len)
{
size_type remain;
if(mError)
{
return 0;
}
remain = (size_type)mData.size() - mPos;
memset(buff, 0, len);
if(remain < len)
{
len = remain;
mError = true;
}
memcpy(buff, mData.data() + mPos, len);
mPos += len;
return len;
}
inline const char *iobuffer::data(void)
{
return mData.data();
}
inline iobuffer::size_type iobuffer::size(void)
{
return (size_type)mData.size();
}
inline iobuffer::pos_type iobuffer::tell(void)
{
return mPos;
}
inline bool iobuffer::error(void)
{
return mError;
}
inline void iobuffer::reset(void)
{
mPos = 0;
mError = false;
}
inline bool io_err(iobuffer &io)
{
return io.error();
}
#include "iostl.h"
#endif /* end of include guard: IOBUFFER_H */
|
9abc60616aaa75189090e245878b18e576b3e942 | 960f8e298686ab36372ab002c8c8d3667d6905a9 | /02_Singla_slot/singlaAndSlot/reader.cpp | fc6986579e06a1dc8ac0b5235b6a9624d5306e8c | [] | no_license | wpd550/Qt_beger_start | 846001fb3fbe800275f15153f91d27730b2b490a | 5517dabd3abdf6047b41f959439b6b14c952a62d | refs/heads/master | 2020-03-22T12:34:43.972808 | 2018-07-17T10:18:34 | 2018-07-17T10:18:34 | 140,048,584 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 202 | cpp | reader.cpp | #include "reader.h"
#include <iostream>
#include <QDebug>
Reader::Reader(QObject *parent) : QObject(parent)
{
}
void Reader::receiveNewspaper(const QString &name)
{
qDebug()<<"content:"<<name;
}
|
dd97568a9f74de9aca8fbf57c30cb3e991c10354 | bc4cf83c7048a0657e2a66e016f4356f437a5103 | /src/orbital_space.h | 01f91d3f2cfdf65ca62764bc1c2229c9412bc2ce | [
"MIT"
] | permissive | npbauman/wicked | f3323284d8e89c48d9b4176403a43c2d1b6b5ccc | 19c1fc3264fe293bba62a6e5d17f729038b9885a | refs/heads/master | 2020-08-10T06:03:23.129460 | 2016-11-22T17:45:34 | 2016-11-22T17:45:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,012 | h | orbital_space.h | #ifndef _wicked_orbital_space_h_
#define _wicked_orbital_space_h_
#include <map>
#include <string>
#include <vector>
#include <memory>
/// Type of orbital space
// enum class OrbitalSpaceType { Core, Active, Virtual, RI, None };
/// Type of orbital space
enum class RDMType {
// Single creation/annihilation contractions that yields a Kronecker delta
Occupied,
// Single annihilation/creation contractions that yields a Kronecker delta
Unoccupied,
General // Multi-leg contractions
};
/// Spin types
enum class SpinType { SpinOrbital, SpinFree, Alpha, Beta };
class OrbitalSpaceInfo {
/// This type holds infomation about a space
using t_space_info =
std::tuple<std::string, RDMType, std::vector<std::string>>;
public:
OrbitalSpaceInfo();
/// Set default spaces
void default_spaces();
/// Set default spaces
void reset();
/// Add an elementary space
void add_space(const std::string &label, RDMType structure,
const std::vector<std::string> &indices);
/// Return the number of elementary spaces
int num_spaces() { return static_cast<int>(space_info_.size()); }
/// The label of an orbital space
const std::string &label(int pos) const;
/// The label of an index that belongs to a given orbital space
const std::string index_label(int pos, int idx) const;
/// The structure of the density matrices for an orbital space
RDMType dmstructure(int pos) const;
/// The indices of an orbital space
const std::vector<std::string> &indices(int pos) const;
/// Maps a label into an orbital space
int label_to_space(const std::string &label) const;
private:
/// Vector of spaces
std::vector<t_space_info> space_info_;
/// Maps a space label to its index
std::map<std::string, int> label_to_pos_;
/// Maps orbital indices to a composite space
std::map<std::string, int> indices_to_pos_;
};
extern std::shared_ptr<OrbitalSpaceInfo> osi;
std::shared_ptr<OrbitalSpaceInfo> get_osi();
#endif // _wicked_orbital_space_h_
|
077a01e5a85367508b317b71a22249af91c2fc8c | 17e0b7775f3a1b429225a405a327d137710bec59 | /TryoneTry/Intermediate/Build/Android/TryoneTry/Development/Engine/Module.Engine.gen.49_of_65.cpp | 95c68e1da994eb491eb4e2e374f6aafc504d4c98 | [] | no_license | JTY1997/Learning-UE4 | 923d2cbfe95dec25a9dfe6ca2f36bc67e6203bd3 | ed5fcedf3aa35887e5bde1fe67fd4be0b1a7ce29 | refs/heads/main | 2023-01-31T22:32:04.289755 | 2020-12-17T15:32:55 | 2020-12-17T15:32:55 | 303,879,097 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 567 | cpp | Module.Engine.gen.49_of_65.cpp | // This file is automatically generated at compile-time to include some subset of the user-created cpp files.
#include "E:/Unreal Projects/TryoneTry/Intermediate/Build/Android/TryoneTry/Inc/Engine/PlatformInterfaceWebResponse.gen.cpp"
#include "E:/Unreal Projects/TryoneTry/Intermediate/Build/Android/TryoneTry/Inc/Engine/Player.gen.cpp"
#include "E:/Unreal Projects/TryoneTry/Intermediate/Build/Android/TryoneTry/Inc/Engine/PlayerCameraManager.gen.cpp"
#include "E:/Unreal Projects/TryoneTry/Intermediate/Build/Android/TryoneTry/Inc/Engine/PlayerController.gen.cpp"
|
bce936dc993008ab814f8a727e544cd6fad8d831 | ac507e24073717f0f2f43480101be5db0213c2c4 | /pwiz/utility/findmf/base/resample/masscomparefunctors.hpp | d9d2f06bebee52ac7dc3aad8916de5f398a11c57 | [
"LicenseRef-scancode-free-unknown",
"Apache-2.0"
] | permissive | ProteoWizard/pwiz | 7adbd5a276b49d5f0271eb8cfddbd6d21ee31318 | f708f62d098c33ef60a76d92b038fde74361570a | refs/heads/master | 2023-08-27T20:42:37.708268 | 2023-08-25T18:30:50 | 2023-08-25T18:30:50 | 124,952,577 | 185 | 92 | Apache-2.0 | 2023-09-14T20:39:46 | 2018-03-12T21:16:01 | C# | UTF-8 | C++ | false | false | 3,338 | hpp | masscomparefunctors.hpp | //
// $Id$
//
//
// Original author: Witold Wolski <wewolski@gmail.com>
//
// Copyright : ETH Zurich
//
// 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.
//
#ifndef MASSCOMPAREFUNCTORS_H
#define MASSCOMPAREFUNCTORS_H
#include <stdlib.h>
#include <cstdio>
#include <complex>
/*! \file MassCompareFunctors.h
Defines function objects which are used by SortedMatcher and UnsortedMatcher.
*/
namespace ralab
{
namespace base
{
namespace resample
{
inline double resolution2ppm(double resolution){
return 1/resolution * 1e6;
}
///TODO Do checking on TReal thats a real
template<typename TReal>
struct PPMCompFunctor
{
typedef TReal value_type;
value_type window_;
value_type ppm_;
PPMCompFunctor(value_type window //!< in ppm
):window_(window),ppm_(1e-6)
{}
/// returns window at mass
inline value_type operator()(value_type val)
{
return((window_ * val)*ppm_);
}
/// if dist pval cval smaller then window returns true
inline bool operator()(value_type pval, value_type cval)
{
return( std::abs(pval - cval) < operator()(pval) );
}
};
/// Da Comparator - constant mass error
template<typename TReal>
struct DaCompFunctor
{
typedef TReal value_type;
value_type window_;
DaCompFunctor(value_type window) : window_(window)
{
}
/// window at mass
inline value_type operator()(value_type /*val*/)
{
return( window_ );
}
/** if dist pval cval smaller then window returns true */
inline bool operator()(value_type pval, value_type cval)
{
return( std::abs(pval - cval) < operator()(pval) );
}
};
/// FTMS Comparator
template<typename TReal>
struct FTMSCompFunctor
{
typedef TReal value_type;
value_type window_;
value_type mass_;
value_type invR_;//FTMS resolution
/// brief window at mass, i.e. 0.1 Da at 400Da
FTMSCompFunctor( value_type window , value_type mass ) : window_(window) , mass_(mass)
{
invR_ = sqrt(window_)/mass_;
}
/// brief returns size of windows for this mass
inline value_type operator()(value_type val)
{
value_type pR = (val*invR_);
return( pR*pR );
}
/// brief compares two masses, returns true if they match false otherwise
inline bool operator()(value_type pval, value_type cval)
{
return( std::abs( pval - cval ) < operator()(pval) );
}
};
}//end resample
}//end MSALGO
}//end ralab
#endif // MASSCOMPAREFUNCTORS_H
|
d1a988306617f843048b564bd3d0701db0e7c686 | 21e972fb1c240ea3074339b9eb5bcae3b6129cf3 | /analysis/src/DetectorHistos.cpp | a7c924748ea9bbec3a1410359ce0c201da339165 | [] | no_license | cdpruitt/elastic-neutron-cross-sections | 883aa954b6d8f5f85c4076a5148f7aef6dfa71a3 | 1ff1435641be2c0aa18ac6bacd87ead13f256db7 | refs/heads/master | 2021-01-21T16:45:09.497149 | 2018-10-30T22:41:39 | 2018-10-30T22:41:39 | 91,904,835 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,821 | cpp | DetectorHistos.cpp | #include "../include/Detector.h"
#include "../include/DetectorHistos.h"
using namespace std;
DetectorHistos::DetectorHistos(string name, double linearCalibration)
{
string PHName = name + "PH";
string PSDName = name + "PSD";
string TDCName = name + "TDC";
string PHPSDName = name + "PHPSD";
string TOFName = name + "TOF";
pulseHeightHisto = new TH1D(PHName.c_str(), PHName.c_str(),
5000, 0, 5000);
PSDHisto = new TH1D(PSDName.c_str(), PSDName.c_str(),
5000, 0, 5000);
TDCHisto = new TH1D(TDCName.c_str(), TDCName.c_str(),
5000, 0, 5000);
PHPSD = new TH2D(PHPSDName.c_str(), PHPSDName.c_str(),
1000, 0, 5000,
1000, 0, 5000);
double TOFHistoStart = 0;
double TOFHistoStop = 500;
int TOFHistoBins = ceil((TOFHistoStop-TOFHistoStart)/(linearCalibration));
TOFHisto = new TH1D(TOFName.c_str(), TOFName.c_str(),
TOFHistoBins, TOFHistoStart, TOFHistoStart+TOFHistoBins*linearCalibration);
string rawPHName = PHName + "raw";
string rawPSDName = PSDName + "raw";
string rawTDCName = TDCName + "raw";
string rawPHPSDName = name + "PHPSDraw";
rawPH = new TH1D(rawPHName.c_str(), rawPHName.c_str(),
5000, 0, 5000);
rawPSD = new TH1D(rawPSDName.c_str(), rawPSDName.c_str(),
5000, 0, 5000);
rawTDC = new TH1D(rawTDCName.c_str(), rawTDCName.c_str(),
5000, 0, 5000);
rawPHPSD = new TH2D(rawPHPSDName.c_str(), rawPHPSDName.c_str(),
1000, 0, 5000,
1000, 0, 5000);
}
void DetectorHistos::write()
{
rawPH->Write();
rawPSD->Write();
rawTDC->Write();
rawPHPSD->Write();
pulseHeightHisto->Write();
PSDHisto->Write();
TDCHisto->Write();
TOFHisto->Write();
PHPSD->Write();
}
|
1f51c5c75c6ad28cd71265ae4487135eb3144c90 | fd42254832b12b647fd3b394f2afad9d333f2b0d | /J/gerador.cpp | e2519c9852ff616265682b79e3423a40e2ba4172 | [] | no_license | ruybrito106/IO_OPEI_2017 | 53a786055f36ede15c3dfcac1739deee77f17fa9 | aa3cfcabeba37bb1d2a99f1f863ff3633c51d805 | refs/heads/master | 2021-07-21T08:52:34.443094 | 2017-10-31T02:13:30 | 2017-10-31T02:13:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 260 | cpp | gerador.cpp | #include <bits/stdc++.h>
using namespace std;
int main(int argc, char *argv[]) {
int H1 = stoi(argv[1]), M1 = stoi(argv[2]), H2 = stoi(argv[3]), M2 = stoi(argv[4]);
cout << H1 << " " << M1 << " " << H2 << " " << M2 << "\n";
cout << "0 0 0 0\n";
} |
0f8a6b2d352d44dc66a0855b6d511b4d1ff75f05 | 5fe3fc8d522f5e8b81d3d7ae6a0aa76b3d0d9e40 | /src/ConfigHandling/ConfigHandler.h | 312aaf5639cf6b0b21c96fcc088619f921b8b6b5 | [
"BSD-3-Clause"
] | permissive | jensnielsen/spotifyserver | 745773362ee05a313fec3ca609b357cec031da56 | 836b6e629eaec9ae22f1dc6265a90f638bcb5344 | refs/heads/master | 2021-01-18T17:09:18.673023 | 2013-05-09T15:05:43 | 2013-05-09T15:05:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,720 | h | ConfigHandler.h | /*
* Copyright (c) 2012, Jesper Derehag
* All rights reserved.
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the <organization> nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL JESPER DEREHAG BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef CONFIGHANDLER_H_
#define CONFIGHANDLER_H_
#include "Logger/LogLevels.h"
#include <string>
namespace ConfigHandling
{
class AudioEndpointConfig
{
public:
typedef enum
{
ALSA
}EndpointType;
AudioEndpointConfig();
const std::string& getDevice() const;
EndpointType getEndpointType() const;
void setDevice(const std::string& device);
void setEndpointType(const std::string& endpointType);
private:
EndpointType endpointType_;
std::string device_;
};
class LoggerConfig
{
public:
typedef enum
{
FILE,
STDOUT,
NOWHERE,
}LogTo;
LoggerConfig();
const std::string& getLogFile() const;
LogLevel getLogLevel() const;
LogTo getLogTo() const;
void setLogFile(const std::string& logFile);
void setLogLevel(const std::string& logLevel);
void setLogTo(LogTo logTo);
private:
LogLevel logLevel_;
std::string logFile_;
LogTo logTo_;
};
class NetworkConfig
{
public:
typedef enum
{
IP,
DEVICE
}BindType;
NetworkConfig();
BindType getBindType() const;
const std::string& getDevice() const;
const std::string& getIp() const;
const std::string& getPort() const;
const std::string& getUsername() const;
const std::string& getPassword() const;
void setBindType(const std::string& bindType);
void setDevice(const std::string& device);
void setIp(const std::string& ip);
void setPort(const std::string& port);
void setUsername(std::string& username);
void setPassword(std::string& password);
private:
BindType bindType_;
// IP is kept as string for now since ip representation is different on different platforms
std::string ip_;
std::string device_;
std::string port_;
/*login stuff on client side*/
std::string username_;
std::string password_;
};
class SpotifyConfig
{
private:
std::string username_;
std::string password_;
std::string cacheLocation_;
std::string settingsLocation_;
public:
SpotifyConfig();
const std::string& getCacheLocation() const;
const std::string& getPassword() const;
const std::string& getSettingsLocation() const;
const std::string& getUsername() const;
void setCacheLocation(std::string& cacheLocation);
void setPassword(std::string& password);
void setSettingsLocation(std::string& settingsLocation);
void setUsername(std::string& username);
};
class ConfigHandler
{
private:
SpotifyConfig spotifyConfig_;
NetworkConfig networkConfig_;
AudioEndpointConfig audioEndpointConfig_;
LoggerConfig loggerConfig_;
std::string configFilePath_;
void readFromFile(std::string& configString);
public:
ConfigHandler(const std::string& pathToConfigFile);
virtual ~ConfigHandler();
void parseConfigFile();
const AudioEndpointConfig& getAudioEndpointConfig() const;
const LoggerConfig& getLoggerConfig() const;
const NetworkConfig& getNetworkConfig() const;
const SpotifyConfig& getSpotifyConfig() const;
const std::string& getConfigFilePath() const;
};
} /* namespace ConfigHandling */
#endif /* CONFIGHANDLER_H_ */
|
642ffcaec1e7d561bd1fd8aed767766c9ccc9a95 | fd2e2583276fc0fe818750da2c939ce0ee6b91e1 | /year.cpp | 6ce4a005ec5b52b494d855ab01eefd8db3213e54 | [] | no_license | Hecrecerelle/hello-world | 052de172a7604be2e78e85425cec555b20dad2c5 | 93ad121422f40f7671065bed54813e9754d21afd | refs/heads/master | 2020-03-19T10:02:30.301132 | 2018-08-25T13:01:01 | 2018-08-25T13:01:01 | 124,056,158 | 0 | 0 | null | 2018-06-06T13:58:15 | 2018-03-06T09:42:56 | C++ | GB18030 | C++ | false | false | 271 | cpp | year.cpp | #include "year.h"
year::year(int y)//ๆ้ ๅฝๆฐ
{
x = y;
}
year::year(year &obj)//ๆท่ดๆ้ ๅฝๆฐ
{
x = obj.x;
}
void year::print(void)//ๅฎไนๆๅๅฝๆฐ
{
cout << x << endl;
}
year::~year()//ๅฎไนๆๆๅฝๆฐ
{
cout << "ๆๆ" << x << "ๅฏน่ฑก" << endl;
} |
c280a954547b185bf1daa9a2a4bd20498d07ec23 | fed98c76e41d51a24f262fa4c2ea17aea10539de | /src/zhanghong/src/00152_maximum_product_subarray/00152_maximum_product_subarray.cc | 340b082d9ca069f4f42ad59ca73daa4d215d86e5 | [] | no_license | generalibm/leetcode | 78c06c9cc8d3e164e3c87818a841e26c9a5009d5 | 3d7d18ae9fd50b457b7cb39b27568a2eafb856bc | refs/heads/master | 2021-06-24T11:24:11.572522 | 2019-11-13T12:34:44 | 2019-11-13T12:34:44 | 188,649,239 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,630 | cc | 00152_maximum_product_subarray.cc | #include "00152_maximum_product_subarray.h"
#include <iostream>
// Divide Conquer
//- Time: O(n^2)
//- Space: O(n)
//int Solution::maxProduct(const vector<int>& nums)
//{
// if (nums.empty())
// return 0;
// if (nums.size() == 1)
// return nums.front();
//
// int low = 0;
// int high = nums.size() - 1;
// int mid = (low + high) / 2;
//
// int max = nums[mid];
// if (max != 0)
// {
// int product;
// for (int i = mid; i <= high; i++)
// {
// product = 1;
// for (int j = i; j >= low; j--)
// {
// product *= nums[j];
// if (max < product)
// max = product;
// }
// }
// }
//
// vector<int> left(mid - low);
// for (int i = 0; i <= mid -1; i++)
// {
// left[i] = nums[i];
// }
// vector<int> right(high - mid);
// for (int i = 0, j = mid + 1; j <= high; i++, j++)
// {
// right[i] = nums[j];
// }
//
// return std::max(std::max(maxProduct(left), maxProduct(right)), max);
//}
int Solution::maxProduct(const vector<int>& nums)
{
if (nums.empty()) return 0;
if (nums.size() == 1) return nums.front();
int max = nums.front();
int min = nums.front();
int prefix = max;
for (int i = 1; i < nums.size(); i++)
{
if (nums[i] < 0)
swap(max, min);
max = std::max(nums[i], max*nums[i]);
min = std::min(nums[i], min*nums[i]);
prefix = std::max(prefix, max);
}
return prefix;
}
|
5f2ec1f077bd99f960427066585cb6314f765dd6 | 56b8b3eb6011e54c16b7211224b79f8daa33139a | /Algorithms/Tasks.0501.1000/0720.LongestWordInDictionary/solution.cpp | addb8156d6cdc519d885b7a9b5f7dd6de1f0e34e | [
"MIT"
] | permissive | stdstring/leetcode | 98aee82bc080705935d4ce01ff1d4c2f530a766c | 60000e9144b04a2341996419bee51ba53ad879e6 | refs/heads/master | 2023-08-16T16:19:09.269345 | 2023-08-16T05:31:46 | 2023-08-16T05:31:46 | 127,088,029 | 0 | 0 | MIT | 2023-02-25T08:46:17 | 2018-03-28T05:24:34 | C++ | UTF-8 | C++ | false | false | 2,727 | cpp | solution.cpp | #include <unordered_map>
#include <vector>
#include "gtest/gtest.h"
namespace
{
class Solution
{
public:
std::string longestWord(std::vector<std::string> const &words) const
{
constexpr size_t alphabetSize = 26;
constexpr size_t alphabetStart = 'a';
std::vector<std::vector<size_t>> trie(1, std::vector<size_t>(26, 0));
std::unordered_map<size_t, size_t> nodeWordMap;
// create trie
for (size_t index = 0; index < words.size(); ++index)
{
size_t currentNode = 0;
for (char ch : words[index])
{
if (trie[currentNode][ch - alphabetStart] == 0)
{
trie[currentNode][ch - alphabetStart] = trie.size();
trie.emplace_back(26, 0);
}
currentNode = trie[currentNode][ch - alphabetStart];
}
nodeWordMap.emplace(currentNode, index);
}
// find longest words
std::vector<size_t> currentCandidates;
std::vector<size_t> nextCandidates;
for (size_t charIndex = 0; charIndex < alphabetSize; ++charIndex)
{
if (nodeWordMap.count(trie[0][charIndex]) == 1)
nextCandidates.push_back(trie[0][charIndex]);
}
while (!nextCandidates.empty())
{
std::swap(currentCandidates, nextCandidates);
nextCandidates.clear();
for (size_t node : currentCandidates)
{
for (size_t charIndex = 0; charIndex < alphabetSize; ++charIndex)
{
if (nodeWordMap.count(trie[node][charIndex]) == 1)
nextCandidates.push_back(trie[node][charIndex]);
}
}
}
// find best word
if (currentCandidates.empty())
return "";
size_t bestWord = nodeWordMap[currentCandidates[0]];
for (size_t index = 1; index < currentCandidates.size(); ++index)
{
const size_t currentWord = nodeWordMap[currentCandidates[index]];
if (words[currentWord] < words[bestWord])
bestWord = currentWord;
}
return words[bestWord];
}
};
}
namespace LongestWordInDictionaryTask
{
TEST(LongestWordInDictionaryTaskTests, Examples)
{
const Solution solution;
ASSERT_EQ("world", solution.longestWord({"w", "wo", "wor", "worl", "world"}));
ASSERT_EQ("apple", solution.longestWord({"a", "banana", "app", "appl", "ap", "apply", "apple"}));
}
TEST(LongestWordInDictionaryTaskTests, FromWrongAnswers)
{
const Solution solution;
ASSERT_EQ("", solution.longestWord({"wo", "wor", "worl", "world"}));
}
} |
69a245ade0a94eacd5ba25153afa0dd1ff623ceb | a9106d639615044d63b872bf7538ef0b7127061b | /kriot247/Circle.h | fe71ae30480345c49671335e5c8167144184b1ba | [] | no_license | kwiatriot/Intro-OPP | efb9b9ea28ba41b4646c14617618215c8ebbf344 | b65a14c731d2905e87b0303b51131c6d619d1e3b | refs/heads/master | 2023-04-05T22:37:42.499679 | 2021-04-15T22:24:20 | 2021-04-15T22:24:20 | 354,145,069 | 1 | 0 | null | 2021-04-15T22:24:21 | 2021-04-02T22:13:27 | C++ | UTF-8 | C++ | false | false | 484 | h | Circle.h | #ifndef CIRCLE
#define CIRCLE
#include "BasicShape.h"
class Circle :
public BasicShape
{
private:
long centerX;
long centerY;
double radius;
public:
// Constructor
Circle(long x, long y, double r)
{
centerX = x;
centerY = y;
radius = r;
calcArea();
}
long getCenterX() { return centerX; }
long getCenterY() { return centerY; }
void calcArea() { area = 3.14159 * radius * radius; }
};
#endif // !CIRCLE
|
99fd346b913e19cb5c03a6f025dfd7abca3278d7 | 188fb8ded33ad7a2f52f69975006bb38917437ef | /Fluid/processor3/0.47/phi | 82f22fe3e83867424273faf61d74dd7ec1e7803a | [] | no_license | abarcaortega/Tuto_2 | 34a4721f14725c20471ff2dc8d22b52638b8a2b3 | 4a84c22efbb9cd2eaeda92883343b6910e0941e2 | refs/heads/master | 2020-08-05T16:11:57.674940 | 2019-10-04T09:56:09 | 2019-10-04T09:56:09 | 212,573,883 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,918 | phi | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class surfaceScalarField;
location "0.47";
object phi;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 3 -1 0 0 0 0];
internalField nonuniform List<scalar>
881
(
0.199167
0.000820988
0.197829
0.00132646
0.19595
0.00186736
0.193515
0.00242313
0.190545
0.00296041
0.187055
0.00348073
0.183051
0.00399534
0.178531
0.00451322
0.173484
0.00504031
0.167898
0.00558077
0.161757
0.00613746
0.155043
0.00671168
0.147738
0.00730306
0.139828
0.0079093
0.131304
0.00852345
0.122166
0.00913804
0.112425
0.00974255
0.102107
0.0103189
0.0912638
0.0108453
0.0799701
0.0112954
0.0116378
0.200828
-1.86042e-05
0.200735
0.00140704
0.199997
0.00259399
0.198669
0.00373994
0.196768
0.00485043
0.194309
0.00593022
0.191298
0.00699837
0.187732
0.00807226
0.183602
0.00916425
0.178894
0.0102834
0.173592
0.0114361
0.167675
0.0126257
0.161124
0.0138521
0.153919
0.0151127
0.146051
0.0163919
0.137513
0.0176764
0.128309
0.0189477
0.118461
0.0201679
0.108016
0.0212927
0.0970435
0.0222693
0.0230342
0.200671
-0.00070152
0.200634
0.0014319
0.19996
0.00325655
0.198728
0.00496064
0.196965
0.00660252
0.194686
0.00820002
0.191898
0.00977801
0.188602
0.0113606
0.184794
0.0129663
0.180463
0.0146094
0.175595
0.0163001
0.170173
0.018045
0.164177
0.0198456
0.157589
0.0216996
0.15039
0.0235911
0.142566
0.0255008
0.134115
0.0274
0.125045
0.0292396
0.11538
0.0309587
0.105169
0.0324827
0.0337214
0.200586
-0.00129967
0.200553
0.00145234
0.199902
0.00389614
0.198699
0.00615147
0.196981
0.00831073
0.194761
0.0104096
0.192052
0.0124791
0.188856
0.0145485
0.185175
0.0166416
0.181002
0.0187768
0.17633
0.0209681
0.171147
0.0232252
0.165439
0.025552
0.159193
0.0279445
0.152388
0.0303957
0.14501
0.0328791
0.137059
0.035352
0.128535
0.037765
0.119447
0.0400483
0.10982
0.0421123
0.0438485
0.200545
-0.00185647
0.200506
0.00147807
0.199876
0.00451417
0.198705
0.00731031
0.19703
0.00997503
0.194869
0.0125613
0.192232
0.0151078
0.189124
0.0176485
0.185547
0.0202118
0.181499
0.02282
0.176973
0.0254902
0.17196
0.0282348
0.16645
0.0310597
0.160432
0.0339617
0.153892
0.0369354
0.146819
0.0399526
0.139206
0.042967
0.131045
0.0459271
0.122337
0.0487582
0.113089
0.0513625
0.0536197
0.200521
-0.00238961
0.200478
0.00150837
0.199869
0.00511008
0.198736
0.00843142
0.197112
0.0115877
0.195018
0.0146461
0.192463
0.0176537
0.189454
0.0206494
0.185994
0.0236657
0.18208
0.0267289
0.177706
0.0298593
0.172867
0.0330714
0.167551
0.0363734
0.161747
0.0397649
0.155444
0.0432379
0.148631
0.0467668
0.141289
0.0503098
0.133406
0.0538119
0.12497
0.0571963
0.115973
0.0603615
0.0631796
0.200505
-0.00290751
0.200462
0.00153857
0.199878
0.00568122
0.198789
0.00950848
0.197226
0.0131396
0.195209
0.0166526
0.192751
0.020103
0.189858
0.0235348
0.186532
0.0269848
0.182773
0.0304828
0.178575
0.0340524
0.173933
0.037711
0.168835
0.0414692
0.163269
0.0453298
0.15722
0.0492867
0.15067
0.053318
0.143596
0.0573855
0.135973
0.061436
0.127777
0.0653947
0.118981
0.0691595
0.0725981
0.200495
-0.00341592
0.200458
0.00156267
0.199903
0.00622324
0.198864
0.0105351
0.19737
0.0146217
0.195443
0.0185697
0.193095
0.0224423
0.190332
0.0262891
0.18716
0.0301507
0.183576
0.0340607
0.179578
0.0380461
0.175159
0.0421276
0.170307
0.0463189
0.16501
0.0506263
0.159246
0.0550501
0.152992
0.0595729
0.146219
0.0641607
0.138889
0.0687677
0.13096
0.0733256
0.122385
0.0777373
0.0818707
0.200488
-0.00391777
0.200461
0.00157593
0.199939
0.00673178
0.198956
0.0115055
0.19754
0.0160262
0.195712
0.0203874
0.193486
0.0246599
0.190868
0.0288982
0.187865
0.0331471
0.184477
0.0374438
0.1807
0.0418189
0.176528
0.0462963
0.171951
0.0508938
0.166956
0.0556205
0.161518
0.0604884
0.155606
0.0654857
0.149187
0.0705815
0.142213
0.0757441
0.134623
0.0809183
0.126343
0.086019
0.090923
0.200483
-0.00441467
0.20047
0.00157456
0.199986
0.00720256
0.199064
0.0124144
0.197733
0.0173457
0.196013
0.0220969
0.193918
0.0267449
0.191459
0.0313495
0.18864
0.0359592
0.185463
0.0406148
0.181927
0.0453506
0.178026
0.0501945
0.173749
0.0551685
0.169081
0.060288
0.164002
0.0655683
0.158483
0.0710055
0.152483
0.0765834
0.145944
0.0822849
0.138793
0.0880724
0.130932
0.0938825
0.0996124
0.200477
-0.00490618
0.20048
0.00155687
0.200036
0.00763287
0.199179
0.0132579
0.197938
0.0185752
0.196333
0.0236914
0.194379
0.0286891
0.192087
0.033633
0.189464
0.0385753
0.186513
0.0435601
0.183234
0.0486253
0.179622
0.0538032
0.175669
0.0591202
0.171356
0.0646006
0.166673
0.0702516
0.161598
0.0760813
0.156083
0.0821003
0.150069
0.0883016
0.143475
0.0946692
0.136189
0.101171
0.107744
0.200469
-0.00538975
0.200487
0.0015234
0.200084
0.00802185
0.199294
0.014034
0.198146
0.0197113
0.19666
0.0251662
0.194853
0.0304867
0.192736
0.0357418
0.190317
0.0409872
0.187602
0.04627
0.184592
0.0516311
0.181286
0.0571061
0.177678
0.0627256
0.173761
0.0685175
0.169521
0.0744924
0.164934
0.0806692
0.159965
0.0870724
0.15456
0.093709
0.148647
0.100586
0.142115
0.107706
0.115061
0.200459
-0.00586429
0.200494
0.00147303
0.200134
0.00836699
0.199415
0.0147392
0.198365
0.0207493
0.197005
0.0265154
0.195351
0.0321305
0.193417
0.0376674
0.191212
0.043185
0.188744
0.0487328
0.186017
0.0543541
0.183033
0.060087
0.179792
0.0659647
0.176293
0.0720162
0.172523
0.0782633
0.168463
0.0847309
0.164092
0.0914455
0.159375
0.0984285
0.15426
0.105704
0.148669
0.1133
0.121252
0.20045
-0.00633069
0.200504
0.00140288
0.200192
0.00866438
0.199549
0.0153688
0.198602
0.0216835
0.197374
0.0277323
0.195882
0.0336125
0.19414
0.0394006
0.19216
0.0451579
0.189951
0.0509361
0.187521
0.0567802
0.184875
0.0627299
0.182018
0.0688204
0.178951
0.0750825
0.175672
0.0815432
0.172175
0.0882298
0.168452
0.0951706
0.164491
0.102393
0.16027
0.109928
0.155761
0.117813
0.126094
0.200449
0.20053
0.200272
0.00890672
0.199712
0.0159149
0.198877
0.0225062
0.197789
0.0288089
0.196467
0.0349247
0.194926
0.040933
0.193179
0.0468973
0.191239
0.0528708
0.189115
0.0588997
0.186817
0.065025
0.184353
0.0712826
0.181731
0.0777045
0.178956
0.0843192
0.176033
0.0911544
0.172969
0.0982376
0.169769
0.105596
0.16644
0.113261
0.162992
0.121265
0.129649
0.207979
0.207474
0.0164057
0.206714
0.0232523
0.205724
0.0297879
0.204521
0.0361169
0.203124
0.0423215
0.201547
0.0484668
0.199805
0.0546072
0.19791
0.0607899
0.195876
0.0670563
0.193714
0.0734429
0.191437
0.079982
0.189055
0.0867024
0.18658
0.093631
0.184027
0.100794
0.18141
0.108217
0.178746
0.115928
0.176056
0.12396
0.132349
0.212644
0.211986
0.0238967
0.211124
0.0306377
0.210078
0.0371526
0.208865
0.0435245
0.207505
0.0498203
0.206011
0.0560949
0.2044
0.0623961
0.202688
0.0687654
0.20089
0.0752394
0.199022
0.08185
0.1971
0.0886256
0.195141
0.0955924
0.193163
0.102775
0.191185
0.110199
0.189227
0.117891
0.187306
0.125885
0.134229
0.21738
0.216653
0.0313513
0.215774
0.0380213
0.214759
0.0445299
0.213628
0.0509436
0.212399
0.0573181
0.211089
0.063701
0.209718
0.0701336
0.208304
0.0766518
0.206867
0.083287
0.205427
0.0900667
0.204006
0.0970157
0.202627
0.104158
0.201312
0.111518
0.200083
0.119123
0.198961
0.127012
0.13524
0.222333
0.221631
0.0387123
0.220827
0.0453241
0.219941
0.0518218
0.218992
0.0582604
0.218001
0.0646874
0.216988
0.0711429
0.215976
0.0776619
0.214988
0.0842747
0.214049
0.0910074
0.213183
0.0978835
0.212419
0.104925
0.211784
0.112157
0.211306
0.119605
0.211013
0.12731
0.135325
0.227648
0.227065
0.0458966
0.226436
0.0524422
0.225782
0.0589082
0.225123
0.0653411
0.224484
0.0717789
0.223888
0.0782557
0.223362
0.0847999
0.222935
0.091436
0.222634
0.0981857
0.222493
0.105069
0.222545
0.112109
0.222824
0.11933
0.223372
0.126767
0.134467
0.233471
0.233108
0.232757
0.0592521
0.232441
0.0656516
0.232184
0.0720319
0.232014
0.0784242
0.231957
0.0848554
0.232046
0.0913478
0.232313
0.0979207
0.232793
0.104592
0.233526
0.11138
0.234554
0.118305
0.235928
0.125396
0.132687
0.239906
0.239937
0.0656145
0.240068
0.0718972
0.240325
0.0781645
0.240738
0.0844408
0.241341
0.0907454
0.242168
0.0970951
0.243257
0.103504
0.244653
0.109987
0.246404
0.116558
0.248569
0.123235
0.130039
0.247596
0.248112
0.248793
0.0774807
0.249669
0.0835624
0.250775
0.0896393
0.252146
0.0957247
0.253823
0.101829
0.255852
0.10796
0.258285
0.114128
0.261183
0.120339
0.126601
0.257391
0.258716
0.260306
0.0880482
0.262197
0.0938335
0.26443
0.0995969
0.26705
0.105342
0.27011
0.111069
0.273671
0.11678
0.122468
0.269893
0.272272
0.0914543
0.275019
0.0968493
0.27818
0.102182
0.281803
0.107447
0.285945
0.112638
0.117741
0.282325
0.28554
0.289183
0.0985386
0.293298
0.103332
0.297936
0.108
0.112526
0.300013
0.304547
0.309593
0.102953
0.106922
0.320885
)
;
boundaryField
{
inlet
{
type calculated;
value nonuniform List<scalar>
15
(
-0.2
-0.2
-0.2
-0.2
-0.2
-0.2
-0.2
-0.2
-0.2
-0.2
-0.2
-0.2
-0.2
-0.2
-0.2
)
;
}
outlet
{
type calculated;
value nonuniform 0();
}
flap
{
type calculated;
value nonuniform 0();
}
upperWall
{
type calculated;
value nonuniform 0();
}
lowerWall
{
type calculated;
value uniform 0;
}
frontAndBack
{
type empty;
value nonuniform 0();
}
procBoundary3to0
{
type processor;
value nonuniform List<scalar>
34
(
-0.00679626
0.00130549
-0.208203
0.00911427
-0.213075
0.0168216
-0.217932
0.0244349
-0.222914
0.03192
-0.228163
0.0392166
-0.233822
0.0462387
0.0527965
-0.239948
0.0592869
-0.247216
0.0652285
0.0713768
-0.256296
0.0763822
0.0822348
-0.267844
0.0859979
-0.279497
0.0886248
0.0936335
-0.295949
0.0944738
0.0987968
-0.315513
0.0975795
0.101024
)
;
}
procBoundary3to1
{
type processor;
value nonuniform List<scalar> 9(0.224234 0.237712 0.25122 0.264624 0.277807 0.290673 0.303152 0.315197 0.326782);
}
procBoundary3to4
{
type processor;
value nonuniform List<scalar>
19
(
0.0683341
0.0856487
0.0944833
0.0996945
0.103319
0.106415
0.109565
0.113115
0.117294
0.122246
0.128061
0.134802
0.142481
0.150923
0.15944
0.17336
0.185431
0.197955
0.210932
)
;
}
}
// ************************************************************************* //
| |
14ed8211fe41b34fbc94b0fe505c70cd20eb04dd | a33c767141d8a5ab4452a6ae9c556f60329b576d | /src/Module/Channel/Binary_symmetric/Channel_binary_symmetric.hpp | 0a9380e4e9b016a735019982a9dadfec43d1148e | [
"MIT"
] | permissive | sqf-ice/aff3ct | 6d885bceb43ab88f61c27b2ccf4e04458b800269 | fcd41ffd04238e314b48ec5d391265e1407975a8 | refs/heads/master | 2020-04-22T13:21:11.568787 | 2019-01-18T14:47:37 | 2019-01-18T14:52:32 | 170,405,919 | 0 | 1 | MIT | 2019-02-12T23:13:05 | 2019-02-12T23:13:05 | null | UTF-8 | C++ | false | false | 1,086 | hpp | Channel_binary_symmetric.hpp | #ifndef CHANNEL_BSC_HPP_
#define CHANNEL_BSC_HPP_
#include <vector>
#include <mipp.h>
#include <random>
#include "Tools/Algo/Draw_generator/Event_generator/Event_generator.hpp"
#include "../Channel.hpp"
namespace aff3ct
{
namespace module
{
template <typename R = float>
class Channel_binary_symmetric : public Channel<R>
{
protected:
std::unique_ptr<tools::Event_generator<R>> event_generator;
using E = typename tools::matching_types<R>::B; //Event type
public:
Channel_binary_symmetric(const int N, std::unique_ptr<tools::Event_generator<R>>&& event_generator,
const tools::Event_probability<R>& noise = tools::Event_probability<R>(),
const int n_frames = 1);
explicit Channel_binary_symmetric(const int N, const int seed = 0,
const tools::Event_probability<R>& noise = tools::Event_probability<R>(),
const int n_frames = 1);
virtual ~Channel_binary_symmetric() = default;
protected:
void _add_noise(const R *X_N, R *Y_N, const int frame_id = -1);
virtual void check_noise();
};
}
}
#endif /* CHANNEL_BSC_HPP_ */
|
88c1531c1ba87832502afcd47930a2b671b3280a | 9dae6ce6aded3b65ee19ef835f4bfad5401dbc82 | /NoteEditor/DurationButton.cpp | 072871c0d684772c2085f9d8a8101d186fe5cd9e | [] | no_license | Cvelth/university_note_editor_project | efdc227b182394fe05fd424c81c3b4b3c1457848 | d2561abb961915aa0afb81233a1735c327fa5e13 | refs/heads/master | 2021-06-16T18:05:01.578413 | 2017-05-26T06:05:43 | 2017-05-26T06:05:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 367 | cpp | DurationButton.cpp | #include "durationButton.hpp"
void DurationButton::clickSlot(bool) {
emit clickedSignal(m_duration);
}
DurationButton::DurationButton(size_t duration) {
m_duration = duration;
setText(QString::number(duration));
setCheckable(true);
connect(this, &QPushButton::clicked, this, &DurationButton::clickSlot);
}
size_t DurationButton::get() {
return m_duration;
}
|
ff75cfe79051fab77fa899c8d737fbd1cb0acf97 | f8bef1a91749d5ff5a5a08f79a3a489486e54b38 | /SharedCode/RemoveCommand.h | 21ecbb8c0b021c8a777f306af1da0fc377175004 | [] | no_license | quinnwai/file-system | 7360ae36e5015a0608998ec9779c192e6aee6ad0 | b03a7fc73d10a8cf559829a87f8c58d914232097 | refs/heads/main | 2023-07-06T21:11:33.690184 | 2021-08-09T12:46:38 | 2021-08-09T12:46:38 | 331,070,514 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 524 | h | RemoveCommand.h | /*RemoveCommand.h
Author: Quinn Wai Wong, Will LeVan
Email: qwong@wustl.edu, levanw@wustl.edu
Purpose: Concrete class declaration inheriting from AbstractCommand. Enables a user to remove files from the system.
*/
#pragma once
#include "AbstractCommand.h"
#include "AbstractFileSystem.h"
#include <string>
class RemoveCommand : public AbstractCommand {
private:
AbstractFileSystem* afs;
public:
RemoveCommand(AbstractFileSystem*);
virtual int execute(std::string str) override;
virtual void displayInfo() override;
};
|
bc4dc0714597d625a963d64feab96a48def7e88f | 15b84964763f0e88f114812aa3ee654263a59025 | /HeadFirstDesignPatterns/Factory/AbstractPizzaTestDrive/NYPizzaStore.h | f94be067ee30c487ba6de19f07c68293dc01a586 | [] | no_license | RussDHill/hfdp-cpp | a0524248fcf90dba06ff4e106ac315f9080b5826 | 2459c3e4564531184123256049d9b5515ce451a9 | refs/heads/master | 2021-01-10T15:29:07.353612 | 2020-08-29T13:02:43 | 2020-08-29T13:02:43 | 46,441,962 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 302 | h | NYPizzaStore.h | #pragma once
#include "PizzaStore.h"
class PizzaIngredientFactory;
class NYPizzaStore : public PizzaStore
{
public:
NYPizzaStore();
virtual ~NYPizzaStore();
protected:
virtual shared_ptr<Pizza> createPizza(const string& item);
private:
shared_ptr<PizzaIngredientFactory> ingredientFactory;
};
|
1dc8b8e9bb9860c977546952344eff6d7918424d | 795260ef3542098c6ffd7b7f0908e77c249af0f6 | /380.Insert Delete GetRandom O1.c++ | 9cedaf400016bed65a9a2feb9f714c4243875d0d | [] | no_license | gillianczj/leetcode | f6819473ddf6ad8fb9d94f96194b47d2a27fbbb1 | c93590cf4e0220d39185d68c9d055f721d7f14e9 | refs/heads/master | 2021-01-19T02:34:58.037260 | 2017-01-19T04:17:11 | 2017-01-19T04:17:11 | 52,185,426 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 631 | 380.Insert Delete GetRandom O1.c++ | class RandomizedSet {
public:
RandomizedSet(){}
bool insert(int val) {
if(mp.count(val)) {
return false;
}
nums.push_back(val);
mp[val] = nums.size() - 1;
return true;
}
bool remove(int val) {
if(!mp.count(val)) {
return false;
}
int back = nums.back();
mp[back] = mp[val];
nums[mp[val]] = back;
nums.pop_back();
mp.erase(val);
return true;
}
int getRandom() {
return nums[rand() % nums.size()];
}
private:
unordered_map<int, int> mp;
vector<int> nums;
};
| |
f5c879abfb49f3f459c19a57d60a3233838fc310 | 1e2b8c2bd42d7e18005eb44e1b54fd08c53b0ab9 | /integration-tests.cpp | a1037d98f7779d4330e32d64b5ab119fe2e605c1 | [
"BSD-3-Clause"
] | permissive | measurement-kit/mkorchestra | f3c98bc8cff8a8305948dd4f26197b106d53e6b2 | 224c62580cbd09273af9948e5c6f20b236e28f28 | refs/heads/master | 2020-04-03T21:17:18.317613 | 2019-08-28T10:34:07 | 2019-08-28T10:34:07 | 155,569,616 | 0 | 0 | BSD-3-Clause | 2019-04-26T15:17:29 | 2018-10-31T14:18:59 | C++ | UTF-8 | C++ | false | false | 9,810 | cpp | integration-tests.cpp | #include "mkorchestra.h"
#include <iostream>
#define MKCURL_INLINE_IMPL
#include "mkcurl.hpp"
#define CATCH_CONFIG_MAIN
#include "catch.hpp"
static mkorchestra_metadata_uptr get_metadata() {
mkorchestra_metadata_uptr metadata{mkorchestra_metadata_new_nonnull()};
mkorchestra_metadata_set_available_bandwidth(metadata.get(), "128");
mkorchestra_metadata_set_language(metadata.get(), "it_IT");
mkorchestra_metadata_set_network_type(metadata.get(), "wifi");
mkorchestra_metadata_set_platform(metadata.get(), "macos");
mkorchestra_metadata_set_probe_asn(metadata.get(), "AS30722");
mkorchestra_metadata_set_probe_cc(metadata.get(), "IT");
mkorchestra_metadata_set_software_name(metadata.get(), "mkorchestra");
mkorchestra_metadata_set_software_version(metadata.get(), "0.1.0");
mkorchestra_metadata_add_supported_test(metadata.get(), "ndt");
return metadata;
}
static std::string get_password() { return "fidodido"; }
static std::string register_baseurl() {
return "https://registry.proteus.test.ooni.io";
}
static std::string register_probe() {
mkorchestra_register_request_uptr r{
mkorchestra_register_request_new_nonnull()};
mkorchestra_register_request_set_password(r.get(), get_password().c_str());
mkorchestra_register_request_set_metadata(r.get(), get_metadata().get());
mkorchestra_register_request_set_base_url(
r.get(), register_baseurl().c_str());
mkorchestra_register_request_set_ca_bundle_path(
r.get(), ".mkbuild/data/cacert.pem");
mkorchestra_register_request_set_timeout(r.get(), 14);
mkorchestra_register_response_uptr re{
mkorchestra_register_request_perform_nonnull(r.get())};
{
std::string logs = mkorchestra_register_response_moveout_logs(re);
REQUIRE(logs.size() > 0);
std::clog << "=== BEGIN REGISTER LOGS ===" << std::endl;
std::clog << logs;
std::clog << "=== END REGISTER LOGS ===" << std::endl;
}
REQUIRE(mkorchestra_register_response_good(re.get()));
std::string client_id;
{
client_id = mkorchestra_register_response_get_client_id(re.get());
REQUIRE(client_id.size() > 0);
std::clog << client_id << std::endl;
}
return client_id;
}
TEST_CASE("We can register a new probe") {
(void)register_probe();
}
static std::string login(std::string client_id) {
mkorchestra_login_request_uptr r{mkorchestra_login_request_new_nonnull()};
mkorchestra_login_request_set_username(r.get(), client_id.c_str());
mkorchestra_login_request_set_password(r.get(), get_password().c_str());
mkorchestra_login_request_set_base_url(r.get(), register_baseurl().c_str());
mkorchestra_login_request_set_ca_bundle_path(r.get(), ".mkbuild/data/cacert.pem");
mkorchestra_login_request_set_timeout(r.get(), 14);
mkorchestra_login_response_uptr re{
mkorchestra_login_request_perform_nonnull(r.get())};
{
std::string logs = mkorchestra_login_response_moveout_logs(re);
REQUIRE(logs.size() > 0);
std::clog << "=== BEGIN LOGIN LOGS ===" << std::endl;
std::clog << logs;
std::clog << "=== END LOGIN LOGS ===" << std::endl;
}
REQUIRE(mkorchestra_login_response_good(re.get()));
std::string token;
{
token = mkorchestra_login_response_get_token(re.get());
REQUIRE(token.size() > 0);
std::clog << token << std::endl;
}
{
std::string expire = mkorchestra_login_response_get_expire(re.get());
REQUIRE(expire.size() > 0);
std::clog << expire << std::endl;
}
return token;
}
TEST_CASE("We can successfully login") {
(void)login(register_probe());
}
TEST_CASE("We can successfully update") {
std::string client_id = register_probe();
std::string token = login(client_id);
mkorchestra_update_request_uptr r{
mkorchestra_update_request_new_nonnull()};
mkorchestra_update_request_set_client_id(r.get(), client_id.c_str());
mkorchestra_update_request_set_token(r.get(), token.c_str());
mkorchestra_update_request_set_metadata(r.get(), get_metadata().get());
mkorchestra_update_request_set_base_url(
r.get(), register_baseurl().c_str());
mkorchestra_update_request_set_ca_bundle_path(
r.get(), ".mkbuild/data/cacert.pem");
mkorchestra_update_request_set_timeout(r.get(), 14);
mkorchestra_update_response_uptr re{
mkorchestra_update_request_perform_nonnull(r.get())};
{
std::string logs = mkorchestra_update_response_moveout_logs(re);
REQUIRE(logs.size() > 0);
std::clog << "=== BEGIN UPDATE LOGS ===" << std::endl;
std::clog << logs;
std::clog << "=== END UPDATE LOGS ===" << std::endl;
}
REQUIRE(mkorchestra_update_response_good(re.get()));
}
static std::string events_baseurl() {
return "https://events.proteus.test.ooni.io";
}
TEST_CASE("We can get the available collectors") {
mkorchestra_collectors_request_uptr r{
mkorchestra_collectors_request_new_nonnull()};
mkorchestra_collectors_request_set_base_url(
r.get(), events_baseurl().c_str());
mkorchestra_collectors_request_set_ca_bundle_path(
r.get(), ".mkbuild/data/cacert.pem");
mkorchestra_collectors_request_set_timeout(r.get(), 14);
mkorchestra_collectors_response_uptr re{
mkorchestra_collectors_request_perform_nonnull(r.get())};
{
std::string logs = mkorchestra_collectors_response_moveout_logs(re);
REQUIRE(logs.size() > 0);
std::clog << "=== BEGIN COLLECTORS LOGS ===" << std::endl;
std::clog << logs;
std::clog << "=== END COLLECTORS LOGS ===" << std::endl;
}
REQUIRE(mkorchestra_collectors_response_good(re.get()));
size_t n = mkorchestra_collectors_response_get_collectors_size(re.get());
REQUIRE(n > 0);
for (size_t i = 0; i < n; ++i) {
mkorchestra_collector_uptr c;
c.reset(mkorchestra_collectors_response_get_collector_at(re.get(), i));
std::clog << "type: "
<< mkorchestra_collector_get_type(c.get())
<< " address: "
<< mkorchestra_collector_get_address(c.get())
<< std::endl;
}
}
TEST_CASE("We can get the available test-helpers") {
mkorchestra_testhelpers_request_uptr r{
mkorchestra_testhelpers_request_new_nonnull()};
mkorchestra_testhelpers_request_set_base_url(
r.get(), events_baseurl().c_str());
mkorchestra_testhelpers_request_set_ca_bundle_path(
r.get(), ".mkbuild/data/cacert.pem");
mkorchestra_testhelpers_request_set_timeout(r.get(), 14);
mkorchestra_testhelpers_response_uptr re{
mkorchestra_testhelpers_request_perform_nonnull(r.get())};
{
std::string logs = mkorchestra_testhelpers_response_moveout_logs(re);
REQUIRE(logs.size() > 0);
std::clog << "=== BEGIN TESTHELPERS LOGS ===" << std::endl;
std::clog << logs;
std::clog << "=== END TESTHELPERS LOGS ===" << std::endl;
}
REQUIRE(mkorchestra_testhelpers_response_good(re.get()));
size_t n = mkorchestra_testhelpers_response_get_testhelpers_size(re.get());
REQUIRE(n > 0);
for (size_t i = 0; i < n; ++i) {
mkorchestra_testhelper_uptr th;
th.reset(mkorchestra_testhelpers_response_get_testhelper_at(re.get(), i));
std::clog << "- name: "
<< mkorchestra_testhelper_get_name(th.get())
<< " type: "
<< mkorchestra_testhelper_get_type(th.get())
<< " address: "
<< mkorchestra_testhelper_get_address(th.get())
<< std::endl;
}
}
static void get_urls(std::string country_code,
std::vector<std::string> category_codes,
int64_t limit) {
mkorchestra_urls_request_uptr r{mkorchestra_urls_request_new_nonnull()};
mkorchestra_urls_request_set_base_url(r.get(), events_baseurl().c_str());
mkorchestra_urls_request_set_ca_bundle_path(r.get(), ".mkbuild/data/cacert.pem");
mkorchestra_urls_request_set_timeout(r.get(), 14);
if (!country_code.empty()) {
mkorchestra_urls_request_set_country_code(r.get(), country_code.c_str());
}
for (auto &s : category_codes) {
mkorchestra_urls_request_add_category_code(r.get(), s.c_str());
}
if (limit > 0) mkorchestra_urls_request_set_limit(r.get(), limit);
mkorchestra_urls_response_uptr re{
mkorchestra_urls_request_perform_nonnull(r.get())};
{
std::string logs = mkorchestra_urls_response_moveout_logs(re);
REQUIRE(logs.size() > 0);
std::clog << "=== BEGIN URLS LOGS ===" << std::endl;
std::clog << logs;
std::clog << "=== END URLS LOGS ===" << std::endl;
}
REQUIRE(mkorchestra_urls_response_good(re.get()));
std::clog << "metadata.count: "
<< mkorchestra_urls_response_get_metadata_count(re.get())
<< std::endl;
std::clog << "metadata.current_page: "
<< mkorchestra_urls_response_get_metadata_current_page(re.get())
<< std::endl;
std::clog << "metadata.limit: "
<< mkorchestra_urls_response_get_metadata_limit(re.get())
<< std::endl;
std::clog << "metadata.next_url: "
<< mkorchestra_urls_response_get_metadata_next_url(re.get())
<< std::endl;
std::clog << "metadata.pages: "
<< mkorchestra_urls_response_get_metadata_pages(re.get())
<< std::endl;
size_t n = mkorchestra_urls_response_get_results_size(re.get());
REQUIRE(n > 0);
for (size_t i = 0; i < n; ++i) {
std::clog << "- category_code: "
<< mkorchestra_urls_response_get_result_category_code_at(
re.get(), i)
<< " country_code: "
<< mkorchestra_urls_response_get_result_country_code_at(
re.get(), i)
<< " url: "
<< mkorchestra_urls_response_get_result_url_at(
re.get(), i)
<< std::endl;
}
}
TEST_CASE("We can get the URLs without query string params") {
get_urls("", {}, -1);
}
TEST_CASE("We can get the URLs with query string params") {
get_urls("IT", {"POLR", "HUMR"}, 7);
}
|
fdd41b114cf657aea763d69d9a28891e9ea4af75 | 62633d66b9bdc23760c3e849dcb565d46b93a3d1 | /wifi.ino | 449fb203ea55b906c5604f5124b689be12cf9cf0 | [] | no_license | hmation/wledimir | 4d13e31a31355cfea577e822c4d42765fc8df941 | 300ff898393b41ca287275f85ce0f16f2af27bf1 | refs/heads/master | 2020-05-24T23:50:44.686415 | 2019-11-14T07:29:48 | 2019-11-14T07:29:48 | 187,521,965 | 0 | 0 | null | 2019-11-13T13:02:33 | 2019-05-19T19:57:33 | C++ | UTF-8 | C++ | false | false | 220 | ino | wifi.ino | #include <ESP8266WiFi.h>
#include <ESP8266mDNS.h>
#include <DNSServer.h>
#include <WiFiManager.h> // https://github.com/tzapu/WiFiManager
void setupWiFi()
{
WiFiManager wifiManager;
wifiManager.autoConnect();
}
|
e67a1181fb4ca0b1bfe41fb77106e4672d886474 | 618e55cef1a98ae8f9f80dd4078df1668a312bb6 | /Engine/Source/Core/Intersectable/Query/PrimitivePosSampleQuery.h | 7c58aaa04033b197cbeefdd939c5b6aa667a6ac0 | [
"MIT"
] | permissive | TzuChieh/Photon-v2 | 8eb54ee9f3ae51bb241896a2fc62d10b553eaab9 | 498724a7ae4f42884499ee13e548013b2799ea7f | refs/heads/master | 2023-08-31T22:43:30.667848 | 2023-08-23T09:43:14 | 2023-08-23T09:43:14 | 70,727,398 | 93 | 8 | MIT | 2019-03-04T12:18:54 | 2016-10-12T18:07:46 | C++ | UTF-8 | C++ | false | false | 1,052 | h | PrimitivePosSampleQuery.h | #pragma once
#include "Common/primitive_type.h"
#include "Common/assertion.h"
#include "Math/TVector3.h"
#include <cstddef>
namespace ph
{
class PrimitivePosSampleInput final
{};
class PrimitivePosSampleOutput final
{
public:
math::Vector3R position;
math::Vector3R normal;
math::Vector3R uvw;
std::size_t faceId;
real pdfA;
PrimitivePosSampleOutput();
operator bool () const;
};
class PrimitivePosSampleQuery final
{
public:
using Input = PrimitivePosSampleInput;
using Output = PrimitivePosSampleOutput;
Input in;
Output out;
PrimitivePosSampleQuery();
void setInvalidOutput();
};
// In-header Implementations:
inline PrimitivePosSampleOutput::operator bool () const
{
PH_ASSERT_IN_RANGE(normal.length(), 0.9_r, 1.1_r);
return pdfA > 0;
}
inline PrimitivePosSampleQuery::PrimitivePosSampleQuery() :
in(), out()
{}
inline void PrimitivePosSampleQuery::setInvalidOutput()
{
// Must cuase `PrimitivePosSampleOutput::operator bool ()` method to evaluate to `false`
out.pdfA = 0.0_r;
}
}// end namespace ph
|
504286fabf81c597b0cce71baa3d968db764e1a3 | 48c43b9a78d0c40678d7375d5b739c8aa7ea4d7c | /ESP8266 Arduino Sketches/tiny_door_and_window_sensor_-_ifttt/tiny_door_and_window_sensor_-_ifttt.ino | 63879530a46accbb9fb0a61c9ac8b8fac15f7b6b | [] | no_license | MuadDib007/ESP8266-Tiny-Door-and-Window-Sensor | 4ff5e09fdc9151f498fceb39f900df0a32ac7ef4 | 810b76a0cacffbd069a60c3f0e328fdf221c6765 | refs/heads/master | 2020-03-08T15:27:40.931605 | 2018-04-27T18:51:55 | 2018-04-27T18:51:55 | 128,212,515 | 1 | 0 | null | 2018-04-05T13:46:49 | 2018-04-05T13:46:48 | null | UTF-8 | C++ | false | false | 6,700 | ino | tiny_door_and_window_sensor_-_ifttt.ino | /*
Tiny door and window sensor v0.3
IFTTT example
TODO: Add description
Resources:
IFTTT API:
https://ifttt.com/maker
ESP8266 Arduino core docoumentation:
https://github.com/esp8266/Arduino/tree/master/doc
https://github.com/esp8266/Arduino/blob/master/doc/libraries.md
Espressif FAQ -> Fast wifi connection after power down:
http://espressif.com/sites/default/files/documentation/espressif_faq_en.pdf
Reading/Writing a long from/to the EEPROM:
http://playground.arduino.cc/Code/EEPROMReadWriteLong
Converting the wifi signal strength from dbm to %
http://stackoverflow.com/questions/15797920/how-to-convert-wifi-signal-strength-from-quality-percent-to-rssi-dbm
*/
#include <ESP8266WiFi.h>
#include <EEPROM.h>
extern "C" {
#include "user_interface.h" // needed for wifi_get_channel()
}
const char* ssid = "ssid";
const char* password = "password";
const char* ifttt_api_key = "ifttt_api_key";
//
const char* ifttt_event_switch_open = "door_opened_event";
const char* ifttt_event_switch_closed = "door_closed_event";
#define USE_STATIC_IP true
IPAddress staticIP (192, 168, 1, 23);
IPAddress gateway (192, 168, 1, 1);
IPAddress subnet (255, 255, 255, 0);
#define SWITCH_PIN 4 // GPIO4
#define SHUTDOWN_PIN 5 // GPIO5
#define ACT_LED_PIN 2 // GPIO2 - blue on-board led (active low)
#define R1 4700
#define R2 1000
#define VREF 1.0
#define SEND_RETRIES 3
#define EEPROM_SIZE 5 // bytes
#define WIFI_CHANNEL_ADDRESS 0 // 1 byte
#define UPTIME_COUNTER_ADDRESS 1 // 4 bytes
const char* ifttt_event;
String query_string;
void vreg_shutdown(int blink_count = 0) {
for (int i = 0; i < blink_count; i++) {
digitalWrite(ACT_LED_PIN, HIGH);
delay(200);
digitalWrite(ACT_LED_PIN, LOW);
delay(200);
}
pinMode(SHUTDOWN_PIN, OUTPUT);
digitalWrite(SHUTDOWN_PIN, HIGH);
delay(50);
Serial.printf("\n Time elapsed: %i.%i Seconds\n", int(millis() / 1000), int(millis() % 1000));
Serial.println(" Shuting down...");
// store the overall running time (uptime) in the "EEPROM"
unsigned long uptime_millis = millis();
EEPROM.begin(EEPROM_SIZE);
EEPROM.write(UPTIME_COUNTER_ADDRESS, (uptime_millis & 0xFF));
EEPROM.write(UPTIME_COUNTER_ADDRESS + 1, ((uptime_millis >> 8) & 0xFF));
EEPROM.write(UPTIME_COUNTER_ADDRESS + 2, ((uptime_millis >> 16) & 0xFF));
EEPROM.write(UPTIME_COUNTER_ADDRESS + 3, ((uptime_millis >> 24) & 0xFF));
EEPROM.end();
digitalWrite(SHUTDOWN_PIN, LOW);
while (true) {
delay(5);
}
}
float get_battery_voltage() {
int adc_value = analogRead(0);
float battery_voltage = VREF / 1024.0 * adc_value;
battery_voltage = battery_voltage * (R1 + R2) / R2;
return battery_voltage;
}
int send_http_request() {
const char* host = "maker.ifttt.com";
String request_url = "/trigger/" + String(ifttt_event) + "/with/key/" + String(ifttt_api_key);
request_url = request_url + String(query_string);
Serial.println("Connecting to " + String(host) + " ...");
WiFiClient client;
if (!client.connect(host, 80)) {
Serial.println("-> Connection failed");
return false;
}
Serial.println("Sending request: " + String(request_url));
client.print(String("GET " + request_url + " HTTP/1.1\r\n" +
"Host: " + String(host) + "\r\n" +
"Connection: close\r\n\r\n"));
unsigned long timeout = millis();
while (client.available() == 0) {
if (millis() - timeout > 5000) {
Serial.println(">>> Client Timeout !");
client.stop();
return false;
}
}
while (client.connected()) {
if (client.available()) {
String line = client.readStringUntil('\n');
if (line == "HTTP/1.1 200 OK\r") {
Serial.println("\n -> REQUEST SUCCESSFULLY SENT. SCENARIO LAUNCHED. <-\n");
break;
}
else {
Serial.println("\n -> REQUEST FAILED, STATUS CODE NOT 200! <-\n");
return false;
}
Serial.println(line);
}
Serial.println("");
}
Serial.println("Connection closed.");
return true;
}
void setup()
{
byte last_wifi_channel, new_wifi_channel;
EEPROM.begin(EEPROM_SIZE);
last_wifi_channel = EEPROM.read(WIFI_CHANNEL_ADDRESS);
EEPROM.end();
WRITE_PERI_REG(0x600011f4, 1 << 16 | last_wifi_channel);
WiFi.mode(WIFI_STA);
#if USE_STATIC_IP == true
WiFi.config(staticIP, gateway, subnet);
#endif
WiFi.begin(ssid, password);
Serial.begin(115200);
Serial.println("\n");
// turn on the activity led
pinMode(ACT_LED_PIN, OUTPUT);
digitalWrite(ACT_LED_PIN, LOW);
// VBAT
float vbat = get_battery_voltage();
query_string = "?value1=" + String(vbat);
// RSSI
int rssi = 2 * (WiFi.RSSI() + 100);
query_string += "&value2=" + String(rssi);
// SWITCH STATE
int switch_state = digitalRead(SWITCH_PIN);
query_string += "&value3=" + String(switch_state);
if (switch_state == 0)
ifttt_event = ifttt_event_switch_closed;
else
ifttt_event = ifttt_event_switch_open;
// LAST UPTIME
EEPROM.begin(EEPROM_SIZE);
long four = EEPROM.read(UPTIME_COUNTER_ADDRESS);
long three = EEPROM.read(UPTIME_COUNTER_ADDRESS + 1);
long two = EEPROM.read(UPTIME_COUNTER_ADDRESS + 2);
long one = EEPROM.read(UPTIME_COUNTER_ADDRESS + 3);
EEPROM.end();
unsigned long uptime_millis = ((four << 0) & 0xFF) + ((three << 8) & 0xFFFF) + ((two << 16) & 0xFFFFFF) + ((one << 24) & 0xFFFFFFFF);
query_string += "&value4=" + String(uptime_millis);
Serial.println("\nVBAT(V): " + String(vbat));
Serial.println("RSSI(%):" + String(rssi));
Serial.println("Switch state: " + String(switch_state));
Serial.println("Last uptime(ms): " + String(uptime_millis));
Serial.println();
Serial.print("Wait for WiFi... ");
if (WiFi.waitForConnectResult() != WL_CONNECTED) {
Serial.println(" Connection failed.");
vreg_shutdown(5);
}
Serial.printf(" Connected after %i.%is\n", int(millis() / 1000), int(millis() % 1000));
Serial.println(" IP: " + WiFi.localIP().toString() + " (static)\n");
new_wifi_channel = wifi_get_channel();
if (new_wifi_channel != last_wifi_channel) {
EEPROM.begin(EEPROM_SIZE);
EEPROM.write(WIFI_CHANNEL_ADDRESS, new_wifi_channel);
EEPROM.end();
Serial.println(" Wifi channel " + String(new_wifi_channel) + " saved.");
}
// Try to send the HTTP request up to 3 times in case of error
for (int i = 0; i < SEND_RETRIES; i++) {
Serial.println("Try: " + String(i + 1));
int success = send_http_request();
if (success == true) {
vreg_shutdown();
}
if (i == SEND_RETRIES - 1 && success == false) {
vreg_shutdown(3);
}
}
}
void loop()
{}
|
3769d67f0a95930b1ae78a5d9ab8adb5e0582d61 | 547b0a1e4e671ca3e18a39e8dbdc2d4be352e8bc | /rcc/qrc_resources.cpp | aadd054f1c9a904591b79f8e792edee41b737fcc | [] | no_license | AJ92/Switcher | e97b223e0e005bf402969303ab12bf696d6a6a53 | 121f0101e7de4d6d245ed17758c0c0a93a6a1a10 | refs/heads/master | 2018-11-04T02:12:38.050830 | 2018-08-26T11:09:43 | 2018-08-26T11:09:43 | 13,270,476 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 618,953 | cpp | qrc_resources.cpp | /****************************************************************************
** Resource object code
**
** Created: Fri 8. Jun 14:49:46 2012
** by: The Resource Compiler for Qt version 4.7.4
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#include <QtCore/qglobal.h>
static const unsigned char qt_resource_data[] = {
// D:/projects/switcher_v_1_0/Switcher/box.mtl
0x0,0x0,0x1,0xb4,
0x23,
0x20,0x33,0x64,0x73,0x20,0x4d,0x61,0x78,0x20,0x57,0x61,0x76,0x65,0x66,0x72,0x6f,
0x6e,0x74,0x20,0x4f,0x42,0x4a,0x20,0x45,0x78,0x70,0x6f,0x72,0x74,0x65,0x72,0x20,
0x76,0x30,0x2e,0x39,0x37,0x62,0x20,0x2d,0x20,0x28,0x63,0x29,0x32,0x30,0x30,0x37,
0x20,0x67,0x75,0x72,0x75,0x77,0x61,0x72,0x65,0xd,0xa,0x23,0x20,0x46,0x69,0x6c,
0x65,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x64,0x3a,0x20,0x32,0x38,0x2e,0x30,0x32,
0x2e,0x32,0x30,0x31,0x32,0x20,0x31,0x36,0x3a,0x33,0x31,0x3a,0x31,0x37,0xd,0xa,
0xd,0xa,0x6e,0x65,0x77,0x6d,0x74,0x6c,0x20,0x4d,0x61,0x74,0x65,0x72,0x69,0x61,
0x6c,0x5f,0x5f,0x32,0x36,0xd,0xa,0x9,0x4e,0x73,0x20,0x31,0x30,0x2e,0x30,0x30,
0x30,0xd,0xa,0x9,0x4e,0x69,0x20,0x31,0x2e,0x35,0x30,0x30,0xd,0xa,0x9,0x64,
0x20,0x31,0x2e,0x30,0x30,0x30,0xd,0xa,0x9,0x54,0x72,0x20,0x30,0x2e,0x30,0x30,
0x30,0xd,0xa,0x9,0x54,0x66,0x20,0x31,0x2e,0x30,0x30,0x30,0x20,0x31,0x2e,0x30,
0x30,0x30,0x20,0x31,0x2e,0x30,0x30,0x30,0x20,0xd,0xa,0x9,0x69,0x6c,0x6c,0x75,
0x6d,0x20,0x32,0xd,0xa,0x9,0x4b,0x61,0x20,0x30,0x2e,0x35,0x38,0x38,0x20,0x30,
0x2e,0x35,0x38,0x38,0x20,0x30,0x2e,0x35,0x38,0x38,0xd,0xa,0x9,0x4b,0x64,0x20,
0x30,0x2e,0x35,0x38,0x38,0x20,0x30,0x2e,0x35,0x38,0x38,0x20,0x30,0x2e,0x35,0x38,
0x38,0xd,0xa,0x9,0x4b,0x73,0x20,0x30,0x2e,0x30,0x30,0x30,0x20,0x30,0x2e,0x30,
0x30,0x30,0x20,0x30,0x2e,0x30,0x30,0x30,0xd,0xa,0x9,0x4b,0x65,0x20,0x30,0x2e,
0x30,0x30,0x30,0x20,0x30,0x2e,0x30,0x30,0x30,0x20,0x30,0x2e,0x30,0x30,0x30,0xd,
0xa,0x9,0x6d,0x61,0x70,0x5f,0x4b,0x61,0x20,0x44,0x3a,0x5c,0x70,0x72,0x6f,0x6a,
0x65,0x63,0x74,0x73,0x5c,0x46,0x49,0x4e,0x41,0x4c,0x5f,0x47,0x4c,0x45,0x53,0x5f,
0x45,0x4e,0x47,0x49,0x4e,0x45,0x5c,0x66,0x69,0x6e,0x61,0x6c,0x5f,0x65,0x6e,0x67,
0x69,0x6e,0x65,0x5c,0x65,0x6e,0x67,0x69,0x6e,0x65,0x5c,0x74,0x65,0x78,0x5f,0x36,
0x34,0x78,0x36,0x34,0x2e,0x70,0x6e,0x67,0xd,0xa,0x9,0x6d,0x61,0x70,0x5f,0x4b,
0x64,0x20,0x44,0x3a,0x5c,0x70,0x72,0x6f,0x6a,0x65,0x63,0x74,0x73,0x5c,0x46,0x49,
0x4e,0x41,0x4c,0x5f,0x47,0x4c,0x45,0x53,0x5f,0x45,0x4e,0x47,0x49,0x4e,0x45,0x5c,
0x66,0x69,0x6e,0x61,0x6c,0x5f,0x65,0x6e,0x67,0x69,0x6e,0x65,0x5c,0x65,0x6e,0x67,
0x69,0x6e,0x65,0x5c,0x74,0x65,0x78,0x5f,0x36,0x34,0x78,0x36,0x34,0x2e,0x70,0x6e,
0x67,0xd,0xa,
// D:/projects/switcher_v_1_0/Switcher/box.obj
0x0,0x0,0x3,0xd7,
0x23,
0x20,0x33,0x64,0x73,0x20,0x4d,0x61,0x78,0x20,0x57,0x61,0x76,0x65,0x66,0x72,0x6f,
0x6e,0x74,0x20,0x4f,0x42,0x4a,0x20,0x45,0x78,0x70,0x6f,0x72,0x74,0x65,0x72,0x20,
0x76,0x30,0x2e,0x39,0x37,0x62,0x20,0x2d,0x20,0x28,0x63,0x29,0x32,0x30,0x30,0x37,
0x20,0x67,0x75,0x72,0x75,0x77,0x61,0x72,0x65,0xd,0xa,0x23,0x20,0x46,0x69,0x6c,
0x65,0x20,0x43,0x72,0x65,0x61,0x74,0x65,0x64,0x3a,0x20,0x32,0x38,0x2e,0x30,0x32,
0x2e,0x32,0x30,0x31,0x32,0x20,0x31,0x36,0x3a,0x33,0x31,0x3a,0x31,0x37,0xd,0xa,
0xd,0xa,0x6d,0x74,0x6c,0x6c,0x69,0x62,0x20,0x62,0x6f,0x78,0x2e,0x6d,0x74,0x6c,
0xd,0xa,0xd,0xa,0x23,0xd,0xa,0x23,0x20,0x6f,0x62,0x6a,0x65,0x63,0x74,0x20,
0x42,0x6f,0x78,0x30,0x30,0x31,0xd,0xa,0x23,0xd,0xa,0xd,0xa,0x76,0x20,0x20,
0x2d,0x33,0x39,0x2e,0x36,0x35,0x38,0x20,0x2d,0x34,0x30,0x2e,0x33,0x32,0x35,0x20,
0x34,0x30,0x2e,0x30,0x30,0x30,0xd,0xa,0x76,0x20,0x20,0x2d,0x33,0x39,0x2e,0x36,
0x35,0x38,0x20,0x2d,0x34,0x30,0x2e,0x33,0x32,0x35,0x20,0x2d,0x34,0x30,0x2e,0x30,
0x30,0x30,0xd,0xa,0x76,0x20,0x20,0x34,0x30,0x2e,0x33,0x34,0x32,0x20,0x2d,0x34,
0x30,0x2e,0x33,0x32,0x35,0x20,0x2d,0x34,0x30,0x2e,0x30,0x30,0x30,0xd,0xa,0x76,
0x20,0x20,0x34,0x30,0x2e,0x33,0x34,0x32,0x20,0x2d,0x34,0x30,0x2e,0x33,0x32,0x35,
0x20,0x34,0x30,0x2e,0x30,0x30,0x30,0xd,0xa,0x76,0x20,0x20,0x2d,0x33,0x39,0x2e,
0x36,0x35,0x38,0x20,0x33,0x38,0x2e,0x39,0x39,0x31,0x20,0x34,0x30,0x2e,0x30,0x30,
0x30,0xd,0xa,0x76,0x20,0x20,0x34,0x30,0x2e,0x33,0x34,0x32,0x20,0x33,0x38,0x2e,
0x39,0x39,0x31,0x20,0x34,0x30,0x2e,0x30,0x30,0x30,0xd,0xa,0x76,0x20,0x20,0x34,
0x30,0x2e,0x33,0x34,0x32,0x20,0x33,0x38,0x2e,0x39,0x39,0x31,0x20,0x2d,0x34,0x30,
0x2e,0x30,0x30,0x30,0xd,0xa,0x76,0x20,0x20,0x2d,0x33,0x39,0x2e,0x36,0x35,0x38,
0x20,0x33,0x38,0x2e,0x39,0x39,0x31,0x20,0x2d,0x34,0x30,0x2e,0x30,0x30,0x30,0xd,
0xa,0x23,0x20,0x38,0x20,0x76,0x65,0x72,0x74,0x69,0x63,0x65,0x73,0xd,0xa,0xd,
0xa,0x76,0x6e,0x20,0x30,0x2e,0x30,0x30,0x30,0x20,0x2d,0x31,0x2e,0x30,0x30,0x30,
0x20,0x2d,0x30,0x2e,0x30,0x30,0x30,0xd,0xa,0x76,0x6e,0x20,0x30,0x2e,0x30,0x30,
0x30,0x20,0x31,0x2e,0x30,0x30,0x30,0x20,0x2d,0x30,0x2e,0x30,0x30,0x30,0xd,0xa,
0x76,0x6e,0x20,0x30,0x2e,0x30,0x30,0x30,0x20,0x30,0x2e,0x30,0x30,0x30,0x20,0x31,
0x2e,0x30,0x30,0x30,0xd,0xa,0x76,0x6e,0x20,0x31,0x2e,0x30,0x30,0x30,0x20,0x30,
0x2e,0x30,0x30,0x30,0x20,0x2d,0x30,0x2e,0x30,0x30,0x30,0xd,0xa,0x76,0x6e,0x20,
0x30,0x2e,0x30,0x30,0x30,0x20,0x30,0x2e,0x30,0x30,0x30,0x20,0x2d,0x31,0x2e,0x30,
0x30,0x30,0xd,0xa,0x76,0x6e,0x20,0x2d,0x31,0x2e,0x30,0x30,0x30,0x20,0x30,0x2e,
0x30,0x30,0x30,0x20,0x2d,0x30,0x2e,0x30,0x30,0x30,0xd,0xa,0x23,0x20,0x36,0x20,
0x76,0x65,0x72,0x74,0x65,0x78,0x20,0x6e,0x6f,0x72,0x6d,0x61,0x6c,0x73,0xd,0xa,
0xd,0xa,0x76,0x74,0x20,0x31,0x2e,0x30,0x30,0x30,0x20,0x30,0x2e,0x30,0x30,0x30,
0x20,0x30,0x2e,0x30,0x30,0x30,0xd,0xa,0x76,0x74,0x20,0x31,0x2e,0x30,0x30,0x30,
0x20,0x31,0x2e,0x30,0x30,0x30,0x20,0x30,0x2e,0x30,0x30,0x30,0xd,0xa,0x76,0x74,
0x20,0x30,0x2e,0x30,0x30,0x30,0x20,0x31,0x2e,0x30,0x30,0x30,0x20,0x30,0x2e,0x30,
0x30,0x30,0xd,0xa,0x76,0x74,0x20,0x30,0x2e,0x30,0x30,0x30,0x20,0x30,0x2e,0x30,
0x30,0x30,0x20,0x30,0x2e,0x30,0x30,0x30,0xd,0xa,0x23,0x20,0x34,0x20,0x74,0x65,
0x78,0x74,0x75,0x72,0x65,0x20,0x63,0x6f,0x6f,0x72,0x64,0x73,0xd,0xa,0xd,0xa,
0x67,0x20,0x42,0x6f,0x78,0x30,0x30,0x31,0xd,0xa,0x75,0x73,0x65,0x6d,0x74,0x6c,
0x20,0x4d,0x61,0x74,0x65,0x72,0x69,0x61,0x6c,0x5f,0x5f,0x32,0x36,0xd,0xa,0x73,
0x20,0x32,0xd,0xa,0x66,0x20,0x31,0x2f,0x31,0x2f,0x31,0x20,0x32,0x2f,0x32,0x2f,
0x31,0x20,0x33,0x2f,0x33,0x2f,0x31,0x20,0xd,0xa,0x66,0x20,0x33,0x2f,0x33,0x2f,
0x31,0x20,0x34,0x2f,0x34,0x2f,0x31,0x20,0x31,0x2f,0x31,0x2f,0x31,0x20,0xd,0xa,
0x73,0x20,0x34,0xd,0xa,0x66,0x20,0x35,0x2f,0x34,0x2f,0x32,0x20,0x36,0x2f,0x31,
0x2f,0x32,0x20,0x37,0x2f,0x32,0x2f,0x32,0x20,0xd,0xa,0x66,0x20,0x37,0x2f,0x32,
0x2f,0x32,0x20,0x38,0x2f,0x33,0x2f,0x32,0x20,0x35,0x2f,0x34,0x2f,0x32,0x20,0xd,
0xa,0x73,0x20,0x38,0xd,0xa,0x66,0x20,0x31,0x2f,0x34,0x2f,0x33,0x20,0x34,0x2f,
0x31,0x2f,0x33,0x20,0x36,0x2f,0x32,0x2f,0x33,0x20,0xd,0xa,0x66,0x20,0x36,0x2f,
0x32,0x2f,0x33,0x20,0x35,0x2f,0x33,0x2f,0x33,0x20,0x31,0x2f,0x34,0x2f,0x33,0x20,
0xd,0xa,0x73,0x20,0x31,0x36,0xd,0xa,0x66,0x20,0x34,0x2f,0x34,0x2f,0x34,0x20,
0x33,0x2f,0x31,0x2f,0x34,0x20,0x37,0x2f,0x32,0x2f,0x34,0x20,0xd,0xa,0x66,0x20,
0x37,0x2f,0x32,0x2f,0x34,0x20,0x36,0x2f,0x33,0x2f,0x34,0x20,0x34,0x2f,0x34,0x2f,
0x34,0x20,0xd,0xa,0x73,0x20,0x33,0x32,0xd,0xa,0x66,0x20,0x33,0x2f,0x34,0x2f,
0x35,0x20,0x32,0x2f,0x31,0x2f,0x35,0x20,0x38,0x2f,0x32,0x2f,0x35,0x20,0xd,0xa,
0x66,0x20,0x38,0x2f,0x32,0x2f,0x35,0x20,0x37,0x2f,0x33,0x2f,0x35,0x20,0x33,0x2f,
0x34,0x2f,0x35,0x20,0xd,0xa,0x73,0x20,0x36,0x34,0xd,0xa,0x66,0x20,0x32,0x2f,
0x34,0x2f,0x36,0x20,0x31,0x2f,0x31,0x2f,0x36,0x20,0x35,0x2f,0x32,0x2f,0x36,0x20,
0xd,0xa,0x66,0x20,0x35,0x2f,0x32,0x2f,0x36,0x20,0x38,0x2f,0x33,0x2f,0x36,0x20,
0x32,0x2f,0x34,0x2f,0x36,0x20,0xd,0xa,0x23,0x20,0x31,0x32,0x20,0x66,0x61,0x63,
0x65,0x73,0xd,0xa,0xd,0xa,
// D:/projects/switcher_v_1_0/Switcher/tex_64x64.png
0x0,0x1,0xd3,0xd3,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x8,0x2,0x0,0x0,0x0,0xd3,0x10,0x3f,0x31,
0x0,0x0,0x0,0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8f,0xb,0xfc,0x61,0x5,
0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xe,0xc2,0x0,0x0,0xe,0xc2,
0x1,0x15,0x28,0x4a,0x80,0x0,0x0,0x0,0x1a,0x74,0x45,0x58,0x74,0x53,0x6f,0x66,
0x74,0x77,0x61,0x72,0x65,0x0,0x50,0x61,0x69,0x6e,0x74,0x2e,0x4e,0x45,0x54,0x20,
0x76,0x33,0x2e,0x35,0x2e,0x31,0x30,0x30,0xf4,0x72,0xa1,0x0,0x0,0xff,0x8c,0x49,
0x44,0x41,0x54,0x78,0x5e,0xac,0xbd,0x75,0x78,0xa3,0x69,0x76,0xe6,0x3d,0x4b,0x93,
0xec,0x84,0x76,0x37,0xf9,0x36,0xd9,0xec,0x6e,0x96,0x26,0xc9,0x40,0xf,0xcf,0x34,
0x4e,0x77,0x4f,0x73,0x75,0x17,0x57,0x75,0x75,0x31,0xb9,0xcc,0x6c,0x8b,0x25,0xcb,
0x92,0x6d,0x91,0x6d,0xc9,0xcc,0x28,0x4b,0x96,0x99,0x99,0x99,0x99,0x99,0x99,0x5d,
0x2e,0x2e,0x97,0xe1,0x3b,0xe7,0x79,0x5f,0xc9,0xb2,0xcb,0xd5,0x5d,0x93,0xdd,0x5c,
0xf7,0xa5,0xcb,0xd3,0x99,0x99,0xe4,0x8f,0xf3,0x7b,0xee,0xfb,0x3e,0xcf,0xfb,0x4a,
0xdf,0xdb,0x7f,0x9d,0xff,0xd9,0xdb,0xdf,0xdf,0xdd,0xdf,0xdf,0xd9,0xdf,0x7f,0xb1,
0xb7,0xbf,0xbd,0xbb,0xff,0x7c,0x67,0xff,0xd9,0x8b,0xfd,0xa7,0xdb,0xfb,0x4f,0x9e,
0xef,0x3f,0x7e,0xb6,0xff,0xe8,0xe9,0xfe,0xc3,0x27,0xfb,0xf,0x1e,0xa3,0xee,0x3f,
0x44,0x6d,0x6c,0xa1,0xd6,0xef,0xef,0xaf,0x6d,0xee,0xad,0x6e,0xec,0xae,0xac,0xef,
0x2c,0xaf,0xbd,0x58,0x5a,0xdd,0x5e,0x5c,0x79,0xbe,0xb0,0xfc,0x6c,0x7e,0xe9,0xe9,
0xdc,0xe2,0x93,0xd9,0x85,0xc7,0x33,0xf3,0x8f,0xa6,0xe7,0x1e,0x4d,0xcd,0x3e,0x9c,
0x9c,0x79,0x30,0x31,0xbd,0x35,0x3e,0x75,0x7f,0x6c,0x72,0x73,0x74,0x62,0x63,0x64,
0x7c,0x7d,0x64,0x6c,0x6d,0x78,0x74,0x75,0x68,0x64,0x65,0x70,0x78,0x79,0x60,0x68,
0xa9,0x7f,0x70,0xb1,0x6f,0x60,0xa1,0xb7,0x7f,0xbe,0xa7,0x6f,0xbe,0xbb,0x6f,0xae,
0xab,0x77,0xb6,0xb3,0x67,0xa6,0xb3,0x7b,0xba,0xa3,0x6b,0xaa,0xad,0x73,0xb2,0xad,
0x63,0xa2,0xb5,0x7d,0xbc,0xa5,0x6d,0xac,0xb9,0x75,0xb4,0xa9,0x65,0xa4,0xb1,0x79,
0xb8,0xa1,0x69,0xa8,0xbe,0x71,0x10,0x54,0xd7,0x30,0x50,0x5b,0xdf,0x5f,0x53,0xd7,
0x57,0x5d,0xdb,0x5b,0x55,0xd3,0x53,0x59,0xdd,0x5d,0x59,0xdd,0x55,0x51,0xd5,0x55,
0x5e,0xd9,0x59,0x56,0xd1,0x51,0x5a,0xde,0x5e,0x52,0xd6,0x56,0x5c,0xda,0x5a,0x5c,
0xd2,0x5a,0x54,0xd2,0x52,0x58,0xdc,0x5c,0x50,0xd4,0x94,0x5f,0xd8,0x98,0x5f,0xd0,
0x90,0x97,0x5f,0x9f,0x9b,0x5f,0x9f,0x93,0x57,0x97,0x9d,0x5b,0x9b,0x9d,0x53,0x93,
0x95,0x53,0x93,0x99,0x5d,0x9d,0x91,0x55,0x95,0x91,0x59,0x99,0x9e,0x51,0x91,0x96,
0x51,0x9e,0x9a,0x5e,0x9e,0x92,0x56,0x96,0x92,0x5a,0x9a,0x9c,0x52,0x92,0x4,0x4a,
0x2e,0x4e,0x4c,0x2a,0x4a,0x48,0x2c,0xd4,0x81,0x12,0xa,0xe2,0x75,0xf9,0xda,0xf8,
0x3c,0xd,0x48,0x9b,0x1b,0xa7,0xc9,0x51,0x6b,0xb2,0xd5,0x71,0xd9,0xb1,0xea,0xac,
0x98,0xd8,0xcc,0x98,0xd8,0x8c,0xe8,0x98,0x8c,0xa8,0xe8,0xf4,0xc8,0xe8,0xb4,0xc8,
0xa8,0xb4,0x88,0xc8,0xd4,0xf0,0x88,0x14,0x50,0x58,0x78,0x72,0x58,0x78,0x52,0x68,
0x58,0x52,0x48,0x68,0x62,0x70,0x48,0x42,0x70,0x88,0x2e,0x28,0x18,0x14,0x1f,0x18,
0xa4,0xd,0x8,0x4,0x69,0xfc,0x3,0x34,0x7e,0xfe,0x71,0x7e,0xfe,0x6a,0x5f,0x3f,
0xb5,0xaf,0x6f,0xac,0x8f,0x6f,0x8c,0xca,0x7,0x14,0xad,0x54,0x45,0x29,0x95,0x51,
0xde,0xca,0x48,0x2f,0x6f,0x50,0x84,0xa7,0x57,0xb8,0xa7,0x67,0xb8,0xc2,0x33,0x4c,
0xa1,0x8,0x93,0x2b,0x42,0x65,0xf2,0x10,0x90,0x54,0x16,0x2c,0x95,0x6,0x4b,0xa4,
0x41,0x12,0x49,0xa0,0x7,0xc8,0x23,0xc0,0x1d,0xe4,0xee,0xef,0x6,0x72,0xf3,0x13,
0xbb,0xf9,0x89,0xc4,0xbe,0x22,0x91,0x8f,0x2b,0xc8,0x55,0x25,0x4,0x9,0x95,0x2e,
0x20,0x17,0x6f,0x1,0x48,0xe0,0xc5,0x7,0xf1,0x3d,0x79,0x20,0x9e,0x82,0xb,0xe2,
0xca,0x41,0x1c,0x8e,0xc,0xc4,0xe6,0x48,0xd9,0x6c,0x29,0x8b,0x2d,0x61,0xb1,0x24,
0x4c,0x96,0x7,0x93,0x9,0x72,0x67,0x30,0x40,0x6e,0xce,0xce,0x20,0xb1,0xb3,0x93,
0xd8,0xc9,0x49,0x84,0x72,0x74,0x75,0x4,0x39,0xb8,0x3a,0x38,0x8,0x1d,0xec,0x41,
0x2e,0xf6,0x20,0x3b,0x81,0x1d,0xc8,0x96,0xf,0xb2,0xb5,0xe5,0xd9,0xda,0xa0,0x6c,
0xac,0xb9,0x20,0x6b,0x2b,0xe,0xc8,0xca,0x8a,0x6d,0x65,0x89,0xb2,0xb4,0x64,0x59,
0x5a,0xb0,0x2c,0x2c,0x98,0x16,0xe6,0x28,0x73,0x73,0x86,0xb9,0x19,0xc3,0xcc,0xcc,
0xd9,0xcc,0x14,0x65,0x6a,0xea,0x64,0x7a,0xf,0xe4,0x78,0xf,0x64,0xe2,0x68,0x62,
0xe2,0x0,0xba,0x7b,0xd7,0x9e,0xd2,0x9d,0x3b,0x76,0xa8,0xdb,0x76,0xb7,0x6f,0xdb,
0x82,0x6e,0xdd,0x2,0xd9,0x80,0x6e,0xde,0xfc,0xde,0xeb,0xcc,0xff,0xfe,0x1,0x0,
0xfb,0xfb,0xdb,0x7b,0x46,0x0,0x6c,0xef,0x3f,0x7e,0xbe,0xff,0xe8,0xd9,0xfe,0xc3,
0xa7,0xfb,0xf,0x8,0x3,0x5b,0x8f,0x10,0x80,0xcd,0x7,0xdf,0x9,0xc0,0xd3,0xd9,
0x85,0x27,0x33,0xf3,0x8f,0x8d,0x1,0x98,0x98,0xba,0x3f,0x3e,0xb9,0x39,0x36,0xb1,
0x31,0x6a,0x0,0x60,0x54,0xf,0xc0,0xd0,0x62,0xdf,0xe0,0x42,0xef,0xc0,0x7c,0x4f,
0x3f,0x2,0xd0,0xdd,0x3b,0xdb,0x5,0x0,0xf4,0x20,0x0,0xed,0xc7,0x0,0x70,0xc0,
0xc0,0x71,0x0,0x74,0x53,0x0,0x94,0xeb,0x1,0x28,0x1,0x0,0x4a,0xf,0x0,0x28,
0xa0,0x0,0x28,0x68,0xa0,0x0,0xc8,0xa1,0x1,0xa8,0x6,0x0,0x32,0xf,0x0,0xa8,
0x48,0x4b,0x2f,0x4f,0xfd,0x76,0x0,0x74,0x79,0xc8,0xc0,0x31,0x0,0x64,0x52,0x0,
0x44,0xe9,0x1,0x88,0x88,0x3c,0xa,0x40,0x48,0x28,0x0,0x90,0xa0,0x7,0x20,0xde,
0x0,0x80,0x7f,0x0,0x2,0xe0,0x7,0x0,0xf8,0x21,0x0,0x3e,0x6,0x0,0x54,0x8,
0x80,0xb7,0x1,0x0,0xaf,0x3,0x0,0xe4,0x6,0x0,0x64,0x14,0x0,0x41,0xc7,0x2,
0x20,0x6,0x0,0x68,0x6,0x54,0x84,0x1,0x25,0x61,0xc0,0x9b,0x30,0xe0,0x45,0x18,
0xf0,0x24,0xc,0x28,0x8,0x3,0x4,0x0,0xee,0x1,0x0,0x6c,0x2,0x0,0x4b,0xf,
0x0,0x93,0x0,0x40,0x18,0x10,0x13,0x6,0x68,0x0,0x90,0x1,0x7,0x90,0x90,0x30,
0xe0,0x82,0xc,0xd8,0x9,0x50,0x4,0x0,0x14,0x1,0xc0,0x96,0x0,0x60,0x63,0xcd,
0xb1,0xa1,0x18,0x20,0x0,0x58,0x11,0x0,0x88,0x28,0x6,0x10,0x0,0x23,0x6,0x9c,
0xe,0x18,0x30,0x1,0x6,0x10,0x0,0x93,0xbb,0x7a,0x6,0x28,0x0,0x90,0x1,0x4,
0x80,0x30,0x80,0x0,0xdc,0xba,0xf5,0x2f,0x3,0xe0,0xd5,0x26,0xf0,0x6a,0x0,0x76,
0x88,0x3,0x6c,0x2f,0x2c,0x3f,0x9f,0x5f,0x7a,0x36,0xb7,0x88,0x0,0xcc,0xea,0x1,
0x98,0x9a,0x79,0x30,0x39,0xbd,0x75,0x8,0x80,0xf1,0xb5,0xe1,0xb1,0xd5,0x21,0x0,
0x60,0x64,0x79,0x60,0x78,0xa9,0x1f,0x4d,0x0,0x0,0xa0,0x4c,0x40,0xf,0x0,0x71,
0x0,0x2,0x0,0x8,0x1d,0xa0,0xa5,0x8d,0x38,0x80,0x91,0x9,0x18,0x0,0xa8,0xa9,
0xeb,0xad,0xae,0xed,0xa1,0x4c,0xc0,0xe0,0x0,0x65,0xe5,0xed,0xa5,0x65,0x6d,0x25,
0x65,0x7,0x0,0x14,0x16,0x35,0x21,0x0,0x85,0x8d,0x0,0x0,0x9a,0x0,0x5,0x40,
0x2e,0xed,0x0,0x34,0x0,0x99,0xe0,0x0,0x7a,0x0,0xd2,0x4a,0x93,0x53,0x8d,0x1c,
0x20,0xa9,0x10,0x4d,0x80,0x72,0x0,0x23,0x0,0xe2,0xc,0xe,0xa0,0x6,0x7,0x20,
0x0,0xc4,0xd0,0x0,0x44,0x46,0xa5,0xbe,0xa,0x80,0x60,0xda,0x1,0x28,0x13,0x40,
0x7,0x38,0xa,0x0,0x9a,0x0,0x38,0x0,0x9a,0x0,0x2,0x80,0x26,0x10,0xe1,0xe5,
0x85,0x26,0x80,0xe,0xe0,0x89,0xe,0x20,0x97,0x13,0x13,0x0,0x7,0x40,0x13,0x8,
0x2,0x6,0x10,0x0,0x49,0xe0,0x11,0x7,0x30,0x2,0x80,0x32,0x81,0xef,0x6,0x80,
0x4b,0x0,0xe0,0x10,0x7,0x30,0x0,0xc0,0x22,0xe,0x80,0x22,0x0,0x30,0x68,0x0,
0x8,0x3,0x8e,0x68,0x2,0x28,0x7,0x21,0x30,0xe0,0x68,0xef,0x2,0x72,0xb0,0x13,
0x50,0x2,0x6,0x10,0x3,0x1b,0x1e,0x61,0x80,0xb,0xc,0x20,0x6,0x56,0x14,0x3,
0x6c,0x6b,0x2,0x80,0x95,0x1e,0x0,0x4b,0x2,0x80,0x9e,0x1,0x67,0x73,0x34,0x1,
0x27,0x14,0x31,0x1,0xf4,0x1,0x13,0x7,0x3d,0x3,0xf6,0x26,0x60,0x2,0x77,0x40,
0x34,0x0,0x34,0x3,0xff,0x37,0x0,0x40,0xa,0x7a,0xf6,0x8a,0x14,0xf4,0x32,0x0,
0x90,0x82,0xf4,0x11,0xe8,0xc5,0x51,0x0,0x20,0x5,0xcd,0x3d,0x9a,0x9e,0x7d,0x88,
0x0,0xcc,0x6c,0x4d,0x4c,0x13,0x7,0x98,0xdc,0x18,0x9d,0x58,0x1f,0x41,0x0,0xa8,
0x14,0x44,0x3,0xd0,0x77,0x90,0x82,0x5e,0x2,0xa0,0xf3,0x20,0x2,0x35,0xb7,0x8e,
0x34,0xb5,0xc,0x1b,0x52,0x10,0x5,0x40,0x6d,0x7d,0xdf,0xf1,0x0,0x54,0xb4,0x97,
0x96,0x3,0x0,0x98,0x82,0xa8,0x8,0x84,0x0,0x90,0x14,0x44,0x39,0x0,0x2,0x90,
0xf7,0x32,0x0,0x24,0x5,0x51,0xe,0x80,0x0,0x90,0x14,0x4,0x11,0x28,0xb9,0x28,
0x81,0x4a,0x41,0x0,0x40,0x42,0x3e,0x9d,0x82,0xb4,0x60,0x2,0x39,0x98,0x82,0x20,
0x2,0xc5,0x65,0xc5,0xea,0x1,0x88,0x46,0x0,0xd2,0x21,0x2,0x19,0x0,0x8,0x8f,
0xa0,0x23,0x50,0x68,0x58,0x22,0xe5,0x0,0x24,0x5,0xc1,0xf4,0xbf,0xa,0x0,0x2a,
0x5,0x45,0xab,0x8e,0x3,0xc0,0xd3,0x0,0x0,0x95,0x82,0x8c,0x0,0xa0,0x52,0x10,
0x2,0xe0,0x41,0x22,0x90,0x3b,0x46,0xa0,0x97,0x0,0x30,0x4e,0x41,0x7,0xe,0xc0,
0x27,0xe,0xc0,0x23,0xe,0x60,0x0,0x80,0x43,0x0,0x20,0xc,0x78,0xa0,0x98,0xee,
0x20,0x0,0x0,0xe5,0x8c,0xc,0x30,0x9c,0x40,0x22,0x90,0xb3,0xa3,0x2b,0x8,0x0,
0x40,0xd9,0xbb,0x80,0x10,0x3,0x3b,0x1,0xc8,0xc1,0x96,0xf,0xb2,0xb7,0xe5,0xd9,
0x13,0x6,0xec,0xac,0xb9,0x20,0x5b,0x6b,0x8e,0x2d,0x32,0xc0,0xb6,0xb1,0x44,0x6,
0xac,0x9,0x3,0x56,0x16,0x4c,0x0,0x80,0x88,0x61,0x61,0x6,0x72,0x36,0x7,0x99,
0x82,0x10,0x0,0x33,0x2,0x80,0xa9,0x9,0x8,0x19,0xb8,0x77,0x17,0x1,0x20,0xc,
0xd8,0x51,0x2,0x0,0x8,0x3,0x36,0xb7,0xff,0x28,0x7,0x30,0xa4,0x20,0x88,0x40,
0xc7,0xd4,0x0,0x48,0x41,0x46,0x11,0x88,0x4a,0x41,0x87,0x3b,0x0,0x5d,0x3,0xc,
0xe,0x80,0x35,0x60,0x9e,0xd4,0x0,0x0,0x60,0x56,0xf,0xc0,0x94,0x31,0x0,0xe0,
0x0,0x20,0x0,0xe0,0x48,0xd,0x30,0x2,0xa0,0x7b,0xaa,0xbd,0x6b,0xb2,0x8d,0x0,
0xd0,0xda,0x3e,0xd6,0xdc,0x36,0x8a,0x35,0xa0,0xf5,0x50,0x4,0xaa,0x6b,0xc0,0xe,
0xf0,0x32,0x0,0x10,0x81,0xca,0xe,0x3,0x50,0x4,0x0,0x14,0x3,0x0,0x87,0x1d,
0x80,0xd4,0x0,0xe8,0x0,0x59,0x54,0x4,0xca,0xaa,0x4c,0xcf,0xac,0x30,0x6,0x80,
0xae,0x1,0x4,0x0,0xba,0x6,0x1c,0x2,0x20,0x37,0x8e,0x2,0x40,0x73,0x0,0x0,
0xa9,0x1,0xc6,0x0,0x50,0x35,0xe0,0x78,0x0,0x82,0xf4,0x0,0x10,0x13,0x80,0x8,
0x44,0xd5,0x80,0x58,0x7d,0xd,0x88,0x3e,0x5c,0x3,0x22,0xe8,0x1a,0xe0,0x85,0xe,
0xa0,0x0,0x7,0x38,0x54,0x3,0xd0,0x1,0x5e,0xaa,0x1,0x7e,0xa4,0x6,0x90,0x8,
0x24,0x26,0x35,0x40,0x74,0xa8,0x6,0xb8,0x90,0x8,0x24,0x20,0x11,0xe8,0x0,0x0,
0x64,0x40,0x46,0x18,0x90,0xa2,0x8,0x0,0x6c,0x96,0x7,0x8,0x4c,0x0,0x19,0x60,
0x18,0x18,0x10,0x33,0x91,0x1,0x4,0x80,0xe1,0xe8,0xa,0x72,0x76,0x10,0x52,0xa2,
0x18,0x70,0x22,0x0,0x38,0xda,0xf2,0x41,0xe,0xb6,0x3c,0x7,0x1b,0x64,0xc0,0xde,
0x9a,0xb,0xb2,0xb3,0xe6,0xd8,0x59,0x21,0x3,0xb6,0x96,0x6c,0x90,0x8d,0x25,0xcb,
0xc6,0x82,0x65,0x6d,0xc1,0x4,0x59,0x99,0x83,0x18,0x96,0x66,0x20,0x67,0x60,0xc0,
0x82,0x0,0x80,0xba,0xe7,0x8,0xc,0x98,0x11,0x0,0x90,0x81,0xbb,0x7a,0x6,0xe,
0x3,0x80,0xc,0xdc,0x2,0x6,0x5e,0x3b,0x2,0xbd,0x66,0xf,0x3e,0x2e,0x2,0x61,
0xf,0x5e,0x5e,0xdb,0x59,0x5e,0x25,0x3d,0x78,0xf9,0xe5,0x1e,0xfc,0x2a,0x0,0xc0,
0x1,0x56,0x88,0x3,0x1c,0x7,0x40,0x2f,0x96,0xe0,0x4e,0x0,0x0,0x22,0x10,0x0,
0xd0,0x81,0x0,0xbc,0xdc,0x83,0xd1,0x1,0x1a,0x28,0x7,0x80,0x1e,0x7c,0x28,0x2,
0x95,0x57,0x1e,0x0,0x80,0x35,0xa0,0xa4,0x85,0x0,0x70,0xa4,0x7,0x53,0xe,0xa0,
0x7,0x20,0x9b,0x2,0x40,0xef,0x0,0xe9,0xe8,0x0,0xfa,0x1e,0xc,0x0,0x18,0x7a,
0xb0,0xde,0x1,0x74,0xd0,0x83,0x73,0xd,0xe,0xa0,0x46,0x7,0x30,0xf4,0x60,0x4,
0x80,0xd4,0x0,0x88,0x40,0xa9,0xe1,0x58,0x3,0x0,0x80,0xe4,0x50,0xec,0xc1,0xe0,
0x0,0x94,0x9,0xa0,0x3,0x1c,0xee,0xc1,0x46,0x0,0x90,0x1a,0x70,0xd0,0x83,0xe9,
0x1a,0x60,0x0,0x80,0xaa,0x1,0x8,0x80,0x51,0xd,0xf8,0x36,0x0,0x88,0x9,0xf8,
0x90,0x2a,0xfc,0x6d,0x35,0xe0,0x88,0x9,0x70,0x49,0xa,0x2,0x13,0x40,0x6,0x58,
0x84,0x1,0x26,0x8,0x4d,0x80,0xc5,0x70,0x43,0x39,0x8b,0x41,0x4c,0x27,0x11,0xca,
0xd1,0x15,0x84,0x18,0x38,0x8,0x41,0xce,0xf6,0x2e,0x28,0x3b,0x1,0x30,0xe0,0x64,
0xc7,0x77,0x22,0xc,0x38,0xda,0x20,0x3,0xe,0x36,0x5c,0x7,0x64,0x80,0x63,0x6f,
0x85,0xc,0xd8,0x59,0xb1,0xed,0x90,0x1,0x96,0xad,0x5,0x32,0x60,0x3,0xc,0x98,
0x83,0x18,0xc0,0x80,0x15,0x61,0xc0,0xd2,0x14,0x18,0x70,0x42,0xdd,0x43,0x6,0x10,
0x3,0x13,0x7,0x10,0x61,0xc0,0x9e,0xf6,0x1,0x8a,0x81,0xdb,0xb6,0x20,0xf4,0x81,
0xff,0x97,0x0,0x1c,0x76,0x0,0xaa,0x4,0x83,0xc8,0x16,0x88,0x5e,0x4,0x2d,0x51,
0x0,0x1c,0xb3,0x8,0x3a,0x2,0x0,0xf4,0xe0,0xf5,0x51,0x7d,0x7,0x0,0x0,0x8e,
0x2e,0x82,0xfa,0xe7,0xba,0xfb,0x66,0xbb,0x0,0x0,0x28,0xc1,0xdd,0x53,0x1d,0x94,
0x3,0x18,0x0,0x68,0x83,0x8,0x44,0x1c,0xa0,0x79,0xa8,0xbe,0x9,0x16,0x41,0x3,
0xe0,0x0,0x86,0x45,0x10,0x30,0x80,0x8b,0xa0,0x2a,0x58,0x4,0x75,0xea,0x1,0xc0,
0x45,0x10,0xd,0x40,0x9,0xe5,0x0,0xfa,0x45,0x50,0x1,0x2c,0x82,0x68,0x0,0x70,
0x11,0x4,0xe,0x40,0x0,0xa0,0x17,0x41,0x10,0x81,0xe,0x3,0x90,0x64,0x70,0x80,
0xc4,0x2,0x9d,0x21,0x2,0x19,0x0,0xc0,0x1a,0xf0,0x4a,0x0,0x48,0xd,0x40,0x0,
0xc8,0x22,0xc8,0x18,0x80,0x23,0x8b,0xa0,0x38,0xaa,0x6,0xa0,0x3,0x1c,0xdf,0x83,
0xf,0x3,0xe0,0x79,0x0,0x0,0x49,0x41,0x4,0x0,0x29,0x59,0x4,0x49,0x8e,0x2c,
0x82,0x7c,0xbf,0x5,0x80,0x23,0x26,0xc0,0x27,0x29,0x88,0x47,0x52,0x10,0x0,0xc0,
0xe5,0x48,0xb9,0x6c,0x90,0x84,0xc3,0x2,0x79,0xa0,0x98,0xee,0xc0,0x0,0x9b,0xe1,
0x86,0x22,0x0,0xb0,0x9c,0x44,0xb4,0x8,0x3,0x4c,0x7,0x21,0x88,0x61,0xef,0x42,
0x24,0x60,0xd8,0x9,0x0,0x3,0x67,0x5b,0x64,0xc0,0xc9,0x96,0xe7,0x64,0xc3,0x73,
0xb4,0xe1,0x3a,0x5a,0xa3,0x1c,0xac,0x39,0xe,0x56,0x80,0x1,0xdb,0xde,0x12,0x19,
0xb0,0x23,0xc,0xd8,0x5a,0x30,0x6d,0xcc,0x41,0xc,0x60,0xc0,0xda,0xc,0x18,0x70,
0x46,0x99,0x3a,0x59,0x82,0xee,0x1,0x3,0x8e,0x20,0x73,0x13,0x10,0x61,0xe0,0xae,
0x3d,0x8,0x31,0xb8,0x63,0x67,0x42,0x89,0x66,0xc0,0xe6,0xce,0x6b,0x3a,0x0,0xac,
0x8a,0x5e,0xe9,0x0,0xb0,0x8,0xa2,0x36,0xa1,0xb0,0x8,0x82,0x2d,0x10,0x6c,0x42,
0xf5,0x8b,0xa0,0xf5,0xd7,0xdd,0x84,0x1e,0x0,0x30,0x61,0x14,0x81,0x46,0xc6,0x56,
0x29,0x7,0xf8,0x16,0x0,0xd0,0x1,0x8,0x0,0x50,0x82,0xc9,0x26,0x14,0x22,0x90,
0x1e,0x0,0xd8,0x84,0x1e,0x0,0x40,0x39,0x80,0x7e,0x13,0x7a,0x2c,0x0,0xa5,0x2d,
0x45,0x34,0x0,0x18,0x81,0xf2,0xb,0x61,0x11,0x44,0x3,0xa0,0xef,0xc1,0x8,0x40,
0x26,0x5,0x0,0xf6,0x60,0x4,0x80,0x5e,0x4,0x61,0xf,0x2e,0xa6,0x37,0xa1,0x49,
0xb0,0x9,0xd5,0x3,0x80,0x3d,0x18,0x1c,0x80,0x4a,0x41,0x34,0x0,0xa4,0x6,0x90,
0x4d,0xa8,0xbe,0x7,0x47,0xd0,0x3d,0xf8,0xdb,0x0,0xd0,0xf7,0x60,0x1a,0x0,0x3f,
0x3,0x0,0x74,0xd,0x88,0xd2,0xf7,0x60,0x4,0xc0,0xb,0x36,0xa1,0x74,0xf,0x26,
0x0,0x28,0x70,0x13,0x6a,0x54,0x3,0x2,0x49,0xa,0x22,0x0,0x1c,0xad,0x1,0x7,
0xe,0xe0,0x4a,0x7a,0xb0,0x90,0x2c,0x82,0xc,0x0,0x8,0x48,0xa,0x2,0x0,0xf8,
0x4,0x0,0x1e,0x57,0x86,0x2,0x0,0x90,0x1,0x9,0x8a,0xe5,0x81,0x62,0xba,0x3,
0x3,0x1c,0x86,0x1b,0x8,0x0,0xa0,0xe5,0x24,0x62,0x3,0x6,0x8e,0xae,0x28,0x7,
0x21,0x88,0xe9,0xe0,0xc2,0xb4,0x27,0xb2,0x43,0x6,0x18,0xb6,0x7c,0x60,0xc0,0xd9,
0x96,0xe7,0x6c,0x83,0xc,0x38,0x59,0x73,0x41,0x8e,0xd6,0x1c,0x47,0x2b,0x60,0x80,
0xed,0x60,0x89,0xb2,0xb7,0x64,0xd9,0x5b,0xb0,0xec,0x2c,0x98,0x20,0x5b,0x73,0x10,
0xc3,0xc6,0xc,0xe4,0x6c,0xd,0x32,0x45,0x6,0x10,0x83,0x7b,0x8e,0x20,0xc4,0xc0,
0xc4,0x1,0x19,0xb8,0xb,0xb2,0x7,0x99,0xde,0xb1,0x3,0x6,0x10,0x83,0xdb,0xb6,
0x34,0x3,0xff,0x57,0x0,0xec,0xe0,0x55,0x0,0xc8,0x78,0x13,0x8a,0x11,0x88,0x0,
0xb0,0x1,0x1d,0x0,0x1c,0xe0,0xfe,0xde,0x6b,0x5c,0x5,0x3c,0x9c,0x36,0xea,0x0,
0xe3,0xa4,0x4,0x8f,0x4e,0xac,0x1d,0x6,0x0,0x82,0x90,0x61,0x13,0x7a,0xe0,0x0,
0x0,0x0,0x38,0x40,0xfb,0x21,0x0,0x8c,0xae,0x2,0x8e,0x3,0xa0,0xaa,0x86,0xba,
0xa,0x38,0xec,0x0,0xb8,0x8,0xa2,0x0,0x20,0x3d,0x18,0x37,0xa1,0x20,0x23,0x0,
0xf0,0x2a,0xe0,0x75,0x1,0x48,0xf8,0x56,0x0,0x62,0xf4,0x0,0x90,0x1a,0x40,0x22,
0x90,0x1,0x0,0xba,0x6,0x24,0x86,0xd0,0x3d,0x58,0xa7,0xef,0xc1,0xda,0xa3,0x0,
0xf8,0xeb,0x1d,0xe0,0x28,0x0,0x64,0x11,0xe4,0x8d,0x0,0x18,0xf5,0x60,0x2,0x80,
0xdc,0xb0,0x8,0xa2,0x1,0x20,0xb7,0x1,0xfe,0xe4,0x36,0x80,0xae,0x1,0x62,0x88,
0x40,0x98,0x82,0x30,0x2,0x19,0x0,0x10,0x12,0x0,0x5c,0x4,0x20,0x4f,0x0,0x40,
0xc0,0x57,0x80,0x0,0x0,0x14,0x57,0x6,0x2,0x0,0x50,0x6c,0x9,0x4a,0xf,0x0,
0x30,0xc0,0x25,0x0,0xa0,0x9c,0xc5,0x28,0x27,0x11,0x88,0xed,0xe8,0x4a,0x24,0x64,
0x13,0x6,0x58,0xf6,0x2e,0x28,0x3b,0x1,0x30,0xc0,0xb4,0xe3,0x33,0x6d,0xf9,0xc,
0x5b,0x1e,0xc3,0x6,0xe5,0x6c,0xc3,0x75,0xb6,0x6,0x71,0x9c,0xac,0x50,0x8e,0x56,
0x6c,0x47,0x64,0x80,0xe5,0x60,0x1,0xc,0x30,0x41,0x76,0xe6,0x20,0x6,0x30,0x60,
0x6b,0xe6,0xc,0xc,0xd8,0x98,0x82,0x9c,0xac,0x41,0xf7,0x9c,0xac,0xee,0x39,0x82,
0x2c,0x4d,0x1c,0x80,0x1,0xc4,0xe0,0xae,0x3d,0xc8,0xec,0xae,0x9d,0xd9,0x1d,0x3b,
0x82,0x81,0xed,0x3d,0x8a,0x81,0x7f,0x21,0x0,0x70,0x15,0x40,0x16,0x41,0x78,0x17,
0x46,0x39,0x80,0xfe,0x2a,0xc0,0xd8,0x1,0x5e,0xfb,0x2e,0xec,0x98,0xe,0x0,0x11,
0xe8,0xa8,0x3,0x1c,0x5c,0x5,0x20,0x0,0xdd,0xbd,0x33,0x5d,0x3d,0xa4,0x3,0x1c,
0x5,0x80,0x38,0x40,0xb,0x46,0xa0,0x86,0x43,0x0,0xc0,0x1a,0x14,0x1d,0xc0,0x8,
0x0,0xb8,0xb,0x83,0x2d,0x10,0xb5,0x8,0x7a,0x9,0x80,0x3,0x7,0x30,0x6c,0x42,
0xf,0x1,0x90,0x9e,0x51,0x9e,0x46,0x39,0x0,0xb5,0x8,0x4a,0x5,0x7,0x20,0x25,
0x18,0x37,0xa1,0xe0,0x0,0x58,0x3,0xe8,0x4d,0x68,0xbc,0x91,0x3,0xd0,0x8b,0x20,
0x74,0x0,0x3,0x0,0xfa,0x45,0x50,0xb2,0xbe,0x7,0x27,0xea,0x17,0x41,0x47,0x1,
0x8,0x8,0xd4,0x3b,0x0,0x49,0x41,0x78,0x15,0x40,0x1,0xe0,0x83,0xe,0xa0,0x54,
0xe9,0x37,0xa1,0x46,0x0,0x90,0x1a,0x60,0x4,0x0,0x95,0x82,0x88,0x3,0x1c,0x7,
0x0,0x55,0x3,0x54,0xa4,0x6,0x28,0x9,0x3,0xde,0x28,0x0,0x0,0x19,0xf0,0x24,
0xc,0x20,0x0,0x2,0x23,0x0,0xf8,0x1c,0x29,0xc8,0x0,0x0,0x30,0xc0,0x63,0xb9,
0xf3,0x98,0x28,0x60,0x0,0xe5,0x2c,0x46,0x11,0x0,0x38,0x4e,0xae,0x1c,0x47,0x90,
0x90,0xe3,0x80,0x62,0xdb,0xbb,0x10,0x9,0x80,0x1,0x96,0x1d,0x9f,0x65,0x8b,0x62,
0xda,0xf2,0x98,0x36,0x20,0x2e,0xc3,0x1a,0xc4,0x1,0x39,0x5b,0x81,0xd8,0x4e,0x96,
0x20,0x96,0x23,0xc8,0x2,0x30,0x60,0x3a,0x98,0x33,0xed,0xcd,0x19,0x20,0x3b,0x33,
0x90,0x33,0x60,0x60,0x6b,0xea,0x4,0xc,0xd8,0xdc,0x3,0x6,0x10,0x0,0x2b,0x13,
0x7,0x60,0x0,0x31,0x20,0x0,0xa0,0xee,0x50,0xc,0xd8,0x9a,0xde,0xa6,0x18,0x78,
0xbd,0x12,0x7c,0x28,0x2,0xc1,0x5d,0x98,0xe1,0x1e,0x80,0xdc,0x7,0x1f,0x72,0x0,
0x12,0x81,0x36,0x89,0x3,0x10,0x0,0x8e,0x77,0x80,0x85,0x65,0xe3,0xcb,0x60,0x1a,
0x80,0x49,0x58,0x83,0x92,0x8,0x44,0x75,0x80,0x3,0x0,0x46,0x96,0xc8,0x55,0x0,
0x3a,0x40,0x1f,0xde,0x85,0x1d,0x2,0x40,0xef,0x0,0xfa,0x4d,0x28,0xd5,0x1,0x70,
0x13,0x6a,0x0,0x0,0x6a,0x0,0xb5,0x5,0xa2,0xae,0x2,0x8e,0x3a,0x80,0xfe,0x2a,
0x80,0x8e,0x40,0x64,0x13,0x7a,0x10,0x81,0x72,0xf3,0x6a,0xf,0x47,0x20,0xc3,0x22,
0x8,0x0,0x30,0xd4,0x80,0x92,0x64,0x2a,0x2,0x21,0x3,0x4,0x80,0x44,0xaa,0x7,
0x1f,0x89,0x40,0x86,0x45,0x50,0x46,0x34,0xbd,0x8,0xc2,0xcb,0x60,0x1a,0x80,0xc8,
0x3f,0x1a,0x0,0x5f,0xbf,0x6f,0x5,0xe0,0x60,0x11,0x14,0x42,0x7a,0x30,0x71,0x80,
0x83,0x1a,0x70,0x14,0x0,0x37,0x37,0xac,0x1,0x68,0x2,0x22,0xca,0x4,0x10,0x0,
0x57,0xa1,0x37,0x8,0x0,0x40,0x6,0x8,0x0,0x2e,0x7c,0x5,0x8,0x0,0x40,0x71,
0x65,0x28,0x2,0x0,0x9f,0x2d,0xa1,0xc5,0xf2,0xe0,0x83,0x8,0x0,0x3c,0x86,0x1b,
0xca,0x59,0x8c,0x72,0x12,0x11,0xb9,0xf2,0x1c,0x5d,0xb9,0x20,0x7,0x21,0x91,0xb,
0xc7,0x1e,0x24,0xe0,0xd8,0xa1,0xd8,0xb6,0x7c,0x22,0x1e,0xdb,0x86,0xc7,0xb2,0xe1,
0xb2,0xac,0x51,0x4c,0x6b,0xe,0xd3,0x8a,0xc3,0xb0,0x62,0x33,0x2c,0xd9,0xce,0x28,
0x96,0x93,0x5,0x88,0xe9,0x8,0x32,0x7,0xc,0x18,0xe,0x66,0xc,0x7b,0x33,0x67,
0x60,0xc0,0xce,0x14,0x19,0x40,0xc,0xee,0x39,0x2,0x3,0x88,0x81,0x89,0x3,0x62,
0x70,0xd7,0x1e,0x18,0x40,0xc,0xee,0xd8,0x51,0xc,0x98,0xdd,0xa6,0x18,0xf8,0x17,
0x0,0x0,0x6b,0x50,0xca,0x1,0x5e,0xa0,0xc0,0x1,0xe0,0x81,0x8,0x70,0x0,0xc3,
0x3,0x11,0x14,0x0,0xfa,0xcb,0x60,0x0,0x60,0x17,0x9f,0x86,0xd8,0x38,0x78,0x1a,
0x62,0x71,0xe5,0xd9,0xb1,0x0,0xe0,0x3d,0xc0,0xd4,0x26,0xb9,0xa,0x20,0x0,0x60,
0xf,0x26,0x1d,0x80,0xbe,0xa,0xa0,0x23,0x50,0xef,0x11,0x0,0xba,0xd,0x11,0x88,
0x6c,0x81,0xe0,0x2e,0xc,0xd6,0xa0,0x87,0x1,0x80,0x45,0x50,0x4d,0xfd,0xab,0x1,
0x38,0xe2,0x0,0xf4,0x26,0x14,0x3b,0x40,0x5e,0x7e,0x1d,0x2,0x40,0x5f,0x5,0x50,
0xe,0x40,0x3,0x0,0x1d,0x0,0x1d,0x80,0xf4,0x60,0xb8,0xb,0x3b,0xa,0x0,0xbd,
0x9,0x25,0x0,0x1c,0x38,0x0,0x55,0x3,0x48,0x7,0x30,0x0,0x40,0xa7,0xa0,0x94,
0xf0,0x97,0x1,0x8,0xa5,0x1d,0x20,0x28,0x98,0x8e,0x40,0x47,0x1c,0xe0,0x58,0x0,
0xbc,0xd,0x11,0x88,0x2,0x0,0x7b,0x30,0xd,0xc0,0xe1,0x1e,0x1c,0x40,0x6a,0x0,
0x46,0x20,0x77,0x88,0x40,0x98,0x82,0xe,0x1,0x20,0x72,0x55,0x89,0x10,0x0,0xc2,
0x0,0x1,0x40,0x28,0xf0,0x4,0x51,0x0,0xb8,0xf0,0xe4,0x20,0x3,0x0,0xc0,0x0,
0x8a,0x2d,0x41,0xb1,0x3c,0x50,0x4c,0x77,0x10,0x9f,0xe1,0x86,0x72,0x16,0x13,0x89,
0xf8,0x4e,0x44,0x8e,0xae,0x20,0x9e,0x83,0x90,0xc8,0x85,0x67,0x4f,0x64,0x27,0x0,
0x71,0xed,0xf8,0x5c,0x5b,0x10,0x8f,0x6b,0xc3,0xe3,0xa0,0xb8,0x6c,0x6b,0x10,0x87,
0x6d,0xc5,0x61,0x59,0xb1,0x41,0x4c,0x4b,0x10,0x8b,0x61,0x1,0x62,0x3a,0x5b,0x30,
0x9d,0xcc,0x41,0xc,0x47,0x90,0x99,0xb3,0x83,0x99,0xb3,0xbd,0x29,0xc8,0xc9,0xe,
0x18,0xb8,0xe7,0x8,0x42,0xc,0x4c,0x1c,0x40,0x88,0xc1,0x5d,0x7b,0x82,0x81,0x9d,
0x5,0x61,0xc0,0xfc,0x8e,0x2d,0x61,0xe0,0x5f,0x0,0x0,0xe5,0x0,0xc4,0x4,0x9e,
0x12,0x0,0xbe,0xf5,0x69,0x8,0xa,0x80,0x9d,0x95,0xf5,0x17,0xaf,0x7a,0x1c,0x68,
0x66,0x9e,0xee,0x0,0xe0,0x0,0x50,0x82,0xa1,0x3,0x1c,0x72,0x80,0xd1,0xef,0x2,
0xc0,0x10,0x81,0x3a,0xf0,0x26,0x98,0x5c,0x5,0x50,0x77,0x61,0x47,0x22,0x90,0xe1,
0x2a,0xe0,0x90,0x3,0x94,0x95,0xb7,0x19,0x47,0xa0,0xa2,0x92,0x26,0xfd,0x55,0x0,
0x5d,0x82,0xd,0x0,0x64,0xe7,0x54,0x67,0x19,0x1,0x40,0x47,0xa0,0x3,0x0,0xa0,
0x7,0x17,0x1d,0xef,0x0,0xf4,0x22,0x28,0x5b,0xad,0xc9,0xd2,0xdf,0x85,0x19,0x3,
0x90,0x7a,0xd4,0x1,0xc2,0xe9,0x8,0x64,0xbc,0x9,0x5,0x6,0xe0,0x1e,0x80,0x2,
0xc0,0x3f,0x40,0xad,0x5f,0x4,0xa1,0x3,0xf8,0xf8,0x1e,0x8a,0x40,0xde,0x4a,0xec,
0x0,0xa4,0x7,0x1b,0x0,0xa0,0x52,0x50,0x30,0x5,0x0,0xb9,0xf,0x36,0xd4,0x0,
0x7f,0xc2,0x0,0xd,0x80,0x1b,0x71,0x0,0xb1,0x8,0xa4,0x2,0x13,0x0,0x0,0x44,
0x34,0x0,0xc8,0x80,0xab,0x80,0x66,0x40,0xc8,0x57,0x8,0x79,0x20,0x64,0xc0,0x85,
0x2b,0x43,0x71,0xa4,0x28,0xb6,0x4,0xc5,0xf2,0x40,0x31,0xdd,0x51,0xc,0x37,0x1,
0x4a,0x2c,0x70,0x16,0xbb,0x38,0x8b,0x5,0x4e,0x22,0x94,0xa3,0x2b,0x91,0x50,0xe0,
0x0,0x72,0x11,0xd8,0xa3,0xf8,0xf6,0x2,0xbe,0x1d,0x88,0xcf,0xb7,0x25,0xb2,0xe1,
0xf1,0x50,0x5c,0x9e,0x35,0x97,0x6b,0xcd,0xe1,0x5a,0x71,0x38,0x28,0x36,0xc7,0x92,
0xcd,0xb6,0x64,0xb1,0x40,0x16,0x2c,0xa6,0x5,0x93,0x61,0xe,0x62,0x38,0x9b,0x33,
0x9c,0xcc,0x40,0xce,0x80,0x81,0xa3,0xa9,0x93,0x83,0xa9,0x13,0x62,0x70,0xcf,0x11,
0x64,0x6b,0xe2,0x60,0x43,0x64,0x7d,0xd7,0x9e,0x30,0x60,0x67,0x79,0x87,0x62,0xc0,
0xd6,0xfc,0x36,0x30,0xf0,0x2f,0x3,0x80,0x7a,0x1c,0xc8,0x8,0x0,0xa8,0x1,0x86,
0xc7,0x81,0xc,0x5b,0x20,0x7d,0x4,0x32,0x0,0xb0,0x4d,0xad,0x41,0xc1,0x1,0xe,
0x3f,0xf,0x77,0xa8,0x3,0xd0,0x0,0x18,0x4a,0x30,0x2e,0x82,0x20,0x2,0x2d,0x7e,
0x47,0x4,0xea,0x1c,0x6f,0xa5,0x1,0x18,0x79,0xc9,0x1,0xfa,0x6b,0x21,0x2,0xe1,
0x55,0x40,0xcf,0x91,0x8,0x54,0x5e,0xd9,0x6e,0xc,0x40,0x71,0x49,0x73,0x51,0x31,
0x0,0xd0,0x48,0x45,0x20,0x28,0xc1,0xe8,0x0,0xf9,0x7,0xe,0x80,0x0,0xd0,0x57,
0x1,0x70,0x17,0x46,0x3b,0x40,0x2a,0x5e,0x5,0x10,0x7,0x48,0x79,0x45,0x4,0x32,
0x2,0x80,0x76,0x0,0x75,0x86,0xfe,0x2e,0x2c,0x2d,0x32,0xfa,0x28,0x0,0x61,0x7,
0x0,0x1c,0x72,0x80,0xc0,0x20,0x0,0x0,0xef,0xc2,0x8e,0x3,0x80,0x3c,0x12,0x47,
0x3a,0x80,0x31,0x0,0xa4,0x7,0x1b,0x16,0x41,0xc1,0x24,0x5,0x1d,0x5,0xc0,0x83,
0x0,0x80,0xc,0xb8,0xf9,0xa2,0x0,0x0,0x64,0x40,0x85,0xc,0x0,0x0,0xc8,0x80,
0x37,0xa,0x0,0x40,0x6,0x3c,0x51,0x7c,0x5,0x8,0x0,0x40,0x71,0x65,0x28,0x8e,
0x14,0xa5,0x7,0x40,0xc8,0xf2,0x10,0x32,0xdd,0x89,0xdc,0x84,0xc,0x22,0x67,0x31,
0xca,0x49,0x44,0xe4,0x2a,0x74,0x4,0x9,0x85,0xe,0x44,0xf6,0x2e,0x44,0x2,0xa1,
0x1d,0xca,0xc5,0x96,0x4f,0xc4,0x73,0xb1,0x1,0x71,0x5d,0xac,0xb9,0x2,0x14,0x87,
0x6f,0xc5,0xe1,0x59,0xb1,0x79,0x96,0x6c,0x2e,0x8a,0xc5,0xb1,0x0,0x31,0xd9,0x16,
0x4c,0x96,0x39,0x93,0x69,0xce,0x60,0x9a,0x31,0x18,0x66,0xce,0x20,0x67,0x53,0x67,
0x27,0x53,0x27,0xc4,0xe0,0x9e,0x23,0xc8,0x1e,0x30,0x30,0x71,0x40,0xc,0xee,0xda,
0x83,0x10,0x83,0x3b,0x14,0x3,0xb6,0x16,0xb7,0x81,0x81,0x7f,0x1,0x0,0x86,0x8,
0x44,0x95,0x60,0x78,0x20,0x54,0xff,0x3c,0x1c,0x5c,0x6,0x43,0x9,0x86,0x45,0x10,
0xd5,0x1,0xc8,0x1a,0xd4,0xd8,0x1,0x0,0x0,0x9c,0x7e,0xc8,0x3f,0xf3,0x4b,0x4f,
0xe0,0x26,0x78,0x6e,0x91,0x7a,0x20,0x14,0x1,0x98,0xa2,0x1e,0x85,0x38,0xe2,0x0,
0x10,0x81,0xf0,0x71,0x20,0xa,0x80,0x5,0xfd,0xf3,0x70,0x73,0x3d,0x46,0x25,0xf8,
0x60,0xb,0x74,0xe0,0x0,0xc3,0x87,0x23,0x10,0x7d,0x11,0xa6,0xbf,0xc,0x3e,0xec,
0x0,0xd4,0x65,0x70,0x39,0x96,0x60,0x0,0x0,0x8e,0x7f,0x3,0x0,0xfa,0x8,0x64,
0x78,0x1a,0x82,0x72,0x80,0x4a,0xfd,0x65,0xf0,0x41,0x4,0x3a,0xe,0x80,0xfc,0x83,
0xe,0xf0,0xad,0x0,0xe8,0xef,0xc2,0x52,0x22,0xf4,0x11,0xe8,0x28,0x0,0x21,0x70,
0x17,0x86,0x11,0xe8,0xdb,0x1,0x50,0x1d,0x1,0x0,0x7b,0x70,0x18,0x5,0x80,0xbe,
0x7,0x1f,0x5,0x40,0x82,0x3d,0xd8,0xff,0x65,0x0,0x90,0x1,0x2,0x80,0xd8,0x55,
0x89,0xd2,0x3,0x80,0xc,0x18,0x1,0xe0,0xca,0x93,0xa3,0xb8,0x32,0x90,0x1,0x0,
0x60,0xc0,0x95,0xe5,0x41,0xe4,0xee,0xca,0x24,0x62,0xb8,0x81,0x44,0xce,0x62,0x22,
0x91,0xc8,0x9,0xe4,0x2a,0x72,0x24,0x72,0x10,0x8a,0x51,0x2e,0x22,0x7b,0x90,0x40,
0x64,0x47,0x89,0x2f,0xb2,0x5,0xf1,0x44,0x36,0x94,0xb8,0x22,0x6b,0xae,0xab,0x35,
0xc7,0xd5,0xa,0x25,0xb4,0x62,0xb,0x2d,0xd9,0x2e,0x96,0x2c,0x17,0xb,0x96,0xc0,
0x82,0xc5,0xb7,0x60,0xf2,0xcc,0x99,0x5c,0x73,0x6,0xc7,0x9c,0xc1,0x36,0x63,0xb0,
0xcc,0x9c,0x99,0xa6,0x20,0x27,0x86,0xa9,0x93,0xf3,0x3d,0x47,0xa7,0x7b,0x8e,0x8e,
0x80,0x81,0x89,0x83,0xbd,0x89,0x83,0x9d,0x89,0xbd,0x2d,0x61,0xc0,0xe6,0xae,0x9d,
0xf5,0x1d,0x3b,0x82,0x1,0x30,0xf0,0x2f,0x6,0x80,0x38,0x0,0xd5,0x1,0x68,0x0,
0x9e,0xe0,0xd3,0x10,0x86,0x2d,0x90,0x51,0x9,0x36,0x76,0x80,0x43,0x0,0xcc,0x22,
0x0,0xf,0x1,0x0,0x58,0x83,0x2,0x0,0x7,0x11,0x88,0xee,0x0,0xab,0xd8,0x1,
0x48,0x4,0x1a,0xa4,0x1,0x98,0x27,0xf,0x84,0xbe,0x54,0x82,0xbb,0xa8,0x7b,0x80,
0xb1,0x16,0xbc,0xc,0xa6,0xaf,0x2,0x9a,0x5a,0xe,0x22,0x10,0x29,0xc1,0xaf,0x70,
0x0,0xfa,0x69,0x8,0x7a,0xb,0x44,0x22,0x10,0xed,0x0,0x34,0x0,0x47,0x1d,0x0,
0x1,0xc8,0xc0,0xa7,0x21,0xca,0xd3,0x32,0xe8,0xe,0x70,0x14,0x80,0x24,0x2c,0xc1,
0xe4,0x2e,0x2c,0x4f,0xab,0xcb,0x25,0x57,0x1,0xe4,0x1e,0x40,0x93,0x75,0xd4,0x1,
0x62,0xd2,0xa2,0xf4,0xe,0x70,0x14,0x80,0xb0,0x84,0x10,0xaa,0x3,0xbc,0x2,0x0,
0x3f,0xdc,0x84,0x1a,0x22,0x10,0x95,0x82,0xc,0xe,0x40,0x6d,0x42,0xf,0x1,0x20,
0x87,0x8,0x84,0x29,0x28,0x88,0x98,0x0,0x46,0x20,0x2,0x0,0x61,0x80,0x38,0x80,
0xbb,0xde,0x1,0x0,0x0,0x37,0x91,0xa,0x64,0x0,0x0,0x18,0x10,0xbb,0x78,0x1,
0x0,0x22,0x81,0x27,0x8a,0xaf,0x40,0xf1,0xe4,0x20,0xa,0x0,0x57,0x8e,0x94,0x48,
0xe2,0xca,0x96,0x88,0xd8,0x1e,0x22,0x16,0x11,0xd3,0x1d,0x24,0x66,0xb8,0x11,0x89,
0xc5,0xce,0x62,0x37,0x67,0x91,0x9b,0x13,0xca,0xdd,0xd1,0x95,0x48,0xe8,0xee,0x80,
0xf2,0xb0,0x77,0x41,0xd9,0x9,0x88,0xf8,0x1e,0xb6,0x44,0x36,0x3c,0x90,0xc4,0x86,
0x2b,0xb1,0x46,0x79,0x58,0x73,0x3c,0xac,0x38,0xee,0x56,0x6c,0x37,0x4b,0xb6,0xd8,
0x92,0x2d,0xb2,0x64,0xb9,0x5a,0xb0,0x84,0x16,0x4c,0x17,0x73,0x26,0xdf,0xdc,0x89,
0x65,0xea,0xe0,0x78,0xd7,0xd6,0xfa,0xb6,0x95,0xd9,0x4d,0xb3,0xdb,0x57,0x4d,0xef,
0x5e,0x71,0x62,0xde,0x73,0x62,0xdc,0x73,0x44,0xc,0x4c,0x1c,0x1c,0x4d,0x1c,0x10,
0x83,0xbb,0xf6,0x76,0x77,0x1,0x3,0x3b,0x9b,0x3b,0x14,0x3,0xb6,0x96,0xaf,0x9,
0x0,0x75,0xb,0xf6,0xf2,0x2b,0x1,0x7,0x0,0x3c,0xc5,0x12,0xc,0x4f,0x44,0x53,
0xe,0x40,0x3f,0xb,0x44,0xee,0x1,0x56,0xf,0x3a,0xc0,0x51,0x7,0x98,0x5d,0x78,
0x44,0x0,0x78,0x40,0x3d,0xb,0x34,0x39,0xf3,0x52,0x7,0xa0,0x1,0x30,0x38,0x0,
0x2,0x70,0xb4,0x4,0x1b,0x77,0x80,0xf6,0x57,0x74,0x0,0xbc,0xc,0xee,0xad,0x7e,
0x29,0x2,0xc1,0x2b,0x1,0x65,0x15,0xd0,0x1,0x5a,0xd,0x6b,0xd0,0x6f,0x1,0x80,
0xee,0x0,0xd9,0x7a,0x7,0xc8,0xa4,0x0,0x28,0x25,0x4f,0x43,0x94,0xe0,0x1a,0x14,
0x17,0x41,0x64,0xb,0x74,0x18,0x0,0xfd,0xd3,0x10,0xaf,0x2,0x80,0xba,0xa,0xd0,
0x3b,0x40,0x44,0x12,0xed,0x0,0x7a,0x0,0x82,0x8f,0x0,0x80,0x35,0x0,0x3b,0x80,
0x31,0x0,0x3e,0xf4,0x26,0x34,0x52,0x49,0x47,0x20,0x3d,0x0,0x58,0x3,0x68,0x7,
0xa0,0x16,0x41,0x7,0x0,0x20,0x3,0x1,0x92,0xc3,0x0,0x20,0x3,0x30,0xfd,0x7a,
0x0,0xdc,0x5c,0x95,0x20,0x9c,0x7e,0x2,0x0,0x4a,0xe0,0x89,0xe2,0x2b,0x40,0x14,
0x0,0x22,0xae,0x8c,0x48,0x2a,0xe2,0x80,0x60,0xfa,0x25,0x62,0x10,0xcb,0xc3,0xd,
0xc4,0x74,0x47,0x31,0xdc,0xdc,0x51,0x62,0x77,0x67,0xb1,0x7,0xc8,0x49,0x24,0x1,
0x39,0xba,0x4a,0x29,0x39,0x8,0x65,0x20,0x7b,0x17,0x90,0xdc,0xde,0x45,0x61,0x27,
0x40,0xd9,0xf2,0x69,0xd9,0xf0,0xe4,0x20,0x6b,0x2e,0x48,0x66,0xcd,0x91,0x59,0x71,
0x24,0x56,0x4c,0x91,0x85,0x13,0xd7,0xd4,0xde,0xe9,0xae,0xb5,0xf5,0x2d,0x73,0x93,
0x6b,0x26,0x37,0x2e,0xdf,0xfa,0xfa,0xe2,0xf5,0x73,0xe7,0xaf,0x9d,0x3d,0x7b,0xf9,
0xf4,0xe9,0x4b,0x27,0x4f,0x7d,0xfd,0xd5,0x57,0x17,0xbf,0xfc,0xd2,0xc2,0xf2,0xba,
0x13,0xeb,0x9e,0x23,0x88,0x9,0x18,0x98,0x38,0x0,0x6,0xe,0x77,0xed,0x69,0x6,
0xee,0xd8,0xd9,0xde,0x1,0xc,0x0,0x98,0xd7,0x73,0x80,0x57,0x1,0x70,0x10,0x81,
0xf4,0xef,0xc4,0xa0,0x3,0xc0,0xa,0xe8,0x95,0x11,0x8,0x18,0x78,0xb6,0xb8,0x62,
0x88,0x40,0x7,0x0,0x4c,0xc1,0xf4,0x4f,0x6f,0x1e,0x44,0x20,0xe8,0x0,0xe3,0xe4,
0x26,0x18,0x1d,0xe0,0x8,0x0,0xb3,0x3d,0x7d,0x33,0x86,0x7b,0x0,0x12,0x81,0x40,
0xa4,0x3,0x20,0x0,0x23,0xcd,0xad,0xc3,0x70,0xfc,0x1f,0x2a,0xc1,0xd,0x7d,0xc7,
0x2,0x80,0x1d,0xc0,0xc8,0x1,0xb0,0x3,0xbc,0x9e,0x3,0x90,0xe7,0xe1,0x5e,0x6,
0xa0,0xe8,0x28,0x0,0x9,0xe8,0x0,0x34,0x0,0xda,0x3f,0xe,0x80,0xd0,0x57,0x0,
0x40,0x7a,0xf0,0x1,0x0,0xc4,0x4,0xa2,0xf5,0x3d,0x38,0x92,0x98,0x40,0x84,0x7e,
0x11,0x14,0x46,0x7a,0xb0,0x1,0x0,0xda,0x1,0x90,0x1,0x69,0x20,0x31,0x81,0x0,
0xc2,0x0,0xa4,0x20,0x3f,0x30,0x1,0xf,0x37,0x5f,0x0,0xc0,0x5d,0xec,0x83,0x22,
0xe,0x40,0x1,0xe0,0x26,0xf4,0x46,0xb9,0x78,0x81,0x8c,0x1,0x10,0xf3,0xe4,0x44,
0x32,0x31,0x17,0x24,0x15,0x73,0x40,0x12,0x37,0x36,0xca,0x9d,0xe5,0x1,0xf2,0x60,
0xba,0x4b,0x50,0x6e,0x52,0x6,0x4a,0xe6,0x2c,0x96,0xa3,0x44,0xa,0x27,0x91,0xa7,
0x93,0xc8,0xcb,0xd1,0x15,0xe5,0x20,0x4,0x79,0x83,0xec,0x5d,0x50,0x76,0x2,0x5a,
0xb6,0x7c,0x4f,0x5b,0x38,0xf2,0x99,0x42,0xb,0x27,0xb6,0xa9,0x9d,0xfd,0x1d,0x2b,
0xf3,0x9b,0xa6,0xb7,0xae,0xde,0xfe,0xe6,0xd2,0xcd,0x8b,0x17,0xae,0x9f,0x3f,0x7f,
0x95,0x8c,0xfb,0x37,0xa7,0x4e,0x5d,0x3a,0x79,0x12,0x4,0x43,0x8f,0x73,0x4f,0x46,
0xff,0xc2,0x89,0x13,0xf0,0x79,0xe9,0xdc,0x49,0x7,0xf6,0x5d,0x27,0xee,0x3d,0x47,
0xe,0x60,0x60,0xe2,0xc0,0x34,0x71,0x70,0x36,0xb1,0x77,0xbc,0x6b,0x4f,0x30,0xb0,
0xb3,0xa3,0x19,0x78,0x6d,0x0,0x28,0x6,0x5e,0x50,0x2f,0xc4,0x90,0x2d,0x10,0xfd,
0x52,0x18,0x15,0x81,0x28,0x7,0xa0,0x1e,0x85,0xa0,0x0,0x80,0x2,0xa0,0xef,0x0,
0xb8,0x3,0xc5,0x2d,0xd0,0x11,0x7,0x78,0x6c,0xe4,0x0,0xe4,0xf8,0x47,0x0,0x36,
0xf0,0x1e,0x80,0x8a,0x40,0xf0,0x28,0x84,0x91,0x3,0xc,0x60,0x7,0xa0,0x1c,0x80,
0x2,0x60,0x9a,0xba,0x8,0xa3,0x3b,0xc0,0xa1,0x12,0x4c,0x1,0x30,0xd8,0xd0,0x34,
0xa0,0x7f,0x16,0x8,0x57,0x40,0xa4,0x4,0x77,0x57,0xd5,0x74,0x19,0x6e,0x82,0x9,
0x0,0x7,0xe,0x50,0x5c,0x7a,0x0,0x40,0x1,0x94,0xe0,0xc2,0xfa,0xbc,0x2,0x28,
0xc1,0xd0,0x1,0x6a,0xe0,0x95,0x0,0x74,0x80,0x1c,0x28,0xc1,0xfa,0x8,0xa4,0x77,
0x0,0x2c,0xc1,0x69,0x94,0x3,0x18,0x3,0x90,0x7f,0x34,0x2,0x21,0x0,0xf4,0x1a,
0x34,0x16,0x4b,0x70,0x3a,0x5e,0x84,0x19,0x22,0xd0,0xf1,0xe,0x90,0x10,0x8c,0x29,
0x88,0x74,0x0,0xac,0x1,0xb8,0x5,0x3a,0x16,0x0,0xfd,0x5d,0xd8,0x2b,0x0,0xa0,
0x37,0xa1,0xc1,0x98,0x82,0x64,0x41,0x6,0x0,0xa4,0x7,0x0,0x60,0xa,0xf2,0x70,
0xf7,0x45,0x6,0xf4,0x0,0x0,0x3,0xee,0xae,0x4a,0x90,0x31,0x0,0x6e,0x2,0x4f,
0x22,0x85,0x1b,0x1f,0x24,0x77,0xe3,0x81,0x64,0x6e,0x5c,0x94,0x3b,0x47,0x8a,0x62,
0x4b,0x3c,0x40,0x2c,0xf,0x9,0xcb,0x43,0xca,0xf2,0x90,0x33,0xdd,0x41,0xa,0x86,
0x9b,0x27,0xc3,0xcd,0xcb,0xd9,0xcd,0xdb,0x59,0xac,0x4,0x39,0x89,0x54,0x20,0x47,
0x57,0x5a,0xe,0x30,0xfa,0x7c,0xa9,0xd,0x47,0x64,0xc5,0xe0,0x9a,0x43,0x5c,0xb1,
0xb6,0xbc,0x6d,0x7e,0xe7,0xba,0xc9,0xd5,0xcb,0xb7,0x2f,0x7d,0x7d,0xe3,0xfc,0x85,
0xeb,0xe7,0xce,0x5d,0x39,0x73,0x6,0x66,0x9d,0x4c,0x3c,0x9c,0xf1,0x27,0xa9,0xb9,
0x37,0xc,0x3d,0x35,0xfa,0xe7,0xc9,0xdc,0x83,0xe0,0x8f,0xb,0x4,0x83,0xdb,0x77,
0x2e,0x3a,0x9,0xee,0x39,0xf2,0xef,0x39,0xf2,0x0,0x3,0x13,0x7,0xc0,0x80,0x71,
0xd7,0xde,0xf9,0x2e,0x60,0x60,0xe7,0x70,0x7,0xa0,0x2,0x1f,0x78,0x6d,0x0,0xa8,
0xfc,0x63,0xfc,0x56,0x24,0xec,0x40,0x71,0xd,0xaa,0x7f,0x2b,0x92,0x6,0x80,0xca,
0x3f,0xf4,0xe3,0xd0,0x7b,0xeb,0xf7,0xf1,0x12,0x40,0xbf,0x6,0xfd,0x4e,0x0,0x8,
0x3,0x93,0xeb,0x63,0x13,0x6b,0x87,0x0,0x18,0x46,0x7,0xd0,0x3,0x30,0xd7,0x83,
0x0,0xcc,0x76,0xf7,0x11,0x0,0x7a,0x26,0x11,0x80,0x83,0xe,0x80,0xe,0xd0,0x44,
0x3b,0x0,0xd,0x40,0x7d,0x23,0x6e,0x81,0xc,0xe,0x0,0xc,0x1c,0xb,0x40,0x49,
0x19,0x5e,0x84,0x19,0x1c,0x0,0x0,0x30,0xea,0x0,0x8,0x0,0x3c,0xa,0x41,0x6d,
0x81,0x32,0xb3,0x2a,0xb0,0x3,0x18,0x3,0x40,0x47,0x20,0x2,0x40,0x32,0x15,0x81,
0x8c,0x1,0xc8,0xc1,0xe,0xa0,0xcd,0x8e,0x3b,0xd4,0x1,0xbe,0x3,0x80,0xa3,0xe,
0xf0,0xad,0x0,0x1c,0x44,0x20,0x23,0x7,0xf0,0x82,0xe,0x80,0x35,0x20,0x94,0x98,
0x40,0x88,0x5c,0xf1,0x4a,0x0,0xc0,0x4,0x24,0x7a,0x0,0x3c,0xdc,0x7c,0x3c,0x90,
0x1,0x15,0x2,0x20,0x42,0x0,0xdc,0x5d,0xbd,0xdd,0x85,0x20,0x2f,0x77,0x17,0x90,
0xa7,0xbb,0x0,0xa4,0x70,0xe7,0x83,0xe4,0xee,0x3c,0x90,0xcc,0x9d,0x2b,0xf3,0x0,
0x71,0xa4,0x20,0x9,0x5b,0x22,0x65,0x4b,0x64,0x6c,0xf,0x39,0xcb,0x43,0xc1,0xf2,
0xf0,0x64,0xba,0x7b,0x31,0xdd,0xbd,0x19,0x6e,0x20,0x25,0xc3,0x4d,0xe5,0x2c,0xf2,
0x76,0x82,0xb4,0xc3,0x13,0xdb,0xc2,0x3e,0xc7,0xd9,0xc9,0xcc,0xd6,0xf2,0x8e,0xd5,
0xdd,0x9b,0x66,0xd7,0xaf,0xdd,0xbd,0xc,0x49,0xe6,0xeb,0x9b,0x17,0x2e,0xc2,0xe9,
0x7e,0xed,0xdc,0x39,0x10,0xc,0x3d,0x4c,0xfc,0x95,0x33,0x67,0xaf,0x9c,0x86,0xe9,
0x3f,0xd,0x7f,0x7f,0x4d,0x46,0x1f,0x84,0xa3,0x4f,0x0,0x0,0xc,0xc,0x3e,0x70,
0x85,0xfc,0x1b,0xf4,0xd3,0x8f,0x18,0x5c,0xfc,0xea,0x4b,0x6b,0xd6,0x4d,0x27,0xe1,
0x3d,0x47,0x97,0x7b,0x8e,0x2,0x13,0x7,0x9e,0x89,0x3,0xc7,0xc4,0x9e,0x75,0xd7,
0x1e,0x30,0x70,0xba,0x63,0xe7,0x78,0x7,0x30,0xf8,0x97,0x2,0x70,0xe8,0x85,0x18,
0xc2,0x0,0xfd,0x30,0x1c,0x79,0x16,0x8,0x6f,0xc1,0xf0,0x7d,0x0,0xbc,0x6,0x5e,
0xdb,0x84,0x4b,0x0,0xea,0x1e,0xe0,0x3b,0x1,0xa0,0x1c,0x80,0x2,0x60,0x95,0x38,
0xc0,0x32,0xb9,0x8,0xa3,0x23,0x50,0x3f,0x3a,0x0,0x5,0x0,0xe5,0x0,0x53,0xc4,
0x1,0x26,0x20,0xff,0xb4,0x75,0x8c,0x91,0xc7,0xa1,0xb1,0x1,0xeb,0x23,0xd0,0x81,
0x3,0x50,0x37,0xc1,0xfa,0x35,0xe8,0xf1,0xe,0x70,0x18,0x0,0xea,0xf8,0x37,0xac,
0x41,0x1,0x0,0x38,0xfe,0xf,0x3b,0xc0,0x41,0x4,0x2a,0xd1,0x77,0x0,0x0,0xa0,
0x50,0xdf,0x1,0x8,0x0,0x24,0x2,0x69,0xe3,0x69,0x0,0xe8,0x12,0x1c,0x97,0x19,
0x43,0xad,0x41,0x63,0x5f,0x72,0x80,0xc8,0xe4,0x30,0xaa,0x3,0xe0,0x26,0x94,0x2e,
0xc1,0x94,0x3,0x90,0x45,0xd0,0x81,0x3,0x90,0x14,0x84,0x25,0x58,0x1f,0x81,0xa2,
0xa8,0x12,0x4c,0x47,0x20,0x65,0x38,0xb9,0xa,0x38,0x6,0x0,0x39,0x71,0x0,0x19,
0x89,0x40,0xe0,0x0,0x28,0x98,0xfe,0x97,0x0,0xf0,0x10,0xab,0x3c,0xbe,0xb,0x0,
0xf,0xbe,0xdc,0x83,0x47,0xc4,0x95,0x49,0x40,0x1c,0xa9,0x94,0x23,0x95,0x71,0x24,
0x72,0xb6,0x44,0xc1,0x96,0x78,0xb2,0x3c,0xbc,0x58,0xee,0x3e,0xc,0x37,0x9,0x3,
0x6e,0xb5,0xe0,0xae,0xca,0xc1,0xfa,0x9e,0xcd,0xbd,0xdb,0xe6,0x37,0xae,0x9b,0x5c,
0xb9,0x62,0x2,0xe3,0x7e,0xf1,0xeb,0x1b,0x17,0x2e,0xc0,0xc4,0xc3,0x19,0x4f,0x26,
0x1e,0x42,0xfc,0x39,0x8,0x36,0x57,0x40,0x67,0xce,0xe0,0x1f,0x67,0x30,0xe4,0x20,
0x0,0x78,0xfc,0x23,0x0,0xd4,0x3f,0x87,0x7f,0x33,0x78,0x2,0xfc,0xa7,0x6e,0xdc,
0x3e,0x77,0x93,0x75,0xea,0xa6,0xe7,0x47,0x37,0xe2,0xdf,0xba,0x56,0xf4,0xc6,0x4d,
0xed,0xdb,0xb7,0x2e,0x5e,0x4,0x2a,0x2e,0x9c,0xc0,0xe3,0xff,0xfc,0x17,0x27,0xe0,
0x8f,0x2b,0xdf,0x9c,0x71,0x12,0xdf,0x3,0x39,0xba,0x9a,0x38,0xba,0x98,0x38,0xf0,
0x4d,0x1c,0xb8,0x77,0xed,0xd9,0x77,0x1,0x3,0x3b,0xc6,0x1d,0x3b,0xa7,0x3f,0x16,
0x0,0x88,0x40,0xd4,0x7b,0xf1,0x7,0x0,0x90,0x67,0x81,0x60,0xfa,0xf,0x5e,0x88,
0xa1,0xd6,0xa0,0x46,0x3b,0xd0,0xd5,0xd,0xbc,0x5,0x23,0x0,0x60,0x1,0xd0,0xaf,
0x41,0x8f,0x8f,0x40,0x7a,0x7,0x0,0x0,0x56,0x86,0x47,0x29,0x0,0xe0,0xf8,0x5f,
0x84,0x57,0x22,0x49,0x4,0x3a,0x2,0x0,0x3a,0x0,0xc5,0x0,0x74,0x80,0xd6,0xf6,
0xd1,0x16,0xa3,0xe,0xd0,0xd8,0xc,0x11,0xa8,0x1f,0xa6,0x1f,0xdf,0x7,0xa0,0x4b,
0x30,0x15,0x81,0x3a,0xd,0xf,0xc3,0xbd,0x22,0x2,0xbd,0x2,0x0,0x74,0x0,0x88,
0x40,0xc4,0x1,0xf4,0x0,0xa4,0xa6,0x1d,0x3,0x40,0x2,0x3a,0x40,0x9e,0x7e,0xb,
0x64,0xec,0x0,0x99,0xb1,0x34,0x0,0xe9,0xc7,0x2,0x10,0x7e,0x4,0x80,0x57,0x44,
0xa0,0x63,0x1,0x50,0xbd,0xe,0x0,0x72,0x1a,0x0,0x64,0xe0,0x30,0x0,0x12,0x77,
0x5f,0x89,0x1b,0xa4,0x20,0x74,0x0,0xa,0x0,0xf,0x91,0xd2,0xc3,0x15,0xe4,0xed,
0x21,0x4,0x79,0x79,0xb8,0x80,0x3c,0x3d,0x4,0x20,0x85,0x7,0x5f,0x21,0x1,0xf1,
0xe4,0x20,0x29,0x57,0x26,0x43,0x49,0xe5,0x1c,0xa9,0x82,0x23,0xf5,0x64,0x4b,0xbc,
0xd9,0x12,0x25,0x4b,0xa2,0x62,0xf1,0x13,0xcc,0x9c,0xd5,0x97,0x6d,0xef,0xdc,0xbd,
0x73,0xe9,0x9b,0x5b,0x5f,0x5f,0x82,0xa1,0xbf,0x79,0xf1,0xe2,0x8d,0xb,0x17,0xe1,
0x13,0x4e,0xfa,0xeb,0x10,0x6f,0xf0,0xbc,0xc7,0x23,0x9f,0x3a,0xf8,0x61,0xbe,0x29,
0xc1,0xbf,0xc4,0xf0,0x73,0xfe,0x3c,0xfc,0x47,0x6e,0x5f,0xba,0x74,0xcb,0xe4,0xfc,
0x2d,0xce,0xe9,0x9b,0xde,0x1f,0xdd,0x4c,0x7c,0xeb,0x7a,0xc9,0x4f,0xaf,0xd,0xfc,
0xf7,0x2b,0x6b,0x7f,0x73,0xe5,0xd9,0xf7,0x2f,0xef,0xfc,0x9b,0xcb,0xfb,0xff,0xea,
0xf2,0xfe,0xf7,0x40,0x57,0x5e,0xfc,0x89,0xb9,0xe0,0x22,0x50,0x74,0xf1,0xcb,0xaf,
0x20,0x2,0x81,0x3,0x9c,0xff,0xe2,0xb,0x20,0xc1,0xc4,0xee,0x1b,0x1b,0xf1,0x2d,
0x6b,0xd1,0x4d,0x2b,0xe1,0xd,0x2b,0xc1,0xd,0x2b,0xee,0x4d,0x2b,0xf6,0xd,0x6b,
0xd6,0x2d,0x1b,0xe6,0x2d,0x5b,0xc6,0x1f,0x55,0x82,0x31,0xff,0x1c,0xbe,0x6,0x36,
0xfe,0x62,0x88,0xe3,0x5e,0x8a,0xa7,0x2f,0x1,0x8,0x0,0xdb,0xcb,0x6b,0xb8,0x3,
0x25,0xf7,0x0,0x4f,0xe6,0x97,0x1e,0xcf,0x2d,0x0,0x0,0xf,0xc9,0x16,0x68,0x6b,
0x6a,0xd6,0xb8,0x3,0x18,0x1c,0xe0,0x30,0x0,0x43,0xb,0xe0,0x0,0x7d,0x3,0x73,
0x46,0x1d,0x0,0x1c,0x80,0x9e,0x7e,0xca,0x1,0x5a,0xdb,0x47,0x5a,0xe,0x3b,0x40,
0x83,0x1,0x80,0x43,0x1d,0x0,0x1,0xa8,0xa8,0xea,0x30,0xea,0x0,0x2d,0x78,0xf,
0x70,0xd0,0x1,0xf4,0x0,0x60,0x7,0x80,0x8b,0x30,0xbd,0x3,0xe8,0x1,0xc0,0x12,
0x7c,0x10,0x81,0x5e,0xd,0x80,0xc1,0x1,0xe2,0x31,0x2,0x11,0x7,0x30,0x2,0x20,
0x6,0x52,0x10,0xbd,0x6,0x8d,0xa4,0x3a,0x0,0x5e,0x5,0x1c,0x76,0x0,0x3d,0x0,
0xaf,0xe3,0x0,0x47,0x1,0xf0,0xa6,0x1d,0x0,0x53,0x90,0x22,0x44,0x41,0x22,0x90,
0x5c,0x1e,0x44,0x4c,0x20,0xd0,0x18,0x0,0x34,0x1,0x77,0x3f,0xa,0x0,0x89,0x9b,
0x8f,0x44,0xc,0xfa,0x36,0x0,0x24,0x2,0x4f,0x98,0x7e,0x29,0x88,0x27,0x97,0xf1,
0xe4,0x72,0x9e,0x4c,0xce,0x95,0x29,0xb8,0x32,0x4f,0x8e,0xd4,0x8b,0x23,0x55,0xb2,
0xa5,0x2a,0xb6,0xc4,0x97,0x2d,0xf1,0x63,0xb1,0xb,0x2f,0xdd,0x5e,0xfa,0x7,0x86,
0x9d,0x39,0x9c,0xfa,0xf4,0xe8,0xeb,0xa7,0x1f,0x8e,0x7f,0x6a,0xc4,0xe1,0x9f,0x53,
0x6e,0x70,0xfb,0xeb,0x4b,0xe0,0xc,0xb7,0xcd,0x2f,0xde,0xe1,0x9f,0xb9,0xed,0xfb,
0xf1,0xcd,0xe4,0xb7,0x6f,0x94,0xff,0xf4,0xfa,0xf0,0x3f,0x5c,0x5d,0x3f,0x3a,0xeb,
0xd4,0xc4,0x53,0xba,0xba,0xfd,0x17,0x37,0xd7,0xfe,0xf6,0xce,0xf0,0xf,0xaf,0xec,
0xfc,0xc9,0xad,0xe1,0x1f,0x9a,0x5e,0xbf,0x2,0x19,0x89,0xea,0xc1,0xc0,0xc0,0xb9,
0x2f,0xbe,0xb8,0x78,0xea,0xab,0x6b,0xec,0x33,0x57,0x78,0xa7,0xbf,0xe1,0x9c,0xbc,
0xcc,0x3a,0x79,0x95,0x71,0xe6,0xba,0xd3,0xb9,0x3b,0xce,0x5f,0x9b,0x38,0x7d,0x63,
0xee,0x74,0xed,0x8f,0x8c,0x40,0x78,0xfc,0x53,0xe,0x40,0x7d,0x2d,0x8a,0xfe,0x9b,
0x51,0xe8,0x6b,0x60,0x58,0x83,0x1e,0x7c,0x2b,0x4,0x14,0x80,0x83,0x5b,0xb0,0x95,
0x75,0x3a,0xff,0x2c,0x92,0x5b,0x30,0x2,0xc0,0x23,0x28,0xc1,0xc8,0x0,0x2,0x70,
0x9f,0x2a,0xc1,0x13,0x53,0x1b,0x2f,0x39,0xc0,0x12,0xed,0x0,0x43,0x30,0xfd,0xaf,
0x2,0xc0,0x90,0x82,0x8c,0x1d,0x80,0x8a,0x40,0xfd,0xf5,0xd,0x7d,0x75,0xf5,0xbd,
0xb5,0x75,0x3d,0x35,0xb5,0x74,0x9,0xae,0xaa,0xee,0xac,0xc4,0xe9,0x3f,0x2,0x40,
0x73,0x71,0x69,0x13,0x75,0x13,0x5c,0x58,0x44,0x37,0x60,0xfd,0x4d,0x70,0x4d,0xe,
0x94,0xe0,0xdc,0x2a,0xd2,0x1,0xd0,0x1,0x60,0xfa,0xf,0x3b,0x40,0xb1,0xbe,0x4,
0x1b,0x47,0xa0,0xbc,0xe3,0x22,0x10,0x2,0x40,0x97,0x60,0x43,0x4,0x8a,0x4e,0xd1,
0xaf,0x41,0x93,0xf4,0x0,0x24,0xd0,0x11,0xe8,0x8,0x0,0x41,0x74,0x9,0xf6,0xf,
0x88,0x7d,0x39,0x2,0x51,0x0,0x28,0x61,0xb,0x44,0x45,0x20,0xef,0x30,0x4c,0x41,
0x9e,0xa1,0x6,0x0,0x14,0x87,0x1,0x90,0xe9,0x1d,0x0,0x0,0x90,0xbe,0x4,0x80,
0x44,0xa4,0x92,0x88,0x94,0x12,0xbd,0x3,0x48,0x84,0x5e,0x12,0x17,0x90,0x27,0x4c,
0xbf,0x14,0xc4,0x57,0xc8,0x50,0x30,0xfd,0x72,0x5,0x4f,0xe6,0xc9,0x95,0x79,0x71,
0x65,0xde,0x30,0xfd,0x1c,0xa9,0x8a,0x23,0xf5,0x65,0x4b,0xfd,0xd9,0xd2,0x40,0xb6,
0x4b,0x9a,0xd9,0xd5,0xdd,0x3f,0xb1,0x4b,0x3a,0x65,0x7d,0xfb,0xb6,0xd1,0xd9,0x7f,
0x1,0xa7,0xff,0xc2,0x85,0xeb,0x66,0x67,0x6f,0xf1,0x4e,0xde,0xf2,0xff,0xc3,0xad,
0xd4,0xb7,0x6f,0x54,0xfd,0xe4,0xfa,0xe8,0x3f,0x5c,0xdd,0xf8,0x9b,0x2b,0xcf,0xbf,
0x7f,0x79,0xf7,0xe0,0x5c,0x37,0x9a,0xf5,0x7f,0x75,0xed,0xf9,0x5f,0xde,0x5a,0xfb,
0xbb,0xbb,0xa3,0xff,0x6c,0xd1,0xf2,0xa6,0x75,0xde,0xc7,0xf6,0xea,0x8b,0x4e,0x5e,
0xd7,0x9d,0x79,0x77,0x1d,0x21,0xd0,0x5b,0xdf,0xba,0x53,0xfa,0x1b,0x70,0x3,0xb3,
0xc8,0x2f,0x6e,0x5e,0xb8,0x40,0x5,0x21,0xe2,0x0,0x10,0x87,0xbe,0x3c,0x73,0xf5,
0xb3,0xf,0x19,0xbf,0x7b,0xcf,0xe9,0xd7,0xef,0x39,0xfc,0xfa,0x23,0xfb,0xb7,0x4e,
0xd8,0x7d,0x70,0xce,0xee,0xf3,0xcb,0xf6,0xa7,0x6e,0x3a,0x9c,0x7f,0xd,0x0,0x60,
0xff,0x63,0xfc,0x36,0xcc,0x8b,0x5d,0x3d,0x0,0xfa,0x27,0xe1,0x8c,0x9f,0x83,0x78,
0x9,0x80,0x1d,0x68,0xc0,0xc6,0xe,0x40,0xe5,0x1f,0x4,0x60,0xf1,0xd1,0xec,0x3c,
0x38,0xc0,0x3,0xb8,0x5,0x9b,0x46,0x0,0x36,0x9,0x0,0xeb,0xc7,0x0,0x30,0xbc,
0x8,0x17,0x61,0x3,0x8,0xc0,0x5c,0x5f,0x3f,0xe5,0x0,0xd3,0xfa,0xe,0x40,0x3b,
0x40,0x7b,0xc7,0x58,0x5b,0xfb,0xa8,0x91,0x3,0xc,0x52,0x5b,0x20,0x70,0x0,0x1a,
0x80,0xfa,0xa3,0x0,0x54,0x1c,0x6,0xa0,0xa4,0xb4,0xb9,0xb8,0x84,0x6,0xa0,0x80,
0x0,0x80,0x8f,0x42,0x18,0x39,0x80,0xd1,0x16,0x8,0x22,0xd0,0x1,0x0,0xb0,0x2,
0x32,0xda,0x2,0xbd,0xa,0x80,0x6c,0xbd,0x3,0xc0,0xe3,0x40,0x7,0x0,0xd0,0xe,
0x80,0x77,0x61,0x94,0x3,0x7c,0x17,0x0,0xfa,0x2d,0xd0,0x77,0x2,0xe0,0xfd,0x3a,
0x0,0x48,0x3,0x8,0x3,0xfe,0x52,0xf,0x3f,0x0,0x40,0x7a,0xd8,0x1,0xc,0x0,
0x48,0x5c,0xbd,0x25,0x42,0x10,0x2,0x20,0x75,0x21,0xd3,0x2f,0xf0,0x94,0x9,0x14,
0x72,0xbe,0x42,0xc1,0x97,0x7b,0xf2,0xe4,0x5e,0x3c,0xb9,0x37,0x57,0xa6,0xe4,0xca,
0x54,0x5c,0x99,0xf,0x47,0xe6,0xcb,0x91,0xf9,0x73,0x64,0x1,0x1c,0x59,0x20,0x5b,
0x16,0xc2,0xb6,0x1c,0xfb,0xed,0xcd,0xcd,0xbf,0x73,0x82,0xef,0x69,0xb8,0x7c,0x85,
0x3a,0xe9,0xe9,0xe9,0xbf,0x70,0xe1,0x4a,0xc7,0xff,0x7e,0xf5,0xac,0xff,0xd5,0xed,
0xb5,0xff,0x72,0x6f,0xec,0xc7,0x96,0x6d,0x6f,0xdb,0x15,0x7f,0xe6,0x94,0x78,0x99,
0x19,0x7c,0x8b,0x25,0x33,0x65,0x88,0xee,0x39,0xf3,0xa1,0xc8,0xde,0xb6,0x71,0xba,
0x61,0x65,0x77,0xd5,0xdc,0xf2,0xb2,0xc9,0xbd,0x8b,0xb7,0x6e,0x9f,0xbd,0x79,0xf3,
0xec,0x95,0x7b,0x27,0xbe,0x59,0xfb,0x8b,0x6b,0xf7,0xff,0x93,0xb9,0xe5,0x95,0xcb,
0xa7,0xcf,0x90,0x45,0x10,0xd9,0x8,0x41,0x16,0x3a,0x71,0xe2,0x3d,0x8b,0x5f,0xfd,
0xdc,0xf9,0x1f,0x7f,0xee,0xf8,0xc3,0x5f,0xda,0xff,0xf3,0xef,0xed,0x7e,0xf3,0x85,
0xfd,0xfb,0x67,0xec,0x3f,0xfd,0xc6,0xe1,0xe4,0x1f,0xf,0x80,0xf1,0x1b,0xf1,0xf8,
0x2c,0x34,0x79,0xe,0x94,0xba,0x5,0x3b,0xfc,0xbd,0x40,0x7b,0x1b,0xf7,0x77,0xa1,
0x1,0x53,0x2b,0x20,0x70,0x80,0xe5,0x35,0xcc,0x3f,0xe0,0x0,0xb,0x6,0x7,0x0,
0x0,0xe6,0x60,0xfa,0xb7,0x10,0x80,0xe9,0xcd,0xc9,0xe9,0xd,0x70,0x80,0x89,0xa9,
0xb5,0xb1,0x89,0xd5,0xd1,0xf1,0x15,0x7d,0x7,0x58,0x82,0xe9,0x1f,0x1c,0x5a,0x18,
0x18,0x9c,0xef,0x7,0x0,0x6,0x66,0x7b,0xfb,0x66,0x7a,0x7a,0x1,0x80,0x29,0x28,
0xc1,0x5d,0x24,0x2,0x75,0x74,0x8e,0xd3,0x0,0xb4,0xd1,0x11,0xa8,0xb9,0xe5,0x25,
0x0,0x88,0x3,0xd4,0x90,0x35,0x28,0xe5,0x0,0x15,0x95,0xed,0xe5,0x95,0x6d,0x54,
0x7,0x28,0x2d,0x6b,0xd1,0x3,0xd0,0x48,0x6e,0x82,0x1b,0xa,0xe,0x3,0x90,0x93,
0x5b,0x9d,0x9d,0x53,0x95,0x95,0x53,0xa9,0xef,0x0,0x0,0x40,0x99,0xfe,0x22,0xec,
0x55,0x25,0x18,0x3a,0x40,0xae,0xbe,0x4,0x23,0x0,0x64,0xb,0x74,0xc8,0x1,0x5e,
0x3,0x80,0xf8,0x43,0x25,0xf8,0xb5,0x1d,0xe0,0xdb,0x1,0x90,0x93,0x8,0x24,0x7b,
0x9,0x0,0xa9,0x9b,0xaf,0x54,0x1f,0x81,0x5e,0x6,0x40,0x4a,0x1,0xe0,0x2,0xd3,
0xef,0x29,0x17,0xc0,0xf4,0x2b,0x3c,0xf9,0x64,0xfa,0x79,0x72,0x6a,0xfa,0x7d,0xb9,
0x32,0x3f,0xe,0xca,0x9f,0x23,0xf7,0xe3,0xc8,0xc9,0xa7,0x38,0xde,0xfa,0xea,0x8b,
0x7f,0x6f,0x93,0xf3,0xb9,0xcd,0x9d,0x3b,0x0,0x0,0xe4,0x7e,0xca,0xa,0xb0,0x3,
0xf0,0x3f,0xbf,0xbc,0xf3,0xfd,0xeb,0xcf,0xfe,0xc3,0x9d,0xb5,0xbf,0x37,0x1d,0xfb,
0xa9,0x75,0xfb,0xbb,0x8e,0xa5,0x27,0x18,0xc9,0x57,0x39,0xa1,0x77,0xb9,0x5e,0xe6,
0x1c,0x89,0x39,0xd3,0xd5,0xd4,0x51,0x70,0xd7,0x9e,0x7f,0xdb,0x86,0x7b,0xc3,0x92,
0x7d,0xd5,0x8c,0xf9,0x8d,0x89,0xf3,0xc5,0x9b,0xe,0x67,0xaf,0xdb,0x9d,0xba,0x6c,
0xf5,0xe5,0x45,0xd3,0xcf,0xce,0xdf,0xf9,0xe4,0xec,0xf5,0x8f,0xbe,0xba,0xf4,0xfb,
0x13,0x17,0xde,0xfb,0xe2,0xcc,0x3b,0x27,0x55,0x3f,0xb9,0xbc,0xf7,0xaf,0xee,0x96,
0xff,0x6,0xa2,0x14,0x6c,0x84,0x48,0x15,0xfe,0x82,0x30,0xf0,0xe5,0xa9,0x33,0x9f,
0xfc,0x8a,0xf9,0xcf,0x3f,0x67,0xfe,0xe3,0xcf,0x9d,0x7f,0xf8,0x3b,0xa7,0x37,0xfe,
0xe0,0xf8,0xe6,0x9,0xc7,0xf,0x2e,0x38,0x7d,0xf1,0x7a,0x0,0x1c,0xdc,0x1,0x1f,
0x69,0xc0,0x46,0x3b,0x50,0xba,0x4,0x93,0x6f,0x86,0x23,0xcf,0x42,0xe3,0xe,0x14,
0x1e,0x5,0x5d,0xdb,0x80,0xe9,0x7f,0xb1,0x2,0x1d,0x60,0xf5,0xf9,0xd2,0x2a,0x36,
0x60,0x4,0x60,0xf1,0xf1,0x3c,0x38,0x0,0xe6,0x9f,0x7,0x10,0x81,0x0,0x80,0xa9,
0x99,0xcd,0x49,0x9c,0x7e,0x70,0x0,0x3,0x0,0xcb,0x50,0x82,0x87,0x47,0x96,0x86,
0x46,0x8c,0x0,0xe8,0x7,0x13,0x98,0xa1,0x1c,0xa0,0xbb,0x67,0xb2,0xab,0x7b,0xe2,
0x25,0x0,0x86,0x61,0xb,0x44,0x1,0xd0,0x68,0x70,0x80,0x86,0xde,0x5a,0xe2,0x0,
0x0,0x40,0x35,0x29,0xc1,0x7,0x0,0xe0,0xd3,0xa0,0xc6,0x0,0x50,0x8f,0x42,0x18,
0x0,0xa8,0x35,0x74,0x0,0x4,0x20,0x1b,0x1,0x20,0x6b,0xd0,0x3,0x0,0xb0,0x4,
0xa7,0x19,0x47,0xa0,0x2,0x58,0x83,0xd2,0x25,0x18,0x7b,0x30,0xb5,0x5,0x3a,0x16,
0x80,0xb4,0x57,0x3,0xa0,0xdf,0x2,0x85,0x7e,0x1b,0x0,0x7e,0x87,0xb7,0x40,0x2a,
0x9f,0x83,0x8,0x74,0x0,0x80,0x17,0x44,0xa0,0x10,0x4f,0xd2,0x1,0x20,0x2,0x29,
0x48,0x7,0x0,0x0,0xe4,0x7a,0x0,0x64,0x12,0x7f,0x19,0x44,0x20,0x34,0x1,0x98,
0x7e,0x4,0x40,0x2a,0x6,0xa9,0xa4,0x22,0x90,0x52,0xea,0xa,0xf2,0x96,0xa,0x41,
0x5e,0x28,0x17,0x2f,0x99,0xb,0x4c,0xbf,0xa7,0x42,0x0,0xd3,0xaf,0xf0,0xe2,0x2b,
0x70,0xfa,0x79,0x72,0x15,0x4f,0x8e,0xd3,0xcf,0x95,0xf9,0x73,0xe5,0x7e,0x5c,0xf8,
0x5b,0xae,0xe2,0x2a,0xbc,0xb9,0xa,0x2f,0x94,0x6d,0xf7,0xbb,0x37,0x1e,0xfe,0x47,
0x6,0xc7,0xf4,0xde,0x95,0xab,0xb8,0xf9,0x41,0x0,0x30,0xfd,0x5f,0xbf,0x70,0xde,
0xc1,0xe3,0xa6,0xc0,0xdb,0x4a,0x20,0xb7,0xe6,0xb9,0xc3,0xd3,0xd,0xe6,0xce,0x42,
0x13,0x7b,0xfe,0x2d,0x5b,0xde,0xd,0xb,0xf6,0x15,0x33,0xd6,0xa5,0xdb,0x4e,0xe7,
0x6e,0x3a,0x9e,0xb9,0xea,0xf0,0xd5,0x37,0xf6,0x5f,0x5c,0xb0,0xff,0xe4,0xac,0xdd,
0x1f,0x4e,0xdb,0x7f,0xf8,0xa5,0xdd,0x7b,0x5f,0xd8,0xbd,0xf3,0x99,0xed,0x5b,0x9f,
0x59,0xbd,0xf5,0xa9,0xe9,0x9b,0x9f,0xde,0xf9,0xdd,0xa7,0x37,0xde,0xfc,0xec,0xca,
0x5b,0x9f,0x7f,0xf3,0xf6,0x89,0xcb,0xef,0x7c,0xdd,0xff,0xb7,0x57,0x76,0xbe,0x6f,
0x2e,0xba,0x78,0xf5,0xec,0x39,0x58,0x4,0x51,0x35,0x80,0xfa,0xfc,0xf8,0xce,0x3b,
0xbf,0xe0,0xfc,0xe3,0xcf,0x59,0x3f,0xfc,0x5,0xe3,0x1f,0xdf,0x61,0xfc,0xf2,0x13,
0xe7,0x77,0x4e,0x39,0x7f,0xfc,0x47,0x2,0x0,0x1d,0xc0,0xf0,0x20,0xb4,0x71,0x3,
0xa6,0x5e,0x6,0x80,0xfc,0xb3,0x5,0x0,0x3c,0xd0,0x3,0x80,0xd3,0xbf,0x83,0x0,
0x90,0x6,0xbc,0xbc,0xfa,0x6c,0x9,0x57,0x40,0x4f,0x0,0x80,0x85,0xa5,0xc7,0xf3,
0xb,0x8f,0xe6,0x16,0x1e,0xce,0xe2,0xf4,0x6f,0x4d,0xcf,0xdc,0x9f,0xa2,0x1c,0x60,
0xf2,0x0,0x80,0xd1,0x31,0x3d,0x0,0xe8,0x0,0xf3,0x94,0x3,0xf4,0x1b,0x1c,0xa0,
0x67,0xaa,0xbb,0x1b,0x0,0x98,0xec,0xec,0x1a,0xef,0xe8,0x18,0xa3,0x1c,0xa0,0xd,
0x4b,0xf0,0x70,0x4b,0xcb,0x10,0x0,0xd0,0xd4,0x3c,0x70,0x0,0x40,0x7d,0xaf,0xbe,
0x6,0x0,0x0,0x9d,0x7,0xe,0x50,0xd1,0x56,0x6,0xd3,0xff,0x92,0x3,0x40,0x7,
0x20,0xe,0x50,0x97,0x97,0x8f,0x0,0xe4,0x92,0x12,0xac,0x7,0xa0,0x82,0x6c,0x81,
0xca,0xd3,0x33,0xc1,0x1,0x4a,0xe1,0x51,0x8,0xb2,0x5,0x42,0x0,0x92,0xf1,0x22,
0xac,0x30,0x31,0x19,0x0,0xc8,0x27,0xf7,0x0,0xd8,0x1,0x8c,0x0,0xc8,0xd2,0x3b,
0x40,0x86,0xbe,0x3,0xa4,0xd1,0x17,0x61,0xd1,0x29,0xaf,0x8e,0x40,0x6,0x0,0x34,
0xb8,0x6,0x3d,0xec,0x0,0x7e,0xfe,0xb0,0x6,0xc5,0x6b,0x60,0x1f,0x5f,0x5c,0x83,
0x12,0x0,0x22,0xa8,0xe,0x60,0x0,0xc0,0xeb,0xb5,0x0,0xf0,0x93,0x51,0x0,0x20,
0x3,0x3e,0x84,0x1,0x3d,0x0,0xc8,0x80,0x37,0x61,0x0,0x1,0x90,0xb9,0x78,0xc9,
0x9,0x0,0x9e,0x2,0x32,0xfd,0x7c,0x5,0x4c,0xbf,0xf,0x4c,0x3f,0xf,0xe7,0x3e,
0x80,0x2b,0xf,0xe4,0xca,0xfd,0xb9,0xa,0x5f,0x9c,0x7e,0x4f,0x5,0xcf,0x53,0xca,
0xf3,0x94,0xf0,0x24,0x41,0x8e,0xd7,0x9f,0xfd,0x85,0x65,0xd9,0x7,0xb6,0x77,0x71,
0x1d,0x4,0xc7,0x3f,0xb5,0x0,0xc5,0x25,0xcf,0xd5,0x8b,0x36,0x3c,0xd8,0xcc,0x5c,
0x35,0x65,0x5f,0xba,0xc3,0x3c,0x7f,0xc3,0xe9,0xf4,0x55,0xc7,0xaf,0xbe,0xb6,0xff,
0xfc,0x9c,0xdd,0xc7,0x67,0xec,0x3e,0x3c,0x69,0xf7,0xfe,0x9,0xbb,0x77,0x3f,0xb7,
0x7f,0xeb,0x53,0xc7,0x37,0x3f,0x71,0xfa,0xdd,0x27,0x8c,0xdf,0x7d,0xc2,0xfe,0xdd,
0x67,0xbc,0x37,0x3f,0x17,0xbc,0x75,0xc2,0xe5,0xed,0x2f,0x5d,0xde,0x3d,0xc9,0x7b,
0xef,0xc,0xeb,0xfd,0x33,0x8e,0x1f,0x9c,0xb5,0xf9,0xf0,0xac,0xc5,0x87,0xe7,0x4c,
0xff,0x70,0xde,0xf5,0xdd,0xcb,0xdb,0xff,0xee,0xe6,0xd8,0xff,0x34,0xbd,0x81,0x6d,
0x98,0x2c,0x43,0x71,0xfa,0x51,0x5f,0x7e,0xf1,0x96,0xf3,0xcf,0x7e,0xc1,0xfb,0xc7,
0x9f,0x73,0x7e,0xf8,0x2b,0xe6,0x8f,0x3e,0x60,0xfc,0xf6,0xb,0xc6,0xfb,0xdf,0x5,
0xc0,0x91,0x2,0x40,0xe5,0x1f,0xe3,0xef,0x6,0xc5,0xb7,0x61,0x20,0x2,0xc1,0x93,
0x70,0xe4,0x29,0x20,0x4,0x0,0x1c,0x60,0x6b,0x6f,0x63,0x6b,0x97,0x38,0xc0,0x8b,
0xd5,0x75,0xd0,0xf6,0xa,0x1,0x60,0x79,0xe5,0xe9,0xe2,0xd2,0x93,0x45,0x98,0x7e,
0x70,0x0,0x0,0x60,0xfe,0xe1,0xdc,0xfc,0x83,0x99,0xd9,0xfb,0xd3,0x33,0x9b,0x14,
0x0,0x93,0xe0,0x0,0x13,0x6b,0xe3,0x54,0x4,0x1a,0x5d,0x1e,0x19,0x59,0x1a,0x1e,
0x5e,0x1c,0xa2,0x1,0x80,0xe9,0x87,0xe3,0x7f,0xb6,0xaf,0x6f,0xa6,0xb7,0x77,0xba,
0xa7,0x17,0x0,0x0,0x4d,0x20,0x0,0x18,0x81,0x60,0xfa,0x47,0x5b,0x31,0x2,0xc1,
0xf1,0x7f,0x0,0x40,0x63,0x63,0x9f,0x51,0x9,0xee,0xae,0xa9,0xed,0xaa,0x42,0x0,
0x3a,0x68,0x7,0x0,0x0,0x2a,0x5a,0xcb,0xca,0x5b,0xe,0x47,0xa0,0x86,0xc2,0xa2,
0xfa,0x3,0x0,0xf2,0x6a,0x60,0xb,0x44,0x47,0x20,0x74,0x80,0x57,0x1,0x50,0x74,
0x1c,0x0,0xc6,0x11,0xe8,0x18,0x0,0xf4,0x5b,0xa0,0x57,0x2,0x10,0x42,0x39,0x40,
0x8,0xdc,0x3,0x18,0x0,0x50,0xc3,0xe,0x94,0xea,0x0,0x14,0x0,0xbe,0x46,0x0,
0xa8,0x5e,0x3,0x0,0x85,0xde,0x1,0xe4,0x18,0x81,0xfc,0x89,0x3,0x20,0x0,0xb2,
0x23,0x0,0x20,0x3,0x4a,0x62,0x2,0xde,0x32,0x10,0x4c,0xbf,0x1e,0x0,0x85,0x11,
0x0,0x2a,0x3e,0x4e,0xbf,0x3f,0xf,0x47,0x3f,0x88,0x2b,0xf,0xc6,0x4f,0x85,0x3f,
0xd7,0x53,0xc5,0x3,0x0,0xbc,0xa4,0x3c,0x2f,0xf,0xbe,0xb7,0x1b,0xdf,0xa9,0xe1,
0xd3,0x6b,0xcf,0xfe,0x2,0xe,0x78,0xb3,0x6b,0xd7,0x6f,0x92,0x20,0x74,0x1d,0x4d,
0x0,0x6e,0x0,0xce,0x5f,0x31,0x3f,0x79,0xde,0xf9,0xa3,0x33,0x4e,0x1f,0x9e,0x72,
0x7a,0xff,0x4b,0xa7,0xf7,0x4e,0x38,0xbf,0xf3,0x85,0xf3,0xdb,0x9f,0x31,0xde,0xfc,
0x8c,0xf5,0xe6,0xe7,0x9c,0xb7,0x3e,0xe7,0xbd,0x7d,0xc2,0xe5,0x9d,0x2f,0x45,0xef,
0x9e,0x74,0x7f,0xef,0x94,0xec,0xf7,0xa7,0xbd,0xde,0x3f,0xad,0x7c,0xff,0x8c,0xcf,
0xfb,0x67,0x7c,0x3f,0x38,0xeb,0xfb,0xc1,0x39,0xd5,0x1f,0x2e,0x28,0x3e,0xba,0xe8,
0xfe,0xc9,0x37,0xc2,0xcf,0xaf,0xf1,0xbe,0xba,0xc1,0x3a,0x79,0xd3,0xf9,0xf4,0x8d,
0xca,0x5f,0x40,0x1b,0x36,0x8d,0xfd,0x14,0x12,0x17,0x75,0x3d,0xc,0x18,0x9c,0xfd,
0x1c,0x7d,0xe0,0xab,0x4b,0x7f,0xf8,0x95,0xe0,0x9f,0x7e,0xc1,0x47,0x6,0xde,0x64,
0xbd,0xf1,0x31,0xeb,0x9d,0xd7,0x0,0xc0,0xf8,0x31,0x38,0x68,0xc0,0x86,0xe9,0x7f,
0xfa,0x9c,0x5c,0x3,0x93,0x2,0x0,0xc7,0x3f,0x0,0xf0,0xe0,0xc0,0x1,0xb0,0x0,
0x6c,0xdc,0xdf,0x59,0xa7,0x0,0x58,0xdb,0x5e,0x59,0x7d,0xbe,0x42,0x1,0x80,0xe,
0xf0,0x78,0x61,0xf1,0xd1,0xfc,0x2,0x4e,0xff,0x2c,0x44,0x20,0x3,0x0,0x53,0x1b,
0x93,0x93,0xeb,0x13,0x93,0x6b,0xe3,0xe3,0xab,0x63,0x63,0x2b,0xa3,0x7,0x0,0x2c,
0xc,0xe,0xa2,0x3,0xc,0x80,0x3,0x18,0x0,0xa0,0x1c,0xa0,0x6b,0xa2,0xb3,0x13,
0x0,0x0,0x7,0xc0,0xe3,0xbf,0xad,0x6d,0xa4,0x95,0x72,0x80,0xe6,0xc1,0xa6,0x26,
0x74,0x0,0x3d,0x0,0x3d,0xb0,0x5,0xaa,0xad,0x45,0x0,0xaa,0xab,0xf,0x3,0x50,
0x4e,0x1,0xd0,0x6c,0xe8,0x0,0x45,0xc5,0x7,0x0,0xe4,0x17,0xe0,0xf1,0x9f,0x93,
0x57,0x6d,0xd4,0x1,0x2a,0x8c,0x22,0x10,0x38,0x40,0x89,0xde,0x1,0x0,0x80,0x42,
0x72,0x11,0x86,0xe,0xa0,0x8f,0x40,0x0,0x40,0x8e,0x3e,0x2,0x19,0x3,0x90,0x8e,
0x8f,0x42,0xc4,0xea,0x1d,0x20,0xa,0x0,0x48,0xd6,0x97,0xe0,0x44,0x72,0x11,0x6,
0x5b,0x20,0x1d,0x3c,0xd,0x4a,0x3,0x80,0x17,0x61,0x8,0x40,0x20,0xe5,0x0,0x81,
0xc7,0x0,0xe0,0x43,0x1c,0x80,0x2,0x40,0x49,0x1c,0xc0,0x9b,0x6c,0x81,0xc,0xe,
0xe0,0xa9,0x8f,0x40,0xc6,0x0,0xc8,0xf,0x3,0x80,0xc,0x18,0x1c,0x40,0xf,0x0,
0x4e,0xbf,0x1e,0x0,0xb9,0x8b,0x97,0xc2,0x5,0x8e,0x7f,0x4f,0x2f,0x1,0x39,0xfe,
0xf9,0xa,0x1f,0x3e,0x99,0x7e,0x9e,0x3c,0x98,0x27,0xf,0xe5,0xca,0xc3,0xb9,0xa,
0x50,0x8,0xcf,0x33,0x80,0xe7,0xa5,0xe2,0x79,0x79,0xf2,0xbd,0x65,0x7c,0xa5,0x44,
0xa0,0xf0,0x65,0xdd,0x7c,0xf2,0x1f,0xcd,0xeb,0xdf,0xb2,0x33,0x31,0x81,0x1b,0x5f,
0x62,0x2,0x74,0x10,0xba,0xf6,0xcd,0xb9,0x53,0xbc,0xf7,0x4f,0xa,0xdf,0x3b,0x29,
0xfa,0xfd,0x29,0xb7,0xf7,0x4f,0x7b,0xbc,0x7f,0x46,0xfa,0xc1,0x59,0xf9,0x87,0x67,
0x3d,0x3f,0x38,0xeb,0xf5,0xc1,0x59,0xef,0xf,0xcf,0xaa,0x3e,0xc4,0x71,0xf7,0xff,
0xf0,0x6c,0xe0,0x87,0xe7,0x43,0x3e,0xfa,0x3a,0xe2,0x93,0x6f,0x62,0x3e,0xbf,0x1a,
0xf7,0xe5,0xd,0xcd,0xc9,0xdb,0x71,0x67,0x4c,0x62,0xce,0x9b,0x45,0x5c,0xb2,0x8,
0xba,0x6c,0xeb,0x7b,0xdd,0x4e,0x71,0xc3,0x5e,0x72,0xd3,0xc9,0xeb,0xd6,0x8d,0xfb,
0x7f,0x73,0xed,0xc1,0x5f,0x99,0x59,0xd3,0x2b,0x51,0xe8,0x0,0xe7,0x20,0xe,0x11,
0x7d,0x60,0xfd,0xdb,0x5f,0xba,0xfc,0x23,0x30,0xf0,0x4b,0xce,0x3f,0xbd,0xc7,0xfa,
0xf5,0x1f,0x9,0xc0,0x91,0x6,0xfc,0xe4,0x19,0x29,0xc1,0x4f,0x50,0xd4,0xf4,0xd3,
0x11,0x68,0x6b,0x6f,0x73,0x6b,0x77,0x13,0x0,0xd8,0x78,0xb1,0xb6,0xbe,0x8d,0x0,
0xa0,0x3,0x3c,0x5d,0x5a,0x86,0xe3,0x1f,0x1d,0x0,0x1,0x80,0xe3,0x7f,0xee,0xc1,
0xec,0xec,0x96,0x1e,0x0,0x38,0xfe,0x1,0x80,0xb5,0x89,0x89,0xd5,0xf1,0xf1,0x95,
0xb1,0xb1,0xe5,0x23,0x0,0xc,0xe,0x62,0xfe,0x21,0x0,0x4c,0xa3,0x3,0xd0,0x11,
0x88,0x0,0xd0,0x31,0xd6,0xd1,0x31,0xda,0xe,0x11,0xa8,0x6d,0xf8,0x10,0x0,0x8d,
0xfd,0xd,0xd,0x7d,0xd,0xd,0xbd,0xf5,0x10,0x81,0x28,0x0,0x6a,0x68,0x0,0xaa,
0xaa,0xda,0x2b,0x2a,0xdb,0x2a,0x2a,0xda,0xca,0xf,0x0,0x68,0x82,0x2d,0x50,0x71,
0x71,0xa3,0x1e,0x80,0x3a,0x2a,0x2,0xe5,0xe5,0xd7,0xe4,0x22,0x0,0x55,0x46,0x11,
0xa8,0x1c,0x22,0x50,0x6,0x89,0x40,0x69,0x6,0x0,0x52,0xf4,0x0,0xd0,0x11,0x28,
0x8f,0x5c,0x84,0xe5,0xc6,0x1f,0x2,0x20,0x93,0x94,0x60,0x88,0x40,0x6,0x0,0x52,
0xc9,0xe3,0xd0,0xdf,0xe,0x0,0x5e,0x3,0x1b,0x1,0xf0,0x92,0x3,0x60,0xa,0x8a,
0x7a,0x5,0x0,0xa1,0x0,0x80,0x17,0x74,0x0,0xac,0x1,0x74,0x7,0x0,0x0,0x14,
0xb2,0x40,0x85,0x34,0x0,0x1c,0x0,0x0,0x40,0x6,0xf4,0xe,0x0,0x0,0xc8,0xdc,
0x7c,0x50,0x62,0x15,0x4a,0xa4,0x44,0xe9,0x1,0x90,0xb,0x21,0xff,0x20,0x0,0x5e,
0x2,0x4f,0x6f,0x1,0x35,0xfd,0xa,0x3f,0xbe,0x3c,0x80,0x4c,0x7f,0x18,0x4f,0x1e,
0xc1,0x95,0x47,0x71,0xe5,0xd1,0x5c,0x45,0x14,0xd7,0x33,0x9c,0xe7,0x15,0xc4,0xf7,
0xf6,0xe5,0x7b,0x7b,0xf1,0x95,0x72,0x81,0x4a,0xea,0xc2,0xaa,0x3a,0x5,0x6d,0xd8,
0xc9,0xe3,0xb6,0xd9,0xb5,0x6b,0x60,0x2,0x54,0xd,0xa0,0x3e,0xaf,0xd8,0x9f,0xfc,
0x3a,0xe0,0xe3,0x8b,0x1,0x1f,0x5f,0x8,0xfc,0x8,0x74,0x3e,0xe8,0xa3,0xf3,0xc1,
0x7f,0xf8,0x3a,0xe4,0x93,0x4b,0x61,0x9f,0x5e,0x8e,0xf8,0xe2,0x6a,0xd4,0x97,0xd7,
0x62,0xbe,0xba,0x19,0x77,0xfa,0x76,0xfc,0x59,0x93,0xa4,0xb,0x66,0x69,0x97,0x2c,
0x33,0xaf,0xd8,0x64,0x5f,0xb3,0xcb,0xbd,0xe1,0x98,0x73,0xcb,0x39,0xf3,0xe,0x3b,
0xd5,0x94,0xa3,0x33,0xe3,0xc7,0x5a,0xa,0xc2,0xac,0x5,0x1,0xd6,0x22,0x5f,0x3b,
0x46,0xce,0x45,0x30,0x81,0x3b,0x35,0xbf,0xba,0x73,0xe9,0x12,0x7d,0x29,0x46,0x82,
0xd0,0xd9,0xcf,0x3f,0x3f,0x73,0xea,0xb3,0xdf,0xf2,0x7f,0xf2,0xb,0x60,0x80,0xf7,
0xc3,0xdf,0x70,0x7e,0xfc,0xfa,0x0,0xec,0xed,0x53,0xb,0x50,0xca,0x1,0x9e,0xc1,
0x17,0xa2,0x80,0x3,0x3c,0x43,0x3d,0x6,0x0,0xc8,0xf1,0xaf,0x77,0x0,0x9c,0x7e,
0x74,0x80,0x4d,0x2c,0x0,0x90,0x7f,0x56,0xd7,0x9e,0xaf,0xae,0xc1,0xf1,0xff,0x6c,
0x79,0xf9,0x9,0x61,0x80,0x72,0x80,0x7,0x8,0xc0,0x1c,0x2,0x30,0x3,0x11,0x68,
0x6a,0x63,0x6a,0x6a,0x7d,0x72,0xc2,0x0,0x0,0xed,0x0,0x23,0xc3,0x8b,0xc3,0x43,
0xb,0x43,0x83,0xf3,0x0,0xc0,0x0,0x2,0x30,0x43,0x22,0xd0,0x54,0x4f,0xcf,0x64,
0x4f,0xf7,0x4,0x38,0x40,0x57,0xd7,0x78,0x27,0x2,0x30,0xd6,0x81,0xe,0x40,0x3,
0xd0,0xd2,0x3c,0xd8,0xdc,0x3c,0xd0,0xd4,0xd8,0xdf,0x48,0x3,0xd0,0x53,0x57,0xd7,
0x6d,0x0,0xa0,0x1a,0x22,0x50,0x65,0x7b,0xa5,0x1,0x80,0xb2,0x96,0xd2,0xd2,0xe6,
0xd2,0xd2,0xa6,0x92,0xa3,0x0,0xc0,0xf4,0x1f,0x5,0x20,0x2b,0x1b,0x1c,0x0,0xa7,
0x9f,0x6c,0x81,0x28,0x0,0x8a,0xb1,0x3,0xd0,0x0,0x14,0x50,0xe,0xa0,0x4b,0xa4,
0x1,0x38,0xec,0x0,0x87,0x1,0x88,0x81,0x12,0x7c,0x18,0x80,0x8,0x58,0x83,0xbe,
0xec,0x0,0xda,0x60,0x1a,0x80,0x38,0xe2,0x0,0x6,0x0,0x62,0x8c,0x23,0x90,0xf,
0x1c,0xff,0x2f,0x39,0x80,0x37,0x4c,0xbf,0x11,0x0,0x9e,0xa4,0x4,0xbf,0xc,0x80,
0xfc,0x35,0x0,0xc0,0xe9,0x17,0x92,0xe3,0x5f,0xf,0x80,0x8a,0xaf,0xf0,0xe5,0x2b,
0xfc,0xf9,0x78,0xfc,0x87,0xc0,0xf4,0xf3,0x70,0xfa,0x63,0xb8,0x72,0x35,0x57,0xa1,
0xe6,0x7a,0x46,0xf3,0xbc,0xc2,0x79,0xca,0x60,0x81,0xca,0xdf,0xc5,0xd7,0xc7,0xd5,
0x5f,0x29,0xf2,0xb,0x72,0xb9,0xfd,0xf0,0x3f,0x9b,0x76,0xfe,0xc2,0xc1,0xf4,0x9e,
0xde,0x4,0xf4,0xf,0x41,0x7c,0x7d,0xee,0x62,0xe0,0x27,0xe7,0x63,0x3e,0x3c,0x17,
0xfb,0xe1,0x39,0xf5,0x87,0x17,0x35,0x9f,0x5c,0xd1,0x9e,0xb8,0xa1,0x3b,0x75,0x27,
0xf1,0x9c,0x59,0xca,0x25,0xeb,0xf4,0x6b,0x76,0x99,0x37,0x1d,0xb3,0x6f,0x3b,0xe5,
0xde,0x65,0xe6,0xdf,0x63,0x17,0x9a,0x71,0x8b,0x2d,0x78,0x25,0x96,0x82,0x2a,0x2b,
0x97,0x46,0x6b,0xd7,0xe,0x1b,0xd7,0x6a,0x5b,0x51,0x86,0x9d,0x38,0xd1,0x5e,0xac,
0xb6,0x17,0x87,0x39,0x88,0x3,0x1d,0xdc,0x7c,0x1d,0x4c,0x27,0x7e,0x7a,0x65,0xf7,
0xdf,0x99,0x79,0xe0,0x93,0x14,0x78,0x2b,0x6c,0x68,0x2,0x5f,0x7c,0xf1,0xf9,0xed,
0xf7,0x7f,0xe9,0xfa,0x4f,0x14,0x3,0xaf,0xd,0x0,0xd4,0x5f,0xbc,0x5,0x23,0x5,
0xe0,0xb9,0x11,0x0,0x10,0x81,0x50,0x10,0x81,0x0,0x0,0x70,0x80,0x7,0xfb,0xf7,
0xb7,0xf6,0xee,0x23,0x0,0x70,0xfc,0x83,0xb6,0xd7,0x60,0xfa,0x57,0x41,0x98,0x7f,
0x60,0xfa,0x97,0x96,0x1f,0x2f,0x2e,0x3e,0x5a,0x58,0x0,0x21,0x0,0x73,0x73,0x5b,
0xb3,0xb3,0x9b,0xd3,0xd3,0x28,0x64,0x0,0x1c,0x60,0x7c,0x75,0x82,0x76,0x80,0xa5,
0xd1,0x91,0x25,0x1a,0x80,0xa1,0xf9,0xc1,0x81,0xb9,0x81,0xfe,0xd9,0xfe,0xbe,0x99,
0xbe,0x5e,0x70,0x80,0xa9,0x5e,0x2,0x40,0xb7,0x1,0x80,0x76,0x70,0x0,0x1a,0x80,
0xd6,0x96,0xc1,0x96,0xe6,0x81,0xe6,0xa6,0x7e,0x4,0xa0,0x11,0x1d,0xa0,0xa1,0x1e,
0x0,0xe8,0xa9,0xab,0xed,0xaa,0xa9,0xe9,0x84,0x8,0x4,0x0,0x54,0x55,0x1,0x3,
0x7a,0x7,0x28,0x6b,0x29,0x2b,0xa3,0x1,0x28,0x29,0x69,0x2c,0x2a,0x6a,0x28,0x2c,
0x84,0xe,0x0,0xe,0x50,0x9b,0x7f,0x18,0x80,0x6c,0x58,0x83,0x66,0x19,0x1,0x90,
0xfe,0x32,0x0,0x24,0x2,0x25,0x42,0x4,0x32,0x6,0x20,0x9b,0x6c,0x81,0x20,0x2,
0x21,0x0,0x6a,0xda,0x1,0x70,0x5,0x44,0x3,0x80,0x25,0x18,0x22,0x10,0x5e,0x2,
0x1c,0xb,0x80,0xde,0x1,0x68,0x0,0x2,0xe8,0xe,0x70,0x3c,0x0,0x24,0x5,0xd1,
0x11,0xe8,0xf5,0x1,0x40,0x6,0xe0,0xf8,0x7f,0x85,0x3,0xc8,0x5d,0xbd,0x8d,0x1,
0xf0,0x16,0x78,0x2a,0x5,0xa,0x1f,0x8,0x36,0x7c,0x45,0x0,0x5f,0x1e,0x4,0xe1,
0x87,0x0,0x10,0x8d,0xd3,0x2f,0xd7,0x70,0xe5,0x5a,0xae,0x42,0xc3,0x55,0x55,0x9,
0x2,0xe3,0xc4,0x41,0x11,0x6e,0x41,0x21,0x6e,0xc1,0x81,0x6e,0xc1,0xfe,0xee,0xc2,
0xaa,0xcb,0x70,0x5f,0xeb,0xe0,0x75,0xd,0x4c,0x0,0x37,0xa1,0xa4,0x6,0x90,0x67,
0x22,0xce,0x5f,0x76,0x3e,0x79,0x36,0xe1,0xfd,0xd3,0x89,0xbf,0x3f,0x95,0xf4,0xde,
0x85,0x94,0x8f,0xae,0xa7,0x9d,0x34,0xc9,0xb8,0x60,0x95,0x7d,0xd5,0x21,0xe7,0x36,
0x3b,0xdf,0x4c,0x50,0x6e,0x23,0xac,0xb7,0x71,0xed,0xb0,0x75,0x1d,0xb6,0x15,0xcd,
0xd8,0x8a,0xd6,0x6d,0x5c,0x9f,0x58,0x8b,0x5e,0x58,0xbb,0xee,0x59,0xbb,0xee,0x5b,
0x8b,0x1e,0xd8,0x88,0x72,0xed,0x45,0x29,0xf6,0x62,0xad,0xbd,0x38,0xd2,0x5e,0x1c,
0xe4,0x20,0xf6,0x75,0x10,0xc4,0x98,0x82,0xe1,0xdc,0x98,0xfa,0x87,0x7b,0x37,0xae,
0xc0,0x33,0x73,0x10,0x7e,0xa8,0x14,0x74,0xee,0xf3,0x2f,0xce,0x7e,0xf1,0xf9,0x7b,
0x8c,0x5f,0xfe,0xd2,0xf5,0x1f,0x81,0x81,0xd7,0x3,0x60,0x67,0x6f,0x1f,0x84,0xe,
0xb0,0xb3,0xbf,0x4d,0xa6,0x1f,0x1d,0x40,0x7f,0xfc,0x53,0xe,0xa0,0x7,0x0,0xa6,
0x7f,0x6f,0x93,0x1c,0xff,0x90,0x7f,0x8,0x0,0xe8,0x0,0x50,0x0,0x56,0x56,0x9e,
0xa2,0x3,0x2c,0x19,0x3,0x0,0xd3,0xf,0x2,0x7,0xd8,0x98,0x9e,0x5a,0x87,0xe9,
0x47,0x7,0x20,0x0,0x8c,0x8f,0x2e,0x8f,0x8d,0x22,0x0,0xa3,0xc3,0xb,0xc3,0x43,
0xf3,0x43,0x83,0x73,0x0,0xc0,0xe0,0xc0,0xec,0x40,0xff,0x4c,0x7f,0xdf,0x74,0x1f,
0xd,0x0,0x30,0x30,0xde,0xd5,0x49,0x1c,0xa0,0x7d,0x14,0x1d,0xa0,0x75,0xb8,0xb5,
0x65,0x48,0xf,0xc0,0x40,0x53,0x13,0x3a,0x40,0x23,0x1,0xa0,0xbe,0xae,0x1b,0x0,
0xa8,0xa5,0x0,0xa8,0x2,0x0,0x28,0x7,0x68,0x85,0x8,0x54,0x5e,0x4e,0x0,0x28,
0x1,0x7,0x68,0xc4,0x8,0x54,0x54,0xf,0x0,0x14,0x16,0xd6,0x15,0x50,0x0,0xe4,
0xd5,0xe4,0xe6,0x52,0x11,0xa8,0x32,0x3b,0xbb,0x22,0x8b,0x6,0x0,0xd7,0xa0,0xe9,
0xc7,0x0,0x0,0xe,0x80,0x5,0x80,0x0,0x0,0xf9,0x87,0x8a,0x40,0xdf,0xe,0x0,
0x36,0x60,0xaa,0x3,0x10,0x6,0xd0,0x1,0xc2,0xe8,0xe,0x10,0x4f,0x3a,0x80,0x21,
0x2,0xbd,0xa,0x80,0x28,0x12,0x81,0x8e,0x38,0x40,0x18,0x74,0x80,0x97,0x0,0x8,
0x22,0xe,0x10,0x48,0x45,0x20,0x4c,0x41,0x24,0x2,0xc1,0xf4,0xbf,0xe,0x0,0xa,
0xa1,0x17,0x1e,0xff,0x2e,0x90,0x7f,0x68,0x0,0xfc,0x5e,0x1,0x40,0x3c,0x57,0x11,
0xcf,0xf5,0x5e,0xe6,0xfa,0x97,0xb8,0x6,0xc6,0x8a,0x3,0x9,0x3,0x41,0x41,0x6e,
0x81,0x61,0x22,0x93,0xcd,0xff,0x6e,0x32,0xf8,0x13,0x7,0xb3,0x7b,0xf0,0xe0,0x3,
0xd6,0x0,0xc3,0x93,0x70,0x17,0xce,0x9d,0xb,0xfb,0xe8,0x64,0xca,0xbb,0x5f,0x65,
0xbd,0x73,0xb2,0xe8,0xdd,0x6f,0xea,0x3e,0xbb,0xd3,0x73,0xc6,0x62,0xfc,0x92,0xfd,
0xca,0xd,0xd6,0x63,0x13,0x97,0x17,0x96,0xe2,0x5d,0x5b,0xd1,0xbe,0xd,0x25,0x18,
0x7a,0x5a,0xbb,0x56,0xae,0x4f,0xac,0x5c,0xf7,0xad,0x44,0x3d,0xb6,0xa2,0x54,0x3b,
0x91,0xce,0x5e,0x1c,0x6d,0x2f,0xe,0xb1,0x17,0xfb,0x3b,0xb8,0xa9,0x1c,0xec,0x1a,
0x3f,0x82,0x20,0x64,0x12,0xff,0x7,0x58,0xbc,0x42,0xd,0x80,0x1e,0x7c,0xee,0x4,
0xb6,0x61,0xc8,0x42,0xa7,0xce,0x7f,0xf2,0x1b,0xd7,0x1f,0x1,0x3,0xdf,0xa,0x80,
0xf1,0xa,0xc8,0x0,0x0,0x1c,0xff,0xcf,0x1,0x80,0xe7,0x24,0x2,0x3d,0x45,0x51,
0xc7,0xbf,0x1,0x80,0x2d,0x70,0x80,0xfb,0xbb,0x9b,0x9b,0x3b,0x1b,0x0,0xc0,0x3a,
0x3a,0xc0,0xda,0x1a,0x4c,0x3f,0xd,0xc0,0xf2,0xd2,0xe3,0xa5,0xc5,0x47,0x8b,0xb,
0xf,0x17,0xe6,0x1f,0xcc,0xcf,0x6d,0xcd,0xcd,0xde,0x9f,0x9d,0xd9,0x9c,0x99,0x46,
0x0,0xa6,0x27,0xd7,0xa6,0x26,0x56,0x27,0x29,0x0,0xc6,0x28,0x0,0x16,0x47,0x8,
0x0,0xc3,0x83,0x73,0x43,0x0,0x40,0x3f,0x0,0x30,0xdd,0xdf,0x3b,0xdd,0xd7,0x83,
0xe,0xd0,0xdb,0x3d,0xd1,0xd3,0x35,0xde,0xdd,0x39,0xd6,0xd5,0x31,0xda,0x49,0x0,
0x68,0x6f,0x1d,0x6e,0x6f,0x35,0x0,0x0,0xe,0x40,0x4d,0x7f,0x6f,0x7d,0x5d,0x4f,
0x7d,0x2d,0xd,0x40,0x4d,0x75,0x7,0x0,0x50,0x4d,0x0,0xa8,0xa4,0x0,0x20,0xe,
0x50,0x86,0x11,0x8,0x0,0x68,0x0,0x7,0x0,0x6,0xa,0xa,0x28,0x0,0x6a,0xf2,
0xf2,0xaa,0x29,0x0,0x72,0xe,0x1,0x80,0x11,0x28,0x3d,0xbd,0x24,0x2d,0xd,0x4b,
0x70,0x6a,0x2a,0xae,0x80,0x92,0x93,0xa1,0x4,0x1b,0x3,0x40,0x31,0x40,0x1,0x80,
0xd,0x98,0x38,0x0,0xee,0x40,0x49,0x7,0x30,0x38,0xc0,0x1,0x0,0xe4,0x26,0x38,
0x31,0xc,0x19,0xa0,0x4a,0x30,0xd,0xc0,0x91,0x8,0x14,0x10,0x10,0xb,0x5b,0x20,
0x7f,0x7f,0x83,0x3,0x1c,0x2,0x40,0xa5,0xc,0x7,0x7,0x50,0xc2,0xf4,0x13,0x0,
0x90,0x1,0xcf,0x10,0xac,0x1,0x8a,0x60,0x4f,0x45,0x90,0xe7,0xab,0x1,0x90,0xbb,
0xfb,0x82,0x5e,0xee,0x0,0x78,0xfc,0xbb,0x7a,0xc3,0xf4,0x1b,0x3,0xa0,0x22,0xe,
0x80,0x5,0xe0,0x25,0x7,0xd0,0x72,0xe5,0xf1,0x5c,0xb9,0x8e,0xeb,0x3d,0xcf,0xf5,
0x59,0x12,0x4,0xe8,0xc4,0x81,0x31,0xe2,0xa0,0x70,0x9a,0x1,0x71,0xf9,0x4d,0x48,
0x26,0xe,0x41,0xdf,0x98,0x5f,0xbf,0x81,0x5b,0x20,0xbc,0xd,0x40,0x1f,0x80,0xb5,
0xfd,0x37,0xbc,0xaf,0x4e,0xdc,0xff,0xd5,0xe7,0xdb,0xbf,0xf8,0x7c,0xf7,0xe7,0xa7,
0xf7,0xdf,0xba,0xbc,0xff,0xb1,0xc9,0xfe,0x19,0xab,0xfd,0x6f,0x1c,0xf7,0x6f,0x72,
0xf7,0xcd,0x84,0xbb,0xd6,0xae,0x8f,0x6d,0x84,0x6b,0x36,0x2e,0x33,0x36,0x82,0x1,
0x6b,0x41,0xab,0x35,0xbf,0xca,0x9a,0x5f,0x6c,0xc5,0x2b,0xb0,0x72,0x59,0xb5,0x72,
0xdd,0xb6,0x16,0xe5,0xdb,0x89,0xa8,0x14,0x14,0xee,0xe0,0x6,0x29,0xc8,0xc7,0x41,
0xec,0x6f,0x7b,0x6b,0xf3,0xef,0xae,0x3e,0xfe,0x4b,0x33,0x9b,0x6f,0x20,0x8,0x81,
0x3,0x50,0x35,0x0,0x18,0x80,0xcf,0x8f,0xcc,0xde,0xfa,0x95,0xe8,0x9f,0x5e,0x13,
0x0,0x72,0xfc,0xbf,0x20,0xc7,0x3f,0x5,0x0,0x4c,0x3f,0x3a,0x0,0x99,0x7e,0x38,
0xfe,0xf,0x1c,0x80,0x4c,0xff,0x7d,0x32,0xfd,0x1b,0x1b,0xdb,0x0,0xc0,0xfa,0xfa,
0xf3,0xb5,0xd5,0x67,0xab,0x2b,0x4f,0x57,0x96,0x9f,0xc0,0xf4,0x2f,0x2f,0x2,0x0,
0xf,0x17,0xe7,0x1f,0x2c,0xcc,0x6d,0xcd,0xcf,0x22,0x0,0x73,0x33,0x9b,0xb3,0xd3,
0x1b,0x33,0x7,0x0,0xac,0x4c,0x8c,0xad,0x4e,0x8e,0x2d,0x8f,0x8f,0x2e,0x8d,0xd,
0x2f,0x8e,0xe,0x2d,0x8c,0x12,0x0,0x86,0x7,0x66,0x87,0xfa,0x67,0x6,0xfb,0xa6,
0x7,0x7a,0x81,0x81,0xa9,0x3e,0x0,0xa0,0xb,0x34,0xde,0xd3,0x9,0xc,0x0,0x0,
0x23,0x1d,0x6d,0x30,0xfd,0x4,0x80,0xe6,0xc1,0xd6,0xe6,0x81,0x96,0xa6,0xfe,0x66,
0x1a,0x80,0x9e,0x6,0x0,0x40,0xef,0x0,0x14,0x0,0x55,0x95,0xed,0x55,0x4,0x80,
0x8a,0xf2,0x16,0x2,0x40,0x13,0x38,0x40,0x29,0xd,0x40,0x7d,0x51,0x61,0x5d,0xe1,
0x11,0x0,0x72,0xc,0x0,0x94,0x67,0x92,0x6,0x9c,0x91,0x51,0x6a,0x70,0x0,0x0,
0x20,0x45,0xdf,0x1,0x92,0x92,0xf3,0x13,0xf5,0x11,0x48,0x97,0x90,0xf3,0xad,0x0,
0xa4,0x92,0x8,0x64,0x0,0x20,0x89,0x6,0x20,0x3c,0x21,0x2c,0xec,0x30,0x0,0x21,
0x1a,0x52,0x82,0xd,0xe,0x70,0x0,0x80,0x1f,0xae,0x41,0x5f,0x7,0x80,0x60,0x2f,
0x0,0x40,0x8e,0x0,0x78,0x1a,0x39,0x80,0xc2,0xc8,0x1,0x28,0x0,0xe4,0x2f,0x95,
0xe0,0x63,0x1,0xa0,0x22,0x90,0x31,0x0,0xe1,0x3c,0x59,0x14,0x57,0x16,0xcb,0x95,
0x69,0xb8,0x32,0x1d,0x57,0x9e,0xc0,0x55,0x94,0x71,0x95,0xbb,0x5c,0xff,0x4a,0xd7,
0x80,0x38,0x71,0x60,0x34,0xcd,0x40,0x60,0x98,0xd8,0x6c,0xf5,0x87,0x77,0x26,0xff,
0x37,0x7c,0x91,0xed,0x6d,0xbc,0x13,0x20,0xf,0x84,0x92,0x27,0x43,0xaf,0x5d,0x38,
0x7f,0xba,0xf3,0x9d,0xcf,0xf7,0x7f,0xfe,0xe9,0xee,0xcf,0x3e,0x7f,0xfc,0xcb,0xb3,
0x2b,0xbf,0xbf,0x32,0xf1,0xc5,0xdd,0xee,0xf3,0x96,0xf5,0x57,0xed,0x4b,0x6f,0xb3,
0x72,0xcc,0xf9,0xd9,0x36,0xfc,0xc,0x1b,0x5e,0x86,0x35,0x2a,0xd3,0x9a,0x9b,0x65,
0x85,0xca,0xb6,0xe2,0x55,0x5a,0x9,0x77,0xad,0x44,0x53,0x36,0xa2,0x64,0x92,0x82,
0xa2,0x1c,0xdc,0x82,0x1d,0xdc,0xfc,0x1c,0xdc,0x94,0x8e,0xac,0xac,0x6f,0x2e,0xef,
0xff,0xeb,0xdb,0x8d,0x3f,0x33,0xb4,0x61,0xbc,0x10,0x20,0x0,0x9c,0xfd,0xf2,0xf3,
0xb7,0x78,0x6f,0xbc,0xe,0x0,0xfa,0xfc,0x43,0x3,0x40,0x1d,0xff,0xcf,0x88,0x8,
0x0,0x8f,0x1,0x0,0x70,0x80,0x87,0xfb,0xf,0x1f,0xec,0x3f,0xd8,0xda,0xdb,0x22,
0x0,0x80,0x36,0xd1,0x1,0x9e,0xaf,0xaf,0x3d,0x5b,0x5b,0x1,0x21,0x0,0x2b,0x8,
0xc0,0xa3,0xa5,0x85,0x87,0x4b,0xf3,0xf,0x16,0xe7,0xb7,0x16,0x66,0xef,0xcf,0xcf,
0x6c,0xce,0x4d,0xeb,0x1,0x98,0x58,0x9b,0x9e,0x58,0x9d,0x1a,0x5f,0x99,0x1c,0x3,
0x2d,0x8f,0x8f,0x2c,0x8e,0xd,0xc3,0xf4,0x23,0x0,0x23,0x87,0x1,0x18,0xe8,0x99,
0xec,0xeb,0x6,0x4d,0x10,0x0,0xd0,0x1,0xba,0xe,0x0,0x18,0x6c,0xa3,0x0,0x68,
0x44,0x0,0x9a,0x1a,0x7a,0x1b,0xeb,0x29,0x0,0xba,0xea,0x6a,0x30,0x2,0x11,0x0,
0xda,0xab,0x1,0x80,0xa,0x3,0x0,0x78,0xfc,0x53,0x0,0x94,0xa0,0x3,0x0,0x0,
0x10,0x81,0x6a,0xb,0xf2,0xd,0xe,0x50,0x95,0x7b,0x3c,0x0,0x94,0x3,0x14,0x13,
0x0,0xa,0xd,0xe,0x90,0x98,0x98,0x97,0x90,0x80,0xc7,0xbf,0x4e,0x47,0x3,0xa0,
0x8d,0xcf,0x22,0x26,0x40,0x17,0x0,0xbd,0x3,0x18,0x0,0x48,0xa6,0x3a,0x40,0x44,
0x44,0x22,0x89,0x40,0x2f,0x1,0x10,0xac,0x7,0x20,0x50,0xd,0x25,0xf8,0xc0,0x1,
0xfc,0xa2,0xff,0x65,0x0,0x20,0x3,0x24,0x2,0x7d,0x27,0x0,0x72,0x91,0xf2,0x38,
0x0,0x14,0xfa,0xe,0x40,0x3b,0x40,0x8,0x4f,0x76,0x8,0x0,0x8e,0x2c,0x91,0x23,
0x4f,0xe2,0x78,0xcd,0x73,0x54,0xab,0xfc,0x80,0x44,0x51,0x80,0x5a,0x1c,0x18,0x25,
0x86,0xe9,0xf,0xa,0x11,0x7b,0x14,0xde,0xbb,0xb2,0xf7,0x6f,0xed,0xa2,0xcf,0x59,
0xdc,0xb8,0x41,0x9e,0x8b,0xc6,0xdb,0x0,0xd0,0xd5,0x73,0xe7,0x2e,0xd9,0x7e,0xf5,
0x61,0xce,0x2f,0x7e,0x9f,0xf8,0xb3,0x77,0xd5,0x6f,0x7c,0x1c,0xfd,0xbb,0x53,0xd1,
0x7f,0xb8,0x12,0x7b,0xf2,0x4e,0xdc,0xd7,0x56,0xf1,0xd7,0x1d,0x13,0xef,0x71,0x92,
0xad,0x78,0x29,0x36,0xbc,0x54,0x6b,0x10,0x37,0xd,0x64,0xc5,0x4d,0xb7,0xe2,0x66,
0xa0,0x4,0xe3,0x56,0xc2,0x3d,0x2b,0x51,0xb9,0x9d,0x18,0x52,0x50,0x8c,0x83,0x5b,
0xa8,0x83,0x9b,0xbf,0xa3,0x9b,0xca,0xd1,0xdd,0xdb,0xd1,0x6c,0xec,0x67,0xf0,0x7f,
0xce,0x54,0x7e,0x1a,0xde,0x1b,0xa6,0x9e,0xe,0xc2,0x5d,0xd0,0x67,0x9f,0x9f,0xfd,
0xe2,0x8b,0x2f,0xaf,0x7d,0xf8,0x7a,0x0,0xec,0x2,0x3,0x6,0x7,0x20,0x0,0x20,
0x3,0x24,0xff,0x3c,0xa1,0x0,0x80,0xe9,0x47,0xed,0x19,0x0,0x80,0xe9,0xdf,0x5c,
0xdf,0xde,0x58,0x7b,0xbe,0xbe,0xfa,0x6c,0x9d,0x0,0xb0,0x8a,0x0,0x3c,0x5a,0x5e,
0x0,0x3d,0x24,0xc,0x6c,0x2d,0x22,0x0,0x14,0x3,0x1b,0xb3,0x53,0x6b,0x33,0x13,
0xa0,0xd5,0xe9,0x89,0x95,0xa9,0xb1,0xe5,0xc9,0xd1,0xa5,0x89,0x91,0xc5,0xf1,0xe1,
0x85,0xb1,0xa1,0xf9,0xd1,0xc1,0xb9,0x91,0x1,0xd0,0xec,0x70,0xff,0xcc,0x50,0xdf,
0xf4,0x60,0xef,0x14,0x0,0xd0,0xdf,0x3d,0xd1,0xd7,0x85,0x0,0xf4,0x76,0x8e,0x75,
0x77,0x80,0x46,0x3a,0xdb,0x86,0x3b,0xc0,0x1,0x5a,0x86,0x10,0x80,0xa6,0x7e,0x63,
0x0,0x1a,0xeb,0xba,0x1b,0xea,0xba,0xeb,0x6b,0x3b,0x6b,0xab,0x11,0x80,0x9a,0x2a,
0x3c,0xfe,0x8d,0x1,0x28,0x47,0x7,0x80,0xe9,0x47,0x0,0x8a,0x11,0x80,0x3a,0x4,
0x40,0x1f,0x81,0xf2,0x72,0x21,0x5,0x19,0x3b,0x40,0x59,0x66,0x6,0x38,0x0,0x8,
0x1,0x48,0x33,0x0,0x80,0xf7,0x0,0x18,0x81,0xc,0x0,0xc0,0xf1,0x1f,0x1f,0x9f,
0xd,0x11,0x48,0xab,0xcd,0xd2,0x68,0x32,0xff,0x18,0x0,0x74,0x87,0x23,0xd0,0x77,
0x0,0x80,0x26,0xe0,0x13,0xe9,0xe3,0x13,0x1,0xd,0xf8,0xa5,0x8,0x84,0xf9,0xc7,
0xcb,0xf3,0x90,0x3,0x1c,0x7,0x0,0x39,0xfe,0x89,0x3,0xc8,0xdd,0xc8,0xe,0x54,
0x8c,0x3b,0xd0,0x6f,0x1,0x0,0x52,0x90,0x2f,0x5c,0x2,0xd0,0x5b,0x20,0x59,0x18,
0x57,0x16,0xc9,0x95,0xc5,0x70,0x65,0x71,0x5c,0x59,0x3c,0x47,0x96,0x40,0x18,0x28,
0xe5,0x78,0xef,0x72,0xfc,0xea,0x84,0x1,0x5a,0x51,0x40,0xc,0x94,0x1,0x71,0x60,
0x28,0x48,0x64,0xb9,0xf0,0xd3,0x5b,0x8b,0xff,0xd,0xbe,0xba,0x10,0x2e,0x86,0x71,
0xf4,0xcf,0x92,0x17,0x62,0xf0,0x4d,0xdf,0x73,0x5f,0x8a,0xdf,0x7f,0x2f,0xf2,0x67,
0xef,0x86,0xbf,0xf1,0x6e,0xd8,0xcf,0x3f,0xf,0x7f,0xf7,0x7c,0xe4,0x67,0x37,0x62,
0xce,0x99,0xaa,0x2f,0xdb,0x68,0x6e,0x31,0x75,0x66,0xbc,0x24,0x6b,0x10,0x17,0x94,
0x6c,0xcd,0x4d,0xb1,0xe2,0xa6,0x5a,0xd1,0x18,0xe4,0x5a,0x9,0x9f,0x59,0xb9,0xae,
0x59,0x8b,0x93,0x1d,0xc4,0x71,0xe,0x6e,0x11,0x90,0x82,0x1c,0xdd,0x7d,0x1d,0xdd,
0xbd,0x1c,0x85,0x91,0xe6,0x57,0xb7,0x7f,0x70,0x7d,0xf6,0xbf,0xde,0xbb,0x75,0xf9,
0xd2,0xa9,0x53,0x54,0x10,0xa2,0x57,0xa2,0x9f,0x7d,0xf6,0x5d,0x0,0xe0,0x53,0x40,
0xbb,0xf4,0xf4,0xbf,0x78,0xb1,0xbf,0xbd,0x8d,0x7a,0xe,0x0,0x90,0xe3,0x1f,0xa6,
0xff,0xc9,0x63,0x4,0xe0,0xf1,0x23,0xc2,0xc0,0x3,0x4,0xe0,0xc1,0xfd,0xdd,0xad,
0xcd,0x17,0xf7,0x37,0x40,0xdb,0x9b,0x6b,0xcf,0x37,0x10,0x80,0xa7,0x6b,0xcb,0x4f,
0xd6,0x96,0x9e,0xac,0x2e,0x3d,0x5e,0x5d,0x7c,0xb8,0x3c,0xf,0x7a,0xb0,0x3c,0x87,
0x0,0x2c,0xce,0x6c,0x2e,0x4c,0x6f,0xcc,0x4f,0xad,0xcf,0x4d,0xae,0xcd,0x4d,0xac,
0xcd,0x4e,0xac,0xcc,0x8c,0xad,0x4c,0x8f,0x2d,0x4f,0x8f,0x2e,0x4f,0x8e,0x2c,0x4e,
0xc,0x2f,0x8c,0xf,0xcd,0x8f,0xd,0x82,0x66,0x47,0xfb,0x67,0x47,0xfa,0x66,0x86,
0x7b,0xa7,0x87,0x7a,0xa7,0x6,0x7b,0x26,0x7,0xbb,0x27,0xfa,0xbb,0xc6,0xfb,0x3a,
0x41,0xa3,0x3d,0xed,0xa3,0xdd,0xed,0x23,0x5d,0x6d,0xc3,0x9d,0xad,0x43,0x1d,0x2d,
0x83,0xed,0xcd,0x3,0x6d,0x4d,0x3,0xad,0x4d,0x7d,0x2d,0xd,0x7d,0xcd,0xd,0xbd,
0x4d,0xf5,0x3d,0x8,0x40,0x6d,0x57,0x7d,0xd,0x98,0x0,0x30,0x80,0x0,0x54,0x23,
0x0,0xad,0x95,0xe5,0x2d,0x15,0xe5,0xcd,0xe5,0x65,0xcd,0xe5,0xa5,0x4d,0x65,0x25,
0x8d,0xa5,0x8,0x40,0x3d,0xd,0x40,0x1,0x38,0x40,0x4d,0x7e,0x7e,0x35,0x74,0x80,
0xbc,0xdc,0x3,0x7,0xc8,0xce,0x2a,0xcf,0xca,0xa4,0x0,0x80,0x8,0x44,0x4d,0xff,
0xb7,0x3a,0xc0,0x4b,0x0,0xa8,0xd5,0xe9,0xb1,0xea,0x34,0xe8,0x0,0x31,0x31,0xe8,
0x0,0xd1,0x64,0x5,0x14,0x19,0x95,0x64,0x70,0x80,0x70,0x74,0x0,0x4,0x20,0x14,
0x3b,0x80,0x16,0x4a,0x70,0xf0,0x31,0xe,0x10,0x43,0x3a,0x0,0xed,0x0,0xdf,0xe,
0x80,0xb7,0x1e,0x0,0x2f,0x7d,0x4,0xd2,0x3,0xe0,0x4f,0x1c,0x0,0x1b,0xb0,0xdc,
0xe3,0x10,0x0,0x72,0xb1,0x4a,0x2e,0x26,0xd3,0x2f,0xc2,0x2,0xf0,0x52,0x7,0x40,
0x7,0xc0,0x1a,0xc0,0x97,0xeb,0xef,0x1,0x64,0xa1,0x3c,0x59,0x4,0x57,0x16,0xcd,
0x95,0xa9,0x39,0x32,0x2d,0x47,0xa6,0xe3,0xc8,0x92,0x50,0x9e,0xb3,0x1c,0xe5,0x6,
0xcf,0x3f,0x59,0x14,0xa0,0x11,0x5,0x44,0x8b,0x2,0xc2,0xc5,0x81,0x21,0x62,0x59,
0xb6,0xd5,0x95,0xdd,0xef,0x5b,0x27,0x7e,0x65,0x79,0xf3,0x26,0x49,0x41,0xb8,0xf,
0xbd,0x42,0x30,0xb8,0x7c,0xfd,0xf4,0xfb,0x21,0xbf,0x7c,0x37,0xf4,0x67,0xef,0x84,
0xbc,0xf1,0x61,0xc8,0xaf,0x4f,0x85,0xfd,0xe1,0x52,0xc4,0x97,0xb7,0xa3,0x2e,0x5a,
0xc4,0x5c,0xb3,0x8f,0xbb,0xcb,0x8e,0xb7,0xe4,0x25,0x58,0x73,0x41,0x89,0x80,0x81,
0x15,0x78,0x2,0x27,0xc5,0x8a,0x93,0xa,0xb2,0xe4,0x77,0x58,0xba,0x40,0x1b,0x6e,
0xb5,0x73,0x8b,0x77,0x70,0x8b,0x6,0x13,0x70,0x74,0xf7,0x77,0x74,0x57,0x3a,0xba,
0x7b,0x3a,0xda,0xd7,0x7f,0x82,0x6d,0x38,0xe9,0x3,0x30,0x1c,0xc3,0x3e,0x94,0x6a,
0x2,0xdf,0x9,0xc0,0xde,0xfe,0xde,0xde,0xfe,0x2e,0x39,0xfe,0xf,0x1,0xf0,0xd4,
0x8,0x0,0x32,0xfd,0x8f,0x1e,0xec,0x3d,0xdc,0x2,0xed,0x2,0x0,0xf,0x36,0x5f,
0x6c,0x6d,0x6c,0xdf,0x5f,0x47,0x0,0x36,0x57,0x9f,0x6d,0xac,0x3c,0xdd,0x58,0x79,
0xb2,0xbe,0xf4,0x78,0x6d,0x11,0xf4,0x70,0x75,0xe1,0xe1,0xca,0xfc,0xd6,0xf2,0x2c,
0xe8,0xfe,0xd2,0xcc,0xe6,0xe2,0xcc,0xc6,0xe2,0xd4,0xc6,0xc2,0xd4,0xda,0xfc,0x4,
0x68,0x75,0x76,0x6c,0x79,0x76,0x74,0x79,0x66,0x74,0x69,0x7a,0x64,0x71,0x6a,0x78,
0x61,0x72,0x68,0x7e,0x62,0x70,0x6e,0x7c,0x60,0x76,0xac,0x7f,0x66,0xb4,0x6f,0x66,
0xa4,0x77,0x7a,0xb8,0x77,0x6a,0x88,0x0,0x30,0xd0,0x35,0xde,0xdf,0x39,0xde,0xdf,
0x31,0xda,0xdb,0xe,0xc,0x8c,0x74,0xb7,0xd,0x75,0xb5,0x20,0x0,0x1d,0x8,0x40,
0x7f,0x6b,0x23,0x0,0xd0,0xdb,0xdc,0xd0,0x63,0x4,0x40,0x67,0x5d,0x75,0x7,0x1,
0xa0,0x8d,0x0,0x0,0x6a,0xa9,0x34,0x0,0x50,0xa,0x0,0x34,0x18,0x0,0x28,0x32,
0x0,0x90,0x4b,0x1,0x50,0x99,0x93,0xd,0x5b,0xa0,0xf2,0x2c,0x1a,0x80,0x52,0x23,
0x0,0x8a,0xf4,0x11,0xa8,0x20,0x29,0x29,0x1f,0x94,0x98,0x4,0x11,0x28,0x97,0x8e,
0x40,0x87,0x0,0xc8,0x80,0x12,0x4c,0x0,0x20,0xc,0x20,0x0,0x29,0xa4,0x3,0xbc,
0x1c,0x81,0x8e,0x1,0x20,0x8,0x3b,0x80,0x21,0x2,0x11,0x0,0xf4,0x11,0xc8,0xd7,
0x17,0x8e,0x7f,0x63,0x7,0x8,0x83,0x12,0xac,0xf4,0xc6,0x6,0xec,0xed,0x15,0x72,
0x1c,0x0,0x24,0xff,0x48,0x11,0x0,0xc5,0x21,0x0,0xe0,0xf8,0x47,0x7,0x78,0x9,
0x0,0x6c,0xc0,0x86,0x12,0x8c,0xd7,0xc0,0x70,0x11,0x26,0x90,0x53,0x0,0xf8,0xf3,
0x64,0x41,0x3c,0x59,0x8,0x57,0x16,0xce,0x25,0x35,0x80,0x23,0x8d,0xe3,0x48,0xe3,
0x39,0xd2,0x44,0x4,0x40,0x5e,0xcc,0xf1,0xde,0xe1,0xf8,0x36,0xba,0xf8,0xc7,0x8b,
0x2,0x62,0x45,0x1,0x91,0xa2,0x80,0x50,0x51,0x40,0x88,0xc8,0x66,0xea,0xd7,0x37,
0x37,0xfe,0x33,0x7c,0x79,0xdb,0x9d,0x6f,0x2e,0x53,0x55,0x18,0x22,0x10,0x15,0x84,
0x4e,0x71,0xfe,0xf0,0x6e,0xc8,0xcf,0xde,0x9,0x7e,0xe3,0x9d,0xa0,0x9f,0x7d,0x1a,
0xf4,0xce,0xb9,0xd0,0x4f,0xaf,0x86,0x9f,0xbe,0x17,0xf9,0x8d,0x4d,0xcc,0x4d,0x27,
0xf5,0x3d,0x4e,0xbc,0x15,0x37,0xde,0x9a,0xab,0x3,0x59,0x71,0x12,0xac,0x38,0x34,
0x6,0x96,0x9c,0x34,0x4b,0xc1,0xa6,0xa5,0xf0,0xa9,0xb5,0x38,0xc3,0xc1,0xd,0x4d,
0xc0,0xd1,0x2d,0xc8,0xd1,0xd,0x4c,0xc0,0x1b,0xb2,0x90,0x3d,0xb6,0xe1,0xa7,0x7f,
0x76,0xcf,0xfe,0x12,0xb4,0x61,0x6a,0x11,0x44,0x5,0xa1,0xef,0x2,0x80,0x9a,0x7e,
0xcc,0x3f,0x2f,0x88,0xc8,0xf1,0xff,0xfc,0xd9,0xfe,0x33,0x0,0xe0,0xc9,0xfe,0xd3,
0xc7,0xa8,0x27,0x8f,0xf6,0x1f,0x13,0x0,0x1e,0x6d,0xed,0x3d,0xde,0xda,0x7d,0x78,
0x7f,0xe7,0xc1,0xc6,0x8b,0x7,0x1b,0xdb,0x5b,0xeb,0xdb,0xf7,0xd7,0x9e,0xdf,0x5f,
0x7d,0xb6,0xb9,0xf2,0x74,0x73,0xf9,0xc9,0xc6,0xd2,0xe3,0xf5,0xc5,0x47,0x6b,0xb,
0xf,0xd7,0xe6,0x1f,0xac,0xce,0x6d,0xad,0xcc,0x82,0xee,0x2f,0xcf,0x6c,0x2e,0x4f,
0x6f,0x2c,0x4f,0xad,0x2f,0x4d,0xae,0x2d,0x4e,0xac,0x2e,0x8c,0xaf,0xcc,0x8f,0x2d,
0xcf,0x8d,0xa2,0x66,0x47,0x17,0x67,0x86,0x17,0xa6,0x86,0xe6,0xa7,0x6,0xe7,0x26,
0x6,0x66,0xc7,0xfb,0x41,0x53,0xc3,0x3d,0x93,0xc3,0xdd,0x53,0xc3,0xdd,0xf0,0x39,
0x31,0xd4,0x35,0x3e,0xd0,0x9,0x1a,0xeb,0xef,0x18,0xe9,0x6d,0x1b,0xee,0x69,0x1d,
0xea,0x6e,0x1,0x6,0x10,0x80,0x8e,0xa6,0xfe,0xb6,0xc6,0xbe,0xd6,0x86,0xde,0x96,
0x86,0x9e,0xe6,0xba,0x9e,0x26,0xda,0x1,0x3a,0xeb,0xab,0x3b,0xea,0xaa,0x3a,0x6a,
0xab,0xda,0x6b,0x2a,0xdb,0xaa,0x89,0x3,0x54,0x96,0xb5,0x54,0xa0,0x3,0x34,0xa2,
0x3,0x94,0x34,0x94,0x14,0xd5,0x17,0x17,0xd6,0x91,0x12,0x5c,0x5b,0x98,0x5f,0x53,
0x90,0x5f,0x9d,0x6f,0x0,0x20,0xa7,0x2,0xd6,0xa0,0x7a,0x7,0x0,0x0,0x4a,0xc0,
0x1,0xd2,0xd3,0x8a,0xd3,0x52,0x8b,0x52,0x53,0xa8,0xe,0x50,0x90,0x9c,0x4c,0x0,
0x48,0xcc,0x4b,0x4c,0x4,0x0,0x72,0xb0,0x3,0x60,0xfe,0xd1,0x47,0x20,0x98,0x7e,
0xa,0x0,0x38,0xfe,0x69,0x7,0x40,0x0,0xa2,0x0,0x0,0x28,0x0,0x74,0x7,0x48,
0x20,0x1d,0x0,0x0,0x88,0x47,0x7,0x80,0xe3,0x9f,0x76,0x80,0x38,0x4,0x20,0x50,
0xd,0x22,0x1d,0xc0,0x0,0x40,0x14,0x1c,0xff,0x47,0x0,0x50,0x29,0xff,0x9f,0x3,
0x40,0x6d,0x81,0xf0,0x16,0x8c,0x5c,0x84,0xd1,0x0,0xe0,0x83,0x40,0x4,0x80,0x40,
0x2,0x40,0x18,0x57,0x1a,0xc1,0x95,0x46,0x73,0xa4,0x6a,0x8e,0x54,0xcb,0x91,0x26,
0x70,0xa4,0x49,0x6c,0x69,0x32,0x5b,0x31,0xcd,0x51,0x6e,0x71,0xfd,0x53,0x44,0xfe,
0xb4,0x9,0x20,0x0,0x8a,0x54,0xfb,0xab,0x3b,0x7f,0x62,0x95,0xf5,0x89,0xf5,0xad,
0xdb,0xe4,0xe9,0x68,0x6c,0x2,0x10,0x81,0x0,0x80,0x2b,0xdf,0x9c,0xfd,0xc0,0xf7,
0x57,0xef,0x4,0xbd,0xf1,0x76,0xe0,0x4f,0xdf,0xf,0xf8,0xe5,0x97,0x41,0x1f,0x5c,
0xa,0xf9,0xf2,0x56,0xd8,0x5,0xf3,0xc8,0xab,0x76,0xd1,0x77,0x98,0x71,0x16,0x5c,
0xad,0x35,0x8,0x48,0xe0,0x50,0xc,0x24,0x5a,0x72,0x92,0x2c,0x39,0xc9,0x96,0xdc,
0x4a,0x4b,0x97,0x3d,0x2b,0xb8,0x2b,0x10,0x83,0x9,0x60,0x13,0x70,0xa4,0x9a,0x80,
0x9b,0xa7,0x23,0x3b,0xed,0xa,0xb4,0xe1,0x5b,0x2d,0x3f,0x81,0xd0,0x75,0xf1,0xab,
0x93,0xd4,0xf4,0x7f,0x27,0x0,0x30,0xfd,0x14,0x0,0xe4,0xf8,0x87,0xe9,0xdf,0x7e,
0x8e,0x2,0x0,0x9e,0x3f,0xdd,0x7f,0xf6,0x4,0x85,0xc,0x3c,0x42,0x3d,0x79,0x0,
0xd3,0xbf,0xf7,0xe8,0xfe,0xce,0xa3,0x4d,0xd0,0x8b,0x87,0x1b,0xdb,0xf,0xd6,0x9f,
0x6f,0xad,0x3e,0xdb,0x5a,0x1,0x3d,0xbd,0xbf,0xfc,0x78,0x73,0xe9,0xf1,0xe6,0xe2,
0xa3,0x8d,0x85,0x87,0x1b,0xf3,0xf,0xd6,0xe7,0x40,0x5b,0x6b,0xb3,0x9b,0xab,0xd3,
0xa0,0x8d,0x95,0xa9,0xf5,0x95,0xc9,0xb5,0xa5,0x89,0xd5,0xc5,0xf1,0x95,0xc5,0xb1,
0xe5,0xf9,0x51,0xd0,0xc2,0xd4,0xe0,0xcc,0x58,0xdf,0x58,0x5f,0x67,0x7f,0x5b,0x53,
0x7b,0x6d,0x55,0x7d,0x49,0x71,0x79,0x56,0x76,0x41,0x72,0x4a,0x79,0x4e,0xf6,0xf8,
0x60,0xe7,0xe4,0x48,0xd7,0xc4,0x70,0xd7,0xf8,0x50,0xe7,0xd8,0x60,0xc7,0xe8,0x40,
0xfb,0x68,0x7f,0xfb,0x70,0x6f,0xeb,0x50,0x4f,0xcb,0x60,0x57,0x33,0x8,0x1,0x68,
0x6f,0xec,0x6b,0x6b,0xe8,0x6d,0xad,0xef,0x69,0xae,0xef,0x6e,0xaa,0xed,0x6a,0xac,
0xed,0x6c,0xa8,0x21,0x0,0x54,0xb7,0xd7,0x56,0xb6,0x51,0x0,0x54,0x21,0x0,0xcd,
0x15,0x65,0x4d,0x34,0x0,0xe0,0x0,0x34,0x0,0xb5,0x34,0x0,0x79,0x0,0x40,0x95,
0xde,0x1,0x70,0xfa,0x89,0xca,0x32,0x33,0x4b,0x33,0xd2,0x4b,0x40,0x7a,0x0,0xa,
0x1,0x80,0x14,0x1a,0x0,0x98,0x7e,0x74,0x80,0x4,0x9d,0x1,0x80,0x2c,0xba,0x3,
0xc4,0x65,0xc4,0xc5,0xa5,0xeb,0x23,0x50,0xaa,0xde,0x1,0x92,0xf,0x1,0x10,0x9e,
0xa0,0x8f,0x40,0xb8,0x3,0x25,0x0,0x68,0x20,0x2,0x5,0x7,0x7f,0x7,0x0,0xbe,
0xc4,0x1,0x7c,0x54,0xe1,0xd0,0x1,0x5e,0x1,0x40,0x10,0x89,0x40,0x81,0x90,0x7f,
0x3c,0x65,0x87,0x1c,0x40,0x71,0x10,0x81,0x5e,0xe9,0x0,0x78,0xd,0x6c,0x0,0xc0,
0x5,0x1,0xf0,0x16,0xc8,0x29,0x0,0xfc,0x78,0xb2,0x0,0x9e,0x2c,0x98,0x2b,0xb,
0xe5,0x4a,0xc3,0xb9,0xd2,0x28,0x8e,0x94,0x36,0x1,0xb6,0x34,0x91,0xd,0xc,0xc8,
0xa,0xd9,0x5e,0x60,0x2,0xcd,0x68,0x2,0xfe,0x60,0x2,0x11,0x8,0x40,0x40,0xb0,
0xc8,0x7e,0xe4,0x9d,0xeb,0xf,0xff,0xa3,0x3,0xe3,0xe,0x7c,0x25,0x4,0x4c,0x3f,
0xb5,0x15,0x45,0x6,0xce,0x9e,0x3b,0x6d,0xff,0xf1,0x3b,0x81,0x6f,0xbc,0x1d,0xf0,
0xd3,0xb7,0xfd,0xdf,0xf8,0xd8,0xff,0xad,0xb3,0x41,0x9f,0x5e,0x9,0x39,0x7d,0x37,
0xec,0x6b,0xeb,0xc8,0x9b,0x8e,0x31,0xf7,0xd8,0x6a,0x4b,0xae,0xc6,0x9a,0xa3,0xb1,
0xe2,0x68,0xad,0x8,0x6,0x96,0x6,0x6,0xf8,0xd3,0x96,0x2e,0xbb,0x56,0xe2,0x2,
0x7b,0xba,0x9,0x4,0xc1,0x3e,0xd4,0xd1,0xcd,0xcb,0xd1,0x4d,0xe1,0x68,0x3e,0xf2,
0xb3,0xcb,0x7b,0xff,0xfa,0x9e,0xd7,0x49,0x78,0x6f,0x18,0x1c,0xe0,0xcc,0x67,0x9f,
0x81,0x15,0x7c,0xbb,0x3,0xe8,0xf3,0xcf,0xce,0x8b,0x7d,0x90,0x1,0x80,0xed,0xa7,
0x8,0xc0,0x73,0x0,0xe0,0xf1,0xfe,0x33,0x98,0xfe,0x87,0xfb,0x4f,0x1f,0xec,0x3f,
0xdd,0xda,0x7b,0xb2,0xb5,0xfb,0x78,0x73,0xe7,0xf1,0xc6,0x8b,0x47,0xa0,0xf5,0xed,
0x87,0x6b,0xcf,0x1f,0xad,0x3d,0x7b,0xb8,0xf2,0xf4,0xc1,0xf2,0xd3,0x87,0xcb,0x8f,
0x1f,0x2c,0x3e,0xde,0x5a,0x7c,0x74,0x7f,0x1,0xf4,0x60,0x73,0xe,0x74,0x7f,0x7d,
0x66,0x73,0x7d,0x7a,0x63,0x75,0xa,0x86,0x7e,0x61,0x7a,0x68,0x6a,0xb8,0x77,0xb8,
0xbb,0xad,0xab,0xa1,0xae,0xb5,0xb2,0xa2,0x3a,0x3f,0xbf,0x24,0x3d,0x23,0x2f,0x31,
0x39,0x4b,0x9b,0x90,0xa6,0xd6,0xa4,0xc6,0xa8,0x93,0xa3,0x63,0x93,0xa3,0x62,0x53,
0xe0,0x8f,0xa8,0x98,0xe2,0xac,0x8c,0xb1,0xe1,0x8e,0x89,0xd1,0xce,0xf1,0x91,0x4e,
0xf8,0x63,0x74,0xa8,0x7d,0x64,0xa0,0x6d,0xb8,0xaf,0x75,0xa8,0xb7,0x65,0xb0,0xa7,
0x79,0xb0,0xbb,0x79,0xa0,0xab,0xa9,0xbf,0xa3,0xb1,0xaf,0xbd,0xa1,0xb7,0xad,0xa1,
0xa7,0xa5,0xae,0xbb,0x19,0x0,0xa8,0xe9,0x6c,0xa8,0x6,0x81,0x3,0x10,0x0,0x2a,
0x5a,0xf,0x0,0x28,0x25,0x0,0x14,0x83,0x9,0xd4,0xd3,0x0,0x14,0xd4,0x15,0x15,
0xd4,0xa0,0x3,0xd0,0x0,0x54,0x92,0x8,0x54,0x91,0x43,0x0,0x80,0xe,0x90,0x95,
0x51,0x9a,0x89,0x0,0x14,0x1b,0x0,0x48,0xa5,0x0,0xc0,0x8,0x84,0x0,0x24,0xd2,
0x0,0x64,0x13,0x7,0x0,0x0,0x32,0xa1,0x4,0x6b,0x34,0x7a,0x0,0xd0,0x1,0x8,
0x0,0x70,0xfc,0xa3,0x28,0x7,0x48,0x24,0x5b,0x20,0x0,0x40,0x47,0x39,0x0,0x5,
0x40,0x8,0x1,0x0,0x8e,0xff,0xa0,0x20,0x3c,0xfe,0x3,0x3,0x63,0xd,0xe,0xe0,
0x8f,0x11,0x28,0xca,0x8f,0x38,0x0,0x5,0x80,0x8a,0x0,0xa0,0xd4,0x3b,0x80,0x92,
0x8e,0x40,0xd8,0x80,0x89,0xe,0x0,0xf0,0x34,0x8a,0x40,0xaf,0xf,0x0,0x79,0x14,
0x42,0x1,0xe,0x40,0x4c,0x40,0xae,0xe4,0x43,0xa,0x92,0x51,0x0,0x4,0x71,0xa5,
0x21,0x5c,0x29,0x9a,0x0,0x47,0x6f,0x2,0x6c,0xa9,0xe,0x1,0x0,0x29,0x26,0xd8,
0xde,0xf,0xb9,0x7e,0xa9,0xae,0xfe,0x71,0x22,0xff,0x28,0x51,0x40,0x98,0xc8,0x3f,
0x58,0xe4,0xa5,0x73,0xbe,0xf6,0xe2,0x7,0xe6,0x25,0xef,0x5b,0xdd,0xbe,0x4d,0x22,
0x10,0xe6,0x1f,0x74,0x0,0x78,0x2f,0xfe,0xc2,0xb9,0xf,0xbd,0x7e,0x3,0xd3,0xff,
0x96,0xdf,0x4f,0xdf,0xf3,0xfb,0xc5,0x89,0x80,0xf7,0xbf,0xe,0x3a,0x71,0x23,0xe4,
0x9c,0x69,0xd8,0x15,0xdb,0xc8,0xdb,0xce,0x31,0x66,0x1c,0xb5,0x15,0x27,0xce,0xa,
0x19,0xd0,0x58,0x41,0x31,0x60,0xeb,0x2c,0xd9,0x9,0x96,0x6c,0xf0,0x81,0x5c,0x4b,
0xc1,0xb,0x4b,0xe1,0xa2,0xb5,0x58,0xe7,0xa0,0x5f,0x7,0x39,0xb8,0x41,0xa,0x52,
0x38,0xba,0x84,0x62,0x1b,0xbe,0xb6,0xf8,0x77,0xf7,0x6e,0x5f,0x81,0x36,0x7c,0x1a,
0x1,0xf8,0xb6,0x8,0x44,0xa6,0x7f,0x6f,0x77,0x7f,0x77,0x67,0x7f,0x57,0xf,0xc0,
0x8b,0xe7,0xfb,0x2f,0x9e,0xed,0x3,0x0,0xc8,0xc0,0x93,0xfd,0xe7,0x8f,0xf7,0x9f,
0x3f,0xda,0x7f,0xfe,0x70,0xff,0xd9,0xc3,0xbd,0x67,0x5b,0x7b,0xcf,0xee,0xef,0x3e,
0xdd,0xdc,0x79,0xba,0xf9,0xe2,0xc9,0x3a,0x68,0xfb,0xf1,0xda,0xf3,0xc7,0xab,0x4f,
0x1f,0xad,0x3c,0x7d,0xb4,0xfc,0x84,0x0,0xf0,0x70,0x6b,0xfe,0xfe,0xda,0xc,0xe4,
0x9c,0x85,0xa9,0xe1,0x89,0x81,0xee,0xfe,0xb6,0xe6,0xf6,0x9a,0xea,0xba,0xa2,0xe2,
0x8a,0xec,0xdc,0xc2,0xd4,0xf4,0xfc,0xa4,0x94,0x1c,0x5d,0x52,0x86,0x26,0x3e,0x13,
0xa4,0xd5,0xc1,0x27,0xcc,0x3d,0x8,0x86,0x1e,0xe7,0x1e,0x0,0x88,0x8e,0x4d,0x8a,
0x8c,0x4e,0x88,0x88,0x4a,0x8c,0x8c,0x2e,0xc9,0xc9,0x18,0x1b,0xe9,0x18,0x1f,0xed,
0x1c,0x1b,0xed,0x18,0x1d,0x6e,0x1f,0x19,0x6a,0x1b,0x1e,0x68,0x1d,0xea,0x6f,0x19,
0xec,0x6d,0x6,0x6,0x6,0xba,0x9b,0xfa,0x3b,0x1b,0x7b,0x3b,0xea,0x7b,0xdb,0xea,
0x7b,0x5a,0x9,0x0,0x4d,0x35,0x9d,0x84,0x81,0xf6,0xfa,0xaa,0xf6,0xba,0xaa,0xb6,
0xda,0x8a,0xd6,0x9a,0x8a,0x96,0xaa,0xb2,0xe6,0xaa,0xb2,0xa6,0xa,0x0,0xa0,0xa4,
0xb1,0xbc,0xa4,0xa1,0xac,0xa8,0xa1,0xb4,0xb8,0xbe,0xa4,0xb0,0xae,0xb8,0xa0,0x16,
0x3a,0xc0,0x1,0x0,0x39,0x0,0x40,0x45,0x6e,0x76,0x39,0x5,0x40,0x76,0x66,0x69,
0x26,0x0,0x90,0x51,0x92,0x91,0x46,0x3,0x90,0x96,0x52,0x98,0x9a,0x52,0x90,0x92,
0x9c,0x8f,0x0,0x90,0xfc,0xf3,0x12,0x0,0xb8,0x5,0x3a,0x0,0x40,0x9d,0x16,0x8b,
0x0,0xa4,0x10,0x0,0x68,0x7,0x88,0xa4,0x0,0x80,0xfc,0xa3,0x7,0x20,0x34,0x14,
0xa6,0x9f,0x76,0x80,0x20,0x74,0x80,0x3,0x0,0x2,0x30,0x2,0x45,0x1f,0x6,0x0,
0x8e,0xff,0xa3,0xe,0xa0,0x84,0x2,0x80,0x1d,0x80,0x9e,0x7e,0x0,0xc0,0x4b,0xef,
0x0,0xff,0x37,0x0,0xe0,0xcb,0x0,0x7a,0x0,0x54,0x7c,0x99,0x2f,0x4f,0x6,0x29,
0x28,0x80,0x2b,0xd,0xe6,0x4a,0xd1,0x4,0x38,0x60,0x2,0x92,0x58,0x8e,0x24,0x8e,
0x2d,0x89,0x67,0x4b,0x12,0xd9,0x12,0x30,0x81,0x7c,0xb6,0xd7,0xb,0xb6,0x4f,0xbb,
0xc0,0x2f,0xde,0xd5,0x2f,0xd6,0xd5,0x3f,0xd2,0xd5,0x1f,0x18,0x8,0x75,0x75,0xea,
0xff,0xc3,0xb5,0x67,0x7f,0x6e,0xcf,0xbd,0xd,0x6f,0xcd,0xe3,0xa3,0xd1,0x30,0xfa,
0xf8,0xdd,0x10,0xe7,0x2e,0x9f,0x39,0x7b,0xd6,0xe2,0xb3,0xb7,0xfd,0x10,0x80,0xb7,
0x7c,0x7f,0xfa,0x91,0xdf,0x9b,0xa7,0x3,0x3e,0xba,0x12,0x74,0xea,0x76,0xe8,0xd7,
0x16,0xe1,0xd7,0x1c,0xa2,0x4c,0x58,0xb1,0x16,0x14,0x3,0x6c,0x90,0xc6,0xf2,0x80,
0x81,0x44,0x4b,0x5e,0x8f,0xa5,0x60,0xdf,0x52,0x54,0x67,0x7,0x26,0x20,0x8e,0x70,
0x80,0x27,0x23,0xe0,0x52,0xcc,0xcd,0xd3,0xc1,0x4d,0xe6,0x60,0x5f,0x3,0x6d,0xf8,
0x7b,0x77,0xd3,0xde,0x23,0x4f,0x4a,0xc3,0xdd,0xf0,0x77,0x0,0xb0,0x7b,0x0,0x0,
0x32,0xb0,0xbd,0xbf,0x43,0x0,0x78,0xf1,0x74,0xff,0xc5,0x13,0xa2,0xc7,0xfb,0x2f,
0x1e,0xed,0x6f,0x3f,0xdc,0x7f,0xfe,0x60,0xef,0xf9,0xfd,0x5d,0x0,0xe0,0xf9,0xfd,
0x9d,0x67,0xf7,0x5f,0x3c,0x5d,0x7f,0xfe,0x78,0xed,0xf1,0xd6,0xd2,0xd6,0xda,0xdc,
0xca,0xdc,0xf8,0xec,0xe8,0xe0,0x68,0x77,0x67,0x4f,0x63,0x43,0x73,0x59,0x79,0x7d,
0x51,0x49,0x79,0x56,0x4e,0x71,0x6a,0x46,0x61,0xa,0x4e,0x7c,0x41,0x72,0x5a,0x4e,
0x42,0x52,0xb6,0x2e,0x31,0x2b,0x3e,0x1,0x3e,0xb3,0xe3,0x13,0x0,0x0,0x54,0x1c,
0x7e,0xc2,0xd9,0xf,0x42,0x0,0xa2,0x11,0x80,0xa4,0xa8,0x18,0x10,0x2,0x40,0x54,
0x9a,0x9b,0x39,0x3a,0xd6,0x3e,0x36,0xd6,0x31,0x3a,0xda,0x36,0x32,0xd2,0x36,0x3c,
0xd4,0x3a,0x34,0xd8,0x32,0xd8,0xdf,0x3c,0xd0,0xd7,0xd4,0xdf,0xd3,0xd4,0xd7,0xd5,
0xd0,0xd7,0xd9,0x0,0xc,0xf4,0xb4,0xd5,0x75,0xb7,0xd6,0x76,0xb5,0x10,0x6,0x9a,
0x10,0x80,0xb6,0xba,0x4a,0x2,0x40,0x79,0x4b,0x75,0x39,0x2,0x50,0x59,0xda,0x54,
0x1,0x0,0x14,0x3,0x0,0xf5,0xa5,0x45,0x75,0x34,0x0,0xf9,0xe8,0x0,0x85,0x79,
0x55,0x18,0x81,0x72,0x2a,0xf3,0xb2,0xd,0x0,0x94,0x65,0x21,0x0,0x98,0x7f,0x8,
0x0,0x45,0x69,0xa9,0x30,0xfd,0x46,0x0,0x24,0xe5,0x25,0x21,0x0,0x39,0x18,0x81,
0xe2,0xc1,0x1,0xb2,0xe2,0xd,0xe,0xa0,0x8f,0x40,0x6a,0x23,0x0,0xa2,0x11,0x80,
0x24,0x83,0x3,0x44,0x18,0x1c,0x20,0x14,0x3a,0x80,0x1,0x0,0xcc,0x3f,0x46,0x0,
0x60,0x1,0x0,0x0,0x48,0x9,0x36,0x38,0xc0,0x2b,0x0,0xf0,0x44,0x0,0xbc,0xc9,
0xf1,0xf,0x11,0xc8,0x18,0x0,0x4f,0x7d,0x9,0x56,0xc0,0xa,0x8,0xb7,0x40,0x3e,
0x28,0x68,0xc0,0x58,0x82,0x95,0x87,0xb7,0x40,0xf8,0x24,0x9c,0x5c,0xe8,0x9,0xe,
0xa0,0x70,0x51,0x10,0x13,0x90,0x83,0xbc,0xf9,0x90,0x82,0x64,0x3e,0x3c,0x34,0x1,
0x7f,0x9e,0x94,0x36,0x1,0x8e,0x24,0x92,0x23,0x89,0xe1,0x48,0xd4,0x6c,0x89,0x96,
0x2d,0xd1,0xd1,0xc,0xc8,0x47,0xd9,0x5e,0x8f,0x39,0xbe,0xa9,0xae,0x7e,0x3a,0x57,
0x3f,0x8d,0xab,0x5f,0xc,0x62,0xa0,0x4c,0x60,0xdd,0x78,0xfe,0x97,0xa6,0x75,0xbf,
0xb5,0xbe,0x73,0x7,0x1e,0x11,0xa5,0x3a,0x0,0xdd,0x4,0xce,0x9d,0xfd,0xc8,0xfd,
0xcd,0xb7,0x9,0x0,0xef,0xfa,0xfe,0xe2,0xb,0xff,0xf7,0x2e,0x4,0x7c,0x7e,0x3d,
0xe8,0xec,0xbd,0xd0,0xcb,0xd6,0xe1,0xb7,0x9c,0xa2,0xee,0x71,0x62,0xad,0x80,0x1,
0x36,0x28,0xce,0xf2,0x80,0x81,0x44,0xb,0x76,0xaa,0x5,0xff,0xa1,0xa5,0xcb,0x43,
0x2b,0x51,0x12,0xde,0x9,0x88,0x43,0x1d,0xc4,0x70,0x29,0xe6,0xed,0xe0,0x26,0x77,
0x10,0x7b,0xd9,0xdd,0x5a,0xff,0xfb,0x2b,0xcf,0x7e,0x60,0xea,0xfc,0x35,0xb9,0x1b,
0xfe,0xb6,0x8,0x44,0xde,0x84,0xdf,0xdb,0x21,0x7a,0xb1,0xbf,0xbb,0xbd,0xbf,0xfb,
0x7c,0x7f,0xf7,0xd9,0xfe,0xce,0xd3,0xfd,0x9d,0x27,0x28,0xfd,0xf4,0xc3,0xd9,0xbf,
0xfd,0x68,0xfd,0xf1,0xc6,0xd2,0xc6,0xc2,0xf4,0xe2,0xc4,0xe8,0x44,0x5f,0xcf,0x40,
0x4b,0x4b,0x57,0x6d,0x5d,0x63,0x49,0x79,0x4d,0x5e,0x61,0x65,0x4e,0x7e,0x59,0x56,
0x4e,0x69,0x46,0x76,0x51,0x5a,0x46,0x51,0x6a,0x3a,0x99,0xfb,0x54,0x6a,0xf4,0xf3,
0x92,0x52,0xf0,0xd4,0x4f,0x48,0x82,0x83,0x3f,0x3b,0x1e,0xa7,0x3f,0x8b,0x1c,0xfc,
0x70,0xfc,0x53,0x18,0xa4,0xc3,0x3,0x64,0x5a,0xea,0x1f,0xea,0xe0,0xf,0xc0,0x0,
0xce,0x7e,0x0,0x0,0x30,0x88,0xf,0x87,0xf3,0x32,0xaa,0xac,0x30,0x6b,0x74,0xac,
0x6d,0x74,0xbc,0x7d,0x64,0xac,0x6d,0x64,0xb4,0x75,0x68,0xb8,0x5,0x18,0x18,0xe8,
0x6f,0x2,0x6,0xfa,0x7a,0x1a,0x7b,0xbb,0x1b,0x7a,0x3b,0xeb,0x7b,0x3a,0xea,0xba,
0xdb,0x0,0x80,0x1a,0x50,0x47,0x53,0x55,0x47,0x43,0x55,0x7b,0x7d,0x65,0x6b,0x5d,
0x45,0x6b,0x6d,0x79,0x4b,0x4d,0x79,0x73,0x35,0x98,0x40,0x69,0x23,0x2,0x80,0xe,
0x50,0x5f,0x5a,0x88,0x0,0x94,0x80,0x3,0x20,0x0,0xd5,0x10,0x81,0xa,0x72,0x2b,
0x11,0x0,0x74,0x0,0x88,0x40,0x65,0xd9,0x90,0x7f,0x32,0x4b,0xb3,0x32,0x4a,0x30,
0x2,0x1,0x0,0xa9,0x8,0x0,0x3a,0x40,0x32,0xe5,0x0,0x30,0xfd,0xc7,0x1,0x40,
0x8e,0x7f,0xd,0x0,0xa0,0x86,0xe,0x90,0xa6,0x8e,0x3d,0x70,0x80,0xe8,0x28,0x1a,
0x80,0xc8,0x8,0x70,0x0,0x2c,0x0,0x24,0x2,0x61,0x3,0xa6,0x0,0x20,0x11,0xc8,
0x0,0x40,0x2c,0x89,0x40,0x31,0x1,0x4,0x0,0xbd,0x3,0x44,0x92,0x8,0x64,0x0,
0x20,0x8c,0x74,0x80,0x50,0x14,0x59,0x1,0xbd,0x2,0x0,0x7f,0xb2,0x5,0xf2,0x43,
0xbd,0x12,0x0,0x6f,0xfd,0x1a,0xf4,0x30,0x0,0xc4,0x1,0x28,0x0,0x94,0x7c,0x99,
0x8a,0x7,0x26,0x20,0xf5,0xe3,0x4a,0xc1,0x4,0x82,0xb8,0x92,0x50,0x8e,0x24,0x82,
0x23,0x89,0x62,0x4b,0x62,0xd9,0xb4,0x9,0x24,0xb0,0x24,0x49,0x2c,0x69,0x2e,0xcb,
0x73,0x9b,0xad,0xea,0xe4,0xfb,0x82,0x9,0x10,0x1f,0xf0,0x8b,0x70,0xf5,0xb,0x71,
0x65,0xb6,0x9f,0xb8,0xba,0xfd,0xef,0xed,0xc5,0x37,0xee,0x5d,0xbd,0x76,0x8d,0x3c,
0x13,0x41,0x33,0x70,0xf6,0xdc,0x85,0xbb,0x27,0xde,0xf1,0xfb,0x19,0x65,0x2,0x1f,
0xfa,0xfe,0xe6,0x94,0xff,0x47,0x97,0x2,0xbe,0xba,0x15,0x7c,0xd1,0x3c,0xf4,0xaa,
0x6d,0xc4,0x6d,0x66,0x8c,0x5,0x30,0xc0,0x6,0xa9,0x2d,0x91,0x1,0xad,0x25,0x2b,
0xde,0x92,0x95,0x60,0xc1,0x4e,0xb4,0xe0,0xd6,0x59,0x8,0xf6,0x2d,0x84,0x3d,0x36,
0xa2,0x38,0x7b,0x34,0x81,0x40,0x7,0xb1,0xca,0x41,0xec,0xe9,0x20,0x96,0x3a,0xb0,
0x92,0x2f,0x5f,0xde,0xfb,0x37,0x37,0x3b,0x7f,0x74,0xe7,0x1b,0x68,0xc3,0x5f,0xbd,
0xaa,0x3,0xe8,0xbf,0xe,0x97,0x6,0x60,0x7b,0x7f,0xf,0xf4,0x7c,0x7f,0xe7,0xd9,
0x8b,0xa7,0xf,0x9f,0x6e,0x6d,0x3c,0x58,0x59,0x5a,0x9d,0x9e,0x9a,0x1d,0x1a,0x1a,
0xe9,0xe8,0xe8,0x6b,0x6c,0x6e,0xab,0xac,0x6e,0x82,0x71,0xcf,0x2f,0xaa,0xca,0x2d,
0xc0,0x89,0xcf,0xcc,0xa9,0xc8,0xc9,0x2b,0xcd,0xc8,0x2a,0xc9,0x80,0xc4,0x9c,0x5b,
0x9c,0x96,0x89,0xd3,0x8f,0x0,0xe0,0xc1,0x4f,0x9,0x0,0xc8,0x4d,0x48,0xca,0x4d,
0x4c,0x86,0xb9,0x87,0xe9,0x7,0xc,0xf0,0x5f,0x26,0x40,0x80,0x4e,0xce,0xc9,0x82,
0xd7,0xa,0x23,0x63,0xaa,0xe4,0xc1,0x1d,0x6c,0xd9,0xc8,0x4d,0xfe,0xe2,0x27,0x7e,
0xc3,0x76,0x55,0xb9,0x79,0xf0,0xbf,0x5,0x1f,0xa0,0x8e,0xff,0x84,0xf0,0x48,0x9d,
0x9e,0x81,0x91,0xf1,0xd6,0x91,0x89,0xb6,0xe1,0xf1,0xd6,0xa1,0xd1,0x96,0xc1,0xe1,
0xe6,0x81,0xa1,0xa6,0xfe,0x81,0xc6,0xbe,0xbe,0x86,0xde,0x9e,0xfa,0x9e,0xee,0xfa,
0x9e,0xce,0xba,0xee,0xf6,0xda,0xae,0x56,0x2,0x40,0x73,0x55,0x7b,0x63,0x65,0x5b,
0x43,0x5,0x2,0x50,0x7,0x0,0x94,0x35,0x57,0x97,0x36,0x55,0x95,0x0,0x0,0xd,
0xe5,0xc5,0xf5,0x0,0x40,0x59,0x51,0x5d,0x69,0x61,0x6d,0x71,0x41,0xd,0x0,0x50,
0x94,0x5f,0xd,0xe,0x0,0x0,0xe4,0xe7,0x54,0xe8,0x1d,0x80,0x0,0x90,0x41,0x1,
0x50,0xac,0x7,0xa0,0x28,0x2d,0xa5,0xc0,0x0,0x40,0x32,0xd,0x40,0x6e,0x22,0x96,
0x60,0xca,0x1,0x32,0xb5,0x34,0x0,0xe9,0xc7,0x0,0x40,0x1c,0x20,0x2a,0x32,0xf1,
0x8,0x0,0x61,0x34,0x0,0x9a,0x10,0x7d,0x3,0x26,0xe,0x10,0x1b,0x18,0x60,0xc,
0x40,0x14,0x71,0x0,0x2c,0x0,0x47,0x0,0x50,0x1d,0xf,0x40,0x20,0x71,0x80,0x0,
0x14,0x4c,0xbf,0x1e,0x0,0x3c,0xfe,0xf,0x3b,0x0,0xdc,0x82,0x81,0x3,0xc8,0x44,
0xde,0x20,0xb9,0xab,0x17,0x8a,0x38,0x0,0xbc,0xf,0x9,0xe,0x80,0x2f,0x4,0x13,
0x7,0xf0,0xe2,0xcb,0x28,0x0,0x7c,0x8,0x0,0xfe,0x5c,0x69,0x20,0x57,0x12,0xc2,
0x91,0x84,0x81,0x9,0xb0,0x25,0x31,0x8,0x80,0x87,0x96,0x25,0x49,0x60,0x79,0x24,
0x22,0x3,0xf2,0x21,0x96,0xd7,0x13,0x8e,0x6f,0xba,0xd0,0x37,0x4e,0xe8,0x1b,0x25,
0xf4,0xd,0x13,0xfa,0x6,0x9,0x95,0x91,0x9c,0x9b,0x4f,0xfe,0xd3,0xbd,0xf6,0x5f,
0x58,0xdf,0x45,0x13,0xa0,0x52,0x10,0x7c,0x5e,0x86,0xef,0x81,0x3b,0x77,0xee,0x33,
0xe1,0x3b,0x18,0x84,0x7c,0x7f,0xfa,0xb6,0xcf,0xcf,0x3e,0xf3,0x7d,0xf7,0x9c,0xff,
0x67,0x57,0x3,0x4f,0x9b,0x4,0x5f,0xb2,0xa,0xbb,0xe1,0x10,0x69,0xc2,0x8a,0xb1,
0x44,0x0,0x62,0x2d,0x81,0x1,0x96,0xc6,0x92,0xa5,0xb5,0x60,0xe9,0x2c,0x80,0x1,
0x56,0xa2,0x5,0x6f,0xd1,0x2,0xca,0x80,0x28,0xdb,0x4e,0x14,0x3,0x8f,0xc7,0xa1,
0x9,0x88,0xbd,0x1d,0xc4,0x60,0x2,0x12,0x7,0xb3,0xa1,0x5f,0x40,0x1b,0x36,0xf1,
0x3d,0x1,0x97,0xf,0xdf,0x5,0x0,0xf9,0x36,0x50,0xf8,0x36,0x2c,0xfc,0x52,0xdc,
0xed,0x27,0xf7,0x67,0xe6,0x7a,0x1b,0x9a,0x3a,0xaa,0xeb,0x9a,0xcb,0x2a,0x1b,0x8a,
0xcb,0xea,0xa,0x4b,0x40,0xb5,0x85,0xc5,0xd5,0x79,0x85,0x30,0xfa,0x55,0xb9,0x70,
0x6d,0x54,0x0,0xa3,0x5f,0x6,0xef,0xd,0x66,0xe7,0x96,0x66,0x66,0x97,0xa4,0xc3,
0xc2,0x24,0xa7,0x38,0x2d,0x3,0x22,0x3e,0x8,0x0,0x0,0xc,0xa,0x52,0xd2,0xe0,
0xf,0x8a,0x8a,0x82,0xbc,0x94,0x8c,0xd2,0x58,0x6d,0xbd,0x67,0x48,0x17,0x47,0x3a,
0x76,0x8d,0xb7,0xf4,0x89,0xcd,0x83,0x9f,0xdd,0x7d,0xfe,0x37,0x37,0x76,0xff,0xfc,
0xca,0x3e,0x7c,0x39,0x8c,0xfe,0xcb,0x8f,0xf6,0xbe,0x1f,0x31,0xc9,0xad,0x2d,0x28,
0x4,0x1f,0x0,0x13,0x88,0x87,0xc7,0xc5,0x22,0xa2,0x74,0x61,0x91,0xda,0xd0,0x70,
0xc0,0xa0,0xbc,0x24,0x7b,0x64,0xa2,0x75,0x78,0xb2,0x75,0x68,0xa2,0x65,0x68,0xac,
0x65,0x60,0xb8,0xa9,0x7f,0xa8,0xb1,0x6f,0xa0,0xa1,0xb7,0xaf,0xbe,0xa7,0xa7,0xae,
0xa7,0xbb,0xae,0xab,0xb3,0xb6,0xb3,0xbd,0xa6,0xa3,0xb5,0xba,0xa3,0xa5,0xaa,0xbd,
0x89,0x0,0x50,0x5f,0xe,0x6a,0xae,0x2d,0x6b,0xae,0x29,0x6b,0x2,0x7,0xa8,0x2c,
0x69,0xa8,0x28,0xae,0x2f,0x2f,0xaa,0x2b,0x2b,0xac,0x2b,0x2d,0xa8,0x2d,0x29,0xa8,
0x29,0xce,0xaf,0x2e,0xca,0x3,0x1d,0x5,0x20,0x7,0x8f,0x7f,0x3,0x0,0x45,0x2f,
0x39,0x40,0x7e,0x4a,0x52,0x6e,0x52,0x2,0x15,0x81,0xb2,0x21,0x2,0xe9,0xf4,0x0,
0x68,0xd1,0x1,0xc,0x0,0xa4,0xc6,0xc6,0x60,0x7,0x88,0x89,0x4e,0xd6,0x3b,0x80,
0x1,0x0,0x5d,0x78,0x18,0x3a,0x40,0x58,0xa8,0x16,0x1c,0x20,0x34,0x84,0x6,0x20,
0x38,0x48,0x4d,0x3,0xa0,0x77,0x80,0x0,0x74,0x80,0x28,0x90,0x11,0x0,0xe1,0x64,
0xb,0x84,0xe,0x80,0x0,0x78,0x19,0x3b,0x40,0x10,0x55,0x0,0x5e,0x1f,0x0,0x72,
0x13,0x8c,0x0,0xc8,0x5c,0xbd,0x40,0x38,0xfd,0x8,0x80,0xc2,0x0,0x0,0x32,0xc0,
0x97,0x79,0x3,0x3,0x3c,0x60,0x40,0xea,0x4b,0x0,0x8,0xe0,0x4a,0x82,0x38,0x68,
0x2,0xe1,0x6c,0x8f,0x28,0xb6,0x47,0x2c,0xdb,0x43,0xc3,0xf2,0x88,0x67,0x79,0x0,
0x3,0x49,0x2c,0x49,0x36,0x4b,0xf1,0x9c,0xa5,0xec,0x1,0x13,0x10,0xfa,0xc6,0x8,
0x7d,0xc3,0x85,0xbe,0xc1,0x42,0xdf,0x0,0x21,0xa7,0xfe,0xc,0xdc,0x8b,0xd9,0x2a,
0x2e,0xdf,0xbb,0x7a,0x95,0xba,0xa,0xa0,0x6a,0x0,0x5c,0x8d,0x5d,0xba,0x71,0xf2,
0x5d,0x9f,0x9f,0x3,0x0,0x6f,0xf9,0xfc,0xf4,0x7d,0x9f,0x5f,0x7d,0xe5,0xf7,0xe1,
0x45,0xff,0x13,0x37,0x2,0xcf,0x9b,0x85,0x5c,0xb5,0xd,0xbf,0xed,0x1c,0x69,0xc6,
0x8e,0xb1,0x62,0x23,0x6,0x96,0xac,0x38,0x60,0xc0,0x82,0x15,0x4f,0x33,0xc0,0x2e,
0xb0,0xe0,0xef,0x5a,0xb8,0xcc,0x58,0xbb,0x6a,0xed,0x45,0x91,0xf6,0xa2,0x40,0x7b,
0x34,0x1,0x5,0x9a,0x80,0x20,0xc8,0xfc,0xda,0xf3,0x1f,0x5c,0x5b,0xf9,0xff,0x4c,
0xee,0x7c,0x73,0x2c,0x0,0x87,0xbe,0xd,0x9d,0x9a,0xfe,0x7d,0xd8,0xff,0xdf,0xdf,
0x1c,0x69,0xeb,0xa4,0xe6,0xbe,0xa1,0xb8,0xb4,0xb6,0xa0,0xb8,0xa6,0xa0,0x8,0x46,
0x1f,0x4,0xa7,0x3e,0xc5,0x40,0x45,0x76,0x1e,0x2,0x0,0x29,0x9f,0x8c,0x3e,0x30,
0x0,0xe1,0xa7,0x3c,0x3b,0x17,0xfe,0x49,0x49,0x31,0x7c,0x9f,0xa0,0x5a,0xd7,0xec,
0x1d,0xda,0xcb,0x53,0x4c,0x5e,0x17,0xac,0x7c,0x6a,0xfd,0xf0,0x27,0x77,0x9f,0xff,
0x35,0xcc,0xba,0xe1,0xdb,0xed,0x8c,0xbf,0xf1,0xeb,0xda,0xfe,0x9f,0x5a,0xec,0xfe,
0x3,0x63,0xfb,0xd,0xc5,0x93,0xb,0x9e,0x8f,0x2f,0x5e,0xdf,0xfb,0x81,0x7a,0x54,
0xc,0x8c,0x41,0x46,0x2,0x6,0x60,0xee,0x61,0xfa,0xb5,0x61,0xe1,0x0,0x3,0xa8,
0xbc,0x34,0xbb,0x7f,0xbc,0x61,0x78,0xaa,0x65,0x68,0xa2,0x79,0x70,0xbc,0xb9,0x7f,
0xa4,0xb1,0x6f,0xa8,0xa1,0x77,0xa0,0xbe,0xa7,0xaf,0xae,0xbb,0xa7,0xb6,0xab,0xab,
0xa6,0xb3,0xa3,0xba,0xa3,0xbd,0xba,0xa3,0xb5,0xaa,0xbd,0xa5,0xaa,0xad,0xa9,0xa2,
0xb5,0xa1,0xbc,0xa5,0xbe,0x8c,0x0,0x50,0xda,0x54,0x5d,0x2,0x0,0x80,0x8e,0x1,
0xa0,0x30,0x17,0x1,0x28,0x40,0x7,0x28,0xcf,0xcb,0x2a,0xcf,0xc9,0x2c,0x3,0x0,
0xb2,0xf,0x1,0x80,0xf9,0xc7,0xe0,0x0,0x29,0x49,0x79,0xc9,0x89,0x34,0x0,0x89,
0x46,0x0,0xc4,0x6b,0xc0,0x4,0x8e,0x1,0x0,0xa,0x0,0x0,0x10,0x4d,0x39,0x0,
0x96,0x60,0xcc,0x3f,0xdf,0x2,0x40,0xd0,0x81,0x3,0x44,0x93,0x8,0x84,0x5,0xc0,
0x0,0x80,0xaf,0xa,0x1,0xf0,0x39,0x0,0x20,0x84,0x44,0xa0,0x60,0x12,0x81,0xfe,
0x6f,0x1,0x90,0xe9,0x1,0x40,0x6,0xe0,0x3b,0x51,0x4,0x72,0x0,0xc0,0x93,0x2f,
0x43,0x6,0x78,0x52,0x0,0xc0,0x87,0xb,0x26,0x20,0xf1,0xe7,0x4a,0x2,0x39,0xc4,
0x4,0xd8,0x1e,0x91,0x6c,0x8f,0x18,0xb6,0x87,0x9a,0x5,0x26,0xe0,0xa1,0x43,0x13,
0x0,0x6,0x64,0xfd,0x2c,0xcf,0x67,0x6c,0x9f,0xc,0xa1,0x8f,0x5a,0xe8,0x1b,0x29,
0xf4,0xd,0x41,0x0,0x54,0x21,0xfc,0xdb,0xf,0xfe,0xf6,0xce,0xc0,0x8f,0x6c,0x4c,
0xd0,0x4,0x20,0x8,0xc1,0xe8,0x93,0x2f,0x9,0x5,0x1f,0x38,0x7b,0x82,0xf3,0xfe,
0xdb,0xbe,0x6f,0x0,0x0,0x6f,0xa9,0xde,0xf8,0xc4,0xe7,0xed,0xb3,0x7e,0x9f,0x5e,
0x9,0x38,0x75,0x27,0xe8,0x6b,0x8b,0xd0,0xeb,0xf6,0x11,0x77,0x99,0xd1,0x16,0x0,
0x0,0x58,0x1,0xb,0x4c,0x20,0xce,0x2,0x4d,0x40,0xcf,0x0,0x77,0xc8,0x82,0xbf,
0x67,0x21,0xac,0xb0,0x15,0xc5,0xda,0x8b,0xc2,0xec,0x45,0xfe,0xf6,0x22,0x30,0x1,
0x19,0x9a,0x80,0x7d,0xd5,0xa7,0x30,0x6c,0x77,0xb2,0xdf,0x7e,0x1d,0x0,0xc0,0x1,
0x9e,0xef,0xed,0x3c,0x5d,0x9f,0x9c,0x6e,0xab,0xa8,0xae,0x2f,0x2a,0x85,0x70,0xf,
0xd3,0x8f,0x67,0x7f,0x41,0x31,0x25,0xea,0xe0,0xa7,0x60,0xa8,0xca,0x2f,0x28,0x2b,
0xcb,0xca,0xad,0x8d,0x4f,0x6c,0x55,0x85,0xf,0xa,0x3c,0xa7,0xaf,0xb,0xd6,0x3e,
0xb5,0x79,0xfc,0xd3,0xbb,0xdb,0x7f,0x73,0xfd,0x15,0xb3,0x7e,0x7d,0xff,0x7,0x56,
0xbb,0xff,0x83,0xf9,0xe2,0x17,0xde,0xcf,0xbe,0x89,0x79,0x68,0x9b,0xb3,0xe1,0xd7,
0xb8,0x94,0xd6,0x37,0x55,0x3e,0x32,0xdc,0x34,0xd6,0xd3,0x3a,0xdc,0xd6,0xd4,0x51,
0x57,0x2e,0x9d,0xb9,0x72,0x63,0xef,0xcf,0xb4,0x43,0x12,0xe8,0xd0,0x50,0x12,0xa0,
0x9,0xe8,0xc2,0x22,0x0,0x3,0x98,0x7e,0x20,0x1,0x3e,0x4b,0x4a,0x32,0xfa,0x26,
0xea,0x7,0xa7,0x9a,0x6,0x27,0x9b,0xfa,0xc7,0x1b,0xfb,0x46,0x1a,0xfa,0x86,0xea,
0x7b,0x6,0xea,0xba,0xfb,0x6a,0xbb,0x7a,0x6a,0xba,0xba,0x6b,0x3a,0x3b,0xab,0xdb,
0xdb,0xaa,0xda,0x5b,0x2b,0x5b,0x1,0x80,0xc6,0xf2,0x96,0x86,0xf2,0xe6,0x3a,0x60,
0xa0,0xb4,0xa9,0xa6,0xa4,0xb1,0xba,0xa4,0xa1,0xaa,0xb8,0xbe,0xa2,0xa8,0xae,0xbc,
0x10,0x4c,0xa0,0xb6,0xb4,0xa0,0xa6,0x4,0x1d,0xa0,0xaa,0x8,0xa7,0xbf,0x32,0x3f,
0xbb,0x22,0x1f,0x1,0x80,0xe9,0x2f,0xcb,0xc9,0x0,0x0,0x4a,0xb2,0xd2,0x8b,0x33,
0xd3,0x20,0x2,0xa1,0x3,0xa4,0x63,0x7,0x80,0x8,0x4,0x67,0x7f,0xde,0x11,0x0,
0x12,0xe2,0xb3,0x74,0x5a,0x8c,0x40,0xf1,0xda,0xc,0x6d,0x5c,0x3a,0x71,0x0,0x2c,
0x0,0xea,0x58,0x70,0x0,0x38,0xfe,0x29,0x7,0x48,0x32,0x6,0x20,0x82,0x0,0x10,
0x7e,0xc8,0x1,0xe2,0xa0,0x3,0x4,0x7,0xab,0x83,0x2,0x41,0x10,0x81,0x62,0x48,
0x7,0xa0,0x1,0xf0,0xf7,0x8d,0x24,0x0,0x44,0xa0,0xc,0x0,0x78,0x53,0xe,0x60,
0x4,0x80,0xe7,0x1f,0x1,0x80,0xc,0x9f,0x5,0x52,0x1e,0x71,0x0,0x0,0x0,0x19,
0x70,0x51,0xa0,0x4,0xf2,0x23,0x0,0x28,0x81,0x1,0x2e,0x98,0x80,0x4,0x18,0x8,
0xe0,0x80,0x9,0x78,0x84,0xb2,0x3d,0x28,0x13,0x88,0x61,0x79,0xc4,0x11,0x6,0x30,
0x8,0x31,0x3d,0x32,0x99,0x8a,0x67,0x2c,0xef,0x1,0x9e,0x8f,0x56,0xe8,0x13,0x23,
0xf4,0x81,0x14,0x14,0x28,0xf4,0xf5,0x13,0xf2,0x2b,0x2e,0xc1,0x23,0x6b,0x36,0x1,
0x17,0x4d,0xaf,0x5e,0x3,0x7,0x20,0xf9,0xe7,0x3c,0x4c,0xff,0x37,0xf0,0xd5,0xd0,
0x97,0x4f,0xbf,0xa7,0xfc,0x5,0x0,0xf0,0xa6,0xea,0x27,0xef,0xa9,0x7e,0x79,0xc2,
0xe7,0xfd,0x8b,0x7e,0x27,0xae,0x7,0x9c,0x33,0x9,0xbe,0x6c,0x13,0x76,0xdb,0x29,
0xd2,0x94,0x15,0x6d,0x81,0x0,0x80,0x9,0xa8,0x2d,0xe,0x31,0x90,0x6e,0xc1,0x7f,
0x62,0x21,0xb8,0x6f,0xe9,0x9a,0x60,0xe7,0x1a,0x65,0x2f,0xa,0xb6,0x17,0xf9,0xd8,
0x8b,0x3c,0xed,0x45,0x52,0x7b,0x57,0xb9,0xed,0xed,0xb5,0xbf,0xbf,0xb2,0xfd,0xa7,
0x2f,0x3,0x70,0xe8,0x7b,0x20,0xc,0xf9,0xe7,0xf9,0xd6,0xfd,0xf1,0xce,0x1e,0x38,
0xfe,0x41,0xc0,0x40,0x75,0x7e,0x21,0x24,0x7e,0x70,0x80,0xb2,0x8a,0xac,0xfc,0x6,
0x5d,0x4a,0x97,0x5f,0xd4,0x88,0xd0,0x6b,0xee,0x9a,0xcb,0xc6,0x67,0xd6,0x4f,0x7e,
0x7c,0xf7,0xc5,0xdf,0x5c,0xdf,0xfb,0xb3,0x63,0xcf,0xf5,0xeb,0xfb,0x7f,0x66,0xbd,
0xf7,0x3f,0xd9,0x3b,0xbf,0xf2,0xd9,0xbe,0xaa,0x79,0xe2,0x58,0xf8,0x20,0xb4,0x7d,
0x3d,0x67,0x78,0xb1,0x76,0x72,0xb2,0x7d,0x6a,0xb8,0x73,0xb2,0xaf,0x7d,0xa0,0xad,
0xbe,0xbb,0xa1,0xaa,0xb9,0xb2,0xa8,0xa6,0x28,0xa7,0x28,0x33,0x29,0x2b,0x41,0x9d,
0x14,0x1b,0x16,0x13,0xe4,0x13,0xec,0x2f,0xb1,0xe8,0xfd,0xf5,0xcd,0xdd,0x3f,0x4f,
0xea,0x53,0x56,0x64,0xe5,0xc2,0x76,0x88,0x3a,0xfb,0xd1,0x7,0xd0,0xa,0x22,0xc0,
0xd,0xa,0x4b,0x52,0x7b,0xc6,0xeb,0x6,0xa6,0x9b,0x6,0x26,0x1b,0xfb,0xc6,0x1b,
0x7a,0x47,0xea,0x7b,0x86,0xea,0xba,0x7,0x6a,0xbb,0xfa,0x6a,0x3a,0x7b,0x6a,0x3a,
0x0,0x80,0xf6,0xaa,0xf6,0xb6,0xca,0xd6,0x96,0xa,0x60,0xa0,0xa5,0xb1,0xbc,0x19,
0x4c,0xa0,0xae,0xb4,0xb1,0xa6,0xa4,0xa1,0xba,0x18,0x1,0xa8,0x44,0x0,0x6a,0xcb,
0xa,0x68,0x0,0x8a,0x9,0x0,0x85,0x39,0xe8,0x0,0x14,0x0,0xb9,0xc4,0x1,0x72,
0x68,0x0,0x8a,0x32,0x52,0x41,0x85,0xe9,0xa9,0x5,0x7,0x0,0x24,0x52,0xe,0x90,
0x3,0x5,0x0,0x1c,0x80,0x0,0x0,0xd3,0x8f,0xc7,0xbf,0x11,0x0,0xa9,0x47,0x0,
0x88,0x8a,0xa4,0x3a,0x40,0x42,0x44,0x84,0x8e,0x0,0x10,0x4f,0x3,0x10,0xa2,0x21,
0x11,0x88,0x0,0x0,0x11,0xe8,0x8,0x0,0xfa,0xfc,0x63,0x0,0x0,0x8f,0x7f,0x55,
0x18,0x3a,0x80,0x77,0xe8,0x11,0x0,0x30,0xff,0x1c,0x8a,0x40,0xfe,0xa4,0x3,0x90,
0x6,0x2c,0x21,0x5,0xc0,0x83,0xac,0x80,0xdc,0x71,0x5,0xa4,0x7,0x80,0xe4,0x1f,
0x7d,0x4,0xa2,0x0,0x90,0x19,0x1,0xa0,0xe0,0xcb,0xc0,0x1,0xd0,0x4,0x78,0x52,
0x30,0x1,0x25,0x17,0x4c,0x40,0xe2,0xcb,0x91,0xf8,0x73,0x3c,0x2,0x39,0x1e,0x21,
0x6c,0xf,0x30,0x81,0x8,0xb6,0x47,0x34,0xcb,0x5d,0xcd,0x72,0xd7,0xb0,0xdc,0xe3,
0x99,0xee,0x0,0x40,0x22,0x53,0xda,0xc3,0xc4,0x36,0x9c,0x25,0xf0,0x51,0xbb,0xf8,
0x44,0x8,0x7d,0x82,0x85,0x3e,0xfe,0x42,0x55,0xa0,0xe0,0xee,0xc6,0x3f,0xdc,0x9e,
0xfc,0x5f,0xb6,0xa6,0x77,0x6f,0x5d,0xba,0x4,0xe,0x40,0x30,0x40,0x0,0xe0,0x8f,
0xaf,0x9c,0xfe,0xf0,0x36,0x38,0x0,0x30,0xa0,0xfc,0xe9,0x47,0xaa,0x37,0x4f,0xfb,
0x7d,0xfc,0x8d,0xff,0x57,0xb7,0x2,0x2f,0x58,0x84,0x5c,0xb7,0xd,0xbf,0x3,0x41,
0x88,0x15,0x4d,0x4c,0x20,0xd6,0x2,0x18,0x60,0x6a,0x2c,0x98,0x5a,0xb,0x66,0xbc,
0x39,0x53,0x67,0xce,0x69,0x31,0xe7,0xef,0x9b,0xbb,0xb4,0x5b,0xbb,0xc6,0xd9,0xb9,
0x86,0xdb,0x8b,0x2,0xc0,0x4,0xec,0x45,0x72,0x7b,0x91,0x87,0x3d,0x2b,0xf1,0xca,
0x95,0xbd,0x7f,0x73,0x2c,0x0,0x7,0xbf,0x5,0x40,0x3,0xb0,0xf7,0x7c,0x63,0x7a,
0xb6,0xab,0xb6,0x81,0x2,0xc0,0x70,0xfc,0x6b,0xbb,0xbc,0xef,0x6e,0xff,0x35,0x84,
0x13,0xe3,0xe8,0x62,0xf8,0xfb,0xc6,0xfe,0x9f,0xdb,0xec,0xfd,0x2f,0xce,0xee,0x6f,
0x3,0x76,0x6e,0xea,0x9e,0x33,0xca,0x9e,0x44,0xf5,0x6c,0x15,0x4e,0xae,0x36,0x2f,
0x2c,0xf4,0x2d,0x4d,0xc1,0xd3,0x9d,0xbd,0xe3,0xbd,0x6d,0xfd,0xad,0x75,0xed,0x75,
0x65,0x75,0x65,0x79,0xe5,0xf9,0x69,0xf9,0x99,0xba,0xf4,0xc4,0x28,0x4d,0x8c,0x7f,
0x58,0x88,0x2,0xde,0x22,0xf5,0xf4,0xe4,0x7a,0xb8,0x3b,0xb9,0xba,0xda,0xf2,0x79,
0xf0,0x1b,0xb1,0xe6,0x6c,0x86,0x19,0x93,0x7b,0xf7,0x6e,0xff,0x3f,0xdf,0xda,0xf9,
0xab,0xe4,0xe,0xbf,0xd2,0xf4,0xcc,0xb4,0x58,0x60,0x0,0x83,0x50,0x5c,0x48,0x58,
0x5c,0x70,0x28,0x48,0x13,0x1a,0x56,0x52,0x9e,0xde,0x3d,0x51,0xdb,0x3f,0xd5,0xd0,
0x37,0xd9,0xd0,0x3b,0x5e,0xdf,0x33,0x52,0xd7,0x3d,0x54,0xdb,0xd5,0x5f,0xd3,0xd9,
0x5b,0xdd,0xd1,0x5d,0xd5,0xd1,0x59,0xd5,0xd6,0x5e,0xd9,0xda,0x5a,0xd1,0xda,0x5c,
0xde,0xd2,0x54,0xd6,0xdc,0x50,0xda,0x54,0x5f,0xda,0x58,0x5b,0xd2,0x50,0x83,0x0,
0xd4,0x55,0x16,0xd6,0x55,0x10,0x0,0xca,0x88,0x3,0xe8,0x1,0xa8,0x28,0xa0,0x1d,
0x0,0x18,0x80,0xe9,0x37,0x38,0x80,0x1e,0x80,0x94,0x82,0xb4,0x64,0x50,0x7e,0x2a,
0x38,0xc0,0x1,0x0,0x30,0xfd,0x14,0x0,0x84,0x1,0xa,0x0,0x35,0xe5,0x0,0x2f,
0x3,0x90,0x48,0x3,0x10,0xfe,0x2a,0x0,0xd4,0x4,0x80,0x58,0xbd,0x3,0x44,0x83,
0x3,0x4,0x10,0x0,0x28,0x7,0xf0,0x23,0xe,0x40,0xe5,0x1f,0x12,0x81,0x8e,0x2,
0x60,0x14,0x81,0x48,0x3,0xa6,0x4a,0xf0,0xcb,0x2b,0x20,0x77,0x32,0xfd,0x6e,0xe4,
0xf8,0x17,0x53,0x0,0x60,0x1,0x90,0xb9,0x92,0xe9,0x27,0x0,0x10,0x6,0xe4,0x68,
0x2,0x7c,0x19,0xc5,0x80,0x1e,0x0,0x89,0x8a,0x2b,0xf1,0xe1,0x48,0xfc,0x38,0x1e,
0x1,0x1c,0x8f,0x60,0x2,0x40,0x38,0xdb,0x3d,0x8a,0xe5,0x1e,0x43,0x18,0xd0,0x32,
0xdd,0x13,0x8,0x3,0xe9,0x4c,0xf9,0x13,0xa6,0xd7,0x10,0xd7,0x47,0xe3,0xe2,0x13,
0xe5,0xe2,0x13,0xea,0xe2,0x13,0xe0,0xe2,0xe3,0xeb,0xe2,0x52,0x78,0x3,0x26,0xd2,
0x2a,0xf2,0x8c,0xd9,0xf5,0xeb,0x70,0x25,0xc,0xc,0x50,0x35,0x0,0xb2,0xd0,0xa5,
0xf3,0xa7,0x7f,0xaf,0xf8,0x15,0x65,0x2,0xef,0x2a,0x7f,0xf1,0xb9,0xcf,0x7b,0xe7,
0xfd,0x3e,0xbf,0x16,0x70,0xc6,0x24,0xe8,0x1b,0xab,0xd0,0x9b,0xe,0x11,0xf7,0x20,
0x8,0x21,0x3,0xd1,0x16,0xcc,0x58,0xb,0x26,0xcd,0x0,0x2,0xc0,0x4c,0x34,0xe7,
0xae,0x9b,0xf3,0x9f,0x5b,0x8,0xd3,0xed,0x5c,0xa3,0xed,0x5c,0x83,0xed,0x5d,0xf5,
0x26,0x20,0x72,0xb7,0x37,0x1b,0xfc,0xf9,0x11,0x0,0x8e,0xa4,0x7f,0xaa,0xfe,0x3e,
0xdf,0x79,0xf2,0x70,0xba,0x67,0x0,0x92,0x4f,0x7d,0x71,0x69,0x3d,0x0,0x50,0x58,
0x5c,0x57,0x54,0x52,0x57,0x5c,0xc2,0xda,0xf8,0x3d,0x35,0xee,0x37,0xf7,0xff,0xd2,
0x66,0xff,0x7f,0x73,0xf7,0xde,0xc,0xdc,0xbd,0x9b,0xf8,0x82,0x5b,0xf5,0x3c,0xbe,
0xff,0x51,0xe9,0xec,0xfd,0x8e,0xd5,0x95,0x91,0x35,0x78,0xb2,0x6d,0x62,0x78,0x7a,
0xa0,0x6b,0xb4,0xbb,0xb9,0xaf,0xa5,0xb6,0xb9,0xaa,0xa8,0xba,0x28,0xab,0x38,0x27,
0x29,0x2b,0x45,0xad,0x53,0x7,0x45,0x85,0x7b,0x7,0x6,0xb8,0x7b,0x2b,0xf9,0x52,
0x39,0x3,0xda,0x89,0x8b,0xbb,0xd,0xdf,0xdd,0x92,0xeb,0x66,0xce,0x71,0x33,0x63,
0xbb,0x99,0xb1,0xc4,0xa6,0x2c,0x91,0x29,0xcb,0xd5,0x94,0x23,0x34,0xe3,0xb9,0x58,
0xb8,0x8,0xad,0x85,0x72,0x4b,0xb3,0xe9,0x1f,0xdd,0x7d,0xf1,0xff,0x65,0xb4,0x87,
0x15,0xa5,0xa4,0xc3,0x52,0x48,0x3,0xd3,0x1f,0x12,0xa6,0xe,0xa,0x31,0x30,0x50,
0x5c,0x81,0xc,0xf4,0x21,0x3,0xf5,0x3d,0x63,0x75,0xdd,0x23,0xb5,0x5d,0x83,0x35,
0x9d,0x3,0xd5,0x1d,0xbd,0xd5,0xed,0xdd,0x55,0x6d,0x9d,0x15,0xad,0xed,0x15,0x2d,
0xad,0xe5,0xcd,0xcd,0x65,0x4d,0x8d,0xa5,0x8d,0xf5,0x25,0x14,0x0,0xf5,0xd5,0x45,
0xe8,0x0,0x0,0x40,0x79,0x41,0x4d,0x59,0x7e,0x75,0x69,0x5e,0x75,0x9,0xed,0x0,
0x8,0x40,0x1,0xed,0x0,0xa5,0xb9,0x19,0x7,0xe,0x90,0x99,0x5a,0x98,0x91,0x52,
0x98,0x8e,0x0,0xe4,0x43,0x4,0x42,0x0,0x92,0x72,0x93,0x13,0x28,0x7,0xc8,0x4e,
0xa4,0x1,0xc0,0xe9,0xa7,0x1,0x88,0x4b,0x3,0x0,0xe2,0x0,0x80,0x98,0x14,0x88,
0x40,0xb1,0xd1,0xc9,0x10,0x81,0x62,0x20,0x2,0x45,0x26,0x46,0x45,0xa0,0x3,0x44,
0xbe,0x2,0x80,0x90,0xa0,0x43,0x0,0x4,0x6,0x1c,0xb,0x0,0x5d,0x0,0x8e,0x73,
0x80,0x20,0x2,0x0,0x36,0x60,0x2f,0x39,0x5,0x0,0x71,0x80,0xe3,0x76,0xa0,0xdf,
0xa,0x0,0x4e,0x3f,0x4a,0x80,0x0,0xc8,0x69,0x0,0xa4,0x9e,0x3c,0x29,0x32,0xc0,
0x95,0x28,0xb9,0x12,0x15,0x7,0x4c,0xc0,0x3,0x4d,0x80,0xd,0x26,0xe0,0x1e,0xc6,
0x76,0x8f,0x60,0xb9,0x83,0x9,0xc4,0x32,0xdd,0x35,0x4c,0x77,0x1d,0xcd,0x80,0xa4,
0x8b,0xa9,0x78,0xc1,0x52,0x65,0xb,0x54,0xb1,0x2e,0x3e,0xe1,0x2e,0x3e,0x41,0x2e,
0x3e,0x7e,0x2e,0x2a,0x3f,0x81,0xe9,0xf2,0xff,0xb9,0xb9,0xf8,0xdf,0xec,0x2c,0xef,
0xc2,0x77,0xa9,0x13,0x0,0xce,0x50,0x18,0x80,0xf,0x9c,0xb2,0xfe,0x18,0x4c,0xe0,
0x4d,0x62,0x2,0x7f,0x50,0xfd,0xee,0x94,0xef,0x47,0x97,0xfc,0x4f,0xde,0xc,0xbc,
0x60,0x1a,0x7c,0xc5,0x36,0xec,0xe,0x9,0x42,0x4,0x80,0x18,0x3,0x3,0xe6,0x94,
0x9,0xb0,0x4a,0xcd,0x79,0x7b,0xe6,0x2e,0x63,0x56,0x42,0x35,0x98,0x80,0x9d,0x6b,
0x80,0x9d,0xab,0x12,0x22,0x10,0x9a,0x80,0xc0,0xdf,0xdc,0x18,0x80,0x43,0x6f,0x40,
0x92,0xd1,0xa7,0x1,0x78,0xb8,0xb8,0xd4,0xdb,0xd0,0xdc,0x50,0x52,0x8e,0xc,0x14,
0x95,0xd6,0x40,0xe8,0xcf,0x2f,0xca,0x69,0x8a,0xbb,0xbe,0xff,0xa7,0xf9,0xdb,0xe1,
0xc3,0x4f,0x6b,0x16,0x1f,0xf4,0x6f,0xac,0x4f,0x3d,0x5c,0x9e,0x5d,0x9f,0x1e,0x5f,
0x18,0x1d,0x98,0x1e,0xec,0x1e,0xec,0x68,0xec,0x6c,0xa8,0x68,0xa8,0xc8,0x87,0xa3,
0x3d,0x37,0x4d,0x93,0x1c,0x1f,0x1e,0x1b,0xe5,0x13,0x16,0x2c,0xf3,0x51,0xb9,0xc8,
0x15,0x6c,0x37,0xf,0xf8,0x85,0x40,0x3b,0x81,0x9b,0x35,0x4f,0xc,0xe3,0x6e,0xc1,
0x71,0x37,0xe7,0x78,0x98,0xb3,0x25,0x66,0x6c,0xb9,0x19,0xc7,0xcb,0x9c,0xa7,0xb2,
0x70,0xf1,0xb7,0x72,0xd,0xb4,0x75,0xb,0xb6,0x97,0x86,0x38,0xc9,0x43,0x18,0x8a,
0x20,0xa6,0x67,0x0,0x4b,0xe1,0xcb,0x54,0x28,0x99,0x92,0x40,0xfb,0x7b,0xb,0x3f,
0x34,0xd9,0xfe,0xfb,0xec,0xa6,0x68,0x60,0x0,0xca,0x0,0x8c,0xbe,0x3a,0x38,0x34,
0xca,0x3f,0x30,0x26,0x20,0x28,0x36,0x30,0x18,0x7d,0xa0,0xa,0x18,0xa8,0xe9,0x9b,
0xaa,0xef,0x99,0xac,0xeb,0x1e,0xab,0xe9,0x1a,0xae,0xe9,0x1c,0xac,0xee,0xe8,0xab,
0x6a,0xeb,0xa9,0x6c,0xeb,0xaa,0x68,0xed,0xa8,0x68,0x69,0x2f,0x6f,0x6e,0x29,0x6b,
0x6a,0x2a,0x6d,0x6c,0x2c,0x1,0x6,0x1a,0x6a,0x8a,0xea,0x6b,0x8a,0xea,0xaa,0xa,
0x41,0xb5,0x95,0x85,0x35,0xe5,0xf9,0xd5,0x65,0xf9,0x55,0x25,0xb9,0x95,0xc5,0x39,
0x95,0x45,0x39,0x15,0x85,0xd9,0xe5,0x5,0x59,0xe5,0xf9,0x18,0x81,0x0,0x80,0x92,
0x9c,0xf4,0xe2,0xec,0xf4,0xe2,0xac,0xb4,0xa2,0x4c,0x2a,0x2,0xa5,0x14,0xa4,0x27,
0xe7,0xa7,0x25,0xe7,0x11,0x7,0x0,0x0,0x72,0x92,0x12,0xb2,0x9,0x0,0x59,0x9,
0xfa,0xe3,0x5f,0xef,0x0,0x69,0x9a,0x23,0x0,0x90,0x2,0x40,0x0,0x48,0x78,0x5,
0x0,0x71,0x10,0x81,0x8c,0x0,0x88,0x81,0xe,0xf0,0x12,0x0,0x87,0xb,0x0,0x1d,
0x81,0xb0,0x0,0x28,0xbd,0x48,0x3,0xf6,0x7c,0x9,0x0,0xe9,0xff,0x1b,0x0,0x8,
0x3,0x47,0x1,0xf0,0xe1,0x78,0xa0,0x9,0xb0,0xdd,0x83,0xd8,0xee,0x21,0x2c,0xf7,
0x70,0x96,0x7b,0x24,0x98,0x0,0xd3,0x3d,0x8e,0x89,0x29,0x88,0x98,0x80,0x7b,0x1a,
0x53,0xf6,0x98,0xe9,0x35,0xc6,0x55,0x69,0x5d,0x54,0x51,0x2e,0xaa,0x50,0x17,0x55,
0xa0,0x8b,0xca,0xd7,0x45,0x94,0x65,0x2,0x4d,0xc0,0x52,0x77,0x82,0x98,0xc0,0x5,
0xaa,0x4,0x83,0x3,0x60,0x13,0x38,0x77,0xfa,0x3,0xe9,0x6f,0x68,0x13,0x50,0xfd,
0xe2,0x33,0x9f,0x77,0xcf,0xf9,0x7d,0x76,0xd5,0xff,0xf4,0x9d,0xc0,0xaf,0x2d,0x43,
0x6e,0xd8,0x87,0x9b,0x30,0xa2,0xcc,0x11,0x0,0x8a,0x1,0xb5,0x39,0x33,0xce,0x9c,
0xa9,0xa5,0x19,0xe0,0x4c,0x20,0x3,0xc2,0x22,0x5b,0x61,0x94,0x9d,0x6b,0x88,0x9d,
0xab,0xaf,0x9d,0xab,0x97,0x9d,0x2b,0x34,0x1,0x77,0xfb,0x23,0x0,0x1c,0x7c,0x9,
0x16,0x99,0x7e,0x4,0x60,0xe7,0xd9,0xa3,0x85,0xc1,0x91,0x96,0xf2,0x2a,0xaa,0xfe,
0x52,0xdd,0xb7,0xa1,0xa4,0x4c,0x36,0x7f,0x85,0xf3,0xf4,0xed,0xb9,0x81,0xde,0xc9,
0xae,0xf6,0xfe,0xa6,0xda,0x96,0xca,0x62,0x3c,0xda,0xb3,0x12,0x33,0x92,0xa2,0x75,
0x71,0x81,0x11,0x61,0x9e,0x1,0x1,0x6e,0xde,0x70,0x4d,0xa8,0x80,0xdf,0x48,0x73,
0x70,0xf5,0xb0,0x73,0xf1,0xb0,0x16,0x78,0x58,0xe1,0x1,0xef,0x61,0xc1,0xf1,0xb0,
0xe0,0x4a,0x2c,0x78,0x72,0x4b,0x81,0xa7,0x95,0xab,0xca,0x56,0x1c,0x60,0xef,0x1e,
0xe2,0x28,0x8d,0x70,0x96,0xc7,0x30,0xe4,0x71,0x4c,0x45,0x3c,0x53,0xae,0x63,0xc8,
0x12,0x18,0x32,0x9d,0xb3,0x3c,0x9e,0x21,0xd7,0x30,0x14,0xb1,0x2c,0xef,0x18,0xae,
0x6f,0xb4,0x20,0x28,0xc6,0x2d,0x2c,0x5a,0xea,0x1f,0xcf,0x37,0x5f,0xfb,0x67,0xb3,
0xe7,0xff,0x90,0x55,0x17,0x53,0x90,0x94,0x2,0x4b,0x21,0x60,0x20,0x26,0x30,0x98,
0x2,0x0,0x3e,0xd5,0xc1,0x21,0xa5,0x35,0x19,0xdd,0x93,0x35,0x3d,0x53,0x75,0xe0,
0x6,0x5d,0x63,0x35,0x9d,0xc3,0xd5,0x1d,0x83,0x55,0xed,0x7d,0x95,0xc0,0x40,0x6b,
0x57,0x79,0x4b,0x7b,0x59,0x4b,0x5b,0x59,0x53,0x4b,0x69,0x53,0x53,0x9,0x4,0xbb,
0x86,0xba,0xe2,0xfa,0x9a,0xc2,0xba,0xea,0xc2,0xda,0xaa,0x82,0x9a,0x8a,0x7c,0x2,
0x40,0x5e,0x55,0xe9,0x51,0x0,0x4a,0xf3,0x32,0x28,0x0,0x4a,0xf4,0x0,0x80,0x3,
0x14,0x1c,0x0,0x90,0xf8,0x32,0x0,0x99,0x90,0x7f,0x74,0xe0,0x0,0x71,0xe9,0x24,
0x2,0x1d,0x0,0x80,0x26,0x40,0x1d,0xff,0x51,0x89,0x94,0x3,0x20,0x3,0xe0,0x0,
0xa4,0x0,0x84,0x87,0x69,0x61,0xd,0x1a,0x6,0x1d,0x0,0xa6,0x9f,0x14,0x80,0xe0,
0x20,0xcc,0x3f,0x41,0x38,0xfd,0x31,0x81,0x90,0x7f,0xe8,0x8,0x14,0x49,0x22,0x50,
0x4,0x46,0x20,0x7d,0x3,0xf6,0x21,0xf9,0x47,0xe5,0x4d,0x3,0xa0,0x24,0x2b,0x20,
0x74,0x0,0xb2,0x3,0xf5,0xd2,0xe7,0x9f,0x6f,0x8b,0x40,0xc6,0xd,0xf8,0x50,0x4,
0xa2,0x1c,0x40,0xe,0xe,0x80,0x26,0xc0,0x97,0x51,0x0,0x28,0x78,0xc0,0x80,0xc4,
0x8b,0x2b,0x41,0x13,0xe0,0x78,0xa8,0x38,0x1e,0x68,0x2,0x6c,0xf7,0x40,0xb6,0x7b,
0x30,0xcb,0x3d,0x94,0x5,0x26,0xe0,0x16,0xc5,0x74,0x8b,0x65,0xba,0x69,0x98,0x6e,
0x3a,0xa6,0x5b,0x2,0xc3,0x2d,0x91,0x21,0x69,0x67,0xc8,0x77,0x98,0xca,0x5c,0x3e,
0x98,0x80,0x2a,0xdc,0x45,0x15,0xc,0xe,0x80,0xc,0x58,0xcc,0xbc,0x71,0x7d,0xfd,
0x6f,0x6c,0x6c,0x6e,0x83,0x9,0xe8,0xa7,0xff,0x34,0x65,0x2,0x67,0xef,0x7d,0x46,
0xad,0x83,0x20,0x8,0x7d,0xa8,0xfa,0xed,0x57,0x3e,0x7f,0xb8,0xe0,0xf7,0xc5,0x8d,
0x80,0xf3,0xf7,0x82,0xae,0x58,0x87,0xde,0x72,0x8a,0x30,0x65,0x46,0xe9,0x1,0x88,
0x35,0x67,0xa8,0xcd,0x19,0x1a,0x73,0x46,0xbc,0x39,0x3,0x82,0x50,0xa6,0x39,0x6f,
0xdb,0x9c,0xbf,0x6a,0x29,0xd4,0xd8,0x9,0x29,0x13,0x50,0xd9,0xb9,0x2a,0xec,0x60,
0x2c,0x29,0x0,0xc,0x67,0xbf,0x71,0xfa,0xa7,0xb6,0x9f,0xdb,0x8f,0x96,0x57,0x6,
0x9b,0xdb,0x61,0xe2,0xa9,0xb3,0x9f,0xec,0x7c,0xa,0xcb,0xab,0xb2,0x6e,0xed,0xfc,
0x47,0xff,0x16,0x87,0xe4,0x98,0x50,0x75,0xa8,0x4f,0x98,0xbf,0xd4,0x4f,0x29,0xf4,
0xc6,0x6f,0x42,0x85,0x5f,0x86,0x72,0x72,0x53,0x38,0x88,0xe0,0xbf,0x5d,0x61,0x2b,
0x54,0xd8,0x8,0x14,0xd6,0x2,0x85,0x95,0x8b,0x97,0xb5,0x50,0x69,0x23,0xf6,0xb5,
0x77,0xf,0x70,0x94,0x86,0x38,0x2b,0xc2,0x59,0x9e,0x91,0x6c,0xaf,0x18,0x8e,0x97,
0x9a,0xe3,0x19,0xc7,0x56,0x68,0x59,0x72,0x1d,0x53,0x96,0xc8,0x90,0x25,0x33,0xe4,
0x69,0x4c,0x45,0x26,0xcb,0x3b,0x97,0x17,0x50,0x24,0xa,0x2d,0x95,0xc6,0x54,0x2a,
0x13,0xeb,0x82,0xd3,0xea,0x22,0xf2,0x1a,0x34,0x25,0x8d,0x49,0x35,0xcd,0x59,0x75,
0x8d,0x39,0xd5,0xd5,0x99,0xc9,0xe5,0x81,0x16,0xf,0xff,0x8f,0xd5,0xd3,0x1f,0xe6,
0xd7,0x68,0xe1,0x82,0xc,0x7c,0x0,0x4c,0x0,0x82,0x50,0x94,0x5f,0x0,0x30,0x10,
0xed,0x1f,0x18,0x17,0x1a,0x5a,0x5a,0x97,0xd1,0x39,0x51,0xdd,0x3d,0x59,0xdb,0x35,
0x5e,0xd3,0x39,0x5a,0xdd,0x3e,0x54,0xd9,0x3e,0x50,0xd9,0xd6,0x57,0xd1,0xda,0x5d,
0xde,0xd2,0x59,0xde,0xdc,0x5e,0xd6,0xd4,0x5a,0xda,0xd8,0x5c,0xd2,0xd0,0x58,0xc,
0xc,0xd4,0xd7,0x15,0xd5,0xd5,0x10,0x0,0x2a,0xf3,0x81,0x81,0x2a,0xa,0x80,0x92,
0x9c,0x8a,0x62,0xda,0x1,0xca,0xf2,0x33,0x4b,0xf3,0x32,0x4b,0x68,0x7,0x48,0x2b,
0xca,0x4a,0x5,0x7,0x20,0x0,0xe0,0xf1,0x9f,0x9f,0x96,0x94,0x97,0x9a,0x98,0x4b,
0x3b,0x80,0x2e,0x3b,0x9,0x1c,0x40,0x7,0xe,0xf0,0x12,0x0,0xb1,0xa9,0x54,0x4,
0x52,0xc7,0x24,0xd3,0x0,0x44,0x52,0x0,0x18,0x1c,0x80,0x0,0x0,0xd3,0xf,0x95,
0x46,0xf,0x0,0x71,0x80,0xd8,0x60,0xec,0x0,0x6,0x0,0xa2,0x48,0x7,0x38,0x4,
0x80,0x2f,0x69,0xc0,0x47,0x0,0x38,0x70,0x80,0x3,0x0,0xf0,0xf8,0xd7,0x3,0xe0,
0x4b,0xae,0x81,0xe9,0x6,0xfc,0x52,0xfe,0x81,0x6f,0x5,0xf5,0x22,0xf2,0x94,0xa,
0x41,0xa,0xa9,0xb,0x88,0x2,0x40,0x26,0x23,0x0,0xc8,0xf5,0x0,0x78,0x72,0x9,
0x3,0x4,0x0,0x34,0x1,0xb6,0x3b,0x9a,0x0,0xb,0x4c,0xc0,0x2d,0x8c,0xe5,0x16,
0xc9,0x74,0x8b,0x66,0xba,0xc5,0x31,0xdd,0xb4,0xc,0x37,0x1d,0x2,0xe0,0x96,0xca,
0x90,0x3d,0x64,0x78,0x4e,0x72,0x94,0x5a,0x81,0x32,0x4a,0xa0,0xa,0x15,0xa8,0x2,
0x4,0x2a,0x1f,0x81,0x5b,0x8a,0x39,0xbc,0x35,0x6f,0x9e,0xf9,0xb1,0xf9,0x8d,0x1b,
0x60,0x2,0x30,0xf7,0xf4,0x2e,0xe8,0xf4,0x99,0x2b,0xe7,0xce,0x7e,0x2c,0x7e,0x13,
0xee,0x4,0x20,0x8,0xbd,0xad,0xfc,0xd9,0x27,0xaa,0xb7,0xcf,0xf8,0x7e,0x72,0xd9,
0xff,0xd4,0xed,0xc0,0x8b,0xd8,0x86,0xc3,0xee,0x30,0x22,0xcd,0x29,0x6,0x18,0x31,
0x4,0x80,0x38,0x73,0x86,0x96,0x62,0xc0,0x8c,0xdd,0x65,0xc6,0x83,0x36,0xdc,0x60,
0x2d,0x8c,0xb6,0x13,0x86,0xd8,0x9,0x69,0x13,0xf8,0x2e,0x0,0xf6,0xb6,0x9f,0xae,
0x8c,0x4e,0xb4,0x57,0xd6,0x40,0xf4,0x7,0x0,0x6a,0xf1,0xda,0xab,0x4,0xf6,0x3f,
0xc1,0xa3,0x8c,0x5b,0x4f,0xff,0xda,0xdf,0x5f,0xe8,0xe9,0xc1,0x92,0x4b,0x98,0x32,
0x19,0x43,0xea,0xe9,0xe4,0xe1,0xed,0xe8,0xae,0x72,0x70,0xf7,0x77,0xf0,0x8,0xc4,
0x29,0x97,0x85,0x33,0x14,0x51,0x78,0x72,0x2b,0xd5,0x3c,0x95,0x86,0xa7,0xd2,0xf2,
0x94,0xf1,0x5c,0xaf,0x78,0xe,0xc8,0x33,0x9e,0xed,0x99,0xc0,0xf1,0x4c,0xe4,0x28,
0x53,0xf9,0x3e,0x19,0x2e,0x81,0x79,0x6e,0xe1,0x25,0xa,0x98,0x75,0x5d,0x43,0x50,
0x5a,0x7b,0x54,0x5e,0x5f,0x7c,0xc9,0x48,0x72,0xd5,0x64,0x66,0xe3,0x5c,0x41,0xfb,
0x52,0x69,0xcf,0x72,0xf5,0xe0,0x6a,0xfd,0xe8,0x4a,0xf3,0xd4,0x6a,0xc7,0xfc,0x4a,
0xcf,0xe2,0x52,0xdf,0x2c,0x7c,0x31,0x74,0x67,0x55,0x76,0x63,0x84,0xd9,0x93,0x7f,
0xb0,0x79,0xfc,0x4f,0x5,0x15,0xf0,0xe8,0x65,0x12,0x6c,0x84,0x60,0xf4,0x21,0x8,
0xc1,0xf4,0x83,0xe0,0xf,0x75,0x48,0x48,0x59,0x43,0x56,0xc7,0x78,0x15,0x58,0x41,
0xe7,0x78,0x75,0xc7,0x48,0x15,0x30,0xd0,0xd6,0x5f,0xd1,0xda,0x5b,0xde,0xd2,0x5d,
0xde,0xdc,0x51,0xd6,0xd4,0x56,0xda,0xd8,0x52,0xd2,0xd0,0x54,0x5c,0xdf,0x50,0x54,
0x57,0x5f,0x58,0x57,0x5b,0x58,0x5b,0x8d,0x0,0x54,0x57,0xe4,0x55,0x95,0xe7,0x56,
0x95,0x51,0x0,0x64,0x97,0x17,0x65,0x95,0x15,0x80,0x32,0x4b,0xf3,0x33,0x0,0x80,
0x62,0x8c,0x40,0x8,0x40,0x21,0x0,0x90,0x49,0x0,0x48,0x4f,0xce,0x33,0x0,0x90,
0x92,0x90,0x93,0xc,0x0,0xc4,0x67,0x91,0x8,0x94,0x99,0xa0,0xcd,0xd0,0x3b,0x0,
0x1e,0xff,0x1a,0x4,0x0,0xa6,0x9f,0x2,0x20,0x89,0x2a,0x0,0x7a,0x0,0x74,0xa4,
0x3,0xe0,0xf1,0x8f,0x0,0x90,0x15,0x10,0x71,0x0,0x35,0x2,0x40,0x1a,0x30,0x71,
0x80,0x68,0xe2,0x0,0x46,0x0,0xf8,0xd0,0xe,0xf0,0x4a,0x0,0xd0,0x1,0xe8,0x2,
0x40,0x1c,0x80,0x2,0x80,0x5e,0x1,0x7d,0xb,0x0,0x52,0x11,0x35,0xfd,0x47,0x1,
0x90,0x1e,0x0,0x20,0x95,0xf3,0xd0,0x1,0x14,0x3c,0x9,0x1,0xc0,0x3,0x0,0x40,
0x13,0x60,0xbb,0xfb,0xb2,0xdd,0x91,0x1,0x96,0x5b,0x30,0xcb,0x2d,0x94,0xe5,0x16,
0xc1,0xd4,0x9b,0x0,0xc3,0x2d,0x9e,0x41,0x99,0x80,0x47,0xb,0x43,0xb6,0xcb,0xf0,
0x2e,0xe0,0x2b,0xd5,0x2,0x65,0x84,0x40,0x19,0x24,0x80,0x1a,0x0,0xc,0x58,0x8d,
0xff,0xfa,0xda,0xc3,0xff,0x60,0xeb,0x74,0x1b,0xd6,0x41,0x97,0x31,0xff,0x9c,0xfe,
0x6,0x7e,0x26,0xc,0x52,0xd0,0xe9,0x33,0xe7,0x6f,0x7d,0xf1,0xb6,0xf,0x31,0x1,
0xe5,0x4f,0xde,0x57,0xfe,0xfa,0x4b,0xd5,0x7,0x17,0x7c,0xbf,0xc0,0x95,0x68,0xd0,
0x65,0xba,0xd,0x3,0x0,0x51,0x16,0x8c,0x68,0x73,0x9a,0x1,0x30,0x1,0xad,0x19,
0x23,0xde,0x8c,0x91,0x64,0xc6,0xd9,0x32,0xe3,0x3d,0x31,0x77,0x49,0xb2,0x15,0x46,
0xd8,0x9,0x3,0xec,0x84,0x4a,0x3b,0xa1,0x1c,0x1,0x38,0xf6,0xf8,0xa7,0xd3,0xff,
0xd3,0x8d,0x8d,0xa1,0xd6,0xe,0xea,0xf8,0xaf,0x2b,0x2a,0xa5,0x18,0xa8,0x2c,0xcc,
0xb3,0x7c,0xfa,0x43,0x7e,0xf7,0x49,0x5f,0x4f,0x81,0x4a,0xc9,0xf3,0xf5,0x17,0xf8,
0x85,0xba,0x4,0x44,0xb,0x3,0x35,0xae,0x41,0x9,0xa2,0xc0,0x64,0xd7,0xc0,0x14,
0x57,0xff,0x54,0xa1,0x6f,0x8a,0xc0,0x27,0x85,0xaf,0x4c,0xe1,0x79,0xa7,0x70,0x95,
0xa9,0x3c,0x55,0x6,0xdf,0x3f,0x5b,0x1c,0x92,0x2f,0x89,0x2e,0xf1,0x8e,0xab,0xf4,
0x4b,0xaa,0xf,0xcd,0x6c,0x8d,0x2d,0xec,0x4e,0x28,0x1d,0x48,0xad,0x1b,0xcf,0x6d,
0x9d,0x2b,0xe9,0x5c,0xaa,0x1c,0x58,0xaf,0x1f,0xde,0x6a,0x9a,0x78,0xd4,0x3e,0xfb,
0xac,0x67,0xee,0x79,0xef,0xca,0xee,0xd0,0xea,0xde,0x30,0xa5,0x95,0x9d,0xa1,0xb5,
0x67,0x23,0x6b,0x8f,0x46,0xd6,0x36,0x87,0xd7,0x56,0x87,0xe7,0xa6,0xba,0x7b,0x3a,
0xaa,0xd2,0x1a,0x83,0xee,0x3d,0xfd,0x2f,0xf6,0xf,0xdf,0x28,0x2c,0x83,0x7,0x8a,
0x12,0x61,0x23,0x4,0x26,0x10,0x1d,0x10,0x4,0x3e,0x10,0xe9,0xeb,0xf,0x9f,0xe8,
0x3,0x8d,0xe9,0xed,0xe3,0x95,0x60,0x5,0x40,0x42,0xfb,0x48,0x65,0xeb,0x60,0x45,
0x6b,0x7f,0x79,0x73,0x4f,0x59,0x53,0x67,0x69,0x53,0x7b,0x69,0x63,0x6b,0x49,0x43,
0x73,0x71,0x7d,0x53,0x51,0x5d,0x43,0x61,0x6d,0x5d,0x41,0x6d,0x4d,0x41,0x4d,0x75,
0x41,0x75,0x65,0x7e,0x55,0x45,0x5e,0x25,0x0,0x50,0x9a,0x53,0x51,0x42,0x0,0x28,
0xd4,0x3,0x90,0x97,0x51,0x9c,0x4b,0x0,0xc8,0x4e,0xc3,0xe9,0x7,0x65,0x0,0x0,
0x49,0x7a,0x0,0x60,0xfa,0x13,0xb2,0xf,0x3,0x0,0x11,0x28,0x1d,0x23,0x90,0x3a,
0x4d,0xab,0x4e,0x45,0x0,0xc8,0xf4,0xab,0xa3,0x69,0x0,0x62,0x28,0x0,0x22,0x31,
0xff,0xe8,0x23,0x10,0xd,0x80,0x3e,0x2,0x19,0x1,0x10,0x18,0x13,0x74,0x3c,0x0,
0xe1,0x10,0x81,0x8c,0x0,0x8,0x51,0x91,0x4b,0x0,0xa3,0xe,0xf0,0x47,0x3,0x20,
0x15,0x79,0xeb,0x1,0xf0,0x24,0xe,0xa0,0x30,0x38,0x0,0x0,0x20,0x25,0xe,0x20,
0x83,0xed,0x5,0x8f,0x62,0x40,0xa2,0xe0,0x2,0x3,0x1e,0x5e,0x1c,0xc2,0x0,0xdb,
0xdd,0x87,0x30,0xe0,0xcf,0x72,0xb,0x64,0xb9,0xa1,0x9,0x30,0xc1,0x4,0xc4,0x31,
0x4c,0xb1,0x9a,0x21,0xd6,0x32,0xc4,0x3a,0x86,0x18,0x4c,0x20,0x85,0x21,0xdd,0x62,
0x28,0x66,0xd8,0xde,0xf1,0x68,0x2,0xca,0x50,0x81,0xd2,0x5f,0xa0,0xf4,0x11,0x48,
0xb4,0xb6,0xf0,0xae,0x8c,0x69,0xd1,0x7b,0xc4,0x4,0xce,0x53,0xa3,0x4f,0xeb,0xcc,
0x99,0x4f,0xf9,0xef,0x50,0x29,0xe8,0x4d,0xef,0x9f,0x7e,0xac,0x7c,0xeb,0xb4,0xcf,
0x27,0xdf,0x40,0x1b,0xe,0xb8,0x60,0x1e,0x7c,0xcd,0x16,0xae,0x5,0x48,0x10,0x82,
0x3e,0x80,0xc,0xd0,0x41,0x88,0x0,0xa0,0x33,0x63,0x55,0x9b,0xc1,0xd7,0xab,0xf0,
0x7,0x2d,0x5d,0x62,0x6d,0x85,0xa1,0xb6,0x42,0x3f,0x3b,0xa1,0xd7,0x31,0x0,0xd0,
0xd1,0x1f,0x2f,0xbf,0x76,0x9f,0xad,0x8d,0x4f,0xb7,0x56,0x54,0xe3,0xed,0x6f,0x11,
0xb9,0xf6,0x2a,0x84,0x57,0x66,0xcb,0x74,0xdd,0xaa,0x6b,0xbb,0x7f,0x1a,0x97,0xab,
0x50,0xc7,0x78,0xc5,0x6a,0x3c,0xa3,0x75,0xf2,0xc8,0x24,0x69,0x58,0x9a,0x7b,0x70,
0xa6,0x38,0x20,0xdb,0x35,0x20,0xd7,0x35,0xb0,0x40,0x1c,0x5c,0xe4,0x1e,0x56,0x2a,
0x83,0x43,0x3d,0xa1,0x3e,0x38,0xbd,0x25,0x32,0xb7,0x53,0x53,0xdc,0x97,0x5c,0x3d,
0x9a,0xdd,0x34,0x55,0xd4,0x39,0x5f,0xd1,0xb7,0x5c,0x3b,0xb2,0xd1,0x32,0xbe,0xd5,
0x3e,0xff,0xa4,0x6f,0xf1,0xd9,0xc0,0xca,0xf6,0xf0,0xc6,0xee,0xf8,0xe6,0xde,0xc4,
0xe6,0xfe,0xc4,0xc6,0xfe,0xf8,0xda,0xfe,0xd8,0xea,0xfe,0xc8,0xf2,0xfe,0xd0,0xd2,
0xfe,0xe0,0xe2,0xfe,0xc0,0xc2,0x7e,0xff,0xc2,0x7e,0xdf,0xfc,0x7e,0xef,0xd2,0xce,
0xe0,0xca,0xa3,0xa1,0x95,0xfb,0x43,0xcb,0x6b,0x83,0x4b,0x8b,0x3,0xd3,0xf0,0x85,
0x58,0x2d,0x65,0x89,0xcd,0xca,0x3b,0xcf,0xff,0xc6,0xf9,0xfe,0x5b,0x85,0x45,0xc9,
0xe9,0x6a,0x6d,0x5c,0x70,0x18,0x3a,0x80,0x9e,0x81,0x8,0x5f,0x7f,0x75,0x68,0x70,
0x59,0x53,0x26,0x30,0xd0,0x31,0x51,0xd5,0x3e,0x56,0xd9,0x3a,0x5c,0xd1,0x3a,0x50,
0xde,0xd2,0x57,0xd6,0xdc,0x5d,0xda,0xd4,0x55,0xda,0xd0,0x56,0xdc,0xd0,0xa2,0x7,
0xa0,0xbe,0xa0,0xa6,0x16,0x0,0xc8,0xaf,0xae,0xcc,0x43,0x0,0xca,0x73,0x2a,0xcb,
0x8,0x0,0xc5,0x8,0x40,0x29,0xe5,0x0,0x79,0xe9,0x0,0x40,0x51,0xe,0x0,0x90,
0x5a,0x98,0x95,0x7a,0x0,0x40,0x7a,0x52,0x2e,0x44,0xa0,0xd4,0xc4,0x9c,0x14,0x23,
0x0,0x12,0xe3,0x33,0x13,0x34,0xe0,0x0,0x34,0x0,0x9a,0x63,0x0,0xc0,0xe9,0x8f,
0x8e,0x4c,0xa0,0xa,0x40,0x64,0x78,0x3c,0x76,0x80,0x50,0x90,0x6,0xa6,0x3f,0x2c,
0x24,0xe,0x1c,0x20,0x14,0x1d,0x0,0xf3,0x4f,0x30,0x4e,0xbf,0xde,0x1,0xfc,0xe,
0x1c,0xc0,0x1f,0x3b,0xc0,0xb1,0x0,0x4,0x63,0x1,0x20,0xd,0xf8,0x65,0x7,0x30,
0x5c,0x2,0xbc,0xca,0x1,0xe,0x1,0x40,0xe5,0x1f,0x8c,0x40,0x72,0x14,0x1,0x40,
0x4a,0x0,0x90,0x21,0x0,0x12,0x90,0x1,0x0,0x2f,0x8e,0x3b,0x0,0x40,0x4c,0xc0,
0xcd,0x8f,0xe5,0x86,0x26,0xc0,0x74,0xb,0x65,0x8a,0x23,0x98,0xe2,0x28,0x86,0x38,
0x96,0x21,0x8e,0x63,0x88,0xe3,0x19,0x62,0x62,0x2,0xee,0x8d,0xc,0xe9,0x2e,0xc3,
0xab,0x98,0xe7,0x1d,0xcb,0xf7,0xe,0x47,0x13,0x50,0xfa,0xa,0x94,0x2a,0x81,0xed,
0xc0,0x3b,0x57,0x9f,0xfe,0xb9,0xd,0xfb,0xc6,0x9d,0xcb,0x97,0x21,0x2,0x5d,0x82,
0x5f,0x89,0x24,0x35,0xe0,0xeb,0x53,0xa7,0x2e,0x5e,0x3d,0xf9,0x8e,0xf7,0xcf,0xde,
0xf4,0xf9,0xc9,0xef,0x94,0x3f,0x79,0x4f,0xf9,0xcb,0xcf,0x55,0xbf,0x87,0x26,0x70,
0xd5,0xff,0xcc,0x9d,0xc0,0x4b,0xa4,0xd,0xdf,0x75,0x8e,0x34,0xa7,0x1,0x80,0x20,
0x4,0xc,0xc4,0x99,0xd1,0x26,0x0,0x41,0x68,0xde,0x8c,0xbb,0x6b,0x26,0xc8,0xb5,
0x71,0x89,0xb2,0x75,0x9,0xb2,0x15,0xfa,0xd8,0x1a,0x3b,0x0,0xf5,0xd8,0xcf,0x1,
0x0,0xdb,0xf,0xb6,0xa6,0x7b,0x7,0x1b,0x4b,0x2b,0x60,0xe8,0x31,0xfd,0x93,0xf0,
0x3,0xdb,0x4f,0xf6,0xe6,0x7,0xec,0xa5,0xf7,0x75,0x5a,0xdf,0x58,0xad,0x67,0x74,
0xa2,0x2c,0x3c,0x45,0x12,0x92,0xe1,0x16,0x98,0xe3,0x1a,0x52,0xec,0xa1,0xad,0xf7,
0xcf,0xea,0x8a,0xa9,0x1a,0xcb,0x68,0x98,0xce,0xef,0x58,0x2c,0xef,0x59,0xa9,0x19,
0xbd,0xdf,0x32,0xf5,0xb0,0x73,0xee,0x49,0xdf,0xf2,0xb3,0xe1,0xb5,0xed,0xd1,0xad,
0x9d,0xa9,0xad,0xdd,0xe9,0x87,0x7b,0xb3,0x8f,0xf6,0xe7,0x1e,0xee,0xcf,0x6c,0xed,
0x4f,0x6f,0xed,0x4f,0xc1,0xd0,0xaf,0xef,0x8f,0x93,0xa1,0x1f,0x6,0xe9,0xe7,0x1e,
0x47,0x7f,0x1e,0x47,0xbf,0x6f,0x6e,0xaf,0x17,0xb5,0xdf,0xb3,0xf0,0xbc,0x6f,0xe9,
0xc1,0xc0,0xe2,0xfa,0xc0,0xd2,0xf2,0xc0,0xe2,0x7c,0xff,0x38,0x7c,0x15,0x68,0x63,
0xb1,0xb6,0x45,0x71,0x6b,0xfb,0x3f,0xb2,0xd6,0xdf,0x2f,0xcc,0x4f,0x49,0x57,0x6b,
0xc0,0x4,0x22,0xfd,0x2,0xd0,0x4,0xfc,0x2,0xc2,0x54,0xbe,0xe1,0x3e,0x7e,0xb1,
0xc0,0x40,0x4b,0x66,0xdb,0x78,0x5,0x60,0xd0,0x36,0x5a,0xd1,0x3a,0x5c,0xde,0x3c,
0x50,0xd6,0xdc,0x57,0xda,0xd4,0x5d,0xda,0xd8,0x51,0xd2,0xd0,0x56,0x54,0xdf,0x52,
0x54,0xd7,0x54,0x58,0xdb,0x50,0x50,0x53,0x97,0x5f,0x53,0x9b,0x5f,0x5d,0x95,0x57,
0x55,0x99,0x5b,0x59,0x91,0x5b,0x51,0x96,0x5d,0x51,0x9a,0x5d,0x6,0x0,0x14,0x65,
0x96,0x16,0x66,0x96,0x16,0x18,0x0,0x48,0x25,0x0,0xa0,0x3,0xe4,0x53,0xe,0x40,
0x0,0x80,0xe9,0xcf,0x49,0xd1,0x81,0x3,0x64,0x61,0x4,0xd2,0x66,0x82,0x10,0x80,
0x38,0x0,0x0,0x8e,0xff,0x34,0x6d,0x2c,0xed,0x0,0x71,0x7,0xe,0x90,0x88,0xe,
0x10,0x1,0x0,0xe8,0xa2,0xf4,0x0,0x44,0x60,0x4,0x32,0x0,0x80,0xc7,0xbf,0x31,
0x0,0xc4,0x1,0xa2,0x2,0x11,0x0,0x2c,0x0,0x64,0xfa,0x29,0x0,0xc2,0x7c,0x49,
0x1,0xf0,0x21,0xd,0x98,0x38,0x0,0x2,0xa0,0x3c,0x0,0x20,0x0,0x76,0xa0,0x5e,
0x90,0x7f,0x30,0x2,0xf9,0x11,0x0,0x7c,0xc9,0x2d,0x98,0xf,0xe9,0x0,0x2a,0x10,
0xde,0x0,0xe0,0x25,0x80,0x37,0xe8,0x18,0x0,0x48,0x1,0x78,0x19,0x0,0x19,0x1,
0x40,0xce,0x5,0x6,0x3c,0x3c,0x39,0x60,0x2,0xee,0xde,0x6c,0x64,0xc0,0x87,0xed,
0xe6,0x4b,0x0,0x8,0x62,0x89,0x43,0x98,0xe2,0x30,0xa6,0x38,0x92,0x21,0x8e,0x61,
0xe8,0x4d,0xc0,0x59,0x9c,0xe0,0x2c,0x4e,0x76,0x96,0xdc,0x77,0x96,0xcf,0xb3,0xbc,
0xb5,0x7c,0xef,0x28,0xbe,0x77,0x30,0xdf,0xdb,0x5f,0x0,0xbb,0x13,0x69,0x8c,0xc3,
0xb5,0xed,0x3f,0xbb,0x57,0xfb,0x1b,0x8b,0x5b,0xb7,0xae,0x5f,0xb8,0x68,0xa8,0x1,
0xf0,0x7,0x30,0xf0,0x5,0xf3,0xf7,0x50,0x3,0x7e,0x7,0x26,0x40,0xee,0xc5,0x4e,
0xfa,0x7e,0xf4,0xb5,0xdf,0x57,0xd0,0x86,0x4d,0x83,0xae,0xd8,0x84,0xde,0x72,0x8c,
0xb8,0x87,0x0,0x10,0x13,0x70,0x8e,0x31,0x77,0x56,0x9b,0x39,0xc7,0x99,0x39,0x6b,
0xcd,0x9c,0xc1,0x7,0x72,0xcd,0xb8,0x3b,0x66,0xf0,0x9c,0x9c,0x8b,0xda,0xd6,0x25,
0xdc,0xd6,0x25,0x80,0x6,0xe0,0x48,0xf7,0x25,0xf9,0x67,0xef,0xd9,0x3a,0x75,0xf9,
0x5,0x9b,0x1f,0xbc,0xfa,0x2d,0x82,0xfd,0xf,0x44,0xa0,0x9c,0x6,0xcd,0xd5,0xbd,
0xef,0x87,0xd4,0x70,0xd4,0xf1,0x5e,0x51,0x64,0xfa,0xe1,0xe0,0xf7,0xcf,0x15,0xfa,
0x15,0x9,0xb4,0xcd,0xfe,0xd5,0x93,0x59,0x23,0x5b,0xcd,0xab,0x2f,0x46,0xb6,0x76,
0x67,0x1e,0xef,0xcd,0x3d,0xdb,0x5f,0xdc,0xde,0x5f,0x7e,0x8e,0x5a,0x7a,0xb6,0xbf,
0xf4,0x64,0x7f,0xfe,0xe1,0xfe,0x2c,0xcc,0xfd,0x7d,0x1c,0xfa,0x49,0x18,0x7a,0x72,
0xd8,0x8f,0xad,0xed,0x8f,0xae,0xd0,0xa3,0x3f,0xb4,0xb8,0x3f,0xb8,0xb0,0x37,0x30,
0xbf,0xdb,0x3f,0xff,0xa2,0x7f,0x76,0xbb,0x6f,0xf6,0x79,0xef,0xf4,0xb3,0xde,0xe9,
0xa7,0x3d,0x53,0x8f,0xbb,0x67,0xb6,0x7b,0x66,0xf6,0xbb,0x17,0x9e,0xf5,0x2d,0xde,
0xef,0x5f,0x5c,0xed,0x7,0x6,0xe6,0x67,0x7b,0x47,0x7,0x9b,0x5b,0xea,0x8b,0x22,
0x5b,0x84,0x37,0x5e,0xfc,0x25,0x7f,0xe5,0xf3,0xc2,0xdc,0x54,0xb8,0x1c,0xa0,0xca,
0x0,0x5,0x0,0x98,0x40,0xb8,0x8f,0x6f,0xc,0x30,0xd0,0x9a,0xd9,0x32,0x5a,0xd6,
0x36,0x56,0xd1,0x3a,0x52,0xde,0x3c,0x58,0xd6,0xdc,0x5f,0xda,0xd4,0x53,0xd2,0xd0,
0x55,0xdc,0xd0,0x5e,0x5c,0xdf,0x56,0x54,0xd7,0x5c,0x58,0xdb,0x58,0x50,0x53,0x9f,
0x5f,0x5d,0x97,0x5f,0x55,0x9d,0x57,0x89,0x0,0xe4,0x0,0x0,0xe5,0xa5,0x59,0x65,
0x25,0x59,0xa5,0x8,0x40,0x6,0x2,0x90,0x9f,0x5e,0x94,0x97,0x56,0x94,0x93,0x5a,
0x8,0x0,0x64,0x83,0x3,0x24,0x3,0x0,0x79,0x19,0x4,0x80,0xb4,0xc4,0x9c,0xd4,
0xc3,0x0,0x40,0x1,0x78,0x9,0x80,0x14,0x88,0x40,0x87,0x1,0x48,0xd0,0x3,0x10,
0x1f,0x19,0x6,0xe,0xa0,0x8d,0x8,0xa5,0x0,0x88,0x23,0xe,0x70,0x4,0x0,0x2c,
0x0,0x0,0x0,0x34,0x60,0x2,0x40,0x4,0x75,0xfc,0x1f,0x7,0x40,0xb0,0x11,0x0,
0x81,0xc4,0x1,0x10,0x0,0x9c,0xfe,0xd7,0x0,0x40,0x8a,0x0,0x78,0x1d,0x44,0x20,
0xa1,0xa7,0xe4,0x90,0x3,0xc8,0x88,0x3,0x48,0x51,0x3c,0x30,0x1,0x89,0x8c,0xb,
0x0,0x78,0x80,0x14,0x1c,0x60,0xc0,0xdd,0x8b,0x8d,0xc,0xa8,0xd8,0x6e,0x3e,0x2c,
0x34,0x81,0x40,0xa6,0x38,0x98,0x29,0x46,0x13,0x60,0x50,0x26,0x20,0x8a,0x73,0x16,
0x69,0x9d,0xc5,0x3a,0x64,0xc0,0xbd,0xce,0x19,0x4c,0xc0,0xb3,0x94,0x4b,0x4c,0x80,
0xef,0x1d,0x48,0xbe,0x53,0x5a,0xc9,0x77,0xe8,0xfc,0xf0,0xca,0x8b,0x3f,0xb5,0x71,
0xbd,0x6,0x6f,0xcd,0xe3,0x53,0x71,0xa7,0x4f,0x83,0xa0,0xc,0x80,0x1b,0x5c,0xbc,
0x78,0xf2,0x5d,0xaf,0x9f,0x43,0xa,0x2,0x13,0x80,0x7b,0xb1,0xcf,0x54,0xef,0x9e,
0xf3,0x85,0x95,0xe8,0x99,0xdb,0x81,0x5f,0x43,0x10,0xb2,0xb,0xc3,0xbb,0x61,0x0,
0xc0,0x19,0x84,0xc,0xc0,0x4f,0xb5,0x9a,0x39,0x6b,0x68,0x6,0x58,0x3,0x24,0x8,
0xc1,0x17,0xeb,0x46,0xdb,0xba,0x84,0x20,0x0,0x2f,0xdd,0xfb,0x92,0xcb,0xaf,0x17,
0x4f,0x1e,0xcc,0xf4,0xe1,0xf1,0xf,0xd3,0x8f,0x67,0x3f,0x3e,0xfa,0x86,0x92,0xcd,
0x5d,0xb5,0x7a,0xf8,0x4f,0xba,0x24,0x5f,0x48,0x3e,0xe1,0xc9,0x92,0xe0,0x74,0x37,
0xff,0x1c,0xa1,0xaa,0x80,0x1f,0x58,0x21,0xce,0x19,0x8c,0xeb,0xdb,0xaa,0x85,0xe1,
0x7e,0xb1,0xbf,0xfa,0x62,0x7f,0x6d,0x7b,0x7f,0x5,0x0,0x78,0xb2,0xbf,0x0,0x87,
0x3d,0xe8,0x1,0x7d,0xde,0x4f,0x6f,0xee,0x4f,0x92,0xe9,0x9f,0xc0,0x53,0x7f,0x6f,
0x74,0x65,0x77,0x74,0xf9,0xc5,0xc8,0xd2,0xf3,0xe1,0xc5,0xa7,0xc3,0xf3,0x8f,0x7,
0xe7,0x40,0x8f,0x6,0x66,0x1f,0xf6,0xcf,0x3c,0xea,0x3,0x4d,0x3f,0xea,0x9d,0x7a,
0xd4,0x33,0xf5,0xa8,0x7b,0x92,0x68,0xea,0x45,0xd7,0xf4,0x7e,0xd7,0xfc,0xe3,0xbe,
0xc5,0x4d,0x64,0x60,0x61,0xb1,0x6f,0x6e,0xba,0x67,0x6c,0xb0,0xa5,0xbe,0x26,0x2f,
0xb4,0x83,0x73,0x7d,0xe7,0xcf,0x5d,0x17,0x4f,0xc3,0x44,0xc2,0x62,0x14,0x19,0xd0,
0x3b,0x0,0x60,0x10,0xa6,0xf4,0x51,0x87,0x87,0x94,0xb5,0x66,0xb5,0x8e,0x95,0xb7,
0x8e,0x96,0xb7,0xc,0x97,0x35,0xd,0x94,0x36,0xf5,0x95,0x34,0x74,0x17,0x37,0x74,
0x16,0xd7,0xb7,0x17,0xd5,0xb5,0x14,0xd6,0x36,0x15,0xd4,0x34,0xe6,0x57,0xd7,0xe7,
0x55,0xd5,0xe4,0x56,0x56,0xe7,0x56,0x56,0xe6,0x54,0x54,0x64,0x97,0x97,0x11,0x0,
0x8a,0x11,0x80,0x92,0x82,0x8c,0xe2,0xfc,0xf4,0x62,0x0,0x20,0x37,0xb5,0x10,0x19,
0x48,0x29,0xc8,0x4a,0xc9,0xcf,0x44,0x0,0x72,0xd3,0x13,0x8f,0x0,0x80,0xc7,0x7f,
0x22,0x2,0x90,0x8e,0xe,0xa0,0x4e,0x8b,0x57,0xa7,0x12,0x7,0xa0,0xa7,0x5f,0x1d,
0x9d,0x14,0x1b,0x85,0xc7,0x7f,0x4c,0xe4,0x21,0x0,0x22,0x8d,0x1,0xd0,0xe7,0x1f,
0xe2,0x0,0x31,0x24,0x2,0xbd,0x2,0x0,0x52,0x0,0xf4,0xe,0x10,0x42,0x1c,0x80,
0x2,0x20,0x88,0x38,0xc0,0x61,0x0,0xa8,0x6,0xfc,0xad,0xe,0x60,0x4,0x0,0x16,
0x0,0x98,0x7e,0x5a,0xb4,0x3,0x1c,0x2,0x40,0x4a,0x0,0x90,0xd1,0x0,0xb8,0xeb,
0x1,0x70,0x53,0xb2,0xdd,0x54,0x2c,0x30,0x1,0xb1,0x3f,0x53,0x1c,0xc4,0x24,0x26,
0xc0,0x10,0x45,0x32,0x44,0xd1,0xc,0x91,0xda,0x59,0xa4,0x71,0x16,0xc5,0x3b,0x8b,
0xc0,0x4,0x92,0x9c,0x25,0xeb,0xce,0xf2,0x45,0x96,0x97,0x96,0xef,0x45,0x9b,0x0,
0x1f,0x4c,0x40,0x1e,0xc6,0xb8,0xfe,0xec,0x2f,0xef,0xb6,0xfd,0x8c,0x7a,0x61,0x12,
0x47,0x1f,0x18,0x38,0x75,0x9a,0xa,0x42,0xf0,0x4b,0x8f,0x74,0x13,0x50,0xfe,0x94,
0x5a,0x89,0x82,0x9,0x5c,0xf7,0x3f,0x67,0x12,0xf8,0x8d,0x55,0xc8,0x4d,0xb8,0x16,
0x80,0x20,0x84,0x0,0x44,0x99,0x21,0x0,0xb1,0xc4,0x4,0x34,0xa6,0xce,0x5a,0x53,
0xe7,0x14,0x53,0xce,0x13,0x33,0xee,0x43,0x73,0x41,0xbc,0x8d,0x20,0x1c,0x1,0x80,
0xe4,0x73,0xf0,0xcc,0xb3,0xe1,0xd9,0xcf,0x7,0xf3,0x8b,0x7d,0x8d,0x2d,0x10,0x7e,
0xb0,0xfb,0x92,0x67,0x3f,0x1,0x83,0x92,0xf2,0x4c,0xd8,0x7e,0x2a,0xbb,0xcd,0xa2,
0x35,0x8a,0x88,0x4,0x49,0x48,0xb2,0x5b,0x40,0x86,0xab,0x77,0x5,0xc7,0x75,0xc1,
0xda,0xf7,0x81,0xb0,0xf0,0x45,0xc2,0xe0,0x7e,0x23,0xcc,0x37,0x1c,0xf9,0x70,0xde,
0x3f,0xdd,0x5f,0x78,0xbc,0x3f,0x4f,0xa2,0xce,0xec,0x3,0xd4,0xcc,0xe6,0xde,0xd4,
0xe6,0xee,0xd4,0xfa,0x8b,0xc9,0xb5,0xed,0x89,0xd5,0x67,0x13,0x2b,0x4f,0xc6,0x96,
0x1f,0x8d,0x2e,0x3d,0x1c,0x5d,0x7c,0x38,0xb2,0xf8,0x60,0x78,0x7e,0x6b,0x68,0x6e,
0x6b,0x10,0x34,0x7b,0xbf,0x7f,0x66,0xab,0x6f,0x1a,0xf4,0xa0,0x77,0xea,0x41,0xf,
0xea,0x61,0xcf,0xe4,0xc3,0xee,0xc9,0x87,0x5d,0xe3,0xf,0x3a,0x27,0xb7,0x3b,0xa7,
0xf6,0x3a,0xe7,0x1e,0xf5,0x2c,0xac,0xf7,0x2d,0xac,0xf4,0xcd,0xcf,0xf7,0xce,0x4e,
0x75,0xf,0xf5,0x35,0xd6,0x57,0xe7,0xfa,0x77,0x3a,0x40,0x39,0x71,0x9b,0x3d,0x9f,
0x97,0x9a,0xc,0x2f,0xcd,0xc0,0x85,0x0,0x54,0x61,0x10,0xa4,0x20,0x50,0xa8,0xd2,
0x27,0x36,0x2c,0xb8,0xac,0x3d,0xab,0x79,0xb4,0xb4,0x65,0xa4,0xac,0x69,0xa8,0xb4,
0x69,0xa0,0xa4,0xa1,0xb7,0x18,0x18,0xa8,0xeb,0x28,0xac,0x6d,0x2b,0xa8,0x69,0x2e,
0xa8,0x69,0xca,0xaf,0x6e,0xc8,0xab,0xaa,0xcd,0xad,0xac,0xc9,0xa9,0xac,0xa2,0x1,
0x0,0x13,0x28,0x2d,0xc9,0x2c,0x29,0xca,0x28,0x29,0xcc,0x28,0x2e,0x40,0x7,0x0,
0x9f,0x1,0x0,0xa,0xb2,0x53,0xf2,0xb3,0x92,0xf3,0x33,0x93,0x28,0x0,0x72,0xd2,
0x12,0xc0,0x1,0xb2,0xf5,0x11,0x28,0x33,0x49,0x9b,0x71,0x0,0x40,0x1c,0x5,0x40,
0x8a,0x86,0x1c,0xff,0x71,0xd1,0x50,0x82,0x11,0x0,0xc2,0x0,0x0,0x80,0xf9,0x27,
0x2a,0xfc,0x25,0x7,0x20,0x0,0x84,0x6,0xc5,0xd2,0x0,0x4,0x18,0x3,0x10,0x79,
0xc8,0x1,0x60,0xfa,0x9,0x0,0xbe,0x18,0x81,0xe,0x1,0x40,0x15,0x0,0x6f,0x72,
0x7,0xfc,0x5a,0x2b,0x20,0x12,0x81,0x8e,0x7,0xc0,0x45,0x2e,0x1,0x9,0x40,0x32,
0x14,0xed,0x0,0x12,0x63,0x0,0xe4,0x1c,0x77,0x5,0xc7,0xdd,0x93,0xd,0x26,0xe0,
0xe6,0xcd,0x72,0x53,0xb2,0xc0,0x4,0xc4,0x7e,0x4c,0x71,0x0,0x32,0x20,0xa,0x65,
0x88,0xc2,0x19,0xa2,0x28,0x86,0x28,0xd6,0x99,0x32,0x1,0x91,0xe,0x19,0x70,0xab,
0x71,0x96,0xec,0x3a,0x7b,0x56,0x70,0xbc,0x62,0xf8,0x5e,0x61,0x7c,0xaf,0x40,0xbe,
0x97,0xf,0x9a,0x80,0x73,0xd3,0xe7,0xf8,0xf5,0x41,0xf2,0xcb,0x77,0x2f,0x5f,0xc1,
0xeb,0x30,0x72,0xfc,0xa3,0x4e,0x9f,0xfe,0xfa,0xdc,0xa9,0xdf,0xcb,0x7f,0x85,0x4d,
0x40,0xf5,0x13,0x58,0x89,0x7e,0xa6,0x7a,0xf,0xda,0x30,0xac,0x44,0x6f,0xc1,0xe3,
0x74,0x41,0x57,0xc9,0x43,0x72,0x66,0x84,0x1,0x33,0xe7,0x68,0x64,0xc0,0x49,0x6d,
0xe6,0x14,0x67,0xea,0x4,0x0,0xc4,0x9b,0x32,0x1b,0x4d,0x39,0xfb,0x66,0xbc,0x6e,
0x4b,0x41,0x8c,0xd,0xe5,0x0,0x90,0x79,0x8c,0x19,0x78,0xbe,0xfb,0xfc,0xf1,0xc2,
0xe0,0x68,0x53,0x59,0x25,0xb5,0xf6,0x31,0x74,0x80,0xa0,0x11,0xc6,0xed,0xed,0xbf,
0xd6,0xa4,0x2b,0x23,0x35,0xd2,0xd0,0x4,0x77,0x58,0xf8,0xf8,0xa4,0xf3,0x45,0x93,
0x36,0xb0,0x61,0x8d,0xda,0xf7,0xae,0xdd,0xcf,0x9d,0xdd,0xef,0x85,0xa1,0x27,0x69,
0x7,0xe,0x7e,0x8,0x3c,0x73,0x5b,0x7b,0xb3,0x10,0x87,0xee,0xef,0xcc,0x6c,0x6e,
0x4f,0xaf,0x3d,0x9b,0x5c,0x7f,0x3a,0xb5,0xf6,0x64,0x72,0xf5,0xf1,0xc4,0xf2,0xa3,
0xf1,0xe5,0x87,0x63,0x8b,0x5b,0x23,0xa0,0x85,0xfb,0xc3,0xf3,0x9b,0x43,0xa0,0xb9,
0x8d,0x81,0xd9,0xcd,0x81,0x99,0x8d,0xfe,0x99,0xcd,0xfe,0xe9,0xcd,0xde,0xa9,0xcd,
0xde,0xc9,0xcd,0x9e,0xc9,0xfb,0xdd,0x93,0x5b,0xdd,0x93,0xf,0xba,0x27,0xb6,0xba,
0xc6,0xb7,0x3a,0x41,0x93,0x2f,0x3a,0x27,0xf7,0x3a,0xe6,0x1e,0xf6,0xce,0xaf,0xf5,
0xce,0x2f,0xf5,0xce,0xcd,0xf5,0x4c,0x4f,0x74,0xe,0xc2,0xf7,0xdf,0x56,0x66,0x2b,
0x7b,0xcd,0xaf,0xed,0x7e,0x5f,0x36,0x79,0x15,0x18,0x80,0xc5,0x68,0xa4,0x1f,0x4e,
0x3f,0x8c,0x3e,0xa5,0x60,0x2f,0x65,0x74,0x58,0x60,0x59,0x5b,0x66,0xe3,0x70,0x49,
0xd3,0x70,0x49,0xe3,0x50,0x49,0x43,0x7f,0x71,0x43,0x6f,0x51,0x5d,0x57,0x61,0x6d,
0x7b,0x41,0x4d,0x2b,0x30,0x90,0x5f,0xdd,0x98,0x57,0x55,0x9f,0x5b,0x59,0x9b,0x53,
0x51,0x9d,0x53,0x5e,0x99,0x5d,0x56,0x9e,0x55,0x56,0x96,0x89,0x0,0x14,0x67,0x14,
0x17,0xa5,0x23,0x0,0xf9,0x69,0x85,0x79,0xa9,0x85,0xb9,0x29,0x14,0x0,0x79,0xc6,
0x0,0xa4,0x21,0x0,0x59,0xc9,0xf1,0x30,0xfd,0x78,0xfc,0x27,0x6a,0x28,0x7,0xc0,
0xe9,0x37,0x0,0xa0,0x41,0x0,0x92,0x68,0x0,0x22,0x13,0x62,0x22,0xe,0x1,0x40,
0x1c,0x40,0x13,0x4e,0x1a,0x70,0x18,0x4c,0x3f,0x5,0x0,0x69,0xc0,0xc1,0x1,0xd1,
0x74,0x1,0xc0,0x8,0xa4,0x7,0x80,0x14,0x0,0x3f,0x1a,0x80,0x50,0xd2,0x1,0xf4,
0x0,0x18,0x15,0x0,0x6f,0x92,0x7f,0xe8,0x2,0x40,0x45,0x20,0x52,0x0,0x14,0xc6,
0x5,0xc0,0x9d,0x2a,0x0,0xdf,0x9,0x0,0x35,0xfd,0x87,0x0,0x90,0x72,0x25,0x52,
0xae,0x87,0x8c,0xe3,0x61,0x0,0xc0,0x93,0xed,0xe6,0xc5,0x2,0x6,0xc4,0x2a,0x96,
0xd8,0x97,0x89,0x26,0x10,0xc8,0x14,0x5,0x33,0x44,0x60,0x2,0x11,0xce,0xa2,0x68,
0x67,0x64,0x0,0x4d,0xc0,0x49,0x94,0xe0,0x24,0x4a,0x74,0xf6,0x58,0x75,0x96,0xad,
0x30,0x3d,0xe3,0x79,0x5e,0x51,0x3c,0xaf,0x60,0x9e,0x97,0x1f,0x1f,0x7e,0x60,0x46,
0x1e,0xc4,0xbc,0xf9,0xf8,0x3f,0xdd,0x1e,0xf8,0x27,0x8b,0xdb,0xf0,0xfd,0x59,0x17,
0xe1,0xec,0xa7,0x4c,0x0,0x1c,0x0,0xfe,0x3e,0x69,0xf1,0x31,0x9a,0x0,0x69,0xc3,
0x1f,0xa8,0x7e,0x73,0x42,0xf5,0xc1,0x79,0xdf,0x2f,0xae,0xf9,0x9f,0xbd,0x1b,0xf8,
0xd,0x5c,0xb,0xe8,0x4d,0xc0,0xc,0x18,0x70,0x8a,0x36,0x73,0x8a,0x5,0x6,0x4c,
0x9d,0x34,0xa6,0x4e,0xf1,0xa6,0xce,0x3a,0x53,0xf6,0xaa,0x29,0xe7,0x85,0x19,0x3f,
0xd3,0x9a,0x72,0x80,0x43,0xdd,0x77,0x1f,0xbe,0xec,0x61,0x65,0x75,0xa8,0xa5,0xdd,
0xb0,0xfb,0xc7,0x17,0x5f,0xe0,0x16,0xac,0xa4,0xc8,0xf2,0xe9,0x3f,0x8a,0xc7,0xcf,
0xa9,0x35,0xde,0x61,0x1a,0x49,0x90,0x4e,0xec,0x9b,0x2c,0x50,0xe4,0xb0,0x38,0xdb,
0x26,0x1e,0xeb,0xce,0xa9,0x2b,0x51,0x1d,0xf,0xab,0x96,0x77,0xc7,0x1e,0xef,0x2f,
0x82,0x1e,0xed,0x2f,0x3c,0xd8,0x9f,0xdf,0xda,0x9d,0xdd,0xda,0x99,0xdb,0x7c,0x31,
0xb3,0xf1,0x7c,0x1a,0x46,0x7f,0xfd,0xc9,0xd4,0xda,0xe3,0xc9,0x95,0x47,0x13,0xcb,
0xf,0xc6,0x96,0xb7,0xc6,0x96,0xee,0x8f,0x2e,0x6e,0x8e,0x2c,0x6c,0xe,0x2f,0x6c,
0xc,0xcf,0x6f,0xc,0xcd,0xad,0xf,0xce,0xae,0xd,0xcc,0xae,0xf,0x4c,0xaf,0xf5,
0x4d,0xaf,0xf7,0x4d,0xad,0xf7,0x4c,0x6d,0xf4,0x4e,0x6e,0xf4,0x4c,0x6c,0x74,0x4f,
0x6c,0x76,0x8d,0x6f,0x76,0x8e,0xdd,0x47,0x8d,0x6e,0xb6,0x8f,0xdd,0x6f,0x1f,0x7f,
0xd1,0x3e,0xb9,0xdb,0x31,0xbb,0xd5,0xd,0xc,0xcc,0x2d,0xf6,0xcc,0xce,0x22,0x3,
0xfd,0x5d,0x75,0x55,0xe5,0x19,0x8a,0xc1,0xdb,0xd0,0x52,0x3c,0xc7,0xee,0xe6,0x24,
0x26,0x2,0x3,0x50,0x6,0x20,0x2,0x85,0x78,0xab,0x0,0x0,0xf8,0x4,0xc5,0x46,
0x80,0xf,0x0,0x3,0xc5,0x80,0x41,0xc3,0x60,0x71,0x7d,0x5f,0x51,0x5d,0x4f,0x61,
0x6d,0x67,0x41,0x4d,0x5b,0x7e,0x75,0x4b,0x7e,0x75,0x53,0x5e,0x55,0x43,0x6e,0x65,
0x5d,0x4e,0x45,0x4d,0x4e,0x79,0x55,0x36,0x3c,0xee,0x8a,0x0,0x94,0x66,0xc0,0xe3,
0xd6,0x25,0x45,0xe9,0x45,0x85,0x69,0x14,0x0,0x5,0xb9,0x29,0xf9,0x39,0xc9,0xf9,
0xd9,0xaf,0x0,0x80,0x30,0x0,0x0,0xa4,0x27,0xc4,0x1d,0x5,0x40,0xef,0x0,0x78,
0xfc,0xc7,0xd2,0x11,0x8,0x8f,0x7f,0xe2,0x0,0x5a,0x3,0x0,0xe1,0xdf,0x2,0x80,
0x1f,0x94,0xe0,0xc8,0x0,0x52,0x0,0xfc,0x49,0x1,0x38,0xa,0x80,0x57,0x30,0x46,
0x20,0x2,0x80,0xd2,0x13,0xf3,0xf,0xdd,0x1,0x5e,0xab,0x0,0x10,0x0,0xa8,0x2,
0x20,0x22,0xf9,0xc7,0x10,0x81,0x68,0x7,0x38,0x0,0x0,0x4c,0x0,0x7e,0x3,0xf,
0x1c,0x0,0xa6,0xdf,0x0,0x0,0x32,0xc0,0x6,0x13,0xa0,0x1,0x50,0xb2,0xc4,0x3e,
0x4c,0x30,0x1,0x51,0x0,0x43,0x14,0xc4,0x20,0x26,0xe0,0xec,0x1a,0xe9,0xec,0x1a,
0xe3,0xec,0x1a,0xe7,0xec,0xaa,0x75,0x72,0xd5,0x21,0x3,0xe2,0x2a,0x27,0xc9,0x9e,
0xb3,0xa2,0x9a,0xe3,0x19,0xcb,0xf3,0xc,0xe3,0x79,0x5,0xf2,0xbc,0x7c,0x78,0x5e,
0xde,0x3c,0x56,0xf5,0x69,0x78,0x42,0xce,0xd2,0xf7,0x1c,0x98,0x80,0xc1,0x1,0x0,
0x0,0xc4,0xe0,0xcc,0xa9,0xf,0xdc,0x7f,0x43,0x99,0xc0,0x5b,0xca,0x37,0xe0,0x5e,
0xec,0x94,0xcf,0x47,0x97,0xfc,0x60,0x25,0x4a,0xdf,0xd,0x3b,0x46,0x98,0x42,0x19,
0x40,0x0,0x40,0x60,0x2,0xb1,0xa6,0x94,0x9,0x0,0x3,0x8c,0x62,0x53,0xce,0x9e,
0x29,0x77,0xda,0x2,0x0,0x38,0x58,0xfb,0x40,0xf4,0x7,0xed,0x6e,0x3f,0x59,0x1e,
0x9d,0x68,0x23,0x97,0x5f,0x70,0xfc,0xc3,0xf4,0x57,0xe5,0x15,0xc2,0x1f,0xba,0x2e,
0x5f,0x18,0xac,0xa8,0x42,0x49,0x44,0xac,0x34,0x54,0xe3,0xee,0xaf,0x13,0x2a,0x93,
0xb8,0xe2,0x4e,0x5b,0xf6,0xd3,0x7b,0x3e,0xe5,0x6e,0x45,0x83,0xa9,0x23,0x5b,0xed,
0x1b,0xbb,0xd3,0x64,0xfa,0x17,0x61,0xfa,0x1f,0xec,0xcd,0xdd,0xdf,0x99,0xbd,0xff,
0x62,0x76,0xe3,0x19,0x99,0xfe,0xc7,0x53,0x6b,0x8f,0x26,0x57,0x1f,0x4e,0xac,0x3c,
0x18,0x5f,0xbe,0xf,0xd3,0x3f,0xb6,0xb8,0x31,0xba,0xb8,0x31,0xb2,0xb0,0x3e,0x3c,
0xbf,0x36,0x34,0x87,0x1a,0x9c,0x59,0xed,0x9f,0x5e,0xed,0x43,0xad,0xf5,0x4d,0xad,
0xf6,0x4e,0xae,0xf5,0x4c,0xac,0x75,0x4f,0xac,0x77,0x8f,0xaf,0x77,0x8e,0x6f,0x74,
0x8e,0x1,0x3,0x9b,0x1d,0xa3,0x1b,0xed,0xc0,0xc0,0xe8,0xfd,0xb6,0xb1,0xdd,0x36,
0x64,0xe0,0x7e,0xf7,0xec,0x4a,0xf7,0xec,0x7c,0xf7,0xcc,0x74,0xd7,0xe4,0x68,0x7b,
0xf,0x7c,0xe7,0x6d,0x59,0x9a,0xfb,0xf0,0x37,0x57,0xf7,0xfe,0x54,0x35,0x68,0x95,
0xa5,0xd3,0xc1,0x53,0x12,0x50,0x82,0xa9,0xd1,0x7,0x6,0x82,0x3c,0xbd,0xc1,0x7,
0x62,0x22,0x83,0xca,0x3a,0x32,0x1b,0x86,0x8a,0x1a,0x87,0x8a,0xeb,0x7,0x8a,0xea,
0xfa,0xa,0x6b,0xbb,0xb,0x6a,0x3a,0xf2,0xab,0x91,0x81,0xbc,0xaa,0xc6,0xdc,0x8a,
0xfa,0x9c,0x8a,0xba,0x9c,0xf2,0xea,0xec,0xb2,0xca,0xac,0xd2,0xf2,0xcc,0x92,0x32,
0x0,0x20,0xbd,0xb8,0x38,0xbd,0xa8,0x28,0xad,0xa8,0x20,0xad,0x30,0x3f,0x15,0xde,
0x65,0x3,0x0,0xf2,0xb2,0x93,0xf2,0xb2,0x92,0xc0,0x4,0x72,0xd2,0x13,0x40,0xd9,
0x69,0xba,0xec,0x54,0x5d,0x56,0x4a,0x7c,0x66,0xb2,0xd6,0x0,0x40,0x1a,0xed,0x0,
0xb1,0x54,0x4,0xc2,0xfc,0x83,0xe,0x10,0x5,0x32,0x74,0x0,0x43,0x4,0xc2,0x6,
0x4c,0x1c,0x0,0x8e,0x7f,0xe2,0x0,0x41,0xb1,0x94,0x3,0x84,0xe8,0x1d,0x20,0x88,
0xac,0x80,0x8e,0x1,0x40,0x9f,0x7f,0xd0,0x1,0x68,0x0,0xe,0xa,0xc0,0x21,0x7,
0x38,0xae,0x0,0xc8,0xf4,0x2b,0x20,0x8,0x3f,0x7,0x0,0xc0,0xfa,0x1f,0x1,0x38,
0x28,0x0,0x24,0x2,0xd1,0xf9,0x7,0xa7,0x9f,0x0,0x80,0x22,0x0,0x48,0x39,0xee,
0x32,0x8e,0x3b,0x0,0x20,0x67,0xbb,0xc1,0x13,0x5f,0x9e,0x2c,0x60,0x40,0x8c,0x26,
0xc0,0x4,0x13,0x10,0xf9,0x33,0x90,0x81,0x60,0x86,0x6b,0xa8,0xb3,0x6b,0x84,0xb3,
0x6b,0xb4,0xb3,0xab,0xda,0xc9,0x55,0xe3,0xe4,0x1a,0xef,0xe4,0x8a,0x26,0xe0,0xe4,
0xbe,0xe4,0x24,0x5d,0x67,0x80,0x9,0x78,0x46,0xf2,0x3c,0xd1,0x4,0x78,0x5e,0x4a,
0x9e,0xc2,0x9f,0x7d,0x7b,0xeb,0xef,0x6e,0x4d,0xfe,0x4f,0x2b,0x13,0x68,0x2,0x17,
0x2f,0xe9,0x2f,0x4,0x2e,0x9e,0x3c,0x9,0xc,0x9c,0xb9,0xf3,0x19,0x98,0x0,0x0,
0xf0,0x5b,0xe5,0x8f,0x7f,0xaf,0xfc,0xd5,0x17,0x3e,0xef,0x9f,0xf3,0xfd,0xfc,0xa,
0x59,0x89,0x92,0x6b,0x1,0x6c,0xc3,0x20,0x4,0x0,0x4c,0x20,0xc6,0x94,0x36,0x1,
0xc2,0x0,0x73,0xdc,0x94,0xbd,0x6f,0xa,0x0,0xd0,0x8f,0x3c,0x50,0xd3,0xbf,0xf,
0xdf,0x74,0xb5,0xbe,0x36,0xda,0xde,0xd,0xe1,0x87,0x14,0x0,0x72,0xf6,0xc3,0xe3,
0xf,0x5,0x45,0x9c,0x8d,0xf,0x19,0xcb,0xef,0xc6,0xaa,0xbd,0xc2,0x62,0x25,0x41,
0x1a,0xb1,0x8f,0x8e,0xaf,0x48,0x61,0x71,0xee,0x9b,0xba,0x8c,0xda,0x6a,0x1a,0x43,
0x1a,0x67,0x4a,0xe6,0x9e,0xe,0x3e,0xd8,0x9f,0x3,0x0,0x1e,0xe2,0xf4,0xcf,0xe3,
0xf4,0x6f,0xcf,0x6e,0x3e,0x9f,0xd9,0x78,0x3a,0xbd,0xfe,0x64,0x7a,0xed,0xd1,0xd4,
0xea,0x83,0x89,0x95,0xad,0x89,0xe5,0xfb,0xe3,0x4b,0x9b,0x63,0xa0,0x85,0xb5,0x11,
0x10,0x4e,0xff,0xea,0x20,0x0,0x30,0xbb,0xa,0x0,0xc,0x4c,0xaf,0xf4,0x4f,0xad,
0xf4,0xc2,0xf4,0x83,0x26,0x56,0x7a,0x26,0x56,0xbb,0xc7,0x57,0xbb,0xc6,0x56,0x3b,
0x47,0xd7,0x3a,0xc6,0xd6,0x3b,0x46,0xd7,0xdb,0x47,0x36,0xda,0x40,0xc3,0xa0,0xfb,
0xad,0x63,0x3b,0x6d,0xe3,0x2f,0xda,0xa6,0x37,0xba,0x66,0x96,0xbb,0xa7,0xe7,0xba,
0xa6,0xa7,0x3a,0x27,0x46,0xda,0xba,0x5a,0x2b,0x4a,0x4b,0x53,0x5c,0x27,0xce,0x5d,
0xdb,0xfb,0xf7,0x1,0xbd,0xce,0xf0,0x72,0x3d,0x30,0x40,0x45,0x20,0x60,0x20,0x40,
0xee,0x69,0x60,0xa0,0xb4,0x3d,0xa3,0x7e,0xa8,0x8,0x54,0xd7,0x5f,0x58,0xd7,0x5b,
0x58,0xd3,0x95,0x5f,0xdd,0x91,0x57,0xd5,0x9a,0x57,0xd9,0x9c,0x5b,0xd9,0x98,0x53,
0x51,0x9f,0x5d,0x5e,0x9b,0x5d,0x56,0x9d,0x55,0x56,0x99,0x59,0x52,0x9e,0x51,0x5c,
0x9a,0x5e,0x5c,0x82,0x0,0x14,0x16,0xa6,0xd2,0x0,0xe4,0x26,0x23,0x3,0x59,0x49,
0xb9,0x99,0x89,0x39,0x19,0x89,0x14,0x0,0x59,0x7a,0x0,0x32,0x92,0x34,0xe8,0x0,
0xc4,0x4,0xd2,0x74,0x10,0x81,0x62,0x53,0xb4,0x31,0x8,0x80,0x86,0x6,0x80,0x72,
0x0,0x88,0x40,0x3a,0xd2,0x1,0xe2,0xa3,0xf4,0xc7,0x3f,0x0,0x10,0x11,0x1a,0x47,
0x39,0x40,0x58,0x30,0x5,0x0,0xe4,0x1f,0x12,0x81,0x60,0xfa,0x11,0x80,0x48,0xa,
0x0,0x62,0x2,0xe1,0xfe,0x3e,0x61,0xe8,0x0,0xca,0x50,0xaa,0x0,0x1c,0x1,0x40,
0x49,0x8e,0xff,0x23,0x0,0x78,0x4a,0x49,0xfe,0x31,0xda,0x81,0x1a,0x3,0x70,0x50,
0x0,0x68,0x7,0xa0,0x0,0x20,0x5,0xe0,0x8,0x0,0xbc,0x63,0x0,0x40,0x6,0x8,
0x0,0xa,0x96,0x18,0x0,0x0,0x29,0x99,0x22,0x1f,0xa6,0xc8,0x8f,0x1,0xc,0xb8,
0x6,0x32,0x5c,0x43,0x9c,0x5d,0xc3,0x28,0x13,0x70,0x72,0x8d,0x73,0xa2,0x4c,0x0,
0x18,0x10,0x97,0x3b,0x79,0xec,0x39,0xc9,0x6b,0x39,0x9e,0x31,0x68,0x2,0xf0,0x33,
0x7b,0x9e,0x3e,0x3c,0x4f,0x6f,0x1e,0xa7,0xf8,0x6b,0x30,0x1,0xf3,0xb0,0x53,0x26,
0x57,0xae,0x92,0x8b,0xe1,0x33,0x30,0xfd,0x5f,0x9f,0x3c,0x85,0x4d,0xe0,0xd4,0xa9,
0x3f,0xb8,0xfe,0x8e,0x98,0xc0,0x8f,0xdf,0xf4,0x7e,0xe3,0x23,0xe5,0x5b,0x60,0x2,
0x5f,0xfb,0x7d,0x9,0x6d,0xf8,0x1e,0xdc,0xd,0x93,0x36,0xc,0x65,0x0,0x85,0xc,
0x98,0xd2,0x26,0x40,0x5,0xa1,0xf4,0x7b,0xec,0xe7,0x8,0x0,0x7d,0xe9,0x4b,0xa6,
0xff,0xd9,0xde,0xee,0x93,0x95,0xb1,0xc9,0xb6,0xca,0x5a,0x98,0x7b,0xea,0xea,0x97,
0x7e,0xf6,0xb3,0x5e,0xb,0xc7,0x7f,0x60,0x2d,0x33,0x32,0x46,0x16,0xa2,0x76,0xf,
0xd0,0xba,0x2a,0x13,0x79,0x1e,0x55,0x8e,0xac,0xdd,0xbb,0x9e,0x35,0x2e,0x39,0x3d,
0x9,0xbd,0x2b,0xd,0xeb,0x3b,0x93,0x90,0x7c,0x1e,0x42,0xf8,0xd9,0x9b,0x83,0xe4,
0x3,0x67,0xff,0xe6,0xf3,0xd9,0xcd,0x67,0x33,0xd4,0xd9,0xbf,0xf6,0x70,0x12,0xa6,
0x7f,0x5,0xa6,0x7f,0x63,0x6c,0x71,0x7d,0x74,0x7e,0x79,0x78,0x62,0xac,0x77,0x7e,
0x75,0x78,0x7e,0x75,0x68,0x6e,0x65,0x10,0xa6,0x7f,0x76,0x65,0x60,0x66,0xa5,0x7f,
0x7a,0xa5,0x6f,0x6a,0xb9,0x77,0x72,0x5,0xd4,0x33,0xb1,0xd2,0xd,0x1a,0x3,0x0,
0x56,0x3a,0x47,0x57,0x3b,0x80,0x81,0x91,0xb5,0xf6,0xe1,0xb5,0xb6,0xe1,0xf5,0xd6,
0xa1,0xf5,0x16,0xd4,0x66,0xcb,0xc8,0x6e,0xb,0xc5,0xc0,0xf4,0x62,0xe7,0xf4,0x6c,
0xe7,0xe4,0x44,0xc7,0xd8,0x50,0x4b,0x5b,0x53,0x69,0x71,0x49,0x22,0x77,0xe6,0xb3,
0xeb,0xbb,0x3f,0x8,0xee,0xe4,0xc0,0x1b,0x64,0xb1,0x41,0x21,0x54,0x7,0x0,0x6,
0xa8,0x4f,0xc0,0x20,0x26,0x2a,0xa8,0xb4,0x2b,0xa3,0x6e,0xa8,0xb0,0x6e,0xb0,0x10,
0x18,0xa8,0xe9,0xc9,0xaf,0xee,0xca,0xab,0x6e,0xcf,0xab,0x6c,0xc9,0xad,0x68,0xca,
0x29,0x6f,0xc8,0x2e,0xaf,0xcb,0x2e,0xab,0xc9,0x2a,0xad,0xca,0x2c,0xa9,0xc8,0x0,
0x13,0x28,0x2a,0x49,0x2b,0x2a,0x4e,0x2b,0x2c,0x4a,0x2d,0x2c,0x48,0x2d,0xc8,0x4f,
0xc9,0xcf,0x4d,0xce,0xcb,0x49,0x2,0x13,0xc8,0xcd,0x2,0x0,0x68,0x7,0xc8,0x4a,
0x8d,0xa7,0x1c,0x20,0x3,0x94,0x4,0x0,0xc4,0xa5,0x25,0xa8,0x53,0x69,0x0,0x62,
0x93,0xa9,0x2,0x40,0x1c,0x20,0x51,0x1d,0x99,0xa0,0x7,0x20,0x3e,0x1a,0x1,0x20,
0xc,0xe0,0xf4,0xa3,0x3,0xd0,0x11,0x8,0x1c,0x80,0x1c,0xff,0x21,0x81,0xd1,0x14,
0x0,0xc4,0x1,0xb0,0x0,0xe0,0xf4,0xfb,0xc0,0xf4,0x43,0xfe,0x21,0x11,0xe8,0x78,
0x0,0xa8,0xfc,0x13,0x40,0x0,0xf0,0x27,0x1d,0xc0,0x8f,0xac,0x80,0x28,0x0,0xc8,
0xd,0x80,0x7,0xb9,0x1,0xa0,0xa,0xc0,0x4b,0xd,0xf8,0x20,0xff,0x10,0x0,0x3c,
0x40,0x2,0x19,0xe8,0xd0,0xf1,0xcf,0xf3,0x0,0x7,0x40,0x13,0xe0,0xb8,0xa3,0x9,
0xb0,0xdd,0x40,0xc8,0x0,0x4b,0xec,0x9,0x0,0x30,0xc5,0xde,0x4c,0x91,0xa,0x18,
0x60,0x0,0x3,0xae,0x1,0xc,0xd7,0x60,0x67,0xbd,0x9,0x38,0x9,0x63,0x9d,0x84,
0x1a,0x27,0x21,0x31,0x1,0x57,0x30,0x81,0x5,0x27,0xe9,0x7d,0x67,0xf8,0x75,0x19,
0xcf,0x48,0x2e,0x98,0x80,0xa7,0x1f,0xcf,0x13,0x4c,0xc0,0x87,0x73,0x77,0xed,0x1f,
0x6e,0x2c,0xfc,0xbd,0x95,0xd9,0xad,0x1b,0x17,0x2f,0x52,0x41,0x88,0x4e,0x41,0x27,
0x4f,0x9d,0xbb,0xfe,0x5,0xbc,0x2a,0x9,0x0,0x50,0x26,0xf0,0xa9,0xea,0xdd,0xb3,
0xbe,0x9f,0x5d,0xf6,0x3b,0xd,0x2b,0x51,0xb3,0x60,0x68,0xc3,0x77,0x20,0x8,0x19,
0x0,0x70,0x8c,0x31,0x75,0x8c,0x35,0x75,0x8c,0xbb,0xe7,0xa8,0xbd,0xe7,0x18,0x7f,
0x8f,0xd1,0x7e,0x8f,0x72,0x0,0xea,0xec,0x7f,0x6,0xc7,0xff,0xb3,0xad,0x8d,0x89,
0xee,0x3e,0x6a,0xfb,0x9,0x37,0x0,0x90,0x7c,0xe0,0x6,0x80,0x6c,0x3f,0xaf,0x99,
0x3f,0xfa,0xdf,0x5a,0x9d,0x4f,0x58,0x8c,0x24,0x28,0x4e,0xec,0x1b,0xef,0xe2,0x95,
0xc8,0xe6,0xcf,0x5a,0x70,0x96,0x2c,0xc2,0x2a,0x94,0x95,0xa3,0xb9,0x13,0xf,0xba,
0xe1,0xd4,0xa7,0xc2,0xcf,0xd6,0xee,0x3c,0x2,0xb0,0xd,0xe1,0x67,0x6,0xce,0xfe,
0xf5,0xc7,0xd3,0x30,0xfd,0x8,0xc0,0xfd,0xf1,0xe5,0x4d,0x4,0x60,0x69,0x7d,0x74,
0x72,0xbc,0xb7,0xa5,0xbc,0xb2,0xb7,0xaf,0x69,0x8e,0x2,0x80,0x9e,0x7e,0x38,0xfe,
0xfb,0xd0,0x1,0x8,0x0,0xe3,0xcb,0x5d,0x63,0xcb,0x9d,0x30,0xfd,0xa0,0x91,0x95,
0x76,0x60,0x60,0x64,0xb5,0x6d,0x78,0xb5,0x75,0x78,0xad,0x75,0x68,0xad,0x5,0x5,
0xc,0xdc,0x6f,0x1e,0xde,0x6b,0x1e,0x7d,0xde,0x3a,0xb5,0xda,0x39,0xb5,0xd0,0x31,
0x39,0xd3,0x31,0x9,0xdf,0x92,0x32,0xd0,0xdc,0xde,0x5c,0x56,0x50,0x12,0xcf,0x9c,
0xfb,0xe0,0xc6,0xce,0x9f,0x85,0x37,0xb,0xd3,0xe3,0x34,0xb0,0x14,0xa2,0xa6,0x1f,
0x46,0x3f,0x10,0xe5,0x5,0x6e,0x10,0x13,0x1d,0x54,0xd6,0x99,0x59,0x3b,0x90,0x5f,
0x37,0x50,0x58,0xd3,0x97,0x5f,0xdd,0x9d,0x57,0xd5,0x99,0x5b,0xd9,0x96,0x53,0xd9,
0x92,0x53,0xde,0x98,0x5,0xc,0x94,0xd6,0x66,0x96,0x56,0x67,0x96,0x54,0x66,0xc0,
0xab,0x36,0x60,0x2,0xc0,0x0,0x0,0x50,0x50,0x88,0x0,0xe4,0xe5,0x25,0xe7,0xe5,
0x26,0xe5,0x66,0x27,0x22,0x0,0x99,0x9,0xd9,0x19,0xba,0xec,0x74,0x5d,0x56,0x5a,
0x7c,0x66,0x2a,0x99,0xfe,0x64,0x4d,0x7a,0x52,0x1c,0x5,0x0,0x28,0x5,0x1c,0x20,
0x3e,0x36,0x59,0x8b,0xe,0x90,0x14,0x7,0xd3,0x4f,0x8e,0x7f,0x3,0x0,0x6,0x7,
0x20,0x0,0xe0,0xf4,0x87,0xe3,0xf1,0xaf,0xe,0x33,0x0,0x10,0x60,0x0,0x0,0x8f,
0xff,0x40,0xea,0xf8,0x27,0x0,0xbc,0xe4,0x0,0x58,0x0,0x54,0x5e,0x98,0x7f,0xa0,
0x0,0x1c,0x38,0x80,0x8c,0x0,0x20,0x45,0x0,0x68,0x7,0xa0,0x1a,0xf0,0x21,0x0,
0xc8,0xfe,0x47,0x4c,0x17,0x0,0x9c,0xfe,0x83,0x1d,0x28,0x5,0x0,0x4e,0xbf,0x87,
0x40,0xea,0xc1,0x27,0xa2,0xf2,0xf,0xd,0x80,0xbb,0x84,0x0,0x20,0x35,0x2,0x0,
0x19,0x60,0x2,0x3,0x22,0x30,0x1,0x15,0x43,0xe4,0xcb,0x70,0x45,0x13,0x70,0xa6,
0x4c,0x40,0x18,0xe9,0x24,0x8c,0x71,0x12,0xaa,0x9d,0x84,0x5a,0x47,0xa1,0xce,0x51,
0x98,0xe0,0x28,0x2a,0x75,0xf4,0xd8,0x75,0x92,0x35,0xb2,0x15,0x31,0x5c,0x45,0x28,
0xd7,0x33,0x80,0xeb,0xe9,0xc3,0xf5,0xf4,0xe6,0xf2,0x73,0xaf,0x5e,0xd9,0xfb,0xd7,
0x66,0xda,0xcf,0x4c,0xae,0x5e,0x85,0x57,0x25,0xbf,0xa6,0x16,0x41,0x70,0x21,0x70,
0xf2,0x14,0xb8,0xc1,0x27,0xdc,0x77,0x68,0x13,0x80,0x95,0xa8,0xf2,0x77,0xb0,0x12,
0x85,0x77,0x26,0xa9,0x36,0xc,0x77,0xc3,0x76,0x61,0x77,0x89,0x9,0x98,0x3a,0x46,
0x99,0x3a,0x46,0x9b,0x22,0x3,0xea,0x7b,0x8e,0x1a,0xc2,0x40,0x2,0xd,0x0,0xc5,
0xc0,0xb3,0xfd,0xbd,0xa7,0xeb,0x53,0x33,0x70,0xf9,0x45,0x56,0x9f,0x78,0xfb,0x4b,
0x3d,0xfe,0x59,0x5e,0x91,0x73,0x7b,0xe7,0x3f,0x29,0xba,0xee,0x44,0x46,0xcb,0x43,
0x62,0xdc,0x3,0xe2,0x5c,0x55,0x3a,0x9e,0x34,0xdb,0x99,0xb9,0x73,0xd7,0xbd,0x85,
0x99,0xd4,0x12,0xd5,0xb1,0x50,0xbd,0xfc,0x7c,0x14,0xce,0x7e,0xd0,0x16,0x39,0xfe,
0x37,0xc9,0xf4,0x93,0xf0,0x3,0xc7,0xff,0x14,0x4c,0x3f,0xe6,0x1f,0x2,0x0,0x68,
0x71,0x7d,0xa4,0xbf,0xad,0x5,0xde,0x9a,0xcf,0x4d,0x4e,0x19,0x1c,0x69,0x83,0x8,
0x84,0xe,0x0,0xf9,0x67,0x95,0x6,0x80,0x1c,0xff,0x3d,0xe3,0x2b,0x8,0xc0,0xe8,
0x72,0x7,0x68,0x64,0xb9,0x7d,0x78,0xb9,0x6d,0x68,0xa5,0x75,0x78,0xb5,0x6d,0x68,
0xb5,0x75,0x70,0xb5,0x65,0x60,0xb5,0x79,0x60,0xb5,0x9,0x34,0x78,0xbf,0x69,0x68,
0xaf,0x69,0xe4,0x59,0xcb,0xc4,0x4a,0xfb,0xe4,0x7c,0xfb,0xc4,0x74,0xfb,0xf8,0x58,
0xdb,0x50,0x5f,0x43,0x4b,0x43,0x71,0x66,0x41,0x94,0xe3,0xd2,0xef,0x6e,0xee,0xfc,
0x45,0x54,0x83,0x3b,0xbc,0x41,0x6,0x8f,0x48,0x50,0x35,0x20,0xc8,0xcb,0x1b,0x3f,
0x3d,0xbd,0x3,0x14,0x5e,0xb1,0x31,0x41,0x25,0x9d,0xe9,0xb5,0x83,0xf9,0x35,0x3,
0xf9,0xd5,0xbd,0x79,0x55,0xdd,0xb9,0x95,0x1d,0xb9,0x95,0xad,0x39,0x15,0xcd,0xd9,
0x65,0x8d,0x59,0xa5,0x75,0x99,0xc0,0x40,0x49,0x75,0x6,0xbc,0x67,0x53,0x54,0x96,
0x56,0x54,0x92,0x5a,0x58,0x9c,0x5a,0x50,0x94,0x92,0x5f,0x90,0x9c,0x9f,0x4f,0x0,
0xc8,0x49,0x4,0x6,0x28,0x0,0xb2,0xd2,0xe3,0x69,0x0,0x52,0x34,0x94,0x3,0xa4,
0x25,0xc6,0xa5,0xa2,0x3,0xe0,0xf4,0xa7,0xc4,0xc7,0x24,0x6b,0xa3,0xf,0x3,0x10,
0x41,0x22,0x50,0x78,0x7c,0x74,0x98,0x96,0x3a,0xfe,0x11,0x0,0x72,0xfc,0x23,0x0,
0xa4,0x0,0x84,0xe2,0xf1,0x1f,0x13,0x82,0x0,0xe0,0xf1,0x1f,0xe4,0x4f,0x0,0xf0,
0x3b,0x0,0x0,0x8e,0x7f,0x3f,0x15,0xe6,0x1f,0x5f,0x25,0xe6,0x1f,0x94,0x1,0x80,
0xc3,0xf9,0xe7,0xdb,0x0,0xa0,0x8e,0x7f,0xda,0x1,0x8c,0x1,0x38,0x54,0x0,0xe,
0x3,0x20,0x1,0x0,0x50,0x5c,0xf,0x90,0x84,0x7b,0x4,0x0,0xb1,0x9c,0x25,0x26,
0x26,0x20,0x2,0x0,0xd0,0x4,0x18,0xae,0x3e,0xc,0x57,0x3f,0x67,0xd7,0x0,0x67,
0xd7,0x20,0x67,0x61,0xa8,0x93,0x30,0xc2,0x49,0x18,0x45,0x4c,0x20,0xce,0x51,0x18,
0x4f,0x33,0x20,0x9e,0x75,0xf4,0x78,0xe0,0xac,0xd0,0x71,0x15,0x11,0x5c,0x5,0xfc,
0xe6,0xb6,0x2f,0x2,0xa0,0x50,0x72,0xee,0x2d,0xfe,0x1f,0x78,0x4c,0xda,0xd2,0xf2,
0xc6,0xcd,0xaf,0xbf,0x86,0x26,0x40,0x99,0x0,0xea,0xe4,0xa9,0xf3,0x97,0x4e,0xbc,
0xed,0xfd,0xb3,0xdf,0xf9,0x60,0x13,0x78,0x57,0xf9,0x4b,0x30,0x1,0x5c,0x89,0xfa,
0x9d,0x82,0x7,0x84,0xa8,0x27,0xa5,0xe1,0x95,0x31,0x4,0xc0,0xc0,0x40,0xec,0x3d,
0x3,0x3,0xe0,0x0,0xd4,0xd9,0x8f,0x7a,0xf6,0x68,0x73,0xa6,0x6f,0x8,0xb6,0x9f,
0x98,0x7f,0x60,0xf7,0x4f,0x96,0x3f,0xd5,0x5,0xc5,0x41,0xc3,0xcc,0x9b,0x2f,0xfe,
0x4a,0x93,0xa6,0xc,0x8b,0x92,0x4,0xc5,0x88,0x7d,0x35,0x2e,0x5e,0x3a,0x8e,0xb0,
0xd7,0x9a,0xf9,0xc8,0x24,0xb0,0x4c,0x5e,0x3c,0x90,0x3e,0xb4,0xde,0xba,0xb9,0x33,
0x4d,0x3,0xb0,0x4b,0x85,0x9f,0x19,0xc,0x3f,0x4f,0x8c,0xbb,0x2f,0x14,0x0,0x3a,
0xfd,0xcf,0x2d,0xc,0x76,0x54,0xd5,0xe6,0x24,0x26,0x67,0x68,0x74,0xf9,0x69,0xa9,
0xa3,0xd3,0x9d,0xb0,0xff,0x99,0x41,0xf5,0x4f,0x41,0xfd,0x5d,0x83,0xf4,0xdf,0x8d,
0xe9,0x1f,0x0,0x80,0xf0,0x43,0x3,0xd0,0x81,0x0,0x2c,0xb7,0x2,0x3,0xa0,0x81,
0x95,0xe6,0x81,0x95,0xa6,0xfe,0x15,0x4,0xa0,0x7f,0xa5,0x71,0xe0,0x41,0xe3,0xe0,
0x5e,0xc3,0xc8,0xd3,0xe6,0x89,0xa5,0xf6,0xf1,0xd9,0xd6,0xb1,0xc9,0xd6,0xb1,0xd1,
0xd6,0x81,0xde,0xfa,0xc6,0xba,0x82,0xcc,0xa2,0x28,0xbb,0xd5,0x5f,0xdc,0xda,0xfe,
0xab,0xe8,0x6a,0x29,0x5c,0x12,0xc3,0xed,0x18,0x35,0xfa,0x38,0xfd,0x72,0x4f,0x0,
0x0,0x3e,0x63,0xe3,0x82,0x8a,0x3b,0xd3,0x6a,0x6,0xf2,0xaa,0xfb,0xf3,0xaa,0x7a,
0x72,0x2b,0xbb,0x72,0x2a,0xdb,0x73,0xca,0x5b,0xb3,0xe0,0x21,0xa2,0xd2,0x86,0x4c,
0x78,0xac,0x1a,0x1,0xa8,0x4c,0x2f,0x2a,0x4f,0x2b,0x2c,0x4d,0x2d,0x28,0x49,0x29,
0x28,0x4e,0xc9,0x2f,0x4c,0xce,0x3,0x0,0xf2,0x92,0x72,0x73,0x13,0x73,0xb2,0x13,
0xb3,0xb3,0x8,0x0,0x19,0xf1,0x99,0x94,0x3,0xa4,0x68,0xd2,0x89,0x3,0x0,0x0,
0x18,0x81,0x12,0x62,0x53,0x74,0xb1,0xc9,0x4,0x80,0x24,0x4d,0x74,0x22,0x3a,0x40,
0x64,0x2,0x89,0x40,0x3a,0x0,0x20,0x26,0xc2,0x0,0x0,0x89,0x40,0x8,0x80,0x9a,
0x2,0x20,0x2c,0x28,0x6,0x0,0x8,0xd,0x8c,0x46,0x0,0x48,0xfe,0x21,0x0,0x44,
0x10,0x7,0x38,0x38,0xfe,0x1,0x0,0x3f,0x0,0xe0,0x60,0xfa,0xf5,0xe,0xa0,0xcf,
0x3f,0x18,0x81,0xd0,0x1,0x8c,0x8e,0xff,0x23,0x3b,0x50,0x1a,0x80,0x97,0x1d,0x40,
0xf,0x80,0xf0,0x20,0xff,0xe8,0x1d,0x80,0x2,0x0,0xa7,0xdf,0x0,0x80,0x84,0xe3,
0x6,0xe,0x40,0x4c,0x40,0x2c,0x63,0x11,0x6,0x98,0x22,0x4f,0x26,0x32,0xa0,0x64,
0xb8,0x2,0x3,0xbe,0xce,0xae,0xfe,0xce,0xc2,0x40,0x67,0x61,0x88,0x93,0x30,0xcc,
0x89,0x98,0x80,0xa3,0x50,0xed,0x68,0x30,0x1,0xd7,0x22,0x47,0xf7,0x5d,0x47,0x69,
0xb,0x8b,0x32,0x1,0xf8,0xd1,0x79,0x85,0x8a,0xab,0xf0,0xe6,0xba,0xa4,0xdd,0x81,
0x26,0x70,0x2f,0xe3,0xc3,0x7b,0xd7,0xae,0x41,0x13,0x80,0xb3,0x9f,0x2,0x0,0xff,
0x38,0x79,0xea,0x73,0xe7,0xf7,0x29,0x13,0xf8,0x9d,0xf2,0xc7,0x1f,0x28,0x7f,0x7b,
0xc2,0x7,0x56,0xa2,0x9f,0x83,0x9,0xd0,0x6d,0x38,0xfc,0xe,0x4e,0xff,0x81,0x9,
0xdc,0x73,0x50,0xdf,0x73,0x20,0x41,0x88,0x2,0x80,0xce,0x3f,0x5b,0xf3,0xb,0xf0,
0xe6,0x17,0x9e,0xfd,0xe4,0xea,0x17,0x0,0x80,0xfd,0x4f,0x75,0x71,0x91,0xd5,0x93,
0x7f,0x16,0x4e,0x9c,0x8a,0x8e,0x56,0x84,0x44,0xb9,0xc3,0x57,0xbc,0xab,0xb4,0x7c,
0x79,0x32,0x13,0x7f,0xbb,0xaf,0xdf,0x4e,0x53,0x1f,0xd2,0x30,0x59,0x32,0xf7,0x64,
0x10,0xe,0x7e,0x92,0xfe,0x31,0xfc,0x6c,0x2,0x0,0xe8,0x0,0xd3,0xe0,0x0,0x6b,
0x4f,0xa6,0x56,0x1f,0x4d,0xae,0x3c,0x84,0xd5,0xe7,0x38,0x8,0x96,0x3f,0x4b,0x9b,
0xa3,0x13,0xa3,0x3d,0xd0,0x2e,0x32,0xb5,0xf0,0x45,0x88,0xba,0xc,0xad,0xae,0x38,
0x27,0x73,0x62,0xb1,0x67,0x7a,0xbd,0x7f,0xa,0xb7,0x9f,0xf4,0xf2,0x67,0x9c,0xd4,
0xdf,0x51,0x0,0x60,0x85,0x1c,0xff,0x4b,0xed,0x43,0x4b,0x6d,0xc0,0xc0,0xe0,0x72,
0xcb,0x0,0x68,0xa5,0xb9,0x7f,0x19,0x47,0x1f,0xd4,0x7,0x5a,0x6e,0xe8,0x7f,0xd0,
0x30,0x0,0xc,0x3c,0x6a,0x1e,0x5b,0x6c,0x1d,0x9d,0x69,0x19,0x9b,0x68,0x1d,0x1d,
0x69,0xee,0xef,0xa9,0x83,0x4b,0xe2,0x94,0xa2,0x10,0xab,0x8d,0x1f,0xc3,0x33,0x73,
0xea,0x32,0x25,0x5c,0x12,0xc3,0xd5,0x58,0x90,0x97,0x32,0x50,0xe1,0xe5,0x2f,0x53,
0xf8,0xc9,0xe4,0xf0,0x9,0x71,0x28,0x56,0x83,0x3e,0x50,0xd5,0x97,0xb,0xaa,0xec,
0xc9,0xa9,0xe8,0xcc,0x29,0x6f,0xcb,0x2a,0x6b,0xc9,0x2a,0x45,0x6,0x32,0x4a,0x6a,
0xd3,0x8b,0xab,0xd3,0x8b,0x2a,0xd3,0xa,0xcb,0x53,0xb,0x80,0x1,0xa,0x80,0x82,
0x24,0x1a,0x80,0x9c,0x84,0x9c,0xec,0x84,0xec,0x4c,0x4,0x0,0x4c,0x20,0x23,0x4d,
0x9b,0x91,0xaa,0x5,0x0,0xd2,0x10,0x0,0x75,0x2a,0xe8,0x30,0x0,0x49,0x9a,0xa8,
0xc4,0x38,0x4,0x40,0x17,0x1b,0x1,0x8a,0x8f,0x39,0xe4,0x0,0x71,0x8,0x40,0xf0,
0x21,0x0,0xa0,0x0,0xe8,0x1,0x88,0xc,0x22,0xc7,0x3f,0x5,0x40,0x0,0xe4,0x1f,
0x55,0x18,0x8,0xa7,0xdf,0x0,0x80,0x37,0x4e,0xbf,0x8a,0xdc,0x1,0x93,0x1d,0xe8,
0x41,0x1,0x38,0xc,0x80,0xf,0xb9,0x4,0xc0,0x2,0x20,0xa7,0xb,0x0,0xd9,0xff,
0x18,0xed,0x40,0x49,0x4,0x3a,0x68,0xc0,0x7,0xc7,0x3f,0x1d,0x81,0xe,0x1,0xe0,
0xc1,0x75,0xf7,0xe0,0x80,0x9,0xb8,0x49,0x8,0x0,0x52,0xd6,0x1,0x0,0xc0,0x80,
0x17,0xd3,0xd5,0x9b,0xe1,0xa,0xc,0xf8,0x38,0xb,0xfd,0x9c,0x85,0x1,0xce,0xc2,
0x20,0x27,0x34,0x81,0x70,0x27,0x97,0x28,0x47,0x97,0x58,0x47,0x17,0x8d,0xa3,0x8b,
0xc1,0x4,0xa6,0x1d,0x3d,0x1e,0x3b,0xc9,0x13,0x38,0xf2,0x48,0xae,0x3c,0x98,0xab,
0xf0,0x3,0x7,0x40,0x6,0xcc,0xa7,0x7f,0xa,0x8f,0x49,0x5b,0xda,0x5d,0xbf,0x71,
0x11,0x4c,0x80,0xca,0x3f,0x38,0xfd,0xa0,0x8b,0x17,0x4e,0xbe,0xe3,0xf9,0xb,0x34,
0x1,0xd5,0x8f,0xdf,0x56,0xfe,0xfc,0x13,0xd5,0x3b,0xa7,0x7d,0x3f,0x81,0x95,0x28,
0x69,0xc3,0x57,0xa8,0x57,0xc6,0xc,0xc,0x38,0x44,0xdf,0x73,0x88,0x21,0xc,0x68,
0x10,0x0,0xea,0xf8,0x7f,0xa,0x5f,0xf9,0x36,0x3b,0x30,0xdc,0x5c,0x5e,0x45,0x3d,
0xf8,0x40,0x45,0x7f,0x50,0x62,0x77,0xc0,0xd5,0xbd,0x7f,0x17,0x51,0xe0,0x1e,0x16,
0x9,0xc7,0xbf,0x9b,0x9f,0x5a,0x8,0xf,0xf4,0x8b,0xeb,0xec,0x18,0x3b,0x77,0x3c,
0xcb,0x5c,0x72,0xbb,0x13,0x7b,0x96,0xea,0xd7,0x5e,0x4c,0xe2,0xf4,0x43,0xfa,0x27,
0xab,0xcf,0xcd,0x6d,0x58,0xfc,0xcf,0xac,0x3f,0x9b,0x22,0xd7,0x5e,0x53,0x70,0xed,
0xb5,0x42,0xae,0xbd,0x96,0x1f,0x8e,0x2f,0x3d,0x18,0x5d,0xbc,0x3f,0xda,0xdf,0xda,
0x2,0xdf,0x99,0x95,0x1,0xdf,0xfc,0x1c,0xa7,0x4d,0x8f,0x8b,0x4f,0x55,0x6b,0x2a,
0xca,0xf2,0x60,0xf7,0x3f,0xbd,0xd9,0x37,0x9,0xbb,0xff,0x4d,0xdc,0xfd,0x8f,0xe3,
0xf6,0x93,0xec,0x7f,0x0,0x80,0x15,0x92,0x7f,0x96,0x40,0xad,0x83,0x4b,0x2d,0x3,
0xa0,0x65,0x4,0xa0,0x6f,0xb9,0xb1,0x77,0xb9,0x81,0xa8,0x1e,0xd4,0xf7,0xb0,0xbe,
0x7f,0xbf,0x6e,0xe8,0x61,0xd3,0xe8,0x42,0xeb,0xe8,0x74,0xcb,0xe8,0x78,0xcb,0xc8,
0x70,0x73,0x2f,0xfc,0x38,0x70,0x55,0x76,0x62,0x49,0x80,0xf9,0xd6,0xf,0x4d,0x9e,
0xfd,0xbd,0xa6,0xd8,0x17,0xde,0x9e,0x81,0x9b,0x1,0xea,0xec,0xf7,0x93,0x29,0xc,
0x9f,0xea,0xf8,0x60,0xf0,0x81,0x8a,0xde,0x6c,0x60,0xa0,0xa2,0x3b,0xa7,0xbc,0x23,
0xab,0xac,0x2d,0xab,0xb4,0x39,0xb3,0xa4,0x31,0xa3,0xb8,0x3e,0xbd,0xb8,0x26,0xbd,
0xa8,0x3a,0xad,0xb0,0x22,0xb5,0xa0,0x3c,0x25,0xbf,0x24,0x25,0xbf,0x38,0x25,0xaf,
0x30,0x29,0x37,0x3f,0x29,0x7,0x1c,0x20,0x7,0x4c,0x20,0x21,0x2b,0x4b,0x97,0x9,
0xe,0x60,0x0,0x20,0x25,0x2e,0x2d,0x39,0x2e,0x2d,0xc9,0x0,0x40,0xc,0x38,0x40,
0x12,0x71,0x80,0x43,0x0,0xe0,0xf4,0x13,0x0,0xa2,0xc3,0x34,0x51,0x10,0x81,0x42,
0x0,0x0,0x9c,0xfe,0xf0,0x60,0x38,0xfe,0x5f,0x76,0x80,0x43,0x0,0x60,0x1,0x20,
0xf9,0x87,0x0,0x10,0x42,0x1c,0x20,0x98,0xca,0x3f,0x4,0x0,0xaa,0x0,0xbc,0xe,
0x0,0x14,0x3,0x14,0x0,0x54,0xfe,0xc1,0x4b,0x0,0x63,0x0,0xb0,0xfe,0x1e,0x29,
0x0,0xfc,0x57,0x2,0x20,0x61,0x8b,0x29,0x0,0x64,0x2c,0x91,0x9c,0x29,0x42,0x13,
0x60,0xb8,0x7a,0x11,0x0,0x54,0xce,0x42,0x5f,0x67,0x21,0x9a,0x80,0x93,0x30,0xd8,
0xc9,0x25,0xcc,0xc9,0x25,0xd2,0xd1,0x25,0xc6,0xd1,0x45,0x4d,0x31,0xe0,0xe0,0xa2,
0x73,0x10,0xe6,0x3b,0xb8,0xef,0x38,0x4a,0xdb,0x99,0xf2,0x58,0x8e,0x3c,0x8c,0x23,
0xf,0xe4,0xc8,0x7d,0x38,0x72,0x6f,0x8e,0x6b,0x82,0x19,0xbc,0x2b,0x63,0x52,0xf4,
0xb6,0x9,0x9a,0xc0,0x39,0x43,0x7,0x80,0x1a,0x0,0x24,0x9c,0xb0,0xf9,0x90,0x2,
0x0,0x82,0xd0,0x7,0xca,0xdf,0x80,0x9,0xe0,0x4a,0xd4,0xef,0xf4,0xad,0x0,0x68,
0xc3,0xd7,0xac,0x43,0x6f,0x43,0x10,0x22,0xc,0xdc,0x73,0x88,0x22,0x0,0xc4,0xa2,
0x9,0x50,0x0,0x3c,0x5,0x6d,0x2d,0x2e,0xd,0x34,0xb7,0xc1,0xf1,0xf,0x99,0x7,
0x92,0xf,0x9e,0xfd,0xf9,0x45,0x64,0xfb,0xf9,0x7,0xa7,0xb5,0x37,0x63,0x63,0xbd,
0x43,0x22,0xdd,0x3,0x62,0x44,0x2a,0x8d,0x40,0x91,0xc0,0xe2,0x2e,0x99,0x71,0x67,
0x2d,0x22,0x2a,0x7d,0xaa,0x46,0xf3,0x26,0x1f,0xf6,0xde,0xdf,0x83,0x27,0x1d,0xe0,
0xde,0x77,0xe1,0xfe,0xee,0xdc,0xe6,0xce,0xc,0xee,0xfe,0xb7,0x1,0x80,0xe9,0xb5,
0xa7,0x93,0x6b,0x4f,0xa7,0x56,0x9f,0xc0,0x53,0xf,0xe3,0x2b,0x8f,0xc7,0x97,0x1e,
0x8d,0x2d,0x3d,0x1a,0x9d,0x59,0x1e,0x80,0x4b,0x86,0xdc,0xa4,0x14,0x98,0x7b,0x83,
0xd2,0x35,0xf1,0xf5,0xd,0x25,0xd3,0xf7,0xfb,0xa6,0xee,0xf7,0x82,0x26,0xef,0xf7,
0x8c,0x6f,0x74,0x8d,0xae,0xe3,0xf6,0x73,0x4,0xba,0x2f,0x5,0x0,0x32,0xd0,0x8a,
0xd3,0xbf,0xd4,0xdc,0xbf,0xd4,0xdc,0xb7,0xd4,0xd4,0xb7,0xd4,0xd8,0xbb,0x84,0x0,
0x0,0x84,0x3d,0x4b,0x75,0x3d,0xcb,0x75,0x3d,0xf,0x6b,0xfb,0xf6,0xea,0x86,0xb6,
0x9a,0x46,0xe6,0x9a,0x87,0x27,0x9b,0x87,0xc7,0x9a,0x86,0x87,0x9a,0xba,0x3b,0xaa,
0xaa,0x2b,0xb2,0xe2,0x4b,0x7c,0xee,0x3d,0xfa,0xef,0xa6,0x8f,0xff,0xa7,0x26,0xd7,
0x1f,0x2e,0xc8,0x80,0x1,0x7f,0xb9,0xa7,0xbf,0x5c,0xe1,0x2b,0x91,0xf9,0x49,0xe5,
0xf0,0x7,0xb8,0x41,0x2c,0x61,0xa0,0xb2,0x2f,0xa7,0xa2,0x37,0xa7,0xa2,0x3b,0x1b,
0xee,0xa,0x4a,0x5b,0x33,0x4b,0x9a,0x33,0x4a,0x1a,0xd3,0x8b,0xeb,0xd2,0x8a,0x6a,
0xd2,0xa,0x2b,0x9,0x0,0xa5,0x0,0x40,0x72,0x5e,0x51,0x52,0x6e,0x41,0x62,0x6e,
0x7e,0x62,0x4e,0x6e,0x42,0x76,0xb6,0xe,0x94,0x99,0x19,0xf,0xc,0x64,0xa4,0x6b,
0xd3,0x53,0x35,0xe9,0x29,0x1a,0x0,0x20,0x15,0x1,0x88,0x4d,0x1,0x7,0x48,0x88,
0x49,0xd6,0x51,0x0,0x44,0x25,0x6a,0xa2,0x12,0xd0,0x1,0xf0,0xf8,0xd7,0x1,0x0,
0x31,0xe1,0x30,0xfd,0xd0,0x1,0x8,0x0,0xa1,0x8,0x40,0x84,0x1,0x0,0x7d,0xfe,
0x9,0x9,0x88,0x22,0x11,0xc8,0x8,0x0,0xaa,0x1,0xbf,0x1e,0x0,0xde,0x64,0x5,
0xf4,0x7a,0xe,0x70,0x78,0xfa,0xf5,0xe,0xf0,0x12,0x0,0x12,0x77,0xbe,0xc4,0xfd,
0x20,0x2,0xe1,0xf1,0x4f,0x84,0xe,0x80,0x0,0xd0,0xc,0x20,0x0,0x72,0xa6,0xab,
0x82,0xe1,0xa,0xc,0x78,0x33,0x84,0x4a,0x67,0x21,0x6d,0x2,0x4e,0x2e,0x41,0x4e,
0x2e,0xa1,0x4e,0x2e,0xe1,0x8e,0xb4,0x9,0xc4,0x39,0xb8,0x68,0x11,0x0,0x90,0x68,
0xd2,0xc1,0xfd,0xa9,0x13,0xfe,0xc0,0x4c,0x14,0x47,0x1e,0xc2,0x91,0xfb,0x71,0xe4,
0x4a,0x8e,0xdc,0x8b,0x63,0x39,0xf2,0xab,0xab,0xcf,0x7e,0x60,0xc1,0xb8,0x7a,0xf3,
0xeb,0x4b,0xd4,0x1a,0x94,0x9a,0xfe,0xb,0x5f,0x9d,0xbc,0x70,0xe6,0xab,0xf7,0xa4,
0xbf,0xfc,0x9d,0xcf,0x8f,0x81,0x81,0xb7,0x94,0x3f,0xfb,0x48,0xf5,0xd6,0x49,0x5c,
0x89,0x7e,0x5,0x41,0x8,0x5e,0x97,0x1,0x13,0x80,0x6b,0x1,0xd8,0x8,0x39,0x0,
0x0,0x20,0xda,0x4,0x4c,0x0,0x0,0x98,0xfe,0x27,0x3b,0x2f,0x1e,0x2e,0xc,0x8f,
0xc1,0x17,0x1e,0x52,0x0,0x54,0xc1,0xb7,0x7c,0xe6,0x17,0x2,0x3,0xb9,0xf5,0x3a,
0xd8,0x7e,0xfa,0xd5,0x3a,0xe1,0xf1,0x1f,0x25,0xf6,0x8b,0x15,0x7a,0x6b,0xb9,0x1e,
0x5,0x8e,0x8c,0xbd,0x3b,0x92,0x7a,0x76,0x6a,0x5b,0x6c,0xdb,0x7c,0xe5,0xf2,0xf3,
0x31,0xec,0xbe,0xd4,0xf1,0xf,0x0,0xbc,0x98,0x59,0xdf,0x9e,0xde,0xd8,0x9e,0x5e,
0x7f,0x3e,0xbd,0xfa,0x6c,0x12,0xb4,0xf2,0x74,0x62,0xf9,0xe9,0xf8,0xf2,0xd3,0xb1,
0xa5,0x27,0xa3,0x4b,0x8f,0x47,0xc7,0x47,0xbb,0xe1,0xb1,0x6a,0x48,0x3e,0x29,0xb1,
0x71,0x44,0x9a,0xc4,0xa8,0xd8,0xe4,0x18,0xf8,0xd2,0xa8,0xf8,0x96,0xee,0xca,0xc9,
0x2d,0x78,0xf8,0xa7,0x77,0x62,0xab,0x7b,0xfc,0x7e,0x17,0xdc,0x7c,0x8d,0xae,0xc3,
0xea,0xb3,0x63,0x78,0xb5,0x7d,0x68,0x5,0xc2,0xf,0x75,0xfc,0x37,0xf7,0x2f,0x82,
0x9a,0xfa,0xf5,0x0,0x90,0xe9,0xaf,0xef,0x5e,0xaa,0xa5,0xd4,0xf3,0xb8,0xb6,0x77,
0xaf,0x76,0x68,0xb3,0x71,0x78,0xae,0x79,0x68,0xb2,0x69,0x68,0xb4,0x71,0x70,0xa0,
0xa1,0xa3,0xad,0xbc,0xb2,0x2c,0x23,0xb6,0x54,0x71,0xf7,0xf1,0xdf,0x9a,0x3f,0xfa,
0x3f,0xba,0x6c,0xf8,0xbe,0x9d,0x30,0x28,0xc4,0x10,0x7e,0x60,0xf4,0x7d,0x24,0x32,
0x5f,0xa9,0xc,0x48,0xf0,0x95,0xca,0xe3,0x12,0x42,0xa,0x3b,0x53,0xc0,0x7,0x40,
0x65,0x9d,0x59,0xa5,0xed,0x99,0x25,0x2d,0x19,0xc5,0x4d,0xe9,0x45,0xd,0x69,0x45,
0xb5,0x69,0x85,0xd5,0xa9,0x5,0x95,0x29,0xf9,0xe5,0xc9,0x79,0xa5,0xc9,0xb9,0x0,
0x40,0x61,0x62,0x4e,0x7e,0x62,0x76,0x5e,0x42,0x76,0x8e,0x2e,0x2b,0x3b,0x3e,0x2b,
0xb,0x0,0xd0,0x66,0xa4,0x69,0x0,0x80,0x34,0x70,0x80,0x14,0x2,0x40,0x52,0x6c,
0x4a,0x62,0x2c,0x4c,0x7f,0xb2,0x2e,0x3a,0x29,0x3e,0x3a,0x51,0x7b,0x8,0x80,0xf8,
0xd8,0x43,0x0,0xc4,0x51,0xe,0xa0,0x7,0x20,0x26,0xec,0x95,0x0,0x90,0xfc,0x3,
0x2f,0xa3,0x62,0x4,0x3a,0x70,0x0,0x5f,0x74,0x80,0x20,0xe2,0x0,0x78,0xfc,0x2b,
0xc9,0xf1,0x4f,0x84,0xd3,0x4f,0x0,0xf0,0xf5,0x24,0xb,0x50,0x14,0xe4,0x9f,0x63,
0x22,0x10,0x2,0x20,0x39,0x72,0xfc,0x53,0x5,0xc0,0xc8,0x1,0x70,0xfa,0x11,0x0,
0xf,0x10,0xe9,0x0,0xf4,0xf4,0x3,0x0,0x1e,0x4,0x0,0x9,0xb,0x4c,0x40,0x4,
0xe,0x20,0x33,0x2,0xc0,0x8b,0x21,0xf4,0x76,0x16,0x12,0x13,0x70,0xf1,0x77,0x72,
0x9,0x74,0x72,0x9,0x71,0x74,0x9,0x73,0x44,0x13,0x88,0x76,0x14,0xa8,0x1d,0x4,
0x1a,0x7,0x1,0x65,0x2,0x79,0xe,0x6e,0x3b,0xe,0x92,0x6e,0x6,0xfc,0xe0,0x92,
0x2c,0xfc,0xc0,0x4,0x44,0xb1,0x56,0xf0,0xae,0xcc,0xdd,0xea,0x5f,0x9b,0xdd,0xb8,
0x1,0xeb,0x20,0xaa,0x9,0x50,0x59,0xe8,0xfc,0x57,0x5f,0x9d,0x34,0xfd,0xd8,0x60,
0x2,0xbf,0x57,0xfd,0xa,0x1e,0x10,0x22,0x2b,0x51,0x6c,0xc3,0xa6,0xc1,0x57,0xad,
0x42,0x6f,0x41,0x10,0x2,0x1f,0x40,0x0,0xc0,0x4,0x80,0x81,0x58,0x3d,0x0,0x8f,
0xd7,0x56,0x46,0xda,0xbb,0xa9,0xdd,0x3f,0x95,0x7f,0x2a,0x73,0xb,0xe0,0xf8,0x87,
0xed,0xa7,0xd9,0x93,0xff,0x11,0x1b,0x7,0xc7,0xbf,0x7,0xfc,0xc2,0x99,0x4f,0x9c,
0x40,0xa1,0x63,0xf3,0x47,0x2c,0x59,0xf7,0x4d,0x3,0x4a,0x65,0x25,0x83,0x19,0xc3,
0x9b,0xed,0xeb,0xbb,0xd3,0xf,0x10,0x80,0x39,0xf0,0x81,0xcd,0x9d,0xd9,0xd,0x78,
0xf0,0x81,0x30,0xb0,0xb6,0x3d,0xb5,0xfa,0x7c,0x72,0xe5,0xf9,0x4,0xa5,0xe5,0x67,
0x63,0xa0,0xa5,0x27,0x63,0x7d,0x2d,0xcd,0x5,0xa9,0xe9,0xa9,0x6a,0x2d,0x8c,0x3e,
0xcc,0x3d,0x8,0x30,0x48,0x8e,0x51,0x3,0x6,0xe9,0xf1,0xf1,0x1d,0x23,0x35,0xb0,
0x51,0x5,0x8d,0x6f,0x75,0x91,0x7,0x1f,0x3a,0x46,0xd6,0xdb,0x71,0xf3,0xb3,0xd2,
0xa,0xe9,0x1f,0xb,0xc0,0x52,0xb,0x4c,0x7f,0x1f,0xaa,0xb1,0x77,0xb1,0xa1,0x7,
0x55,0xdf,0xbd,0x58,0xd7,0xbd,0x58,0xdb,0xb5,0x58,0xd3,0x5,0x9f,0x4b,0x35,0xdd,
0x4f,0xaa,0x7b,0xf6,0x6a,0x6,0x36,0x1a,0x86,0x66,0x1b,0x7,0x27,0x1a,0x6,0x47,
0x1a,0xfb,0xfb,0xea,0x60,0xed,0x54,0x5e,0x9a,0x16,0x55,0xe9,0x7e,0xfb,0xd9,0x5f,
0x5b,0xdd,0xff,0x51,0x7c,0x5a,0x8,0x5e,0xe,0xa8,0x7c,0x30,0x2,0x49,0xe5,0xc0,
0x80,0x8f,0x44,0xaa,0xf2,0x90,0x82,0xf,0xc4,0x25,0x3,0x3,0xa9,0xe5,0xbd,0x59,
0x65,0xdd,0x99,0xb0,0x24,0x2d,0x69,0xcb,0x28,0x6e,0x49,0x2f,0x6a,0x4c,0x2b,0xac,
0x4b,0x2d,0xac,0x49,0x29,0xa8,0x4a,0xc9,0xaf,0x48,0xce,0x2f,0x4b,0xce,0x2d,0x49,
0xca,0x2d,0x4a,0xcc,0x29,0x48,0xc8,0xce,0xd3,0x65,0xe5,0x22,0x0,0x99,0x0,0x40,
0x26,0x38,0x80,0x26,0x3d,0x8d,0x2,0x40,0x9d,0x9a,0xac,0x4e,0xa1,0x0,0x48,0x88,
0x49,0x32,0x0,0xa0,0x45,0x7,0xd0,0xc5,0x45,0xe8,0xd4,0x11,0x6,0x0,0xf0,0xf8,
0x8f,0xa,0x5,0x0,0x70,0xfa,0x23,0x82,0x63,0xc3,0x83,0x40,0x34,0x0,0xa1,0x1,
0xd0,0x1,0xd0,0x1,0x82,0x89,0x3,0x4,0x61,0x7,0x8,0xf,0xf4,0xd,0xb,0x38,
0x0,0x20,0xc4,0xcf,0x1b,0x22,0x10,0xe6,0x1f,0x3,0x0,0x90,0x82,0x54,0x9e,0x1,
0x4a,0x32,0xfd,0xde,0x64,0x7,0x7a,0xc,0x0,0xa4,0x0,0xd0,0xf9,0xc7,0x8d,0xe4,
0x1f,0x8c,0x40,0x9e,0x7,0xf9,0x7,0x1d,0x40,0x3f,0xfd,0x8,0x80,0xd4,0xd0,0x80,
0xe1,0xf8,0xd7,0x3,0xe0,0x7e,0x18,0x0,0xb1,0x87,0x1e,0x0,0x29,0x13,0x1,0x90,
0x31,0x5d,0xe5,0xc,0xca,0x4,0x84,0x5e,0xce,0xc4,0x4,0x9c,0x5c,0xfc,0x9c,0x5c,
0x2,0xc0,0x4,0xe0,0x77,0x2b,0x1c,0x5,0xe1,0x8e,0x82,0x28,0x7,0x41,0x8c,0x83,
0x20,0xce,0x41,0xa0,0x75,0x10,0x50,0x26,0x30,0xea,0xe0,0xfe,0xcc,0x51,0x9a,0xc2,
0x96,0x45,0xb1,0x65,0xc1,0x1c,0x99,0x1f,0x47,0x46,0x4c,0xc0,0xa6,0xef,0x9d,0x2b,
0x2f,0xfe,0xc4,0x82,0xff,0xd,0x98,0x0,0x35,0xfa,0xe8,0x0,0xe0,0x3,0x5f,0x9d,
0xbc,0x78,0xfa,0xe4,0xfb,0xa2,0xdf,0xfc,0x16,0x4d,0xe0,0x47,0x6f,0x2a,0xdf,0x0,
0x13,0xc0,0x17,0xe7,0x7d,0x4f,0x5c,0xa5,0xda,0x30,0x79,0x6f,0x18,0x1,0xd0,0x33,
0x60,0x1f,0x43,0x0,0xd8,0xdd,0x7d,0xb4,0x4,0xdf,0xb0,0x5c,0x59,0x43,0x4d,0x3f,
0xb5,0xfb,0xaf,0xcc,0x2b,0x2c,0x2d,0xcb,0x86,0xed,0xa7,0xb4,0xe7,0x46,0x78,0xa4,
0x34,0x28,0xd2,0x8d,0x3a,0xfe,0xa5,0x69,0xce,0x8c,0xe7,0x77,0x5c,0xba,0xed,0x35,
0xd,0xa1,0xd,0xd3,0x25,0x33,0x4f,0x6,0x60,0xf4,0xe9,0xf4,0x8f,0xf9,0x7,0x0,
0x98,0x5e,0x7f,0x31,0x85,0x0,0xbc,0x98,0x5a,0xdd,0x9e,0x58,0xd9,0x9e,0x0,0x8b,
0x58,0xd9,0x1e,0x5f,0x7a,0x3e,0x6,0x7f,0xc0,0xaa,0xa7,0xb5,0xa2,0x2a,0x33,0x3e,
0x11,0x0,0x80,0x23,0x1f,0xa6,0x3f,0x9,0x7e,0xfc,0x2,0x3e,0xe1,0xeb,0xff,0xe1,
0x27,0x30,0x62,0xd4,0x19,0x9,0xba,0xae,0xe9,0xda,0xf1,0x7,0xf0,0xe0,0x67,0xd7,
0xd8,0x56,0xe7,0xe8,0xfd,0x8e,0x91,0x8d,0xf6,0xe1,0xf5,0xb6,0xa1,0xb5,0xb6,0x81,
0x15,0x52,0x7f,0x97,0x5b,0x70,0xfa,0x17,0x1a,0x7b,0x17,0x1a,0x7b,0xe6,0x1b,0x7a,
0x17,0x1b,0xbb,0x17,0x60,0xfa,0xeb,0xbb,0x16,0x0,0x80,0xda,0xce,0xc5,0x1a,0xa2,
0xea,0xae,0x67,0xd5,0xdd,0x7b,0xd5,0x3,0xab,0xd,0x3,0xd3,0xd,0x3,0xe3,0xd,
0x3,0xc3,0xd,0x7d,0xbd,0xb5,0xad,0xcd,0xa5,0x25,0x45,0x29,0x21,0x95,0x82,0x9b,
0xdb,0x7f,0x65,0xb7,0xfe,0xb3,0x84,0xe4,0xb0,0xd8,0xc0,0x90,0x60,0x6f,0x15,0xc,
0x3d,0x9c,0xfd,0xc0,0x0,0x0,0x40,0xb9,0x41,0x5c,0xa,0xfa,0x40,0x59,0x4f,0x26,
0xdc,0x94,0x95,0x74,0xa4,0x17,0xb7,0xa6,0x17,0x37,0xa7,0x15,0x36,0xa4,0x2,0x3,
0x5,0xd5,0x29,0xf9,0x95,0xc9,0x79,0xe5,0x49,0xb9,0xa5,0x49,0xb9,0xc5,0x89,0x39,
0x85,0x9,0xd9,0xf9,0x4,0x80,0x9c,0xf8,0xcc,0x6c,0x6d,0x46,0xa6,0x36,0x23,0x43,
0x93,0x9e,0x1e,0x97,0x96,0x1a,0x97,0xaa,0x7,0x20,0x39,0x31,0x6,0x1,0x48,0x0,
0x7,0x88,0x2,0x7,0x48,0xd0,0x46,0x26,0x68,0x8c,0x1,0x20,0x5,0x20,0xfa,0x58,
0x0,0x82,0xa2,0xc9,0xf4,0x53,0x0,0x44,0x6,0xd3,0xd3,0x8f,0x0,0xc0,0xf4,0x13,
0x0,0x42,0xfd,0x95,0xe0,0x0,0x87,0x1,0xc0,0xd1,0xa7,0x1d,0xc0,0x0,0x80,0x37,
0x38,0x0,0xb9,0x1,0xa0,0x1d,0xc0,0x83,0x38,0x0,0x5,0x0,0xae,0x80,0xb0,0x0,
0xc8,0xe,0x1,0xa0,0x30,0x34,0x60,0xf,0x64,0x40,0x46,0x1c,0x0,0x1,0xd0,0x1f,
0xff,0x34,0x0,0xee,0x70,0xfc,0x1b,0x1c,0x0,0xbe,0xf3,0x86,0x4d,0x3,0x20,0x61,
0x89,0x0,0x0,0xc2,0x0,0x2,0x40,0x18,0x40,0x0,0xbc,0x9d,0x5d,0x54,0x4e,0x2e,
0x14,0x3,0x81,0x8e,0x82,0x60,0x47,0x41,0x98,0xa3,0x20,0xc2,0x41,0x10,0xed,0x20,
0x88,0xa5,0x4d,0x40,0xa0,0xb3,0x77,0xc9,0x76,0x10,0xbf,0x70,0xf0,0xe8,0x3,0x13,
0x60,0xcb,0xc2,0xd8,0xb2,0x0,0xb6,0xcc,0x87,0x2d,0x83,0x87,0x4c,0x23,0x6c,0xaf,
0x6d,0xff,0xe0,0x76,0xdb,0x1b,0xa6,0x37,0xae,0xc3,0x23,0xa2,0xd4,0x55,0xc0,0x85,
0xaf,0xbe,0x22,0x3a,0x79,0xfa,0xd6,0x67,0x68,0x2,0x3e,0x3f,0xfe,0x8d,0xf2,0x47,
0xbf,0x57,0xfd,0x1a,0x56,0xa2,0x67,0x7c,0x3f,0xbd,0x4,0xaf,0xcb,0xf8,0xe3,0x3,
0x42,0x96,0xe4,0x6e,0x98,0x62,0xc0,0x3e,0xf2,0x9e,0x7d,0x34,0x2,0xf0,0xf8,0xc9,
0xfd,0xd5,0xb1,0xce,0x9e,0x7a,0x72,0xed,0x45,0x4d,0x3f,0xa5,0x90,0x61,0xf6,0x8d,
0x9d,0xbf,0x88,0x4e,0x51,0x1c,0x1c,0xff,0xf1,0x6c,0x61,0xab,0xd,0x63,0xfb,0xae,
0xb2,0x4c,0x9c,0xdb,0x93,0xd8,0xb7,0xda,0xb4,0xfa,0x62,0x2,0x1f,0xfb,0xd9,0x9f,
0x87,0xe3,0x7f,0x63,0x77,0x66,0x63,0x7,0xa7,0x9f,0x38,0xc0,0xd4,0xea,0x8b,0x49,
0x10,0x8c,0xfe,0xf2,0x8b,0xf1,0x95,0x17,0xe3,0xcb,0xdb,0x63,0x4b,0xdb,0xa3,0x23,
0xc3,0x1d,0x90,0x7f,0xa0,0xfb,0x82,0xa0,0x0,0x10,0x13,0xa0,0x0,0x50,0x83,0x12,
0xe0,0x27,0x30,0xa2,0xd5,0xd9,0xe9,0x49,0x70,0xae,0x8f,0x3d,0xe8,0x4,0x8d,0x6e,
0x75,0x8c,0xdc,0x6f,0x87,0x7,0x1f,0x86,0xd6,0x5a,0x7,0x60,0xf7,0xf,0xcb,0x1f,
0x48,0xff,0x70,0xf6,0x13,0x0,0xba,0xe7,0xeb,0xbb,0xe7,0xeb,0xba,0x50,0xb5,0x0,
0x40,0x27,0x2,0x80,0xc,0xb4,0x2f,0x54,0x75,0x2c,0x55,0x75,0x3e,0xaf,0xea,0xde,
0xad,0xee,0x5f,0xae,0x1b,0x98,0x6a,0xe8,0x1f,0xad,0xef,0x1f,0xaa,0xef,0xed,0xa9,
0x69,0x6e,0x2a,0x2e,0x2e,0x4c,0xe,0xac,0x61,0xdd,0x78,0xf1,0x17,0xe,0xab,0xbf,
0xd6,0x25,0xe0,0x6b,0xc4,0x70,0x2f,0x46,0xe6,0x5e,0xae,0x72,0x97,0x80,0xf0,0x6f,
0xf0,0x1,0x64,0x20,0xb5,0xb4,0x3b,0xa3,0x4,0x18,0x68,0x4f,0x2f,0x6a,0x49,0x2b,
0x6c,0x4a,0x5,0x6,0xa,0x6a,0x53,0xf2,0xab,0x93,0xf3,0x2a,0x92,0x72,0xcb,0x12,
0x73,0x4a,0x12,0x73,0x8a,0x12,0xb2,0xb,0x74,0x59,0xf9,0xba,0xcc,0xbc,0xf8,0xcc,
0x1c,0x6d,0x46,0x16,0x30,0xa0,0x49,0x3,0x0,0xd2,0xe2,0x52,0x53,0xd5,0xa9,0x29,
0xb1,0xe0,0x0,0x4,0x80,0x68,0x70,0x80,0x44,0x5d,0x54,0x62,0x3c,0x2,0xa0,0xd3,
0x44,0x80,0x3,0xc4,0xab,0xc3,0xc1,0x1,0xb4,0x31,0x61,0x20,0x0,0x20,0x2e,0x2a,
0xe4,0x65,0x7,0xa0,0x0,0x88,0xa,0xa1,0x8f,0xff,0x88,0x20,0xdf,0x88,0x20,0x3f,
0x38,0xfe,0x8f,0x7,0xc0,0x97,0x38,0x80,0x8f,0x67,0x20,0x0,0xa0,0x52,0x4,0x40,
0x4,0x52,0xc2,0xf1,0x8f,0xe,0x80,0xf9,0xc7,0xb,0xa6,0xff,0x0,0x0,0xd5,0x1,
0x0,0xfa,0x6,0x7c,0x1c,0x0,0x72,0xe2,0x0,0x64,0xfa,0xf,0x1c,0x80,0x2e,0x0,
0x94,0x3,0x1c,0xb,0x80,0x7,0x4b,0x4,0x0,0x48,0x10,0x0,0x57,0x90,0xc,0x1,
0x10,0x2a,0x9c,0x85,0x9e,0xce,0xc0,0x80,0x8b,0xd2,0x9,0x19,0xf0,0x5,0x13,0x70,
0x14,0x4,0x39,0xa,0x42,0x80,0x1,0x7,0x41,0x24,0x31,0x1,0xb5,0xbd,0x40,0x6b,
0xf,0x0,0x80,0x5c,0x87,0xec,0xdd,0xb6,0x1d,0xa5,0xa9,0x2c,0x29,0x9a,0x0,0x5b,
0xe6,0xc7,0x96,0x29,0xd9,0x32,0x4f,0xb6,0x5d,0xfb,0x87,0xf8,0xcd,0x11,0x92,0x8b,
0xb7,0x2e,0x7d,0x3,0x77,0x2,0xd4,0x3e,0x14,0x6b,0x0,0x98,0xc0,0xc9,0x93,0x1f,
0x9,0xdf,0xa4,0x4c,0x0,0x9e,0x12,0xfd,0x50,0xf5,0xbb,0x2f,0x7d,0x3e,0x84,0x36,
0xc,0xaf,0xcb,0x40,0x1b,0xc6,0x27,0xa5,0x49,0x1b,0xa6,0x1,0x88,0x2,0x0,0xf6,
0x1e,0xaf,0x4e,0x4d,0x77,0xd5,0x35,0x42,0xf4,0x87,0xe3,0x1f,0xd2,0x3f,0x9c,0xfd,
0x8,0x40,0x11,0x6c,0x3f,0x7f,0xc4,0x9f,0xfe,0x3c,0x3c,0x52,0x86,0xc7,0x7f,0x8c,
0xd0,0x5b,0xc3,0x83,0xef,0xea,0x61,0x6d,0x98,0x70,0x27,0xad,0x62,0x6a,0x3,0x6a,
0x26,0xa,0xc7,0x1f,0x74,0x6f,0xec,0xc1,0x6b,0x8d,0x73,0xf7,0x49,0xfe,0xc1,0xe9,
0x27,0x82,0xa5,0x10,0x9e,0xfd,0x2f,0x40,0x64,0xf4,0x5f,0x8c,0xad,0xec,0x8c,0x2f,
0xbd,0x18,0x5d,0x78,0x36,0xd2,0xd3,0xdc,0x8,0x5f,0x1c,0xd,0xd3,0xf,0x7,0x3f,
0x7c,0xd2,0xe,0x10,0x8b,0xe,0xa0,0x83,0x1f,0xbf,0x88,0x8c,0x49,0x8c,0x2,0xc5,
0xe6,0xe7,0xa7,0xc2,0xb3,0x15,0xa3,0xf,0x3a,0x40,0xf0,0x8c,0xdd,0xf0,0x66,0xdb,
0xd0,0x46,0xeb,0xc0,0x1a,0x5c,0x7e,0xb5,0xe0,0xf6,0x73,0xa9,0x9,0xe,0xfe,0x9e,
0x85,0x86,0x1e,0x4,0xa0,0xbe,0x6b,0xae,0xb6,0x13,0x34,0x5f,0xd3,0x31,0x5f,0xdd,
0x3e,0x5f,0xd,0xb7,0x72,0xed,0xf3,0x55,0xc0,0x40,0xdb,0x62,0x65,0xc7,0x76,0x45,
0xe7,0x4e,0x65,0xdf,0x62,0x5d,0xff,0x64,0x5d,0xff,0x68,0x5d,0xdf,0x60,0x5d,0x77,
0x77,0x75,0x53,0x43,0x51,0x41,0xbe,0x4e,0xd5,0x60,0x7f,0x6d,0xe7,0xcf,0x9c,0x17,
0xde,0x4f,0xd0,0x45,0xc2,0x13,0xa3,0xb0,0x14,0xa2,0x8e,0x7f,0x6f,0x37,0xf,0x25,
0x8,0x30,0x90,0x4a,0xe3,0xd2,0x42,0xf2,0x3b,0x92,0x8b,0xbb,0xd2,0xa1,0x19,0x17,
0xb5,0xa5,0x15,0xb6,0xa4,0x16,0x34,0xa6,0xe4,0xd7,0x27,0xe7,0xd7,0x26,0xe7,0x55,
0x25,0xe5,0x96,0x27,0xe6,0x94,0x26,0x64,0x17,0x27,0x64,0x17,0xea,0xb2,0xa,0xe2,
0x11,0x80,0x5c,0x6d,0x46,0xb6,0x36,0x3d,0x53,0x93,0x9e,0x11,0x7,0xc,0x0,0x0,
0x29,0x0,0x40,0x72,0x6c,0x72,0x52,0x4c,0x52,0x62,0x34,0x38,0x0,0x0,0x90,0x10,
0x1f,0x69,0xc,0x80,0x96,0x0,0xa0,0x89,0x9,0x3d,0x0,0x20,0x32,0x18,0x9e,0x57,
0xc5,0xfc,0x13,0x1e,0x8,0x11,0x8,0x1,0x8,0x45,0x0,0xf0,0xf8,0xf,0xf6,0x83,
0xe9,0x7,0x6,0xc2,0x3,0x7d,0x8,0x0,0xa4,0x0,0xf8,0xc3,0xf1,0x8f,0xe,0x10,
0xc,0x11,0xc8,0x17,0xa6,0xdf,0x0,0x0,0xe4,0x9f,0xa3,0x0,0x10,0x6,0xf4,0x5,
0x80,0x0,0x80,0xf9,0x47,0xe,0xc7,0x3f,0x3a,0x80,0xd7,0x77,0x0,0x40,0xdd,0x1,
0x1f,0x38,0x0,0x35,0xfd,0x8,0x0,0x8a,0xe3,0x86,0x62,0x83,0xd0,0x1,0x0,0x0,
0x64,0x80,0x9,0x32,0x2,0x0,0x19,0x70,0x1,0x0,0xbc,0x9,0x0,0x3e,0x4e,0x2,
0x7f,0x47,0x1,0x65,0x2,0xa1,0xe,0xfc,0x70,0x7,0x7e,0x94,0x3,0x3f,0xd6,0x9e,
0xaf,0xb1,0xe7,0xc7,0x23,0x0,0x2e,0x59,0xf6,0xe2,0x6d,0x7b,0x8f,0x41,0x67,0x69,
0x2c,0x5b,0x1a,0xce,0x96,0x82,0x9,0xa8,0xd0,0x4,0xdc,0x83,0x1d,0xe1,0x5d,0x99,
0x5b,0x3,0x3f,0x34,0xbb,0x89,0xdf,0x9f,0x45,0x97,0x60,0x2,0x0,0xf8,0xc0,0xd9,
0x2b,0x5f,0xc0,0xb,0x93,0x14,0x3,0xef,0x28,0x7f,0x81,0x2b,0x51,0x9f,0x4f,0x2e,
0x92,0x7,0x84,0xee,0x6,0x5d,0xb6,0x20,0x6d,0xd8,0x1e,0x1c,0x0,0x4d,0xc0,0xe4,
0x7b,0x70,0xf9,0x35,0xd9,0xdd,0xf,0xc7,0x3f,0x8c,0x3e,0xac,0xff,0xb1,0xfe,0xe2,
0x37,0x3c,0x17,0x25,0x74,0xfa,0x5d,0xd9,0xff,0xb7,0xa1,0x45,0xc2,0x90,0x8,0xf7,
0x80,0x28,0x91,0x8f,0x5a,0xa0,0x88,0x67,0x8b,0xcb,0xec,0x9c,0xf6,0x6e,0x4b,0x6b,
0xb9,0xe9,0x9d,0x9a,0xf6,0x85,0xea,0xc5,0xe7,0x23,0x30,0xfd,0xa0,0x4d,0x48,0xff,
0xa0,0xdd,0x19,0x32,0xfd,0xd4,0xd9,0x3f,0x1,0x82,0xd1,0x5f,0xde,0x19,0x7,0x21,
0x0,0x3b,0xa3,0x90,0x7f,0xe0,0xb,0xb6,0xb2,0x13,0x92,0x60,0xe7,0x3,0x67,0x3f,
0x88,0x32,0x1,0xca,0x7,0x60,0xee,0x75,0xf0,0xcb,0x17,0x91,0x31,0xf1,0xf0,0x1b,
0x30,0xd1,0xb1,0xc5,0x95,0x19,0x3,0x1b,0x4d,0x23,0xf,0xda,0x87,0xb7,0xda,0x86,
0xee,0xb7,0xe,0x6e,0xb4,0xe,0xae,0xb7,0xf4,0xaf,0x36,0xc3,0xe5,0x17,0xec,0x7f,
0x20,0xfd,0x77,0x2f,0x50,0xd3,0x5f,0x87,0xd3,0x3f,0x5b,0xd3,0x31,0x57,0xd3,0x3e,
0x57,0xdd,0x3e,0x57,0x5,0xc,0x0,0x0,0xd0,0xce,0xdb,0xe6,0x2a,0x81,0x81,0xf6,
0x17,0x15,0x9d,0x2f,0x2a,0x7b,0x17,0x6a,0x7b,0x27,0x6a,0x7a,0x86,0x6b,0x7a,0xfb,
0xe1,0xdb,0xd2,0xab,0x1a,0xeb,0xb,0x72,0x73,0xb5,0x5e,0x2d,0x56,0x57,0x77,0xff,
0x94,0x35,0xfb,0x49,0xbc,0x3a,0x2,0xde,0x9c,0x84,0x20,0xa4,0xf2,0x90,0x80,0x60,
0xfa,0xbd,0xc4,0xee,0x40,0x82,0x4a,0x22,0x8d,0xcb,0x8,0xc9,0x6f,0x4f,0x46,0x0,
0x3a,0xd2,0xa,0xdb,0x52,0xb,0x9b,0x53,0x28,0x6,0x72,0x6b,0x92,0x72,0x2b,0x93,
0x72,0xca,0x13,0xb3,0x91,0x1,0x2,0x40,0xbe,0x36,0x23,0x57,0x9b,0x9e,0xa3,0x49,
0xcf,0xd2,0xa4,0x67,0xc6,0xa5,0x65,0xc4,0xa5,0xa6,0xa9,0x53,0x52,0x63,0x53,0x52,
0x62,0x0,0x0,0x30,0x81,0x23,0x0,0xc4,0x83,0x3,0xc4,0x85,0x6b,0xd5,0xe4,0xf8,
0x8f,0x9,0x8d,0x8b,0xe,0x1,0x7,0x50,0x83,0x8e,0x0,0x40,0x18,0x40,0x0,0x8,
0x3,0x64,0xfa,0x11,0x0,0xcc,0x3f,0xc7,0x3,0xe0,0x49,0x1c,0x40,0x71,0xbc,0x3,
0x50,0x0,0x20,0x3,0x1e,0x94,0x3,0x1c,0x5,0x40,0x46,0xa,0x0,0xe9,0x0,0x54,
0x4,0x92,0x1f,0xc9,0x3f,0xf0,0x4,0xc4,0xe1,0x8,0x44,0xa6,0xff,0x0,0x0,0x31,
0x0,0xe0,0xce,0x3a,0xc,0x0,0xc3,0x55,0xca,0x10,0xca,0x18,0x42,0xb9,0x33,0x2,
0xe0,0x9,0xc,0x38,0x81,0x9,0x8,0x54,0x4e,0x2,0x5f,0x47,0x1,0x9a,0x80,0x3,
0x3f,0xc4,0x81,0x1f,0xe6,0xc0,0x8f,0x74,0xe0,0xc7,0xd8,0xf3,0xe3,0xec,0xf9,0x5a,
0x7b,0xbe,0xe,0xe5,0xda,0x6f,0x2f,0x86,0x36,0x9c,0xc1,0x4,0x13,0x90,0x6,0xb3,
0xa5,0xbe,0x6c,0x99,0x37,0x9a,0x80,0x63,0xfd,0xe7,0xf0,0x43,0x2f,0x66,0xca,0xb3,
0xf0,0xd6,0x3c,0x98,0xc0,0xf9,0x2f,0xbf,0x2,0xc1,0xf1,0xf,0x55,0xf8,0xdc,0x97,
0x5f,0x7e,0xc2,0x7e,0x1b,0xd7,0x41,0x20,0x7c,0x55,0xe0,0xb7,0xf0,0x94,0x28,0xb4,
0xe1,0x6f,0xfc,0xe8,0xd7,0x65,0xa0,0xd,0xdb,0x85,0x9b,0xd8,0x47,0x98,0x20,0x0,
0xab,0x53,0x53,0xdd,0xf5,0x4d,0x30,0xfa,0x74,0xf1,0x25,0xe1,0xa7,0xa6,0xa8,0x84,
0xbb,0xf1,0xb1,0xdd,0xfa,0x2f,0xa2,0x63,0xbc,0x82,0x22,0xc4,0x7e,0xd1,0x42,0xef,
0x38,0x9e,0x4c,0xc7,0xe4,0x4e,0x99,0xb1,0xd6,0x4d,0x83,0xca,0x15,0x25,0x43,0x99,
0xc3,0xf7,0xdb,0xd7,0x76,0x26,0xa9,0xe3,0x1f,0xa6,0x9f,0xce,0x3f,0x3b,0x53,0x6b,
0x3b,0x0,0x0,0x39,0xfe,0x71,0xf4,0xc7,0x56,0x76,0xc7,0x97,0x77,0xe1,0xbd,0xc7,
0x31,0x0,0x60,0x74,0xa4,0x13,0xfe,0xcb,0x61,0xff,0x93,0x46,0x76,0xff,0x50,0x3,
0x48,0x15,0xa6,0xf3,0xf,0x84,0x1f,0xea,0xf8,0xd7,0x45,0x44,0xc7,0x87,0x47,0x1,
0x12,0x15,0xcd,0xb9,0x83,0x9b,0x2d,0x43,0x5b,0xad,0x8,0xc0,0x66,0xeb,0xc0,0x46,
0x73,0xff,0x5a,0x13,0xb9,0xf6,0x6a,0x84,0x8c,0x44,0x1,0xd0,0x39,0x4b,0x8e,0x7f,
0x0,0x60,0xb6,0xa6,0x7d,0xb6,0xba,0x6d,0xb6,0xa,0xd4,0x3a,0x5b,0xd9,0x3a,0x57,
0x1,0x6a,0x99,0x2d,0x6f,0x5d,0x2a,0x6f,0xdb,0x29,0x7,0x2b,0xe8,0x99,0xab,0xe9,
0x19,0xaf,0xe9,0x1e,0xaa,0xee,0xe9,0xaf,0xe9,0xe8,0x28,0xaf,0xa9,0xce,0xc9,0xc9,
0xd1,0xc8,0x3a,0xee,0x5e,0xdd,0xfd,0x3e,0x77,0xf2,0xab,0xf8,0xd8,0x88,0x8,0xbf,
0x0,0xb8,0x14,0x43,0x0,0xdc,0x3c,0x0,0x0,0xc0,0x0,0x79,0x90,0x48,0x35,0x99,
0xa1,0xc0,0x40,0x51,0x47,0x6a,0x61,0x7b,0x6a,0x61,0x6b,0x4a,0x41,0x73,0x4a,0x5e,
0x43,0x52,0x5e,0x5d,0x52,0x6e,0x75,0x62,0x4e,0x65,0x42,0x76,0x59,0x42,0x76,0x89,
0x2e,0xab,0x28,0x3e,0xb3,0x40,0x9b,0x91,0x4f,0x0,0xc8,0x8e,0x4b,0xcb,0x8c,0x4b,
0xcd,0x50,0xa7,0xa6,0x23,0x0,0xc9,0x0,0x40,0x72,0x4c,0x12,0x31,0x81,0xc4,0x84,
0x28,0x30,0x1,0x5d,0x7c,0xa4,0x8e,0xa4,0x20,0x1a,0x80,0x58,0xa,0x0,0x8c,0x40,
0xea,0xa8,0x60,0x2,0x0,0x1c,0xff,0xc4,0x1,0xc2,0x3,0xa3,0x60,0xfa,0x51,0x0,
0x80,0x5f,0x4,0x5,0x0,0x61,0x80,0x2,0x0,0xb,0x0,0xed,0x0,0x4a,0x38,0xfe,
0x89,0x3,0x78,0x6,0x92,0x8,0x14,0x80,0x11,0x48,0xee,0x7f,0x10,0x81,0xa4,0xbe,
0x64,0xfa,0x9,0x0,0xa4,0x0,0x7c,0x2b,0x0,0xf4,0xf4,0x1f,0x6,0x80,0x7a,0xa,
0x88,0xe4,0x1f,0xfd,0xa,0x48,0x3f,0xfd,0x6,0x7,0x38,0x4,0x80,0x7,0xd3,0x15,
0x1c,0x40,0xa2,0x7,0x40,0xe6,0xc,0xc,0xb8,0xa0,0x9,0x38,0x81,0x9,0x8,0x80,
0x1,0x1f,0x47,0x81,0x9f,0x23,0x3f,0xd0,0x81,0x1f,0xec,0xc0,0x7,0x13,0x88,0x70,
0xe0,0x47,0xdb,0xf3,0xd5,0xb4,0x9,0x0,0x0,0x82,0xc,0x7b,0xd1,0x73,0x7b,0xf7,
0x51,0x27,0xa9,0x9a,0x2d,0xd,0x63,0x81,0x9,0x48,0x55,0x6c,0xa9,0x17,0xdb,0xc3,
0xdf,0xf9,0xc6,0xa3,0xbf,0xbe,0x39,0xf9,0x3f,0xcc,0x6e,0x5d,0xa7,0xd6,0x41,0x0,
0x0,0x38,0x0,0x7c,0x9e,0x3b,0xf1,0xe5,0xf9,0xaf,0xbf,0x84,0x37,0x4,0xb0,0x9,
0xa8,0x7e,0x4,0xf7,0x62,0x1f,0xab,0xde,0x3e,0xe9,0xf3,0x31,0xb4,0x61,0x72,0x37,
0xfc,0xd,0x5c,0xb,0xc0,0x43,0x72,0x8,0x40,0x84,0xc9,0xf7,0xa6,0x7a,0x7,0x5b,
0xca,0xab,0x6b,0xa,0xf0,0xf2,0xb,0xe,0x7e,0x18,0x50,0xf8,0xcc,0xa9,0x8d,0xbf,
0xba,0xff,0x7d,0x9f,0x46,0xdb,0xd0,0x48,0x9,0xfc,0xb4,0xb7,0x4f,0xac,0xc0,0x53,
0xcb,0x71,0xcf,0x74,0x74,0xde,0xb9,0x2d,0xea,0x70,0xd2,0x36,0x86,0x35,0xcd,0x96,
0xcd,0x3e,0x1d,0xdc,0xdc,0x9f,0xbd,0xbf,0x3f,0xb,0x9f,0x38,0xfd,0x78,0xfc,0x4f,
0x61,0xf8,0x81,0xdc,0x8f,0xd3,0xaf,0x3f,0xfe,0x77,0xc7,0xe0,0x2d,0x19,0x60,0x60,
0xe9,0xf9,0x68,0x77,0x63,0x3,0xec,0x7f,0xd2,0x35,0x8,0x0,0x76,0x5f,0x92,0x7c,
0x92,0xd4,0xea,0xc4,0xb8,0x58,0xf8,0x1b,0xe2,0x10,0x0,0x0,0xc7,0x7f,0x2,0xfc,
0xfe,0x5,0xc5,0x80,0x5a,0x5d,0xdb,0x5b,0x38,0x70,0xbf,0x19,0x0,0x0,0x1,0x0,
0x7d,0x6b,0x4d,0xbd,0xab,0x70,0xf9,0xd5,0xd8,0xb3,0x4,0x0,0x60,0xfa,0x87,0xe9,
0x87,0xd1,0xa7,0xd4,0x3e,0x83,0xd3,0xf,0x3e,0xd0,0x32,0xb,0xa3,0x4f,0xa9,0xbc,
0x79,0xb6,0xac,0x75,0xa5,0xbc,0x75,0xb7,0xac,0xfd,0x59,0x79,0xf7,0x6c,0x75,0xf7,
0x58,0x75,0xd7,0x60,0x55,0x57,0x6f,0x55,0x7b,0x7b,0x79,0x75,0x55,0x76,0x76,0x4e,
0x9c,0x5b,0xcf,0x15,0xb8,0xe9,0x13,0x8e,0x5c,0x88,0x8f,0x8a,0x80,0xc5,0x28,0x34,
0x1,0x3c,0xfe,0xc5,0xee,0x5e,0x6e,0xee,0xf0,0x87,0xa7,0xd8,0x4d,0xe9,0xe1,0xa1,
0xcd,0x9,0x3,0x6,0xa,0x3b,0x52,0xa,0xda,0x52,0xa,0x5a,0x93,0xf3,0x9a,0x92,
0x80,0x81,0x9c,0xda,0xc4,0x9c,0xea,0x84,0xec,0xa,0x5d,0x56,0x69,0x7c,0x66,0x71,
0x7c,0x66,0x91,0x36,0xa3,0x40,0x9b,0x9e,0xa7,0x49,0xcf,0x89,0x4b,0xcb,0x8a,0x4b,
0xcd,0x54,0x3,0x3,0x29,0x69,0xb1,0xc9,0xa9,0x31,0xc0,0x0,0xfc,0xba,0x53,0x62,
0x62,0x14,0x0,0x0,0x89,0xb,0x52,0x90,0x4e,0x1b,0x11,0xaf,0x9,0xd7,0x12,0x7,
0xd0,0xc4,0x86,0x22,0x0,0x31,0x21,0x60,0x2,0x0,0x40,0x2c,0x0,0x10,0x19,0x14,
0x83,0xc,0x18,0x0,0x20,0xc7,0xff,0x21,0x0,0x7c,0xc2,0x2,0x55,0x8,0x0,0x61,
0x20,0xc4,0x5f,0x19,0x8c,0x11,0x88,0x6,0x80,0x72,0x0,0xa,0x0,0xd2,0x1,0x64,
0x7e,0xa4,0x1,0x53,0x0,0xe0,0xf1,0xef,0x49,0xa6,0x5f,0xa1,0x3f,0xfe,0x21,0x2,
0x61,0xa,0xa2,0x22,0x10,0xe5,0x0,0xfa,0xe3,0x1f,0x9f,0x82,0x16,0x1e,0x5b,0x0,
0x48,0xfe,0x21,0x5,0xe0,0xe0,0xf8,0xc7,0x8,0x44,0x1,0x80,0xf9,0x7,0xc5,0x74,
0xd5,0x33,0x20,0x44,0x13,0x70,0x76,0x41,0x0,0x9c,0x5c,0x3c,0x9d,0x4,0x5e,0x4e,
0x2,0x6f,0x47,0x81,0xca,0x11,0x4c,0x80,0xef,0xef,0xc0,0xa7,0x4c,0x20,0xdc,0x9e,
0x1f,0x65,0xaf,0x37,0x1,0x3b,0xbe,0xe,0x25,0xec,0xb5,0x13,0xed,0xd8,0x7b,0x64,
0x31,0x25,0x91,0x2c,0x49,0x10,0x4b,0xea,0xcb,0x92,0x7a,0xb3,0xa4,0x9e,0x2c,0xe7,
0x8a,0x53,0xf0,0xdb,0xd7,0xa6,0x21,0x5f,0x82,0x9,0xc0,0xa5,0x18,0x99,0xfe,0x2f,
0x29,0x2b,0x0,0x6,0x3e,0x77,0xf8,0x3d,0x2,0xe0,0xf3,0x23,0xf2,0x94,0xe8,0xaf,
0x61,0x25,0x7a,0xc6,0xe7,0x53,0x30,0x1,0x43,0x1b,0xb6,0xb,0xbf,0x8b,0x0,0xc0,
0xe5,0x57,0x1d,0x79,0xee,0x8d,0x2a,0xbe,0x90,0x7f,0xa0,0x3,0x28,0x66,0x6f,0x9a,
0x3c,0xfd,0xaf,0x31,0x5a,0xef,0x40,0x38,0xfe,0xa3,0x5c,0x95,0x71,0x3c,0xb9,0x8e,
0x25,0xe8,0xb6,0x64,0x3c,0xbd,0xeb,0x53,0xe6,0x91,0xd7,0x97,0xc,0x53,0x8,0x7,
0x3c,0x46,0xff,0xfd,0x39,0xa8,0x1,0x64,0xfa,0xa7,0xe1,0xec,0x87,0xfc,0x83,0xe,
0xb0,0x33,0x9,0xc5,0x17,0x92,0xcf,0x12,0x3d,0xfd,0x63,0x4b,0xbb,0xa3,0x53,0xab,
0x7d,0xf0,0x5,0x5b,0x59,0xba,0x44,0x88,0xfe,0xfa,0xd8,0x83,0x43,0x1f,0x52,0x28,
0x71,0x1b,0xb8,0x92,0x93,0x94,0x9c,0x19,0x9f,0x0,0xc7,0x3f,0x32,0x0,0xbf,0xff,
0x15,0x19,0xd,0x5f,0xf9,0xaf,0x9,0xd,0x4f,0xd5,0x6a,0x1a,0x46,0x8a,0xfb,0x37,
0x9b,0xc0,0x7,0x6,0x36,0x9b,0xfb,0xd6,0x9b,0x90,0x81,0x95,0x86,0x6e,0x58,0xfc,
0x2f,0xd6,0x75,0x2d,0x1c,0x0,0xd0,0x36,0x5d,0x85,0x9a,0xa9,0x6a,0x9d,0xa9,0x6c,
0x99,0xa9,0x0,0x35,0x93,0xe9,0x7,0x35,0xcd,0x94,0x36,0xaf,0x94,0xb6,0xee,0x96,
0xb6,0x3d,0x29,0xeb,0x9a,0xae,0xea,0x1a,0xad,0xea,0x1a,0xa8,0xea,0x84,0x2f,0x9,
0x6d,0x2d,0xad,0xac,0xcc,0x4a,0xcf,0x8c,0x16,0xf6,0x9f,0xbf,0xba,0xf7,0x6f,0x45,
0x3,0x97,0xb4,0x11,0x11,0xf0,0xc4,0x28,0x94,0x1,0xa5,0x3b,0x9a,0x0,0x25,0x4f,
0x91,0x9b,0x52,0x22,0xd1,0xe4,0x85,0xe6,0xb6,0x25,0x16,0xb4,0x3,0x3,0xc9,0xf9,
0x2d,0xc9,0xb9,0x8d,0x89,0xb9,0xf5,0x89,0x39,0x35,0x9,0xd9,0x55,0x9,0x59,0xe5,
0xf1,0xc0,0x40,0x46,0xb1,0x36,0xa3,0x50,0x93,0x9e,0xaf,0x49,0xcb,0x8d,0x4b,0xcb,
0x56,0xa7,0x66,0xa9,0x53,0x32,0x62,0x53,0xd2,0x11,0x80,0xa4,0x94,0x68,0x4,0x20,
0x29,0x2a,0x81,0x0,0x0,0xe,0x10,0xf,0x0,0xe8,0x19,0x0,0x0,0xe2,0x40,0x31,
0x21,0x6a,0x1a,0x80,0x20,0x2,0x0,0x4e,0x7f,0x74,0x58,0x40,0x14,0x8,0x8f,0x7f,
0x1a,0x0,0x3c,0xfe,0x49,0x7,0x0,0x0,0xc,0xd3,0x6f,0x0,0x20,0xe8,0xc0,0x1,
0x68,0x0,0x88,0x3,0x10,0x0,0xbc,0x9,0x0,0x5e,0xaf,0x0,0x40,0xe6,0x86,0xd3,
0x2f,0x13,0x7b,0xd2,0x11,0xc8,0x18,0x0,0xba,0x1,0x93,0x5,0xa8,0xc1,0x1,0xa8,
0xe9,0xe7,0x1d,0xce,0x3f,0x1c,0x32,0xfd,0x4,0x0,0xc2,0x0,0x4e,0x3f,0x2,0xc0,
0x10,0x82,0x0,0x0,0xa9,0xb3,0xb,0x32,0xe0,0x4,0xc,0x8,0x80,0x1,0x0,0x40,
0xe9,0xc8,0xf7,0x71,0xe4,0xfb,0x39,0xe8,0x4d,0xc0,0x9e,0x17,0x61,0xcf,0x8b,0xb6,
0xe7,0xc5,0xda,0xf1,0x34,0x76,0xfc,0x78,0xc2,0x40,0x9a,0x9d,0xe8,0xa9,0x9d,0xdb,
0x84,0x93,0x24,0x96,0x25,0x9,0x65,0x49,0xfc,0x59,0x12,0x15,0x4b,0x2,0x5f,0xc2,
0xe9,0xc3,0xb8,0x75,0xff,0xef,0xae,0x2f,0xfc,0x17,0xb3,0xbb,0xd8,0x4,0x60,0x13,
0xa,0xa2,0x7c,0x0,0x9a,0xc0,0xb9,0x33,0x5f,0xbe,0xe3,0xf9,0x73,0xca,0x4,0xc0,
0xd,0x60,0x25,0xa,0x6d,0x18,0x4c,0xe0,0x8a,0x1f,0xb6,0x61,0x30,0x1,0x2a,0x8,
0x7d,0xaf,0xb9,0xa2,0x1a,0xea,0x2f,0x55,0x7c,0x49,0x3,0x2e,0x28,0x2d,0x85,0xed,
0xe7,0x5f,0xbb,0xf7,0x5d,0xe,0x8d,0x90,0xc2,0x8f,0x7a,0xfb,0xc4,0xb8,0x78,0x69,
0x38,0x92,0x24,0x67,0xc6,0xc3,0xbb,0xbc,0x11,0xeb,0xe8,0xba,0x80,0x9a,0xc9,0xc2,
0x91,0xad,0xe,0x78,0xf9,0xeb,0x58,0x0,0x60,0xfa,0x81,0xd,0x74,0x80,0x1d,0x3c,
0xfb,0x61,0xf4,0x97,0xf7,0xc6,0x16,0x77,0x46,0x86,0x6,0xdb,0xe1,0x37,0x94,0x20,
0xff,0xe0,0xe2,0x9f,0x44,0x7f,0xc8,0x3f,0x70,0xf0,0xbb,0xc,0xc3,0xf0,0x7d,0x3f,
0xbc,0xc7,0xb5,0x24,0x23,0x1b,0xcc,0x1,0x18,0x0,0x0,0xb4,0x44,0x9a,0xd0,0x8,
0x4d,0x58,0x44,0x7a,0xa2,0xb6,0x79,0xba,0xc,0x18,0x0,0xf5,0x6d,0x34,0xf6,0xae,
0x35,0xf6,0xac,0x36,0x74,0x2f,0xc3,0xcd,0x17,0x2,0x0,0xd1,0x9f,0x32,0x81,0xf6,
0x99,0x6a,0x0,0xa0,0x75,0xba,0x12,0xd4,0x32,0x5d,0xd1,0x32,0x5d,0xde,0x3c,0x53,
0xe,0xa3,0xdf,0x34,0x83,0x0,0xa0,0x56,0x4b,0x9a,0xf7,0x4a,0xda,0x1e,0x95,0x75,
0x4e,0x55,0x76,0x8e,0x54,0x76,0xf4,0x57,0x74,0x74,0x55,0xb4,0xb4,0x94,0x54,0x94,
0x67,0xa4,0x64,0x44,0x70,0x87,0xbf,0x4,0x6,0x24,0x3d,0x37,0x34,0x61,0x61,0xc0,
0x0,0x55,0x3,0xa8,0xe9,0x57,0xb8,0x8a,0x41,0x4a,0xa9,0x87,0x36,0x3f,0x2c,0xb7,
0x2d,0x21,0xbf,0x3d,0x29,0xbf,0x2d,0x39,0xb7,0x39,0x11,0x18,0xc8,0xa9,0x4b,0xc8,
0xae,0xd6,0x65,0x55,0xea,0x80,0x81,0x8c,0x12,0x6d,0x46,0x91,0x36,0xbd,0x40,0x93,
0x9e,0x17,0x97,0x9a,0x43,0x0,0xc8,0x8c,0x5,0x6,0x92,0xd3,0x62,0x80,0x81,0xc4,
0xe4,0x28,0x4,0x20,0x31,0x32,0x21,0x21,0x52,0xa7,0x8b,0x8c,0x8f,0xf,0x8f,0xd7,
0x86,0x6b,0x35,0x61,0x9a,0xb8,0x30,0x8d,0xda,0x8,0x80,0xe8,0xe0,0xd8,0xa8,0x20,
0x78,0x61,0xd,0x0,0x88,0x6,0x0,0xc2,0xd,0x0,0xf8,0x45,0x80,0x3,0xa0,0x9,
0x0,0x0,0x3e,0x61,0x20,0xa,0x80,0x0,0x3c,0xfe,0x43,0xfc,0xbd,0x29,0x7,0x0,
0x0,0x30,0xff,0xf8,0x90,0xfc,0xa3,0x52,0xe0,0xf4,0x7f,0x3b,0x0,0x68,0x2,0xe4,
0xf8,0x97,0x53,0x0,0x88,0x28,0x0,0x14,0xe0,0x0,0x68,0x2,0x78,0xfc,0xc3,0x53,
0xd0,0x46,0xfb,0x1f,0x2,0x0,0xa6,0x20,0xe3,0xe3,0xff,0x48,0x1,0xd0,0x3,0xe0,
0x4e,0xa6,0x1f,0x45,0x0,0x90,0x38,0x1f,0x2,0x0,0x18,0xf0,0x72,0x4,0x6,0xf8,
0x2a,0x47,0xbe,0xaf,0x3,0x65,0x2,0xbc,0x10,0x7b,0x5e,0xb8,0x3d,0x2f,0xd2,0x9e,
0x17,0x63,0xc7,0x53,0x23,0x3,0xbc,0x78,0x3b,0x9e,0xce,0xce,0xa5,0xcb,0x4e,0xb4,
0x6b,0xe7,0x9e,0xc3,0x40,0x13,0x8,0x66,0x49,0x7c,0x59,0x12,0x6f,0x96,0xc4,0x93,
0xc5,0x2c,0xbc,0x0,0xbf,0xc3,0x72,0x4f,0xf3,0xe9,0xdd,0x2b,0xf8,0xc2,0x24,0x14,
0x0,0x74,0x0,0xea,0xf3,0xcb,0xaf,0x4e,0x58,0x7e,0xf8,0x5b,0x5f,0x34,0x1,0x58,
0x89,0xbe,0x47,0xee,0xc5,0xa0,0xd,0xe3,0x97,0x47,0x4,0x9c,0x23,0xef,0xd,0x43,
0x1b,0xbe,0xfb,0x3d,0x78,0xe8,0x1f,0xe6,0xbe,0x2,0x7e,0xdd,0x11,0x7e,0xe1,0xb,
0x3e,0xf3,0xa,0x43,0x86,0x38,0xd7,0x77,0xff,0x2c,0x2a,0x5d,0x11,0x14,0xe1,0xe6,
0x7,0xbf,0xe4,0x1a,0xcb,0x97,0x6b,0x59,0xae,0x35,0xb6,0x4e,0xbb,0xb7,0x64,0x55,
0xfc,0xb4,0xe,0x75,0xfb,0x62,0xf5,0xfc,0xb3,0x61,0x3a,0xfc,0x50,0xc7,0xff,0x2e,
0x1e,0xff,0xf4,0xde,0x73,0x7,0xf3,0xcf,0xea,0xee,0x4,0x99,0x7e,0x4,0x0,0xb4,
0xf0,0x7c,0xb8,0xa3,0xb6,0xb6,0x20,0x25,0x3d,0x15,0x8e,0x7f,0xba,0xf8,0x62,0xf4,
0x4f,0xd4,0xc4,0x98,0x3d,0xfa,0xdf,0xec,0x99,0xcf,0x6f,0xed,0xfc,0x87,0xf4,0xd6,
0x70,0x60,0x0,0x2a,0x1,0x1c,0xff,0x10,0x81,0xc0,0x1,0x80,0x84,0xb8,0xd0,0x70,
0xc0,0x20,0x2d,0x4d,0xdb,0xba,0x50,0xd9,0xb7,0xd9,0x8,0xea,0x5d,0x6f,0xe8,0x5d,
0x6b,0xe8,0x5e,0xa9,0xef,0x2,0x0,0x16,0xeb,0x3a,0x16,0xb0,0xfe,0xc2,0xc1,0x7f,
0x30,0xfd,0x53,0x15,0xcd,0x53,0xe5,0x4d,0x53,0x65,0xa8,0xe9,0xb2,0xc6,0xe9,0x52,
0xb8,0xaf,0x68,0x98,0x2e,0x6e,0x9c,0x2e,0x69,0x5c,0x2b,0x6e,0xde,0x2b,0x6e,0x7d,
0x50,0xda,0x31,0x51,0xd1,0x3e,0x54,0xd1,0xd1,0x57,0xd1,0xde,0x5,0x3f,0x14,0x50,
0x5c,0x5a,0x9a,0x9a,0x9c,0x11,0xc6,0x9c,0xf8,0x18,0x50,0x94,0xb6,0xdd,0x83,0x2f,
0x97,0x86,0xa7,0xe5,0xc0,0x7,0x60,0xfa,0x3d,0x45,0x62,0x85,0x48,0xc,0x41,0x8,
0x3e,0x95,0x52,0x9,0x30,0x90,0xd3,0xaa,0xcb,0x6b,0x4b,0xca,0x6b,0x4d,0xcc,0x69,
0x4a,0xcc,0x69,0x48,0xc8,0xae,0xd5,0x65,0x55,0xc7,0x67,0x56,0xc4,0x67,0x94,0x6a,
0xc1,0x4,0xd2,0xb,0xe3,0xd2,0xf2,0xe3,0x52,0x73,0xd5,0x29,0x39,0xb1,0x29,0x59,
0xb1,0xc9,0x19,0x31,0x49,0xe9,0x31,0x49,0xa9,0xd1,0x89,0xa9,0xd1,0x9,0xc9,0x51,
0x9,0x49,0x91,0xc0,0x80,0x4e,0x17,0x61,0x4,0x40,0x68,0x1c,0x2,0x10,0xa2,0x46,
0x7,0x80,0xe9,0x47,0xd1,0x0,0x20,0x3,0x8,0x40,0x24,0x55,0x0,0x88,0xc2,0xf5,
0x0,0x84,0x12,0x0,0x42,0x8c,0x0,0xc0,0xe3,0xdf,0xd7,0x33,0x10,0x64,0x0,0x40,
0x85,0x0,0xf8,0x29,0xd1,0x1,0x7c,0xd1,0x1,0x24,0x3e,0xc4,0x1,0x54,0x10,0x81,
0x30,0x5,0xb9,0x2b,0x15,0xee,0xf4,0xf4,0xcb,0x49,0xfe,0x39,0xc,0x0,0x99,0x7e,
0xa1,0xc,0x0,0x40,0x6,0xf4,0xc7,0x3f,0xe9,0x0,0x87,0xf3,0xf,0x97,0xec,0x7f,
0xc,0xf9,0x87,0x8d,0xc7,0x3f,0xea,0x28,0x0,0x2e,0x94,0x3,0xc8,0x9c,0x4,0x72,
0x27,0x1,0x9a,0x80,0x23,0x1f,0x0,0x40,0x13,0x70,0x0,0x13,0xe0,0x5,0xda,0xf3,
0x82,0xed,0x79,0xa1,0xc4,0x4,0xa2,0xec,0xd0,0x4,0xe2,0xec,0x78,0x5a,0x4,0x80,
0x97,0x6a,0xe7,0xfa,0xc4,0x4e,0xc,0xf,0xc9,0xa9,0x99,0x1e,0x61,0x4c,0x49,0x80,
0xde,0x4,0xbc,0x99,0x77,0x56,0xff,0xfb,0xb5,0x8d,0xbf,0x31,0x33,0xbf,0x7e,0xed,
0x2,0x3c,0x11,0x87,0x6b,0x50,0x3,0x6,0xe7,0x4e,0x7d,0x9,0xf,0x47,0xfc,0xd6,
0xf7,0x47,0xc0,0x0,0xbc,0x36,0xf9,0x7,0xd5,0x9b,0xd4,0x3,0x42,0x97,0xfd,0x4f,
0xdf,0xc,0xb8,0x78,0x2f,0x8,0xef,0x86,0xbf,0x67,0x98,0x7e,0x38,0xfb,0x61,0xfa,
0x2b,0xa,0xa,0xac,0x1e,0xff,0x88,0x3d,0xf3,0x51,0x78,0x94,0xc,0x8f,0xff,0x68,
0x17,0xaf,0x38,0xae,0x54,0xc7,0x60,0x2f,0xdc,0x63,0x2d,0x9a,0x86,0x56,0x2a,0x4b,
0x47,0x32,0x87,0x36,0xdb,0xd6,0x76,0xa7,0xb0,0xfb,0x42,0xfa,0xdf,0x9b,0x81,0xbf,
0xa9,0xd8,0x3,0xd1,0x1f,0xc3,0xf,0x59,0xfb,0x50,0xe1,0x67,0x91,0x1c,0xff,0x98,
0x7f,0x56,0xfa,0xe0,0x21,0x8b,0x74,0x7c,0xfc,0x81,0xec,0x7c,0x62,0xe3,0x12,0xe1,
0x7,0x4f,0xa3,0x62,0xc3,0x8b,0x65,0xf7,0x9e,0xfc,0xf7,0xc8,0x64,0xb9,0xfd,0xd0,
0xef,0xcd,0x9f,0xfd,0xaf,0x42,0xd8,0xaf,0x27,0xa5,0x82,0x45,0x0,0x3,0x70,0xf6,
0x6b,0xc3,0x10,0x0,0x75,0x70,0x18,0xfc,0x9d,0x5b,0x98,0xd4,0xb9,0x52,0xd3,0xbb,
0xd9,0xd0,0xbb,0xd1,0xd0,0xb3,0x5e,0xdf,0xbd,0x5a,0xdf,0xb9,0x5c,0xdb,0xb9,0x54,
0xb,0x4b,0xcf,0x8e,0x79,0x2,0x0,0x84,0x1f,0x38,0xfb,0xa7,0x40,0x4,0x80,0x49,
0x4,0xa0,0x71,0xaa,0x14,0xd4,0x30,0x85,0x0,0x80,0xea,0xa7,0x8a,0x1a,0x36,0x8a,
0x9a,0xf6,0x8a,0x5a,0xef,0x97,0xb6,0xc3,0x17,0xc5,0xd,0x95,0xb7,0xf5,0x96,0xb7,
0x75,0x96,0x35,0x36,0x16,0x95,0x14,0xa7,0x24,0x64,0x84,0x38,0x4e,0xff,0x1e,0xf6,
0x42,0x8a,0x46,0xeb,0x98,0xa0,0x60,0xb8,0x1c,0xf0,0x76,0x97,0xc8,0x5d,0xc5,0x72,
0xa1,0x8,0x3e,0xc1,0x4,0xe0,0xf,0x6f,0x99,0xbb,0xa6,0x20,0x34,0xbb,0x55,0x7,
0x71,0x28,0xa7,0x25,0x21,0xa7,0x29,0x21,0xbb,0x5e,0x97,0x55,0x13,0x9f,0x59,0x15,
0x9f,0x51,0xae,0x4d,0x2f,0xd5,0xa4,0x15,0xc7,0xa5,0x15,0xc6,0xa5,0xe6,0xab,0x53,
0x72,0x63,0x53,0xb2,0x63,0x93,0x33,0x1,0x80,0xe8,0xa4,0x34,0x0,0x20,0x2a,0x31,
0x25,0xa,0x18,0xd0,0x25,0x46,0xc6,0x13,0x0,0xb4,0xda,0x70,0xd,0x3a,0x0,0x1,
0x40,0x4d,0x0,0x88,0x9,0x8e,0xa5,0x1c,0x0,0x4d,0x20,0x30,0x3a,0x22,0x80,0x0,
0xe0,0x1f,0x9,0xa,0xd5,0x4f,0x7f,0xb0,0x2f,0x1e,0xff,0x41,0x3e,0x4,0x0,0x25,
0x1,0xc0,0x3b,0x18,0x1d,0xc0,0x2b,0x8,0x74,0xc,0x0,0x32,0x2,0x80,0xd4,0x8,
0x0,0x32,0xfd,0x28,0x2,0x80,0x82,0x1c,0xff,0x87,0x0,0x20,0xc7,0xbf,0xd4,0x95,
0x2,0x0,0x1d,0x40,0xe2,0x72,0x90,0x7f,0x5e,0xd,0x80,0x3e,0xff,0xd0,0x0,0xb8,
0x2,0x0,0x84,0x1,0x21,0x38,0x0,0x9a,0x80,0x33,0x2,0x80,0xc,0x18,0x1,0xe0,
0x5,0x0,0x38,0xf0,0x55,0xe,0x3c,0x5f,0x7,0x9e,0xbf,0x3d,0x32,0x40,0x9b,0x80,
0x1d,0x37,0xc6,0x8e,0xab,0xb6,0xe3,0x2,0x0,0x68,0x2,0xb6,0x82,0xe,0x3b,0xd7,
0x3d,0x3b,0xf7,0x2,0x86,0x47,0x14,0xd3,0x23,0x84,0xe9,0xe1,0xc7,0xf4,0xf0,0x66,
0x4a,0x3c,0x99,0x9c,0xac,0xab,0xf0,0x9b,0xa7,0x77,0xd3,0x3e,0x80,0x26,0x80,0x26,
0x0,0x5,0x40,0xdf,0x4,0x80,0x84,0xaf,0xee,0x7d,0xfc,0x3b,0xdf,0x1f,0x23,0x3,
0xaa,0x1f,0xbd,0xab,0xfa,0xe5,0xa7,0x3e,0xef,0x42,0x1b,0xc6,0x7,0x84,0x2,0xce,
0xdd,0xc6,0xf7,0x86,0xaf,0x3,0x0,0x18,0xfa,0x51,0xb9,0x5,0x65,0xd9,0x79,0xf1,
0xed,0xbe,0xf0,0xfb,0xa4,0xc1,0x25,0x82,0xa0,0x70,0x37,0xfc,0x21,0xef,0x18,0xbe,
0x42,0xc3,0x16,0xe7,0x39,0x38,0xed,0xdd,0x12,0xb7,0x30,0x12,0x5b,0x22,0x5b,0xe6,
0x2a,0xa0,0xfe,0x1e,0x1c,0xff,0x0,0x0,0xb5,0xf9,0xd9,0x99,0xa4,0xa2,0xff,0x12,
0x59,0x7d,0xc2,0xce,0x7,0xcf,0xfe,0x3d,0xf2,0xb9,0x3b,0x3a,0xd8,0xdf,0x56,0x9e,
0x9d,0x7,0xc7,0x3f,0x88,0x3c,0xfb,0xa0,0x1,0x0,0xc0,0x1,0x5c,0x6,0xcf,0xb,
0xc6,0x4f,0x6,0xab,0xdd,0xbc,0x62,0x99,0x66,0xb,0xff,0xec,0xbc,0xf5,0xbb,0xd2,
0xe2,0x2c,0xb8,0x27,0x86,0x2a,0xc,0x5,0x0,0x52,0x50,0x5c,0x8,0xfc,0x2,0x12,
0xcd,0x40,0x7e,0x75,0x6a,0xe7,0x5a,0x6d,0xcf,0x46,0x3d,0xa8,0x7b,0xbd,0xbe,0x6b,
0xa5,0xe,0x18,0x0,0x7,0x80,0xbd,0x67,0xdb,0x5c,0x75,0x2b,0x95,0xfe,0x61,0xfa,
0x27,0x41,0x4,0x80,0xc9,0xb2,0x86,0x89,0x12,0x78,0x5a,0xbb,0x7e,0x12,0x46,0xbf,
0xb8,0x6e,0xaa,0x8,0x0,0xc0,0xcf,0xfb,0x85,0x8d,0x7b,0x85,0x2d,0xeb,0xa5,0x6d,
0xa3,0x65,0xad,0x3,0x65,0xad,0x3d,0x65,0xad,0xed,0xa5,0x75,0xf5,0x79,0x85,0x85,
0x89,0xda,0xf4,0x0,0xdb,0xf9,0xdf,0x5c,0xdb,0xfd,0x81,0xb2,0xc6,0x29,0x3a,0x30,
0x8,0x2e,0x7,0x20,0x5,0xc1,0xdc,0xc3,0xf4,0xcb,0x5c,0x5c,0x91,0x4,0x64,0xc0,
0x23,0xbe,0x28,0x3c,0xab,0x25,0x3e,0xb7,0x35,0x21,0xa7,0x39,0x21,0xa7,0x31,0x21,
0xab,0x2e,0x3e,0xb3,0x5a,0x9b,0x51,0xa9,0x49,0x2f,0xd3,0xa4,0x95,0xc4,0xa5,0x15,
0xc5,0xa5,0x16,0xa8,0x53,0xf2,0x62,0x81,0x81,0xe4,0xac,0x98,0xa4,0xcc,0xe8,0xc4,
0xf4,0xe8,0xc4,0xb4,0x28,0x60,0x40,0x97,0x1c,0xa9,0x4b,0x8a,0x8c,0x4f,0x88,0x88,
0xd7,0x85,0x6b,0xe3,0xc3,0xb4,0xda,0x30,0x60,0x20,0xe,0x19,0x8,0x51,0xc7,0x86,
0xc4,0x12,0x0,0xe8,0xe9,0x8f,0xc,0x8c,0x8a,0x8,0x88,0xa,0xf,0xc0,0xe9,0xf,
0xf3,0x8f,0x38,0x0,0x80,0xe4,0x9f,0x20,0x15,0x2,0x10,0x48,0x1c,0x20,0x0,0x1,
0xc0,0xe9,0x27,0x2,0x7,0x8,0xf0,0x51,0xa0,0xe0,0xf8,0x47,0x7,0x20,0x0,0x28,
0x89,0x3,0x78,0x4b,0xd1,0x1,0xbc,0x28,0x7,0x70,0x57,0x1e,0x1,0x40,0x4e,0xa,
0x80,0x4c,0xa4,0x90,0x51,0x0,0x8,0xe5,0x44,0xb4,0x3,0x48,0xd0,0x1,0x30,0xfc,
0xa0,0xe8,0x2,0x70,0xa4,0x1,0x1f,0x2a,0x0,0xee,0xac,0x63,0x0,0xa0,0x18,0x0,
0x0,0x90,0x1,0x47,0x81,0xc2,0x91,0xf,0x0,0x78,0x3b,0x0,0x3,0x3c,0x1f,0x7,
0x9e,0x9f,0x3d,0x2f,0xc0,0x9e,0x17,0x64,0xcf,0xd,0xb5,0xe3,0x46,0xd8,0x71,0xa3,
0xec,0xb8,0xb1,0x76,0xdc,0x38,0x5b,0xae,0xd6,0x96,0xab,0xb3,0xe5,0xa5,0xd8,0xa,
0x1f,0xd9,0x89,0xe7,0x89,0x9,0x84,0x33,0x3d,0x2,0x99,0x1e,0x3e,0x4c,0xf,0x2f,
0x94,0xc9,0xc2,0xf,0xaf,0x3e,0xfc,0x4b,0x33,0x9b,0x6b,0xd7,0x2e,0x5c,0x80,0x2,
0x80,0x5b,0x20,0x8c,0x40,0x5f,0xc2,0x1f,0x17,0x4e,0x7e,0xf5,0xbe,0xdb,0xaf,0x29,
0x13,0x80,0x87,0xe4,0x60,0x25,0xa,0x26,0x40,0xad,0x44,0xc1,0x4,0x4c,0x82,0xae,
0x7c,0x8f,0x8a,0x3d,0xa0,0xf2,0x9c,0x7c,0x68,0xc0,0xbc,0xf5,0x4f,0x6d,0x36,0xdf,
0x88,0x51,0x7b,0x7,0x84,0x8b,0xe0,0xf7,0x9b,0xbc,0xd4,0x5c,0x69,0x3c,0x83,0x3b,
0x68,0xee,0xfc,0xe8,0xae,0xaa,0xc4,0x3d,0xaf,0x3f,0x19,0x22,0xf8,0xe2,0x8b,0x51,
0xec,0xbe,0xfb,0x33,0xeb,0x7b,0xd3,0x24,0xfc,0x4c,0x63,0xf8,0x21,0xe,0x80,0x0,
0xec,0xe0,0xc6,0x13,0xce,0x7e,0xa,0x80,0xc5,0xdd,0x91,0xf9,0x67,0x43,0xed,0xd5,
0xb5,0xf9,0x29,0x69,0xb8,0xf7,0x4,0x0,0x60,0xe1,0x43,0x56,0x9f,0x9,0x9a,0x68,
0xb3,0x47,0xff,0xc7,0xbf,0x86,0xe9,0x17,0x23,0xf0,0x86,0x9f,0x13,0x4c,0xb0,0xb9,
0xf5,0xe0,0x6f,0xdd,0x16,0x2f,0x94,0x64,0xe3,0x4d,0x19,0x30,0x0,0xc7,0x3f,0x35,
0xfd,0x31,0x41,0x21,0xa0,0xf8,0x88,0xc8,0x92,0xd6,0xcc,0xce,0xb5,0x1a,0x0,0xa0,
0x6b,0xbd,0xae,0x6b,0xad,0xae,0x63,0xb9,0x6,0xf2,0x58,0x1b,0xdc,0x79,0xcd,0xe1,
0xea,0x13,0xa2,0x7f,0xb3,0xfe,0xf8,0x6f,0x9c,0x28,0x6b,0x9c,0x28,0x45,0x0,0x26,
0x10,0x80,0xba,0xc9,0x22,0x4a,0xb5,0x93,0x85,0x75,0x93,0x85,0xf5,0xf,0xa,0x1b,
0xf6,0xa,0x9a,0x57,0x4b,0x5a,0x47,0x90,0x81,0x96,0xae,0xd2,0x96,0xb6,0x92,0xba,
0xba,0xbc,0x82,0x82,0x4,0x75,0xba,0x8f,0xe5,0xf2,0x4f,0xe1,0x4b,0xe6,0x54,0x65,
0xac,0x98,0xc0,0x20,0x78,0x62,0x14,0xd6,0x41,0x14,0x3,0x52,0x3d,0x3,0x4a,0xb9,
0x87,0xb6,0x24,0x34,0xb3,0x59,0x9b,0xd3,0x9a,0x90,0xdd,0xac,0xcb,0x6a,0x8c,0xcf,
0xac,0xd3,0x66,0x54,0x6b,0xd2,0x2b,0x35,0x69,0x65,0x71,0x69,0x25,0xea,0xd4,0x42,
0x75,0x4a,0x3e,0x1,0x20,0x1b,0x1,0x48,0xca,0x0,0x6,0xa2,0x12,0x68,0x0,0x22,
0xe2,0x13,0x69,0x0,0xe0,0x47,0xce,0x34,0x9a,0x50,0x0,0x40,0x6d,0x0,0x20,0x86,
0x0,0x10,0x15,0x18,0x4d,0x1,0x10,0xe1,0x1f,0x19,0x4e,0x3,0x10,0x1e,0xe2,0x8b,
0x32,0x72,0x80,0x90,0x40,0xe2,0x0,0x1,0xca,0x3,0x0,0x88,0x3,0x50,0x0,0xe0,
0xf4,0xab,0x48,0xfe,0x81,0xe9,0x57,0x92,0xe9,0xf7,0x26,0x11,0x88,0x0,0x40,0x4d,
0x3f,0xed,0x0,0xa,0xe2,0x0,0x87,0x1,0xa0,0xa6,0xdf,0x0,0x80,0xf4,0x10,0x0,
0x7c,0xf,0xc2,0x0,0xd5,0x80,0xf5,0xf9,0x87,0x6e,0xc0,0xfa,0xfc,0xa3,0x7,0xc0,
0x9d,0x1c,0xff,0x1e,0xc,0x17,0xf,0x67,0x17,0x2,0x80,0x40,0x4a,0x3,0xc0,0x7,
0x0,0x20,0x5,0x79,0x39,0xf0,0x0,0x0,0x34,0x1,0x7b,0x30,0x1,0x6e,0xa0,0x3d,
0x37,0xc4,0x8e,0x1b,0x66,0xc7,0x8d,0xb4,0xe3,0x46,0x83,0x9,0xd8,0x72,0x35,0xb6,
0xdc,0x78,0x64,0x40,0xd0,0x6a,0xb,0x26,0xe0,0x56,0xec,0xec,0x1e,0xcd,0x74,0x7,
0x13,0xf0,0x67,0x7a,0x28,0x99,0x1e,0x9e,0x4c,0x6e,0xf2,0x2d,0x78,0x57,0xe6,0x4e,
0xc1,0x5b,0x77,0xc8,0x57,0xa7,0x20,0x3,0x30,0xfd,0x4,0x0,0xf8,0x3c,0x75,0xfd,
0x53,0x30,0x81,0xdf,0x10,0x6,0xde,0x51,0xfd,0xe2,0x13,0x30,0x1,0xdf,0x8f,0x2e,
0xf8,0x9d,0x80,0x2f,0x8f,0x80,0xf7,0x86,0xbf,0x7,0x7,0x3f,0xa4,0x20,0x98,0x7e,
0x38,0xfe,0x73,0x6a,0xe2,0xaf,0xee,0xfd,0x89,0x77,0x93,0x65,0x70,0x84,0x7,0xfc,
0x8c,0x3d,0x75,0xfc,0xbb,0xa5,0x38,0x3a,0x3d,0xbb,0xcd,0xeb,0xb7,0x89,0xa9,0xf,
0xac,0x9b,0x2a,0x1e,0x7b,0xd0,0x5,0x73,0x4f,0x85,0x1f,0x9c,0xfe,0x5d,0x72,0xf6,
0xd3,0xab,0x4f,0xcc,0x3f,0x8,0x0,0x49,0xff,0x8b,0x70,0xfc,0xa3,0x46,0xc6,0x17,
0xf1,0x3b,0x26,0xe0,0x5c,0xa7,0x46,0x9f,0x7a,0xfa,0xd,0x0,0x88,0x28,0x52,0x98,
0x3c,0xfd,0x6f,0xe1,0x69,0x52,0x95,0x9a,0xeb,0x19,0xcb,0x94,0xc5,0x38,0xf1,0x73,
0x6e,0x5c,0x7f,0xfe,0xe7,0xfe,0x63,0xb6,0x45,0xf0,0x1b,0x78,0x71,0x70,0x3e,0x42,
0xf,0xe,0x8f,0x85,0x9f,0x3f,0x82,0x9f,0x7e,0x81,0xdf,0x80,0x9,0xa,0xd1,0x44,
0x44,0x54,0xf4,0xe7,0x74,0x6d,0xd4,0x75,0x6f,0xd4,0x81,0x1b,0x74,0xae,0xd6,0xb4,
0x2f,0x55,0xb7,0x2d,0xc2,0xb5,0x57,0x15,0x2e,0x3d,0x61,0xf3,0x33,0xd,0xe9,0x1f,
0x8e,0xff,0x72,0x2,0x40,0x59,0xc3,0x78,0x49,0xfd,0x78,0x71,0xfd,0x44,0x71,0xdd,
0x78,0x51,0xed,0x44,0x21,0x4c,0x7f,0xed,0x64,0x1,0xa5,0xba,0x87,0xf9,0xf5,0xc0,
0xc0,0x52,0x71,0xf3,0x70,0x49,0x4b,0x5f,0x49,0x73,0x67,0x49,0x73,0x5b,0x49,0x4d,
0x6d,0x4e,0x6e,0x5e,0x7c,0x54,0xba,0xa7,0xf9,0xda,0x3f,0xc2,0xf3,0x42,0xfe,0xc5,
0x7c,0xb8,0x24,0x86,0xa7,0x44,0x29,0x1f,0x0,0x13,0x0,0x49,0x5,0x42,0xf8,0xf4,
0x56,0x0,0x3,0x61,0xc0,0x40,0x76,0x8b,0x2e,0xab,0x29,0x3e,0xb3,0x41,0x9b,0x51,
0xab,0x49,0xaf,0xd2,0xa4,0x55,0xc4,0xa5,0x96,0xaa,0x53,0x8a,0x63,0x53,0xa,0x63,
0x93,0xf3,0x63,0x92,0x73,0x63,0x92,0xb2,0x63,0x12,0x33,0xa3,0x12,0x32,0xa2,0x12,
0xd2,0x22,0x13,0x52,0x23,0x75,0xc9,0x11,0xf1,0x49,0x11,0xf1,0x9,0xe1,0x5a,0x5d,
0x38,0x0,0x10,0xa7,0x5,0x0,0x42,0xd4,0x20,0x75,0x70,0x6c,0x6c,0x30,0xbc,0x9f,
0x9,0xaf,0x29,0x47,0x1f,0x5,0xc0,0x2f,0x32,0xcc,0x2f,0x3c,0x14,0x1,0x8,0xb,
0x86,0x5f,0x9a,0xf2,0x9,0x45,0x7,0x50,0x82,0xe0,0xf8,0x37,0x76,0x0,0x2c,0x0,
0x6,0x0,0x7c,0x8,0x0,0xaa,0xa3,0x0,0xa8,0xbc,0x30,0xff,0x20,0x0,0x28,0x37,
0x88,0x40,0x5e,0xa,0x9c,0x7e,0x2f,0xb9,0xc8,0x13,0xa4,0x77,0x0,0x7a,0xfa,0xa5,
0xa4,0x0,0x40,0x4,0x2,0x0,0x24,0xb4,0x3,0xe0,0xf4,0x13,0x1d,0xb,0x0,0xbd,
0x2,0xd2,0x3b,0x80,0xf0,0x28,0x0,0x4e,0x7,0x0,0xc8,0x1d,0x91,0x1,0x0,0xc0,
0x9b,0x30,0xe0,0x63,0xcf,0xf5,0xb3,0xe7,0x6,0xd8,0x73,0x83,0xec,0xf4,0x26,0x60,
0xcb,0x8d,0xb5,0x35,0x98,0x0,0x37,0xd9,0x56,0xf8,0xc0,0x56,0xb4,0xe4,0xe0,0xae,
0x61,0xb8,0x47,0x30,0xdc,0x3,0x99,0xee,0x94,0x9,0x78,0x32,0x4d,0x27,0x7f,0x72,
0xe5,0xd9,0xf,0xcc,0x1c,0x2f,0x5f,0xbf,0x8,0x5f,0x1c,0x4a,0x6e,0x3,0x8,0x3,
0xd4,0x4a,0xf4,0xf,0x82,0x37,0x29,0x13,0x80,0x20,0x4,0x26,0xf0,0xb9,0xcf,0xfb,
0xe4,0x1,0xa1,0x93,0xd7,0x3,0xce,0x7f,0xf,0x46,0x9f,0x9a,0xfe,0xf2,0x9c,0x3c,
0xd9,0xf4,0x8d,0x3b,0xcf,0xff,0x36,0x46,0x47,0x8e,0xff,0x48,0x17,0xaf,0x58,0xae,
0x54,0xcb,0x10,0x34,0x59,0x39,0xed,0xdc,0x96,0x97,0xb,0x32,0xba,0xb4,0xed,0x4b,
0x35,0x73,0xcf,0x86,0xe0,0xec,0x27,0xc7,0x3f,0x2,0xb0,0xba,0x33,0x45,0x1e,0x79,
0x40,0x2d,0x83,0x48,0xfa,0xc7,0xe9,0x87,0xe2,0xbb,0x3b,0xb2,0xb8,0x37,0xb2,0xb0,
0x3b,0xdc,0xd7,0xd3,0x5c,0x9a,0x99,0x3,0xc7,0x7f,0x22,0x79,0xe0,0x7,0xd3,0x7f,
0x74,0x2c,0xa4,0x20,0xe1,0xd0,0x45,0xde,0xf4,0x89,0xa0,0x14,0x91,0x77,0x3c,0xfc,
0x48,0xc,0x43,0x12,0xe7,0x20,0x8e,0xb3,0x71,0xaa,0x39,0x73,0x7d,0xe7,0x2f,0xe2,
0xba,0xe4,0xe0,0x18,0xf0,0x6f,0x53,0xc3,0xf,0xe0,0x11,0x7,0x0,0x6,0xe0,0x8f,
0xe8,0xc0,0x60,0x9d,0x3a,0xaa,0x66,0xbc,0xb0,0x63,0xad,0x6,0x0,0x80,0xcf,0xf6,
0x15,0x2,0xc0,0x42,0x15,0x64,0xb3,0xe6,0x59,0x1a,0x80,0xc6,0x49,0x72,0xfc,0x8f,
0xc3,0xf1,0x5f,0x5a,0x37,0x56,0x84,0x2,0x0,0xc6,0xb,0x41,0x35,0x13,0x5,0x44,
0xf9,0xd5,0x13,0x79,0xb5,0x8f,0xf3,0xeb,0x76,0xf3,0x9b,0x16,0x8a,0x9b,0x87,0x8a,
0x9b,0x7a,0x8b,0x9b,0x3a,0x8b,0x1b,0x5b,0x8a,0xaa,0x6a,0xe0,0x72,0x40,0x13,0x9e,
0x29,0x35,0xdd,0xfc,0x5f,0xb7,0x9e,0xff,0x87,0x80,0x5c,0x17,0xf8,0x6e,0x39,0x78,
0x44,0x82,0xea,0x0,0x12,0x81,0x10,0x7c,0x0,0x18,0xf0,0xe0,0xbb,0x78,0xc9,0xdc,
0xb5,0xa5,0x61,0x19,0xcd,0x9a,0xac,0xe6,0x78,0x60,0x20,0xa3,0x5e,0x93,0x5e,0xa3,
0x49,0xab,0x8a,0x4b,0x2d,0x57,0xa7,0x94,0xc6,0x22,0x3,0x5,0xb1,0x49,0x79,0xd1,
0x49,0x39,0x31,0x89,0x59,0x0,0x40,0x64,0x42,0x7a,0x94,0x2e,0x35,0x22,0x3e,0x5,
0x0,0x8,0xd7,0x26,0x86,0x69,0x12,0xc2,0x34,0xba,0x50,0x4,0x40,0x13,0xa,0x0,
0xc4,0x12,0x0,0x62,0x8,0x0,0xe8,0x0,0x51,0x81,0x51,0x91,0xb4,0x3,0x44,0x84,
0xf9,0x81,0x8,0x0,0x3e,0x61,0x21,0x3e,0xf8,0x9,0xc,0xc0,0xf4,0x7,0x2a,0x83,
0x21,0xff,0x60,0x4,0xf2,0xa,0xf2,0xf7,0xa,0xf4,0xf3,0x44,0x11,0x0,0xfc,0xc9,
0xf4,0xfb,0xc3,0xf4,0xeb,0x1,0xc0,0xe3,0x9f,0x8,0x1,0xf0,0xa2,0x1,0xc0,0x2,
0x40,0x1,0xa0,0x10,0xe3,0xf4,0xcb,0x45,0xa,0xb9,0x2b,0x46,0x20,0x99,0xeb,0x1,
0x0,0x52,0x7a,0xfa,0x11,0x0,0x9,0x46,0x20,0x7a,0xfa,0xf1,0x1,0xb8,0x3,0x7,
0x38,0xbe,0x0,0xb8,0x33,0x8f,0x0,0x20,0x90,0x10,0x0,0xa4,0x4e,0x7c,0x99,0x23,
0x9f,0x2,0xc0,0xd3,0x81,0x47,0x9b,0x80,0x3d,0xd7,0xd7,0x9e,0x8b,0x26,0x60,0x47,
0x99,0x0,0x27,0xd2,0x96,0x13,0x63,0xcb,0x51,0xdb,0x72,0x34,0xb6,0x1c,0x62,0x2,
0xfc,0x46,0x5b,0xe1,0xbe,0xad,0xb8,0xcc,0xc9,0x3d,0x8a,0xe1,0x1e,0xc2,0x70,0xf7,
0x63,0xb8,0x2b,0x19,0xee,0x9e,0xc,0xbe,0xd6,0x4,0x9e,0xe,0xba,0x5d,0xfd,0x2b,
0x78,0x6b,0xfe,0x9b,0x33,0x67,0xd,0xb7,0x1,0x14,0x0,0xa7,0x2f,0x7d,0xe,0x25,
0x18,0x0,0xf8,0xb5,0xea,0x9f,0xf1,0x55,0x1,0x1f,0x5c,0x89,0x9e,0x47,0x13,0x38,
0x8d,0x25,0x18,0xa6,0xbf,0xc,0x18,0x28,0xcd,0x85,0xed,0xa7,0x78,0xf0,0x62,0x68,
0x84,0xc4,0x2f,0x5c,0xa8,0x8c,0xe2,0x2b,0xe2,0xd8,0xee,0x3a,0x27,0xc6,0xda,0x5d,
0xd6,0xac,0x79,0x48,0xa5,0x77,0xe9,0x48,0xd6,0xe0,0x66,0x1b,0x6c,0x78,0xd6,0xa9,
0xe9,0xdf,0x23,0x9b,0x1f,0x6a,0xe5,0x4f,0x4,0xe9,0x1f,0x8e,0xff,0x45,0x92,0x7f,
0xc8,0xf4,0x8f,0x2e,0xec,0xd,0xcf,0x3e,0x1d,0x68,0x85,0x2f,0x9b,0x4d,0x82,0xe7,
0x62,0x48,0xf8,0xc1,0xc7,0x3f,0xf1,0x9,0xd0,0x24,0x6d,0xac,0xf9,0xa3,0x1f,0xaa,
0x5a,0x1d,0x7d,0xd2,0x78,0x9e,0x29,0x4c,0x69,0x92,0x93,0x5b,0xa2,0xad,0x6b,0x82,
0x95,0x20,0xc1,0xc2,0xaa,0xef,0xbd,0xdb,0x2f,0xfe,0x3a,0xb5,0x2e,0x22,0x37,0x31,
0x5,0xda,0xb0,0x3a,0x84,0x36,0x1,0x98,0x7e,0x10,0x58,0x41,0x52,0x62,0x6c,0xdd,
0x4c,0x51,0xc7,0x5a,0x35,0x2,0xb0,0x5a,0xdd,0xb6,0x5c,0xd5,0xba,0x58,0xd9,0x32,
0x5f,0x81,0xc,0xc0,0xea,0x13,0xba,0xef,0x24,0x84,0x9f,0xd2,0x7a,0x38,0xfe,0xc7,
0x8a,0xc1,0x1,0x6a,0xc7,0x8a,0x50,0x30,0xfd,0xa8,0x82,0xea,0xf1,0xfc,0xea,0xf1,
0xbc,0x2a,0xd0,0x64,0x5e,0xcd,0x93,0xdc,0xda,0x9d,0xbc,0xc6,0xd9,0xa2,0xa6,0xc1,
0xa2,0xa6,0x9e,0xe2,0xc6,0xf6,0xa2,0x86,0xe6,0xc2,0xb2,0x8a,0xf4,0xcc,0x6c,0x75,
0x68,0xb6,0xfb,0xdd,0x7,0xff,0xed,0xf6,0xd3,0xbf,0x9,0xcc,0x14,0x87,0x11,0x6,
0x64,0x42,0x11,0x8c,0x3e,0x30,0x20,0x11,0xb8,0x48,0xf8,0x2e,0xf0,0xb7,0x97,0xc2,
0x5d,0x5b,0x16,0x96,0xde,0xa4,0xc9,0x6c,0xd2,0x66,0x34,0x6a,0x80,0x81,0xb4,0x9a,
0xb8,0xd4,0x4a,0x75,0x4a,0x79,0x6c,0x4a,0x49,0x4c,0x72,0x51,0x4c,0x52,0x41,0x34,
0x30,0x90,0x98,0x1d,0x95,0x90,0x15,0xa5,0xcb,0x88,0xd4,0xa5,0x45,0xc4,0xa7,0x46,
0x68,0x93,0xc3,0xb5,0x49,0xe1,0x34,0x0,0xf1,0xc8,0x0,0xd,0x80,0x1a,0x1,0x88,
0x8e,0x21,0xd3,0x1f,0x15,0x0,0x0,0x44,0x62,0x4,0xc2,0xe9,0x8f,0x8,0xf3,0x5,
0x0,0x60,0xfa,0x41,0xa1,0xc1,0x2a,0x70,0x80,0x90,0x20,0x2,0x40,0x20,0x2,0x0,
0xd3,0x4f,0x9,0x0,0x8,0xf0,0x55,0x80,0x10,0x0,0x1f,0x72,0xfc,0xab,0x48,0xfe,
0x51,0x4a,0x7d,0x94,0x64,0xfa,0xbd,0x3d,0x50,0x0,0x80,0x97,0xbb,0xb7,0x27,0xe8,
0x78,0x0,0xe4,0x0,0x80,0x8c,0xe4,0x1f,0x70,0x0,0x0,0x40,0x8a,0xc7,0x3f,0xd,
0x80,0xe4,0x10,0x0,0x6e,0xfa,0x8,0xf4,0xed,0x0,0x60,0xfe,0x21,0x42,0x0,0x8,
0x3,0x34,0x0,0x72,0x47,0x9e,0x82,0x0,0xe0,0x6d,0xcf,0x55,0xda,0x73,0xd1,0x4,
0xec,0xb8,0x1,0x76,0xdc,0x60,0x3b,0x4e,0xa8,0x1d,0x27,0xdc,0x96,0x13,0x65,0xcb,
0x89,0xb5,0xe5,0xc4,0x1,0x0,0x36,0x1c,0x9d,0xd,0x37,0xc9,0xc6,0x65,0xcb,0xd6,
0x75,0xc5,0xde,0x2d,0x8e,0xe1,0x16,0xe,0x26,0xc0,0x70,0xf7,0x61,0xb8,0x7b,0x33,
0xdc,0x15,0xc,0xf3,0xe1,0x5f,0x5d,0xd9,0xf9,0x53,0x53,0xee,0xd7,0xf0,0xfd,0x59,
0x74,0xa,0x3a,0xf1,0xe5,0xd9,0x2f,0x4e,0x9c,0xc5,0x4a,0xf0,0xe5,0xc7,0xcc,0x77,
0x20,0x5,0xfd,0xda,0xe7,0x9f,0x61,0x25,0xfa,0xbe,0xea,0x37,0x9f,0xf9,0xbc,0x47,
0xbd,0x33,0x89,0x1d,0x0,0x1c,0x0,0x3e,0x43,0x87,0xb8,0xd7,0xf6,0xfe,0x34,0x3c,
0x43,0x12,0x10,0x26,0xf2,0x89,0x70,0xf1,0x8e,0xe1,0x49,0x35,0x4c,0x61,0xb1,0xad,
0x23,0xd4,0xdf,0x7a,0x66,0x42,0x6b,0x24,0xdc,0xfe,0x4e,0x3c,0xea,0xc1,0xe4,0xb3,
0x3f,0xbd,0xb6,0x37,0x45,0x85,0x1f,0x1c,0x7d,0x78,0xd4,0x99,0x2,0x40,0x3f,0xfd,
0x4b,0xb0,0xf8,0xdf,0x1d,0x81,0xe9,0x87,0xe3,0x7f,0x6c,0xbe,0xb,0xf6,0x3f,0x19,
0xf1,0x9,0xc9,0x64,0xf1,0xf,0xd3,0xf,0x3e,0x0,0x18,0x84,0x15,0xca,0xef,0x3e,
0xff,0xaf,0xa1,0xa5,0x1e,0xde,0x59,0x6c,0x79,0x96,0xb3,0x47,0xa6,0x83,0x28,0xdd,
0xc6,0x25,0xcd,0x82,0x97,0x6a,0xc6,0x49,0xbd,0x67,0x32,0xf3,0x86,0xe5,0xe3,0x7f,
0xca,0x29,0xd2,0xc1,0xc5,0x19,0x94,0x1,0xf0,0x81,0x68,0x34,0x81,0x60,0xf0,0x1,
0x10,0x60,0x90,0x9c,0xa9,0x6e,0x5c,0x28,0x6d,0x5f,0xad,0x22,0x0,0x54,0xb6,0x2c,
0x56,0x52,0xc,0xc0,0xe5,0x17,0xae,0x3e,0xa7,0x4a,0xeb,0x31,0xfd,0x97,0x2,0x0,
0xb5,0xa3,0x45,0xa0,0x9a,0xd1,0xc2,0x9a,0xd1,0x82,0x9a,0xb1,0x82,0xea,0xb1,0x82,
0xaa,0xb1,0x7c,0x9c,0xfe,0xf1,0xdc,0xaa,0xb1,0xdc,0xca,0xc9,0xdc,0xea,0x67,0x39,
0x35,0x3b,0xb9,0xd,0xd3,0x85,0xd,0xfd,0x85,0x8d,0xdd,0x45,0xd,0x6d,0x85,0x75,
0x8d,0xf9,0xe5,0x95,0x19,0x99,0x59,0xb1,0x1,0xd9,0xc2,0xdb,0x8f,0xfe,0xee,0xee,
0xe3,0xbf,0xf,0x4a,0x91,0xc0,0x25,0x31,0x3c,0x1d,0x24,0x13,0xba,0xc2,0xf4,0x4b,
0x5d,0x84,0xee,0x3c,0x1,0x30,0x0,0x30,0x78,0x79,0xba,0x1,0x3,0x69,0x4d,0x71,
0x19,0x4d,0x9a,0xf4,0x6,0x4d,0x5a,0x6d,0x5c,0x6a,0x95,0x3a,0xb5,0x22,0x36,0xa5,
0x2c,0x26,0xb9,0x24,0x26,0xa9,0x28,0x3a,0xb1,0x20,0x3a,0x31,0x37,0x2a,0x21,0x3b,
0x4a,0x97,0x19,0xa1,0x4b,0x8f,0x88,0x4f,0xb,0x8f,0x4f,0xd,0xd7,0x26,0x87,0x69,
0x88,0x9,0xc4,0xc5,0x87,0xa8,0xb5,0x21,0x6a,0x4d,0xb0,0x5a,0x13,0x12,0xa3,0xe,
0x8a,0x89,0x25,0x0,0x44,0x1b,0x1,0x10,0xe1,0x17,0x1,0xc,0x84,0xa3,0x3,0x84,
0xc1,0xcf,0xb1,0x51,0x0,0x50,0xc,0x18,0x0,0x8,0x20,0xd3,0xef,0x8f,0xe,0x10,
0xe0,0x67,0x4,0x80,0xf,0x1,0x40,0x75,0x18,0x0,0xca,0x1,0xf4,0x0,0xc0,0xff,
0xff,0xb4,0x3,0x28,0xf4,0xe,0x20,0x27,0xd3,0x2f,0x13,0xca,0x64,0x38,0xfd,0x34,
0x0,0x52,0x81,0x4,0x4,0xd3,0x8f,0x22,0xf9,0x87,0x38,0x80,0x1b,0xbe,0x1,0x83,
0x3b,0x50,0xa,0x0,0x11,0xa,0x77,0xa0,0x54,0x3,0x16,0xea,0x1d,0xe0,0x78,0x0,
0xd0,0x4,0x1c,0x10,0x0,0x34,0x1,0x2,0x80,0xa,0x4c,0xc0,0x8e,0xeb,0x6f,0xc7,
0x9,0xb4,0xe3,0x84,0xd8,0x72,0xc2,0x6c,0x69,0x13,0x88,0xb3,0xe1,0x68,0x6d,0x28,
0x6,0x78,0xf5,0x36,0x68,0x2,0x95,0x4e,0x6e,0xd1,0xc,0xb7,0x50,0x86,0x9b,0x3f,
0x6d,0x2,0x2e,0xd1,0x16,0x57,0x76,0xfe,0xe4,0x66,0xeb,0x4f,0xe0,0x4e,0x0,0x5e,
0x98,0x84,0xb9,0xc7,0xe,0x40,0x31,0x0,0x3a,0x77,0xe2,0x2d,0xef,0x9f,0x52,0x26,
0x0,0xaf,0xa,0xfc,0x41,0xf5,0x16,0xb5,0x12,0xfd,0x1e,0x1c,0xff,0x15,0xb9,0xf9,
0x15,0xf9,0xf9,0xd6,0x8f,0x7f,0xc2,0x9c,0x7b,0x3f,0x2c,0x52,0xe6,0x17,0xe6,0xaa,
0x8c,0xe4,0x2b,0x62,0xd9,0xee,0xf1,0x4e,0xec,0x9,0x53,0xc6,0x7d,0x13,0xdf,0x52,
0x49,0xfe,0x40,0x4a,0xcf,0x5a,0xe3,0xfc,0xf6,0x8,0x8e,0xfe,0xde,0xd4,0xea,0x2e,
0xb6,0x5e,0x7a,0xed,0x43,0x1e,0x78,0x5e,0xda,0x19,0x5f,0xdc,0x19,0x5b,0xd8,0x19,
0x1,0x61,0xf2,0x41,0xd,0xcf,0xef,0xe,0xf5,0x74,0x36,0x96,0x66,0xe5,0x50,0xbb,
0x7f,0xda,0x1,0x48,0xa,0x12,0xd,0x5e,0xe2,0x2e,0x7e,0xe6,0x5f,0x2c,0x54,0xe4,
0x33,0x25,0xf9,0x8e,0x6e,0x79,0xb6,0xc2,0x5c,0x4b,0x7e,0xb6,0xb9,0x20,0xdb,0x42,
0x94,0x63,0xc3,0xcf,0x33,0xbb,0xbb,0xf9,0x3f,0x98,0xeb,0xef,0xe5,0x65,0xc1,0x9b,
0x93,0x5a,0x68,0xc3,0xa4,0x9,0xd0,0x0,0x50,0xc,0x64,0x16,0xeb,0x1a,0x17,0x4b,
0xdb,0x56,0xab,0xda,0x56,0x2a,0x5b,0x81,0x81,0x85,0x8a,0xe6,0xf9,0x72,0xa0,0x14,
0x6e,0xbe,0x1a,0xa7,0xca,0x20,0xf7,0x3,0x3,0x75,0x63,0xc5,0x20,0x32,0xfd,0x85,
0xd5,0xa3,0x5,0xd5,0xa3,0xf9,0x55,0xa8,0xbc,0xaa,0xb1,0xbc,0x4a,0x98,0xfe,0xb1,
0xdc,0x8a,0xb1,0x9c,0xca,0xa9,0xdc,0xea,0xe7,0x39,0x35,0xdb,0x39,0xd,0x50,0x8e,
0xfb,0xa,0xea,0x3b,0xb,0xea,0x5b,0xb,0x6a,0x1b,0xf2,0x4a,0xcb,0xd3,0x52,0xd3,
0xa3,0x7c,0xb,0x38,0xf0,0x6b,0x68,0x26,0xf,0xff,0x21,0x24,0x41,0xe,0x6f,0xe,
0x20,0x3,0x10,0x81,0x8,0x0,0xee,0x5c,0xbe,0x7,0x5f,0x0,0x7f,0x78,0x7b,0x7b,
0x68,0xca,0x43,0x80,0x81,0xf4,0xc6,0xb8,0xb4,0xfa,0xb8,0xb4,0x5a,0x35,0x30,0x90,
0x52,0x11,0x9b,0x5c,0x1a,0x93,0x54,0x1c,0x9d,0x54,0x18,0x9d,0x98,0x1f,0x95,0x90,
0x13,0xa9,0xcb,0x8a,0xd0,0x65,0x20,0x0,0xda,0xd4,0x70,0xd,0x0,0x90,0x14,0x16,
0x97,0x10,0x1a,0xa7,0xb,0x51,0xc7,0x87,0xc4,0x6a,0x82,0x51,0xea,0x20,0xf8,0x5a,
0x77,0x4,0x20,0x26,0x30,0x2a,0x3a,0x20,0x32,0xd2,0x1f,0x4,0x8f,0x28,0xd1,0x0,
0x84,0x21,0x0,0xa1,0x7a,0x13,0x38,0xe4,0x0,0x1,0x64,0xfa,0xfd,0x61,0xfa,0xf5,
0x0,0xf8,0xca,0xfd,0xc0,0x1,0x7c,0x60,0xfa,0x11,0x0,0x1f,0xca,0x1,0x94,0xb4,
0x3,0xc0,0xf4,0x23,0x0,0x5e,0x6e,0xe8,0x0,0x0,0x80,0xa7,0xd8,0x13,0xa6,0x9f,
0x8,0x23,0x10,0x0,0x20,0xd7,0x3,0x20,0x73,0x91,0x82,0xc0,0x1,0x10,0x0,0x3e,
0x1,0x0,0xbe,0x5,0x88,0xe7,0x8e,0x82,0xef,0x41,0xa1,0x1,0x10,0x7b,0x70,0xc8,
0x13,0xa0,0x6c,0xea,0x9,0x8,0x57,0x10,0xd,0x80,0x51,0x3,0x36,0x72,0x0,0xbe,
0xd4,0x11,0x65,0x4,0x0,0x17,0x0,0x0,0x13,0x0,0x0,0x7c,0xec,0x38,0x7e,0x76,
0x9c,0x0,0x3b,0x4e,0xb0,0x2d,0x27,0xd4,0x96,0x32,0x1,0x76,0xac,0xd,0x87,0x62,
0x40,0x67,0xc3,0x49,0xb4,0x11,0x6c,0xda,0xb8,0xae,0xdb,0xb9,0x69,0x9c,0xdd,0x22,
0x9c,0xdd,0x82,0x18,0x6e,0x3e,0xc,0x37,0x6f,0x86,0x9b,0x82,0x61,0xd5,0xf3,0xf6,
0x95,0xdd,0x7f,0x7b,0x4f,0x7c,0x8e,0x34,0x81,0x53,0xa4,0x4,0x7f,0x45,0x1,0x0,
0x59,0xe8,0x53,0xbb,0xf7,0x28,0x13,0xf8,0xb5,0x8a,0x7e,0x55,0x0,0xde,0x99,0x44,
0x7,0x0,0x6,0x74,0x6d,0xf0,0xec,0xe7,0xbf,0xf6,0x2f,0x65,0x7,0x86,0x89,0x7d,
0xc3,0x5d,0xbc,0xa3,0x79,0x32,0xd,0x53,0x94,0x6e,0xef,0xf8,0xe2,0x26,0xbc,0xfb,
0xa2,0x6e,0xc,0xae,0x9e,0xc8,0x1f,0x7d,0xd0,0x5,0x73,0x8f,0xc7,0x3f,0x2c,0xfe,
0x49,0xfa,0x5f,0xde,0x9e,0x58,0x82,0xe3,0x1f,0x1e,0xf4,0xc7,0xf0,0x33,0xbe,0xf0,
0x2,0xa6,0x1f,0xc3,0xcf,0xfc,0x2e,0x8c,0xfe,0x30,0x0,0x30,0xf3,0xb8,0xbf,0xb9,
0xa2,0xa,0xf2,0xf,0x0,0x40,0x3d,0xf9,0xc,0xa3,0x9f,0x10,0x15,0x9b,0x10,0x17,
0x6d,0xf6,0xf0,0x87,0xaa,0x3e,0x7,0x65,0x9,0x57,0x56,0xec,0xec,0x51,0x62,0x2f,
0xe8,0x32,0xe7,0x57,0x98,0x71,0xb,0xef,0xb9,0x16,0xdb,0xa8,0x2a,0x5,0xbe,0x65,
0xae,0x8a,0x3a,0xa7,0xdb,0xcf,0xfe,0xb3,0xc7,0xec,0xe5,0xfc,0xd4,0x34,0x68,0xe,
0x0,0x40,0x74,0x40,0x30,0x3c,0xaf,0x16,0xe,0xdf,0x78,0xee,0x1f,0x8,0x7f,0xc4,
0x4,0x87,0xe4,0xd6,0x27,0x37,0x2d,0x95,0x1,0x3,0xad,0xcb,0x15,0x2d,0x4b,0xc8,
0x40,0xe3,0x5c,0x19,0x30,0xd0,0x30,0x5d,0x5a,0x3f,0x59,0x52,0x7,0xc,0x8c,0x3,
0x3,0xe0,0x0,0x85,0xd5,0x23,0x5,0x55,0xc3,0xf9,0x55,0x23,0xf9,0x95,0xc3,0x79,
0x0,0x40,0xe5,0x48,0x6e,0xc5,0x28,0x4e,0x7f,0xf9,0x68,0x36,0xa8,0x62,0x2a,0xbb,
0xf2,0x45,0x36,0x58,0x41,0xfd,0x58,0x41,0x5d,0x6f,0x41,0x5d,0x47,0x7e,0x5d,0x2b,
0xfc,0x50,0x40,0x4e,0x49,0x59,0x6a,0x72,0x6a,0x84,0x77,0x91,0xd3,0x8d,0xe7,0x7f,
0x69,0xb6,0xf9,0x8f,0xa1,0x5a,0x4f,0xb8,0x20,0x83,0xa5,0x10,0xd5,0x1,0xdc,0xb8,
0x7c,0x70,0x0,0x0,0x0,0x30,0x50,0xfa,0x48,0x34,0xe5,0xa1,0xa9,0x8d,0xea,0xb4,
0xc6,0xb8,0xd4,0x3a,0x75,0x4a,0x4d,0x6c,0x4a,0x55,0x6c,0x72,0x45,0x4c,0x52,0x69,
0x74,0x62,0x71,0x54,0x42,0x41,0x54,0x42,0x6e,0xa4,0x2e,0x3b,0x2,0x18,0xd0,0xa6,
0x87,0x6b,0x91,0x81,0x30,0x4d,0x72,0x68,0x5c,0x62,0xa8,0x3a,0x21,0x44,0xad,0xb,
0x89,0xd5,0x22,0x0,0x31,0x71,0x41,0x60,0x2,0x14,0x3,0x8,0x40,0xd4,0x1,0x0,
0xe1,0xe1,0xbe,0x61,0x61,0x3e,0x4,0x0,0x15,0x2a,0x58,0x15,0x2,0xa,0xc2,0x8,
0x14,0x4,0xc7,0x3f,0x2,0x60,0x60,0x40,0xe1,0xef,0x2b,0x7,0xc1,0xf4,0x23,0x0,
0xc8,0x80,0xd4,0x7,0x19,0xa0,0x1,0x50,0x7a,0x7b,0x28,0xbd,0x61,0xfa,0x9,0x0,
0x5e,0x38,0xfd,0x4,0x0,0x64,0x40,0x81,0x82,0xe9,0x27,0x0,0xc8,0x85,0x32,0x10,
0x5,0x80,0x8c,0x1c,0xff,0x0,0x80,0x94,0xef,0x21,0xe5,0x81,0xe,0x0,0x80,0xaf,
0x81,0xc0,0xe9,0x7f,0x9,0x0,0x72,0x7,0xac,0xdf,0xff,0x90,0x15,0x10,0xe4,0x1f,
0xf,0x92,0x7f,0x24,0x4e,0x6,0x0,0x78,0xe0,0x0,0xc4,0x4,0x68,0x0,0x30,0x5,
0xe9,0x1,0x8,0xb2,0x45,0x13,0x8,0xb7,0x65,0x47,0xda,0xb0,0x63,0x6c,0xd8,0x6a,
0x1b,0xb6,0xc6,0x86,0x4d,0x99,0x40,0x8d,0x8d,0xcb,0xbe,0x8d,0xa8,0xd6,0xd1,0x2d,
0xc6,0xd9,0x2d,0xd4,0xd9,0xcd,0xdf,0xd9,0x4d,0xe5,0xec,0x6,0xef,0x5b,0x86,0xda,
0xc0,0xbb,0x32,0x37,0xfa,0x7f,0x68,0x72,0xed,0x2a,0x3c,0x22,0x7a,0xf6,0xc4,0x9,
0x0,0x0,0x30,0x38,0xf3,0xc5,0x17,0x48,0xc2,0xe9,0x13,0x6f,0x2b,0x7e,0x46,0x31,
0xf0,0x5b,0xfc,0xa1,0xd5,0xdf,0x7d,0xae,0x7a,0x9f,0x5e,0x83,0xf2,0x56,0x3f,0xb5,
0xdc,0xfa,0x51,0x54,0x8c,0xa7,0x5f,0xa8,0xab,0x2a,0x52,0xa0,0x88,0xe5,0x78,0x68,
0x9d,0xb9,0x9d,0x16,0xe,0xdb,0xb7,0x14,0xa5,0xc2,0x8c,0xee,0xf8,0x96,0x85,0xca,
0xd9,0x67,0x83,0xd0,0x7d,0xd7,0xf6,0xa6,0x57,0x49,0xf8,0x59,0x79,0x1,0xf9,0x7,
0x0,0x80,0xd7,0x5c,0xc6,0x16,0xb6,0x47,0x61,0x37,0xa,0xd3,0x3f,0xf,0xe,0x40,
0x85,0x1f,0x38,0xfe,0xf7,0x86,0x86,0x67,0x3a,0xe0,0x29,0xa3,0x4c,0x5d,0x22,0x24,
0x9f,0x14,0xc8,0x3f,0x78,0xf6,0x63,0xf,0xe,0xcd,0x57,0xdc,0xd9,0xfe,0x2f,0xa1,
0xb5,0x1e,0x8a,0x12,0xa6,0xa4,0xdc,0x51,0x5c,0x69,0xcb,0xdc,0xba,0xc5,0x58,0xbe,
0xc9,0xae,0x30,0x91,0xd4,0x38,0x47,0xb5,0x79,0x27,0x74,0x86,0x24,0xb6,0x85,0x6,
0xe,0x72,0x6f,0xec,0xfc,0x65,0x40,0xbf,0x33,0x55,0x6,0xe0,0xd4,0x7,0x13,0x88,
0xf0,0xc3,0xe9,0xf,0xf7,0xd,0x80,0x3f,0x62,0xc3,0x42,0x8b,0x3a,0xd2,0x81,0x81,
0x16,0x4,0xa0,0xa2,0x69,0xa1,0xbc,0x69,0xbe,0xac,0x71,0xf6,0xff,0xa7,0xeb,0x3d,
0xa0,0xe3,0x3c,0xcf,0x33,0x6d,0x3a,0x9b,0x6c,0x9a,0xd3,0x1d,0xaf,0xf3,0xa7,0xc7,
0xd9,0xd8,0x8e,0x9d,0xc4,0x96,0x6d,0x59,0x92,0xad,0x46,0x91,0x12,0xc5,0x4e,0x82,
0x20,0x7a,0xaf,0x33,0x83,0x3e,0x3,0xc,0x30,0xc0,0x0,0x3,0x60,0xa,0xa6,0xf7,
0xde,0x2b,0x30,0xe8,0xbd,0xf7,0x46,0x2,0x24,0x2a,0x49,0xb0,0x77,0x75,0x51,0xec,
0xbd,0xe1,0xbf,0xdf,0xef,0x3,0x29,0xa5,0xec,0x39,0xf7,0xf9,0xce,0x90,0x2b,0xd9,
0x49,0xf6,0xbe,0x9e,0xf2,0x96,0xe7,0x1d,0x3a,0x74,0x65,0x68,0xe6,0x12,0x1,0x60,
0xfa,0x3c,0x32,0x40,0xff,0xe4,0x99,0x5e,0x0,0x30,0x1,0x0,0x4e,0x13,0x0,0xc6,
0x4e,0x77,0x8d,0x2,0x0,0xc2,0x0,0x5,0xc0,0x99,0x8e,0xe1,0x33,0xed,0x23,0x57,
0xda,0xc7,0x9e,0xb6,0x4f,0x3c,0xe8,0x98,0x3e,0xdb,0x33,0x7d,0xac,0x67,0x6a,0xb1,
0x7b,0x6a,0xbe,0x7b,0x6c,0xaa,0xbd,0xb7,0xbf,0x3e,0xd4,0x60,0x91,0xc,0xb2,0xe2,
0x1e,0xff,0x61,0xd6,0xb5,0x1f,0x59,0x5c,0x64,0xb0,0x1c,0x76,0x88,0xc1,0x0,0x0,
0x80,0x40,0x82,0x80,0x5b,0x56,0x5d,0x5a,0x86,0xad,0x63,0xdf,0xa8,0xb9,0x71,0xd6,
0xdd,0x3c,0xeb,0x69,0x9c,0x76,0x87,0x27,0x5c,0xe1,0x31,0x57,0xc3,0xb0,0xb3,0x7e,
0xd0,0x51,0xdf,0xef,0x8,0xf5,0xd8,0x83,0x5d,0xb6,0x60,0xa7,0x3d,0xd0,0x66,0xf5,
0xb7,0x58,0xfc,0xcd,0x16,0x6f,0xa3,0xd9,0xdb,0x60,0xf2,0xd4,0x9b,0xc0,0x0,0x2e,
0xe3,0x83,0x1,0x97,0xcf,0xe0,0xf2,0xea,0x1,0x80,0xc3,0xa5,0x83,0x36,0x0,0xb0,
0x6b,0xe0,0x7e,0xa,0x0,0x8a,0x1,0xb,0x61,0xc0,0x64,0x54,0x10,0xd1,0x0,0xe8,
0x29,0x0,0xa8,0x24,0x40,0xea,0x1f,0xcd,0xb,0x0,0xd4,0xff,0x19,0x0,0xa5,0x50,
0xa9,0xa8,0x85,0x68,0x0,0x28,0x6,0x28,0x0,0x64,0x14,0x0,0xd2,0x2a,0x8,0xee,
0x27,0x0,0x10,0x51,0xee,0x97,0x54,0x40,0x22,0x49,0x39,0x1,0x80,0x8,0xee,0x7f,
0x1,0x0,0x18,0x10,0x51,0x19,0x80,0x88,0x2b,0x20,0x97,0x80,0x11,0xfe,0xbf,0x91,
0x1,0x88,0xfb,0xff,0x1b,0x0,0x74,0x3,0xf0,0x4d,0x0,0xc4,0x2f,0x0,0x90,0xe6,
0x11,0x6,0x14,0x79,0x5c,0x65,0x2e,0x57,0x9d,0xcb,0x25,0x55,0x50,0x4e,0x89,0x31,
0xa7,0xc4,0x92,0x53,0x62,0x63,0x95,0x38,0x58,0x48,0x2,0x25,0x5e,0x56,0x89,0x9f,
0x55,0x12,0x64,0x96,0x84,0x58,0xe5,0x5f,0xb1,0xf8,0x37,0x73,0x4,0x78,0x66,0xc6,
0x5e,0x24,0x30,0x16,0x55,0x6b,0x8a,0xaa,0xe5,0x45,0xd5,0xd2,0x22,0xd6,0x91,0xb7,
0xa2,0xd6,0xff,0x57,0xaa,0x6c,0x27,0x46,0xa7,0x90,0x24,0x40,0x2d,0x86,0xa2,0x1c,
0xda,0xfd,0x1,0x81,0xe1,0x83,0x8c,0xb7,0x7f,0xae,0xf9,0xe1,0x2b,0xea,0x1f,0xfc,
0x4c,0xf9,0x3,0x2c,0x89,0x6e,0x56,0xbd,0x4e,0x4a,0xa0,0xae,0xa9,0x7a,0x9c,0xfd,
0x94,0xcc,0xa7,0xe9,0xad,0xd5,0x78,0xb7,0x1e,0x3,0xda,0xc5,0x9e,0x62,0x41,0x28,
0xbf,0xf0,0x76,0x52,0xf1,0x85,0x2c,0xd3,0x38,0x69,0x7f,0xd7,0x6e,0x1c,0x41,0x8c,
0x27,0x8d,0x2f,0xea,0x1f,0xc4,0x7e,0x7a,0xcd,0xe7,0x45,0xef,0x4b,0x62,0xff,0x13,
0xe2,0xfe,0x8f,0x9f,0xa2,0xee,0x3f,0xf3,0x31,0x5,0xc0,0x47,0x4f,0x4f,0x2d,0x1f,
0x9d,0x7d,0xb9,0xfe,0x43,0xac,0xef,0xda,0xb8,0xf3,0x55,0xb9,0x76,0xb0,0xe4,0xf3,
0x2d,0x9a,0x51,0xbe,0x78,0xb8,0xa8,0x66,0x2c,0xaf,0x62,0x3e,0xbb,0xe0,0x49,0x6c,
0xee,0xa3,0x68,0xce,0xa5,0x24,0xf9,0x7c,0x59,0xe0,0x84,0xa1,0xff,0x62,0x78,0xec,
0x52,0x7b,0xff,0xc9,0xb0,0xec,0x62,0x76,0xfc,0xb3,0x3f,0x76,0x1f,0x92,0xe2,0xa8,
0x9c,0xd7,0x6c,0xa3,0x62,0xbf,0x1e,0x49,0x0,0xc,0xd0,0x72,0x59,0x4d,0x83,0x6b,
0x6d,0x73,0x9f,0x8f,0x0,0x3,0x8,0x8d,0xc1,0xa1,0x8f,0x86,0x66,0xaf,0xe,0x4e,
0x5f,0x1e,0x0,0x0,0x53,0xe7,0xfb,0x27,0xcf,0x91,0xea,0x9f,0x84,0x7f,0x1a,0x80,
0x53,0xdd,0xa3,0xa7,0xba,0x46,0xc1,0xc0,0xe9,0xce,0xd1,0x33,0x9d,0xc3,0x67,0x36,
0x0,0xc0,0xff,0x8e,0xc3,0x57,0xdb,0x46,0x9f,0xb5,0x8d,0xdf,0xeb,0x98,0x3a,0xdd,
0x3d,0xb9,0xda,0x35,0xb9,0xd0,0x3d,0x39,0xd7,0x35,0x3a,0xd1,0xd6,0xdb,0x7,0x6,
0xcc,0xc2,0xb1,0x8c,0xd8,0x27,0xbf,0xcf,0xf8,0xfc,0xdf,0xcc,0x36,0x39,0x86,0xa9,
0xe0,0x64,0x4,0x2,0x7f,0x15,0xb7,0xb4,0xba,0x8c,0x7,0x0,0x4,0x25,0xa5,0x60,
0x40,0xae,0xae,0xf1,0x8e,0x1a,0xc3,0x33,0xce,0xa6,0x59,0x77,0xe3,0x94,0xb,0xc,
0x34,0x8c,0x3a,0xeb,0x87,0x1d,0x60,0x20,0xd8,0x67,0xb,0x76,0xdb,0x2,0x5d,0x36,
0x7f,0xbb,0xd5,0xdf,0x6a,0x1,0x3,0xde,0x26,0xb3,0x37,0x6c,0xf6,0x80,0x81,0x90,
0xd1,0x1d,0x34,0x82,0x1,0x0,0xe0,0x4,0x0,0x1e,0xbd,0xc3,0xad,0xb3,0x3,0x0,
0xa7,0xd6,0xe6,0xd0,0xe0,0x8d,0x3,0xab,0x4d,0xd,0x6d,0xb8,0xdf,0xac,0x34,0x9b,
0x95,0x26,0x93,0xc2,0x68,0x54,0x18,0xd,0x72,0x83,0x41,0xf6,0x2,0x0,0xa9,0x5e,
0x27,0xd5,0x69,0xeb,0xb4,0x0,0x40,0x23,0xd1,0x20,0x3,0xa8,0xc5,0x6a,0x48,0x25,
0x52,0x41,0x4a,0x21,0xa4,0xa4,0x18,0x50,0x10,0x6,0x6a,0xe4,0xf2,0x6a,0x48,0x6,
0xc9,0x4,0x52,0x88,0x6,0x40,0xfa,0xd,0x0,0x8,0x3,0x70,0x3f,0x5,0x80,0xa4,
0x5c,0x8,0x1,0x0,0xa2,0x32,0x88,0xb8,0x5f,0x54,0x5a,0x4d,0x84,0x31,0x10,0x2f,
0x0,0x0,0x3,0xe4,0x16,0x58,0x71,0x25,0x11,0x87,0xf,0x51,0xa7,0x80,0x2a,0x88,
0xc8,0x26,0xc0,0x46,0x7,0xfc,0x2,0x80,0x32,0x71,0x41,0x19,0x5,0x40,0x29,0x32,
0x0,0x5,0x0,0x57,0x9e,0x4b,0x0,0x20,0x49,0x20,0x87,0xab,0xcb,0x29,0x31,0xe4,
0x94,0x98,0xc0,0x0,0x8b,0x24,0x1,0x27,0x9d,0x4,0x98,0x25,0x1,0x26,0x18,0x28,
0x1d,0x67,0x56,0x3c,0x67,0x55,0xcd,0xe6,0xb,0x5c,0x45,0x2,0x4b,0x91,0x40,0x57,
0x24,0x50,0x15,0x9,0x64,0x98,0x39,0x97,0x8b,0xbb,0x32,0x71,0x17,0xfe,0x2e,0x35,
0x1e,0x93,0x74,0xf7,0x2,0x0,0xe4,0x1,0x94,0x40,0x48,0x2,0xa4,0x2b,0xd8,0x4e,
0xe,0x47,0x6c,0x74,0xc3,0xd4,0xbe,0x18,0x1,0x40,0x72,0x39,0x31,0xf1,0xf1,0x77,
0x1c,0x41,0x99,0xda,0xcc,0x57,0xd8,0x78,0x75,0x2e,0x6e,0xad,0xaf,0xa8,0x7c,0x8c,
0x99,0xff,0x3c,0xb1,0x66,0x92,0x5b,0x7f,0xd4,0x39,0x7b,0x75,0xe8,0xd2,0xfd,0x13,
0x74,0xf5,0xff,0xc5,0x33,0x9c,0x75,0xa3,0xdd,0x4f,0xd5,0x3f,0x4f,0xce,0x7f,0x4a,
0x65,0x0,0xaa,0xfe,0x39,0x3,0xd3,0x93,0xfa,0x87,0x84,0xff,0xd3,0x97,0xef,0x1e,
0x3f,0x34,0x3c,0xd6,0x59,0x8f,0x1b,0x51,0x74,0xf1,0x43,0x84,0x4b,0x8f,0x21,0xaf,
0x2b,0xf3,0xf6,0xff,0x95,0x1d,0xcf,0x91,0xd,0x73,0x85,0xa3,0x5,0x82,0xc9,0x1c,
0xee,0x85,0xd4,0x9c,0xcf,0xa2,0xb3,0x97,0xa3,0x38,0x4f,0x93,0x75,0x57,0xaa,0x9b,
0x2e,0xd8,0x27,0x3f,0xeb,0x5c,0xbd,0x39,0x79,0xe4,0xd3,0xa1,0xee,0x63,0xc1,0x8a,
0x4f,0xf6,0xa4,0x3c,0xfa,0x5e,0x78,0xc8,0x8a,0x43,0xd4,0x2e,0x3,0xe9,0x4,0xc0,
0x0,0x96,0x65,0xac,0x14,0x0,0x40,0xc2,0xef,0xb5,0xd,0x9f,0xeb,0xa0,0x0,0x18,
0x39,0xf4,0xe9,0xf0,0xec,0xc7,0x2f,0x0,0xb8,0x4,0x0,0xfa,0x0,0x0,0xaa,0x7f,
0xda,0xfa,0xd4,0xb7,0xb,0x1a,0x39,0xd9,0x39,0x72,0xaa,0x73,0xe4,0x74,0xc7,0x30,
0x51,0xfb,0x10,0x51,0xdb,0xe0,0xe9,0xd6,0xe1,0x8f,0xdb,0x46,0x9e,0xb7,0x8e,0xdd,
0x69,0x9f,0x38,0xd9,0x35,0xb9,0xd2,0x35,0x71,0xb4,0x73,0xe2,0x10,0x5e,0x9,0x68,
0xed,0xea,0x9,0xfa,0x43,0x46,0xc1,0x54,0x72,0xcc,0xb3,0xdf,0xcd,0xf9,0xe8,0x15,
0xb,0x66,0xaa,0x88,0x50,0x29,0x54,0x81,0x1,0x12,0xfe,0x1,0x0,0xb7,0xb4,0xb2,
0x84,0x8b,0x72,0x48,0xa1,0xad,0xf5,0x8e,0x9a,0xc2,0xb3,0xae,0xf0,0x8c,0x2b,0x3c,
0xe5,0x6c,0x18,0x77,0xd6,0x8f,0x3a,0x42,0x43,0xf6,0xd0,0x80,0x3d,0xd8,0x6b,0xb,
0x74,0x5b,0xfd,0x9d,0x56,0x9a,0x1,0x6f,0xb3,0x19,0xb7,0x2e,0x3d,0x61,0x93,0xbb,
0x9e,0x0,0xe0,0xa,0x18,0x5c,0x7e,0x3d,0x0,0x70,0x78,0x74,0x90,0xdd,0xa5,0xdd,
0x0,0xc0,0xa1,0xb1,0xda,0xd5,0x16,0x30,0x60,0x55,0x9b,0x11,0xfe,0xe1,0x7e,0xb3,
0x82,0x2,0x40,0xe,0xd1,0x0,0xe8,0x21,0x1d,0x5,0x80,0x4e,0xaa,0xd5,0x4a,0x0,
0x0,0xc5,0x80,0x98,0x30,0x40,0x3,0xa0,0xa2,0x1,0xa8,0x85,0x14,0x8a,0x1a,0x48,
0xae,0x78,0x1,0x80,0x9c,0x2,0x40,0x56,0x55,0x7,0x49,0x2b,0x25,0x44,0x7c,0x7c,
0xc5,0x0,0xa0,0xae,0x42,0x44,0x54,0xe,0x9,0x25,0x3c,0xa8,0x96,0xa8,0xac,0x6,
0x0,0x88,0x4b,0x21,0x1a,0x0,0x1,0x11,0x95,0x1,0xbe,0xe1,0xfe,0xd,0x0,0xa8,
0x73,0xa0,0x34,0x0,0xe5,0x2f,0x0,0xe0,0x7d,0xd,0x40,0xfe,0xb,0x0,0xf2,0xbe,
0x6,0x40,0xb1,0x1,0x40,0x89,0x36,0xa7,0x84,0x24,0x1,0x56,0x89,0x99,0x55,0x62,
0x65,0x15,0x3b,0x58,0xc5,0x6e,0x66,0xb1,0x77,0x3,0x80,0x92,0x10,0x93,0xf7,0x5,
0xb3,0xe2,0x4e,0x4e,0x55,0xb0,0x50,0xe0,0x20,0x49,0x40,0xa0,0x29,0x12,0x28,0x8a,
0x4,0xd2,0xa2,0xdc,0xa9,0xad,0x38,0x21,0x97,0x62,0x7c,0x3f,0x1e,0xb7,0xe6,0x77,
0x92,0x24,0xf0,0xd,0x6,0xb6,0x7d,0x98,0xf4,0xee,0x2f,0xa8,0x24,0x80,0x42,0xe8,
0x57,0xca,0x7f,0xdb,0x34,0xd8,0x8f,0xb3,0x9f,0xdf,0xe1,0x9f,0xde,0x63,0xb4,0xd6,
0x2a,0x2d,0xe5,0x32,0x7b,0xa9,0xd8,0x5d,0x5c,0xed,0x2f,0x60,0x7f,0x94,0xca,0xbe,
0x96,0xa6,0x1d,0x16,0xf7,0x9e,0x6c,0x5a,0xfe,0x62,0x6,0x15,0xe,0x15,0xfe,0x2f,
0x7f,0x41,0x56,0x7e,0xe8,0xd2,0xff,0x6b,0xf7,0xa3,0x39,0xfe,0xf8,0x9,0x9,0xf9,
0x34,0x0,0x1f,0x3d,0xc3,0xf7,0xd4,0xa9,0x8b,0xb,0x68,0x30,0x9a,0x7d,0xe4,0xe8,
0x3f,0x11,0x71,0x3f,0xd9,0x1,0xb0,0xf7,0xca,0x93,0x9e,0xfc,0x1f,0xc3,0x64,0xb5,
0x78,0xa8,0xa8,0x66,0x34,0xaf,0x72,0x8a,0x55,0x74,0x2b,0x81,0x71,0x3c,0x2a,0x63,
0xfc,0x60,0xc9,0x85,0xc,0xe3,0x53,0x61,0xe7,0x97,0xbe,0x43,0x37,0xfa,0xd6,0xee,
0x1d,0x3a,0x71,0x6b,0xf6,0xf0,0xd5,0x81,0xf6,0x15,0x4f,0xfe,0xf5,0xd7,0x98,0xb7,
0xff,0xb5,0xbd,0x8b,0x5c,0xa2,0x47,0x33,0x0,0xd3,0x3,0x0,0x33,0x1e,0xc0,0xd3,
0xe8,0xcc,0x2a,0xd,0x7e,0x7,0xea,0xed,0x63,0x97,0xba,0x49,0x6,0x0,0x0,0x9f,
0xc,0xce,0x7c,0x34,0x38,0x7d,0x65,0x60,0xea,0x12,0xd9,0xf7,0x5,0x3,0x4,0x80,
0x33,0x1b,0xf5,0xcf,0xe8,0xc9,0x2e,0x68,0x78,0xad,0x63,0xf8,0x24,0xd1,0xd0,0xc9,
0xf6,0xa1,0x53,0xed,0xb8,0xdf,0x3,0x6,0x0,0x0,0x34,0xf4,0x69,0xeb,0xf0,0xf3,
0x96,0xd1,0x9b,0x6d,0x13,0x27,0xba,0x26,0x96,0x3a,0x27,0x8e,0x74,0x8e,0xcf,0x76,
0xc,0x8f,0xb7,0x76,0xf6,0x4,0xfc,0x21,0x3,0x7f,0x36,0x16,0x8f,0xf6,0xe4,0x5d,
0x7a,0x1d,0x55,0x38,0xbd,0x30,0x8a,0x56,0xb8,0xaa,0xa4,0xf4,0xa5,0x90,0x7,0x64,
0x1a,0x92,0x7,0x1a,0x66,0x9c,0x60,0xa0,0x61,0xd2,0x59,0x3f,0xee,0x8,0x8d,0xd8,
0x83,0x83,0xb6,0x60,0xbf,0x2d,0xd0,0x6b,0xf5,0x77,0x5b,0x7d,0x1d,0x16,0x5f,0x9b,
0xc5,0xdb,0x62,0xf6,0x34,0x99,0x3c,0x8d,0x26,0x77,0x83,0xd1,0x15,0x32,0xb8,0x83,
0x6,0x67,0x40,0xef,0xf4,0xe9,0x1d,0x5e,0xa,0x0,0xb7,0xd6,0xe6,0xd2,0xda,0x9c,
0x1a,0x2b,0x5,0x0,0xc9,0x0,0x56,0x15,0x5e,0x3a,0x30,0x5b,0x5e,0x0,0x60,0x7a,
0x1,0x80,0x81,0x2,0x40,0xf,0xf7,0xd7,0x41,0x5a,0x24,0x1,0xad,0x44,0xa3,0x11,
0x43,0x6a,0xb5,0x8,0xa2,0x1,0xc0,0xff,0xb8,0xc4,0xfd,0x1b,0xa2,0x0,0x50,0x54,
0xcb,0x14,0x2,0x19,0x0,0x90,0x57,0x41,0x4,0x0,0x59,0x25,0x24,0x91,0x1,0x0,
0xbe,0x98,0xa8,0x42,0x44,0x54,0x2e,0x4,0x0,0x75,0x3c,0xa8,0xb6,0xae,0x8c,0x0,
0x40,0x44,0x1,0x20,0xe6,0x42,0x2,0x88,0x4c,0x1,0x2a,0xa9,0xc2,0x1c,0x14,0x51,
0x71,0x25,0x11,0xb9,0x6,0x49,0x9d,0x0,0xfd,0x66,0xf8,0xa7,0x32,0x0,0x16,0x40,
0x89,0x48,0x13,0x4c,0xdc,0x2f,0xce,0x2f,0x25,0x19,0x20,0x8f,0x48,0x9a,0xc7,0x95,
0xe5,0xd2,0x49,0xa0,0x44,0x9d,0x43,0x0,0x20,0x49,0x80,0x55,0x62,0x62,0x15,0x5b,
0x58,0xc5,0x76,0x56,0xb1,0x93,0x59,0xec,0x61,0x16,0xfb,0x99,0xc5,0xa4,0xa,0x62,
0x72,0x47,0x99,0xe5,0xcf,0x99,0x95,0xf3,0xf9,0x55,0xee,0xc2,0x2a,0x4b,0xa1,0x40,
0x57,0x48,0x25,0x81,0xc2,0x4a,0x4d,0x1e,0xee,0xca,0xc4,0x7e,0xfa,0xbd,0x94,0xc4,
0x8d,0x24,0x80,0xfa,0x87,0xca,0x0,0x1b,0xdf,0x37,0x5,0x3f,0x7f,0xd9,0xd,0x6f,
0x32,0xaf,0x95,0x61,0xf7,0xd7,0xd2,0x56,0x8b,0xea,0x5f,0x61,0xe5,0xd5,0x39,0xb9,
0xb5,0xde,0x22,0x7e,0x7b,0x4e,0xde,0xf3,0xf8,0xf2,0x85,0x7c,0xcf,0x21,0xd3,0xf8,
0x85,0x9e,0xd3,0xb7,0x16,0xbf,0x78,0x76,0xe1,0x4b,0x84,0x7f,0x72,0xd6,0x8d,0xa,
0xff,0x14,0x0,0x1b,0xb1,0xff,0xf1,0xd9,0x8f,0x9f,0xa0,0xf8,0x21,0xe1,0xff,0xea,
0xd3,0x93,0x57,0x9f,0x51,0x7a,0x7a,0x72,0x9,0x2f,0x8c,0xb5,0x76,0x50,0xab,0xfe,
0x24,0x3,0x90,0xde,0x17,0xe1,0xdf,0xe1,0xae,0x3a,0x71,0x90,0xf3,0xf9,0xbb,0xea,
0x21,0xbe,0x70,0xb0,0x50,0x30,0x9a,0x5b,0x3e,0x97,0x95,0xf7,0x38,0x3a,0x73,0xfa,
0x60,0xe6,0x64,0x54,0xc5,0xd1,0x7c,0xe7,0xd,0x55,0xcf,0xd3,0xe0,0x91,0xfb,0xc3,
0x67,0x1e,0xcf,0x9f,0x7b,0xb0,0x70,0xfc,0xab,0x99,0xa9,0x73,0xdd,0xd,0x4b,0xa6,
0x8c,0xfb,0xff,0x54,0xfc,0xf9,0x3b,0x6d,0x61,0x9c,0x26,0x76,0x21,0x9,0xc0,0xf7,
0xc8,0x0,0xf8,0x9a,0x94,0x6a,0xa3,0x5c,0x5,0x6,0xea,0x3b,0x5d,0x13,0x57,0x7a,
0x66,0x3f,0x19,0x82,0x66,0x3e,0x1e,0x9c,0xbe,0x3a,0x30,0x75,0x99,0x0,0x80,0xbb,
0xcb,0x64,0xe9,0x93,0x6a,0x7f,0x49,0xfd,0x73,0xb2,0x6b,0x64,0xad,0x93,0x0,0x40,
0x69,0x68,0xad,0x6d,0xf0,0x64,0x1b,0x0,0x18,0x38,0xd5,0x3a,0x70,0xaa,0x65,0x43,
0x9f,0x35,0xf,0x3d,0x6f,0x1e,0xbd,0xde,0x36,0x7e,0xbc,0x73,0x7c,0xb1,0x63,0x6c,
0xbe,0x63,0x7c,0xa6,0x63,0x70,0xa4,0xb9,0xad,0xd3,0xeb,0xd,0xea,0xcb,0x8e,0xee,
0x8f,0x7e,0xfe,0x3b,0x85,0xe7,0xde,0x35,0xe9,0x48,0x1e,0xc0,0x62,0x28,0x3a,0x1,
0x0,0x40,0x17,0x42,0x34,0x9,0xa,0x7d,0xad,0x7b,0xd4,0x18,0x9a,0xb2,0x37,0x4c,
0x3b,0xea,0x27,0x1d,0xa1,0x31,0x7b,0x70,0xc4,0x16,0x18,0xb4,0x5,0xfa,0xac,0x38,
0x4f,0xea,0xef,0xb2,0x80,0x1,0x6f,0xab,0xd9,0xd3,0x62,0x2,0x3,0xee,0xb0,0x11,
0x49,0x0,0xc,0x0,0x0,0x87,0x5f,0xef,0xf0,0xe9,0xc0,0x0,0x1,0x0,0x2,0x0,
0x4e,0x8d,0x85,0x64,0x0,0x15,0x64,0xb6,0x2a,0x37,0x0,0x30,0x2b,0x8c,0x26,0xb9,
0x81,0xca,0x0,0x7a,0x2,0x80,0x94,0x6,0x40,0x4b,0x24,0xd1,0x0,0x0,0xad,0x58,
0xd,0x0,0x88,0x68,0x6,0x28,0x0,0x54,0xb5,0xa,0x48,0x59,0x3,0xc9,0x95,0x35,
0x32,0xa,0x0,0x29,0x11,0x5,0x0,0x51,0x25,0x4,0x0,0xc4,0x44,0x15,0x10,0xdc,
0x4f,0x0,0x20,0xe2,0xd5,0x42,0x0,0xa0,0xae,0xac,0x86,0xa8,0xb4,0x5a,0x2,0x71,
0x21,0x1,0x51,0x49,0x95,0x18,0x22,0x83,0x80,0x2a,0x89,0x38,0x7c,0x0,0x40,0x2e,
0x0,0xb0,0x2b,0x88,0xe8,0x13,0x10,0xd4,0x21,0x88,0xaf,0xdd,0xff,0x5f,0x1,0xe0,
0xbe,0x4,0x40,0x91,0x5b,0xa2,0xca,0x29,0xd1,0x50,0xc,0xe8,0x59,0xc5,0x46,0x56,
0xb1,0x99,0x55,0x6c,0x63,0x12,0x0,0x90,0x4,0x7c,0xcc,0xe2,0x0,0xb3,0x38,0x44,
0x54,0xf6,0x19,0xb3,0xe2,0x1e,0xb,0x8f,0x6b,0x54,0x39,0xa,0xab,0x8c,0x85,0x55,
0x9a,0x42,0x81,0xa2,0x50,0x20,0x2d,0x2c,0x18,0xde,0x81,0x24,0x90,0xec,0x7e,0x17,
0x49,0x0,0x77,0x65,0x48,0x6,0xa0,0xda,0x0,0x8,0xe5,0xd0,0x8e,0x98,0xf7,0x7e,
0xa1,0xf9,0x11,0xe9,0x4,0x54,0x3f,0xd8,0xc4,0xba,0xf7,0x93,0xc2,0x4f,0x5e,0x37,
0xdb,0x45,0x4a,0x73,0xb9,0xcc,0x56,0x2a,0x76,0x15,0x57,0xfb,0xa,0x4a,0x8e,0xa7,
0x17,0x3c,0x48,0x92,0xd,0x56,0xa1,0xfd,0x9d,0xfb,0x78,0xec,0xca,0xc3,0x93,0xa8,
0x7c,0xd0,0xfb,0xd2,0xc5,0xcf,0x46,0xf8,0xa7,0x0,0xf8,0xf8,0x11,0xaa,0x7f,0x84,
0x7f,0xb8,0x1f,0x19,0x80,0x4a,0x2,0xcf,0x4e,0x42,0x17,0x6e,0x1d,0x9b,0x1d,0x1a,
0xed,0x8,0xe1,0x36,0xac,0x37,0x84,0x73,0x6f,0xd4,0xf2,0x3f,0xdc,0x1f,0x74,0x3b,
0x33,0x6f,0xfd,0x4b,0xdd,0x31,0xa6,0xb4,0x9f,0x5b,0x33,0x90,0x5f,0x35,0x9a,0x53,
0x72,0x36,0x95,0xf9,0x65,0x54,0xfa,0x78,0x24,0x63,0x3a,0x56,0xb8,0xc2,0xf5,0x5e,
0x32,0xc,0x3e,0x6e,0x5a,0x7c,0x3e,0x7a,0xf6,0xd9,0xd1,0x73,0x8f,0x8e,0x9e,0xb9,
0x7b,0x64,0xe5,0xb3,0xc9,0xd1,0xb5,0x36,0xe7,0xb2,0x4,0x75,0x9a,0xf0,0x6c,0x7c,
0x4b,0x20,0x88,0xcb,0x62,0x76,0xad,0x1,0xa6,0x37,0x29,0xd4,0xc8,0x3,0x90,0x49,
0x81,0xa7,0xb2,0x74,0xcd,0xc3,0xbe,0xc9,0x8f,0x7a,0x67,0x3e,0x19,0x98,0xf9,0x78,
0x60,0xfa,0xa3,0xfe,0xa9,0x2b,0x7d,0x93,0x97,0xfa,0x26,0x2e,0x50,0xb,0xff,0x67,
0x9,0x0,0xa4,0xfa,0x27,0xe1,0xbf,0x73,0xf8,0x4,0xe5,0xfe,0x13,0xed,0x83,0x27,
0xda,0xd0,0x42,0xc,0xac,0xb5,0x12,0x9d,0x24,0xc,0xf4,0x9f,0x6a,0xe9,0x3b,0xd9,
0x3c,0xf0,0x25,0x61,0x60,0xe4,0x8b,0xd6,0xb1,0xd5,0x8e,0xb1,0x85,0x8e,0xb1,0xb9,
0x8e,0xd1,0xe9,0xf6,0x81,0xe1,0xc6,0x96,0x76,0xb7,0xcb,0xaf,0x29,0x5e,0xde,0x1e,
0xfd,0xfc,0xb7,0x39,0x6b,0xdb,0x4c,0x1a,0x72,0x73,0x0,0xab,0xa2,0x70,0x3f,0x65,
0x7d,0x2e,0x9f,0x53,0xcc,0xe7,0x94,0x10,0x6,0xc,0x42,0xcf,0x18,0x61,0xa0,0x7e,
0xca,0x11,0x9a,0xb0,0x7,0x47,0x6d,0x81,0x21,0x6b,0x60,0xc0,0xea,0xef,0xb3,0x80,
0x1,0x6f,0xa7,0xd9,0xdb,0x6e,0xf6,0xb4,0x9a,0x3c,0x18,0x4f,0xd4,0x68,0x74,0x85,
0xd,0xae,0x7a,0x83,0x33,0xa4,0x77,0x10,0x6,0x74,0x76,0xaf,0xd6,0xee,0x1,0x0,
0x1a,0x9b,0x8b,0xc8,0xea,0x50,0x5b,0xec,0x1b,0x0,0x98,0x90,0x1,0x2c,0xa,0x54,
0x41,0x46,0xb3,0x1c,0xe3,0xde,0xd,0x46,0x99,0x1e,0x32,0x48,0x75,0x0,0x40,0xff,
0x9f,0x0,0x20,0x19,0x80,0x2,0x40,0xa5,0x16,0x2a,0x89,0x28,0xf7,0xab,0x6a,0x20,
0x39,0xa4,0xac,0x96,0x11,0x9,0xa4,0x10,0x0,0x50,0x54,0xd5,0x11,0x55,0x4a,0x20,
0x39,0x5f,0x4c,0x54,0x1,0x89,0x64,0xe5,0x90,0x90,0x88,0x57,0xb,0x49,0xcb,0x6a,
0x88,0x4a,0xa1,0x6a,0x30,0x50,0xc7,0x15,0x6c,0xa8,0xa4,0xa,0xc,0x48,0x30,0x8,
0xb1,0xb8,0x92,0x88,0xc3,0x87,0x70,0x9,0x58,0xcc,0xae,0x20,0x22,0xa7,0xa0,0xcb,
0x89,0xb0,0xff,0x45,0xb,0xee,0x7f,0xd1,0x0,0xbc,0xc8,0x0,0x2f,0x1,0x28,0x1,
0x0,0xca,0x1c,0x3a,0x9,0x14,0xeb,0x58,0xc5,0x6,0x56,0x31,0x92,0x80,0x95,0x59,
0x6c,0x67,0x16,0xbb,0x48,0x15,0x44,0x92,0x40,0x88,0x1,0x95,0xc,0x33,0x78,0xcf,
0x99,0xfc,0xc5,0xbc,0x2a,0xf,0x49,0x2,0x55,0xba,0xc2,0x2a,0x55,0x61,0x15,0x92,
0x80,0x32,0x3f,0xe1,0xe6,0xf7,0x62,0xae,0xff,0x45,0x72,0x4a,0x54,0xcc,0xbe,0x7d,
0x38,0x16,0x4a,0x87,0x7f,0xc2,0xc0,0xfb,0xa4,0x19,0x78,0x9b,0xf7,0x2a,0xdd,0xd,
0x6f,0x2,0x28,0xea,0x11,0xb6,0xc6,0x5c,0xa5,0xb0,0xf0,0xea,0x1c,0xdc,0x5a,0x4f,
0x51,0x65,0x7d,0x5e,0xfe,0x83,0xc4,0x92,0xd3,0xd9,0xb6,0x29,0xf5,0xd0,0x59,0xba,
0xfd,0xc5,0xd5,0x5e,0x52,0xfa,0xa3,0xe2,0x27,0x7a,0x7c,0xfe,0x93,0x47,0x38,0xe2,
0x7f,0x16,0xee,0xff,0xf8,0xd1,0x69,0xe2,0x7e,0xd4,0x3f,0x4f,0x36,0x8a,0x1f,0x3a,
0xfc,0xaf,0x9d,0x3f,0x8a,0x53,0x46,0x4d,0xde,0xc0,0xc6,0xba,0x27,0x9,0xff,0xa8,
0x7f,0x3c,0xb6,0x6e,0x59,0xe2,0xe3,0xef,0xea,0x47,0xab,0x45,0xbd,0x6c,0xc1,0x40,
0x5e,0xc5,0x28,0xb3,0xe0,0x7a,0x7c,0xd6,0x89,0xc8,0xb4,0xb1,0x3,0xf9,0x87,0x52,
0x94,0x6b,0x82,0xfa,0x8f,0xec,0x63,0xb7,0x3b,0x57,0x9e,0x4f,0x9e,0x5e,0x9f,0x3f,
0xfb,0xe4,0xe8,0xd9,0xfb,0x47,0x4f,0xdf,0x9a,0x3f,0x7a,0x75,0x74,0x70,0xb5,0x59,
0x77,0xa2,0x24,0xee,0xd9,0xb7,0xb5,0x8b,0xc5,0x38,0x56,0x8d,0xad,0x31,0xb3,0x12,
0x0,0x20,0xf6,0x6b,0xf1,0x35,0xe2,0xf5,0x17,0x85,0xda,0xa2,0xd1,0x76,0x1c,0xaa,
0x9f,0xb8,0xda,0x4b,0x0,0xf8,0x78,0x60,0xea,0x6a,0xff,0xd4,0xe5,0xbe,0x89,0x8b,
0x64,0xeb,0x77,0x8c,0x2c,0x7d,0x12,0x0,0x46,0xe8,0xc,0x70,0xe2,0x85,0xfb,0x8f,
0xb7,0xd,0x9c,0x68,0x85,0xfa,0xd7,0xa0,0x96,0xfe,0x93,0x2d,0x7d,0x6b,0xcd,0x44,
0x27,0x9b,0xfa,0xbf,0x6a,0x1a,0x78,0xde,0x34,0xfc,0x69,0xeb,0xe8,0x4a,0xfb,0xe8,
0xd1,0xf6,0x91,0x43,0x6d,0xc3,0x53,0xad,0xfd,0x43,0x61,0x30,0xe0,0xf0,0x29,0x8b,
0x8e,0x6f,0xc1,0x1,0xac,0x92,0x63,0xbb,0x8c,0x4a,0x5,0x36,0x7,0x50,0xfd,0xd3,
0xb1,0x1f,0xee,0xaf,0x60,0x53,0xc,0x70,0x4b,0xe5,0xa6,0x1a,0xf7,0xa8,0x1,0xc,
0x40,0xc1,0x9,0x5b,0x60,0xd4,0xa,0x6,0xfc,0x3,0x16,0x30,0xe0,0xed,0x36,0x83,
0x1,0x4f,0x9b,0x9,0xc,0xb8,0x9b,0x8d,0xae,0x46,0x83,0xb3,0x41,0xef,0xac,0xd7,
0x3b,0x82,0x3a,0x47,0x40,0x67,0xf7,0x69,0xc1,0x80,0xcd,0xa3,0xb1,0xba,0x35,0x56,
0x97,0xda,0xe2,0x50,0x59,0x1c,0x6a,0x33,0x32,0x80,0x4d,0x69,0xb2,0x12,0x0,0xe0,
0x7e,0xa,0x0,0xd9,0xd7,0x0,0x18,0xa4,0x5a,0x0,0xa0,0x97,0x90,0xc,0xa0,0x93,
0xa8,0x91,0x1,0xb4,0x22,0x48,0x5,0x0,0x34,0x42,0x25,0x4,0x0,0x88,0x6a,0x20,
0xb9,0xaa,0x1a,0x92,0x11,0x51,0x0,0x28,0xab,0xa0,0x3a,0x65,0xa5,0x84,0x96,0x82,
0x2f,0x26,0xaa,0x10,0x11,0x95,0xb,0x21,0x39,0xc4,0xab,0x25,0x2a,0x83,0x6a,0x64,
0xa5,0x50,0x35,0x11,0x57,0x20,0x85,0x4a,0xa0,0xaa,0x3a,0xa8,0xb8,0x72,0x43,0x14,
0x0,0x98,0x83,0x22,0x61,0x57,0x10,0x15,0x95,0x13,0x91,0x33,0x70,0xb4,0xfb,0x9,
0x0,0xd8,0x3,0xa6,0xd6,0x40,0x5f,0x96,0x40,0x5c,0x69,0x2e,0x5d,0x2,0x95,0x28,
0x72,0x36,0x0,0xd0,0xb0,0x36,0x0,0x40,0x12,0xb0,0x30,0xe9,0x24,0xc0,0xf1,0x30,
0x39,0x3e,0x46,0x71,0x90,0x0,0x0,0x95,0x7d,0xcc,0x28,0x7f,0xc0,0xac,0x6c,0x28,
0xa8,0x44,0x12,0x30,0x91,0x24,0x50,0xa5,0x28,0xac,0x92,0x16,0x16,0xf5,0xec,0x83,
0xb7,0x93,0xc2,0xbf,0x21,0xf3,0xb3,0x76,0xee,0x24,0xb1,0xff,0x1b,0x49,0x60,0x67,
0xc4,0x56,0x5c,0x16,0x7b,0x45,0xf3,0x83,0x4d,0x99,0x77,0xfe,0xd1,0xe2,0x90,0x28,
0xcd,0x15,0x32,0x6b,0xa9,0xd8,0x59,0x5c,0xed,0x2d,0x2c,0x9d,0xc9,0xca,0x7f,0x96,
0x58,0x3b,0x5a,0xda,0xb0,0xe0,0x9a,0xbd,0x3a,0x7c,0xfe,0xde,0x2a,0xea,0x1f,0xa,
0x80,0x8d,0xea,0xff,0xd3,0x47,0xe7,0xbe,0x6,0xe0,0xf1,0x99,0xab,0x8f,0x4f,0x11,
0x0,0x9e,0x9e,0xbe,0x8a,0x12,0xe8,0xd9,0xc9,0x2b,0x4f,0xd7,0xae,0x3c,0x59,0x5b,
0x38,0x34,0xdd,0xd7,0xdc,0xf6,0x62,0xe5,0x87,0x94,0xfe,0x41,0x8c,0x3c,0x71,0xba,
0x5,0x27,0xa2,0xd9,0x9f,0xbd,0xad,0xee,0xe3,0xd7,0xf6,0x14,0x54,0xe,0xe4,0xf0,
0xa6,0xb2,0x72,0x1e,0x47,0xa5,0x4f,0x1e,0x48,0x1b,0x3f,0x50,0x32,0xcf,0x30,0x9f,
0x95,0xb7,0x7e,0xe6,0x9b,0xbc,0xdb,0x7b,0xec,0xd9,0xcc,0xc9,0xf5,0xc3,0xa7,0x9f,
0xcd,0x9f,0x7e,0x38,0x7f,0xfa,0xe,0xe6,0x41,0x1c,0x9e,0xbb,0x38,0xd4,0xbb,0xd0,
0x20,0xbc,0x90,0x80,0x41,0xed,0xae,0x31,0x19,0x36,0x16,0xd0,0xc,0x20,0x9,0xc0,
0xfa,0x94,0xfb,0x9,0x0,0x90,0xdd,0xa8,0xef,0x5e,0xa,0x23,0xf,0x50,0x0,0xf4,
0x4d,0x5c,0xee,0x9d,0xb8,0xd4,0x8b,0x2a,0x8e,0xec,0x79,0x61,0xdd,0xf3,0x34,0x69,
0x7f,0xa9,0xd8,0xdf,0x31,0x78,0xbc,0xd,0x1a,0x20,0x6a,0x85,0xfa,0x4f,0xb4,0x10,
0xad,0x6d,0x0,0xd0,0xbb,0xd6,0x4,0xf5,0xdd,0x6c,0xec,0x7f,0xde,0x38,0xfc,0x51,
0xcb,0xe8,0x72,0xfb,0xc8,0x91,0xb6,0x91,0xd9,0xd6,0xa1,0x89,0x96,0xbe,0xc1,0x70,
0x63,0xb3,0xc3,0xee,0x53,0xe4,0x9f,0x79,0x13,0x79,0xa0,0xfc,0xe8,0x1,0xbd,0x5c,
0x8e,0xd3,0x72,0xd8,0x13,0xa8,0x2c,0xe6,0x96,0xb3,0x39,0x95,0xc5,0x25,0xf8,0x51,
0xc1,0x29,0x46,0x5a,0x50,0x98,0x6b,0x5d,0xa3,0xfa,0xe0,0xa4,0x2d,0x34,0x69,0xf,
0x8e,0xdb,0x2,0x23,0x56,0xff,0x90,0xd5,0xd7,0x6f,0xc1,0xa5,0x2,0x6f,0x97,0xc9,
0xd3,0x61,0x2,0x3,0xee,0x16,0xa3,0xab,0xc9,0x40,0x33,0xe0,0x8,0xe9,0xc0,0x80,
0xdd,0xaf,0xb5,0xf9,0x34,0x36,0x2f,0x0,0x50,0x43,0x16,0x27,0xa4,0x32,0xdb,0x95,
0x26,0x0,0x60,0x53,0x18,0xad,0xa,0xa3,0x45,0x6e,0xb4,0x28,0xc,0x66,0x99,0xde,
0x84,0xc,0x20,0x85,0x74,0x90,0x1,0x0,0x10,0x69,0x74,0x62,0x68,0x3,0x0,0x2d,
0xe5,0x7e,0xa2,0x5a,0x5,0x4,0xf7,0x13,0x55,0xcb,0x88,0x4,0x4,0x0,0x55,0x15,
0x54,0x47,0x54,0x29,0x21,0xe2,0x4b,0x94,0x7c,0xb1,0xb2,0x2,0x12,0x11,0x95,0xb,
0x89,0x78,0x50,0xad,0x2,0x2a,0xab,0x21,0x2a,0x85,0xaa,0x21,0x39,0x57,0x40,0x4b,
0x56,0x52,0x45,0x54,0x5c,0x29,0x85,0x38,0x10,0x1f,0xaa,0x63,0x57,0x6c,0xa8,0xa8,
0xbc,0xe,0x22,0xd7,0x0,0x78,0x44,0xb4,0xfb,0x9,0x0,0xdf,0x70,0x7f,0xde,0x7f,
0x5,0x40,0x95,0x53,0xc,0x0,0xb4,0xac,0x62,0x52,0x5,0x31,0x39,0x66,0x26,0xc7,
0xca,0xe4,0x38,0x98,0x1c,0x37,0x93,0xe3,0x65,0x70,0x2,0xc,0x4e,0x88,0xa8,0x64,
0x0,0x49,0x80,0x51,0xb1,0x92,0x5b,0xe9,0x29,0xa8,0xb4,0x16,0x54,0xea,0xb,0x48,
0x12,0x90,0x43,0x5,0x49,0x5f,0xfe,0x5d,0xcc,0xdd,0x3f,0x4e,0xc9,0x88,0x8a,0xda,
0x4b,0x36,0x86,0xe9,0x12,0x68,0xd7,0xfb,0x54,0x1e,0xf8,0x60,0xdb,0x3b,0x5c,0x92,
0x4,0x36,0x9,0x8f,0x26,0x6b,0xcd,0x2,0xb9,0x99,0x57,0x67,0xe7,0xa,0xf1,0x84,
0xb7,0x3f,0xaf,0xf0,0x8b,0xe4,0xa2,0x4f,0xd2,0x74,0x23,0x92,0xae,0x13,0xe1,0x95,
0x2f,0x67,0xd1,0xe0,0xc2,0xfd,0x74,0xe9,0x4f,0xd5,0xfd,0x24,0xfc,0x7f,0xfc,0x10,
0x87,0x9c,0x11,0xfe,0xcf,0x7c,0xf4,0x18,0xb1,0x9f,0x84,0xff,0x2b,0x4f,0x28,0xeb,
0x3f,0x5b,0xbb,0xfa,0x74,0xed,0xc2,0x8d,0x63,0xb8,0x68,0x86,0xe3,0x9f,0xf5,0xd4,
0xe2,0xf,0x4a,0x7f,0x1a,0x80,0x90,0xc7,0x95,0x75,0xfb,0x7,0xe2,0xe5,0x6c,0x69,
0x17,0xb7,0xba,0x3b,0x9f,0x3f,0xc0,0xe2,0x9c,0x48,0xcd,0xbe,0x76,0x30,0x75,0xe8,
0x40,0xe6,0x78,0xb4,0x60,0x91,0xe3,0xbc,0xa8,0xed,0xbe,0xd6,0x70,0xf8,0xe1,0xd0,
0xb1,0x67,0xb3,0xc7,0x9f,0xcd,0xae,0xad,0xcf,0x9e,0x7e,0x32,0x7f,0xfa,0xfe,0x3c,
0x92,0xc0,0xf1,0xcf,0x67,0xa6,0x4f,0xf7,0x76,0xcc,0xf9,0xb8,0x9f,0x7c,0x90,0xf6,
0xe0,0x6f,0x1a,0x7a,0x6d,0xe8,0xaa,0xb1,0x33,0x40,0x33,0x60,0x90,0x2b,0xf5,0x78,
0xfa,0x5,0x6f,0x1f,0x29,0xd5,0x4e,0x9b,0x11,0x21,0x1c,0xc,0x4c,0x5e,0xed,0x83,
0xc0,0xc0,0xf8,0xc5,0x9e,0xb1,0xf3,0x64,0xe7,0x6b,0xe4,0x4c,0x17,0x16,0x7f,0x48,
0xef,0x8b,0xe2,0x87,0x2,0x80,0x30,0x70,0xac,0xb5,0xff,0x58,0x4b,0xff,0xf1,0x96,
0xbe,0xe3,0xcd,0x7d,0x27,0x9a,0x7b,0x4f,0x34,0x11,0xad,0x35,0xf6,0x9c,0x8,0xe3,
0xdb,0x77,0x3b,0x3c,0xf0,0xbc,0x71,0xe8,0x72,0xcb,0xf0,0x52,0xeb,0xf0,0x7c,0xeb,
0xd0,0x74,0xcb,0xe0,0x58,0x73,0x77,0x5f,0x28,0xdc,0x6c,0xb7,0xfa,0x64,0xac,0xb,
0xbf,0x22,0xc,0xcc,0x44,0xe9,0x64,0xb2,0xba,0xaa,0x6a,0xe4,0x1,0x7e,0x31,0x97,
0x5f,0x5c,0x82,0x42,0x8,0x79,0x80,0x82,0x81,0xab,0xb4,0xa,0xdd,0x63,0x86,0xc0,
0xa4,0x15,0x18,0x4,0xc6,0xac,0xfe,0x11,0x8b,0x6f,0xd0,0xec,0xed,0x37,0x7b,0x7b,
0x4c,0x9e,0x2e,0x93,0xbb,0xc3,0xe8,0x6e,0x35,0xba,0x9a,0xd,0xce,0x26,0xbd,0x23,
0xac,0x77,0xd4,0xeb,0xec,0x21,0x9d,0x3d,0xa0,0xb5,0x51,0xc,0x58,0x3d,0x6a,0xb,
0x0,0x70,0xa9,0x8,0x0,0xe,0xa5,0x89,0x30,0xa0,0x30,0xbe,0x60,0x60,0x3,0x0,
0x13,0xe5,0x7e,0x63,0x9d,0x16,0x0,0x18,0x24,0x1a,0x3d,0x24,0x56,0x43,0x3a,0xb1,
0x4a,0x27,0x52,0x1,0x80,0x17,0xc2,0xa,0x95,0x42,0x5b,0x23,0xd7,0x40,0xd5,0x32,
0x22,0x1,0x24,0x55,0x43,0x55,0x75,0x44,0x95,0x12,0x22,0xbe,0x98,0xa8,0x2,0x12,
0x11,0x95,0xb,0x89,0x78,0x42,0x15,0xaf,0x96,0xa8,0xac,0x86,0xa8,0x14,0xaa,0x56,
0x72,0x21,0x1,0x51,0x9,0x54,0xa5,0x28,0xa9,0x92,0x17,0x57,0x12,0x71,0x2a,0x65,
0x1c,0x3e,0x11,0xbb,0x82,0x88,0xcc,0x41,0x29,0x27,0x2a,0xe4,0x41,0x75,0x10,0xce,
0xff,0xd0,0xa2,0x16,0x40,0x89,0xe0,0xfe,0xd,0x0,0x4a,0x90,0x1,0xe4,0x54,0x6,
0x0,0x0,0xea,0x17,0x0,0x18,0x98,0x1c,0x13,0x5,0x80,0x9d,0xc9,0x71,0x31,0x38,
0x1e,0x6,0xc7,0xcf,0xe0,0x4,0x29,0x6,0xea,0x19,0xa5,0x57,0x19,0xbc,0x47,0xcc,
0xca,0xc6,0x82,0x4a,0x67,0x41,0xa5,0xa9,0xa0,0x52,0x5b,0x50,0xa9,0x2c,0xa8,0x94,
0x15,0xb0,0xdb,0xa2,0x90,0x4,0x12,0x5b,0x5f,0x43,0x27,0x80,0xcb,0x62,0xb4,0xef,
0x69,0x6,0x76,0xbe,0xff,0xfe,0xce,0xbd,0xef,0x63,0x86,0xdc,0x26,0x6b,0x40,0xa2,
0x32,0x55,0xc8,0x2c,0xa5,0x62,0x7,0x9,0xff,0xbc,0x1e,0x66,0xde,0xf3,0x84,0xca,
0xb9,0x42,0xef,0x61,0xf3,0xd8,0x85,0x9e,0x33,0xb7,0x97,0x70,0xc0,0x1,0x0,0x90,
0x93,0xe,0x64,0xcf,0x6b,0xa3,0xf8,0x1,0x3,0x1f,0x3d,0x3c,0xfd,0xd1,0xa3,0xd3,
0x57,0x1f,0x9d,0xba,0xfa,0x4,0x82,0xfb,0x49,0xe5,0x43,0x18,0x78,0xba,0x76,0xfc,
0xf4,0x3c,0x56,0x57,0x71,0xf4,0x9f,0xdc,0x7a,0x79,0xd1,0xfe,0x92,0xfa,0xa7,0x4b,
0x9e,0xf8,0xf8,0x2f,0xf5,0x83,0x2,0x51,0x3b,0xbb,0xaa,0x2b,0xb7,0x7c,0x80,0x91,
0xff,0x45,0x5c,0xe6,0x89,0xc8,0x94,0xc1,0x8,0xd6,0x64,0x62,0xdd,0x6a,0x85,0xef,
0xb2,0x79,0xf0,0x46,0xeb,0xfc,0xa3,0x91,0x95,0xa7,0x33,0xc7,0x9e,0xce,0x22,0xf,
0x9c,0x58,0x9f,0x3d,0xf5,0x70,0xee,0xf4,0xdd,0xf9,0x93,0xd7,0xe7,0x96,0x3f,0x9e,
0x44,0x57,0xda,0x74,0xd8,0xce,0xbc,0xf1,0x93,0x9c,0x1b,0xff,0xde,0xd4,0xec,0xc5,
0x4d,0x31,0xd2,0x9,0x28,0xd5,0x0,0xc0,0x20,0x23,0xd2,0xe1,0xed,0x23,0x3c,0x2,
0xe9,0x33,0xe,0x9c,0x6d,0x9d,0xbc,0xda,0x3b,0x71,0xa5,0x97,0x0,0x70,0xa9,0x7,
0x49,0x60,0xf4,0x3c,0x0,0xe8,0x24,0xeb,0x9e,0x27,0x3b,0x6,0xd7,0xda,0x87,0xd6,
0x3a,0xa8,0xd8,0x4f,0x1,0xb0,0xda,0x2,0x6,0x7a,0x8f,0x35,0xf5,0x1e,0x6b,0xee,
0x3d,0xde,0xd4,0x73,0xbc,0x11,0x17,0xff,0x37,0xb4,0xd6,0xd0,0x7b,0x37,0xdc,0xf7,
0x2c,0x3c,0x74,0xa1,0x79,0x78,0xa1,0x75,0x68,0xae,0x65,0x68,0xaa,0x79,0x60,0xb4,
0x9,0xc,0x34,0x34,0xd9,0x4c,0x3e,0x31,0xe3,0xca,0xcf,0x62,0x9e,0xfd,0x76,0xe5,
0x44,0x82,0xb6,0x4e,0x8a,0x13,0xa3,0x68,0x88,0xe9,0xf0,0x5f,0xc1,0xe6,0x50,0xc,
0x14,0x83,0x7,0x85,0x9d,0xe4,0x1,0xff,0x84,0x25,0x30,0x61,0xf5,0x8f,0x59,0x7c,
0xc3,0x66,0x30,0xe0,0xe9,0x33,0x79,0x7a,0x4c,0xee,0x4e,0xa3,0xab,0xdd,0xe0,0x6a,
0x35,0x38,0x9b,0xf5,0x8e,0x46,0x9d,0x23,0xac,0xb3,0xd7,0x6b,0xed,0x21,0xad,0x2d,
0xa0,0xb1,0x2,0x0,0xaf,0xda,0x42,0x18,0x50,0x99,0x1,0x80,0x53,0x65,0x22,0xc,
0x10,0x0,0xc,0x56,0xb9,0xc1,0x42,0xa4,0x27,0x49,0x40,0xaa,0x33,0x49,0xb5,0x0,
0x80,0x30,0x20,0xa1,0x18,0x20,0x0,0xa8,0xf4,0x22,0x2,0x80,0x4e,0xa8,0x24,0x82,
0xf5,0x6b,0x15,0xba,0x5a,0x39,0x0,0xd0,0x56,0x43,0x32,0x22,0x81,0x94,0xa8,0xaa,
0x6e,0x43,0x95,0x12,0x2d,0xc4,0x17,0x13,0x55,0x88,0x68,0x69,0xca,0x85,0x44,0xbc,
0x5a,0xa2,0x32,0xa8,0x86,0xa8,0xb4,0x9a,0x88,0x5b,0xad,0xe6,0xa,0x88,0x4a,0xa0,
0x2a,0x55,0x31,0x54,0xa9,0x84,0x38,0x95,0xa,0xe,0x9f,0x88,0x5d,0x21,0x87,0x30,
0x6,0xab,0xa8,0x5c,0x6,0x91,0x49,0x10,0x3c,0x48,0x5a,0x50,0x46,0x44,0x8e,0x0,
0x95,0x12,0x51,0xeb,0x3f,0x74,0x7,0x2c,0x83,0xfb,0x37,0x4a,0xa0,0x62,0x1a,0x0,
0xaa,0xa,0xe2,0xd0,0x0,0x58,0x98,0x1c,0x1b,0x93,0xe3,0x64,0x70,0xdc,0xc,0x54,
0x41,0x1b,0x49,0xa0,0x9e,0x51,0xdc,0xc7,0x28,0x7b,0xc6,0xa8,0x38,0x91,0x53,0xe9,
0x2d,0xa8,0xb4,0x15,0x54,0x1a,0xa,0x2a,0xd5,0x5,0x95,0xa,0xc2,0x40,0xca,0x27,
0xdf,0x8f,0xb9,0xfb,0x6d,0x92,0x4,0xc8,0x9e,0xc0,0x76,0xca,0xfd,0xef,0x3,0x0,
0x3a,0xf,0xbc,0x53,0xfc,0xab,0x4d,0x7a,0x6b,0x8d,0xdc,0xc8,0xab,0xb3,0x72,0x85,
0x2e,0x76,0x95,0x2f,0x8f,0x7d,0x36,0xb5,0xe0,0x6e,0xb2,0x7c,0xb0,0xba,0x79,0xd9,
0x77,0xf4,0xd3,0x9,0x2c,0xff,0xc3,0xfa,0x44,0x4f,0x2e,0x90,0xc5,0xfe,0x47,0x67,
0xa9,0xfa,0x87,0x94,0x40,0x0,0x0,0xee,0xbf,0xf2,0xf8,0x24,0x11,0x0,0x78,0x42,
0xac,0x7f,0x19,0x7a,0xbc,0x76,0x64,0x7a,0xb2,0xb7,0xa9,0x95,0x3a,0xf6,0x4c,0x32,
0x0,0x4e,0xb3,0x91,0x6b,0xbe,0x76,0x57,0xd5,0x6a,0x74,0xe1,0x67,0x6f,0xaa,0xbb,
0x2a,0x6b,0x5a,0xb,0x2a,0xbb,0x72,0x4a,0x47,0x32,0x59,0x8f,0xa2,0x52,0xc7,0x22,
0x92,0x7,0x23,0x8a,0x67,0xb2,0x75,0x6b,0x92,0xc6,0x8f,0x5c,0xe3,0xb7,0x7b,0x16,
0x9f,0x4c,0x22,0x3,0xac,0x3e,0x99,0x5d,0x7d,0x34,0x43,0x18,0x78,0x3e,0x7b,0xea,
0xfe,0xdc,0xc9,0x5b,0x87,0xd7,0xae,0x1d,0x5a,0xbc,0x3c,0x36,0xbc,0xdc,0xe2,0x3b,
0xac,0x4e,0x79,0xf0,0xd7,0xa5,0x1f,0x6d,0x6b,0xe,0xfa,0xdd,0x68,0x6,0x54,0x1a,
0x12,0xfe,0xf1,0x2,0x24,0x1e,0x7d,0xa1,0xde,0xff,0x2,0x9,0x81,0x66,0xfb,0xd0,
0x85,0xf6,0xf1,0x2b,0xdd,0xe3,0x57,0x7a,0xc6,0x2f,0xf7,0x8c,0x5e,0xec,0x22,0x0,
0x9c,0x25,0x0,0xc,0x9d,0xc2,0xe2,0xf,0x69,0x7f,0xe1,0x7e,0x12,0xfb,0x57,0x5b,
0xfa,0x88,0x9a,0x7b,0x57,0x9b,0x7b,0x56,0x1b,0xbb,0x57,0x1b,0x7b,0x8e,0x11,0x51,
0x0,0x34,0x40,0x5d,0x27,0x1b,0x7a,0x1f,0x34,0xf4,0x3e,0x69,0x18,0x3c,0xdb,0x3c,
0x78,0xb4,0x79,0xf0,0x50,0xf3,0xe0,0x64,0x73,0xff,0x70,0x63,0x47,0xb7,0xbf,0x3e,
0x6c,0xd5,0xf9,0x6a,0x32,0x3f,0xf9,0x57,0xec,0xf,0x54,0xf,0x66,0x60,0x51,0x8,
0xc,0xa0,0xf2,0xa1,0x3b,0x1,0x5e,0x21,0x1b,0x5f,0xba,0x25,0x0,0x3,0xce,0x51,
0x1d,0x18,0xf0,0x8f,0x5b,0xb0,0x61,0xec,0x1d,0x32,0x7b,0x7,0x4c,0xee,0x5e,0xa3,
0xbb,0xdb,0xe0,0xea,0x34,0x80,0x1,0x27,0xc5,0x80,0x3d,0xac,0xb5,0x37,0x68,0xc1,
0x80,0x2d,0xa8,0xb1,0xfa,0xd5,0x16,0x9f,0xda,0xe2,0x55,0x9b,0x1,0x80,0x4b,0x65,
0x72,0x2a,0x4d,0xe,0x85,0xd1,0xae,0x0,0x3,0x6,0x9b,0x1c,0xc,0xe8,0x2d,0x32,
0x48,0x67,0xa6,0x0,0x30,0x1,0x0,0x9,0xa4,0x31,0x4a,0xd4,0x6,0x31,0x25,0x11,
0x61,0x40,0x2f,0x54,0x12,0xd5,0x62,0x61,0x4a,0xa1,0xaf,0x91,0x43,0xba,0x6a,0x48,
0xa6,0x13,0x48,0x37,0x54,0x55,0xa7,0x83,0x2a,0x25,0x1b,0xe2,0x8b,0x75,0x50,0x85,
0x88,0xa8,0x5c,0xa4,0x2f,0x17,0xea,0x20,0x5e,0x2d,0x51,0x19,0x54,0x43,0x54,0x5a,
0x4d,0xc4,0x85,0x4,0x5a,0xa8,0xa4,0x8a,0xa8,0xb8,0x4a,0x53,0x5c,0x9,0xa9,0x39,
0x95,0x2a,0xe,0x1f,0x52,0xb2,0x2b,0x88,0x30,0x8,0xb1,0xa8,0x9c,0x8,0x63,0x20,
0xa,0xc9,0x25,0x60,0x79,0x41,0x99,0xc,0x22,0x87,0x40,0x4b,0x89,0x60,0x7d,0x5a,
0x94,0xfb,0xff,0x47,0x0,0xf4,0x4c,0xe,0x5d,0x5,0xd9,0x18,0x1c,0x7,0x1,0x80,
0xed,0x65,0xb0,0xfd,0xc,0x76,0x30,0x9b,0x53,0x4f,0xc4,0xbd,0x9c,0xcd,0x7b,0xcc,
0xe0,0xb7,0xe4,0x93,0xf7,0x66,0xcc,0x5,0x95,0xba,0x82,0x4a,0x55,0x41,0xa5,0xbc,
0x80,0xd3,0x14,0x8b,0xd1,0x29,0x49,0x4d,0x6f,0x90,0x24,0x80,0xc9,0xa1,0xc4,0xfa,
0xef,0xd3,0xd,0xf1,0xae,0xad,0xef,0xa3,0x13,0xd8,0xa4,0x34,0x96,0xcb,0xcc,0x65,
0x62,0x5b,0x71,0x8d,0xbb,0xb0,0x22,0x9c,0x93,0xfb,0x24,0xbe,0xec,0x44,0x8e,0x6d,
0x4a,0x83,0xf6,0xf7,0xc4,0x8d,0x79,0x2c,0xff,0xa3,0xf8,0xa1,0x7b,0x5f,0xb2,0xe8,
0x49,0x8a,0x1f,0x2a,0xf6,0x53,0x22,0x0,0x3c,0x7a,0x1,0xc0,0xd3,0x93,0x97,0x9f,
0x9c,0x0,0x3,0x67,0xaf,0x2d,0x61,0xc0,0x28,0xfa,0x54,0x0,0x80,0x2d,0xb0,0x20,
0xc6,0x9c,0xd8,0x9d,0x84,0x1,0xb7,0x33,0xeb,0xd6,0xf,0xc4,0x4b,0x59,0x92,0xd6,
0x12,0x41,0x6b,0x5e,0x45,0x17,0x93,0xbd,0x94,0x92,0x75,0x3d,0x32,0xb9,0x67,0x7f,
0xda,0xe0,0x41,0xc1,0x1c,0xc7,0x72,0x4a,0xd9,0xf1,0x69,0x70,0xe6,0xee,0xc0,0xf2,
0xd3,0x69,0x64,0x80,0x95,0xc7,0x33,0x2b,0xf,0xa7,0xa1,0xd5,0xe7,0xd3,0x27,0x9e,
0xce,0xae,0xdd,0x39,0xbc,0x76,0x1d,0x23,0xb1,0x66,0xe,0x9f,0x1b,0x1c,0x58,0x68,
0x32,0x2f,0x54,0xa1,0x19,0x10,0x9f,0x48,0xe,0x7b,0xbc,0x28,0x84,0x50,0x5,0xc1,
0xfa,0x5a,0xbc,0x79,0x21,0x95,0x6b,0xf0,0xf0,0x11,0x18,0x50,0x28,0xfd,0x5d,0xb6,
0xe1,0x8b,0x1d,0x14,0x0,0xdd,0xa3,0x97,0xba,0x46,0x2f,0x74,0x8d,0x90,0xc3,0x3f,
0x9d,0x64,0xe1,0x1f,0x4b,0x9f,0x4,0x0,0x14,0x3f,0xad,0xb0,0x3e,0x71,0xff,0xa,
0xd4,0x4,0xf5,0xac,0x34,0x75,0xaf,0x86,0xbb,0x8f,0x35,0x76,0x1d,0x6b,0xa0,0xd5,
0xb9,0x5a,0xdf,0x75,0xaa,0xbe,0xe7,0x61,0x7d,0xcf,0xe3,0xfa,0x81,0x53,0x4d,0x3,
0x47,0x9a,0x7,0x67,0x9b,0x7,0x26,0xf1,0x54,0x4c,0x43,0x7b,0x97,0x2f,0x50,0x6f,
0xd2,0xf8,0x5,0xe9,0x5f,0x7c,0x3f,0xf6,0xe9,0x1f,0xd4,0xf6,0x31,0xb1,0x49,0x8c,
0xd3,0x72,0x74,0x37,0xcc,0x2b,0xe2,0xa0,0xa,0x2,0x6,0x65,0x5,0x45,0x95,0x25,
0x25,0x72,0x57,0xd,0x18,0xf0,0x4d,0x98,0x7d,0xe3,0x66,0xef,0x88,0xc9,0x33,0x64,
0x72,0xf7,0x1b,0xdd,0xbd,0x6,0x17,0xc5,0x80,0xb3,0x4d,0xef,0x68,0xd1,0x39,0x9a,
0x74,0x60,0xc0,0xd6,0xa0,0xb5,0x85,0x34,0xd6,0xa0,0xda,0x42,0x18,0x50,0x99,0x3d,
0x2a,0xb3,0x5b,0x69,0x72,0x29,0x4d,0x4e,0x85,0x91,0x30,0x20,0x37,0xda,0xe4,0x7a,
0xab,0x8c,0x92,0x94,0x0,0x60,0xae,0x23,0x0,0x98,0x24,0x1a,0x8,0x0,0x18,0xc5,
0x90,0xa,0x0,0x18,0x84,0x4a,0x4a,0xa,0x43,0x2d,0xa5,0x1a,0x39,0x25,0x99,0xa1,
0x9a,0x92,0x40,0x4a,0x54,0x55,0x47,0x54,0x29,0x21,0xe2,0x43,0x62,0xa2,0xa,0x11,
0x51,0x39,0x24,0x34,0x96,0xb,0xd,0xbc,0x5a,0x23,0x54,0x6,0xd5,0x18,0x4b,0xa1,
0x6a,0x22,0x2e,0x24,0x30,0x40,0x25,0x50,0x95,0xa1,0x18,0xaa,0xd4,0x17,0x57,0xea,
0x38,0x95,0x5a,0xe,0x5f,0xc3,0x86,0x2a,0xd4,0x50,0x51,0x85,0xaa,0xa8,0x9c,0xa8,
0x90,0xa7,0x84,0xc8,0x2d,0xf8,0x32,0x8,0x97,0x60,0xe4,0xf9,0xa5,0x44,0xd8,0x0,
0xa6,0x45,0xbb,0x9f,0x64,0x80,0x62,0x65,0xce,0xcb,0xc,0xc0,0xd1,0xb2,0x38,0x2f,
0x1,0xb0,0x32,0xd8,0x76,0x6,0xdb,0xc5,0x60,0x7b,0x18,0x6c,0x5f,0x36,0x3b,0x90,
0xcd,0xe,0x65,0xb3,0x1b,0xb2,0x8b,0x7b,0xb3,0xcb,0x9e,0x65,0x97,0x9f,0xce,0xe1,
0xfb,0xf3,0xf9,0xf6,0x7c,0x3e,0x92,0x80,0xe6,0x65,0x12,0xf8,0xe7,0x98,0x5b,0x7f,
0x9a,0x9a,0x12,0x7d,0x70,0xcf,0x1e,0xaa,0x13,0x20,0xe1,0x9f,0x54,0x41,0x5b,0x49,
0x2a,0xd8,0x44,0xc2,0xbf,0x99,0x2b,0xb4,0xb3,0x5,0x9e,0xfc,0x92,0x23,0x19,0x79,
0x4f,0x13,0x44,0xc3,0xe5,0x38,0xfc,0x4c,0xda,0xdf,0xbb,0xab,0x88,0xfd,0x0,0x0,
0xd6,0xa7,0xdd,0xff,0xb2,0xfa,0xbf,0xfa,0xe0,0xd4,0xd5,0x87,0x94,0xfb,0x37,0x0,
0x58,0xbb,0xf4,0xf8,0xf8,0xe5,0x27,0x6b,0x60,0x60,0x75,0xed,0x30,0xea,0x1f,0xb2,
0xfa,0x49,0x2d,0xfb,0xd0,0x0,0x20,0xfc,0x5b,0x3b,0xe5,0x9,0x4f,0xfe,0x5c,0xd3,
0x57,0x59,0xdb,0x5c,0x58,0xd9,0x9a,0xc3,0xeb,0xca,0xce,0xfb,0x24,0x2e,0xfd,0xc4,
0x81,0xa4,0xee,0xfd,0xd9,0xc3,0xf1,0xa2,0x23,0x65,0xbe,0x73,0xe6,0xde,0x2f,0x9a,
0xe6,0xee,0x8f,0x20,0xf6,0x13,0xf7,0x3f,0x9e,0x59,0x7e,0x38,0xbd,0x7c,0x1f,0x9a,
0x5a,0x59,0x9f,0x3c,0xfe,0x68,0x76,0xed,0xd6,0xa1,0x13,0xd7,0x30,0x13,0x77,0x7a,
0xe6,0x54,0x5f,0xef,0x5c,0x83,0xfc,0x44,0x4e,0xec,0xb3,0x3f,0x34,0x1c,0xe6,0xa1,
0x19,0xc0,0xf9,0x50,0xd2,0x6,0x80,0x1,0x89,0xc,0x18,0x10,0x6,0xea,0x8,0x3,
0xd,0xa3,0xae,0x91,0x4b,0x9d,0x63,0x14,0x0,0x23,0x17,0x3a,0x87,0xcf,0xe3,0xe8,
0x5b,0x27,0x4e,0x3d,0xc,0x9e,0x6a,0xc7,0xba,0x27,0x18,0xe8,0xa3,0x33,0x0,0xe5,
0xfe,0x9e,0xe5,0x46,0x5a,0xdd,0x2b,0xe1,0x2e,0x68,0x15,0x22,0xee,0xef,0x58,0xd,
0xe1,0xdb,0x79,0xba,0xbe,0xfb,0x71,0x8,0x18,0xf4,0x1f,0x6f,0xec,0x9f,0x6b,0xea,
0x9f,0x69,0xea,0x1f,0x6f,0xa4,0x19,0xc0,0x26,0xb1,0x3a,0xc8,0x4f,0xfd,0xea,0xef,
0xe2,0x1e,0xff,0x91,0xa8,0x3d,0x4f,0x25,0x12,0xe3,0x80,0x10,0x9a,0x1,0x92,0x4,
0xc0,0x40,0x11,0x7,0x0,0xf0,0x8a,0xd8,0x15,0x25,0xc5,0x4a,0xf,0xc9,0x3,0x84,
0x81,0x31,0x8a,0x81,0x41,0xa3,0xbb,0xdf,0xe0,0xea,0x35,0x38,0xbb,0xf4,0xce,0xe,
0xbd,0xa3,0x4d,0x7,0x6,0xec,0x4d,0x5a,0x5b,0x58,0x63,0x6b,0xd0,0x58,0xc1,0x40,
0x80,0x0,0x40,0x31,0xa0,0x34,0x11,0x6,0x14,0x46,0xa7,0x1c,0xc,0x18,0xec,0x18,
0xd9,0x24,0x23,0x2,0x0,0x16,0xa8,0x4e,0xb,0x6,0xcc,0x14,0x0,0x26,0xb1,0x9a,
0x92,0xca,0x28,0x52,0x19,0x85,0x4a,0x4a,0xa,0x63,0xad,0xc2,0x58,0x3,0xc9,0x89,
0xaa,0x65,0x44,0x2,0x48,0x4a,0x54,0x55,0x67,0x82,0x2a,0x25,0x44,0x7c,0xf1,0x86,
0x2a,0x44,0x66,0xa8,0x1c,0x12,0x12,0xf1,0x6a,0x89,0xca,0xa0,0x1a,0x73,0x69,0x8d,
0xa5,0xb4,0x9a,0x88,0xb,0x9,0x88,0x4a,0xa0,0x2a,0x4b,0x71,0x95,0x99,0xa8,0xd2,
0xc8,0xa9,0x34,0x70,0xf8,0x7a,0x36,0x5f,0xc7,0xae,0xd0,0xb2,0xe1,0xfb,0x52,0x71,
0x1e,0x1c,0x5f,0xae,0x2e,0xe4,0x41,0x98,0x2,0xa4,0x2a,0x28,0x53,0x42,0xe4,0x1a,
0x64,0xa9,0x2,0xca,0xe3,0x12,0xe5,0x42,0xb4,0xfb,0xd1,0x0,0x50,0x0,0xb0,0xe8,
0x12,0xe8,0x6b,0x0,0x4c,0x4c,0xb6,0x85,0x2,0xc0,0xc9,0x60,0xbb,0xb3,0xd9,0xde,
0x6c,0xb6,0x7f,0x3,0x0,0x30,0xc0,0xbd,0x90,0x5d,0xf6,0x94,0x51,0xd1,0x91,0xc7,
0x77,0xe7,0xf3,0x2d,0xf9,0x7c,0x5d,0x1,0x5f,0x95,0xcf,0x97,0x17,0xb0,0x5b,0xa3,
0xc9,0x72,0x90,0xeb,0xdd,0xb8,0x88,0x3,0xfb,0xb6,0x93,0x4e,0x80,0xee,0x1,0x68,
0xc,0x36,0x49,0x8d,0xa5,0x62,0x6b,0x71,0x8d,0xb3,0x88,0xef,0xcf,0xcd,0xbf,0x99,
0xc0,0xbe,0x92,0xa1,0x1f,0xad,0xc3,0xe1,0x67,0xec,0xfe,0x62,0xf9,0x9f,0xf4,0xbe,
0x2f,0x0,0x20,0xb1,0xff,0xc1,0x46,0xec,0xbf,0xf2,0xe0,0x24,0xfe,0x5f,0xe1,0xfe,
0xcb,0x8f,0xd6,0x50,0x2,0xd1,0xd6,0xbf,0xf4,0xe4,0xf8,0xc5,0x87,0xc7,0xe6,0x26,
0xc6,0xbb,0x1b,0x5b,0xe0,0xf8,0x80,0x8d,0xf8,0x1e,0x5f,0x84,0x7f,0x30,0x20,0x58,
0x8d,0x2e,0xf8,0xf4,0x75,0x65,0x6b,0x85,0xa0,0x29,0xaf,0xa2,0x8d,0xc5,0xed,0xcb,
0x64,0x3c,0x38,0x98,0x32,0x12,0x1,0x0,0xa,0xc7,0x32,0x55,0x4b,0xb5,0xd,0x17,
0x9d,0xa3,0x5f,0x75,0x1e,0xbd,0x3f,0xb1,0xfc,0x68,0x1a,0x5a,0x7a,0x38,0xb5,0xf4,
0x60,0x6a,0xf9,0xc1,0xf4,0xe2,0x5d,0xf2,0x83,0x30,0x70,0x7f,0xe6,0xf8,0x8d,0xd9,
0xe3,0x5f,0xce,0x2e,0x5d,0x99,0x98,0x3c,0xde,0xdd,0x3e,0xe3,0xab,0xb8,0xb0,0x37,
0xf1,0xf1,0x9f,0xb9,0x6,0xe4,0x28,0xb1,0xb0,0x2f,0x86,0x42,0x48,0x5b,0x47,0x7a,
0x0,0xb5,0x58,0xaa,0x16,0xd7,0xe1,0xb7,0x59,0xa3,0x6e,0x99,0xf3,0xd,0xe3,0xb0,
0xe7,0x4b,0x6,0xce,0x75,0xc,0x9e,0xc5,0xa6,0x6f,0xfb,0xc0,0x49,0xb2,0x0,0xda,
0x7f,0x1c,0x19,0xa0,0x5,0xe1,0xbf,0x67,0x79,0x3,0x80,0x6e,0x0,0xb0,0x1c,0xee,
0x82,0x56,0x1a,0x3a,0x57,0x1a,0x3a,0x56,0x42,0x44,0xab,0x94,0xce,0x6,0xbb,0x9e,
0x6,0xbb,0xef,0x87,0xfa,0x56,0xc0,0x40,0x63,0xdf,0x54,0xb8,0x6f,0x2c,0xdc,0x33,
0x58,0xdf,0xdc,0xee,0xf6,0x4,0xf4,0xca,0x6,0x5e,0xd2,0xad,0xbf,0x8a,0x7b,0xf4,
0x27,0x92,0x46,0x36,0x46,0xaa,0xe0,0x94,0x4,0xe,0x47,0xa0,0x19,0x80,0xfb,0xcb,
0xa,0x69,0xb1,0x2b,0x8a,0x8b,0x95,0xde,0x5a,0xe7,0x88,0xce,0x33,0x6e,0xf2,0x8c,
0x99,0x3c,0x23,0x46,0xf7,0xa0,0x1,0xc,0x38,0x7b,0xf4,0x60,0xc0,0xd1,0x4e,0x18,
0xb0,0x37,0x6b,0x6d,0x14,0x3,0xd6,0x7a,0xb5,0x5,0x49,0x20,0xa0,0x32,0xfb,0x55,
0x66,0xaf,0xd2,0xe4,0x51,0x1a,0xdd,0xa,0xa3,0x4b,0x6e,0x20,0xc,0xc8,0xd,0x76,
0x2,0x80,0xce,0x26,0xd5,0x59,0xeb,0xb4,0x0,0x80,0x92,0xc6,0x2c,0x51,0x9b,0xc5,
0x44,0x0,0xc0,0x24,0x52,0x99,0x84,0x4a,0xa2,0x5a,0xc5,0x86,0x6a,0xb0,0x32,0x2b,
0x33,0x55,0xcb,0xcd,0xd5,0x32,0xb3,0x40,0x4a,0x54,0x55,0x47,0xcb,0x52,0x29,0x21,
0xe2,0x8b,0x89,0x2a,0xc4,0xd6,0xa,0x11,0x64,0x2b,0x87,0x84,0x36,0x1e,0x54,0x6b,
0x87,0xca,0xa0,0x1a,0x7b,0x29,0x54,0xd,0x39,0xb8,0xb4,0x4,0x8e,0x12,0xa8,0xca,
0x5e,0x5c,0x65,0x2b,0xae,0xb2,0x16,0x57,0x9a,0x39,0x7c,0x23,0x1b,0x91,0xbe,0xb8,
0x32,0xa7,0xa0,0x20,0x8b,0x99,0x9e,0x9a,0x11,0x9f,0xc0,0x2a,0x4a,0x2d,0xd7,0x16,
0xf2,0x88,0x30,0x6,0xab,0xa0,0x4c,0xd,0xe5,0x97,0xaa,0x28,0x29,0x71,0x0,0x8e,
0x3a,0x3,0x87,0xd,0x60,0x22,0xa,0x0,0x34,0x0,0x14,0x0,0x1c,0x2,0x0,0x93,
0x64,0x0,0x3,0x93,0x4d,0x3,0x60,0x63,0xb0,0x1d,0x48,0x2,0xd9,0x6c,0xcf,0x37,
0x0,0x8,0x67,0x73,0xba,0xb3,0x4b,0x9f,0x66,0xf3,0xce,0xb1,0xf0,0xcc,0xc,0xdf,
0x91,0xcf,0x37,0xe6,0xf3,0x35,0xf9,0x7c,0x25,0x18,0xc8,0x4f,0xfa,0xe2,0xef,0x63,
0x3f,0xfa,0xab,0xe4,0x18,0xdc,0x18,0xde,0x43,0x3,0xf0,0x32,0x9,0x6c,0xaa,0x33,
0x71,0x85,0x36,0x4e,0x95,0x3b,0xbf,0x74,0x28,0x2b,0x67,0x3d,0xae,0x6a,0x86,0x83,
0xf6,0x77,0xe2,0x62,0xdf,0xc9,0x9b,0x47,0xb1,0xfe,0xf3,0xd9,0x86,0xfb,0xd1,0xfb,
0x9e,0xbb,0x7a,0xff,0xd4,0xd5,0xfb,0xa7,0xc1,0x0,0xc2,0xff,0x15,0x2a,0x3,0x5c,
0x7e,0x48,0x2a,0x7e,0xe8,0xd2,0x63,0xe2,0x7e,0x30,0x70,0xfa,0xf3,0x45,0x8c,0xd9,
0x6a,0xf2,0x5,0xb0,0xf9,0x45,0x55,0xff,0x1b,0xc,0x4,0x5d,0xce,0xac,0x9b,0x3f,
0x10,0x2e,0xa6,0x89,0x9b,0x4a,0x2a,0x9b,0x72,0x79,0x6d,0xc,0xf6,0x7c,0x4a,0xd6,
0xcd,0x3,0x49,0xed,0xfb,0x53,0x7a,0x22,0x79,0x93,0xf9,0xc6,0x55,0x79,0xcb,0x65,
0xff,0xe4,0x8d,0xbe,0xc5,0x7,0x93,0xcb,0xf,0x49,0xec,0x87,0xe9,0x17,0xef,0x4f,
0x2e,0xdc,0x9b,0x58,0xbc,0x3b,0xb9,0x78,0x67,0x72,0xe9,0xe1,0x24,0x36,0x7,0x8e,
0xdd,0x99,0x39,0x8e,0xb9,0x40,0x9f,0xcd,0x2c,0x5e,0x1a,0x1f,0x5f,0xed,0x6c,0x9a,
0x72,0x14,0x7c,0xfe,0x6b,0xbc,0x7a,0x14,0x68,0x21,0xa3,0x53,0xb0,0x25,0x8c,0xf0,
0x4f,0x67,0x0,0x7c,0x55,0x78,0xf8,0xa8,0x4e,0x66,0x36,0xa8,0x3b,0x57,0xea,0x87,
0x2f,0xb6,0x23,0x15,0x8c,0x5c,0x24,0x49,0x0,0xd5,0xdd,0xe0,0x99,0xb6,0xfe,0x93,
0x64,0xed,0xbf,0xf,0x8b,0x3f,0xc7,0x48,0xf,0x40,0x3,0xd0,0xbd,0x4,0xf7,0x37,
0x76,0x2d,0x85,0x3b,0x97,0x1a,0x3a,0x97,0xea,0x3b,0x97,0x1b,0x3a,0x96,0x9,0x0,
0xed,0x44,0x41,0xa8,0xe3,0x5c,0xb0,0xf3,0x59,0xa0,0xfb,0x4e,0xb0,0x6f,0xb9,0xb1,
0xf7,0x70,0xb8,0x77,0x2a,0xdc,0x3b,0xd6,0xd0,0x3d,0x10,0x6a,0x6e,0x73,0xb9,0xbd,
0xda,0xba,0x86,0xe2,0xc4,0xbb,0x7f,0x99,0xf0,0xe0,0xcf,0xf0,0x8a,0x14,0x36,0xc8,
0xb0,0x28,0x84,0x24,0xc0,0xcd,0x2f,0x40,0x1e,0x40,0x21,0xc4,0xcd,0x2b,0x28,0x2d,
0x28,0xaa,0x28,0xe1,0x28,0x3,0x42,0xc7,0x88,0xce,0x3d,0x66,0xf4,0x8c,0x1a,0xdd,
0xc3,0x46,0xd7,0x80,0xc1,0xd9,0xa7,0x7,0x3,0x8e,0x4e,0x9d,0xbd,0x5d,0x6b,0x6f,
0xd5,0xda,0x9a,0x35,0xd6,0x46,0x8d,0xb5,0x41,0x6d,0x21,0xc,0xa8,0xcc,0x1,0x95,
0xc9,0xa7,0x34,0x79,0x15,0x46,0x8f,0xc2,0xe8,0x96,0x53,0xc,0xc8,0xf4,0xe,0x99,
0xde,0x2e,0x25,0x0,0xd8,0xea,0xb4,0x60,0xc0,0x5a,0xa7,0xb1,0x48,0x28,0x51,0x0,
0x98,0xc5,0x2a,0x33,0x36,0x37,0x85,0x44,0x16,0xa1,0xc2,0x52,0x4b,0xa9,0x46,0x6e,
0xa9,0x96,0xd1,0xb2,0xa,0xa4,0x44,0x55,0x75,0x90,0xad,0x92,0xc8,0x5e,0x29,0xb1,
0xf1,0x25,0x76,0xbe,0xd8,0x5e,0x21,0x76,0x54,0x88,0x20,0x67,0x39,0x24,0x74,0xf1,
0xa0,0x5a,0xc8,0x5d,0x46,0xe4,0x29,0xab,0xf1,0x94,0x42,0xd5,0x1e,0x2e,0x2d,0x81,
0xbb,0x44,0xe0,0x2a,0xa9,0x72,0x14,0x57,0xe8,0xd9,0x5c,0x51,0x7e,0x51,0x9,0x33,
0x27,0x3b,0x3d,0x2b,0x29,0x39,0x2d,0x2e,0x3e,0x29,0x2a,0x3a,0xee,0x40,0x24,0x42,
0x6f,0xfc,0xc1,0xc8,0xe2,0xba,0x1c,0x9e,0xbe,0x90,0x48,0x57,0x50,0x6,0x69,0xf3,
0x4b,0x35,0xf9,0xa5,0xc0,0x40,0x9d,0xc7,0x55,0x41,0xe4,0x8,0x50,0x9,0x11,0xb5,
0xfe,0x43,0x77,0xc0,0xff,0x15,0x0,0xc6,0x37,0x1,0x28,0x72,0x67,0x17,0xf9,0xb2,
0x8b,0x82,0xd9,0xec,0xfa,0x6c,0x76,0x98,0xa8,0xe4,0x1c,0x29,0x84,0x2a,0xba,0xf2,
0x2a,0x3c,0xf9,0x7c,0x6b,0x3e,0x5f,0x9f,0xcf,0x57,0xe7,0xf3,0x15,0xf9,0x85,0xbd,
0x64,0x4f,0x20,0x59,0xb4,0x33,0x7a,0xdf,0x3e,0x1c,0xe,0xa5,0x8b,0x1f,0xb2,0x10,
0xb4,0xf5,0xfd,0x4d,0x62,0xb,0x15,0xfe,0xbd,0xb9,0x85,0x97,0x93,0xb,0x6e,0xa6,
0x28,0x6,0x6a,0xda,0x8f,0x85,0x70,0xf8,0xf9,0xc2,0xbd,0x63,0x38,0xe0,0x89,0xd2,
0xff,0x63,0x34,0xbe,0x8f,0xcf,0x7d,0xf4,0xf0,0xcc,0x47,0xf,0xa0,0xd3,0xc0,0x0,
0xee,0x27,0x19,0xe0,0xd1,0x29,0x84,0x7f,0xb8,0xff,0xe2,0xa3,0xe3,0x17,0x49,0xfd,
0x73,0x2,0x18,0x2c,0x1d,0xc3,0xdb,0xbc,0x9d,0xd,0x6e,0xd4,0x3f,0xe4,0xd4,0x3,
0xc9,0x0,0x18,0x72,0x88,0x47,0xe9,0xda,0x65,0xf1,0x4f,0xfe,0x4c,0xdb,0x2b,0xa8,
0x9,0x17,0xf2,0x9b,0x72,0xca,0xda,0xb3,0xf3,0xae,0xc4,0xa5,0xad,0x45,0x24,0xb6,
0xef,0xcb,0xee,0x8b,0xaf,0x9d,0x2d,0x75,0xae,0xe9,0xbb,0x3f,0xe,0xcf,0xde,0x1c,
0x5a,0x7a,0x30,0xbd,0x74,0x9f,0x68,0xf1,0xfe,0x14,0xdc,0xbf,0x70,0x77,0xe2,0xe8,
0x9d,0x89,0xa3,0xb7,0xc7,0x8f,0xde,0x1a,0x5f,0x7a,0x32,0xb1,0xf4,0x74,0xe2,0xd8,
0xcd,0x99,0x63,0xd7,0x66,0x56,0x3f,0x99,0x9e,0x3f,0x3f,0x3c,0xb8,0xd0,0x1c,0x98,
0xd4,0x67,0xdc,0xfe,0x7e,0xfe,0x97,0x3f,0xaf,0xf,0xba,0x5c,0x46,0x33,0x9a,0x1,
0x8d,0x84,0x0,0x40,0x8b,0x30,0x20,0x91,0x5a,0x6c,0xda,0xae,0xb5,0x6,0xf4,0x3,
0x0,0x60,0xe8,0x7c,0xfb,0xd0,0xb9,0xf6,0x1,0x0,0x80,0x1d,0x5f,0xec,0x7c,0x9d,
0x0,0x0,0x68,0x7f,0x49,0xe9,0xf,0x0,0x60,0xfd,0xae,0xc5,0x6,0x7c,0x3b,0x16,
0xeb,0x3b,0x17,0xeb,0x3b,0x96,0x88,0xda,0x97,0x82,0xc0,0xa0,0x6d,0x39,0xd8,0xb6,
0x1c,0x68,0x5f,0xe,0xb6,0x5f,0xc,0x10,0x6,0x6e,0x85,0x7a,0x17,0xc3,0xbd,0x87,
0x1a,0x7a,0x27,0x1b,0x7a,0x30,0x27,0xbd,0x2f,0xd8,0xd8,0xe2,0x70,0x79,0x35,0xa2,
0xa6,0xfc,0x84,0xfb,0x7f,0x91,0x78,0xef,0x3b,0x32,0x6f,0x99,0x8c,0x6c,0x90,0xf1,
0xc0,0x0,0x7c,0x8f,0xc,0x50,0x9a,0x5f,0xc8,0xa5,0xc4,0xe7,0x96,0x28,0x3,0xb5,
0xf6,0x61,0xd,0x18,0xc0,0x89,0x9,0xd7,0x90,0xc1,0x39,0xa0,0x77,0xf4,0xea,0x1c,
0xdd,0x3a,0x7b,0xa7,0xd6,0xde,0xa6,0xb5,0xb5,0x68,0xac,0x4d,0x6a,0x6b,0xa3,0xda,
0xd2,0xa0,0x32,0x87,0x54,0x66,0x30,0xe0,0x57,0x9a,0x7c,0xa,0x23,0x61,0x40,0x6e,
0x70,0xcb,0xf5,0x2e,0x99,0x9e,0x30,0x20,0xd5,0xd9,0xa5,0x5a,0x0,0x40,0x49,0x63,
0x95,0x40,0x6a,0xab,0x58,0x6d,0x15,0xa9,0x28,0x61,0x5,0x96,0x52,0xad,0x82,0xa8,
0x46,0xe,0xd9,0xaa,0x65,0x76,0x22,0xa9,0x5d,0x40,0xa9,0xaa,0xce,0x1,0x55,0x4a,
0x20,0x67,0xa5,0xc4,0xc5,0x87,0xc4,0xee,0xa,0xb1,0x87,0x2f,0xf2,0x54,0x88,0xbc,
0xe5,0x90,0xd0,0xcb,0x13,0xfa,0x78,0x42,0x3f,0xaf,0xd6,0x5f,0x46,0xa9,0xb4,0x86,
0x52,0xb5,0x8f,0x5b,0xed,0xe5,0x56,0xda,0x38,0x65,0xe8,0x35,0xcb,0x59,0xb9,0xcc,
0xc,0x98,0x3e,0x23,0x21,0x31,0x29,0x3a,0x26,0x3e,0xf2,0x20,0x9a,0xce,0xd8,0x88,
0x3,0x31,0xfb,0xf6,0x63,0x5e,0x55,0x34,0xf5,0xcd,0xcc,0x49,0xe2,0x19,0xa,0x79,
0xc6,0x2,0x9e,0xa1,0xa0,0xc,0xd2,0xe7,0x97,0xe9,0xf2,0xc9,0xd,0x60,0x6d,0x1e,
0x57,0x3,0x91,0x53,0xd0,0x25,0x44,0x64,0xf,0xb8,0x98,0xe8,0x45,0xfd,0xa3,0x23,
0x19,0x80,0x4d,0x67,0x0,0x33,0x83,0x4d,0xb5,0x1,0x45,0xce,0xec,0x97,0x0,0x14,
0xd5,0x67,0x15,0x85,0xb3,0xd8,0x8d,0x59,0x9c,0xee,0x2c,0x92,0x4,0x2e,0x31,0x2b,
0x2,0x79,0x15,0xce,0xfc,0xa,0x73,0x7e,0x85,0x36,0x1f,0x85,0x50,0x85,0x9a,0x9c,
0xe,0x8a,0x3f,0xfc,0x43,0xbc,0x27,0x80,0xf5,0x50,0xba,0x15,0xde,0x28,0x81,0x10,
0xfe,0x5,0xae,0x7c,0x5e,0xb,0x33,0xe7,0x59,0x2c,0x6f,0x25,0xd7,0x36,0xad,0x19,
0x38,0xdd,0x7a,0xe2,0xfa,0x3c,0x96,0x38,0x1,0x0,0xbd,0xf2,0x43,0xd6,0x7c,0x88,
0xf5,0x11,0xfb,0x37,0xc2,0xff,0xe5,0x7,0x6b,0x97,0x1e,0xac,0x1,0x0,0x2a,0xf6,
0xc3,0xfa,0xc7,0x91,0x1,0xce,0xdf,0x5f,0x39,0x3c,0x36,0xd6,0x1d,0x6e,0x86,0xef,
0x61,0x7a,0xba,0xfe,0xf1,0x5a,0x30,0xe8,0xd3,0x25,0x58,0x89,0x2d,0xf8,0xec,0x35,
0x55,0x33,0x5f,0xd0,0x90,0x57,0xde,0xcc,0x2c,0xe9,0xca,0x64,0xdc,0x8f,0x4a,0x1e,
0xdd,0x9f,0xd8,0xbe,0xbf,0x60,0x28,0x43,0x3e,0x5f,0x1d,0x3c,0x63,0xeb,0xff,0xa4,
0x65,0xfe,0xf6,0xd8,0xe2,0xbd,0x29,0xe2,0xfe,0x7b,0x53,0xb,0x8,0xfc,0xe4,0xfb,
0x2,0x0,0x8a,0x81,0xc5,0xa7,0x63,0x4b,0x8f,0x27,0x56,0x31,0x15,0x2,0x53,0xb1,
0xae,0x4e,0x1c,0x3a,0xdd,0xdf,0x37,0x1f,0xb6,0xcd,0x8a,0x13,0x1f,0x7d,0x97,0x77,
0x71,0x57,0xbd,0xcb,0x8d,0x73,0x72,0x58,0x2,0x42,0xfd,0x3,0xeb,0xe3,0xb,0x29,
0xf1,0x6,0x9e,0x44,0xe6,0xc,0x18,0xbb,0x4f,0x87,0x87,0x2e,0xb6,0x3,0x3,0x30,
0x30,0x78,0xb6,0xd,0xff,0x6b,0xf6,0x9f,0x6a,0x5,0x3,0xbd,0xc7,0xb1,0xf8,0x3,
0x0,0x48,0xec,0x47,0x6,0xe8,0x5a,0xc,0x77,0x2e,0x36,0x74,0x2c,0xd4,0x13,0x2d,
0x86,0xda,0x17,0x43,0x6d,0x8b,0xc1,0xb6,0xc5,0x40,0xdb,0x52,0x0,0x0,0xb4,0x2e,
0x93,0x6f,0xdb,0x15,0x7f,0xc7,0x73,0x7f,0xd7,0xf5,0x40,0xcf,0xd1,0x86,0x9e,0xd9,
0xfa,0x9e,0x89,0x86,0xee,0xe1,0x50,0x67,0x6f,0x80,0x6c,0x90,0xb9,0x55,0x35,0xed,
0x4c,0x9c,0xc8,0x4d,0xba,0xf3,0x3d,0xa9,0xb3,0x5c,0x2a,0xa8,0xc1,0x96,0x30,0xdc,
0x4f,0x32,0x40,0x7e,0x41,0x9,0x49,0x2,0x85,0x50,0x39,0xf2,0x40,0x48,0x68,0x1d,
0x56,0x63,0x8b,0xc0,0x35,0x62,0x70,0xd,0xe9,0x1d,0xfd,0x3a,0x47,0xaf,0xd6,0xde,
0xad,0x5,0x3,0xd6,0x36,0x8d,0xb5,0x45,0x63,0x69,0x52,0x5b,0xc2,0x2a,0x33,0x61,
0x40,0x69,0xa,0x2a,0x8d,0x7e,0x85,0xd1,0xa7,0x30,0x78,0xe5,0x6,0xf,0x5,0x0,
0xc5,0x80,0xce,0x29,0xd5,0x39,0xea,0xb4,0xf6,0x3a,0x8d,0x5d,0xa2,0xb1,0x11,0xa9,
0x6d,0x62,0x95,0x4d,0x44,0x4b,0x69,0x13,0x42,0x58,0x80,0xa2,0x54,0x23,0x87,0x1c,
0xd5,0x32,0xc8,0x9,0x9,0xa4,0x2e,0xa8,0xaa,0xe,0x72,0x57,0xd6,0x79,0x2a,0x25,
0x90,0x97,0x2f,0xf1,0xf1,0xc5,0xfe,0xa,0xa2,0x40,0x85,0x28,0x58,0xe,0x9,0x83,
0x3c,0x61,0x88,0xa8,0x36,0x54,0x46,0x14,0x28,0x45,0xc8,0x47,0x71,0x5f,0x22,0xc8,
0xcd,0xcb,0xcd,0x64,0xa4,0xa4,0xc2,0xf4,0x29,0x31,0xb1,0x89,0x7,0xa3,0x20,0x98,
0x9e,0x56,0xcc,0xfe,0x88,0xd,0xed,0xdb,0xf,0x0,0xa0,0xb8,0xc8,0x3,0xc5,0xa,
0x16,0xcf,0x5c,0x40,0x64,0x2a,0x28,0x33,0xe6,0x97,0x19,0xf2,0xc9,0x10,0x14,0x7d,
0x1e,0x57,0x7,0x91,0x3b,0x0,0x25,0x44,0x39,0xc5,0x90,0x86,0xec,0x82,0x91,0xea,
0x1f,0xfa,0x1a,0x0,0x6,0xd,0x40,0x91,0x3d,0xfb,0x6b,0x0,0x2,0x59,0x45,0x21,
0x2,0x40,0x51,0x23,0x61,0xa0,0xe4,0x74,0x56,0xe9,0xf3,0xec,0xf2,0xde,0xdc,0xa,
0x6f,0x5e,0x85,0x2d,0xaf,0xc2,0x90,0x5f,0x81,0x42,0x48,0x91,0xcf,0x3a,0xf4,0x6e,
0xf4,0xe3,0xdf,0x4f,0x4e,0x3f,0x48,0x57,0x41,0x68,0x85,0x11,0xfe,0x49,0x6,0xa8,
0x71,0x14,0xf1,0x3d,0x79,0xec,0x95,0xd4,0xdc,0xc7,0xf1,0xa2,0xc1,0xf2,0xc6,0x45,
0xcf,0xf4,0x95,0xc1,0xb3,0x77,0x96,0x51,0xff,0xd0,0xbd,0x2f,0x36,0xbc,0x48,0xe9,
0xff,0xe0,0xc,0xe5,0xfe,0xd3,0x97,0xef,0x9f,0x44,0xf8,0x27,0x0,0x3c,0x3c,0x71,
0xe9,0xd1,0x46,0xf8,0xa7,0x33,0xc0,0xc9,0x4f,0x16,0x50,0xff,0xe0,0xfa,0x6f,0x90,
0x8a,0xfd,0x60,0x0,0x0,0xf8,0xac,0xf6,0x0,0xa9,0x7f,0x7e,0x54,0xbb,0x90,0x2a,
0x9,0x97,0x54,0x36,0xe4,0x96,0x35,0x67,0x17,0xcd,0xa4,0x64,0xde,0x39,0x90,0xd8,
0xba,0x3f,0xa5,0x33,0xb2,0x6c,0x2c,0xcf,0xb0,0x28,0x6d,0x3e,0xef,0x1d,0xff,0xb2,
0xf7,0xe8,0xed,0x89,0x25,0x54,0xfc,0x77,0xa7,0x17,0xee,0x4c,0x42,0x88,0xfd,0x47,
0xe0,0x7b,0xea,0x7b,0xe4,0xd6,0xd8,0xfc,0xcd,0x31,0x7c,0x17,0x9e,0x8f,0x2d,0x3d,
0x98,0x58,0xb9,0x46,0x5e,0x4,0x5b,0xb8,0x3c,0x36,0xbd,0xd6,0xdb,0x39,0x1b,0x50,
0x2f,0x70,0xf0,0xda,0x45,0xdd,0x72,0x26,0xfe,0x1b,0x2d,0x98,0xf4,0x2f,0x21,0x3d,
0x0,0xcd,0x0,0x0,0x50,0xd4,0x8a,0x35,0x75,0x52,0x57,0x8b,0xb1,0xf7,0x6c,0x13,
0xd6,0x46,0x7,0x2f,0xb4,0xd,0x9e,0x6b,0x1b,0x38,0x43,0x3,0x80,0x85,0xff,0xe6,
0x9e,0x63,0xd4,0xe2,0xf,0xea,0x7e,0x92,0x1,0xbe,0x6,0xa0,0x7d,0x21,0xd4,0x76,
0x34,0xd8,0xb6,0x0,0x0,0x8,0x3,0xad,0x8b,0xfe,0xd6,0xa5,0x0,0xde,0x46,0x80,
0x5a,0x3f,0xf2,0xb5,0xaf,0xfb,0x3a,0xbf,0xc,0x60,0x46,0x62,0xf7,0x4c,0x7d,0xf7,
0x58,0xa8,0x6b,0x28,0xd4,0xd6,0xe5,0xab,0x6f,0xb4,0xd9,0x5c,0x4a,0x41,0x57,0x26,
0xae,0x26,0xe1,0x56,0xa7,0xcc,0xca,0x27,0xc,0x94,0x94,0x62,0x39,0x88,0x64,0x80,
0xbc,0x2,0x2a,0x9,0x10,0x12,0xca,0xb9,0x6c,0x55,0x3d,0x61,0xc0,0x39,0xaa,0x77,
0x8d,0xe8,0x9d,0x43,0x3a,0x47,0xbf,0xd6,0xde,0xab,0xb5,0x75,0x69,0x6c,0x1d,0x1a,
0x6b,0x9b,0xda,0xda,0xa2,0xb6,0x34,0xa9,0xcc,0x61,0xa5,0xa9,0x41,0x69,0xa,0x29,
0x8c,0x1,0x5,0x18,0x30,0xf8,0xe4,0x6,0xaf,0x4c,0xef,0x91,0xe9,0xdd,0x32,0x9d,
0x4b,0xaa,0x73,0xd5,0x81,0x1,0xad,0x43,0xa2,0xa1,0xa4,0xb6,0x8b,0x21,0x95,0x5d,
0x44,0x49,0xa8,0x74,0x40,0xb5,0xa,0xc8,0x9,0xd5,0x60,0x19,0x4a,0xee,0xae,0x86,
0x64,0x1e,0x1,0x24,0x85,0xbc,0x55,0x52,0x5f,0x55,0x9d,0xbf,0x12,0x92,0x4,0xf8,
0x92,0x20,0x5f,0x12,0xe2,0x8b,0xeb,0x2b,0xc4,0xd,0x44,0xa2,0x86,0x72,0x4a,0x3c,
0x61,0x3d,0xaf,0x26,0x50,0x8a,0xee,0xb6,0xb4,0x36,0x9f,0x5d,0xc4,0xcc,0x49,0xcf,
0xc8,0x4e,0x4e,0x45,0x85,0x93,0x1c,0x1d,0x3,0xd3,0xbf,0x8c,0xf7,0xf8,0x11,0x17,
0x41,0x2,0x3f,0xca,0x1e,0x9a,0x1,0x2,0x3,0xfd,0xa5,0xfe,0x98,0x9e,0x1b,0xcf,
0xb3,0x16,0xd0,0x2a,0xb3,0xe6,0x97,0x99,0xf3,0x4b,0x4d,0x79,0xa5,0xc6,0x3c,0xae,
0x1,0x22,0xf7,0x80,0x4b,0x74,0x10,0xce,0xff,0xd0,0x82,0xf5,0x29,0x21,0xfc,0x43,
0x46,0x64,0x80,0x17,0x0,0xd8,0xb2,0x8b,0x1c,0x54,0x6,0xf0,0x66,0x17,0xf9,0x29,
0x0,0x1a,0x8,0x0,0x45,0x4d,0x59,0xec,0xae,0xac,0xd2,0x27,0x59,0x65,0x57,0x99,
0xe4,0x7d,0xd,0x57,0x5e,0x85,0x39,0xaf,0x42,0x97,0x5f,0x81,0xa9,0x5b,0xb6,0x6c,
0x1c,0xe3,0x4d,0x72,0x6e,0xc6,0x95,0x79,0xac,0x5,0xd1,0x19,0x80,0x0,0x20,0x70,
0x15,0x94,0x7,0x58,0x39,0xf7,0xe2,0xd9,0xe7,0x33,0x8d,0x63,0xf2,0xee,0xb5,0xc6,
0x85,0xcf,0xa7,0xe0,0x6f,0x72,0xc2,0x99,0x1c,0xf5,0xa1,0x1a,0xdf,0x7,0xa7,0xaf,
0xa0,0x1,0x20,0xdf,0x93,0x0,0x80,0xa,0xff,0x27,0x2e,0x3d,0x5c,0xbb,0xf4,0x88,
0x94,0x3d,0x24,0xfc,0x3f,0x3e,0x71,0xe1,0xd1,0xb1,0x45,0x5c,0x7f,0x6f,0xed,0x40,
0xf5,0x4f,0xdc,0x6f,0x25,0x19,0x0,0xc,0xf8,0xac,0xe,0x6b,0x9b,0x82,0xaa,0x7f,
0xaa,0xaa,0xeb,0xb,0x2a,0xc2,0xac,0xd2,0x96,0xac,0xdc,0x8b,0x71,0x69,0xa7,0x23,
0x12,0x5a,0xf7,0x65,0xf6,0xc4,0x56,0x4f,0x71,0x1d,0xc7,0x74,0x9d,0x97,0xeb,0xa7,
0xaf,0xd,0xa0,0xd6,0x5f,0xbc,0x33,0x5,0x1d,0xbd,0x35,0x1,0x1d,0xb9,0x5,0xdf,
0x8f,0x13,0xf7,0xdf,0x1e,0x9b,0xbb,0x35,0x3a,0x77,0x73,0x74,0xee,0xc6,0xe8,0xfc,
0x9d,0xd1,0xa3,0xcf,0x47,0x96,0xee,0x4c,0x2c,0x7f,0x89,0x67,0x91,0x26,0x8f,0x5e,
0x1a,0x1d,0x3b,0xd6,0xd1,0x36,0xe3,0xad,0x39,0x99,0x14,0xfb,0xec,0xdb,0xba,0xd1,
0xa,0x4c,0x91,0xc0,0xce,0x80,0x86,0xea,0x1,0xe0,0x7e,0x79,0xad,0x8,0xa5,0x8,
0xe9,0x89,0xa5,0x32,0x5f,0xbf,0xb5,0xef,0x5c,0xf3,0xe0,0xf9,0xb6,0x1,0x0,0x70,
0xb6,0xb5,0xef,0x74,0x4b,0xef,0x49,0xb2,0xf5,0x4b,0x56,0xfd,0x57,0x1a,0x49,0xe3,
0xbb,0xd4,0x40,0x0,0x58,0x68,0xe8,0x38,0x5a,0xf,0xb5,0x1f,0xd,0xb5,0x1d,0x9,
0x82,0x81,0xd6,0xa3,0x81,0xd6,0x5,0x0,0x10,0x68,0x59,0xf4,0xb7,0x2c,0xfa,0x9a,
0x17,0x7d,0xf8,0xb6,0x7e,0xea,0x6d,0x5b,0xf7,0x76,0x7c,0xea,0xef,0x9a,0xb,0x75,
0x4d,0x5,0xbb,0x46,0x83,0x9d,0x3,0xc1,0xd6,0x4e,0x6f,0x28,0x6c,0xb5,0x38,0xe4,
0x15,0x7d,0x89,0x31,0x4f,0x7e,0x37,0xed,0xda,0x3f,0xcb,0xd,0x2,0x4c,0x56,0xc4,
0xe6,0x0,0x16,0x82,0x60,0x7d,0xca,0xfd,0xf9,0xd4,0x8f,0x42,0x5e,0x9,0x5b,0xd9,
0x8,0x6,0x54,0x58,0x1a,0x72,0x8e,0xe8,0x1d,0x43,0x3a,0x7b,0xbf,0xd6,0x46,0x31,
0x60,0xa5,0x18,0x30,0xb7,0xa8,0xcc,0x4d,0x4a,0x73,0x23,0x61,0xc0,0x8,0x6,0x82,
0x72,0x83,0x5f,0x6e,0xf0,0xc9,0xf4,0x1b,0xc,0x48,0x75,0xee,0x3a,0x60,0xa0,0x75,
0xd5,0x69,0x5d,0x12,0x8d,0x53,0xa2,0x76,0x8a,0xd5,0x4e,0x91,0x8a,0x92,0xd2,0x29,
0x54,0xba,0xa0,0x5a,0x85,0x9b,0x92,0xa7,0x46,0xee,0x25,0x92,0xf9,0xaa,0x65,0x3e,
0x81,0xcc,0x2f,0x90,0xfa,0xab,0xa4,0x81,0x2a,0x69,0xa8,0xaa,0xae,0xbe,0xb2,0xae,
0x81,0x48,0x12,0xe6,0x13,0x35,0xf2,0xc5,0x8d,0x15,0xe2,0x70,0x5,0xa2,0x3e,0x96,
0x77,0x70,0x78,0x81,0x5d,0xc2,0xca,0xc9,0x84,0xe9,0x53,0xd2,0x13,0x12,0x93,0x63,
0x62,0x51,0xd9,0xc3,0xf7,0x9,0x94,0x88,0xe9,0xf,0x44,0x26,0x50,0x35,0xf,0x29,
0xf7,0xbf,0xa1,0x8d,0x6c,0x40,0x95,0x40,0x70,0x3f,0xc9,0x3,0xfb,0xf7,0x73,0x54,
0x4c,0x9e,0xa3,0x80,0x56,0x99,0x3d,0xbf,0xd4,0x96,0x5f,0x6a,0xc5,0x28,0xb8,0x3c,
0xae,0x9,0x97,0x80,0x73,0x4b,0x20,0x43,0x4e,0x31,0x84,0xe3,0xf,0x7a,0x58,0x9f,
0x5a,0x0,0x45,0xf1,0x3,0xbd,0x0,0xa0,0x88,0xce,0x0,0xdf,0x4,0x20,0xf8,0x35,
0x0,0x45,0xcd,0x59,0xc5,0x27,0x91,0x4,0xb2,0xca,0x7,0x72,0xc9,0x53,0x4b,0xf6,
0xbc,0xa,0x63,0x5e,0x85,0x26,0xaf,0x42,0x99,0x9f,0x76,0xf1,0x47,0x71,0xab,0xff,
0x8c,0xff,0xc9,0xf7,0xef,0xd8,0xb9,0xd1,0x6,0x0,0x80,0x4a,0x77,0x5e,0xf1,0x44,
0x6,0x6b,0x3d,0xb6,0x6a,0x9c,0xe3,0x9b,0xb3,0x8c,0x5e,0xe8,0xc6,0xec,0x93,0xab,
0x38,0xe2,0xf6,0x18,0xeb,0xfd,0xa4,0xee,0x27,0xd6,0xbf,0x4f,0x0,0xb8,0x72,0xef,
0xe4,0xe5,0x7b,0x27,0x2f,0xde,0x3d,0x7e,0xe9,0xfe,0xda,0x45,0x2,0xc0,0x89,0x8b,
0xf,0x49,0xf5,0xf,0xc1,0xfd,0x38,0x32,0x34,0x83,0x57,0xf5,0xea,0xc3,0xd4,0xba,
0x27,0x1,0x60,0x43,0x36,0x47,0xf5,0x4a,0x5c,0xde,0x67,0xbf,0x54,0x36,0xf3,0x71,
0xcc,0x8e,0xd7,0xc8,0x28,0xe9,0xc8,0x60,0xdc,0x3d,0x98,0x3c,0xb6,0x3f,0xa1,0x6d,
0x5f,0xee,0x40,0xaa,0xec,0x70,0x95,0xff,0xa4,0xa5,0xf7,0x6a,0xf3,0xa1,0xeb,0xc3,
0x8b,0x77,0xa6,0x17,0x6f,0x4f,0x2f,0xdc,0x9a,0x84,0x8e,0xdc,0x84,0xfb,0x27,0xa8,
0xef,0x38,0xb1,0x3e,0x5,0xc0,0xe1,0x1b,0x23,0xd0,0xdc,0xfd,0xe1,0x23,0x60,0xe0,
0xe6,0xc4,0xd2,0xe7,0x18,0xc,0x3a,0x7e,0xf8,0xfc,0xe0,0xf0,0x6a,0x6b,0x78,0xca,
0x5e,0x72,0x75,0x5b,0xe2,0xa3,0x3f,0xb7,0x77,0xc8,0x31,0x47,0x8,0xab,0xa2,0xc8,
0x3,0xa,0xca,0xfd,0x60,0x40,0x8a,0x6f,0x8d,0x50,0x27,0x97,0xd7,0x4f,0x38,0x91,
0x7,0xfa,0xcf,0xb5,0xf4,0x9f,0x6d,0xe9,0x3f,0xd3,0xd2,0x7b,0xaa,0xb9,0x67,0xd,
0x5b,0xbf,0x58,0xfb,0x27,0x0,0x90,0xde,0x17,0x95,0xf,0xac,0x7f,0x24,0x4,0xb5,
0x11,0x5,0x5b,0x8f,0x4,0xa0,0x96,0x23,0xfe,0x96,0xa3,0xbe,0x66,0x68,0x81,0xa8,
0x69,0xc1,0xdb,0xbc,0xe8,0x6d,0xf9,0xc2,0xd3,0xf6,0xdc,0xd3,0xf1,0x91,0xbf,0xf3,
0x50,0xb0,0x73,0x22,0xd8,0x39,0x1c,0xe8,0xe8,0xf,0x34,0x77,0xb8,0xb1,0x39,0x60,
0xb2,0x49,0x4b,0x87,0xa2,0xf1,0xfa,0x46,0xc6,0x67,0x3f,0x92,0x69,0xaa,0x70,0x62,
0x14,0x3b,0xc4,0x68,0x6,0x8a,0x73,0xf3,0x21,0x0,0x50,0x9c,0x9b,0x47,0xfa,0xe3,
0xd2,0x22,0x65,0x63,0xad,0x6d,0x44,0xed,0x1c,0xd3,0xa1,0x33,0xb6,0xf,0x6a,0x6d,
0x7d,0x1a,0x5b,0x8f,0xc6,0xda,0xa5,0xb6,0x74,0xa8,0xcd,0x6d,0x2a,0x73,0x8b,0x12,
0xc,0x98,0x48,0x1e,0x50,0x18,0x42,0x72,0x43,0x40,0xae,0xf7,0xcb,0xf4,0x60,0xc0,
0x27,0xd5,0x79,0xa5,0x5a,0x4f,0x9d,0xd6,0xd,0x49,0x34,0x90,0x4b,0xa2,0x76,0x89,
0xd5,0x2e,0x91,0xca,0x25,0x52,0xbb,0x45,0x4a,0xb7,0x90,0xc8,0x53,0xab,0xf0,0x42,
0x35,0xa,0x5f,0x8d,0xdc,0x5f,0x2d,0xf,0x54,0xcb,0xa0,0xa0,0x40,0x56,0x2f,0x90,
0x36,0x54,0x11,0x85,0xab,0xea,0x1a,0x2b,0x89,0x9a,0x88,0x10,0xf8,0x6b,0x1c,0xa5,
0xd8,0xc7,0x2d,0x29,0xcb,0xcb,0x63,0x64,0x31,0x53,0xd3,0x32,0x13,0x93,0xd2,0xe2,
0x12,0x52,0x62,0xe3,0x50,0xdc,0x43,0x89,0x51,0xd1,0xb4,0xef,0x37,0x62,0x3f,0xac,
0xff,0x42,0x74,0xe0,0xa7,0x19,0x0,0xf,0xa0,0x2,0x3f,0x88,0xfb,0x69,0xa1,0x28,
0xda,0xb7,0x3f,0x8d,0x11,0xc7,0x73,0x17,0xf0,0x3c,0x44,0x65,0xee,0xfc,0x32,0x57,
0x7e,0xa9,0x33,0x8f,0x6b,0xcf,0xe3,0x5a,0x73,0xb9,0x96,0xdc,0x12,0x33,0xb9,0x2,
0x56,0x6c,0x84,0xc8,0x29,0x68,0x8e,0x81,0x45,0xf6,0xbf,0x60,0x7d,0x22,0x6,0xc9,
0x0,0x16,0xc6,0x7f,0x2,0xc0,0x93,0x55,0xe8,0xcb,0x2a,0xc,0x66,0x15,0xa2,0xd,
0x40,0x6,0x68,0xa6,0xd4,0x95,0xc5,0x7d,0x9c,0x55,0xf6,0x11,0xa3,0xbc,0x3e,0x8f,
0xbc,0x38,0x66,0xcd,0xab,0xd0,0xe7,0xa1,0xd,0x28,0xe8,0xdd,0x17,0xfd,0xe4,0xf7,
0x93,0x53,0xa3,0x23,0x77,0x93,0xeb,0xc2,0x3b,0xb6,0x6e,0x45,0x1f,0xbc,0xa9,0xdc,
0x9b,0x93,0xf7,0x59,0x62,0xc1,0x97,0x29,0xf2,0x81,0xea,0xb6,0xd5,0xe0,0xdc,0x27,
0x63,0xe7,0xee,0xae,0x52,0xe1,0xff,0x2c,0x5d,0xf3,0x50,0xd6,0x3f,0x85,0x2f,0xdc,
0x7f,0xf9,0xde,0xda,0xe5,0xfb,0xa4,0xfa,0xbf,0xf8,0x0,0x2b,0x9e,0xc7,0x49,0xfb,
0xfb,0x88,0xb8,0x1f,0xc,0x1c,0xbf,0x32,0x8f,0xeb,0x2f,0xb8,0xf8,0x8b,0xc0,0x4f,
0x67,0x0,0xb2,0xff,0x85,0x1f,0xe,0x7b,0xf6,0xf5,0x1f,0x55,0x2f,0x26,0x8b,0x1b,
0x4a,0x2a,0xea,0x73,0xca,0x9a,0xb2,0x8b,0x26,0x53,0x32,0xee,0x45,0x24,0xb6,0xee,
0x4b,0x68,0xdf,0x57,0x3c,0xcc,0xd4,0x1e,0x95,0x84,0xcf,0xba,0x47,0x3e,0xeb,0x9a,
0xbb,0x39,0xb6,0x70,0x7b,0x6a,0xf1,0xf6,0x14,0xdc,0x7f,0xf4,0xe6,0x4,0xa5,0xc9,
0xb9,0x1b,0xa8,0x7c,0xc6,0x89,0xe9,0x29,0x6,0xe,0xdf,0xc4,0x8f,0x11,0xa0,0x32,
0xff,0x68,0xf8,0x8,0xde,0x7d,0xb9,0x3e,0xe,0x6,0x16,0x3e,0x1a,0x9b,0x3d,0xdf,
0xdf,0xbf,0xdc,0xe4,0x9b,0x32,0x30,0xaf,0xff,0x7,0xae,0x9b,0xe1,0xad,0x5f,0xdc,
0x19,0xc0,0x76,0x98,0x4a,0x54,0x7,0xf7,0xc3,0xfa,0x34,0x9,0x48,0x8,0x7a,0xb5,
0xbc,0x71,0xde,0x4d,0x18,0x0,0x0,0x67,0x5b,0x7b,0x4f,0x37,0xf7,0x9c,0x6c,0xea,
0x39,0xd1,0x84,0x9d,0x2f,0x30,0x0,0x0,0xe8,0xea,0x9f,0xb8,0x1f,0x23,0xdf,0xe6,
0x43,0xad,0x73,0xc1,0xd6,0xf9,0x0,0xd4,0x32,0xef,0x6f,0x9e,0xf7,0x1,0x83,0xa6,
0xa3,0x5e,0xa2,0x5,0x7c,0x3d,0x4d,0xb,0x9e,0x96,0xaf,0x3c,0xad,0xcf,0x3d,0xed,
0x97,0xfc,0x9d,0xb3,0xc1,0x8e,0xf1,0x40,0xc7,0x50,0xa0,0xbd,0xcf,0xdf,0xd4,0xe6,
0xf2,0x87,0x4c,0x6,0xab,0xa4,0x64,0xec,0x0,0x6,0x36,0x65,0x5f,0xfd,0x77,0x1c,
0xbb,0xc7,0x69,0x39,0xec,0x8e,0xa1,0x1f,0xe0,0xe4,0xe4,0x81,0x1,0x54,0x41,0xf8,
0x41,0x6a,0xa1,0x52,0x8e,0xb2,0x49,0x68,0x1d,0x51,0x3b,0x46,0xb4,0x8e,0x61,0xad,
0x6d,0x50,0x3,0x6,0xac,0x3d,0x6a,0x4b,0x97,0xca,0xdc,0xa1,0x32,0xb7,0x29,0x91,
0x7,0x4c,0x4d,0xa,0x63,0x58,0x61,0xa8,0x97,0x83,0x1,0x7d,0x50,0xa6,0xf,0xc8,
0x74,0x7e,0xa9,0xce,0x27,0xd5,0xfa,0xea,0xb4,0x5e,0x89,0xd6,0x23,0xd1,0x50,0x52,
0x7b,0xc4,0x2a,0x8f,0x88,0x92,0x50,0xe9,0x15,0x2a,0x7d,0x50,0xad,0xc2,0x5f,0xab,
0x8,0xd4,0x28,0x82,0xb5,0xf2,0x50,0x8d,0xbc,0xbe,0x5a,0xd6,0x50,0x2d,0xb,0xb,
0x88,0x1a,0x5,0xd2,0xa6,0x2a,0x48,0x12,0xae,0x14,0x7a,0xca,0xab,0xd4,0xd8,0xbd,
0x2b,0x28,0xcc,0xd9,0xa8,0x70,0x50,0xd9,0xa7,0xc6,0xc5,0xc3,0xfa,0xa9,0xb1,0xf1,
0x70,0x3f,0xaa,0x7c,0xe8,0x9b,0xb1,0x3f,0x21,0x92,0x2a,0x7e,0x22,0xf,0xbe,0xcc,
0x3,0xe4,0x8f,0x51,0x7,0x13,0xb3,0x23,0x13,0x34,0x5b,0x13,0xb4,0x5b,0x53,0x29,
0x66,0x36,0x62,0x3f,0xd5,0x6,0x44,0xed,0xdd,0x87,0x6f,0xbe,0x2c,0xb3,0xcc,0x9f,
0xcf,0xf3,0xe7,0xe3,0x5b,0xe6,0xcb,0x2f,0xf5,0xe4,0x95,0xba,0xf2,0xb8,0x4e,0x8c,
0xc1,0xca,0x2d,0xb1,0x91,0x4b,0xc0,0xc5,0x10,0x2e,0x0,0x98,0x58,0x1c,0x22,0x72,
0x8,0x62,0xa3,0xfd,0x35,0x33,0x8a,0x5e,0x2,0x80,0x26,0xd8,0x95,0x5d,0xf8,0xd,
0x0,0xa,0x1b,0xb3,0xa,0x9b,0x33,0x8b,0x5a,0x88,0x8a,0xd7,0xb2,0xb8,0xcf,0xb3,
0x78,0x3,0x39,0xe5,0xfe,0xdc,0x72,0x67,0x5e,0xb9,0x29,0xaf,0x5c,0x97,0xc7,0x33,
0xb2,0x62,0x9e,0xfc,0x41,0x92,0x62,0x3b,0xd6,0x82,0xa8,0x2a,0x88,0x2a,0x81,0xb8,
0x1d,0x59,0xac,0xf5,0x18,0xde,0xd1,0x7c,0xc7,0x8c,0xae,0xef,0x54,0xb,0x4e,0xbf,
0xc1,0xdf,0x1f,0xe1,0x94,0x1b,0xc2,0xff,0xc3,0x33,0x64,0xcd,0xe7,0x45,0xec,0x87,
0xfb,0x2f,0xdd,0x3b,0x81,0xc3,0x11,0x17,0xee,0x1f,0xbf,0x40,0x1,0x70,0x81,0x72,
0xff,0xf9,0x47,0xab,0x17,0x1e,0xae,0xce,0x1f,0x9d,0xec,0x69,0x6a,0xc5,0xca,0xf,
0xbd,0xec,0xe3,0xa7,0xaa,0x7f,0xc8,0xda,0xaa,0x88,0x7b,0xfa,0x27,0xea,0xde,0x4a,
0x5c,0x32,0x2e,0x6f,0x60,0x71,0x9b,0x33,0xf3,0xce,0xc6,0xa7,0x9e,0x8b,0x88,0x6f,
0xdd,0x9b,0xde,0x1d,0x23,0x98,0x2c,0xb1,0xae,0xa8,0xdb,0x2f,0x86,0x26,0xbe,0xe8,
0x43,0xcd,0xb3,0x70,0x6b,0xea,0xa5,0xf5,0x8f,0xdc,0x98,0x98,0xbf,0x31,0x3e,0x7f,
0x63,0xec,0xf0,0xd,0x2a,0xf6,0x13,0x8d,0x1c,0xba,0x39,0xfc,0x42,0x43,0x73,0x4f,
0x87,0x8e,0x3c,0x19,0x59,0xb8,0x3e,0xb6,0xf0,0x39,0x1e,0x44,0x1a,0x99,0x3c,0xd3,
0xdd,0xbd,0x58,0xef,0x98,0x95,0xa5,0xde,0xfb,0xdb,0x82,0x4f,0x5f,0xf3,0xbb,0x31,
0x52,0xc4,0x80,0xd,0x1,0xa5,0x48,0x2,0xf7,0x83,0x1,0xba,0x16,0x52,0x8,0xc5,
0x6,0x83,0xa2,0x65,0xd9,0xd7,0x73,0xa6,0xa9,0xef,0x6c,0x4b,0xef,0xe9,0x26,0x2,
0xc0,0x5a,0x53,0xf7,0xf1,0x46,0xb2,0xf9,0xb5,0x4c,0xd6,0x7f,0x68,0x0,0x68,0x6,
0x5a,0xe7,0x2,0x50,0xcb,0x9c,0x1f,0x6a,0x9e,0xf3,0x35,0xcd,0x79,0x9b,0xe6,0xbd,
0x4d,0x47,0xbc,0x8d,0x47,0x3d,0x10,0x18,0x68,0x5c,0x70,0x37,0xdf,0x74,0xb7,0x3c,
0x77,0xb7,0x9d,0xf5,0x75,0xcc,0x4,0x68,0x6,0xda,0xfa,0x7c,0x60,0x0,0x9b,0x3,
0x60,0x80,0x3d,0xb3,0xb,0x7,0xe6,0x18,0x17,0x5f,0xc1,0x4,0x1e,0x30,0x80,0x66,
0x0,0x81,0x9f,0x93,0x4b,0x18,0x40,0x12,0xa0,0x13,0x2,0xaf,0x94,0xad,0x6c,0xa9,
0x35,0xf,0x2b,0xed,0x23,0x5a,0xfb,0x90,0xc6,0x36,0xa0,0xb1,0xf6,0xa9,0x2d,0x3d,
0x2a,0x8a,0x1,0xa5,0xa9,0x4d,0x69,0x6a,0x51,0x18,0x9b,0x14,0x86,0xb0,0xdc,0xd0,
0x20,0xd7,0xd7,0xcb,0x8,0x3,0x41,0xa9,0x2e,0x20,0xd5,0xfa,0xeb,0xb4,0x7e,0x89,
0xc6,0x27,0xd1,0x78,0xc5,0x6a,0x4a,0x2a,0xaf,0x88,0xc8,0x27,0x54,0xf9,0x85,0x58,
0x6f,0x55,0x6,0x6b,0x15,0xa1,0x5a,0x45,0x3,0x54,0x23,0xf,0xd7,0xc8,0x1b,0xab,
0xe5,0x4d,0xd5,0xb2,0x26,0xe2,0x7e,0xb1,0x8f,0x5f,0xad,0xe7,0x96,0x57,0x17,0x15,
0xe5,0xb3,0x72,0x33,0x32,0x59,0x69,0x64,0xed,0x12,0xbe,0x47,0x9d,0x3,0xeb,0x53,
0xee,0x27,0x5f,0xd4,0x3c,0xb0,0x72,0x4a,0x4c,0x1c,0x7e,0xa0,0xe8,0xa7,0x2b,0x1f,
0x88,0x84,0x79,0x92,0x7,0xa2,0x13,0xa2,0xa2,0x12,0x53,0xe,0x26,0x48,0xb7,0xc7,
0xf7,0xbd,0x12,0x7d,0xe9,0xaf,0xa2,0x9e,0xfe,0x6e,0xd4,0xfa,0xa6,0x98,0xfb,0xdf,
0xce,0x64,0x93,0x7f,0x11,0xff,0xc,0xc5,0x0,0xb1,0x3e,0x5d,0xb,0x25,0x24,0x45,
0xa1,0x7c,0xe7,0xe0,0x4c,0x3f,0x46,0x3c,0x4,0x72,0x4a,0x7c,0x39,0x25,0x98,0x7b,
0xe5,0xce,0xe5,0xba,0x72,0x4b,0x30,0x1,0xc5,0x9e,0x53,0x6c,0xcb,0x29,0xc6,0x1d,
0x48,0xb,0x8b,0x3,0xe1,0xf8,0x83,0x19,0x8b,0x3f,0xd4,0xe,0x0,0xed,0x7e,0x34,
0x0,0x54,0x13,0x5c,0xe8,0xa6,0x0,0xf0,0x67,0x15,0x6,0x48,0x6,0x28,0x6c,0xcc,
0x4,0x0,0x85,0x0,0xa0,0x35,0xb3,0xa8,0x2b,0x93,0x24,0x81,0xcb,0x48,0x2,0xb9,
0xe5,0x9e,0x5c,0x24,0x81,0x72,0x43,0x5e,0xb9,0x26,0x2f,0xed,0xc2,0xbf,0x26,0x74,
0xff,0x22,0xfe,0xc0,0x1,0x9c,0xb,0x22,0x4d,0x30,0x32,0x40,0xc1,0xa9,0xa4,0xbc,
0x87,0x89,0xc2,0x3e,0x1e,0xe,0x3f,0x4f,0x5f,0x1e,0xc4,0xe5,0x2f,0xac,0xff,0xd0,
0x27,0x1d,0x48,0xd4,0x47,0xc5,0x7f,0xef,0x24,0x32,0x0,0x55,0xfc,0x9c,0xb8,0x78,
0xef,0xf8,0x45,0x2,0xc0,0x31,0x0,0x70,0xe1,0xe1,0x31,0xda,0xfd,0xd0,0x99,0x3b,
0x4b,0x93,0x3,0x83,0xed,0x21,0xbc,0x5,0xea,0x41,0xec,0xa7,0xad,0xef,0xc5,0x13,
0x2f,0x56,0x7b,0xf5,0x72,0x42,0xce,0x17,0x3f,0x57,0x34,0x57,0x54,0xd6,0xe7,0x92,
0xfa,0xa7,0x3d,0x83,0x71,0xfb,0x60,0xd2,0xe4,0xbe,0xf8,0xb6,0xbd,0x39,0xfd,0x29,
0xe2,0xd9,0xa,0xcf,0x9,0x53,0xdf,0x47,0xa4,0xfe,0x21,0x75,0xff,0x4d,0xaa,0xf8,
0xb9,0x31,0x41,0xdc,0x7f,0x7d,0x7c,0xfe,0xfa,0xd8,0xdc,0xf5,0xd1,0xc3,0xd7,0x1,
0xc0,0x18,0xdc,0x3f,0x7b,0x73,0x98,0xe8,0xd6,0x10,0xd1,0x4d,0x7c,0x7,0xf,0x3f,
0x1b,0x9c,0x7f,0x38,0xc,0x6,0x8e,0x62,0x2a,0xc4,0x47,0xc3,0x13,0x67,0xba,0x3a,
0x8e,0xfa,0xf5,0x47,0xf8,0xf1,0x4f,0xfe,0xb4,0xe2,0x54,0x84,0xcf,0x6a,0x23,0xcd,
0x0,0xa,0x21,0xc,0xf7,0x84,0xf5,0x6b,0xc5,0xc0,0x80,0xfa,0x21,0x32,0x39,0x54,
0x6d,0xc7,0x2,0x60,0x0,0x0,0x74,0x9f,0x6c,0xc4,0xc6,0x1f,0x4e,0xfe,0x90,0x7d,
0x5f,0x2c,0xfc,0xd3,0x0,0xa0,0xfa,0xa7,0xc2,0x7f,0xcb,0xe1,0x40,0xcb,0x61,0x3f,
0xbe,0xcd,0x87,0x7d,0x4d,0x87,0xbd,0x50,0xe3,0x9c,0xa7,0x71,0x9e,0x28,0x3c,0xef,
0x6e,0x3c,0x42,0x14,0x5e,0x74,0x37,0xdf,0x76,0xb5,0x3c,0x73,0xb7,0x9d,0xf2,0xb5,
0x4f,0xfb,0xdb,0xc6,0x7c,0x6d,0x83,0xbe,0xd6,0x1e,0x6f,0x43,0x8b,0xdd,0xed,0xd7,
0xe9,0xcc,0xa2,0xfc,0x23,0xef,0xe3,0x44,0x4a,0xce,0x99,0x5f,0xc9,0xeb,0x6a,0xb0,
0x49,0x8c,0x6d,0x1,0xc4,0x7e,0x76,0x4e,0x2e,0x87,0x28,0x8f,0xcd,0xca,0x5,0x9,
0x68,0x11,0x94,0xad,0x42,0xcb,0xb0,0xca,0x36,0xa2,0xb1,0xd,0x69,0xac,0x3,0x6a,
0x4b,0x9f,0xca,0xdc,0xa3,0x32,0x77,0x2a,0x4d,0x84,0x1,0x85,0xb1,0x45,0x61,0x68,
0x92,0x1b,0x1a,0x65,0xfa,0x6,0x99,0xbe,0x5e,0xaa,0xb,0x41,0x75,0xba,0xa0,0x54,
0x1b,0xa8,0xd3,0x80,0x1,0xbf,0x58,0xfd,0x42,0x2a,0xbf,0x48,0x45,0xac,0x2f,0x54,
0x86,0x6a,0x95,0xf5,0x94,0xfb,0x1b,0x21,0x0,0x50,0x8d,0xa2,0x1f,0x87,0x1a,0xf8,
0xc2,0x62,0x2e,0xa7,0x20,0x3f,0x2b,0x9b,0x6a,0x67,0x53,0xd2,0xe3,0x13,0xd3,0xe3,
0x13,0xd2,0x68,0xc5,0x25,0xe0,0x8f,0xf8,0x1,0xc7,0x93,0xc0,0x4f,0xc5,0x7e,0xf8,
0x18,0xee,0x47,0xf1,0x43,0x32,0xc0,0x86,0xa2,0x92,0x12,0xa3,0x12,0xab,0x77,0xc7,
0xb7,0xfe,0x2a,0xe6,0xd4,0xdf,0x45,0x3f,0xfa,0x3,0x98,0xfe,0x85,0x7e,0x2b,0xee,
0xd1,0x1f,0xe3,0x70,0x54,0xf2,0xf4,0x2b,0xd9,0x29,0x29,0x60,0x6,0xa6,0xa7,0x63,
0x7f,0xf4,0xde,0x7d,0xf8,0x81,0x3f,0xa6,0x94,0xc4,0x30,0x3c,0x49,0xd9,0x9e,0x24,
0xa6,0x37,0x25,0xc7,0x93,0x96,0xef,0xc9,0x2c,0xf4,0x64,0xe3,0x9c,0x73,0xb1,0x1b,
0xf7,0x1e,0x73,0x8a,0x1d,0x39,0xe4,0x2,0xa4,0x8d,0xc5,0x81,0xac,0x4c,0xf6,0x86,
0xa8,0xf5,0x1f,0x1b,0x5,0x0,0x1a,0x0,0x2,0x40,0x56,0xa1,0x97,0x2,0x80,0x94,
0x40,0x99,0x1b,0x0,0xb4,0x66,0x16,0x42,0x6d,0x99,0x9c,0x53,0x99,0xdc,0x67,0x59,
0xbc,0x6e,0x74,0x2,0xb9,0xe5,0x8e,0xdc,0x72,0x73,0x5e,0xb9,0x3e,0x2f,0x77,0x7c,
0x5b,0xdc,0xb1,0x7f,0x42,0xf1,0xb6,0x17,0xcf,0xca,0x93,0xdd,0x80,0xf7,0x37,0xb1,
0x1e,0xc7,0x14,0x9f,0xca,0x32,0x8c,0xca,0x10,0x5,0x97,0xbf,0x9c,0x85,0xbf,0xd1,
0x0,0x5c,0xa5,0xdc,0xf,0x5d,0xba,0xbb,0xb6,0xa1,0x7b,0x6b,0x17,0xef,0x9d,0xb8,
0x70,0xf7,0xf8,0x5,0x30,0xf0,0xe0,0xc4,0xf9,0x7,0xc7,0xce,0x3f,0x58,0x3d,0xff,
0x90,0xb8,0x1f,0x3a,0x76,0x71,0xe,0xc3,0x15,0x9b,0x7d,0x41,0xb4,0xbc,0x64,0xf1,
0x87,0x5a,0x0,0x25,0x55,0x90,0xcb,0x99,0x7d,0xfd,0x5f,0x5,0x2b,0x89,0xc2,0x46,
0x4e,0x39,0xda,0x5f,0xac,0xff,0x8c,0xa7,0x66,0x3c,0x8c,0x48,0xec,0xd8,0x97,0xd0,
0xb1,0xaf,0x78,0x94,0xa5,0x39,0x2a,0xae,0x3f,0xe3,0x1c,0xfe,0xb4,0x13,0xdd,0xed,
0x51,0x54,0x3e,0x1b,0xee,0x1f,0x3f,0x82,0xd8,0x4f,0xb9,0x7f,0xee,0x3a,0xc9,0x0,
0x87,0x6e,0x8c,0x1c,0xba,0x31,0x7c,0xe8,0x16,0x0,0x20,0xee,0x9f,0xb9,0x35,0x8,
0x1,0x0,0x1c,0x1c,0x3a,0xfc,0x7c,0x70,0xfe,0xfe,0xf0,0xd1,0xeb,0xa3,0x47,0x3e,
0x1f,0x39,0x74,0x75,0x60,0xf8,0x54,0x6b,0xf3,0x9c,0x4b,0x7c,0x2c,0x3b,0xf6,0xd9,
0xef,0xd7,0x1d,0x66,0x3a,0xd,0xa4,0x10,0x42,0xe5,0x83,0x1e,0x0,0xaa,0x13,0xd4,
0xe0,0xd0,0x32,0x7e,0x0,0x6,0x5b,0x48,0xd7,0x7e,0x22,0xd8,0x7d,0xaa,0xb1,0xe7,
0x54,0x63,0xf7,0xc9,0x30,0xce,0x7e,0x77,0xae,0x36,0x20,0x9,0x90,0x85,0xff,0x5,
0x2a,0xfc,0xa3,0xf8,0x41,0xec,0x27,0x0,0x4,0x9a,0xf,0xf9,0x9b,0x67,0x7d,0x4d,
0x87,0x20,0x2f,0xd4,0x78,0xd8,0x3,0xc,0xc2,0x73,0x6e,0x30,0xd0,0x30,0xef,0x6a,
0x98,0x77,0x86,0x97,0x5c,0x4d,0xf7,0x5c,0x4d,0x4f,0x5d,0xad,0xc7,0xbd,0x98,0x92,
0xdb,0x36,0xea,0x6b,0x1d,0xf4,0xb5,0x74,0x79,0xc2,0x2d,0xe,0xb7,0x4f,0xa7,0x31,
0xd5,0xe6,0x2e,0xbf,0xd,0x6,0x72,0x8f,0xbf,0x2d,0x15,0x92,0x53,0xd3,0x28,0x84,
0x50,0xfc,0x80,0x1,0xa,0x3,0x30,0x90,0x83,0x2f,0x8f,0xc7,0x6,0x3,0xc8,0x3,
0x68,0x9,0xac,0x43,0x6a,0xcb,0x80,0xca,0xdc,0xa7,0x34,0xf7,0x28,0x4d,0x5d,0xa,
0x53,0x87,0xc2,0xd8,0xa6,0x30,0xb4,0xc8,0xd,0xcd,0x72,0x7d,0xa3,0x4c,0x17,0x96,
0xea,0x1a,0xa4,0xda,0xfa,0x3a,0x6d,0xa8,0x4e,0x13,0x94,0x10,0x5,0xc4,0x6a,0x22,
0x91,0x2a,0x28,0x52,0x85,0x20,0xa1,0xb2,0x5e,0xa8,0xa,0xb,0x95,0x61,0x64,0x80,
0x1a,0xa9,0xd,0x6f,0xdd,0x94,0x95,0x72,0xb,0xa,0x99,0xa4,0xc2,0x61,0xa6,0xa6,
0xc3,0xf7,0x64,0xaf,0x2a,0x1e,0x76,0x4f,0x40,0xc8,0xc7,0xf,0x12,0xf2,0xa9,0x2f,
0x4c,0x4f,0x7f,0x5f,0x56,0x3e,0xf4,0x6f,0x58,0x39,0x2d,0x29,0x2e,0xb5,0xfc,0x40,
0x42,0xf0,0x37,0xb1,0xcb,0xdf,0x8f,0xbe,0xff,0x47,0xdf,0x30,0xfd,0xb7,0x50,0x5d,
0xa4,0x7d,0xfa,0x2f,0x5,0x73,0x1f,0x94,0x37,0x66,0x8,0xf5,0xdc,0x9c,0x85,0x77,
0xa2,0x9f,0xfe,0x6f,0x46,0x5d,0x14,0x52,0xa,0xc,0x47,0x87,0x7f,0xba,0xa,0x22,
0xc,0x44,0x44,0xc4,0xc9,0xf6,0xc7,0x3a,0xf6,0xc5,0xbb,0x22,0x52,0xdd,0xd1,0x19,
0xee,0x78,0x86,0x2b,0x39,0xc7,0x9d,0x6,0xc,0xd8,0xc0,0xc0,0x5,0xc,0xc8,0x2d,
0x78,0xe,0x64,0x67,0xb2,0x6d,0xb4,0xa8,0xe5,0x7f,0x22,0xca,0xfd,0xa8,0x7f,0xbe,
0x9,0x40,0x3,0x5,0x40,0xcb,0x86,0xfb,0xb,0xdb,0x33,0x8b,0x7a,0x32,0xb9,0x4f,
0x32,0xf1,0xa6,0x11,0x8f,0x4e,0x2,0xb6,0xdc,0x72,0x53,0x6e,0x71,0x43,0x5a,0xcc,
0x57,0xdf,0x4d,0x8a,0x8e,0x46,0x6,0xd8,0xb1,0x65,0x2b,0x29,0x81,0x58,0xcf,0x63,
0x5,0x43,0xc5,0xfe,0x39,0xeb,0xf8,0x85,0x5e,0x2c,0xff,0x5f,0x7e,0x70,0x12,0xee,
0x27,0xd5,0xff,0xfd,0xd3,0x88,0xfa,0x70,0xff,0xc5,0x3b,0x27,0xa0,0x4b,0xf7,0x4e,
0xd2,0xee,0x3f,0x7f,0xef,0xd8,0xf9,0xfb,0xa8,0x79,0x8e,0xc3,0xfd,0xe7,0x1e,0xac,
0xd0,0xdf,0xf9,0xf9,0x89,0xde,0xe6,0x36,0xb4,0xbf,0xd4,0xb2,0xf,0x5e,0x37,0x72,
0x60,0xf9,0x1f,0xab,0x31,0xb6,0x16,0x25,0xea,0x1f,0xe5,0x40,0x45,0x55,0x38,0x8f,
0xd7,0xc4,0xe0,0xb6,0x66,0xe6,0x9e,0x8e,0x4b,0xbd,0xbc,0x3f,0xbe,0x7d,0x6f,0x6a,
0x4f,0x54,0xe5,0x14,0xdb,0xb2,0xaa,0x6a,0xb9,0xe8,0x1f,0xff,0xa2,0x87,0x2c,0x77,
0xd2,0x2b,0x3f,0x37,0x51,0xf6,0x90,0xca,0x7,0x5f,0x34,0x0,0x87,0xaf,0x93,0xae,
0x17,0x0,0xcc,0xde,0x40,0xec,0x1f,0x9e,0xbd,0xd,0xd,0xcd,0xdc,0x1e,0x24,0xba,
0x33,0x30,0x73,0x7b,0x60,0xe6,0x41,0xff,0xa1,0xf5,0x81,0xf9,0xbb,0xc3,0xf3,0x5f,
0x8d,0xcc,0x7f,0x36,0x3c,0x73,0xb9,0x6f,0xe0,0x44,0x53,0xfd,0xb4,0xb5,0x7a,0x2d,
0x81,0x73,0x7a,0xab,0xc9,0xa2,0x42,0x15,0x84,0xc0,0xf,0x6,0x60,0x7d,0x48,0x82,
0x2f,0x46,0x3d,0x57,0x55,0xe3,0x6f,0x9c,0x6d,0x86,0xb6,0xe3,0x41,0xa,0x80,0xc6,
0xae,0x13,0xd,0x9d,0xc7,0x70,0xf0,0x1,0x5b,0xbf,0x4,0x0,0xd2,0xfb,0xd2,0x0,
0x1c,0xf2,0x43,0x70,0x7f,0xf3,0x8c,0xaf,0x69,0xc6,0xdb,0x38,0xe3,0x69,0x9a,0xf5,
0x86,0x67,0xdd,0xe1,0x43,0x44,0xd,0x87,0x5d,0xd,0x73,0x0,0x80,0xd2,0xb2,0xb3,
0xf1,0x81,0xa3,0xe9,0xb1,0xb3,0x75,0xc5,0xdb,0x3a,0xe9,0x6d,0x19,0xf1,0xb6,0xe,
0xf8,0x9a,0x3b,0xdd,0xf5,0xcd,0x36,0x97,0x57,0xab,0x34,0x9,0x98,0x27,0x5e,0x7,
0x3,0xf9,0x4b,0x5b,0x25,0xd5,0xe4,0xd4,0x34,0xf2,0x0,0x8a,0x9f,0x22,0xca,0xfa,
0x10,0x56,0x17,0x91,0x7,0xca,0xf9,0x1c,0x45,0x7b,0xad,0x69,0x48,0x81,0xe5,0x51,
0xcb,0x90,0xca,0x3c,0xa0,0x4,0x3,0xa6,0x1e,0x5,0x18,0x30,0xb6,0xcb,0xd,0x6d,
0x72,0x43,0x2b,0x18,0x90,0xe9,0x1a,0xa5,0xba,0x70,0x9d,0xae,0xa1,0xe,0xc,0x68,
0xea,0x25,0x9a,0x90,0x44,0x1d,0x12,0x53,0x12,0xa9,0xeb,0x45,0xaa,0x6,0x8,0xd6,
0x17,0xa2,0xbd,0x56,0x36,0xd5,0x96,0xb7,0x32,0x70,0x57,0xb3,0x90,0xc1,0xc4,0x9a,
0x7d,0x66,0x52,0x32,0x9a,0x5a,0x58,0x9f,0x98,0x1e,0xc1,0x9e,0xfe,0x22,0xe4,0xa3,
0xd6,0xa7,0x0,0xc0,0x6f,0xba,0xfe,0x79,0x59,0x2,0xa5,0x27,0x25,0xa4,0x97,0x44,
0x27,0xbb,0xde,0x8b,0x9f,0xfb,0x51,0xcc,0xad,0x3f,0xc7,0x96,0xea,0xb,0xdf,0x7f,
0xb,0xb,0x8b,0xa9,0x5f,0xfd,0x63,0xde,0xea,0x66,0x5e,0x4f,0xb2,0xc8,0xc1,0x15,
0xe9,0x4a,0x6b,0xd5,0xdc,0x1a,0x55,0x89,0x40,0xc1,0xa9,0x30,0xe5,0xc6,0xdd,0xfb,
0xf3,0xf8,0x8f,0xfe,0x96,0x91,0x9d,0x42,0xa,0xa1,0x3,0x91,0x1b,0x49,0xe0,0x45,
0x27,0x10,0x1d,0xb7,0x7f,0x97,0xfe,0xbd,0x1d,0xd6,0xcd,0x7b,0xed,0xef,0x47,0x39,
0x76,0x27,0x3a,0x23,0x33,0x5c,0x71,0x2c,0x77,0xa,0xb2,0x41,0x91,0x87,0x51,0xec,
0xc1,0xc,0x8,0x16,0xc7,0xc5,0xe2,0x38,0x99,0x6c,0x7,0x2d,0x46,0x11,0x2d,0x54,
0xff,0x2f,0xeb,0x1f,0x74,0xc0,0xa8,0x7f,0x42,0x59,0x85,0x0,0xa0,0x89,0x2,0xa0,
0x2d,0x13,0xee,0x2f,0xec,0x20,0xdf,0xe2,0xf3,0xa4,0x10,0xe2,0xb5,0xe6,0xf2,0x48,
0x27,0x80,0x42,0x28,0x97,0x67,0xca,0x8d,0xbd,0xf7,0x37,0x49,0xd1,0x51,0x38,0x14,
0xb4,0xb1,0xf,0x50,0xf4,0x49,0xba,0x72,0xa0,0x16,0x77,0x7f,0xf,0x7d,0x34,0x72,
0xfe,0xee,0x31,0xba,0xfa,0xa7,0x5b,0x5e,0x54,0x3e,0x97,0xee,0x9e,0xa4,0x1,0x40,
0xfd,0xf3,0xd,0x0,0x48,0xf8,0x3f,0x7,0xc1,0xfd,0xf,0x57,0x50,0x35,0x4d,0xf4,
0xd,0xb4,0x6,0xeb,0xd1,0xfb,0x22,0x3,0xc0,0xfa,0xc0,0xc0,0x83,0xa7,0x8d,0xac,
0xe,0xc1,0x62,0x7c,0xce,0xb5,0x57,0x64,0x6d,0xbc,0x8a,0xc6,0x9c,0xb2,0x66,0x46,
0x71,0x67,0x6,0xe3,0x66,0x54,0xd2,0xa1,0x7d,0xf1,0x1d,0x7b,0x98,0x83,0x49,0xa2,
0xc3,0xe5,0xee,0x93,0xc6,0xee,0x8f,0x1a,0xa7,0xaf,0xf,0x50,0xdb,0xbd,0x58,0xf7,
0xa4,0x96,0x7d,0x5e,0x30,0xb0,0xe1,0x7e,0x52,0xfa,0xa3,0xfe,0xa1,0x2a,0x1f,0xda,
0xfd,0x77,0x6,0xa7,0xef,0xc,0x10,0xdd,0xee,0x9f,0xba,0xd9,0x37,0x7d,0xaf,0x6f,
0xe2,0x5a,0xf7,0xc8,0x6a,0x67,0xdf,0x64,0x4b,0x5b,0x67,0x28,0xe0,0x75,0x38,0x8d,
0x26,0x5c,0x98,0xd4,0x4b,0x15,0x68,0x0,0x48,0xd9,0xf3,0x42,0x58,0x92,0xa7,0x1,
0x80,0xf0,0x5b,0x21,0x12,0x79,0x6,0xcd,0x1d,0x27,0x42,0x5d,0x6b,0x54,0x6,0x38,
0xe,0x0,0xb0,0xef,0x1b,0xda,0x0,0x60,0x9e,0xd4,0x3f,0xcd,0xb3,0x70,0xbf,0x9f,
0xb8,0x7f,0xda,0xdb,0x48,0xe4,0x9,0x43,0x33,0x6e,0xa8,0x61,0xd6,0xd5,0x70,0xc8,
0x5,0x6,0xea,0xf,0x3b,0xeb,0xe7,0x20,0x47,0xfd,0x8a,0xa3,0xf1,0x91,0xa3,0xe9,
0xa1,0xb3,0x5,0xb,0x44,0x13,0xde,0x96,0x61,0x4f,0x4b,0x9f,0xa7,0xa9,0xd3,0x1d,
0x6a,0xb4,0x62,0x83,0x4c,0x65,0xae,0xce,0x3a,0xfb,0xa,0x18,0x28,0x3a,0xbc,0x53,
0x22,0xa8,0x22,0x1b,0x64,0x5,0x45,0x68,0x6,0x50,0x8,0xc1,0xfd,0x14,0x9,0xb9,
0x28,0x87,0x78,0x7c,0xb6,0xb2,0xbd,0xd6,0x38,0x24,0x47,0x39,0x44,0x33,0x60,0xea,
0x53,0x18,0x7b,0x14,0xc6,0x2e,0xb9,0xa1,0x3,0xc,0xc8,0xf4,0xad,0x32,0x5d,0x8b,
0x54,0xd7,0x2c,0xd5,0x35,0x49,0xb5,0x8d,0x75,0xda,0xb0,0x44,0xd3,0x20,0x56,0x13,
0x89,0xc8,0x37,0x2c,0x56,0x85,0x45,0xaa,0x46,0xa1,0xaa,0x49,0x88,0xde,0x5a,0xd9,
0x52,0x93,0x71,0xf5,0xa7,0xe5,0x38,0x91,0xc7,0xca,0x65,0xa4,0xa4,0x65,0x25,0xa5,
0x64,0x24,0x24,0x65,0x24,0x26,0xc1,0xfa,0x20,0x1,0x3f,0xe8,0xa2,0x9f,0x4e,0x2,
0xf8,0xe2,0x8f,0x50,0x66,0x72,0x72,0x56,0x61,0x42,0x9a,0xe5,0xc3,0xc4,0xa9,0x9f,
0xc6,0x7c,0xf9,0x5d,0xbc,0xc8,0xfb,0x32,0xd8,0x93,0x49,0xfc,0xb7,0xff,0x26,0xe7,
0xf4,0x6f,0xca,0x46,0xe3,0x85,0xc1,0x62,0xb1,0x95,0x27,0xb2,0x94,0xa,0x4d,0xdc,
0x1a,0x43,0x71,0xb5,0x9e,0x53,0xad,0xe3,0x54,0x69,0x8b,0x70,0x2f,0xb1,0x5c,0x95,
0xc7,0x1c,0xfe,0x80,0x3c,0xe0,0xd5,0xf3,0x36,0x78,0x43,0xe1,0x44,0xa,0xa1,0x17,
0x49,0xe0,0xe0,0x9e,0xbd,0xe0,0x21,0x22,0x7d,0xe7,0x6f,0x8c,0xaf,0xfc,0xc6,0xfc,
0xca,0x36,0xeb,0x5b,0xfb,0x1d,0x1f,0xc6,0x38,0xf6,0xa6,0xba,0x62,0xb2,0xdd,0x49,
0xf9,0xde,0xc,0x9c,0x76,0x2e,0xf6,0xb2,0xc8,0xed,0x47,0x37,0x93,0xed,0x82,0xc8,
0x1,0xb8,0x22,0x17,0x2d,0xb2,0x3,0x80,0x5c,0xf1,0x8d,0xfa,0x27,0xab,0x20,0x9c,
0x59,0xd0,0x94,0x59,0xd0,0x9a,0x59,0x0,0x0,0xe0,0x7e,0xa8,0x33,0xb3,0x68,0x38,
0x93,0xfb,0x3c,0xb3,0xec,0x28,0x8b,0x17,0xca,0xe5,0x79,0x72,0x79,0xf6,0x5c,0x9e,
0x39,0x37,0xf9,0xf3,0x1f,0x24,0x47,0x47,0x63,0x25,0x74,0xa3,0x9,0xe6,0xcd,0xe6,
0xdb,0xa6,0xb4,0xfd,0xa7,0x5b,0x97,0xbf,0x20,0xf5,0xf,0x0,0xc0,0x49,0x7,0xe2,
0xfe,0x8d,0xfa,0xe7,0xe4,0x85,0xdb,0xc7,0x1,0xc0,0x85,0x3b,0xc7,0x81,0xc7,0xd9,
0x3b,0x2b,0xe7,0xee,0xad,0xa2,0xfe,0x81,0xfb,0xd1,0x3,0x20,0xf6,0x9f,0x7d,0xb0,
0xbc,0x7c,0x96,0x3a,0xfe,0xe0,0xf2,0xa2,0xf1,0xa5,0x77,0xbe,0xc0,0x0,0xe4,0xb3,
0x63,0xfd,0xe7,0xc7,0x55,0xc7,0xe2,0x85,0x2d,0x9c,0xf2,0x26,0x66,0x69,0x6b,0x56,
0xd1,0x58,0x6a,0xe6,0xa3,0x88,0xc4,0x9e,0x7d,0x9,0xdd,0xfb,0xd8,0x63,0xd9,0xaa,
0x45,0x61,0xfd,0x79,0x47,0xff,0xa7,0xad,0x87,0x6f,0x8f,0x1e,0xbd,0x4b,0x6f,0x7b,
0x51,0xc,0xdc,0x1e,0x9f,0xbf,0x35,0x86,0xc6,0x77,0xa3,0xf2,0x81,0xfb,0x6f,0xa0,
0xe8,0x27,0xd5,0xff,0xf4,0xcd,0x81,0xc9,0x6b,0xfd,0xa3,0x97,0xbb,0x7,0x8e,0xb5,
0x77,0xcd,0x34,0xb6,0xf6,0x4,0xeb,0x43,0x6e,0x97,0xc9,0x6c,0xd5,0xe8,0xe1,0x78,
0x9d,0x54,0x41,0x8e,0x3f,0x50,0x9b,0x5f,0x64,0xcd,0x7,0xee,0x47,0xe3,0x4b,0xb5,
0xbf,0x28,0x7b,0xf0,0x37,0x2f,0xb,0x21,0xfc,0x10,0x57,0xa,0xf0,0xd5,0xc8,0xea,
0xfc,0x13,0xb6,0xf6,0xe3,0xa1,0x4e,0x64,0x80,0x17,0x0,0xb4,0x2d,0x84,0x5a,0x49,
0x6,0xa0,0x8a,0x1f,0xe2,0x7e,0x7f,0xd3,0x34,0x5,0xc0,0x14,0x11,0x0,0x68,0x98,
0x76,0x37,0x4c,0xbb,0x1a,0x66,0x5c,0xf5,0xd0,0xac,0x33,0x74,0xc8,0x11,0x3a,0xbc,
0xa1,0xfa,0xe3,0x8e,0xf0,0x13,0x7b,0xf8,0xbe,0xa3,0xf9,0x88,0xa7,0x79,0xdc,0x83,
0xc7,0x32,0x9a,0xf1,0x5a,0x4c,0xbb,0x33,0x18,0xb6,0x58,0x9d,0x4a,0xb9,0xa5,0x32,
0xf3,0xe2,0xbf,0xe3,0xd,0x1e,0xf6,0xd4,0x1e,0x71,0x65,0x15,0x16,0x46,0xb1,0x1b,
0xf0,0x12,0x0,0x60,0x50,0xc0,0x60,0x82,0x81,0xb2,0xaa,0x22,0x65,0x17,0x61,0x0,
0xe5,0x90,0x79,0x48,0x69,0xea,0x57,0x18,0x9,0x3,0x72,0x43,0xb7,0xdc,0xd0,0x29,
0xd3,0xb7,0x4b,0x75,0xad,0x50,0x9d,0xb6,0xa5,0x4e,0xdb,0x2c,0xd1,0x34,0x41,0x62,
0x4d,0xa3,0x58,0x4d,0x4,0xeb,0x8b,0x54,0x4d,0x10,0x5,0x40,0x73,0xad,0xb2,0xb5,
0x26,0xe5,0xd6,0x3f,0xb0,0x3,0x71,0x25,0xb9,0x79,0x39,0xe9,0x99,0xf0,0x22,0x8a,
0x1f,0x62,0x7d,0x60,0x40,0x2b,0x31,0x69,0x23,0x2d,0x24,0xa7,0x64,0xe7,0x24,0x65,
0x68,0xf7,0x24,0xd,0xbd,0x1a,0xf7,0xd1,0x5f,0x47,0x3d,0xfb,0x9d,0x6f,0x98,0xfe,
0xb7,0x12,0xee,0x7f,0x97,0x79,0xe1,0x97,0xdc,0x99,0x83,0xb5,0x4d,0x6c,0x89,0xa3,
0x5c,0x64,0x2f,0xad,0xb5,0x71,0xab,0xad,0xc5,0x2,0x1b,0xa7,0xda,0xe,0xb1,0x2b,
0x6d,0x85,0x38,0x83,0x59,0x86,0x79,0x86,0x1a,0x26,0x47,0x99,0x59,0x20,0x4d,0xcb,
0x95,0x25,0x21,0x3,0x44,0x3f,0xf9,0xdd,0x2c,0x69,0xe4,0xcb,0x42,0xe8,0xe0,0xde,
0x7d,0xb4,0xfb,0xe9,0xef,0xae,0xfc,0xad,0xbf,0x34,0xfd,0xf8,0x4d,0xeb,0x2f,0xb6,
0x3b,0xde,0x8d,0x70,0x6e,0x8f,0x75,0xee,0x4b,0x75,0xa3,0x3d,0x48,0xce,0xf7,0x65,
0xa2,0x4b,0xe6,0xf8,0x70,0xfb,0x91,0xc9,0x86,0x70,0xf8,0xd9,0xc3,0x40,0x66,0x28,
0xf2,0x64,0x13,0x79,0xe1,0xfe,0x6c,0xb2,0x0,0xfa,0x22,0xfc,0x17,0x34,0x66,0x16,
0x34,0x53,0x0,0xb4,0x67,0x16,0xc0,0xfd,0x5d,0x19,0x85,0x5d,0x84,0x81,0xe2,0x4f,
0x33,0x4b,0xbf,0xca,0xe6,0x35,0x92,0x24,0xc0,0x73,0xe5,0xf2,0xac,0xb9,0xe9,0x6b,
0xaf,0x27,0xc7,0xc4,0x90,0xc,0xb0,0x71,0x16,0xa8,0xb7,0x2,0xa3,0xaf,0x26,0x2f,
0xf5,0x9f,0xba,0xb5,0x88,0xfa,0x87,0xb8,0xff,0x3e,0xa9,0x7c,0x48,0xfd,0x73,0x67,
0xd,0x2,0x0,0x44,0x14,0x0,0x58,0x21,0x5,0x0,0x67,0xef,0x6f,0x54,0x3e,0x70,
0xff,0xd9,0xfb,0xcb,0x87,0x66,0x46,0x7b,0x1a,0x5b,0xb0,0xf8,0x83,0x90,0xf,0x79,
0xcc,0x36,0x8,0x18,0xd8,0x9a,0x55,0x71,0x4f,0xff,0x58,0x35,0xcc,0x17,0x34,0xe3,
0xa8,0x5,0x83,0xdb,0x91,0x99,0x77,0x2a,0x3e,0xed,0xe3,0xfd,0x9,0x5d,0x7b,0x53,
0x7,0xa2,0xf8,0xb3,0x6c,0xe3,0x71,0x79,0xf3,0x65,0xdf,0xd8,0x57,0x3d,0x87,0xb1,
0xb7,0x75,0x6f,0xf2,0xc8,0x9d,0xf1,0x79,0x88,0x72,0x3f,0x84,0x65,0x1f,0x0,0x30,
0xfd,0xf9,0xe0,0xf8,0xf9,0xde,0xa1,0xe5,0xce,0xbe,0x99,0xb6,0xb6,0xee,0xfa,0x86,
0xa0,0xc7,0x63,0xb1,0x3a,0xf4,0x18,0x8b,0xa2,0x35,0x90,0x3b,0x0,0xe4,0xf8,0x27,
0x1c,0x4f,0xfb,0x1e,0x3b,0x5f,0xd4,0xf9,0x9f,0x3a,0x74,0xbd,0x64,0xf5,0x13,0xaf,
0x9d,0xd6,0x8a,0x94,0x42,0x9,0xd9,0xa,0xa8,0xc1,0x12,0x90,0x90,0xe,0xff,0x2f,
0xf3,0x0,0xfd,0x47,0xb5,0x4a,0x5a,0x7f,0xc8,0xd9,0xbe,0x1a,0xec,0x3c,0x56,0x4f,
0x67,0x0,0x6c,0xfd,0x6e,0x0,0x40,0x8a,0x1f,0x7f,0x33,0x71,0xbf,0x8f,0xb8,0x7f,
0xd2,0x1b,0x9e,0x74,0x43,0xd,0xd0,0x94,0xb,0x18,0xd4,0x4f,0xbb,0x42,0xd3,0x8e,
0x10,0x18,0x98,0x75,0x4,0xf,0xd9,0x43,0x87,0xed,0xc1,0xc3,0xf6,0xd0,0x9,0x5b,
0xc3,0x53,0x5b,0xe3,0x5d,0x47,0xf3,0x9c,0x1b,0x63,0xa2,0x9b,0x6,0xdc,0x4d,0xdd,
0xae,0x86,0x56,0x87,0xbf,0xde,0x6c,0x71,0x2a,0xa4,0x56,0x5e,0xda,0x47,0x3f,0xc4,
0xba,0x50,0xf1,0x70,0xa4,0x88,0x5f,0x89,0xfb,0x62,0xd8,0x17,0x3,0x3,0xb0,0x3e,
0xc9,0x3,0xcc,0x9c,0xfc,0x2c,0x6,0xfe,0x58,0x2e,0x60,0x2b,0xbb,0x84,0x60,0xc0,
0x34,0xac,0x30,0xd,0x29,0x8d,0x3,0x60,0x40,0x6e,0xe8,0x91,0x19,0xba,0x65,0xfa,
0x2e,0x99,0xbe,0x43,0xaa,0x6b,0xaf,0xd3,0xb5,0xd5,0x69,0x5a,0x24,0x94,0xc4,0xea,
0x66,0x48,0x44,0x7f,0x55,0x1b,0x12,0xaa,0x9a,0x89,0xb8,0xab,0x11,0x69,0x17,0x7e,
0x58,0x5e,0xcc,0xce,0xcf,0x66,0x50,0x49,0x20,0x19,0xb5,0x10,0x52,0x1,0xe5,0xfb,
0xe4,0x8c,0xd4,0xc4,0xb4,0xba,0x88,0xe4,0xae,0xd7,0xe3,0xcf,0xff,0x3,0xc6,0x8b,
0x7f,0xb3,0xac,0x8f,0x7b,0xfc,0xa7,0xd9,0x57,0xff,0xa3,0x78,0x7e,0x6f,0x4d,0x67,
0x41,0x9d,0xab,0x2,0xbe,0x17,0xe2,0x28,0xa8,0xad,0xa4,0x1a,0xa6,0x77,0x72,0xaa,
0x9c,0x45,0x95,0xb8,0x43,0xe2,0xc6,0xb3,0xbe,0x58,0xbd,0xc9,0x66,0xdb,0x32,0xa,
0x2c,0x69,0xb9,0x86,0x24,0xa6,0x26,0x21,0x4b,0x1e,0x9b,0x5e,0x17,0x95,0x2a,0x3a,
0x10,0x6f,0x7b,0x3f,0xea,0xf1,0xef,0xc6,0x7d,0xf9,0xdd,0xec,0x7c,0x52,0x62,0x91,
0x6d,0x1,0xaa,0x21,0x8e,0xdc,0xb3,0x97,0x6,0x0,0xfa,0x90,0xfb,0xee,0xaf,0xac,
0xff,0xb6,0xd9,0xf1,0xda,0x6e,0xf7,0xd6,0x28,0xf7,0xee,0x44,0x4f,0x64,0x86,0x37,
0x9e,0xe5,0x4f,0x85,0xb9,0x39,0x41,0x26,0x27,0xc0,0x64,0xfb,0x99,0x6c,0x1f,0x4e,
0xff,0x13,0x91,0xd3,0x6f,0x94,0xa,0xfd,0xd9,0xc4,0xfd,0xd4,0xe,0xc0,0x46,0xf8,
0x6f,0x21,0xe1,0x1f,0xee,0x2f,0xe8,0xcc,0x28,0xe8,0xce,0x28,0x84,0xba,0x32,0xd9,
0x87,0x33,0xb9,0xeb,0x99,0xbc,0xc1,0x9c,0x97,0x49,0x20,0x7b,0x60,0x57,0x42,0x64,
0xe4,0x2e,0xc,0x47,0xc1,0x3e,0x0,0x7a,0x0,0xd3,0xb8,0x12,0xd9,0x7f,0xfe,0x93,
0x9,0xf8,0xfb,0xa,0xe,0x78,0x52,0xee,0x47,0xf1,0x73,0xf1,0xce,0xda,0xc5,0xdb,
0x27,0x60,0xfd,0xf3,0xb7,0x8e,0x9d,0xbf,0x7d,0xec,0xfc,0x9d,0x63,0xe7,0xee,0xac,
0x2,0x80,0xb3,0xf7,0x56,0xce,0xdd,0x27,0x75,0x3f,0xea,0x9f,0xb3,0xf,0x97,0x4f,
0x5e,0x5f,0xc0,0xb,0x3,0x6d,0xa1,0x6,0xaa,0xf8,0xb1,0x41,0x28,0x7e,0x20,0x64,
0x80,0xea,0x85,0x44,0xd6,0x57,0x3f,0x95,0x75,0xf0,0xf8,0x2d,0xb9,0x38,0xfd,0x56,
0xdc,0x93,0xc1,0xb8,0x11,0x95,0xbc,0xb8,0x2f,0xbe,0x6f,0x2f,0x73,0x34,0xb1,0xf6,
0x68,0x99,0xf3,0xb4,0xae,0xe3,0x93,0xfa,0x89,0x9b,0x7d,0x38,0x2,0x7d,0xe4,0xee,
0x4,0x0,0x38,0xf4,0xc5,0xc8,0xe4,0xf9,0x81,0xb1,0x95,0xde,0x81,0xa9,0xf6,0xf6,
0xce,0x86,0xc6,0xa0,0x1f,0xff,0x81,0x18,0x8c,0x6e,0xd3,0xea,0x8d,0xb8,0xf7,0xa8,
0x50,0xe9,0xc9,0xb5,0x2f,0x62,0x7a,0x88,0x9c,0x77,0xc0,0x89,0x37,0x7a,0xc7,0x17,
0xa7,0x1e,0x5e,0x30,0x40,0xfb,0x9e,0x6,0x0,0xfe,0x26,0xb,0xa0,0x78,0xeb,0xee,
0x1b,0x95,0xf,0x1d,0xfe,0x49,0x27,0x20,0xa8,0x96,0xa,0x6b,0x70,0x8,0x5e,0x3a,
0x54,0xda,0xb0,0xe8,0xc2,0x71,0xb7,0xf6,0xe5,0xd0,0xb,0x0,0xc8,0xd2,0x27,0xe9,
0x7d,0x51,0xfc,0x60,0xe2,0xf9,0x94,0x8f,0xb8,0x7f,0xc2,0xd3,0x38,0xe1,0x6d,0x18,
0x77,0x37,0x4c,0x40,0x2e,0xec,0xa9,0xd5,0x4f,0xb9,0x42,0x53,0xce,0xe0,0xb4,0x23,
0x38,0xe3,0x8,0xce,0xda,0xc1,0x40,0xe0,0x90,0xd,0xa,0x9e,0xb2,0xd5,0x3f,0xb3,
0x85,0x6f,0xda,0x31,0x23,0xb1,0x69,0xc4,0x5,0x6,0x1a,0xbb,0x5c,0xf5,0x2d,0x76,
0x6f,0xc8,0x68,0xb2,0xcb,0xc4,0xd6,0x92,0x94,0xcf,0xff,0x9,0xfb,0x3,0xa5,0x7d,
0xb1,0xc2,0xa,0xb2,0x30,0x8a,0xd,0x32,0x74,0xc3,0x85,0x4c,0x16,0x0,0x28,0x64,
0x90,0x2f,0xda,0xe2,0xf2,0x6a,0x8e,0xb2,0xbb,0x56,0x3f,0x24,0xa5,0x18,0x50,0x18,
0x7,0xe4,0x86,0x3e,0x99,0xbe,0x57,0xa6,0xef,0x96,0xea,0xba,0xa4,0xba,0x8e,0x3a,
0x2d,0xd4,0x26,0xd1,0x40,0xad,0x62,0x48,0xdd,0x2a,0xda,0x50,0xb,0x18,0x10,0x12,
0x12,0x50,0x8,0x85,0x85,0xb2,0xe,0x7e,0xc2,0x83,0xbf,0xe4,0x6a,0x33,0x51,0x5,
0x61,0xad,0x13,0x19,0x0,0x7,0x19,0x50,0x99,0x93,0x66,0x0,0xd9,0x80,0x95,0x80,
0xfb,0x22,0x2f,0xcb,0xfa,0x98,0x67,0x7f,0x90,0xf9,0xf9,0x8f,0x38,0x2b,0x3b,0x5,
0x7d,0x2c,0xa9,0xaf,0x5c,0xea,0xaa,0x10,0x3b,0x79,0xf0,0x7d,0xad,0xbd,0xa4,0xd6,
0x89,0x53,0x9f,0x38,0x38,0x5c,0x84,0x19,0x24,0x3c,0x37,0x26,0x36,0xa3,0x1a,0xc9,
0x28,0x70,0xa5,0xe6,0xb9,0x53,0x98,0xce,0xf8,0x4c,0x47,0x74,0x86,0x3d,0x2a,0xc5,
0x1c,0x91,0xa8,0xdb,0x9b,0xa0,0xda,0x13,0x2b,0xdb,0x19,0x25,0xde,0x7e,0xb0,0x76,
0xdb,0xc1,0xb1,0x1f,0x93,0xe3,0xf8,0x2b,0x3f,0xce,0x4e,0x4f,0xc1,0x52,0x12,0x76,
0xca,0x68,0xdf,0x3,0x80,0x83,0x7b,0x29,0x6,0xf6,0xed,0xfb,0x80,0xf7,0xf6,0x6f,
0x1c,0xaf,0x6c,0x73,0xbf,0xbd,0xdf,0xfb,0x61,0x8c,0x6f,0x6f,0xaa,0x3f,0x3a,0x3b,
0x90,0x94,0x1b,0x4a,0x67,0xd7,0xe3,0xd6,0x2f,0x93,0x1d,0xa4,0x14,0x60,0x40,0x45,
0x44,0xd9,0x44,0xc1,0x6c,0x52,0xfa,0x63,0xf5,0xb3,0x21,0x8b,0x84,0x7f,0xba,0xfe,
0x41,0xf8,0xef,0xcc,0x84,0xfb,0xb,0x7a,0x32,0xa,0x7b,0x33,0xa,0xf1,0xed,0xce,
0x2c,0xb9,0x9f,0x59,0x76,0x8a,0xc9,0xb,0x6f,0x24,0x1,0x86,0x28,0x1,0x37,0x63,
0x76,0xbe,0xff,0xc1,0xf6,0x2d,0x5b,0xc9,0x7d,0x0,0xcf,0x21,0xf3,0xd0,0x99,0x8e,
0xe3,0x5f,0x91,0xf6,0x97,0x2e,0x7e,0x36,0x96,0x7d,0xa8,0xd8,0x4f,0xbb,0xff,0xdc,
0xad,0xd5,0x73,0xb7,0x57,0x9,0x0,0x8,0xff,0xf7,0x56,0x90,0x1,0x48,0xec,0xa7,
0xea,0x9f,0xc5,0x53,0xd3,0xfd,0x98,0x7e,0xe5,0xf6,0x92,0xde,0xd7,0x86,0xb1,0xb7,
0x36,0x37,0x1,0xc0,0xe6,0x77,0x38,0x18,0x5f,0xfd,0xa4,0xf2,0x44,0xac,0xa8,0xbd,
0xb8,0xbc,0x8d,0xc9,0xed,0xcc,0xc2,0xfa,0x4f,0xe6,0xe3,0x88,0xc4,0xa1,0x7d,0x49,
0x3,0x11,0x45,0x53,0x59,0xea,0x65,0x61,0xfd,0x49,0x27,0x96,0x9e,0x86,0x97,0xbb,
0xfa,0x27,0xdb,0xba,0x30,0x3,0x3a,0x14,0x44,0x1b,0x8d,0xd6,0x19,0x1,0x1e,0xe7,
0x79,0xe0,0x78,0x22,0x85,0x1a,0xa6,0xa7,0x7c,0x2f,0x37,0xc8,0x9,0x0,0x38,0xee,
0xf,0x6,0xa8,0xa8,0x2f,0xc3,0x1,0x7,0x3a,0xf6,0x13,0xd3,0xe3,0xcc,0x8f,0x50,
0x4c,0x9f,0x7d,0xa0,0x17,0xfe,0x5f,0x96,0xfe,0x54,0x15,0x44,0x24,0x13,0xd5,0x88,
0x2d,0xe5,0xfc,0x66,0x6,0x67,0x62,0xf,0xeb,0xd8,0x9b,0xe9,0x9f,0xff,0xdf,0xb8,
0xc7,0xa4,0xab,0x8b,0x7f,0xf2,0x6d,0xeb,0xbc,0xb2,0xf1,0x88,0x97,0x3a,0xf3,0x13,
0x22,0x7,0x1f,0xb0,0xf3,0x85,0xf5,0x9f,0x59,0xaa,0xf8,0x99,0xf2,0x35,0x4d,0xfa,
0x60,0xfd,0xf0,0xb8,0xa7,0x61,0xcc,0xd,0xd5,0x8f,0xb9,0xea,0xc7,0x5d,0xa1,0x71,
0x67,0x68,0xc2,0x19,0x9a,0x74,0x6,0x27,0x1d,0x41,0xc,0x3e,0x99,0xb6,0x7,0x66,
0x6c,0x81,0x59,0x22,0xff,0xac,0x35,0x70,0xd6,0x1a,0x7a,0x6e,0x6d,0xf8,0xca,0xde,
0x38,0xed,0x6c,0x1c,0x76,0x36,0xf6,0xb9,0xc2,0x9d,0xce,0x10,0x1a,0xe2,0x0,0x66,
0x3b,0x4a,0x85,0xe,0x4e,0xd2,0x57,0x7f,0x1b,0xf3,0xf4,0x77,0x4a,0x3b,0x12,0x6a,
0xb1,0x41,0x56,0x5c,0x82,0x86,0x18,0x0,0xc0,0xfd,0xf8,0x22,0x1b,0xd0,0x18,0x94,
0x9,0x8b,0x14,0x3d,0x35,0x86,0x61,0x99,0x71,0x44,0x8e,0x6c,0x60,0x18,0x90,0xe9,
0xfb,0xc1,0x80,0x54,0xd7,0x5d,0xa7,0xeb,0x96,0x6a,0x3b,0xc1,0x80,0x44,0xd3,0x21,
0x51,0xb7,0x8b,0x35,0xed,0x62,0x75,0xbb,0x88,0xa8,0x8d,0xc2,0x0,0xd9,0xa0,0x49,
0xa4,0xe,0x93,0x9e,0x58,0x1d,0x14,0xe5,0x9f,0x7b,0x27,0x6b,0xee,0xd,0x5e,0x61,
0x51,0x5e,0x66,0x36,0x4c,0x4f,0x2d,0x1,0x91,0xc,0x80,0x2f,0x94,0xd2,0xf7,0xeb,
0xb4,0x1b,0xdf,0x2f,0x3a,0xf9,0x7e,0xd5,0x58,0xa6,0x2c,0xcc,0x97,0xfb,0x2a,0xa5,
0x1e,0xbe,0xd8,0xc5,0x13,0xb9,0x4a,0x85,0xae,0xd2,0x5a,0x77,0x49,0xb5,0x87,0x5d,
0xe5,0x29,0x2a,0x77,0xe3,0xfd,0x6a,0x34,0xa6,0x59,0x85,0xae,0x34,0x98,0x9e,0xe5,
0x49,0xc8,0x74,0x47,0xa7,0x79,0xf,0x26,0x7b,0xf7,0x25,0xfa,0xf6,0xc6,0xf9,0x76,
0x46,0x7b,0xb6,0x47,0xbb,0xb6,0x1f,0xb4,0x7d,0x10,0x69,0xfc,0x20,0x42,0xb3,0x75,
0xbf,0x7c,0xcb,0xfe,0x3a,0xe8,0xbd,0xc8,0xb,0x7f,0x85,0xff,0x23,0xa7,0xe,0xfe,
0x3a,0x33,0x39,0x9,0x5b,0x63,0x34,0x3,0x4,0x0,0xc2,0xc0,0x46,0x2d,0xb4,0x83,
0xfb,0xde,0x66,0xd7,0x6b,0x3b,0xbd,0xef,0x45,0xfa,0x77,0xc4,0x7,0x22,0xd2,0x43,
0xb1,0xcc,0xfa,0x14,0x84,0x76,0x4e,0x98,0xc9,0x69,0x60,0x82,0x4,0x76,0x88,0x51,
0x44,0x94,0x4d,0x8b,0xb6,0x7e,0x61,0x18,0xcb,0xff,0x59,0xa4,0xf8,0x79,0x19,0xfe,
0xbb,0x32,0xe1,0xfe,0x2,0xb8,0xbf,0x8f,0x62,0xa0,0x3b,0x93,0x73,0x3a,0xb3,0xf4,
0x76,0x16,0xaf,0x39,0x7,0xcb,0x41,0x5c,0x1b,0x33,0x31,0xee,0xe0,0x1e,0x6a,0x13,
0x0,0xee,0xc7,0x42,0xd0,0xa6,0xe6,0x25,0x1f,0x2e,0x7f,0x9d,0xb9,0xb5,0x8c,0x3,
0xe,0x97,0xa9,0xba,0x9f,0xee,0x7a,0xcf,0xdf,0x3a,0x8e,0xc,0x80,0x2f,0x18,0x20,
0x0,0xdc,0x21,0xd,0xc0,0xd9,0xbb,0x2b,0x24,0x3,0x3c,0x58,0x39,0x7d,0x7f,0x9,
0xee,0x3f,0x73,0x6f,0xe9,0xd0,0xf4,0x18,0xae,0xbf,0xbc,0xac,0x7f,0x70,0x43,0x17,
0x42,0xd8,0xb6,0x36,0x29,0xe3,0x9e,0xfd,0xb1,0x62,0x8c,0x27,0x68,0x2b,0xe0,0x75,
0x30,0x78,0xdd,0xcc,0xaa,0x85,0x82,0x9a,0xd3,0xc5,0x68,0xef,0xac,0xad,0xea,0x50,
0x93,0xab,0x29,0x10,0xc0,0xcc,0x8,0xe4,0xa,0xa7,0xd1,0x6c,0xd3,0x19,0x10,0xe3,
0xb1,0x66,0x6f,0x56,0x6b,0x51,0xdb,0x90,0x4b,0xee,0x64,0xd8,0x89,0x9a,0x4c,0x7d,
0x53,0x90,0xdf,0x3a,0xca,0xf4,0x5a,0xea,0xd2,0x23,0x42,0x3e,0x75,0xf1,0x85,0x3a,
0xf3,0x8c,0xf0,0x8f,0xca,0x87,0x12,0xac,0x8f,0x3c,0x40,0xd7,0xfd,0xd4,0xdf,0x48,
0x94,0x32,0x89,0xc4,0x51,0x51,0xd9,0x96,0x5d,0x32,0xb3,0x37,0x67,0xed,0x8d,0xb4,
0x2f,0xff,0x29,0xf6,0xc9,0xcb,0x50,0xf7,0x72,0xd1,0x9a,0xfc,0x88,0x79,0xfa,0x7,
0x75,0x13,0xe5,0xee,0x9,0x13,0x16,0x37,0x5b,0x71,0xfa,0x8d,0x5a,0x2,0xa2,0xc2,
0xbf,0x9f,0x8e,0xfd,0xc4,0xfd,0x63,0x9e,0xf0,0xa8,0xa7,0x61,0xd4,0xd,0xd5,0x8f,
0xba,0x42,0xa3,0x4e,0x4a,0x8e,0xe0,0x98,0x23,0x38,0x6e,0xf,0x4c,0xd8,0x3,0x53,
0xf6,0xc0,0xb4,0xd,0xc,0xf8,0x67,0xac,0x84,0x81,0x19,0x4b,0xe0,0x82,0x25,0xf4,
0xdc,0x52,0xff,0x85,0xd,0x43,0x42,0xc3,0x84,0x1,0x3c,0x97,0xe4,0x8,0x36,0x5b,
0xc1,0x80,0xc1,0x56,0x87,0x3b,0xa8,0x9,0x37,0xff,0xf,0x56,0xf,0x79,0x8d,0xe9,
0x35,0xbc,0xa,0x5c,0x9f,0xc7,0x2a,0x10,0x1,0x80,0xc1,0x42,0xad,0x52,0x90,0xcd,
0xc4,0xb7,0x88,0xc9,0x2a,0x17,0x71,0x94,0x7d,0xb5,0xfa,0x61,0xa9,0x61,0x44,0x6,
0x12,0xf4,0x83,0x52,0x7d,0xbf,0x54,0xd7,0x27,0xd5,0xf5,0xd6,0x69,0xbb,0x25,0x90,
0xa6,0xb,0x12,0xab,0xa1,0x4e,0xb1,0xba,0x43,0xa4,0xa2,0x18,0x50,0xb5,0x8,0x35,
0x0,0x0,0x6d,0x71,0x50,0xa4,0xf1,0x8b,0xc4,0xbd,0x45,0xf1,0x77,0xff,0xb2,0xac,
0x26,0xf,0x68,0xe1,0x74,0x3,0x32,0x0,0xa9,0x7f,0x48,0x3f,0x90,0xa,0x18,0x72,
0x73,0x32,0xe5,0xde,0x4a,0x99,0x8f,0x5f,0xe7,0xc5,0x41,0xe8,0x32,0x11,0x1e,0xc6,
0xf5,0x95,0xd6,0xfa,0x4b,0x6a,0xfc,0x9c,0x2a,0x7f,0x61,0xb9,0x37,0x97,0x4,0x7b,
0x77,0x46,0xbe,0x2b,0x85,0xe5,0x4a,0xcc,0x72,0xc5,0xa6,0xb9,0x23,0x53,0x3c,0x11,
0x9,0xde,0xbd,0x71,0xfe,0x5d,0x31,0xa1,0x1d,0x91,0xf5,0x1f,0x1c,0x8,0x6f,0x8d,
0x68,0xdc,0xb2,0x3f,0xfc,0xde,0xbe,0xd0,0x7b,0xfb,0xfc,0x9b,0xf7,0xb9,0x36,0xef,
0xb5,0x6c,0xde,0xab,0xdb,0xbc,0x57,0xb9,0x79,0xaf,0x74,0xf3,0x5e,0xc3,0x5b,0x7,
0x6f,0x7f,0x1b,0x43,0x9b,0xd3,0xea,0xb7,0x60,0x95,0x69,0xa3,0x21,0x46,0x21,0xb4,
0x7b,0xf,0x18,0xc0,0xf7,0x0,0xf5,0x63,0x5f,0xee,0xf6,0x6d,0xae,0xb7,0xf7,0x5,
0xb7,0xc5,0x84,0xf6,0x26,0x35,0x44,0x66,0x85,0x13,0x72,0x9b,0xd2,0x8a,0x9a,0xb3,
0x39,0xcd,0x4c,0x76,0x23,0x83,0x1d,0x66,0xb0,0x1b,0x18,0x45,0xd,0xd9,0x45,0x61,
0x22,0xda,0xfa,0x85,0x4d,0x59,0x85,0x2d,0x59,0x58,0xf8,0xdf,0x28,0x7e,0x88,0xfb,
0x33,0xb,0xfa,0x32,0xa,0xfa,0x33,0xa,0x6,0x32,0xa,0xfb,0xc1,0x40,0x66,0xd1,
0x18,0xa9,0x82,0xca,0x6,0x59,0xa5,0x41,0x56,0x3a,0x23,0xe,0xff,0x75,0x70,0x3f,
0xb5,0x9,0x40,0xae,0x4,0x6c,0xea,0x3f,0xdd,0xb6,0xf4,0xc5,0xc,0xd6,0x37,0x2f,
0x91,0x63,0xe,0xa8,0x7c,0x4e,0x6c,0x54,0x3e,0x37,0x8f,0x91,0xf0,0x4f,0x67,0x80,
0xdb,0xab,0x20,0xe4,0xcc,0xed,0xe5,0x33,0x77,0x97,0xe9,0xc,0x0,0xeb,0x9f,0xb9,
0xbf,0xb4,0x76,0xed,0xe8,0x8,0xa6,0x5f,0xf9,0x82,0x74,0xe0,0x77,0x19,0xe1,0x7e,
0xf2,0xc5,0x1f,0x55,0x63,0xdc,0xaa,0x93,0x31,0xfe,0x76,0x4b,0xa0,0xd9,0xd6,0xd4,
0xe8,0xc7,0x1a,0x11,0xb2,0x4,0x9,0xf0,0x66,0x94,0x34,0x66,0xd8,0xdd,0xaa,0xd5,
0xdb,0x75,0x46,0xb,0xa6,0xdb,0xe2,0x4b,0x7c,0x4f,0xdc,0x6f,0xc2,0x88,0x7,0x32,
0xe5,0x41,0x43,0x17,0x3c,0xf8,0xc2,0xfa,0x7a,0x19,0xa2,0xbe,0x12,0x5e,0x87,0xe0,
0x7b,0x94,0x3a,0xa8,0x7f,0xe8,0x82,0x87,0xfe,0x4b,0xfa,0xfa,0x8b,0x5a,0x59,0x57,
0xe7,0xe1,0xb,0xba,0xb2,0x4b,0xe,0xef,0x65,0x9d,0x7e,0x2d,0xed,0xfa,0x3f,0xc5,
0x3c,0xc5,0xff,0xd1,0xff,0x93,0xd1,0x5f,0x26,0xfa,0xa8,0xfb,0x7f,0x74,0xf0,0xf2,
0x77,0x23,0xe7,0xbf,0x1f,0xd1,0xfb,0x93,0x83,0xc1,0xb7,0xb3,0x3c,0x71,0x95,0x81,
0x62,0x6d,0x77,0x9d,0x7b,0xcc,0xd4,0x78,0xc8,0x43,0xad,0x7e,0x6,0xe0,0xfe,0xe6,
0x69,0x3f,0x89,0xfd,0xe3,0xde,0xc6,0x31,0x2f,0x71,0xff,0x88,0xa7,0x61,0xd8,0x5d,
0x3f,0xec,0x82,0x42,0xc3,0x4e,0x28,0x38,0xe2,0x8,0x8c,0xda,0x3,0x63,0x76,0xff,
0xb8,0xd,0xcd,0x34,0x18,0xf0,0x4f,0xd9,0xfc,0xd3,0x56,0xdf,0xc,0x64,0xf1,0xcd,
0x5a,0x2,0x57,0xcc,0xc1,0x75,0x4b,0xfd,0xa7,0xb6,0xf0,0xa4,0xb3,0x61,0xc8,0xd1,
0xd0,0xeb,0xa0,0x19,0x70,0x6,0xb4,0x3a,0x8b,0xb8,0xca,0x9b,0x13,0x7f,0xf7,0xcf,
0x63,0x1f,0x7f,0xbb,0x22,0x90,0x2d,0x28,0xe5,0xe1,0xca,0x18,0xa,0x21,0x58,0x9f,
0xb8,0x3f,0x8b,0x1,0xd1,0x3d,0x31,0xaf,0xae,0x48,0xd9,0x5f,0xab,0x1f,0xf9,0x9a,
0x1,0xdd,0x40,0x9d,0xae,0xbf,0x4e,0xdb,0x57,0xa7,0xed,0xad,0xd3,0xf4,0x88,0xd5,
0x50,0xb7,0x88,0xa8,0x4b,0xa4,0xee,0x14,0x1,0x3,0x92,0x7,0x9a,0x45,0x9a,0x6,
0x91,0x86,0x2,0x40,0xeb,0x15,0x67,0x7d,0xf6,0xe3,0xdc,0x9e,0x9d,0x25,0xb9,0xf9,
0xd8,0xf4,0x65,0xa4,0xa6,0x91,0xe2,0x87,0x62,0x0,0x3f,0x90,0x4,0xf0,0x68,0xbb,
0xd8,0x5f,0x26,0xa,0x94,0xd6,0x86,0x4a,0x4,0xa1,0x22,0x7e,0xb0,0x80,0xe7,0xcf,
0x29,0xf6,0x65,0xb1,0x7d,0x19,0x79,0xde,0x64,0xa6,0x27,0x3e,0xd3,0x13,0x93,0xea,
0x39,0x90,0xec,0xdd,0x9f,0xe0,0xdb,0x13,0xe3,0xdf,0x11,0x15,0xfc,0x10,0xbe,0x8f,
0x8,0x6f,0xdd,0xdf,0xfc,0xde,0xbe,0xd6,0xcd,0x7b,0xdb,0x37,0xef,0xed,0x78,0x77,
0x4f,0xfb,0xbb,0x7b,0xda,0xde,0xd9,0xdd,0xf5,0xf6,0xee,0xe0,0x3b,0xbb,0xdd,0xef,
0xec,0xb6,0xbc,0xb3,0x5b,0xf7,0xce,0x1e,0xe5,0xbb,0x60,0x60,0x5f,0xf0,0x57,0x51,
0x8f,0xff,0x37,0xaa,0xbe,0x34,0xfb,0x7,0x69,0xf1,0xf1,0xd8,0x1e,0x46,0x1e,0x80,
0xe9,0x69,0xeb,0xe3,0xb,0x5f,0x92,0x72,0x28,0x75,0xef,0x1e,0xe3,0x7,0x7,0xea,
0x77,0xc4,0x85,0xf7,0xa7,0x35,0xc5,0x30,0x5b,0x92,0xf3,0x5b,0x33,0xd8,0xb8,0x3e,
0xd5,0xca,0x60,0xb7,0x30,0xd8,0xcd,0x8c,0x22,0x1c,0xa5,0x81,0x9a,0xb3,0xb,0x9b,
0x69,0xeb,0x67,0x15,0xb6,0x65,0x61,0xc5,0x93,0x94,0xfe,0x1b,0xee,0xcf,0xdc,0x70,
0xff,0x60,0x46,0x21,0x18,0x40,0x1e,0x40,0x15,0x74,0x3b,0x93,0x33,0x9d,0x99,0x9a,
0x1d,0x4b,0x5f,0xb,0xde,0xf5,0xc1,0x7,0x0,0x0,0x55,0x10,0xbe,0x9b,0xb0,0xfc,
0x7f,0xf2,0xc6,0x2,0xbd,0xe3,0x4b,0x87,0x7f,0x44,0xfd,0xb,0xb7,0x4e,0x9c,0xbb,
0xb1,0x7a,0xee,0xe6,0xea,0xd9,0x1b,0x2b,0x67,0x6f,0xc1,0xfd,0x2b,0x67,0x6f,0xaf,
0xd0,0x19,0xe0,0xcc,0x3d,0xd2,0xf8,0x9e,0x6,0x0,0xf7,0x96,0x16,0xd6,0xa6,0xfa,
0x5a,0xda,0x3,0xc4,0xd6,0x56,0xd4,0x3f,0xa8,0xfb,0x1,0x0,0x61,0xc0,0x64,0x21,
0xfb,0xc1,0x58,0x8,0xc2,0xea,0x1f,0x5e,0xb6,0xc3,0xeb,0x46,0x7a,0x13,0xbe,0x76,
0x3c,0x70,0xa4,0x37,0xda,0xb4,0x6,0xb8,0x1f,0xeb,0x36,0x90,0x45,0x8d,0xf9,0x9e,
0x5a,0x0,0x0,0xd3,0x23,0xde,0xd3,0x5f,0x94,0x3a,0x24,0xf0,0xa3,0xe0,0x21,0xd6,
0x57,0x80,0x1,0x12,0xfb,0x29,0xc1,0xee,0xf4,0x1f,0x75,0x5a,0xb9,0x3c,0x58,0x55,
0xd5,0x9b,0x5e,0x32,0xbf,0x87,0x75,0xee,0xd5,0xd4,0x9b,0xff,0x88,0xe2,0xf5,0x7f,
0xb4,0x3b,0x1e,0xfe,0x48,0x7f,0xfc,0xf,0x5,0xd7,0x5f,0xe1,0x5e,0xd8,0x5e,0x32,
0xbb,0x27,0xa7,0xe9,0x40,0xba,0x36,0x22,0xa1,0x62,0xef,0x1,0xce,0x87,0xfb,0x39,
0x1f,0xec,0xe1,0x6e,0xdd,0xcd,0xdb,0x12,0x2d,0xdc,0x93,0x6b,0x48,0x17,0x4,0xb8,
0xe8,0x2f,0xbd,0xa3,0x96,0x26,0x3c,0x77,0x37,0x13,0x68,0x9e,0x22,0xee,0x6f,0x9a,
0xa0,0x0,0x18,0xf5,0x86,0x69,0xf7,0xf,0xb9,0x43,0x43,0x2e,0x4a,0xce,0xe0,0xb0,
0x3,0xa,0xc,0xdb,0x3,0x98,0xfb,0x39,0x6a,0xf3,0x8f,0xd9,0xfc,0xe3,0x56,0xff,
0xa4,0xd5,0x37,0x69,0xf1,0x4e,0x59,0xbc,0xd3,0x16,0x30,0xe0,0x9d,0x31,0x7,0x3e,
0xb1,0x4,0xd6,0xcd,0xa1,0x2b,0xb6,0x86,0x71,0xcc,0x49,0xb7,0xd7,0xf7,0xda,0xeb,
0x3b,0x6c,0xfe,0x46,0xb3,0xdd,0xb,0xee,0x45,0xfc,0x0,0x23,0xee,0xfe,0x9f,0xc6,
0x3d,0xfc,0x93,0x4a,0x4f,0xe,0x4e,0x4d,0x93,0x66,0x80,0x95,0x4b,0x27,0x1,0x2a,
0x1b,0x6c,0xd4,0x42,0x3c,0x19,0x1b,0xab,0xd5,0xba,0xd1,0x3a,0xfd,0xa8,0x54,0x3f,
0x22,0xd3,0xd,0xd5,0x69,0x7,0xeb,0xb4,0x3,0x12,0x4d,0xbf,0x44,0xd3,0x27,0x86,
0xd4,0x50,0x2f,0xa5,0x1e,0x8a,0x4,0x60,0xd0,0x26,0x42,0x12,0x20,0xc,0x4,0x8,
0x0,0x55,0x13,0xa9,0x49,0x5f,0xfc,0x5d,0x69,0x49,0x3e,0x36,0x80,0x49,0x2b,0xc,
0xdf,0x53,0xa2,0x31,0xc8,0x61,0x65,0xf0,0x7d,0xf9,0x15,0xc1,0xbc,0x52,0xf4,0x9d,
0xc1,0xcc,0xfc,0x40,0x4a,0x4e,0x20,0x31,0xdb,0x1f,0x9b,0x11,0x88,0x4a,0xf1,0x47,
0x24,0x6,0xf6,0xc6,0x6,0x76,0xc2,0xf4,0x7,0x43,0xdb,0xe,0xd4,0xbf,0xbf,0x3f,
0xbc,0x65,0x5f,0xd3,0x7b,0x7b,0x5b,0x88,0xef,0xf7,0x74,0xbe,0xbb,0xbb,0xeb,0x9d,
0xdd,0x43,0x6f,0xed,0x5c,0xfa,0xf5,0xf6,0x2b,0xbf,0xda,0x76,0xff,0xe7,0xdb,0x9e,
0xbd,0xb2,0x63,0xf0,0x37,0xbb,0x2,0x6f,0xef,0x41,0x1e,0x30,0xbf,0xb7,0x4f,0xbb,
0x25,0x52,0xb5,0x2d,0x4a,0xb1,0xfd,0x60,0xe7,0xaf,0xa2,0x9e,0xfd,0x36,0x18,0x48,
0x75,0xbf,0x4f,0x33,0x80,0x85,0x51,0x94,0x40,0x7,0x76,0xed,0x7e,0x29,0x34,0xc7,
0x31,0x7,0xf6,0x1f,0xe4,0xef,0x8e,0xe,0xee,0x49,0x6e,0x3e,0x98,0xd9,0x1a,0x9f,
0xdb,0x9e,0x56,0xd4,0x99,0xcd,0xee,0x64,0xb0,0xdb,0x19,0x20,0xa1,0xa8,0x2d,0x7b,
0x43,0xed,0xd9,0x85,0xed,0x59,0x85,0x1d,0x94,0x48,0xdd,0x4f,0xc7,0xfe,0xcc,0x82,
0x81,0xcc,0x82,0xc1,0xc,0x5c,0x32,0x81,0xa,0x29,0x6,0xa,0xda,0x33,0xb2,0x2d,
0x89,0x71,0x71,0x7,0xf0,0xdf,0xb2,0x9b,0x9c,0x81,0x23,0xd6,0xa7,0xdd,0x8f,0x3e,
0x78,0xd3,0x91,0x4f,0x26,0x48,0xfd,0x83,0x8d,0x5e,0x9c,0x74,0xa0,0xdc,0x7f,0x1e,
0xb1,0xff,0xe6,0xf1,0x73,0x37,0x8f,0xd1,0x0,0x9c,0xb9,0xb9,0xc,0x0,0x4e,0xdf,
0x5a,0x3a,0x7b,0x17,0x47,0x1e,0x96,0x4f,0xdf,0x5d,0x82,0xfb,0x4f,0xdf,0x5b,0xc4,
0x8f,0xa9,0xb1,0x21,0x1c,0x7f,0xa0,0x1a,0xdf,0xd,0xd1,0x79,0xe0,0xa5,0x50,0xde,
0x38,0xc,0xc4,0xfa,0xf8,0xc2,0xf7,0x8,0xf6,0xa4,0xda,0xd1,0x51,0x3f,0x30,0xdc,
0x53,0xd,0xeb,0xeb,0x20,0x3a,0xe4,0xd3,0x30,0x20,0x15,0xc0,0xfa,0x74,0xb9,0xf,
0xc,0x50,0xf9,0x0,0x9,0x9d,0x41,0x2e,0xad,0xe7,0x57,0xe,0xa4,0x94,0x2c,0xee,
0x65,0x5d,0xf8,0x45,0xea,0x9d,0x7f,0x88,0x7e,0x4e,0xe,0x9c,0xfc,0x77,0x45,0xaf,
0xff,0x4e,0xd6,0x93,0x7f,0xe6,0xde,0xfd,0x8d,0xec,0x59,0x92,0xfd,0x2e,0xb7,0xfd,
0xbc,0x73,0x78,0xa5,0x5,0x53,0xd,0x3b,0x46,0x2,0xbe,0x76,0xa3,0xda,0x53,0x83,
0x6b,0x72,0x4c,0x71,0x7c,0x4a,0x75,0x44,0x4c,0xd9,0xae,0x7d,0x45,0x1f,0xec,0x61,
0x6f,0xdd,0x55,0xfc,0xde,0xae,0xb2,0xf7,0x8,0x3,0xfa,0x8c,0xda,0x40,0xb9,0xb1,
0x53,0xe9,0x1b,0xb6,0xa2,0xdf,0x85,0xf5,0x89,0xfb,0xc7,0xa8,0xf0,0x4f,0xb9,0xbf,
0x61,0x88,0x28,0x34,0xe8,0xa,0xd,0x3a,0x83,0xd0,0x90,0x3,0xa,0xc,0xd9,0xfd,
0xc3,0x36,0xff,0x88,0xcd,0x4f,0x31,0xe0,0x1b,0xb7,0xfa,0x26,0xac,0xde,0x49,0x8b,
0x67,0xca,0xec,0x99,0x86,0x4c,0xde,0x59,0x93,0xef,0xb,0x53,0x60,0xdd,0x14,0xba,
0x60,0xad,0x1f,0xb3,0xd7,0xf,0xd9,0xeb,0x7b,0xec,0xa1,0x36,0xab,0x37,0x6c,0x74,
0xf8,0x34,0x6a,0x53,0x2d,0x2f,0x9c,0x16,0xfb,0xf0,0x8f,0xe2,0xef,0xfd,0x79,0xa5,
0x25,0xaf,0x8a,0x5b,0x86,0x4d,0x62,0xba,0x1f,0xa0,0x1a,0x62,0xa,0x0,0x16,0xd9,
0x25,0x28,0x97,0x73,0x14,0x3,0xb5,0xda,0x51,0x9,0x18,0xd0,0x8d,0xd4,0xe9,0x86,
0xeb,0xb4,0x43,0x12,0xcd,0x20,0x24,0x56,0xf,0xd0,0x12,0x6d,0xa8,0x5f,0xa4,0xee,
0x25,0xd9,0x40,0x43,0x33,0x50,0x2f,0xd2,0x6,0xc4,0x9a,0x7a,0x61,0xf2,0xdd,0xbf,
0xce,0xf,0x47,0xa0,0xbd,0xce,0xc9,0xc8,0x44,0x13,0x4c,0xfa,0x60,0xaa,0xd,0x20,
0xb5,0x50,0x4a,0x6a,0x9e,0x24,0x2d,0x3f,0x94,0xc2,0xac,0x8f,0xcf,0xaa,0x8f,0x49,
0x6f,0x38,0x98,0xd4,0xb0,0x37,0xbe,0x61,0x57,0x74,0xc3,0xf6,0x83,0xe1,0x6d,0x91,
0x8d,0x1f,0x44,0x34,0x22,0xd8,0x6f,0xd9,0xd7,0xf2,0xde,0xde,0xd6,0xcd,0x24,0xd2,
0x77,0xbc,0xbb,0xbb,0xe7,0x9d,0x9d,0x87,0x7f,0xbd,0xfd,0xc2,0xaf,0xb6,0xdd,0xfa,
0xc5,0x7,0xcf,0x7f,0xfa,0xc1,0xfa,0xcf,0xb6,0xad,0xbf,0xf2,0xe1,0xfa,0xcf,0x77,
0xac,0xbf,0xba,0xfb,0xd3,0x5f,0xef,0x6b,0x7c,0x2f,0xc2,0xff,0xc1,0x41,0xe7,0xf6,
0x68,0xcb,0xce,0x38,0xfd,0x9e,0x24,0x6d,0x44,0xb2,0xfa,0x40,0xfc,0xc4,0xab,0x78,
0xd5,0x3d,0xea,0xf9,0x6f,0xa7,0x86,0x37,0xa7,0x25,0xc4,0x93,0xb,0x34,0xfb,0x37,
0xf2,0x0,0x29,0x84,0x40,0x2,0x55,0xe,0x91,0xad,0xe2,0xb8,0xfd,0xf1,0x92,0x3,
0xa9,0x8d,0x31,0x8c,0xf6,0xa4,0xfc,0xae,0xc,0x76,0x77,0x36,0xbb,0x9b,0xc1,0xee,
0x82,0xb2,0x8b,0x36,0x94,0x55,0xd8,0x4d,0xa9,0x27,0xb,0x75,0x4e,0x61,0x5f,0x66,
0x61,0x3f,0xed,0xfe,0x4c,0x62,0x7d,0x4a,0xb9,0x8d,0xa9,0x99,0xc2,0x84,0x84,0xf8,
0x83,0x48,0x32,0x38,0xfb,0x40,0xd5,0x3c,0xd4,0x3c,0x88,0xf7,0x49,0x9,0x44,0x31,
0xb0,0x75,0xd3,0xca,0x97,0x87,0x70,0xc6,0xe1,0x22,0x75,0xe4,0x61,0xa3,0xe8,0xbf,
0x79,0xfc,0xec,0xd,0x58,0x9f,0xe8,0xcc,0x8d,0xe5,0x33,0x37,0x9,0x3,0x0,0xe0,
0xf4,0xed,0xe5,0xd3,0x77,0x96,0xe0,0x7b,0xc4,0x7e,0x30,0x70,0xec,0xd3,0x39,0xbc,
0xae,0xd7,0xec,0xf,0x51,0xb1,0xdf,0x86,0xa8,0x4f,0xaf,0xff,0x50,0x6d,0x0,0xa9,
0xec,0xe9,0xa8,0x4f,0xff,0xa0,0xdd,0x4f,0xf9,0x9e,0x14,0x3f,0xb0,0x3e,0x1d,0xfe,
0x69,0xc1,0xfd,0x74,0xe5,0x43,0x7a,0x0,0xc8,0xae,0x96,0x35,0xf1,0x5,0xa3,0xa9,
0x25,0xcb,0xbb,0x59,0x57,0x7e,0x96,0x72,0xf7,0xef,0xa3,0xd7,0xff,0xf7,0xff,0x68,
0xf7,0x98,0xf5,0xdf,0x65,0x3c,0xf9,0x41,0xd9,0xdd,0xb7,0x15,0x5f,0xa5,0x3a,0x3e,
0x29,0x6f,0xbb,0xe0,0x1e,0x3a,0xd1,0x3a,0xb6,0xdc,0x39,0x74,0xa4,0x6d,0xf0,0x7c,
0xcb,0xe0,0xb3,0xa6,0xfe,0x93,0x8d,0xbd,0x53,0xd,0xed,0x23,0xfe,0x50,0x97,0xc5,
0xd6,0xa8,0x54,0xba,0x5,0x7c,0x7d,0x1,0x4b,0x92,0x8,0x0,0x12,0xab,0xf6,0x1e,
0x28,0xf9,0x70,0x77,0xe1,0xd6,0x9d,0x45,0xef,0x6d,0x2f,0x7e,0x77,0x67,0xd9,0x7b,
0x71,0xc2,0x88,0x7c,0x7d,0xb6,0xc8,0x5f,0x61,0x6c,0x57,0xf8,0x6,0xad,0x28,0xfa,
0x9b,0xc6,0x7c,0x10,0xe5,0x7e,0xf,0xac,0x5f,0x3f,0xe8,0xaa,0x1f,0x20,0xa,0xd,
0x38,0x83,0xfd,0x8e,0xe0,0x80,0x23,0x0,0xd,0xda,0xfd,0x83,0x36,0xff,0x90,0xd,
0xd8,0xf8,0x46,0xac,0xbe,0x51,0x8b,0x77,0xcc,0xe2,0x9d,0xb0,0x78,0x26,0xcc,0x60,
0xc0,0x4b,0x31,0xe0,0x1,0x3,0xd7,0x4d,0xfe,0xe7,0xc6,0xe0,0x19,0x6b,0x68,0xcc,
0x16,0x1a,0xb0,0x85,0xba,0x6d,0x41,0x8a,0x1,0xab,0x47,0xa9,0x34,0x56,0x97,0xb5,
0x26,0xc7,0x3c,0xfe,0x83,0x84,0xbb,0xdf,0xc1,0x9c,0x7b,0x34,0xc4,0xc8,0x3,0xf4,
0x61,0x21,0x82,0x1,0xdc,0x4f,0x2f,0xd,0xb1,0x72,0xf8,0xba,0x62,0x8c,0x6c,0xd2,
0x8e,0x49,0xf4,0x63,0x52,0x64,0x3,0xed,0x88,0x44,0x3b,0x2c,0xd1,0xc,0x8b,0xd5,
0x44,0xa2,0x17,0x12,0xe2,0x4d,0x37,0xf5,0xa0,0x50,0xdd,0x27,0xd4,0x74,0x13,0x6,
0xb4,0x4d,0x22,0x43,0x63,0x9d,0xa9,0x51,0xc6,0x5b,0xdb,0x97,0xf8,0xe5,0x5f,0x73,
0xb1,0xec,0x9a,0x95,0x8d,0xd3,0x10,0x1b,0x19,0x0,0x2b,0xa1,0xd4,0x72,0x50,0x56,
0x66,0x72,0x5a,0x20,0x32,0xa9,0x69,0x6f,0x7c,0xcb,0xae,0xd8,0xd6,0x9d,0x51,0x6d,
0x1f,0x46,0xb6,0xbf,0x1f,0xd1,0xbe,0x75,0x7f,0xc7,0x96,0x7d,0x1d,0xef,0xed,0xeb,
0xdc,0xbc,0xb7,0x73,0x33,0x82,0xfd,0xae,0xa9,0x37,0x77,0x9c,0x7c,0xfd,0xc3,0x6b,
0xbf,0xfc,0xe0,0xd9,0xcf,0x68,0xd3,0x6f,0x5f,0xff,0x25,0x4c,0xbf,0xf3,0xce,0xeb,
0x3b,0x2e,0xbc,0xb1,0xfd,0xd0,0x9b,0xbb,0x97,0xde,0x39,0xf8,0x7c,0x4b,0xcc,0xcc,
0x8e,0xf8,0xc6,0xbd,0xc9,0xc1,0x3,0x69,0x9e,0xa8,0xc,0x7b,0xc,0xc3,0x9c,0xc0,
0x32,0x25,0xb1,0xc,0x49,0x29,0xd3,0xbf,0xa1,0xb6,0xd5,0x7e,0x2b,0x69,0xea,0x95,
0x8c,0x74,0x9c,0x8b,0xdb,0xe8,0x89,0x11,0xfb,0x1,0x0,0x30,0x88,0xa0,0x13,0xc2,
0xee,0x3d,0x38,0x38,0x14,0x1b,0x73,0x20,0x99,0x1f,0x9d,0xed,0xa0,0x18,0xe8,0x65,
0x50,0xca,0x2e,0xda,0x50,0x56,0x51,0x5f,0x56,0x21,0xad,0x7e,0xe2,0xfe,0x42,0xca,
0xfd,0xf9,0xdd,0x19,0xd8,0x4e,0xce,0x10,0x25,0x24,0x67,0x91,0xad,0x37,0xd2,0x5a,
0x60,0x1c,0x10,0x46,0xa1,0x10,0x51,0xf3,0x20,0xa8,0x8b,0x60,0x58,0x2,0x22,0xc,
0xa0,0x4,0x5a,0xbb,0x7e,0xf4,0x2,0xd5,0xf5,0x9e,0x43,0xb9,0x8f,0xa8,0xf,0xdf,
0x5f,0x5f,0x25,0xf5,0xcf,0x8d,0x63,0x24,0xfc,0x53,0x0,0x9c,0xbe,0xb9,0x44,0x1,
0xb0,0x74,0xea,0xe,0x9,0xfc,0xd4,0x77,0x71,0x7e,0x85,0x3a,0xfe,0xe0,0x74,0xc3,
0xfd,0x8,0xfc,0x5f,0xd7,0x3f,0xa8,0x79,0xf0,0x9e,0x17,0x5e,0xb2,0xa0,0x62,0xbf,
0x5d,0x6f,0x84,0xe8,0x8a,0x1f,0x24,0xc0,0xee,0xf8,0x1,0xf7,0xc3,0xf1,0x68,0x0,
0xc8,0xfa,0xa6,0x43,0xa5,0x68,0xe7,0xb,0x26,0x92,0xb9,0xc7,0x76,0xb1,0x3e,0xfe,
0x69,0xf2,0xfd,0xbf,0x45,0xb7,0xf4,0x3f,0xda,0x3d,0x76,0xfd,0xf7,0x59,0x8f,0x7f,
0x54,0x7e,0x67,0xb3,0xe6,0x5a,0x96,0xfb,0xe3,0xca,0xce,0xb,0xbe,0xb1,0xb5,0xce,
0xf1,0x95,0xae,0xb1,0x95,0xce,0xe1,0xc5,0x76,0x8c,0xeb,0xe9,0x9d,0xb,0x77,0x4e,
0x7,0x5b,0xc7,0x7d,0xe1,0x61,0x57,0x0,0x43,0x98,0x2f,0x18,0x7d,0xf,0xf5,0xde,
0x21,0xbd,0x1d,0xc7,0x89,0x1b,0xea,0xd4,0xbe,0x9a,0x1a,0x6b,0x49,0xa9,0x96,0x95,
0x23,0x4b,0x4a,0xae,0xdd,0x1f,0x5f,0xbd,0x27,0x46,0xb0,0x7b,0x4f,0xc9,0xd6,0x1d,
0x9c,0xcd,0x1f,0x16,0xbf,0xbb,0x8d,0xfb,0xce,0xce,0xf2,0x2d,0x89,0x92,0x83,0x85,
0x46,0xa6,0xc8,0xcf,0x37,0xb7,0xab,0xfc,0x3,0xb6,0x6,0xbc,0x76,0x3a,0xe2,0x85,
0xc2,0x14,0x0,0xd,0x83,0x6e,0xca,0xfd,0xae,0x60,0x3f,0x1,0x20,0xd0,0x6f,0x7,
0x0,0xfe,0x1,0x2,0x80,0x6f,0xd0,0xe6,0x1d,0xb4,0x7a,0x87,0xac,0xde,0x11,0xb,
0xd1,0x98,0xc5,0x33,0x6e,0xf6,0x4c,0x98,0xdc,0x93,0x46,0xf7,0x94,0xd1,0x3d,0x6d,
0x74,0x1f,0x32,0x7a,0x6f,0x19,0xfd,0xcf,0x8c,0x81,0x93,0x96,0xe0,0x98,0x15,0x6f,
0x5,0x4,0xbb,0xf0,0x4c,0x86,0xd9,0x5d,0xaf,0xb7,0x78,0x14,0x60,0xa0,0xa4,0x2b,
0x16,0x17,0x68,0x12,0x6f,0x7e,0xaf,0x52,0x55,0x88,0x59,0x12,0xf4,0x6,0x19,0xbd,
0x16,0x44,0x6f,0x90,0xd1,0x30,0xf0,0xb5,0xc5,0xf2,0xa1,0x6a,0xf5,0x98,0x58,0x37,
0x5e,0xa7,0x1d,0x97,0x68,0xc6,0xc4,0x9a,0x51,0x22,0xf5,0xa8,0x68,0x43,0x63,0x42,
0xf5,0xa8,0x50,0x3d,0x42,0x61,0xd0,0x2f,0x34,0x4c,0x48,0x2c,0x7d,0xa,0x6b,0xb7,
0xc2,0xd6,0xae,0x34,0xf4,0xd5,0x26,0x3c,0xfa,0xb3,0xdc,0xb6,0xdd,0x48,0x2,0x79,
0x99,0x59,0xe8,0x80,0xe1,0xfb,0x8c,0x44,0xb2,0x1b,0x40,0x94,0x94,0x9c,0x2a,0x8a,
0x8e,0xee,0xf8,0xf0,0x60,0xd7,0x7,0x91,0x3d,0xef,0x47,0xf4,0x6e,0xd9,0xdf,0xf7,
0xde,0xbe,0xbe,0xf7,0xf6,0xf6,0x6e,0xde,0x3d,0xfe,0xf6,0xce,0x63,0x6f,0x6c,0xff,
0xf4,0xd5,0x6d,0x8f,0x5f,0xf9,0x80,0x84,0xf9,0x5f,0x40,0x3b,0xd6,0x7f,0xb5,0xeb,
0xe1,0x1b,0xbb,0xae,0xbc,0xb9,0x6b,0xf1,0xed,0x9d,0x3,0xef,0xee,0x26,0x9c,0x7c,
0x10,0xd9,0xb9,0x3d,0xa6,0x6b,0x4f,0xca,0xf5,0xfd,0xe9,0x77,0xe,0x64,0xf7,0xc4,
0x33,0x9b,0x13,0x73,0x1b,0x52,0xa,0xfc,0xe9,0x45,0xee,0xcc,0x62,0x27,0x83,0x6b,
0x67,0xb1,0x2d,0x59,0x99,0x13,0x98,0x2b,0x4c,0x76,0xd9,0xe2,0xcf,0xfd,0x63,0x1a,
0x27,0xa,0x6b,0xa3,0x28,0x87,0x70,0x4c,0x8,0xee,0x27,0x18,0x50,0xc,0x44,0xec,
0xdc,0x5,0xd1,0x48,0xe0,0x1a,0x4d,0x7c,0xdc,0xc1,0xb4,0xc2,0xb8,0x6c,0x71,0x32,
0x4b,0x9f,0x9a,0xeb,0x4e,0xcf,0xb,0x65,0xe4,0x87,0x33,0xf2,0xc2,0xe9,0xb9,0xfe,
0xf4,0x1c,0x67,0x1a,0x43,0x97,0x92,0x29,0x4e,0x48,0xe3,0xc6,0x25,0x65,0x90,0x3b,
0xf8,0xf0,0x3d,0xfe,0x2d,0xec,0xf5,0xa2,0xdc,0x7f,0x11,0xf2,0x37,0x7c,0x4f,0x57,
0x3e,0x1b,0xf5,0xf,0x7d,0x16,0x8,0xd,0x2e,0x36,0xb9,0xc0,0x0,0x5d,0xfc,0x9c,
0xbb,0x4e,0x0,0x38,0x7b,0x7d,0xe5,0xc,0xad,0x1b,0xcb,0xa7,0x9,0x3,0xcb,0x27,
0x6f,0x2e,0x9e,0xba,0xb5,0x74,0xea,0xf6,0x22,0xdc,0x7f,0xf2,0xf6,0xc2,0xc9,0x5b,
0xb,0x93,0x23,0xe4,0xf8,0x27,0xf1,0x3d,0x89,0xfa,0x1b,0x42,0xf1,0x3,0xeb,0x3,
0x0,0x24,0x4,0x8,0xbf,0xe1,0x7e,0x90,0x40,0x18,0xd0,0xe8,0xf1,0x35,0xfb,0xd4,
0xf2,0x8e,0xa,0xc1,0x74,0x52,0xf1,0x89,0x1d,0xcc,0x4f,0xff,0x3d,0xe9,0xe1,0x5f,
0x63,0x5b,0xf4,0x1b,0xc7,0x4b,0xbe,0xae,0x6a,0xe2,0x9e,0xff,0x51,0xee,0xa3,0x9f,
0x54,0xde,0xd9,0xa6,0xbb,0xc6,0xf0,0x7d,0x2c,0xea,0xbd,0x50,0x3f,0xb5,0x86,0x17,
0xec,0xfa,0x27,0x96,0x7b,0x46,0x17,0x3b,0x7,0x8f,0xb4,0xf6,0x1e,0x6e,0xec,0x9a,
0xad,0x6f,0x9f,0xe,0xe0,0xd0,0x41,0xc3,0x88,0x3d,0x30,0x68,0xf1,0xf6,0x19,0x9d,
0x3d,0x5a,0x47,0xb7,0xda,0xd6,0xa9,0x32,0xb5,0x4a,0x8d,0xad,0x75,0x6a,0x1c,0xfd,
0xd,0xf0,0x85,0x6e,0x2e,0x66,0x4,0x70,0x8d,0xcc,0x42,0x5d,0x3a,0x53,0x99,0x90,
0x2e,0x8b,0x4a,0x90,0xec,0x8d,0x95,0xec,0x8e,0x11,0xef,0x8c,0x14,0x6e,0xdf,0x51,
0xbe,0xf9,0xc3,0xb2,0x77,0xb0,0x14,0xfd,0x7e,0xf9,0x5b,0x3b,0x5,0x5b,0x93,0xe4,
0xd1,0xc5,0x96,0x5c,0x49,0x40,0x60,0x6a,0x53,0xf9,0xfa,0x6d,0xf0,0xfd,0x4b,0xf7,
0x23,0xf0,0x87,0xfa,0x89,0x68,0x0,0x20,0x7f,0xbf,0xdd,0xdf,0x6f,0xc3,0x3f,0xe6,
0x1b,0xb0,0x52,0xc,0x58,0xbc,0x43,0x16,0xef,0xb0,0xc5,0x33,0x6a,0xf6,0x8c,0x99,
0xdd,0xe3,0x26,0xf7,0x84,0x91,0x62,0xc0,0xe4,0x9a,0x36,0xba,0xe,0x1b,0xbc,0x77,
0xd,0xbe,0x67,0x86,0xc0,0x31,0x4b,0x70,0x14,0xc,0x58,0x3,0x9d,0x78,0x2b,0xc9,
0xec,0xaa,0xd7,0x99,0xdc,0x32,0xb9,0xa1,0xaa,0xa8,0x3f,0x82,0xbc,0xf6,0x7c,0xed,
0x6f,0x2b,0xa5,0x6c,0x2c,0xa,0xe1,0xb4,0x1c,0x1c,0x4f,0x6f,0x90,0x81,0x4,0xd2,
0x1c,0x33,0x98,0xc8,0xc,0x7c,0x53,0xb1,0x7c,0xb4,0x5a,0x3d,0x2e,0xd2,0x4e,0x4a,
0xb4,0x13,0x12,0xcd,0x84,0x58,0x3d,0x21,0x7a,0x21,0xa1,0x6a,0x82,0xd2,0x38,0x85,
0xc1,0x90,0x50,0x7f,0x45,0x6c,0x19,0x95,0x5b,0xc1,0x40,0x17,0x61,0x80,0x77,0x7a,
0x6f,0xfc,0xf5,0xef,0x71,0x79,0x48,0x2,0xe4,0x90,0xe,0xd5,0x0,0x90,0x26,0x98,
0x9c,0x89,0x0,0x3,0x19,0xc9,0x31,0x8d,0x3b,0xe,0xc,0x6c,0x8d,0x18,0xdc,0xb2,
0x6f,0x62,0xf3,0x9e,0xd5,0xb7,0x76,0x7e,0xf4,0xfa,0xf6,0x7,0xbf,0x44,0x98,0xa7,
0xcb,0x9b,0xed,0x88,0xf4,0x4f,0x5e,0xdf,0xf5,0xf9,0x6f,0x76,0xad,0xbe,0xbd,0x7b,
0xe4,0xbd,0x3d,0x6d,0x5b,0xf7,0xb7,0x6d,0x3b,0xd8,0xb1,0x33,0xa6,0x73,0x4f,0x7c,
0xd7,0xfe,0xa4,0xee,0x48,0x1c,0xf1,0xca,0xe8,0x89,0x63,0x1c,0x4e,0xc8,0x7b,0x9e,
0x58,0x74,0x3e,0x1d,0x15,0x4b,0x49,0x2b,0xb3,0xb4,0x11,0xfb,0x50,0x79,0x3c,0x6f,
0x1e,0xdf,0x53,0x58,0xe1,0x2c,0xe0,0x5a,0x59,0xcc,0xbe,0x3d,0x31,0xf,0xff,0x10,
0xc,0x44,0x3f,0xf8,0xc3,0x24,0xf,0x55,0xe,0x45,0x45,0xa3,0x2d,0x6,0x6,0xf4,
0xba,0x10,0x1,0x0,0x18,0xec,0xda,0xbd,0x6f,0xc7,0x4e,0x1a,0x3,0xb2,0x77,0x86,
0x9c,0x40,0xdd,0xae,0x44,0x3d,0xff,0xf5,0xcd,0xe3,0x17,0x7,0xec,0xf0,0x8f,0xe1,
0xdf,0x22,0x8f,0xe1,0x51,0x23,0x10,0x77,0x63,0x6,0x16,0xe9,0x77,0x37,0x86,0x81,
0xbe,0x9c,0x84,0x45,0x1,0x40,0x62,0xff,0xce,0xed,0x1f,0xec,0xaf,0xff,0xc9,0x26,
0xec,0x70,0x51,0xeb,0xfd,0xc7,0x11,0xf5,0x51,0xfa,0xc3,0xfa,0x67,0xbf,0x5a,0x39,
0xf3,0xd5,0xf2,0xe9,0xaf,0x96,0x49,0x9,0x74,0x7d,0xf9,0xd4,0xf5,0x45,0x64,0x80,
0x53,0x37,0x17,0x49,0x6,0xb8,0xbd,0x78,0xf2,0xd6,0xd1,0x53,0xb7,0x17,0x56,0xae,
0x1e,0xc2,0xf1,0x7,0x3c,0xfd,0xb,0x97,0x13,0xf7,0x53,0x19,0x80,0x98,0x9e,0x6a,
0x0,0x10,0xe9,0xc9,0xf,0xb3,0xc5,0x12,0xd2,0xc8,0xbb,0xcb,0x4,0x87,0x12,0x4b,
0x4e,0x6d,0x67,0x7c,0xfe,0x93,0x84,0x47,0xdf,0x43,0x4b,0xfa,0x3f,0xda,0x3d,0xfe,
0xf9,0x9f,0xe6,0x3f,0xfe,0x77,0xc1,0xdd,0x9d,0xc6,0xaf,0x72,0x43,0x9f,0xc8,0x6,
0x2f,0x36,0x1d,0x3a,0x35,0x38,0x73,0x6c,0x60,0x6a,0xb5,0x6f,0x7c,0xa9,0x7b,0xf8,
0x48,0xfb,0xe0,0x7c,0x6b,0xcf,0xc,0x2,0x7c,0x7d,0x2b,0xea,0xf2,0x11,0x17,0x2a,
0x69,0xff,0x80,0xd9,0xdd,0xa7,0x77,0xf5,0x6a,0x9d,0xbd,0x6a,0x5b,0x2f,0x8e,0x4c,
0x4a,0xd,0x5d,0x12,0x6d,0x4f,0xad,0xbc,0x8d,0x2f,0x6e,0x28,0xad,0xe,0xb0,0x71,
0x2d,0xba,0x14,0x47,0xa9,0xac,0x19,0x79,0xa6,0xe4,0x6c,0x7d,0x6c,0xba,0xf6,0x60,
0xaa,0xe6,0x40,0xa2,0x7a,0x5f,0xbc,0x7a,0x4f,0xac,0x7a,0x77,0xb4,0x6a,0x67,0x94,
0x6a,0x47,0xa4,0x72,0xfb,0x3e,0xd9,0x7,0xdb,0x6a,0xde,0x79,0x5f,0xf0,0xd6,0xd6,
0xaa,0x37,0xb7,0x54,0xbd,0xb9,0xb3,0x76,0x6b,0xb2,0x32,0xa6,0xd4,0x56,0x20,0xab,
0xaf,0xb1,0x74,0x68,0x7c,0x7d,0x84,0x1,0xc4,0x7e,0x4,0x7e,0xa2,0x7e,0x2a,0xfc,
0xf7,0x39,0x3,0x7d,0x8e,0x40,0x9f,0xdd,0xdf,0x67,0x83,0x7c,0x7d,0x18,0xf8,0x6c,
0xf5,0x42,0x3,0x16,0xcf,0x80,0xd9,0x33,0x64,0x76,0xf,0x9b,0xc0,0x0,0xd6,0x94,
0x5c,0xe3,0x46,0x30,0xe0,0x9a,0x34,0xb8,0xa6,0xc,0x84,0x81,0x79,0x83,0xf7,0xbe,
0xc1,0xfb,0xc4,0xe0,0x5f,0x32,0x7,0x46,0xc8,0x9c,0x74,0x30,0xe0,0x6b,0x31,0x39,
0x43,0x3a,0xa3,0x53,0x2a,0xd5,0xf3,0xb,0x46,0x76,0x63,0x93,0x38,0xe5,0xb3,0xef,
0xb,0xea,0x8a,0x91,0x7,0x8a,0xf3,0xf2,0xa9,0xf0,0x4f,0x7a,0x62,0xb2,0x2e,0x44,
0x2d,0x8f,0x82,0x8a,0x4a,0x4b,0xb1,0x6c,0x54,0xa0,0x99,0x12,0xd3,0x52,0x4f,0x89,
0x68,0xa9,0xa6,0x84,0x2f,0xa5,0x9e,0x10,0xaa,0xc7,0x84,0xba,0x6b,0x22,0xf3,0x71,
0xa9,0x65,0x40,0x6e,0xed,0x51,0xd8,0x3a,0xb1,0x9d,0x2c,0x4a,0x7c,0xf8,0x1d,0x56,
0xcf,0x87,0x0,0x29,0x37,0x23,0xeb,0x5,0x3,0x24,0xfc,0xd3,0x7,0x84,0x52,0xcb,
0x63,0xf6,0x9d,0x7f,0x6b,0xd7,0xed,0xd7,0x76,0x3c,0x47,0x61,0x43,0xb4,0x73,0xfd,
0xb5,0x5d,0xcf,0x5f,0xdf,0x75,0xe3,0x8d,0x5d,0x67,0xde,0xde,0x35,0xfd,0xee,0xde,
0x4e,0xd4,0x45,0x1f,0x1e,0x6c,0xdf,0x19,0xdd,0xbe,0x27,0xbe,0x63,0x7f,0x72,0xe7,
0xc1,0xd4,0xae,0xe8,0xac,0x9e,0x4,0x46,0x6f,0x12,0xab,0x2f,0x25,0xb7,0x3f,0x2d,
0xbf,0x3f,0xbd,0x70,0x20,0xab,0xe4,0x13,0xcc,0xeb,0x64,0xf1,0xe,0xe5,0x55,0x74,
0x17,0xf0,0xdb,0xa,0x2b,0x9b,0x8a,0xaa,0x42,0x6c,0x81,0x9f,0x23,0xf0,0x72,0xf8,
0xce,0xc2,0x52,0x6b,0x4e,0x4e,0x28,0x26,0xf6,0xfa,0x77,0xe9,0x54,0x1f,0x77,0xe2,
0xfb,0x29,0xe5,0x11,0xf4,0xd,0x63,0x7a,0x97,0x80,0x5e,0x1b,0xdd,0x4f,0xe5,0x1,
0x7c,0x81,0x1,0xbe,0xf4,0xf,0xa2,0xed,0x3b,0xf6,0xed,0xd8,0x81,0x18,0xbf,0x77,
0xfb,0xe,0xf2,0xe,0x24,0x25,0xf8,0x9e,0x5a,0xe1,0x81,0xf5,0x29,0xa1,0xe0,0xf9,
0xa6,0xbe,0x6e,0x0,0x48,0x1b,0xb0,0x87,0xf3,0x56,0xe4,0x59,0xfc,0xb7,0x7f,0x6b,
0x13,0xd9,0xe5,0x25,0xb1,0x1f,0x0,0x1c,0x3b,0x7f,0x3,0x19,0xe0,0xd8,0x99,0x6b,
0x2b,0xa7,0xaf,0x2d,0x9f,0xf9,0x8a,0x7c,0x4f,0x7d,0xb5,0x74,0xea,0xfa,0xd2,0xc9,
0xeb,0x8b,0xc8,0x0,0xd0,0xda,0xcd,0xa3,0x88,0xfd,0x18,0x19,0x34,0x87,0xfd,0xdf,
0xe6,0x36,0xec,0xfe,0x52,0xd6,0x27,0x1b,0xc0,0x6e,0xab,0x5,0xf3,0xb,0x94,0xfd,
0x65,0x82,0xf9,0x44,0xf6,0xe9,0xad,0x8c,0x6b,0x3f,0x4e,0x78,0xfc,0x97,0xd1,0xe4,
0xe4,0xe0,0xcb,0xc3,0x83,0x5f,0x47,0xf7,0xf8,0xe7,0x7f,0x56,0xf0,0xe8,0x3f,0x6a,
0xee,0xec,0x35,0x5f,0xcf,0xf,0x7f,0xa6,0x1a,0xb9,0xdc,0x7a,0xe8,0xcc,0xd0,0xe1,
0x93,0xc3,0x33,0xc7,0x37,0x1c,0x3f,0x38,0xdf,0xd6,0x7f,0xb8,0xb9,0x7b,0x3a,0xdc,
0x36,0x11,0x68,0x1d,0xf3,0xe1,0x91,0x39,0x3f,0x46,0x8a,0x63,0x9a,0x6c,0x9f,0xc1,
0xdd,0x87,0xe9,0x9,0x2a,0x1b,0xe,0x48,0x62,0x33,0xa8,0x53,0xa8,0x68,0xab,0x94,
0xb6,0x94,0x8b,0x9a,0x4a,0x4,0xd,0x45,0xe5,0xc1,0x9c,0x12,0xcc,0xca,0xab,0x4f,
0x2f,0xf4,0x63,0xa7,0x26,0x39,0xd7,0x95,0xc8,0x74,0xc5,0x67,0x3b,0xe3,0x32,0xed,
0xd1,0x69,0xd6,0xc8,0x14,0x4b,0x44,0xa2,0x65,0x5f,0x82,0x65,0x6f,0x9c,0x79,0x77,
0x8c,0x79,0x67,0x94,0x69,0x47,0xa4,0xe9,0xc3,0x8,0xc3,0xb6,0x8,0xfd,0xb6,0x5d,
0xaa,0xf7,0xb6,0x8a,0xdf,0xdc,0x22,0xfc,0xcd,0x7b,0x35,0xbf,0x79,0xaf,0xfa,0x37,
0x7b,0x44,0xdb,0xd2,0xd5,0x9,0x3c,0x7,0x5b,0x5e,0x2f,0x74,0x74,0x19,0xfc,0x7d,
0xf6,0xaf,0xab,0x7f,0x2a,0xfc,0x53,0xee,0x77,0xf8,0x7b,0x1,0x80,0xdd,0xd7,0x4b,
0x1,0xd0,0x7,0x0,0x2c,0xc8,0x3,0x9e,0xfe,0xd,0x6,0x5c,0x18,0xf8,0x33,0x62,
0x74,0x61,0xea,0xc9,0xb8,0xd1,0x39,0x61,0x70,0x4e,0x1a,0x9c,0x53,0x7a,0xe7,0xb4,
0xc1,0x79,0x54,0xef,0x79,0xa8,0xf7,0x3c,0xd2,0xfb,0x8f,0x9a,0x3,0xc3,0x16,0x7f,
0xaf,0xd9,0x8f,0xc7,0x32,0x5a,0x4c,0x8e,0x90,0x56,0xef,0x94,0x48,0xf4,0xe5,0x79,
0x53,0x1f,0xe2,0xc0,0x59,0xda,0xd5,0x1f,0xe1,0xd1,0x45,0x6c,0x12,0x93,0x83,0xa2,
0xac,0x9c,0x7c,0x7a,0x6d,0x34,0x9b,0x99,0x97,0x95,0x8d,0x1f,0x85,0x2c,0x56,0xa5,
0xa3,0x58,0x3e,0x51,0xad,0x9e,0x16,0x69,0x66,0xc4,0x9a,0x19,0x91,0x7a,0x46,0xa4,
0x9a,0x11,0xbe,0x50,0xad,0x6a,0xa6,0x56,0x35,0x55,0x8b,0x54,0xa0,0x39,0x29,0x34,
0xdc,0x20,0x49,0xc0,0xd2,0x2f,0x47,0x21,0x64,0xed,0x50,0x54,0x9c,0x8c,0x8c,0xbb,
0xfd,0x17,0x1c,0x3e,0x59,0x69,0xc5,0x7a,0x28,0x39,0xd,0x41,0xce,0x87,0x92,0x24,
0x80,0x9a,0x1c,0x24,0xc4,0x8c,0x6e,0xdf,0xb1,0xfe,0x8b,0x9d,0xeb,0xaf,0xee,0xba,
0xf7,0xfa,0x9e,0x2b,0x6f,0xef,0x5d,0xdc,0xbc,0x77,0x70,0xeb,0x81,0x9e,0xed,0x51,
0xdd,0xbb,0x50,0xde,0x24,0x76,0x1d,0x48,0xee,0x3a,0x98,0xde,0x15,0x97,0xd5,0x9d,
0xc8,0xe8,0x4e,0x66,0xf5,0xa4,0xe6,0x93,0x5d,0xa7,0xac,0xa2,0xfe,0x6c,0xce,0x0,
0xb3,0x64,0x30,0xa7,0x74,0x30,0xf,0xe2,0x4d,0xe4,0x57,0x3e,0x2c,0xa8,0xba,0x57,
0x58,0x35,0xc2,0x16,0xf4,0x14,0xb,0xda,0x38,0xd5,0x8d,0xc5,0xd5,0x21,0x3c,0xbf,
0x52,0x2c,0xf0,0x70,0x2a,0x1c,0x5,0x25,0x66,0x26,0x5a,0x82,0x84,0xe5,0x7f,0xdf,
0x38,0x69,0xf7,0xec,0x77,0x12,0x66,0xfe,0x2d,0xad,0x28,0xa,0x5d,0x1,0x5d,0xc6,
0x20,0x1b,0xbc,0x2c,0x87,0x28,0xc7,0x13,0xdf,0x13,0xc7,0x53,0xbf,0xe1,0x78,0xfc,
0x11,0x8e,0x27,0xbe,0x7f,0xe1,0x7e,0x9a,0x1,0x4,0x7e,0x7a,0x18,0xfa,0xc6,0xf4,
0xab,0xf7,0xdf,0xa7,0x52,0x1,0x35,0xd,0xe,0xaf,0x4,0xb0,0xdf,0x3e,0x30,0xff,
0xf7,0xf8,0x2f,0xc5,0x51,0x56,0xc6,0xe8,0x7,0x0,0x80,0x2c,0xf8,0xa0,0xec,0x81,
0xe3,0x89,0xf5,0xbf,0x5c,0xa6,0xbf,0xa7,0xbe,0x5c,0x42,0x12,0x38,0x79,0x6d,0x71,
0xed,0xda,0x2,0x92,0x0,0x96,0x4a,0xd7,0x6e,0xc0,0xfa,0xf8,0x1e,0x3d,0x71,0xed,
0xc8,0xe8,0x70,0x6f,0xa0,0xd7,0xae,0x1c,0xe6,0xe2,0xbc,0x3,0xe7,0xfc,0x56,0x1c,
0xfa,0x8f,0x7b,0xf2,0xe7,0xd1,0x68,0xf0,0xff,0x27,0xbb,0x47,0x3f,0xfd,0xc3,0xd8,
0x6b,0xdf,0x4d,0x38,0xf3,0x83,0xdc,0x95,0xcd,0xd5,0xf3,0x19,0x8e,0x39,0x65,0xff,
0x52,0xf3,0x14,0x9e,0x65,0x3f,0x39,0x34,0x73,0x62,0x60,0x6c,0xb9,0x7b,0x64,0xa1,
0xa3,0x7f,0xbe,0xa5,0x67,0x36,0xdc,0x39,0x15,0x6a,0xc1,0xaa,0xcb,0x8,0x96,0x59,
0x50,0x5a,0x98,0x7d,0xfd,0x46,0x38,0xde,0xd5,0xa7,0xb5,0xf5,0x28,0x2d,0x38,0x3,
0xd3,0x29,0x52,0xb5,0x9,0xe4,0xad,0x7c,0x61,0x63,0x49,0x75,0x98,0xcd,0x6f,0xc8,
0xe7,0x6,0xb3,0x8b,0x3,0x99,0x45,0x81,0xb4,0x2,0x7f,0x4a,0x7e,0x20,0x39,0xf,
0xfb,0xe7,0x81,0xc4,0x9c,0xfa,0x44,0x56,0x63,0x2,0x33,0x14,0xcf,0x8,0xc6,0x65,
0x5,0x63,0x33,0x83,0xd1,0xe9,0x81,0x83,0x29,0xfe,0x3,0x49,0xde,0x7d,0xf1,0x9e,
0x3d,0xb1,0x9e,0x5d,0xd1,0xee,0x9d,0x7,0x5d,0xdb,0x23,0x9d,0x1f,0x46,0x38,0xb6,
0xed,0xb7,0xbd,0xbf,0xcf,0xf2,0xfe,0x3e,0xe3,0xfb,0xdb,0x35,0xef,0x6e,0x91,0xbc,
0xb9,0x55,0xf4,0xd6,0x36,0xe1,0xbb,0x3b,0x45,0xef,0xc7,0xcb,0x23,0xb,0xcd,0xac,
0x1a,0x4f,0xb9,0x26,0x5c,0xe7,0xea,0x32,0xc1,0xf4,0x8,0xff,0xa4,0x1,0x78,0xe1,
0x7e,0x12,0xfe,0x1,0x0,0xdc,0x4f,0x0,0xb0,0x79,0x1,0x40,0x9f,0xc5,0xd3,0x67,
0xf6,0xf4,0x9b,0xdd,0x10,0x6,0xdf,0xe,0x99,0x5c,0xc3,0x26,0x30,0xe0,0x1c,0x35,
0x38,0xc7,0xc,0xce,0x71,0xbd,0x63,0x52,0xf,0x6,0x1c,0xc0,0x60,0x49,0xe7,0x7e,
0xac,0x3,0x6,0xfe,0x39,0xb3,0x7f,0xc8,0xec,0xeb,0x35,0x79,0xf1,0x50,0x40,0xb3,
0xd1,0x1e,0xd2,0x80,0x1,0xb1,0x81,0xc7,0x9c,0xdb,0x8c,0x36,0x31,0xed,0xe2,0x4f,
0xaa,0xf0,0xe8,0x12,0xbd,0x30,0x4a,0x6d,0xf,0x23,0x3,0xe4,0x65,0x31,0xb0,0x9b,
0x4b,0x5a,0x82,0x1c,0x16,0xdf,0xc3,0x91,0x4f,0x55,0xab,0x67,0x85,0xea,0x59,0x91,
0xfa,0x10,0x24,0x54,0x7d,0xad,0x5a,0xd5,0x6c,0xad,0x6a,0x9a,0x90,0xa0,0x7b,0x50,
0x6b,0x3a,0x2a,0xb5,0xc,0x91,0x42,0xc8,0xd2,0x2d,0x37,0xe,0x88,0x93,0x1f,0x7c,
0x2f,0x73,0xfe,0x35,0x4e,0x1e,0xc6,0x9a,0x64,0xa1,0xd,0x20,0x87,0x40,0xa9,0x93,
0xa1,0x38,0x10,0x4a,0x7e,0xb0,0x12,0x77,0xcc,0xfe,0xe6,0xbd,0xb1,0x5f,0x6e,0xeb,
0xfb,0xcd,0xee,0xbe,0xf7,0xe,0xf4,0x6d,0x8f,0xe9,0xdb,0x9d,0xd4,0x17,0x99,0xda,
0x17,0x93,0xd9,0x17,0xcf,0xe8,0x4b,0xca,0xe9,0x4b,0xcb,0xef,0xcb,0x28,0xea,0xcb,
0xe6,0xf4,0x31,0x8b,0xfb,0x58,0xdc,0xfe,0x5c,0x6e,0x7f,0x5e,0x69,0x7f,0x5e,0xd9,
0x40,0x1,0x6f,0xb0,0xa0,0x7c,0xb0,0xb0,0x62,0xa8,0xa8,0x62,0xb0,0xa8,0xf2,0x78,
0x91,0x60,0xbd,0x48,0xf0,0x49,0x91,0x60,0x80,0x23,0xe8,0xe2,0x8,0x5a,0x39,0x82,
0x30,0xa7,0x3a,0x88,0x21,0xe4,0xc5,0x55,0x2e,0x4e,0xb9,0x2d,0xbf,0xd8,0xc4,0x60,
0xca,0x93,0x92,0xc2,0xef,0x47,0xdf,0xc0,0x7e,0x3c,0x89,0x8f,0x38,0x39,0x17,0x37,
0xff,0xc3,0x24,0xe1,0xae,0xa4,0x18,0x32,0x5c,0x88,0x64,0x3,0xaa,0x37,0x40,0x2d,
0xb4,0x7f,0x27,0x92,0x0,0x15,0xf2,0xb7,0x6f,0x7,0x0,0xe4,0xc9,0x47,0x4,0x7e,
0x3c,0xfd,0x42,0xbe,0x3b,0xf6,0x7c,0x48,0x62,0x3f,0xfe,0x86,0xae,0x79,0x36,0x52,
0xc1,0xcb,0x47,0x31,0xf0,0xf,0xc7,0x6e,0xdb,0x6f,0xfa,0x79,0xe4,0xd9,0xef,0x91,
0x65,0xa8,0xf5,0x4d,0x89,0x5f,0xfc,0x5d,0x41,0x30,0x9e,0xad,0xc8,0xda,0x44,0x96,
0x3b,0x6f,0x1c,0x83,0xfb,0xcf,0x7e,0xb5,0x7a,0xe6,0xcb,0x95,0xd3,0x5f,0x2c,0x13,
0xf7,0x7f,0xb1,0x74,0xf2,0x8b,0x45,0x30,0xb0,0xf6,0xe5,0x2,0x0,0xc0,0x86,0x17,
0x4c,0xf,0xeb,0x13,0xf7,0x5f,0x3f,0x7a,0xf4,0xc6,0x78,0xc2,0xd3,0xef,0xfc,0xbf,
0xec,0x1e,0xff,0xe4,0x2f,0x52,0xaf,0xfd,0x43,0xc6,0xe9,0x9f,0x31,0xe7,0xde,0xca,
0xeb,0xdf,0x9b,0xf3,0xf1,0xc1,0xec,0xc3,0x51,0x19,0xaa,0xa8,0x4c,0x4d,0x4c,0xa9,
0x23,0x47,0x1e,0xae,0x42,0x99,0xde,0x38,0xe6,0xea,0x98,0x9,0x41,0xed,0x53,0x41,
0x1c,0x17,0xc3,0x43,0xa2,0x41,0xf2,0x6c,0x84,0xd1,0xd3,0xaf,0x77,0xf7,0xeb,0x9c,
0xe4,0x46,0x2c,0x8e,0x3d,0x8a,0xb5,0xed,0xb5,0xf2,0x16,0xbe,0xa4,0xb9,0xac,0xba,
0x81,0xcd,0xaf,0xcf,0xe7,0x85,0xf0,0x4e,0x32,0xe,0x48,0x65,0x14,0x85,0xd2,0xb,
0x83,0xa9,0x5,0xa1,0x94,0xfc,0xfa,0xe4,0xbc,0xfa,0xa4,0xdc,0x86,0xa4,0x9c,0x70,
0x22,0x2b,0x9c,0xc0,0x6c,0x8c,0x87,0xb2,0x1b,0x63,0xb3,0x5b,0x63,0x33,0xdb,0x63,
0x32,0x9b,0xa3,0xd3,0x9b,0xa2,0xd2,0x9a,0xe,0xa6,0x34,0x46,0x26,0x85,0x23,0x12,
0xea,0xf7,0xc6,0x86,0x76,0x47,0x7,0x76,0x1e,0xf4,0x6f,0x8f,0xc,0x7d,0x78,0xa0,
0x73,0x5b,0xe4,0xf8,0xb6,0x3,0x4b,0x1f,0x44,0x5e,0xdc,0x16,0x7d,0x73,0x7b,0xdc,
0x17,0xbb,0xa3,0xb5,0xfb,0xe2,0x35,0x91,0xc9,0xda,0xd8,0x74,0x5d,0x22,0x53,0x9f,
0xc6,0xb5,0x15,0x88,0x3,0x55,0xda,0x26,0x99,0xb5,0x5d,0x87,0x3a,0x87,0xaa,0xfb,
0x37,0x44,0xc2,0xff,0xd7,0x0,0x58,0xbd,0xbd,0x44,0x9e,0x5e,0x8b,0xa7,0x17,0x55,
0x19,0x5,0x40,0xbf,0xc9,0x35,0x60,0x72,0xd,0x1a,0x9d,0x18,0x7a,0x35,0x62,0x70,
0x8c,0xea,0x1d,0x63,0x7a,0xc7,0x4,0x18,0xd0,0xd9,0x29,0x39,0x56,0xb5,0xee,0xa7,
0x5a,0xcf,0x3d,0xbd,0xff,0x90,0xd9,0x87,0x49,0xd1,0x14,0x3,0xee,0x66,0x83,0x35,
0xa8,0xd4,0x3a,0xc5,0x42,0x43,0x59,0xf6,0xe2,0x6f,0x10,0x4d,0x32,0x4f,0xbf,0x52,
0x55,0xc9,0xa5,0x6f,0xe,0xa0,0xd,0xc8,0xcd,0xcc,0xa6,0x18,0xc8,0x86,0x71,0x41,
0x42,0x51,0xe,0xab,0xd2,0x5b,0x2c,0x9f,0xae,0x86,0xef,0x35,0x87,0x45,0xea,0xc3,
0x42,0x15,0x25,0xe5,0xe1,0x5a,0x48,0x85,0x2f,0xc5,0x80,0xe6,0x6a,0xad,0xe1,0x63,
0x89,0x79,0x54,0x66,0x19,0x94,0x5b,0x7a,0xe5,0x60,0x80,0x7f,0x82,0x3c,0xf5,0x57,
0x60,0x89,0x45,0x32,0x61,0xa5,0x65,0x20,0xea,0x23,0xf6,0xd3,0x25,0x50,0x1a,0x5,
0x43,0x42,0x59,0xe4,0xbb,0x9d,0xbf,0xf8,0xa0,0xe7,0xd7,0x7b,0x7b,0xb7,0xc6,0xf6,
0xef,0x49,0x1e,0x38,0x98,0x31,0x10,0xcf,0x1a,0x4c,0x29,0x1c,0xca,0x62,0xf,0x32,
0x8a,0x7,0x73,0xb8,0x3,0x79,0xbc,0x81,0x82,0xf2,0x81,0xc2,0xf2,0x7e,0xa2,0x8a,
0xfe,0xa2,0x8a,0x1,0x36,0xf5,0xfd,0xa6,0xa,0x2b,0x3f,0x2d,0x14,0xac,0x17,0xa,
0x4e,0xb2,0x5,0x7d,0x1c,0x41,0x27,0x47,0xd0,0xcc,0x11,0x34,0x70,0x4,0x1,0x52,
0x8,0x55,0xb9,0xd8,0x65,0xd6,0x3c,0x8e,0x91,0xc1,0x94,0x25,0xa5,0xd4,0x45,0xc6,
0xc,0xfd,0x3c,0xea,0xfe,0x8b,0x9d,0x9c,0xe7,0xdf,0x8a,0xf9,0xe8,0xaf,0xe2,0xdb,
0x5e,0x4d,0x2c,0xdf,0x8b,0xfb,0x96,0x18,0x2c,0x47,0x27,0x84,0x17,0x24,0xec,0x22,
0x9,0x81,0x12,0x0,0x20,0xee,0x27,0xef,0x9f,0x92,0x1f,0x74,0x5a,0x20,0x99,0x81,
0xce,0x9,0xbb,0x3e,0xdc,0x5f,0xb4,0xe5,0x80,0xe7,0x67,0x91,0xc7,0xff,0x3a,0xea,
0xc9,0xc6,0x42,0x62,0xfc,0xad,0xef,0xe6,0xc,0xed,0x28,0xd1,0x30,0x8a,0x95,0xd9,
0x5,0x8a,0xf4,0x4d,0x64,0xb9,0x13,0x5d,0xef,0x57,0xab,0xb0,0xfe,0xd9,0x6b,0xe4,
0x7b,0xf2,0xb3,0x45,0xa2,0xcf,0x17,0xc1,0x0,0x11,0x49,0x2,0x0,0xe0,0xe8,0xda,
0xf5,0x85,0x13,0x5f,0x1d,0xa1,0x61,0x60,0x3d,0xfb,0x21,0x85,0xec,0xb7,0xd2,0x9f,
0xfd,0x3d,0xf7,0xc1,0x6b,0xaa,0x3b,0xc9,0xee,0x2f,0xb8,0xf5,0x67,0xb4,0xf5,0x53,
0x66,0x6b,0xa3,0x4c,0x6c,0x2b,0x29,0x37,0xb0,0x4a,0xd,0xd9,0x25,0xd6,0x8c,0x9c,
0x7,0x31,0x99,0xbe,0xa8,0x74,0xd9,0xc1,0x74,0x45,0x54,0x91,0x31,0x53,0xe0,0xe6,
0x28,0x1a,0xaa,0xcd,0x1d,0xa,0x57,0x9f,0xce,0xd5,0xaf,0x73,0xd,0xe8,0x50,0xbe,
0x5b,0x7a,0x65,0x3a,0x6c,0xdc,0xb4,0x57,0x23,0xba,0x8b,0x9b,0x4a,0x51,0xcc,0x50,
0x76,0xcf,0xe1,0xe2,0x19,0x9c,0x60,0x16,0x3b,0x98,0x51,0x18,0x4c,0x2b,0x8,0xa5,
0x62,0x95,0x3a,0xbf,0x21,0x25,0xaf,0x21,0x39,0x37,0x9c,0x94,0xdb,0x98,0x98,0xd3,
0x94,0xc8,0x6a,0x4e,0x60,0xb6,0xc4,0x33,0x5a,0xe3,0xb2,0x5b,0xe3,0xb2,0x5a,0x63,
0xb3,0xda,0x62,0x32,0xdb,0xa2,0x33,0xda,0xa2,0xd3,0xdb,0xa2,0xd2,0xba,0x50,0x9b,
0x46,0xa6,0xb6,0x45,0xa6,0xb4,0x44,0x26,0xb7,0x47,0x24,0xc,0xed,0x8d,0x3b,0xb4,
0x3b,0xf6,0xc4,0xce,0xd8,0x2b,0x3b,0xe3,0x6f,0xef,0x4a,0x7c,0xba,0x27,0xf5,0xf9,
0x81,0xcc,0xf5,0xe8,0xec,0xf5,0xb8,0x9c,0xf5,0xa4,0x82,0xf5,0x34,0xce,0x9d,0x2c,
0x8e,0x37,0x97,0xeb,0xcd,0x2f,0xc3,0x23,0x51,0x98,0x79,0xe6,0x2b,0x13,0xfa,0xf9,
0xca,0xb0,0xc8,0xd8,0xaa,0xb4,0x75,0xe8,0xbc,0xbd,0x16,0xd2,0x1,0x53,0xab,0x9f,
0x1,0x88,0x2,0x80,0xc4,0xfe,0x5e,0x1b,0xed,0x7e,0xfc,0x3,0x0,0xc0,0x4d,0x3,
0xd0,0x67,0x72,0xf5,0x1b,0x21,0xe7,0x0,0xa6,0xbe,0x19,0x9d,0xc3,0x6,0x7,0x46,
0x9e,0x50,0xc,0xd8,0x27,0x36,0x0,0xb0,0x4f,0xe9,0x1c,0x27,0x74,0xae,0x67,0x5a,
0xf7,0x6d,0xbd,0x6f,0xc6,0xe4,0x1d,0x32,0x7a,0x7b,0x8d,0x9e,0xe,0xbc,0x94,0xa1,
0xb7,0x4,0x94,0x1a,0x87,0xb0,0xc6,0x50,0x92,0x79,0xfc,0x55,0xfc,0x5f,0x38,0xeb,
0xd8,0xab,0x7c,0x1e,0xc9,0x3,0xa4,0x21,0xa6,0x4a,0x20,0x94,0x2e,0x0,0x0,0xc2,
0xf,0x52,0xb,0x85,0x4a,0x64,0x33,0x2,0xe5,0xa1,0x5a,0xf5,0x9c,0x48,0x35,0x2f,
0xa4,0xa5,0x9c,0xaf,0x55,0xce,0x11,0xc,0x94,0xb3,0x35,0xaa,0x85,0x5a,0xdd,0x43,
0xa1,0x69,0x56,0x6a,0x1e,0x91,0x99,0x7,0x64,0xe6,0x5e,0x99,0xb1,0x4f,0x92,0x71,
0xeb,0xff,0x26,0x7c,0xfe,0xd7,0x1c,0x2e,0xe,0x9f,0x66,0xa3,0x10,0xa2,0x2e,0x6,
0x10,0x0,0xd2,0xe9,0x4b,0x2,0x89,0x49,0xfb,0x35,0xdb,0xde,0xeb,0xfa,0x15,0x0,
0x88,0xe9,0xdb,0x93,0x3e,0x18,0xcb,0x1c,0x4a,0x2e,0xc0,0xf1,0xfa,0x91,0xdc,0xf2,
0x91,0xc2,0x8a,0xe1,0xa2,0x8a,0x21,0x36,0x7f,0x90,0xcd,0x1f,0xe0,0x54,0xf6,0x73,
0xf8,0xfd,0x6c,0x7e,0x1f,0x51,0x5,0x51,0x11,0x54,0x4e,0x54,0x48,0x34,0x5c,0x48,
0xaa,0xa0,0xe7,0x85,0x82,0x25,0x14,0x42,0x1c,0x41,0x3b,0xc5,0x40,0x3d,0x87,0x34,
0x3,0x1e,0xe,0xdf,0x51,0x54,0x66,0xc9,0x65,0x1b,0xb2,0xb3,0xa5,0x9,0x89,0xd5,
0x7,0xa2,0x24,0x1f,0x46,0xc,0xfd,0x6b,0xe4,0x2d,0xd2,0x1c,0x6f,0x8,0x24,0x5c,
0xfb,0x4e,0xec,0xcc,0xf,0xe2,0xfc,0xaf,0xc7,0x55,0xee,0x88,0xcd,0xdc,0x1f,0x7b,
0x80,0x34,0xca,0xf4,0x71,0x3a,0x7a,0xe5,0x94,0xf4,0xbe,0x2f,0x95,0xb0,0xe3,0x0,
0xe7,0xfd,0x48,0xf9,0x1b,0x91,0x6d,0xff,0x16,0xb9,0xf2,0x37,0x51,0x77,0xbf,0x1d,
0xf5,0x7c,0xa3,0x2,0x47,0x67,0x95,0xfc,0xc9,0x3f,0xe7,0xe,0xec,0xe1,0xea,0x98,
0xb0,0x3e,0x5b,0x99,0x5,0xf7,0xe7,0x28,0x92,0x37,0x91,0xe2,0x7,0x35,0xf,0xdc,
0xff,0x25,0x71,0xff,0xa9,0xcf,0x97,0x20,0x0,0xb0,0xf6,0xd9,0xc2,0xda,0xe7,0x8b,
0x6b,0x9f,0x2f,0x9c,0xf8,0xe2,0xe8,0xf1,0x2f,0xe0,0xfb,0x85,0xe3,0x5f,0x52,0xee,
0xc7,0xef,0xcf,0x8f,0xb6,0x7f,0xa5,0xef,0xfb,0x22,0x78,0xf4,0xea,0xd8,0x89,0x73,
0x73,0x27,0xcf,0x1c,0x3d,0x7b,0x71,0x71,0xf9,0xc4,0xd4,0xe8,0x4c,0x47,0x63,0x8f,
0xc3,0xe0,0x17,0x55,0x19,0x31,0xfc,0x91,0x51,0xa2,0xc3,0xb1,0xec,0x14,0xe6,0x76,
0xbb,0xda,0xc7,0x0,0x0,0xd3,0xb7,0x49,0x44,0x41,0x54,0xb5,0xe8,0x4c,0x79,0x74,
0xa6,0x22,0x3a,0x5b,0x13,0x93,0x67,0x4f,0x2e,0x75,0x33,0x5,0xc1,0x22,0x71,0x63,
0x59,0x5d,0x13,0xf,0x5e,0xaf,0x69,0xe4,0xf0,0xeb,0xb,0x68,0xaf,0x73,0x2,0x99,
0xb0,0x7b,0x61,0x20,0x8d,0xb6,0x7b,0x41,0x3d,0xb1,0x7b,0x7e,0x38,0x25,0xaf,0x31,
0x39,0xb7,0x29,0x29,0xb7,0x39,0x29,0xa7,0x39,0x91,0xd5,0x92,0xc0,0x6c,0x8d,0x67,
0xb6,0xc5,0x33,0xa0,0xf6,0xb8,0xec,0x8e,0xd8,0xac,0x8e,0x98,0xcc,0xce,0x98,0x8c,
0xce,0xe8,0x8c,0xce,0xa8,0xf4,0xce,0xa8,0x34,0xf4,0x64,0x3d,0x91,0x29,0xe3,0x11,
0x49,0x47,0xf7,0x25,0x9e,0xdd,0x9b,0xf8,0xc9,0x9e,0xa4,0x3b,0x7b,0x53,0x9e,0xed,
0xcf,0x78,0x7e,0x30,0x7b,0x3d,0x96,0xb5,0x9e,0x90,0xbf,0x9e,0xc2,0x59,0xcf,0x2a,
0x5d,0x67,0x96,0xaf,0xe7,0x55,0x3d,0x66,0xb,0xae,0x17,0xb,0xaf,0x94,0x89,0x8e,
0x97,0x4b,0x66,0xaa,0xea,0x5a,0xab,0x15,0x6d,0x42,0x15,0x39,0x5c,0x59,0x67,0xc0,
0x15,0xc4,0x76,0xa5,0xad,0xb,0xe3,0xa,0xd,0xae,0x1e,0x13,0x8a,0x9c,0x20,0xdc,
0x3f,0xe0,0x24,0xee,0xc7,0xe2,0xf,0x69,0x7f,0x49,0x7,0xec,0xdb,0x70,0x3f,0x1d,
0xfe,0x29,0x0,0x7a,0xcd,0xae,0x5e,0x93,0xab,0xcf,0xe4,0xec,0x33,0x38,0x31,0xf5,
0x76,0xc0,0xe0,0x18,0x34,0x38,0x86,0xf5,0x60,0xc0,0x3e,0xaa,0xb3,0x8f,0xe9,0x68,
0x6,0x6c,0x93,0x5a,0xcc,0xa0,0xb7,0x9f,0xd2,0x38,0x9f,0x6b,0xdc,0x37,0x74,0xde,
0x29,0xa3,0x67,0xc8,0xe8,0xc1,0x73,0x1,0x1d,0x78,0x2a,0x46,0x67,0xe,0xc8,0x95,
0xb6,0xea,0x6a,0x53,0x71,0xfa,0xd9,0xff,0x0,0x3,0x8c,0x85,0x37,0xf8,0x65,0x25,
0x25,0xf9,0x5,0xa8,0x85,0x0,0xc0,0xcb,0xc,0x80,0x84,0x0,0xc,0xa,0x73,0x99,
0xfc,0x6,0x8e,0xec,0x90,0x0,0x8e,0x27,0xd6,0x3f,0x52,0xab,0x3a,0x42,0xbe,0xca,
0x23,0x35,0xca,0xf9,0x1a,0xe5,0xe1,0x1a,0xe5,0x4c,0x8d,0xe6,0x7a,0xad,0xe1,0xbc,
0xd8,0x34,0x2e,0x33,0xd,0x4b,0xcd,0xfd,0x84,0x81,0xba,0x43,0x85,0x31,0xcf,0x7e,
0x2f,0x7b,0x64,0x33,0x8e,0x1b,0xb1,0xd2,0x33,0xa8,0xf5,0x50,0xa,0x80,0x4,0x52,
0x8,0x91,0xa2,0x28,0x35,0x69,0xa7,0xf3,0xdd,0x9d,0x5d,0xef,0x46,0xf5,0xee,0x4a,
0xe9,0x8f,0x62,0xe,0x26,0x17,0xe,0x67,0x97,0x8e,0xe4,0xf1,0x47,0x39,0x95,0xc3,
0x9c,0xaa,0xa1,0xe2,0xaa,0xc1,0x62,0xe2,0xfe,0x3e,0xe,0xbf,0x97,0xd,0x55,0xf4,
0x40,0x45,0x50,0xf9,0x86,0xa,0xcb,0x7b,0x29,0xcd,0x14,0x56,0x3d,0x29,0x20,0x3a,
0xc4,0xae,0xea,0xe6,0x54,0x81,0x81,0x26,0x4e,0x55,0x3d,0x4e,0x19,0x71,0x2a,0x3d,
0x6c,0x34,0x3,0xa5,0xe6,0xdc,0x42,0x5d,0x26,0x61,0x40,0x70,0xe0,0x0,0x6f,0xfb,
0x2e,0xde,0xbb,0x3b,0x82,0x3f,0xde,0x7b,0xf2,0x3b,0x7,0x9f,0x7c,0x7d,0x21,0x81,
0xf0,0x0,0x2b,0x3f,0xfb,0x2d,0x9c,0x61,0x89,0xfa,0xf4,0xbb,0xd1,0xa7,0xfe,0x3a,
0x1a,0xfe,0x3e,0xf2,0xb7,0x51,0x33,0xff,0x18,0xb5,0xf4,0x37,0x51,0x67,0xff,0x2a,
0xea,0xe3,0xef,0x46,0xdd,0xf9,0x93,0xa8,0xa7,0xff,0xeb,0xa5,0xe3,0x37,0x6a,0xaa,
0x67,0xbf,0x97,0xfc,0xe9,0x3f,0xb1,0x66,0xb7,0x14,0xfb,0xd2,0xb9,0x5a,0x66,0x89,
0x1a,0x77,0x15,0xb2,0x8b,0x14,0x99,0x79,0x8a,0x54,0x96,0x32,0x29,0x5b,0x19,0xbf,
0x9,0xee,0xa7,0x2b,0x1f,0x62,0xfd,0xcf,0x96,0x4e,0x7e,0xa,0x2d,0x42,0x6b,0x9f,
0x2e,0x40,0x27,0x3e,0x3d,0x7a,0xfc,0xb3,0x23,0xc7,0x3f,0x27,0x82,0xf5,0xc9,0x8f,
0x4f,0x8f,0x1c,0xff,0x68,0xfe,0xc4,0x95,0x23,0x6b,0x97,0x8e,0xae,0x9d,0x3b,0xb2,
0x76,0xe6,0x8,0x0,0x38,0x79,0x76,0x7e,0x7e,0x69,0xa4,0x6f,0xac,0xd1,0xd3,0xac,
0x93,0x39,0x2a,0xca,0xf0,0xdf,0xa4,0xc9,0x62,0x6b,0xd2,0xf3,0xd,0xc9,0xb9,0xfa,
0x44,0x96,0x2e,0x9e,0x69,0x88,0x63,0x58,0x62,0xb3,0x9d,0x31,0xc,0x6b,0x2c,0xcb,
0x1e,0x9f,0xe3,0x4a,0xcc,0xf3,0x24,0xe7,0x7a,0x93,0xf2,0x7c,0xc9,0xa4,0x76,0xf,
0x26,0xe7,0x85,0x92,0xf3,0x10,0xdd,0xc3,0xc9,0xb9,0x2f,0xed,0xde,0x92,0x94,0xd3,
0x9a,0xc8,0x6a,0x83,0x12,0x98,0xed,0xf1,0x8c,0x8e,0xf8,0xec,0x8e,0xb8,0xec,0xce,
0xd8,0x2c,0xa8,0x2b,0x26,0x93,0x52,0x46,0x57,0x74,0x7a,0xef,0xc1,0xd4,0x89,0x3,
0x29,0xb,0x11,0xc9,0x67,0xf6,0x25,0x7f,0xb2,0x2f,0xe5,0xce,0xfe,0xb4,0x67,0x7,
0x60,0xf7,0xac,0xf5,0x98,0xdc,0xf5,0xc4,0xa2,0xf5,0xb4,0xe2,0xf5,0xec,0xb2,0xf5,
0x1c,0xfe,0x7a,0x41,0xcd,0xe3,0x92,0xda,0x9b,0xa5,0xa2,0x8f,0x79,0x92,0x33,0x7c,
0xf9,0x62,0xb5,0x72,0x4a,0xa8,0x1c,0x14,0x69,0x6,0xeb,0xc,0x43,0xa,0xf3,0x10,
0xee,0xe0,0x6a,0x1d,0x98,0x4f,0x38,0x68,0xf0,0xc,0x63,0x1d,0x93,0xac,0xe8,0x63,
0x6f,0x2b,0x40,0x36,0x7a,0xf1,0xcc,0x35,0xb5,0xef,0x4b,0x89,0xec,0x7c,0x91,0xa5,
0x4f,0x22,0x50,0x41,0xaa,0x7f,0x30,0xd0,0xb7,0x1,0x0,0x29,0x81,0xe0,0xfe,0x5e,
0x93,0xb3,0xd7,0xe8,0xc4,0x9a,0x6c,0x9f,0xc1,0xd1,0x6f,0x70,0xc,0xe8,0xed,0xd8,
0x8b,0x18,0xd6,0xdb,0x31,0xf6,0xe7,0x5,0x3,0xb6,0x9,0xed,0x6,0x3,0xe7,0xc0,
0x80,0xda,0x75,0x4d,0xeb,0xc1,0x6a,0x29,0x26,0x45,0xf7,0x18,0xdc,0x1d,0x7a,0x67,
0x93,0xd6,0x14,0x90,0xc9,0x6d,0x82,0x2a,0x73,0x51,0xea,0x45,0x24,0xdb,0xdf,0x62,
0xcd,0xbe,0x57,0xc1,0xc5,0xcd,0x1,0x5c,0xea,0x65,0x21,0xf0,0x83,0x1,0xec,0xe6,
0xe2,0x82,0xb,0x18,0x20,0x39,0x21,0x87,0x59,0xd5,0x54,0x22,0x3d,0x5c,0x85,0xc0,
0x4f,0xdc,0x7f,0xb4,0x56,0x79,0xb4,0x46,0x1,0x51,0xc,0x28,0xe,0xd7,0xa8,0x4e,
0xd6,0xe8,0xee,0xa,0x4d,0x33,0x52,0xd3,0xa8,0xd4,0x34,0x28,0x35,0xf5,0x49,0x4d,
0x3d,0xd2,0xa2,0x8b,0x5b,0x63,0x9e,0xfc,0x5e,0x81,0x2a,0x9,0x65,0xd5,0x37,0xa,
0xa1,0x64,0xea,0x52,0x3c,0x45,0x42,0x76,0xc2,0xf6,0xd0,0xdb,0xfb,0xbb,0xb6,0x25,
0xf4,0x46,0x64,0xf4,0xc5,0xe5,0xe,0xa4,0x15,0xf,0xb1,0x90,0x1,0xaa,0x46,0x8a,
0x1,0x40,0xe5,0x40,0x71,0x25,0x71,0x3f,0x87,0xf,0xeb,0x77,0x53,0xea,0x2a,0x2a,
0xff,0x5a,0x85,0xbc,0x6e,0x4a,0x3d,0x5,0x15,0x8b,0x5,0x55,0xcf,0xb,0x2a,0x1f,
0x53,0xc,0x74,0x71,0xaa,0xda,0x38,0x55,0x1b,0xc,0xb0,0xc1,0x0,0x16,0x85,0x90,
0x7,0xa,0x75,0x19,0xc,0x79,0x22,0x61,0xa0,0x6c,0xfb,0xe,0xce,0xbb,0x9b,0xb,
0x5f,0x7b,0xb7,0xfc,0xe7,0x1f,0xf8,0x7f,0xb0,0x6b,0xfe,0xaf,0x22,0x3e,0xff,0x23,
0x9c,0xa1,0xf8,0x7f,0x1c,0xeb,0xfa,0xef,0xa7,0x1,0xbe,0x15,0xfb,0xe0,0xcf,0x93,
0xae,0xfc,0x63,0xc6,0xfc,0x1b,0xac,0xf6,0xfd,0x1c,0x7b,0x66,0xa9,0x8d,0x45,0xa2,
0xbe,0x86,0xc1,0x51,0x65,0x15,0x29,0x89,0xf5,0x11,0xf8,0x99,0xca,0xc4,0xc,0x55,
0x4c,0x8a,0x2a,0x72,0x13,0xdc,0x7f,0xe6,0x8b,0x95,0xd3,0x9f,0xaf,0x50,0xbe,0x5f,
0x5a,0xfb,0x84,0xb8,0xff,0xc4,0xc7,0xb,0x27,0x3e,0x59,0x38,0xfe,0xf1,0x11,0x0,
0x40,0x18,0xf8,0xf4,0xc8,0xb1,0x4f,0xe7,0x89,0x3e,0x99,0x3b,0xf6,0xf1,0xfc,0xb1,
0x2b,0xf3,0x27,0x2e,0x1d,0x39,0x7e,0x7e,0xfe,0xf8,0x99,0xf9,0x13,0xa7,0xe6,0x4f,
0x9e,0x3d,0xb2,0x7a,0x72,0x66,0x62,0xae,0x7,0xa3,0x10,0xcc,0xf5,0xb2,0x6a,0x6b,
0x51,0xb1,0x2e,0xab,0x48,0x9b,0x9e,0xaf,0x4b,0x81,0xfb,0x99,0x86,0x78,0x86,0x29,
0x36,0xcb,0x12,0x93,0xe9,0x8c,0xce,0x74,0x45,0x65,0x38,0xa3,0x32,0x5c,0x51,0x99,
0xde,0x68,0x9c,0x33,0x41,0x93,0x8a,0x8d,0x77,0x34,0xac,0xac,0xa6,0x4,0x16,0xa2,
0x7b,0x6b,0x2,0xbc,0xce,0x6a,0x4f,0x60,0x76,0x10,0xbb,0x33,0x3a,0xe3,0x19,0x5d,
0x71,0xd9,0x64,0xb5,0x21,0x36,0xb3,0x3b,0x86,0x56,0x46,0x5f,0x74,0xda,0x64,0x64,
0xea,0xc2,0x81,0x94,0x33,0x11,0xc9,0x9f,0xec,0x4f,0xa5,0xec,0x9e,0xf9,0x3c,0x2a,
0x67,0x3d,0xa1,0x70,0x3d,0x8d,0xbd,0x9e,0xc1,0x5d,0x67,0x90,0xd0,0xbe,0xce,0xae,
0x7d,0x52,0x22,0xba,0xcd,0xab,0xfb,0x94,0x2f,0x3b,0x2f,0x50,0xac,0xd6,0xaa,0xf,
0x4b,0x74,0x93,0x52,0xfd,0xa4,0xdc,0x38,0xa1,0xb4,0x4d,0x6b,0x1d,0xd3,0x6,0xf7,
0x8c,0xd9,0x3b,0x4b,0x4e,0xad,0x5,0x66,0xec,0x38,0xcd,0x1f,0x9a,0x76,0x86,0x70,
0xc9,0xb,0xb7,0xbd,0xa6,0xa8,0xfb,0x2e,0x13,0xe4,0xcc,0x33,0x39,0xf9,0x8c,0x16,
0x5,0x4d,0x39,0xce,0xbd,0xd,0x3b,0x3,0x83,0xd4,0xbe,0xef,0x80,0x9d,0x2c,0xfc,
0xbf,0x10,0x7a,0x5f,0xd2,0xfe,0xd2,0xd,0xc0,0x37,0x1,0xc0,0xd4,0x7f,0xa,0x0,
0x7b,0xbf,0xde,0x3e,0xa0,0xb3,0x63,0xea,0xdb,0xb0,0xde,0x36,0xa2,0xb5,0x8d,0x6a,
0x6d,0xe3,0x94,0x26,0x34,0xd6,0x49,0x8d,0x65,0x4a,0x6d,0xbb,0xa4,0x76,0xac,0xab,
0x9d,0x9f,0x69,0xdd,0x13,0x6,0xf7,0xa0,0xde,0xdd,0xa3,0x77,0xb5,0xeb,0x6c,0x8d,
0x6a,0x53,0x40,0x2e,0xb3,0x55,0x62,0x7,0x23,0xf9,0xea,0xff,0xc5,0xe6,0x20,0x26,
0x1a,0xf0,0xb9,0xb8,0x41,0x46,0x18,0x40,0x3,0x0,0xc,0x8,0x3,0x19,0x59,0xb4,
0xa,0xf3,0x59,0x55,0xed,0x25,0xd2,0xb9,0x2a,0xe2,0xfe,0x5,0x5a,0x35,0x8a,0x85,
0x1a,0x42,0xc2,0x7c,0xb5,0x72,0xae,0x5a,0xfd,0xa0,0xda,0x70,0x52,0x62,0x9c,0xac,
0x33,0x8e,0xd4,0x19,0x7,0xa4,0xc6,0x3e,0xa9,0x7a,0x50,0x90,0x7c,0xef,0xaf,0x12,
0x3f,0xfd,0x3b,0x36,0x97,0x89,0x25,0x51,0x1c,0x10,0xa2,0xfb,0x60,0x5a,0xb8,0x5,
0xf,0xc,0x92,0x8a,0xa2,0x77,0xb5,0xbc,0x17,0xd5,0xb5,0x2b,0xa5,0x37,0x8a,0xd9,
0x9f,0x5c,0x34,0x98,0x5d,0x3a,0x94,0x47,0x67,0x80,0xd,0x0,0x7a,0x38,0x7c,0x62,
0x7d,0x76,0x45,0x27,0xbb,0xbc,0xb3,0x88,0x52,0x21,0x6f,0x43,0x5,0xbc,0xce,0x2,
0x5e,0x57,0x41,0x59,0x57,0x41,0xf9,0x5a,0x41,0xe5,0x3a,0xc5,0xc0,0x61,0x8a,0x1,
0xbc,0x91,0xd5,0xc4,0xae,0x6a,0x60,0x57,0x6,0xd8,0x95,0xde,0xa2,0x72,0x67,0x1,
0x18,0x28,0xd2,0x67,0x32,0x95,0x49,0x29,0xa2,0x28,0x30,0xb0,0x93,0xb3,0x79,0x4b,
0xc1,0xeb,0xef,0xe4,0xff,0xf2,0xad,0xfc,0x5f,0xbc,0x55,0xf8,0xf3,0x77,0x78,0x3f,
0x7b,0xcf,0xf8,0x93,0xf,0x2,0xff,0x77,0xe7,0xe0,0x3f,0xec,0x9b,0xfb,0x87,0x3,
0x4b,0x7f,0x7f,0xf0,0xf8,0x3f,0x44,0x9f,0xfa,0xfb,0xd8,0x53,0xff,0x94,0x70,0xec,
0x27,0xc9,0x4b,0x3f,0x4f,0x3d,0xf4,0x5a,0x66,0xdf,0xfb,0xac,0x70,0x54,0xbe,0x35,
0xb9,0x40,0x99,0x5e,0xa8,0xcc,0x64,0xab,0xb3,0x8a,0x75,0xc,0x8e,0x36,0x9b,0x6d,
0xcc,0x2a,0x54,0x65,0xe4,0x2b,0xd3,0x73,0x15,0x29,0xb0,0x7e,0x96,0x3c,0x3e,0x43,
0x11,0x93,0xaa,0x3c,0x98,0xa0,0xda,0x1f,0xdb,0xb2,0x6b,0x13,0xe9,0x7a,0x3f,0x5f,
0x26,0x81,0xff,0x93,0xa5,0xb5,0x8f,0x17,0xa1,0x13,0x1f,0x2d,0xac,0x1,0x80,0x8f,
0x17,0x8e,0x7f,0x74,0x94,0xc6,0x0,0xa6,0xc7,0x77,0xf5,0xa3,0xb9,0xe3,0x1f,0x1d,
0x39,0x7e,0xf5,0xc8,0xb1,0x4b,0xf3,0xc7,0xce,0xcf,0x1d,0x3b,0x33,0xb7,0x7a,0x6a,
0xee,0xf8,0xa9,0x79,0xe4,0x81,0x23,0xc7,0xc6,0xfa,0xa7,0x9b,0x3,0x3d,0x16,0x85,
0xbf,0xaa,0xd4,0xcc,0x2a,0x34,0xa6,0xe5,0x1b,0x53,0x72,0x4c,0x89,0xc,0x4b,0x5c,
0xb6,0x2d,0x6,0xab,0x90,0xf0,0x7d,0x7a,0xf0,0x60,0x9a,0x2f,0x32,0xcd,0x1f,0x99,
0x16,0x8c,0x4c,0xaf,0x3f,0x98,0x11,0x8e,0xce,0x6c,0x8a,0xc9,0x6a,0x89,0xcd,0x6e,
0x8b,0xcb,0x26,0xc5,0xc,0xa2,0x7b,0x5c,0x56,0x57,0x2c,0xec,0x4e,0x8b,0xb6,0x7b,
0xc6,0x64,0x54,0xea,0x22,0xb1,0x7b,0xea,0x27,0x11,0xa9,0x77,0x22,0xd2,0x9f,0x1e,
0xc8,0x7e,0x1e,0x3,0xbb,0x17,0xac,0xa7,0x96,0xac,0x33,0x50,0xc9,0x8,0xd6,0xd9,
0xd5,0xeb,0x1c,0xd1,0x93,0x52,0xc9,0xed,0x72,0xe9,0xe7,0x95,0x8a,0x8b,0xd5,0xea,
0x13,0x22,0xfd,0x82,0x4c,0x3f,0x2b,0x37,0xcd,0xaa,0x6c,0x87,0x75,0xf6,0xc3,0x7a,
0xd7,0x9c,0xd1,0x3b,0x6f,0xf1,0x1f,0xb1,0x85,0x16,0x9c,0xd,0xb,0xee,0xf0,0x82,
0xa7,0x69,0x11,0xa3,0xdd,0x7c,0x4d,0x47,0x21,0x7f,0xd3,0x11,0x4c,0xbc,0xf2,0x37,
0xcd,0xf9,0x1a,0xf,0xf9,0x1a,0x67,0xbd,0x50,0xc3,0x94,0x27,0x3c,0xe5,0x69,0x98,
0xf4,0xd4,0x4f,0xb8,0x43,0x63,0xf4,0xc9,0x67,0x57,0x70,0x84,0x9c,0x7e,0x43,0x42,
0xf0,0xf,0xd9,0xb1,0xe7,0xe5,0x1f,0xb4,0xfb,0x6,0x6c,0x58,0xfb,0xc7,0xba,0x27,
0x0,0x20,0xa5,0x3f,0x55,0xfc,0xe0,0xc7,0x46,0x6,0xe8,0x35,0x3a,0x7a,0xd,0x8e,
0x3e,0x4c,0xbd,0xd5,0xdb,0xfb,0x75,0x36,0x74,0x3b,0x98,0xfa,0x36,0xa4,0xb5,0x8e,
0x68,0xad,0xa3,0x5a,0xeb,0x98,0xc6,0x4a,0x0,0x50,0x43,0x84,0x81,0x8f,0xd4,0xf6,
0x75,0x95,0xf3,0x63,0xad,0x6b,0x5c,0xef,0x1a,0xd4,0xbb,0x7a,0x74,0x4e,0x30,0xd0,
0xa4,0xd6,0xfb,0x25,0x52,0x1b,0xbf,0xdc,0x9e,0x93,0xf4,0x39,0x8e,0x3f,0xfd,0x76,
0xfe,0xe0,0xee,0xf2,0xe2,0x8d,0xcd,0x1,0xba,0x10,0x2,0x3,0xac,0x74,0x28,0x3,
0x4b,0x43,0x85,0x85,0x2c,0x41,0x27,0x57,0x76,0xa4,0x8a,0xf8,0x7e,0xb1,0x56,0xb1,
0x58,0xa3,0x58,0xac,0xc6,0x6f,0xc5,0x91,0x6a,0xc5,0x5c,0xb5,0xea,0x4a,0x8d,0xf6,
0x4e,0xad,0x61,0xb6,0xce,0x38,0x5e,0x67,0x1c,0xae,0x33,0xf4,0xd7,0x19,0x7a,0x25,
0x55,0x47,0xd3,0xf1,0x1f,0x9b,0xb6,0xf8,0x73,0x32,0xf,0x2b,0x23,0x13,0xdd,0x30,
0x4c,0x4f,0xdf,0x8e,0xa7,0x27,0x44,0xa0,0x16,0x8a,0x13,0x1c,0xd8,0xd7,0xf6,0x41,
0x5c,0xd7,0xfe,0xf4,0xde,0xd8,0x9c,0xfe,0x54,0xce,0x20,0xb3,0x7c,0xa8,0xb0,0xf2,
0x7f,0x4,0xa0,0xa3,0xa8,0x1c,0x6a,0x2f,0xe2,0xb5,0x17,0x12,0x75,0x14,0x96,0x75,
0x14,0x10,0x75,0xe6,0x43,0xe5,0xa7,0xf3,0xf9,0xeb,0xf9,0xfc,0xa7,0xf9,0x95,0xcb,
0x45,0x95,0x5d,0xec,0xca,0x76,0x76,0x65,0xb,0xbb,0x32,0x8c,0x93,0xa7,0x45,0x7c,
0x5f,0x51,0xb9,0x2b,0x9f,0x6b,0xcd,0x29,0x34,0x64,0xb2,0xd4,0xc9,0xe9,0xd2,0x98,
0x18,0xc1,0x9e,0x5d,0x25,0x60,0xe0,0x8d,0xb7,0xf3,0x7e,0xf1,0x56,0xde,0xcf,0xdf,
0x24,0x7a,0x5,0x7a,0x3b,0xff,0x17,0xef,0x15,0xbe,0xf6,0x1,0xe7,0xcd,0xdd,0x25,
0xef,0x45,0x94,0x7d,0x18,0xc3,0xdf,0x93,0x50,0x15,0x91,0x56,0x13,0x93,0x21,0x8c,
0xcb,0x12,0xc6,0x33,0x24,0x49,0xb9,0xf2,0x94,0x3c,0x55,0x6a,0xbe,0x3a,0xd,0xdf,
0x3c,0x25,0x82,0x7d,0xa,0x4b,0x9b,0xcc,0x50,0x24,0xc2,0xf7,0xe9,0xb2,0x98,0x54,
0xf9,0xc1,0x24,0xc5,0x81,0x4,0xe5,0xbe,0x18,0xf5,0xee,0x48,0xc7,0x87,0x7b,0x3e,
0x7d,0x7b,0xd3,0xa9,0xcf,0x97,0x4f,0xbd,0x70,0xff,0x49,0xb8,0xff,0xea,0xd1,0xe3,
0xd0,0x95,0x23,0xf4,0x8f,0x63,0x57,0xe7,0x57,0xaf,0xcc,0xe3,0xb,0xad,0x5c,0x3e,
0xbc,0x7a,0x69,0x6e,0xf5,0xe2,0xe1,0xd5,0xf3,0x73,0xab,0x67,0xe7,0x56,0x4f,0x3,
0x80,0xc3,0x48,0x2,0xab,0xe7,0xe,0xcd,0xac,0xe,0xb4,0x4f,0x6,0x1d,0xdd,0x9a,
0xda,0x40,0x49,0x91,0x3d,0x23,0xdf,0x9e,0x92,0xe3,0x48,0x64,0xb8,0xe2,0xb2,0xdc,
0x31,0x19,0xde,0xa8,0x34,0xff,0xc1,0xd4,0x50,0x64,0x4a,0xd3,0x81,0x94,0x86,0x88,
0xe4,0x70,0x44,0x4a,0x53,0x44,0x6a,0xb,0x69,0x4f,0xd3,0xdb,0xa3,0x32,0x3a,0xa2,
0x5f,0x14,0x33,0x74,0x74,0x3f,0x88,0xe8,0x9e,0x7a,0xe6,0x0,0xec,0x9e,0x76,0x27,
0x22,0xe3,0xe9,0x41,0xca,0xee,0x89,0x88,0xee,0x1c,0x5c,0x6c,0x5b,0xcf,0xa9,0x5c,
0x2f,0xac,0x5d,0x2f,0xa9,0x7b,0x5a,0x21,0xbb,0x53,0xa5,0xf8,0xbc,0x5a,0x7d,0x49,
0xa4,0x3d,0x59,0xa7,0x5f,0x94,0x99,0xe7,0x54,0x96,0x39,0x8d,0x6d,0x4e,0xeb,0x3e,
0x6a,0xf2,0x2c,0x98,0x43,0xcb,0xce,0xfa,0x15,0x57,0xc3,0x8a,0x3b,0xbc,0xe2,0x6d,
0x5a,0xf5,0xb5,0x1e,0xb,0x42,0x6d,0xc7,0x42,0x50,0xeb,0x4a,0xb0,0x6d,0x25,0xd4,
0xba,0x1c,0x84,0x5a,0x16,0x3,0xcd,0xb,0xfe,0x66,0xc2,0x80,0xaf,0x69,0xde,0xd7,
0x38,0x87,0x79,0x27,0x98,0xf8,0xe0,0x6d,0x98,0xc1,0xb5,0x77,0x72,0xf1,0xb7,0x7e,
0xd2,0x1d,0xc2,0xc5,0x97,0x31,0x67,0x90,0x3a,0xfd,0xf,0x6,0x70,0xf6,0x93,0xb6,
0x3e,0xd9,0xf7,0x1d,0xa0,0x76,0xbe,0xc8,0xc2,0x3f,0xf9,0xd2,0xed,0x2f,0x44,0xea,
0x1f,0x84,0x7f,0x52,0x5,0x11,0x0,0xec,0x7d,0x3a,0x1b,0x84,0xa1,0x9f,0x3,0x5a,
0x2b,0x18,0x18,0x6,0x3,0x1a,0xcb,0xa8,0xc6,0x32,0xa6,0xb6,0x4c,0x10,0x99,0x27,
0x55,0xe6,0x69,0x95,0xf5,0x33,0x95,0x7d,0x5d,0xe9,0xb8,0xac,0x71,0x8d,0xe9,0xc0,
0x80,0xb3,0x47,0xe7,0x68,0xc7,0x90,0x74,0xa5,0xd6,0x2f,0x96,0x58,0xcb,0xcb,0x9c,
0x8c,0x84,0x6b,0x7f,0x83,0x7d,0xe2,0xfc,0xce,0xfd,0x65,0x45,0x6c,0x5c,0xa5,0xc7,
0x9e,0xc0,0xb,0x0,0x32,0x0,0x0,0x33,0x3d,0x3,0xe5,0x50,0x61,0x1,0xb3,0xba,
0x97,0x2b,0x3b,0x5a,0x45,0xb9,0xbf,0x46,0xb1,0x4,0x55,0xcb,0x17,0xaa,0xe5,0x60,
0x60,0xa9,0x5a,0xf3,0xa4,0x5a,0x7f,0x5a,0x64,0x98,0x92,0x18,0xc6,0x24,0x86,0x21,
0x89,0xa1,0x4f,0xa2,0xeb,0x11,0xe6,0x5c,0xc5,0x72,0xd3,0x6f,0x31,0xda,0x3f,0xc4,
0x2a,0x13,0xa,0x21,0x54,0x3e,0xa9,0x71,0x94,0xfb,0x29,0x0,0xf0,0x25,0xc,0x88,
0x22,0x22,0xdb,0x77,0x24,0x75,0x1f,0xcc,0xea,0x4d,0x2c,0xe8,0xcf,0xe4,0xe,0xe4,
0x56,0xc,0xb2,0x2b,0x7,0xe8,0x6,0x80,0x43,0x15,0x3f,0x54,0x6,0xa0,0xdd,0xdf,
0x56,0x48,0xab,0xac,0xad,0x80,0xa8,0x1d,0xca,0x2f,0x85,0x3a,0xf2,0xcb,0x4f,0x81,
0x81,0x3c,0xfe,0xf3,0x3c,0xfe,0xd9,0xc2,0xca,0x1e,0x36,0xbf,0xa3,0x88,0xdf,0x5a,
0xc4,0x6f,0x2a,0xe2,0x37,0x14,0x56,0x4,0xa,0x79,0x9e,0xfc,0x52,0x7b,0x6e,0xa1,
0x29,0x33,0x57,0x97,0x9a,0xa1,0x88,0x8d,0x17,0xed,0x8b,0xa8,0xda,0xf6,0x61,0xe9,
0xdb,0x9b,0xd9,0xaf,0xbd,0x5d,0x40,0x61,0x90,0xfb,0xca,0x6f,0x28,0xbd,0x9d,0xf7,
0xcb,0x2d,0x85,0xaf,0x7f,0xc8,0x79,0x6b,0x17,0xf7,0xbd,0x88,0xf2,0x6d,0x71,0xd5,
0x7b,0x93,0xc5,0x91,0x69,0x75,0x51,0x20,0x27,0x53,0x16,0x9b,0x1,0x49,0x63,0xf0,
0x4d,0x93,0x46,0xa7,0xc9,0xa2,0x52,0x55,0x51,0x29,0xf2,0xc8,0x4,0xd9,0xbe,0x38,
0xf9,0xde,0x68,0xc5,0xae,0x83,0xaa,0x1d,0x11,0xea,0x6d,0x7b,0x9d,0x5b,0x76,0x5e,
0xfb,0xf5,0x7b,0x7d,0xbf,0xda,0x74,0xea,0xb3,0x65,0xc4,0x7e,0x58,0x7f,0xed,0xa3,
0x85,0x13,0x57,0x17,0x4e,0x5c,0x39,0xa,0x1d,0xbf,0x72,0xf4,0xd8,0xe5,0xf9,0x63,
0x97,0x8f,0xe0,0xbb,0x72,0xe9,0xf0,0xea,0xe5,0xb9,0x95,0x4b,0x44,0xab,0x17,0xe7,
0x96,0xcf,0x1f,0x5a,0x39,0x77,0x78,0xe5,0xcc,0xe1,0xe5,0xd3,0x87,0xf0,0x5d,0x3d,
0x7f,0x78,0xe1,0xec,0xc4,0xf0,0x52,0x7b,0xc3,0x84,0x43,0xdb,0x29,0xc2,0x8e,0x37,
0x8e,0x8f,0xb3,0x7c,0x89,0xc,0x7f,0x5c,0x66,0x20,0x3a,0x3d,0x74,0x30,0xb5,0x3e,
0x32,0x25,0x1c,0x91,0xdc,0x12,0x91,0xd4,0xb6,0x3f,0xb1,0x79,0x5f,0x42,0xcb,0x5e,
0xc,0x85,0xc6,0xb2,0x4c,0x4a,0xf7,0x1,0xb4,0xaa,0x29,0x47,0x23,0xe8,0xe8,0x9e,
0x76,0x27,0x12,0x76,0x67,0x3c,0x8f,0x45,0xe1,0x4e,0x55,0x32,0xcc,0x8a,0xf5,0x3c,
0x84,0x76,0xe1,0x3a,0x57,0xf2,0x94,0x27,0xbf,0x53,0xa5,0xfa,0xb2,0x56,0x7b,0x45,
0xac,0x3f,0x2d,0x35,0x2e,0x2b,0xcc,0xf3,0x6a,0xfb,0x11,0x9d,0x6b,0xc1,0xe8,0x5d,
0xb4,0xf8,0x97,0x6c,0xc1,0x15,0x8c,0x63,0x70,0x35,0x9f,0xf0,0xb7,0x9c,0x8,0xb4,
0x9e,0x8,0xb6,0xaf,0xd5,0xb7,0x9d,0xa8,0xc7,0xb7,0x63,0xad,0xa1,0xfd,0x44,0x43,
0x7,0x51,0xb8,0xe3,0x78,0x3,0xdc,0xdf,0x7e,0xac,0xbe,0x6d,0x95,0x30,0xd0,0xa,
0x6,0x96,0x82,0x2d,0x4b,0x41,0x2,0xc0,0x2,0xa6,0x1d,0x42,0xbe,0xc6,0x79,0x6f,
0x78,0xce,0x1b,0x3e,0xec,0x9,0x1f,0xf2,0x84,0x67,0x29,0x0,0xa6,0x0,0x80,0x13,
0xe5,0xbe,0xbb,0xd5,0x62,0xf5,0xeb,0x4c,0x56,0x95,0x56,0x2d,0x53,0x8a,0x25,0x6a,
0xb5,0x14,0xee,0xf7,0xe1,0xe4,0xcf,0xa0,0xc5,0x3,0x61,0x4f,0x9a,0x5e,0xfe,0xef,
0x37,0x53,0xa5,0x3f,0x91,0xa3,0x17,0x23,0xff,0x69,0x0,0x90,0x1,0xf4,0x36,0xec,
0x66,0x0,0x80,0x1,0xad,0x65,0x50,0x63,0xc1,0xcc,0x9f,0x11,0xb5,0x65,0x54,0x6d,
0x19,0x57,0x9b,0x27,0x54,0x4,0x0,0xc2,0x80,0xd2,0x7a,0x4d,0x69,0x7b,0xae,0x74,
0x9c,0xd7,0x38,0xc7,0xb4,0x8e,0x1,0xad,0xa3,0x47,0x6b,0x6f,0x57,0x9b,0x1b,0x15,
0x1a,0x9f,0x50,0x68,0x2d,0xe3,0x7a,0x33,0xe3,0x6f,0xfc,0x1f,0xc,0xdb,0x29,0x6c,
0x89,0x24,0xc,0xe4,0x80,0x1,0x54,0x41,0xa4,0xfe,0x61,0xa6,0x65,0x30,0xd2,0xd2,
0xe9,0x8a,0x28,0xbf,0x88,0x51,0x33,0x50,0x2a,0x5d,0xa8,0x82,0xe3,0x15,0xcb,0x35,
0x72,0x0,0x0,0x2d,0xa,0xe4,0x47,0x4,0xca,0x4f,0x4,0x9a,0xbb,0x35,0xfa,0x39,
0x89,0x61,0x52,0xa2,0x1f,0x91,0xe8,0x7,0x24,0xfa,0x3e,0xb1,0x7c,0x90,0x9f,0x7a,
0xeb,0x9f,0x62,0x1e,0xff,0x5e,0xae,0x2e,0x96,0x3e,0x1f,0x41,0xf7,0xc1,0xd4,0x68,
0x20,0xc,0x47,0x21,0x24,0x80,0x81,0x4,0x71,0x64,0x4c,0xfb,0x9e,0xb4,0xee,0x18,
0x6c,0xf7,0x62,0xcf,0xb,0xeb,0xfd,0xfc,0x41,0xac,0xff,0x90,0xe,0x98,0x6,0x80,
0x14,0x3f,0x2f,0xdd,0xdf,0x5a,0xc8,0x6b,0x2d,0x2c,0x6b,0x2d,0xa0,0x94,0x5f,0xa,
0xb5,0xd1,0xca,0xe3,0xad,0xe4,0x55,0x3c,0xcb,0xc3,0xff,0xe7,0x56,0x5c,0xcb,0xe7,
0x8f,0x15,0xf1,0x3b,0x8b,0xf8,0x6d,0x45,0x15,0x2d,0x85,0x15,0x8d,0x85,0xe5,0xa1,
0x2,0x9e,0x2f,0x9f,0xeb,0xca,0xc1,0xe8,0xab,0x3c,0x63,0x5a,0xb6,0x26,0x21,0x59,
0x16,0x19,0x25,0xdc,0xb9,0x57,0xb0,0xf5,0xc3,0x8a,0x37,0xdf,0xe7,0xbd,0xb1,0xb5,
0xec,0x8d,0x2d,0x65,0xaf,0x6f,0xa5,0x84,0x3f,0x6e,0x2b,0x7f,0xf3,0xc3,0x8a,0xb7,
0x76,0x55,0x6e,0xc6,0x3f,0x10,0x59,0xf3,0x61,0x54,0xed,0xce,0x58,0xd1,0xee,0x18,
0xd1,0xee,0x58,0xf1,0x9e,0x38,0x72,0xd4,0x65,0x4f,0x8c,0x74,0x77,0x8c,0x74,0x57,
0x94,0x72,0xe7,0x41,0xc5,0x76,0x6c,0xf9,0xef,0x57,0x7e,0xb0,0x57,0xbd,0x65,0xb7,
0xf6,0xbd,0x1d,0xd,0x6f,0x6d,0xbb,0xf5,0xea,0xe6,0xd3,0x3f,0x7b,0x43,0xfd,0xd3,
0x4d,0x8,0xff,0x6b,0x1f,0x91,0xc0,0x4f,0x59,0x7f,0xe1,0xd8,0x25,0x54,0x38,0xb4,
0xe6,0x57,0x2f,0xcd,0x1f,0xbf,0x7c,0x4,0x51,0x7f,0xe5,0x22,0x74,0x78,0xe5,0xc2,
0x61,0xe2,0xfe,0xf3,0x87,0x97,0xce,0xce,0x2e,0x9f,0x3b,0x44,0xbe,0xe7,0x67,0x57,
0xaf,0x1c,0x9a,0x39,0x3d,0xd8,0xbd,0x18,0x46,0xfd,0x2a,0xea,0xe4,0x15,0x36,0x64,
0x30,0xeb,0x13,0xb2,0x1a,0xe2,0x50,0xe1,0xa4,0x86,0x23,0x53,0x1a,0xf,0x24,0x35,
0xed,0x4f,0x6a,0xde,0x9f,0xd0,0xbd,0x37,0x7e,0x64,0x4f,0xfc,0xdc,0xee,0x84,0x93,
0x7b,0x92,0x3e,0xda,0x9b,0x7a,0x1b,0xc5,0xc,0xec,0x1e,0x97,0xbf,0x9e,0xcc,0x5e,
0xcf,0x2c,0x5d,0x67,0x55,0x61,0xc7,0x4,0x95,0xcc,0x7a,0xa9,0xf4,0x29,0x5f,0x71,
0xb7,0x5a,0xfd,0xa5,0x50,0x77,0xb5,0xce,0x74,0x46,0x61,0x59,0x51,0xdb,0x17,0x74,
0xae,0x45,0x93,0x67,0xd1,0xe2,0x5b,0xb2,0x86,0x56,0x9d,0xf5,0xab,0xee,0xa6,0xe3,
0xbe,0x96,0xb5,0x60,0xeb,0x5a,0xb0,0xf3,0x54,0xb8,0xeb,0x74,0x63,0xcf,0x99,0xe6,
0x6e,0xc,0x78,0xc3,0x90,0xc3,0x33,0x2d,0xdd,0xa7,0xc9,0xef,0xae,0x53,0x8d,0x9d,
0x98,0x75,0x75,0xaa,0xa9,0x73,0x2d,0xc,0x81,0x81,0xf6,0xe3,0xf5,0xb4,0x48,0x1e,
0xd8,0x60,0x20,0xd8,0xb2,0x1c,0x68,0x5e,0xf2,0x13,0x2d,0x52,0x0,0x1c,0x5,0x0,
0x9e,0xd0,0x84,0xb,0x2b,0x3c,0xce,0x46,0x1c,0xf0,0xd0,0x19,0xd,0x2a,0x8d,0x4c,
0x46,0xee,0x16,0x57,0x55,0xe3,0xe2,0x62,0x35,0xaf,0x2,0xd7,0x56,0x2a,0x4b,0x4a,
0x5,0x65,0xe5,0x4a,0x83,0x98,0x3a,0xf6,0x63,0xf5,0xc,0x81,0x1,0xb3,0x7b,0xd0,
0x4c,0x16,0xfe,0xb1,0xfc,0xdf,0x8f,0xf5,0x1f,0xa3,0x83,0xc4,0x7e,0x83,0xbd,0x97,
0xb8,0x9f,0x84,0x7f,0x22,0xad,0xb5,0x5f,0x6b,0xe9,0xd7,0x58,0x6,0x0,0x80,0xc6,
0x32,0xac,0x36,0x8f,0xa8,0xcd,0xa3,0x2a,0xf3,0xb8,0xa,0xc,0x98,0x26,0x94,0xe6,
0x49,0xa5,0x79,0x56,0x69,0xbd,0xa1,0xb0,0x3e,0x57,0xd8,0xcf,0x50,0xc,0xc,0x6a,
0xf0,0x62,0x80,0xad,0x5d,0x65,0xa,0xcb,0x94,0xde,0x6a,0xa1,0xb5,0x94,0x13,0x48,
0x89,0xbb,0xf3,0xe7,0x38,0x33,0x57,0x14,0x8c,0xc6,0xed,0x19,0x2c,0x8c,0xa2,0xf2,
0xa1,0xc3,0x3f,0x18,0x80,0xa8,0x72,0x28,0xb3,0xa0,0x88,0x21,0x18,0xe4,0x4a,0x17,
0xab,0xe4,0xcb,0xd5,0x1b,0x5a,0x12,0xc8,0x16,0x4,0xf2,0x15,0x81,0xea,0x89,0x40,
0x7b,0x4e,0xa4,0x9f,0x15,0xeb,0xc7,0xc5,0xfa,0x61,0x22,0xcd,0x40,0x6d,0xed,0x54,
0x7e,0xdc,0xe3,0x3f,0x8e,0xbb,0xfe,0x97,0x5,0x15,0x19,0x68,0xac,0x71,0x48,0x8e,
0x9e,0x92,0x42,0x63,0x40,0xb,0xcb,0xa3,0x49,0x8a,0xa8,0x84,0x8e,0x88,0xcc,0x9e,
0x84,0xbc,0xbe,0x8c,0xe2,0x1,0x56,0xf9,0x60,0x11,0x96,0x41,0xc9,0xea,0x27,0x9a,
0x60,0xf4,0xbe,0x0,0xa0,0x83,0xa,0xff,0x94,0xfb,0x79,0x2d,0x85,0x65,0x2d,0x5,
0x50,0x69,0x4b,0x3e,0x2d,0x6e,0x4b,0x1e,0xb7,0x95,0xa8,0x6c,0x26,0xaf,0xfc,0x51,
0x6e,0xf9,0x7a,0x6e,0xf9,0xe3,0xdc,0x8a,0xd5,0x82,0x8a,0xee,0xc2,0x8a,0xf6,0xc2,
0xf2,0xd6,0x82,0xf2,0xa6,0x82,0xf2,0x86,0x82,0xb2,0x60,0x1e,0xd7,0x97,0x83,0xc7,
0x80,0xf3,0x6d,0x19,0x2c,0x63,0x72,0xba,0x26,0x36,0x4e,0xb6,0xf7,0x80,0xe8,0xc3,
0x9d,0xd5,0xef,0x6e,0xab,0x7c,0x73,0x2b,0xff,0x8d,0x2d,0x15,0xaf,0x6d,0xa9,0x78,
0x7d,0x2b,0x2d,0x3e,0xf4,0xc6,0xfb,0x95,0xbf,0xfe,0x40,0xf0,0xeb,0xf,0xab,0xdf,
0xda,0x59,0xfb,0xee,0xae,0xda,0xcd,0xbb,0x45,0xef,0xed,0x11,0xbf,0xb7,0xa7,0x6e,
0xcb,0x6e,0xe9,0x7b,0xbb,0xe4,0x9b,0x77,0x29,0x37,0xef,0x54,0xbf,0xbb,0x43,0xf3,
0xf6,0x87,0xda,0xb7,0xb6,0x99,0x7e,0xb3,0x65,0xf6,0x17,0x9b,0x9f,0xfc,0xfb,0x5b,
0x97,0x7f,0xf2,0xb,0xc3,0xbf,0xfe,0x5c,0xfd,0xa3,0x4d,0xa4,0xf4,0xff,0x68,0x11,
0x21,0xff,0xf8,0xe5,0xa3,0xc7,0x2f,0x11,0x1d,0xbb,0x78,0xe4,0xd8,0xc5,0xf9,0xd5,
0xb,0xf3,0xf8,0xc2,0xf4,0x2b,0x17,0xe6,0x96,0x61,0x7d,0xca,0xfd,0x4,0x80,0xb,
0x87,0x97,0xce,0xcf,0x2e,0x12,0xcd,0x2c,0x5f,0x9e,0x5d,0xfd,0xe4,0xf0,0xc4,0x99,
0x5e,0x4c,0x4b,0x36,0x8f,0x2b,0x2a,0x3a,0xa,0x99,0x8d,0x89,0x59,0xe1,0xd8,0xf4,
0x96,0xe8,0x94,0xc1,0x3,0x49,0x87,0xf6,0x27,0x9e,0xd8,0x9b,0x7c,0x75,0x5f,0xda,
0xed,0x3,0xe9,0x4f,0x23,0x59,0xcf,0x13,0xf2,0xd6,0x93,0xa9,0x4a,0x26,0x17,0x95,
0xc,0xec,0x2e,0x59,0xe7,0xc9,0x9f,0x56,0xa9,0xef,0xa,0x35,0xd7,0x44,0xfa,0xab,
0x52,0xf3,0x59,0x95,0x75,0x55,0xe3,0x5c,0x34,0xba,0x17,0x4d,0xfe,0x65,0x7b,0x68,
0xc5,0x19,0x3e,0xe6,0x69,0x3a,0xe1,0x6f,0x3e,0x11,0xe8,0x3c,0x1d,0xee,0x3a,0xd3,
0x8,0xf5,0x9c,0x6d,0xee,0xc5,0x40,0xcf,0x73,0xad,0x7d,0xe7,0xda,0x7a,0x31,0xdf,
0x1c,0xc2,0x6f,0xea,0x47,0xf,0x65,0x7d,0xda,0xfd,0x1b,0x3a,0xd9,0x88,0x24,0x40,
0xe7,0x1,0xa8,0xed,0x78,0x3d,0xa9,0x85,0x56,0x89,0x5a,0x56,0x2,0x50,0xf3,0xb2,
0x3f,0x7c,0xd8,0x1b,0x1a,0x71,0xf9,0x3a,0x6c,0xae,0xa0,0xc9,0x6c,0xd1,0xe0,0x9a,
0x8d,0x4a,0x52,0x87,0x5b,0xf3,0xb8,0x44,0x5f,0x5b,0x51,0x59,0x53,0xce,0xaf,0x82,
0xe3,0xb9,0x65,0xf4,0x17,0xd6,0xaf,0xc0,0xfb,0xa7,0x78,0x7,0xbb,0xa4,0xb4,0x9a,
0x57,0xae,0xb5,0x4b,0xb1,0x64,0x4,0xb9,0x71,0xf8,0x67,0xc8,0xec,0x1a,0xa4,0x36,
0xbf,0x6,0x4c,0x58,0xfe,0x27,0x8b,0x3f,0x68,0x7f,0xa9,0xfa,0x87,0x66,0xc0,0x4a,
0x0,0xd0,0x59,0xfa,0x34,0x60,0xc0,0x3c,0xa0,0x36,0xf,0xaa,0xb0,0xf4,0x64,0x1e,
0x51,0x81,0x1,0xd3,0x98,0xa,0xa3,0x9,0x4c,0x93,0x94,0xe,0x29,0x2d,0x77,0x14,
0xd6,0x67,0xa,0xfb,0x9a,0xc6,0x31,0xa6,0xb5,0xf,0x6a,0xec,0x98,0x14,0xdd,0xae,
0x32,0x86,0xa5,0x4a,0x9c,0x66,0xb5,0x94,0x14,0xd5,0x27,0xc6,0xde,0xff,0x63,0x9c,
0x9d,0x66,0xbb,0x13,0xe8,0x4d,0x62,0x3a,0x3,0xd0,0xd6,0xa7,0x53,0x1,0x90,0x28,
0x2c,0x61,0xa,0xc6,0xb8,0xd2,0x25,0x9a,0x1,0x81,0xc,0x5a,0x12,0xc8,0x17,0x4,
0xca,0x4f,0x5,0xea,0x7b,0xd5,0xba,0x23,0x62,0xfd,0xb4,0x58,0x37,0x2a,0xd6,0xd,
0x8b,0x75,0x83,0x22,0x55,0x77,0x4d,0xd9,0x91,0x78,0x9c,0xd0,0x4c,0xba,0xfc,0x4f,
0x5,0x25,0xe4,0x3f,0x7,0xab,0xa2,0x74,0x33,0x40,0xe6,0x81,0x6e,0xc,0x8a,0x3,
0x3,0x89,0x49,0xf2,0xa8,0xe4,0xce,0x28,0x66,0x6f,0x72,0x41,0x7f,0x16,0xf6,0xc2,
0x50,0x8,0x61,0x13,0xa0,0x82,0x24,0x81,0x17,0x0,0xa0,0xf4,0xa7,0x18,0x20,0xee,
0x6f,0x2e,0x28,0x25,0xca,0xa7,0xc5,0x6d,0xce,0x23,0x2,0x6,0xd0,0x60,0x2e,0xef,
0x1a,0xc5,0x0,0x74,0x33,0xb7,0xfc,0x70,0x7e,0x79,0x47,0x1,0xf,0xb7,0x67,0x5b,
0xf2,0x79,0x4d,0xf9,0x65,0xd,0x79,0xa5,0xa1,0x5c,0x8c,0x45,0xc1,0x2b,0x60,0xb9,
0x8e,0xb4,0x6c,0x73,0x42,0xb2,0xee,0x60,0xac,0x72,0xcf,0xfe,0xba,0xf,0x76,0x8a,
0xdf,0xdd,0x56,0xfb,0xe6,0x96,0x9a,0xd7,0xdf,0xab,0x7e,0xed,0xbd,0x1a,0xa2,0x2d,
0xb5,0xaf,0x6d,0x11,0x52,0x12,0xbd,0xb6,0x45,0xfc,0xda,0x16,0xc9,0x6b,0x5b,0xeb,
0x5e,0xdf,0x2a,0x7d,0x7d,0xab,0xfc,0xf5,0xad,0xca,0xd7,0xb7,0xa8,0x5f,0xdf,0xaa,
0x7d,0x7d,0x8b,0xee,0xb5,0xf7,0x4c,0xbf,0xda,0x3c,0xf8,0xf3,0x77,0x6f,0xfc,0xdb,
0xdb,0xeb,0xff,0xfa,0xc6,0x99,0x1f,0xbe,0x62,0xfc,0xe1,0x2b,0xea,0x1f,0xfc,0x4c,
0xfd,0x83,0x4d,0xa4,0xf2,0x21,0xee,0x3f,0x2,0xeb,0x9f,0xb8,0xb4,0x40,0x3,0xb0,
0x72,0x1e,0xa5,0xce,0x61,0x4,0x7b,0xb8,0x7f,0x89,0xf8,0x7e,0xc3,0xfd,0x8b,0xe7,
0x66,0x16,0xcf,0x51,0xee,0xbf,0x30,0xb3,0x70,0x71,0x7a,0xf5,0xe3,0xb9,0xe5,0x4f,
0x67,0x71,0xa7,0xac,0xf9,0x94,0x57,0x7f,0x42,0x5a,0x72,0x8a,0x95,0x76,0xe5,0x60,
0xc6,0xad,0xa8,0xac,0x27,0x31,0x88,0xee,0xd8,0x5d,0x2a,0x5e,0xcf,0xa2,0xed,0x5e,
0xb3,0x5e,0x22,0x59,0x2f,0x57,0x3e,0xab,0xd6,0xdc,0x13,0xe9,0xae,0xd5,0x19,0x3f,
0x92,0x5b,0xce,0xaa,0xed,0xc7,0x74,0xae,0x25,0x93,0x77,0xc9,0x1a,0x58,0x76,0xd4,
0xaf,0xba,0x1a,0x8f,0x7b,0x5b,0xd6,0x2,0x1d,0xa7,0x1b,0x3a,0x4e,0x87,0xbb,0xcf,
0x34,0xf7,0x9e,0x6b,0x81,0xb9,0x7,0x2e,0xb4,0x53,0xea,0x18,0xbc,0xd8,0x39,0x78,
0xa1,0x3,0x3f,0x88,0xce,0x43,0xed,0xfd,0xe7,0xda,0xe0,0x7b,0x7c,0x9,0x12,0x67,
0x5a,0x90,0x7,0xba,0x28,0x0,0x36,0x32,0xc0,0xa9,0x30,0x92,0x0,0x44,0x1,0x50,
0xf,0x1,0x0,0x54,0x3b,0xe1,0x49,0x2f,0x8e,0xb2,0xb9,0xc3,0x16,0x4c,0xcf,0x32,
0xaa,0x55,0x1a,0xa9,0xc,0xd7,0x88,0xe9,0x39,0x11,0xc2,0x8a,0x2a,0x38,0x1e,0x61,
0x1e,0x37,0x74,0x11,0xe9,0x89,0xca,0xca,0xe1,0x7b,0xd8,0x1d,0xf7,0x54,0x88,0xfb,
0xf1,0xf0,0x23,0x79,0x4,0x9b,0x0,0x40,0xf2,0x0,0x8f,0x67,0xc,0x29,0x29,0x6,
0x8,0x0,0xe4,0xec,0x3,0xb6,0xbd,0x6,0x8d,0x64,0xe1,0x1f,0xcb,0xff,0x3,0x64,
0xfd,0xe7,0x45,0xf8,0xa7,0x0,0xe8,0xa3,0x32,0x0,0x0,0xe8,0x7,0x0,0x6a,0xd3,
0xa0,0xca,0x84,0xb9,0x57,0x23,0x2a,0xd3,0xa8,0xd2,0x38,0xa6,0x34,0x4e,0x28,0x8c,
0x93,0x94,0xe6,0x14,0x96,0x7b,0x72,0xcb,0x53,0xb9,0x7d,0x55,0x6d,0x1f,0xc5,0xa0,
0x5c,0xb5,0xad,0x47,0x6d,0x6d,0x53,0xea,0xc3,0x75,0x32,0x4f,0x95,0xc0,0x52,0x5c,
0xd8,0x12,0x1b,0xfb,0xf0,0xdb,0xb8,0x43,0xc3,0xb6,0x25,0xe3,0xd4,0x34,0x8e,0x45,
0xa0,0x19,0x80,0xe9,0x21,0x6c,0x69,0x31,0x52,0xd3,0x21,0xfc,0x2e,0xe0,0x32,0xab,
0xc7,0x4b,0xeb,0x96,0x2a,0x65,0x2b,0x24,0xf6,0xcb,0x96,0xab,0x64,0x8b,0x55,0xb2,
0xd5,0x2a,0xd5,0x93,0x2a,0xcd,0x95,0x5a,0xed,0x21,0x1c,0x26,0x15,0x69,0x47,0x44,
0xda,0x1,0x91,0xa6,0x47,0x28,0x6f,0xaf,0xca,0x3b,0xf3,0x1e,0x19,0xdf,0x70,0xfe,
0x5f,0xa,0x38,0x98,0x19,0x4a,0x6e,0xcc,0x80,0x81,0x97,0x63,0x12,0x81,0x41,0xa,
0x9a,0x63,0x9c,0x96,0xab,0x8d,0x4b,0xeb,0x88,0x65,0xf5,0xa4,0xb0,0xfb,0x99,0x65,
0xa4,0x10,0xa2,0xf6,0xbf,0xb0,0xf6,0x4f,0x25,0x1,0xd2,0xfb,0xa2,0xfa,0x7f,0x9,
0x40,0x53,0x7e,0x29,0x25,0x6e,0x53,0x1e,0xad,0x12,0xa8,0x39,0x97,0xa8,0x35,0xb7,
0xf4,0x58,0x2e,0xef,0x69,0xe,0x5a,0x3b,0xde,0xf3,0x1c,0xde,0x97,0x39,0xbc,0xf9,
0x3c,0xd2,0x2e,0xb7,0xe5,0x95,0x21,0x4b,0x34,0xe7,0x95,0x36,0xe6,0x96,0x34,0xb0,
0xf0,0x12,0x70,0x81,0x2f,0x23,0xc7,0x95,0x9a,0x69,0x8b,0x4b,0x36,0x1d,0x8c,0xd6,
0xef,0x8e,0xd0,0x7c,0xb8,0x5b,0xf9,0xde,0x87,0xf2,0xb7,0xb6,0xc8,0x5e,0x7f,0x4f,
0xfa,0xab,0xcd,0xb2,0x57,0x37,0xcb,0x29,0x29,0x5e,0xdd,0xac,0x7c,0x75,0xb3,0xea,
0xd5,0xcd,0xea,0x57,0x37,0x6b,0x5f,0xdd,0xac,0x7b,0x75,0xb3,0xfe,0xd5,0xcd,0x86,
0x57,0xdf,0xf5,0xfc,0xf2,0x9d,0xe9,0x9f,0xbe,0x7d,0xf3,0xc7,0x6f,0xad,0xff,0xf0,
0xcd,0x47,0x3f,0x7c,0x75,0xec,0x7,0x3f,0xd3,0xfe,0xe0,0xa7,0x9a,0x7f,0xf9,0xa9,
0x9a,0x68,0xd3,0xda,0xd5,0x85,0xaf,0xc3,0x3f,0x62,0xff,0x85,0x23,0x88,0xfd,0x68,
0x73,0x97,0x51,0xe8,0x9f,0x9f,0x83,0x96,0x50,0xed,0x40,0xe7,0xf,0x11,0xf7,0x9f,
0x5,0x0,0x33,0xb,0xe7,0xa6,0x1,0xc0,0xe2,0xa5,0x99,0xa5,0xdb,0x33,0x47,0x9f,
0x4c,0xc,0x3f,0xef,0x68,0x79,0xee,0xb3,0xad,0xab,0xeb,0xd6,0x2b,0xb0,0xdc,0x5e,
0xb9,0x5e,0x24,0x5a,0x2f,0x93,0xad,0x57,0x29,0x9f,0xd5,0x68,0xef,0x89,0xd,0xd7,
0xa4,0xe6,0x8f,0x54,0xd6,0xb3,0x1a,0xe7,0x31,0x83,0x67,0xc9,0xe2,0x5b,0xb4,0xd6,
0xaf,0xa0,0x86,0xf1,0x37,0x1f,0xf,0x74,0x9c,0x6a,0x40,0xd,0xd3,0x79,0xba,0x11,
0x46,0xef,0x3f,0xdf,0xd6,0x8f,0x97,0x8b,0xf0,0x92,0xe9,0xa5,0xee,0x11,0x4a,0xf8,
0x31,0x7c,0xb1,0x6b,0xf8,0x62,0xf7,0xd0,0x85,0xce,0x21,0xda,0xfd,0xe7,0xdb,0x69,
0xdf,0x93,0x7f,0xf8,0x5c,0x3b,0xfe,0x2d,0x62,0x7d,0x4a,0xc8,0xc,0xa4,0x10,0x3a,
0xd3,0x4,0x72,0x8,0x0,0xa7,0x49,0x9,0xd4,0xbe,0x52,0xdf,0x34,0x1b,0x68,0x18,
0xf2,0x4,0xda,0x9c,0x2e,0xaf,0xd9,0xa2,0xd7,0xea,0x15,0xe4,0x6e,0x31,0x4a,0x1a,
0x89,0xa0,0x46,0x58,0x51,0x29,0xe2,0x57,0xd5,0x96,0x93,0x30,0x4f,0x99,0x9e,0xf,
0xbb,0x57,0x97,0x95,0xbf,0xf4,0x3d,0xa2,0x3e,0x7c,0x4f,0xd7,0x3c,0x78,0xf3,0x14,
0x7f,0x84,0xef,0x69,0x95,0x73,0x4a,0x20,0xfc,0x7d,0xd,0xbf,0xc2,0xd2,0xa2,0x21,
0x0,0xc,0x9b,0xc9,0xc9,0x9f,0x61,0x93,0x13,0xc,0xc,0x91,0xcd,0x2f,0xfb,0x20,
0x59,0xfd,0xb4,0x61,0xfd,0xa7,0x7f,0xc3,0xfd,0xa4,0x4,0x22,0x19,0x40,0xd,0x0,
0x4c,0x3,0x2a,0x1a,0x0,0xd3,0xb0,0xd2,0x38,0xa2,0x34,0x8e,0x2a,0x8c,0xe3,0xa,
0x9a,0x1,0x3,0xd6,0x6a,0x8f,0xc8,0xcd,0xf,0x64,0x96,0x27,0x72,0xdb,0x92,0xca,
0x36,0xaa,0xb6,0xd,0xa8,0x6c,0xdd,0x6a,0x4b,0xbb,0x52,0x17,0x96,0xc8,0xbc,0x55,
0x55,0x16,0x76,0x5e,0x47,0x24,0x92,0x40,0xdc,0xbd,0x3f,0x2d,0x36,0x64,0xd0,0x9b,
0x3,0x1b,0x9d,0x40,0x6a,0x3a,0x9d,0x4,0x98,0x44,0x19,0x5,0xa5,0xc,0xbc,0x3f,
0x22,0x59,0xe2,0xcb,0x56,0xaa,0x88,0x96,0xab,0x48,0x5d,0xf4,0x9,0x18,0x10,0x68,
0x57,0x44,0xda,0x19,0x91,0x76,0x5c,0xa8,0x1d,0x12,0x69,0xfa,0x84,0xaa,0xae,0x6a,
0x49,0x47,0x59,0xc6,0x27,0xff,0xe,0x6,0x52,0x4e,0xfc,0x24,0x1f,0xaf,0x3b,0xa6,
0xa5,0x93,0x45,0x21,0x3c,0x7f,0xf4,0x22,0x3,0x24,0x53,0xe3,0x72,0xc9,0x16,0x41,
0x69,0x42,0x66,0x6b,0x2,0xce,0xc0,0x15,0xf,0xe4,0xf0,0x70,0xf2,0x7,0x87,0x20,
0xfa,0xd8,0x64,0xff,0xab,0xab,0x8,0x2b,0x3f,0x60,0x80,0x94,0xfe,0x28,0x7e,0x10,
0xfe,0x69,0x0,0x1a,0xf3,0xb9,0x8d,0x79,0x50,0x9,0x51,0xee,0x86,0x9a,0x72,0x8b,
0x9b,0x72,0x4b,0xfa,0x73,0x4a,0xaf,0xe6,0x94,0x3d,0x67,0x95,0xad,0x53,0xba,0xcb,
0x2a,0x5b,0xc3,0xb,0xea,0xb9,0xa5,0xed,0xb9,0xa5,0xad,0xb9,0x5c,0xa8,0x25,0xa7,
0xb8,0x89,0x89,0x57,0x50,0xf3,0x83,0xe9,0x2c,0x7f,0x72,0xa6,0x27,0x2e,0xd9,0x79,
0x30,0xd6,0xbe,0x37,0xd2,0xb2,0x63,0xaf,0x69,0xeb,0x4e,0xc3,0xbb,0x5b,0xf5,0x6f,
0xbc,0xa7,0x7b,0xed,0x5d,0xdd,0xab,0xef,0xe8,0x7f,0xf9,0x8e,0xe1,0x97,0xef,0x18,
0x7f,0xf9,0x8e,0xe9,0x97,0xef,0x98,0x7f,0xf9,0x4e,0xe8,0xe7,0x6f,0x4f,0xfc,0x14,
0xa5,0xce,0x5b,0x4f,0x7e,0xf8,0xd6,0xfa,0xf,0xde,0x7c,0xf6,0x83,0xd7,0x4f,0xfe,
0xe0,0x15,0xd7,0xbf,0x10,0xeb,0x6b,0xfe,0xe5,0x67,0x1a,0x12,0xfe,0x7f,0xa6,0xfa,
0xe1,0x26,0x34,0xbe,0x28,0x7e,0x56,0xa9,0x9a,0x67,0x43,0xe7,0xe7,0x57,0xce,0x11,
0x0,0xa0,0xa5,0xb3,0x87,0xf0,0x5d,0x3c,0x3b,0xbb,0x84,0xc0,0x7f,0x16,0xd6,0x27,
0x0,0x1c,0x3d,0x37,0x7d,0xf4,0xfc,0x34,0x32,0x0,0x1e,0xb3,0x38,0xba,0x3e,0x31,
0xb5,0xde,0xdf,0xbf,0xde,0xd2,0xf2,0xcc,0xe7,0xb9,0x6f,0xb2,0x5c,0x53,0x59,0xae,
0xa8,0x6d,0xa7,0xb5,0xee,0x55,0x93,0x6f,0xc1,0x16,0x5c,0x74,0x52,0xeb,0x30,0xfe,
0xe,0xcc,0x1e,0xc4,0x8,0xce,0xd3,0xcd,0x30,0xee,0xe0,0xf9,0xe,0x18,0x1d,0x16,
0x1f,0xbd,0xdc,0x3b,0xb6,0xa1,0xbe,0xf1,0x2b,0x7d,0xf8,0x8d,0xbf,0x19,0xbd,0xd4,
0x83,0xef,0xc8,0xa5,0x1e,0xca,0xfd,0x5d,0x43,0x94,0xf0,0xcf,0x3,0x0,0x8,0xd6,
0x47,0x42,0x40,0xfd,0x43,0x2a,0x1f,0x2,0x0,0x61,0x0,0xa6,0xef,0x39,0xdb,0xd2,
0x75,0xa2,0xb1,0x75,0x3e,0xd4,0x3c,0x16,0x8,0x75,0x62,0x2e,0xb9,0xd5,0x6e,0x36,
0x18,0x55,0x6a,0xdc,0x1e,0x56,0x92,0xa1,0x29,0x18,0x8e,0x2b,0x84,0xdd,0x61,0x7a,
0x44,0x7a,0xf2,0x3,0xd6,0xaf,0xa8,0x7c,0x29,0xb8,0x1c,0x25,0x3e,0x21,0x1,0xc,
0x50,0xe1,0x1f,0x76,0x27,0x3f,0xca,0xca,0x9,0x6,0x2f,0xac,0x8f,0xf0,0x4f,0x0,
0xc0,0xf7,0x45,0x2a,0x20,0xc,0x8,0x2a,0xec,0xdd,0x3a,0xf7,0x8,0xce,0xbd,0x11,
0x91,0x93,0x3f,0x38,0xfb,0x80,0x9d,0x2f,0x68,0x50,0x4f,0x56,0x3f,0x29,0xc,0xac,
0x88,0xfd,0x7d,0x1a,0x73,0x1f,0x71,0x3f,0x11,0x0,0x18,0x50,0x19,0x7,0x95,0x60,
0xc0,0x48,0x18,0x50,0x18,0x46,0x15,0x86,0x71,0x85,0x61,0x42,0xe,0x0,0xc,0x53,
0x72,0x3,0x96,0xb6,0x1e,0x41,0x72,0xeb,0x51,0xcc,0x8b,0x56,0x5b,0xfb,0x55,0xd6,
0x6e,0xbc,0x15,0xa0,0xd0,0x85,0xc5,0x75,0x5e,0x3e,0xdf,0x52,0x94,0x43,0x9e,0x7b,
0xf8,0xbd,0x78,0x9c,0xeb,0x54,0x65,0xe2,0xa4,0x10,0xd5,0x10,0xa3,0x4,0x22,0xe1,
0x9f,0xca,0x3,0x69,0xd9,0x29,0x69,0xf8,0x63,0x41,0x39,0xa3,0x7a,0x86,0x2b,0x5e,
0xae,0x90,0xae,0x54,0x11,0x81,0x81,0xd5,0x4a,0xc5,0xa3,0x4a,0xd5,0xf5,0x6a,0xcd,
0xbc,0x50,0x33,0x2d,0xd4,0x8e,0x9,0x35,0x83,0xb5,0xea,0xde,0x1a,0x79,0x47,0x65,
0x4d,0x47,0x71,0xda,0xe7,0x3f,0x20,0xc,0x2c,0xfe,0x34,0x3f,0x97,0x74,0x17,0xb8,
0x24,0xf0,0x62,0x50,0x2e,0x19,0x97,0x9b,0x84,0x57,0x2,0xc0,0x3,0xda,0x83,0xbc,
0x4,0x46,0x38,0x39,0xbf,0x2f,0xb3,0x4,0x33,0xf8,0x7,0x8b,0x70,0xa,0xa8,0xbc,
0xb7,0xa8,0xbc,0xbb,0x88,0xd7,0x45,0xad,0x7e,0x62,0xf1,0xa7,0x15,0xd5,0x3f,0x55,
0xff,0x20,0xfc,0xd3,0x0,0x84,0xf3,0x4a,0x88,0x72,0xa1,0x62,0xa8,0x31,0xa7,0xb8,
0x91,0x7c,0x39,0x4d,0x2c,0x8c,0x49,0x2e,0xfd,0x84,0x5,0xc,0xb0,0xae,0x4d,0xf4,
0x9c,0x59,0x7a,0x8b,0xc9,0x3d,0xc3,0xe2,0x1e,0xc6,0xa1,0xa3,0x9c,0x92,0x36,0x56,
0x49,0x2b,0x8b,0xd3,0xc2,0xc4,0xc,0x88,0xfc,0xc6,0xc,0x66,0x43,0x72,0x66,0x28,
0x3e,0xc5,0x7f,0x30,0xde,0xb3,0x2f,0xca,0xbd,0x2b,0xc2,0xf9,0xe1,0x1e,0xe7,0x96,
0xed,0xf6,0xb7,0xdf,0x77,0xff,0x7a,0x4b,0xeb,0xaf,0x36,0x8f,0xff,0xfc,0x9d,0x93,
0xff,0xf1,0xf6,0x8d,0x1f,0xbf,0xf5,0xec,0x87,0x6f,0xae,0xc3,0xfa,0x3f,0x7a,0xf3,
0xe1,0xf,0xdf,0x38,0xf6,0xa3,0x5f,0x6,0xfe,0xf5,0x15,0xdd,0x8f,0x7e,0xa1,0xfd,
0xf1,0x2f,0xb5,0x3f,0x81,0x7e,0xa5,0xf9,0xf7,0x5f,0x69,0xfe,0xe3,0x75,0xcd,0xcf,
0x36,0xd1,0xe1,0x9f,0x2a,0xf7,0x49,0xbc,0x5f,0x3e,0x4b,0x7c,0xf,0x0,0x60,0x7d,
0x5a,0x8b,0x67,0x60,0x7d,0xa2,0x5,0x2a,0xfc,0xc3,0xfd,0x47,0xce,0x4d,0x2d,0x9c,
0x9f,0x3e,0x72,0x61,0xea,0xe8,0x27,0x53,0x47,0x6e,0x4c,0x1e,0xfa,0x62,0x74,0xfc,
0x72,0xdf,0xe0,0xe9,0xce,0xae,0xe3,0x4d,0xad,0x4b,0x64,0x85,0xb1,0xf3,0x78,0x63,
0x37,0xde,0xde,0x3a,0xd5,0x3a,0x70,0xb6,0x63,0xe8,0x1c,0x5e,0xa8,0xee,0x1e,0xbd,
0x88,0xe7,0xda,0xfb,0x27,0xae,0xf4,0x8f,0x5f,0xe9,0x9f,0xbc,0x3a,0x38,0x79,0x65,
0x80,0xfa,0xdd,0x47,0xff,0xd,0xfe,0xf5,0x17,0x24,0x10,0x0,0xe8,0xc,0x0,0xdf,
0x3,0x0,0x98,0x7e,0x23,0xfc,0xa3,0x10,0x42,0x6,0xa0,0x2a,0xa2,0xbe,0xf3,0xad,
0xbd,0xa7,0x5a,0x3a,0x17,0x1b,0x5b,0xa7,0xea,0xc3,0xbd,0xde,0x60,0xd8,0xe9,0x72,
0x58,0xac,0x3a,0xbd,0x41,0x49,0x39,0x1e,0x93,0x51,0xa8,0x71,0xd0,0x62,0x6a,0x14,
0xae,0xb8,0xb2,0x5a,0x54,0x29,0xc0,0xf,0x7c,0x21,0xd4,0x39,0x70,0x3f,0x48,0x80,
0xfb,0xe9,0x2f,0xa,0x1e,0x84,0x7f,0xea,0x5b,0x51,0x5d,0x56,0x1,0xdf,0x43,0xa8,
0x7c,0x68,0xc,0x48,0xf5,0x8f,0x82,0x7,0x6d,0x0,0xaa,0x20,0xaa,0x10,0x2,0x3,
0xa4,0xd,0x28,0xe6,0x22,0x9,0x90,0x72,0xa8,0x98,0x2b,0x96,0x8,0x9c,0xd8,0xc4,
0x1d,0x33,0xbb,0xc6,0x8c,0xce,0x31,0xa3,0x63,0x94,0x1c,0xfe,0xb1,0x43,0xd8,0xf9,
0x1a,0xd2,0x61,0xe5,0x87,0x2c,0xfe,0xd0,0xed,0x2f,0x5d,0xff,0x10,0x0,0x48,0x12,
0x30,0xe,0x28,0xc1,0x80,0x11,0x43,0xaf,0x86,0x15,0x6,0x30,0x30,0x26,0x37,0x8c,
0xcb,0xc1,0x80,0x7e,0x52,0xa6,0x9f,0x92,0x19,0x56,0xa4,0xa6,0x27,0x52,0xa4,0x2,
0xeb,0xbc,0xca,0x3a,0xa2,0xb2,0xc,0x28,0x2d,0x3d,0x4a,0x63,0x9b,0x4c,0x13,0x16,
0x61,0x7e,0x9,0xdf,0x56,0xc4,0x1a,0xde,0x81,0x45,0xa1,0x84,0xeb,0xff,0xa7,0x58,
0xca,0xa0,0x18,0x60,0x52,0x55,0x10,0x61,0x20,0x9b,0xcc,0x7d,0x48,0xa5,0x61,0x0,
0x3,0x82,0x99,0x12,0xc9,0xa,0x5f,0xba,0x52,0x49,0x31,0x50,0x29,0xbb,0x50,0xa9,
0x7c,0x5e,0xa9,0x3e,0x57,0xa3,0x39,0x2c,0xd4,0x4c,0xe1,0xfa,0x58,0xad,0x7a,0xa0,
0x56,0xd9,0x5d,0x5d,0xd7,0x56,0xc1,0x6f,0xcf,0x4b,0xbe,0xf6,0x8f,0x64,0x8c,0xcf,
0xfc,0xcf,0xf3,0x72,0x49,0x77,0x41,0xef,0x8e,0xd1,0xee,0xa7,0x1,0x40,0x39,0x84,
0x6c,0x90,0x96,0x91,0xc0,0xb0,0xa5,0xb0,0xfb,0x18,0xa5,0x3,0xf9,0x38,0xfb,0x59,
0x4e,0x18,0xa0,0xb6,0x7e,0x3b,0xa9,0xe5,0xff,0xb6,0x17,0x0,0xa0,0xfa,0xff,0x26,
0x0,0xd,0x28,0x6c,0x30,0xa5,0x19,0xca,0x29,0xe,0xe7,0x70,0x88,0x58,0x44,0x8d,
0x2c,0x4e,0x1f,0xab,0xe4,0x2c,0x93,0xfb,0x80,0x30,0x80,0xd,0xcd,0xd,0x3d,0x63,
0x94,0xdc,0x67,0x94,0x5c,0x63,0x94,0x5c,0x66,0x14,0x9f,0xce,0xe6,0x9c,0xc8,0x2e,
0x5a,0xc9,0xcc,0x5f,0x48,0x63,0x2d,0x24,0x65,0xad,0xc4,0xa5,0x9d,0x38,0x98,0x78,
0x66,0x5f,0xdc,0xa7,0xbb,0xa2,0xee,0x7c,0x70,0xe0,0xc9,0x96,0xbd,0xcf,0xdf,0xde,
0xb5,0xfe,0xeb,0x1d,0xeb,0xaf,0x6f,0x5b,0xff,0xe5,0xd6,0xc7,0x3f,0xdf,0x7c,0xf1,
0x95,0xb7,0x47,0x5e,0xc1,0xc8,0xad,0x37,0xc,0xaf,0xfc,0xc6,0xf0,0xf3,0x37,0xf5,
0xbf,0xf8,0x8d,0xfe,0xe7,0xbf,0xd1,0xfd,0xe2,0x2d,0xa4,0xb,0xdd,0xaf,0xde,0xd5,
0xbd,0xfe,0xae,0xf6,0xb5,0x4d,0x58,0xeb,0x44,0xdd,0x4f,0xc7,0x7e,0xda,0xf7,0x60,
0x0,0x5f,0xfa,0xf7,0xd7,0xee,0x3f,0x33,0x73,0xf4,0xcc,0xf4,0xc2,0xd9,0x69,0x12,
0xfe,0x29,0x6,0x8e,0x9c,0x9f,0x9a,0xbf,0x30,0x39,0x7f,0x69,0x72,0xee,0xe2,0xf8,
0xa1,0x8b,0x63,0xd3,0xe7,0x87,0x27,0xcf,0xf,0x8e,0x9f,0xeb,0x1b,0x3b,0xd7,0x37,
0x71,0x61,0x60,0xf2,0xe2,0xc0,0xe4,0xa5,0xc1,0xa9,0xcb,0x43,0x33,0x57,0x87,0xa7,
0xaf,0xc,0x41,0x53,0x57,0xa1,0xd,0xeb,0x3,0x80,0xc9,0xab,0x3,0x0,0x80,0x88,
0xb8,0xbf,0x6f,0xf4,0x12,0x15,0xfe,0x2f,0x13,0xf7,0xf,0xe3,0x55,0x77,0xea,0xb,
0xeb,0x13,0xf7,0x5f,0xec,0x1c,0x38,0xdb,0xde,0xbb,0xd2,0xd2,0x31,0x1b,0x6e,0x1e,
0x8,0xd6,0x37,0x7b,0xbc,0x2e,0x9b,0xc3,0x68,0x32,0xa9,0x35,0xb8,0x38,0x4f,0x26,
0x2,0x89,0xeb,0xa4,0x35,0x42,0xc4,0xf8,0x3a,0x32,0x0,0x1d,0x3,0x40,0x85,0xf8,
0x4a,0xaa,0x6a,0xf0,0x47,0x7c,0x21,0x90,0x40,0xdc,0xcf,0xaf,0x22,0x35,0xf,0x7c,
0x4f,0x65,0x0,0x52,0xf6,0x50,0x51,0x7f,0x23,0xf,0x50,0xe1,0x9f,0x54,0xff,0x54,
0xd4,0xa7,0xb,0xa1,0x2a,0x1e,0xaf,0x5c,0xce,0xe6,0xba,0xd2,0xb,0xba,0xf7,0x55,
0x29,0x38,0xf8,0x57,0xe8,0x6c,0x40,0x97,0x40,0x3c,0x76,0x71,0x19,0x1e,0x82,0xe7,
0x14,0x57,0x72,0x4b,0x65,0x5a,0x3c,0x1,0x8f,0x33,0xcf,0x38,0xfa,0x6f,0x74,0x8c,
0x1b,0x1c,0xe3,0x7a,0xfb,0x18,0xb5,0xef,0x8b,0x6d,0x2f,0x2c,0xfc,0xf,0x6a,0x89,
0xfb,0x7,0x88,0xfb,0x4d,0xfd,0x2a,0xfa,0x6b,0xec,0xc7,0xc0,0x43,0xa5,0x61,0x40,
0x61,0x18,0x54,0x18,0x30,0xf4,0x6a,0x58,0x6e,0x18,0x95,0xeb,0xc7,0xe4,0xfa,0x71,
0x99,0x6e,0x42,0x46,0x33,0x80,0xce,0xca,0xf4,0x54,0x6a,0xba,0x2b,0xb3,0x1c,0x56,
0x5a,0x47,0x9,0x3,0x66,0x4c,0xc9,0x6d,0x93,0xa9,0x1b,0x84,0x62,0x4f,0x79,0x85,
0xad,0x30,0x7b,0x7c,0x6b,0xf4,0xb3,0xdf,0x4e,0xb8,0xf6,0x57,0xc5,0x42,0x6,0x36,
0x7,0xb0,0x43,0x4c,0xb5,0xc2,0xc4,0xf7,0xc8,0x0,0xd4,0xf8,0x13,0x82,0x41,0x81,
0x80,0x59,0x7d,0x98,0x4b,0x18,0x58,0xad,0xac,0x5b,0xa9,0xac,0x5b,0xe6,0xcb,0x6f,
0x56,0x2a,0x1f,0x56,0xa9,0x97,0x6a,0xd5,0x38,0x45,0x37,0x51,0xab,0x1a,0xae,0x55,
0xf5,0xd5,0xc8,0x3b,0xab,0x44,0xcd,0x65,0xe5,0xed,0x39,0x89,0x37,0xff,0x86,0xf4,
0x3,0x6b,0xff,0x9a,0xcb,0x21,0x7d,0x5,0x18,0x20,0xd,0x31,0xf5,0x4a,0x0,0xac,
0x4f,0x1e,0x4a,0x8a,0x8e,0xa1,0x52,0x41,0x7c,0xb6,0x20,0x85,0xdd,0xc9,0xa4,0x4e,
0x41,0x17,0x95,0xf,0x14,0xf1,0x28,0x6,0xca,0x3a,0xc9,0xfe,0x17,0x59,0xf7,0xc4,
0xe2,0xf,0x0,0x40,0xf5,0x8f,0xe2,0xe7,0x65,0xf8,0x7f,0x1,0x0,0xa7,0x21,0x87,
0xd3,0xc0,0xa2,0xc5,0xa6,0x15,0x66,0xb2,0x31,0x5,0x68,0x8c,0x51,0x7c,0x96,0x51,
0x72,0x83,0xc1,0x7d,0x46,0x30,0x28,0x59,0xcf,0x7e,0xa1,0x2c,0x74,0x95,0x94,0x32,
0x8b,0xd6,0xd3,0xb1,0x19,0x8a,0x45,0x73,0xe6,0x7a,0x5c,0xd6,0x7a,0x74,0xea,0x7a,
0x44,0xd2,0xfa,0xde,0xb8,0x87,0x3b,0xa3,0x3f,0xfd,0x30,0x62,0xf5,0x83,0x3d,0xfd,
0x5b,0x76,0xb8,0x37,0x7f,0x68,0x7d,0xf7,0x3,0xcb,0xdb,0x1f,0x98,0xdf,0x7a,0xdf,
0xf4,0xd6,0x7,0xa6,0xb7,0xb7,0x99,0xde,0x79,0xdf,0xf8,0xe6,0xfb,0x86,0xb7,0xb6,
0x19,0xdf,0xd9,0x6e,0xdc,0xbc,0xd3,0xb8,0x5,0xda,0x84,0xf0,0x8f,0xd8,0xbf,0x7a,
0x81,0x6a,0x7c,0xe9,0xb2,0xe7,0xc,0xe5,0xfb,0x17,0x3a,0x7a,0x7a,0x7a,0x43,0x67,
0xa6,0xc1,0xc0,0x51,0xc2,0x0,0xe5,0xfe,0x73,0x13,0x73,0xe7,0xc7,0xe7,0x2e,0x4e,
0x1c,0xbe,0x38,0x7e,0xf8,0x12,0x34,0x76,0xe8,0x32,0x34,0x3a,0x7b,0x65,0x74,0xe6,
0xf2,0xf0,0xec,0x95,0x91,0x99,0x2b,0x23,0xb3,0x57,0x47,0xa7,0xaf,0x50,0x0,0x5c,
0x1d,0x9e,0xbc,0x42,0xdc,0xf,0xdf,0x23,0xea,0x4f,0xe0,0x4b,0x1,0x30,0x46,0x31,
0x40,0x59,0x9f,0x94,0x3d,0x74,0xec,0x1f,0x3c,0xd7,0xd1,0x7f,0xac,0xad,0x67,0xae,
0xa5,0x7d,0xa4,0xa1,0xb1,0xdd,0x1f,0xf0,0xbb,0xdc,0x56,0x2b,0xae,0x53,0x1a,0x14,
0x8,0xf0,0xa,0x75,0x1d,0x69,0x5b,0x51,0xd5,0xc0,0xf7,0x18,0x5,0x87,0x6a,0x5e,
0x56,0x43,0x66,0xdf,0x92,0xa1,0x9f,0xb4,0xf5,0xa9,0x11,0xd0,0x64,0x16,0x22,0xb5,
0x98,0x43,0xe5,0x81,0x1a,0x0,0x0,0xa3,0xd3,0xdf,0x97,0x8e,0x27,0x0,0x50,0xf1,
0x9e,0x60,0x80,0xdf,0x78,0xc6,0x4b,0xc6,0x2d,0x73,0x30,0x8b,0xba,0xe,0xb0,0xe,
0xbf,0x9b,0x76,0xf9,0x47,0xf1,0x77,0xbf,0x1b,0xf3,0x14,0xc7,0x68,0xc9,0x9,0xf2,
0xf4,0x2b,0x3f,0xc6,0x84,0x75,0x24,0xd,0x80,0x81,0xfb,0x8a,0x44,0xc0,0x60,0x83,
0x1,0xb2,0x34,0xa4,0xb0,0x89,0xa8,0x8b,0x2f,0x46,0x88,0x9c,0x7c,0x9e,0xd0,0xdb,
0xc6,0x74,0x64,0xd3,0x97,0x66,0x60,0x48,0x4b,0x16,0x7f,0x10,0xf8,0xfb,0x55,0xb4,
0x68,0x0,0x8,0x3,0x83,0xa,0xfd,0xa0,0x5c,0x3f,0x24,0xd7,0xf,0xcb,0xf5,0xa3,
0x72,0xdd,0x98,0x4c,0x37,0x2e,0xd5,0x4e,0x48,0x71,0x76,0x43,0x37,0x25,0xd5,0x9f,
0xaa,0x33,0x3e,0xab,0x33,0xdd,0x96,0x9a,0x67,0x15,0xe6,0x11,0x85,0x79,0x0,0x37,
0x81,0x30,0x23,0x5a,0xaa,0x6a,0xa8,0x15,0x7a,0xca,0x78,0xb6,0xfc,0xac,0xd9,0x77,
0x71,0x81,0x26,0xe9,0xd3,0xbf,0x2d,0xa9,0xc6,0xa5,0x61,0x72,0x5a,0x8e,0x6e,0x3,
0x0,0x40,0x16,0x66,0x80,0x52,0x53,0x10,0xf1,0xc7,0x2,0x1,0x43,0x70,0xb8,0x44,
0xbc,0x52,0x51,0xb7,0xca,0x27,0xc,0xac,0xf1,0xe5,0x4f,0xf9,0xca,0x2f,0x5,0x6a,
0x1c,0x9e,0x9b,0xa9,0x51,0x8d,0xd7,0xa8,0x86,0x6a,0x14,0x3d,0x2,0x69,0x3b,0xbf,
0xa6,0xb1,0x4,0xef,0xb8,0x25,0xdc,0xc2,0x38,0xb7,0x4d,0xf1,0x57,0xff,0x36,0xa7,
0x22,0x99,0xdc,0x9b,0x49,0x4a,0x41,0xe5,0x3,0xf7,0x53,0x0,0xc4,0x26,0x44,0x45,
0xd3,0x4f,0x66,0x80,0x8a,0xc,0x56,0x52,0xa1,0x2f,0x1b,0xd,0x31,0x6e,0x2,0xf0,
0xfa,0xb,0x79,0x7d,0x38,0xff,0x43,0x18,0x28,0xa5,0x18,0xe0,0xb6,0x52,0xeb,0x3f,
0xe8,0x7d,0xe9,0x6,0x0,0xc5,0xf,0x1d,0xfe,0xa1,0xfa,0x1c,0x4e,0x3d,0xb,0x62,
0x13,0x61,0xfc,0x1b,0x51,0x11,0x11,0x6,0x60,0x31,0x8a,0xc2,0x8c,0x22,0x8c,0x3,
0x1a,0xcb,0x66,0x2f,0x66,0x73,0xce,0x64,0x73,0xae,0x66,0x71,0xbe,0xcc,0xe2,0x5c,
0xcf,0xe2,0xdc,0xcc,0xe2,0xdc,0xce,0x64,0x5f,0xcf,0x64,0x7f,0x91,0x59,0xf8,0x71,
0x7a,0xfe,0xf9,0xb4,0x9c,0xe5,0x14,0xc6,0x64,0x62,0x7a,0x57,0x6c,0x72,0x30,0x2a,
0xc1,0x7b,0x20,0xce,0xb5,0x3f,0xc6,0xb5,0xef,0xa0,0x73,0x57,0xa4,0x63,0x57,0x84,
0x7d,0x7b,0x84,0xd,0xda,0xb1,0xdf,0xfa,0xe1,0x7e,0xeb,0xf6,0x8,0xeb,0x8e,0xfd,
0x96,0xed,0x11,0x96,0x1d,0x91,0xd6,0x9d,0x91,0xd6,0x5d,0x7,0xad,0xbb,0x37,0x61,
0xc9,0x9f,0x6e,0x76,0xa9,0xae,0x77,0x9e,0x2e,0x7b,0x16,0x4e,0xcf,0x0,0x0,0x7c,
0x8f,0x9e,0x9e,0xa1,0xbe,0xc4,0xfa,0x47,0x4e,0x4f,0x1d,0x39,0x33,0x75,0xe4,0xec,
0xd4,0xfc,0xd9,0x89,0xf9,0x73,0x93,0x73,0xe7,0xbf,0x6,0x0,0x19,0xe0,0xd0,0xa5,
0xb1,0xd9,0x8b,0x23,0xb3,0x1b,0x0,0xc0,0xfd,0xc3,0x10,0x1d,0xfb,0x69,0xf7,0x23,
0x3,0xa0,0xf8,0x21,0xee,0xa7,0xca,0x9e,0x89,0xab,0xfd,0x70,0x3f,0x34,0x7a,0xb1,
0x77,0xe8,0x64,0x67,0xef,0x91,0xd6,0xce,0xf1,0xa6,0x96,0xae,0x50,0x43,0xbd,0xcf,
0x6b,0xb7,0x3b,0x8c,0x66,0xdc,0x9a,0x87,0xe3,0x61,0x77,0x54,0x35,0xd4,0xf0,0x43,
0xc,0x7e,0x23,0xc1,0x1e,0xe5,0xd,0x7e,0x53,0x63,0x9f,0x31,0xe,0x51,0x82,0xd8,
0x4f,0x26,0x1f,0x62,0xfc,0x3f,0x35,0xfc,0x19,0x7f,0x89,0x1f,0x28,0x7b,0xe8,0xc0,
0x8f,0x8a,0x1f,0x5f,0x3a,0xe4,0xbf,0x14,0x1a,0x5f,0xd8,0x9d,0x24,0x81,0x3a,0x1e,
0xde,0x4d,0xe0,0xb4,0x47,0xe5,0xcc,0xbc,0x9f,0x71,0xfe,0xdf,0x12,0x6e,0xfd,0x7f,
0x58,0x62,0x87,0x99,0xfe,0xcb,0xb9,0x2b,0x8c,0x5a,0x49,0x79,0xf8,0xd7,0x71,0x4f,
0xff,0x0,0xcf,0x5b,0xc8,0x44,0x42,0x30,0x40,0x27,0x1,0x84,0x7f,0x8,0x79,0x0,
0x49,0x0,0x5f,0x3e,0xb7,0x54,0xed,0xaf,0x73,0x4e,0xe1,0xe6,0x97,0xc1,0x3e,0xa5,
0xb7,0x4f,0xea,0x6d,0x13,0x3a,0xdb,0x38,0x61,0xc0,0x82,0xad,0xdf,0x61,0xd,0xbd,
0xf2,0x43,0x33,0x40,0xdc,0xdf,0xaf,0x34,0xf4,0x2b,0x88,0x6,0x14,0xfa,0x1,0x39,
0x61,0x60,0x58,0xae,0xc3,0xcc,0x9f,0x51,0x99,0xe,0x43,0x1f,0xc6,0x9,0x0,0xda,
0xc9,0x3a,0xed,0x54,0x9d,0xee,0x6c,0x9d,0xf1,0x79,0x9d,0xe9,0x86,0xd4,0x3c,0x4d,
0x18,0x30,0xd,0xc8,0xc1,0x80,0xae,0x55,0xa2,0xa8,0xaf,0x16,0x7a,0xcb,0xca,0x6c,
0xb9,0x19,0xb,0x18,0xb5,0xf0,0x5b,0xc9,0x57,0xbe,0x5f,0xc2,0xcf,0x5,0x3,0xd8,
0x12,0x46,0xd4,0x87,0xfb,0x61,0x7d,0x0,0x40,0x66,0x21,0xe2,0x47,0x4a,0x6a,0xa1,
0x88,0x29,0x98,0x2f,0x11,0xad,0x94,0x4b,0x56,0xf9,0x92,0x65,0xbe,0xf4,0x63,0xbe,
0xfc,0x39,0x5f,0x79,0x51,0xa0,0x9a,0xaf,0x51,0x4d,0xd7,0x28,0xc7,0xaa,0x95,0x3,
0xd5,0x60,0x40,0xd2,0x56,0x8e,0x53,0xfb,0x9c,0xb6,0xb4,0x84,0x6b,0x18,0x50,0xb0,
0x29,0xf6,0xfa,0x77,0x98,0xb2,0x58,0xea,0xb4,0x1c,0xd6,0x46,0x13,0xe0,0x78,0x84,
0x7f,0x28,0xe1,0x20,0x5e,0x8b,0x21,0xcf,0xe6,0x41,0xa9,0x9,0xf1,0x39,0xc2,0x74,
0x6e,0x3b,0x2e,0x9,0x10,0x6,0xca,0xfa,0xa,0xca,0x7a,0xa,0x4a,0xbb,0xc0,0x40,
0x3e,0x97,0x30,0x40,0x96,0x3e,0x4b,0x9a,0xb1,0x4,0x84,0xa2,0x9f,0x6a,0x0,0xc2,
0x4,0x0,0x92,0x1,0x36,0xdc,0x4f,0x1,0x10,0x62,0x16,0x11,0x31,0x8,0x0,0xf5,
0x8c,0x42,0x22,0x8c,0x40,0x24,0x2a,0xc0,0x4,0x5c,0x8,0x63,0x40,0xc3,0x59,0xf9,
0xe1,0x4c,0x5a,0x79,0xd,0x19,0x79,0xf5,0x1b,0xc2,0x20,0x51,0x56,0x28,0x95,0x11,
0x4c,0xce,0xa,0x24,0x66,0xf8,0xe2,0x53,0xbd,0xb1,0xc9,0xee,0xa8,0x44,0xf7,0xc1,
0x4,0x57,0x24,0x14,0xef,0x8c,0x88,0x83,0x1c,0x11,0xf1,0xce,0x3,0xf8,0x8d,0x6f,
0x82,0xe3,0x40,0x82,0x33,0x12,0x8f,0x12,0x6c,0xda,0x28,0xfd,0xa9,0xd8,0x4f,0xf5,
0xbb,0x1b,0xe1,0x1f,0xbe,0x27,0x3a,0x33,0x43,0x7c,0x7f,0x7a,0xc3,0xfd,0xf3,0x67,
0x26,0xe7,0xcf,0x4e,0xce,0x21,0xf6,0x9f,0x1b,0x9f,0xbb,0x30,0x71,0xf8,0xfc,0xf8,
0xa1,0xb,0x63,0xc8,0x0,0x70,0xff,0xa1,0x4b,0xa3,0xb3,0x97,0x46,0x10,0xfe,0x11,
0xfb,0x11,0xf8,0x67,0xae,0x8e,0xa0,0xf8,0x81,0xa6,0x48,0xf1,0x3,0xf7,0xf,0xd2,
0xb1,0x7f,0xfc,0x62,0xdf,0xe8,0xa9,0x9e,0xc1,0x25,0x32,0xed,0xb9,0xbd,0x2f,0xdc,
0xd4,0x14,0xf4,0xbb,0x9c,0x1e,0x8b,0xd,0xa3,0x22,0x30,0x16,0x45,0x47,0xc6,0x80,
0xaa,0x60,0x7a,0xc,0x7e,0x53,0x63,0xf4,0x27,0x3d,0xef,0x16,0xef,0x7c,0x51,0xc1,
0x5e,0x81,0xd7,0xbe,0xa8,0x2f,0xec,0x2e,0x23,0x13,0xcf,0x89,0xf5,0x1,0xc0,0x4b,
0xf7,0xc3,0xeb,0xc4,0xfd,0x54,0xd4,0x27,0x81,0x9f,0x4a,0x5,0x74,0xe9,0x8f,0x1f,
0x42,0x31,0xbf,0xd2,0xca,0xe6,0xb6,0x24,0xe4,0x4f,0x6e,0xcf,0x3a,0xfd,0xb3,0xa4,
0xeb,0x7f,0x1f,0xf3,0xf8,0xf7,0x71,0x12,0xe6,0xbf,0x1d,0x33,0xfc,0xad,0xe4,0xc7,
0xdf,0x63,0xdd,0xf8,0x31,0xef,0xca,0xe,0xc9,0x89,0x54,0xd3,0x6c,0xb5,0xa7,0x57,
0x1b,0x68,0xb5,0x4a,0x8f,0xb2,0x70,0x7e,0x98,0x3b,0x7e,0x10,0xa9,0x6,0x79,0x83,
0x74,0x2,0x9c,0x92,0xd2,0x42,0x36,0xcd,0x0,0xad,0x4a,0x5e,0x99,0xb6,0x55,0x4a,
0xee,0xbb,0x4c,0xeb,0xc1,0x80,0xd,0xc7,0x9e,0x27,0x74,0xd6,0x71,0x2d,0x39,0xf8,
0x40,0x33,0x30,0xf4,0xa2,0xf4,0xa7,0xeb,0x1f,0x1a,0x80,0x7e,0x5,0x99,0xf8,0x49,
0x25,0x1,0xdd,0xb0,0x8c,0x62,0x40,0xaa,0x1d,0xab,0xd3,0x4d,0x50,0x0,0xd0,0xc,
0x5c,0x94,0x18,0xd7,0xeb,0x8c,0xd7,0xa4,0xa6,0x69,0xb9,0x79,0x94,0x30,0x60,0xec,
0x92,0xd1,0xc,0xd4,0x7a,0x4b,0x4b,0xed,0x39,0x69,0xab,0xbf,0x42,0xa6,0x4a,0xb9,
0xf0,0xc3,0x12,0x5e,0x1e,0x16,0x85,0xb0,0x30,0x8a,0xa8,0x4f,0xd,0x3e,0x21,0xc,
0x64,0x52,0x3f,0x10,0xc8,0xb,0x25,0xc,0xc1,0x11,0x8a,0x81,0x95,0xa,0x60,0x20,
0xbb,0x4b,0xe5,0x81,0x35,0x9c,0x96,0xab,0x51,0x4e,0x55,0x2b,0x47,0xab,0x15,0xfd,
0x2,0x59,0x57,0x95,0xb0,0xa5,0x8c,0x1f,0x2a,0xe4,0x84,0x33,0x92,0xae,0xe2,0x2c,
0xea,0xb7,0xf0,0xe0,0x57,0xb6,0x6d,0x1f,0xb6,0xdb,0xe8,0xeb,0x63,0x2f,0x93,0x0,
0x0,0x40,0x2a,0x0,0xc,0x60,0x0,0x60,0xa4,0xa5,0x25,0xe6,0x29,0xb2,0x4a,0xbb,
0xf3,0xcb,0xfa,0xb,0xc0,0x40,0x69,0x4f,0x3e,0x7e,0x73,0x3b,0xf3,0x1,0x6,0xb7,
0x8d,0x6c,0x81,0x61,0xf5,0x13,0x2b,0x3f,0xa4,0xfd,0xa5,0xab,0x7f,0xaa,0x4,0xa2,
0xc2,0x3f,0x1,0x80,0x72,0x3f,0x5,0x40,0x88,0x51,0x48,0x84,0xf1,0xb7,0x44,0x5,
0x44,0x59,0x50,0xfe,0x86,0x32,0xf3,0x43,0x44,0x98,0xd,0x41,0x2b,0x97,0x28,0x1d,
0xca,0x81,0x82,0x69,0xac,0x60,0x2a,0x33,0x90,0xca,0x8,0xa4,0x64,0xfb,0x93,0x32,
0x7c,0x9,0x98,0x35,0x9d,0xee,0x8d,0x4f,0xf3,0xc4,0x7d,0x43,0xb1,0x69,0xde,0x58,
0xfa,0x8f,0xff,0x29,0x3,0x50,0x15,0xff,0x6,0x0,0x88,0xfd,0x8,0xfc,0x58,0xf5,
0x27,0x65,0xf,0xc2,0xff,0x46,0xec,0x9f,0x9c,0x43,0xf8,0x3f,0x3f,0x9,0xeb,0x3,
0x80,0x43,0xe7,0x47,0x51,0xfc,0xc0,0xfa,0x28,0x7e,0x66,0x1,0x0,0x71,0x3f,0x1,
0x0,0x65,0xf,0x1d,0xfe,0xa7,0x2e,0xf,0x4e,0x9c,0xe9,0x1f,0x59,0xe9,0xe9,0x9f,
0xed,0xe8,0x1a,0x6c,0x6e,0x69,0xa9,0xaf,0xf7,0x7a,0x7d,0x36,0x2c,0xc1,0x5b,0x30,
0x13,0x5,0x3d,0xab,0x9e,0x1a,0xf8,0xac,0xa1,0x46,0xbe,0x69,0xc8,0xc0,0x43,0x19,
0xdc,0x8f,0x3f,0x52,0xee,0xc7,0xa1,0x83,0x3a,0xd8,0x9d,0x72,0x3f,0x86,0x7e,0x12,
0x12,0x88,0xf5,0xe9,0xe7,0xee,0xa8,0xe1,0xcf,0xf8,0xd,0x3b,0xd2,0x18,0x90,0x67,
0x2f,0x50,0xf3,0x50,0x8f,0x5f,0x40,0x22,0x51,0x55,0x35,0xde,0xb8,0x6d,0x4c,0x2d,
0x18,0xdb,0x93,0xbd,0xf6,0xcb,0x94,0x6b,0xdf,0x8f,0x7d,0xf4,0x6d,0x9c,0xa5,0xf9,
0x6f,0x97,0x36,0xbf,0x95,0xf8,0xe4,0x3b,0xcc,0xdb,0x3f,0x28,0xfd,0xf4,0x3,0xf1,
0x99,0x4,0xbc,0x2f,0xe6,0x1d,0xd3,0x84,0x7a,0x6c,0xd,0x9d,0xae,0xfa,0x36,0x67,
0xa0,0xc9,0xea,0xb,0x5b,0x5c,0x41,0x83,0xd3,0xaf,0xb3,0xfb,0xb5,0xdc,0x13,0xbb,
0x63,0x9e,0xfe,0x3e,0xbf,0x25,0xb,0x38,0xa1,0x49,0xc0,0xa2,0x10,0x1,0x80,0x66,
0xa0,0x88,0x53,0x5a,0x44,0x46,0x39,0x54,0x56,0x94,0xea,0x7b,0xe4,0x38,0x70,0x6a,
0x9b,0xd6,0x11,0x4d,0xe9,0x70,0xe8,0xcd,0x32,0x46,0xe,0xff,0x90,0x6d,0x2f,0xac,
0x7b,0x62,0xf5,0x73,0x90,0x6a,0x7f,0xa9,0xc,0xa0,0xef,0x97,0x13,0x21,0x3,0xc,
0xc8,0x75,0x3,0x32,0xed,0x90,0x14,0xc,0x68,0x47,0xa4,0x9a,0xd1,0x3a,0xcd,0x58,
0x9d,0x66,0xa2,0x4e,0x33,0x9,0x49,0x34,0x53,0x12,0xdd,0x55,0x89,0x61,0x5d,0x62,
0xfc,0x5c,0x6a,0x9a,0x92,0x1b,0x47,0x64,0xc6,0x7e,0x99,0xb1,0x5b,0xa6,0x6d,0x15,
0xcb,0x1b,0x4,0x2,0x4f,0x31,0xd7,0xc9,0x4a,0x3d,0xf9,0x73,0x30,0x90,0x7a,0xf2,
0xdf,0x4b,0x4a,0xc1,0x0,0xa6,0x5f,0x65,0xd1,0xad,0xf0,0x37,0x94,0x42,0x6a,0x21,
0x29,0xa3,0xea,0x48,0xf1,0x6,0x3,0x27,0x2b,0x64,0x4f,0x2a,0xe4,0xf7,0xf9,0xca,
0xe5,0x6a,0xc5,0xa1,0x6a,0xc5,0xa4,0x40,0x31,0x2c,0x50,0xf4,0x9,0xa4,0x9d,0xfc,
0x9a,0x26,0x6e,0x79,0x30,0x9f,0x13,0xc8,0x4a,0x3e,0xf9,0x33,0xa4,0x97,0xe8,0xa7,
0xbf,0x93,0x32,0xf1,0x2a,0x33,0x8f,0xfc,0xa7,0x61,0x57,0x98,0xb4,0xc2,0x31,0x71,
0x70,0xff,0x4b,0xc5,0xe3,0xa5,0xf8,0x28,0x82,0x41,0x46,0x56,0x52,0x81,0x91,0x41,
0x30,0x0,0x3,0xbd,0x14,0x3,0x5d,0x79,0xdc,0x8e,0xbc,0x92,0x76,0xb2,0xf6,0x5f,
0xd2,0x92,0x5b,0xdc,0x8c,0x95,0x4d,0x2c,0xfe,0x6c,0xb4,0xbf,0x54,0xf5,0xff,0xa2,
0xf8,0xf9,0x6f,0x0,0x50,0xee,0xcf,0x2e,0x8,0x66,0x41,0xf9,0x44,0x99,0xb4,0xf2,
0x88,0x32,0xa0,0x5c,0xa2,0x74,0x5a,0x39,0x44,0x69,0xb4,0x58,0x81,0x54,0x5a,0x4,
0x6,0x7f,0x32,0x4,0x1e,0xa0,0xac,0xd,0x25,0x66,0xf9,0x13,0xb3,0x2,0x49,0x9b,
0xb0,0x0,0x4a,0xea,0x7e,0x4a,0xa4,0xec,0xa1,0x19,0x38,0x3b,0x4b,0x97,0x3d,0x94,
0xf5,0xe9,0xba,0x7f,0xfa,0x45,0xec,0x27,0x81,0x9f,0x84,0xff,0xb,0x63,0x74,0xe5,
0xb3,0x51,0xfa,0x5f,0x1e,0x9d,0xb9,0x34,0x3c,0x75,0x66,0x68,0xfc,0xd8,0xc0,0xd0,
0xe1,0xae,0xde,0x91,0xf6,0xb6,0xf6,0x70,0xd8,0xef,0xf,0xb9,0x3c,0xb8,0x38,0x8f,
0xa,0xde,0xa2,0xc5,0x2c,0x20,0x2d,0x2,0xbc,0xe,0x83,0x3e,0x31,0xdb,0x50,0xa6,
0x84,0xb4,0x64,0xf2,0x21,0xd,0x0,0x11,0x1d,0xfb,0x51,0xf3,0xc0,0xfd,0x24,0xf6,
0xe3,0x7d,0x3b,0x2a,0xde,0xc3,0xfd,0x74,0xf8,0xa7,0x0,0x20,0xee,0xc7,0x1f,0x37,
0x18,0xc0,0x39,0x5,0x34,0x0,0xe2,0xda,0x5a,0x13,0xaf,0xa2,0x21,0xb3,0x78,0xf4,
0x40,0xce,0xb1,0x5f,0xa7,0x7d,0xfe,0x2f,0x71,0xf,0xfe,0x4,0x6f,0xf4,0xfe,0xf7,
0x3b,0xca,0xf1,0xcf,0xfe,0x24,0xfb,0xee,0x3f,0x17,0x7f,0xfe,0xae,0xe8,0x7c,0x9c,
0x7e,0x99,0xe7,0x9d,0xd4,0x84,0x7,0x9c,0x4d,0x7d,0xde,0x70,0x97,0xbb,0xbe,0xdd,
0x89,0x48,0xef,0x6b,0xb1,0x78,0x9a,0x4d,0xee,0x46,0x83,0x33,0xac,0xb3,0xd7,0x6b,
0xac,0x41,0x15,0xae,0x29,0x5a,0xfc,0xa,0xa3,0x47,0x8a,0xc1,0x72,0x8c,0xcb,0xaf,
0xc4,0xdf,0xff,0x8b,0x5a,0x47,0x31,0xb2,0xa,0x9a,0x1,0x44,0x7d,0x30,0x40,0xa9,
0x8,0x5f,0x6e,0x41,0x11,0xa8,0x10,0xd4,0xf2,0xf4,0x83,0x32,0x2b,0x61,0x80,0xc8,
0x82,0x33,0xcf,0x84,0x1,0x1c,0x7c,0x50,0x9b,0xb0,0xed,0x35,0xac,0x32,0x62,0xe9,
0x73,0x90,0x6a,0x7f,0x37,0xc2,0xbf,0x5c,0xd7,0x2f,0x83,0xfb,0x75,0x83,0x32,0xed,
0xa0,0x14,0xc,0x68,0x87,0xa5,0x9a,0x11,0xa,0x80,0x31,0x89,0x1a,0xc3,0x7f,0x26,
0x25,0xea,0x49,0xb1,0x7a,0x5a,0xac,0xfd,0x54,0xac,0x5f,0x17,0x1b,0x3e,0xae,0x33,
0x4e,0x61,0x5e,0x34,0x61,0x40,0xdf,0x55,0xa7,0x69,0x15,0x49,0x1b,0x2a,0x71,0xd1,
0x96,0xe3,0xca,0x4e,0x39,0xff,0x13,0xf2,0x28,0xcb,0xb1,0x57,0x38,0x45,0xb9,0xf4,
0xc2,0x28,0x69,0x3,0xc8,0xf8,0x93,0x14,0xb8,0x96,0x9e,0x4,0x8a,0x72,0xa8,0x50,
0xc3,0xac,0x5e,0x28,0x11,0x2e,0xf3,0x48,0x1e,0xb8,0x58,0x21,0x7b,0x5e,0x2e,0xff,
0x8a,0xaf,0x38,0x2a,0x50,0xcc,0xa,0xe4,0x13,0x2,0xf9,0x50,0x95,0xac,0xb7,0x4a,
0xd2,0x5e,0x2e,0x68,0x2c,0x2e,0xf3,0xe7,0x16,0x7a,0x32,0x52,0xe6,0xdf,0xa0,0x4e,
0xe4,0x7f,0x2b,0xee,0xe3,0xbf,0xce,0x96,0x46,0x51,0xb3,0x24,0x52,0xe8,0x75,0x21,
0x0,0x0,0xeb,0x6f,0x60,0x80,0x17,0x23,0xc9,0xa3,0x91,0xd1,0xf8,0xfb,0xc,0x46,
0x52,0xbe,0x2a,0x1b,0x76,0x47,0x1e,0xe0,0x76,0xe7,0x81,0x81,0x92,0xce,0xdc,0x92,
0x8e,0x5c,0x60,0x50,0xdc,0x9a,0x53,0xdc,0x92,0xc3,0x69,0xa6,0x18,0x68,0x64,0xb1,
0xa1,0x30,0xd5,0xfe,0x36,0x30,0x49,0xe9,0xff,0xb2,0xfe,0xd9,0x88,0xfd,0x2f,0xc2,
0xff,0x37,0x0,0x78,0xe9,0xfe,0xff,0x6,0xc0,0xb,0xf7,0x53,0x79,0x80,0x16,0x93,
0x28,0xe5,0xa5,0x50,0x26,0x11,0x85,0x88,0xb2,0x43,0x49,0xa4,0x4,0xda,0xd8,0xea,
0xa2,0xd6,0xfb,0x51,0xf3,0x90,0xba,0xff,0xec,0x2c,0x7c,0x4f,0xa2,0x3e,0x1d,0xf8,
0xa9,0xca,0x87,0xd4,0xfd,0xe7,0x26,0xe,0x9f,0xc3,0xc3,0xd4,0xe3,0x70,0x3f,0x2a,
0x9f,0x99,0xd3,0x23,0x93,0xab,0x3,0xa3,0x73,0x7d,0x3,0xa3,0x9d,0x5d,0x9d,0xcd,
0xcd,0xf5,0xa1,0x90,0xdb,0x83,0x41,0x71,0x98,0x89,0x62,0xa3,0x6,0xdf,0x1a,0xa9,
0x3a,0x1e,0x83,0xdf,0xe0,0x7b,0xfc,0xa0,0xbe,0x8,0xf9,0x84,0x1,0x8,0x3f,0x20,
0x30,0x80,0x2f,0xed,0x7e,0x32,0xed,0xf9,0x45,0xd9,0x43,0xd5,0x3f,0xa4,0xf8,0x81,
0xfb,0xe1,0x7b,0xda,0xfd,0x48,0x5,0x68,0x0,0x50,0x88,0x4b,0x4c,0x95,0x55,0xa1,
0xdc,0x92,0xa1,0xa8,0xdc,0xa5,0x77,0xd3,0x3f,0xfe,0x11,0x4c,0x19,0x43,0x5e,0xe7,
0x24,0xdd,0xea,0x37,0x15,0xfb,0xfc,0xdb,0x99,0xf7,0xff,0x91,0x73,0xed,0x37,0xb5,
0x97,0xa2,0xb5,0xab,0x6c,0xef,0xac,0xba,0x71,0xc8,0xd9,0xdc,0xe7,0x6d,0xee,0xf6,
0x35,0x76,0x7a,0xc2,0x1d,0xae,0x60,0xab,0xdd,0xd7,0x4c,0x39,0xbe,0xd9,0xe8,0x6e,
0x31,0x38,0x9a,0xb5,0xf6,0x66,0xb5,0xad,0x19,0x47,0xd0,0xf0,0x20,0x69,0x9d,0x2e,
0x84,0x57,0x47,0x6b,0x14,0x2e,0x81,0xd4,0x56,0x29,0x34,0x95,0x56,0xeb,0x8a,0xcb,
0x6d,0xac,0x84,0x6b,0xff,0x5f,0xca,0x57,0x7f,0x2f,0xd6,0x90,0xe5,0x23,0x14,0x42,
0x74,0x27,0x40,0x63,0x0,0x0,0xf0,0x5,0x15,0x35,0xf2,0x72,0xb4,0xb3,0x84,0x81,
0x19,0xad,0x75,0x5a,0x3,0x6,0xcc,0x38,0xf5,0x39,0x8e,0x4d,0x5f,0x15,0x18,0xc0,
0xc2,0x3f,0x69,0x7c,0x31,0xef,0x1f,0xd5,0x3f,0x95,0x1,0x8,0x0,0x14,0x3,0xda,
0x1,0x29,0x61,0x0,0x0,0xc,0xd7,0x69,0x46,0x24,0xea,0x51,0x89,0x1a,0xc,0x60,
0xf2,0xf,0x0,0x80,0x66,0xc4,0xda,0x2f,0x45,0xba,0x75,0x91,0xfe,0x4a,0x9d,0x71,
0x2,0xc3,0xa2,0xa5,0x86,0x7e,0xa9,0xa1,0x5b,0xa,0x6,0xea,0x1a,0xf8,0x2,0x30,
0xe0,0xce,0x4a,0xba,0xfc,0x2f,0xe4,0xaa,0xea,0xc2,0xab,0xec,0x2,0xcc,0x92,0xc0,
0xa2,0x50,0x6,0x0,0xc8,0xa0,0x6,0x80,0xe2,0x4b,0xfd,0x48,0x21,0xfd,0x80,0x86,
0x29,0xa0,0x18,0x10,0x2d,0x97,0x4b,0xbe,0x28,0x97,0xad,0x97,0xcb,0x3f,0xae,0xc4,
0x81,0x39,0xf9,0x6c,0x95,0x7c,0xbc,0x4a,0x36,0x54,0x25,0xed,0xa9,0x14,0xb5,0xf1,
0x2a,0x1b,0xd8,0x5c,0x1f,0x2b,0xcf,0x91,0x96,0xda,0xff,0x7e,0xf4,0xdd,0x3f,0x26,
0xf7,0xd6,0x1f,0xfd,0x5e,0x6a,0xc7,0xdb,0xcc,0x6c,0x32,0x5d,0x94,0x3e,0x2e,0x1,
0xbb,0xc7,0x53,0xbe,0x7,0x9,0xf1,0x91,0x78,0x41,0x95,0xbc,0xa4,0x4d,0x77,0xc9,
0x69,0x29,0x9,0xcc,0xaa,0xb4,0x22,0x3f,0x13,0xc,0x94,0x74,0xe7,0x96,0x74,0xe5,
0x2,0x83,0xe2,0xf6,0x9c,0xe2,0xb6,0x1c,0x4e,0x6b,0xe,0x87,0x60,0xc0,0x62,0x37,
0x41,0x98,0xff,0xcc,0x2c,0x82,0xd0,0xf8,0x86,0x19,0x85,0xd,0xb4,0x50,0xfa,0xd3,
0x22,0xd,0xc0,0xcb,0xfa,0x27,0x8f,0x14,0x3f,0xff,0x8f,0xfa,0x27,0x94,0x96,0x43,
0x89,0x45,0x94,0x4a,0x8b,0x49,0x94,0xf2,0x52,0x8c,0xfa,0xe4,0xd,0x35,0x24,0x33,
0x1a,0x92,0x36,0xe1,0x98,0xc3,0xe2,0x39,0xec,0xf2,0x6e,0xac,0xf4,0xd3,0x51,0x9f,
0xac,0x78,0x62,0xc9,0xff,0xec,0x34,0xdc,0xf,0xcd,0x9d,0x99,0x40,0xe5,0x73,0xf8,
0xd4,0xf8,0xcc,0xca,0xc8,0xf8,0xe1,0xfe,0xe1,0xf1,0x9e,0xee,0xee,0xd6,0xd6,0x86,
0x86,0xb0,0xcf,0xef,0xb7,0x3b,0xa9,0x0,0x6f,0xc2,0xec,0x37,0x13,0x35,0xd8,0xd0,
0xb8,0x31,0xdb,0x19,0xbe,0xa7,0xdd,0x8f,0xc5,0x4a,0x62,0x74,0xfc,0x46,0x89,0xbf,
0xf1,0xc8,0x5,0x55,0xeb,0x63,0xcc,0x2d,0xe9,0x71,0x65,0xa,0xf8,0x9e,0xc4,0x7e,
0x2a,0xfc,0xd3,0xc,0xc0,0xf4,0x24,0x9,0x90,0x17,0x4e,0x25,0xaa,0xba,0x3a,0x99,
0xb1,0xa6,0xda,0x5f,0xc8,0x1b,0x8c,0xcf,0x3f,0xba,0x35,0xf3,0xca,0xbf,0x25,0xdc,
0xf9,0x5e,0xec,0x13,0xd8,0xfd,0xbf,0x76,0xab,0x31,0xcf,0x7f,0x37,0xe3,0xe1,0xdf,
0x17,0x5e,0x7f,0xb5,0xe6,0x6a,0xa4,0x66,0xad,0xc0,0x3b,0xaf,0x6c,0x1e,0x73,0xb5,
0xd,0x4,0x5a,0xbb,0xfd,0x2d,0x5d,0xfe,0xe6,0x2e,0x6f,0x43,0xbb,0x2b,0xd0,0x6c,
0xf5,0x37,0x5b,0xbc,0x4d,0x66,0x4f,0x93,0xd1,0xdd,0xac,0xc7,0x1d,0x5c,0x98,0x1e,
0xa7,0x8e,0x71,0xe0,0xcc,0x48,0x5e,0x9e,0x13,0x2b,0xf1,0x94,0x74,0xb0,0x52,0x12,
0x28,0x17,0xfa,0x4a,0xab,0x3d,0xc5,0x95,0xb8,0xb7,0x6a,0xca,0x29,0xd1,0x33,0xd9,
0xaa,0xac,0x2,0x59,0x7a,0x9e,0x24,0x25,0xdb,0x11,0x11,0x73,0xef,0xdb,0x59,0x17,
0x5f,0x91,0x88,0x5,0x64,0xac,0x39,0xd5,0xd,0xbf,0x74,0x3f,0x61,0xa0,0x8,0xc,
0x70,0x44,0xc6,0x2a,0xc3,0x84,0xc2,0x32,0xad,0xb6,0x0,0x80,0x29,0x9c,0x79,0x56,
0x9b,0x70,0xe8,0x6d,0x4c,0x65,0xc4,0xc1,0x7,0x6c,0xfd,0xe,0x29,0xf5,0x64,0xf1,
0x87,0x6a,0x7f,0x5f,0x0,0xa0,0xed,0x97,0x6a,0x6,0xa0,0x3a,0xdc,0x53,0xd3,0xc,
0xd5,0xa9,0x87,0x25,0x6a,0xc2,0x80,0x58,0x35,0x8e,0xd1,0x57,0x62,0xd5,0xa4,0x58,
0x85,0xc9,0x3f,0x38,0xc2,0x70,0x43,0xa4,0x7b,0x2e,0xd6,0x5f,0xa8,0x33,0x4c,0x48,
0x31,0x36,0x5d,0xdf,0x8f,0xb7,0x2,0x24,0xaa,0xd6,0x5a,0x49,0x43,0x45,0xa5,0x97,
0xcd,0xf6,0x66,0x24,0x7e,0xfc,0x4f,0x60,0x20,0x63,0xe6,0xd,0x76,0x3e,0x16,0x85,
0x18,0x64,0x4f,0x97,0x9a,0x0,0x47,0x3,0x40,0x6,0x60,0x61,0x1e,0x68,0x72,0x4a,
0x81,0x9e,0x51,0xb5,0x50,0x5c,0xbb,0x5c,0x26,0x5a,0x2d,0xaf,0xbb,0xcb,0x93,0x3e,
0x2f,0x97,0x5d,0xae,0x94,0xcd,0x57,0xc9,0x66,0xaa,0x64,0xe3,0x95,0xd2,0xc1,0xca,
0xba,0xee,0xa,0x61,0x6b,0x29,0xbf,0xbe,0xa8,0xd8,0xcb,0xcc,0xb5,0xa7,0xa4,0x7a,
0xf6,0x47,0x9f,0xfd,0x7,0x2a,0xa9,0x7e,0x2b,0xe1,0xec,0xf7,0xb3,0xc5,0xd1,0x4,
0xad,0x44,0x72,0x85,0x80,0x5e,0x1b,0x5,0x0,0x71,0x78,0x1d,0x1e,0xf,0x68,0x53,
0x3f,0x8,0xf,0x14,0x9,0x68,0x91,0x33,0x73,0x93,0x73,0xa4,0x19,0x20,0xa1,0x18,
0x0,0x74,0xe6,0x14,0x77,0xe4,0x0,0x3,0x4e,0x3b,0x8b,0xd3,0xca,0x62,0xb7,0x40,
0x64,0xf5,0xb3,0x8,0x6a,0x62,0x14,0x35,0x32,0xa,0x69,0x91,0x19,0xe8,0xd9,0x5,
0x10,0x7a,0xdf,0x86,0xac,0x7c,0xa2,0x4c,0x28,0xaf,0x9e,0xd6,0x8b,0xf6,0xb7,0x3e,
0x23,0xb7,0x3e,0x1d,0xca,0x21,0x4a,0xa3,0xc5,0x22,0x4a,0x25,0x6a,0x20,0x62,0x36,
0xa4,0xbc,0x14,0x83,0xf8,0xfe,0x6b,0x6d,0x5a,0xa6,0x4e,0xfb,0x20,0x9,0x0,0x83,
0x6f,0xd6,0x3c,0x24,0xea,0x9f,0x99,0x9c,0x5d,0x18,0x9b,0x9c,0x1e,0x1a,0xe8,0xed,
0xec,0x6c,0x69,0x6e,0xe,0x84,0x50,0xcf,0x90,0x29,0x40,0x56,0x7,0x1c,0xf,0xaf,
0x93,0x29,0x9f,0x98,0xeb,0xaf,0xd1,0x21,0xd8,0x9b,0xd5,0x3a,0x78,0x9a,0x1a,0x71,
0x8e,0xc7,0x8b,0x48,0xd4,0x87,0xd7,0xf1,0x83,0xa,0xfc,0x4a,0xd4,0xfa,0xa4,0xc1,
0x25,0x7f,0x43,0x42,0x3e,0x56,0x33,0x51,0xf6,0x90,0x2f,0x2a,0x1f,0x2c,0xf2,0x20,
0xd8,0x53,0xf1,0x9e,0xcc,0x7f,0x96,0xca,0x64,0x3a,0xa1,0xd0,0x5b,0x52,0xd1,0x9b,
0x5c,0x34,0xb7,0x23,0xfb,0xe2,0x4f,0x93,0x6e,0xff,0x6d,0xec,0xe3,0xdf,0xfb,0xef,
0xdd,0x2a,0x16,0x67,0xd2,0x1e,0xff,0x4d,0xfe,0xcd,0x9f,0xa,0x3e,0xd9,0xaf,0x3e,
0xcd,0xf2,0x2e,0x2a,0x5b,0x27,0x5d,0x1d,0xc3,0xa1,0x8e,0xbe,0xfa,0xf6,0x9e,0x20,
0x1c,0xdf,0xd4,0xe1,0x69,0x68,0x73,0x85,0x5a,0x1c,0x41,0x3c,0xcd,0xd2,0x64,0xf6,
0x35,0x93,0xd1,0x23,0x70,0x3c,0x2e,0x1c,0xda,0xc2,0x2a,0x33,0x5e,0x9c,0x26,0x6f,
0x8c,0x8a,0x14,0x3e,0x81,0xd4,0xc7,0x17,0xfb,0x78,0x35,0xde,0x12,0xdc,0x4e,0xaa,
0xf0,0xe6,0x73,0xf1,0x44,0xa1,0x87,0x51,0xe0,0x4a,0xcf,0x77,0xa6,0xe6,0xda,0x92,
0x19,0xa6,0xf8,0x2c,0x5d,0x6c,0xa6,0x2a,0x6,0x23,0xe5,0xd2,0xc4,0x7,0x53,0x85,
0x91,0x89,0xe1,0xcd,0xd1,0x4f,0xfe,0x77,0xfe,0xc2,0x16,0xb1,0x60,0xa3,0x10,0x2,
0x3,0xb0,0x3e,0xb7,0xb0,0x8,0xdf,0xe2,0xbc,0x2,0xaa,0x16,0x2a,0x11,0xbb,0x2b,
0xd,0x93,0x1b,0xc,0x98,0x9,0x3,0x38,0xf4,0x46,0x4,0x6,0xc8,0xb6,0xd7,0x90,
0x42,0xf,0xd,0x52,0xa5,0x7f,0x3f,0x24,0x25,0x0,0xfc,0x57,0x6,0xc4,0xaa,0x11,
0xb1,0x6a,0xc,0xc,0x88,0x54,0x93,0x98,0x7b,0x25,0xc6,0x4d,0x4e,0xd5,0x61,0x91,
0xe6,0xb6,0x50,0xfb,0x5c,0xa8,0x3f,0x23,0xd1,0x13,0x6,0xea,0xc0,0x80,0xb6,0x4b,
0x4c,0x33,0xc0,0xf7,0x16,0x15,0x6,0x52,0xe3,0x3f,0xff,0x5b,0x14,0xee,0x99,0xe3,
0x6f,0x17,0xe5,0xe6,0xd0,0x8b,0x42,0x70,0x3c,0x29,0x84,0x70,0xf3,0x9d,0x1a,0x2,
0x47,0x30,0x48,0x4e,0x29,0xb2,0xe0,0xdd,0x6,0x8a,0x81,0x35,0x5e,0xdd,0x23,0x5e,
0xdd,0x73,0x9e,0xf4,0x2,0x1f,0xc,0x48,0x67,0x2a,0xa5,0x63,0x7c,0x30,0x20,0xe9,
0xae,0xa8,0x69,0xe1,0x56,0x84,0xa,0x8b,0xdd,0xcc,0x1c,0x6b,0x72,0x8a,0x21,0x32,
0x7a,0xe0,0x17,0x51,0xf,0xc9,0x64,0xe2,0xe8,0xc7,0xbf,0x9b,0x34,0xf3,0xb3,0x6c,
0x6e,0x2,0xfd,0x1f,0x8b,0xb3,0xd3,0xa4,0x27,0x3e,0x88,0xe1,0x84,0x60,0xe0,0x6b,
0xc5,0x1e,0x88,0xc4,0x1f,0x91,0x13,0x48,0xaf,0x1c,0x17,0x9b,0x9e,0x9d,0xc8,0x14,
0xa6,0x15,0xb8,0xb2,0xe1,0x7b,0x4e,0x7,0x8b,0x30,0xd0,0xc6,0x62,0xb7,0x31,0xd9,
0xad,0xcc,0x22,0xa8,0x85,0x1,0x15,0x36,0x43,0xd9,0x85,0x4d,0xd9,0x5,0x50,0x23,
0x84,0x37,0x60,0xb0,0x7,0xfc,0x8d,0xf5,0x1f,0x2c,0x1,0x91,0xd1,0x88,0x44,0xb9,
0x44,0xe9,0x50,0xe,0x51,0x1a,0x2d,0x16,0x51,0xea,0x4b,0x31,0xc3,0x29,0xdf,0x50,
0x72,0xb6,0x2f,0x29,0xc3,0x98,0x90,0x2a,0x8a,0xc3,0x7d,0x37,0x2,0x0,0x75,0xbe,
0xed,0xd0,0xc2,0x39,0xb2,0xd7,0xfb,0x32,0xea,0xa3,0xe6,0x99,0x5d,0x1d,0xed,0x6e,
0x6a,0x6d,0xf0,0xf8,0xd1,0xb3,0x3a,0x30,0xd4,0x9f,0x1a,0xec,0x8c,0xda,0x66,0xc3,
0xf7,0x4,0x0,0xc,0x3a,0x37,0x50,0x13,0x6d,0x75,0xf0,0x3d,0x59,0xb8,0xa4,0xc6,
0xdc,0xe2,0x6f,0x48,0xc8,0xa7,0x7a,0x5c,0xa,0x3,0x42,0x2,0x29,0x75,0xe8,0xfa,
0x87,0xa,0xff,0x94,0xd7,0x89,0x14,0x1a,0xb1,0xd8,0x5b,0x5e,0xd9,0x95,0xc6,0x39,
0xbc,0x8f,0x75,0xee,0x97,0x29,0x37,0xfe,0x31,0xee,0xd1,0x1f,0xd0,0xb3,0x23,0xff,
0xb3,0xbe,0x95,0xf2,0xe4,0x7b,0xb9,0x77,0xfe,0xad,0xf2,0xf3,0xdd,0xca,0xb,0x99,
0xee,0x15,0x59,0xcb,0xac,0xab,0x73,0xb4,0xbe,0x7b,0x20,0xdc,0xd9,0xd7,0xd0,0xde,
0x13,0x6a,0xe9,0x84,0xe3,0xbd,0x61,0xca,0xf1,0xf5,0xad,0x8e,0x40,0x8b,0xd5,0xdb,
0x6c,0x82,0x5c,0x8d,0x7a,0x47,0x58,0x63,0x6b,0x50,0x19,0x83,0x52,0x4c,0xca,0x47,
0x49,0x23,0xf7,0x54,0x89,0x5d,0xe5,0xb5,0x4e,0x6e,0xb5,0xb3,0x98,0xef,0x28,0xe4,
0x39,0xf2,0x8a,0xed,0xc,0xb6,0x23,0xb3,0xc0,0x99,0x9e,0xe7,0x4e,0xcd,0x76,0xc7,
0x65,0x79,0x62,0x33,0xbc,0xe4,0xed,0x93,0x54,0x6f,0x64,0xaa,0x27,0x32,0xc5,0x79,
0x20,0xc5,0x76,0x20,0xc5,0x78,0x20,0x19,0x23,0x8e,0x95,0x11,0xc9,0xd2,0x88,0x24,
0xf1,0xfe,0xb8,0x91,0x5f,0x60,0xb2,0x8,0x77,0x20,0x16,0xcb,0xa9,0x64,0xa4,0x33,
0xd,0x0,0xa5,0x92,0xfc,0x42,0x30,0x50,0x52,0x50,0x58,0xc1,0xe5,0xca,0xc2,0x35,
0xc6,0x29,0xa5,0x99,0xca,0x3,0xa6,0x29,0x15,0x2e,0x64,0x1a,0xc7,0x95,0x86,0x31,
0x72,0xf0,0x1,0x8b,0x9e,0x86,0x61,0x2,0x80,0x96,0x0,0x40,0xdc,0xbf,0xc1,0xc0,
0x40,0x9d,0x9a,0x48,0xa2,0x1a,0x14,0xab,0x86,0x28,0x0,0x46,0xc5,0xca,0x31,0x91,
0x6a,0x82,0x30,0x40,0xae,0x32,0x43,0x38,0xc5,0x70,0x4f,0xa8,0x7d,0x26,0xd4,0x9d,
0x4,0x3,0x75,0x7a,0xc,0x8b,0xc6,0x9c,0xf4,0x6e,0xb1,0xa2,0xb5,0x46,0xd4,0xc0,
0xab,0xf0,0x16,0xe6,0x87,0x92,0xe2,0xbe,0xfa,0x2b,0x2c,0xe9,0x66,0xf7,0x6f,0x65,
0xe7,0xbd,0x58,0x18,0xa5,0xf2,0x0,0x0,0xa0,0x85,0x6c,0x90,0x95,0x42,0x33,0x50,
0x52,0xbb,0x54,0x26,0x3a,0xc5,0xab,0x7b,0x52,0x56,0xf7,0xac,0x4c,0x7a,0x96,0x2f,
0x9d,0xaf,0xac,0x9b,0xe6,0xd7,0x8d,0xf1,0xeb,0x6,0x2b,0x44,0x5d,0xbc,0x9a,0x66,
0x34,0xc4,0x5,0x38,0xa2,0xcc,0x34,0x27,0x25,0xa9,0xf,0x1c,0xb0,0xbf,0x73,0xe0,
0xf2,0x5f,0xd2,0xfd,0x15,0x92,0x61,0x4a,0xf7,0x9b,0xd9,0xb9,0x24,0xb7,0xe0,0xb4,
0xdc,0xcb,0xae,0x0,0xbe,0xff,0x5a,0x11,0xe4,0x77,0xcc,0xfe,0x3,0x34,0xc,0x48,
0xb,0x18,0xfb,0x93,0x92,0x14,0x97,0x91,0x9f,0xc4,0xac,0x49,0xcb,0x35,0x66,0x16,
0x4,0xb3,0x9,0x0,0x6d,0x60,0x80,0xac,0xfd,0x43,0x85,0xc0,0xa0,0x25,0x9b,0x56,
0x41,0x33,0xde,0x80,0xc9,0xca,0x87,0x9a,0x32,0x69,0xe5,0x11,0x65,0xd0,0xca,0x25,
0x4a,0xcf,0x6d,0x4c,0xcf,0x21,0x4a,0x7b,0x29,0x56,0x63,0x2a,0x51,0x38,0x95,0xe1,
0x4b,0xce,0xb2,0x24,0x66,0x28,0xe3,0x53,0x2b,0xe3,0x92,0xa,0xa3,0xe3,0x92,0x23,
0xa3,0x23,0xf7,0x47,0xed,0x27,0x53,0xb7,0x30,0x5f,0x68,0x13,0xac,0x4f,0x69,0x96,
0xee,0x74,0xa9,0x65,0xfe,0x29,0x6c,0xf4,0xa2,0xe2,0x1f,0x9d,0xe8,0x6b,0xd,0x36,
0x20,0xde,0xc3,0xe5,0x94,0xef,0x89,0xdd,0xc9,0xb0,0x5b,0x52,0xdf,0x93,0x8e,0x16,
0x5f,0xda,0xfd,0xa4,0xf2,0x51,0x69,0x48,0xc5,0x8f,0xc0,0x4f,0x9e,0x36,0x22,0xc5,
0xcf,0x46,0xfd,0x43,0xbd,0x73,0x41,0xe7,0x1,0xd2,0xef,0xc2,0xf2,0x5e,0x41,0x75,
0x7,0xa3,0x74,0x36,0x2a,0xf7,0xf4,0x1b,0x69,0x5f,0xfd,0x4b,0xdc,0xc3,0x6f,0xff,
0x4f,0xdd,0xea,0xb7,0x12,0x9f,0x7d,0x87,0x75,0xef,0x87,0x15,0xd7,0xb6,0x2b,0x2e,
0xa5,0x3a,0x4f,0x88,0x5b,0xe6,0x1c,0xdd,0x13,0xd,0x7d,0x23,0xcd,0xbd,0x83,0x4d,
0xc4,0xf1,0xdd,0xc1,0xd6,0xae,0x40,0x53,0xbb,0xb7,0xb1,0xcd,0xd,0xbb,0xd7,0xb7,
0x11,0xc7,0xfb,0x9a,0x51,0xd8,0x90,0xe6,0xd5,0x11,0xd6,0x5a,0x42,0xa,0x63,0x40,
0xaa,0xf5,0x89,0x95,0xee,0x6a,0x99,0xab,0x12,0x6f,0xbc,0xd5,0xd8,0xb9,0x55,0x36,
0x76,0x39,0x86,0x84,0x9a,0x59,0x1c,0x73,0x36,0xdb,0x92,0x99,0x6f,0x49,0x63,0x59,
0x92,0x18,0xb6,0x84,0x4c,0x7b,0x4c,0x9a,0x33,0x2a,0xd5,0x7d,0x30,0xc5,0x17,0x99,
0x1c,0x38,0x90,0x1c,0x8a,0x48,0x6e,0x88,0x48,0xa,0xef,0x4f,0x6a,0xdc,0x8f,0x6f,
0x62,0xfd,0xbe,0x44,0xff,0xbe,0x44,0xf7,0x7e,0x32,0x58,0x4e,0xbf,0xf,0x17,0xea,
0x12,0xea,0xf6,0x61,0xba,0x68,0xcc,0xca,0xf,0x63,0x1f,0xff,0x41,0x45,0x90,0x81,
0x66,0x0,0x3b,0xc4,0x34,0x3,0xf0,0x3d,0x11,0xc5,0x0,0xfe,0x58,0x5e,0x56,0xa2,
0xe8,0x14,0xe2,0x78,0x8f,0x69,0x86,0x5c,0xfb,0xa2,0x19,0x20,0x67,0x7e,0xc0,0xc0,
0x8,0x61,0x40,0x37,0x44,0xf5,0xbe,0x3,0xd2,0x8d,0x6,0x60,0x40,0xaa,0xee,0xaf,
0x43,0x15,0x4,0x0,0x36,0x18,0x18,0xa6,0x19,0x10,0x29,0xc7,0x45,0xca,0x9,0xa1,
0x72,0x52,0xa8,0x0,0x0,0xd3,0xe4,0xe6,0xbb,0xe6,0x81,0x50,0xfb,0x54,0xa8,0x3b,
0x2e,0xd1,0x4d,0x48,0xc8,0xa4,0x68,0x3c,0x17,0xd0,0x2d,0x92,0xb7,0x55,0xd7,0xd6,
0x97,0xf2,0xbc,0x5,0x79,0x8d,0x9,0x71,0x37,0xff,0xf,0xf6,0x89,0x99,0x1d,0x3b,
0x30,0x3d,0x5,0x8b,0x42,0x58,0x2,0x22,0x6b,0xf9,0xd4,0xec,0x13,0x88,0xfc,0x48,
0x48,0x22,0xfd,0x80,0x8b,0xaa,0x85,0x96,0xca,0x84,0x67,0xca,0x24,0x4f,0x89,0xea,
0x4e,0x55,0xd4,0xcd,0xf1,0xc1,0x80,0x64,0xb4,0x42,0xd2,0x5f,0x81,0x9b,0x1e,0xd5,
0xcd,0x25,0xbc,0x40,0x41,0x91,0x33,0x8b,0x66,0x20,0xa2,0xee,0x83,0xdd,0xad,0xff,
0x16,0x79,0x9d,0x7e,0x82,0xe4,0x5b,0xb1,0x5f,0xfd,0x45,0xaa,0x77,0x6b,0x46,0x36,
0x19,0x2b,0x84,0x54,0x80,0x9d,0x32,0xec,0x91,0xbd,0xa8,0x88,0xe,0xc6,0x60,0xa0,
0x27,0xac,0x4f,0x31,0x80,0xdf,0xf8,0xe2,0xa9,0x3c,0x1a,0x6,0xfc,0x25,0xd9,0x4c,
0x88,0x8b,0x4d,0x49,0x8e,0xcb,0xc8,0x4b,0xca,0x2c,0x4d,0x66,0x8,0x53,0x72,0x34,
0xe9,0xb9,0x18,0x68,0xe9,0xc5,0x6a,0xf,0x55,0xf6,0xe0,0xfd,0x2f,0x1a,0x80,0xe6,
0x4c,0x5a,0xff,0x19,0x0,0x2a,0xfc,0xfb,0xd3,0x98,0xae,0x54,0x86,0x39,0x39,0x4b,
0x93,0x94,0x29,0x4b,0x4a,0xab,0x8e,0x4b,0xe1,0xc6,0x26,0xb2,0xa2,0xe2,0x12,0x22,
0x63,0xa3,0x23,0x61,0xf7,0x97,0x4f,0xd1,0xd0,0xc3,0x15,0xe9,0x9,0x73,0x98,0x18,
0x7,0x0,0x66,0x17,0xe0,0xfe,0x17,0x7,0x1c,0xe0,0x7e,0x1c,0x74,0x83,0x50,0xf7,
0xf7,0x76,0xb4,0x87,0x3d,0x7e,0x54,0x3b,0xd4,0x78,0x67,0xe2,0x7e,0x5a,0xc8,0x3,
0x30,0x3d,0xf2,0x0,0x29,0x78,0xe8,0xa2,0x9f,0x72,0x3f,0x9d,0x4,0xa8,0x1e,0x80,
0x2,0x0,0x19,0x40,0x83,0x89,0xe4,0xc2,0xda,0xd6,0xbc,0xf2,0xe9,0xb8,0xfc,0xb5,
0x77,0x32,0xbe,0xf8,0xd7,0xf8,0x7,0x7f,0x16,0xf3,0xc,0x9,0xf4,0xbf,0xce,0x4b,
0x8c,0x7f,0xfe,0xc7,0xcc,0x7,0xff,0x5c,0x76,0xfd,0x3d,0xf9,0x47,0x49,0xf6,0x53,
0xd5,0xcd,0xb,0xb6,0xbe,0x99,0xc6,0xfe,0xf1,0xd6,0xfe,0xe1,0xd6,0xbe,0xa1,0xe6,
0xee,0xfe,0x46,0xc4,0x78,0x38,0x1e,0x1,0x3e,0xdc,0xee,0xe,0xb7,0x63,0x8d,0x12,
0xa6,0xb7,0x63,0xb2,0x2c,0x4a,0x79,0x57,0x23,0x96,0x6b,0xd4,0xe6,0xa0,0xdc,0xe8,
0x97,0x6a,0x3c,0x22,0x85,0xab,0x5a,0xea,0xe4,0x8b,0xed,0x3c,0xbc,0xe3,0x59,0x69,
0x46,0x5,0x9f,0xc7,0x35,0xb1,0x70,0x33,0x3a,0xcf,0x80,0x60,0x93,0xc2,0x30,0x26,
0x64,0x19,0xe3,0x32,0x4c,0xd1,0xe9,0x96,0xe8,0x54,0xdb,0xc1,0x14,0x47,0x64,0x8a,
0x1b,0xf,0x9f,0x1c,0x48,0xa,0x44,0x24,0xd5,0xef,0x4f,0x84,0xdd,0x9b,0xf6,0x25,
0xe0,0xe6,0x5a,0xeb,0xde,0x84,0xb6,0xbd,0x78,0xd0,0x3b,0xbe,0x6d,0x4f,0x5c,0xfb,
0x9e,0xd8,0xfe,0x9d,0xb1,0xbd,0xbb,0xe2,0xdc,0x7b,0x30,0x56,0x31,0x4e,0xbb,0x27,
0x4e,0xbe,0x27,0x4e,0xbc,0x27,0x56,0xba,0x33,0xfa,0xf2,0xff,0x97,0x70,0xf7,0x2f,
0x6b,0xcc,0xc5,0xd8,0x5c,0xc3,0xfa,0xcf,0x46,0x6,0x40,0x15,0x94,0x5f,0x0,0x0,
0xf0,0x5,0x9,0xfc,0x4a,0xae,0xb2,0xf,0x17,0x11,0x15,0x4,0x80,0x69,0x15,0x39,
0xef,0x39,0x41,0xce,0xbd,0x91,0x53,0xf,0x23,0x44,0x60,0x80,0xf4,0xbe,0x74,0xf5,
0xdf,0x5f,0xa7,0xee,0x97,0x10,0x7d,0x33,0x9,0xc,0x8b,0x95,0x0,0x60,0x4c,0xa4,
0x18,0x17,0x2a,0x26,0x84,0x8a,0xc9,0x5a,0xc5,0x34,0x91,0x72,0xa9,0x56,0xf3,0xa8,
0x56,0xf3,0xa4,0x56,0xbb,0x2a,0xd6,0x61,0x50,0xee,0xa8,0x58,0x8b,0xb7,0x2,0xba,
0x85,0xd2,0xd6,0xaa,0xda,0x86,0xd2,0x32,0x5f,0x5e,0x6e,0x4b,0x4c,0xec,0x9d,0x3f,
0xc7,0x79,0x21,0x66,0xd3,0xee,0x42,0x16,0xa9,0x85,0xb0,0x3d,0x4c,0xaa,0x76,0x6a,
0x0,0x16,0x18,0x20,0xb7,0xbd,0x90,0xa,0x92,0x93,0xd9,0x6e,0x56,0xe5,0x51,0x4e,
0xcd,0x62,0xa9,0xf0,0x7c,0xa9,0xf8,0x59,0xa9,0xf8,0x49,0x99,0xe4,0x6c,0xb9,0x64,
0xae,0x42,0x32,0x55,0x21,0x1e,0x29,0x17,0xf7,0x97,0xb,0x3b,0xcb,0x4,0x4d,0xc5,
0xbc,0x40,0x3e,0xdb,0x99,0xcd,0x30,0x26,0xa5,0xa8,0x23,0x23,0xc5,0xdb,0x77,0x8,
0xdf,0xdc,0x35,0xf8,0xfd,0x83,0xf7,0xe9,0xb7,0x1a,0xbe,0x15,0x73,0xe3,0xcf,0x93,
0xbb,0xde,0x48,0xe7,0xc4,0xe2,0x3f,0x96,0x5e,0x23,0x42,0x73,0xc,0xc1,0xe8,0xb1,
0x74,0x12,0x80,0xfb,0x29,0x1,0x0,0xa2,0x7d,0xd4,0x77,0x7f,0x4,0xf5,0x37,0xd4,
0xbc,0x5b,0xea,0x9f,0xc1,0x4c,0x38,0xd2,0x3c,0xc4,0x44,0x25,0xc4,0x46,0x27,0xc5,
0xc7,0x24,0x25,0xc4,0x24,0x25,0xc5,0x24,0xa7,0xc7,0xa4,0x30,0x62,0x53,0x72,0xe2,
0x92,0x19,0x31,0x49,0x59,0x31,0xc9,0x19,0x31,0x89,0xa9,0xd1,0x89,0x49,0xd1,0x89,
0x89,0xd1,0x98,0x1d,0x1d,0x17,0x1d,0x19,0x77,0x90,0xfc,0xbb,0x64,0x6a,0x10,0x3d,
0x61,0x97,0x9a,0x1a,0x44,0xa6,0x8b,0x52,0x13,0x76,0x89,0xe3,0x31,0x4f,0xee,0xe5,
0x1c,0x45,0xcc,0x90,0xdb,0x46,0x6,0xc8,0x6d,0x5a,0xbc,0x0,0x0,0x66,0x8e,0x12,
0x91,0x13,0x3e,0x8,0xfc,0x38,0xe6,0x80,0xd5,0x9e,0xe9,0x95,0xe1,0xf6,0xfa,0x46,
0x4c,0xff,0x44,0x98,0xff,0x86,0xe9,0xd,0x74,0xec,0xff,0x46,0xd9,0x43,0xf2,0x0,
0xfe,0x6,0x0,0x98,0x75,0x3a,0x95,0x53,0x2c,0x6e,0x66,0x57,0x8c,0x27,0x16,0x1e,
0xdb,0x92,0xfd,0xe9,0xbf,0x27,0xdc,0xff,0x4e,0x2c,0x79,0x79,0xf3,0xbf,0x2f,0xce,
0xfc,0x61,0xf6,0xc3,0x7f,0x2a,0xb9,0xf5,0xa6,0xf4,0xb3,0x78,0xdb,0xb9,0x8a,0xe6,
0x55,0x6b,0xff,0x5c,0xe3,0xd0,0x54,0xfb,0xd0,0x58,0x3b,0x1c,0xdf,0x33,0xd0,0xd4,
0xd1,0x5b,0xdf,0xd6,0x1d,0x84,0x50,0xd5,0x34,0x76,0xb8,0x1b,0xf1,0xd6,0x74,0x9b,
0x3d,0xd4,0x8e,0x15,0x1b,0x13,0xed,0x78,0x6b,0x48,0x85,0xa1,0x9,0x3a,0x9f,0x44,
0xe5,0xae,0x91,0xbb,0xaa,0xc4,0xf6,0x72,0x5c,0x16,0xa9,0x32,0x73,0xf8,0xa6,0xc2,
0x32,0x63,0x6e,0x31,0x6,0x41,0xeb,0x33,0xa,0xc,0xe9,0x39,0xfa,0x64,0x86,0x21,
0x21,0xd3,0x10,0x9b,0x61,0x8a,0x49,0xb3,0x44,0xa5,0x59,0xf,0x12,0xd3,0xdb,0x51,
0xd5,0x44,0x26,0xbb,0x31,0x2c,0x31,0x22,0x9,0xcf,0x9f,0x4,0x49,0x8c,0x4f,0x8,
0xef,0x8b,0x27,0xa3,0xf1,0xf7,0xc4,0xb5,0xed,0x89,0x1d,0xd8,0x15,0x3d,0xb3,0xfd,
0xe0,0xb1,0x6d,0x91,0x97,0xb6,0x44,0x5c,0x7f,0x77,0xff,0xc3,0xb7,0xf7,0x3f,0x7b,
0x7b,0xff,0x93,0x77,0x62,0x6,0x77,0xc4,0x39,0xf6,0x26,0x98,0xf6,0x91,0xe7,0x1e,
0x14,0x7,0x92,0x24,0x11,0xf1,0xba,0xed,0xd1,0x37,0xfe,0x24,0xf5,0xf3,0xef,0xb,
0xe5,0xe4,0x10,0x11,0x1a,0x62,0x9a,0x1,0xb8,0x9f,0x93,0x97,0x4f,0x27,0x1,0x64,
0x6,0xbe,0x88,0xab,0x1a,0x16,0x19,0xa7,0x15,0xa6,0x69,0xa5,0x71,0xa,0x7,0x9e,
0x15,0x7a,0x9c,0xfa,0x4,0x3,0x38,0xfc,0x83,0xb3,0xf,0x58,0xf8,0xc7,0xd2,0xe7,
0x20,0x1,0x80,0x4,0xfe,0x7e,0x89,0x8a,0xd6,0x80,0x18,0x55,0x10,0x66,0xb7,0x28,
0x87,0x45,0xca,0x11,0x91,0x62,0x54,0xa8,0x18,0xa3,0x1,0x10,0xca,0xa7,0x28,0x6,
0x66,0x6a,0xc9,0xc0,0x8b,0x27,0x35,0xc0,0x40,0xbb,0x2c,0xd6,0x4e,0x89,0xb5,0x63,
0x84,0x1,0x55,0x4f,0xad,0xb4,0xad,0xb2,0xa6,0x81,0xb,0x6,0x72,0x3a,0xa2,0x63,
0xef,0xff,0x9,0xce,0x8d,0xb2,0x7c,0xfb,0xb,0x30,0x2,0x8,0x37,0xdf,0x51,0x8,
0x51,0xe7,0x9c,0xa9,0xab,0x8f,0x1b,0x13,0x50,0x32,0x53,0x53,0xf0,0xa,0x2f,0x18,
0xa8,0x5e,0xe0,0xd6,0x5e,0x2c,0x15,0x3f,0xa7,0x30,0xb8,0xc4,0x13,0x1f,0x2e,0x17,
0x4f,0x95,0x8b,0x47,0xcb,0x45,0xfd,0x3c,0x30,0x50,0x45,0x16,0x46,0x9,0x3,0x4c,
0x4c,0xfa,0x57,0x1d,0x8c,0x92,0xec,0xdc,0x51,0xf1,0xce,0xfb,0xe2,0x5f,0xee,0x9e,
0xfb,0xeb,0x83,0x4f,0x36,0xb6,0x14,0xa3,0x1f,0xfc,0x7e,0xc2,0xdc,0xbf,0xa5,0x8a,
0xf7,0xa5,0x27,0x51,0x27,0x88,0xa8,0xed,0x2,0xba,0x2b,0xf8,0xda,0xfa,0xd4,0xdb,
0x30,0xc4,0xa9,0x94,0x5f,0xc9,0xf,0xbc,0x96,0xf7,0x5f,0xb4,0xe7,0xbf,0xfd,0xd,
0xfd,0xf,0x50,0x7f,0x4f,0xf,0x52,0x27,0x6f,0x2b,0x51,0x3f,0x60,0xf4,0xc8,0xdd,
0x7b,0xf7,0xef,0x24,0x5e,0xff,0x7a,0x86,0xee,0x8b,0x48,0x4f,0xcd,0x4e,0xa4,0x27,
0x28,0xbe,0x18,0x24,0xfa,0xe2,0xc7,0xa6,0x85,0xb,0xb3,0xe4,0x6c,0xf3,0x85,0x99,
0xa3,0x17,0x66,0x60,0xfd,0xa3,0x17,0xa6,0xb1,0xcf,0x5,0xc,0x46,0x26,0x7a,0xc3,
0xde,0x0,0xaa,0x7f,0x44,0x7a,0x84,0x7c,0x44,0x7a,0x52,0xf0,0x50,0xcd,0x2e,0x5d,
0xf1,0x9b,0xb5,0x3a,0xad,0x43,0x56,0x17,0xe6,0x56,0x8d,0xa6,0x72,0x96,0x76,0x30,
0x3e,0xfa,0x59,0xd2,0xdd,0xbf,0x8a,0x7d,0xf2,0xfb,0xd4,0xb8,0xf3,0xff,0xfc,0x4,
0xdd,0xfa,0xff,0xce,0x7c,0xfc,0xf7,0xec,0x3b,0xaf,0x8a,0x3f,0x8f,0x31,0x5f,0x2a,
0x6e,0x5a,0x33,0xf7,0x1f,0xd,0x8f,0x1c,0xea,0x1c,0x9d,0xec,0x1a,0x1a,0xeb,0xe8,
0x1f,0x69,0xed,0x1b,0x6e,0xe9,0xea,0xf,0x77,0xf4,0x84,0xda,0xba,0x3,0xcd,0x5d,
0x3e,0x2c,0xd7,0x34,0x75,0x79,0x1a,0x3a,0x9c,0xa1,0x76,0x1b,0x89,0xf1,0xcd,0x46,
0x47,0x83,0xc6,0x12,0x54,0x18,0xfc,0x52,0x1d,0x29,0x69,0x88,0xe3,0xf1,0xfa,0x1d,
0x1c,0x2f,0xb0,0x70,0xca,0xcd,0x5,0x25,0x6,0x26,0xc7,0x90,0x5d,0x68,0xc8,0xc8,
0xd3,0xa7,0xb2,0xf4,0x49,0xd9,0xfa,0xf8,0x4c,0x7d,0x6c,0x86,0x31,0x26,0xdd,0x1c,
0xd,0xd3,0xc3,0xf1,0xa9,0x8e,0x83,0xc4,0xf1,0xae,0x3,0x49,0x9e,0x8,0x98,0x3e,
0xd1,0xb7,0x3f,0xd1,0xbf,0x3f,0x21,0xb0,0x2f,0x21,0xb4,0x2f,0x1e,0xf3,0x12,0x3b,
0x76,0x47,0xf,0xef,0x88,0x3a,0xba,0x2d,0xf2,0xcc,0xd6,0x88,0x2f,0x36,0xef,0xbb,
0xff,0xce,0xde,0xa7,0x6f,0xed,0x5d,0x7f,0x73,0xef,0xfa,0x5b,0xfb,0xd7,0xdf,0x3e,
0xb0,0xbe,0x39,0x72,0x7d,0x4b,0xf4,0xfa,0x7,0xf1,0x4f,0x76,0x26,0xdf,0xdb,0x97,
0xd9,0x11,0xcb,0xf0,0x24,0xe6,0x3a,0x52,0xf3,0xcd,0xe9,0xb9,0xba,0x34,0x8c,0xb2,
0x49,0xf3,0xef,0x8c,0x7e,0xf8,0x87,0xd9,0xa7,0x5e,0x15,0x56,0x23,0xd6,0x97,0x61,
0x39,0x8,0x51,0x1f,0x2,0x0,0x9c,0x5c,0x22,0x1a,0x83,0x2a,0x75,0x19,0x16,0xf5,
0xd,0xd3,0x72,0xc3,0xb4,0xc2,0x38,0xad,0x44,0x42,0x0,0x3,0xe4,0xd8,0xf,0x34,
0x22,0xc3,0x9a,0xf,0x11,0x18,0x18,0x7c,0xd1,0x0,0xc0,0xfd,0x3,0x62,0xe5,0x80,
0x8,0x0,0x28,0x86,0x8,0x3,0x8a,0x11,0xa,0x80,0x71,0xa1,0x7c,0xa2,0x16,0x0,
0xc8,0xa7,0x6b,0xe4,0x33,0x44,0x8a,0xb5,0x1a,0xf5,0xd3,0x1a,0xf5,0x83,0x1a,0xed,
0x92,0x48,0x3b,0x2d,0xd6,0x8c,0x89,0x34,0x43,0x22,0x55,0x6f,0xad,0xb4,0xbd,0xb2,
0x3a,0x5c,0x52,0xea,0xcf,0x65,0xf5,0x1e,0x88,0x79,0xf0,0x87,0xd8,0xf6,0x66,0x39,
0xe,0x50,0x27,0x46,0x9,0x3,0x24,0x9,0x50,0xc3,0x7f,0xc8,0xe5,0x77,0x2a,0xf,
0x64,0xa6,0xa5,0x14,0x5,0x19,0x7c,0x9a,0x81,0xb,0x5c,0xd1,0x33,0xae,0xe8,0x39,
0x57,0xfc,0x71,0x99,0x78,0xae,0x5c,0x34,0xcd,0x13,0x8d,0xf2,0x84,0xfd,0xbc,0xda,
0xce,0x52,0x8c,0xf4,0x41,0x1e,0xe0,0x38,0x19,0x2c,0x43,0x72,0x8a,0x32,0x2a,0x5a,
0xb2,0x6b,0x77,0xe5,0x96,0x2d,0xc5,0xaf,0x6f,0x91,0xfe,0x6c,0xd7,0xd4,0xdf,0x44,
0xde,0x7d,0xf1,0x72,0xcf,0xd3,0xdf,0x8e,0x3b,0xf7,0xf7,0x49,0xc1,0x77,0x52,0x8b,
0xf,0xa6,0xc4,0x93,0xde,0x80,0xbc,0x3,0x40,0xad,0xe,0x7d,0x33,0xf,0xd0,0xee,
0xff,0xef,0x0,0xc0,0xd6,0x2f,0x45,0x8d,0xc8,0xa5,0x1e,0xce,0xa0,0x9f,0xcf,0xa0,
0x4c,0x4f,0xf,0x8b,0xde,0x8f,0xe8,0x8e,0x91,0xd1,0x64,0x6a,0xf4,0x7f,0x9d,0x20,
0x4d,0x17,0x39,0x74,0xd4,0x7f,0x59,0xf3,0xd0,0x0,0x90,0xe9,0xb9,0x2f,0x7e,0x0,
0x80,0x19,0xe8,0xc8,0x85,0x69,0x72,0xbe,0xed,0xfc,0x24,0xe,0x39,0x93,0x93,0xe,
0x67,0x27,0xc8,0x3a,0xa7,0xc7,0x87,0xd2,0x9f,0x6e,0x7c,0x21,0x6a,0xb5,0x7,0xc,
0x68,0x2b,0x26,0x13,0x98,0x97,0x7f,0x9e,0x7c,0xfb,0xef,0xe2,0x1e,0xff,0xe1,0xff,
0xb4,0x38,0xf3,0xbf,0xd2,0x9f,0xfc,0x4d,0xc1,0xbd,0x9f,0xa,0xaf,0x45,0x1a,0xaf,
0xe6,0x37,0x9e,0x31,0xf6,0x2f,0x37,0x8c,0xce,0x77,0x8d,0xcf,0xf6,0xc0,0xf1,0xc3,
0x13,0x9d,0x83,0xa3,0xed,0x3d,0x83,0x4d,0x5d,0xa4,0x79,0xad,0x6f,0xeb,0xd,0xb6,
0xf6,0x6,0x9a,0x7b,0xbc,0x4d,0xdd,0x9e,0x70,0x97,0x33,0x80,0x47,0x53,0x5a,0x4c,
0xee,0x26,0x83,0x1d,0x8e,0xaf,0x57,0x1a,0x2,0x75,0x94,0xe3,0xab,0xff,0xff,0xbe,
0xfe,0x3,0x4a,0xb2,0xe4,0xbc,0xce,0x45,0x5b,0xf7,0x5d,0x4a,0xa2,0x24,0x3e,0x51,
0xa2,0xa4,0x27,0x52,0xd2,0x95,0xbb,0xa4,0x8,0x2,0x83,0xe9,0xf1,0xa6,0xbd,0xf7,
0xbe,0xcb,0xfb,0xaa,0xac,0xca,0x4a,0xef,0x4d,0x65,0x65,0x65,0xa5,0xf7,0xbe,0x32,
0xcb,0x7b,0x6f,0xba,0xaa,0xda,0xf7,0x4c,0x7b,0x33,0x3d,0xa6,0x67,0xe0,0x1,0x2,
0x24,0x48,0x10,0x96,0x24,0x40,0x10,0x4,0xe1,0xc7,0xf6,0xdb,0x7f,0x44,0x9c,0x93,
0xd9,0x3d,0x23,0xad,0xb5,0x57,0xac,0xec,0x9e,0x1,0xb0,0x16,0xf9,0xed,0x1d,0x3b,
0xe2,0xc4,0x89,0x3,0xdc,0x3,0xc3,0x4e,0x7c,0x97,0xdc,0x3d,0x60,0x74,0x16,0xb5,
0xb6,0x82,0xca,0x52,0x50,0x1a,0xfb,0x14,0xda,0x7c,0xb3,0xba,0xaf,0x51,0x59,0xa8,
0xa3,0x8c,0x2f,0xd6,0xb4,0xf,0xb0,0x98,0x1f,0xae,0x6a,0x1d,0x61,0xc4,0x4f,0x54,
0x34,0x4f,0x52,0xcc,0x37,0x42,0x20,0x9e,0x41,0x5f,0xb7,0x7c,0x1c,0x65,0xa6,0xea,
0xde,0xc1,0x8a,0xaf,0xec,0x3b,0xf5,0xfd,0x5d,0x27,0x7e,0xb6,0xe3,0xf8,0x7b,0x5b,
0x8f,0x7f,0xb4,0xf5,0xd8,0xc3,0x2d,0x27,0x1e,0x6e,0x3b,0xf5,0x70,0xe7,0xc9,0x87,
0x3b,0x2a,0x1f,0xee,0xa9,0x79,0xef,0x60,0xed,0x4f,0xf,0x37,0x7c,0xff,0x58,0xd3,
0xd7,0x4f,0x37,0xbf,0x55,0xd1,0x76,0xbd,0x46,0x79,0xb5,0xd1,0xf0,0x8f,0xad,0xe6,
0x1f,0x77,0x38,0xce,0xea,0x5c,0xb,0x6,0xcf,0xac,0xb5,0x7,0xb7,0x5b,0xe,0xe8,
0x2d,0xd9,0x4e,0xe5,0xe5,0xfd,0x78,0x50,0x6a,0x7c,0xfd,0x60,0xa0,0xa7,0x7,0x4f,
0x6,0xe0,0x1,0x1b,0x5b,0x3,0xc0,0x3,0x16,0xad,0x9e,0x6c,0xc0,0x3c,0xe0,0x1f,
0xea,0xc6,0x93,0xdd,0x3e,0x9c,0xf5,0x7f,0x2d,0x49,0xe3,0xbd,0x64,0x1e,0x1e,0xb8,
0x1d,0xcf,0xdd,0x8c,0xd3,0x63,0x2f,0xec,0xfd,0x63,0xeb,0xf3,0x6a,0x4,0xa2,0xec,
0xe7,0xf4,0xbf,0x1a,0x4a,0x62,0x6,0xb8,0x16,0x4a,0x5e,0xf,0x92,0x1,0x6e,0x6,
0x13,0xb7,0x2,0x89,0xdb,0x81,0xc4,0x5d,0x7f,0xfc,0x1e,0xd1,0x1f,0x7f,0xdd,0x7,
0x25,0xff,0xdc,0x97,0xfe,0xd0,0x9f,0xfe,0xa5,0x3f,0xfb,0xb9,0x50,0x16,0xf7,0x45,
0xdf,0xa,0xe1,0xcb,0x0,0xf0,0x40,0x4,0x5f,0x1e,0x59,0xb6,0xd9,0x67,0x34,0xaa,
0xab,0xc7,0xaa,0xdf,0xfb,0xed,0x9a,0x5f,0xff,0xb,0xed,0x40,0x35,0xdb,0x18,0x6d,
0x6f,0xc7,0x75,0xd0,0x6c,0x1e,0x68,0x65,0x93,0x0,0xed,0xe8,0xd7,0x37,0x74,0xb4,
0x35,0x9b,0xe7,0xd4,0x3d,0x6f,0x5b,0x70,0x5c,0xc2,0xff,0x67,0x8e,0xe0,0xfb,0xe,
0x5c,0x4a,0x10,0xfa,0x91,0x33,0xf4,0xc0,0x15,0xbc,0xe7,0xa,0xde,0x82,0x7,0xba,
0xfc,0xe7,0x9d,0xde,0x33,0xd4,0x85,0xac,0x63,0x6a,0x6d,0xb1,0xb5,0x2d,0x5d,0x53,
0x13,0x3e,0x76,0xd2,0xb7,0x7f,0xbf,0x63,0xcb,0x76,0xc3,0xf3,0x3b,0x5c,0x4f,0x1f,
0x3c,0xfb,0x3f,0x4e,0xfd,0x10,0x6b,0x3,0xe9,0x4e,0xc2,0x77,0xff,0x59,0xed,0x5f,
0xfe,0x97,0x86,0xc5,0x4d,0xcd,0x5d,0xa7,0xe1,0x4,0x9a,0x10,0x50,0x6f,0x78,0x2f,
0xe2,0xa5,0x88,0x2d,0x9,0xb8,0x7,0xca,0x9d,0xc0,0xd,0x40,0x1f,0x11,0x3b,0x4a,
0x3f,0x4e,0xb1,0xbc,0xe7,0x66,0xe0,0xc5,0x86,0xdd,0x98,0x4b,0x25,0xa7,0x5c,0xe2,
0xfe,0x74,0x96,0xfd,0x9c,0xfb,0x63,0x5c,0x8c,0xf8,0xf2,0x49,0x80,0xdb,0x60,0xc3,
0xe7,0xfe,0xa,0xd9,0x4f,0x87,0xfb,0x21,0x1c,0x6f,0xc6,0x11,0xb7,0x7,0x7f,0x79,
0xe7,0xce,0xe7,0xaf,0x9e,0x5b,0x5c,0x41,0xff,0xc1,0x2,0x0,0xd0,0xf3,0xec,0x67,
0x1b,0x3e,0xb0,0x42,0xba,0xf6,0x83,0xdf,0x29,0xcb,0xf8,0x7f,0xd2,0xf2,0xc1,0x7f,
0xd4,0xff,0xea,0xd3,0xbe,0x7f,0x38,0x51,0xf8,0x6b,0xcd,0xc2,0x5f,0x66,0x5f,0xf9,
0xea,0xfc,0xad,0x77,0x2e,0xdc,0x7d,0xeb,0xca,0x9d,0xd7,0xaf,0xdc,0x7c,0xed,0xe2,
0xf5,0xbb,0xe7,0x5f,0xb9,0xb9,0x76,0xf9,0xfa,0x99,0x4b,0xd7,0x97,0x2f,0x5c,0x5b,
0x5a,0x7f,0x65,0x76,0xed,0xca,0xcc,0x99,0xcb,0x53,0xcb,0x17,0xc7,0x97,0x2e,0x8e,
0xcd,0x9d,0x1b,0x9a,0x5a,0xeb,0x1f,0x5f,0xc9,0x8f,0x2c,0x11,0xf1,0xb8,0x6,0x27,
0x37,0x1d,0x4a,0x4e,0x78,0x43,0x68,0xf0,0x23,0x4e,0xef,0xb0,0xd5,0x3d,0x68,0x44,
0x83,0xb7,0x16,0x3b,0xd,0x85,0x56,0x5d,0xa1,0x45,0xd3,0xd7,0xa8,0xea,0x6b,0xe8,
0x2c,0xd4,0x29,0x8b,0xd4,0x6a,0xd0,0xe3,0x15,0x43,0xd5,0x6d,0x23,0x55,0xad,0xa3,
0x55,0xad,0x63,0x95,0x2d,0xe3,0x65,0xd0,0x4f,0x33,0xe8,0xe7,0x4f,0xd4,0x9d,0x3b,
0x56,0x73,0xeb,0x70,0xd5,0x17,0xe,0x54,0x7c,0x6b,0xcf,0xc9,0x9f,0xec,0x3c,0xf1,
0xee,0xf6,0xe3,0x1f,0x2,0xf7,0xad,0x27,0x1e,0x6e,0x7,0xeb,0x20,0xfe,0xd4,0xc3,
0x5d,0xd5,0x1f,0x1c,0xa8,0xf9,0xf9,0xa1,0xfa,0xbf,0x3e,0xd6,0xf0,0x8d,0x93,0x4d,
0xf,0x2a,0x5a,0x81,0xfb,0x65,0xba,0xfb,0x5b,0x7b,0x51,0x61,0xbc,0xd2,0x69,0xba,
0xa2,0xb2,0xbc,0xa2,0x71,0xbe,0x62,0x70,0xdd,0x37,0x79,0xdf,0xb5,0x6,0xbe,0xe7,
0x8c,0x5e,0xf2,0xc4,0x71,0x4f,0xf5,0xb2,0x2f,0x3a,0xe3,0xe9,0x1d,0xb2,0xd9,0x73,
0xda,0xf6,0xb7,0x36,0xd7,0x7c,0xf0,0xcf,0x1d,0xe7,0xea,0xb1,0x20,0x46,0x11,0xe2,
0x8b,0x60,0x86,0xbe,0xc1,0x4c,0x1f,0x3b,0xd2,0xc3,0x3,0x4e,0x8b,0x25,0x38,0xdb,
0x93,0xbd,0x13,0xe9,0xa3,0x79,0x20,0x41,0xa7,0x9d,0xef,0x26,0x72,0x38,0xf8,0x9,
0xdd,0xc2,0xd9,0x7,0x3c,0xfd,0x8d,0x65,0xae,0x47,0x33,0xd7,0xc8,0x3,0x29,0x18,
0x80,0xf5,0x1f,0x18,0x0,0x33,0x40,0xf2,0x7a,0x28,0x71,0x23,0x90,0xb8,0x19,0xe0,
0x6,0x88,0x33,0x3,0xc4,0xef,0x13,0xfd,0xf1,0x37,0x7c,0xf1,0x37,0x7d,0xc9,0x6f,
0xf9,0xd2,0x1f,0xf9,0xd2,0x3f,0xf7,0x67,0xdf,0x21,0xf,0x64,0xf0,0x81,0x8c,0x6b,
0xc1,0xe4,0x65,0xbc,0xe7,0xe5,0x46,0x66,0xdb,0x66,0xd5,0x1d,0x37,0xe,0xa1,0x8,
0xe1,0x7d,0x62,0x5d,0xb6,0xe,0xf3,0x40,0x67,0xab,0x82,0x76,0x84,0xd0,0x82,0xe0,
0x1,0x76,0xf5,0x43,0xb,0xc6,0xba,0x86,0x76,0x78,0x60,0x49,0xed,0x7e,0x60,0xe9,
0x7d,0xdb,0xee,0xfb,0x9a,0x3d,0xf8,0x1b,0x7b,0xf0,0xa1,0x3d,0xf8,0x33,0x47,0xf0,
0x8b,0x5d,0xc1,0x7b,0x5d,0x81,0x9b,0x5d,0x81,0x57,0x9c,0xbe,0xb,0x8e,0x5e,0x78,
0x0,0xfb,0x42,0x63,0x6a,0x7d,0xbf,0xa2,0x3d,0x5d,0x5b,0x1f,0x3e,0x79,0xda,0x77,
0xe0,0x70,0xf7,0x8e,0x5d,0xa6,0x97,0xb6,0x69,0x9e,0xdb,0x66,0x7c,0x66,0xef,0xf0,
0x1f,0x1f,0xff,0xda,0xef,0x55,0xbe,0x5b,0xb6,0x9b,0xf7,0xde,0x6f,0xd5,0x7c,0xf7,
0xf,0x1a,0xce,0xbe,0xd0,0x98,0xdc,0xdf,0xa4,0xaf,0x6c,0xaa,0xc5,0x42,0xb9,0x46,
0xde,0x30,0xe5,0xdb,0x44,0x7c,0x36,0xa8,0x28,0xeb,0x42,0x64,0x3,0x2a,0x3c,0xb0,
0x81,0x6c,0x80,0xb2,0xcb,0x40,0xf9,0x47,0x34,0xa4,0xf,0x8,0xf0,0x1f,0x8f,0x9,
0xf4,0x8b,0xa9,0x80,0xdf,0xb1,0x2e,0x2d,0x82,0x4f,0xe0,0xba,0xe9,0x96,0x3,0x64,
0x0,0x8a,0xff,0xbf,0xba,0xf7,0xe0,0xaf,0xee,0x92,0x1,0xbe,0x75,0x7,0xe3,0xd5,
0x1b,0x17,0x96,0xa7,0xe7,0xf0,0xa1,0x17,0x79,0x9f,0x87,0xdb,0x0,0xbb,0xfe,0xa1,
0x1b,0xba,0xc6,0xf,0x7f,0xc7,0xf3,0x8f,0x87,0x72,0x7f,0xa3,0x98,0xfb,0xcb,0xd4,
0x95,0xaf,0xcd,0xdd,0xf9,0xfc,0xa5,0xfb,0xef,0x5c,0xbb,0xf7,0xe6,0xab,0x8c,0xf8,
0xb,0xd7,0xee,0x9e,0x7b,0xe5,0xd6,0x2a,0x74,0xf1,0xc6,0xf2,0x85,0xeb,0x8b,0xe7,
0xae,0xcd,0xaf,0xbd,0x3a,0x3,0x2d,0x5f,0x9e,0x58,0xba,0x3c,0x36,0x7b,0x6e,0x70,
0x6a,0xbd,0x9f,0x9e,0x3d,0x2d,0xa5,0xfa,0x17,0x12,0xf9,0xd9,0x70,0x6a,0xca,0x1f,
0x9f,0xf4,0xe0,0x73,0xe4,0xbe,0x61,0x5b,0xcf,0x90,0xc9,0x89,0xa7,0x4e,0xfd,0x6a,
0x4b,0xb1,0x43,0xf,0xe2,0x8b,0x2d,0xea,0x62,0x63,0x67,0xb1,0x5e,0xd9,0x5f,0xa7,
0x1c,0xa8,0xed,0x18,0xac,0x6d,0x1f,0xaa,0x69,0x1f,0xae,0x51,0xe0,0xbe,0xff,0xd1,
0xaa,0xb6,0x71,0xb6,0x6f,0x33,0x89,0x98,0xaf,0xa0,0x55,0x2c,0x11,0x7f,0xaa,0x7e,
0xf5,0x4,0x35,0xf8,0x7,0x87,0x2a,0xfe,0x6c,0xdf,0xa9,0x1f,0xed,0x3a,0xf9,0xab,
0x1d,0x27,0x3f,0xd8,0x71,0xfc,0xe1,0x36,0x9,0xf7,0x5d,0x95,0xf,0xf7,0x56,0x7d,
0xb4,0xbf,0xf6,0x97,0x87,0x1b,0xfe,0xf6,0x78,0xe3,0x9f,0x9f,0x2,0xee,0x2d,0xd7,
0xab,0xdb,0xce,0xd6,0x29,0xcf,0x34,0xa9,0xcf,0xb4,0xe9,0xf0,0xbd,0x65,0x7c,0xd4,
0xfe,0x82,0xce,0x71,0x9,0xc7,0xb9,0x4c,0xee,0xab,0x56,0xcf,0x35,0x87,0xef,0x46,
0x57,0xe0,0x56,0x77,0x8,0xfb,0xe2,0xb7,0xbd,0xc9,0xaf,0x6,0xf2,0x1f,0x86,0xa,
0xdf,0x8c,0xe1,0xb3,0xd5,0x83,0x57,0xd2,0xfd,0x67,0x93,0xd9,0x85,0x70,0x64,0xac,
0xa7,0xab,0xa8,0x6f,0xf9,0xe6,0x13,0xb5,0xef,0xfe,0x4e,0xcf,0x94,0x96,0x1f,0x91,
0xa0,0x16,0xc4,0x2a,0x90,0x59,0x4b,0x27,0x34,0xe1,0x1,0x58,0xc2,0x69,0xb3,0x84,
0x57,0x7b,0x73,0x38,0xe4,0x7c,0x3f,0x1,0x1b,0xe4,0xef,0xc5,0xf3,0x77,0xe3,0x38,
0xf9,0xc,0xf,0xe0,0xe0,0x43,0xe6,0x6,0x14,0x49,0x5f,0x8f,0x60,0xf7,0x93,0xaa,
0x3f,0xa7,0xff,0x6a,0x90,0xcf,0x0,0x89,0x1b,0x50,0x20,0xe,0xf,0xc0,0x0,0x77,
0x60,0x0,0x1f,0xc,0x10,0x7b,0xdd,0x17,0x7b,0xc3,0x17,0x7b,0xd3,0x1b,0x7f,0xcb,
0x97,0xf8,0x9e,0x37,0xf5,0x91,0x37,0xfd,0x53,0x7f,0xe6,0xed,0x60,0x6,0xdf,0xa,
0xb8,0x1d,0xc4,0x29,0xff,0xc4,0x15,0x6f,0xe8,0x9c,0xb,0x77,0xef,0x58,0xe7,0x55,
0x1d,0xaf,0xed,0xc3,0x82,0xb8,0xf6,0x67,0xff,0x46,0x9b,0x68,0xa0,0x93,0x42,0x58,
0x10,0xb3,0xe7,0x62,0x74,0xce,0x99,0xbd,0xe7,0x45,0x6f,0xfd,0xd6,0x37,0xb6,0x2b,
0x9a,0xf1,0x50,0xb6,0xfb,0x2d,0x73,0xef,0x3,0x9b,0xf7,0x8b,0xf6,0xc0,0x2f,0x6c,
0x81,0x87,0xb6,0xc0,0xfb,0xb6,0xc0,0x5f,0x38,0x2,0xf7,0x9c,0xfe,0x9b,0x4e,0x5c,
0xbb,0x42,0x1e,0x58,0xb5,0x76,0xcf,0x9b,0xec,0x93,0x5a,0xc3,0x40,0xbb,0x32,0xd3,
0xd0,0x18,0x39,0x5d,0xe9,0x3b,0x7c,0xcc,0xbd,0x7b,0xbf,0x7d,0xeb,0x2e,0xc3,0x4b,
0xdb,0x54,0xcf,0x6d,0xed,0x7c,0x76,0xbb,0xe3,0xa9,0x7d,0xd3,0x7f,0x78,0xec,0xcb,
0xff,0xbe,0xf2,0xd7,0xe5,0x1f,0x35,0xfc,0xbf,0xaa,0x7f,0xf3,0xcf,0x6a,0x7e,0xf0,
0xfb,0xb5,0x77,0x3f,0x5d,0x37,0xb6,0xb5,0xd1,0x75,0xbc,0xb1,0x99,0x1d,0xa6,0x60,
0xcf,0x10,0xf8,0xe6,0x69,0x15,0x5f,0x1f,0xb3,0x91,0x66,0x86,0xe3,0x27,0xcb,0x4b,
0x91,0xf8,0x92,0xd2,0xa3,0x96,0x28,0x9f,0xd,0x78,0x53,0x2,0xeb,0x6c,0x96,0x60,
0xd3,0xc5,0x89,0xa3,0xa7,0x3b,0xe,0x9e,0x76,0xec,0x3a,0x5d,0x7c,0xa1,0xe2,0xcc,
0x67,0x2b,0xdf,0xfe,0xaf,0x95,0x3f,0xf8,0x77,0x55,0xbf,0xfe,0xa7,0x1b,0x80,0x3e,
0xd1,0xff,0x6d,0x7a,0xb5,0x85,0xde,0x6e,0xf9,0xd6,0xed,0x37,0xff,0xe2,0xd6,0xb9,
0xe5,0x95,0xd9,0xd1,0x89,0xa1,0x3c,0xed,0xf9,0xf0,0x87,0x5c,0x7c,0xa5,0x3b,0xdc,
0x57,0xd4,0x7f,0xfb,0xe5,0xf0,0x8f,0x6a,0x5e,0x7f,0xfd,0xfa,0x6b,0xf7,0xaf,0xde,
0xb9,0x77,0xf9,0xd6,0xdd,0x4b,0xd7,0x6e,0x9f,0x25,0xe2,0x6f,0xaf,0x5e,0xbe,0xb5,
0x7c,0xfe,0xc6,0x2,0xf6,0xe6,0xd7,0xaf,0xcf,0xac,0x5e,0x9d,0x5a,0xc6,0xb7,0xb4,
0x2e,0xe,0x4d,0x9f,0xef,0x1f,0x5f,0xcf,0x8f,0xae,0x65,0x71,0xbf,0xd,0xe,0x17,
0x64,0xe7,0x83,0xf1,0xe9,0xde,0xc8,0x64,0x77,0x60,0xdc,0xe1,0x1d,0xb5,0x76,0xf,
0xe9,0x1d,0x83,0xb4,0x29,0x69,0x28,0x62,0x8b,0xa6,0x59,0x53,0x6c,0xc2,0x2e,0x8d,
0xaa,0xbf,0xa1,0x73,0xa0,0x5e,0x39,0x58,0xdb,0x31,0x5c,0x8b,0xef,0xab,0xb5,0x8f,
0xd6,0x28,0xc6,0xaa,0x81,0x7b,0xdb,0x44,0x55,0xeb,0x24,0x88,0xaf,0x6c,0x99,0x2,
0xf1,0x15,0x4d,0xd3,0xa7,0x1b,0x97,0x4f,0xd6,0x5f,0x3a,0x56,0x7b,0xff,0x70,0xd5,
0x57,0xf,0x54,0xfc,0x60,0xef,0xc9,0x5f,0xec,0x3c,0xf1,0xfe,0xf6,0x47,0x71,0xdf,
0x57,0xf3,0xf0,0x40,0xcd,0x6f,0xe,0xd5,0xfd,0xf8,0x68,0xe3,0xb7,0x4e,0x35,0x7f,
0xae,0xb2,0xf5,0x66,0x8d,0x62,0xad,0x5e,0xb9,0xd4,0xac,0x5e,0x68,0xd3,0x2f,0x2a,
0xcd,0x78,0x11,0x9,0x2f,0x68,0xe3,0x32,0x82,0xb3,0x96,0x9e,0xf3,0x76,0xcf,0x5,
0x87,0xf7,0x12,0x42,0xae,0x3b,0x74,0xd5,0x13,0xbb,0xe1,0x3,0x6a,0xa9,0xbb,0xe1,
0xd4,0x5d,0x64,0x6a,0x34,0x77,0x3f,0xc6,0x6f,0x9b,0x1b,0xfa,0x6e,0x66,0xf4,0xc3,
0xec,0xd8,0xd7,0xfa,0x26,0x6e,0xe1,0x36,0xcf,0xe2,0xf0,0xb9,0x6c,0x7e,0x31,0x1a,
0x1e,0xed,0xe9,0x1a,0xd1,0x36,0xfc,0xf0,0xff,0x69,0xfc,0xe9,0xef,0x7b,0xb3,0x56,
0xbe,0x18,0x0,0xf1,0x16,0x9d,0x9e,0xcf,0x0,0xf0,0x0,0xef,0x42,0x4e,0x97,0x39,
0x7e,0xc9,0x8f,0x3,0x9e,0x7d,0xf7,0xe3,0xf9,0xd7,0xe2,0xf0,0x40,0xe,0xc7,0x9e,
0x65,0xf,0xe0,0xec,0x3,0xf7,0xc0,0xf5,0x8,0xb8,0x27,0xf4,0x11,0xe4,0xa0,0x1f,
0x28,0xc3,0x0,0x37,0x61,0x0,0x7f,0xfc,0xb6,0x1f,0x6,0x88,0xdd,0x85,0x1,0xfc,
0xcc,0x0,0xde,0xd8,0x5b,0xa4,0xe8,0x83,0xde,0xc4,0xdf,0x78,0x53,0xf,0xbd,0xa9,
0x9f,0xf8,0xd2,0xef,0xe0,0xfb,0x0,0xc1,0xf4,0xdd,0x40,0x1a,0x9e,0x79,0xa5,0x17,
0xfb,0x98,0x3d,0xab,0x66,0xf3,0xbc,0x52,0xf1,0xd6,0x4e,0x9c,0x8,0xc4,0xd,0x28,
0xfa,0x50,0xb3,0xb6,0x3,0xdf,0xc5,0xc3,0xc9,0x36,0x7a,0x32,0xd0,0x5c,0x5b,0xf,
0xfa,0xb9,0xe0,0x84,0xf6,0xf6,0x66,0x3c,0x90,0x72,0xbf,0x69,0xf1,0xbc,0x69,0xed,
0x7d,0xc7,0xe6,0xfb,0x3b,0x9b,0xff,0xa1,0xcd,0xff,0x91,0xd5,0xff,0x23,0xbb,0xff,
0xd,0x87,0xef,0xa6,0xc3,0x77,0xd5,0xe1,0xbd,0x68,0xf7,0xac,0x5b,0xbb,0x97,0x4c,
0xce,0x69,0x3d,0x6e,0xf2,0xd1,0xe4,0x5b,0x9a,0x63,0x95,0xd5,0xfe,0xa3,0x27,0xdd,
0xfb,0x8f,0x3a,0x77,0xed,0xb7,0x6e,0xd9,0xa5,0x7b,0x69,0x9b,0xf2,0xb9,0x2d,0x8a,
0x67,0xb6,0xb4,0x3f,0xbb,0xdd,0xfc,0xf4,0x81,0xb1,0x3f,0x39,0xf1,0xf9,0xdf,0xaf,
0xf8,0xe9,0xbf,0xe4,0x37,0xf4,0x97,0xf4,0xc1,0x6f,0x55,0xff,0xec,0x5f,0x56,0x7f,
0xff,0xf7,0x6b,0xbe,0xf4,0x3f,0x6a,0x2e,0x3d,0x59,0x3b,0xf3,0x72,0x5d,0x7c,0x57,
0x9d,0xfd,0x48,0x6d,0xe7,0xc9,0xba,0xa6,0xd3,0xb5,0x6c,0x6f,0x7,0x96,0xe0,0x35,
0x49,0x5e,0x30,0xd0,0x8f,0xe3,0x62,0xe9,0xcc,0x9b,0x12,0xad,0x8c,0x2b,0x8e,0x55,
0xb6,0x1d,0x39,0xad,0x3d,0x70,0xda,0xb6,0xbb,0x32,0xb2,0xa5,0x72,0xe8,0xc5,0x8a,
0xf9,0x67,0x2a,0xae,0xfe,0x51,0xe5,0x9f,0xfd,0xa7,0xca,0x1f,0xff,0xeb,0xaa,0xdf,
0xfc,0x53,0xf1,0x31,0x8e,0xd2,0xff,0xfa,0xff,0xb5,0xe1,0xc1,0xb7,0xef,0xbd,0xfd,
0x9d,0x7b,0xf,0xbe,0x73,0xf7,0xc1,0x77,0xee,0xbc,0xf5,0x6d,0xe8,0xf6,0xad,0xcf,
0x5f,0x39,0x33,0xbb,0x30,0x39,0x38,0xc2,0xb9,0x97,0x1e,0x72,0xb1,0x7d,0x9e,0x91,
0x6c,0xfd,0xfb,0xbf,0x3b,0xf5,0x85,0xf8,0xd5,0xeb,0xeb,0xaf,0x5c,0x3b,0x73,0xf9,
0xda,0xf2,0xc5,0xeb,0x4b,0x17,0x6f,0x2e,0x12,0xf1,0xd7,0xa6,0x16,0x5f,0x1d,0x9d,
0xc7,0x8d,0x99,0x97,0xfa,0x27,0xce,0xf7,0xd,0xaf,0xa7,0x7,0x56,0x13,0xf9,0xe5,
0x70,0x66,0x31,0x10,0x9b,0xf5,0x84,0xa7,0xbb,0x70,0xac,0xa0,0x67,0x1c,0x4f,0x9d,
0x74,0xf6,0x11,0xb5,0x69,0xa8,0x1d,0x7b,0xf0,0xba,0xc1,0x16,0xed,0x40,0x93,0x7a,
0x10,0x37,0x28,0x36,0x74,0xe,0xd7,0x2b,0x87,0xeb,0x94,0xa3,0x75,0x1d,0xa3,0xb5,
0x1d,0x63,0x35,0xed,0xe3,0x35,0x8a,0x89,0x1a,0x7c,0x60,0xb0,0x75,0x8a,0xd4,0x32,
0x5d,0xd9,0x3c,0x5d,0xd1,0xb4,0x70,0xba,0xe1,0xc2,0x89,0xba,0xdb,0x47,0x6b,0xbe,
0x78,0xa8,0xf2,0x3b,0xfb,0x4e,0xff,0xe3,0xee,0x93,0xef,0xee,0x3c,0xf1,0xd1,0xe,
0xa4,0x3b,0x6f,0x32,0xa7,0x1f,0xee,0xa9,0x7a,0xb8,0xbf,0xe6,0xfd,0x83,0xf5,0x3f,
0x3d,0xda,0xf4,0xdd,0x53,0x2d,0x5f,0xc6,0xbd,0xb9,0x35,0xa,0x5c,0xba,0x88,0x7,
0x81,0x73,0x6d,0xfa,0xb9,0x4e,0xf3,0x82,0xc6,0xb6,0x88,0x97,0x53,0x8d,0xae,0x15,
0x4b,0xcf,0xaa,0xa3,0x77,0xdd,0xe9,0x3f,0xe7,0xe,0x9e,0xef,0x89,0x5c,0xf4,0x46,
0x2f,0xf9,0x12,0xaf,0x4,0x93,0xf8,0xd2,0x28,0x1d,0x40,0x88,0x62,0x8f,0xb2,0xff,
0x6e,0xba,0x78,0x2f,0x3d,0xf8,0x7a,0x76,0xf0,0x8d,0xec,0xd0,0x9b,0xb9,0xe1,0xb7,
0xf2,0x23,0xf,0xfa,0x46,0x1f,0x14,0xc6,0xde,0x2e,0x4c,0xfc,0xb8,0x38,0xf5,0x5e,
0x71,0xea,0x73,0x3,0xf4,0x1d,0xa4,0x57,0xfa,0x87,0xcf,0xe6,0xf2,0xf3,0xd1,0xf0,
0x70,0x8f,0x75,0xba,0xad,0xf6,0x17,0xff,0xa6,0xed,0xfb,0x7f,0xec,0xb,0xd1,0x59,
0x51,0x7,0xf3,0x0,0xc,0x60,0xc2,0x17,0x2e,0x34,0x3a,0x9a,0xa,0xb4,0x3a,0xfc,
0x8d,0xcb,0x67,0x4d,0x5c,0xb,0xe4,0x5e,0x8b,0xe5,0xc9,0x3,0x31,0x4c,0x8,0xd9,
0x7b,0xec,0xe0,0xe7,0xed,0x68,0xfa,0x56,0x4,0x8f,0xbd,0xe8,0xc9,0xd7,0x8d,0x30,
0x2d,0x7c,0xa9,0xfa,0x8b,0x5,0x0,0xa3,0x3f,0x10,0xbf,0xc5,0xc,0x40,0x15,0xc8,
0x17,0x7f,0xcd,0x1f,0xc3,0x24,0xf0,0x86,0x37,0x4a,0xf4,0x7b,0x63,0x6f,0x7b,0xa3,
0xef,0xf4,0x26,0x7e,0xd4,0x9b,0xc4,0x8d,0x4,0x7f,0xe7,0xc3,0xad,0xe8,0xe9,0x37,
0xe8,0x3b,0x31,0xa9,0x9b,0xfe,0xd8,0xab,0x9e,0xe0,0xc5,0x2e,0xdc,0x3f,0x65,0x5e,
0x54,0xb6,0x7d,0x6e,0xb,0x38,0xa8,0xfb,0xbb,0xff,0xa8,0xf7,0xb6,0x62,0x53,0x8,
0x27,0x46,0xd9,0x4a,0x80,0xe2,0x9f,0x8b,0x99,0xa1,0xa1,0xbd,0xa3,0x19,0x8f,0x66,
0xbb,0x5f,0x37,0x7b,0xde,0xb0,0x41,0xde,0x6f,0xda,0xfc,0xef,0x5b,0x71,0x55,0x99,
0xef,0x57,0x56,0xff,0x57,0xec,0xbe,0x5b,0xe,0xef,0x55,0xbb,0xf7,0xb2,0xdd,0x73,
0xce,0xea,0x5e,0x36,0x77,0x61,0x7b,0x74,0x54,0xa5,0x2b,0xb6,0xb5,0xa7,0xea,0xea,
0x43,0x27,0x2b,0x3c,0x87,0x8e,0x39,0xf7,0x1c,0xb4,0x6e,0xdb,0x67,0xda,0xbc,0x5b,
0xfb,0xd2,0xf6,0xce,0xe7,0xb7,0xb6,0x3d,0xbb,0xa5,0xe5,0xd9,0xad,0xad,0xcf,0xed,
0xd1,0xbe,0x7c,0xd0,0xf7,0xe2,0xf1,0x99,0x8d,0xa7,0xdf,0xf8,0x1f,0x95,0xdf,0xff,
0xbd,0xaa,0xf7,0xb0,0x49,0xf8,0x9,0x17,0xdc,0x56,0x7d,0xf0,0x5b,0x55,0xbf,0xfe,
0x67,0xd5,0x3f,0xff,0xe7,0x55,0xff,0xf0,0xff,0xad,0xfe,0xdb,0x7f,0x5f,0xfd,0xdd,
0x3f,0xa8,0xfe,0xe6,0x7f,0xa9,0xfe,0xca,0x7f,0xab,0x7e,0xf3,0x7f,0x54,0xbf,0xf6,
0x3f,0xab,0xdf,0xfc,0xef,0xd5,0x9f,0xfb,0xef,0x55,0x5f,0xfc,0xaf,0x55,0x5f,0xfd,
0x7f,0xaa,0xbe,0xf1,0x5f,0xaa,0xbe,0xf9,0x9f,0xab,0xbe,0xf5,0x7,0x74,0x41,0x34,
0xdc,0x85,0x3d,0xd9,0xf7,0x7e,0xeb,0x63,0xa0,0xf3,0xff,0x89,0x7f,0x52,0xf3,0xee,
0xbf,0xaa,0xfb,0xbb,0xdf,0x6b,0xf8,0xb3,0xff,0x17,0xcf,0xb0,0x15,0x4b,0xfb,0x3a,
0xd3,0x95,0x30,0xc0,0xdd,0xb7,0xbe,0x73,0xf7,0xad,0xef,0xde,0x79,0xb,0x6,0xf8,
0xee,0x1d,0xbc,0xd8,0x75,0xe5,0x2a,0x6d,0xff,0xe3,0x95,0x14,0x6a,0xfc,0x78,0xda,
0xc5,0xe,0xf9,0xd0,0x1e,0x7f,0x26,0x17,0xb8,0xaa,0xc1,0x59,0xf9,0xf5,0x57,0x67,
0xce,0x5e,0x99,0x3b,0x73,0x69,0x92,0x4a,0xfc,0x85,0xa1,0xa9,0xb,0xc5,0xf1,0xf3,
0xf9,0xe1,0x73,0xe9,0x81,0xb3,0xf1,0xdc,0x6a,0x28,0xbd,0xe2,0x8b,0x2d,0xf6,0x4,
0xe7,0x9c,0xde,0x19,0x4b,0xcf,0xb4,0xd1,0x39,0xa1,0xb1,0x4d,0x74,0x9a,0xf0,0x90,
0x15,0xc7,0xa,0x46,0x9b,0xb5,0x63,0x4d,0xea,0xb1,0x46,0xd5,0x58,0x83,0x6a,0xac,
0xbe,0x73,0xbc,0x5e,0x89,0xc7,0xae,0x13,0x75,0x1d,0x78,0xf2,0x3a,0x59,0xa3,0x98,
0xaa,0x51,0x4c,0x57,0xb7,0x4d,0x57,0xb5,0x4e,0x57,0xb6,0xce,0x54,0xb6,0xcc,0x57,
0x34,0x9e,0x3d,0x55,0x7f,0xfd,0x78,0xed,0xe7,0xe,0x57,0xfd,0xe5,0x81,0x8a,0x1f,
0xef,0x3d,0xf5,0xeb,0x5d,0x27,0x3f,0xdc,0x79,0xe2,0xe1,0x8e,0x93,0x84,0xfb,0xee,
0xd3,0xf,0x77,0x57,0x3e,0xdc,0x57,0xfb,0xe1,0xe1,0xfa,0x9f,0x1f,0x6b,0xfa,0xeb,
0x93,0xcd,0x7f,0x5a,0xd1,0x76,0xbf,0xb6,0xe3,0x72,0x43,0xe7,0x72,0xb3,0x76,0x1e,
0xf,0x17,0x55,0x96,0x5,0x9d,0x7d,0xc1,0xe0,0xc4,0xb5,0x7b,0xcb,0x36,0xcf,0xa,
0xb6,0x2f,0x9c,0x7e,0x7c,0x4c,0x69,0xdd,0x13,0x39,0x8b,0xe3,0xbe,0x81,0xe4,0xc5,
0x50,0xa,0x1f,0x58,0xbf,0x1c,0xed,0xc3,0x89,0xb4,0xab,0xc9,0x7e,0xba,0xa9,0x2a,
0x3b,0x74,0x8b,0x5e,0x61,0xc1,0x21,0xfe,0xd1,0x7b,0x85,0xd1,0xd7,0x8a,0x63,0xaf,
0xf7,0x8f,0xbd,0x51,0x1c,0x7b,0xb3,0x7f,0xec,0xad,0xe2,0xd8,0x83,0xe2,0xf8,0xdb,
0xfd,0x18,0xe9,0xc7,0x3b,0xc5,0x89,0x9f,0x17,0xa7,0x7e,0x81,0x6f,0x0,0xf,0x4c,
0xdd,0xc0,0xad,0xa0,0xc5,0xa1,0xb5,0x4c,0x66,0x3a,0xe4,0xef,0x77,0x1a,0x56,0xab,
0xaa,0xdf,0xff,0x6d,0xf5,0x97,0x37,0xf9,0x3d,0xee,0x6e,0xf6,0x64,0x0,0xc1,0x8f,
0xc3,0xc9,0x98,0x1,0xe0,0x1,0xa3,0x5a,0xcb,0xbb,0x90,0x3b,0x6e,0xc7,0x7e,0xe,
0x26,0x96,0xfc,0xeb,0x31,0x38,0x81,0xc,0x70,0x2f,0x9a,0xc1,0xa9,0xcf,0x3b,0x11,
0x9c,0xfc,0xc1,0xd9,0x7,0xda,0xf8,0xbf,0xc9,0x76,0x7e,0xa8,0xf9,0x50,0xf9,0xe1,
0xb,0x0,0x32,0x0,0xfa,0xcf,0x5d,0x7f,0xec,0x9e,0x2f,0xf6,0x1a,0xab,0x40,0x6f,
0x92,0x1,0x40,0x7f,0xec,0x1d,0x6f,0xf4,0x73,0xec,0xde,0x87,0x9f,0x78,0x93,0xf,
0x3d,0xa9,0x1f,0x32,0xf,0xe0,0xce,0x74,0x6c,0x98,0xde,0xf6,0xe1,0x5c,0x43,0xe0,
0xa2,0xd3,0xbd,0x66,0x32,0x2d,0x76,0xb4,0x7c,0xe5,0x45,0xc4,0x70,0xfd,0xdf,0xfc,
0x27,0xad,0xab,0x5,0xa7,0x24,0xb8,0x1,0xb0,0x0,0xe0,0x77,0x9f,0xc8,0x1e,0xc0,
0x63,0x33,0x3c,0xa0,0xed,0xbe,0x6f,0xee,0xb9,0x6f,0xed,0x79,0xcd,0xea,0xf9,0x9c,
0xd5,0xfb,0x8f,0x74,0x13,0xab,0xf7,0x23,0x8b,0xf7,0xef,0xac,0xde,0x37,0xe9,0x86,
0xf4,0xde,0xcb,0x36,0xcf,0x79,0x6b,0xcf,0xaa,0xc5,0x35,0x6f,0xb4,0x4e,0x6a,0x8c,
0x43,0x1d,0xea,0x5c,0x73,0x6b,0xac,0xba,0xda,0x7b,0xec,0xa4,0xeb,0x0,0xbe,0xc1,
0x7c,0xc0,0xb4,0x75,0x9f,0x7e,0xf3,0x5e,0xed,0xa6,0xdd,0xaa,0x97,0xb6,0xb7,0x3f,
0xbf,0xb5,0xf9,0xd9,0x2d,0x8d,0xcf,0xee,0x68,0x7e,0x71,0x6f,0xeb,0x96,0xc3,0xaa,
0x5d,0x27,0xec,0xbb,0x2b,0xfa,0xb7,0x56,0x9d,0x79,0xa6,0xfa,0xfe,0xa7,0x6a,0xfe,
0xf4,0xbf,0xd7,0xfc,0xcd,0xbf,0xab,0xfe,0x25,0xee,0x82,0xfe,0xf8,0x39,0x80,0x4f,
0xf8,0x26,0xf4,0xff,0xe1,0xbe,0xe8,0xea,0xf,0xff,0x79,0xcd,0xaf,0xfe,0x75,0xed,
0x4f,0x7e,0xaf,0xfe,0xbb,0xff,0xb9,0xe9,0x4b,0x9f,0x69,0xb9,0xf6,0x82,0x62,0xee,
0x80,0x32,0x73,0x5a,0xed,0x6b,0x50,0x77,0x37,0x6b,0xec,0xad,0x5a,0x47,0xab,0xd6,
0x49,0xda,0xf0,0xe0,0xbb,0xf7,0xde,0xfc,0xee,0xed,0xb7,0xbe,0x77,0xf7,0xad,0xef,
0xdd,0xc1,0x8f,0x37,0xff,0xea,0xd6,0xfa,0xe2,0x12,0x3e,0x7e,0x8a,0xb6,0x83,0xe7,
0x59,0xb4,0xe9,0x99,0xcd,0xf7,0x93,0x13,0xb2,0x30,0x80,0xe1,0xaf,0x36,0x3b,0xbe,
0xb3,0x77,0x6a,0xb9,0x38,0xb6,0x88,0xc3,0x5,0xa9,0x22,0xbe,0x3d,0xba,0x18,0x48,
0x2e,0x79,0x23,0x8b,0xae,0xc0,0xa2,0xa3,0x77,0xc1,0xdc,0x3d,0xaf,0xef,0x9a,0xd3,
0x5a,0x66,0x3a,0x4c,0xd3,0xa,0xc3,0x54,0xab,0x7e,0xaa,0x45,0x33,0xd5,0xa8,0x86,
0xa6,0x1b,0x54,0xd3,0xd,0x9d,0x33,0xf5,0x9d,0x33,0x75,0x4a,0xba,0x35,0x11,0x9f,
0x20,0xaf,0x51,0x40,0x73,0x35,0x6d,0x73,0xd5,0x6d,0x73,0x55,0xad,0xf3,0x95,0xcd,
0xeb,0xa7,0x1b,0x5f,0x3d,0x51,0xf7,0xd6,0xd1,0x9a,0x6f,0x1c,0xaa,0xfc,0xe1,0xbe,
0xd3,0xbf,0xdc,0x73,0xea,0xfd,0x5d,0x60,0x9d,0x2d,0x55,0x77,0x55,0xb0,0x74,0xaf,
0xfd,0xe8,0x70,0xdd,0xaf,0x8f,0x36,0xfe,0xe8,0x64,0xf3,0x37,0x2b,0x5b,0xdf,0xaa,
0x6e,0xbf,0xda,0xa0,0x3a,0xd3,0xa2,0x99,0x57,0x18,0x66,0x55,0x56,0x1c,0xe,0x5d,
0xc0,0x9d,0x4a,0x16,0xf7,0x92,0x8d,0xb3,0x1e,0x5c,0xed,0x9,0xaf,0x79,0x23,0x6b,
0x78,0xd7,0xdb,0x9f,0x3a,0x1f,0x4e,0x9f,0xc7,0x55,0x98,0x89,0xbe,0xcb,0xf8,0x50,
0x1c,0xde,0x48,0xcc,0xc,0xbe,0x8a,0xab,0x6a,0xf1,0xde,0x7a,0x61,0xec,0x26,0xae,
0x72,0xe8,0x1f,0xa7,0x8f,0x3a,0xe,0x4e,0xdc,0x1e,0x98,0xb8,0x33,0x38,0x71,0x67,
0x60,0xe2,0xee,0xe0,0xc4,0xbd,0x81,0xf1,0xd7,0x6,0xc6,0xef,0xf,0x8c,0x93,0xd,
0xfa,0x85,0xd,0xde,0x2a,0x8e,0xbe,0x59,0x80,0xc6,0xbe,0x50,0x98,0x78,0xb7,0x30,
0xf1,0x77,0x45,0x7c,0xb,0x15,0x37,0xc3,0x8d,0x5f,0x28,0xc,0xae,0xa4,0x53,0x93,
0x41,0x6f,0xc1,0xae,0xb9,0xb9,0x1f,0x35,0xc3,0x74,0xeb,0xa8,0xd7,0x45,0x8b,0x1,
0x3c,0xe,0xc3,0x24,0xc0,0xc,0xa0,0xc5,0x4e,0x3c,0xcc,0x80,0x1f,0xf8,0x1b,0x4f,
0xd1,0x81,0x1d,0xfd,0xec,0xfd,0x68,0xee,0xf5,0x18,0x46,0x28,0x73,0x2f,0x92,0xbe,
0xb,0x85,0x53,0xf0,0xc0,0x6d,0x3a,0xfe,0x90,0x24,0x51,0xf3,0xa1,0xb5,0x2f,0xe8,
0x67,0xe5,0x87,0xf7,0x1f,0xa2,0xff,0xbe,0x37,0xf6,0xba,0x37,0xa,0x3,0x3c,0xf0,
0x46,0xdf,0xee,0x8d,0x7d,0xce,0x1b,0xfd,0x7c,0x2f,0xe9,0x4b,0x9e,0xc4,0x3f,0x62,
0x1e,0xf0,0xa4,0xfe,0xd6,0x9b,0xfa,0x82,0x1f,0x1f,0xa,0x48,0x62,0xc3,0xf4,0xb6,
0x37,0x72,0xcd,0xed,0xbf,0xe4,0x70,0xad,0x19,0x4c,0x4b,0x1d,0xcd,0x7f,0xfa,0x6c,
0xdd,0x3f,0xfc,0x5e,0xcb,0xb5,0xcd,0xed,0xad,0x2d,0xb4,0xfc,0xa5,0x2b,0x80,0x28,
0xf8,0x11,0xff,0x4d,0x38,0xd9,0xc6,0xee,0xc3,0x82,0x14,0xca,0x26,0xf3,0x59,0x95,
0xeb,0xae,0xc9,0x7d,0xcf,0xd2,0x73,0xd7,0xea,0x7e,0xcd,0xe2,0xf9,0x8e,0xc5,0xfb,
0xa1,0x19,0x37,0xf9,0xf5,0x7e,0x60,0xe9,0xfd,0x8e,0xa5,0xf7,0xb6,0x15,0x97,0xa4,
0x7b,0x2e,0x58,0xdd,0x6b,0x66,0xd7,0x92,0xd1,0x31,0xa3,0xb3,0x8c,0xa9,0x31,0x15,
0x74,0xa4,0x1a,0x9a,0x42,0x15,0x55,0x9e,0xa3,0x27,0x1c,0xfb,0xf,0x5b,0x76,0xee,
0xd3,0x6f,0xd9,0xa3,0xdd,0xb4,0x47,0xb3,0x69,0x8f,0x7a,0xd3,0xee,0xce,0x97,0x77,
0xb5,0xbf,0xb8,0xa3,0xf5,0x85,0x1d,0xcd,0x2f,0xec,0x6a,0xda,0xb4,0xbf,0x65,0xfb,
0x91,0xb6,0xdd,0x27,0x3a,0xe,0x54,0x74,0x1e,0xae,0xd6,0x1f,0xab,0x73,0x9c,0x68,
0xf0,0x1e,0x6d,0x28,0xee,0x6f,0x9c,0xd9,0xdd,0xb8,0xbc,0xbd,0xf1,0xdc,0x4b,0x4d,
0xd7,0x9e,0x6e,0x7c,0x6d,0x63,0xc3,0xdb,0x4f,0x34,0x7c,0xf9,0x4f,0x1a,0xbe,0xf1,
0x47,0xd,0x5f,0xff,0xe3,0x86,0xaf,0x7e,0xaa,0xf1,0xcb,0x9f,0x6e,0xfc,0xc2,0x13,
0x4d,0xef,0x3c,0xd9,0xfc,0x60,0x63,0xf3,0x1b,0x4f,0xb5,0xdc,0x79,0xa6,0xf5,0xfc,
0x16,0xc5,0xc2,0x81,0x8e,0x91,0xe3,0xca,0xd4,0x69,0x95,0xbf,0xae,0xb3,0xa7,0x41,
0xe5,0x6a,0x52,0xdb,0x5b,0xd4,0xb6,0x16,0xb5,0xbd,0x59,0xe3,0x6c,0x81,0x40,0xbc,
0xca,0xd1,0xa4,0xb2,0x37,0x75,0xda,0x1a,0x95,0xd6,0x86,0x76,0x4b,0xdd,0x86,0x7,
0xdf,0xbb,0xf7,0xe0,0x7b,0x77,0xdf,0xfc,0xde,0x6d,0xe8,0x8d,0xef,0xde,0x42,0xff,
0x59,0x9e,0x9a,0xc5,0x87,0x1f,0x79,0xf0,0x97,0x8e,0x39,0xe0,0xf9,0xee,0x60,0xaa,
0xee,0xfd,0xdf,0xd,0xdd,0x56,0xa7,0xc7,0x7c,0x91,0x11,0x97,0x7f,0xd4,0xe6,0x9d,
0xb0,0xb8,0x26,0x75,0xce,0x59,0xb5,0x15,0x1f,0xb6,0x58,0x50,0x18,0x16,0x5b,0x71,
0xc7,0xbf,0x6e,0xb1,0x59,0xbb,0xd8,0xa4,0x59,0x6c,0x54,0x2f,0x36,0xaa,0x16,0x1b,
0x3a,0x17,0xeb,0x71,0x53,0x22,0xd4,0xb1,0x58,0xdb,0xbe,0x58,0x3,0x29,0x16,0xab,
0xdb,0x16,0xab,0x5b,0xd7,0x2a,0x9b,0x5f,0x39,0xd5,0xf0,0xfa,0x71,0x7c,0xb5,0xa5,
0xfa,0x7,0x7,0x2a,0x7f,0xbe,0xf7,0xf4,0x7b,0xbb,0x4f,0x7d,0x84,0x68,0xa7,0x32,
0x3,0xdc,0x29,0xdd,0x1f,0x1e,0xaa,0x7b,0xef,0x48,0xe3,0x4f,0x4e,0xb4,0x7c,0xbb,
0xb2,0xfd,0x8b,0x75,0x1d,0xb7,0x71,0x73,0x3a,0x8e,0x3a,0xb5,0x1b,0x50,0x66,0xe6,
0x34,0x76,0x7c,0x59,0x3,0x9f,0x4e,0x5a,0xb2,0xf7,0x2e,0x3b,0xfd,0x2b,0xdd,0xc1,
0x33,0x9e,0xf0,0xaa,0x37,0xb6,0x1e,0x48,0x9c,0xd,0x25,0xcf,0x85,0x32,0xe7,0xa3,
0x7d,0x17,0x93,0x85,0x4b,0xe9,0xe2,0xa5,0x34,0xae,0x64,0x1b,0xa6,0x3b,0xca,0x71,
0x5d,0xf,0xee,0xae,0x1a,0x80,0x26,0x70,0x9f,0x21,0x3e,0x6a,0x7d,0x63,0x64,0xfa,
0x26,0x69,0xea,0xe6,0x30,0xfe,0x48,0xe3,0xad,0x21,0x68,0xe2,0xd6,0xe0,0xf8,0xed,
0x1,0xd2,0x9d,0x81,0xb1,0xbb,0xfd,0x63,0xf7,0x8a,0x63,0x7c,0x36,0x78,0xbd,0x38,
0xfa,0x46,0x61,0xec,0xcd,0xe2,0xc8,0x1b,0x7d,0x23,0xaf,0xf7,0x8d,0x7e,0xad,0x6f,
0xfc,0x83,0xbe,0xc9,0xef,0x14,0x27,0x31,0x9,0xbc,0xd2,0x3f,0x72,0x36,0x5f,0x98,
0x8f,0x27,0x46,0x7d,0x9e,0x3e,0xab,0xe2,0xf3,0x2f,0x62,0x53,0xc8,0xbe,0xdc,0x20,
0x2f,0x6,0x58,0xb,0xd2,0x82,0x7e,0x7c,0xf2,0x11,0x82,0x1,0xb0,0x41,0xd4,0x3b,
0xe9,0xc4,0xb9,0x86,0xec,0xeb,0x51,0xae,0xcc,0xfd,0x48,0xfa,0xb5,0x30,0x9,0x87,
0xde,0xee,0x84,0xb0,0xf6,0x48,0xde,0x9,0xd1,0xa6,0x27,0xf6,0xfe,0x69,0xe1,0x4b,
0x6b,0x5f,0xaa,0xfe,0xf7,0xfc,0x44,0xff,0x6b,0xbe,0x28,0xc,0x80,0x15,0x30,0xeb,
0x3f,0x28,0x3f,0x88,0xff,0xc8,0x17,0x7a,0xa3,0x5f,0xf4,0x44,0xbe,0xe8,0x89,0x7e,
0xb5,0x37,0xfe,0xb,0x4f,0xe2,0xa1,0x27,0xf9,0xd7,0xbe,0xd4,0xe7,0xfd,0x78,0xe1,
0xb,0x6,0x8,0x9f,0x75,0xf7,0x4e,0xd8,0xbb,0x52,0x38,0xa5,0xa4,0xd6,0x9b,0x94,
0x6a,0x1d,0xbd,0x36,0x49,0xe8,0xa3,0xf6,0xb0,0xe6,0xc3,0xee,0x7d,0x20,0xee,0x31,
0x36,0xe2,0xc5,0x5f,0xf6,0x9e,0x97,0x42,0xd5,0x84,0x2e,0xe4,0xba,0x6d,0x72,0xdf,
0xc1,0x23,0x4e,0x8b,0xfb,0x96,0xc5,0xfd,0xc0,0xec,0xf9,0x31,0xf3,0xc0,0x43,0x93,
0xe7,0x37,0x26,0xcf,0x9f,0x5a,0x3c,0xb8,0x27,0xf4,0x82,0xa5,0xe7,0xac,0xa5,0x7b,
0xc5,0xdc,0x35,0x6f,0xb0,0xd1,0x54,0xa0,0x54,0xe7,0x5a,0xda,0xe2,0x35,0x75,0x81,
0x93,0x15,0xdd,0x87,0x8e,0xda,0xf6,0x1c,0x34,0x6d,0xdf,0xab,0xdb,0xbc,0x47,0xf3,
0xf2,0x1e,0xd5,0xcb,0x7b,0x3a,0x37,0x91,0x94,0x9b,0xf6,0x76,0x6c,0xda,0xa3,0xd8,
0xb4,0x57,0xb1,0x65,0x7f,0xdb,0xb6,0x43,0x8a,0x9d,0xc7,0x14,0x7b,0x4f,0xb4,0xef,
0x3f,0xad,0x3c,0x5c,0xa9,0x3c,0x52,0xdd,0x79,0xbc,0x4e,0x7d,0xb2,0x41,0x73,0xba,
0x49,0x57,0x5,0x35,0xeb,0xaa,0x5b,0xf4,0x35,0xad,0x86,0x1a,0x85,0xb1,0xae,0xdd,
0x58,0xdf,0x66,0xa8,0x53,0x18,0xeb,0xdb,0x8d,0xd,0x50,0x87,0xa9,0xa1,0xc3,0xc,
0xd5,0x2b,0x2d,0x8d,0x9d,0xd6,0xa6,0x4e,0x6b,0x63,0xa7,0xbd,0x49,0xed,0x68,0xee,
0xb4,0x37,0x2,0x74,0x8c,0x4a,0x5b,0x3,0xc7,0x5d,0x61,0xa9,0x55,0x98,0x6b,0x5b,
0x4c,0x55,0xcd,0xc6,0x4a,0xa8,0xc1,0x70,0x7a,0xc3,0x83,0xef,0xdf,0x7b,0xeb,0xfb,
0x77,0x20,0x18,0xe0,0xc1,0xf7,0xef,0x5e,0x7a,0x65,0x7d,0x7e,0x7c,0x8a,0xe,0x3b,
0xe0,0x34,0x3f,0x9b,0x1,0xf8,0x61,0x87,0x42,0x2a,0x1b,0xbe,0x6e,0xa8,0x7f,0xf7,
0x77,0xc3,0xe3,0x5d,0xae,0xbc,0xce,0x51,0x54,0x59,0x87,0x3a,0x2c,0xe3,0x38,0xe0,
0xaa,0x30,0x82,0xfb,0x95,0x16,0xdd,0x5a,0x93,0x96,0x3e,0x66,0xd1,0xa8,0x5e,0x6f,
0xc0,0xe7,0x5b,0x3a,0xb1,0xd0,0x5c,0xab,0xeb,0x58,0xad,0x6d,0x5f,0xad,0x69,0x3f,
0x53,0xd3,0xb6,0x5e,0xd5,0xf2,0x4a,0x45,0xd3,0x6b,0x27,0xeb,0xbf,0x7c,0xb4,0xf6,
0xbb,0x87,0xaa,0x7e,0xba,0xaf,0xe2,0xdd,0x3d,0xa7,0x3f,0x42,0x8d,0xd9,0x25,0xe3,
0x5e,0xf3,0xf0,0x60,0xfd,0x7,0x47,0x9a,0x7e,0x76,0xb2,0xf5,0x7,0x95,0x8a,0xaf,
0xd5,0x28,0x5e,0xab,0x53,0x5d,0x6a,0xd1,0xae,0x28,0xc,0xb,0x9d,0x96,0x79,0x9d,
0x63,0xd1,0xe4,0xc2,0x87,0xf1,0x80,0xfb,0x4a,0x17,0xc7,0x3d,0xb2,0xe6,0x25,0xd6,
0xcf,0x86,0x33,0xe7,0x63,0x39,0xbc,0x1f,0x78,0x21,0xd9,0x7f,0x29,0x3b,0x78,0x19,
0x17,0xb0,0xe5,0x47,0x5e,0x29,0x8e,0xd2,0x27,0xba,0x6,0x27,0x71,0x7f,0x2d,0x7d,
0xc3,0x7d,0x84,0x6b,0xf6,0xc6,0xd8,0xcc,0xf5,0x51,0x12,0x6e,0x39,0x67,0x3f,0xf0,
0x4f,0xb9,0xe8,0xdf,0xbc,0x3e,0x3c,0x81,0x7b,0xe,0xaf,0xf,0x8e,0xdf,0x18,0x20,
0xdd,0xc4,0x35,0x27,0xb0,0x41,0xff,0xd8,0x9d,0x7e,0xd8,0x60,0xf4,0x6e,0x61,0x4,
0xdf,0x78,0xbc,0x5f,0x1c,0x79,0xbd,0x40,0xf4,0x63,0xbc,0xdf,0x37,0xf6,0xad,0xbe,
0xf1,0xf,0xfb,0x26,0xbe,0x86,0xef,0xbb,0xf4,0x8f,0x5f,0x2a,0xe,0xad,0x66,0xf3,
0xb3,0xb1,0xc8,0x90,0xa7,0xab,0xa0,0x6f,0xfe,0xf6,0x1f,0xd5,0xfd,0xea,0x77,0xbb,
0x7,0xb5,0x1e,0x3b,0x2d,0x88,0x51,0x84,0xd0,0x7f,0x58,0xfc,0x53,0x11,0x12,0x5d,
0xc8,0x62,0xa,0xac,0xb8,0xf1,0x4c,0x37,0xfb,0x46,0x14,0xca,0xbc,0x11,0xc9,0xbc,
0x1e,0x49,0xdd,0xf,0xa7,0x5e,0xb,0x41,0xc9,0x7b,0x10,0x9d,0xfc,0x49,0xe0,0xd1,
0xef,0x5d,0xec,0xfd,0x7,0x68,0xeb,0x93,0xd3,0x2f,0xf6,0x7f,0xbc,0xbc,0xff,0x44,
0x59,0xfb,0x8f,0x7c,0x1e,0x6,0x20,0xfa,0x23,0x5f,0xf2,0xe0,0x32,0xac,0xd0,0x5b,
0xee,0xd0,0xd7,0x5c,0x28,0xeb,0xee,0x2,0x2e,0x6f,0xc1,0xd,0x72,0x1a,0x5d,0x67,
0x27,0x4a,0x3f,0x7b,0x55,0x92,0xde,0xea,0xe2,0xcd,0x87,0x37,0x7e,0xbe,0xd,0xca,
0x2b,0x10,0xfe,0x86,0xcf,0x3,0xf0,0x0,0xdd,0x83,0x82,0xf5,0x80,0xba,0x9,0x27,
0xd5,0xba,0x6e,0x1a,0xbb,0x6f,0x9a,0xbb,0x6f,0x5a,0xba,0xaf,0x9b,0x21,0xf7,0x17,
0xcc,0x3d,0x3f,0x37,0xe1,0xda,0x3f,0xa8,0xe7,0x57,0xa6,0x9e,0x3f,0xa3,0xef,0x26,
0xb9,0xe1,0x81,0x55,0x73,0x17,0xa6,0x82,0x59,0x4c,0x5,0x2a,0xdd,0x80,0x42,0x99,
0x6d,0x6c,0x89,0x55,0xd5,0xfa,0x4f,0x54,0xb8,0xf,0x1d,0xb5,0xef,0x3e,0x60,0xde,
0xb6,0x5b,0xf7,0xf2,0x2e,0xcd,0x4b,0xbb,0xd5,0x2f,0x63,0x2a,0xd8,0xad,0x7c,0x79,
0xf,0x3c,0xd0,0xbe,0x69,0x6f,0xfb,0xe6,0x7d,0x1d,0x5b,0xe,0x74,0x6c,0x3b,0xa4,
0xdc,0x71,0xac,0x73,0xcf,0x9,0xd5,0xbe,0xd3,0xea,0x83,0x95,0xda,0x23,0xd5,0xba,
0x63,0xb5,0xba,0x13,0x75,0xba,0x93,0x50,0xbd,0xfe,0x54,0xa3,0xe1,0x74,0xb3,0xa9,
0xaa,0xc5,0x5c,0xdd,0x6a,0xae,0x81,0xda,0x2c,0x24,0x1c,0xbe,0x80,0xda,0x2c,0x5c,
0x35,0x6d,0xf8,0x7b,0xfc,0x53,0x53,0x35,0x81,0xce,0x59,0x37,0x55,0xe2,0x3f,0xd8,
0x60,0x38,0x55,0x6f,0x38,0x59,0x6b,0x38,0x51,0x63,0x38,0x5e,0x63,0x38,0x56,0xa9,
0x3f,0x52,0x69,0x3c,0xbc,0x81,0xb2,0xff,0xfb,0xb7,0xdf,0xfa,0xc1,0x9d,0x37,0xf0,
0x22,0xef,0xb7,0xae,0xaf,0xce,0x2f,0xce,0x8c,0x8c,0xf3,0xf8,0x7,0xf4,0x7c,0x5,
0x8c,0x83,0x3d,0xf0,0x83,0xfe,0x5b,0x9b,0x35,0x7f,0xf9,0x82,0x6f,0xd0,0x62,0x2f,
0xe2,0x24,0x59,0xbb,0x69,0x42,0x61,0x9c,0x6d,0x33,0x2c,0xb7,0xe8,0xd6,0x9b,0xb4,
0xe7,0x1b,0xd5,0x17,0x1a,0x54,0x17,0xeb,0x3b,0x2f,0xd6,0x2b,0x2f,0xd4,0xe1,0x6a,
0x7f,0xc5,0xf5,0xaa,0x96,0xfb,0xa7,0x1b,0xbf,0x7c,0xa2,0xfe,0xaf,0x8e,0xd4,0xfc,
0xe4,0x40,0xd5,0x6f,0xf6,0x56,0x7c,0xb8,0x7,0x8f,0x54,0xb1,0x4e,0x65,0x65,0x6,
0x9b,0x33,0x7,0xeb,0x3f,0x3a,0xd2,0xf8,0xab,0x13,0x2d,0x3f,0xaa,0x68,0xfb,0x66,
0x75,0xc7,0x83,0x86,0xce,0x6b,0xcd,0x9a,0x35,0x85,0x71,0x99,0xba,0x3b,0xc3,0xdd,
0x8a,0xe2,0xee,0x5d,0xe9,0xa2,0x26,0xb3,0xee,0x45,0x8d,0x49,0x9e,0x23,0xd6,0x11,
0xed,0xb9,0xb,0x9,0xe4,0xfa,0xc0,0xe5,0x2c,0x58,0x1f,0xc5,0x77,0xb8,0xae,0xe2,
0xd3,0xbc,0xc,0xf4,0x6b,0x23,0xb3,0xf8,0x8c,0x5,0x3e,0x66,0x71,0x63,0x7c,0xe,
0x1f,0x8b,0xc7,0x97,0x5d,0xae,0xf3,0x1f,0x6c,0xc4,0xf7,0x5d,0xae,0xd2,0x38,0x83,
0xcf,0xbb,0x5f,0x1d,0x9d,0x7a,0x65,0x84,0x69,0x78,0x92,0xbe,0xef,0x4b,0xe3,0x4,
0x3e,0x72,0xfa,0xea,0x10,0x6c,0x83,0xff,0x42,0xcc,0x12,0x63,0x74,0xd3,0x1b,0xd9,
0x60,0xf4,0x26,0x6e,0x3a,0xc1,0x45,0xf,0x85,0x91,0xbb,0x5,0xac,0xd,0x86,0xf1,
0xbe,0x2f,0x74,0x9f,0x2b,0x3f,0xf6,0x37,0x7d,0xe3,0xef,0xe5,0x27,0x1e,0x14,0x27,
0x5e,0x2d,0x8e,0x51,0x11,0xca,0xe4,0xa6,0x23,0xa1,0x81,0x6e,0xfb,0x90,0xb2,0xfe,
0xef,0x7f,0xbf,0xe9,0xc7,0xff,0xa9,0x27,0x6e,0xc1,0x62,0x0,0xbb,0xa2,0x34,0x9,
0x30,0xf,0xe8,0xf1,0xa9,0x2f,0x7c,0xf1,0x97,0xbe,0xfc,0xae,0xb3,0xdb,0x4d,0xa1,
0x4b,0x9e,0x14,0x3e,0xf3,0xf8,0x66,0x84,0x2b,0xfd,0x46,0x38,0xfd,0x7a,0x18,0x7f,
0x3,0x25,0xef,0x7,0x93,0xaf,0x5,0x13,0xaf,0xe1,0xb9,0x6f,0x0,0x4b,0x5e,0x6c,
0xfb,0x8,0xbd,0xe1,0xa7,0xec,0xa7,0xf8,0xf7,0x51,0xfc,0x3f,0xe8,0xd,0xbf,0xee,
0x9,0x5e,0x77,0x7b,0xf1,0x2e,0xef,0x88,0xdd,0x19,0x33,0x5b,0x1c,0x7a,0x83,0x4e,
0xad,0x53,0x82,0x78,0xbc,0x18,0x49,0x67,0xa1,0xc5,0xe9,0x37,0xc6,0x3d,0x7f,0xfe,
0xc5,0x9b,0xcf,0x63,0xcb,0x5f,0x36,0x3,0xf0,0x16,0x44,0x2f,0xbf,0xcb,0x13,0x42,
0xbb,0xae,0xd9,0xb4,0xa6,0x72,0x5c,0x35,0x74,0x5f,0x33,0xbb,0xa0,0x57,0xcd,0x5d,
0x78,0xf9,0xfd,0xaa,0x9,0x5f,0xbe,0xe8,0xf9,0x8d,0x11,0x37,0x2,0x42,0xee,0xf7,
0xc,0xee,0x6f,0x1b,0xbb,0x6f,0xe1,0xa6,0x5b,0x93,0x6b,0xc5,0xe4,0x5c,0xd0,0xdb,
0x66,0xb4,0xa6,0xb1,0x4e,0xed,0x40,0x5b,0x7b,0xb6,0xbe,0x39,0x56,0x55,0x1d,0x38,
0x76,0xaa,0xe7,0xc0,0x61,0xe7,0xce,0x7d,0x96,0xad,0xbb,0xd,0x2f,0xef,0xd2,0xbe,
0x4,0x27,0xec,0x52,0xbd,0xc4,0x9d,0xb0,0xbb,0xe3,0x65,0x38,0x81,0xcc,0xa0,0xd8,
0xc,0x3f,0xec,0x6f,0xdf,0x7a,0xa8,0x63,0xc7,0x61,0xe5,0xae,0xe3,0xaa,0x7d,0xf0,
0xc3,0x29,0xf5,0x81,0xa,0xcd,0xe1,0x2a,0xd,0x59,0xa2,0x5a,0x4b,0xaa,0xd5,0x1d,
0x27,0x6f,0xe8,0xa1,0x93,0x18,0xe9,0x8f,0xf4,0xfb,0x4,0xc6,0x5a,0xfd,0x71,0xb4,
0x29,0xa8,0x4a,0x7f,0x94,0x40,0xd7,0x1f,0xae,0x34,0x1c,0x3e,0xa5,0x3f,0x78,0xd2,
0x70,0xe0,0xa4,0xf1,0xc0,0x9,0xd3,0xfe,0xe3,0xc6,0xbd,0xc7,0x4c,0x7b,0x8f,0x9a,
0xf7,0x6c,0x78,0xf3,0x7,0x77,0x60,0x80,0x37,0x7f,0x70,0xeb,0x8d,0xef,0xdf,0xba,
0xf1,0xce,0x65,0x2c,0x7f,0xc7,0xfb,0x87,0xe8,0x70,0x5b,0x8a,0xe,0xb7,0x89,0x33,
0x9e,0x38,0xdf,0x3f,0x90,0xae,0x7f,0xef,0xdf,0xb8,0x6e,0x36,0xba,0x7,0xf5,0x44,
0xff,0x58,0x9b,0x71,0xb6,0x15,0x5f,0xef,0xd2,0xae,0x37,0x69,0x2e,0x34,0x74,0xde,
0xa8,0x6d,0x7f,0xbd,0xaa,0xf5,0x2b,0xa7,0x9b,0xfe,0xea,0x78,0xfd,0x8f,0xf,0xd7,
0xfc,0xea,0x40,0xf5,0x7,0x7b,0xf1,0x3c,0x15,0x2,0xeb,0x38,0x47,0x50,0xfb,0xf0,
0x60,0xdd,0xc3,0xc3,0x8d,0xef,0x9e,0x68,0xf9,0xc9,0x69,0xc5,0x77,0x6a,0x3a,0xbe,
0x58,0xaf,0xbe,0xd3,0xa2,0xbf,0xa8,0x34,0xae,0xaa,0xac,0x74,0x55,0x18,0xb6,0x65,
0xac,0xbd,0xab,0x4e,0xdf,0xaa,0xcb,0xbf,0xea,0x6,0xee,0xb1,0xb3,0xb8,0xa8,0x2c,
0x84,0xd6,0x9e,0xc5,0xd7,0x51,0x71,0x13,0xce,0xe5,0x4c,0x3f,0xc3,0x1d,0xd1,0x3e,
0xf6,0x6a,0x3f,0x70,0x27,0xd6,0x71,0x5b,0x3f,0x40,0xbf,0x31,0x1,0xcd,0xdf,0x98,
0x5c,0xbc,0x39,0xc5,0x34,0xbd,0x70,0x63,0x72,0xe1,0xc6,0xd4,0xc2,0xf5,0xc9,0xf9,
0x6b,0x13,0x73,0x10,0xa0,0xa7,0x6f,0x7b,0xe1,0xeb,0x46,0xe3,0x33,0xaf,0x8c,0xcd,
0x5c,0x19,0x9d,0x26,0x8d,0x4c,0x5d,0x1e,0x99,0x92,0xc6,0xc9,0xcb,0x43,0x13,0xd0,
0x15,0x68,0x70,0xe2,0x95,0xc1,0x31,0xdc,0x72,0x8e,0x4b,0x9e,0x71,0xcd,0xed,0xd5,
0xfe,0xd1,0x6b,0xc5,0xd1,0xeb,0xc5,0xd1,0x1b,0xc5,0xd1,0x5b,0xb8,0xed,0xa7,0x30,
0x72,0xa7,0x30,0x8c,0xeb,0x1e,0xee,0xd1,0xfb,0xbe,0xf4,0xc2,0xd7,0xbd,0xfc,0xc8,
0x1b,0xf9,0xd1,0x9f,0xe6,0xc6,0x7e,0x99,0x1f,0xbf,0x57,0x1c,0xc7,0xbd,0xd0,0xe7,
0xfb,0x6,0x96,0xd3,0x99,0xc9,0x90,0xbf,0xd0,0x65,0x9e,0xc5,0x45,0xb6,0xbf,0xa3,
0xa0,0xaf,0x9d,0x3a,0x69,0x31,0x40,0x3b,0x42,0x3c,0xfe,0x35,0x18,0xd,0xf4,0xf9,
0x6b,0x35,0xfc,0x60,0xf7,0x98,0x22,0x37,0x7b,0x53,0x6f,0x86,0xd2,0x6f,0x85,0x49,
0xf,0xc2,0xa9,0xb7,0x42,0xf8,0x23,0x57,0xf2,0x8d,0x60,0xe2,0xf5,0x0,0x14,0x7f,
0x1d,0xcf,0x7d,0xf9,0x88,0x49,0xc0,0x1b,0xbe,0xde,0x1b,0x3c,0xeb,0xf6,0x4e,0x76,
0x75,0x67,0x6d,0xe,0x8f,0xd9,0x62,0xd6,0x1b,0xb5,0x1a,0x2d,0x2e,0x8b,0x66,0x19,
0xcf,0xe,0xfc,0xf0,0x67,0xbd,0xe2,0xf0,0xb3,0x38,0x5,0x4d,0x67,0x1f,0x1a,0x5b,
0x71,0x66,0x93,0x7f,0x1,0x40,0x18,0x80,0xb2,0x9f,0x73,0xcf,0x27,0x1,0x4,0x7f,
0x23,0xab,0x43,0x98,0x4,0xd8,0xf,0x36,0xf,0xe8,0xb0,0x37,0xca,0x1e,0x8,0xbe,
0x62,0xc6,0xdd,0x27,0x5d,0x97,0x4d,0x5d,0x97,0x4c,0xb8,0xfa,0x81,0xbe,0x8e,0xfa,
0x35,0xa3,0xfb,0x17,0x6,0xf7,0x43,0x52,0xf7,0x87,0x86,0xee,0xbf,0x35,0xb8,0x1e,
0x18,0x71,0x41,0x10,0x2e,0x45,0xb4,0xcf,0xeb,0x2c,0xd3,0x6a,0xc3,0x58,0xbb,0x7a,
0xa0,0xa5,0x2d,0x57,0xdb,0x90,0x3c,0x5d,0x15,0x3a,0x7a,0x92,0x9e,0x9a,0xed,0xda,
0x67,0xdf,0xb2,0xdb,0xfc,0xf2,0x4e,0xc3,0x4b,0x3b,0x75,0x2f,0xee,0xe4,0x66,0x50,
0x97,0xf9,0x1,0x96,0x50,0x6e,0xc2,0xfc,0xb0,0xb7,0x63,0xf3,0x3e,0xe5,0x96,0xfd,
0x1d,0x5b,0xf,0x2a,0xb7,0x63,0x7e,0x38,0xa2,0xda,0x75,0xa4,0x73,0x37,0x74,0x4c,
0xb5,0xe7,0xb8,0x6a,0xef,0x71,0x35,0xe9,0x84,0x66,0xdf,0x71,0xcd,0xde,0x93,0xda,
0xfd,0x27,0xb4,0xfb,0xa0,0xe3,0xba,0x7d,0x47,0x75,0x7b,0x8e,0xe9,0xf7,0x1c,0x35,
0xee,0x39,0x62,0xd8,0x75,0xd8,0xb8,0xeb,0x88,0x69,0xd7,0x21,0xd3,0x8e,0x83,0x96,
0x1d,0x7,0x6d,0x3b,0xe,0xd8,0xb7,0x1d,0x70,0x6c,0xdb,0xef,0xdc,0xba,0xb7,0x6b,
0x13,0x37,0x0,0xd1,0xf,0x5d,0xbc,0xbc,0xb6,0x38,0x31,0x8d,0xf8,0xe7,0x7,0x3c,
0xd9,0xd9,0x66,0x72,0x2,0x8e,0xef,0x7,0x5e,0xd1,0xd5,0xbd,0xf7,0xaf,0x3,0xd3,
0x76,0xdb,0x40,0xa7,0x69,0xb8,0xcd,0x30,0xd9,0xaa,0x3d,0xd7,0xd4,0xfe,0xf5,0xca,
0xd6,0xbf,0x39,0xd9,0xf8,0x8b,0x23,0x75,0xef,0x1f,0xa8,0xfd,0x68,0x3f,0x40,0xaf,
0xc1,0x2e,0xe4,0xc3,0x3,0xc,0xf7,0x43,0x4d,0xef,0x9f,0x68,0xfd,0x59,0x45,0xfb,
0x5f,0xd7,0x28,0xbf,0xde,0xa0,0x7d,0xab,0x55,0x77,0xb5,0xc3,0x74,0x5e,0x6d,0x5d,
0xc5,0x6d,0x8f,0x48,0x8,0xab,0x67,0xdd,0xe9,0x5b,0xef,0xe,0x9d,0xf3,0x44,0xce,
0xf9,0xe2,0xd8,0x93,0xb9,0x80,0x63,0x8c,0x31,0x5a,0xa4,0x5e,0x4a,0xd,0xbc,0x92,
0xed,0xbf,0x92,0x1d,0xb9,0x8a,0x4f,0x2c,0xe,0x4c,0x5e,0x1f,0x9e,0xb9,0x31,0xa,
0x4d,0x5f,0x1f,0x9d,0xc7,0x7,0x8b,0x6e,0x4d,0x2e,0xde,0x22,0xd0,0x97,0x6f,0xcf,
0x2c,0xdf,0x9a,0x59,0xe2,0xba,0x39,0xbd,0x74,0x63,0x7a,0xf1,0x3a,0xd3,0xb5,0xa9,
0x5,0xe8,0xea,0xd4,0xfc,0xab,0xf8,0xb6,0xfb,0xc4,0xfc,0x2b,0x13,0x73,0xaf,0xe0,
0xba,0xf3,0xb1,0x19,0x3c,0x83,0xbb,0x3c,0x3e,0x73,0x69,0x74,0x5a,0xd2,0xd4,0xa5,
0x91,0xa9,0x4b,0xc3,0x93,0x17,0x87,0xa0,0x89,0x8b,0x83,0xa4,0x4b,0xa4,0xf1,0x4b,
0x3,0xe3,0x57,0x6,0x46,0xf1,0x9d,0xaf,0x2b,0xfd,0x23,0x0,0x9a,0xda,0x54,0x71,
0xe4,0x5a,0x61,0xe4,0x7a,0x71,0xf8,0x6,0xae,0xfa,0xe9,0x1b,0xbe,0x8d,0xeb,0x1e,
0xe8,0xc6,0x87,0xa1,0x7b,0x39,0x8,0xaf,0x3b,0xe,0x3d,0xc8,0x8d,0xfc,0x3a,0x3b,
0xf6,0xe3,0xfc,0xf8,0x8d,0xc2,0xf8,0xe5,0xe2,0xc8,0x7a,0xbe,0x7f,0x21,0x95,0x1c,
0xb,0xf8,0xfa,0x9c,0xba,0xf3,0x27,0xaa,0x3f,0xf8,0x67,0xea,0xb7,0xb7,0x7a,0x5c,
0x74,0x44,0x2,0x5b,0x40,0x98,0x7,0xc,0x2a,0x9a,0x1,0xb8,0x1,0x30,0x62,0x1e,
0xe8,0x8a,0x58,0x22,0x77,0x7b,0xd3,0xf,0x42,0xe9,0xb7,0xc3,0xe9,0xb7,0x43,0x29,
0xfc,0x78,0x10,0x4a,0xbd,0x15,0x4c,0xbe,0x19,0x4c,0xbc,0x19,0x48,0xbc,0x41,0xcb,
0xdf,0xf0,0xa5,0xde,0xe0,0x42,0x8f,0x77,0xd0,0xe5,0x8a,0x58,0x1d,0x78,0xeb,0xcc,
0xa8,0x87,0x91,0x74,0xb8,0x9,0xb,0xb7,0x43,0xe3,0x3e,0x67,0xfe,0xee,0x6f,0x33,
0xde,0x7e,0xa4,0xb7,0xbd,0xb0,0xbb,0x8f,0x1f,0x7c,0x8f,0x9f,0xdb,0x80,0x7,0x3f,
0x7e,0xf0,0xec,0x87,0x1,0xa8,0xfc,0xb0,0x47,0x60,0xbc,0x5,0xf1,0xd4,0x97,0xfa,
0xf,0x16,0xc1,0x74,0x13,0x16,0x43,0xbf,0xbe,0x59,0x59,0xdb,0xec,0x3a,0xd5,0x3c,
0xb8,0xb7,0xf5,0xea,0x2e,0xd3,0x5,0x95,0x3,0x2f,0xbc,0xe3,0xf6,0xab,0xb,0x26,
0xa7,0xb8,0xfc,0xc7,0x48,0x97,0xff,0x9c,0x33,0x38,0xdf,0x32,0xb8,0x7e,0x6c,0xe8,
0xfe,0x48,0xdf,0xd,0x1b,0x3c,0xd4,0xbb,0xde,0xd5,0xbb,0x7e,0xa0,0xef,0x7a,0xb,
0xff,0x48,0x6f,0x9d,0xd3,0xe0,0xee,0x20,0xdd,0xb8,0x42,0x39,0xd4,0xd8,0x56,0xa8,
0x6d,0xc8,0x9c,0xae,0x8a,0x1d,0x3d,0x19,0x3a,0x70,0xd4,0xbb,0xfb,0x40,0xf7,0xb6,
0x3d,0xce,0x4d,0x3b,0xad,0x2f,0xee,0xb0,0xbc,0xb0,0xc3,0xf4,0xe2,0x4e,0xe3,0x8b,
0x3b,0xd,0x2f,0xee,0xd4,0xbf,0xb8,0x4b,0xff,0x12,0x49,0xc7,0xa4,0x7d,0x79,0xb7,
0x86,0x6b,0x13,0x84,0xc5,0xf4,0x5e,0xcd,0xe6,0xbd,0xea,0xcd,0xfb,0x34,0x5b,0x48,
0xda,0xad,0xfb,0x74,0x5b,0xf7,0xeb,0xb7,0xed,0xd3,0x63,0xc7,0x69,0xcb,0x3e,0xc3,
0x96,0x7d,0xc6,0x2d,0xfb,0xcd,0x5b,0xf7,0x59,0xa1,0x2d,0x7b,0xed,0x9b,0xf7,0x38,
0x36,0xe1,0x7f,0x62,0x37,0x3e,0x2f,0xe0,0x7a,0x79,0x97,0xfb,0xa5,0x5d,0x9e,0x97,
0x76,0x7a,0x5f,0xdc,0xe1,0x7f,0x61,0x47,0xe0,0xf9,0xd,0xaf,0x7f,0xff,0xe6,0x9b,
0x3f,0xb8,0x8d,0xf1,0xde,0xb7,0xae,0xad,0xcd,0x2f,0xe1,0xf4,0x3f,0x2b,0x3f,0x74,
0x98,0x99,0xe,0xf1,0xb3,0x63,0xfd,0x98,0xa,0xf4,0x7f,0xb9,0x45,0xfd,0xed,0xe7,
0xba,0x7,0xf4,0xe6,0x81,0x76,0xc3,0x68,0xab,0x6e,0xba,0xb9,0xe3,0xcb,0x55,0x8d,
0xf,0xf,0xd7,0x13,0xeb,0x7,0x1b,0x1f,0x1e,0x69,0xf9,0xf0,0x84,0xe2,0x57,0x95,
0xca,0x1f,0xd7,0xaa,0xbe,0xdd,0xa0,0xfd,0x52,0xab,0xee,0x9e,0xc2,0xf4,0xaa,0xca,
0x7a,0x51,0xd7,0x75,0xde,0xec,0x3e,0x6f,0xf3,0x5e,0xec,0xa,0x5c,0x74,0x87,0x2e,
0xf6,0x46,0x2f,0xf9,0x13,0x97,0x43,0xa9,0xcb,0x91,0xec,0x15,0xbc,0xff,0x91,0x28,
0xe0,0x9a,0xb4,0xab,0xb8,0x38,0xad,0xf,0x7d,0x3,0xe5,0x7b,0xea,0xc6,0xf0,0xcc,
0xad,0xb1,0xd9,0x5b,0xe3,0x73,0xf8,0x3e,0xd7,0x9d,0xe9,0xa5,0x3b,0xd3,0xcb,0x77,
0x66,0xce,0xdc,0x99,0x3,0xee,0x18,0x57,0x6e,0xcf,0x9d,0xb9,0xcd,0xc6,0x5b,0xa4,
0xe5,0x9b,0x33,0xcb,0x37,0x66,0x97,0x6f,0xcc,0x2c,0x5d,0x9f,0x59,0xba,0x36,0xbd,
0x78,0x75,0x6a,0xe1,0xd5,0xa9,0xf9,0x57,0x26,0x85,0xae,0x4c,0xcc,0x5f,0x99,0x98,
0xbb,0x3c,0x31,0x7b,0x9,0xdc,0x8f,0xcd,0x5c,0x64,0x62,0x3f,0xa6,0x2e,0x8c,0x4c,
0x5d,0x18,0x9e,0x3c,0xcf,0x74,0x61,0x78,0xe2,0xc2,0xd0,0xc4,0xf9,0x21,0x1a,0x2f,
0xc,0x8e,0x93,0x6,0xc6,0x2e,0xe,0x8c,0x5d,0x1a,0x18,0xbd,0xd4,0x3f,0x7a,0xa9,
0x38,0x72,0x19,0xb7,0x9c,0xe3,0x9e,0xe7,0xc2,0x30,0x2e,0xfa,0xbc,0x86,0xcb,0xde,
0xfa,0x86,0x6e,0xe6,0xb1,0x5b,0x3a,0x84,0xfb,0x4e,0xee,0xe4,0x86,0xee,0x4a,0xfa,
0x62,0x76,0xe4,0x83,0xec,0xd8,0x77,0xf3,0xb8,0x23,0x71,0xf4,0x62,0x1f,0x16,0x3,
0x85,0xb9,0x78,0x7c,0xc4,0xe7,0xc9,0x59,0x95,0xaf,0x6d,0xa7,0x8f,0xf2,0x5e,0x39,
0x89,0x8b,0x83,0xb0,0x2b,0xa,0xf,0xd0,0x24,0xa0,0xa2,0xef,0x7c,0xc1,0x6,0xbc,
0xe,0xe1,0x2f,0xbb,0xfb,0x6c,0xd8,0xd3,0x24,0xf4,0xdf,0xe,0x23,0xf8,0xb1,0xf3,
0x13,0x39,0xef,0xd,0x4c,0xb9,0xbd,0xb9,0x2e,0x97,0xd7,0xe6,0xb0,0x99,0xb1,0x68,
0x6,0xf1,0xf8,0xf7,0x19,0xf1,0xec,0xea,0x2b,0xba,0xfc,0x87,0xdd,0x7e,0xc5,0xd0,
0xa7,0x77,0xbe,0x58,0xb9,0xe7,0xd9,0x4f,0xdc,0x8b,0x73,0xff,0x98,0x4,0xc8,0x3,
0x22,0xfb,0x41,0x7f,0xa9,0xfc,0xb0,0xed,0x7f,0xf6,0x10,0x80,0xba,0x10,0x3f,0x10,
0xd1,0xd4,0x80,0x7a,0xdd,0x14,0x39,0xdc,0x30,0xb7,0xad,0xee,0xee,0xa7,0x6b,0xbe,
0xfd,0x5f,0xaa,0x7f,0xf6,0xaf,0x68,0x63,0xfe,0xe1,0x86,0xba,0x1f,0xfe,0x37,0xac,
0xca,0xb0,0x26,0xb6,0xaf,0xeb,0x9d,0x67,0x71,0xef,0x95,0xd1,0xb9,0x66,0x74,0xac,
0x1a,0x1d,0x74,0xff,0xb3,0xc1,0x8e,0xbc,0xc7,0x8f,0x9b,0xfa,0xae,0xef,0x30,0xfa,
0x1f,0xea,0xa0,0x2e,0xe8,0x5d,0xad,0xf3,0x7,0x5a,0xfb,0x5b,0x5a,0xcb,0x25,0x35,
0x6e,0x37,0xd1,0x4e,0xb4,0x29,0x47,0x9a,0x5a,0xfb,0x6b,0x1a,0xfb,0x2a,0x6a,0x32,
0xc7,0x2b,0x12,0x87,0x8f,0x47,0xf6,0x1d,0xe,0xec,0xda,0xef,0xdd,0xba,0xbb,0xe7,
0xe5,0x1d,0xdd,0x2f,0xec,0x70,0xbd,0xb0,0xc3,0xc9,0xe4,0xe0,0x7a,0x71,0x87,0xfd,
0xc5,0x9d,0x36,0x26,0x2b,0xf4,0xd2,0x2e,0xcb,0xc7,0x64,0x7b,0x69,0x97,0xfd,0xa5,
0x9d,0x8e,0x17,0x49,0xce,0x17,0x77,0x76,0xbd,0xb8,0xd3,0xf5,0xe2,0xce,0xee,0x17,
0x77,0xba,0x5f,0xd8,0xe1,0x79,0x61,0x87,0xf7,0x85,0xed,0xbe,0xe7,0xb7,0xfb,0x9f,
0xdf,0x1e,0x7c,0x6e,0x5b,0xe8,0xb9,0x6d,0xc9,0x67,0xb7,0x8d,0x3c,0xb3,0xf5,0xc2,
0xc6,0x2d,0xf,0x9e,0xd8,0xf0,0xc6,0xf,0x6e,0x81,0x7e,0xe8,0xea,0x5b,0x17,0x78,
0xff,0xa1,0xd4,0xa7,0xf8,0x17,0x2f,0xb5,0xd0,0x4b,0x5e,0x43,0xd9,0xba,0xf7,0xfe,
0x8d,0xf3,0x66,0x9d,0xa3,0x1f,0x67,0x3f,0xf0,0xf9,0xa3,0x26,0xcd,0x4c,0x63,0xf3,
0xdf,0x1f,0xaf,0xfb,0xe9,0xc1,0x9a,0xbf,0x3a,0xd4,0xf4,0x95,0x53,0x1d,0x6f,0xd6,
0x69,0x6f,0xb5,0x59,0xae,0xab,0x9d,0x57,0x8d,0x6e,0xfa,0x80,0xa6,0x33,0x70,0xd5,
0x1d,0xb9,0xe6,0x8d,0x5d,0xb,0xe0,0x1c,0xb,0x3b,0xdf,0x12,0xcb,0x5f,0xa3,0xbd,
0xf6,0xe1,0x9b,0xf8,0x5a,0x28,0xed,0x3c,0x4e,0xdc,0x1a,0x9a,0xb9,0x33,0x3a,0x7b,
0x67,0x7c,0xf1,0xde,0xd4,0xd2,0xbd,0xe9,0xe5,0x7b,0xb3,0x67,0x5e,0x9b,0x3b,0x73,
0x6f,0x6e,0xf5,0xde,0xfc,0xda,0x6b,0xb,0xb8,0xf4,0x73,0xfd,0xb5,0xc5,0xf5,0x7b,
0x8b,0x6b,0x77,0x17,0x56,0x6f,0xcf,0xaf,0xde,0xc1,0xad,0xb7,0xf3,0x67,0x6e,0xce,
0x9d,0xb9,0x39,0xbf,0x72,0x73,0x6e,0xe5,0xc6,0xec,0xca,0xf5,0xd9,0xa5,0x6b,0x33,
0x4b,0x57,0xa7,0x97,0xae,0xce,0x2c,0xbe,0x3a,0xbd,0xf8,0xca,0xd4,0x2,0x74,0x65,
0x6a,0xfe,0xca,0xe4,0xdc,0xa5,0x89,0x72,0xcd,0x5e,0x18,0x9b,0xb9,0x30,0x36,0x7d,
0x7e,0x14,0xe3,0xcc,0x85,0xd1,0xa9,0xf3,0x23,0x53,0xe7,0xa0,0xe1,0x49,0x49,0x13,
0x67,0x7,0xc7,0xcf,0xd,0x8e,0x9d,0x1d,0x20,0x9d,0x83,0xfa,0x47,0xcf,0xa1,0xc9,
0xf4,0x8f,0x5e,0xe8,0x1f,0xb9,0x58,0x24,0x5d,0x2a,0xe,0x5f,0xee,0x43,0x1,0x1b,
0x7a,0xb5,0x6f,0xe8,0x6a,0x7e,0xe8,0x7a,0x7e,0xe8,0x46,0x7e,0xf0,0x56,0x6e,0x10,
0x17,0xfe,0xdc,0xc1,0xc,0x80,0x31,0x3b,0x78,0x3b,0x3b,0xf4,0x67,0x59,0x3c,0x21,
0x1e,0xfd,0xd3,0x3c,0x3e,0xa,0x36,0x7a,0x3e,0xcf,0x16,0x3,0xd1,0xf0,0x60,0x8f,
0x2b,0x67,0x6c,0xfd,0xda,0x53,0x38,0x8c,0x69,0x9b,0x69,0xe6,0x8b,0x1,0x61,0x0,
0x42,0x1f,0x1f,0x7f,0xc7,0xa7,0x7f,0x31,0x1b,0xe0,0xcb,0xef,0x5a,0x57,0xde,0xd2,
0xdb,0xef,0xf4,0xc4,0x9d,0xdd,0x6e,0xbb,0xdd,0x6c,0xa2,0xe9,0x2,0x4d,0xa9,0x53,
0x2d,0x15,0x1b,0xe,0x7d,0x1b,0xb8,0x2f,0x43,0x1f,0x6,0xc0,0xdf,0xb4,0xb5,0x33,
0xfa,0xb1,0xba,0xe5,0x33,0x0,0xe8,0x7,0xf4,0x7c,0x2a,0xe0,0x2d,0x88,0x1b,0x40,
0x9e,0xa,0xd8,0x6f,0xfa,0x23,0xfd,0xb,0xaa,0x86,0x16,0x57,0x45,0x53,0xff,0xde,
0x86,0xf3,0x2f,0xd4,0x7d,0xf9,0xf,0x6b,0x7e,0xf4,0xef,0xaa,0x7f,0xf3,0xdb,0x8f,
0x3f,0xaf,0xfd,0xf0,0xff,0xae,0xc4,0xf3,0xda,0x77,0x9e,0x6e,0x9b,0xaa,0xc7,0x3d,
0xb,0x38,0x2b,0x61,0xa3,0xeb,0xce,0x81,0xbe,0xd1,0xb9,0x6c,0xc4,0xb3,0x45,0xc7,
0xa2,0xc1,0xbe,0xa0,0xb7,0xcf,0xeb,0x6d,0x24,0xba,0xfe,0xc4,0x7e,0x4f,0xe7,0xf8,
0x8e,0xae,0xeb,0x37,0x5a,0x7c,0xa5,0x13,0x72,0x42,0x1f,0x6a,0xec,0xbf,0x54,0x5b,
0x7e,0xa0,0x34,0x7e,0xbe,0x5d,0x73,0xa5,0xb5,0x73,0xbe,0xb1,0x6d,0xb8,0xb6,0xa9,
0xbf,0xb2,0xb6,0xef,0x44,0x55,0xee,0xe8,0xc9,0xf4,0x81,0xe3,0x89,0x7d,0x87,0x62,
0x3b,0xf7,0x47,0xb6,0xed,0x9,0x6e,0xa2,0x84,0xf6,0xbd,0xb8,0xdd,0xfb,0xbc,0x50,
0xef,0xf3,0xdb,0x3d,0x24,0x2,0xfa,0xe3,0xea,0x7d,0x81,0xfe,0x35,0x20,0x1e,0x20,
0xca,0xb9,0xb6,0x49,0xb8,0x6f,0x1d,0x7a,0x66,0xeb,0xc2,0x53,0x5b,0xaf,0x3d,0xb9,
0xe5,0x9d,0x27,0xb6,0x7c,0xf7,0xd3,0x5b,0x7e,0xf1,0xa9,0x2d,0x1f,0xfe,0xf1,0xe6,
0x87,0xff,0xb,0x62,0x6,0xf8,0x1,0xdd,0x63,0x75,0xee,0x2,0x1d,0x7f,0xc0,0xa9,
0x4f,0xde,0x7c,0xc4,0x3b,0xec,0x6c,0x1e,0x8,0xbd,0x62,0xa8,0x7d,0xef,0x77,0xbc,
0x93,0x16,0x53,0x9f,0x42,0xd7,0xdf,0xac,0x19,0x6b,0x54,0xae,0xd7,0x36,0x7c,0x78,
0xe8,0xf4,0xb9,0x3,0x95,0x4b,0x87,0x15,0x67,0xeb,0x70,0x62,0xc,0xb,0xa3,0xc0,
0x6d,0x37,0xb6,0x2c,0xe8,0x1,0xe7,0xbd,0x44,0xff,0x3d,0x7c,0xfb,0xd,0x15,0xb9,
0x6f,0xf4,0x5e,0x71,0xea,0xfe,0xf0,0xd4,0x6b,0xc3,0x33,0xaf,0x8d,0xce,0xdf,0x9f,
0x58,0xa4,0x2f,0x70,0x4d,0x2f,0xdd,0x9f,0x59,0xb9,0x3f,0xbb,0xfa,0xfa,0xfc,0xfa,
0x1b,0x8b,0xeb,0xaf,0x2f,0x9e,0x7d,0x63,0xf9,0xec,0xeb,0x4b,0x67,0xef,0x2f,0x9d,
0x7d,0x6d,0x9,0xd0,0x93,0xee,0x2e,0xae,0xdf,0x59,0x5c,0xbb,0xbd,0xb0,0xa,0xee,
0x6f,0xcd,0xaf,0xde,0x5a,0x58,0x5,0xfa,0xd7,0xe7,0xc0,0xfd,0xf2,0xb5,0xd9,0xe5,
0xab,0x33,0x4b,0xaf,0x32,0xbd,0x32,0xb3,0x78,0x85,0xb8,0x5f,0xb8,0x4c,0x9a,0xbf,
0x34,0x31,0x7f,0x71,0x12,0x9a,0xbb,0x30,0x1,0xcd,0x5e,0x18,0x9f,0x3d,0x3f,0x36,
0x3,0x9d,0x23,0x4d,0x9f,0x1d,0x99,0x62,0x9a,0x5c,0x1f,0x66,0x3f,0x86,0x27,0xd7,
0x87,0x26,0xd6,0x7,0xc7,0x99,0xc6,0xd6,0x6,0x48,0xeb,0xb0,0x41,0x3f,0x34,0xa,
0x9d,0x2b,0x8e,0x9c,0x2f,0xe,0x9f,0x2f,0xc,0x5f,0x28,0xc,0x21,0xd4,0x2f,0xf5,
0xd,0x5d,0xce,0xf,0xe2,0x23,0x17,0x57,0xf3,0x83,0xd7,0x72,0x83,0xd7,0x71,0xdd,
0x55,0x6e,0x0,0x37,0x5e,0xdd,0xce,0xd,0xdc,0xce,0x72,0xd,0x7f,0x2f,0x3b,0xf2,
0x7e,0x76,0xf4,0xed,0xfc,0x18,0xbe,0xd,0x73,0x36,0xdf,0xbf,0x94,0x4a,0x4f,0x84,
0x82,0xc5,0x6e,0x47,0x41,0xd3,0xf8,0x83,0xff,0x56,0xff,0x8b,0xdf,0x73,0xf5,0xe9,
0x9c,0x66,0x2b,0xe,0x44,0xa0,0xf6,0xa0,0xfc,0x80,0x6c,0x74,0x18,0x26,0x7c,0x2,
0x9e,0xcc,0x40,0x7e,0xc0,0xc7,0xbf,0x58,0xb1,0xc1,0x51,0x5,0x15,0xbe,0xfb,0xc2,
0x3e,0x0,0xc3,0x7e,0xd0,0x53,0x5b,0x78,0x0,0xbf,0xe9,0xc2,0x1f,0xc6,0x3d,0x17,
0x7e,0x4b,0xe5,0x87,0xe6,0x1,0x16,0xff,0xdc,0x6,0x2d,0xa,0x72,0x2,0xb5,0x20,
0xb6,0x6,0xa0,0xd7,0xe1,0xdb,0x5b,0x9b,0xdb,0x2c,0x75,0xad,0x91,0xe3,0x4d,0x73,
0x3b,0x1b,0xee,0x7e,0xb6,0xf6,0xaf,0xfe,0x6b,0xf5,0xcf,0x7e,0xa7,0x8a,0x6e,0x80,
0x2c,0x7f,0xd8,0xf4,0x4f,0x2a,0x7f,0xf3,0x4f,0x4f,0xfd,0xf5,0xbf,0x3a,0xfa,0xc5,
0xff,0xb0,0xff,0xd2,0x7f,0xd9,0x39,0xf1,0x47,0xdb,0x92,0x4f,0xee,0x89,0x6d,0x3a,
0x9a,0xdc,0x57,0x55,0x3c,0xde,0x36,0x5a,0xaf,0x9e,0x6a,0x35,0xce,0xaa,0x0,0xba,
0x63,0xc1,0xe0,0x98,0x37,0x3a,0xe6,0xc,0xf6,0x59,0x83,0x7d,0x46,0xf,0xd9,0xa6,
0x21,0x9d,0x55,0x16,0x2e,0x81,0xbb,0xa3,0xb5,0xff,0x95,0xd6,0xf1,0xb,0x8d,0xf3,
0x23,0x8d,0xe3,0x21,0xa4,0xc6,0x7,0xe,0x2d,0xf,0x95,0xa6,0x77,0x15,0xba,0x9f,
0xb4,0xa8,0xbe,0xdb,0xd0,0xfe,0xe5,0xda,0xe6,0xd7,0x2a,0x1b,0x2e,0x9e,0xaa,0x5d,
0x38,0x5e,0x35,0x7a,0xf4,0x54,0xdf,0xc1,0xe3,0x99,0x7d,0x47,0x52,0xbb,0xf,0x26,
0x77,0xec,0x8d,0x6f,0xc1,0xff,0xee,0xae,0xd8,0xcb,0x3b,0x22,0x2f,0x6c,0x8f,0x3c,
0xbf,0x2d,0xfc,0xdc,0x23,0x8a,0xe0,0x8f,0xcf,0x6e,0xc3,0x18,0x7f,0x76,0x6b,0xee,
0x99,0xad,0x43,0x4f,0x6f,0x9d,0x78,0x7a,0xeb,0xd2,0x53,0x5b,0x2e,0x6d,0xdc,0x72,
0xf7,0xb3,0x5b,0xbe,0xf6,0x99,0x2d,0x7f,0xf3,0xe9,0xcd,0x3f,0xff,0xd4,0x96,0xf7,
0x5,0xee,0x20,0x1e,0x57,0x46,0x6f,0xfe,0xe8,0x7f,0x6d,0xfa,0xf9,0x1f,0xbf,0xf4,
0xed,0x3f,0x7e,0xe1,0x8d,0x4f,0x6d,0x0,0xfd,0xd0,0xdd,0xbf,0xb8,0x8a,0xd3,0x6f,
0x38,0xfe,0xc0,0x56,0xbd,0xb4,0xed,0x93,0x67,0x57,0x39,0xe0,0xfd,0x5d,0xfc,0x8d,
0xf1,0x2f,0xb7,0x75,0x7e,0xfb,0xe9,0xee,0x7e,0x83,0x3e,0xdf,0xa2,0xe9,0x6f,0xec,
0x1c,0xad,0x6b,0x7d,0xe7,0x54,0xed,0x8f,0xf,0x9e,0x9a,0x3d,0x50,0xbb,0x7c,0x5c,
0x7d,0xbe,0xd5,0x75,0xd5,0x1c,0xb9,0xe3,0xcd,0xdd,0x8f,0x8f,0x3c,0x28,0x8c,0xbf,
0x3d,0x30,0xfd,0xf6,0xc8,0xdc,0x3b,0xe3,0x73,0xf,0xc6,0x97,0xe9,0x13,0x74,0x73,
0xcb,0xf,0x66,0x57,0xdf,0x9e,0x5f,0x7b,0xb0,0x78,0xee,0xed,0xe5,0xf3,0xf,0x56,
0xce,0x41,0x6f,0xad,0x5c,0x78,0xeb,0xcc,0x85,0xb7,0x56,0xcf,0xbf,0xb1,0x72,0xfe,
0xf5,0x95,0x73,0xf7,0x57,0x80,0xfe,0xb9,0xd7,0x56,0xce,0xdd,0x5b,0x39,0x7b,0x67,
0x69,0xed,0x36,0x47,0x7f,0x1,0x79,0xbf,0x7a,0x63,0x1,0x3a,0x73,0x7d,0x9e,0x74,
0x6d,0x6e,0xe5,0xd5,0x59,0x40,0x4f,0xba,0x32,0xbd,0x8,0xe8,0x2f,0x4d,0x2d,0x5e,
0x9a,0x86,0xf0,0x83,0xd0,0xbf,0x40,0x9a,0xc3,0xdb,0x33,0xe7,0x27,0x66,0xcf,0x8d,
0x43,0x33,0x67,0x47,0x67,0xce,0x8e,0x71,0x4d,0xaf,0x8f,0x42,0x53,0x6b,0x23,0x93,
0x6b,0xc3,0x5c,0x13,0xab,0x43,0xe3,0xab,0x83,0xe3,0x6b,0x83,0x18,0xc7,0x56,0x99,
0x1,0x48,0xfd,0xa3,0x6b,0xfd,0x23,0xeb,0xc5,0x91,0xb3,0xc5,0xe1,0xb3,0x85,0x91,
0x73,0xe4,0x81,0xa1,0xf3,0x7d,0x43,0x17,0xe0,0x81,0x3c,0xf3,0x0,0x6e,0xba,0xcd,
0xd,0xd0,0xa7,0xbe,0x70,0xd7,0x55,0x16,0x1e,0x18,0xb8,0x95,0xe9,0x67,0xc2,0xdd,
0x27,0x43,0x7f,0x9f,0x1e,0xfe,0x55,0x86,0xbe,0x86,0x7d,0x29,0x3f,0xbc,0x9e,0x2b,
0x2e,0x24,0x92,0xa3,0x1,0x7f,0x9f,0xd3,0x3a,0xaa,0xa8,0xfb,0xc7,0x7f,0xd7,0xfc,
0xb7,0xff,0xb5,0x3b,0x48,0xb7,0xa7,0xc0,0x0,0x98,0x7,0x38,0xeb,0xa0,0x1f,0x4e,
0x28,0x17,0xaf,0xf5,0x0,0x1d,0x1e,0x90,0xe8,0x27,0x3,0xf0,0xda,0xc3,0xd4,0x46,
0xf7,0xb4,0x9,0xf,0xb0,0x17,0xde,0xa9,0x2,0x89,0xf8,0x97,0x56,0xc0,0xe4,0x1,
0xba,0x13,0x4e,0xd3,0xdc,0xde,0x53,0xd3,0x3a,0x70,0xa0,0xe9,0xfc,0xa6,0x6,0xbc,
0xc6,0xf9,0xc3,0xff,0x80,0x77,0x56,0x1e,0x3b,0x2c,0x50,0xfd,0xd1,0x3f,0xab,0xff,
0xc5,0xbf,0x6d,0xfc,0xfe,0xff,0x68,0xfa,0xfc,0x93,0x75,0x17,0x5e,0x3e,0x3d,0xb8,
0x75,0x5f,0xd7,0x4b,0x5b,0xd5,0xcf,0x6e,0x56,0x3e,0xf3,0xb2,0xea,0xe9,0x97,0x74,
0x1b,0x5f,0x34,0x3d,0xb9,0xd9,0xf9,0xec,0x6e,0xef,0x96,0x23,0xb1,0x7d,0xd5,0xb9,
0x93,0x2d,0x3,0x75,0xea,0xd1,0x56,0xe3,0xa4,0xa,0xa0,0xdb,0xa7,0xf5,0xf6,0x29,
0x83,0x7d,0x12,0xd2,0xdb,0x26,0x20,0x9d,0xb5,0x24,0xad,0x65,0x42,0xd2,0x2c,0x5e,
0x7e,0xd7,0x58,0xef,0x6b,0x6c,0x7f,0xae,0xb6,0xff,0x44,0x6d,0x7f,0x5f,0xb2,0xc1,
0xc3,0x76,0xfd,0xc3,0x56,0xf5,0xc3,0x46,0xe5,0xc3,0xda,0xb6,0xf,0x2b,0x5b,0x7f,
0x73,0xba,0xf1,0x67,0xc7,0x6b,0x7f,0x72,0xa4,0xea,0x87,0x7,0x2b,0xbe,0xbf,0xff,
0xd4,0xb7,0xf6,0x1e,0xff,0xfa,0xae,0x23,0x5f,0xd8,0x7e,0xe8,0xad,0x6d,0x7,0x1e,
0x6c,0xde,0xfb,0xf6,0x8b,0x7b,0xbe,0xf0,0xc2,0xae,0x2f,0x3f,0xb7,0xeb,0x6b,0xcf,
0xee,0xfc,0xc6,0x33,0x3b,0xbe,0xf9,0xd4,0x8e,0x6f,0x3f,0xb5,0xe3,0x87,0x4f,0x6e,
0xff,0xc7,0xcf,0x6e,0xff,0xd5,0x13,0xdb,0xde,0xfb,0xf4,0xb6,0xf,0x3f,0xb3,0xf5,
0xe1,0xa7,0xb7,0x31,0x6d,0x79,0xf8,0x29,0x5c,0x8f,0x4e,0x3f,0x7e,0xf3,0x27,0x9b,
0xff,0xfe,0xd3,0x9b,0xff,0xf2,0x33,0x9b,0x1e,0x7c,0xe6,0xa5,0x73,0x4f,0xbc,0x30,
0xf4,0xc4,0xf3,0x89,0xcf,0x3e,0x17,0x78,0xe2,0xf9,0xc0,0x67,0x37,0xdc,0xff,0xfe,
0xd,0xf4,0x1f,0xdc,0xdc,0xb6,0x30,0x31,0x8d,0x37,0xdf,0x51,0xfa,0x69,0xd5,0x8b,
0xb7,0xd7,0xe9,0x1e,0x7,0xba,0xc1,0x21,0x5f,0x48,0xd6,0xbf,0xf7,0x6f,0xed,0x37,
0xaa,0x6d,0xf9,0x4e,0x6d,0xae,0x49,0x35,0xd0,0xd0,0x31,0x5e,0xdb,0xf8,0xc3,0xa3,
0x95,0x9f,0x3f,0x0,0x3,0x34,0x2e,0x57,0x98,0x2e,0xaa,0x83,0x37,0xdd,0xf9,0xfb,
0x89,0xf1,0x77,0x6,0x96,0xbf,0x32,0xb3,0xfe,0xd5,0xc5,0xd5,0x2f,0xcd,0x9f,0xfb,
0xf2,0xf2,0xf9,0x2f,0xad,0x9c,0xff,0xe2,0xca,0x85,0x2f,0x9e,0xb9,0xf0,0x85,0x33,
0x17,0x3f,0xbf,0x76,0xf1,0x9d,0x55,0xe8,0xc2,0x3,0xe2,0xfe,0xc2,0x9b,0x67,0x18,
0xfa,0x67,0x20,0x70,0x7f,0xf6,0xde,0xf2,0xd9,0xbb,0x4b,0xeb,0x77,0x96,0x88,0xfe,
0x5b,0x8b,0x6b,0x37,0x17,0x20,0x42,0x9f,0xa0,0x67,0xba,0xa,0xf4,0x99,0x5e,0x99,
0x5d,0xba,0x32,0xb3,0x7c,0x65,0x56,0x70,0x7f,0x61,0x6a,0xe1,0xe2,0xd4,0xe2,0xc5,
0xe9,0x85,0xb,0x53,0x80,0x7e,0xee,0x9c,0xa4,0xb3,0x13,0xb3,0x67,0xc7,0x67,0xd6,
0xc7,0xb8,0xa6,0xd7,0x88,0x7b,0x1a,0x57,0x47,0x26,0xcf,0xc,0x93,0x56,0x89,0xfe,
0x89,0x33,0x83,0xe3,0x4c,0x63,0x2b,0x3,0x63,0x67,0x48,0xa3,0x67,0xfa,0x47,0x57,
0xfb,0x47,0xce,0x14,0x47,0x56,0x8b,0x23,0x6b,0x85,0x61,0x68,0xbd,0x6f,0x8,0x3a,
0xdb,0x47,0x1e,0x40,0xb1,0xb9,0x98,0x1f,0xbc,0x84,0xef,0x5c,0xe4,0xb0,0x52,0x87,
0x7,0x6,0xae,0x65,0xe9,0xc,0xc5,0xcd,0x6c,0x3f,0x2e,0xbd,0xc2,0x9d,0x3f,0x18,
0xf1,0xbd,0xc7,0x5f,0xa5,0x87,0x7f,0x92,0xc1,0x17,0x51,0x87,0xcf,0xe7,0x86,0xce,
0x64,0xf3,0x33,0x31,0x2c,0x6,0xbc,0x39,0x87,0x7e,0xa1,0xba,0xe6,0xdd,0x7f,0xd1,
0xfe,0x8d,0xa7,0x71,0x46,0x2,0x45,0xc8,0x82,0xb,0xcd,0x55,0xb4,0x8a,0xe5,0xf3,
0x0,0xa0,0xc7,0x2b,0x8b,0x20,0x1e,0x3f,0xb0,0x93,0x83,0x91,0xc7,0x3f,0xdb,0xd5,
0xe1,0x33,0x0,0x8d,0x4c,0xe4,0x1,0xfc,0x20,0xe8,0x71,0x1,0x28,0xbb,0x6,0x14,
0xbf,0xd9,0x76,0x67,0xab,0x52,0xd1,0xda,0x61,0x6d,0x54,0x44,0x4e,0xb6,0xce,0xed,
0x69,0xbc,0xbd,0xb1,0xee,0x2f,0xff,0x7b,0xcd,0x4f,0xf1,0x46,0x58,0xf9,0x61,0x4c,
0xf6,0x16,0xef,0xc3,0xdf,0x69,0xfe,0xf9,0x1f,0x74,0x7e,0xe7,0x59,0xe3,0xe7,0xf7,
0x39,0xae,0x36,0x76,0xcf,0xaa,0x5d,0x3,0x7a,0x5b,0x52,0xa3,0xb,0xb7,0xb5,0xf6,
0x56,0xd7,0xb8,0x8e,0x61,0x8b,0x70,0x47,0xc7,0x4b,0x9b,0x15,0xcf,0xbc,0xdc,0xfe,
0xf4,0x8b,0xca,0xa7,0x5e,0x50,0x3f,0xf9,0x82,0xe1,0xc9,0x97,0x6d,0xcf,0xec,0xf2,
0x6c,0x39,0x1a,0xde,0x5f,0x93,0x3a,0xd9,0xd2,0x57,0xdb,0x39,0xd0,0x62,0x1c,0x51,
0x5b,0x46,0xb5,0xb6,0x31,0x3d,0x64,0x1f,0x33,0xd8,0x46,0xf5,0xd6,0x51,0x1d,0x17,
0xfe,0x5e,0x92,0xc6,0x3c,0x5a,0x92,0x69,0x4c,0x6d,0x9a,0xc0,0x1d,0x58,0x6a,0xf3,
0x55,0x95,0xe5,0x2d,0x95,0xe5,0x1b,0x2a,0xf3,0xf7,0x95,0xa6,0x7f,0xe8,0x30,0xfc,
0xa6,0x4d,0xf3,0x51,0x93,0xea,0x61,0x3,0x39,0xe1,0x61,0x65,0xcb,0xc3,0x53,0x8d,
0xf,0x4f,0xd4,0x3f,0x3c,0x5a,0xfb,0xf0,0x70,0xd5,0xc3,0x3,0x78,0x30,0x8a,0x3d,
0xf4,0x93,0xf,0x77,0x1d,0x7f,0xb8,0xfd,0xe8,0xc3,0x6d,0x87,0x1f,0x6e,0x3e,0xf4,
0xf0,0xe5,0x43,0xf,0x37,0x1d,0x7c,0xf8,0xf2,0xfe,0x87,0x2f,0xee,0x7b,0xf8,0x3c,
0xb4,0xf7,0x83,0xe7,0xf6,0xfc,0xea,0x99,0xdd,0x3f,0x7d,0x76,0xf7,0x5f,0xc3,0x1e,
0xcf,0x6e,0xbb,0xf7,0xf4,0x96,0xb3,0x4f,0x6f,0x19,0x7f,0x76,0x53,0xf6,0x99,0x97,
0x63,0x4f,0xbf,0x1c,0x7c,0x66,0x53,0xf0,0xd9,0xcd,0x81,0x67,0x37,0xf9,0x9f,0xdd,
0xe2,0x7f,0x7e,0xb3,0xef,0xb9,0x6d,0xfe,0x17,0xc9,0x0,0xaf,0x7d,0xff,0xfa,0xd9,
0xb3,0xcb,0x33,0xa3,0xe3,0xd8,0xec,0xa7,0xab,0x7b,0xe8,0xb1,0x17,0xdd,0xe1,0x3,
0x33,0xc0,0x6,0xa1,0xcb,0xc6,0xda,0xf7,0xff,0x95,0x67,0xcc,0x6c,0xce,0xe1,0x98,
0x47,0x63,0xe7,0x60,0x9d,0x62,0xa9,0xaa,0xee,0x83,0x83,0xe8,0x3f,0x15,0xb3,0x87,
0x15,0x67,0xea,0x1d,0x97,0xd,0x78,0x60,0x39,0xfa,0xa0,0x78,0xe6,0x2b,0x73,0x17,
0xbe,0x7e,0xe6,0xca,0x37,0xce,0x5e,0xfe,0xda,0xda,0xe5,0xaf,0xae,0x5f,0xf9,0xca,
0xd9,0x4b,0x5f,0x5a,0xbb,0xf4,0x85,0xb5,0x8b,0x9f,0x23,0xf4,0x2f,0xbe,0xbd,0x7a,
0xf1,0xc1,0xda,0x79,0xa0,0xff,0x3a,0xa5,0xfe,0xf9,0xfb,0x2b,0xe7,0x5e,0x5b,0x3e,
0x47,0xe8,0x2f,0xaf,0xdf,0x5e,0x5c,0xbf,0xb5,0xb4,0x7e,0x73,0x69,0xed,0xe6,0xe2,
0xda,0x8d,0xc5,0xd5,0xeb,0xb,0xab,0xd7,0xe6,0x99,0x16,0xce,0xbc,0x3a,0xcf,0xb8,
0x9f,0x3,0xf4,0x4b,0x97,0x71,0xa6,0x7a,0x6,0xb8,0x2f,0x5d,0xa2,0x71,0x11,0xf4,
0x9f,0x9f,0x5a,0xbc,0x30,0x8d,0x71,0xfe,0xdc,0x24,0x34,0x77,0x76,0x82,0x8f,0xd0,
0xec,0xfa,0xf8,0xcc,0xda,0xf8,0xf4,0x2a,0x41,0x4f,0x3a,0x43,0x9a,0x5c,0x19,0x9e,
0x58,0x19,0x22,0x3,0xe0,0xc7,0xf2,0xd0,0xf8,0xca,0xe0,0xd8,0xf2,0x0,0xc6,0xd1,
0xe5,0x7e,0x78,0x60,0x74,0xa5,0x1f,0x1a,0x59,0x29,0xe,0xaf,0x14,0xa0,0x91,0x33,
0x85,0x91,0xd5,0xc2,0xf0,0x6a,0x61,0x68,0x35,0x3f,0xb4,0x9e,0x1f,0x84,0xce,0xe6,
0x6,0xe1,0x81,0xb,0xb9,0x81,0x4b,0x39,0x3c,0x85,0xa0,0xdd,0x2a,0xdc,0x74,0x8b,
0x2b,0x6f,0xaf,0x67,0x8a,0xb8,0xef,0xd,0x37,0x5e,0x91,0x7,0xd2,0xfd,0xef,0xa4,
0x7,0xdf,0x4f,0xd,0x7d,0x2f,0x43,0x5f,0x86,0x3c,0x97,0x43,0x11,0xca,0x4d,0x45,
0xa3,0x83,0xbd,0xee,0x94,0x45,0x75,0xe5,0x20,0x16,0xc4,0xea,0xd7,0x76,0x76,0xdb,
0xed,0x28,0x42,0x30,0x0,0x9f,0x4,0x58,0xfc,0xa3,0xf3,0xb0,0x79,0x80,0x19,0x80,
0x8f,0x48,0x7d,0x26,0xe2,0x9e,0x43,0x4f,0xf1,0xcf,0x5a,0x10,0xeb,0x42,0xec,0x6f,
0xb4,0x6d,0xca,0x9e,0xba,0xb6,0x81,0xc3,0xcd,0xe7,0xb6,0x34,0x7c,0xe1,0x53,0xb5,
0x7f,0xfb,0x1f,0xab,0x7f,0xfd,0x2f,0x3e,0x16,0xf0,0xbf,0xd5,0xf0,0xab,0xdf,0x6b,
0xfb,0xd1,0x1f,0x69,0xfe,0xfc,0x65,0xf3,0xeb,0x27,0xbb,0xff,0xac,0xdd,0xff,0x2b,
0x53,0xe8,0x9d,0xae,0xd0,0x68,0x77,0x60,0xb0,0xcb,0x57,0x74,0x78,0xf2,0xd6,0xae,
0x94,0xc1,0x12,0x55,0x69,0x83,0xad,0x6d,0xbd,0xb5,0x75,0xae,0x13,0xa7,0xed,0x87,
0xf6,0xeb,0xb7,0x6f,0x69,0x7b,0xf6,0xe5,0xd6,0xa7,0x5f,0x54,0x6c,0x7c,0xbe,0xe3,
0xc9,0xe7,0x54,0x9f,0x7d,0x4e,0xff,0xd9,0x97,0xac,0xcf,0xec,0x72,0x6f,0x3e,0x1a,
0xdc,0x5f,0x1d,0x3f,0xd9,0x92,0xa9,0x55,0x15,0xda,0xc,0xb8,0x61,0x60,0x48,0x6b,
0x1b,0xd6,0x93,0x86,0xf4,0xd6,0x21,0x1d,0x69,0x50,0x67,0x19,0xd4,0x72,0x99,0x7,
0x35,0xa4,0x21,0x8d,0x69,0x8,0xe7,0x20,0xd5,0xa6,0x61,0x92,0x71,0x58,0x25,0xcb,
0x30,0xd2,0x69,0x18,0xeb,0x34,0xcc,0x28,0xf5,0x4b,0x1d,0xda,0xcb,0x6d,0x9a,0x1b,
0xad,0x9d,0x77,0x9a,0x3a,0xee,0xd7,0x2b,0xde,0xae,0x6d,0xfd,0x52,0x55,0xf3,0xd7,
0x4f,0x37,0xfe,0xc5,0xc9,0xfa,0x6f,0x9d,0xa8,0xfd,0x8b,0x63,0xd5,0x7f,0x76,0xa4,
0xf2,0xeb,0x87,0x4e,0x7f,0xf5,0xc0,0xc9,0x2f,0xed,0x3d,0xf1,0xb9,0xbd,0xc7,0x1f,
0xec,0x3e,0x76,0x7b,0xf7,0xe1,0xcb,0x3b,0xf,0x9f,0xd9,0x79,0x70,0x62,0xc7,0xfe,
0x81,0xed,0xfb,0xf3,0xdb,0xf7,0xa6,0xb7,0xed,0x89,0x6e,0xdd,0x1d,0xd9,0xb2,0x2b,
0xbc,0x65,0x77,0x88,0xb4,0x2b,0xb8,0x79,0x67,0x60,0xd3,0xee,0xe0,0x96,0x3d,0xc1,
0xad,0xbb,0xfc,0x5b,0xa0,0xbd,0xfe,0x6d,0x7b,0x7c,0x5b,0xf7,0xfa,0xb6,0x6d,0x0,
0xfd,0xb7,0xff,0xfc,0x95,0x95,0x99,0xf9,0x89,0x81,0x61,0x7e,0x91,0x1b,0x6f,0xff,
0x39,0x5c,0xde,0xc6,0x3c,0x60,0xfc,0x8b,0x6d,0xca,0x6f,0x6f,0x74,0xe5,0xf5,0xfa,
0x74,0x8b,0x2a,0x5f,0xdf,0x31,0x58,0xd3,0xfc,0xfa,0xc9,0x9a,0x7f,0x38,0x70,0x72,
0x72,0x7f,0xcd,0xdc,0x71,0xcd,0x5a,0x9b,0xfb,0x8a,0x2d,0x7b,0x37,0x36,0xf5,0xce,
0xf0,0xda,0x57,0x16,0x2e,0x7c,0xed,0xcc,0x95,0xaf,0x9f,0xbd,0xf2,0xb5,0xf5,0x2b,
0x5f,0xc5,0x8d,0xfe,0xeb,0x97,0xbf,0xb8,0x7e,0xf9,0xf3,0xeb,0x17,0xdf,0x5e,0xbb,
0xf4,0xf6,0xda,0xc5,0xb7,0x56,0x21,0x46,0x3f,0xa5,0x3e,0xda,0xce,0xb9,0xbb,0x2b,
0x67,0x6f,0x2f,0x43,0xeb,0x38,0x4f,0x7a,0x73,0x69,0xfd,0xc6,0xd2,0xda,0xf5,0xc5,
0xb5,0x6b,0xa0,0x9f,0xb8,0xe7,0x2,0xfa,0x67,0x5e,0x99,0x5f,0xb9,0x32,0xb7,0x7c,
0x69,0x76,0xe9,0xe2,0xc,0x17,0xa0,0xe7,0xdc,0x93,0xce,0x91,0xe6,0xcf,0x4e,0x42,
0x73,0xeb,0x13,0xd0,0xec,0xda,0x38,0xd7,0xcc,0xea,0xd8,0xf4,0x99,0x51,0xd2,0xca,
0xe8,0xd4,0xa,0xd1,0xcf,0xb8,0x27,0xf4,0x27,0xd9,0x38,0x8e,0x7b,0x3f,0x97,0x7,
0xc7,0x96,0x6,0xa0,0xd1,0xa5,0x7e,0xd8,0x60,0x64,0xa9,0x38,0xb2,0x5c,0xe4,0x23,
0x3c,0x30,0xb4,0xd2,0x37,0xb4,0x92,0x1f,0x5a,0xed,0x1b,0x5c,0xcd,0x43,0x3,0x6b,
0xb9,0x1,0x78,0xe0,0x5c,0x6e,0xe0,0x7c,0xb6,0xff,0x62,0x16,0x8f,0x26,0xb0,0x5d,
0xcb,0x3d,0x40,0xb7,0x1d,0x72,0xf,0xe0,0xd2,0xab,0xeb,0xa9,0xfe,0xaf,0xa5,0x6,
0x3f,0x4c,0xd,0x7d,0x3d,0x33,0x7c,0x31,0x37,0xb4,0x96,0x2d,0x2e,0x24,0xd3,0x63,
0xa1,0x50,0xc1,0xed,0x4a,0x9a,0x14,0x6f,0xbe,0x4c,0x9b,0x42,0xeb,0xa7,0xbb,0x2c,
0x36,0x78,0x0,0x45,0x88,0x19,0x80,0xc7,0x7f,0x27,0x70,0x97,0x77,0x36,0xd5,0x64,
0x0,0x6a,0x3e,0x6c,0x36,0x50,0xe0,0x8f,0xf4,0x1d,0xa4,0x8e,0x76,0x95,0xbd,0xa5,
0x13,0x5f,0xc0,0x9d,0xdb,0xdf,0x74,0xfb,0xe9,0xfa,0xbf,0xfc,0x9f,0x35,0x3f,0xfd,
0x5d,0x16,0xf0,0xe5,0xf7,0xc,0xfc,0x93,0xda,0xf7,0x7f,0xa7,0xe9,0x1f,0x7f,0x5f,
0xf9,0xbd,0xa7,0xc,0x5f,0xda,0xeb,0xb8,0xdd,0xd8,0xb3,0xa6,0xf5,0xcf,0x39,0x82,
0x93,0xdd,0xa1,0x89,0xee,0xe0,0x84,0x2b,0x38,0xe9,0xa,0xcc,0x76,0x79,0x87,0xed,
0xbd,0xfd,0x36,0x77,0x9f,0xd9,0x95,0x31,0x3a,0x92,0x3a,0x6b,0x5c,0xa3,0xf,0xb5,
0x2b,0x7d,0x8d,0xad,0x9e,0x9a,0xfa,0xee,0x53,0xa7,0x1d,0x87,0xe,0x59,0x77,0xec,
0xd0,0xbf,0xf8,0x52,0xc7,0xd3,0x2f,0x76,0x6c,0x7c,0x5e,0x49,0x6,0x78,0x56,0xfb,
0xc4,0xb3,0xc6,0x27,0x5e,0xb2,0x3d,0xbd,0xd3,0xb5,0xf9,0xa8,0x7f,0x7f,0x75,0xe4,
0x64,0x73,0xb2,0x56,0x95,0x6b,0xd3,0xf7,0x75,0x9a,0xfb,0xb5,0xd6,0x7e,0xbd,0xb5,
0x5f,0x7,0x59,0xb8,0x8a,0x90,0xd6,0x4c,0xd2,0x40,0x26,0xa8,0x5f,0xcd,0x65,0x24,
0xa9,0x8c,0x3,0x42,0x86,0xc1,0x4e,0x26,0xa5,0x5e,0x92,0x76,0xa0,0x5d,0x33,0xa0,
0xe8,0x2c,0xb6,0x74,0x14,0x9a,0xda,0xfb,0x1a,0x5b,0xf3,0x75,0xcd,0xb9,0x9a,0xa6,
0x5c,0x75,0x7d,0xa6,0xa2,0x2e,0x73,0xba,0x26,0x7d,0xb2,0x2a,0x75,0xbc,0x32,0x79,
0xec,0x74,0xe2,0xc8,0xa9,0xc4,0xe1,0x53,0xf1,0xc3,0x27,0xe3,0x87,0x8e,0xc5,0xe,
0x1c,0x87,0xa2,0x7,0x8e,0x45,0xf7,0x1f,0x8b,0xec,0x3f,0x12,0xd9,0x77,0x24,0xbc,
0xf7,0x48,0x68,0xef,0xe1,0xd0,0xde,0x23,0xc1,0x7d,0x87,0x83,0x7b,0xe,0x7,0xf6,
0x1c,0x9,0xec,0x3d,0x12,0xd8,0x77,0xc4,0xbf,0xef,0x28,0xe4,0xc3,0xb8,0x7f,0xc3,
0xbd,0xef,0x5f,0xbb,0xf2,0xda,0x59,0xf4,0x9f,0xe1,0xbe,0x7e,0xe0,0xce,0xaf,0xaf,
0xc2,0x95,0x55,0xe8,0x3f,0xb4,0xc,0x28,0xa4,0xd0,0x7f,0xac,0x37,0x2a,0xad,0x99,
0x4e,0x75,0xaa,0x51,0x99,0xaf,0x53,0xc,0x57,0x37,0xfc,0xe0,0x48,0xe5,0x17,0xf7,
0x9f,0x9c,0xd8,0xdf,0x38,0x5f,0x81,0xd7,0x47,0x82,0x57,0x7b,0x6,0xee,0x67,0xe7,
0x3e,0x37,0x7e,0xf6,0x2b,0x4b,0x97,0xff,0x74,0xfd,0xca,0xd7,0xce,0x72,0xfa,0x2f,
0x7d,0x61,0xfd,0xd2,0xe7,0xd6,0x58,0xf0,0x13,0xfa,0x17,0xde,0x58,0xbd,0x80,0xce,
0x23,0xa3,0x7f,0x7,0xe8,0x2f,0x9d,0xbd,0xb5,0x7c,0x16,0xc1,0xf,0xee,0x9,0xfd,
0xc5,0xd5,0xab,0xb,0xa4,0x57,0x17,0x38,0xf4,0xa4,0xcb,0xb3,0x40,0x7f,0xf9,0x22,
0xa3,0xff,0x82,0xd0,0xc2,0xb9,0xe9,0x32,0xee,0x19,0xfd,0xeb,0x93,0x73,0x6b,0x13,
0x5c,0x33,0x67,0xc6,0x66,0xce,0x8c,0xb3,0x71,0x6c,0x6a,0x79,0x64,0x7a,0x79,0x14,
0x23,0x34,0xb9,0x34,0x3c,0xb9,0x3c,0x32,0xb1,0xc4,0xe8,0x5f,0x1a,0x1a,0x5f,0x1c,
0x84,0x1,0xc6,0x16,0x7,0xb8,0x46,0x17,0xfb,0x47,0x84,0x8a,0xc3,0x8b,0x85,0xe1,
0x25,0xd2,0xd0,0x72,0x1f,0x34,0xb8,0x9c,0x1f,0x58,0xc9,0xd,0x9c,0xc9,0xd,0xac,
0xe6,0xe0,0x81,0x7e,0x0,0x7d,0x36,0xd3,0x4f,0x1e,0xc8,0x14,0x2f,0x65,0x8a,0x97,
0xd3,0xd8,0xcc,0x2d,0xe2,0x73,0x2f,0xd7,0xd2,0x85,0x6b,0x44,0x7f,0x81,0xa9,0xff,
0xaf,0x92,0x3,0x1f,0x24,0x87,0xde,0xce,0xc,0x9d,0xcf,0xe,0x9e,0xc9,0x14,0x66,
0x13,0xa9,0x91,0x60,0x30,0xdf,0x6d,0x4f,0x69,0x9b,0xbe,0xf9,0xc7,0xb5,0xef,0xfe,
0x4b,0xdb,0x68,0x2b,0xde,0x97,0xc7,0xa1,0x20,0x56,0x84,0x44,0xb,0xe2,0xb8,0xd3,
0x1a,0x80,0xb5,0x20,0x5a,0x3,0xe8,0xdb,0xd5,0xde,0xe6,0x8e,0x81,0xe3,0xad,0xe7,
0xb6,0x37,0x7e,0xe1,0xd3,0x75,0x7f,0xf3,0x7,0x35,0xbf,0xc2,0x91,0xfa,0x47,0x2e,
0xb5,0xc6,0x35,0x4a,0xd,0xbf,0xfe,0xb7,0xad,0x7f,0xf7,0x87,0x8,0x78,0xeb,0x1b,
0xa7,0xdc,0x97,0x3b,0xfc,0x8b,0xb6,0xf0,0xb4,0x3b,0x3c,0xd1,0x13,0xc1,0x9d,0x5f,
0xf3,0xee,0xd0,0x7c,0x77,0x68,0xba,0xdb,0x3f,0xe1,0xf4,0x8e,0xda,0xbd,0x23,0x36,
0xdc,0x92,0xdd,0x5d,0x34,0x3a,0xfb,0xf4,0xf6,0x9c,0xce,0x9c,0x52,0x19,0xe3,0x4a,
0x7d,0x54,0xa1,0xe,0xb5,0x28,0x3,0x8d,0xa,0x5f,0x5d,0x63,0x6f,0x45,0x4d,0xcf,
0xf1,0x93,0xdd,0x7,0x8e,0xb8,0x76,0x63,0x7,0x7d,0x8b,0xf9,0xb9,0x17,0xb4,0x1b,
0x9f,0xd7,0x7e,0xf6,0x39,0xdd,0x13,0xcf,0xe8,0x3f,0xf3,0xb4,0xf1,0x33,0xcf,0x98,
0x3f,0xc3,0x3c,0xb0,0xe5,0x88,0x77,0x5f,0x55,0xf0,0x44,0x53,0xb4,0xa6,0x33,0xd5,
0xa2,0xcb,0x2a,0xcd,0x7d,0x1a,0x4b,0x9f,0xce,0xda,0xa7,0xb3,0xf4,0x69,0x49,0x79,
0xad,0x99,0xa4,0x81,0x4c,0x42,0xb8,0xac,0x40,0x6d,0x24,0xa9,0x20,0x3,0x54,0xc0,
0xbb,0x7e,0x42,0xfa,0x82,0x52,0x8f,0xcb,0x3b,0x98,0x70,0x59,0x10,0x97,0xb6,0xd8,
0xa1,0x29,0x28,0x54,0x7d,0xad,0x9d,0xf9,0x96,0x8e,0x5c,0x93,0x22,0xd7,0xd0,0x96,
0xad,0xc7,0xcc,0xd3,0x94,0xaa,0x6e,0x4c,0x55,0x37,0x24,0x2b,0xeb,0x12,0x15,0x75,
0x89,0xd3,0xb5,0xf1,0x53,0x35,0xf1,0x93,0xd5,0xb1,0x13,0x50,0x65,0xf4,0x78,0x65,
0xf4,0x58,0x45,0xe4,0x58,0x65,0xf8,0x58,0x45,0xf8,0xe8,0xe9,0xd0,0xd1,0xd3,0xc1,
0xa3,0xa7,0x82,0x47,0x4e,0x7,0x8e,0x9e,0xf6,0x1f,0xad,0x8,0x1c,0xab,0xc0,0xe8,
0x3f,0x56,0xe9,0x3f,0x5e,0xe1,0x3b,0xb6,0x1,0x77,0xf6,0xaf,0xaf,0x2d,0x4e,0xf,
0x8f,0xc9,0xd5,0x9f,0x6e,0x6e,0xc3,0xb5,0xb5,0x31,0xba,0xb2,0x13,0xfd,0xa7,0xe6,
0xfd,0x7f,0xe9,0x1e,0xd6,0x1b,0x53,0xa,0x75,0xaa,0x1,0x2f,0x9b,0xe3,0xac,0x72,
0xed,0xfb,0x7,0x4f,0x9e,0xdb,0x77,0x7a,0xf2,0x90,0x62,0xb1,0xde,0x76,0x4e,0x8f,
0xc3,0xba,0x38,0x1e,0xb3,0xfc,0x85,0x99,0x73,0x5f,0x5e,0xba,0xf4,0xd5,0xb5,0xcb,
0x5f,0x59,0x27,0xfa,0x79,0xe9,0x7f,0x7b,0xf5,0x12,0x6a,0xcf,0x1b,0x67,0x38,0xfd,
0x94,0xfa,0xb4,0xcc,0xa5,0xd4,0xe7,0xe8,0x9f,0xbd,0xb9,0x4c,0xc1,0x5f,0x86,0x3e,
0xd1,0x7f,0x65,0x7e,0xe5,0xf2,0xdc,0xca,0x25,0xd2,0x32,0x4,0xfa,0x19,0xfa,0x8b,
0xe7,0x67,0x96,0xce,0xcf,0x2c,0x9e,0x9b,0x86,0x16,0xce,0x4e,0x1,0xfa,0xf9,0x35,
0x70,0x3f,0x39,0xbb,0x3a,0x31,0xbb,0x3a,0x3e,0xb7,0xa,0xf4,0xc7,0x67,0x56,0x18,
0xfd,0x2b,0x63,0xe0,0x9e,0xd0,0x5f,0x1a,0x21,0x2d,0x8f,0x4e,0x2e,0xe,0x93,0x96,
0x86,0x27,0x16,0x87,0xc7,0x17,0x6,0xa1,0x89,0xc5,0xa1,0xb1,0x85,0x1,0xae,0xd1,
0x85,0x7e,0xae,0x91,0x85,0xfe,0xe1,0x85,0xc2,0xf0,0x42,0x71,0x68,0xa1,0x30,0xb4,
0x8,0xf5,0xd,0x2e,0xe6,0x7,0x97,0xf2,0x3,0x4b,0xb9,0x81,0xe5,0xdc,0xc0,0x4a,
0x16,0x36,0xe8,0x5f,0xcd,0x14,0xd7,0x32,0xfd,0x67,0xb3,0xfd,0xe7,0xb2,0xc5,0xb,
0x99,0xc2,0xc5,0x34,0x79,0xe0,0xa,0x2e,0xbb,0x4d,0x17,0x70,0xe5,0x2d,0xee,0x3c,
0xe4,0x57,0xbe,0xe1,0x22,0xff,0x1f,0x25,0x7,0x7e,0x9d,0x1c,0xba,0x9d,0x19,0x5c,
0xcf,0xf6,0x2f,0xa5,0xfb,0xa6,0xe3,0xf1,0x1,0x9f,0x37,0xe5,0x30,0x67,0xdb,0xeb,
0x7f,0xf8,0x7,0xf5,0xff,0xf8,0x1f,0x9c,0x9,0x9d,0x9d,0x2d,0x88,0xf9,0x62,0x80,
0x6c,0xa0,0x52,0x69,0x1c,0xa,0x55,0x14,0x47,0x65,0xf,0xb6,0xdc,0x7a,0xae,0xe1,
0x2f,0xfe,0xb0,0xf6,0x1f,0xfe,0xd,0x5e,0x65,0x7c,0x3c,0xe0,0x3f,0xf8,0x57,0x4d,
0x3f,0xfb,0x8f,0xca,0xef,0x23,0xe0,0xf7,0x74,0xdd,0x6a,0xf2,0xae,0xea,0x83,0x33,
0xae,0xc8,0x18,0xae,0x3f,0xf2,0x44,0x26,0x3c,0x91,0xc9,0x9e,0xf0,0x64,0x4f,0x8,
0x6f,0x1d,0x4d,0x74,0xf9,0xc7,0x9d,0xde,0x71,0xbb,0x67,0xda,0xda,0x3d,0x6e,0xea,
0x1e,0x32,0x39,0x8a,0x3a,0x7b,0x41,0x6b,0xcd,0xab,0x4d,0x59,0xa5,0x21,0xdd,0xae,
0x49,0xb4,0xaa,0xe2,0xcd,0x1d,0xd1,0x6,0x45,0xb8,0xb6,0x39,0x58,0xd9,0xe0,0x3f,
0x55,0xe7,0x3f,0x51,0xe9,0x3b,0x72,0xca,0x77,0xf0,0xb8,0x6f,0xdf,0x61,0xef,0xae,
0x3d,0xbd,0x9b,0xb1,0xf3,0xb8,0xa9,0xeb,0xe9,0xe7,0xac,0x9f,0x7d,0xd6,0xf2,0x4,
0xd0,0x7f,0xda,0xf2,0xe9,0xa7,0xcc,0x7f,0xf2,0x94,0xe5,0xd3,0x2f,0xda,0x9e,0xde,
0xd5,0xb5,0xe5,0xa8,0x67,0x7f,0xa5,0xef,0x78,0x53,0xb8,0x46,0x19,0x6f,0xd1,0xa7,
0x3b,0xcd,0x59,0x8d,0x25,0xab,0xb3,0x64,0xb5,0x90,0x19,0xca,0x40,0x1a,0x93,0x24,
0x63,0x46,0x4d,0xca,0xaa,0x20,0x83,0x50,0xa7,0x21,0xdb,0xa9,0x87,0x72,0x4a,0x2e,
0x1d,0x9,0x1f,0x8b,0x27,0x69,0x49,0xed,0x5c,0x9a,0x9c,0x2,0x52,0xe7,0xda,0x54,
0xd9,0xd6,0xce,0x4c,0x4b,0x47,0xa6,0xb9,0x23,0xdd,0xa4,0x48,0x35,0xb4,0x25,0xeb,
0x5b,0x13,0x75,0x50,0x73,0xbc,0xb6,0x39,0x5e,0xd3,0x14,0xab,0x6e,0x8a,0x56,0x37,
0x44,0x2b,0x1b,0x22,0x50,0x15,0xc6,0xfa,0x70,0x45,0x7d,0xa8,0xb2,0x2e,0x58,0x51,
0x1b,0x38,0x5d,0x1f,0xa8,0xa8,0xf7,0x73,0x55,0xd6,0xfb,0x2a,0xea,0x7d,0x95,0x1b,
0x6e,0x7c,0x5d,0xdc,0xfe,0x80,0xec,0x97,0x9a,0xf,0xad,0x7d,0xb3,0x30,0x40,0x32,
0x63,0xf8,0xf3,0x6d,0x1d,0xdf,0x79,0xb2,0x2b,0xa3,0xd3,0x25,0x5a,0x3a,0x53,0xf5,
0xed,0x7d,0x35,0x4d,0xb7,0x4f,0x56,0xff,0xec,0xc0,0x89,0xb1,0x7d,0xd5,0xd3,0xc7,
0x3b,0x97,0x5b,0x5c,0x17,0x2c,0x78,0x99,0x75,0xea,0xad,0xe1,0x33,0x5f,0x98,0xbb,
0xf0,0x95,0x33,0x97,0xbe,0xbc,0x76,0xe5,0xcb,0x67,0xb1,0xe4,0x65,0xd9,0xbf,0x86,
0xd2,0x7f,0xe1,0x4d,0x86,0xfe,0x6b,0x2b,0xe7,0xef,0x9d,0x81,0xce,0xdd,0x59,0x3e,
0x77,0x7b,0xf9,0xdc,0x2d,0xe2,0x7e,0xfd,0x3a,0xa1,0x4f,0xf4,0xbf,0x4a,0xa9,0xbf,
0xfa,0xa,0xa1,0x4f,0xe3,0xe5,0x79,0x8,0xdc,0x93,0x70,0x17,0x10,0xe3,0x7e,0xe9,
0x1c,0x43,0xff,0xac,0xd0,0xc2,0xfa,0xd4,0xc2,0xda,0x14,0x19,0x60,0x75,0x82,0x74,
0x66,0x62,0x66,0x65,0x7c,0x76,0x65,0x7c,0x66,0x79,0xc,0x9a,0x26,0x8d,0x4e,0x2f,
0x91,0x1,0x26,0x17,0x47,0x26,0x17,0x86,0x27,0x16,0x86,0xd9,0x38,0x34,0x3e,0x3f,
0x8,0x8d,0x91,0x6,0xa0,0xd1,0xb9,0x7e,0xa1,0xf9,0xfe,0x91,0xb9,0xe2,0x30,0xa9,
0x30,0x3c,0x5f,0x18,0x9a,0xef,0x83,0x6,0x17,0xa0,0x3c,0x79,0x0,0xc2,0x3c,0xb0,
0x9c,0xeb,0x5f,0xce,0x16,0x57,0x32,0xc5,0x33,0x99,0xfe,0xb5,0x4c,0x71,0x3d,0x53,
0x38,0x9b,0x2e,0x9c,0x4f,0x17,0x2e,0xa4,0xa,0x97,0x52,0x7d,0x97,0x71,0xdd,0x79,
0xaa,0xef,0x55,0xe9,0xd2,0x4f,0xdc,0xfb,0x79,0x3b,0xd9,0xff,0xf3,0xc4,0xc0,0x4f,
0x93,0x83,0xf8,0x36,0xde,0x99,0x74,0x71,0x3e,0x99,0x1d,0x8f,0xc4,0x8a,0x5e,0x4f,
0xdc,0x66,0x18,0x6a,0xac,0xfd,0xc5,0xbf,0x6e,0xfe,0xde,0xff,0x74,0x86,0x8d,0xa6,
0x90,0x52,0x33,0x54,0xa1,0x38,0xb7,0xbb,0xf9,0xf3,0x9f,0xad,0xff,0xeb,0xff,0x8c,
0xcb,0xf8,0x3f,0x16,0xf0,0xff,0x37,0xee,0x53,0x6a,0xfd,0xbb,0xff,0xa9,0xfd,0xe6,
0xcb,0xd6,0x37,0x4f,0xf6,0x5c,0x52,0x6,0xe6,0xed,0xd1,0x9,0x4f,0x6c,0xd4,0x1b,
0x1b,0xeb,0x8d,0xe2,0x8e,0xc,0x70,0x3f,0xee,0x9,0x8f,0xbb,0x83,0xa3,0x2e,0xdf,
0x88,0x83,0xba,0xcd,0x30,0x62,0xde,0xea,0xc2,0x1d,0x2,0xfd,0x7a,0x7b,0x51,0x6b,
0x1d,0x50,0xe3,0xa5,0x2d,0xd3,0x20,0xd8,0x6a,0xd3,0x64,0x5b,0x55,0xe9,0xa6,0x8e,
0x64,0xbd,0x22,0x51,0xdb,0x9a,0xa8,0x69,0x8a,0x57,0xd4,0x47,0x4f,0x56,0x47,0x8e,
0x55,0x45,0x8e,0x9c,0xe,0x1f,0x3c,0x1e,0xda,0x7b,0x34,0xbc,0xe7,0x70,0x78,0xe7,
0x81,0xc8,0xf6,0x7d,0x91,0x2d,0x3b,0xc3,0x2f,0xe1,0xc9,0xd1,0x96,0xe0,0xb3,0x2f,
0xf6,0x6e,0x7c,0xa6,0xeb,0x33,0x4f,0x3b,0x3e,0xfd,0x94,0xed,0x4f,0x36,0x5a,0xff,
0x64,0xa3,0xf9,0x53,0x4f,0x99,0x3f,0xfd,0x82,0xe5,0xe9,0x9d,0xf6,0xcd,0x87,0x5d,
0xfb,0xaa,0x7a,0x4f,0x34,0x7,0x6b,0x95,0x91,0x16,0x5d,0x42,0x69,0x4a,0xa9,0xcd,
0x29,0xad,0x24,0x8d,0x29,0xc5,0xa5,0x36,0x25,0xd5,0x46,0xae,0x94,0xca,0x20,0xd4,
0x69,0x48,0x75,0xea,0x85,0x94,0xfa,0x94,0x52,0x27,0xd4,0xa1,0x4b,0x77,0x68,0x49,
0xed,0x90,0x46,0x48,0xa1,0x49,0x93,0xd4,0x50,0xaa,0xd,0x52,0x41,0xc9,0xd6,0xce,
0x44,0x8b,0x92,0xd4,0x8c,0xfb,0xb0,0xda,0x63,0x8d,0x8a,0x58,0x83,0x22,0x8a,0x3d,
0x80,0x86,0xb6,0x48,0x3d,0xd4,0x1a,0x86,0xea,0x30,0xb6,0x84,0x6a,0x5b,0x82,0xb5,
0x2d,0x81,0xda,0x66,0x3f,0x54,0xd3,0xec,0xab,0x6d,0xf2,0xd6,0x34,0x7b,0x6b,0x37,
0x5c,0xba,0xb3,0x36,0x37,0x36,0x89,0xed,0x7f,0x5e,0xfa,0x79,0xef,0x7,0xfd,0xb4,
0xff,0xd3,0x97,0xac,0x7f,0xf7,0xdf,0x5a,0xae,0x9f,0xb6,0x26,0x55,0x9a,0x78,0x93,
0x32,0x5d,0xd7,0x56,0xa8,0x6e,0xf8,0xf6,0x91,0x8a,0xaf,0xec,0x3f,0x3e,0xb2,0xaf,
0x61,0xa6,0x42,0xb7,0xd2,0xe1,0xbf,0xdc,0x5d,0xbc,0x93,0x9e,0x7b,0x7b,0x7c,0xfd,
0x8b,0x8b,0xa0,0x5f,0x5e,0xf5,0x5e,0x78,0xb0,0x4a,0x1b,0x9d,0x6f,0xae,0x9e,0xbf,
0xcf,0x6a,0xcf,0xdd,0x95,0xf3,0x77,0xcf,0x9c,0xbf,0xb3,0x82,0xe0,0x47,0xdd,0x3f,
0x7b,0x63,0xf9,0xec,0xf5,0xe5,0x75,0xbc,0x23,0x7f,0x75,0x69,0xed,0xd5,0x45,0x40,
0xbf,0x7a,0x45,0x88,0xe8,0xbf,0xc4,0xe8,0xbf,0xc0,0xe8,0x3f,0xc7,0xd0,0x2f,0x71,
0x3f,0xcd,0xb9,0x9f,0x5f,0x25,0x81,0x7b,0x8,0xdc,0xb,0xf4,0x97,0x40,0xff,0x38,
0xb8,0x9f,0x5e,0x1a,0x9b,0x5a,0x1c,0x81,0x0,0x7d,0xb9,0x26,0xe6,0x87,0xa0,0xf1,
0xb9,0xc1,0xb1,0xb9,0x81,0xd1,0xd9,0x1,0x36,0xf6,0x8f,0xcc,0x92,0x7,0x86,0x67,
0xb,0x64,0x80,0xd9,0x2,0xc,0x30,0x34,0xdb,0x37,0x34,0xd7,0x37,0x38,0x97,0x87,
0x6,0x30,0xce,0xe7,0xfb,0xe7,0x73,0x3,0xb,0xb9,0xfe,0x5,0x4,0x39,0x89,0x7b,
0xa0,0xb0,0x9a,0x2e,0xac,0xa7,0xc9,0x3,0xe7,0x52,0xf0,0x0,0x4e,0x5f,0xe3,0x65,
0x83,0xbe,0x2b,0xa9,0x3e,0xdc,0xfa,0xcf,0x5e,0xb2,0xc9,0xe3,0xe6,0xe7,0xfb,0x89,
0xe2,0x7b,0xf1,0x81,0xef,0x27,0x7,0xcf,0x65,0x30,0x9,0x14,0x66,0x12,0xd9,0xd1,
0x48,0x28,0xd7,0xe3,0x8e,0x5a,0xd4,0xb,0xc7,0x11,0xed,0x75,0xbf,0xfc,0x9d,0x9a,
0xf7,0x7f,0xfb,0xf1,0x9b,0xc2,0xde,0xff,0xad,0xaa,0x9f,0xfc,0x4e,0xed,0x5f,0xfc,
0xb7,0x96,0x37,0x9e,0xd5,0x5c,0x3a,0xee,0x9c,0xeb,0x8,0x4e,0x74,0xc5,0x47,0x7d,
0xf1,0x61,0x1f,0x46,0xc6,0xbd,0x37,0x3a,0xea,0x9,0x8f,0xb8,0x83,0x74,0x21,0x12,
0xee,0xcb,0x70,0xf4,0xe,0xda,0xdd,0xfd,0xe6,0xee,0x22,0xae,0x45,0x32,0x38,0xa,
0xe8,0x21,0x68,0x23,0x2a,0x63,0xbe,0x43,0x8f,0xec,0xcc,0xb6,0x74,0x66,0x1b,0x55,
0x85,0xa6,0x8e,0x81,0xba,0xd6,0xbe,0xea,0x96,0x4c,0x55,0x53,0xba,0xa2,0x3e,0x75,
0xb2,0x36,0x75,0xbc,0x3a,0x75,0xb4,0x32,0x79,0xf8,0x54,0xf2,0xc0,0x89,0xe4,0xbe,
0xa3,0xc9,0xdd,0x87,0x92,0x3b,0xf6,0x25,0xb7,0xec,0x4d,0x6e,0xde,0x9d,0x7a,0x79,
0x47,0xf2,0x85,0x6d,0x89,0xe7,0xb6,0x26,0x9f,0xdb,0x52,0x7c,0x66,0xcb,0xd4,0xd3,
0x5b,0x2e,0x6f,0x7c,0xae,0xf8,0x99,0xa7,0xbb,0x3e,0xfd,0x94,0x83,0xc,0xf0,0xa4,
0xf9,0x53,0x4f,0x1a,0x3f,0xf5,0x94,0xe1,0xd3,0x2f,0x18,0x9f,0xde,0x69,0xd9,0x72,
0xc4,0xb9,0xbf,0xd2,0x7d,0xa2,0xb1,0xb7,0x5a,0x19,0x6c,0xd1,0x47,0x3b,0x4d,0x71,
0x8d,0x39,0xa1,0x85,0x4c,0x9,0xd,0x29,0xe,0xa9,0x31,0x1a,0xe3,0x6a,0x26,0x95,
0x81,0x49,0x1f,0xef,0xe4,0x23,0x93,0x52,0x27,0xd4,0xa1,0x8d,0x4b,0x4a,0xb4,0x6b,
0x13,0x98,0xa6,0x20,0x5,0xa4,0x86,0xe2,0x50,0x1b,0xa4,0x82,0x62,0x5c,0xad,0x50,
0x67,0xb4,0x5,0x52,0x42,0x11,0x52,0x47,0xb8,0x99,0x14,0x6a,0x82,0xda,0x43,0x8d,
0xed,0xc1,0x46,0x45,0xa0,0x41,0x81,0x82,0xe7,0x6f,0x6c,0xf3,0x35,0x8,0x79,0x1b,
0x5a,0x3d,0xf5,0x1b,0x96,0x16,0x67,0xb1,0xfc,0xc5,0xfe,0xf,0x11,0x4f,0xfb,0x9e,
0x74,0x67,0x3f,0x46,0x78,0x20,0x70,0xc1,0x50,0xf3,0xc1,0xbf,0x70,0xf,0x1b,0x8c,
0xf1,0xf6,0xce,0x58,0x7d,0x7b,0xa6,0x6,0x17,0xec,0xd4,0xbe,0x7f,0xe0,0xe4,0xf9,
0x7d,0xa7,0x46,0xf,0xb6,0xce,0xd5,0x5a,0x56,0xb5,0x91,0x57,0xbd,0x23,0xaf,0x15,
0x17,0xdf,0x99,0x3a,0xf7,0xc5,0x65,0xa2,0xff,0x8b,0x6c,0xcf,0xe7,0xed,0x35,0x46,
0xff,0x19,0x56,0xfa,0xcf,0x60,0x9f,0xe7,0x1c,0xd0,0x47,0xed,0x61,0x85,0x7,0xc1,
0xf,0x9d,0xbd,0xb6,0xbc,0xca,0xd0,0x5f,0x7f,0x75,0x89,0xd3,0x8f,0xc2,0x3,0xfa,
0x57,0x70,0x19,0xd6,0xc5,0xb9,0xa5,0xf3,0xb3,0xcb,0xe7,0xe7,0x38,0xfd,0xcc,0x0,
0x33,0x8b,0xeb,0x84,0xfe,0xc2,0x1a,0x1b,0x57,0xa7,0xe6,0xa1,0x33,0x93,0x73,0x2b,
0xa0,0x7f,0x62,0x76,0x19,0xc1,0xf,0xee,0xc7,0x66,0xa0,0xc5,0xb1,0xe9,0xc5,0x51,
0x68,0x6a,0x61,0x4,0x9a,0x9c,0x1f,0x1,0xf1,0x93,0xf3,0xc3,0x13,0xd0,0x1c,0xe8,
0xc7,0x17,0xe1,0x61,0x80,0xa1,0xb1,0x59,0x32,0x0,0x53,0xff,0xc8,0x4c,0x11,0x1e,
0xc0,0x38,0x3c,0x53,0x1c,0x9a,0x29,0x30,0xf5,0xc1,0x3,0x83,0x24,0x18,0x20,0x7,
0xf,0xf4,0xcf,0xe5,0xe0,0x81,0xe2,0x7c,0xa6,0xb8,0x90,0x29,0x2e,0x66,0x8a,0x4b,
0x99,0xe2,0x72,0xa6,0xb0,0x92,0x2e,0x9c,0x49,0x17,0xd6,0x52,0x7d,0xf8,0x8a,0xf5,
0xb9,0x54,0xdf,0xf9,0x24,0x79,0xe0,0x52,0x32,0x7f,0x39,0x91,0xbf,0x82,0x7b,0xcf,
0xc9,0x0,0xb9,0x2b,0xf1,0xbe,0x2f,0x24,0x8a,0x1f,0xc4,0xfb,0xbf,0x9e,0x1c,0x58,
0x4d,0xf7,0x2f,0xa6,0xfa,0x26,0xe3,0xa9,0xc1,0x60,0x20,0xed,0x72,0x6,0xd,0x1d,
0x57,0x77,0xb1,0xed,0x9a,0xff,0xab,0xea,0x57,0xbf,0x5d,0xf1,0x83,0xdf,0x3d,0xf1,
0xf6,0x1f,0x1c,0x59,0xf9,0xc3,0x83,0xd9,0x27,0xf,0x39,0x5e,0x3e,0x69,0xda,0xdf,
0x64,0xab,0x52,0x79,0x9a,0xcd,0x61,0x95,0x3b,0x63,0xf1,0x17,0xbb,0x70,0xc2,0x34,
0x3c,0xe8,0xe,0xe,0x76,0xfb,0x70,0x51,0x7b,0xbf,0xa3,0xb7,0x68,0xeb,0x29,0x58,
0xbb,0xfb,0x4c,0xce,0xbc,0x1,0xd7,0x52,0xd8,0x72,0xe8,0xdc,0x68,0x17,0x1d,0x86,
0x6c,0xbb,0x16,0x19,0x9f,0x69,0x6,0xf4,0x1d,0xd9,0xfa,0xb6,0x4c,0x4d,0x4b,0xb6,
0xaa,0x29,0x5b,0xd1,0x90,0x3d,0x55,0x57,0x38,0x5e,0x33,0x70,0xb4,0xaa,0x70,0xb8,
0x32,0x77,0xf8,0x64,0x6e,0xff,0xf1,0xdc,0xde,0xa3,0xb9,0xdd,0x47,0x72,0xbb,0xe,
0xe5,0x76,0x1c,0xc8,0x6d,0xdd,0x97,0xdb,0xb2,0x27,0xf7,0xf2,0xae,0xe2,0x4b,0x3b,
0x26,0x9e,0xdf,0xbe,0xf6,0xec,0xb6,0x3b,0x4f,0x6f,0xfb,0xfa,0xc6,0xed,0x3f,0xfa,
0xec,0xb6,0x5f,0x3f,0xb1,0xed,0x23,0xda,0x5c,0x7f,0x6e,0xf2,0xd3,0x4f,0xb9,0xfe,
0x64,0xa3,0xe3,0x53,0x4f,0x5a,0x3f,0xf5,0xa4,0xe9,0x53,0x4f,0x1a,0x3e,0xb5,0x51,
0xf7,0x27,0x4f,0x6b,0x9f,0xd8,0xa4,0x7f,0x7e,0x8f,0x79,0xfb,0x51,0xfb,0x81,0x6a,
0xd7,0xa9,0x26,0x4f,0xad,0xd2,0xdf,0xa2,0xb,0x2b,0x8d,0x51,0xb5,0x29,0xaa,0x31,
0xc5,0x98,0xf0,0x23,0xaa,0xc1,0xdf,0x18,0x23,0x6a,0x43,0x44,0x25,0xa9,0x53,0x1f,
0x29,0x49,0x17,0x51,0x72,0x69,0x23,0x1d,0x92,0xda,0x35,0x11,0x92,0x36,0xda,0xae,
0xc1,0x12,0x25,0x22,0xab,0x4d,0x1d,0x6e,0x53,0x9,0xb5,0x76,0x86,0x5b,0x3b,0x43,
0x5c,0x2d,0xb0,0x1f,0x53,0xb3,0x32,0xd0,0xdc,0x1,0xf9,0xa1,0x26,0xa8,0x1d,0xf2,
0x41,0x8d,0xed,0xde,0x46,0x45,0x6f,0xa3,0xc2,0x3,0x35,0xb4,0x41,0x3d,0xd,0x1b,
0x70,0xfa,0x1f,0x6f,0x3f,0x2,0x7d,0x9e,0xfa,0x40,0x3f,0x8d,0x7b,0xc9,0xa3,0x71,
0x4c,0x5,0x86,0x3f,0xdb,0xde,0xfe,0xdd,0x27,0xba,0x52,0x7a,0x6d,0xb4,0x59,0x19,
0xaf,0x53,0x64,0xab,0x9b,0xae,0x9e,0xac,0xfe,0xe5,0xfe,0xe3,0xc3,0x7b,0x4f,0x8f,
0x1d,0xee,0x5c,0x68,0x76,0x9e,0x35,0xe3,0xdd,0xed,0x89,0xd7,0x87,0x56,0xde,0x99,
0xc5,0x96,0xff,0x45,0xd0,0x4f,0xd5,0x7f,0x8d,0xe2,0x1f,0xcd,0xe7,0x8d,0x55,0x64,
0x3f,0xab,0x3d,0x9c,0x7e,0xd6,0xf8,0x79,0xed,0xb9,0xba,0x88,0xe0,0x27,0xbd,0xb2,
0x48,0xf4,0x5f,0x5e,0x60,0xdc,0x83,0xfe,0xf9,0x65,0x86,0xfe,0xca,0x85,0xf9,0xe5,
0x73,0xb3,0x4b,0x67,0x67,0x84,0xd6,0x67,0x18,0xfa,0xd3,0x80,0x9e,0xb,0xe8,0xcf,
0x2d,0x93,0x40,0xff,0xec,0xd2,0xf8,0xc,0x17,0xd1,0x3f,0x36,0xb5,0x0,0xfa,0x47,
0xa7,0xe6,0x47,0x26,0xe7,0x86,0xb9,0x8,0x7d,0x70,0x3f,0xb,0xee,0x7,0xc7,0x66,
0x6,0xb8,0x46,0x99,0x46,0xa6,0x99,0x1,0xa6,0x89,0xfe,0xe1,0xe9,0xc2,0x10,0x34,
0xd5,0x37,0x34,0xdd,0x37,0x38,0x3,0xe5,0xa1,0x81,0x99,0x1c,0xd4,0x3f,0x93,0xed,
0x9f,0xcb,0x16,0x67,0x33,0xc5,0xb9,0x6c,0x61,0x3e,0xd,0x1b,0x14,0x16,0xd3,0x5,
0xd4,0xfa,0xe5,0x14,0x3c,0xd0,0xb7,0x9a,0xea,0x5b,0x4b,0xe5,0xcf,0x26,0xf2,0xe7,
0x93,0xf9,0xb,0x89,0xdc,0xc5,0x44,0xee,0x52,0x2,0x36,0x0,0xfd,0xd9,0xcb,0x31,
0xa8,0xef,0xcf,0xe3,0xc5,0xf,0x12,0xf8,0x4,0x7c,0x3f,0xfe,0xfd,0xd9,0x64,0x6e,
0x2c,0x1a,0x2b,0xf8,0xbc,0x31,0x87,0x3d,0xa8,0xed,0x98,0x3b,0x52,0x9f,0xd9,0x57,
0xe1,0xdc,0x77,0x4c,0xbd,0xeb,0x60,0xdb,0xf6,0x43,0x8a,0x1d,0x47,0x70,0x0,0x58,
0xbd,0xe7,0x94,0xfe,0x40,0xbd,0xf5,0x64,0xab,0xab,0x46,0xe5,0x6d,0x36,0x85,0x95,
0xf6,0x84,0xce,0x95,0x36,0x76,0x67,0xcd,0xae,0xac,0xc9,0x99,0x35,0x38,0x32,0x3a,
0x6b,0x46,0x63,0x49,0xab,0x8d,0x69,0xa5,0x1e,0x3d,0x21,0xd5,0xaa,0x4a,0x35,0xa9,
0x32,0x4d,0xed,0xe9,0x7a,0x45,0xa6,0xb6,0x35,0x53,0xdd,0x98,0x21,0xe2,0xeb,0x73,
0x27,0x6a,0x72,0xc7,0xaa,0xfb,0x8e,0x54,0xf6,0x1d,0x3a,0xd5,0x77,0xe0,0x64,0x61,
0xff,0x89,0xa1,0xbd,0x47,0x47,0x77,0x1f,0x19,0xc2,0x37,0x12,0x77,0x1c,0x2a,0x6e,
0x3f,0x80,0x6f,0x27,0x8e,0x6d,0xd9,0xb7,0xb0,0x69,0xcf,0xd5,0x17,0x77,0x7d,0xee,
0xb9,0x9d,0xdf,0x79,0x7a,0xe7,0x4f,0x37,0xee,0x78,0xef,0xc9,0x1d,0xf,0x9f,0xd8,
0x4e,0xfa,0xcc,0x36,0xe8,0xc3,0x27,0xb6,0xfc,0xfc,0x33,0x9b,0xbf,0xf7,0x99,0x67,
0xe2,0x9f,0x7e,0xa6,0xeb,0x89,0xa7,0xed,0x9f,0x79,0xd6,0xfa,0xd9,0x67,0x4c,0x9f,
0x7d,0xde,0xf8,0xd4,0xf3,0xba,0x8d,0x2f,0xe9,0x9e,0xdd,0xac,0x7d,0x61,0xb7,0x61,
0xdb,0x61,0xf3,0xbe,0x53,0xb6,0xa3,0x75,0x5d,0x15,0xad,0x3d,0xf5,0x2a,0x5f,0x9b,
0x2e,0xa8,0x34,0x86,0xd5,0xa6,0xb0,0x86,0x49,0x8d,0xdf,0xa4,0x90,0xda,0x10,0x52,
0xc9,0xd2,0x87,0x3a,0xb9,0x74,0x21,0xa5,0xa4,0xe,0x6d,0x88,0xab,0x5d,0x13,0x6a,
0xe7,0xa3,0x26,0x84,0x5,0xba,0x42,0x1d,0x14,0x52,0x5,0xdb,0x48,0x1,0xa8,0xb5,
0x53,0x96,0xbf,0x5,0xc6,0x53,0xfa,0xb8,0x9a,0x3b,0x20,0xec,0x1c,0x90,0x9a,0xda,
0x7b,0x99,0x3c,0x50,0xa3,0xa2,0x87,0xc9,0xd,0x35,0xb4,0x75,0x93,0x36,0xe0,0xf4,
0xff,0x40,0xb6,0xf,0xb8,0xc3,0x0,0xb0,0x41,0x86,0x6e,0x6c,0x66,0x53,0x41,0x1e,
0xfd,0xe7,0xf7,0x2c,0x37,0x4f,0x5b,0x62,0x9d,0xea,0x48,0x63,0x47,0xbc,0xb6,0x35,
0x57,0x55,0xff,0xcd,0xa3,0x15,0x7f,0xba,0xef,0xf8,0xe0,0xbe,0xba,0xc9,0x53,0x9a,
0x45,0x45,0xef,0x5,0x67,0xee,0x46,0x62,0xe6,0x8d,0xd1,0xb5,0xcf,0x2f,0xe0,0x81,
0x17,0xb6,0xfc,0x51,0xfd,0xf1,0xa8,0x8b,0x6d,0xf6,0x97,0x36,0x7c,0xce,0xdd,0x2e,
0x6b,0x3e,0x14,0xfc,0xb,0x25,0xf4,0xaf,0x2c,0x82,0xfe,0x33,0x84,0xfe,0xdc,0x99,
0xb,0xf3,0x2b,0x17,0xe6,0x56,0xce,0xcf,0x1,0xfd,0xe5,0xb3,0xa0,0x7f,0x76,0x71,
0x1d,0xc1,0xcf,0xd0,0x5f,0x45,0xea,0x63,0x9c,0x9e,0x5f,0x1,0xfd,0x53,0x73,0x2b,
0x93,0xb3,0x84,0xfe,0x4,0xd0,0xe7,0xe3,0xf4,0xc2,0x18,0x4,0xee,0xd9,0xf,0xd0,
0x3f,0x3a,0x39,0x27,0xc,0x30,0x1,0x3,0xcc,0xe,0x41,0xe3,0x33,0xa0,0x9f,0x6b,
0x60,0x74,0x1a,0xea,0x27,0xfa,0xa7,0x41,0x3f,0x8d,0x43,0x53,0x40,0xbf,0x40,0x1e,
0x98,0xea,0x1b,0x24,0xe5,0xa1,0x81,0x69,0x28,0xd7,0x4f,0xca,0xc2,0x3,0xc5,0x99,
0xc,0x3c,0x50,0x98,0x4d,0x17,0xe6,0xd2,0xb0,0x41,0x1f,0x2e,0x32,0x42,0xa2,0x2f,
0xa5,0xf2,0xcb,0x49,0x78,0x20,0xbf,0x9a,0xcc,0xe3,0x43,0xd6,0xe7,0x12,0xb9,0xf3,
0x9,0xbc,0xa0,0x93,0xbb,0x18,0xcf,0x5e,0x8a,0x91,0x2e,0xc6,0x72,0x97,0xe3,0x7d,
0x3f,0x88,0x15,0x7e,0x13,0xc3,0xf7,0x80,0xb1,0x25,0x5a,0x98,0x4a,0x64,0x86,0x23,
0x91,0x5c,0xaf,0x27,0x6a,0xb7,0x78,0x34,0x4a,0x5b,0x63,0xad,0xf6,0xc4,0x49,0xe5,
0xfe,0x23,0xed,0xbb,0x8e,0x74,0xec,0x3a,0xaa,0xa4,0x83,0xbe,0xc7,0xe0,0x1,0xc3,
0xc1,0x5a,0xeb,0xf1,0xe6,0xae,0x2a,0x85,0xa7,0x4e,0xe5,0x6f,0xd2,0x85,0x15,0xd8,
0xae,0x31,0x24,0x3a,0x74,0xd4,0x7,0xb0,0x78,0x6d,0xea,0x4c,0x36,0x51,0x8f,0x4f,
0xd6,0xb4,0xa4,0xab,0x1b,0xd3,0xa7,0xeb,0x33,0x27,0xeb,0xb2,0x27,0x6a,0x73,0xc7,
0x11,0xf0,0x15,0xf9,0x43,0xa7,0xfb,0xe,0x9c,0x28,0xec,0x3b,0x5e,0xdc,0x73,0xac,
0x7f,0xcf,0xd1,0x81,0x5d,0x87,0x7,0x76,0x1c,0x1a,0xd8,0x71,0x70,0x78,0xfb,0x81,
0xc5,0xad,0xfb,0x2f,0x6d,0xde,0x77,0xef,0xa5,0xbd,0x7f,0xfa,0xfc,0xee,0xbf,0x7d,
0x66,0xd7,0x2f,0x9f,0xda,0xf9,0xe1,0x93,0x3b,0x1f,0x42,0x9f,0xdd,0xc1,0xb4,0xfd,
0xfd,0x27,0xb6,0xfd,0xc3,0x13,0x9b,0xbf,0xf5,0xc4,0xcb,0xaf,0x3f,0xf1,0xd2,0xfa,
0x67,0x5f,0x1a,0xdc,0xf8,0x42,0x62,0xe3,0x8b,0xde,0xa7,0x5f,0x70,0x3f,0xf5,0x92,
0xeb,0x99,0x4d,0x8e,0xe7,0x36,0xdb,0x5f,0xd8,0x6a,0x7d,0x69,0x9b,0xe9,0xe5,0x9d,
0xc6,0x2d,0x3b,0xf0,0xae,0xa3,0x61,0xfb,0x5e,0xfd,0xce,0xa3,0xa6,0x3,0x15,0xb6,
0xe3,0xb5,0x8e,0x8a,0xe6,0xee,0xba,0xf6,0x9e,0x66,0x8d,0xaf,0x5d,0x1f,0xe8,0x34,
0x6,0x9,0x7a,0x1a,0xa1,0x80,0xda,0x10,0x50,0xc9,0xc2,0x3f,0x25,0xf9,0x3b,0x75,
0x7e,0xa5,0x2e,0xa0,0xe4,0xa3,0x36,0xd0,0xa1,0xf5,0xb,0x69,0xfc,0xed,0x92,0x14,
0x6a,0x3f,0x93,0xaf,0x4d,0xed,0x53,0xc0,0x5d,0x5c,0x9d,0xbe,0x56,0x92,0x17,0x6a,
0x51,0xf6,0x96,0xd4,0xd1,0xdb,0xdc,0xe1,0x21,0xb5,0xf7,0x34,0x9,0xb9,0x9b,0xda,
0x1,0x7d,0x37,0x93,0xb,0x6a,0x68,0xeb,0x62,0x72,0x36,0x6c,0x18,0x1f,0xa0,0xd3,
0x6f,0xd4,0x79,0xe8,0xaa,0x7e,0x5a,0xfb,0x62,0x6,0xc0,0x1f,0x3,0xe7,0xd1,0x7f,
0x7e,0xbb,0x7b,0x58,0x6f,0x8a,0x75,0x74,0x46,0xea,0x15,0xf8,0xbf,0xf2,0x40,0x45,
0xcd,0xbb,0x7,0x4f,0x5e,0xdc,0x7b,0x72,0xf8,0x40,0xf3,0x74,0xd,0xde,0x5c,0x9,
0x5d,0xee,0x1d,0xbc,0x9d,0x9f,0x7f,0x73,0x72,0xed,0x73,0x8b,0x17,0x3e,0xbf,0x8a,
0xf2,0x73,0xe1,0x6d,0xf6,0xa0,0xf7,0x8d,0x33,0xf4,0x9c,0x8b,0x76,0xfa,0xe5,0xd,
0x1f,0xd6,0x7f,0x4a,0xa5,0x9f,0x82,0x9f,0xd7,0x7d,0xa2,0x1f,0x79,0x8f,0xd4,0xe7,
0xe8,0x73,0xfa,0x81,0xfe,0xda,0x34,0xd3,0xc,0x71,0x7f,0x66,0x6a,0x81,0x9,0xe8,
0xcf,0x2d,0x4f,0x12,0xf7,0xa4,0x89,0x99,0x45,0x3e,0x8e,0xcd,0x2c,0x90,0x90,0xfa,
0x53,0x73,0xa3,0xd3,0x82,0x7e,0x32,0xc0,0xc4,0xec,0xf0,0xc4,0xc,0xe8,0x1f,0x1e,
0x9f,0x81,0x1,0x84,0x7,0x46,0xa7,0xfa,0x47,0x24,0xd,0x4f,0x15,0xa1,0x11,0x36,
0x92,0x7,0x26,0xfb,0xc8,0x0,0x93,0x7d,0x3,0x93,0x79,0xa6,0xdc,0xc0,0x54,0xae,
0x7f,0x2a,0x57,0x9c,0xca,0x16,0xa7,0xa1,0x4c,0x11,0x36,0x90,0x3c,0xd0,0x37,0x97,
0xca,0xcf,0x27,0x61,0x83,0xfc,0x62,0x12,0x1e,0xc8,0xad,0x24,0xf2,0x67,0x12,0xb9,
0xb5,0x44,0xee,0x6c,0x22,0x7b,0x2e,0x9e,0x3d,0x1f,0xcb,0x5e,0x90,0x84,0xdf,0x57,
0xa2,0xf9,0x9f,0xc6,0xfa,0xfe,0x31,0x56,0x38,0x97,0xa4,0x49,0x60,0x3c,0x96,0x1a,
0xc,0x85,0x33,0x3d,0xdd,0x21,0x8b,0xc9,0xdd,0xa9,0x30,0xd7,0x55,0xa9,0x8f,0x1e,
0xeb,0xd8,0x73,0xb8,0x63,0xe7,0xe1,0xce,0x9d,0x87,0x55,0x3b,0x8f,0x68,0x76,0x1d,
0xd5,0xef,0x3e,0x61,0xda,0x57,0x61,0x3b,0x5c,0xdd,0x75,0xb4,0xde,0x73,0xaa,0xc9,
0x57,0xd9,0x12,0xaa,0x6e,0x8b,0xd6,0xb6,0xc4,0xaa,0x9b,0xe3,0x95,0x8d,0x89,0xd3,
0xf5,0xc9,0x53,0xd4,0xe3,0x33,0x47,0xab,0xb2,0x47,0x40,0xfc,0xc9,0xbe,0xfd,0x27,
0xa,0x7b,0x8f,0x17,0xf6,0x1c,0x2b,0xee,0x3e,0xd2,0xf,0xe2,0x77,0x1e,0x1e,0xdc,
0x71,0x70,0x6c,0xdb,0x41,0x10,0x7f,0x65,0xf3,0xbe,0xb7,0x5e,0xdc,0xfb,0xad,0xe7,
0xf7,0xfc,0xe4,0x99,0xdd,0xef,0x3e,0xb5,0xeb,0xe1,0x46,0x88,0x41,0xff,0xe4,0x8e,
0x8f,0x3e,0xbb,0xfd,0xd7,0x9f,0xdd,0xf6,0xa3,0xcf,0x6e,0xf9,0xfa,0x67,0x37,0xdd,
0x7e,0xf2,0xe5,0x95,0x8d,0x2f,0xe,0x6e,0x7c,0x31,0xb5,0xf1,0xe5,0xc8,0x33,0x9b,
0xc3,0xcf,0x6d,0xe,0x3e,0xb7,0xc5,0xff,0xc2,0x36,0xdf,0x4b,0xdb,0x7b,0x5f,0xde,
0xd1,0xb3,0x19,0x5b,0x9f,0xbb,0x5d,0xdb,0xf6,0x39,0x77,0x1c,0x70,0xec,0x3e,0x68,
0xdb,0x73,0xc8,0xb2,0xf7,0xa8,0xe5,0xe0,0x31,0xf3,0xc1,0xe3,0xa6,0x43,0xa7,0xcc,
0x47,0xab,0xad,0xa7,0xea,0xed,0x55,0x2d,0x5d,0xf5,0xed,0xee,0x66,0xb5,0x47,0xa1,
0xf3,0x29,0xd,0x7e,0xb5,0x51,0x12,0x7e,0x1b,0x7c,0x2a,0x2e,0xbd,0xb7,0x53,0xef,
0xeb,0xa4,0xd1,0xdb,0xa9,0xf3,0x2a,0xb9,0xb4,0xde,0xe,0x2e,0xd,0xa9,0x5d,0x96,
0xba,0x57,0xc1,0xa5,0xea,0x6d,0x13,0xf2,0xb4,0x75,0x7a,0x5a,0xcb,0xd4,0xa2,0xec,
0x11,0xea,0x70,0x37,0xb,0x75,0x37,0xb7,0x77,0x37,0x91,0x5c,0x24,0x45,0x57,0x23,
0xc9,0x49,0x6a,0x73,0x34,0x8,0xd9,0x1b,0x36,0xe0,0xe5,0x77,0xb6,0xf9,0x83,0x8f,
0xb5,0x30,0x3,0xc4,0x61,0x80,0x18,0x9e,0x4,0x1b,0xbf,0xb1,0x1d,0x5f,0xc6,0xed,
0x4a,0xea,0x35,0xe1,0xa6,0x8e,0x68,0x6d,0x1b,0xb6,0x5d,0x2f,0x9e,0xac,0xfe,0xd,
0xfa,0xcf,0xbe,0x8a,0x91,0x23,0xed,0xb3,0xd,0xb8,0x4b,0x27,0xf1,0x6a,0x70,0xf4,
0x6e,0x71,0xf1,0xad,0xa9,0x73,0x9f,0x5b,0xbe,0xf0,0xb9,0x33,0xe7,0x89,0x7e,0x3a,
0xe3,0x40,0xd5,0xff,0xfe,0x19,0x2c,0x7c,0xd7,0xc5,0x4e,0x3f,0x35,0x1f,0xd0,0xcf,
0x9b,0xcf,0xea,0x2b,0xd4,0x7c,0xce,0xa0,0xf6,0x8,0xfa,0x51,0x78,0xe6,0x60,0x80,
0xe5,0x73,0x73,0x48,0x7d,0x4e,0x3f,0x19,0x60,0x75,0x7a,0x71,0x95,0x46,0x42,0x7f,
0x85,0x4,0xf4,0xa1,0x79,0x32,0x0,0x52,0x9f,0xd1,0xbf,0x38,0x3e,0xb3,0x80,0xe6,
0x33,0x3e,0x3d,0x3f,0x36,0x45,0x91,0xf,0x3,0x8c,0x4c,0x2,0x7a,0x2e,0x10,0x3f,
0xcd,0x35,0x28,0x34,0x33,0x34,0x3a,0x35,0x0,0x3,0xf0,0x71,0x64,0x12,0x2a,0xe,
0x93,0x80,0x7e,0x61,0x68,0xa2,0x30,0x38,0xd1,0x37,0x38,0x91,0x1f,0x60,0x1a,0x84,
0x1,0x26,0x72,0xfd,0x13,0xd9,0xfe,0xc9,0x6c,0x61,0x22,0x53,0x9c,0xcc,0x14,0xa7,
0x32,0x5,0x12,0x36,0x34,0x71,0x89,0x5d,0x2a,0x3f,0x93,0xcc,0xcf,0x26,0xf3,0x73,
0x49,0xd8,0x0,0x1e,0xc8,0x2d,0x26,0xb2,0xcb,0xf1,0xec,0xa,0xae,0xc6,0x88,0x67,
0xd7,0xe2,0xb9,0xb3,0xf1,0x2c,0x74,0x2e,0x96,0x81,0xce,0x46,0x33,0xeb,0xf8,0xe2,
0x4b,0xb4,0xef,0x37,0x51,0x9a,0xa,0x30,0x63,0x4c,0x27,0x72,0xa3,0xb1,0x64,0x31,
0x18,0x48,0x76,0x77,0x5,0x4c,0x1a,0x57,0x5b,0x93,0xb9,0xea,0xb4,0xee,0x10,0xd0,
0x3f,0xa8,0xd9,0x7e,0x50,0xb7,0xe3,0x90,0x61,0xc7,0x61,0xf3,0x4e,0xdc,0xaa,0x70,
0xd4,0xb9,0xe7,0x58,0xf7,0x9e,0xe3,0x9e,0xbd,0x78,0x89,0xa4,0x22,0x74,0x8,0xc7,
0xe8,0x2b,0x93,0x47,0x2a,0x52,0x87,0x4e,0x65,0xe,0x9c,0xca,0x1e,0x38,0x91,0xdf,
0x77,0xac,0x6f,0x37,0x88,0x3f,0xca,0x88,0x3f,0x4,0xe2,0x27,0xb7,0x1f,0x38,0xb3,
0x75,0xff,0xad,0x4d,0xfb,0xbe,0xf4,0xe2,0xde,0x1f,0x3c,0xbf,0xe7,0xe7,0xcf,0xec,
0xfe,0xe0,0xe9,0xdd,0xf,0x5,0xf4,0xc4,0xfd,0x87,0x4f,0x6e,0xff,0xf9,0x93,0xdb,
0xbe,0xff,0xe4,0x96,0x2f,0x3c,0xb9,0xf9,0xea,0xc6,0x97,0x66,0x37,0xbe,0x34,0xb0,
0x71,0x53,0xfa,0xd9,0xcd,0x89,0x67,0x37,0xc7,0x71,0xaa,0xec,0xc5,0x6d,0xb1,0x17,
0xb7,0x47,0x5f,0xda,0x11,0xde,0xb4,0x3b,0xbc,0x75,0x4f,0x70,0xfb,0xde,0xc0,0xf6,
0x83,0xfe,0xdd,0x87,0xbc,0x7b,0x8f,0xf4,0xee,0x3b,0xea,0x39,0x70,0xac,0xe7,0xe0,
0xf1,0xee,0x83,0x27,0x5d,0x47,0x2a,0xba,0x8e,0x55,0x38,0x8e,0x57,0xd8,0x4e,0xd4,
0xd8,0x4f,0xd7,0xda,0x2a,0xea,0xec,0x95,0x8d,0x8e,0x9a,0x66,0x67,0x1d,0x22,0x56,
0xe9,0x6e,0xe9,0x74,0xb7,0x69,0x3d,0x1d,0x6,0xaf,0xca,0xe8,0x53,0xb,0x79,0xd5,
0xf8,0xa3,0xa1,0x57,0xa5,0x27,0x75,0x42,0x3a,0xf,0xa4,0xe4,0xd2,0x92,0x3a,0xb8,
0x34,0x42,0xed,0x1a,0x4f,0x3b,0x8c,0xa4,0xee,0x21,0xa9,0x48,0x6d,0x42,0xee,0xb6,
0x4e,0x77,0x2b,0xa9,0x9b,0xa4,0xec,0x6e,0xe1,0xea,0x70,0x35,0xb,0x75,0x35,0xb7,
0x77,0x35,0x91,0x9c,0x24,0x85,0xa3,0x51,0xe1,0x60,0xa3,0xbd,0xb1,0xcd,0xde,0xd0,
0x66,0x63,0xb2,0x36,0xb4,0x5a,0x1b,0x36,0xa0,0xff,0xf0,0x6f,0xb4,0x70,0xf,0x70,
0xe5,0x59,0xff,0x31,0xdd,0x38,0x6e,0x8d,0xa9,0x54,0xa1,0x86,0xf6,0x28,0x26,0xd9,
0xca,0xba,0xaf,0x1f,0xa9,0xf8,0xf3,0x7d,0xc7,0x6,0xf6,0xd6,0x8c,0x9d,0x54,0xcf,
0xb7,0xb9,0xcf,0xda,0x72,0xd7,0xe2,0xe3,0xf7,0x6,0x57,0x1e,0xcc,0x9e,0xfb,0xdc,
0xca,0xf9,0x77,0xce,0x9c,0xa7,0x73,0x3e,0xec,0xa4,0xc3,0x7d,0x54,0x7f,0xf6,0xa0,
0x97,0xed,0xf9,0xe0,0x21,0x97,0x30,0x0,0xb8,0x67,0x8d,0x7f,0xed,0xf2,0xe2,0x99,
0x4b,0xac,0xf9,0x88,0xec,0x9f,0x5f,0x39,0x37,0xc7,0xd1,0x5f,0x3e,0x3b,0xb7,0xb4,
0x36,0x3,0x31,0xf4,0x25,0xad,0xa0,0xfc,0x30,0x3,0x2c,0x41,0x13,0xb3,0x8b,0x90,
0xa0,0x1f,0xe8,0x73,0xfa,0xa7,0x66,0x29,0xfe,0xa1,0xc9,0x59,0xf2,0x0,0xbe,0x55,
0x6,0xf4,0x27,0x98,0x1,0xc6,0xa6,0x6,0xc7,0xa7,0x6,0x31,0x8e,0x81,0xfb,0x49,
0x12,0xd0,0x1f,0x9e,0x28,0x32,0x15,0xa0,0xa1,0xf1,0xbe,0xc1,0xf1,0xfc,0x10,0xd1,
0xdf,0x37,0x30,0x9e,0x27,0x91,0x7,0x72,0x18,0x61,0x80,0xe2,0x78,0xb6,0x88,0x91,
0x79,0xa0,0x30,0x99,0x86,0xfa,0xa6,0x52,0x50,0x7e,0x1a,0x1e,0x48,0x91,0x7,0x90,
0xe8,0x73,0x89,0xdc,0x7c,0x82,0x3c,0xb0,0x18,0xcf,0x2d,0x27,0x60,0x83,0xcc,0x99,
0x58,0x66,0x35,0x96,0x5e,0x8d,0xa6,0xd7,0xa2,0x99,0xb5,0x68,0x7a,0x35,0x92,0x3e,
0x13,0xc1,0x6b,0xef,0xf9,0xf,0x22,0x7d,0x7f,0x1a,0xcf,0xcf,0xc6,0x73,0x13,0x31,
0x14,0x21,0x5a,0xc,0x24,0xbb,0x6c,0x41,0x9d,0xaa,0xa7,0xa5,0xd1,0x59,0x71,0xc2,
0xbc,0x1f,0x2f,0x2e,0x1d,0xb0,0x6c,0x3b,0x60,0xdf,0x7e,0xb0,0x6b,0xfb,0x41,0xf7,
0xf6,0x43,0xbd,0x3b,0xe,0xf9,0x77,0x1c,0xa,0xed,0x3c,0x1c,0xd9,0x79,0x24,0xbe,
0xeb,0x48,0x6a,0xd7,0x91,0xec,0xae,0x23,0xf9,0x5d,0x87,0xb,0xac,0xc7,0xf,0xed,
0x38,0x38,0xb3,0xed,0xc0,0xf9,0x2d,0xfb,0xef,0xbf,0xbc,0xef,0xcf,0x5e,0xd8,0xf3,
0x77,0xcf,0xed,0xf9,0xf5,0x33,0xbb,0x3f,0x7a,0xea,0x11,0xe2,0xdf,0xdb,0xb8,0xe3,
0x1f,0x9e,0xdc,0xf6,0xad,0x8d,0x5b,0xde,0xdc,0xb8,0xe9,0xe2,0xc6,0x97,0x26,0x36,
0xbe,0x5c,0x78,0xfa,0xe5,0xd4,0x33,0x9b,0x93,0xcf,0x6e,0x49,0x3e,0xbf,0x35,0xf1,
0xe2,0x8e,0xe4,0xa6,0x1d,0x89,0x4d,0xbb,0x12,0x5b,0xf6,0xc4,0xb7,0xee,0x8b,0xef,
0xd8,0x1f,0xdd,0x79,0x30,0xba,0xfb,0x50,0x78,0xcf,0xb1,0xf0,0x81,0x63,0xa1,0x83,
0xc7,0x3,0x7,0x4f,0x7,0x8f,0x9d,0xf6,0x1f,0x3b,0xed,0x3d,0x56,0xe5,0x3d,0x59,
0xe3,0x3d,0x5d,0xeb,0xa9,0xa8,0xeb,0xa9,0x6c,0x70,0x57,0x37,0x75,0xd7,0xb6,0x74,
0xd7,0xb7,0xb8,0xea,0x5b,0x51,0x2a,0x50,0x2d,0xba,0x9a,0x3a,0x5c,0x2d,0x20,0x52,
0xd5,0xdd,0xa6,0xee,0x56,0x68,0xdc,0x1d,0xba,0x1e,0x25,0x88,0x37,0xf6,0xaa,0xd,
0x42,0x2a,0x83,0x47,0xa5,0xf7,0x74,0x92,0x7a,0x3a,0xf1,0x4f,0x49,0x6e,0x92,0xd6,
0xdd,0xc1,0x85,0xff,0x94,0xc6,0xdd,0xce,0xa5,0x26,0x29,0xf0,0x5f,0xc5,0x85,0xff,
0x5a,0xae,0x4e,0x57,0x2b,0x97,0x12,0xea,0x6a,0x11,0x72,0xb6,0xe0,0xf3,0x2,0x5c,
0xed,0xe,0xa8,0x89,0x64,0x27,0x29,0x6c,0x8d,0x5c,0x6d,0x56,0x26,0x4b,0x3,0xc9,
0x8c,0xd7,0x1e,0xea,0x37,0xe0,0xb9,0x2f,0x82,0x9f,0x7d,0xa2,0x8b,0x66,0x80,0x14,
0x3e,0xd0,0x8b,0x8f,0x52,0x9f,0x33,0xe2,0x9b,0xb8,0xae,0x21,0xad,0x21,0xac,0x50,
0x86,0xea,0x14,0xf1,0xea,0x16,0xbc,0xbb,0xf0,0xeb,0x83,0x27,0x5f,0xd9,0x77,0x62,
0x70,0x7f,0xd3,0x64,0xb5,0x71,0x49,0xe5,0xbf,0xd0,0x5d,0xb8,0x91,0x9e,0x7d,0x7d,
0x7c,0xed,0x9d,0xc5,0xb3,0xef,0x2c,0xf3,0xf8,0x3f,0xf7,0x6,0x1d,0xed,0xa4,0x93,
0xe,0x12,0xfd,0xec,0x39,0x97,0xb4,0xdd,0xc9,0xe8,0xe7,0xb5,0x67,0x15,0x6,0xa0,
0xd2,0x3f,0x4f,0xcd,0x87,0x35,0xfe,0xa5,0xf5,0x59,0x14,0x1e,0xd4,0x1e,0xaa,0xfb,
0x25,0xf4,0xa7,0x10,0xf9,0x10,0xd0,0x7,0xf7,0x64,0x0,0x46,0x3f,0x5,0xff,0xfc,
0x18,0xd3,0xf8,0x34,0xb8,0x9f,0x85,0xe0,0x1,0x46,0xff,0xc,0xd1,0x8f,0x47,0xdb,
0x94,0xfd,0x53,0x24,0x86,0xfe,0x20,0x3e,0x47,0x2c,0xe8,0x9f,0xe8,0x1f,0x99,0x28,
0x8e,0x4c,0x70,0xf,0xc0,0x0,0xc5,0xc1,0x31,0x18,0x80,0x69,0x2c,0xf,0x27,0xf4,
0x8f,0xe5,0xe0,0x1,0x8c,0xc5,0xb1,0x6c,0xff,0x78,0x8e,0xc,0x30,0x9e,0x81,0xa,
0xe3,0x99,0xbe,0x89,0x34,0x53,0x2a,0x3f,0xc9,0x34,0x95,0xcc,0x4f,0x27,0x73,0xd8,
0xdc,0x84,0x66,0x13,0xd9,0xb9,0x44,0x76,0x81,0x3c,0x90,0x59,0x8c,0x65,0x96,0x62,
0x99,0xe5,0x58,0x66,0x5,0x8a,0x66,0xce,0x44,0xd3,0x2b,0x11,0xd2,0x72,0x24,0xf3,
0xa5,0x70,0xee,0xc3,0x8,0x5d,0x7,0x34,0x13,0xcf,0x4e,0x44,0x53,0xa3,0xe1,0x70,
0x7f,0xaf,0x3b,0x63,0x35,0xc7,0xd4,0xca,0x60,0x53,0x8d,0xe7,0xc4,0xd1,0xee,0x3d,
0xfb,0xdd,0xdb,0xf6,0x79,0xb6,0xec,0xf7,0x6f,0xdd,0x1f,0xda,0x7a,0x20,0xba,0xed,
0x40,0x7c,0xdb,0xc1,0xe4,0xf6,0x83,0xe9,0xed,0x7,0x73,0xdb,0xf,0xc,0x6d,0x3b,
0x30,0xbb,0x75,0xff,0x2b,0x9b,0xf6,0xbd,0xfd,0xe2,0xde,0x6f,0x3f,0xbf,0xe7,0xa7,
0xcf,0xee,0x79,0x8f,0x2,0x9e,0x8b,0xba,0xcd,0x47,0x1b,0x77,0xfe,0x6a,0xe3,0x8e,
0x1f,0x6e,0xdc,0xf6,0xa7,0x1b,0xb7,0xdc,0xde,0xb8,0xf9,0xcc,0xd3,0x9b,0x46,0x9e,
0xd9,0x94,0x7b,0x66,0x73,0xea,0xb9,0xad,0xa9,0x17,0xb6,0xa6,0x5e,0xdc,0x9e,0x7c,
0x69,0x27,0x36,0x3a,0x93,0x5b,0xf6,0x24,0xb7,0xed,0x4d,0x6c,0x3b,0x90,0xd8,0x75,
0x28,0xb9,0xe7,0x70,0x62,0xef,0xd1,0xc4,0xfe,0x13,0x89,0x43,0x27,0xe2,0x87,0x4e,
0xc6,0x8e,0x54,0x44,0x8f,0x55,0x46,0x8e,0x57,0x47,0x4e,0xd5,0x46,0x2a,0xea,0xc2,
0x15,0xd,0xe1,0xea,0xa6,0x50,0x4d,0x63,0xa0,0xba,0x25,0x58,0xdf,0x16,0xc0,0x4e,
0x62,0xa3,0xc2,0x8b,0x1d,0x95,0x66,0x65,0x6f,0xab,0x12,0x55,0x84,0x82,0x19,0x21,
0x2d,0xa8,0x5,0xc1,0xe0,0x58,0xe7,0xee,0x64,0x64,0x77,0x1a,0x7a,0x54,0x86,0x1e,
0x35,0x1b,0x55,0x7a,0x2e,0x77,0x27,0x97,0xae,0x5b,0xc9,0xa5,0x85,0x5c,0x1d,0x90,
0x46,0xa8,0x5d,0xe3,0x22,0xa9,0x49,0xa,0x75,0x97,0x2,0xa3,0xaa,0xab,0x4d,0xd5,
0x45,0x63,0xa7,0x13,0x6a,0x85,0x94,0x5c,0x8e,0x16,0x21,0x7b,0x4b,0x87,0xbd,0x99,
0xab,0xdd,0x6,0x35,0x91,0xac,0x4d,0xa,0x52,0xa3,0xc2,0x42,0x6a,0x83,0xcc,0xd,
0x6d,0x26,0x26,0x63,0x43,0xab,0xb1,0x7e,0x3,0x7f,0xe6,0x5,0xe8,0xd9,0x37,0x49,
0xe9,0xcb,0xa4,0xf8,0x1b,0xc3,0xd7,0x77,0xb4,0x7d,0xef,0x53,0xae,0xa4,0x41,0x13,
0xc4,0x36,0x2a,0x1e,0x97,0x54,0x35,0xae,0x9f,0xa8,0x7a,0x6f,0xdf,0xb1,0x91,0xbd,
0xf8,0xd8,0xbc,0x62,0xba,0xc1,0xba,0xa2,0xc7,0xbb,0x5d,0x83,0x37,0xf3,0xf3,0xaf,
0x4f,0xae,0xbe,0x35,0xcf,0xe2,0x7f,0xe5,0xfc,0x9b,0x2b,0x68,0xff,0x38,0xda,0xc9,
0xab,0x3f,0xed,0xf7,0xf3,0x6d,0x1f,0xb6,0xd9,0xbf,0xf6,0xa,0xb6,0x3b,0x11,0xfc,
0xa2,0xf4,0xaf,0x9c,0xc7,0x3e,0x8f,0xdc,0x79,0x66,0x79,0xea,0xf3,0xe0,0x5f,0x3c,
0x33,0x43,0x6,0x60,0xb5,0x67,0x7e,0x79,0xa,0xaf,0xa9,0x71,0xee,0x9,0xfd,0x5,
0x12,0xe8,0x17,0xc1,0x3f,0x3b,0xa,0xfa,0xb9,0x1,0xf0,0x29,0xf,0x3e,0x2,0x7d,
0x2e,0x8e,0x3e,0x65,0x3f,0xd0,0x9f,0x18,0x80,0x0,0x7d,0x49,0xe3,0xc5,0xa1,0x31,
0x64,0x3f,0xd3,0x58,0x1f,0x46,0xd8,0x60,0x60,0x2c,0xf,0xc1,0x6,0x3,0x63,0x39,
0x18,0xa0,0x7f,0x2c,0x5b,0x1c,0xcd,0x14,0x46,0x33,0x34,0x8e,0x91,0x7,0xfa,0xc6,
0xd2,0x7d,0xe3,0x50,0x2a,0xf,0x4d,0xa4,0x72,0x13,0xc9,0xdc,0x64,0x22,0x37,0x45,
0xca,0x4e,0x27,0x32,0xd3,0xf1,0xcc,0x4c,0x2c,0x33,0x17,0xcb,0xcc,0x93,0xd2,0xb,
0xd1,0xf4,0x62,0x24,0xbd,0x18,0x4d,0x2d,0x45,0xb8,0x92,0x8b,0x61,0x8c,0x99,0x6f,
0x85,0xb3,0xef,0xe2,0x22,0xff,0x58,0x76,0x36,0x9a,0x99,0x8e,0x24,0xf0,0xd,0x91,
0x61,0x77,0x57,0xd1,0x64,0xc8,0x29,0x5b,0x12,0x35,0xa7,0x71,0xe9,0x7e,0x68,0xe7,
0xde,0xf0,0x96,0xbd,0xb1,0xcd,0x7b,0x53,0x9b,0xf7,0xe,0x6e,0xde,0xbb,0xb0,0x69,
0xef,0xf5,0x97,0xf6,0x7c,0xe9,0x85,0xdd,0x3f,0x78,0x76,0xf7,0x2f,0x9e,0xd9,0xfd,
0x21,0x40,0x97,0xb5,0x71,0xe7,0x7,0x1b,0x77,0xfc,0x6c,0xe3,0xf6,0xef,0x6d,0xdc,
0xf6,0xf9,0xa7,0xb7,0xbc,0xfa,0xd4,0xa6,0xd9,0xa7,0x37,0xf,0x3c,0xb3,0x25,0xf3,
0xdc,0xd6,0xf4,0xb,0xd0,0x8e,0xf4,0xcb,0x3b,0x53,0x9b,0x77,0x25,0x37,0xef,0x49,
0x6d,0xdd,0x9b,0xda,0xbe,0x2f,0xb9,0xe3,0x60,0x72,0xf7,0x91,0xd4,0xde,0xa3,0xc9,
0xfd,0xc7,0x53,0x7,0x4f,0x24,0xf,0x9d,0x42,0xa1,0x4a,0x1e,0xab,0x48,0x1c,0xab,
0x4a,0x9c,0xac,0xc5,0xb1,0x82,0x78,0x65,0x7d,0xac,0xb2,0x31,0x5e,0xd3,0x1c,0xab,
0x6d,0x89,0xd6,0xb5,0x46,0xeb,0xdb,0xa2,0x8d,0x1d,0xd8,0x6,0xc4,0xfe,0x7a,0xa8,
0x5,0xbb,0x8d,0xea,0x50,0xbb,0x2a,0xa0,0xd0,0xd0,0x6a,0x55,0xa9,0xf5,0x75,0xe8,
0x7c,0x28,0xf1,0xd4,0x67,0x58,0xae,0xb3,0x80,0x67,0x94,0x33,0xe8,0xcb,0xe4,0x56,
0x19,0xdc,0x2a,0x7d,0x37,0x17,0xd0,0xef,0xd4,0xb9,0x20,0x25,0xa4,0x85,0xba,0x3a,
0x20,0xd,0x97,0x13,0x6a,0xd7,0x74,0xb5,0xab,0x9d,0x90,0x82,0x4b,0x5,0x39,0xda,
0xa0,0x4e,0xa1,0xd6,0x4e,0x7b,0xab,0x52,0xa8,0x45,0x69,0x6b,0xe9,0x20,0x35,0x77,
0x58,0x85,0xc0,0x7d,0xbb,0x85,0xa4,0x80,0xcc,0x8d,0x42,0xa6,0xc6,0x36,0xc8,0xc8,
0xd0,0x37,0x70,0xd5,0x6f,0x60,0xab,0x5e,0x82,0x1e,0x5b,0x9f,0x89,0x50,0x4,0x2b,
0xe0,0x6c,0x26,0x5e,0xff,0x9b,0x7f,0x67,0xb8,0x71,0xc4,0x1a,0x51,0xa9,0x82,0xd,
0x8a,0x48,0x4d,0x4b,0xaa,0xb2,0xee,0x2b,0x47,0x2a,0xbe,0xb5,0xef,0x68,0x71,0x6f,
0xf5,0xc8,0x71,0xd5,0x6c,0xab,0x6b,0xd5,0x8a,0x4f,0x98,0x8c,0xdf,0x19,0x5c,0x7a,
0x73,0x66,0xfd,0xc1,0x12,0xe2,0xff,0xdc,0x9b,0xd2,0xc9,0x7e,0xd0,0x7f,0x67,0x99,
0x4e,0x77,0xde,0xa0,0x7,0x5e,0xd8,0xf4,0xc4,0xd3,0x2e,0x34,0x9f,0x35,0xd0,0x4f,
0x1b,0x3e,0xb,0xab,0x97,0x16,0x11,0xfc,0x4b,0xe7,0x66,0xa9,0xf6,0x60,0xc9,0xbb,
0xe,0xfa,0xc5,0xb8,0x78,0x6,0xf4,0xb3,0xf8,0x17,0xe8,0xb3,0xce,0xb3,0xc8,0xe2,
0x9f,0xa1,0x4f,0xf4,0xcf,0x53,0xf6,0xe3,0xea,0xde,0xe9,0xd9,0x31,0x10,0x8f,0x1f,
0x14,0xff,0x33,0x23,0x93,0xd3,0xc8,0x7e,0x1a,0x4b,0xf4,0x4f,0x12,0xfa,0xf8,0x8a,
0x25,0x1f,0x85,0x7,0xc6,0xfb,0x47,0xc6,0xfb,0x71,0xf2,0x63,0x78,0x9c,0x44,0x1e,
0x18,0x2b,0xc,0x8e,0xf6,0x31,0xe5,0x7,0x48,0xb9,0xfe,0x91,0x5c,0xff,0x68,0xae,
0x38,0xa,0xfa,0xb3,0xc5,0x11,0xe6,0x81,0x91,0x34,0x6c,0x0,0xf5,0x8d,0xa6,0xf3,
0xa3,0x29,0x28,0x37,0x86,0xdd,0xcc,0x24,0x79,0x60,0x3c,0x99,0x9b,0x48,0x64,0x27,
0xa1,0x78,0x16,0xdb,0x3b,0xf0,0xc0,0x74,0x2c,0x3d,0x1d,0x4d,0xcf,0xc6,0x52,0x73,
0xd1,0xd4,0x5c,0x24,0x35,0x1f,0x49,0x2d,0x44,0x92,0xf3,0xf8,0xfe,0x24,0x3e,0xec,
0xce,0xc6,0x95,0x50,0xe6,0xef,0x42,0x99,0x9f,0x87,0xb3,0xe7,0xa3,0x19,0x98,0x64,
0x2e,0x1c,0x9b,0xf1,0xf9,0x26,0xba,0x1c,0x23,0x6,0xed,0xb0,0xa2,0x79,0xb2,0xfa,
0xd4,0xea,0x81,0xfd,0xb7,0x37,0xef,0xfe,0xfa,0x73,0xbb,0xff,0xee,0x99,0x5d,0xbf,
0x7e,0x7a,0xd7,0x47,0x65,0xd,0xfe,0xe1,0xc6,0x1d,0xef,0x6e,0xdc,0xfe,0xf7,0x1b,
0xb7,0x7d,0x73,0xe3,0x96,0xd7,0x36,0x6e,0x3a,0xfb,0xd4,0xa6,0xb1,0xa7,0x37,0xf5,
0x3d,0xbb,0x25,0xf5,0x1c,0xfa,0xcc,0xf6,0xd4,0x4b,0x3b,0x53,0x9b,0x76,0xa7,0xb6,
0xec,0x4e,0x6d,0xdd,0x7,0xdc,0x53,0x3b,0xe,0xa4,0x76,0x1d,0x4d,0xef,0x3f,0x92,
0xda,0x77,0x22,0x7d,0xe8,0x44,0xea,0xd0,0xc9,0xd4,0xe1,0xa,0xac,0x9b,0xd3,0xa7,
0xaa,0x53,0x58,0x40,0x9f,0xae,0x4f,0x57,0x35,0xa4,0xaa,0x9b,0x52,0xf8,0x7f,0x71,
0x3d,0xd4,0x96,0x6c,0x50,0x24,0x1b,0xdb,0x93,0xcd,0x78,0xb6,0xda,0x89,0x8d,0xa6,
0x84,0x42,0x15,0x57,0xd0,0x63,0xa9,0x58,0x87,0x2e,0x8a,0xf3,0x42,0x9d,0xba,0x70,
0xa7,0x21,0x8c,0x7d,0x4c,0xbe,0xb7,0xa3,0x61,0xb,0x5c,0x8d,0xc9,0xaf,0x35,0x79,
0x35,0xc6,0x5e,0x8d,0x9,0xf2,0x90,0x8c,0x3d,0x92,0xdc,0x6a,0x3,0xd4,0xad,0x22,
0xb9,0x54,0x7a,0x52,0x27,0xa4,0xeb,0xe2,0x52,0x42,0x5a,0x27,0x93,0xa3,0x43,0xc3,
0xc5,0xd,0xe0,0x68,0x57,0x3b,0x14,0x42,0x76,0x85,0x8a,0xd4,0xd6,0xc9,0x65,0xe3,
0x6a,0x55,0x92,0x5a,0x94,0xd6,0x96,0xe,0x2e,0x4b,0x33,0xd4,0xe,0x99,0xb9,0x9a,
0x20,0x85,0x89,0xab,0x51,0x61,0x4,0xfa,0x8c,0x7e,0x3,0xa9,0x55,0xf,0xd5,0x43,
0x1b,0x58,0xe9,0x67,0x5f,0xe7,0x65,0xe5,0x7,0xf2,0xaf,0x1b,0x71,0x5c,0xb1,0x6b,
0x48,0xab,0xf,0xb5,0x75,0x4,0xeb,0xda,0xa2,0xd5,0x4d,0xb9,0xd3,0x35,0x3f,0x3f,
0x70,0xe2,0xda,0xde,0xe3,0xfd,0xfb,0xeb,0xc7,0x2a,0xf4,0xb,0x9d,0xde,0xb3,0xae,
0xc2,0xf5,0xf4,0xf4,0x6b,0xa3,0xcb,0x6f,0xcc,0xac,0xbf,0xb5,0x88,0x17,0x5c,0xce,
0xe1,0xad,0xae,0xfb,0xcb,0x88,0x7f,0x5a,0xf8,0xb2,0xf8,0x5f,0xbf,0x41,0xdb,0x3e,
0xec,0x8c,0x3,0xd0,0x9f,0x67,0xe5,0x67,0x61,0xf5,0x22,0x6b,0x3e,0x2c,0xfe,0xd1,
0x7c,0x40,0x3f,0x33,0x0,0x82,0x7f,0x66,0x9,0x4b,0x5e,0x64,0xff,0xca,0x14,0x2e,
0x66,0x5f,0x40,0xe9,0x5f,0x66,0xc1,0xcf,0xc,0x50,0xa2,0x1f,0xdc,0x4b,0x22,0xfa,
0xa9,0xf9,0x50,0xea,0x13,0xfd,0x40,0x7f,0x6a,0x58,0x16,0xa0,0x1f,0x27,0xee,0x49,
0x40,0x9f,0xc,0x30,0x3e,0x0,0xf4,0x47,0xc6,0x8a,0x18,0x87,0x46,0xb,0x92,0x38,
0xfa,0x7d,0x3,0x23,0x79,0xae,0xfe,0x61,0x66,0x80,0x91,0x2c,0x54,0x1c,0xce,0x16,
0x86,0x41,0x3f,0x57,0xba,0x8f,0x29,0x3f,0x92,0xca,0x8f,0x24,0x73,0xd0,0x28,0x94,
0xc8,0x8e,0x31,0x8d,0xa3,0xcf,0xc4,0x33,0xd0,0x64,0x3c,0x3d,0x19,0x4d,0x4f,0x45,
0xe1,0x81,0x14,0x3e,0x60,0x33,0x3,0x27,0x44,0x53,0xb3,0x11,0x38,0x21,0x39,0x17,
0x96,0x14,0x4a,0x9e,0xf,0x65,0x7e,0x19,0xca,0xfc,0x6d,0x38,0x73,0x21,0x9a,0xbe,
0x12,0xc6,0xa5,0xf,0x91,0xaf,0x79,0xbc,0xdf,0xb7,0xdb,0x7e,0xa6,0x51,0xbd,0xdf,
0x80,0x73,0xf0,0xc7,0x1f,0xee,0xdc,0xfb,0xf0,0x39,0x24,0xfd,0xce,0x8f,0x36,0xee,
0xf8,0xe5,0xc6,0xed,0x7f,0xb3,0x71,0xeb,0x97,0x36,0x6e,0xbe,0xf6,0xd4,0xa6,0xb9,
0xa7,0x36,0xf5,0x3f,0xb3,0x29,0xf9,0xc,0x16,0xac,0x5b,0x12,0x78,0x58,0xfb,0x22,
0xea,0xfb,0xee,0xe4,0xd6,0xbd,0xc9,0x6d,0x48,0xf7,0x3,0xc9,0x9d,0x87,0x52,0x7b,
0x80,0xfb,0xb1,0xf4,0x81,0x93,0xe9,0xc3,0xc0,0xfd,0x74,0xfa,0x68,0x55,0xfa,0x44,
0x6d,0xe6,0x74,0x5d,0xa6,0xa2,0x3e,0x53,0xd9,0x90,0xae,0x6a,0xce,0xd4,0xb6,0x64,
0xea,0xdb,0xb2,0xd,0x8a,0x4c,0x63,0x3b,0x4e,0xd4,0x64,0x9a,0x95,0x69,0x9c,0xae,
0x69,0x53,0xa5,0x15,0xda,0x8c,0x52,0x9b,0x56,0x6a,0x53,0x38,0x26,0xa4,0xd2,0x27,
0x55,0x86,0xa4,0xca,0x98,0x50,0x1b,0x13,0x78,0x82,0xab,0x31,0xc7,0xb5,0xe6,0xa8,
0xd6,0x1c,0x81,0x74,0xe6,0xb0,0xce,0x1c,0xd2,0x59,0x82,0x3a,0x73,0x40,0x67,0xf6,
0xeb,0xcc,0x3e,0xad,0xd9,0xab,0x35,0xf7,0x92,0x4c,0x1e,0xad,0xa9,0x47,0x63,0x72,
0x6b,0x8c,0x24,0xb5,0xb1,0x5b,0x6d,0x70,0x41,0x8c,0xfe,0x2e,0xae,0x4e,0x9d,0x53,
0x96,0x12,0xbf,0xb5,0xe,0x46,0xbf,0xbd,0x5c,0xed,0x6a,0x3b,0xa4,0x50,0xdb,0x14,
0x2a,0xa1,0x36,0x15,0xa0,0xb7,0x72,0xb5,0x42,0x4a,0xc8,0x2,0x81,0xfb,0x96,0xe,
0x33,0x57,0x73,0x87,0xa9,0xb9,0x5d,0xa8,0xa9,0x9d,0xa3,0x6f,0x84,0x1a,0x15,0x6,
0x52,0x1b,0xa4,0x6f,0xe0,0x6a,0xd5,0x41,0xf5,0x10,0x19,0x80,0xbe,0xcb,0x1b,0x86,
0x1,0xf8,0x32,0x20,0x61,0xf8,0xda,0xce,0xb6,0x1f,0xfc,0x2f,0x67,0x5c,0xa7,0x9,
0x36,0xb7,0x7,0x6b,0x5b,0x63,0x55,0xb8,0x84,0xb9,0xea,0x83,0xfd,0xc7,0x46,0xf7,
0x9e,0x1e,0x3c,0xdc,0x3a,0x59,0x67,0x59,0xd2,0x45,0x2e,0x78,0xd1,0x7f,0xe6,0xee,
0x8f,0xd3,0x7b,0x5e,0x28,0x3f,0x6f,0xad,0x80,0x7e,0x7a,0xb1,0x8b,0xe,0xf7,0xd3,
0x19,0x4f,0xc4,0xff,0x2a,0xf6,0x7c,0xae,0xb2,0x55,0x2f,0x76,0x3c,0x2f,0xd1,0x43,
0x2e,0x4,0x7f,0x19,0xfd,0x73,0x28,0xfd,0x32,0xfd,0xc,0x7d,0x9e,0xfd,0x84,0xfe,
0x2,0x6f,0x3e,0xc8,0x7e,0x46,0x3f,0x1f,0x67,0xe6,0xc6,0x98,0xc6,0x91,0xfd,0xb2,
0xa6,0x66,0x46,0x65,0xfa,0xc7,0x27,0x87,0x60,0x0,0x8c,0x54,0x7e,0x18,0xfa,0xc2,
0x0,0x65,0xe8,0x53,0xf6,0x8f,0x16,0x87,0x46,0xa,0x24,0xa0,0x3f,0x22,0x24,0xd0,
0x7,0xfd,0x42,0x8c,0xfe,0xa1,0xc,0x9,0x1e,0x18,0xce,0xf4,0xd,0xa7,0xf3,0x43,
0xa9,0xfc,0x70,0x8a,0x3c,0x30,0x9c,0x84,0xd,0xe0,0x81,0xec,0x48,0x82,0x34,0x1a,
0xcf,0x70,0x8d,0xc5,0x33,0xe3,0x31,0x28,0x3d,0x11,0x83,0xd,0x52,0x93,0x91,0xd4,
0x14,0xd9,0x20,0x89,0x9e,0x33,0x13,0x4e,0xce,0x84,0x13,0x33,0xa1,0xc4,0x6c,0x28,
0x39,0x1b,0xc6,0x88,0x43,0x84,0xe9,0xf7,0x83,0xe9,0x77,0x83,0xa9,0x8f,0x2,0xc9,
0x87,0xfe,0xd8,0xc3,0xde,0xe0,0x43,0x97,0xe7,0xa1,0xc5,0xf6,0xbe,0x5a,0xf5,0xb3,
0xc6,0xba,0xef,0x1e,0x3f,0xfa,0x60,0xf7,0xae,0xb,0x2f,0x6d,0x19,0x7d,0x6e,0x4b,
0xf6,0xf9,0x4d,0xe1,0x67,0xb7,0x84,0x9f,0xa7,0xcd,0x99,0xe8,0xa6,0x5d,0xd1,0x2d,
0xbb,0x63,0x5b,0xf7,0xc5,0x76,0x1c,0x88,0xef,0x3a,0x94,0xd8,0x7b,0x24,0xb9,0xef,
0x8,0xfa,0x4c,0xf2,0xd0,0xc9,0xe4,0xe1,0xd3,0x38,0xda,0x90,0x3e,0x51,0x9d,0x3e,
0x59,0x93,0x3e,0x55,0x9f,0xa9,0x6a,0xc8,0x54,0x37,0xe1,0x49,0x70,0xa6,0xe,0xb8,
0xb7,0x1,0xf7,0x6c,0x53,0x67,0xae,0x55,0x95,0x6d,0xeb,0xcc,0xb6,0xa9,0xb3,0xa,
0x4d,0xb6,0x3,0x47,0x38,0x71,0x10,0xd,0xe7,0xd2,0x8c,0x59,0x8d,0x31,0xa3,0x31,
0x67,0x75,0x74,0x7c,0x2d,0xad,0xb5,0xa4,0x75,0x96,0x94,0xce,0x92,0xd4,0x5b,0x13,
0x7a,0x4b,0x5c,0x6f,0x89,0xe9,0xac,0x31,0xbd,0x25,0xaa,0xb7,0x46,0xf4,0x96,0xb0,
0xde,0x12,0xd2,0x5b,0x82,0x7a,0x4b,0x40,0x6f,0x21,0xfa,0x75,0x66,0xaf,0x4e,0x42,
0x5f,0x6b,0x72,0x6b,0x9,0xfd,0x6e,0x88,0xa3,0xaf,0x36,0x74,0x41,0xc,0x7d,0x27,
0xd4,0xc9,0xa5,0x73,0x40,0xe0,0x5e,0xa9,0xb5,0x43,0x1d,0x90,0xc6,0x26,0xab,0x5d,
0x6d,0x63,0xb2,0x2a,0x20,0x95,0x50,0x5b,0xa7,0x45,0x56,0xab,0xd2,0xcc,0xd5,0x2,
0x11,0xfa,0x26,0x2e,0x46,0xbf,0x91,0xab,0x49,0x61,0x90,0xa4,0x7,0xf7,0x4c,0xba,
0x6,0x88,0xa1,0xdf,0xd0,0xaa,0x85,0xea,0x21,0x54,0x20,0x82,0x1e,0x6,0xc0,0x3c,
0x90,0xc,0x47,0xd3,0xa9,0x58,0xc3,0x6f,0xfe,0xbd,0xe1,0xf6,0x61,0x73,0x58,0xa9,
0xf4,0xd7,0xb7,0x85,0xaa,0x5b,0x12,0x95,0x75,0x9f,0x3f,0x72,0xfa,0xbb,0x7b,0x8f,
0xf6,0xed,0xad,0x1c,0x3a,0xd6,0x39,0xdd,0xda,0x7d,0xc6,0x9a,0xba,0x12,0x19,0xbd,
0xd5,0xbf,0xf8,0xc6,0xf4,0xea,0x9b,0xf3,0x2c,0xfe,0x69,0xed,0xbb,0x7e,0x17,0xaf,
0x74,0x51,0xf9,0xa1,0x97,0x5a,0xd8,0xa9,0x66,0x76,0xbe,0xd,0xfb,0xfd,0x94,0xfd,
0xb4,0xde,0x65,0xcf,0xb9,0xd0,0x7c,0x80,0x3e,0x49,0x4,0xff,0x2c,0xe7,0x9e,0x8b,
0x97,0x7e,0x26,0x89,0x7e,0x34,0x9f,0x79,0xd0,0x3f,0xce,0x55,0x42,0x7f,0x7a,0x4,
0xf4,0x4f,0xb1,0xec,0x27,0xb1,0xf8,0x1f,0x9f,0x18,0x1a,0x9f,0x40,0xf6,0x93,0x1,
0x10,0xf9,0x13,0x93,0xc3,0x18,0x29,0xfb,0xc7,0x90,0xfd,0x24,0xd0,0x4f,0x6,0x18,
0x2d,0xc8,0xe8,0xf,0xe,0x93,0x7,0x6,0x38,0xf7,0x43,0xa4,0xe2,0x50,0x16,0x2,
0xfa,0x34,0xe,0xa6,0xfb,0x86,0x48,0xf9,0xc1,0x14,0x69,0x28,0x95,0x1b,0x4a,0x72,
0x65,0x87,0x12,0xd9,0xa1,0x38,0x94,0x19,0x8e,0x67,0x46,0xa0,0x58,0x66,0x34,0x96,
0x1e,0x23,0xa5,0x46,0x23,0xe9,0xf1,0x68,0x6a,0x22,0x2,0x25,0x27,0xc3,0x5c,0x89,
0x29,0x28,0x94,0x98,0x26,0xc5,0xa6,0x83,0xb1,0x99,0x60,0xe2,0x41,0x20,0xf5,0x61,
0x20,0xf9,0xae,0x3f,0xf9,0x53,0x7f,0xfc,0xdb,0xfe,0xf0,0xe7,0x3d,0xde,0xeb,0x5d,
0xce,0x65,0xb3,0x69,0x4c,0xd3,0x9e,0x6f,0xaa,0x49,0x9d,0xc6,0x19,0xf7,0xfd,0xe1,
0x9d,0x7b,0x42,0xf8,0xe,0x17,0x8e,0xa6,0xed,0x38,0x10,0xd9,0x75,0x4,0x9f,0x67,
0x8c,0xed,0x3f,0x1e,0x3f,0x74,0x2a,0x71,0xe4,0x34,0x8a,0x7b,0xea,0x44,0x4d,0xea,
0x14,0xfe,0xcd,0xba,0x54,0x5,0xd2,0xbd,0x29,0x4d,0xe9,0xde,0x4a,0xb8,0x37,0x74,
0xe4,0x5a,0x94,0x74,0xa,0xa8,0x55,0x45,0xe7,0x28,0xdb,0xb5,0x74,0xca,0x12,0x87,
0x2e,0x55,0xa6,0x3e,0x9c,0x4f,0xd6,0x9a,0x72,0x1a,0x33,0x4e,0x4f,0xe4,0x70,0x72,
0x53,0x6f,0xcd,0xea,0x6d,0x59,0x3,0x64,0xcd,0x18,0x6c,0x69,0xa3,0x1d,0x4a,0x31,
0x25,0x8d,0xb6,0x84,0xd1,0x16,0x37,0xda,0x62,0x46,0x5b,0xd4,0x68,0x8d,0x18,0xac,
0x61,0x83,0x35,0x64,0x0,0xfa,0x56,0xd0,0xef,0x23,0x31,0xfa,0x75,0x8,0x7e,0x73,
0xf,0xd1,0x8f,0xec,0x37,0x81,0x7e,0x17,0xc4,0xd1,0x67,0x22,0xf4,0x55,0x7a,0x7,
0xd4,0x89,0x91,0xe8,0xb7,0x43,0x9c,0x7e,0xa5,0xd6,0xd6,0xa1,0xb5,0x29,0x35,0x56,
0x66,0x0,0x6b,0x3b,0xa4,0x86,0x2c,0xa,0xa6,0x76,0x95,0x45,0xa1,0xb2,0xb4,0xa9,
0xcc,0x6d,0x9d,0x25,0xb5,0x76,0x82,0x7e,0x13,0xc4,0xb8,0x37,0x32,0x19,0x9a,0xdb,
0x4b,0x6a,0xc2,0x7,0x58,0x15,0x7a,0x26,0x5d,0x23,0xd4,0x6,0x69,0xa1,0x6,0x88,
0xd0,0xd7,0x40,0xf5,0x50,0x8b,0xba,0x7e,0x3,0xcb,0x7e,0x8a,0x7f,0xec,0xff,0x60,
0xc,0xac,0x99,0xab,0x3f,0xfa,0xa7,0x5d,0x23,0x1a,0x43,0xa8,0xbd,0xdd,0x5f,0xdb,
0x1a,0xc6,0xff,0x4d,0x4f,0xd7,0xfc,0xe3,0x81,0x13,0x37,0xf7,0x1c,0x2d,0xec,0xad,
0x1f,0xad,0xd0,0xcd,0x76,0x78,0x56,0x1d,0xf9,0x57,0x13,0x93,0x77,0x86,0x96,0xdf,
0x98,0x3d,0xfb,0xd6,0x32,0xda,0xff,0xb9,0xd7,0x57,0xd6,0xef,0x2d,0xf1,0xf8,0x7,
0xfd,0xd8,0xf7,0x14,0x6,0xa0,0x13,0x3e,0x78,0xda,0xc5,0x4e,0x3a,0xb0,0xf8,0x47,
0xf3,0x61,0x3b,0x9e,0xcc,0x3,0xcc,0x0,0x50,0xc9,0x0,0xcb,0xd3,0x82,0xfe,0xc5,
0xa9,0xf9,0xc5,0x29,0x6a,0x3e,0x68,0xfc,0x73,0xe3,0xdc,0x0,0x1c,0x7d,0x40,0x3f,
0xd,0xee,0x65,0xf4,0x79,0xed,0x99,0x24,0x81,0x7e,0x8c,0x3c,0xf5,0xf1,0x1b,0xdc,
0x8f,0x8d,0x93,0xd,0x46,0x46,0xfb,0x47,0xc7,0x6,0x38,0xfa,0x5c,0x1c,0x7a,0x4c,
0x2,0x84,0xfe,0x50,0x1e,0xdf,0x40,0xc6,0xdf,0xc8,0xf4,0x73,0xf,0x14,0x6,0x33,
0x5c,0x7d,0xf0,0x0,0x13,0xc,0x90,0x1b,0x4c,0xe6,0x7,0x93,0xb9,0xc1,0x44,0x56,
0x52,0x66,0x30,0x9e,0x81,0x7,0x86,0xe2,0xe9,0xa1,0x58,0x7a,0x98,0x94,0x1a,0x89,
0x42,0xc9,0x91,0x48,0x72,0x34,0x92,0x1c,0x8b,0x24,0xc7,0xc3,0x9,0x68,0x2,0x63,
0x88,0xc6,0xc9,0x50,0x9c,0x14,0x8c,0x4d,0x5,0x62,0xd3,0x1,0xdc,0x53,0x1d,0x5b,
0x9,0x44,0x67,0xfd,0xd1,0x69,0x7f,0x64,0xda,0x17,0x98,0xec,0xf1,0x8c,0x77,0x39,
0x87,0xcd,0xc6,0x7e,0x8d,0x32,0xd7,0x8a,0x76,0x5e,0x1d,0x3f,0x55,0x11,0x3b,0x76,
0x12,0x47,0x35,0x71,0xc6,0x3d,0x76,0xbc,0x32,0x76,0xbc,0x26,0x8e,0x47,0x60,0x55,
0x38,0xd,0xdf,0x98,0xaa,0x69,0x4e,0xd5,0x81,0xf5,0x76,0x1c,0x82,0x40,0x93,0xc1,
0x39,0xe1,0x6c,0x1b,0x58,0xd7,0xe4,0x3a,0xb4,0x39,0x1c,0x83,0xeb,0xc4,0xc9,0x7b,
0x43,0x4e,0x6d,0xca,0xe3,0x74,0xbe,0xde,0x92,0xc7,0x9,0x39,0xbd,0xb5,0xcf,0x60,
0xc3,0xd9,0xa1,0xbc,0x91,0x94,0x33,0x39,0x72,0x26,0x7b,0xd6,0xe8,0xcc,0x9a,0x9d,
0x59,0x8b,0x33,0x63,0x76,0xa6,0xcd,0x8e,0xb4,0xc9,0x91,0x64,0x4a,0x98,0xec,0x71,
0xa3,0x3d,0x66,0xb4,0x47,0x8d,0xb6,0x88,0xc1,0xc6,0xd0,0xb7,0x6,0xd,0xd6,0x80,
0xc1,0xe2,0x67,0xf4,0x33,0xf4,0xcd,0x1e,0xa6,0x1e,0x1d,0xa3,0x5f,0x6b,0xea,0xd6,
0x12,0xfd,0x5d,0x6a,0x63,0x97,0x86,0xa1,0xaf,0x36,0x38,0x54,0x6,0x87,0x9a,0xe8,
0xb7,0xb,0xe9,0x6c,0x9d,0x3a,0x1b,0xb8,0x67,0xb2,0x12,0xfa,0x7c,0xd4,0x58,0x20,
0xa0,0xcf,0x64,0x56,0xa8,0x64,0x99,0xda,0x3a,0x1f,0x51,0xab,0xd2,0xc8,0x5,0xee,
0x25,0xe9,0x9b,0xdb,0x4b,0x2,0xf7,0x92,0xb4,0x8d,0xa,0x42,0xbf,0xb1,0x4d,0x3,
0x35,0x40,0x44,0xbf,0x1a,0xaa,0x87,0x5a,0x54,0xf5,0x1b,0x0,0x3d,0xd6,0xbe,0xb0,
0x1,0x4d,0x2,0xb1,0x84,0xf1,0x6b,0xbb,0x5a,0xff,0xe6,0x8f,0xba,0x62,0x7a,0x8d,
0xbf,0xb9,0xcd,0x5f,0xd3,0x82,0x43,0xd5,0xb3,0x27,0xaa,0x3e,0xdc,0x77,0x74,0x7c,
0xcf,0xa9,0xfe,0x43,0x2d,0xe3,0xb5,0x96,0x5,0x6d,0xe8,0x5c,0x6f,0xf1,0x6a,0x66,
0xe6,0xee,0xd8,0xca,0xeb,0x73,0x67,0xdf,0x5c,0xa2,0x3b,0x1d,0xee,0x2f,0x23,0xfe,
0xf1,0x32,0x3b,0xc5,0x3f,0xe8,0x67,0xa7,0x7d,0xc4,0xc1,0x66,0x2a,0x3f,0x44,0x3f,
0x7a,0x3f,0x7f,0xce,0xb5,0xbc,0x3e,0x7,0xd1,0x7a,0x97,0x4a,0xbf,0x94,0xfd,0x40,
0x5f,0xca,0xfe,0x5,0x94,0x1f,0xbe,0xe4,0x65,0xdc,0xcb,0xf1,0x3f,0x3d,0xc3,0xe9,
0x1f,0xe3,0x3f,0xa6,0xa6,0x47,0x27,0xa7,0xa8,0xf7,0x53,0xf3,0x61,0x6,0x20,0xfa,
0xc7,0x9,0x7d,0x8c,0x84,0xfe,0xd8,0x0,0x4,0xfa,0xb9,0x86,0x47,0x8a,0x90,0x28,
0x3f,0xc3,0x54,0x81,0xc8,0x6,0xc3,0xcc,0x0,0x92,0x84,0x7,0x6,0x19,0xfd,0x3,
0x99,0xbe,0x81,0x34,0x57,0x7e,0x20,0xc5,0x95,0x1b,0x48,0x42,0xd9,0x81,0x84,0xac,
0xcc,0x40,0x9c,0x3c,0x30,0x18,0x4f,0xf,0xc6,0xe0,0x81,0xd4,0x50,0x94,0x34,0x1c,
0x49,0xd,0x47,0x93,0xc3,0x91,0xe4,0x48,0x38,0x39,0x1a,0x4e,0x40,0x63,0xe1,0xf8,
0x58,0x8,0x8a,0x8d,0x5,0xa1,0xf8,0x78,0x30,0x36,0x1e,0x88,0x4d,0x4,0xa2,0x13,
0xfe,0xe8,0xa4,0x3f,0x32,0xe9,0xe3,0xa,0x4d,0xf4,0x6,0xc6,0x3d,0xbd,0xa3,0x5d,
0xce,0x41,0x8b,0xb9,0xa8,0x3,0xc7,0x1d,0xe9,0xe6,0x96,0x44,0x3d,0xb6,0x65,0x9a,
0x70,0xde,0x3d,0x51,0xd7,0x82,0x63,0xcc,0x78,0x33,0x29,0x83,0xd6,0x8e,0x13,0x6f,
0xa,0x75,0x6,0x87,0x3d,0x3b,0xb4,0xd9,0xe,0x44,0xbb,0x1,0x87,0xe1,0xf0,0xf6,
0x9,0xbd,0x8f,0x22,0xb1,0xde,0x67,0x74,0x14,0x4c,0x8e,0x3e,0x2e,0xb3,0xb3,0xcf,
0xe2,0xcc,0x9b,0xbb,0xf2,0x16,0xa1,0xac,0xa5,0x8b,0x2b,0x63,0x71,0xa6,0x99,0x52,
0x66,0x70,0xef,0x48,0x98,0x1d,0x71,0xb3,0x3d,0x66,0x2,0xfa,0xf6,0x88,0xc9,0x16,
0x36,0xda,0x24,0xf4,0x41,0xbf,0x55,0xa2,0xdf,0xd2,0xab,0x67,0xe8,0x23,0xfb,0x19,
0xfd,0xdd,0x90,0xc6,0xe4,0xd2,0x2,0x7d,0x32,0x80,0x53,0x3,0xee,0x1f,0x41,0x9f,
0xb8,0x67,0xb2,0x42,0x84,0x3e,0x17,0xe3,0x5e,0xd0,0xaf,0x31,0x3,0x7d,0x26,0x93,
0x42,0x25,0xa9,0xd3,0xd8,0x26,0x49,0x42,0xdf,0xd0,0xaa,0x34,0xb4,0x40,0x1d,0x7a,
0xae,0x66,0xdc,0x5a,0x27,0x89,0xa1,0xaf,0xe5,0xe2,0xdc,0x97,0xd1,0x4f,0xe8,0xb,
0x3,0x80,0x7e,0x32,0x0,0xe8,0xc7,0xee,0x27,0xca,0xf,0x66,0x80,0x6c,0x3a,0xd1,
0xf0,0xeb,0x7f,0x6f,0xb8,0x73,0xc4,0x12,0x56,0x75,0x78,0xeb,0x5a,0x3,0x55,0xcd,
0xd1,0x8a,0xda,0xb7,0x8e,0x9c,0xfe,0xeb,0xbd,0x47,0xf2,0x7b,0xaa,0x6,0x8f,0xb5,
0x4f,0x36,0x39,0x96,0x4c,0xb1,0xb,0x81,0xe1,0x1b,0x85,0xb9,0x7b,0x13,0x67,0xe8,
0x5e,0x13,0xba,0xce,0x4,0xf1,0xbf,0x86,0x5b,0x4c,0xf0,0x3e,0x3b,0xca,0xf,0x7f,
0xbb,0x85,0xde,0x6b,0x61,0x7,0x3c,0x61,0x0,0xf6,0xb4,0x8b,0xaf,0x7a,0xd9,0x5e,
0xe7,0x2c,0xad,0x77,0x1f,0xa5,0x1f,0xb,0x5f,0xca,0xfe,0x45,0xea,0xfd,0xf3,0x7c,
0xd5,0x5b,0x56,0x7b,0x28,0xfe,0x67,0xc6,0x66,0x66,0xc7,0x89,0x7b,0x86,0x3e,0xfe,
0x8,0xfa,0xc9,0x0,0x52,0xf0,0xb3,0xf2,0x23,0xd0,0x1f,0x1b,0x23,0x3,0xf0,0xe0,
0x97,0xd1,0xc7,0x8f,0x21,0x18,0x0,0xe8,0xf,0x73,0xf4,0xb,0x83,0x43,0x7d,0x3,
0x83,0x44,0x7f,0xff,0x60,0x4e,0x16,0x3e,0x6,0x88,0xef,0x80,0xcb,0xf4,0xe7,0xfb,
0x53,0xe4,0x81,0x7e,0xf2,0x40,0xae,0x3f,0xc9,0x95,0x25,0x25,0x32,0xfd,0x71,0x28,
0x5d,0x8c,0xa5,0xfb,0x63,0xe9,0x81,0x58,0x6a,0x20,0xa,0xf,0x60,0x4c,0xe,0x46,
0x48,0x43,0x50,0x38,0x1,0xd,0x73,0x85,0xe2,0x23,0x50,0x30,0x6,0x8d,0x42,0x81,
0x28,0xd7,0x18,0xe4,0x8f,0xe0,0xc2,0x6d,0x68,0xdc,0x17,0x1e,0xf7,0x85,0xc6,0xbd,
0x81,0x51,0x8f,0x77,0xd8,0xd5,0xd5,0x6f,0xb5,0x15,0x8c,0x86,0xac,0x1a,0x6b,0x53,
0x15,0xbd,0x90,0xd4,0xe,0x69,0xd2,0x1d,0xfa,0xc,0xde,0x20,0x51,0x19,0x73,0x1a,
0x13,0x9d,0x0,0xa5,0x50,0xb7,0x22,0xd4,0xfb,0xf0,0xb5,0x4c,0x93,0xa3,0x60,0x6,
0xe8,0x5d,0x5,0x4b,0x57,0xc1,0x4a,0xea,0x23,0xb9,0xfa,0x6c,0xb8,0x75,0xcb,0x95,
0x97,0x94,0xb3,0xb9,0xa0,0xac,0xb5,0x2b,0x63,0xed,0x12,0xdc,0x5b,0x9c,0x49,0x8b,
0x13,0xdc,0x43,0x31,0x13,0x64,0x8f,0x9a,0xec,0x11,0xa3,0x3d,0x6c,0xb2,0x85,0x8c,
0xb6,0xa0,0xc1,0x6,0xee,0x9,0x7d,0x83,0x95,0x82,0x5f,0xf,0xf4,0x2d,0x52,0xf0,
0x9b,0xdd,0x5a,0xb3,0x5b,0x47,0xf4,0x53,0xed,0x61,0x2,0xfa,0x14,0xfc,0x92,0xec,
0x6a,0x83,0x5d,0xad,0xb7,0xa9,0x24,0xf4,0xc9,0x0,0x5a,0x8b,0x92,0x4b,0xa0,0x6f,
0xee,0xd0,0x98,0x3b,0x24,0xf4,0x41,0x7f,0x3b,0xd1,0x6f,0x14,0x22,0xfa,0xd,0x42,
0x4a,0xa0,0xaf,0xe7,0x6a,0x61,0x6a,0xed,0xd0,0xb5,0x74,0xc8,0xf4,0x6b,0x9b,0xdb,
0x39,0xfa,0x1a,0x21,0x41,0xbf,0xba,0xb1,0xd,0xdc,0xab,0x4a,0xe2,0xf4,0xb7,0x74,
0xd6,0x6f,0x88,0x7,0xc2,0x29,0xd0,0x1f,0x8e,0x25,0x82,0x91,0xc0,0x2a,0xfa,0xcf,
0x6f,0x39,0x87,0xd5,0x3a,0x7f,0xab,0xa2,0xb7,0xa6,0x25,0x48,0x7,0x4e,0xaa,0xff,
0xfe,0xc0,0x89,0x7b,0x7b,0x8e,0xf5,0xed,0xaf,0x1d,0x3a,0xa5,0x9e,0x6a,0xeb,0x59,
0x71,0xa4,0x2f,0x45,0x71,0xad,0xd5,0xc2,0xbd,0xa9,0xd5,0xd7,0x17,0xd6,0x41,0xff,
0x6b,0x8c,0x7e,0xdc,0x65,0x82,0x57,0xda,0xf1,0x66,0x23,0x16,0xbe,0x38,0xdf,0xff,
0xa,0x95,0x1f,0x96,0xfd,0x14,0xff,0xd8,0xf4,0x64,0xf,0x7a,0x79,0xf5,0x9f,0xc5,
0x92,0x97,0x67,0xff,0xe2,0xca,0xc,0x3e,0x46,0xcc,0x6b,0xf,0x2d,0x76,0x19,0xf7,
0x73,0xb,0x93,0x8f,0x97,0xfe,0xb2,0xd4,0xa7,0xd2,0xcf,0xd0,0x9f,0x9a,0x1a,0xa5,
0xd4,0x9f,0xe0,0xbd,0x9f,0xd3,0x3f,0x24,0xa5,0xfe,0x63,0xc1,0xdf,0x3f,0x3c,0xcc,
0xe2,0x9f,0xd3,0x3f,0x24,0x5,0x3f,0xd1,0x4f,0x1e,0xe8,0x1f,0xa4,0x8f,0x60,0x72,
0x1,0x7d,0x8c,0x20,0x1e,0x9f,0x86,0xc5,0x48,0xe8,0x17,0x53,0xa4,0x7e,0x52,0xe,
0x2a,0x26,0xb3,0xc5,0x4,0x94,0x29,0xc6,0x85,0x60,0x3,0x98,0x61,0x20,0x9e,0xea,
0x8f,0x42,0xc9,0xfe,0x48,0x72,0x80,0x94,0x18,0x8,0x27,0x6,0xc3,0xf1,0xc1,0x50,
0x62,0x30,0x14,0x1f,0x22,0xc5,0x86,0x82,0xb1,0xa1,0x40,0x6c,0x38,0x10,0x1d,0xf6,
0x47,0x98,0xa2,0x23,0xfe,0xc8,0x88,0x3f,0x3c,0xe2,0x63,0xf2,0x72,0x85,0x46,0x7a,
0xfd,0x43,0x3d,0xbd,0x3,0xae,0x9e,0x7e,0xa7,0xab,0x60,0x73,0xe4,0xcd,0x68,0xea,
0xb4,0x42,0xcd,0xea,0xac,0x39,0x83,0x2d,0x47,0xed,0x5,0x71,0x2e,0xf8,0xc6,0xa1,
0xe8,0xa2,0xbd,0xbb,0x60,0x77,0x17,0x71,0x11,0xb4,0xbd,0xbb,0xf,0xc2,0x9b,0xbe,
0x76,0x26,0x87,0x3b,0xf,0xd9,0xdd,0x39,0x7b,0x37,0x94,0x5,0xf7,0x36,0x57,0xc6,
0xe6,0x4a,0xdb,0x5c,0x29,0x6b,0x57,0x92,0xe4,0x4c,0x0,0x7d,0x8b,0x33,0xe,0xf4,
0xcd,0x8e,0xa8,0x19,0x91,0x4f,0x62,0xe8,0xdb,0x89,0x7e,0x23,0x71,0x4f,0xe8,0x93,
0x8,0x7d,0xa2,0x5f,0x8f,0xd4,0x27,0xb9,0x75,0xe6,0x6e,0x4e,0xbf,0xd6,0x44,0xc1,
0x4f,0xf4,0x1b,0x1d,0x22,0xfb,0x39,0xf7,0x42,0x56,0x95,0xde,0xaa,0xa2,0xec,0xb7,
0x40,0x8c,0x7e,0x33,0x17,0xa1,0xaf,0x31,0x91,0xc0,0x3d,0xc9,0x8,0x49,0xf4,0x1b,
0x14,0x2a,0x9,0xfd,0x4e,0x7d,0x1b,0x24,0xe8,0x27,0xe8,0x25,0x69,0x5b,0xda,0x89,
0x7b,0x21,0x81,0xbe,0xba,0x49,0x41,0x2,0xf7,0x8d,0x6d,0x2a,0x2e,0x46,0x7f,0x27,
0x17,0xa1,0xdf,0xa2,0x24,0x51,0x5,0xa2,0xf8,0xa7,0x45,0x70,0xc2,0xf0,0x95,0x9d,
0x2d,0x7f,0xf3,0x87,0xce,0x88,0xae,0x13,0x47,0xa5,0xbd,0xd5,0xcd,0xc1,0x8a,0xfa,
0xf1,0x13,0x95,0x1f,0xee,0x3d,0x3a,0xb9,0xfb,0x44,0xe1,0x60,0xe3,0x48,0x35,0xbe,
0x43,0x11,0x58,0xeb,0xc9,0x5f,0x4e,0x4e,0xdd,0x1a,0x59,0x7a,0x6d,0x66,0xed,0xfe,
0x22,0xc,0x80,0xad,0x4f,0xa2,0xff,0xd6,0x12,0x5e,0x66,0xe7,0xd9,0xbf,0x82,0x63,
0xfd,0x10,0xde,0x6b,0x21,0xfa,0xa5,0x73,0x3e,0xec,0x41,0xaf,0x44,0x3f,0xdb,0xf3,
0x91,0xd0,0xe7,0xbb,0x3d,0xe0,0x9e,0xa3,0x2f,0x9a,0xf,0x4b,0x7d,0xea,0xfd,0x18,
0xa7,0xc7,0x90,0xfa,0x5c,0x3c,0xf5,0xa1,0xc9,0x49,0xf6,0x83,0x1b,0x60,0x7c,0x8,
0xa9,0xf,0xfa,0x69,0x1c,0x1d,0x80,0xa8,0xf6,0x8c,0x90,0x86,0xb9,0x60,0x0,0xe6,
0x81,0xc1,0xa1,0x2,0xa5,0xfe,0x60,0x7e,0x70,0xb0,0xf,0x22,0xfa,0x7,0x72,0x5c,
0xc5,0xfe,0x2c,0x54,0x28,0x66,0x24,0xf4,0x33,0x7d,0x45,0x41,0x3f,0x2e,0x8b,0xc4,
0x65,0x49,0x50,0xb6,0x90,0xc8,0x14,0xe2,0x18,0x49,0xc5,0x44,0xba,0x10,0x83,0x7,
0x30,0x62,0x1e,0x48,0x15,0xa3,0xb2,0x92,0xc5,0x48,0xa2,0x18,0x4e,0xf4,0x93,0xe2,
0xfd,0x21,0xd2,0x40,0x30,0x3e,0x10,0x8a,0xd,0x4,0x63,0x83,0x50,0x20,0x4a,0xf2,
0x47,0x98,0xc2,0x83,0xbe,0x32,0x79,0x43,0x43,0xbd,0xc1,0x41,0x52,0x60,0xa0,0xc7,
0x37,0xe0,0xf6,0xf6,0x77,0xf7,0x16,0xbb,0x80,0x32,0x8f,0x70,0x62,0x9a,0x93,0xdd,
0xe7,0xe8,0xe1,0x2a,0x38,0x49,0x7d,0x42,0x1e,0xfc,0xc8,0x3b,0xb8,0xdc,0x39,0x87,
0x3b,0x6b,0x77,0x67,0x1d,0xee,0x8c,0xbd,0x3b,0x63,0xeb,0x4e,0xdb,0x5d,0x29,0x9b,
0x2b,0x69,0x23,0xf4,0x13,0xd6,0xae,0xb8,0x5,0x72,0xc6,0x2c,0xce,0x28,0x64,0x76,
0x44,0xcc,0x8e,0x30,0xc9,0x1e,0x32,0xd9,0x83,0x26,0x5b,0xc0,0x48,0xf2,0x1b,0x39,
0xfa,0x56,0x2f,0xa3,0xdf,0xc3,0xd4,0xa3,0x27,0xf4,0x39,0xfd,0x40,0x9f,0xe8,0x27,
0x9,0xfa,0x59,0xe4,0x1b,0x6c,0x24,0x99,0x7e,0x9,0x7d,0x96,0xfd,0x1c,0x7d,0x93,
0x12,0xd0,0xf3,0x51,0x63,0xec,0x60,0xdc,0x4b,0xf4,0x13,0xf7,0x42,0x9c,0x7b,0x92,
0xae,0x4d,0xa9,0x6b,0x15,0xd2,0xb6,0x74,0x48,0x6a,0xc7,0xad,0x47,0xb2,0x4,0xf7,
0x9c,0xfe,0x26,0x9,0xfd,0xc6,0xb6,0xce,0x46,0x9,0x7d,0x32,0x0,0x47,0xbf,0xa5,
0x83,0xb4,0x21,0xc9,0x2a,0x50,0x22,0x18,0x4e,0x25,0xa2,0xd,0xbf,0xfa,0xf,0xfa,
0x3b,0x87,0xcc,0x81,0xce,0xe,0x4f,0x5d,0x8b,0xb7,0xaa,0x29,0x74,0xba,0xf6,0xde,
0x91,0xd3,0x3f,0xda,0x73,0x24,0xb3,0xa7,0xa2,0x78,0x44,0x31,0xd6,0x68,0x9b,0x37,
0x44,0xcf,0xf9,0x7,0x5e,0xcd,0xcd,0xdc,0x1e,0x5b,0xba,0x37,0xb3,0xf6,0xda,0xe2,
0xda,0xbd,0x25,0xb4,0xff,0x55,0x5c,0xe3,0x73,0x7d,0xf1,0xcc,0x55,0xdc,0xe6,0x80,
0xf7,0xd9,0x45,0xf9,0x41,0xfc,0xb3,0xe6,0x23,0x8e,0x39,0xd0,0x49,0x7,0x6c,0xf6,
0xaf,0xcd,0x8a,0xd,0x9f,0x65,0x32,0x0,0x79,0x80,0xad,0x77,0x89,0xfe,0x79,0x46,
0xff,0x1c,0x69,0x6,0x9a,0x65,0x6,0xe0,0xd9,0x4f,0xe8,0x8f,0x21,0xf2,0x79,0xea,
0x3,0x7d,0xa2,0x7f,0x82,0xd1,0x3f,0x2e,0xe8,0xa7,0xda,0xc3,0xe8,0x97,0xb8,0x2f,
0x12,0xfd,0xc3,0x94,0xfa,0x34,0xe,0x15,0xb8,0x18,0xf4,0x1c,0xfd,0xbe,0xfe,0x1,
0xd0,0x4f,0x6,0x28,0xf6,0x97,0xd1,0x5f,0x4,0xf7,0x84,0x3e,0xd1,0x5f,0x48,0x71,
0x9,0xfa,0xfb,0x18,0xf7,0xf0,0x40,0x5f,0x1c,0x36,0xa0,0xb1,0x2f,0x9e,0xee,0x8b,
0xa5,0xfa,0xa2,0x5c,0x49,0x52,0x24,0x55,0x88,0x26,0xb,0x91,0x44,0x21,0x4c,0x2a,
0x86,0xe3,0x85,0x50,0xac,0x10,0x8c,0x15,0x99,0xfa,0xb9,0x2,0x50,0xa4,0xdf,0x1f,
0xe9,0xf7,0x85,0xa1,0x22,0x8d,0xa1,0x7e,0xaf,0xac,0x60,0x7f,0x2f,0x14,0xe8,0xf7,
0x40,0xfe,0x62,0xf,0xe4,0x2b,0xba,0xbd,0x5,0x57,0x6f,0x5f,0x97,0x27,0x4f,0xc2,
0x8f,0xde,0x3e,0xfa,0x23,0xff,0xc1,0xff,0xd2,0x93,0xeb,0xea,0xc9,0x39,0x7b,0xb2,
0x92,0x32,0x4e,0x77,0xda,0xe1,0x4e,0xdb,0xbb,0x53,0xf6,0xee,0x24,0x97,0xcd,0x95,
0x60,0x8a,0xdb,0xba,0x62,0xd6,0x2e,0x81,0xbe,0xc5,0x19,0xb1,0x10,0xfa,0x8c,0x7b,
0x2e,0x70,0x2f,0xe4,0x33,0x2,0x7d,0x52,0xaf,0x41,0xa6,0x9f,0xc,0xd0,0xfd,0x8,
0xfd,0x84,0x3e,0xcb,0x7e,0x8a,0x7f,0x99,0x7e,0x96,0xfa,0x14,0xfc,0x16,0x95,0xde,
0xa2,0xd2,0x99,0x3b,0x21,0x8e,0x3e,0x17,0x47,0x9f,0x4b,0xd0,0x6f,0x68,0x57,0x1b,
0xda,0x89,0x7e,0x3d,0x49,0x46,0xbf,0x44,0xbf,0xb6,0x55,0xa9,0x6d,0x15,0xf4,0x6b,
0x5a,0x3a,0x98,0xda,0xd5,0xcd,0x5c,0x9c,0x7b,0x7c,0xd1,0x83,0xb,0xdc,0x4b,0x62,
0xc1,0xaf,0x14,0xe2,0xe8,0xb7,0xb4,0x33,0x3,0xa0,0xf9,0xc4,0x83,0x61,0x78,0x20,
0x70,0x86,0xfa,0x8f,0x63,0x10,0x27,0xf5,0xda,0x14,0x3d,0x78,0x69,0xb2,0xa2,0x31,
0x7a,0xaa,0xfa,0x87,0x7,0x8e,0xdf,0x27,0x3,0x54,0xf7,0x9f,0x50,0x4f,0xb4,0x75,
0x2f,0xda,0xd2,0x17,0xa3,0x23,0xd7,0x8a,0xf3,0x77,0x26,0x57,0xee,0xcd,0xad,0xdd,
0x5b,0x5c,0xbd,0xb3,0x80,0xf8,0x67,0x97,0x58,0x2d,0xb2,0x5b,0x4c,0xf8,0xfb,0xec,
0xc8,0x7e,0xbc,0xd0,0x88,0x57,0xba,0xc4,0xb1,0xfe,0xd2,0x9e,0xf,0xdf,0xef,0xe7,
0xe8,0xf3,0x9d,0x7e,0x16,0xfc,0x22,0xfb,0x19,0xf7,0x10,0x79,0x60,0xa6,0x64,0x0,
0x3e,0x3,0x4c,0x4e,0x8d,0xca,0xdc,0x73,0xfa,0x21,0xc1,0xbd,0x14,0xfc,0x25,0x3,
0xc,0xb,0x3,0xf0,0xec,0xe7,0xe8,0x23,0xfe,0x99,0xc8,0x0,0x94,0xfa,0x12,0xf7,
0xcc,0x0,0xb9,0x42,0x31,0xcb,0xd0,0x17,0x6,0x28,0xd1,0xdf,0x97,0xc4,0x55,0x61,
0x14,0xff,0xec,0x7,0x2e,0xcb,0xce,0xe0,0xbe,0x0,0x42,0x3f,0x9e,0xce,0xc7,0x52,
0xf9,0x28,0x79,0x20,0xf,0x3,0xe0,0x35,0xea,0x8,0xf7,0x40,0x22,0x1f,0x4e,0xf4,
0x91,0xe2,0x7d,0x21,0x52,0x21,0x1c,0xeb,0xb,0x42,0xd1,0xbe,0x40,0xb4,0xc0,0xe5,
0x8f,0x48,0xa,0x17,0x7c,0xa1,0x3e,0x2f,0x8d,0x5,0x2f,0x53,0x6f,0xb0,0xe0,0x61,
0xea,0xd,0x14,0x3c,0x81,0x3e,0xf,0x46,0x7f,0x5f,0x8f,0xaf,0xcf,0xed,0xcb,0x77,
0x43,0xde,0x92,0x5c,0xbd,0xb9,0xae,0xde,0xac,0xb,0xf2,0x64,0xba,0x3c,0x69,0x27,
0xd4,0x43,0x72,0xf4,0xa4,0x9c,0xee,0xa4,0xc3,0xcd,0xb9,0x4f,0xd8,0xbb,0xe3,0x76,
0x40,0xef,0x8a,0x11,0xf7,0x2e,0xa0,0x1f,0x25,0x81,0x7b,0x67,0x98,0xe4,0x8,0x99,
0x1d,0x41,0x33,0xa1,0x1f,0x20,0x1,0x7d,0xbb,0xcf,0x68,0xf3,0x96,0xd0,0xb7,0x7a,
0xc,0xa4,0x1e,0x3,0xcf,0x7e,0x8b,0x5b,0x6f,0x76,0xe9,0x20,0x1e,0xfc,0x2c,0xfb,
0xb5,0x26,0x87,0xd6,0x68,0x2f,0xd1,0x6f,0xb0,0xaa,0x89,0x7e,0x8e,0x3e,0x6a,0xf,
0xa3,0x9f,0xc,0x20,0xd3,0x2f,0xa1,0x4f,0x6,0x30,0x90,0x80,0x3e,0xae,0xc0,0xe0,
0xe8,0xb,0xe9,0x14,0x40,0x9f,0xe8,0xd7,0xb6,0xd2,0xf5,0x47,0x9c,0x7e,0x89,0x7b,
0xa5,0x86,0x7e,0xb,0xfa,0x55,0xcd,0xed,0xaa,0x66,0x19,0x7d,0x45,0x67,0x39,0xfd,
0x8d,0x32,0xfa,0xad,0x1d,0xd,0x10,0xa1,0x2f,0x54,0x47,0x6b,0x80,0x58,0x20,0x84,
0xa5,0xb0,0xf1,0xcb,0xbb,0x9b,0x7f,0xf8,0xdf,0xed,0x7e,0x8d,0xda,0xdd,0xdc,0x8a,
0x83,0x7e,0x78,0x67,0x7e,0x90,0xfa,0xcf,0x91,0xe9,0xdd,0xc7,0xb2,0xfb,0x1b,0x6,
0xab,0x74,0x93,0x4a,0xdf,0x19,0x37,0x5e,0xfd,0x9e,0xb8,0x3e,0x84,0xab,0x9b,0x57,
0xef,0x2d,0xac,0xdd,0x5d,0x5c,0x5,0xfd,0x37,0x17,0xd8,0xe5,0x6d,0xb,0x44,0x3f,
0xbf,0xd0,0x1,0x2f,0x76,0xd1,0xeb,0xbc,0xa2,0xf7,0xd3,0x11,0x37,0xbe,0xdd,0xc9,
0x37,0xfb,0xe9,0x39,0x97,0x44,0xbf,0x64,0x0,0xda,0xed,0xe1,0xd9,0xcf,0xc,0x20,
0xe2,0x9f,0xa7,0x3e,0xe2,0x9f,0xa1,0xcf,0xe9,0x97,0x3d,0x30,0x36,0xc6,0xb3,0x7f,
0x88,0x77,0x1e,0x38,0x61,0x64,0x64,0x60,0x6c,0x14,0x63,0xff,0xc8,0xb0,0xe8,0x3c,
0xe0,0x5e,0xc4,0xff,0x20,0xcb,0xfe,0x1,0xa1,0xfe,0xfe,0xfc,0xc0,0x40,0x5e,0xe,
0x7e,0xd6,0x7c,0x58,0xf9,0x1,0xfd,0x5,0x8,0xf7,0xc1,0xa4,0xf3,0x7d,0x29,0xae,
0x1c,0xe8,0x7,0xf7,0xf9,0x4,0xd0,0xc7,0x98,0xc9,0xb3,0xe0,0xcf,0x13,0xfd,0xc2,
0x0,0xf8,0x1,0xfa,0x73,0x91,0x64,0x9e,0x94,0xc8,0x85,0x49,0xf9,0x70,0x9c,0x14,
0x82,0x62,0xf9,0x20,0x14,0xcd,0x7,0xb8,0x22,0x79,0xbf,0xac,0x70,0xde,0xc7,0xe4,
0xc5,0x18,0xcc,0xf7,0x72,0x5,0x72,0x1e,0x3e,0x42,0xfe,0x5c,0x8f,0x2c,0x5f,0xd6,
0xcd,0xe5,0xcd,0x76,0x73,0xf5,0x66,0x5c,0xbd,0xe9,0x2e,0xc8,0x93,0xea,0x2,0xf4,
0x3d,0x49,0x21,0x77,0xc2,0xe1,0x66,0xdc,0x77,0xc7,0x48,0x40,0xdf,0x15,0x25,0x11,
0xfa,0x11,0x6b,0x57,0xd8,0x4a,0xe8,0x87,0x98,0x70,0x55,0x63,0xc0,0xc,0x11,0xfd,
0x7e,0x26,0x9f,0x9,0xf4,0x93,0x1,0x7a,0x19,0xf7,0x12,0xfa,0xc4,0x3d,0xb,0x7e,
0xb3,0x8b,0x19,0xa0,0x4b,0x67,0x2,0xf7,0x4e,0x2d,0xb,0x7e,0x1a,0xd,0x30,0x0,
0x6b,0x3e,0xa0,0x9f,0xc,0xc0,0xe8,0x67,0xd9,0x2f,0xc5,0xbf,0x49,0x32,0x80,0x51,
0xa9,0x81,0x18,0xf7,0x32,0xfa,0x74,0x1,0xc,0xc,0xa0,0x53,0x70,0x81,0xf8,0x4e,
0x3e,0x72,0xf4,0x35,0x42,0xc2,0x0,0xea,0x96,0xe,0xf5,0x23,0xf4,0x93,0x1,0x3a,
0x9b,0x64,0xb5,0x29,0x1b,0x65,0x71,0xee,0x1f,0xa7,0x5f,0x51,0xdf,0xac,0xa8,0xdb,
0x0,0xfa,0x31,0x3,0xa4,0x93,0xf1,0xc6,0x5f,0xfd,0xff,0xb4,0xb7,0xf7,0x1a,0x7b,
0x3a,0x3a,0x5c,0xf5,0x2d,0xee,0xaa,0x46,0xff,0x29,0x7c,0x60,0xfd,0xd4,0x4f,0xf6,
0x1c,0x4e,0xed,0x3e,0x95,0x3b,0xac,0x18,0x69,0x34,0x4f,0x6b,0x23,0x6b,0x7e,0x5c,
0x5,0x35,0x75,0x7d,0x64,0xe9,0xce,0xcc,0xea,0xdd,0x5,0xac,0x7d,0x57,0x6f,0x51,
0xfc,0x9f,0xb9,0xca,0xee,0x6f,0x63,0xf4,0x8b,0xab,0x1c,0xd8,0xab,0x2d,0xf4,0x56,
0x17,0x1d,0xf0,0x2c,0xd1,0x2f,0x3d,0xe4,0x92,0x6a,0xcf,0xc2,0xe4,0xfc,0x2,0xf5,
0x1f,0x7a,0xc8,0x25,0x73,0x2f,0x95,0x7e,0xa,0x7e,0x81,0xbe,0x30,0x0,0xa7,0x7f,
0x7c,0x7c,0x78,0x1c,0xf4,0x8f,0x51,0xef,0x27,0x8d,0xe,0x8e,0x8e,0xc,0x40,0xa2,
0xfc,0x50,0xe4,0x97,0xc,0x30,0xc4,0xd0,0x27,0x11,0xfd,0x79,0x36,0xf6,0xc1,0x0,
0x88,0x7f,0x3e,0x3,0x0,0xfd,0x22,0x53,0x41,0xa0,0x9f,0xe9,0xeb,0x23,0xfa,0xe1,
0x1,0x42,0x3f,0x4f,0xf4,0x63,0x24,0x3,0xe4,0x93,0x99,0x1c,0xbd,0x37,0x8d,0xeb,
0x93,0x60,0x3,0x5c,0x9f,0x84,0xdb,0x63,0x98,0xa2,0x50,0x32,0x1b,0x21,0xf,0xe4,
0x22,0x89,0x6c,0x38,0x9e,0x25,0xf,0xc4,0xb3,0x21,0x28,0x96,0xb,0x72,0x45,0x73,
0x81,0x68,0x36,0x80,0x31,0x92,0xf3,0x87,0xb3,0xfe,0x70,0xce,0xc7,0x15,0xca,0x79,
0x43,0x59,0x6f,0x30,0xdb,0x2b,0x2b,0x90,0xf5,0x8,0x65,0x3c,0xfe,0x74,0x8f,0x2f,
0xed,0xf6,0x65,0xdc,0x34,0xa6,0xdd,0xde,0x74,0x37,0xd4,0x9b,0x6,0xf7,0xae,0xde,
0x14,0xc9,0x93,0xec,0x22,0x25,0x48,0x3d,0x71,0x27,0xe4,0x8e,0x3b,0x20,0x42,0x3f,
0xca,0xc,0x80,0x31,0x6a,0x77,0x45,0x6c,0x10,0xa1,0x1f,0xb2,0x74,0x85,0xac,0xe0,
0x9e,0x8b,0xd3,0xef,0xf0,0x9b,0xc1,0x3d,0x43,0x9f,0xd1,0xdf,0x6b,0xb4,0x7a,0x8c,
0x88,0x7c,0x2e,0xa0,0x4f,0xea,0xd6,0x5b,0x5c,0x24,0xa0,0x4f,0x72,0x32,0x3,0x38,
0x44,0xf6,0x1b,0x6d,0x1a,0x88,0xd3,0xaf,0xe7,0xe2,0x6,0xe0,0xf4,0x9b,0x48,0x5a,
0xa3,0x52,0xc8,0x50,0x46,0xbf,0xbe,0x83,0xa3,0xcf,0xe8,0x67,0x6,0xd0,0x92,0x38,
0xfa,0x42,0x9a,0x36,0x6e,0x80,0xe,0x35,0x44,0xe8,0x13,0xfd,0x2a,0x88,0x82,0x9f,
0xd4,0x9,0xfa,0x25,0x3,0x28,0x9b,0x4a,0xf4,0x77,0x34,0xb6,0x75,0x34,0xa,0xfa,
0xdb,0xa5,0xec,0x57,0xd4,0xb7,0x48,0xda,0xc0,0xfb,0x8f,0x6f,0xc5,0x54,0xfd,0xd1,
0xff,0xc7,0x86,0x4b,0x88,0xba,0x5a,0xda,0x9c,0x35,0xcd,0xee,0xca,0x86,0xe0,0xc9,
0xaa,0xef,0xef,0x3f,0xfe,0xd6,0xee,0xc3,0xc9,0x3d,0xb5,0x85,0x53,0x9d,0x23,0xad,
0xae,0x39,0x6b,0x7c,0x3d,0x38,0x74,0xa5,0x6f,0xf6,0xe6,0xf8,0xd2,0xed,0x19,0x94,
0x1f,0x76,0x69,0xf3,0x22,0xe2,0x7f,0xe5,0xd5,0xf9,0x65,0xba,0xbc,0x4d,0x94,0x1f,
0xca,0x7e,0xb6,0xe9,0xc9,0xd1,0x5f,0x5a,0x15,0xcf,0x7a,0xb1,0xf9,0x43,0x27,0x7c,
0x16,0x27,0x31,0x3,0x60,0xc4,0xb1,0x36,0xbe,0xe4,0x95,0x82,0x5f,0xea,0xfd,0x7c,
0xc9,0xcb,0xd0,0xa7,0x19,0x60,0x92,0x37,0x1f,0xa9,0xf7,0x8f,0xf,0x4f,0x30,0x3,
0x8,0xf4,0x91,0xfd,0xdc,0x0,0xbc,0xfd,0x13,0xfa,0xfd,0xc3,0x43,0x45,0x68,0x8,
0x92,0xe8,0x97,0xb2,0x3f,0x3f,0xc0,0xb2,0x9f,0xe8,0x2f,0x92,0x0,0x3d,0x37,0x40,
0x79,0xf0,0x33,0x3,0x90,0x7,0x72,0x79,0xbc,0x2c,0xc7,0xd1,0x4f,0x64,0x73,0x2c,
0xfe,0x61,0x80,0x6c,0x2c,0x93,0x8b,0x63,0x24,0x3,0x64,0xc1,0x3d,0x43,0x9f,0x29,
0x41,0xa,0x27,0x32,0xe1,0x78,0x26,0x14,0xcf,0x84,0xf1,0x3b,0x96,0x9,0xc5,0x32,
0xc1,0x68,0x26,0x10,0xcb,0x62,0xc,0xc2,0x0,0x91,0x8c,0x5f,0x8,0x1e,0xc8,0xf8,
0x48,0x59,0x5f,0x28,0xe3,0xd,0x66,0x7a,0xb9,0x2,0x69,0x4f,0x30,0xdd,0xeb,0x4f,
0xf5,0xe0,0x7,0x46,0xc8,0x97,0x72,0x73,0x79,0x93,0x50,0x37,0xd4,0x9b,0x70,0x71,
0x71,0xee,0x3d,0xf1,0xae,0x9e,0x18,0xe4,0xe4,0x72,0x47,0x1d,0x5c,0xdd,0x11,0x3b,
0xe4,0xa,0xdb,0x64,0x9,0xf4,0x3,0x16,0x67,0x80,0xa1,0xef,0x37,0x3b,0xfd,0x16,
0x87,0xcf,0x6c,0xf7,0x9a,0x84,0x7a,0x4d,0x36,0x8f,0x91,0xd4,0x63,0xb4,0xba,0xd,
0x5c,0x96,0x6e,0xa8,0x84,0xbe,0xc9,0xc9,0xe8,0x17,0xe8,0x53,0xf3,0x11,0xf4,0xb3,
0xe0,0x37,0x58,0x80,0xbe,0xa4,0x32,0xfa,0x75,0x46,0xc9,0x0,0x44,0xbf,0x52,0xcb,
0x3d,0xa0,0x27,0xa9,0x75,0xed,0xd0,0xa3,0xf4,0x33,0x3,0x68,0x84,0x88,0x7e,0x35,
0x49,0xd0,0xaf,0x6a,0xe9,0x90,0xe9,0xef,0x2c,0xa3,0x5f,0xd9,0x84,0xcf,0x5a,0x42,
0x64,0x0,0x86,0xbe,0xa0,0xbf,0xbd,0xa1,0x55,0x92,0x8c,0x3e,0x7e,0x34,0xb7,0xd5,
0x6d,0x30,0xbd,0x7e,0x50,0xf5,0x17,0xcf,0x37,0xfe,0xe2,0xf7,0x9a,0x7e,0xf8,0x5f,
0xad,0xbd,0x6a,0xa5,0xa3,0xa1,0xc5,0x51,0xd5,0xe8,0x3e,0x8d,0xb7,0x4b,0x2b,0x3e,
0xdc,0x7b,0x78,0x66,0xd7,0xb1,0xd4,0xfe,0xc6,0x62,0x95,0x6e,0x4c,0xe9,0x59,0x70,
0xe2,0x4d,0xbf,0xd1,0x57,0xfa,0xf1,0x3d,0x22,0x7c,0xa5,0x2,0xd5,0x1f,0xf7,0x95,
0x13,0xfd,0x88,0xff,0x57,0xe6,0x97,0xe9,0xa,0xb7,0x39,0xea,0xfd,0xe7,0xe5,0x55,
0xaf,0x68,0x3e,0xfc,0x9c,0xf,0x3b,0xe1,0x83,0xe6,0x43,0xe8,0xf3,0x6d,0x7e,0xda,
0xf1,0xc4,0xc2,0x57,0xee,0xfd,0xb3,0x13,0xd3,0x33,0xe3,0xb4,0xd8,0x65,0xf4,0x73,
0x4d,0x32,0xee,0xb9,0x1,0x10,0xfc,0x52,0xed,0x41,0xf0,0xf,0x49,0xdc,0x13,0xfd,
0x23,0xc3,0xa0,0x7f,0xe0,0x63,0xe8,0xf3,0x55,0x6f,0x81,0x67,0xbf,0x8,0x7e,0xc6,
0x7d,0xb1,0x40,0xd0,0xc3,0x6,0x85,0x2,0x82,0x9f,0x26,0x81,0xbe,0x3e,0xa,0x7e,
0x3e,0xe6,0xf3,0x29,0x8,0xf4,0x33,0x25,0x19,0xfa,0xb8,0x2b,0x26,0xe,0xa5,0x4b,
0x22,0xfa,0x53,0x19,0x52,0x32,0x13,0x81,0x12,0x42,0xe1,0x78,0x3a,0x44,0x12,0x36,
0x8,0xc5,0xd2,0x41,0x78,0x20,0x92,0xe,0x44,0xb9,0x32,0x81,0x48,0xda,0x1f,0x4e,
0xfb,0xc2,0x62,0xf4,0x5,0xd3,0xde,0x10,0x94,0xa2,0x31,0x98,0xea,0xd,0xa4,0x3c,
0xa4,0xa4,0xc7,0x9f,0xec,0x81,0x7c,0x49,0xb7,0x2f,0x51,0x92,0x37,0xd1,0xd,0xf5,
0xc6,0x5d,0x90,0x27,0xd6,0x25,0x14,0xed,0xea,0x89,0x3a,0x21,0x37,0x14,0x71,0x40,
0xdd,0x61,0x3e,0xda,0x5d,0x21,0xc8,0xd6,0x5,0x5,0xad,0x10,0xb8,0x27,0xf9,0xad,
0x9c,0x7b,0x87,0xcf,0xe2,0xf0,0x9a,0x49,0xbd,0x66,0x7b,0xaf,0x9,0x1f,0x6b,0x22,
0xf5,0x98,0x18,0xfd,0xcc,0x0,0x84,0xbe,0x81,0x7,0xbf,0xa5,0x8b,0x65,0xff,0x63,
0xf4,0xb3,0xe0,0xa7,0xec,0xb7,0x42,0xa0,0x5f,0x43,0xf4,0x9b,0x29,0xf8,0xb9,0x74,
0x26,0xa8,0x93,0xd1,0xdf,0x9,0xe8,0xb9,0xf0,0x75,0x10,0x8e,0xbe,0x46,0x27,0xe8,
0x17,0x6,0x60,0xd9,0x4f,0xd2,0x28,0x64,0xfa,0xf1,0x43,0xd0,0xaf,0x6a,0x5,0xf7,
0x42,0x9d,0x2d,0x48,0x7d,0x59,0x9c,0x7b,0x52,0x47,0x93,0x8c,0x3e,0xd1,0xdf,0xe,
0x9,0xfa,0x5b,0x14,0xd,0x82,0xfe,0xb6,0xfa,0x96,0x36,0xa2,0x9f,0xc,0x20,0xdf,
0xa,0xaf,0xb9,0xbd,0xdb,0xe8,0x56,0x2a,0xec,0xb5,0x4d,0x8e,0x8a,0x86,0x9e,0x53,
0xd5,0x97,0xf,0x9f,0xfc,0xd9,0xee,0x83,0xd1,0x5d,0x27,0x53,0x87,0x5a,0x8a,0x75,
0xa6,0x71,0x4d,0x70,0xa9,0x17,0x97,0x40,0xe1,0x4b,0x72,0xb,0x37,0xa6,0xe9,0xce,
0x7e,0x34,0x1f,0x96,0xfd,0x8c,0xfe,0xb9,0x25,0x5c,0x60,0x88,0x85,0xef,0xf9,0x39,
0x76,0x85,0x9,0xde,0x69,0xa4,0xf8,0xe7,0xef,0xb5,0xd0,0x23,0xde,0xd2,0x9,0x1f,
0xcc,0x0,0x53,0x72,0xf0,0x97,0x95,0x7e,0xd0,0x2f,0xb6,0x3b,0xa7,0xa7,0xc7,0xcb,
0xd0,0x1f,0x45,0xde,0x53,0xe4,0x93,0xa8,0xf6,0xc8,0x1a,0x95,0x9b,0xcf,0x30,0x5,
0x3f,0x79,0x40,0xce,0xfe,0xc1,0x2,0xcb,0x7e,0x36,0x82,0xfe,0x7e,0x8,0xa9,0x9f,
0x2f,0x72,0xfa,0x25,0xf,0x50,0xfc,0x43,0x4,0x3d,0xa7,0x9f,0x24,0xd0,0xcf,0x25,
0xd9,0xf,0xa2,0x3f,0x93,0xe5,0x62,0x6,0xc8,0xc4,0x28,0xfb,0x99,0xd,0xf0,0x16,
0x5,0xd1,0x9f,0x8e,0x60,0xc4,0x89,0x42,0xee,0x81,0x78,0x1a,0xf,0xd5,0x99,0x1,
0xd2,0xa1,0x58,0x2a,0x48,0x63,0x3a,0x18,0x4d,0x5,0x22,0x50,0x1a,0xa3,0x1f,0xa,
0x27,0x21,0x5f,0x8,0x4a,0x61,0xf4,0x72,0x5,0x93,0xbd,0x81,0x84,0x27,0x90,0xe8,
0xd,0xb0,0x1f,0xfe,0x44,0xf,0xe4,0x8b,0xbb,0xb9,0xbc,0x5c,0xb1,0xee,0xde,0x98,
0x8b,0x14,0x25,0x79,0xa2,0x5d,0x50,0xf,0x14,0x71,0x42,0x6e,0x28,0xec,0x24,0xf4,
0xc3,0x8e,0xee,0x90,0x9d,0xcb,0x15,0x84,0x6c,0x5d,0x1,0x2b,0xc9,0x2f,0xe4,0xf4,
0x59,0x9d,0x12,0xfa,0xc4,0x3d,0xe8,0x67,0xe8,0x83,0x7b,0x92,0x9b,0x4,0xf4,0x89,
0x7e,0x97,0xc1,0xea,0x32,0x0,0x7d,0xa2,0x5f,0xa0,0xaf,0x33,0x3b,0x74,0x26,0xbb,
0x96,0xcb,0x68,0x83,0x34,0x46,0x2b,0x9,0xd9,0x4f,0x32,0x33,0x3,0x98,0x48,0x44,
0xbf,0x91,0xe8,0x27,0x3,0x48,0xf4,0x33,0x3,0x10,0xfa,0x12,0xfd,0xe4,0x1,0x95,
0x16,0x12,0xe8,0x97,0xe8,0x57,0x3,0xfd,0xb6,0x4e,0x8c,0xaa,0x56,0xa8,0x43,0x36,
0x0,0xd1,0x2f,0x19,0x40,0xd9,0x8c,0xaf,0x5e,0x72,0xf4,0x19,0xfd,0x5c,0x8d,0x6d,
0xed,0x42,0xad,0x8a,0x6,0x59,0x64,0x0,0x46,0x3f,0x33,0x40,0x7d,0x73,0x6b,0xdd,
0x86,0xf6,0x9f,0xfd,0xbf,0xfa,0x6f,0xbf,0x68,0x7a,0xfd,0xb0,0x2d,0xad,0x52,0x3b,
0x5b,0x5a,0xac,0x55,0x8d,0xce,0xd3,0x75,0x3d,0x27,0x2a,0xbe,0xb5,0xff,0xd8,0xdb,
0xbb,0xe,0x85,0x76,0xe3,0x6d,0x89,0xf6,0x62,0x93,0x63,0xc2,0x14,0x5d,0xf2,0xf,
0x5e,0xc8,0x4f,0xbf,0x3a,0xb6,0x4c,0xdf,0x68,0x99,0x5b,0x21,0xfa,0x71,0x69,0x33,
0xdd,0xe0,0xc9,0xcb,0xf,0x65,0xff,0x39,0x76,0x95,0xc3,0xa3,0xab,0xde,0x12,0xfd,
0xf4,0xa0,0x97,0xe8,0xc7,0x2e,0x67,0x39,0xfa,0x7c,0xc3,0x87,0x6d,0x74,0x8e,0x4d,
0x4e,0x22,0xf8,0xc7,0x58,0xed,0x19,0x65,0xb5,0x87,0xc,0x80,0x79,0xa0,0xd4,0xfb,
0xc1,0x3d,0x43,0x9f,0xcd,0x0,0x83,0xa3,0x8c,0xfb,0x32,0xfa,0xf1,0x89,0xe3,0xa2,
0x84,0x7e,0x1,0xa9,0xf,0x3,0xd0,0x92,0x17,0x6,0x28,0x42,0x52,0xfc,0xf3,0xe0,
0x67,0xe8,0xd3,0x98,0x7,0xf7,0x14,0xff,0xf9,0x5c,0x2a,0x97,0x43,0xfc,0xa7,0x73,
0xb9,0x24,0x17,0x55,0x20,0xd0,0x9f,0x89,0x43,0xf8,0x91,0xce,0x90,0x7,0x52,0xa4,
0x68,0x2a,0x2d,0xc,0x0,0xf,0xc0,0x0,0x5c,0xf1,0x54,0x38,0x9e,0x62,0xe8,0xd3,
0x48,0x3f,0x40,0x7f,0x34,0x19,0x20,0xf,0x24,0x21,0x42,0x3f,0x9c,0xf0,0x91,0x1,
0x12,0x5c,0xde,0x60,0xa2,0x97,0xc9,0x1b,0x88,0x7b,0xfc,0x71,0xf,0x1f,0xfd,0xf1,
0x1e,0x5f,0x4c,0x96,0xdb,0x17,0x3,0xfd,0x6e,0xc6,0x7d,0x37,0x1f,0x3d,0x91,0x2e,
0xa8,0x27,0xdc,0xe5,0x9,0xd3,0xd8,0x13,0x76,0x42,0xee,0x10,0xe4,0xe8,0xe,0xda,
0x49,0x1,0xbb,0x8b,0x64,0x73,0xf9,0x6d,0x5d,0x90,0xcf,0xa,0x81,0x7b,0x1a,0xbd,
0x16,0x47,0x2f,0x84,0xe0,0xb7,0xd8,0x3d,0xa0,0xdf,0x8c,0xd4,0x27,0xb9,0x4d,0x25,
0xfa,0xcb,0xd0,0xb7,0x38,0xf5,0x10,0x19,0x0,0xe8,0x13,0xfd,0xcc,0x0,0x36,0xa1,
0x4f,0xa0,0x5f,0x36,0x0,0xa7,0xdf,0x0,0xfa,0x99,0x1,0xf4,0x24,0x8a,0x7f,0x4e,
0xbf,0x16,0xe8,0x63,0x6c,0x87,0xc8,0x0,0x1a,0x1e,0xfc,0x52,0xf6,0x73,0xf4,0xcb,
0xc,0x40,0x1e,0xe8,0x6c,0xe1,0x6a,0x57,0x36,0xcb,0x92,0xe9,0x17,0x1e,0x90,0xd0,
0x87,0x7,0x68,0x6,0x60,0x6,0x68,0x69,0x83,0x24,0xfa,0x5b,0x81,0x3e,0xd1,0x4f,
0x6,0x98,0x5d,0xc0,0x71,0xb0,0x98,0x3f,0xd6,0x65,0x71,0xab,0x3b,0x6c,0xd,0x4d,
0xd6,0xca,0x7a,0xc7,0xa9,0x9a,0xe8,0xb1,0x53,0x1f,0xec,0x3e,0x3c,0xbd,0x13,0x97,
0xeb,0xd6,0x24,0x4f,0xa9,0x8a,0x6d,0xee,0x49,0x47,0x7a,0x25,0x3a,0x7a,0xb1,0x1f,
0xdf,0x5a,0xc4,0x37,0xb9,0xf0,0xb9,0x8a,0x65,0xba,0xb0,0x9f,0xdf,0xdb,0x3c,0x87,
0x8b,0x3b,0xd9,0xa6,0x27,0xae,0xf1,0x11,0x6,0x10,0xef,0x34,0xf2,0x3,0x9e,0xe2,
0x60,0x33,0xdb,0xec,0xa7,0x47,0x5d,0x93,0x62,0xa3,0x53,0xec,0xf4,0x8f,0xf3,0xc5,
0xae,0x24,0xf6,0x9b,0xf5,0x7e,0xea,0x3f,0x13,0x23,0x6c,0x6,0x18,0xa1,0xd2,0x3f,
0x4a,0xeb,0x5d,0xde,0x7c,0xc6,0x46,0x6,0x21,0x89,0x7e,0x51,0xfa,0x59,0xf5,0x27,
0x3,0x40,0xf8,0x31,0x38,0x20,0xc7,0x7f,0x1f,0xe8,0x67,0x1e,0x10,0x6,0x0,0xfd,
0x68,0x41,0x18,0x65,0x3,0x90,0x7,0x80,0xbe,0x24,0xd8,0x0,0xb8,0x67,0xb3,0x25,
0xfa,0x61,0x0,0x46,0x3f,0x2e,0x4e,0x8a,0x11,0xfa,0x69,0xbc,0x49,0x44,0x1e,0x48,
0xa4,0x22,0x64,0x80,0x14,0x14,0x86,0x60,0x0,0xbc,0x59,0x17,0x4b,0x6,0xa1,0x28,
0x94,0x0,0xfd,0xc1,0x48,0x22,0x10,0x49,0xf8,0x31,0x86,0x13,0x7e,0x26,0x5f,0x28,
0x4e,0x36,0x8,0xc5,0xbd,0xc1,0xb8,0x97,0x8d,0xbd,0x50,0x20,0xe6,0xf1,0x93,0x7a,
0x98,0x3c,0xbe,0x68,0x8f,0x37,0xea,0xf6,0x31,0x79,0xa3,0xdd,0xde,0x48,0x77,0x6f,
0xc4,0xc5,0xe5,0x9,0x43,0x8c,0xfb,0x10,0xe4,0x84,0xdc,0x41,0x2e,0x7,0xb8,0x17,
0xf2,0xdb,0x5d,0x24,0x9b,0xcb,0x27,0xe8,0xef,0xf2,0xa,0xf4,0x9d,0xa0,0xdf,0x63,
0x76,0x78,0x2c,0xf6,0x9e,0x47,0xd1,0xef,0x36,0xda,0xba,0x8d,0x56,0x17,0x84,0xe0,
0x37,0xb2,0xe0,0x37,0x30,0xf4,0xf5,0x40,0x5f,0xa2,0x1f,0xc1,0xaf,0x3,0xfd,0x2c,
0xfb,0xb5,0x2c,0xf8,0x25,0x99,0x59,0xfc,0xb3,0xec,0xc7,0xd7,0x9d,0xa4,0xec,0x57,
0x95,0xd3,0x4f,0x6,0x60,0xf4,0xb,0x3,0x70,0xfa,0x35,0x5c,0xcc,0x0,0x6a,0x88,
0xd0,0x67,0xc1,0x2f,0xb2,0x9f,0xa1,0xcf,0xc5,0xe9,0x2f,0x19,0x0,0xdf,0x44,0xe0,
0xdc,0x53,0xfc,0xb7,0x43,0x52,0xf0,0x13,0xfa,0x4c,0x6d,0xd,0x10,0x33,0x40,0x43,
0x4b,0x6b,0x3d,0x17,0xd1,0xdf,0x42,0xda,0x30,0x34,0x9a,0x4d,0xe6,0x2,0x3d,0x1,
0xab,0xce,0xa9,0x68,0x31,0x55,0x37,0x98,0x4f,0xd5,0xda,0x4f,0x54,0xae,0x1d,0x3a,
0xf1,0xcb,0x5d,0x7,0x7c,0x3b,0x8f,0x7,0xf,0x36,0x25,0x6b,0xc,0xfd,0xea,0xc0,
0x8c,0x27,0x7f,0x26,0x35,0x7e,0x71,0x10,0x1f,0x60,0x5c,0xba,0x3a,0xcb,0xe2,0x9f,
0x9a,0xf,0xdd,0x5f,0x8b,0xcb,0x6b,0x29,0xfb,0x5,0xfd,0xb8,0xc6,0x87,0x9e,0x76,
0x49,0xcd,0x47,0xbc,0xd2,0x85,0xde,0x4f,0xa5,0x9f,0x19,0x80,0x4a,0xbf,0x24,0xca,
0x7e,0xea,0xfd,0xf0,0x0,0xcb,0x7e,0x29,0xf8,0xc1,0xbd,0x44,0xbf,0xdc,0x79,0xc6,
0x46,0x85,0x7,0x90,0xf7,0x94,0xfd,0x28,0xfd,0x43,0xfd,0x23,0x43,0x82,0x7e,0xe0,
0x4e,0xe8,0x63,0x24,0xee,0xb,0xa8,0x3d,0xac,0xfc,0x70,0xe8,0x79,0xfc,0xe3,0xf3,
0x4f,0x68,0xff,0x6c,0x1,0x40,0xf1,0x2f,0x4d,0x2,0x25,0xf4,0x11,0xfc,0x34,0x3,
0x50,0xf0,0x13,0xfd,0x64,0x80,0x4c,0x86,0xe2,0x3f,0x9d,0x86,0x62,0x12,0xfd,0x64,
0x80,0x64,0x4a,0x88,0xa1,0x1f,0x49,0x24,0x19,0xfd,0x49,0x8,0xf4,0x87,0x70,0xb0,
0x4,0xf,0x17,0x99,0x2,0x10,0x4e,0xd9,0x46,0xe2,0x7e,0x28,0xc,0xee,0x99,0x60,
0x0,0x70,0x4f,0x8a,0x79,0x83,0xa4,0xde,0x40,0xd4,0xe3,0x27,0xf5,0xb0,0x1f,0x3d,
0x90,0x2f,0xe2,0xe6,0xf2,0x86,0xbb,0x49,0x11,0x77,0x6f,0xb8,0xbb,0x37,0xec,0xea,
0xd,0xb9,0x3c,0xa1,0x2e,0x8c,0x3d,0xc1,0x2e,0x52,0xc0,0x9,0xb9,0x3,0xe,0xa8,
0xdb,0x6f,0xef,0xf6,0x3b,0xba,0x7d,0x76,0x17,0x89,0xa1,0xef,0xe5,0xb2,0x2,0x7a,
0x67,0x2f,0x46,0xab,0xd3,0x3,0xfa,0x99,0x88,0x7e,0x33,0x8d,0x8,0xfe,0x6e,0x88,
0xe8,0xc7,0xf,0x66,0x0,0xa3,0x95,0xd0,0x27,0xfa,0xf1,0xc9,0x61,0x88,0xd5,0x1e,
0x49,0x52,0xf6,0x9b,0xac,0xda,0x8f,0xd1,0xcf,0xc,0x60,0x44,0xf3,0x61,0x32,0xb0,
0xf8,0xd7,0x73,0x1,0x7d,0x36,0x3,0x3c,0x4a,0x3f,0x3e,0xfa,0x27,0xe8,0x57,0x2b,
0x54,0x44,0x3f,0x13,0xa1,0x2f,0x19,0xa0,0x93,0xf5,0x1f,0x89,0x7e,0x7c,0x10,0xb3,
0x64,0x0,0xa2,0x9f,0x19,0xa0,0x9d,0x54,0x32,0x80,0xa2,0xb1,0xad,0x8c,0x7e,0x32,
0x0,0xb8,0xc7,0xc,0x20,0xe8,0xaf,0xe7,0xf4,0x93,0x1,0x72,0xc5,0x68,0x20,0xe6,
0xb2,0xf6,0x68,0xf1,0x99,0xf9,0x46,0x43,0x45,0x9d,0xe9,0x64,0xb5,0xfd,0xd8,0xe9,
0x6f,0xec,0x3b,0xf2,0xb9,0x9d,0xfb,0xdd,0x3b,0x70,0xaf,0x74,0x6b,0xaa,0xc1,0x36,
0x68,0xc,0xcf,0xf8,0xfa,0xd7,0x72,0x93,0x17,0x87,0xf1,0x2d,0xba,0xa5,0x57,0x67,
0x97,0xf1,0xa5,0x96,0xcb,0xb3,0x8b,0x17,0x67,0x18,0xfd,0xb8,0xbd,0x90,0x16,0xbe,
0xfc,0xf2,0x36,0xf1,0x52,0xb,0xbd,0xd1,0xfb,0xc8,0xa3,0xae,0xc7,0x7a,0x3f,0xb8,
0x7,0xf4,0x65,0x42,0xef,0x1f,0x9b,0x9e,0x1a,0xe3,0xdc,0x97,0xb2,0x1f,0xe5,0x7,
0xbd,0x7f,0x74,0x8,0xc4,0x8b,0xce,0x33,0x32,0xc8,0xa,0xf,0x13,0xd1,0x4f,0xfd,
0x87,0xf6,0x7c,0xa8,0xf1,0x17,0x7,0xc1,0x3d,0x35,0x7e,0x1a,0x49,0xc2,0x3,0x1c,
0x7d,0x70,0x9f,0x2b,0xf6,0x71,0xfa,0xd1,0x7c,0x58,0x5,0xca,0x93,0xa8,0xf3,0x64,
0x29,0xfe,0x31,0xe6,0x28,0xf5,0x85,0x1,0x88,0xfe,0x34,0x95,0x1f,0x2e,0x78,0x20,
0x95,0x82,0x58,0xf9,0x11,0x6,0x88,0xe0,0x1e,0x1,0xd0,0x4f,0xe8,0x27,0xc0,0x7d,
0x88,0x8f,0x92,0x1,0x8,0xfd,0x28,0xd1,0x8f,0xa7,0x2d,0x7e,0x28,0x14,0xf3,0x49,
0x22,0xf4,0xb9,0x82,0xd1,0x5e,0x52,0xac,0xd7,0x1f,0xf1,0x10,0xfd,0x91,0x1e,0xc8,
0x7,0x85,0xdd,0x90,0x97,0x2b,0xd4,0xdd,0x1b,0xea,0xf6,0x4,0x5d,0xf8,0x81,0x11,
0xea,0x9,0x0,0xfd,0xae,0x1e,0xbf,0xd3,0x2d,0xa9,0xdb,0x7,0xf4,0x89,0x7e,0x32,
0x80,0x17,0x92,0xe8,0xef,0xb5,0x75,0x11,0xf7,0x84,0x3e,0x46,0x47,0x8f,0xc5,0xe1,
0x36,0x43,0x76,0x69,0x24,0xfa,0x5d,0x46,0x9b,0x8b,0x46,0x6b,0x17,0x17,0xa7,0xdf,
0xc0,0xe8,0x37,0x98,0xed,0x7a,0xb3,0x5d,0x7,0x99,0x6c,0x94,0xfd,0xe0,0xde,0x48,
0xd2,0x18,0x1f,0xcd,0x7e,0x83,0x49,0xd,0x95,0xc,0xf0,0x28,0xfd,0xf8,0xe,0x2,
0xc,0xc0,0xe8,0xa7,0x91,0xfa,0xf,0xe2,0x5f,0x43,0x92,0xd,0xc0,0xd1,0xe7,0x12,
0x6,0x0,0xfd,0x4c,0x64,0x0,0x65,0x8b,0x44,0x7f,0xb,0x3e,0x8f,0xc3,0x45,0x6,
0x60,0xf4,0x93,0x1,0x18,0xf7,0x5c,0x2c,0xfb,0xcb,0xe2,0x5f,0xca,0x7e,0x8a,0xff,
0x16,0xc9,0x0,0xcd,0x75,0x1b,0x42,0x49,0xb7,0x2b,0x60,0xd6,0x77,0xb5,0xb7,0x99,
0x6b,0xeb,0x8c,0x27,0x6b,0x2c,0xc7,0xab,0xbc,0x47,0x4f,0xbc,0xb7,0xeb,0xe0,0xf4,
0x8e,0x3,0x3d,0xbb,0x6b,0xc3,0x15,0x38,0x73,0xeb,0x1a,0xb6,0x25,0xe7,0x22,0x83,
0x6b,0x7d,0xd3,0x17,0xc7,0x16,0x5f,0x99,0x5e,0x62,0xf4,0xd3,0xc2,0x57,0x64,0xbf,
0x4c,0x3f,0xbb,0xc4,0xa,0xaf,0xf3,0xb2,0x37,0x7a,0x45,0xf6,0x4b,0xf,0x7a,0xe5,
0x93,0xe,0x40,0x1f,0xa5,0x9f,0xb,0x91,0x2f,0xb2,0x9f,0x75,0x1e,0x6a,0x3e,0x2c,
0xfb,0xd1,0xf8,0xd9,0x5e,0x27,0x17,0x82,0x7f,0x8,0x85,0x87,0xdb,0x40,0xea,0xfd,
0xac,0xfa,0xc3,0x0,0x68,0x3b,0x4c,0x54,0x7b,0x24,0x3,0xd0,0xc,0x50,0x64,0x6b,
0xdf,0x62,0x1f,0xa0,0x67,0xd9,0x9f,0xe5,0xe8,0xf3,0xec,0xe7,0xdc,0x33,0xa1,0xf9,
0x70,0xc1,0x0,0xb0,0x41,0x92,0xc,0x90,0x11,0xd9,0x8f,0x1f,0x30,0x0,0x8b,0xff,
0x38,0x5e,0x15,0x12,0xf4,0x33,0xf,0x24,0x93,0xa4,0x44,0x92,0xe8,0x4f,0x26,0xe9,
0x40,0x15,0xa1,0x1f,0x67,0xe2,0x6,0x88,0x43,0x2c,0xfb,0x63,0x7e,0x88,0x1b,0x40,
0xd8,0x20,0xea,0xb,0x46,0xc1,0xbd,0x37,0x18,0xe9,0xd,0x30,0xf9,0xc3,0x1e,0x28,
0x10,0xa1,0xd1,0x1f,0x6,0xfa,0x3d,0x34,0x86,0x88,0x7b,0x6f,0x90,0x9,0x6,0x8,
0x42,0x2e,0xc8,0x13,0x80,0x8,0x7d,0x59,0x6e,0x9f,0x93,0xd0,0xf7,0xda,0xbb,0xbd,
0x18,0xe9,0x87,0xab,0xd7,0x6,0x3,0x60,0x4,0xfa,0x5d,0x40,0xbf,0x87,0x8f,0x16,
0x8,0xe8,0xf3,0xd1,0xde,0xd,0x99,0xb8,0xc8,0x0,0x2,0x7d,0x66,0x0,0x8e,0x3e,
0x1f,0x39,0xfd,0x84,0xbe,0xe,0xe8,0x9b,0xac,0x3a,0xa2,0xdf,0x2,0x31,0x3,0x98,
0xb9,0x38,0xfa,0x6a,0x64,0x3f,0xc5,0xbf,0x41,0x64,0x3f,0x7e,0x48,0xf1,0xdf,0xc9,
0xb8,0x57,0xe2,0xc3,0x80,0x10,0xa3,0xbf,0x43,0xd0,0xaf,0x6e,0x57,0x9,0x81,0xfe,
0x92,0x1,0xc8,0x3,0x9d,0x10,0xa3,0x5f,0x29,0xd1,0xdf,0x1,0xf4,0xb9,0x18,0xfd,
0xed,0x5c,0x9c,0xfe,0x92,0x1,0xca,0xe9,0x6f,0x6d,0x45,0xfc,0x4b,0xe5,0x87,0xd0,
0x67,0x6a,0xae,0xe3,0xda,0xe0,0xa,0x9b,0x8d,0x9e,0xce,0xce,0xae,0x26,0xb4,0xff,
0x5a,0xcb,0x89,0x2a,0xfb,0xd1,0xd3,0x8b,0x7,0x8e,0xfd,0x66,0xc7,0x3e,0xcf,0xf6,
0x23,0x9e,0x7d,0xd,0x91,0x6a,0x6d,0x56,0xd9,0x3b,0xd6,0x9d,0x5b,0x4c,0xe,0xaf,
0x15,0x67,0x2f,0x4d,0x2c,0x5e,0x99,0x11,0xf4,0xd3,0xc5,0xe5,0xd4,0x7c,0x16,0x70,
0x75,0x33,0x5d,0x60,0x38,0x83,0xfb,0xdb,0xb0,0xeb,0xcf,0xe8,0xe7,0xd9,0x2f,0x4e,
0x3a,0xa0,0xf9,0x94,0x3d,0xe5,0xa5,0xf2,0x53,0x1e,0xff,0x62,0xe1,0x8b,0xfe,0x43,
0xf4,0x93,0x1,0xd8,0x7a,0x97,0xc,0x0,0xee,0x59,0xff,0x19,0xe6,0x75,0x9f,0xd3,
0xcf,0xfb,0x8f,0x3c,0x3,0xf0,0x49,0x80,0xc,0xc0,0x9a,0x8f,0x8,0x7e,0x11,0xff,
0xb0,0x1,0x65,0x7f,0xbf,0x68,0x3e,0xb9,0x47,0xd1,0x67,0x6,0x0,0xfa,0x94,0xfa,
0x24,0x6e,0x0,0x8a,0xff,0xc,0x79,0x80,0xc5,0x7f,0x2,0xdc,0x73,0xf,0xc8,0xf4,
0x73,0xf4,0x1,0x3d,0x94,0x48,0x84,0xa1,0x38,0x14,0xf,0x41,0x84,0x3e,0xb8,0x8f,
0x11,0xfd,0xec,0x7,0xe2,0x3f,0x18,0x89,0x5,0x22,0x51,0x7f,0x98,0xe4,0xc3,0x13,
0x17,0x28,0x18,0x1,0xfa,0x5c,0xbd,0xe4,0x81,0x30,0xc4,0xd1,0x67,0xf4,0x87,0x8,
0x7d,0x5f,0xd0,0xed,0x25,0x75,0xf7,0x6,0xc8,0x0,0x18,0x89,0x7b,0x3f,0xa1,0xef,
0xf1,0x93,0x88,0x7e,0x9f,0x13,0xe8,0x93,0xbc,0x4e,0xce,0x7d,0x77,0x2f,0xd0,0xe7,
0xb2,0xb9,0x3c,0xb6,0x2e,0x12,0xd1,0x2f,0xe4,0xb6,0x38,0xdd,0x40,0xdf,0xe2,0xe8,
0x66,0x33,0x40,0xb7,0x99,0xa5,0x3e,0x53,0x97,0x64,0x0,0xa7,0x11,0x91,0x2f,0x44,
0xe8,0x33,0xd9,0xca,0xd,0xc0,0xe9,0xd7,0xe2,0x4b,0x97,0x10,0xd1,0xcf,0x82,0x9f,
0xc,0x60,0x24,0x3,0x30,0xfa,0x85,0x4,0xfd,0x22,0xfb,0x4b,0xf4,0x93,0x7,0x90,
0xfd,0xda,0xe,0x19,0x7d,0x94,0x1f,0x15,0xd1,0xaf,0xe8,0x24,0xe8,0xdb,0xd8,0x28,
0xb2,0x5f,0x29,0xe8,0x27,0xf,0x48,0xe8,0xb7,0xb4,0xb7,0x37,0x43,0x44,0xbf,0xa2,
0x89,0x4b,0x18,0xa0,0xad,0xb1,0x8d,0x82,0x9f,0xa9,0xb5,0x81,0x8b,0x9a,0x4f,0x8b,
0x50,0x39,0xfd,0x4d,0x30,0x80,0x2e,0xd0,0xde,0xd9,0xdb,0xd4,0xd4,0x55,0x55,0xe7,
0x3c,0x59,0x8d,0xbb,0xbe,0xba,0x8f,0x9c,0xf8,0xea,0x9e,0xc3,0x5f,0xd9,0xbe,0xd7,
0xb5,0xfd,0x84,0xf7,0x70,0x6b,0xac,0x1,0x2f,0x13,0x5,0xc6,0x3c,0x85,0xa5,0xcc,
0xf8,0xd9,0xa1,0xd9,0xb,0x13,0xa0,0x9f,0x76,0x3c,0x69,0xe1,0x3b,0xcb,0x2e,0xec,
0x9f,0x59,0x0,0xfd,0xfc,0xe2,0x4e,0xf4,0x7e,0x29,0xfb,0xf9,0xc2,0x77,0x96,0x9f,
0xee,0xe4,0x87,0xdb,0xc4,0xf9,0x36,0xa,0x7e,0x6c,0x74,0xf2,0xf2,0x83,0xde,0xcf,
0xb7,0x7d,0xf8,0x9e,0xf,0x16,0xbb,0x72,0xf0,0xb3,0xc6,0xcf,0x1e,0xf7,0xb2,0x1f,
0x8f,0x66,0x3f,0xb5,0x7f,0xa,0x7e,0x8e,0xbe,0xc8,0x7e,0x41,0x3f,0xa0,0xe7,0xa2,
0xde,0x5f,0x90,0x7b,0x3f,0xb5,0xff,0x2,0x4f,0xfd,0x1c,0x71,0xcf,0x5,0xee,0xf9,
0xc8,0x25,0xd0,0x4f,0x13,0xfa,0x22,0xfe,0x53,0xb1,0x74,0x8a,0xe2,0x9f,0x66,0x80,
0x24,0x14,0x4d,0x26,0x80,0x3e,0x8b,0x7f,0x99,0xfe,0x44,0x58,0x64,0x3f,0xd0,0x8f,
0x71,0xf4,0x89,0xfe,0x48,0x94,0xd0,0xc7,0xc8,0xe8,0x27,0x85,0x22,0xde,0x50,0xc4,
0xc7,0xe4,0xd,0x86,0x7b,0x21,0xd0,0xef,0xf,0x79,0x2,0x21,0xf,0x46,0x7f,0xa8,
0x7,0xf2,0x5,0x7b,0x8,0xfd,0x0,0xd4,0x8d,0x11,0xe8,0x93,0xfc,0x2e,0x59,0x3d,
0xbe,0x2e,0x2e,0x70,0xcf,0xe4,0x10,0x6,0xe8,0x75,0x94,0xc,0xe0,0xb1,0xb,0x3,
0x20,0xfb,0x61,0x0,0x37,0x4,0xee,0x65,0x99,0xed,0x2e,0x92,0xad,0xb,0xe8,0x73,
0xfa,0x4d,0x56,0xa7,0xd1,0x2a,0xa1,0x4f,0x3f,0xec,0x6,0xb3,0xad,0x8c,0x7e,0x2b,
0xe2,0x9f,0x89,0x67,0x3f,0x43,0x9f,0x46,0x51,0x7b,0x38,0xfd,0x24,0xa2,0x5f,0xdf,
0xc9,0xa5,0xd5,0x9,0xf1,0xf8,0xa7,0x16,0x44,0xe8,0x73,0xb1,0xf2,0x23,0xc5,0x3f,
0xcb,0x7e,0xd0,0x5f,0xf2,0x0,0x19,0x80,0xd0,0x97,0xe3,0xbf,0xb5,0x43,0xce,0x7e,
0x46,0xff,0x27,0x18,0xa0,0xad,0x9,0xf4,0xb,0x3,0x8,0xf4,0x59,0xfc,0x13,0xfd,
0x7c,0x44,0xf6,0x8b,0xf8,0x6f,0x6a,0xaa,0x83,0x36,0x34,0xfb,0xab,0x1a,0x7c,0xa7,
0x6b,0x7b,0x4f,0x56,0xf7,0x1e,0xab,0xec,0x3d,0x72,0x3a,0x74,0xe8,0xe8,0xbb,0x3b,
0xf6,0x2f,0x6e,0xdb,0xdf,0xbd,0xb3,0xd2,0x7f,0xa2,0x23,0xde,0xe2,0x28,0x9a,0x63,
0x93,0xc1,0xa1,0x33,0x85,0xe9,0x73,0xa3,0x73,0x17,0x26,0x51,0x7b,0xd8,0x27,0x5b,
0x40,0x3f,0xdd,0x5a,0xbe,0x40,0xb7,0x96,0xd3,0xdd,0x9d,0xbc,0xf9,0xa0,0xf6,0xc8,
0x47,0xdc,0x40,0x3f,0xe3,0x1e,0xaf,0x32,0xe2,0x98,0x43,0x29,0xf8,0x69,0x97,0x93,
0xf6,0x7c,0xa8,0xf1,0xf3,0xce,0x43,0xc1,0xcf,0xcb,0x4f,0xa9,0xf6,0x50,0xfc,0x53,
0xef,0x97,0x52,0x9f,0x47,0x3e,0xfe,0x86,0x41,0xcf,0x85,0xd4,0x27,0xb1,0xdd,0x1e,
0x4e,0x3f,0x8d,0x80,0x9e,0xab,0xd8,0x47,0xd9,0x4f,0xf1,0xdf,0x7,0xf4,0xa9,0x2,
0x61,0x14,0xcd,0x87,0x5,0x3f,0x35,0x1f,0x89,0x7b,0x4e,0x3f,0x71,0xcf,0x84,0x1f,
0xd4,0xfe,0x53,0x71,0x36,0x9,0xc4,0x19,0xfa,0x31,0x91,0xfd,0x9,0xf2,0x40,0x82,
0x29,0x1e,0x47,0xf6,0x93,0xc8,0x0,0x40,0x1f,0xdc,0x47,0x21,0x8e,0xbe,0x44,0x7f,
0x84,0xd1,0xcf,0xb9,0xf,0xfb,0x82,0x61,0x6f,0x30,0x4,0xf4,0x25,0x3,0x84,0xc8,
0x0,0xfe,0x60,0xf,0x89,0xd1,0x2f,0xc4,0xd,0xe0,0x7,0xfa,0x44,0x3f,0x65,0xbf,
0x8f,0xab,0xab,0xc7,0xdb,0xc5,0x47,0x61,0x80,0x5e,0x67,0xb7,0x7,0xe8,0x3b,0x5c,
0x1e,0x7b,0x37,0xb8,0xef,0xb1,0x75,0xc9,0x22,0xee,0xad,0x5d,0x6e,0xab,0x40,0xdf,
0x65,0x76,0x30,0xee,0x1d,0x2e,0xb,0xfd,0xe0,0xf4,0x3b,0x8d,0x5c,0x56,0x7,0x19,
0x0,0x23,0xd0,0x27,0x81,0x7e,0xc8,0x8a,0xec,0x67,0x23,0x43,0x9f,0xd1,0x8f,0xec,
0xa7,0xf8,0x37,0x98,0xb8,0x1,0xc8,0x3,0x3c,0xfb,0xf1,0xb1,0x27,0x48,0xa7,0xe7,
0x62,0x6,0x10,0x1e,0x0,0xf7,0x5c,0x32,0xfd,0x64,0x80,0x52,0xfc,0x73,0xfa,0xa5,
0x19,0x80,0x4f,0x2,0x4a,0x25,0xc4,0xe8,0xef,0x20,0xf4,0x5,0xfd,0xed,0x52,0xf6,
0x2b,0x90,0xfd,0x8f,0xc6,0x3f,0x43,0x9f,0xe8,0x6f,0x2d,0xcb,0x7e,0xe2,0x5e,0xa0,
0xdf,0x42,0xe8,0x4b,0xe5,0x87,0xd1,0x4f,0x6,0xa8,0x8b,0x9c,0xac,0x89,0x9c,0xa8,
0xe,0x1d,0xab,0xc0,0x47,0x94,0x62,0x87,0x4e,0xac,0xef,0x3d,0xf2,0xde,0xb6,0xdd,
0xfe,0xad,0x7,0xdd,0x7b,0x6a,0x3,0x15,0xea,0x44,0x87,0x67,0xa0,0x2b,0x35,0x1d,
0x1d,0x5e,0x29,0x4e,0x9d,0x1d,0x5d,0xc0,0x17,0x1a,0x59,0xf3,0x1,0xfd,0x68,0x3e,
0xf3,0x7c,0xd5,0xcb,0x2e,0xaf,0x65,0x57,0x17,0xf2,0xab,0x1c,0xf0,0x6a,0x8b,0x38,
0xd6,0x2f,0xbd,0xcb,0x3b,0x3e,0x4b,0x6,0x28,0x6d,0xf6,0x73,0x3,0x70,0x95,0x2f,
0x79,0xa9,0xf9,0xc8,0xa5,0x1f,0xf1,0xcf,0xaa,0xbf,0x28,0x3c,0x43,0xb4,0xe4,0xe5,
0x85,0x87,0x47,0x3e,0xdf,0xf3,0x61,0xd0,0x13,0xf7,0x54,0xfa,0x69,0xaf,0x93,0xd6,
0xbe,0xe5,0x1e,0x0,0xf4,0x5c,0x40,0x1f,0x33,0x0,0x4d,0x2,0xa2,0xf4,0x83,0x7e,
0x91,0xfd,0xb0,0x1,0x65,0x7f,0x9a,0x19,0x80,0xd9,0x80,0x44,0xc1,0x4f,0x1e,0xe0,
0xc1,0xcf,0x14,0x4b,0x12,0xfd,0xd1,0x44,0x1c,0xcd,0x47,0x32,0x40,0x2c,0x1c,0x8b,
0x81,0xfe,0x10,0xa1,0xcf,0x66,0x80,0x48,0x24,0x0,0x85,0xc1,0x7d,0xc4,0x1f,0x61,
0x23,0xd1,0x1f,0x16,0x2,0xfa,0x81,0x50,0x2f,0x17,0xfd,0xe,0x82,0x7e,0x59,0x3d,
0xbe,0x0,0x89,0xe2,0xdf,0xf,0x31,0xfa,0x7d,0x90,0xa0,0x1f,0xd0,0xb,0xf5,0x76,
0xb9,0x7b,0x9d,0x5c,0x44,0x3f,0xd0,0xef,0x1,0xfa,0x5c,0xcc,0x0,0x6e,0x12,0xa3,
0xdf,0xe6,0xec,0xb6,0x70,0x1,0x7a,0xa0,0x6f,0xef,0x2,0xfa,0x5c,0xa0,0x9f,0xc4,
0xd0,0x67,0xb2,0x1b,0x20,0xa0,0x6f,0xb1,0x51,0xfc,0xd3,0x28,0x52,0x1f,0xf4,0xb,
0x3,0x90,0x7,0x90,0xfd,0xa0,0x9f,0xd0,0xd7,0x88,0xe0,0x37,0xa8,0x9,0xfd,0x12,
0xfd,0xe4,0x1,0x16,0xff,0x48,0xfd,0x4e,0x89,0x7e,0xa5,0x46,0x64,0x7f,0x87,0x5a,
0xdd,0xe,0x9,0x3,0xa8,0xda,0x45,0xf6,0x23,0xfe,0xcb,0xd0,0x7,0xfd,0x5c,0x9c,
0x7e,0x32,0x0,0xd1,0xcf,0xc,0x20,0xe8,0x67,0x6,0xa0,0xd4,0xe7,0x62,0x6,0x68,
0x25,0x51,0xf3,0x69,0x21,0x31,0xfa,0x1b,0x80,0xbe,0xa0,0xbf,0xa9,0xbe,0xb9,0xa9,
0xe,0xe2,0xf4,0x37,0x35,0xe2,0x49,0xf0,0xf4,0x91,0x8a,0x4b,0x7,0x4f,0xbe,0xb3,
0xf7,0xf8,0xb7,0x77,0x1d,0xfd,0xd9,0xf6,0xc3,0x1f,0x6d,0x3d,0xf0,0x8d,0xad,0xbb,
0x9d,0xdb,0x8e,0xf7,0x1c,0x6a,0xc,0xd4,0x1a,0x52,0x1a,0xdf,0x90,0x3b,0x37,0x9b,
0x1c,0x5d,0x19,0x98,0x5e,0x1f,0x5b,0x64,0x1f,0xea,0x62,0xf4,0x53,0xf6,0xe3,0x81,
0x17,0xbb,0xac,0x5c,0x64,0x3f,0x5b,0xf5,0x8a,0x93,0x6d,0xfc,0x69,0x57,0x59,0xf3,
0x19,0x9b,0x99,0x99,0x20,0xdc,0x39,0xfa,0xac,0xf9,0x70,0xf4,0xe9,0x37,0x6d,0xf3,
0xf3,0xcd,0x7e,0x32,0x0,0x5f,0xf2,0x8a,0xd2,0x3f,0xcc,0x36,0xfb,0x89,0x7e,0xb6,
0xe7,0x33,0x48,0x1e,0x40,0xea,0xe3,0x87,0xd8,0xf1,0x14,0x6,0x20,0x1b,0xc8,0xdc,
0xe3,0x7,0x88,0x67,0xd9,0x2f,0xe8,0x67,0x1e,0x90,0xcb,0xf,0x1e,0x78,0xb1,0x6d,
0x1f,0x18,0x20,0x93,0xcc,0x65,0x78,0xf3,0x81,0x1,0x4,0xf7,0x3c,0xf5,0x49,0xc9,
0x18,0x24,0xe2,0x9f,0xa1,0x4f,0xd9,0x1f,0x97,0xc4,0x66,0x0,0x98,0x81,0xc,0x40,
0xc1,0x2f,0x2b,0x40,0x93,0x80,0xe4,0x1,0xee,0x4,0x88,0x3c,0x10,0x42,0xfc,0x93,
0x88,0x7e,0x8c,0xc1,0x5e,0x32,0x40,0xc0,0xc3,0xb9,0xc7,0x24,0x40,0xf4,0xfb,0xdd,
0x3e,0xa2,0x9f,0x19,0x80,0xe8,0x27,0x3,0x90,0x7,0xbc,0x2e,0xa2,0xbf,0x97,0x4,
0xee,0x7b,0xb8,0x1,0x3c,0xce,0xee,0x1e,0x7,0xc9,0xe3,0xe0,0x6,0xe0,0xe8,0xb,
0x3,0x74,0x5b,0x9d,0x10,0xe5,0xbd,0x85,0x8f,0xe,0x89,0x7e,0x70,0x6f,0x7f,0x9c,
0x7e,0xca,0x7e,0x66,0x0,0x16,0xff,0x56,0x18,0x40,0x6f,0xb6,0xe8,0xa0,0x12,0xfd,
0x94,0xfd,0x5a,0x8e,0x3e,0x17,0xc,0x60,0x30,0x6a,0xf4,0xcc,0x0,0x7a,0x39,0xfb,
0xa5,0xe6,0xa3,0x65,0xc1,0x4f,0xa3,0x86,0x8b,0xcd,0x0,0x6a,0x32,0x0,0xd1,0xaf,
0xe2,0x62,0xcd,0x47,0x88,0x7,0x3f,0x65,0xbf,0x92,0x82,0x5f,0x56,0x4b,0xc7,0x27,
0xd0,0xdf,0xc,0xfa,0x1f,0x35,0x40,0x13,0x8b,0xff,0xc6,0xd6,0x16,0x48,0xa6,0xff,
0x7f,0x63,0x80,0x46,0x18,0xa0,0x76,0xc3,0x31,0xf6,0xd9,0x61,0xe8,0xc8,0xc3,0xad,
0x87,0x1f,0x6e,0x3d,0xf4,0xc1,0x96,0x3d,0x2b,0x5b,0xf6,0x3a,0x77,0x9e,0xee,0x39,
0xa6,0x8,0x35,0xe1,0xd5,0xbb,0xf0,0x88,0x1f,0x5f,0x85,0x18,0x5b,0x1e,0x9c,0x3d,
0x3b,0x81,0xcf,0x33,0x12,0xfd,0xa8,0x3d,0xeb,0xd3,0xec,0x1b,0x2d,0x82,0x7e,0x5e,
0x7e,0xe4,0x13,0x3e,0xe5,0xa5,0x9f,0xce,0x78,0xb2,0xd2,0xcf,0xf6,0x7c,0xf8,0xe9,
0x4e,0x49,0xd2,0x43,0x2e,0xfe,0x9c,0x8b,0x6f,0x77,0xf2,0xad,0x9e,0xc7,0x37,0x7c,
0x28,0xfb,0x7,0x18,0xf7,0xac,0xf6,0xb0,0x91,0x67,0x3f,0x82,0x5f,0x1e,0xc1,0xbd,
0x68,0xff,0xac,0xff,0x30,0xa1,0xf9,0x50,0xff,0x11,0x93,0x40,0x2e,0x3,0xe8,0x59,
0xf3,0x61,0xe5,0x47,0x70,0xf,0xf,0xc8,0xe5,0x27,0x29,0xd0,0x27,0xfa,0xc9,0x0,
0x44,0xbf,0x48,0xfd,0x48,0x32,0x4e,0x82,0x1,0xe2,0x31,0xd1,0x7c,0xe2,0x72,0xf6,
0x83,0xfe,0x8,0x65,0x3f,0x6c,0x40,0x23,0xe8,0xf,0xfb,0x25,0xb1,0xe6,0xc3,0xb8,
0xa7,0x1f,0x41,0xce,0xbd,0x10,0xa7,0x1f,0xa3,0x9f,0x79,0x80,0x1b,0xc0,0xeb,0x23,
0x71,0xfa,0xc1,0x3d,0x1f,0x49,0x9c,0x7e,0xf,0x71,0xcf,0xc5,0xe8,0xb7,0xbb,0xdc,
0x98,0x1,0x1c,0x18,0x5d,0x32,0xfd,0xdd,0xb6,0xae,0x6e,0x64,0x3f,0xe8,0xb7,0x3a,
0xba,0x38,0xfa,0x92,0x1,0x9c,0x66,0xbb,0xd3,0x6c,0x73,0x88,0xf8,0xc7,0xf,0xab,
0x1d,0xd9,0xcf,0xe9,0x37,0xb2,0xd4,0x27,0xfa,0x99,0x88,0x7e,0xfc,0x30,0x99,0x75,
0x10,0x6b,0x3e,0x44,0x3f,0x93,0x16,0xdc,0x1b,0xd0,0x7c,0x8,0x7d,0x26,0x3d,0x19,
0x80,0x4b,0x54,0x7f,0x6d,0xa7,0x56,0xcb,0xe2,0xff,0x71,0xfa,0xc9,0x3,0x8f,0xd1,
0xaf,0x7a,0xcc,0x0,0x1d,0x92,0x1,0xda,0x5b,0x81,0xbe,0x44,0x7f,0xb,0xb2,0xbf,
0x14,0xff,0x8c,0x7e,0x61,0x0,0x11,0xfc,0x1c,0x7d,0x12,0x82,0x9f,0x3c,0xd0,0xfc,
0x71,0xfa,0xeb,0x9b,0x9,0x7d,0xa6,0x86,0xda,0xd,0x28,0x3c,0x87,0x7f,0xba,0xf5,
0xc0,0x37,0xb7,0xee,0xbb,0xbd,0x65,0xcf,0xc2,0x96,0x5d,0x99,0xcd,0x3b,0xba,0x36,
0xef,0xb7,0xef,0xaa,0xeb,0xad,0xd4,0x44,0x3b,0x5c,0x39,0x7b,0x62,0x2c,0x82,0x6f,
0xc5,0x4d,0xac,0xc,0xcf,0x9f,0x9d,0x92,0x7a,0x3f,0xff,0x68,0x85,0x74,0x63,0xf3,
0xf2,0xd4,0x2c,0xdd,0x5c,0xcb,0xef,0x6f,0x93,0x5f,0xe7,0x95,0x5f,0xe9,0x62,0xf,
0x7a,0xd9,0x31,0x7,0xbe,0xd8,0x15,0x92,0x96,0xbc,0x3c,0xfe,0x49,0x6c,0xb1,0x3b,
0x36,0x32,0x84,0xc8,0xc7,0xc,0xc0,0xa,0x8f,0xc8,0x7e,0x16,0xfc,0x3,0x52,0xea,
0xf3,0xed,0x4e,0x51,0x7e,0x98,0x1,0x58,0xff,0x11,0xd5,0x9f,0x71,0x9f,0xe7,0xf4,
0x4b,0xe8,0xd3,0xaa,0x97,0xc4,0xb8,0x47,0xea,0xb3,0xec,0x27,0x3,0x90,0x7,0x88,
0xfe,0x14,0xa,0xf,0xdb,0xf3,0x49,0xa2,0xf3,0xd0,0x8,0xa5,0x12,0x40,0xff,0x31,
0x3,0xa0,0xfc,0x48,0x6,0x80,0x7,0x98,0x62,0x51,0x29,0xfe,0xb9,0x1,0xd8,0x48,
0xa,0xfb,0x23,0xe1,0x40,0x38,0xe4,0x83,0xd,0x42,0x21,0x66,0x80,0x20,0x8b,0x7f,
0x86,0x3e,0x1f,0x3,0xc4,0x3d,0x9b,0x1,0xfc,0x3d,0x10,0xcb,0xfe,0x1e,0xa2,0xdf,
0xdb,0xdd,0x2b,0x89,0xa3,0xcf,0x83,0xbf,0xc7,0x43,0x2a,0x19,0x0,0xf4,0x13,0xf4,
0x92,0xba,0x6d,0xf8,0xd,0xee,0xbb,0x18,0xf7,0x64,0x80,0x2e,0x4,0x3f,0x33,0x0,
0x89,0xb8,0xe7,0x22,0xfa,0x49,0x46,0xfe,0x43,0x18,0x80,0x82,0x9f,0xc9,0xa,0x21,
0xfb,0x49,0x2c,0xfb,0x89,0x7e,0x26,0xd0,0xaf,0xa5,0xea,0x8f,0xec,0x27,0xfa,0xcb,
0xc,0xc0,0xb2,0x5f,0xaf,0x57,0xf3,0x5,0x0,0x19,0x80,0xd1,0x5f,0xca,0x7e,0x4a,
0x7d,0x26,0x55,0x3b,0x13,0x33,0x40,0xa7,0x42,0xd5,0xd9,0x2e,0xb2,0x5f,0xa9,0xe8,
0x54,0xb6,0x41,0xca,0xe,0xe8,0x63,0xf4,0x2b,0x80,0x3e,0x17,0xaf,0xfe,0xc8,0x7e,
0x11,0xff,0x64,0x80,0x56,0xa8,0x84,0x3e,0x95,0x1f,0xe2,0x5e,0x52,0x53,0x7d,0xb,
0x53,0x73,0x23,0xa1,0x5f,0x46,0x3f,0x33,0xc0,0xee,0xec,0x96,0x5d,0x9e,0x2d,0xbb,
0x5c,0x5b,0xf7,0x74,0x6d,0xdf,0xe3,0xdc,0x7e,0xa8,0x6b,0xef,0x71,0xd7,0xe1,0x1a,
0x4f,0x45,0x47,0xb0,0xc5,0x96,0x32,0xf9,0xfb,0x3d,0xe9,0xf1,0x38,0x3e,0x1b,0x3a,
0xbd,0x3a,0xc6,0x83,0x9f,0x24,0xa1,0x3f,0xbf,0x32,0x2d,0xae,0x2e,0x2c,0x9d,0x6d,
0x9e,0xc4,0x5b,0xbc,0x54,0xf7,0xe9,0x6,0x7,0xbc,0xcd,0x28,0xe8,0x97,0x77,0x7b,
0x50,0x78,0xf8,0xd9,0x1e,0xb6,0xe4,0x25,0xf4,0xcb,0xb7,0x7a,0x68,0xe1,0xcb,0x3a,
0xf,0x1b,0xf9,0xf,0xfe,0xc0,0x8b,0xe2,0xbf,0x5c,0x72,0xf0,0xb3,0xd4,0x2f,0x95,
0xfe,0x7e,0xa2,0x9f,0xf2,0x5e,0x2c,0x7c,0x51,0xfd,0x73,0x99,0x42,0x2e,0x5b,0x28,
0x33,0x0,0xb7,0x41,0x1e,0x36,0x40,0xf9,0x49,0xb3,0xea,0xcf,0xd,0x20,0xa1,0xcf,
0xd,0x20,0x79,0x20,0xa,0x1b,0xb0,0xde,0x2f,0x9a,0xf,0xe7,0x3e,0x4e,0xdc,0x93,
0x40,0x3c,0x1f,0x19,0xf4,0x94,0xfd,0x18,0xa9,0xff,0xb0,0x19,0x80,0xd0,0x7,0xf7,
0x42,0xe0,0xde,0xb,0xe8,0x3,0x1,0xa0,0xdf,0xeb,0xf7,0x13,0xfa,0xe4,0x1,0x46,
0x3f,0xc9,0x27,0x1b,0xc0,0xcd,0xd,0xc0,0x52,0x5f,0x88,0xd3,0xdf,0x83,0xe0,0xef,
0xe1,0x72,0x40,0xdd,0x6e,0xe6,0x81,0x6e,0x12,0x88,0x77,0x81,0x7e,0xa0,0xef,0x22,
0x3,0x90,0x4,0xfa,0x16,0x87,0x84,0x7e,0x19,0xfd,0x26,0x9b,0x5d,0xa0,0x5f,0x32,
0x0,0xa1,0x2f,0x19,0x80,0x79,0x0,0xdc,0x53,0x5,0x42,0xfc,0x9b,0x88,0x7e,0xca,
0x7e,0x23,0x89,0xe8,0x37,0xb0,0xe6,0xa3,0xa7,0xec,0x17,0xb,0x5f,0x9d,0x4a,0xc7,
0xd0,0xe7,0x63,0x59,0xf6,0x2b,0x35,0xb2,0x1,0xe4,0xec,0xef,0x84,0x1,0x18,0xfd,
0x84,0x3e,0x89,0x9a,0xf,0xd1,0xdf,0xa6,0x6c,0x67,0x6,0xa0,0xec,0x27,0x49,0xe8,
0x33,0x3,0xb4,0x61,0x6,0x68,0x61,0xf4,0x37,0x2b,0x88,0x7b,0x49,0x52,0xf0,0xb7,
0x36,0x37,0x82,0x7e,0x61,0x80,0xa6,0x6,0x8e,0xbe,0x44,0xbf,0xf0,0x40,0x53,0x3,
0xd0,0x27,0xfa,0xc9,0x0,0xc7,0xfc,0x7,0x4f,0xf8,0x8e,0x54,0xf8,0x4e,0xd4,0xe2,
0xe3,0xa9,0xbe,0xea,0x66,0x7f,0x5d,0x5b,0xa0,0x49,0x15,0x6e,0x37,0xc7,0x75,0x3d,
0xb9,0xae,0xe8,0x60,0xb0,0x6f,0x2a,0x33,0xbe,0x38,0x84,0x8f,0xef,0x8a,0xd,0x1f,
0xd6,0x7c,0xf8,0x66,0xff,0x5c,0xf9,0x5e,0xe7,0xfc,0x4,0xa0,0x67,0x1b,0x3e,0x34,
0xf2,0xc3,0x6d,0xe2,0x90,0x8f,0x38,0xe5,0xc6,0x4f,0x37,0xc0,0x0,0xf2,0x6e,0x8f,
0xd8,0xe2,0x14,0x1b,0x9d,0x20,0x5e,0x7e,0xce,0x25,0x65,0x3f,0xf,0x7e,0x79,0xc3,
0x67,0xa8,0x9f,0x4e,0x3a,0xc0,0x9,0xdc,0x0,0x83,0xb4,0xf0,0x45,0xf6,0xb3,0xf8,
0xef,0x23,0x89,0xd4,0x7,0xf1,0xbc,0xf6,0xe4,0xc8,0x0,0x7d,0x59,0x29,0xfe,0x9,
0x7a,0x9a,0x1,0xa8,0xf7,0xa7,0x93,0xb9,0x34,0xfd,0xf8,0x44,0xf4,0xe5,0x19,0x20,
0x19,0x8f,0xca,0x4a,0xc4,0x58,0xf9,0x29,0x5,0x7f,0x28,0x16,0x11,0x1e,0x20,0xe8,
0x99,0x0,0xbd,0x8,0xfe,0x90,0x3f,0x14,0xf4,0x41,0x80,0x3e,0x4,0x3,0x4,0x20,
0xc1,0x3d,0x83,0x9e,0xe4,0xf3,0x71,0xee,0x49,0x3c,0xf8,0xbd,0x5e,0x8c,0x82,0xfe,
0x5e,0x9,0x7d,0x8f,0xa7,0xb,0xa2,0xec,0x17,0xe8,0xb,0xf,0x30,0xfa,0x1d,0x9c,
0x7e,0x86,0x3e,0x17,0xb8,0x17,0x42,0xf0,0xc3,0x3,0x80,0xde,0xe1,0xa4,0xd1,0xee,
0x60,0xd9,0x6f,0x67,0xf1,0x8f,0x11,0xcd,0xc7,0x56,0x12,0x47,0x1f,0xd0,0x8b,0xf8,
0x17,0xa9,0x2f,0xe8,0x17,0x1e,0x10,0xc1,0x4f,0xf4,0x93,0x1,0x88,0x7e,0x4a,0x7d,
0x1a,0x89,0x7e,0x61,0x0,0x9e,0xfd,0xe4,0x1,0x5e,0x7e,0xd4,0x4a,0x96,0xfd,0x5c,
0x72,0xfc,0xd3,0xc,0x20,0xd3,0xdf,0xc9,0xd1,0x97,0xc,0x20,0xd3,0xdf,0x21,0x67,
0x3f,0xd0,0x67,0x62,0xe8,0x13,0xfd,0xc2,0x0,0x2d,0xe4,0x1,0xb9,0xf9,0x70,0x3,
0x20,0xfe,0x69,0x64,0x6,0x60,0xc1,0x2f,0xc5,0xbf,0x40,0x9f,0x19,0xa0,0xbe,0x16,
0xda,0x80,0x9d,0xfe,0xf6,0x58,0xb,0x2e,0x1,0xd6,0xc4,0x3b,0x74,0xf1,0x4e,0x53,
0x42,0x67,0x4e,0xe8,0xed,0x49,0xb3,0x3b,0xeb,0x8c,0xc,0x4,0x70,0xf5,0x31,0x3e,
0x96,0x38,0xb1,0x34,0x3c,0x7b,0x66,0x62,0x9e,0xed,0xf6,0xb0,0x8f,0x14,0xf1,0x7,
0xbd,0xec,0xe6,0x36,0xf9,0xc6,0x66,0xe9,0x58,0x3f,0xbb,0xb5,0x8a,0x75,0x1e,0xf1,
0x42,0xa3,0x38,0xe0,0x29,0x76,0x39,0xd9,0x23,0x5e,0xb6,0xd5,0x53,0x92,0xb4,0xea,
0xa5,0xd4,0x7,0xf1,0x7c,0xd5,0x3b,0x4a,0xe8,0x17,0x87,0x1f,0xd,0x7e,0x10,0x2f,
0xca,0xf,0x47,0x9f,0xd1,0x4f,0x6b,0x5f,0xa2,0x5f,0xd4,0x1e,0x9a,0x1,0x72,0x19,
0xb4,0x20,0xa2,0x3f,0x9b,0x6,0xfd,0x2c,0xec,0x11,0xf9,0x69,0x4e,0x3c,0x29,0x9d,
0xca,0xa6,0x12,0x24,0x29,0xfe,0xe5,0xd4,0xa7,0x1f,0xac,0xfc,0x80,0x7b,0x3e,0x82,
0x7b,0x3e,0xb2,0xe0,0xe7,0xf1,0x2f,0xcd,0x0,0x11,0xaa,0xfe,0xb0,0x1,0x65,0x7f,
0x38,0xc8,0xd0,0xe7,0x6,0x28,0xd1,0x2f,0xe2,0x3f,0x80,0xec,0x97,0x82,0x9f,0xd1,
0x2f,0x7b,0x80,0x43,0x5f,0x42,0xbf,0xb7,0xbb,0x97,0xc9,0xe3,0x71,0x71,0xee,0x49,
0x3d,0x65,0xf4,0xbb,0x9d,0x6e,0x26,0x32,0x40,0xb7,0x6c,0x0,0x3b,0x37,0x80,0x4c,
0x3f,0x7e,0x80,0x7b,0x59,0xa0,0x9f,0xc,0x40,0xdc,0x97,0x9,0x6,0xb0,0x1a,0xa5,
0xd4,0x27,0xfa,0x85,0xcc,0xa2,0xf7,0x53,0xf3,0x31,0xb1,0xf8,0x37,0x92,0x44,0xf3,
0x21,0xfa,0x79,0xf6,0xb,0x3,0x0,0x7d,0xf2,0x0,0xb2,0x9f,0x49,0xab,0x81,0x24,
0x3,0xa8,0x99,0x1,0x38,0xfd,0xac,0x2,0x21,0xf8,0x85,0x94,0xed,0xc2,0x0,0x1d,
0x8a,0x4f,0xa0,0x5f,0xd1,0xa,0xfa,0x3b,0x14,0x6c,0x6,0x68,0x63,0xd9,0xdf,0xc6,
0xb2,0x9f,0xe8,0x27,0xb5,0x1,0x7d,0x2e,0x82,0x5e,0x16,0xd0,0x6f,0x64,0xe8,0x4b,
0xf1,0xcf,0xe8,0x6f,0xe1,0x1e,0x90,0xd,0x50,0x4f,0x6,0x68,0x84,0x1,0x2c,0x39,
0xbd,0x25,0x8b,0xef,0x6c,0x9a,0xba,0xf2,0xb6,0xee,0xbc,0xbd,0x7,0xb7,0xc,0xe4,
0x5d,0xbe,0xbe,0x9e,0xe8,0x40,0x20,0x33,0x9a,0x28,0x4e,0xe5,0x46,0xe7,0x7,0x27,
0x17,0x47,0x67,0xc1,0xbd,0xd8,0xeb,0x14,0xdf,0xaa,0x40,0xe9,0x9f,0x91,0x4b,0xbf,
0x48,0x7d,0xfe,0x2e,0xef,0xb8,0xd8,0xea,0x61,0x1b,0x3e,0xbc,0xfc,0xc8,0xf,0xb9,
0x78,0xed,0xe1,0x75,0x9f,0x2f,0x76,0xa9,0xf4,0xd3,0x7e,0x3f,0x2f,0x3f,0x64,0x0,
0x29,0xf5,0xfb,0x47,0x68,0xab,0x47,0xda,0xec,0x47,0xf6,0xf7,0x17,0x7,0x8b,0x6c,
0xd5,0xfb,0x31,0xfa,0x69,0xcb,0x5f,0x2a,0x3f,0x22,0xf8,0xb3,0xd4,0x7c,0x28,0xfb,
0x99,0xb8,0x1,0x64,0xf,0x50,0xf3,0x49,0x91,0x28,0xfe,0x93,0x52,0xf9,0x49,0xb0,
0xde,0x1f,0x67,0x4a,0xc4,0x38,0xf7,0x1c,0x7d,0xfe,0x9b,0x71,0x2f,0x24,0x67,0x3f,
0xb8,0x87,0x7,0x4a,0xf4,0x87,0x88,0x7e,0xd9,0x0,0x34,0x3,0x50,0xf6,0x93,0xc8,
0x0,0x7e,0x92,0xdf,0xc7,0xe8,0xf7,0x79,0x7c,0xde,0x1e,0x2e,0x99,0x7e,0x6f,0xaf,
0x5b,0x42,0x1f,0xf4,0xb,0x81,0x7e,0xa6,0xc7,0xb9,0x2f,0xd1,0xef,0x12,0xf4,0x77,
0x75,0xd9,0xa0,0xc7,0xd0,0x77,0x38,0x2c,0x9c,0xfe,0x92,0x7,0x6c,0x26,0x1b,0x84,
0xa,0xc4,0xd,0x60,0x31,0x94,0x8b,0x37,0x1f,0x70,0xcf,0x25,0xd1,0x8f,0xe6,0xa3,
0xe5,0xc1,0x2f,0x67,0xbf,0x30,0x80,0xc8,0x7e,0x15,0xa1,0x2f,0xe8,0x2f,0x65,0x3f,
0xe8,0xd7,0x88,0xec,0x67,0x1e,0x90,0xe9,0x47,0xff,0xe1,0xe5,0xa7,0x3,0xe2,0xcd,
0xa7,0x24,0x9a,0x1,0x38,0xfa,0x82,0x7e,0xe1,0x1,0x89,0xfe,0x26,0x85,0x4c,0x7f,
0x4b,0x53,0x19,0xfd,0xcc,0x6,0x9c,0xfe,0x46,0x48,0xe6,0x1e,0xe8,0x93,0xa4,0xf2,
0x23,0xe2,0x9f,0xc,0x80,0xab,0x97,0xfc,0x43,0x9e,0xc0,0xa0,0x7,0x17,0xd1,0x44,
0x86,0xfc,0xb1,0xe1,0x20,0xee,0x6f,0x4a,0xe3,0xaa,0xd7,0xd1,0x44,0xff,0x54,0x1e,
0x1f,0xd0,0x1d,0x9b,0x1b,0x9c,0x5a,0x1c,0x15,0x7b,0x9d,0xec,0x84,0x8f,0xb4,0xde,
0xc5,0x55,0xfd,0xd2,0x9d,0xb5,0x8c,0x7b,0xe9,0x8d,0x16,0xb1,0xd7,0xc9,0xde,0xe4,
0x2a,0x7b,0xc2,0xf5,0xc8,0xf1,0x1e,0xb1,0xd7,0x9,0xee,0xc7,0x47,0x87,0xc1,0x3d,
0x5f,0xfb,0x8a,0x55,0x2f,0x3a,0xf,0xdb,0xe8,0x94,0xe3,0x9f,0xa7,0xbe,0x6c,0x0,
0xa9,0xf6,0x50,0xf6,0x33,0xf4,0xd9,0x9e,0xf,0x16,0xbe,0x2c,0xf5,0xb9,0x4,0xf7,
0xd4,0xf5,0xd9,0xaa,0x57,0xa6,0x1f,0xd9,0xcf,0x7a,0x3f,0xd1,0xf,0xf4,0x99,0x44,
0xfc,0x27,0x90,0xfd,0x25,0xf,0x24,0x63,0x2,0x7d,0x6e,0x0,0x8e,0x3e,0xb8,0xe7,
0x23,0xa0,0xc7,0xf,0xa2,0x5f,0x12,0x65,0x7f,0x28,0x0,0xe2,0xb9,0x1,0xc2,0x41,
0x31,0x9,0x84,0x2,0x3e,0x40,0x4f,0x6,0xe0,0xf4,0x33,0xf4,0xb9,0xca,0xd,0x0,
0xee,0xa9,0xfc,0x78,0xba,0x21,0xa0,0xcf,0x47,0x48,0xa2,0xbf,0x8b,0xa7,0xfe,0x23,
0xd9,0xef,0xb2,0x93,0x7,0x5c,0x76,0x88,0xa3,0x2f,0xc,0xe0,0xb4,0x3a,0x99,0x80,
0x3e,0x95,0x1f,0xa0,0x6f,0x97,0xb2,0x9f,0xa3,0x6f,0x33,0x81,0x7b,0x41,0x3f,0x9a,
0x8f,0x64,0x0,0x8a,0x7f,0x33,0x49,0xa6,0xdf,0x24,0x65,0x7f,0x39,0xfd,0x6,0xbd,
0xe4,0x1,0x1d,0x35,0x1f,0x3d,0x46,0x2d,0xa3,0x9f,0x82,0x9f,0xc4,0x6b,0x4f,0xb9,
0xf8,0xc,0x20,0x7,0x3f,0xb5,0xff,0x32,0xfa,0xc9,0x0,0x82,0x7e,0x2a,0xfd,0xf8,
0xd,0xfa,0x85,0x7,0x28,0xfb,0x99,0xa4,0xe0,0x27,0xf,0xb4,0x40,0x8,0x7e,0x2e,
0x82,0x5e,0x4c,0x2,0x4d,0xa0,0x9f,0xc5,0x3f,0xd1,0x4f,0x12,0xe5,0x87,0xd1,0x4f,
0xf1,0x4f,0xc1,0xcf,0x55,0xdb,0x54,0x57,0xdb,0x58,0x57,0xbb,0x21,0x3e,0x1e,0x4e,
0x8e,0x47,0xd2,0x13,0xf1,0xec,0x64,0x32,0x8f,0xaf,0x5f,0x4d,0x66,0xf0,0x55,0xd0,
0xc1,0xe9,0xbe,0x61,0x86,0xfe,0x24,0x3e,0x3c,0xba,0x38,0xc6,0x3e,0x45,0x4a,0xcd,
0x87,0x3e,0xce,0xc5,0x3e,0x51,0x31,0xcd,0x5e,0xe7,0x9d,0xa6,0xeb,0x9a,0xa9,0xfa,
0xf3,0xc2,0x43,0x57,0x17,0xd2,0xe1,0x36,0xb6,0xdd,0x29,0x3f,0xe2,0x15,0xa5,0x5f,
0x2c,0x79,0x59,0xfc,0x4b,0xf4,0x8b,0x3d,0x1f,0xa9,0xf9,0x48,0xd9,0x2f,0xcf,0x0,
0x14,0xff,0xc4,0x7d,0x69,0xc3,0xa7,0x7c,0xbd,0x4b,0xe5,0x7,0xe8,0xe7,0x79,0xf6,
0x3f,0x8e,0xfe,0xe3,0xa9,0x8f,0xf2,0xc3,0xf4,0x58,0xf0,0xb,0xfa,0x19,0xfa,0x44,
0x3f,0x8f,0xff,0x78,0xc,0xf4,0x53,0xfc,0x33,0xf,0xc4,0xa3,0x25,0x3,0x70,0xfa,
0xc9,0x0,0x8c,0x7b,0xea,0xfd,0x21,0x12,0xa7,0x9f,0x7e,0x48,0xdc,0x4b,0xc1,0xcf,
0x66,0x0,0xbf,0xa0,0x5f,0xc4,0x7f,0x39,0xfa,0xbd,0x6e,0x9a,0x1,0x58,0xf0,0xb3,
0x51,0x78,0x80,0x1b,0xa0,0x8c,0xfe,0x92,0x1,0x0,0x3d,0xe7,0x5e,0xa6,0x5f,0x36,
0x0,0xa0,0xa7,0x19,0x80,0xa3,0xcf,0xc4,0xe9,0xe7,0x92,0xd1,0x17,0x6,0x60,0xd9,
0x2f,0x66,0x0,0xb3,0xde,0x62,0x36,0x70,0xfa,0x1f,0x31,0x80,0x51,0xc7,0xcb,0x8f,
0xd1,0x40,0x22,0xf4,0xa5,0xe6,0x3,0xee,0x9,0x7d,0x1e,0xff,0x5a,0x95,0x9c,0xfd,
0x64,0x0,0xb5,0x92,0x8f,0x80,0x5e,0xa3,0x62,0xfd,0xa7,0x93,0x54,0x32,0x40,0x89,
0x7e,0x9a,0x1,0xca,0xb2,0x9f,0x82,0x5f,0x88,0x71,0xdf,0xd1,0xd6,0xfa,0x8,0xfd,
0x40,0x9f,0xc,0xc0,0x9b,0x8f,0x10,0x4b,0x7d,0x2e,0x39,0xfb,0x1b,0x5a,0x1a,0xea,
0x21,0x1e,0xfc,0x9c,0xfe,0x66,0x99,0xfe,0x3a,0x41,0x3f,0x19,0xa0,0x38,0x9b,0xc5,
0x97,0xd0,0x87,0xe6,0xa,0xc3,0xf3,0xfd,0xa3,0xb,0x3,0x63,0xb,0x83,0xe3,0xb,
0xc3,0x13,0x8b,0xc3,0xec,0xc3,0xeb,0xf8,0xa,0x2f,0x3e,0x49,0xcd,0x76,0x39,0xd9,
0xa7,0xe9,0x78,0xef,0xe7,0xc1,0x2f,0xd3,0x2f,0x5e,0xe4,0xe5,0xe7,0x3a,0xa5,0xfb,
0x4b,0xd8,0xbb,0xbc,0xb4,0xde,0xe5,0xbb,0x3d,0x72,0xf3,0x61,0x27,0xdb,0xf8,0x5e,
0x67,0x29,0xf5,0xa9,0xfc,0xf0,0x55,0xef,0x20,0x5f,0xf2,0x4a,0xd9,0xdf,0xf,0x3,
0x48,0x3b,0x9e,0x45,0x9a,0x1,0xb8,0x1,0xd8,0xaa,0x97,0xe8,0xe7,0x6,0xe0,0x91,
0x2f,0xff,0x78,0xac,0xf6,0x70,0xee,0x65,0xf4,0x45,0xf0,0xf3,0xe6,0xc3,0xb2,0x1f,
0x6d,0xe7,0xe3,0xf4,0xf3,0xd4,0x27,0x45,0x45,0xf6,0x3f,0x12,0xff,0x9c,0xfe,0x10,
0xeb,0xfd,0x8c,0x7b,0x8e,0xbe,0xa0,0x3f,0xe0,0x3,0xf1,0xa5,0xe6,0x83,0xe0,0xf7,
0x49,0xcd,0xc7,0xe7,0xe1,0x1e,0x10,0xd9,0xdf,0x2b,0x55,0xa0,0x32,0xee,0xc5,0x24,
0xd0,0xe3,0xf2,0xf4,0x30,0x3,0xb8,0x85,0x44,0xf6,0x13,0xfd,0xce,0x6e,0x17,0xb,
0xfe,0x2e,0x12,0x88,0xa7,0xd1,0x49,0xdc,0xd3,0xe8,0xb0,0x72,0x39,0xec,0x16,0x48,
0xd0,0x6f,0x33,0xdb,0x99,0x4a,0xf1,0x8f,0x19,0xc0,0x22,0x95,0x1f,0x86,0xbe,0x30,
0x80,0xa9,0x14,0xff,0xe5,0xe8,0x13,0xfd,0x28,0x3f,0xdc,0x0,0xc,0x7d,0x41,0x3f,
0x65,0xbf,0x90,0x88,0xff,0xb2,0xec,0x97,0xd1,0x17,0x6,0x50,0xb6,0xab,0x98,0x0,
0x3d,0x1f,0x3b,0xdb,0xcb,0xe8,0x57,0xb0,0xe0,0x87,0xda,0x48,0x52,0xf0,0x23,0xfb,
0x49,0x2c,0xf5,0x1f,0xcb,0xfe,0xd2,0xc,0x40,0xf4,0x37,0x92,0xe4,0xec,0xe7,0xf4,
0xb,0xf,0xd4,0xd7,0xcb,0xf4,0x37,0xd7,0xd7,0xf3,0xec,0x6f,0xac,0x25,0x6d,0x18,
0x5b,0x1c,0x9c,0x5a,0x19,0x9d,0x5a,0x1e,0x9d,0x5e,0x19,0xc3,0x4a,0x77,0x16,0x1f,
0x61,0x67,0xfb,0x3c,0xd8,0xeb,0x4,0xfa,0xec,0xcb,0xa4,0x8,0x7e,0xf1,0x8d,0x16,
0x42,0x5f,0xaa,0x3d,0x7c,0xcf,0x87,0x82,0x9f,0xbf,0xc9,0x8e,0xd4,0x67,0x23,0xea,
0xbe,0x14,0xff,0x8f,0xa4,0x3e,0xdf,0xe1,0x91,0x76,0xfa,0x89,0x7e,0x5e,0x78,0x78,
0xef,0xa7,0x9d,0x7e,0x46,0x7f,0x69,0xaf,0x93,0xd3,0xcf,0x4a,0xbf,0xc,0xbd,0x98,
0x1,0x18,0xfa,0x1f,0x37,0x0,0xd0,0x17,0xfd,0x27,0x83,0xde,0x4f,0x2d,0x88,0x97,
0x7e,0xea,0x3f,0x69,0xfa,0x21,0xe2,0x5f,0x6a,0x3e,0x92,0x1,0x58,0xf0,0xb3,0xf6,
0x9f,0xe4,0xd9,0x8f,0xe0,0x47,0xea,0x33,0xc5,0x23,0x61,0xae,0x58,0x38,0x44,0x42,
0xfc,0x87,0x29,0xfe,0x19,0xf4,0xa2,0xff,0x88,0xe0,0xf,0xf8,0x43,0x4c,0xc1,0x80,
0x8f,0xfd,0x20,0x1b,0x10,0xfa,0x3e,0x56,0xfa,0x1f,0xed,0x3c,0x3e,0xa0,0xcf,0x84,
0xd4,0x27,0x79,0x68,0xe4,0xe8,0x53,0xf6,0x3f,0x4a,0xbf,0xbb,0xdb,0xc9,0x45,0xd9,
0xef,0x92,0xc,0xc0,0xe9,0x77,0xa2,0xf6,0xb0,0x91,0x19,0xc0,0xe9,0xb4,0x39,0x80,
0x7e,0x19,0xfd,0xe4,0x1,0x81,0xbe,0xd9,0x66,0x35,0x71,0x51,0xff,0xe1,0x6,0x30,
0x1b,0xa4,0xe0,0x37,0x98,0x4d,0x7a,0x59,0xa2,0x2,0x51,0xfc,0xeb,0x38,0xfa,0x52,
0xfc,0x6b,0x64,0xfa,0xf5,0x5a,0x35,0xa4,0xd3,0xa8,0x20,0x2d,0x46,0x4c,0x2,0xbc,
0xff,0x70,0x3,0xa8,0x48,0x25,0x3,0x28,0x3b,0x38,0xfa,0xb2,0x1,0x38,0xfd,0xc2,
0x0,0x8a,0x36,0x25,0xc4,0x9a,0xf,0x7e,0x90,0x1,0x5a,0x99,0x7,0x18,0xfa,0x8f,
0xd0,0xdf,0xdc,0x2c,0x7,0x3f,0x7e,0x48,0xc1,0xcf,0xe2,0x9f,0xd3,0xdf,0x20,0x54,
0xca,0x7e,0xa2,0xbf,0x9e,0x6a,0x4f,0x9d,0x2c,0x42,0x9f,0x6c,0x0,0x3,0xcc,0xaf,
0x4f,0xcd,0xe3,0xb1,0x2e,0xe,0xb4,0x41,0x7c,0x8b,0x13,0x5b,0x3d,0xec,0x8b,0xbc,
0x54,0xf7,0x29,0xf8,0xf9,0x62,0x97,0xa1,0x8f,0xf2,0x83,0x6d,0x7e,0x56,0x7b,0xd8,
0xa9,0x66,0x71,0xac,0xed,0x91,0x87,0x5c,0xd2,0x1e,0x3f,0x7f,0x99,0x5d,0xca,0xfe,
0xb2,0xe0,0x17,0x9b,0xfd,0x83,0xfc,0xf1,0x16,0x65,0xbf,0x38,0xdc,0x86,0xe0,0x17,
0xc7,0x1c,0xc8,0x9,0x72,0xfc,0x17,0xb1,0xdd,0x59,0xe0,0xa9,0x2f,0x6a,0xf,0x9e,
0x70,0xb1,0xc8,0x17,0xca,0xf1,0xd,0x1f,0xb1,0xea,0x15,0xeb,0xdd,0x34,0x5f,0xf2,
0x12,0xfa,0x7d,0x99,0xc,0x43,0x1f,0x6,0x20,0xf,0x20,0xef,0xd9,0x28,0x26,0x81,
0x14,0x6b,0x3e,0xf8,0x4b,0xa2,0x9f,0x19,0x40,0x46,0x5f,0xfe,0xc1,0xe9,0xe7,0x36,
0xa0,0xf2,0x13,0x62,0xf1,0x4f,0x23,0xfd,0xa6,0xec,0x67,0xc4,0x97,0x4b,0xa6,0x9f,
0x1b,0x80,0x8d,0xbd,0x3e,0xaf,0x87,0xb8,0xa7,0xce,0xc3,0xd0,0x7,0xf7,0x1e,0x70,
0x2f,0x55,0xff,0x1e,0x9,0x7d,0x77,0x17,0xc5,0xbf,0xbb,0x4b,0x42,0x5f,0xfc,0x20,
0xfa,0x25,0xb1,0xba,0x2f,0xd0,0xe7,0x6,0xe0,0xf1,0x2f,0xd3,0x2f,0x66,0x0,0xa4,
0xbe,0xc4,0xbd,0x44,0xbf,0x9,0xe8,0x7f,0xcc,0x0,0x82,0x7e,0x93,0x98,0x1,0xf4,
0x72,0xed,0x91,0xd1,0x67,0xf1,0x2f,0x19,0x0,0xe8,0x23,0xf8,0x19,0xfd,0xb2,0xb4,
0xea,0x4e,0x2e,0x4e,0x3f,0x19,0x80,0x35,0x1f,0xb5,0x92,0x44,0xe8,0x77,0x90,0xd8,
0xaa,0x57,0xd0,0x5f,0x6e,0x80,0xf2,0xf8,0x87,0x1,0x4,0xfd,0x2d,0x2d,0xed,0x2d,
0x52,0xfc,0x37,0x37,0x2b,0xa4,0xda,0x43,0x36,0x68,0x22,0xc9,0xd9,0x2f,0x66,0x0,
0x61,0x0,0x56,0x7b,0x18,0xfa,0x5c,0x65,0xf4,0xd7,0xc9,0xf1,0x4f,0x6,0xa0,0x43,
0xd,0xfc,0x38,0x27,0x89,0x8e,0x34,0xb3,0x4f,0xb1,0xf3,0xad,0x9e,0xd2,0xf3,0xdd,
0xd2,0x7,0x5a,0xf8,0xe3,0x2d,0x5c,0x56,0xfe,0xe8,0xab,0x8c,0xd2,0xf1,0x1e,0x76,
0x89,0x83,0xf4,0x90,0x8b,0x9d,0xed,0x19,0x91,0x4a,0x3f,0x35,0x1f,0x21,0xea,0x3c,
0x6c,0xc7,0x73,0x88,0x6c,0xf0,0x88,0xe0,0x1,0x16,0xfc,0xa2,0xfc,0x30,0xf4,0xcb,
0xe7,0x1,0x39,0xf8,0x8b,0xb9,0x1c,0x89,0x57,0x20,0x96,0xf7,0xe5,0xbd,0x9f,0x47,
0xbe,0x9c,0xfa,0xb9,0x54,0xa,0x79,0x9f,0x4d,0x62,0xe1,0x9b,0xcc,0x24,0x12,0xbc,
0xee,0xb3,0xf1,0x91,0xde,0x9f,0x8a,0x89,0x19,0x80,0xa5,0x7e,0x69,0x6,0xe0,0x6,
0x0,0xeb,0xb2,0x22,0xc1,0x60,0x24,0x48,0x1e,0x0,0xfd,0xf8,0x51,0x6e,0x0,0xea,
0x3f,0x3e,0xea,0xfd,0x18,0xfd,0x5e,0xf,0xc4,0xe7,0x81,0x52,0xea,0x13,0xf7,0x3d,
0x32,0xfd,0xcc,0x3,0xdd,0xbd,0x12,0xfd,0x1e,0x37,0xd0,0x77,0xf5,0x74,0x77,0x41,
0x6e,0x21,0x16,0xff,0x65,0xf4,0x8b,0xec,0x77,0x96,0xc,0xe0,0x74,0x30,0xfa,0xed,
0x16,0x8c,0x76,0x56,0x7e,0x4a,0xd9,0xff,0x98,0x1,0x58,0xf3,0x91,0xe3,0x9f,0x66,
0x80,0xf2,0xec,0x37,0xea,0x4d,0x2c,0xf5,0x85,0xf4,0xbc,0xf7,0x6b,0xc,0x3a,0x21,
0x9a,0x1,0xca,0xb2,0x9f,0xc5,0xbf,0xb4,0xfc,0x5,0xfd,0x2a,0x12,0xd1,0xdf,0xf9,
0x8,0xfd,0x64,0x0,0x46,0xbf,0x30,0x0,0xcf,0x7e,0x1e,0xfc,0xa,0xf1,0xa3,0x54,
0x7e,0xa4,0xe0,0x27,0xf,0x70,0x3,0x10,0xfa,0x42,0x62,0x6,0xf8,0x18,0xfd,0xe5,
0xf1,0x8f,0x79,0xa0,0x64,0x80,0xba,0x47,0xe8,0x87,0x13,0x78,0xf9,0x21,0xd5,0x60,
0x6,0x58,0x9d,0xa2,0xfd,0x4d,0x76,0xaa,0x87,0x1a,0x3f,0x2b,0x3c,0xf2,0x56,0xf,
0xef,0x3c,0x78,0xa3,0x45,0x14,0x1e,0x71,0x55,0x2d,0x79,0x80,0x6f,0xf3,0x53,0xe9,
0xc7,0x85,0xb5,0xbc,0xe8,0x97,0xd7,0x7d,0xb6,0xcd,0xcf,0xe9,0xe7,0x7b,0x9d,0xec,
0x7c,0x9b,0xbc,0xd3,0x2f,0xb6,0x3b,0xa9,0xf6,0x94,0xa7,0x3e,0xad,0x7a,0x89,0x7e,
0xf6,0x90,0x8b,0xbd,0xd5,0x85,0xd4,0x2f,0xaf,0x40,0x5,0x7c,0xd8,0xfe,0x91,0xd,
0x1f,0xfc,0x51,0x2e,0xfd,0xcc,0x0,0xa2,0xf6,0x3c,0xd2,0xfb,0x93,0x6c,0xd3,0x93,
0xe8,0x67,0xbd,0xff,0x91,0x25,0xaf,0x30,0x80,0x14,0xfc,0x52,0xf9,0x61,0xf4,0x27,
0x22,0xa2,0x2,0xc5,0x42,0xc2,0x0,0xb2,0xd,0x18,0xf4,0xc4,0x7d,0x38,0x18,0xc0,
0x6f,0xea,0x3c,0x7e,0x1f,0x17,0xd1,0xcf,0x85,0xa,0xe4,0x65,0x15,0xc8,0xb,0xc1,
0x9,0xf0,0x0,0xcd,0x0,0xa0,0x9f,0x8d,0x2c,0xfe,0x7b,0xd0,0x79,0xd8,0xc8,0xc4,
0xe9,0xe7,0x23,0xa0,0x17,0x1e,0x70,0x81,0x7e,0x67,0x77,0x17,0xc5,0xbf,0xab,0xb,
0x62,0xed,0x9f,0xe8,0x67,0xd5,0x9f,0xa1,0xcf,0x64,0xe3,0x6,0x70,0xda,0xc9,0x9,
0x76,0x1b,0x95,0x1f,0x9b,0x55,0x9e,0x1,0xcc,0x80,0x9e,0xfa,0xf,0x19,0x40,0x94,
0x1f,0x8b,0x99,0x7e,0x90,0x1,0x8c,0x42,0xa0,0xdf,0x64,0x20,0x91,0x1,0xf4,0x6c,
0xe1,0x5b,0x8e,0xbe,0x44,0xbf,0x5e,0x23,0xca,0xf,0x19,0x40,0xa,0x7e,0x96,0xfd,
0x9d,0x40,0x9f,0x4b,0x64,0x3f,0xd6,0xbe,0x65,0xf1,0x4f,0x6,0x60,0xf4,0x97,0x19,
0x80,0xd9,0xa0,0x8d,0x35,0x1f,0x5e,0x7e,0x78,0xfc,0x33,0xf4,0x45,0xfc,0x3f,0x46,
0x7f,0x79,0xfc,0xf3,0xf2,0xd3,0xd0,0xd0,0xda,0x40,0x63,0xa9,0x2,0xc9,0xf1,0x5f,
0x6e,0x80,0x5a,0x6a,0x41,0x32,0xfd,0xcc,0x0,0x28,0xfa,0xec,0x38,0x27,0x3f,0xcf,
0x23,0x7f,0x95,0x91,0x71,0xcf,0x3f,0xd0,0xc2,0x8f,0xf5,0xb3,0xd7,0xb8,0xf8,0xf3,
0x5d,0xf6,0x2a,0x23,0xdb,0xe3,0x17,0x1b,0x9d,0x1c,0x7d,0x7a,0x99,0x4b,0x7e,0xbc,
0x45,0xef,0xb2,0xb0,0x63,0xe,0xfc,0x5d,0x16,0x71,0xb4,0x81,0xb8,0xe7,0x2b,0x60,
0x69,0xc7,0x93,0xc,0x0,0x1b,0xb0,0xd,0x1f,0x5a,0xef,0xa,0x3,0x48,0x9d,0x7,
0x79,0x2f,0xaf,0x77,0x45,0xf6,0xf3,0xe0,0x97,0xb2,0xbf,0xac,0xf9,0x64,0x50,0x75,
0xc8,0x0,0xc8,0xfe,0x54,0xa,0x2,0xf1,0xe2,0x87,0x44,0x3f,0xd5,0x9e,0x44,0x2,
0xa9,0x4f,0x93,0x0,0xb2,0x3f,0x26,0x6d,0xf8,0x44,0xa9,0xf7,0x27,0xa3,0xa5,0xf2,
0x23,0x57,0xff,0x78,0x18,0xb5,0x27,0xc,0x3,0x44,0x49,0xd2,0xc,0x10,0xc,0x82,
0xfe,0x8,0x33,0x0,0x8f,0x7f,0x28,0xf8,0x31,0x3,0x50,0xf0,0x13,0xfa,0xbd,0xfe,
0x5e,0x9a,0x7,0x38,0xfd,0x3e,0x64,0x7f,0x8f,0x9b,0xc4,0xc,0xe0,0x71,0x73,0xee,
0xb9,0x8,0x7d,0xa2,0x9f,0xc7,0xbf,0xcb,0xe9,0x76,0xb1,0x49,0x40,0x36,0x0,0xe8,
0x77,0xa,0xf4,0x99,0x1,0x6c,0x5d,0xe,0x12,0x88,0x27,0xe8,0x6d,0x48,0x7d,0x36,
0x32,0xf4,0x61,0x0,0xd6,0x79,0x98,0x1,0x2c,0x24,0x2b,0x64,0x96,0xab,0xbf,0xd1,
0x62,0xe2,0xd9,0x6f,0x78,0x8c,0x7e,0xa3,0x64,0x0,0x3,0x8f,0x7f,0x9d,0x6,0x4e,
0xc0,0xc8,0x83,0x9f,0x7a,0xbf,0xfc,0x43,0xad,0xd2,0xa9,0x25,0x3,0x20,0xfb,0x79,
0xff,0x91,0xe8,0x27,0xf,0x3c,0x56,0x7e,0xda,0x3f,0x89,0xfe,0x36,0x9a,0x4,0x1e,
0x41,0x9f,0xcf,0x0,0x1f,0x33,0x0,0xef,0x3c,0xff,0xc7,0xe6,0xc3,0xc,0x50,0xdf,
0x50,0x5e,0x7e,0x9a,0xb9,0x1,0x80,0x3e,0x53,0x39,0xfd,0xdc,0x0,0x74,0xa2,0x81,
0xb5,0x1d,0x56,0xf7,0xf9,0x32,0x97,0x7d,0x99,0x8b,0x8a,0x3e,0x71,0x2f,0xf2,0x9e,
0x19,0x80,0xce,0x75,0xd2,0xbb,0x2c,0xd3,0xe3,0xf2,0x79,0x66,0x79,0x9f,0x7,0xc7,
0x1c,0xe4,0x53,0xcd,0xe2,0x7d,0x2e,0xec,0xf1,0x97,0xd1,0xff,0xd8,0x56,0xf,0x5f,
0xef,0x4a,0xdb,0x3e,0x52,0xe9,0x67,0x8d,0x7f,0xb0,0x48,0xf3,0x80,0xbc,0xd2,0xed,
0xcf,0xe7,0x21,0x79,0xa7,0x9f,0x7e,0x48,0xbd,0x5f,0x8a,0xff,0x2c,0xd0,0x27,0x3,
0xb0,0xe6,0x23,0xfa,0xf,0x6b,0xfc,0xb0,0x81,0xdc,0x7c,0x44,0xff,0x89,0xc7,0x5,
0xfd,0x28,0x3c,0x40,0x5f,0x52,0x2,0x6,0xa0,0xe0,0x8f,0xf2,0xfe,0x23,0xd0,0x47,
0xf9,0x41,0xfc,0x87,0x42,0xbc,0xf3,0x94,0x46,0x1e,0xff,0x14,0xfc,0xfe,0xa0,0xef,
0xf1,0xec,0xf,0xf8,0x58,0xf6,0x33,0x11,0xfd,0x84,0xbe,0x7,0xe8,0xd3,0xf,0x56,
0x7e,0x7a,0x7b,0x78,0xea,0x33,0x3,0x8,0xf,0x70,0xf4,0x89,0x7e,0xe2,0x9e,0xd3,
0x4f,0xc1,0x2f,0xc5,0x3f,0x66,0x0,0xd9,0x0,0xc4,0xbd,0x5d,0x42,0x1f,0x6,0x40,
0xf6,0xb,0xf4,0xb9,0x1,0xb8,0x38,0xf7,0x82,0x7e,0xa0,0x2f,0x9,0xe8,0xb3,0xe0,
0x67,0x62,0xd9,0xcf,0x52,0x5f,0x8c,0x14,0xfc,0x7a,0x1d,0x44,0x6,0xd0,0x89,0x19,
0x80,0xa1,0x4f,0x1e,0x90,0x1b,0x3f,0x4d,0x2,0x44,0xbf,0x8a,0xd7,0x1e,0xad,0x8a,
0x7e,0x94,0xe2,0x9f,0xa1,0xcf,0xaa,0x7f,0xa9,0xfc,0xa8,0x24,0x3,0xc8,0xb5,0x7,
0xc1,0xcf,0xb2,0x9f,0x8d,0x2c,0xfb,0x29,0xfe,0x25,0xf4,0xcb,0xe3,0xbf,0xad,0xa9,
0xb9,0xdc,0x0,0x6d,0x8d,0x4d,0xbc,0xf4,0x93,0x78,0xf6,0xd7,0xb,0x3d,0x42,0xbf,
0xdc,0xfe,0x3f,0x89,0xfe,0x86,0x9a,0x9a,0xd,0x74,0x9e,0x67,0x69,0xa,0xcb,0x5c,
0x5a,0xe9,0x8a,0xc2,0x23,0xce,0xf1,0x8b,0xaf,0x12,0xb1,0xc8,0xe7,0x9d,0x87,0x17,
0x1e,0x71,0xa4,0x59,0xdc,0x5c,0x32,0xca,0x5f,0x60,0x97,0x4f,0xb6,0xf1,0x7d,0x1e,
0x6e,0x0,0xf1,0x7c,0x97,0x79,0x80,0x37,0xfe,0x47,0xf7,0x3a,0xd9,0x9e,0xf,0xef,
0x3c,0xa5,0x65,0xee,0x23,0xeb,0x5d,0xee,0x1,0x4c,0x2,0xe5,0xeb,0x5d,0x51,0xfa,
0x69,0xab,0x87,0x22,0x1f,0xdc,0x63,0xd,0x80,0x1f,0x12,0xfa,0xd2,0xc,0xc0,0xe6,
0x1,0x84,0x7d,0x26,0xc1,0x7a,0xbf,0x1c,0xfc,0x92,0x1,0x92,0x51,0x32,0x0,0x88,
0x4f,0xc6,0x62,0xbc,0xf0,0xc8,0x22,0xfa,0x19,0xf7,0x52,0xf0,0x53,0xfc,0x33,0x3,
0x88,0xe0,0xf,0xfb,0xfd,0x5c,0x65,0xcd,0x47,0x94,0x1f,0x99,0x7e,0x81,0xbe,0x7,
0xd0,0xb,0x3,0x80,0x7e,0x79,0x6,0x90,0x3a,0x4f,0x59,0xfc,0x77,0xbb,0x3c,0x30,
0x0,0x71,0xcf,0xd,0x40,0xb5,0xc7,0xd,0x3,0x94,0xa1,0x2f,0x66,0x0,0x41,0xbf,
0x88,0x7f,0xd0,0x2f,0x66,0x0,0x64,0xbf,0xd5,0x4c,0x33,0x80,0x95,0x7e,0x94,0xc,
0x60,0x36,0xd9,0xcc,0x26,0xab,0xc9,0xc8,0x45,0x6,0x20,0xf4,0xb9,0xa4,0xfe,0xc3,
0xd,0x40,0xe8,0xb3,0xf2,0xc3,0x52,0x9f,0x49,0x2b,0x67,0x3f,0x33,0x0,0x71,0xcf,
0xd1,0xa7,0x51,0xd0,0x2f,0xb5,0x7f,0x4a,0x7d,0xd6,0x7f,0x38,0xfd,0x1d,0x8f,0xd0,
0x4f,0x6,0x50,0x28,0x20,0x66,0x0,0x56,0xfd,0x19,0xfa,0x8f,0xd1,0x2f,0x7b,0xa0,
0x54,0xfd,0x5,0xfd,0xc2,0x3,0xad,0x44,0xbf,0x64,0x0,0xb9,0xf9,0x94,0x1b,0xa0,
0xae,0x1e,0xc1,0x2f,0xb2,0x9f,0x6f,0xfe,0xc8,0x33,0x40,0xd,0x55,0x7f,0xae,0x86,
0x6a,0x18,0x80,0xbd,0xc0,0x85,0xd4,0xa7,0x7d,0x7d,0xde,0x79,0xa4,0x97,0x77,0xc5,
0x6d,0x6d,0xd2,0x91,0x1e,0x51,0x7b,0xd8,0x6,0xbf,0x14,0xff,0xb4,0xd3,0xcf,0x6b,
0x4f,0x89,0x7b,0x4e,0x3f,0x3b,0xe0,0x20,0x9a,0xcf,0x10,0x2d,0x79,0xc5,0x46,0xe7,
0x0,0xdf,0xe6,0x17,0x1b,0x3e,0x7c,0xab,0x7,0x7f,0x94,0x3d,0x20,0x9c,0xd0,0xc7,
0xb6,0xf9,0x59,0xf0,0xb3,0xec,0xe7,0xfb,0xfd,0x2c,0xf8,0xb3,0xb4,0xe4,0x85,0x7,
0x44,0xe4,0x4b,0xb5,0x87,0x19,0x80,0xed,0x75,0xb2,0xc8,0xe7,0x7b,0x3e,0xe0,0x9e,
0xe2,0x9f,0x37,0x9f,0x18,0x82,0x9f,0x6c,0x90,0xa6,0x1f,0xd4,0x7f,0xb8,0x1,0xb8,
0x38,0xfa,0xe0,0xbe,0x5c,0xc2,0x3,0x94,0xfd,0xf8,0x80,0x14,0xa1,0x4f,0xb5,0x87,
0x71,0x8f,0x1f,0xc8,0x7e,0xa9,0xf4,0xb3,0xea,0xef,0x45,0xef,0xf7,0xc9,0xc1,0x4f,
0xd9,0xcf,0xd0,0xf7,0xf7,0xf6,0x72,0xee,0x99,0x3c,0xbc,0xff,0xf4,0xba,0x21,0x96,
0xfd,0xbc,0xfc,0x0,0x7d,0x1e,0xff,0xae,0x2e,0x6e,0x0,0x1a,0x9,0x7d,0x67,0xb7,
0xd3,0x1,0xb9,0x48,0x28,0x3f,0xe,0x1e,0xfc,0x2e,0x87,0x1d,0xa9,0xcf,0x44,0xe8,
0xcb,0xf4,0x33,0xf4,0xcd,0x76,0xb,0xd0,0xe7,0x7a,0x24,0xfe,0x2d,0x2,0x7d,0xa3,
0x85,0xa1,0xcf,0x47,0x4,0xbf,0x59,0xca,0x7e,0xd0,0x4f,0x6,0xd0,0x69,0xb9,0xc,
0x5a,0x8d,0x41,0xcb,0x47,0x12,0xeb,0xfd,0x6a,0x8c,0xa5,0xec,0x97,0xc,0xa0,0xe9,
0x44,0xf6,0xb3,0xf8,0x57,0x72,0xf4,0xd9,0x48,0xf4,0x33,0xb5,0xb7,0xcb,0x92,0xc,
0xc0,0xd6,0xbe,0x9f,0x40,0xbf,0x14,0xff,0xcd,0x2d,0xed,0xcd,0x58,0xfb,0x96,0x96,
0xbf,0x22,0xfe,0x1b,0x9b,0x58,0xf6,0x33,0x35,0xf0,0xec,0x97,0xc4,0xc,0x50,0x8a,
0x7f,0xd9,0x0,0x12,0xfa,0xa2,0x2,0x3d,0x66,0x0,0xda,0xde,0x11,0x1f,0x21,0x95,
0xe,0x30,0xf3,0xed,0x1d,0x7e,0x67,0x9,0xcf,0x7e,0xb1,0xc7,0xcf,0x4f,0xf5,0x88,
0x4d,0x1e,0xfe,0x78,0xab,0x74,0xa4,0x59,0xac,0x74,0xf9,0x5,0x3e,0xa5,0x83,0x3d,
0xa5,0xba,0x2f,0x1f,0xf2,0x61,0xfb,0x3c,0xb2,0xc4,0x86,0x8f,0x34,0x9,0xc,0x16,
0xa8,0xf9,0xc,0xf4,0x51,0xe4,0x97,0xc,0xc0,0x1b,0x3f,0x71,0x2f,0x19,0x40,0x6c,
0xf3,0xcb,0xb5,0x87,0x76,0x3c,0xa1,0x6c,0x52,0xb4,0x7f,0x9e,0xfa,0x8c,0x7e,0x1e,
0xff,0xc,0x7d,0x8c,0x31,0x56,0xfd,0xcb,0xd0,0x97,0xc,0x10,0x5,0xfa,0xdc,0x3,
0xb1,0x90,0x14,0xff,0xc1,0x60,0x34,0x18,0x8a,0x4a,0xf4,0x47,0x3,0x52,0xf5,0xe7,
0xd9,0xef,0x83,0x7c,0x5c,0x40,0x9f,0xc,0x40,0x1e,0x40,0xf9,0xf1,0x6,0x7a,0xd1,
0x7c,0xc0,0x3d,0x37,0x0,0x9b,0x1,0x7a,0x50,0xfd,0x7b,0x38,0xf7,0xdc,0x0,0x5e,
0xf6,0xdb,0xd3,0xcd,0xe8,0xa7,0xe6,0x23,0xe8,0x17,0x33,0x0,0xa3,0x9f,0x3c,0x0,
0x3,0xf0,0x49,0x80,0xd1,0xf,0xf4,0x39,0xfd,0x5d,0xcc,0x0,0xe,0x1b,0x33,0x80,
0x8d,0xf5,0x1f,0x4a,0x7d,0x12,0xd0,0x17,0x1e,0x40,0xea,0x93,0x8c,0x3c,0xfe,0x41,
0x3c,0xf3,0x0,0x33,0x0,0x71,0x4f,0xf1,0xcf,0x9a,0xf,0x13,0xa3,0x9f,0x1b,0x0,
0xa9,0x2f,0x19,0xa0,0x8c,0x7e,0x75,0x29,0xfe,0xc5,0x24,0xc0,0xe3,0x9f,0xd1,0xcf,
0x46,0x8a,0xff,0xb2,0xec,0xff,0x64,0xfa,0x85,0x7,0x38,0xfd,0xad,0x68,0x3e,0x9f,
0x54,0x7e,0xca,0xe9,0xa7,0xf8,0x97,0xfa,0x8f,0x4c,0x3f,0x6b,0x3e,0x8f,0x95,0x1f,
0x61,0x0,0x29,0xfe,0x3f,0xde,0xfe,0x69,0xd,0x50,0x16,0xff,0x34,0x3,0x50,0xf6,
0xd3,0xf7,0x77,0xd9,0x19,0x66,0xf6,0x60,0x4b,0x3a,0xc9,0x2c,0xed,0xf3,0xf0,0x95,
0x2e,0xbb,0xb0,0x44,0x5a,0xec,0x96,0xba,0x3e,0xc,0x20,0xb2,0x9f,0xef,0xf3,0x3c,
0xba,0xd5,0x23,0xbf,0xc8,0x22,0x9a,0xf,0x43,0x9f,0xb6,0x7d,0x24,0x3,0xf0,0xe0,
0x7,0xf4,0x24,0x51,0xfa,0x91,0xfd,0x7d,0x30,0x80,0x28,0xfd,0x72,0xea,0x4b,0x27,
0x7c,0xf8,0xc,0x80,0xda,0xc3,0x85,0xba,0xcf,0x25,0x2f,0x7c,0x19,0xf1,0x8f,0x88,
0x97,0x1f,0xcc,0x0,0x84,0x3e,0x8b,0x7f,0x6,0x7d,0x4c,0x14,0x9e,0x70,0x24,0x19,
0x1,0xfd,0x40,0x5f,0xcc,0x0,0x3c,0xf8,0xa5,0xf8,0xe7,0xed,0x1f,0x33,0x0,0x4d,
0x2,0x14,0xff,0x7c,0x14,0xf4,0x93,0x7,0x82,0x5e,0x12,0x71,0x2f,0xa1,0xf,0xfa,
0x11,0xff,0x5c,0x14,0xfc,0x3d,0x24,0xca,0x7e,0x70,0x5f,0x36,0x3,0x30,0xfa,0xc9,
0x0,0x22,0xf8,0xbb,0x9c,0x3c,0xf8,0x19,0xf7,0x82,0x7e,0xca,0x7e,0x7,0x9b,0x1,
0x90,0xfd,0x76,0x88,0xd0,0xe7,0x72,0xda,0x98,0x1,0x98,0x40,0xbf,0xd3,0x4a,0x23,
0xd0,0xe7,0x2,0xf4,0x5c,0xa5,0xe6,0x63,0x64,0x1e,0xe0,0xd9,0x6f,0x30,0x58,0xc,
0x6,0x93,0x5e,0x6f,0xd6,0xb,0xf4,0x8d,0x3a,0xa0,0x2f,0xcd,0x0,0x52,0xf0,0xeb,
0x35,0xc2,0x0,0x3a,0xb5,0x5a,0xf,0x3,0x90,0xa8,0xf9,0x48,0xe5,0x47,0xc5,0xe9,
0x27,0xa1,0xf9,0x10,0xfd,0x4a,0x4,0x3f,0x49,0xa9,0x94,0xb2,0x5f,0xcc,0x0,0x9d,
0xa,0xea,0x3f,0x8,0xfe,0xce,0xb6,0xf2,0xec,0x2f,0xa7,0xbf,0xac,0xfd,0xcb,0xd9,
0x2f,0xe8,0x67,0x6,0xf8,0x58,0xfc,0x7f,0x82,0x1,0x4a,0xe5,0xa7,0x5e,0xae,0x3d,
0xa5,0xe5,0xef,0xa3,0xf4,0x93,0x1,0x50,0x78,0xd8,0xd7,0xa7,0xe9,0x24,0xf,0x7f,
0xb6,0xc5,0xe,0xf1,0x8b,0x8b,0xa,0xd9,0xa9,0x1e,0x7a,0xb8,0xcb,0xc5,0x6f,0xec,
0xe1,0x2b,0x5d,0x6c,0x71,0xb2,0x4d,0x9e,0xb2,0xfe,0x23,0x9d,0xe8,0x2c,0x3f,0xd7,
0x29,0xe,0xf6,0xf0,0xbd,0xce,0x47,0xd1,0x27,0x1b,0x14,0x49,0x58,0xf2,0xd2,0x76,
0x27,0xb8,0xc7,0x1,0x87,0x47,0x6a,0x4f,0x5e,0x74,0x1e,0x5a,0xf2,0xe6,0x18,0xf1,
0x84,0x3e,0x7f,0xb6,0x95,0x4f,0x73,0x9,0xf4,0x73,0xa9,0x74,0x4e,0xc4,0x7f,0x2a,
0x2b,0xc,0x90,0xc0,0xf,0x16,0xfc,0xa5,0xce,0xc3,0x9a,0x4f,0x14,0xc4,0x27,0x48,
0xbc,0xf4,0x47,0x13,0xe1,0x8,0xc4,0xb3,0x3f,0x5e,0x8a,0x7f,0xca,0x7e,0xa4,0x3e,
0x9b,0x1,0xca,0xc,0xc0,0xb2,0x5f,0x9e,0x1,0x44,0xf0,0x33,0xfa,0xf1,0x9b,0x67,
0x3f,0x37,0x0,0x7e,0x73,0xf4,0xe5,0x19,0x80,0xa5,0xbe,0xd4,0x7f,0x78,0xf6,0xbb,
0x48,0x3d,0x24,0xd4,0x1e,0x97,0xbb,0x8b,0xc,0x20,0xfa,0xf,0x2b,0x3f,0xd4,0x7f,
0x28,0xf5,0x1d,0x8c,0x7e,0x61,0x0,0xa0,0xcf,0xc,0x20,0xd3,0xcf,0xd1,0x67,0x32,
0xb3,0xf2,0x43,0xe8,0x8b,0xd1,0x6a,0x32,0x59,0x8c,0x52,0xfb,0x67,0x1e,0xa0,0xec,
0xc7,0xc,0x20,0xe8,0x87,0x1,0xb8,0xc8,0x0,0x46,0x42,0xbf,0x4c,0x1a,0x34,0x1f,
0x2a,0x3f,0xac,0xf6,0x48,0x6,0xa0,0xf5,0x2e,0xd0,0x27,0xfa,0xb9,0xb8,0x1,0x58,
0xfc,0xb,0x3,0xb0,0x2d,0xff,0x72,0xf4,0x41,0xbf,0x30,0x80,0x68,0x3e,0xad,0x14,
0xff,0x6c,0x6,0x60,0x6b,0xdf,0x16,0xd0,0x5f,0xea,0x3f,0xac,0xfc,0xb4,0x28,0x9a,
0x9a,0xb9,0x68,0x6,0xf8,0x24,0xfa,0xc9,0x0,0xa5,0xea,0xdf,0xc0,0x7b,0xbf,0xac,
0x72,0x3,0x34,0x96,0x65,0x3f,0x6f,0xff,0x5c,0x1b,0xf8,0x1,0x66,0xbe,0xc0,0xe5,
0xf7,0xb4,0x3d,0xfa,0xe2,0x22,0x65,0x3f,0xdf,0xe2,0xe4,0x9b,0x3c,0xa5,0xc6,0x2f,
0x17,0xfd,0xb2,0xc3,0xcc,0xe5,0xfb,0x9b,0xe2,0x80,0x3,0x8e,0x39,0xb0,0xc6,0x2f,
0xb6,0xfc,0x79,0xf6,0xb3,0x4d,0x1e,0x39,0xfb,0x7,0xa,0x5,0x1e,0xf9,0x4c,0x2c,
0xfb,0x19,0xf1,0x65,0x9d,0x87,0x7e,0x3,0x77,0xee,0x1,0x39,0xf5,0x3f,0xb6,0xe3,
0x99,0xa6,0xec,0x8f,0x53,0xe3,0x67,0x9d,0x27,0x81,0xdf,0xbc,0xf6,0x94,0x6d,0xfb,
0xf0,0xea,0x1f,0x13,0x1e,0x60,0xc1,0x4f,0xf4,0x3,0x7d,0x18,0x20,0xc8,0x82,0x9f,
0x6a,0x8f,0x10,0x52,0x5f,0xae,0x40,0xd2,0xc2,0x37,0xc0,0xca,0x8f,0x3f,0xe4,0x65,
0xe5,0x87,0xb8,0xa7,0x31,0xd0,0xeb,0xf5,0x7b,0x7a,0x3,0x1e,0xa9,0xfa,0xf3,0xb5,
0x2f,0x2f,0x3f,0x6e,0x36,0x3,0x88,0xda,0xe3,0xee,0xed,0xee,0x86,0x78,0xfc,0x3,
0x7a,0x32,0x40,0x17,0xd1,0x2f,0x56,0xc0,0x2c,0xfe,0x19,0xfa,0xec,0x7,0xe2,0x1f,
0xb2,0x53,0xf3,0x11,0x6,0xb0,0xd9,0x58,0xd8,0x5b,0xc5,0x88,0xf8,0x97,0xd0,0x67,
0xc1,0x6f,0x26,0xf,0x8,0xfa,0x11,0xff,0x82,0x7e,0x78,0x80,0x89,0xcd,0x0,0x30,
0x0,0xa3,0x5f,0xf6,0x0,0x8f,0x7f,0xaa,0xfe,0x5a,0x92,0x1,0xc1,0xcf,0x24,0xe8,
0x17,0xf1,0xcf,0xb2,0x5f,0x45,0x22,0xee,0xd9,0x28,0xb5,0x7f,0xc9,0x0,0x1d,0x64,
0x0,0x55,0x3b,0x47,0x9f,0x46,0xc6,0xbd,0xa0,0xff,0xb1,0xf2,0xf3,0x31,0xfa,0x99,
0x1,0x44,0xfb,0x2f,0x43,0x5f,0xa2,0x9f,0x9c,0x20,0x55,0x7f,0xd1,0x7f,0xea,0xff,
0xb7,0x6,0x68,0xaa,0xfd,0xd8,0xc,0x50,0x8a,0xff,0x32,0x3,0xc8,0x3b,0x3c,0xe5,
0xc7,0x19,0xe4,0x57,0xb7,0x38,0xfd,0x8f,0xbd,0xbc,0x22,0x2f,0x79,0xe9,0x11,0xaf,
0x94,0xfa,0xf2,0xf,0xb1,0xd5,0xc3,0x4f,0xb6,0x31,0xf4,0xc5,0x92,0x97,0x3f,0xdf,
0x95,0xd0,0x67,0xe7,0x1a,0x88,0x7b,0x2e,0xd4,0x1e,0xce,0x3d,0xad,0x77,0x73,0xd4,
0xfe,0xcb,0xe9,0x97,0xb,0xf,0xfd,0x40,0xea,0xa7,0x58,0xed,0x11,0x91,0x2f,0x7,
0x3f,0x5b,0xec,0x32,0xe8,0xf9,0xf,0x56,0xf7,0x69,0xc9,0x2b,0x46,0x6,0x3d,0x17,
0x8b,0x7f,0x26,0xd1,0x7c,0x22,0xac,0xf7,0x73,0x3,0xd0,0x24,0x40,0x6,0x40,0xf6,
0x23,0xf8,0xfd,0x58,0xf8,0x52,0xfc,0x87,0xfd,0x68,0x3e,0x12,0xfa,0x52,0xed,0x21,
0xf4,0x7b,0x9,0x7d,0x84,0x3d,0x1f,0xfd,0x3d,0xac,0xf6,0xf4,0x94,0xc4,0x6a,0xf,
0x6b,0xff,0xe0,0x9e,0x46,0xfa,0x41,0xf4,0xbb,0x5c,0xf8,0xd1,0xd3,0x5,0xfa,0xd9,
0xc,0x40,0xd9,0xcf,0x16,0xbe,0x8c,0x7b,0x40,0x2f,0xc5,0xff,0x23,0xe5,0x87,0xb2,
0x1f,0x6,0x40,0xf9,0x61,0x85,0x87,0x3c,0xc0,0xe9,0x67,0x2a,0xd1,0x6f,0x22,0xf4,
0xb9,0x28,0xfe,0x5,0xfd,0x46,0xca,0xfe,0x47,0xd1,0x37,0xa1,0xf6,0x48,0xe2,0xf4,
0xcb,0x1e,0x20,0xfa,0x19,0xfa,0x54,0x7e,0x54,0x5c,0x8c,0x7e,0x6e,0x0,0x9e,0xfd,
0xac,0xf9,0x50,0xfc,0x13,0xfa,0x2c,0xfe,0x89,0x7b,0x49,0x25,0xfa,0xdb,0x59,0xf3,
0x61,0x2a,0xcf,0xfe,0x16,0xca,0x7e,0x29,0xfe,0x5b,0x25,0xfa,0x3f,0x96,0xfd,0x92,
0x7,0xca,0xd,0xd0,0x52,0x46,0x3f,0xb5,0xff,0x47,0xb2,0x1f,0xf4,0x97,0xc,0xd0,
0x58,0x53,0x5e,0xfd,0x41,0x7f,0x99,0x1,0x1e,0x7b,0x5d,0x5d,0xba,0x9f,0x50,0x4,
0x3f,0xcb,0x7e,0xf6,0x12,0xe3,0x18,0x89,0x3d,0xd6,0x65,0x57,0x56,0x49,0xf,0xb6,
0xa4,0x77,0xb8,0xb0,0xbf,0x29,0x4e,0x37,0x94,0x9d,0x6c,0xa3,0xc3,0x6d,0x83,0xc8,
0x7b,0xf1,0x90,0x8b,0xa5,0x3e,0xeb,0xfa,0xe2,0x60,0x8f,0x4c,0x3f,0x82,0x5f,0x94,
0x7e,0x69,0xdb,0xe7,0xd1,0xf8,0x47,0xea,0x53,0xef,0xc7,0xc,0xc0,0x6a,0xf,0xea,
0xfe,0x23,0xf4,0x27,0x69,0xe7,0x87,0x71,0x2f,0x3c,0x20,0x22,0x3f,0x4a,0x8d,0x9f,
0xc4,0x22,0x9f,0x46,0xd0,0x8f,0xea,0xcf,0x22,0x5f,0xd4,0x1e,0x86,0x7b,0x3c,0x24,
0x1b,0x80,0x3c,0x0,0xee,0xc9,0x9,0xc1,0xb0,0x68,0x3e,0xf0,0x0,0xa3,0x1f,0xbd,
0x9f,0xaa,0x3f,0x6b,0xfc,0x42,0xbd,0x5e,0x66,0x0,0x41,0x3f,0x8b,0x7f,0xf2,0x0,
0x33,0x0,0x4f,0x7d,0x2e,0xce,0xbd,0x2c,0xd0,0x2f,0xa1,0x8f,0xec,0x7,0xf7,0x4e,
0x2e,0x27,0xc6,0x6e,0x7,0xa5,0x3e,0x46,0x16,0xfc,0xd4,0x7c,0xa8,0xff,0x30,0xee,
0xb9,0x9c,0x56,0x9a,0x1,0x78,0xe3,0xe7,0xf3,0x0,0x22,0x9f,0xc4,0xfb,0xf,0x64,
0x32,0x41,0x44,0x3f,0xe3,0x9e,0x46,0xd6,0xf8,0x5,0xfd,0xcc,0x3,0x26,0x1d,0x97,
0xa0,0xbf,0x54,0x7e,0x34,0x1a,0x79,0x6,0xd0,0xab,0x61,0x0,0xf2,0x0,0x95,0x9f,
0x12,0xfa,0x44,0x3f,0xfe,0xa8,0x51,0x72,0xf,0xd0,0xf,0x4d,0x87,0x12,0x92,0x3d,
0x20,0x66,0x0,0x45,0xbb,0x4a,0xce,0xfe,0x36,0x5e,0xfd,0x1f,0x35,0xc0,0xc7,0xe8,
0x97,0x9a,0xcf,0x27,0x94,0x1f,0xb1,0xf9,0xd3,0x20,0x36,0x7f,0x5a,0x1b,0x9a,0xca,
0xd,0xd0,0xfc,0xb8,0x1,0xca,0xf7,0x3d,0x41,0xff,0x63,0x6,0x10,0xfd,0xa7,0xa1,
0xaa,0x66,0x83,0x1c,0xfc,0xd4,0xf5,0xe9,0x75,0x75,0xbe,0xde,0xe5,0xaf,0xae,0x53,
0xe7,0x61,0x2f,0xad,0x3f,0x7e,0xa6,0x4d,0x3e,0xd5,0x83,0xbc,0xe7,0x82,0x1,0x48,
0x8f,0xa6,0x3e,0xed,0x6f,0x4a,0x87,0x3a,0x25,0xf4,0xb1,0xc9,0xc3,0xcf,0xb4,0x95,
0x82,0x5f,0xec,0x75,0xe6,0xd8,0x8e,0xe7,0x23,0xfb,0x3c,0x62,0xb1,0x5b,0x40,0xf5,
0x17,0x8d,0x5f,0xc4,0x3f,0xd5,0x7d,0x49,0x28,0xfa,0xf8,0x2d,0x16,0xbe,0xbc,0xf6,
0x8,0xee,0x9,0x7d,0x52,0xc,0xab,0xde,0x52,0xfc,0xf3,0x19,0x80,0x35,0x9f,0x28,
0xa3,0x9f,0x5,0x3f,0x71,0xcf,0x47,0xb6,0xf3,0xc3,0xb3,0xdf,0x4f,0x23,0x43,0x5f,
0x18,0x80,0x37,0x1f,0x99,0x7e,0xa4,0x3e,0x2d,0x7f,0xe1,0x1,0x9,0x7d,0x9a,0x1,
0x98,0x58,0xed,0xa1,0x51,0x16,0xcf,0x7e,0x8a,0x7f,0x97,0x6c,0x0,0xd0,0xcf,0xfa,
0xf,0x33,0x80,0xdc,0x79,0x98,0x7,0x9c,0xa8,0x3d,0x5d,0x36,0x3b,0x8d,0xf0,0x0,
0x13,0xcf,0x7e,0xd9,0x0,0xf8,0x41,0x1e,0x20,0xee,0x69,0x64,0xb5,0x87,0xd1,0xcf,
0x46,0x61,0x0,0x3,0xe8,0x67,0xe5,0x87,0x79,0x80,0xdb,0x40,0x94,0x7e,0x66,0x0,
0x5a,0xf8,0xb2,0xea,0xff,0x78,0xfc,0xab,0x59,0x5,0xe2,0x6,0x50,0xf1,0x49,0x80,
0x97,0x1f,0x21,0xe2,0x5e,0xcc,0x0,0x9d,0x1c,0x7d,0x9a,0x7,0x44,0xf6,0x13,0xfa,
0x12,0xfd,0xd4,0x7f,0x4,0xfa,0x52,0xfc,0xb3,0x9d,0x9f,0xb6,0x52,0xf6,0x53,0xed,
0x91,0xe2,0xbf,0x9,0xf4,0xb,0x3,0xb4,0x35,0xa2,0xf3,0x88,0xf6,0x2f,0x19,0x80,
0xed,0xfc,0x50,0xf6,0x97,0xca,0xf,0x8b,0xff,0xd2,0xc,0xf0,0x48,0xf9,0x21,0xf4,
0x4b,0x6,0x28,0xcf,0x7e,0x5a,0x3,0x90,0x1,0xd8,0x1a,0x97,0x2e,0x6b,0x90,0xce,
0xf3,0x88,0x65,0x6e,0x39,0xf4,0xd2,0xb3,0x2d,0xde,0x79,0x48,0xc3,0x74,0x98,0x99,
0x9d,0xe3,0x17,0xf4,0xf,0xf,0xca,0xa7,0xf9,0x7,0x86,0xfa,0xb1,0xcf,0xc3,0x76,
0xfa,0x65,0xfa,0x59,0xf6,0xa3,0xea,0xd0,0xc8,0xc4,0x9e,0x70,0x89,0xde,0x5f,0xcc,
0xb1,0xf2,0x43,0xe8,0x8b,0x63,0xe,0x6c,0xb1,0xcb,0xc5,0xb7,0x7a,0x24,0xc9,0x2b,
0xdd,0x44,0x12,0xdc,0x63,0xd3,0x93,0xc4,0x97,0xbc,0xa2,0xeb,0xb,0x3,0xe0,0x8f,
0x8c,0x7e,0x16,0xff,0x11,0xd6,0xf8,0x41,0x3c,0x43,0x9f,0xff,0x46,0xea,0x33,0xf4,
0xa5,0xe6,0xc3,0x22,0x1f,0xe8,0x4b,0xeb,0x5d,0x6e,0x0,0x96,0xfd,0x3e,0xb9,0xf4,
0x3f,0x4e,0x3f,0xb8,0x67,0xcd,0x47,0x2c,0x0,0x4a,0xcd,0x7,0xdc,0x77,0xf7,0xf8,
0x68,0xc4,0xce,0x4f,0xf,0xcf,0x7e,0xf6,0xa3,0xdb,0xd3,0xe5,0x22,0x51,0xe7,0xa1,
0x1f,0x1c,0x7d,0x8c,0x20,0x1e,0x33,0x80,0x14,0xff,0x6c,0x6,0xb0,0xb3,0x19,0xc0,
0x46,0xdc,0xf3,0x91,0x5,0xbf,0xcd,0x69,0x41,0xed,0x21,0x89,0xfe,0x63,0x26,0x3,
0x88,0x49,0x80,0xd0,0x37,0xcb,0xe5,0x7,0xd9,0x6f,0x25,0x3,0x80,0x7b,0xb2,0x81,
0x59,0xcf,0xb2,0x9f,0xaf,0x7d,0xe5,0xf8,0xd7,0x82,0x7e,0xd9,0x0,0x3a,0x83,0x46,
0x6b,0x0,0xfa,0x3c,0xfb,0xc1,0x3d,0xa1,0xaf,0x29,0x95,0x1f,0xb1,0xf0,0x25,0xf,
0x90,0x1,0x50,0x7e,0x4a,0xc1,0x2f,0xd3,0xcf,0x16,0x0,0x72,0xf9,0x91,0xb2,0xbf,
0x34,0x3,0x30,0x1b,0x7c,0xbc,0xf9,0xc0,0x3,0x12,0xfa,0xe5,0x6,0x90,0x36,0x7f,
0x4a,0xd9,0xff,0xb8,0x1,0x3e,0x46,0xff,0x63,0xe5,0xa7,0x14,0xff,0x8d,0x65,0xe5,
0x7,0xf4,0xd7,0xc3,0x0,0xf2,0x9,0x36,0xb6,0xa9,0x3f,0x4a,0x3d,0x47,0xdc,0xd2,
0xc3,0xef,0xea,0x61,0x9d,0x47,0x7a,0x7f,0x85,0xa3,0x2f,0xe8,0x67,0x79,0xf,0xd1,
0x43,0x2e,0x7a,0xbc,0x25,0x1a,0xbf,0xa0,0x1f,0x1e,0xc0,0xe,0x8f,0xbc,0xe4,0x2d,
0x50,0xfb,0xe7,0x5b,0x3d,0x88,0xf9,0x81,0x3e,0xbe,0xea,0x25,0xf1,0xc8,0xa7,0x91,
0xf5,0x1c,0x79,0x97,0x93,0x2d,0x79,0x45,0xf0,0xb3,0xf8,0xc7,0x6e,0xf,0xdb,0xe6,
0x4f,0x52,0xe9,0x27,0xfa,0x9,0x7a,0x69,0xbb,0x33,0x8e,0xdd,0x9e,0x52,0xe9,0x4f,
0xc7,0xf8,0xa6,0x27,0xa7,0x1f,0xc4,0x8b,0xf8,0x47,0xe4,0x3f,0xda,0x7f,0xd8,0xda,
0x97,0xcd,0x0,0xd4,0xfb,0x3,0x65,0xbd,0x5f,0xd0,0xcf,0xaa,0xbf,0xcf,0x8f,0x98,
0xa7,0x25,0x2f,0xcf,0xfe,0x5e,0x52,0xc0,0x23,0x52,0x9f,0xff,0xa0,0x19,0x80,0x37,
0x1f,0x77,0xf,0xfd,0x60,0x6,0x20,0xe8,0x25,0x91,0x7,0x5c,0xdd,0x5c,0xa5,0xfe,
0x23,0x9a,0xf,0x8b,0x7f,0x96,0xfa,0xdc,0x0,0x1c,0x7d,0x89,0x7e,0x9a,0x7,0x58,
0xea,0xb,0x71,0xfa,0xb9,0x24,0xf4,0xc9,0x3,0x40,0x9f,0xcb,0x6a,0x44,0xf9,0xa1,
0xfe,0xc3,0xca,0xf,0x97,0xd4,0x7f,0xc8,0x3,0xbc,0x2,0x49,0xe5,0x47,0x2b,0x66,
0x0,0x42,0x5f,0x12,0xf,0x7e,0x6e,0x0,0xb9,0xfd,0x97,0xb6,0x7d,0x8,0x7d,0x41,
0x7f,0x79,0xf3,0x29,0xb5,0x7f,0x16,0xff,0x62,0x12,0x60,0xb5,0xe7,0xb1,0xfe,0xc3,
0xe2,0x9f,0x3c,0x40,0x3b,0x3f,0x52,0xf6,0xd3,0x2,0x40,0xc4,0x7f,0x8b,0x42,0x64,
0xbf,0xb4,0xf9,0x43,0xf4,0xb3,0x47,0x60,0xb4,0xf7,0xcf,0xcb,0x4f,0xd9,0xf2,0xb7,
0x8e,0x3d,0x2,0x63,0x93,0x0,0x8b,0xff,0xd2,0x2,0xe0,0x63,0xf1,0xcf,0xdb,0x3f,
0x1b,0x85,0x1,0xa4,0xe7,0x59,0x93,0xe3,0x6c,0x77,0x9f,0x75,0x7d,0xbe,0xbf,0x59,
0x3a,0xcb,0x50,0xd6,0xf8,0x45,0xea,0xcb,0xa7,0xd9,0xe8,0xc6,0x9e,0x7e,0xe1,0x81,
0x47,0x9f,0x70,0xd1,0x7a,0x97,0x6f,0xf0,0x33,0xc9,0xeb,0x5d,0x69,0xc3,0x87,0xc7,
0x3f,0x37,0x40,0xae,0xc8,0x84,0x1f,0x10,0x75,0x7d,0xbe,0xe3,0xc9,0xd6,0xbb,0x9c,
0x7b,0x5e,0xfa,0x79,0xe4,0xc3,0x3,0xd9,0x84,0x1c,0xfc,0x64,0x3,0xda,0xee,0x8c,
0xc1,0x0,0x72,0xf9,0x21,0xe2,0x11,0xff,0xa5,0x25,0xaf,0xb4,0xd8,0x95,0xaa,0xbf,
0x14,0xff,0x6c,0xb7,0x47,0x34,0x1f,0x32,0x40,0x88,0xd7,0x1e,0xde,0x7f,0x68,0xd5,
0xeb,0xf5,0xf1,0x19,0xa0,0xb4,0x0,0x20,0x3,0x0,0x7a,0x4a,0x7d,0x72,0x2,0x36,
0x7f,0x7a,0x60,0x0,0x1a,0xc5,0xc,0x80,0xf2,0x23,0x35,0x1f,0xd1,0xfb,0x5d,0x34,
0x3,0xf0,0xe6,0xc3,0x67,0x0,0xb1,0xf6,0x95,0xd,0x80,0xf8,0x67,0x2a,0x19,0x80,
0x97,0x1f,0x4,0xbf,0xd5,0xc6,0x25,0xc,0xc0,0xd1,0x67,0xa9,0xcf,0xca,0xf,0x6b,
0xff,0x52,0xf9,0x1,0xf7,0xb2,0x1,0x64,0xf4,0xe5,0xec,0x67,0xcb,0x5f,0xb1,0x8,
0x66,0xb5,0x47,0x52,0x19,0xfa,0x22,0xfb,0x45,0xfb,0xe7,0xd9,0xcf,0xd4,0xa9,0x82,
0x78,0xf0,0x8b,0x16,0x24,0x6c,0x80,0xfe,0x83,0x8d,0x7f,0x8a,0x7f,0x61,0x0,0x42,
0xbf,0x83,0x76,0x7e,0xda,0xb8,0x88,0x7e,0x32,0x40,0x2b,0xb,0xfe,0x52,0xf9,0x91,
0x26,0x1,0xb6,0xed,0x43,0xcf,0x7d,0x3f,0xa1,0xfc,0x30,0x3,0x30,0xfa,0x25,0x3d,
0x5e,0x81,0x18,0xf7,0xa2,0xff,0x3c,0x46,0x7f,0xf9,0x63,0x2f,0x96,0xfd,0xb2,0x88,
0x7e,0x66,0x80,0xea,0xd,0xf2,0x32,0x57,0x3a,0xbc,0x29,0x52,0x5f,0xce,0x7e,0x9e,
0xfa,0xe3,0x23,0xc3,0x18,0x47,0x49,0x22,0xf8,0xe5,0xcd,0x4d,0x76,0x96,0xb3,0xfc,
0xd9,0x16,0x3f,0xde,0xc3,0x5e,0xe6,0xe2,0x85,0x47,0xe4,0x3d,0x3d,0xdf,0x95,0xb7,
0xf9,0x39,0xfa,0xbc,0xf4,0xf7,0xe7,0xb0,0xe7,0xc3,0xe8,0xc7,0x24,0xc0,0xb8,0x2f,
0x6f,0xfc,0xc0,0x5d,0xd0,0x9f,0xa0,0xde,0x2f,0x1a,0x3f,0xb2,0x9f,0x24,0xa,0xf,
0xad,0x7a,0x29,0xef,0xb9,0xf8,0x7a,0x57,0x96,0xa8,0xfb,0x52,0xed,0x29,0x2b,0x3f,
0xe8,0x3f,0xbc,0xf9,0x48,0xd9,0xcf,0xaa,0x3f,0x49,0x82,0x9e,0xe2,0x1f,0xf4,0xf3,
0x19,0x40,0x64,0x3f,0x5f,0xf8,0x52,0xf0,0x73,0x11,0xf7,0x2c,0xf5,0xb9,0xa4,0xea,
0xcf,0xb2,0x5f,0x8e,0x7c,0x61,0x0,0x2a,0x3f,0xdd,0x3d,0x4e,0x66,0x80,0x32,0xfa,
0x45,0xf6,0xdb,0x1d,0xdd,0x4c,0x2e,0x46,0x3f,0x8d,0x1f,0x33,0xc0,0xa3,0xd9,0xcf,
0x56,0xbd,0x94,0xfa,0xc4,0xbd,0xd,0xf4,0x8b,0xe0,0xa7,0x19,0x40,0x32,0x0,0x8b,
0x7f,0x11,0xfc,0xe2,0x7,0x5f,0x1,0x93,0x1,0x34,0x5a,0x2e,0x96,0xfd,0x6c,0xeb,
0xf3,0xe3,0xe8,0xab,0xd4,0x20,0xbe,0xdc,0x0,0xe4,0x1,0xbe,0xf0,0x55,0xb2,0xf6,
0xf,0xf4,0x79,0x11,0x7a,0x74,0xf3,0x87,0x5a,0x90,0x9c,0xfd,0x44,0xbf,0x42,0xa6,
0x9f,0x57,0x20,0x96,0xfd,0x9f,0x5c,0xfd,0x61,0x6,0xb9,0xfd,0x97,0x65,0x3f,0x7b,
0xfa,0xfb,0x48,0xfc,0x37,0x96,0xf7,0x1f,0x36,0x3,0x3c,0xb6,0xfc,0x95,0x8f,0xfd,
0x3c,0xb2,0xf9,0x23,0x19,0x0,0x15,0x48,0x3a,0xce,0xc0,0x82,0x9f,0xda,0x4e,0x79,
0xed,0x61,0xbb,0x3d,0x43,0x62,0xa5,0xcb,0x7e,0xb0,0x4d,0x1e,0x76,0xac,0xad,0xb4,
0xde,0x45,0xe9,0x17,0xf,0xb9,0xe4,0x8d,0x4e,0xe9,0xc1,0x16,0x2d,0x79,0x79,0xfc,
0x83,0x78,0xf1,0x7c,0x97,0xd5,0x7d,0x6,0x3d,0xa,0x8f,0xa8,0xfe,0x14,0xfc,0x12,
0xfa,0x6c,0x6,0xa0,0x5d,0x7f,0x64,0x3f,0xb5,0x7f,0xca,0x7e,0x5e,0x7b,0x52,0x39,
0xa,0x7e,0xb2,0x81,0x4c,0x3f,0xf3,0x0,0xc5,0x7f,0x86,0xcd,0x0,0x44,0x7f,0x44,
0x36,0x0,0xa,0xf,0x6f,0xfc,0x24,0x56,0xfa,0xd9,0x96,0x3f,0x71,0xcf,0x45,0x91,
0xcf,0x85,0xdf,0x1c,0x7d,0x31,0x3,0x60,0xd5,0x4b,0xeb,0x5d,0xa1,0x30,0xfb,0xc1,
0x9b,0xf,0xe8,0xe7,0x62,0xc1,0x8f,0xe6,0xc3,0xca,0x8f,0xa0,0x5f,0x2a,0x3f,0x2c,
0xf2,0x19,0xfd,0x18,0xdd,0x9e,0x2e,0xa,0x7e,0x6,0xbd,0x40,0x5f,0xae,0xfe,0x6e,
0x7,0x6b,0xff,0x3c,0xfb,0x65,0xfa,0xa9,0xf1,0xb3,0x15,0x30,0x1b,0x51,0xfa,0x79,
0xef,0x97,0xda,0xbf,0xa5,0x6c,0x6,0xb0,0xd8,0x4d,0x98,0x1,0x58,0xff,0x11,0xcd,
0xc7,0x84,0xde,0xcf,0xd,0xc0,0x16,0x0,0xbc,0xfa,0x1b,0xcc,0x3a,0x51,0xfd,0xc5,
0x2,0x0,0xcd,0x87,0xcf,0x0,0xe5,0xf1,0xcf,0x16,0x0,0xbc,0xfd,0xd3,0xc2,0xb7,
0x2c,0xf8,0x29,0xf5,0x19,0xf7,0x84,0x3e,0xd1,0x4f,0x6,0x28,0xd1,0xcf,0xd0,0x57,
0xb7,0x2b,0xcb,0x9a,0x8f,0x3c,0x3,0xb4,0xf3,0xec,0x2f,0x8b,0x7f,0x91,0xfd,0x92,
0x7,0xca,0xe3,0x9f,0xca,0xf,0xdb,0xef,0x97,0xd6,0xbe,0x8f,0x94,0x1f,0xb9,0xfd,
0x8b,0xfe,0xf3,0x89,0xed,0x5f,0xb6,0xc1,0x27,0xed,0x7e,0x96,0xca,0xf,0x16,0x0,
0x34,0x3,0x70,0xdc,0x65,0xf1,0x35,0x2e,0xe5,0xfd,0x8,0x6e,0x2b,0x91,0xd0,0x97,
0xb7,0x7a,0xf8,0x4a,0x57,0x7a,0xaa,0x35,0x3c,0x80,0xdf,0xec,0x8d,0x16,0xa9,0xeb,
0xf3,0xda,0x53,0x56,0x7e,0xd0,0xfb,0xc5,0x43,0x2e,0x89,0x7e,0xb6,0xde,0xe5,0x9d,
0x47,0xfa,0xd1,0x97,0x96,0x52,0x3f,0x85,0x47,0xbc,0x84,0x3e,0xe3,0x3e,0x53,0xb6,
0xd5,0x43,0x1e,0x10,0xb5,0x87,0x5,0x3f,0x2f,0x3c,0xdc,0x6,0x2c,0xfe,0x39,0xfd,
0x6c,0x6,0x10,0x6,0x28,0xa1,0x2f,0x2f,0x79,0x39,0xfd,0xe5,0x6,0x90,0xb8,0xe7,
0x1b,0x3e,0x14,0xfc,0xbc,0xff,0xc8,0xe8,0x73,0xee,0xe5,0xde,0x8f,0x1f,0xbc,0xf0,
0x48,0xe8,0xb3,0x8d,0x7f,0xc9,0x0,0xe8,0xfd,0x7c,0xed,0xcb,0xda,0x7f,0xf,0xd1,
0x8f,0xe6,0x3,0xfa,0xa9,0xf9,0x90,0xc8,0x0,0x24,0xac,0x7a,0x5d,0x40,0x9f,0xd5,
0x1e,0x8c,0x5d,0xbc,0xf1,0xd3,0xc2,0x97,0x41,0x4f,0xed,0x1f,0xb5,0x87,0xdb,0xe0,
0x93,0xaa,0x3f,0x37,0x0,0xa0,0x67,0x6b,0x80,0x47,0xe9,0x87,0xd,0x78,0xef,0xd7,
0xb3,0xb5,0xaf,0x9c,0xfd,0x62,0xdf,0x93,0x2d,0x7f,0xb5,0x10,0xd0,0x27,0x21,0xfb,
0xc9,0x3,0x6c,0xe1,0x2b,0xd1,0xf,0x3,0xb0,0xf2,0x23,0xd5,0x1e,0x5e,0x7e,0xb8,
0x7,0x64,0xfa,0xcb,0xd,0x20,0x36,0xfe,0x15,0x1d,0x8f,0x1a,0xe0,0x91,0xf2,0xc3,
0x52,0xbf,0x24,0x64,0x3f,0x33,0xc0,0xc7,0xf6,0x7f,0x3e,0xd6,0xfe,0xa5,0xa,0x24,
0x1d,0xfe,0xa9,0x6f,0x60,0x93,0x0,0x6f,0x3e,0xbc,0xfc,0x3c,0xd6,0xfe,0x69,0x1e,
0x28,0x6f,0xff,0xe8,0x3f,0x52,0x5,0x62,0x1b,0xa0,0xac,0xfd,0xb,0x3,0x94,0x4e,
0xf2,0x60,0x75,0x2b,0x3f,0xd5,0xe2,0xe8,0x4b,0x6d,0x47,0xbc,0xbb,0x28,0x3d,0xd2,
0x2a,0x65,0x3f,0xdb,0xed,0xe1,0x67,0x19,0xa4,0xc7,0xba,0x64,0x0,0x40,0x3f,0x58,
0x28,0xf2,0xd2,0x2f,0x6f,0xfe,0xb0,0xb6,0x93,0x47,0xf0,0xb3,0x3d,0x1f,0x21,0x14,
0x1e,0x5a,0xec,0x32,0xe2,0x5,0xfa,0x48,0x7d,0x42,0x9f,0x70,0xe7,0xa9,0x2f,0xfd,
0xe0,0x9d,0x47,0x5a,0xfb,0xb2,0xdf,0xbc,0xf6,0x70,0xf4,0xd3,0x12,0xfd,0x54,0x7e,
0x10,0xfc,0x2c,0xf5,0xe5,0x55,0x2f,0x8f,0x7f,0xa2,0x9f,0xef,0xfc,0x48,0xf1,0xf,
0xe8,0xa5,0xda,0x23,0xd0,0x8f,0xa0,0xf1,0x7b,0xf9,0x7e,0x3f,0xa1,0xcf,0x9b,0x4f,
0xa8,0xdc,0x3,0x54,0xf7,0x1,0x3d,0x65,0x3f,0x5,0x7f,0x59,0xf9,0x61,0x6,0x60,
0xcd,0x47,0x32,0x80,0x8c,0xbe,0x68,0x3e,0x6c,0x6,0xa0,0x2d,0x7f,0x46,0xbf,0xd4,
0x7c,0x90,0xfd,0x42,0x2e,0x1b,0xf5,0x9f,0x2e,0xeb,0xa3,0xb,0x5f,0x9e,0xfd,0x66,
0xde,0xfe,0xf9,0xc2,0x57,0x88,0x3c,0xc0,0xcb,0x8f,0xbc,0xf6,0x35,0xf0,0xec,0x37,
0x59,0xf4,0x12,0xfd,0x3a,0xa9,0x2,0x61,0x12,0x90,0xcb,0x8f,0x1c,0xff,0x6a,0xd0,
0xcf,0xc,0xc0,0xa6,0x2,0x69,0xf3,0x47,0xa3,0xeb,0x84,0x1,0x48,0x8c,0xfb,0xb2,
0xad,0x4f,0xca,0x7e,0xb1,0xef,0x89,0xc8,0x17,0xd5,0x9f,0xd0,0x17,0xf4,0x97,0x55,
0x7f,0xf6,0xf0,0x8b,0x95,0x1f,0x31,0x3,0xb0,0x85,0x2f,0xb7,0x81,0xd4,0x7f,0x5a,
0xb1,0xf0,0x2d,0x5f,0x0,0x48,0x5b,0x9f,0x8f,0x2c,0x7f,0xcb,0x9a,0x4f,0xd9,0x16,
0xd0,0x27,0x18,0x40,0x7a,0xeb,0xe5,0x13,0x76,0x3f,0x4b,0xf,0xbf,0x24,0xfa,0xd9,
0xc,0x20,0xed,0xe8,0x4b,0x79,0xcf,0x5a,0xbe,0xb4,0xd5,0xc3,0x7a,0xe,0x4b,0x7d,
0xae,0x61,0xb6,0xb9,0x89,0x51,0x3a,0xc2,0x89,0xba,0xcf,0xd,0x50,0x5a,0xec,0x8a,
0x8d,0xce,0xd2,0x3e,0xf,0x67,0x1d,0x79,0x9f,0x67,0xa9,0x2f,0x3c,0x40,0xcf,0xb6,
0x32,0xd2,0x92,0x37,0x9d,0xa1,0xea,0x4f,0x15,0x28,0x4b,0x4f,0x79,0xa5,0x85,0xaf,
0x94,0xfa,0xdc,0x6,0x8f,0x19,0x40,0x2c,0x79,0xa5,0xea,0x4f,0x3b,0x9e,0x40,0x1f,
0xf1,0xcf,0xb9,0x2f,0x37,0x0,0xa7,0x9f,0x73,0xcf,0xda,0x8e,0xf4,0xa3,0xb4,0xea,
0x65,0x47,0x7d,0xf8,0xc2,0x97,0xb5,0x1d,0x5a,0x3,0x48,0xb5,0x87,0xe2,0xbf,0xd4,
0xf8,0x4b,0xcd,0x47,0xae,0x3d,0xd2,0x8e,0x27,0xc5,0xbf,0x8,0x7e,0x17,0xd9,0x0,
0xd0,0xd3,0x9e,0xf,0xcb,0xfe,0xb2,0xf8,0x17,0x93,0x0,0xa0,0xe7,0x33,0x0,0x95,
0x7e,0xde,0xfb,0x49,0xf8,0x81,0xf8,0x17,0x1e,0xc0,0xf,0xbe,0xef,0x29,0xc,0x0,
0xf,0xc0,0x0,0x26,0x56,0x7b,0x78,0xfc,0x13,0xfd,0x42,0x80,0x1e,0xbf,0x9,0x7d,
0x79,0x6,0xe0,0x1e,0x80,0x1,0x74,0x6,0xf1,0xe4,0x8b,0x9a,0xf,0x6f,0xff,0xd2,
0xc,0x0,0xfa,0x69,0x6,0xe0,0xe8,0xcb,0xd9,0x4f,0x15,0x48,0xde,0xf2,0x17,0x6,
0x90,0x9a,0x8f,0xe8,0x3f,0x82,0x7e,0x56,0xfd,0x25,0x3,0x48,0xf4,0x8b,0xe5,0xef,
0xc7,0xe8,0x7f,0x6c,0xf3,0x87,0xd6,0x0,0xa8,0xfb,0xcc,0x0,0xec,0xec,0x43,0x29,
0xfe,0xcb,0xd,0x40,0xd9,0x8f,0x79,0xa0,0x7c,0xf3,0x7,0xa9,0x5f,0xfe,0xf4,0xb7,
0x7c,0xe7,0xe7,0xf1,0xf8,0xa7,0x93,0x3f,0xa5,0x5,0x80,0x9c,0xfd,0xa0,0x5f,0x36,
0x0,0xa3,0xbf,0xec,0x45,0x75,0x5e,0xf1,0x4b,0x5b,0x9c,0xa5,0xe3,0xc,0xac,0xed,
0xf0,0xfd,0x4d,0xda,0xd6,0xe4,0xaf,0x6e,0x3d,0xb6,0xdb,0x53,0x5a,0xf5,0xf2,0xd4,
0x27,0xe8,0x69,0xc9,0x2b,0xad,0x74,0x59,0xff,0x11,0xdb,0xfc,0xa2,0xfc,0x88,0xa,
0xc4,0xd7,0xbb,0x34,0x3,0x88,0xde,0x4f,0x7f,0xe4,0x93,0x0,0x44,0x33,0x0,0x6f,
0x3e,0x62,0xc3,0x27,0x21,0x52,0x9f,0xd7,0x1e,0x1e,0xfc,0x62,0xcb,0x5f,0x8e,0x7f,
0x51,0xfd,0xa5,0xd4,0xf,0xc7,0x60,0x0,0xb1,0xe4,0x65,0xed,0xbf,0xd4,0xfb,0xa9,
0x2,0x21,0xe9,0x39,0xf7,0x8f,0x1a,0x80,0x16,0xbb,0xb4,0x0,0x10,0xe5,0x87,0x6d,
0xf8,0xb8,0x69,0x12,0x90,0x17,0xbe,0x52,0xf6,0xb3,0xda,0x53,0xd6,0xfb,0x1f,0x43,
0x9f,0x17,0x1e,0xb9,0xfc,0xf0,0xe0,0x7,0xf1,0x6c,0xe1,0x5b,0xb6,0xef,0x69,0xb5,
0xc1,0xc,0xc,0x7d,0x1b,0x88,0xc7,0x28,0xda,0x7f,0xc9,0x0,0x52,0x5,0x32,0x59,
0xb8,0x1,0xc0,0x3d,0x6f,0x3e,0x52,0xff,0x11,0xe8,0x73,0xee,0x79,0xf0,0xa3,0xf6,
0xc8,0xa2,0xf2,0xc3,0xb3,0x9f,0xd1,0x4f,0x6,0x60,0xf4,0xb,0xf,0x88,0xf8,0x97,
0xb2,0x1f,0x33,0x80,0x58,0xf8,0xf2,0xf6,0xdf,0xc9,0xb2,0x9f,0x44,0xe5,0x47,0x51,
0x6a,0xff,0xe5,0x3b,0x3f,0x25,0xfa,0x5b,0xb0,0x0,0x60,0x2b,0x60,0x31,0x3,0xfc,
0x6f,0x97,0xbf,0xe2,0xe8,0x1b,0x3f,0xf7,0xf6,0xc9,0x3b,0x3f,0xe5,0xed,0xff,0xe3,
0xfb,0x3f,0x9f,0xb0,0x2,0x2e,0xa7,0xff,0xb1,0xfe,0x23,0x19,0x80,0x9e,0x6a,0x95,
0x3d,0xd2,0x92,0x2a,0x7e,0x79,0xdd,0xa7,0x65,0x6e,0xa9,0xf0,0x10,0xf7,0xa2,0xf9,
0x14,0x44,0xe7,0x61,0x85,0x87,0xed,0x75,0xb2,0xdd,0x7d,0x12,0x47,0x9f,0xd1,0x8f,
0xb0,0xe7,0xf1,0xcf,0x93,0xbe,0x34,0xb2,0xfe,0x23,0x8e,0xf7,0xf0,0xec,0x17,0x3b,
0xfd,0xe2,0x47,0x96,0x75,0x1e,0x61,0x0,0x5e,0xfa,0xf1,0x85,0x76,0xee,0x1,0x56,
0x7b,0xf8,0x6e,0x8f,0x1c,0xff,0xf8,0x9d,0xa0,0x95,0x2e,0x71,0x8f,0x1f,0xe5,0xd9,
0x4f,0x1e,0x10,0xeb,0x5d,0xfa,0xc1,0xca,0xf,0x3e,0x58,0xc1,0x9e,0xf2,0x72,0x49,
0x4b,0x5e,0xf2,0x80,0xd4,0x79,0xc4,0x2,0x80,0xcd,0x0,0xd4,0xfe,0x59,0xf3,0x61,
0x4e,0x90,0xe9,0xf7,0xf8,0x78,0xef,0x97,0xd0,0x7f,0xd4,0x3,0x72,0xf6,0x53,0xef,
0x97,0xaa,0x3f,0xeb,0x3f,0xa0,0x9f,0x8d,0x25,0x3,0xf0,0xf2,0x23,0x52,0x9f,0xd1,
0xcf,0x9b,0x8f,0xc4,0xbd,0xfc,0x83,0x4d,0x2,0xe5,0xe8,0x83,0x7e,0x21,0xd6,0x7c,
0x84,0xca,0x82,0x5f,0x6c,0xfb,0x70,0x1b,0xf0,0x19,0x40,0xec,0xfa,0x8b,0xa,0x24,
0xc,0xc0,0x6b,0xf,0x5b,0xfe,0xb2,0xfe,0x43,0xe8,0x73,0x9,0xf4,0xcb,0xe2,0xbf,
0x3c,0xfb,0xc5,0x24,0x0,0x3,0xf0,0xcd,0x1f,0x89,0x7e,0x69,0xf7,0x53,0xb4,0x7f,
0xde,0xfb,0xc5,0x48,0x2d,0x48,0xde,0xf8,0xe7,0xa7,0x3e,0xd9,0xc,0xc0,0x7f,0xfc,
0x1f,0xc,0x20,0xb5,0xff,0xff,0xc3,0xee,0xe7,0xc7,0xf,0xff,0x50,0x5,0x2a,0x2f,
0x3f,0x34,0x3,0x54,0x56,0x6f,0x90,0xde,0x54,0x64,0xf,0x74,0xa5,0xc2,0x3,0xd6,
0xd9,0xc,0x30,0x58,0xf6,0x40,0x97,0x3f,0xd8,0x62,0xa3,0x24,0x14,0xfd,0xa1,0x62,
0x7f,0xd9,0x6,0x7f,0xe9,0xf1,0x16,0xed,0xf9,0x20,0xf5,0x19,0xf4,0xc5,0x2c,0x95,
0x9f,0xc7,0x76,0x39,0xc5,0xe9,0x6,0x56,0xf7,0x11,0xf9,0x4c,0x7c,0xb7,0x27,0x8d,
0xad,0x1e,0xda,0xed,0x61,0x2d,0x1f,0x3f,0x78,0xf0,0xd3,0x1f,0xd9,0xc8,0xeb,0x7e,
0x29,0xfb,0xe1,0x1,0x11,0xfc,0x34,0x3,0x0,0x7d,0x4c,0x5,0x9c,0x7e,0x32,0xc0,
0xa3,0x1b,0x3e,0x7c,0xdb,0xe7,0x91,0xdd,0x1e,0xbe,0xf6,0x45,0xe4,0xcb,0xf4,0xf7,
0xf2,0xea,0x8f,0x2f,0x77,0xb1,0xd4,0x97,0xcb,0xf,0xdf,0xec,0x77,0xf3,0x6d,0x9f,
0x5e,0xfc,0xa0,0xf8,0xef,0x16,0xfb,0x3f,0x34,0x3,0xc8,0x6,0x90,0xa,0x8f,0xc7,
0x89,0x2d,0x7f,0xb1,0xf0,0xe5,0xc1,0x4f,0x6,0xa0,0xe6,0x23,0xad,0x1,0x68,0x6,
0x60,0xd9,0x8f,0xda,0x23,0x36,0x3d,0xb1,0xe7,0x83,0xf8,0xa7,0x45,0x30,0x8f,0x7f,
0x26,0x6c,0xfb,0x88,0xf2,0x83,0xb0,0x2f,0xa7,0x9f,0xb2,0x9f,0xef,0x7e,0x8a,0xea,
0xcf,0x66,0x0,0xbd,0x51,0xd4,0x1e,0x2c,0x76,0x29,0xfe,0x59,0xff,0xe1,0xb,0x5f,
0xb9,0xfc,0x68,0xf9,0x43,0x5f,0xd6,0x7c,0x58,0xf9,0x91,0xb6,0x7d,0x38,0xfa,0x7c,
0xdf,0x53,0x18,0x80,0xa7,0x3e,0x47,0x5f,0x8a,0x7f,0xb6,0xeb,0x4f,0xd9,0x5f,0x6a,
0xff,0xb4,0xfd,0xcf,0xf6,0xfe,0x1f,0xa3,0xff,0xd1,0xe5,0xaf,0x1c,0xff,0xe5,0x1b,
0xa0,0xd2,0xd9,0xcf,0xb2,0xb3,0xf,0xe5,0x6,0x90,0xcb,0xf,0x3f,0xff,0x5c,0xbe,
0xf7,0xff,0xd8,0xc3,0x2f,0x69,0xed,0xfb,0xd8,0xf1,0x7,0xb1,0x0,0x78,0xcc,0x0,
0x75,0x30,0x0,0xe3,0x9e,0x1f,0x65,0x1b,0xc2,0x96,0xce,0x8,0x4,0xf4,0xf9,0xf,
0xec,0xf0,0xa0,0xf4,0xb3,0xe0,0xe7,0x3d,0xe7,0x63,0xcf,0xb6,0xd8,0x62,0x57,0xda,
0xdf,0xe4,0x61,0xcf,0x47,0xb1,0xcc,0x65,0xe8,0x73,0xfa,0xa5,0xad,0x1e,0x5e,0xf4,
0x91,0xfa,0x59,0xb9,0xf0,0xc8,0xf4,0xf3,0x8d,0x4e,0x2e,0x5a,0xef,0x8a,0xcd,0x7e,
0x4a,0x7d,0x51,0x7b,0x4a,0x8b,0x5d,0x51,0x7b,0xa8,0xf9,0xb0,0xde,0x2f,0x4a,0xbf,
0x94,0xfa,0x62,0xd5,0x5b,0xee,0x1,0xd6,0xfe,0xf9,0xa6,0x27,0x8f,0xff,0xd2,0xce,
0xf,0x3e,0xdd,0x2b,0xf5,0x1f,0x1e,0xf9,0x7c,0x6,0x28,0xa7,0x9f,0x73,0x8f,0x2f,
0x18,0x95,0x76,0x3c,0x29,0xf8,0x3d,0xbc,0xf7,0xcb,0xd5,0x5f,0xda,0xf4,0x24,0xee,
0xa5,0xf6,0xcf,0x4b,0x7f,0x79,0xfc,0xa3,0xf7,0xf3,0xe0,0x97,0xc,0x20,0x6d,0x80,
0x3e,0x3e,0x3,0xb0,0xfe,0x23,0x7a,0x3f,0xd9,0x80,0x82,0x5f,0x36,0x0,0x2b,0xfd,
0xff,0xdb,0xec,0xa7,0x7d,0x4f,0x4e,0x3f,0x43,0x9f,0x8d,0x7a,0x79,0xe7,0x47,0xf4,
0x1f,0xbe,0xfc,0x65,0xfd,0xa7,0x3c,0xf8,0x69,0xdb,0xa7,0x94,0xfd,0xf4,0x5b,0x6e,
0x3e,0xb2,0x7,0x78,0xf3,0x11,0x45,0x48,0x42,0x5f,0x7a,0xf2,0xf5,0x88,0x7,0xca,
0x37,0x7f,0xca,0xb7,0x3e,0xcb,0xd6,0xbe,0xb4,0x6,0x28,0x5f,0xfe,0x96,0xd1,0x2f,
0x57,0x7f,0x5e,0x7e,0x68,0xe3,0x9f,0x8f,0xe2,0xad,0xdf,0x4f,0x7e,0xf4,0x4b,0x33,
0x0,0x2f,0x3f,0xd2,0xf,0xda,0xff,0x29,0x37,0x0,0xe8,0xe7,0x6,0x60,0xbb,0xfb,
0x65,0xd0,0xb3,0x3d,0x4d,0xe2,0x9e,0x2d,0x76,0x79,0xe3,0xef,0x67,0x47,0xd9,0x58,
0xed,0x11,0xcf,0x74,0xf9,0xc3,0xdd,0xc2,0x20,0xd5,0x9e,0x82,0x54,0x7b,0x4a,0x8d,
0x1f,0xc4,0xd3,0x4e,0x3f,0x9d,0x6e,0xc0,0xe3,0x2d,0xf6,0x70,0x37,0x9d,0xa5,0xea,
0x2f,0x95,0x7e,0xe,0x3d,0xcf,0x7e,0x1e,0xfc,0x79,0xbe,0xf3,0x43,0xe8,0x23,0xe9,
0x25,0x3,0xb0,0xb6,0x23,0x76,0xfa,0xb1,0xed,0x23,0xc7,0xbf,0xf4,0x9c,0x8b,0x57,
0x7f,0x5a,0xf8,0x86,0x48,0xfc,0x37,0xdb,0xed,0xe1,0xf1,0x4f,0x1b,0xfc,0xa2,0xfc,
0xf8,0x79,0xfb,0x47,0xef,0x2f,0x9b,0x4,0x80,0x3e,0xeb,0x3f,0xa2,0xf7,0xf3,0x35,
0x0,0xef,0x3f,0x8f,0x2d,0x7c,0x19,0xfa,0xfe,0xd2,0x7e,0x3f,0xcb,0x7e,0x7c,0xc3,
0x85,0x1b,0x40,0xea,0xfd,0x8f,0x18,0x0,0x1e,0xf8,0x18,0xfa,0x98,0x1,0xca,0xaa,
0x3f,0xd9,0x80,0xef,0xf9,0xf0,0x1f,0xac,0xee,0x97,0x4b,0x9e,0x1,0x4a,0xe8,0xf3,
0xf2,0x53,0xa,0x7e,0x5e,0x78,0x58,0xf0,0x3f,0x52,0x7e,0xb4,0x32,0xfd,0x25,0xf4,
0x85,0x1,0xa4,0xda,0x53,0xbe,0xf6,0x2d,0x6f,0xff,0x8f,0xd1,0x5f,0xd6,0x7f,0x4a,
0xc4,0x4b,0xb,0x5f,0x9a,0x1,0x1e,0x59,0xfb,0xb6,0xca,0xcf,0x7d,0xf9,0x99,0x1f,
0xb6,0x0,0x78,0x6c,0xe7,0x87,0x3d,0xff,0x92,0x1e,0xfd,0x8a,0xd3,0x6f,0x65,0x6,
0x78,0xa4,0xff,0x48,0xf1,0x4f,0xfb,0x3f,0xff,0xfb,0xf2,0x23,0x1e,0x81,0x95,0xcd,
0x0,0x32,0xfa,0x1f,0xdf,0xff,0xa1,0xe5,0x2f,0x4,0x3,0xfc,0xff,0x1,0xb1,0xb,
0xf0,0x2a,0xb0,0x6e,0xe7,0x4c,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,
0x60,0x82,
};
static const unsigned char qt_resource_name[] = {
// box.mtl
0x0,0x7,
0x9,0x6b,0x54,0x6c,
0x0,0x62,
0x0,0x6f,0x0,0x78,0x0,0x2e,0x0,0x6d,0x0,0x74,0x0,0x6c,
// box.obj
0x0,0x7,
0x9,0x6b,0x55,0x4a,
0x0,0x62,
0x0,0x6f,0x0,0x78,0x0,0x2e,0x0,0x6f,0x0,0x62,0x0,0x6a,
// tex_64x64.png
0x0,0xd,
0xe,0xb,0x5,0xc7,
0x0,0x74,
0x0,0x65,0x0,0x78,0x0,0x5f,0x0,0x36,0x0,0x34,0x0,0x78,0x0,0x36,0x0,0x34,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
};
static const unsigned char qt_resource_struct[] = {
// :
0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x1,
// :/box.mtl
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,
// :/box.obj
0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x1,0xb8,
// :/tex_64x64.png
0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x5,0x93,
};
QT_BEGIN_NAMESPACE
extern Q_CORE_EXPORT bool qRegisterResourceData
(int, const unsigned char *, const unsigned char *, const unsigned char *);
extern Q_CORE_EXPORT bool qUnregisterResourceData
(int, const unsigned char *, const unsigned char *, const unsigned char *);
QT_END_NAMESPACE
int QT_MANGLE_NAMESPACE(qInitResources_resources)()
{
QT_PREPEND_NAMESPACE(qRegisterResourceData)
(0x01, qt_resource_struct, qt_resource_name, qt_resource_data);
return 1;
}
Q_CONSTRUCTOR_FUNCTION(QT_MANGLE_NAMESPACE(qInitResources_resources))
int QT_MANGLE_NAMESPACE(qCleanupResources_resources)()
{
QT_PREPEND_NAMESPACE(qUnregisterResourceData)
(0x01, qt_resource_struct, qt_resource_name, qt_resource_data);
return 1;
}
Q_DESTRUCTOR_FUNCTION(QT_MANGLE_NAMESPACE(qCleanupResources_resources))
|
c34975e8147ffc3abced65f6bd8a5202500bc917 | 060bae84f48cac27592e5e7cf99b81f8c0f2af80 | /bmaker/interface/in_json.hh | b474c9f3acbebd5ea41f39f6dc760a022e6f549e | [] | no_license | manuelfs/babymaker | 31d3b6ba533d7d7e8173bf7382ffda56e6d98a88 | e95a6a9342d4604277fe7cc6149b6b5b24447d89 | refs/heads/master | 2021-04-19T02:31:57.726403 | 2019-01-04T21:43:32 | 2019-01-04T21:43:32 | 42,443,497 | 6 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 353 | hh | in_json.hh | #ifndef H_IN_JSON
#define H_IN_JSON
#include <vector>
#include <string>
std::vector<std::vector<int> > MakeVRunLumi(std::string input);
bool inJSON(std::vector<std::vector<int> > VRunLumi, int Run, int LS);
void CheckVRunLumi(std::vector<std::vector<int> > VRunLumi);
void CheckVRunLumi2(std::vector<std::vector<int> > VVRunLumi);
#endif //H_IN_JSON
|
8afe373759dbf482a28e504f3c144c55d924be87 | 2ceb9c96aed5da6a4f37b8ff9d5580331b87d6e5 | /็จๅบๅไปฃ็ ้ข่ฏๆๅ/1.ๆ ๅ้ๅ/getMinStack/solution/stack_min.h | b9463394f616fe99000c8ca7c3b48328146dbd23 | [] | no_license | zhangshuai-neu/leetcode_practice | bb15dd3933909afac25f59a6720743185244067f | 175a5e4a5101bfbb7f22735b1899e2b2f75a289d | refs/heads/master | 2020-03-24T20:50:47.480458 | 2019-09-21T13:12:53 | 2019-09-21T13:12:53 | 142,999,489 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 315 | h | stack_min.h | #ifndef STACK_MIN
#define STACK_MIN
#include <vector>
#include <iostream>
using namespace std;
class StackMin{
public:
void push(int in);
int pop(void);
int getMin(void);
// debug function
void debugShow(void);
private:
vector<int> data;
vector<int> minStack;
};
#endif // STACK_MIN
|
7a1919bec10afdd1cdb336f1123403af03e1a962 | 0f7f826d7a80b8d48aa32e90e6f6ce86adaa0cc4 | /app/addmatrix.cpp | 846faee51901aa6435b40f261cda2e48999995df | [] | no_license | tboschi/SuperHK | aadc9ef258dccfce59072d546aed78cb6babf3a3 | 81ff0dd11e2043ed768058968910a0f15d6f9f86 | refs/heads/master | 2021-06-10T15:12:07.351566 | 2021-06-03T15:14:56 | 2021-06-03T15:14:56 | 190,611,867 | 3 | 2 | null | 2021-01-13T18:28:11 | 2019-06-06T16:11:53 | C++ | UTF-8 | C++ | false | false | 3,011 | cpp | addmatrix.cpp | #include <fstream>
#include <iostream>
#include <iomanip>
#include "tools/CardDealer.h"
#include "physics/Oscillator.h"
#include "TFile.h"
#include "TMatrixD.h"
#include "TMatrixT.h"
#include "TKey.h"
#include "TList.h"
int main(int argc, char** argv)
{
if (argc < 2)
{
std::cerr << "Addmatrix: need at least two parameters\n"
<< " output input [input2 ...]\n";
return 1;
}
std::vector<TMatrixT<double>*> matrices;
matrices.reserve(2*(argc-2));
std::cout << "Reading " << argc-2 << " files" << std::endl;
for (int f = 2; f < argc; ++f)
{
TFile inf(argv[f], "OPEN");
if (inf.IsZombie())
continue;
std::cout << "opening " << argv[f] << std::endl;
if (inf.Get("postfit_cov"))
matrices.push_back( static_cast<TMatrixT<double>*> (inf.Get("postfit_cov")) );
if (inf.Get("skdetfsi"))
matrices.push_back( static_cast<TMatrixT<double>*> (inf.Get("skdetfsi")) );
//TList *list = inf.GetListOfKeys();
//TIter next(list) ;
//TKey* key;
//while ( key = (TKey*)next() )
//{
// std::cout << "\tk: " << key->GetName() << ", " << key->GetClassName() << ", TMatrixT<double>" << std::endl;
// if (strcmp(key->GetClassName(), "TMatrixT<double>") == 0 &&
// (strcmp(key->GetName(), "postfit_cov") == 0 ||
// strcmp(key->GetName(), "skdetfsi") == 0) )
// {
// std::cout << "\t\tget " << key->GetName() << std::endl;
// matrices.push_back( static_cast<TMatrixT<double>*> (key->ReadObj()) );
// }
//}
}
std::cout << "Collected " << matrices.size() << " matrices" << std::endl;
if (!matrices.size())
throw std::invalid_argument("Input files do not contain matrices\n");
int cols = std::accumulate(matrices.begin(), matrices.end(), 0,
[](const int &sum, TMatrixT<double> *m) { return sum + m->GetNcols() ;});
TMatrixD *cov = new TMatrixD(cols, cols);
TMatrixD *cor = new TMatrixD(cols, cols);
TMatrixD *ide = new TMatrixD(TMatrixD::kUnit, *cor);
cols = 0;
for (const auto &m : matrices) {
int lCols = m->GetNcols();
std::cout << "loading " << lCols << " columns" << std::endl;
for (int c = 0; c < lCols; ++c)
for (int r = 0; r < lCols; ++r)
{
(*cov)(cols + r, cols + c) = (*m)(r, c);
//std::cout << "Out(" << cols + r << ", " << cols + c << ") "
// << mm->operator()(cols + r, cols + c)
// << " = m[" << m << "] at (" << r << ", " << c << ") "
// << matrices[m]->operator()(r, c) << std::endl;
}
cols += lCols;
}
cols = cov->GetNcols();
for (int r = 0; r < cols; ++r)
for (int c = r; c < cols; ++c)
{
(*cor)(r, c) = (*cov)(r, c) /
std::sqrt((*cov)(r, r) * (*cov)(c, c) );
if (r != c && std::abs((*cor)(r, c)) - 1 < 1e-6)
{
(*cov)(r, c) *= 0.99999; // = (1-1e-5), to make it non singular
(*cor)(r, c) *= 0.99999; // = (1-1e-5), to make it non singular
}
(*cor)(c, r) = (*cor)(r, c); //it is symmetric
}
TFile out(argv[1], "RECREATE");
cov->Write("covariance");
cor->Write("correlation");
ide->Write("identity");
out.Close();
return 0;
}
|
84744a30e850facdd9e2a6be25bcd67365d03cc0 | 32536691e51d2c2d61dc48a69ac045d48a2b8294 | /hw3_code/Image.cpp | bffd07cb94ae9026a9e2249935289f2138962a7e | [] | no_license | diditong/CSCI576 | 4159aed4e35d552a618561f456c0b9e2f839459d | 7dd1fb24038558fea9d731b6feb6476ed4d00820 | refs/heads/master | 2023-08-28T01:49:37.009065 | 2021-09-14T11:52:07 | 2021-09-14T11:52:07 | 390,733,657 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,777 | cpp | Image.cpp | //*****************************************************************************
//
// Image.cpp : Defines the class operations on images
//
// Author - Parag Havaldar
// Code used by students as starter code to display and modify images
//
//*****************************************************************************
#include "Image.h"
#include <math.h>
// Constructor and Desctructors
MyImage::MyImage()
{
Data = NULL;
Width = -1;
Height = -1;
ImagePath[0] = 0;
}
MyImage::~MyImage()
{
if (Data)
delete Data;
}
// Copy constructor
MyImage::MyImage(MyImage* otherImage)
{
Height = otherImage->Height;
Width = otherImage->Width;
Data = new char[Width * Height * 3];
strcpy(otherImage->ImagePath, ImagePath);
for (int i = 0; i < (Height * Width * 3); i++)
{
Data[i] = otherImage->Data[i];
}
}
// = operator overload
MyImage& MyImage::operator= (const MyImage& otherImage)
{
Height = otherImage.Height;
Width = otherImage.Width;
Data = new char[Width * Height * 3];
strcpy((char*)otherImage.ImagePath, ImagePath);
for (int i = 0; i < (Height * Width * 3); i++)
{
Data[i] = otherImage.Data[i];
}
return *this;
}
// MyImage::ReadImage
// Function to read the image given a path
bool MyImage::ReadImage()
{
// Verify ImagePath
if (ImagePath[0] == 0 || Width < 0 || Height < 0)
{
fprintf(stderr, "Image or Image properties not defined");
fprintf(stderr, "Usage is `Image.exe Imagefile w h`");
return false;
}
// Create a valid output file pointer
FILE* IN_FILE;
IN_FILE = fopen(ImagePath, "rb");
if (IN_FILE == NULL)
{
fprintf(stderr, "Error Opening File for Reading");
return false;
}
// Create and populate RGB buffers
int i;
char* Rbuf = new char[Height * Width];
char* Gbuf = new char[Height * Width];
char* Bbuf = new char[Height * Width];
for (i = 0; i < Width * Height; i++)
{
Rbuf[i] = fgetc(IN_FILE);
}
for (i = 0; i < Width * Height; i++)
{
Gbuf[i] = fgetc(IN_FILE);
}
for (i = 0; i < Width * Height; i++)
{
Bbuf[i] = fgetc(IN_FILE);
}
// Allocate Data structure and copy
Data = new char[Width * Height * 3];
for (i = 0; i < Height * Width; i++)
{
Data[3 * i] = Bbuf[i];
Data[3 * i + 1] = Gbuf[i];
Data[3 * i + 2] = Rbuf[i];
}
// Clean up and return
delete Rbuf;
delete Gbuf;
delete Bbuf;
fclose(IN_FILE);
return true;
}
// MyImage functions defined here
bool MyImage::WriteImage()
{
// Verify ImagePath
// Verify ImagePath
if (ImagePath[0] == 0 || Width < 0 || Height < 0)
{
fprintf(stderr, "Image or Image properties not defined");
return false;
}
// Create a valid output file pointer
FILE* OUT_FILE;
OUT_FILE = fopen(ImagePath, "wb");
if (OUT_FILE == NULL)
{
fprintf(stderr, "Error Opening File for Writing");
return false;
}
// Create and populate RGB buffers
int i;
char* Rbuf = new char[Height * Width];
char* Gbuf = new char[Height * Width];
char* Bbuf = new char[Height * Width];
for (i = 0; i < Height * Width; i++)
{
Bbuf[i] = Data[3 * i];
Gbuf[i] = Data[3 * i + 1];
Rbuf[i] = Data[3 * i + 2];
}
// Write data to file
for (i = 0; i < Width * Height; i++)
{
fputc(Rbuf[i], OUT_FILE);
}
for (i = 0; i < Width * Height; i++)
{
fputc(Gbuf[i], OUT_FILE);
}
for (i = 0; i < Width * Height; i++)
{
fputc(Bbuf[i], OUT_FILE);
}
// Clean up and return
delete Rbuf;
delete Gbuf;
delete Bbuf;
fclose(OUT_FILE);
return true;
}
double QuantTable[8][8] = { {16., 11., 10., 16., 24., 40., 51., 61.},
{12., 12., 14., 19., 26., 58., 60., 55.},
{14., 13., 16., 24., 40., 57., 69., 56.},
{14., 17., 22., 29., 51., 87., 80., 62.},
{18., 22., 37., 56., 68., 109., 103., 77.},
{24., 35., 55., 64., 81., 104., 113., 92.},
{49., 64., 78., 87., 103., 121., 120., 101.},
{72., 92., 95., 98., 112., 100., 103., 99.} };
void MyImage::convertDCTBlock(int nRow, int nCol, int numCoeffsPerBlock,
double* DCTorigin, double* DCTcoeffs, double* DCTquots, double* DCTquants, double* IDCTvalues) {
for (int channel = 0; channel < 3; channel++)
{
// Get DCT original data in doubles;
int m, n;
for (int i = 0; i < 8; i++) {
for (int j = 0; j < 8; j++) {
m = i + nRow;
n = j + nCol;
DCTorigin[i * 8 + j] = (double)(unsigned char)Data[3 * (m * Width + n) + channel];
//printf("DCT original data: %lf\n", DCTorigin[i * 8 + j]);
}
}
// Get DCT coefficients in doubles
double cu, cv;
double pi = 2 * acos(0.0);
for (int u = 0; u < 8; u++) {
for (int v = 0; v < 8; v++) {
double sum = 0;
if (u == 0)
cu = 1.0 / sqrt(2);
else
cu = 1.0;
if (v == 0)
cv = 1.0 / sqrt(2);
else
cv = 1.0;
for (int x = 0; x < 8; x++) {
for (int y = 0; y < 8; y++) {
sum += 0.25 * cu * cv * DCTorigin[x * 8 + y] * cos((2.0 * ((double)x) + 1.0) * ((double)u) * pi / 16.0) * cos((2.0 * ((double)y) + 1.0) * ((double)v) * pi / 16.0);
}
}
DCTcoeffs[u * 8 + v] = sum;
//printf("DCT coefficients: %lf\n", DCTcoeffs[u * 8 + v]);
}
}
// Get DCT quotients in doubles
for (int u = 0; u < 8; u++) {
for (int v = 0; v < 8; v++) {
DCTquots[u * 8 + v] = DCTcoeffs[u * 8 + v] / QuantTable[u][v];
//printf("DCT quotients: %lf\n", DCTquots[u * 8 + v]);
}
}
// Get Quantized DCT in ints
for (int u = 0; u < 8; u++) {
for (int v = 0; v < 8; v++) {
DCTquants[u * 8 + v] = round(DCTquots[u * 8 + v]);
//printf("DCT quants: %d\n", DCTquants[u * 8 + v]);
}
}
//int intArray[8][8] = { {-1, 1, 5, 6, 14, 15, 27, 28},
// {2, 4, 7, 13, 16, 26, 29, 42},
// {3, 8, 12, 17, 25, 30, 41, 43},
// {9, 11, 18, 24, 31, 40, 44, 53},
// {10, 19, 23, 32, 39, 45, 52, 54},
// {20, 22, 33, 38, 46, 51, 55, 60},
// {21, 34, 37, 47, 50, 56, 59, 61},
// {35, 36, 48, 49, 57, 58, 62, 63} };
// Set coefficients
int iCoeff = 0;
for (int iDiag = 0; iDiag <= 14; iDiag++) {
int larger, smaller, dir;
if (iDiag > 7) {
larger = 7;
smaller = iDiag - 7;
}
else {
larger = iDiag;
smaller = 0;
}
dir = iDiag % 2;
int x, y;
if (dir == 0) {
x = larger;
y = smaller;
}
else {
x = smaller;
y = larger;
}
int numValuesInDiag = (iDiag <= 7) ? (iDiag + 1) : (15 - iDiag);
for (int i = 0; i < numValuesInDiag; i++) {
if (iCoeff >= numCoeffsPerBlock) {
DCTquants[x * 8 + y] = 0;
}
if (dir == 0) {
x--;
y++;
}
else {
x++;
y--;
}
iCoeff++;
}
}
//for (int x = 0; x < 8; x++) {
// for (int y = 0; y < 8; y++) {
// printf("%lf ", DCTquants[x * 8 + y]);
// }
// printf("\n");
//}
// Inverse DCT
double DCTcoeff;
for (int x = 0; x < 8; x++) {
for (int y = 0; y < 8; y++) {
double sum = 0;
for (int u = 0; u < 8; u++) {
for (int v = 0; v < 8; v++) {
if (u == 0)
cu = 1.0 / sqrt(2);
else
cu = 1.0;
if (v == 0)
cv = 1.0 / sqrt(2);
else
cv = 1.0;
DCTcoeff = DCTquants[u * 8 + v] * QuantTable[u][v];
sum += 0.25 * cu * cv * DCTcoeff * cos((2.0 * ((double)x) + 1.0) * ((double)u) * pi / 16.0) * cos((2.0 * ((double)y) + 1.0) * ((double)v) * pi / 16.0);
}
}
// Keep IDCT values in range [0.0, 255.0]
IDCTvalues[x * 8 + y] = (sum < 0.0) ? 0.0 : ((sum > 255.0) ? 255.0 : sum);
//printf("IDCT values: %lf\n", IDCTvalues[x * 8 + y]);
}
}
// Print original and IDCT values
//for (int x = 0; x < 8; x++) {
// for (int y = 0; y < 8; y++) {
// printf("Compare: %lf, %lf\n", DCTorigin[x * 8 + y], IDCTvalues[x * 8 + y]);
// }
//}
// Convert IDCT values to characters
for (int x = 0; x < 8; x++) {
for (int y = 0; y < 8; y++) {
m = nRow + x;
n = nCol + y;
Data[3 * (m * Width + n) + channel] = (char)(int)round(IDCTvalues[x * 8 + y]);
}
}
}
}
// Here is where you would place your code to modify an image
// eg Filtering, Transformation, Cropping, etc.
bool MyImage::convertDCT(int numCoeffs)
{
fprintf(stdout, "**************************************DCT**************************************\n");
// Allocate heap memory for arrays
double* DCTorigin = new double[8 * 8];
double* DCTcoeffs = new double[8 * 8];
double* DCTquots = new double[8 * 8];
double* DCTquants = new double[8 * 8];
double* IDCTvalues = new double[8 * 8];
// Calculate number of coefficients per block
int numCoeffsPerBlock;
if (numCoeffs >= 262144) {
fprintf(stdout, "DCT Returning the original image... (number of coefficients is greater than or equal to 262144)\n", numCoeffs);
return true;
}
else if (numCoeffs <= 4096) {
fprintf(stdout, "Error: %d is not a valid number for DCT (too small), correcting to 4096\n", numCoeffs);
numCoeffs = 4096;
numCoeffsPerBlock = 1;
}
else {
numCoeffsPerBlock = numCoeffs / 4096;
}
fprintf(stdout, "Compressing Image using DCT... (number of coefficients is %d)\n", numCoeffsPerBlock * 4096);
fprintf(stdout, " Please wait. Should complete in 10 seconds.\n");
// Apply DCT on each block
for (int i = 0; i < 64; i++) {
for (int j = 0; j < 64; j++) {
convertDCTBlock(i*8, j*8, numCoeffsPerBlock, DCTorigin, DCTcoeffs, DCTquots, DCTquants, IDCTvalues);
}
}
delete[] DCTorigin;
delete[] DCTcoeffs;
delete[] DCTquots;
delete[] DCTquants;
delete[] IDCTvalues;
return true;
}
void MyImage::compressRows(double* DWTorigin, int length) {
double* compressedRow = new double[length];
double* currRow = new double[length];
for (int channel = 0; channel < 3; channel++) {
// Compress each row in DWTorigin
for (int iRow = 0; iRow < length; iRow++) {
// Get current row with index iRow
for (int iCol = 0; iCol < length; iCol++) {
currRow[iCol] = DWTorigin[3 * (iRow * Width + iCol) + channel];
}
// Compress the current row and save the data to compressedRow
for (int iCol = 0; iCol < length; iCol += 2) {
compressedRow[iCol / 2] = (currRow[iCol] + currRow[iCol + 1]) / 2;
compressedRow[iCol / 2 + length / 2] = (currRow[iCol] - currRow[iCol + 1]) / 2;
}
// Copy the data in compressedRow to DWTorigin
for (int iCol = 0; iCol < length; iCol++) {
DWTorigin[3 * (iRow * Width + iCol) + channel] = compressedRow[iCol];
}
}
}
delete[] compressedRow;
delete[] currRow;
}
void MyImage::compressColumns(double* DWTorigin, int length) {
double* compressedCol = new double[length];
double* currCol = new double[length];
for (int channel = 0; channel < 3; channel++) {
// Compress each column in DWTorigin
for (int iCol = 0; iCol < length; iCol++) {
// Get current column with index iCol
for (int iRow = 0; iRow < length; iRow++) {
currCol[iRow] = DWTorigin[3 * (iRow * Width + iCol) + channel];
}
// Compress the current column and save the data to compressedCol
for (int iRow = 0; iRow < length; iRow += 2) {
compressedCol[iRow / 2] = (currCol[iRow] + currCol[iRow + 1]) / 2;
compressedCol[iRow / 2 + length / 2] = (currCol[iRow] - currCol[iRow + 1]) / 2;
}
// Copy the data in compressedCol to DWTorigin
for (int iRow = 0; iRow < length; iRow++) {
DWTorigin[3 * (iRow * Width + iCol) + channel] = compressedCol[iRow];
}
}
}
delete[] compressedCol;
delete[] currCol;
}
void MyImage::decompressColumns(double* DWTorigin, int length) {
double* decompressedCol = new double[length];
double* currCol = new double[length];
for (int channel = 0; channel < 3; channel++) {
// Decompress each column in DWTorigin
for (int iCol = 0; iCol < length; iCol++) {
// Get current column with index iCol
for (int iRow = 0; iRow < length; iRow++) {
currCol[iRow] = DWTorigin[3 * (iRow * Width + iCol) + channel];
}
// Decompress the current column and save the data to decompressedCol
for (int iRow = 0; iRow < length / 2; iRow++) {
decompressedCol[2 * iRow] = currCol[iRow] + currCol[iRow + length / 2];
decompressedCol[2 * iRow + 1] = currCol[iRow] - currCol[iRow + length / 2];
}
// Copy the data in decompressedCol to DWTorigin
for (int iRow = 0; iRow < length; iRow++) {
DWTorigin[3 * (iRow * Width + iCol) + channel] = decompressedCol[iRow];
}
}
}
delete[] decompressedCol;
delete[] currCol;
}
void MyImage::decompressRows(double* DWTorigin, int length) {
double* decompressedRow = new double[length];
double* currRow = new double[length];
for (int channel = 0; channel < 3; channel++) {
// Decompress each row in DWTorigin
for (int iRow = 0; iRow < length; iRow++) {
// Get current row with index iCol
for (int iCol = 0; iCol < length; iCol++) {
currRow[iCol] = DWTorigin[3 * (iRow * Width + iCol) + channel];
}
// Decompress the current row and save the data to decompressedRow
for (int iCol = 0; iCol < length / 2; iCol++) {
decompressedRow[2 * iCol] = currRow[iCol] + currRow[iCol + length / 2];
decompressedRow[2 * iCol + 1] = currRow[iCol] - currRow[iCol + length / 2];
}
// Copy the data in decompressedRow to DWTorigin
for (int iCol = 0; iCol < length; iCol++) {
DWTorigin[3 * (iRow * Width + iCol) + channel] = decompressedRow[iCol];
}
}
}
delete[] decompressedRow;
delete[] currRow;
}
void MyImage::setDWTCoeffs(double* DWTorigin, int numCoeffs) {
int length = (int)sqrt(numCoeffs);
for (int i = 0; i < Height; i++) {
for (int j = 0; j < Width; j++) {
if (i >= length || j >= length) {
DWTorigin[3 * (i * Width + j)] = 0.0;
DWTorigin[3 * (i * Width + j) + 1] = 0.0;
DWTorigin[3 * (i * Width + j) + 2] = 0.0;
}
}
}
}
bool MyImage::convertDWT(int numCoeffs)
{
fprintf(stdout, "**************************************DWT**************************************\n");
//printf("%lf, %lf\n", ceil(log((double)262144) / log(4.)), floor(log((double)262144) / log(4.)));
//printf("%d\n", (int)pow(4.0, floor(log((double)numCoeffs) / log(4.))));
// Check number of coefficients
if (numCoeffs >= 262144) {
fprintf(stdout, "DWT Returning the original image... (number of coefficients is greater than or equal to 262144)\n", numCoeffs);
return true;
}
else if (numCoeffs <= 0) {
fprintf(stdout, "Error: %d is not a valid number for DWT (non-positive number)\n", numCoeffs);
numCoeffs = 0;
}
else if (ceil(log((double)numCoeffs) / log(4.)) != floor(log((double)numCoeffs) / log(4.))) {
int correctedNum = (int)pow(4.0, floor(log((double)numCoeffs) / log(4.)));
fprintf(stdout, "Error: %d is not a valid number for DWT (not a power of 4), correcting to the nearest power of 4 - %d\n", numCoeffs, correctedNum);
numCoeffs = correctedNum;
}
fprintf(stdout, "Compressing Image using DWT... (number of coefficients is %d)\n", numCoeffs);
fprintf(stdout, " Please wait. Should complete in 1 seconds.\n");
// Allocate heap memory for arrays
double* DWTorigin = new double[Height * Width * 3];
// Get original data in doubles
for (int i = 0; i < Height; i++) {
for (int j = 0; j < Width; j++) {
DWTorigin[3 * (i * Width + j)] = (double)(unsigned char)Data[3 * (i * Width + j)];
DWTorigin[3 * (i * Width + j) + 1] = (double)(unsigned char)Data[3 * (i * Width + j) + 1];
DWTorigin[3 * (i * Width + j) + 2] = (double)(unsigned char)Data[3 * (i * Width + j) + 2];
}
}
// Compress rows and columns
for (int i = 512; i != 1; i /= 2) {
compressRows(DWTorigin, i);
compressColumns(DWTorigin, i);
}
setDWTCoeffs(DWTorigin, numCoeffs);
for (int i = 2; i != 1024; i *= 2) {
decompressColumns(DWTorigin, i);
decompressRows(DWTorigin, i);
}
// Check if assertions are correct
for (int i = 0; i < 512; i++) {
for (int j = 0; j < 512; j++) {
if (DWTorigin[3 * (i * Width + j)] > 255.0 || DWTorigin[3 * (i * Width + j)] < 0.0) {
printf("DWTorigin values exceeded!\n");
}
}
}
// Read DWTorigin into Data
for (int i = 0; i < Height; i++) {
for (int j = 0; j < Width; j++) {
Data[3 * (i * Width + j)] = (char)(int)DWTorigin[3 * (i * Width + j)];
Data[3 * (i * Width + j) + 1] = (char)(int)DWTorigin[3 * (i * Width + j) + 1];
Data[3 * (i * Width + j) + 2] = (char)(int)DWTorigin[3 * (i * Width + j) + 2];
}
}
return true;
} |
7e064c81b03e5d16b9a98290d59cb48d953be7fe | 24b5324a8019b0baa31ff46ce7020fd361b45b38 | /src/uts.cpp | 8b7e265f8cfd7a55bb75459201fa1b8378e4f326 | [] | no_license | LDVSOFT/spbau-term6-containers | 12827b4a942563f52a0fe82addee3289c42299a0 | c45ba837b21ddc2b8c90c6ec753b50e3efae8d0a | refs/heads/master | 2021-01-20T00:36:52.103433 | 2017-05-12T14:39:55 | 2017-05-12T14:40:29 | 89,159,938 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 466 | cpp | uts.cpp | #include "uts.hpp"
#include "utils.hpp"
#include "utils_ns.hpp"
#include <string>
#include <unistd.h>
#include <sched.h>
using std::string;
int uts_setup_ns() {
int ret;
static string const HOST("container");
CALL(ret, sethostname(HOST.c_str(), HOST.size()),
"Failed to set hostname", (void) 0);
// Jobsdone -- Peasant
return ret;
}
int uts_open(container_id const& id) {
return ns_open(id, "uts");
}
int uts_enter_ns(int fd) {
return ns_enter(fd);
}
|
613ceee0d3af67389ec60e69b8d151b5b2fa5d9f | e9c02bb0df7ad3a928cf7c97b8294451eaa8dbc8 | /graph-source-code/467-D/12721853.cpp | 2e4ac8e9deb4f76659eeccb466e14aa81874de65 | [
"MIT"
] | permissive | AmrARaouf/algorithm-detection | b157a534545fa8920bbe94e7307d4b937a74aa60 | 59f3028d2298804870b32729415d71eec6116557 | refs/heads/master | 2021-01-13T14:37:04.074339 | 2015-12-06T21:14:31 | 2015-12-06T21:14:31 | 45,905,817 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,220 | cpp | 12721853.cpp | //Language: GNU C++11
///////////////////////////////
// Template By: Agus Sentosa //
// 17 - 5 - 2014 //
///////////////////////////////
#include <algorithm>
#include <ctime>
#include <cstdlib>
#include <climits>
#include <cassert>
#include <cstring>
#include <cmath>
#include <functional>
#include <utility>
//I/O
#include <cstdio>
#include <iostream>
#include <iomanip>
#include <sstream>
#include <istream>
#include <ostream>
//Data Type
#include <stack>
#include <queue>
#include <deque>
#include <string>
#include <vector>
#include <set>
#include <map>
#include <list>
#include <bitset>
//Data Type
#define pii pair<int,LL>
#define pll pair<LL,LL>
#define pdd pair<double,double>
#define LL long long
#define ULL unsigned long long
//Data Type Properties
#define f first
#define s second
#define mp make_pair
#define pb push_back
#define popb pop_back
//Macro
#define sqr(x) ((x) * (x))
#define all(v) (v).begin(),(v).end()
#define sortv(v) sort(all(v))
#define num(x) ((x)-'0')
#define ch(x) ((x)+'0')
#define bit_count __builtin_popcount
#define bit_countll __builtin_popcountll
#define THIS (*this)
//Output
#define endl '\n'
//Compiling & Debugging
#ifdef DEBUG
#define DO_IF_DEBUG_FLAG_IS_ON 1
#else
#define DO_IF_DEBUG_FLAG_IS_ON 0
#endif
#define DoDebug if(DO_IF_DEBUG_FLAG_IS_ON)
//???????????????????
#define Fokus using
#define Tahun_Terakhir namespace std;
Fokus Tahun_Terakhir;
#ifdef _WIN32
#define getchar_unlocked getchar
#endif
#define g getchar_unlocked
template<class T>
bool io(T &res){
static char c=' ';
while(c == ' ' || c == '\n')c = g();
if(c == -1)return 0;
res = num(c);
while((c=g()) && c != ' ' && c != '\n' && c!=-1){ res = (res << 3) + (res << 1) + num(c); }
return 1;
}
template<class T>
string inttostr(T x){
string res="";
while(x){
char t=ch(x%10); x/=10; res=t+res;
}
return res;
}
template<class T>
T strtoint(string x){
T res=0;
for(int i=0;i<x.size();i++){
res=(res<<3)+(res<<1)+num(x[i]);
}
return res;
}
void open(string a){
freopen((a+".in").c_str(),"r",stdin);
freopen((a+".out").c_str(),"w",stdout);
}
void close(){
fclose(stdin);
fclose(stdout);
}
//Constant
#define INF 1000000007
#define LINF 1000000000000000007ll
#define DINF 1000000000000000007.00
#define INV (-INF)
#define LINV (-LINF)
#define DINV (-DINF)
#define EPS 1e-9
#define MOD 1000000007
///////////////////////////////
// End of Template //
///////////////////////////////
string arr[100005];
map<string,int> cntr;
vector<int> V[200005];
pii data[200005];
int dfs_num[200005];
int dfs_low[200005];
int dfs_cntr;
int scc_id[200005];
int scc_num;
pii scc_data[200005];
vector<int> scc_list[200005];
int vis[200005];
int deg[200005];
stack<int> st;
void add(string &x){
int num = 0;
for(int i = 0 ; i < x.size() ; i ++){
if(x[i] >= 'A' && x[i] <= 'Z')
x[i] = x[i] - 'A' + 'a';
if(x[i] == 'r')
num++;
}
if(!cntr.count(x)){
cntr[x] = cntr.size();
cntr[x] --;
}
//cout << "ENTRY " << x << ' ' << cntr[x] << ' ' << cntr.size() << endl;
data[cntr[x]] = {num , (LL)x.size()};
}
void DFS(int cur){
dfs_num[cur] = dfs_low[cur] = dfs_cntr++;
st.push(cur);
vis[cur] = 1;
for(int i : V[cur]){
if(dfs_num[i] == -1){
DFS(i);
}
if(vis[i])
dfs_low[cur] = min(dfs_low[cur] , dfs_low[i]);
}
if(dfs_low[cur] == dfs_num[cur]){
scc_data[scc_num] = {INF,INF};
while(st.top() != cur){
scc_list[scc_num].pb(st.top());
scc_id[st.top()] = scc_num;
scc_data[scc_num] = min(scc_data[scc_num] , data[st.top()]);
vis[st.top()] = 0;
st.pop();
}
scc_list[scc_num].pb(st.top());
scc_id[st.top()] = scc_num;
scc_data[scc_num] = min(scc_data[scc_num] , data[st.top()]);
vis[st.top()] = 0;
st.pop();
//cout << scc_num << ' ' << scc_data[scc_num].f << ' ' << scc_data[scc_num].s << endl;
scc_num++;
}
}
int main(){
ios::sync_with_stdio(0);
int n; cin >> n;
for(int i = 0 ; i < n ; i ++){
cin >> arr[i];
add(arr[i]);
}
int m; cin >> m;
for(int i = 0 ; i < m ; i ++){
string a,b; cin >> a >> b;
add(a); add(b);
V[cntr[b]].pb(cntr[a]);
//cout << cntr[b] << " -> " << cntr[a] << endl;
}
memset(dfs_num , -1, sizeof dfs_num);
memset(vis,0,sizeof vis);
scc_num = 0;
dfs_cntr = 0;
for(int i = 0 ; i < cntr.size() ; i ++){
if(dfs_num[i] == -1)
DFS(i);
}
//topo
memset(deg , 0 ,sizeof deg);
for(int i = 0 ; i < scc_num ; i ++){
//cout << i << " : ";
for(int j : scc_list[i]){
//cout << j << ' ';
for(int k : V[j])
if(scc_id[k] != scc_id[j])
deg[scc_id[k]]++;
}
//cout << endl;
}
queue<int> q;
for(int i = 0 ; i < scc_num ; i ++)
if(deg[i] == 0)q.push(i);
while(!q.empty()){
int cur = q.front(); q.pop();
for(int i : scc_list[cur])
for(int j : V[i]){
scc_data[scc_id[j]] = min(scc_data[scc_id[j]] , scc_data[cur]);
if(scc_id[i] != scc_id[j]){
deg[scc_id[j]]--;
if(deg[scc_id[j]] == 0)q.push(scc_id[j]);
}
}
//cout << cur << ' ' << data[cur].f << ' ' << data[cur].s << endl;
}
int a = 0;
LL b = 0;
for(int i = 0 ; i < n ; i ++){
a += scc_data[scc_id[cntr[arr[i]]]].f;
b += scc_data[scc_id[cntr[arr[i]]]].s;
//cout << a << ' ' << b << endl;
}
cout << a << ' ' << b << endl;
return 0;
}
|
9c39ca7f89dddcf36e5799a084ef7abe1a51b9c8 | 0c79bbdb421b6cba0ced88085da271e73a67961e | /ENgine/Core/Font/FontCharmap.h | 9e7e47c145b0ca3b0ba04ba03962908d42cbde68 | [] | no_license | ENgineE777/ion | 898b50102796c3e247eb0a1ac380dfdf273b9cb9 | cc9364188873831ebe3222944a96b49397f50c20 | refs/heads/master | 2023-07-16T09:41:28.119564 | 2021-08-23T23:23:13 | 2021-08-23T23:49:51 | 399,273,658 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 790 | h | FontCharmap.h | #pragma once
#include <ft2build.h>
#include <freetype/freetype.h>
#include <freetype/ftglyph.h>
#include "FontCharToGlyphIndexMap.h"
class FontCharmap
{
public:
FontCharmap();
virtual ~FontCharmap();
void Init(FT_Face face);
int GlyphListIndex(const unsigned int characterCode);
int FontIndex(const unsigned int characterCode);
void InsertIndex(const unsigned int characterCode,
const size_t containerIndex);
private:
FT_Encoding ftEncoding;
FT_Face ftFace;
FontCharToGlyphIndexMap charMap;
static const unsigned int MAX_PRECOMPUTED = 128;
unsigned int charIndexCache[MAX_PRECOMPUTED];
}; |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.