hexsha
stringlengths 40
40
| size
int64 7
1.05M
| ext
stringclasses 13
values | lang
stringclasses 1
value | max_stars_repo_path
stringlengths 4
269
| max_stars_repo_name
stringlengths 5
109
| max_stars_repo_head_hexsha
stringlengths 40
40
| max_stars_repo_licenses
sequencelengths 1
9
| max_stars_count
int64 1
191k
⌀ | max_stars_repo_stars_event_min_datetime
stringlengths 24
24
⌀ | max_stars_repo_stars_event_max_datetime
stringlengths 24
24
⌀ | max_issues_repo_path
stringlengths 4
269
| max_issues_repo_name
stringlengths 5
116
| max_issues_repo_head_hexsha
stringlengths 40
40
| max_issues_repo_licenses
sequencelengths 1
9
| max_issues_count
int64 1
48.5k
⌀ | max_issues_repo_issues_event_min_datetime
stringlengths 24
24
⌀ | max_issues_repo_issues_event_max_datetime
stringlengths 24
24
⌀ | max_forks_repo_path
stringlengths 4
269
| max_forks_repo_name
stringlengths 5
116
| max_forks_repo_head_hexsha
stringlengths 40
40
| max_forks_repo_licenses
sequencelengths 1
9
| max_forks_count
int64 1
105k
⌀ | max_forks_repo_forks_event_min_datetime
stringlengths 24
24
⌀ | max_forks_repo_forks_event_max_datetime
stringlengths 24
24
⌀ | content
stringlengths 7
1.05M
| avg_line_length
float64 1.21
330k
| max_line_length
int64 6
990k
| alphanum_fraction
float64 0.01
0.99
| author_id
stringlengths 2
40
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
8c70c08d30aff00462e2d8455b0c8417e7ad4fd2 | 1,204 | hpp | C++ | include/rt1w/integrator.hpp | guerarda/rt1w | 2fa13326e0a745214fb1a9fdc49a345c1407b6f3 | [
"MIT"
] | null | null | null | include/rt1w/integrator.hpp | guerarda/rt1w | 2fa13326e0a745214fb1a9fdc49a345c1407b6f3 | [
"MIT"
] | null | null | null | include/rt1w/integrator.hpp | guerarda/rt1w | 2fa13326e0a745214fb1a9fdc49a345c1407b6f3 | [
"MIT"
] | null | null | null | #pragma once
#include "rt1w/geometry.hpp"
#include "rt1w/spectrum.hpp"
#include "rt1w/sptr.hpp"
#include "rt1w/task.hpp"
#include <string>
struct Interaction;
struct Ray;
struct Sampler;
struct Scene;
Spectrum UniformSampleOneLight(const Interaction &isect,
const sptr<Scene> &scene,
const sptr<Sampler> &sampler);
struct Integrator : Object {
static sptr<Integrator> create(const std::string &type,
const sptr<Sampler> &sampler,
size_t maxDepth);
virtual sptr<const Sampler> sampler() const = 0;
virtual Spectrum Li(const Ray &ray,
const sptr<Scene> &scene,
const sptr<Sampler> &sampler,
size_t depth,
v3f *N = nullptr,
Spectrum *A = nullptr) const = 0;
};
struct IntegratorAsync : Integrator {
using Integrator::Li;
virtual sptr<Batch<Spectrum>> Li(const std::vector<Ray> &rays,
const sptr<Scene> &scene,
const sptr<Sampler> &sampler) const = 0;
};
| 30.871795 | 77 | 0.532392 | guerarda |
8c70ed625e9b363370c6115a733c78d4243393d5 | 5,925 | cpp | C++ | src/HAL/gpio.cpp | QIU1995NONAME/Q20161106_Project0 | f321c52496996e94bc8bd52805721e922da4151c | [
"MIT"
] | 4 | 2016-11-11T04:47:05.000Z | 2019-01-23T14:14:00.000Z | src/HAL/gpio.cpp | QIU1995NONAME/Q20161106_Project0 | f321c52496996e94bc8bd52805721e922da4151c | [
"MIT"
] | null | null | null | src/HAL/gpio.cpp | QIU1995NONAME/Q20161106_Project0 | f321c52496996e94bc8bd52805721e922da4151c | [
"MIT"
] | null | null | null | #include "gpio.h"
namespace QIU {
namespace PJ0 {
// 目前已经被初始化的GPIO口
// 12 8 4 0
// GPIO_A 0001-1110 1110-0001
// GPIO_B 1111-0101 1110-0000
// GPIO_C 0000-0000 1111-1111
// GPIO_D 1111-1111 1111-0011
// GPIO_E 1111-1111 1001-1111
// GPIO_F 1111-0000 0011-1111
// GPIO_G 0111-0100 0011-1111
//
GPIO_InitTypeDef gpio_init;
// 按键
inline void gpio_config_key(void) {
// PA0
gpio_init.GPIO_Speed = GPIO_Speed_50MHz;
gpio_init.GPIO_Mode = GPIO_Mode_IPD;
gpio_init.GPIO_Pin = GPIO_Pin_0;
GPIO_Init(GPIOA, &gpio_init);
// PE2 PE3 PE4
gpio_init.GPIO_Speed = GPIO_Speed_50MHz;
gpio_init.GPIO_Mode = GPIO_Mode_IPU;
gpio_init.GPIO_Pin = GPIO_Pin_2 | GPIO_Pin_3 | GPIO_Pin_4;
GPIO_Init(GPIOA, &gpio_init);
}
// LED 数码管
inline void gpio_config_led(void) {
// PC7 ~ PC0
gpio_init.GPIO_Speed = GPIO_Speed_50MHz;
gpio_init.GPIO_Mode = GPIO_Mode_Out_PP;
gpio_init.GPIO_Pin = GPIO_Pin_0 | GPIO_Pin_1 | GPIO_Pin_2 | GPIO_Pin_3
| GPIO_Pin_4 | GPIO_Pin_5 | GPIO_Pin_6 | GPIO_Pin_7;
GPIO_Init(GPIOC, &gpio_init);
}
// 蜂鸣器PWM输出
inline void gpio_config_beep_pwm(void) {
// PB5 使用PWM驱动
gpio_init.GPIO_Speed = GPIO_Speed_50MHz;
gpio_init.GPIO_Mode = GPIO_Mode_AF_PP;
gpio_init.GPIO_Pin = GPIO_Pin_5;
GPIO_Init(GPIOB, &gpio_init);
}
// 风扇PWM输出
inline void gpio_config_fan_pwm(void) {
// PB8 使用PWM驱动
gpio_init.GPIO_Speed = GPIO_Speed_50MHz;
gpio_init.GPIO_Mode = GPIO_Mode_AF_PP;
gpio_init.GPIO_Pin = GPIO_Pin_8;
GPIO_Init(GPIOB, &gpio_init);
}
// E6A2 光电编码器
inline void gpio_config_e6a2(void) {
gpio_init.GPIO_Speed = GPIO_Speed_50MHz;
gpio_init.GPIO_Mode = GPIO_Mode_IPU;
gpio_init.GPIO_Pin = GPIO_Pin_6 | GPIO_Pin_7;
GPIO_Init(GPIOB, &gpio_init);
}
// TB6560 步进电机驱动板
inline void gpio_config_tb6560(void) {
// 3根线 EN+ CW+ CLK+ PB10 PA11 PA12
gpio_init.GPIO_Speed = GPIO_Speed_50MHz;
gpio_init.GPIO_Mode = GPIO_Mode_Out_PP;
gpio_init.GPIO_Pin = GPIO_Pin_11 | GPIO_Pin_12;
GPIO_Init(GPIOA, &gpio_init);
gpio_init.GPIO_Pin = GPIO_Pin_10;
GPIO_Init(GPIOB, &gpio_init);
}
// 串口1
inline void gpio_config_usart1(void) {
// 初始化 USART1使用的GPIO PA9输出(TX) PA10 输入(RX)
gpio_init.GPIO_Speed = GPIO_Speed_50MHz;
gpio_init.GPIO_Mode = GPIO_Mode_AF_PP; // 复用推挽输出
gpio_init.GPIO_Pin = GPIO_Pin_9; // TX
GPIO_Init(GPIOA, &gpio_init);
gpio_init.GPIO_Mode = GPIO_Mode_IN_FLOATING; // 浮空输入
gpio_init.GPIO_Pin = GPIO_Pin_10; // RX
GPIO_Init(GPIOA, &gpio_init);
}
// 触摸屏 用来检测是否触摸的信号线
inline void gpio_config_touch_pen(void) {
// TOUCH_PEN PD7
gpio_init.GPIO_Speed = GPIO_Speed_50MHz;
gpio_init.GPIO_Mode = GPIO_Mode_IPU; // 上拉输入
gpio_init.GPIO_Pin = GPIO_Pin_7;
GPIO_Init(GPIOD, &gpio_init);
}
// SPI 1 2 总线初始化
inline void gpio_config_spi(void) {
// SPI1 PA5 PA6 PA7
gpio_init.GPIO_Speed = GPIO_Speed_50MHz;
gpio_init.GPIO_Mode = GPIO_Mode_AF_PP; // 复用推挽输出
gpio_init.GPIO_Pin = GPIO_Pin_5 | GPIO_Pin_6 | GPIO_Pin_7;
GPIO_Init(GPIOA, &gpio_init);
GPIO_SetBits(GPIOA, GPIO_Pin_5 | GPIO_Pin_6 | GPIO_Pin_7);
// SPI2 PB13 PB14 PB15
gpio_init.GPIO_Speed = GPIO_Speed_50MHz;
gpio_init.GPIO_Mode = GPIO_Mode_AF_PP; // 复用推挽输出
gpio_init.GPIO_Pin = GPIO_Pin_13 | GPIO_Pin_14 | GPIO_Pin_15;
GPIO_Init(GPIOB, &gpio_init);
// 使用SPI1的模块信号线
// TOUCH_CS PD6
gpio_init.GPIO_Mode = GPIO_Mode_Out_PP; // 推挽输出
gpio_init.GPIO_Pin = GPIO_Pin_6;
GPIO_Init(GPIOD, &gpio_init);
GPIO_SetBits(GPIOD, GPIO_Pin_6);
// 使用SPI2的模块信号线
// SD_CS PG14
// FLASH_CS PG13
gpio_init.GPIO_Mode = GPIO_Mode_Out_PP; // 推挽输出
gpio_init.GPIO_Pin = GPIO_Pin_14 | GPIO_Pin_13;
GPIO_Init(GPIOG, &gpio_init);
GPIO_SetBits(GPIOG, GPIO_Pin_13);
GPIO_SetBits(GPIOG, GPIO_Pin_14);
// ENC28J60_CS PB12
gpio_init.GPIO_Pin = GPIO_Pin_12;
GPIO_Init(GPIOB, &gpio_init);
GPIO_SetBits(GPIOB, GPIO_Pin_12);
}
// FSMC模块
inline void gpio_config_fsmc(void) {
gpio_init.GPIO_Speed = GPIO_Speed_50MHz;
gpio_init.GPIO_Mode = GPIO_Mode_AF_PP;
// PD0 FSMC_D2
// PD1 FSMC_D3
// PD4 FSMC_NOE
// PD5 FSMC_NWE
// PD8 FSMC_D13
// PD9 FSMC_D14
// PD10 FSMC_D15
// PD11 FSMC_A16
// PD12 FSMC_A17
// PD13 FSMC_A18
// PD14 FSMC_D0
// PD15 FSMC_D1
gpio_init.GPIO_Pin = GPIO_Pin_All
& ~(GPIO_Pin_2 | GPIO_Pin_3 | GPIO_Pin_6 | GPIO_Pin_7);
GPIO_Init(GPIOD, &gpio_init);
// PE0 FSMC_NBL0
// PE1 FSMC_NBL1
// PE7 FSMC_D4
// PE8 FSMC_D5
// PE9 FSMC_D6
// PE10 FSMC_D7
// PE11 FSMC_D8
// PE12 FSMC_D9
// PE13 FSMC_D10
// PE14 FSMC_D11
// PE15 FSMC_D12
gpio_init.GPIO_Pin = GPIO_Pin_All & ~( GPIO_Pin_2 | GPIO_Pin_3)
& ~(GPIO_Pin_4 | GPIO_Pin_5 | GPIO_Pin_6);
GPIO_Init(GPIOE, &gpio_init);
// PF0 FSMC_A0
// PF1 FSMC_A1
// PF2 FSMC_A2
// PF3 FSMC_A3
// PF4 FSMC_A4
// PF5 FSMC_A5
// PF12 FSMC_A6
// PF13 FSMC_A7
// PF14 FSMC_A8
// PF15 FSMC_A9
gpio_init.GPIO_Pin = GPIO_Pin_All & ~( GPIO_Pin_6 | GPIO_Pin_7)
& ~(GPIO_Pin_8 | GPIO_Pin_9 | GPIO_Pin_10 | GPIO_Pin_11);
GPIO_Init(GPIOF, &gpio_init);
// PG0 FSMC_A10
// PG1 FSMC_A11
// PG2 FSMC_A12
// PG3 FSMC_A13
// PG4 FSMC_A14
// PG5 FSMC_A15
// PG10 FSMC_NE3
// PG12 FSMC_NE4
gpio_init.GPIO_Pin = GPIO_Pin_0 | GPIO_Pin_1 | GPIO_Pin_2 | GPIO_Pin_3
| GPIO_Pin_4 | GPIO_Pin_5 | GPIO_Pin_10 | GPIO_Pin_12;
GPIO_Init(GPIOG, &gpio_init);
}
// 初始化
extern void gpio_config(void) {
// GPIO 时钟使能
RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO, ENABLE);
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE);
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC, ENABLE);
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOD, ENABLE);
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOE, ENABLE);
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOF, ENABLE);
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOG, ENABLE);
//各项外设GPIO初始化
gpio_config_key();
gpio_config_led();
gpio_config_beep_pwm();
gpio_config_fan_pwm();
gpio_config_usart1();
gpio_config_touch_pen();
gpio_config_spi();
gpio_config_fsmc();
gpio_config_e6a2();
gpio_config_tb6560();
}
}
}
| 28.349282 | 71 | 0.741941 | QIU1995NONAME |
8c77496126f518e77faa8e0bdc5bdb90393f9d1e | 545 | cpp | C++ | uri-online-judge/1457/main.cpp | olegon/online-judges | 4ec27c8940ae492ce71aec0cc9ed944b094bce55 | [
"MIT"
] | 12 | 2017-11-30T11:10:45.000Z | 2022-01-26T23:49:19.000Z | uri-online-judge/1457/main.cpp | olegon/online-judges | 4ec27c8940ae492ce71aec0cc9ed944b094bce55 | [
"MIT"
] | null | null | null | uri-online-judge/1457/main.cpp | olegon/online-judges | 4ec27c8940ae492ce71aec0cc9ed944b094bce55 | [
"MIT"
] | 4 | 2017-11-25T03:13:32.000Z | 2019-08-16T08:08:10.000Z | /*
Oráculo de Alexandria
https://www.urionlinejudge.com.br/judge/pt/problems/view/1457
*/
#include <cstdio>
using namespace std;
typedef unsigned long long int uint64;
uint64 k_fat(int N, int K);
int main(void) {
int T;
scanf("%d\n", &T);
while (T-- > 0) {
int N, K = 0;
char C;
scanf("%d", &N);
while (scanf("%c", &C), C == '!') K++;
printf("%llu\n", k_fat(N, K));
}
return 0;
}
uint64 k_fat(int N, int K) {
if (N < 2) return 1;
else return N * k_fat(N - K, K);
}
| 14.72973 | 61 | 0.522936 | olegon |
8c79eddf42d2b47d20743277e8f32b5375aa0671 | 35,329 | cpp | C++ | source/main.cpp | LiquidFenrir/MinesweeperFPS | 63f52b9c0e2ee6c9e9d6a489535fd2411df17637 | [
"MIT"
] | 8 | 2020-08-25T19:30:41.000Z | 2021-12-10T20:11:28.000Z | source/main.cpp | LiquidFenrir/MinesweeeperFPS | 63f52b9c0e2ee6c9e9d6a489535fd2411df17637 | [
"MIT"
] | 1 | 2020-08-28T14:52:51.000Z | 2020-08-29T12:28:33.000Z | source/main.cpp | LiquidFenrir/MinesweeeperFPS | 63f52b9c0e2ee6c9e9d6a489535fd2411df17637 | [
"MIT"
] | 2 | 2020-08-26T18:07:28.000Z | 2021-12-10T20:11:24.000Z | #define IMGUI_DISABLE_OBSOLETE_FUNCTIONS
#ifdef __SWITCH__
#include <switch.h>
#endif
#include <enet/enet.h>
#include <glm/gtc/matrix_transform.hpp>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <memory>
#include <tuple>
#include <array>
#include <algorithm>
extern "C" {
#include <sys/stat.h>
}
#ifdef __MINGW32__
#include "mingw.thread.h"
#else
#include <thread>
#endif
#include <chrono>
#include "graphics_includes.h"
#include "globjects.h"
#include "focus.h"
#include "game_limits.h"
#include "server.h"
#include "client.h"
#include "globjects.h"
#include "icon.png.h"
#include "base_skin.png.h"
#include "spritesheet.png.h"
#include "shader.h"
#include "shader_fsh.glsl.h"
#include "flat_shader_vsh.glsl.h"
#include "world_shader_vsh.glsl.h"
inline constexpr std::string_view CONFIG_VERSION = "v02";
void glCheckError_(const char *file, int line)
{
int errorCode;
while ((errorCode = glGetError()) != GL_NO_ERROR)
{
switch (errorCode)
{
case GL_INVALID_ENUM: fprintf(stderr, "%s", "INVALID_ENUM"); break;
case GL_INVALID_VALUE: fprintf(stderr, "%s", "INVALID_VALUE"); break;
case GL_INVALID_OPERATION: fprintf(stderr, "%s", "INVALID_OPERATION"); break;
case GL_STACK_OVERFLOW: fprintf(stderr, "%s", "STACK_OVERFLOW"); break;
case GL_STACK_UNDERFLOW: fprintf(stderr, "%s", "STACK_UNDERFLOW"); break;
case GL_OUT_OF_MEMORY: fprintf(stderr, "%s", "OUT_OF_MEMORY"); break;
case GL_INVALID_FRAMEBUFFER_OPERATION: fprintf(stderr, "%s", "INVALID_FRAMEBUFFER_OPERATION"); break;
}
fprintf(stderr, " | %s (%d)\n", file, line);
}
}
static void glfw_error_callback(int error, const char* description)
{
fprintf(stderr, "Glfw Error %d: %s\n", error, description);
}
static bool check_username_char_valid(const char c)
{
return (c == '_' || c== ' ' || (c >= '0' && c <= '9') || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'));
}
static int username_callback(ImGuiInputTextCallbackData* data)
{
if(auto c = data->EventChar; !check_username_char_valid(c))
{
return 1;
}
return 0;
}
static void server_thread_func(std::unique_ptr<MineServer>&& srv_ptr)
{
std::unique_ptr<MineServer> server = std::move(srv_ptr);
const auto first_upd = std::chrono::steady_clock::now();
auto last_upd = first_upd;
bool first_tick = true;
while(!server->should_shutdown())
{
if(server->is_all_set) {
auto now = std::chrono::steady_clock::now();
if(first_tick)
{
last_upd = now;
first_tick = false;
}
if(const float deltaTime = std::chrono::duration<float>{now - last_upd}.count(); deltaTime >= TIME_PER_TICK * 2.0f)
{
server->update(deltaTime);
server->send_update();
last_upd = now;
}
}
server->receive();
}
}
struct WindowDeleter {
void operator()(GLFWwindow* w)
{
glfwDestroyWindow(w);
}
};
using WindowPtr = std::unique_ptr<GLFWwindow, WindowDeleter>;
static void do_graphical(std::string filepath, const char* skinpath)
{
GLFWmonitor* primary = glfwGetPrimaryMonitor();
int total_resolutions;
const GLFWvidmode* m = glfwGetVideoModes(primary, &total_resolutions);
std::vector<std::pair<int, int>> resolution_results;
for(auto mp = m; mp != m + total_resolutions; ++mp)
{
const auto& m = *mp;
auto p = std::make_pair(m.width, m.height);
if(std::find(resolution_results.cbegin(), resolution_results.cend(), p) == resolution_results.cend())
{
resolution_results.push_back(std::move(p));
}
}
total_resolutions = resolution_results.size();
std::sort(resolution_results.begin(), resolution_results.end());
const std::string possible_resolutions_str = [&]() {
std::string s;
for(const auto& [w, h] : resolution_results)
{
s += std::to_string(w) + "x" + std::to_string(h) + '\0';
}
return s;
}();
const std::vector<const char*> possible_resolutions = [&]() {
std::vector<const char*> v;
std::string_view sv{possible_resolutions_str};
for(int i = 0; i < total_resolutions; ++i)
{
v.push_back(sv.data());
sv.remove_prefix(sv.find('\0', 3) + 1);
}
return v;
}();
int current_resolution = 0;
// Decide GL+GLSL versions
// GL 3.0 + GLSL 330
#ifndef __SWITCH__
const char* glsl_version = "#version 330 core";
#else
const char* glsl_version = "#version 300 es";
#endif
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE); // 3.2+ only
glfwWindowHint(GLFW_RESIZABLE, GLFW_FALSE);
const auto [initial_w, initial_h] = resolution_results[current_resolution];
// Create window with graphics context
WindowPtr window_holder(glfwCreateWindow(initial_w, initial_h, "MinesweeperFPS v1.2", nullptr, nullptr));
if(!window_holder)
return;
auto window = window_holder.get();
glfwMakeContextCurrent(window);
// Initialize OpenGL loader
bool err = gladLoadGLLoader((GLADloadproc)glfwGetProcAddress) == 0;
if(err)
{
fprintf(stderr, "Failed to initialize OpenGL loader!\n");
return;
}
glfwSwapInterval(1); // Enable vsync
GLFWimage icon_image;
const auto& [icon_image_width, icon_image_height, icon_image_pixels] = Images::icon;
auto icon_pixels = std::make_unique<unsigned char[]>(icon_image_pixels.size());
memcpy(icon_pixels.get(), icon_image_pixels.data(), icon_image_pixels.size());
std::tie(icon_image.width, icon_image.height, icon_image.pixels) = std::tuple(icon_image_width, icon_image_height, icon_pixels.get());
glfwSetWindowIcon(window, 1, &icon_image);
glfwSetWindowFocusCallback(window, Focus::callback);
glfwSetInputMode(window, GLFW_STICKY_KEYS, GLFW_TRUE);
glfwSetInputMode(window, GLFW_STICKY_MOUSE_BUTTONS, GLFW_TRUE);
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
// Setup Dear ImGui context
IMGUI_CHECKVERSION();
ImGui::CreateContext();
ImGuiIO& io = ImGui::GetIO();
io.IniFilename = nullptr;
io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard; // Enable Keyboard Controls
io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad; // Enable Gamepad Controls
// Setup Dear ImGui style
ImGui::StyleColorsDark();
// Setup Platform/Renderer bindings
ImGui_ImplGlfw_InitForOpenGL(window, true);
ImGui_ImplOpenGL3_Init(glsl_version);
// Our state
{
constexpr std::string_view world_vsh_shader(Shaders::world_shader_vsh.data(), Shaders::world_shader_vsh.size());
constexpr std::string_view flat_vsh_shader(Shaders::flat_shader_vsh.data(), Shaders::flat_shader_vsh.size());
constexpr std::string_view fsh_shader(Shaders::shader_fsh.data(), Shaders::shader_fsh.size());
Shader worldShader(world_vsh_shader, fsh_shader);
Shader flatShader(flat_vsh_shader, fsh_shader);
const auto& [tex_width, tex_height, tex_data] = Images::spritesheet;
glActiveTexture(GL_TEXTURE0);
Texture spritesheet(tex_width, tex_height, tex_data.data());
const auto& [skin_width, skin_height, skin_data] = Images::base_skin;
Texture default_skin(skin_width, skin_height, skin_data.data());
flatShader.use();
flatShader.setInt("texture1", 0);
worldShader.use();
worldShader.setInt("texture1", 0);
char username[MAX_NAME_LEN + 1] = {0};
const auto set_username = [](char* usr) {
#ifdef __SWITCH__
Result rc = accountInitialize(AccountServiceType_Application);
if(R_FAILED(rc)) return;
AccountUid userID={0};
AccountProfile profile;
AccountUserData userdata;
AccountProfileBase profilebase;
rc = accountGetPreselectedUser(&userID);
if(R_SUCCEEDED(rc))
{
rc = accountGetProfile(&profile, userID);
if(R_SUCCEEDED(rc))
{
rc = accountProfileGet(&profile, &userdata, &profilebase);//userdata is otional, see libnx acc.h.
if(R_SUCCEEDED(rc))
{
for(size_t i = 0, o = 0; i < MAX_NAME_LEN; ++i)
{
const char c = profilebase.nickname[i];
if(c & 0x80) // remove all utf-8 characters, only ascii here
{
if(c & 0x40)
{
++i;
if(c & 0x20)
{
++i;
if(c & 0x10)
{
++i;
}
}
}
}
else if(check_username_char_valid(c)) // and even then, only a subset of ascii (alphanumeric + _ + space)
{
usr[o] = c;
++o;
}
}
}
accountProfileClose(&profile);
}
}
accountExit();
#endif
if(usr[0] == 0) strncpy(usr, "Player", MAX_NAME_LEN);
};
set_username(username);
char server_address[2048] = {0};
std::array<float, 4> crosshair_color{{
0.25f, 0.25f, 0.25f, 0.75f
}};
std::thread server_thread;
std::unique_ptr<MineClient> client;
enum class MenuScreen {
Main,
Settings,
Server,
CoOpClient,
SPClient,
StartingServer,
StartingLocalServer,
StartingClient,
InGame,
AfterGame,
};
MenuScreen screen = MenuScreen::Main;
const auto main_window_flags = ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoCollapse;
const auto extra_window_flags = ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoCollapse;
bool closed_extra_window = true;
bool in_esc_menu = false;
bool is_typing = false;
bool released_esc = false;
bool first_frame = false;
bool start_client = false, start_server = false;
bool fullscreen = false;
std::vector<std::unique_ptr<char[]>> out_chat;
float mouse_sensitivity = 3.5f;
int fov = 60;
int crosshair_distance = 5;
int crosshair_width = 8;
int crosshair_length = 20;
int minimap_scale = 10;
int overlay_w = 25;
int overlay_h = 50;
int map_width = 15, map_height = 15, bombs_percent = 10, player_amount = 2;
int window_x = 0, window_y = 0;
float client_start_time = 0.0f;
bool modified_config = false;
const auto load_config = [&]() {
fprintf(stderr, "Attempting to load config from: '%s'\n", filepath.c_str());
struct stat s;
if(stat(filepath.c_str(), &s) < 0)
{
modified_config = true;
}
else if(FILE* fh = fopen(filepath.c_str(), "r"); fh != nullptr)
{
auto buf = std::make_unique<char[]>(s.st_size);
size_t rsize = fread(buf.get(), 1, s.st_size, fh);
fclose(fh);
std::string_view sv(buf.get(), rsize);
if(sv.compare(0, CONFIG_VERSION.size(), CONFIG_VERSION) == 0)
{
sv = sv.substr(CONFIG_VERSION.size() + 1); // + 1 for ';'
while(sv.size() > 0)
{
const char front = sv.front();
sv = sv.substr(2);
const size_t len = sv.find_first_of(';');
const auto val = sv.substr(0, len);
constexpr auto convert_to_float = [](auto val) { return std::stof(std::string(val)); };
constexpr auto convert_to_int = [](auto val) { return std::stoi(std::string(val)); };
switch(front)
{
case 'n':
memset(username, 0, MAX_NAME_LEN);
strncpy(username, val.data(), std::min(MAX_NAME_LEN, len));
break;
#define MAP_TO(constant, out, conv) case constant: out = conv(val); break;
MAP_TO('r', crosshair_color[0], convert_to_float)
MAP_TO('g', crosshair_color[1], convert_to_float)
MAP_TO('b', crosshair_color[2], convert_to_float)
MAP_TO('a', crosshair_color[3], convert_to_float)
MAP_TO('S', mouse_sensitivity, convert_to_float)
MAP_TO('d', crosshair_distance, convert_to_int)
MAP_TO('w', crosshair_width, convert_to_int)
MAP_TO('l', crosshair_length, convert_to_int)
MAP_TO('W', overlay_w, convert_to_int)
MAP_TO('H', overlay_h, convert_to_int)
MAP_TO('Z', minimap_scale, convert_to_int)
MAP_TO('F', fov, convert_to_int)
#undef MAP_TO
default:
break;
}
sv = sv.substr(len + 1);
}
}
}
else
{
modified_config = true;
}
};
load_config();
std::string typed_text;
auto last_int_upd = std::chrono::steady_clock::now();
auto last_ext_upd = last_int_upd;
// Main loop
while(!glfwWindowShouldClose(window))
{
// Poll and handle events (inputs, window resize, etc.)
// You can read the io.WantCaptureMouse, io.WantCaptureKeyboard flags to tell if dear imgui wants to use your inputs.
// - When io.WantCaptureMouse is true, do not dispatch mouse input data to your main application.
// - When io.WantCaptureKeyboard is true, do not dispatch keyboard input data to your main application.
// Generally you may always pass all inputs to dear imgui, and hide them from your application based on those two flags.
glfwPollEvents();
int display_w, display_h;
glfwGetFramebufferSize(window, &display_w, &display_h);
// Start the Dear ImGui frame
auto start_imgui_frame = [](){
ImGui_ImplOpenGL3_NewFrame();
ImGui_ImplGlfw_NewFrame();
ImGui::NewFrame();
ImVec2 center(ImGui::GetIO().DisplaySize.x * 0.5f, ImGui::GetIO().DisplaySize.y * 0.5f);
ImVec2 sz(ImGui::GetIO().DisplaySize.x * 0.75f, ImGui::GetIO().DisplaySize.y * 0.75f);
ImGui::SetNextWindowPos(center, ImGuiCond_Appearing, ImVec2(0.5f, 0.5f));
ImGui::SetNextWindowSize(center);
};
const MineClient::State st = client ? client->get_state() : MineClient::State::NotConnected;
const auto now = std::chrono::steady_clock::now();
const auto lastComm = std::chrono::duration<float>{now - last_ext_upd}.count();
const auto deltaTime = std::chrono::duration<float>{now - last_int_upd}.count();
const auto prev_screen = screen;
if(screen == MenuScreen::InGame)
{
if(st != MineClient::State::Playing || lastComm >= TIME_PER_TICK)
{
ENetEvent event;
if(client->host && enet_host_service(client->host.get(), &event, 1))
{
switch(event.type)
{
case ENET_EVENT_TYPE_CONNECT:
// connection succeeded
break;
case ENET_EVENT_TYPE_RECEIVE:
client->receive_packet(event.packet->data, event.packet->dataLength, out_chat);
// Clean up the packet now that we're done using it.
enet_packet_destroy(event.packet);
break;
case ENET_EVENT_TYPE_DISCONNECT:
client->disconnect(true);
break;
}
}
}
if(st == MineClient::State::NotConnected)
{
start_imgui_frame();
int timeout = 5 - int(glfwGetTime() - client_start_time);
if(timeout == 0) client->cancel();
ImGui::Begin("Waiting for server", nullptr, extra_window_flags);
ImGui::Text("Please wait for the connection to the server to complete.");
ImGui::Text("Timeout in %d second%s.", timeout, timeout == 1 ? "" : "s");
ImGui::End();
}
else if(st == MineClient::State::Waiting)
{
start_imgui_frame();
ImGui::Begin("Waiting for players", nullptr, extra_window_flags);
ImGui::Text("Please wait for the other players to join.");
ImGui::End();
}
else if(st == MineClient::State::Playing)
{
auto set_controls_for_game = [&]() -> void {
glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_DISABLED);
};
if(first_frame)
{
first_frame = false;
set_controls_for_game();
}
if(in_esc_menu)
{
start_imgui_frame();
ImGui::Begin("Pause menu", &closed_extra_window, extra_window_flags);
if(ImGui::SliderInt("HUD width", &overlay_w, 5, 45)) modified_config = true;
if(ImGui::SliderInt("HUD height", &overlay_h, 10, 90)) modified_config = true;
if(ImGui::SliderInt("Minimap zoom", &minimap_scale, 0, 20)) modified_config = true;
ImGui::Spacing();
if(ImGui::SliderInt("Field of View", &fov, 30, 90)) modified_config = true;
ImGui::Spacing();
if(ImGui::SliderFloat("Mouse sensitivity", &mouse_sensitivity, 0.5f, 5.0f)) modified_config = true;
if(ImGui::SliderInt("Crosshair thickness", &crosshair_width, 4, 16)) modified_config = true;
if(ImGui::SliderInt("Crosshair size", &crosshair_length, 8, 35)) modified_config = true;
if(ImGui::SliderInt("Crosshair space", &crosshair_distance, 4, 12)) modified_config = true;
ImGui::Separator();
if(ImGui::Button("Back to game")) in_esc_menu = false;
ImGui::SameLine();
if(ImGui::Button("Back to main menu")) client->disconnect(true);
ImGui::Text("Application average %.3f ms/frame (%.1f FPS)", 1000.0f / ImGui::GetIO().Framerate, ImGui::GetIO().Framerate);
ImGui::End();
if(!closed_extra_window)
{
closed_extra_window = true;
in_esc_menu = false;
}
if(glfwGetKey(window, GLFW_KEY_ESCAPE) == GLFW_PRESS)
{
if(released_esc)
{
in_esc_menu = false;
released_esc = false;
}
}
else
{
released_esc = true;
}
if(!in_esc_menu) set_controls_for_game();
}
if(deltaTime >= 1.0f/60.0f)
{
client->handle_events(window, mouse_sensitivity/20.0f, display_w, display_h, in_esc_menu, released_esc, is_typing, deltaTime);
if(in_esc_menu)
{
glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_NORMAL);
}
last_int_upd = now;
}
}
else
{
glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_NORMAL);
if(client->host) client->disconnect(false);
screen = MenuScreen::AfterGame;
}
}
else if(screen == MenuScreen::AfterGame)
{
auto exit_lambda = [&]() {
screen = MenuScreen::Main;
client = nullptr;
if(server_thread.joinable()) server_thread.join();
};
start_imgui_frame();
if(st == MineClient::State::Cancelled)
{
ImGui::Begin("Your connection was cancelled.", &closed_extra_window, extra_window_flags);
if(ImGui::Button("Back to main menu")) exit_lambda();
ImGui::SameLine();
if(ImGui::Button("Quit game")) glfwSetWindowShouldClose(window, true);
ImGui::End();
}
if(st == MineClient::State::Lost)
{
ImGui::Begin("You lost to the mines!", &closed_extra_window, extra_window_flags);
ImGui::Text("What a shame, you didn't win this time! Better luck on the next one.");
ImGui::Text("Loss in %02d min%s %02d second%s",
client->sc_packet.minutes, client->sc_packet.minutes == 1 ? "" : "s",
client->sc_packet.seconds, client->sc_packet.seconds == 1 ? "" : "s");
ImGui::Separator();
if(ImGui::Button("Back to main menu")) exit_lambda();
ImGui::SameLine();
if(ImGui::Button("Quit game")) glfwSetWindowShouldClose(window, true);
ImGui::End();
}
else if(st == MineClient::State::Won)
{
ImGui::Begin("You won!", &closed_extra_window, extra_window_flags);
ImGui::Text("Congratulations! Maybe challenge yourself with a bigger field?");
ImGui::Text("Victory in %02d min%s %02d second%s",
client->sc_packet.minutes, client->sc_packet.minutes == 1 ? "" : "s",
client->sc_packet.seconds, client->sc_packet.seconds == 1 ? "" : "s");
ImGui::Separator();
if(ImGui::Button("Back to main menu")) exit_lambda();
ImGui::SameLine();
if(ImGui::Button("Quit game")) glfwSetWindowShouldClose(window, true);
ImGui::End();
}
else if(st == MineClient::State::Disconnected)
{
ImGui::Begin("You were disconnected.", &closed_extra_window, extra_window_flags);
ImGui::Text("You were disconnected from the server.");
ImGui::Separator();
if(ImGui::Button("Back to main menu")) exit_lambda();
ImGui::SameLine();
if(ImGui::Button("Quit game")) glfwSetWindowShouldClose(window, true);
ImGui::End();
}
if(!closed_extra_window)
{
closed_extra_window = true;
client = nullptr;
exit_lambda();
}
}
else
{
if(start_client)
{
size_t l = strnlen(username, MAX_NAME_LEN);
if(l < MAX_NAME_LEN) memset(username + l, 0, MAX_NAME_LEN - l);
client = std::make_unique<MineClient>(server_address, skinpath, default_skin, crosshair_color, username);
client_start_time = glfwGetTime();
start_client = false;
in_esc_menu = false;
first_frame = true;
screen = MenuScreen::InGame;
}
if(start_server)
{
server_thread = std::thread(server_thread_func, std::make_unique<MineServer>(map_width, map_height, bombs_percent, player_amount));
std::this_thread::sleep_for(std::chrono::milliseconds(250));
std::fill(std::begin(server_address), std::end(server_address), '\0');
player_amount = player_amount == 1 ? 2 : player_amount;
start_server = false;
screen = MenuScreen::StartingClient;
}
if(screen != MenuScreen::InGame) start_imgui_frame();
if(screen == MenuScreen::Main)
{
ImGui::Begin("Welcome to MinesweeperFPS v1.1!", nullptr, main_window_flags);
ImGui::Text("This is a clone of Minesweeper, where you play in a first person view!");
ImGui::Text("It also supports playing with friends, to make large maps easier.");
ImGui::Separator();
if(ImGui::Button("Edit settings")) screen = MenuScreen::Settings;
if(ImGui::Button("Play singleplayer")) screen = MenuScreen::SPClient;
if(ImGui::Button("Host coop server")) screen = MenuScreen::Server;
if(ImGui::Button("Join coop server")) screen = MenuScreen::CoOpClient;
ImGui::Separator();
if(ImGui::Button("Quit game")) glfwSetWindowShouldClose(window, true);
ImGui::Text("Application average %.3f ms/frame (%.1f FPS)", 1000.0f / ImGui::GetIO().Framerate, ImGui::GetIO().Framerate);
ImGui::End();
}
else if(screen == MenuScreen::Settings)
{
ImGui::Begin("Settings", &closed_extra_window, extra_window_flags);
ImGui::Text("Player settings");
if(ImGui::InputText("Player name", username, MAX_NAME_LEN, ImGuiInputTextFlags_CallbackCharFilter, username_callback))
{
modified_config = true;
}
if(ImGui::ColorEdit4("Crosshair color", crosshair_color.data(), ImGuiColorEditFlags_AlphaBar | ImGuiColorEditFlags_AlphaPreview))
{
modified_config = true;
}
if(total_resolutions > 1)
{
ImGui::Spacing();
ImGui::Text("Graphics settings");
if(ImGui::Checkbox("Fullscreen", &fullscreen))
{
if(fullscreen)
{
GLFWmonitor* monitor = glfwGetPrimaryMonitor();
const GLFWvidmode* mode = glfwGetVideoMode(monitor);
glfwGetWindowPos(window, &window_x, &window_y);
glfwSetWindowMonitor(window, monitor, 0, 0, mode->width, mode->height, 60);
}
else
{
const auto& [resolution_x, resolution_y] = resolution_results[current_resolution];
glfwSetWindowMonitor(window, nullptr, window_x, window_y, resolution_x, resolution_y, 60);
}
}
if(!fullscreen)
{
if(ImGui::Combo("Resolution", ¤t_resolution, possible_resolutions.data(), total_resolutions))
{
const auto& [resolution_x, resolution_y] = resolution_results[current_resolution];
glfwSetWindowSize(window, resolution_x, resolution_y);
}
}
}
ImGui::Separator();
if(ImGui::Button("Back")) screen = MenuScreen::Main;
ImGui::End();
}
else if(screen == MenuScreen::Server)
{
ImGui::Begin("Host", &closed_extra_window, extra_window_flags);
ImGui::SliderInt("Map width", &map_width, Limits::Min::Width, Limits::Max::Width);
ImGui::SliderInt("Map height", &map_height, Limits::Min::Height, Limits::Max::Height);
ImGui::SliderInt("Bomb %", &bombs_percent, Limits::Min::BombPercent, Limits::Max::BombPercent);
ImGui::Spacing();
ImGui::SliderInt("Players", &player_amount, Limits::Min::Players, Limits::Max::Players);
ImGui::Separator();
if(ImGui::Button("Start")) screen = MenuScreen::StartingServer;
ImGui::SameLine();
if(ImGui::Button("Back")) screen = MenuScreen::Main;
ImGui::End();
}
else if(screen == MenuScreen::CoOpClient)
{
ImGui::Begin("Join", &closed_extra_window, extra_window_flags);
ImGui::InputText("Server address", server_address, IM_ARRAYSIZE(server_address));
ImGui::Separator();
if(ImGui::Button("Join")) screen = MenuScreen::StartingClient;
ImGui::SameLine();
if(ImGui::Button("Back")) screen = MenuScreen::Main;
ImGui::End();
}
else if(screen == MenuScreen::SPClient)
{
ImGui::Begin("Singleplayer", &closed_extra_window, extra_window_flags);
ImGui::SliderInt("Map width", &map_width, Limits::Min::Width, Limits::Max::Width);
ImGui::SliderInt("Map height", &map_height, Limits::Min::Height, Limits::Max::Height);
ImGui::SliderInt("Bomb %", &bombs_percent, Limits::Min::BombPercent, Limits::Max::BombPercent);
ImGui::Separator();
if(ImGui::Button("Start")) screen = MenuScreen::StartingLocalServer;
ImGui::SameLine();
if(ImGui::Button("Back")) screen = MenuScreen::Main;
ImGui::End();
}
else if(screen == MenuScreen::StartingServer)
{
ImGui::Begin("Starting co-op server", nullptr, main_window_flags);
ImGui::Text("Please wait...");
ImGui::End();
start_server = true;
}
else if(screen == MenuScreen::StartingLocalServer)
{
ImGui::Begin("Starting local server", nullptr, main_window_flags);
ImGui::Text("Please wait...");
ImGui::End();
player_amount = 1;
start_server = true;
}
else if(screen == MenuScreen::StartingClient)
{
ImGui::Begin("Starting client", nullptr, main_window_flags);
ImGui::Text("Please wait...");
ImGui::End();
start_client = true;
}
if(!closed_extra_window)
{
screen = MenuScreen::Main;
closed_extra_window = true;
}
}
glViewport(0, 0, display_w, display_h);
glClearColor(0.0f, 148.0f/255.0f, 1.0f, 1.0f);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
if(client && st == MineClient::State::Playing)
{
MineClient::RenderInfo info{
worldShader, flatShader, spritesheet, display_w, display_h,
crosshair_distance, crosshair_width, crosshair_length,
minimap_scale,
overlay_w, overlay_h,
fov
};
client->render(info);
if(lastComm >= (TIME_PER_TICK * 2.0f))
{
client->send();
last_ext_upd = now;
}
}
if((screen == MenuScreen::AfterGame && prev_screen == screen) || (screen != MenuScreen::InGame && screen != MenuScreen::AfterGame) || st != MineClient::State::Playing || in_esc_menu)
{
ImGui::Render();
ImGui_ImplOpenGL3_RenderDrawData(ImGui::GetDrawData());
}
glfwSwapBuffers(window);
}
if(server_thread.joinable()) server_thread.join();
if(modified_config)
{
if(FILE* fh = fopen(filepath.c_str(), "w"); fh != nullptr)
{
std::string to_write(CONFIG_VERSION.data(), CONFIG_VERSION.size());
to_write += ';';
#define ADD(constant, in) { \
to_write += constant; \
to_write += ':'; \
to_write += in; \
to_write += ';'; \
}
#define MAP_TO(constant, in) ADD(constant, std::to_string(in))
ADD('n', username)
MAP_TO('r', crosshair_color[0])
MAP_TO('g', crosshair_color[1])
MAP_TO('b', crosshair_color[2])
MAP_TO('a', crosshair_color[3])
MAP_TO('S', mouse_sensitivity)
MAP_TO('d', crosshair_distance)
MAP_TO('w', crosshair_width)
MAP_TO('l', crosshair_length)
MAP_TO('W', overlay_w)
MAP_TO('H', overlay_h)
MAP_TO('Z', minimap_scale)
MAP_TO('F', fov)
#undef MAP_TO
#undef ADD
fwrite(to_write.c_str(), 1, to_write.size(), fh);
fclose(fh);
}
}
}
// Cleanup
ImGui_ImplOpenGL3_Shutdown();
ImGui_ImplGlfw_Shutdown();
ImGui::DestroyContext();
}
#ifndef __SWITCH__
static void do_server_alone(char** args)
{
const char* width_a = args[0];
const int width = atoi(width_a);
if(Limits::Max::Width < width || width < Limits::Min::Width) return;
const char* height_a = args[1];
const int height = atoi(height_a);
if(Limits::Max::Height < height || height < Limits::Min::Height) return;
const char* bombs_a = args[2];
const int bombs = atoi(bombs_a);
if(Limits::Max::BombPercent < bombs || bombs < Limits::Min::BombPercent) return;
const char* players_a = args[3];
const int players = atoi(players_a);
if(Limits::Max::Players < players || players < Limits::Min::Players) return;
printf("Starting server\n - width: %d\n - height: %d\n - bombs %%: %d\n - players: %d\n", width, height, bombs, players);
server_thread_func(std::make_unique<MineServer>(width, height, bombs, players));
printf("Server stopped.\n");
}
#endif
int main(int argc, char** argv)
{
if(enet_initialize () != 0)
{
fprintf(stderr, "An error occurred while initializing ENet.\n");
return 1;
}
#ifndef __SWITCH__
if(argc == 6)
{
const char* server_indicator = argv[1];
if(strcmp(server_indicator, "srv") == 0) do_server_alone(argv + 2);
}
else if(argc <= 2)
#endif
{
glfwSetErrorCallback(glfw_error_callback);
if(glfwInit())
{
std::string confpath = argv[0];
do_graphical(confpath + ".cfg", argv[1]);
glfwTerminate();
}
}
enet_deinitialize();
}
| 37.664179 | 190 | 0.538651 | LiquidFenrir |
8c7a128f7d22b05646abc7b8cd63a65e7e15b2d8 | 1,403 | hpp | C++ | include/wav.hpp | hackner-security/swd | 52376221afbe1968cf269ab5d08d18ffad41fba1 | [
"MIT"
] | 4 | 2020-09-26T12:35:28.000Z | 2021-06-13T12:22:03.000Z | include/wav.hpp | hackner-security/swd | 52376221afbe1968cf269ab5d08d18ffad41fba1 | [
"MIT"
] | null | null | null | include/wav.hpp | hackner-security/swd | 52376221afbe1968cf269ab5d08d18ffad41fba1 | [
"MIT"
] | 1 | 2020-10-27T12:11:46.000Z | 2020-10-27T12:11:46.000Z | // Copyright 2020 Barger M., Knoll M., Kofler L.
#ifndef INCLUDE_WAV_HPP_
#define INCLUDE_WAV_HPP_
#include <string>
#include <iostream>
#include <vector>
#include <fstream>
#include <iterator>
#include "log.hpp"
// WAV Header
#define WAV_HEADER_SIZE 44
struct WAV_HEADER {
// RIFF Header
char riff_magic_num[4];
uint32_t file_size;
char wav_magic_num[4];
// FMT Header
char fmt_magic_num[4];
uint32_t fmt_hdr_len;
uint16_t format_tag;
uint16_t channels;
uint32_t sample_rate;
uint32_t bytes_per_second;
uint16_t block_align;
uint16_t bits_per_sample;
// Chunk Header
char chunk_magic_num[4];
uint32_t data_block_len;
};
class Wav {
public:
// Constructor
//
// file_path: path to the wav file
Wav();
// Extracts information from a wav file
//
// return: was extraction successful
bool Read(std::string file_path);
bool Read(std::vector<int8_t> alaw_samples);
// return: samples in the file
std::vector<int16_t> GetSamples();
// return: sample rate
uint GetSampleRate();
// Prints all header information to the console
void PrintHeaderInfo();
bool IsWavFile();
double GetDuration();
private:
int16_t DecodeAlawSample(int8_t number);
void DecodeAlaw(std::vector<int8_t> alaw_samples);
std::vector<int16_t> samples;
std::string file_name;
WAV_HEADER wav_hdr;
double duration;
};
#endif // INCLUDE_WAV_HPP_
| 18.460526 | 52 | 0.71846 | hackner-security |
8c7e18ec40572d542a476ed7a78fb3aeec471826 | 1,862 | cpp | C++ | CSES/RangeQueries/forest_queries.cpp | PranavReddyP16/DSA-Templates | cb68b1ced5fd4990a413ce88cdb741fdcaa6e89b | [
"MIT"
] | null | null | null | CSES/RangeQueries/forest_queries.cpp | PranavReddyP16/DSA-Templates | cb68b1ced5fd4990a413ce88cdb741fdcaa6e89b | [
"MIT"
] | null | null | null | CSES/RangeQueries/forest_queries.cpp | PranavReddyP16/DSA-Templates | cb68b1ced5fd4990a413ce88cdb741fdcaa6e89b | [
"MIT"
] | null | null | null | #include "bits/stdc++.h"
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
using namespace std;
using namespace std::chrono;
#define ll long long
#define ld long double
#define sz(c) ((ll)c.size())
#define ordered_set tree<int, null_type,less<int>, rb_tree_tag,tree_order_statistics_node_update>
#define int ll
const ll inf = 1e18;
const int mod = 1e9 + 7;
const int mod2 = 998244353;
high_resolution_clock::time_point curTime() { return high_resolution_clock::now(); }
#define rep(i,n) for(int i=0;i<n;i++)
signed main()
{
ios_base :: sync_with_stdio(false);
cin.tie(NULL);
auto startTime = curTime();
int n;
cin>>n;
int q;
cin>>q;
vector<string> a(n);
for(int i=0;i<n;i++)
{
cin>>a[i];
}
vector<vector<int>> dp(n, vector<int> (n));
for(int i=0;i<n;i++)
{
for(int j=0;j<n;j++)
{
if(i==0 && j==0)
{
dp[i][j] = (a[i][j]=='*'? 1 : 0);
continue;
}
if(i==0) dp[i][j] = dp[i][j-1]+(a[i][j]=='*'? 1 : 0);
if(j==0) dp[i][j] = dp[i-1][j]+(a[i][j]=='*'? 1 : 0);
if(i>0&&j>0)
{
dp[i][j] = dp[i-1][j]+dp[i][j-1]-dp[i-1][j-1] + (a[i][j]=='*'?1:0);
}
}
}
while(q--)
{
int x1,x2,y1,y2;
cin>>x1>>y1>>x2>>y2;
y1--;
x1--;
y2--;
x2--;
int ans=0;
ans += dp[x2][y2];
if(x1>0) ans -= dp[x1-1][y2];
if(y1>0) ans -= dp[x2][y1-1];
if(x1*y1>0) ans += dp[x1-1][y1-1];
cout<<ans<<endl;
}
auto stopTime = curTime();
auto duration = duration_cast<microseconds>(stopTime - startTime);
//cout<<"Program ran for "<<(ld)duration.count()/1e6<<" "<<"seconds"<<endl;
}
| 21.905882 | 97 | 0.489259 | PranavReddyP16 |
8c853586a6deb2cf6b298b53ca4c42d13471719f | 492 | cpp | C++ | coding_blocks/source/blocks_example.cpp | koobonil/CodingStudy | 5a727bbcf30f30e04075ba9f86cbb9b0463a6f96 | [
"MIT"
] | 2 | 2018-03-05T03:08:40.000Z | 2020-09-13T21:57:05.000Z | coding_blocks/source/blocks_example.cpp | koobonil/CodingStudy | 5a727bbcf30f30e04075ba9f86cbb9b0463a6f96 | [
"MIT"
] | null | null | null | coding_blocks/source/blocks_example.cpp | koobonil/CodingStudy | 5a727bbcf30f30e04075ba9f86cbb9b0463a6f96 | [
"MIT"
] | null | null | null | #include <boss.hpp>
#include "blocks_example.hpp"
#include <resource.hpp>
////////////////////////////////////////////////////////////////////////////////
#define LEVEL_NUMBER LEVEL_USER
////////////////////////////////////////////////////////////////////////////////
#define STEP_NUMBER 0
MISSION_DECLARE("STEP_0")
String BlocksExample::OnInit(int& xcount, int& ycount)
{
return "";
}
void BlocksExample::OnClick(int& id)
{
}
void BlocksExample::OnRender(ZayPanel& panel, int id)
{
}
| 20.5 | 80 | 0.495935 | koobonil |
8c868b5c7c47d77d06ac8bfde89b5964fefb96b7 | 998 | cc | C++ | codeforces/1305/b.cc | Ashindustry007/competitive-programming | 2eabd3975c029d235abb7854569593d334acae2f | [
"WTFPL"
] | 506 | 2018-08-22T10:30:38.000Z | 2022-03-31T10:01:49.000Z | codeforces/1305/b.cc | Ashindustry007/competitive-programming | 2eabd3975c029d235abb7854569593d334acae2f | [
"WTFPL"
] | 13 | 2019-08-07T18:31:18.000Z | 2020-12-15T21:54:41.000Z | codeforces/1305/b.cc | Ashindustry007/competitive-programming | 2eabd3975c029d235abb7854569593d334acae2f | [
"WTFPL"
] | 234 | 2018-08-06T17:11:41.000Z | 2022-03-26T10:56:42.000Z | // https://codeforces.com/contest/1305/problem/B
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ii = tuple<int, int>;
using vi = vector<ll>;
using vii = vector<ii>;
using vvi = vector<vi>;
using si = set<ll>;
int main() {
cin.tie(0), ios::sync_with_stdio(0);
string s;
cin >> s;
int n = s.size();
vi c(n);
vvi r;
while (1) {
int i = 0, j = n-1;
vi a;
while (i < j) {
if (c[i] && c[j]) i++, j--;
else if (c[i]) i++;
else if (c[j]) j--;
else if (s[i] == '(' && s[j] == ')')
c[i] = 1, c[j] = 1, a.push_back(i+1), a.push_back(j+1), i++, j--;
else if (s[i] == '(') j--;
else if (s[j] == ')') i++;
else i++, j--;
}
if (!a.size()) break;
sort(a.begin(), a.end());
r.push_back(a);
}
cout << r.size() << '\n';
for (int i = 0; i < r.size(); i++) {
cout << r[i].size() << '\n';
for (int j = 0; j < r[i].size(); j++)
cout << r[i][j] << " \n"[j == r[i].size()-1];
}
}
| 23.209302 | 73 | 0.44489 | Ashindustry007 |
8c8b6e448037068d45c3c82817fdb283584b6487 | 1,703 | cpp | C++ | src/States/CharacterCreatorState.cpp | Miguel-EpicJS/state-rpg-tutorial | c909fe7ffee2cad4d3aac88afef9c5dc21b965ce | [
"MIT"
] | null | null | null | src/States/CharacterCreatorState.cpp | Miguel-EpicJS/state-rpg-tutorial | c909fe7ffee2cad4d3aac88afef9c5dc21b965ce | [
"MIT"
] | null | null | null | src/States/CharacterCreatorState.cpp | Miguel-EpicJS/state-rpg-tutorial | c909fe7ffee2cad4d3aac88afef9c5dc21b965ce | [
"MIT"
] | null | null | null | #include "../../includes/CharacterCreatorState.h"
CharacterCreatorState::CharacterCreatorState(std::vector<Character *> *characterList, unsigned &activeCharacter, std::stack<State *> *states) : activeCharacter(activeCharacter), State(), maxCharacter(5)
{
this->characterList = characterList;
this->states = states;
}
CharacterCreatorState::~CharacterCreatorState()
{
}
void CharacterCreatorState::createCharacter()
{
if (this->characterList->size() < this->maxCharacter)
{
/* code */
std::string name = "";
std::string bio = "";
std::getline(std::cin, name);
std::cout << "Name: ";
std::getline(std::cin, name);
std::cout << "Bio: ";
std::getline(std::cin, bio);
this->characterList->push_back(new Character(name, bio));
std::cout << "Character " << name << " created.\n\n";
}else
{
std::cout << "Max number of characters reached!" << "\n";
}
}
void CharacterCreatorState::printMenu()
{
std::cout << "=== Character Creator === \n\n"
<< " Characterr: " << std::to_string(this->characterList->size()) << " / " << std::to_string(this->maxCharacter) << "\n\n"
<< " (-1) Back To Menu\n"
<< " (1) New Character\n\n";
}
void CharacterCreatorState::updateMenu()
{
switch (this->getChoice())
{
case -1:
this->setQuit(true);
std::cout << "\n\n Quitting main menu state \n\n";
break;
case 1:
createCharacter();
break;
default:
std::cout << "Not a valid option! \n\n";
break;
}
}
void CharacterCreatorState::update()
{
this->printMenu();
this->updateMenu();
} | 24.328571 | 202 | 0.574868 | Miguel-EpicJS |
8c8c6c8c4c976dd83dd54907346ddc4fb781091d | 318 | hpp | C++ | include/graphics/ITexture.hpp | icebreakersentertainment/ice_engine | 52a8313bc266c053366bdf554b5dc27a54ddcb25 | [
"MIT"
] | null | null | null | include/graphics/ITexture.hpp | icebreakersentertainment/ice_engine | 52a8313bc266c053366bdf554b5dc27a54ddcb25 | [
"MIT"
] | null | null | null | include/graphics/ITexture.hpp | icebreakersentertainment/ice_engine | 52a8313bc266c053366bdf554b5dc27a54ddcb25 | [
"MIT"
] | 1 | 2019-06-11T03:41:48.000Z | 2019-06-11T03:41:48.000Z | #ifndef ITEXTURE_H_
#define ITEXTURE_H_
#include <string>
#include "graphics/IImage.hpp"
namespace ice_engine
{
namespace graphics
{
class ITexture
{
public:
virtual ~ITexture() = default;
virtual const std::string& name() const = 0;
virtual const IImage* image() const = 0;
};
}
}
#endif /* ITEXTURE_H_ */
| 12.230769 | 45 | 0.704403 | icebreakersentertainment |
8c8d01d8f0d937d872aa1f5c7cdd8b2f0154c847 | 789 | cpp | C++ | bzoj/1002.cpp | swwind/code | 25c4c5ca2f8578ba792b44cbdf44286d39dfb7e0 | [
"WTFPL"
] | 3 | 2017-09-17T09:12:50.000Z | 2018-04-06T01:18:17.000Z | bzoj/1002.cpp | swwind/code | 25c4c5ca2f8578ba792b44cbdf44286d39dfb7e0 | [
"WTFPL"
] | null | null | null | bzoj/1002.cpp | swwind/code | 25c4c5ca2f8578ba792b44cbdf44286d39dfb7e0 | [
"WTFPL"
] | null | null | null | #include <iostream>
#include <cstdio>
using namespace std;
struct data{
int a[101],len;
};
int n;
data mul(data a,int k){
for(int i = 1; i <= a.len; i++)
a.a[i] *= k;
for(int i = 1; i <= a.len; i++)
a.a[i+1] += a.a[i] / 10,
a.a[i] %= 10;
if(a.a[a.len+1]) a.len++;
return a;
}
data sub(data a, data b){
a.a[1] += 2;
int j = 1;
while(a.a[j] >= 10)
a.a[j] %= 10,
a.a[++j]++;
for(int i = 1; i <= a.len; i++){
a.a[i] -= b.a[i];
if(a.a[i] < 0)
a.a[i] += 10,
a.a[i+1]--;
}
while(!a.a[a.len]) a.len--;
return a;
}
int main(){
data f[101];
f[1].a[1] = 1;
f[2].a[1] = 5;
f[1].len = f[2].len = 1;
scanf("%d",&n);
for(int i = 3; i <= n; i++)
f[i] = sub(mul(f[i-1], 3), f[i-2]);
for(int i = f[n].len; i; i--)
printf("%d", f[n].a[i]);
puts("");
return 0;
}
| 17.533333 | 37 | 0.452471 | swwind |
8c908a13dfbcf49908db3a036d4f761ad506ee19 | 17,731 | cc | C++ | src/core/cachedshardsimpl.cc | aching/Clusterlib | da81a653e9630b61214dbf7c37c75196300cf606 | [
"Apache-2.0"
] | 2 | 2015-03-31T17:57:46.000Z | 2019-06-18T17:29:46.000Z | src/core/cachedshardsimpl.cc | aching/Clusterlib | da81a653e9630b61214dbf7c37c75196300cf606 | [
"Apache-2.0"
] | null | null | null | src/core/cachedshardsimpl.cc | aching/Clusterlib | da81a653e9630b61214dbf7c37c75196300cf606 | [
"Apache-2.0"
] | 1 | 2020-04-24T05:23:25.000Z | 2020-04-24T05:23:25.000Z | /*
* Copyright (c) 2010 Yahoo! Inc. All rights reserved. Licensed under
* the Apache License, Version 2.0 (the "License"); you may not use
* this file except in compliance with the License. You may obtain a
* copy of the License at http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
* implied. See the License for the specific language governing
* permissions and limitations under the License. See accompanying
* LICENSE file.
*
* $Id$
*/
#include "clusterlibinternal.h"
using namespace std;
using namespace boost;
using namespace json;
namespace clusterlib {
/**
* Given 2 shards, compare them based on priority. Used to sort shard
* containers.
*
* @param a the first shard
* @param b the second shard
* @return true if a < b
*/
static bool shardPriorityCompare(Shard a, Shard b)
{
if (a.getPriority() < b.getPriority()) {
return true;
}
else {
return false;
}
}
CachedShardsImpl::CachedShardsImpl(NotifyableImpl *notifyable)
: CachedDataImpl(notifyable),
m_shardTree(NULL),
m_shardTreeCount(0),
m_hashRange(NULL)
{
/*
* Start with the UnknownHashRange and initialize to the correct
* one later.
*/
m_hashRange = &(getOps()->getHashRange(UnknownHashRange::name()));
/*
* Do this for consistency.
*/
m_shardTree = new IntervalTree<HashRange &, ShardTreeData>(
*m_hashRange, ShardTreeData());
}
CachedShardsImpl::~CachedShardsImpl()
{
Locker l(&getCachedDataLock());
/*
* Cannot simply call "clear()" since the repository object may have
* been removed.
*/
IntervalTreeNode<HashRange &, ShardTreeData> *node = NULL;
while (m_shardTree->empty() == false) {
node = m_shardTree->getTreeHead();
node = m_shardTree->deleteNode(node);
delete &(node->getStartRange());
delete &(node->getEndRange());
delete &(node->getEndRangeMax());
delete node;
}
delete m_shardTree;
m_shardTree = NULL;
m_shardTreeCount = 0;
delete m_hashRange;
m_hashRange = NULL;
}
int32_t
CachedShardsImpl::publish(bool unconditional)
{
TRACE(CL_LOG, "publish");
getNotifyable()->throwIfRemoved();
string shardsKey = DataDistributionImpl::createShardJsonObjectKey(
getNotifyable()->getKey());
Locker l(&getCachedDataLock());
string encodedJsonObject = JSONCodec::encode(marshalShards());
LOG_DEBUG(CL_LOG,
"Tried to publish shards for notifyable %s to %s "
"with current version %d, unconditional %d\n",
getNotifyable()->getKey().c_str(),
encodedJsonObject.c_str(),
getVersion(),
unconditional);
Stat stat;
try {
SAFE_CALL_ZK(getOps()->getRepository()->setNodeData(
shardsKey,
encodedJsonObject,
((unconditional == false) ? getVersion(): -1),
&stat),
"Setting of %s failed: %s",
shardsKey.c_str(),
false,
true);
} catch (const zk::BadVersionException &e) {
throw PublishVersionException(e.what());
}
/*
* Since we should have the lock, the data should be identical to
* the zk data. When the lock is released, clusterlib events will
* try to push this change again.
*/
setStat(stat);
return stat.version;
}
void
CachedShardsImpl::loadDataFromRepository(bool setWatchesOnly)
{
TRACE(CL_LOG, "loadDataFromRepository");
string shardsKey = DataDistributionImpl::createShardJsonObjectKey(
getNotifyable()->getKey());
string encodedJsonValue;
Stat stat;
Locker l(&getCachedDataLock());
SAFE_CALLBACK_ZK(
getOps()->getRepository()->getNodeData(
shardsKey,
encodedJsonValue,
getOps()->getZooKeeperEventAdapter(),
getOps()->getCachedObjectChangeHandlers()->
getChangeHandler(
CachedObjectChangeHandlers::SHARDS_CHANGE),
&stat),
getOps()->getRepository()->getNodeData(
shardsKey, encodedJsonValue, NULL, NULL, &stat),
CachedObjectChangeHandlers::SHARDS_CHANGE,
shardsKey,
"Loading shardsKey %s failed: %s",
shardsKey.c_str(),
false,
true);
if (setWatchesOnly) {
return;
}
if (!updateStat(stat)) {
return;
}
/*
* Default values from the constructor are used when there are
* empty nodes
*/
if (encodedJsonValue.empty()) {
return;
}
unmarshalShards(encodedJsonValue);
}
string
CachedShardsImpl::getHashRangeName()
{
Locker l(&getCachedDataLock());
return m_hashRange->getName();
}
NotifyableList
CachedShardsImpl::getNotifyables(const HashRange &hashPoint)
{
TRACE(CL_LOG, "getNotifyables");
getNotifyable()->throwIfRemoved();
/* This is a slow implementation, will be optimized later. */
vector<Shard> shardVec = getAllShards(shared_ptr<Notifyable>(), -1);
NotifyableList ntList;
/* Allow this to success if nothing exists */
if (shardVec.empty()) {
return ntList;
}
throwIfUnknownHashRange();
/* Sort the shard by priority */
sort(shardVec.begin(), shardVec.end(), shardPriorityCompare);
vector<Shard>::iterator shardVecIt;
for (shardVecIt = shardVec.begin(); shardVecIt != shardVec.end();
++shardVecIt) {
if ((shardVecIt->getStartRange() <= hashPoint) &&
(shardVecIt->getEndRange() >= hashPoint)) {
ntList.push_back(shardVecIt->getNotifyable());
}
}
return ntList;
}
uint32_t
CachedShardsImpl::getCount()
{
TRACE(CL_LOG, "getCount");
getNotifyable()->throwIfRemoved();
Locker l(&getCachedDataLock());
return m_shardTreeCount;
}
bool
CachedShardsImpl::isCovered()
{
TRACE(CL_LOG, "isCovered");
getNotifyable()->throwIfRemoved();
throwIfUnknownHashRange();
Locker l(&getCachedDataLock());
IntervalTree<HashRange &, ShardTreeData>::iterator it
= m_shardTree->begin();
if (it->getStartRange().isBegin() == false) {
return false;
}
HashRange &end = m_hashRange->create();
end = it->getStartRange();
for (; it != m_shardTree->end(); ++it) {
LOG_DEBUG(
CL_LOG,
"isCovered: end=%s startRange=%s endRange=%s",
JSONCodec::encode(end.toJSONValue()).c_str(),
JSONCodec::encode(it->getStartRange().toJSONValue()).c_str(),
JSONCodec::encode(it->getEndRange().toJSONValue()).c_str());
if (it->getStartRange() > end) {
delete &end;
return false;
}
else if (it->getEndRange() >= end) {
if (it->getEndRange().isEnd()) {
delete &end;
return true;
}
else {
end = it->getEndRange();
++end;
}
}
}
delete &end;
return false;
}
void
CachedShardsImpl::insert(const HashRange &start,
const HashRange &end,
const shared_ptr<Notifyable> ¬ifyableSP,
int32_t priority)
{
TRACE(CL_LOG, "insert");
getNotifyable()->throwIfRemoved();
Locker l(&getCachedDataLock());
/*
* Ensure that the HashRange objects are the same type and not
* UnknownHashRange. The only time they need not be the same as
* the m_hashRange is if m_shardTreeCount == 0. Then m_hashRange
* is set to this type.
*/
if ((start.getName() == UnknownHashRange::name()) ||
(end.getName() == UnknownHashRange::name())) {
throw InvalidArgumentsException(
"insert: Either start or end has HashRange == UnknownHashRange");
}
if ((m_shardTreeCount == 0) &&
(start.getName() != getHashRangeName())) {
clear();
delete m_hashRange;
m_hashRange = &(start.create());
delete m_shardTree;
m_shardTree = new IntervalTree<HashRange &, ShardTreeData>(
*m_hashRange, ShardTreeData());
}
if ((typeid(start) != typeid(*m_hashRange)) ||
(typeid(start) != typeid(end))) {
throw InvalidArgumentsException(
"insert: The types of start, end and "
"the set hash range are not in agreement.");
}
/* Alllocate the data that will be put into the tree. */
HashRange &finalStart = m_hashRange->create();
HashRange &finalEnd = m_hashRange->create();
HashRange &finalEndMax = m_hashRange->create();
finalStart = start;
finalEnd = end;
m_shardTree->insertNode(
finalStart,
finalEnd,
finalEndMax,
ShardTreeData(
priority,
(notifyableSP == NULL) ? string() : notifyableSP->getKey()));
++m_shardTreeCount;
}
vector<Shard>
CachedShardsImpl::getAllShards(
const shared_ptr<Notifyable> ¬ifyableSP, int32_t priority)
{
TRACE(CL_LOG, "getAllShards");
getNotifyable()->throwIfRemoved();
/*
* Get all the shards and then filter based on the notifyable and/or
* priority.
*/
vector<Shard> res;
IntervalTree<HashRange &, ShardTreeData>::iterator treeIt;
Locker l(&getCachedDataLock());
if (getHashRangeName() == UnknownHashRange::name()) {
res = m_unknownShardArr;
}
else {
for (treeIt = m_shardTree->begin();
treeIt != m_shardTree->end();
++treeIt) {
res.push_back(
Shard(dynamic_pointer_cast<Root>(
getOps()->getNotifyable(
shared_ptr<NotifyableImpl>(),
CLString::REGISTERED_ROOT_NAME,
CLStringInternal::ROOT_NAME,
CACHED_ONLY)),
treeIt->getStartRange(),
treeIt->getEndRange(),
treeIt->getData().getNotifyableKey(),
treeIt->getData().getPriority()));
}
}
vector<Shard>::iterator resIt;
vector<Shard> finalRes;
for (resIt = res.begin(); resIt != res.end(); ++resIt) {
/* Filter by notifyable if not NULL */
if ((notifyableSP == NULL) ||
(notifyableSP->getKey() == resIt->getNotifyableKey())) {
finalRes.push_back(*resIt);
}
/* Filter by priority if not -1 */
if ((priority != -1) || (priority == resIt->getPriority())) {
finalRes.push_back(*resIt);
}
}
return finalRes;
}
bool
CachedShardsImpl::remove(Shard &shard)
{
TRACE(CL_LOG, "remove");
getNotifyable()->throwIfRemoved();
throwIfUnknownHashRange();
Locker l(&getCachedDataLock());
//AC-debug
m_shardTree->printDepthFirstSearch();
IntervalTreeNode<HashRange &, ShardTreeData> *node =
m_shardTree->nodeSearch(shard.getStartRange(),
shard.getEndRange(),
ShardTreeData(shard.getPriority(),
shard.getNotifyableKey()));
if (node != NULL) {
node = m_shardTree->deleteNode(node);
delete &(node->getStartRange());
delete &(node->getEndRange());
delete &(node->getEndRangeMax());
delete node;
m_shardTreeCount--;
return true;
}
return false;
}
void
CachedShardsImpl::clear()
{
TRACE(CL_LOG, "clear");
getNotifyable()->throwIfRemoved();
Locker l(&getCachedDataLock());
IntervalTreeNode<HashRange &, ShardTreeData> *node = NULL;
while (m_shardTree->empty() == false) {
node = m_shardTree->getTreeHead();
node = m_shardTree->deleteNode(node);
delete &(node->getStartRange());
delete &(node->getEndRange());
delete &(node->getEndRangeMax());
delete node;
}
m_shardTreeCount = 0;
m_unknownShardArr.clear();
}
JSONValue::JSONArray
CachedShardsImpl::marshalShards()
{
TRACE(CL_LOG, "marshalShards");
getNotifyable()->throwIfRemoved();
Locker l(&getCachedDataLock());
IntervalTree<HashRange &, ShardTreeData>::iterator it;
JSONValue::JSONArray shardArr;
JSONValue::JSONArray shardMetadataArr;
/* Shard format: [ "<HashRange name>",[<shard0],[shard1],...] */
if (m_shardTreeCount != 0) {
if (m_hashRange->getName() == UnknownHashRange::name()) {
throw InvalidMethodException(
"marshalShards: Cannot marshal shards if the HashRange is "
"UnknownHashRange and the number of elements is > 0");
}
shardArr.push_back(m_hashRange->getName());
for (it = m_shardTree->begin(); it != m_shardTree->end(); it++) {
shardMetadataArr.clear();
shardMetadataArr.push_back(it->getStartRange().toJSONValue());
shardMetadataArr.push_back(it->getEndRange().toJSONValue());
shardMetadataArr.push_back(it->getData().getNotifyableKey());
shardMetadataArr.push_back(it->getData().getPriority());
shardArr.push_back(shardMetadataArr);
}
}
LOG_DEBUG(CL_LOG,
"marshalShards: Generated string (%s)",
JSONCodec::encode(shardArr).c_str());
return shardArr;
}
void
CachedShardsImpl::unmarshalShards(const string &encodedJsonArr)
{
TRACE(CL_LOG, "unmarshalShards");
getNotifyable()->throwIfRemoved();
vector<string> components;
vector<string> shardComponents;
vector<string>::iterator sIt;
LOG_DEBUG(CL_LOG,
"unmarshalShards: Got encodedJsonArr '%s'",
encodedJsonArr.c_str());
Locker l(&getCachedDataLock());
clear();
m_shardTreeCount = 0;
if (encodedJsonArr.empty()) {
return;
}
JSONValue::JSONArray jsonArr =
JSONCodec::decode(encodedJsonArr).get<JSONValue::JSONArray>();
if (jsonArr.empty()) {
return;
}
JSONValue::JSONArray shardMetadataArr;
JSONValue::JSONArray::const_iterator jsonArrIt;
/*
* First array element should be the HashRange name and should
* match the *m_hashRange.
*/
JSONValue::JSONString hashRangeName =
jsonArr.front().get<JSONValue::JSONString>();
jsonArr.pop_front();
delete m_hashRange;
m_hashRange = &(getOps()->getHashRange(hashRangeName));
delete m_shardTree;
m_shardTree = new IntervalTree<HashRange &, ShardTreeData>(
*m_hashRange, ShardTreeData());
bool unknownHashRange = false;
if (m_hashRange->getName() == UnknownHashRange::name()) {
unknownHashRange = true;
}
/*
* If this is UnknownHashRange data, put in m_shardArr, otherwise
* put in m_shardTree.
*/
for (jsonArrIt = jsonArr.begin();
jsonArrIt != jsonArr.end();
++jsonArrIt) {
shardMetadataArr.clear();
shardMetadataArr = jsonArrIt->get<JSONValue::JSONArray>();
if (shardMetadataArr.size() != 4) {
throw InconsistentInternalStateException(
"unmarshalShards: Impossible that the size of the "
"shardMetadataArr != 4");
}
JSONValue::JSONString ntpKey =
shardMetadataArr[2].get<JSONValue::JSONString>();
if (unknownHashRange) {
m_unknownShardArr.push_back(
Shard(dynamic_pointer_cast<Root>(
getOps()->getNotifyable(
shared_ptr<NotifyableImpl>(),
CLString::REGISTERED_ROOT_NAME,
CLStringInternal::ROOT_NAME,
CACHED_ONLY)),
UnknownHashRange(shardMetadataArr[0]),
UnknownHashRange(shardMetadataArr[1]),
ntpKey,
shardMetadataArr[3].get<JSONValue::JSONInteger>()));
}
else {
HashRange &start = m_hashRange->create();
HashRange &end = m_hashRange->create();
HashRange &endMax = m_hashRange->create();
start.set(shardMetadataArr[0]);
end.set(shardMetadataArr[1]);
m_shardTree->insertNode(
start,
end,
endMax,
ShardTreeData(
shardMetadataArr[3].get<JSONValue::JSONInteger>(),
ntpKey));
}
LOG_DEBUG(CL_LOG,
"unmarshalShards: Found shard with HashRange name %s: "
"start=%s end=%s, notifyable key=%s, priority=%" PRId64,
m_hashRange->getName().c_str(),
JSONCodec::encode(shardMetadataArr[0]).c_str(),
JSONCodec::encode(shardMetadataArr[1]).c_str(),
ntpKey.c_str(),
shardMetadataArr[3].get<JSONValue::JSONInteger>());
++m_shardTreeCount;
}
}
void
CachedShardsImpl::throwIfUnknownHashRange()
{
Locker l(&getCachedDataLock());
if (getHashRangeName() == UnknownHashRange::name()) {
throw InvalidMethodException("throwIfUnknownHashRange: This method is "
"not available for UnknownHashRange");
}
}
} /* End of 'namespace clusterlib' */
| 29.067213 | 79 | 0.585246 | aching |
8c93edd04204894383ab9063c5318815054dd273 | 83,478 | cpp | C++ | src/toldialoghump.cpp | JoaoQPereira/motion_manager | de853e9341c482a0c13e0ba7b78429c019890507 | [
"MIT"
] | null | null | null | src/toldialoghump.cpp | JoaoQPereira/motion_manager | de853e9341c482a0c13e0ba7b78429c019890507 | [
"MIT"
] | null | null | null | src/toldialoghump.cpp | JoaoQPereira/motion_manager | de853e9341c482a0c13e0ba7b78429c019890507 | [
"MIT"
] | null | null | null | #include "../include/motion_manager/toldialoghump.hpp"
namespace motion_manager {
using namespace Qt;
TolDialogHUMP::TolDialogHUMP(QWidget *parent) :
QDialog(parent),
ui(new Ui::TolDialogHUMP)
{
ui->setupUi(this);
QObject::connect(ui->checkBox_approach, SIGNAL(stateChanged(int)), this, SLOT(checkApproach(int)));
QObject::connect(ui->checkBox_retreat, SIGNAL(stateChanged(int)), this, SLOT(checkRetreat(int)));
QObject::connect(ui->checkBox_sel_final_posture, SIGNAL(stateChanged(int)), this, SLOT(checkFinalPosture(int)));
QObject::connect(ui->checkBox_add_plane, SIGNAL(stateChanged(int)), this, SLOT(checkAddPlane(int)));
if(ui->checkBox_approach->isChecked())
{
ui->groupBox_pre_grasp->setEnabled(false);
ui->groupBox_pre_place->setEnabled(false);
ui->label_pick->setEnabled(false);
}
if(ui->checkBox_retreat->isChecked())
{
ui->groupBox_post_grasp->setEnabled(false);
ui->groupBox_post_place->setEnabled(false);
ui->label_pick->setEnabled(false);
}
#if HAND == 1
adaptationElectricGripper();
#elif HAND == 0
ui->lineEdit_w_max_gripper->setText(QString::number(0));
ui->lineEdit_w_max_gripper->setEnabled(false);
ui->lineEdit_alpha_max_gripper->setText(QString::number(0));
ui->lineEdit_alpha_max_gripper->setEnabled(false);
#elif HAND == 2
adaptationElectricGripper();
ui->lineEdit_w_max_gripper->setText(QString::number(0));
ui->lineEdit_w_max_gripper->setEnabled(false);
ui->lineEdit_alpha_max_gripper->setText(QString::number(0));
ui->lineEdit_alpha_max_gripper->setEnabled(false);
#endif
}
void TolDialogHUMP::adaptationElectricGripper()
{
//******Disable the joints that aren't used to this type of hand
//Points of the hand
ui->lineEdit_hand_1_3->setText(QString::number(0));
ui->lineEdit_hand_1_3->setEnabled(false);
ui->lineEdit_hand_2_1->setText(QString::number(0));
ui->lineEdit_hand_2_1->setEnabled(false);
ui->lineEdit_hand_2_2->setText(QString::number(0));
ui->lineEdit_hand_2_2->setEnabled(false);
ui->lineEdit_hand_2_3->setText(QString::number(0));
ui->lineEdit_hand_2_3->setEnabled(false);
ui->lineEdit_hand_3_1->setText(QString::number(0));
ui->lineEdit_hand_3_1->setEnabled(false);
ui->lineEdit_hand_3_2->setText(QString::number(0));
ui->lineEdit_hand_3_2->setEnabled(false);
ui->lineEdit_hand_3_3->setText(QString::number(0));
ui->lineEdit_hand_3_3->setEnabled(false);
ui->lineEdit_hand_tip_3->setText(QString::number(0));
ui->lineEdit_hand_tip_3->setEnabled(false);
// Joint Expense Factors
ui->lineEdit_lambda_9->setText(QString::number(0));
ui->lineEdit_lambda_9->setEnabled(false);
ui->lineEdit_lambda_10->setText(QString::number(0));
ui->lineEdit_lambda_10->setEnabled(false);
ui->lineEdit_lambda_11->setText(QString::number(0));
ui->lineEdit_lambda_11->setEnabled(false);
//Boundary conditions
//init vel
ui->lineEdit_init_vel_9->setText(QString::number(0));
ui->lineEdit_init_vel_9->setEnabled(false);
ui->lineEdit_init_vel_10->setText(QString::number(0));
ui->lineEdit_init_vel_10->setEnabled(false);
ui->lineEdit_init_vel_11->setText(QString::number(0));
ui->lineEdit_init_vel_11->setEnabled(false);
//final vel
ui->lineEdit_final_vel_9->setText(QString::number(0));
ui->lineEdit_final_vel_9->setEnabled(false);
ui->lineEdit_final_vel_10->setText(QString::number(0));
ui->lineEdit_final_vel_10->setEnabled(false);
ui->lineEdit_final_vel_11->setText(QString::number(0));
ui->lineEdit_final_vel_11->setEnabled(false);
//init acc
ui->lineEdit_init_acc_9->setText(QString::number(0));
ui->lineEdit_init_acc_9->setEnabled(false);
ui->lineEdit_init_acc_10->setText(QString::number(0));
ui->lineEdit_init_acc_10->setEnabled(false);
ui->lineEdit_init_acc_11->setText(QString::number(0));
ui->lineEdit_init_acc_11->setEnabled(false);
//final acc
ui->lineEdit_final_acc_9->setText(QString::number(0));
ui->lineEdit_final_acc_9->setEnabled(false);
ui->lineEdit_final_acc_10->setText(QString::number(0));
ui->lineEdit_final_acc_10->setEnabled(false);
ui->lineEdit_final_acc_11->setText(QString::number(0));
ui->lineEdit_final_acc_11->setEnabled(false);
//Final Hand Posture
ui->lineEdit_final_hand_2->setText(QString::number(0));
ui->lineEdit_final_hand_2->setEnabled(false);
ui->lineEdit_final_hand_3->setText(QString::number(0));
ui->lineEdit_final_hand_3->setEnabled(false);
ui->lineEdit_final_hand_4->setText(QString::number(0));
ui->lineEdit_final_hand_4->setEnabled(false);
//Max vel and max acceleration of joints
ui->label_w_max_barrett->setEnabled(false);
ui->label_alpha_max_barrett->setEnabled(false);
}
TolDialogHUMP::~TolDialogHUMP()
{
delete ui;
}
void TolDialogHUMP::getTolsHand(MatrixXd &tols)
{
tols = MatrixXd::Constant(4,3,1);
tols(0,0) = ui->lineEdit_hand_1_1->text().toDouble();
tols(0,1) = ui->lineEdit_hand_1_2->text().toDouble();
tols(0,2) = ui->lineEdit_hand_1_3->text().toDouble();
tols(1,0) = ui->lineEdit_hand_2_1->text().toDouble();
tols(1,1) = ui->lineEdit_hand_2_2->text().toDouble();
tols(1,2) = ui->lineEdit_hand_2_3->text().toDouble();
tols(2,0) = ui->lineEdit_hand_3_1->text().toDouble();
tols(2,1) = ui->lineEdit_hand_3_2->text().toDouble();
tols(2,2) = ui->lineEdit_hand_3_3->text().toDouble();
tols(3,0) = ui->lineEdit_hand_tip_1->text().toDouble();
tols(3,1) = ui->lineEdit_hand_tip_2->text().toDouble();
tols(3,2) = ui->lineEdit_hand_tip_3->text().toDouble();
}
void TolDialogHUMP::getTolsArm(vector<double> &tols)
{
tols.clear();
tols.push_back(ui->lineEdit_sphere1_r->text().toDouble());
tols.push_back(ui->lineEdit_sphere2_r->text().toDouble());
tols.push_back(ui->lineEdit_sphere3_r->text().toDouble());
tols.push_back(ui->lineEdit_sphere4_r->text().toDouble());
tols.push_back(ui->lineEdit_sphere5_r->text().toDouble());
tols.push_back(ui->lineEdit_sphere6_r->text().toDouble());
tols.push_back(ui->lineEdit_sphere7_r->text().toDouble());
tols.push_back(ui->lineEdit_sphere8_r->text().toDouble());
tols.push_back(ui->lineEdit_sphere9_r->text().toDouble());
tols.push_back(ui->lineEdit_sphere10_r->text().toDouble());
tols.push_back(ui->lineEdit_sphere11_r->text().toDouble());
tols.push_back(ui->lineEdit_sphere12_r->text().toDouble());
tols.push_back(ui->lineEdit_sphere13_r->text().toDouble());
tols.push_back(ui->lineEdit_sphere14_r->text().toDouble());
}
void TolDialogHUMP::getLambda(std::vector<double> &lambda)
{
lambda.clear();
lambda.push_back(ui->lineEdit_lambda_1->text().toDouble());
lambda.push_back(ui->lineEdit_lambda_2->text().toDouble());
lambda.push_back(ui->lineEdit_lambda_3->text().toDouble());
lambda.push_back(ui->lineEdit_lambda_4->text().toDouble());
lambda.push_back(ui->lineEdit_lambda_5->text().toDouble());
lambda.push_back(ui->lineEdit_lambda_6->text().toDouble());
lambda.push_back(ui->lineEdit_lambda_7->text().toDouble());
lambda.push_back(ui->lineEdit_lambda_8->text().toDouble());
#if HAND == 0
lambda.push_back(ui->lineEdit_lambda_9->text().toDouble());
lambda.push_back(ui->lineEdit_lambda_10->text().toDouble());
lambda.push_back(ui->lineEdit_lambda_11->text().toDouble());
#endif
}
void TolDialogHUMP::getTolsObstacles(MatrixXd &tols)
{
tols = MatrixXd::Constant(3,6,1);
tols(0,0)=ui->lineEdit_obs_xx_1->text().toDouble(); tols(0,1)=ui->lineEdit_obs_yy_1->text().toDouble(); tols(0,2)=ui->lineEdit_obs_zz_1->text().toDouble(); tols(0,3)=ui->lineEdit_obs_xy_1->text().toDouble(); tols(0,4)=ui->lineEdit_obs_xz_1->text().toDouble(); tols(0,5)=ui->lineEdit_obs_yz_1->text().toDouble();
tols(1,0)=ui->lineEdit_obs_xx_2->text().toDouble(); tols(1,1)=ui->lineEdit_obs_yy_2->text().toDouble(); tols(1,2)=ui->lineEdit_obs_zz_2->text().toDouble(); tols(1,3)=ui->lineEdit_obs_xy_2->text().toDouble(); tols(1,4)=ui->lineEdit_obs_xz_2->text().toDouble(); tols(1,5)=ui->lineEdit_obs_yz_2->text().toDouble();
tols(2,0)=ui->lineEdit_obs_xx_3->text().toDouble(); tols(2,1)=ui->lineEdit_obs_yy_3->text().toDouble(); tols(2,2)=ui->lineEdit_obs_zz_3->text().toDouble(); tols(2,3)=ui->lineEdit_obs_xy_3->text().toDouble(); tols(2,4)=ui->lineEdit_obs_xz_3->text().toDouble(); tols(2,5)=ui->lineEdit_obs_yz_3->text().toDouble();
}
void TolDialogHUMP::getTolsTarget(MatrixXd &tols)
{
tols = MatrixXd::Constant(3,6,1);
tols(0,0)=ui->lineEdit_tar_xx_1->text().toDouble(); tols(0,1)=ui->lineEdit_tar_yy_1->text().toDouble(); tols(0,2)=ui->lineEdit_tar_zz_1->text().toDouble(); tols(0,3)=ui->lineEdit_tar_xy_1->text().toDouble(); tols(0,4)=ui->lineEdit_tar_xz_1->text().toDouble(); tols(0,5)=ui->lineEdit_tar_yz_1->text().toDouble();
tols(1,0)=ui->lineEdit_tar_xx_2->text().toDouble(); tols(1,1)=ui->lineEdit_tar_yy_2->text().toDouble(); tols(1,2)=ui->lineEdit_tar_zz_2->text().toDouble(); tols(1,3)=ui->lineEdit_tar_xy_2->text().toDouble(); tols(1,4)=ui->lineEdit_tar_xz_2->text().toDouble(); tols(1,5)=ui->lineEdit_tar_yz_2->text().toDouble();
tols(2,0)=ui->lineEdit_tar_xx_3->text().toDouble(); tols(2,1)=ui->lineEdit_tar_yy_3->text().toDouble(); tols(2,2)=ui->lineEdit_tar_zz_3->text().toDouble(); tols(2,3)=ui->lineEdit_tar_xy_3->text().toDouble(); tols(2,4)=ui->lineEdit_tar_xz_3->text().toDouble(); tols(2,5)=ui->lineEdit_tar_yz_3->text().toDouble();
}
double TolDialogHUMP::getWMax()
{
return ui->lineEdit_w_max->text().toDouble();
}
double TolDialogHUMP::getAlphaMax()
{
return ui->lineEdit_alpha_max->text().toDouble();
}
double TolDialogHUMP::getWMaxUR()
{
return ui->lineEdit_w_max_ur->text().toDouble();
}
double TolDialogHUMP::getAlphaMaxUR()
{
return ui->lineEdit_alpha_max_ur->text().toDouble();
}
void TolDialogHUMP::setWMax(double w)
{
ui->lineEdit_w_max->setText(QString::number(w));
}
#if HAND == 1
double TolDialogHUMP::getWMaxGripper()
{
return ui->lineEdit_w_max_gripper->text().toDouble();
}
double TolDialogHUMP::getAlphaMaxGripper()
{
return ui->lineEdit_alpha_max_gripper->text().toDouble();
}
void TolDialogHUMP::setWMaxGripper(double w)
{
ui->lineEdit_w_max_gripper->setText(QString::number(w));
}
#endif
double TolDialogHUMP::getTolTarPos()
{
return ui->lineEdit_tar_pos->text().toDouble();
}
double TolDialogHUMP::getTolTarOr()
{
return ui->lineEdit_tar_or->text().toDouble();
}
void TolDialogHUMP::setInfo(string info)
{
this->infoLine = info;
}
bool TolDialogHUMP::getTargetAvoidance()
{
return !ui->checkBox_tar_av->isChecked();
}
bool TolDialogHUMP::getObstacleAvoidance()
{
return !ui->checkBox_ob_av->isChecked();
}
bool TolDialogHUMP::getApproach()
{
return !ui->checkBox_approach->isChecked();
}
bool TolDialogHUMP::getRetreat()
{
return !ui->checkBox_retreat->isChecked();
}
void TolDialogHUMP::getInitVel(std::vector<double> &init_vel)
{
init_vel.clear();
init_vel.push_back(ui->lineEdit_init_vel_1->text().toDouble());
init_vel.push_back(ui->lineEdit_init_vel_2->text().toDouble());
init_vel.push_back(ui->lineEdit_init_vel_3->text().toDouble());
init_vel.push_back(ui->lineEdit_init_vel_4->text().toDouble());
init_vel.push_back(ui->lineEdit_init_vel_5->text().toDouble());
init_vel.push_back(ui->lineEdit_init_vel_6->text().toDouble());
init_vel.push_back(ui->lineEdit_init_vel_7->text().toDouble());
init_vel.push_back(ui->lineEdit_init_vel_8->text().toDouble());
init_vel.push_back(ui->lineEdit_init_vel_9->text().toDouble());
init_vel.push_back(ui->lineEdit_init_vel_10->text().toDouble());
init_vel.push_back(ui->lineEdit_init_vel_11->text().toDouble());
}
void TolDialogHUMP::getFinalVel(std::vector<double> &final_vel)
{
final_vel.clear();
final_vel.push_back(ui->lineEdit_final_vel_1->text().toDouble());
final_vel.push_back(ui->lineEdit_final_vel_2->text().toDouble());
final_vel.push_back(ui->lineEdit_final_vel_3->text().toDouble());
final_vel.push_back(ui->lineEdit_final_vel_4->text().toDouble());
final_vel.push_back(ui->lineEdit_final_vel_5->text().toDouble());
final_vel.push_back(ui->lineEdit_final_vel_6->text().toDouble());
final_vel.push_back(ui->lineEdit_final_vel_7->text().toDouble());
final_vel.push_back(ui->lineEdit_final_vel_8->text().toDouble());
final_vel.push_back(ui->lineEdit_final_vel_9->text().toDouble());
final_vel.push_back(ui->lineEdit_final_vel_10->text().toDouble());
final_vel.push_back(ui->lineEdit_final_vel_11->text().toDouble());
}
void TolDialogHUMP::getInitAcc(std::vector<double> &init_acc)
{
init_acc.clear();
init_acc.push_back(ui->lineEdit_init_acc_1->text().toDouble());
init_acc.push_back(ui->lineEdit_init_acc_2->text().toDouble());
init_acc.push_back(ui->lineEdit_init_acc_3->text().toDouble());
init_acc.push_back(ui->lineEdit_init_acc_4->text().toDouble());
init_acc.push_back(ui->lineEdit_init_acc_5->text().toDouble());
init_acc.push_back(ui->lineEdit_init_acc_6->text().toDouble());
init_acc.push_back(ui->lineEdit_init_acc_7->text().toDouble());
init_acc.push_back(ui->lineEdit_init_acc_8->text().toDouble());
init_acc.push_back(ui->lineEdit_init_acc_9->text().toDouble());
init_acc.push_back(ui->lineEdit_init_acc_10->text().toDouble());
init_acc.push_back(ui->lineEdit_init_acc_11->text().toDouble());
}
void TolDialogHUMP::getFinalAcc(std::vector<double> &final_acc)
{
final_acc.clear();
final_acc.push_back(ui->lineEdit_final_acc_1->text().toDouble());
final_acc.push_back(ui->lineEdit_final_acc_2->text().toDouble());
final_acc.push_back(ui->lineEdit_final_acc_3->text().toDouble());
final_acc.push_back(ui->lineEdit_final_acc_4->text().toDouble());
final_acc.push_back(ui->lineEdit_final_acc_5->text().toDouble());
final_acc.push_back(ui->lineEdit_final_acc_6->text().toDouble());
final_acc.push_back(ui->lineEdit_final_acc_7->text().toDouble());
final_acc.push_back(ui->lineEdit_final_acc_8->text().toDouble());
final_acc.push_back(ui->lineEdit_final_acc_9->text().toDouble());
final_acc.push_back(ui->lineEdit_final_acc_10->text().toDouble());
final_acc.push_back(ui->lineEdit_final_acc_11->text().toDouble());
}
void TolDialogHUMP::getPreGraspApproach(std::vector<double> &pre_grasp)
{
pre_grasp.clear();
pre_grasp.push_back(ui->lineEdit_pre_grasp_x->text().toDouble());
pre_grasp.push_back(ui->lineEdit_pre_grasp_y->text().toDouble());
pre_grasp.push_back(ui->lineEdit_pre_grasp_z->text().toDouble());
pre_grasp.push_back(ui->lineEdit_pre_grasp_dist->text().toDouble());
}
void TolDialogHUMP::getPostGraspRetreat(std::vector<double> &post_grasp)
{
post_grasp.clear();
post_grasp.push_back(ui->lineEdit_post_grasp_x->text().toDouble());
post_grasp.push_back(ui->lineEdit_post_grasp_y->text().toDouble());
post_grasp.push_back(ui->lineEdit_post_grasp_z->text().toDouble());
post_grasp.push_back(ui->lineEdit_post_grasp_dist->text().toDouble());
}
void TolDialogHUMP::getPrePlaceApproach(std::vector<double> &pre_place)
{
pre_place.clear();
pre_place.push_back(ui->lineEdit_pre_place_x->text().toDouble());
pre_place.push_back(ui->lineEdit_pre_place_y->text().toDouble());
pre_place.push_back(ui->lineEdit_pre_place_z->text().toDouble());
pre_place.push_back(ui->lineEdit_pre_place_dist->text().toDouble());
}
void TolDialogHUMP::getPostPlaceRetreat(std::vector<double> &post_place)
{
post_place.clear();
post_place.push_back(ui->lineEdit_post_place_x->text().toDouble());
post_place.push_back(ui->lineEdit_post_place_y->text().toDouble());
post_place.push_back(ui->lineEdit_post_place_z->text().toDouble());
post_place.push_back(ui->lineEdit_post_place_dist->text().toDouble());
}
double TolDialogHUMP::getW_red_app()
{
return ui->lineEdit_w_red_app->text().toDouble();
}
double TolDialogHUMP::getW_red_ret()
{
return ui->lineEdit_w_red_ret->text().toDouble();
}
void TolDialogHUMP::getTargetMove(std::vector<double> &target)
{
target.clear();
target.push_back(ui->lineEdit_target_x->text().toDouble());
target.push_back(ui->lineEdit_target_y->text().toDouble());
target.push_back(ui->lineEdit_target_z->text().toDouble());
target.push_back((ui->lineEdit_target_roll->text().toDouble()*M_PI)/180);
target.push_back((ui->lineEdit_target_pitch->text().toDouble()*M_PI)/ 180);
target.push_back((ui->lineEdit_target_yaw->text().toDouble()*M_PI)/180);
}
void TolDialogHUMP::setTargetMove(std::vector<double> &target)
{
ui->lineEdit_target_x->setText(QString::number(target.at(0)));
ui->lineEdit_target_y->setText(QString::number(target.at(1)));
ui->lineEdit_target_z->setText(QString::number(target.at(2)));
ui->lineEdit_target_roll->setText(QString::number(target.at(3)));
ui->lineEdit_target_pitch->setText(QString::number(target.at(4)));
ui->lineEdit_target_yaw->setText(QString::number(target.at(5)));
}
void TolDialogHUMP::getFinalArm(std::vector<double> &finalArm)
{
finalArm.clear();
finalArm.push_back((ui->lineEdit_final_arm_1->text().toDouble()*M_PI)/180);
finalArm.push_back((ui->lineEdit_final_arm_2->text().toDouble()*M_PI)/180);
finalArm.push_back((ui->lineEdit_final_arm_3->text().toDouble()*M_PI)/180);
finalArm.push_back((ui->lineEdit_final_arm_4->text().toDouble()*M_PI)/180);
finalArm.push_back((ui->lineEdit_final_arm_5->text().toDouble()*M_PI)/180);
finalArm.push_back((ui->lineEdit_final_arm_6->text().toDouble()*M_PI)/180);
finalArm.push_back((ui->lineEdit_final_arm_7->text().toDouble()*M_PI)/180);
}
void TolDialogHUMP::getFinalHand(std::vector<double> &finalHand)
{
finalHand.clear();
finalHand.push_back((ui->lineEdit_final_hand_1->text().toDouble()*M_PI)/180);
finalHand.push_back((ui->lineEdit_final_hand_2->text().toDouble()*M_PI)/180);
finalHand.push_back((ui->lineEdit_final_hand_3->text().toDouble()*M_PI)/180);
finalHand.push_back((ui->lineEdit_final_hand_4->text().toDouble()*M_PI)/180);
}
void TolDialogHUMP::setPlaneParameters(std::vector<double> &point1,std::vector<double> &point2,std::vector<double> &point3)
{
if(!point1.empty() && !point2.empty() && !point3.empty())
{
ui->lineEdit_point_1_x->setText(QString::number(point1.at(0)));
ui->lineEdit_point_1_y->setText(QString::number(point1.at(1)));
ui->lineEdit_point_1_z->setText(QString::number(point1.at(2)));
ui->lineEdit_point_2_x->setText(QString::number(point2.at(0)));
ui->lineEdit_point_2_y->setText(QString::number(point2.at(1)));
ui->lineEdit_point_2_z->setText(QString::number(point2.at(2)));
ui->lineEdit_point_3_x->setText(QString::number(point3.at(0)));
ui->lineEdit_point_3_y->setText(QString::number(point3.at(1)));
ui->lineEdit_point_3_z->setText(QString::number(point3.at(2)));
}
}
void TolDialogHUMP::setInitJointsVel(std::vector<double>& init_vel)
{
if(!init_vel.empty())
{
ui->lineEdit_init_vel_1->setText(QString::number(init_vel.at(0)));
ui->lineEdit_init_vel_2->setText(QString::number(init_vel.at(1)));
ui->lineEdit_init_vel_3->setText(QString::number(init_vel.at(2)));
ui->lineEdit_init_vel_4->setText(QString::number(init_vel.at(3)));
ui->lineEdit_init_vel_5->setText(QString::number(init_vel.at(4)));
ui->lineEdit_init_vel_6->setText(QString::number(init_vel.at(5)));
ui->lineEdit_init_vel_7->setText(QString::number(init_vel.at(6)));
ui->lineEdit_init_vel_8->setText(QString::number(init_vel.at(7)));
#if HAND == 0
ui->lineEdit_init_vel_9->setText(QString::number(init_vel.at(8)));
ui->lineEdit_init_vel_10->setText(QString::number(init_vel.at(9)));
ui->lineEdit_init_vel_11->setText(QString::number(init_vel.at(10)));
#endif
}
}
void TolDialogHUMP::setInitJointsAcc(std::vector<double>& init_acc)
{
if(!init_acc.empty())
{
ui->lineEdit_init_acc_1->setText(QString::number(init_acc.at(0)));
ui->lineEdit_init_acc_2->setText(QString::number(init_acc.at(1)));
ui->lineEdit_init_acc_3->setText(QString::number(init_acc.at(2)));
ui->lineEdit_init_acc_4->setText(QString::number(init_acc.at(3)));
ui->lineEdit_init_acc_5->setText(QString::number(init_acc.at(4)));
ui->lineEdit_init_acc_6->setText(QString::number(init_acc.at(5)));
ui->lineEdit_init_acc_7->setText(QString::number(init_acc.at(6)));
ui->lineEdit_init_acc_8->setText(QString::number(init_acc.at(7)));
#if HAND == 0
ui->lineEdit_init_acc_9->setText(QString::number(init_acc.at(8)));
ui->lineEdit_init_acc_10->setText(QString::number(init_acc.at(9)));
ui->lineEdit_init_acc_11->setText(QString::number(init_acc.at(10)));
#endif
}
}
void TolDialogHUMP::setPointsOfArm(DHparams m_DH_rightArm, string name)
{
double D_LENGHT_TOL = 350; //Max Length of the link
int npoints_arm = 0;
#if HAND == 0
int npoints_finger = 9;
#elif HAND == 1
int npoints_finger = 4;
#elif HAND == 2
int npoints_finger = 0;
#endif
ui->lineEdit_sphere1_r->setText(QString::number(0));
ui->lineEdit_sphere1_r->setEnabled(false);
ui->lineEdit_sphere2_r->setText(QString::number(0));
ui->lineEdit_sphere2_r->setEnabled(false);
ui->lineEdit_sphere3_r->setText(QString::number(0));
ui->lineEdit_sphere3_r->setEnabled(false);
ui->lineEdit_sphere4_r->setText(QString::number(0));
ui->lineEdit_sphere4_r->setEnabled(false);
ui->lineEdit_sphere5_r->setText(QString::number(0));
ui->lineEdit_sphere5_r->setEnabled(false);
ui->lineEdit_sphere6_r->setText(QString::number(0));
ui->lineEdit_sphere6_r->setEnabled(false);
ui->lineEdit_sphere7_r->setText(QString::number(0));
ui->lineEdit_sphere7_r->setEnabled(false);
ui->lineEdit_sphere8_r->setText(QString::number(0));
ui->lineEdit_sphere8_r->setEnabled(false);
ui->lineEdit_sphere9_r->setText(QString::number(0));
ui->lineEdit_sphere9_r->setEnabled(false);
ui->lineEdit_sphere10_r->setText(QString::number(0));
ui->lineEdit_sphere10_r->setEnabled(false);
ui->lineEdit_sphere11_r->setText(QString::number(0));
ui->lineEdit_sphere11_r->setEnabled(false);
//Manipulator with shoulder offset
if(m_DH_rightArm.d.at(1)!=0)
{
npoints_arm = npoints_arm + 2;
ui->lineEdit_sphere2_r->setEnabled(true);
ui->lineEdit_sphere4_r->setEnabled(true);
if(m_DH_rightArm.d.at(0)>=D_LENGHT_TOL)
{
npoints_arm++;
ui->lineEdit_sphere1_r->setEnabled(true);
}
if(m_DH_rightArm.d.at(1)>=D_LENGHT_TOL)
{
npoints_arm++;
ui->lineEdit_sphere3_r->setEnabled(true);
}
}
//Manipulator without shoulder offset
else
{
npoints_arm++;
ui->lineEdit_sphere4_r->setEnabled(true);
if(m_DH_rightArm.d.at(0)>=D_LENGHT_TOL)
{
npoints_arm++;
ui->lineEdit_sphere1_r->setEnabled(true);
}
}
//Manipulator with elbow offset
if(m_DH_rightArm.d.at(3)!=0)
{
npoints_arm = npoints_arm + 2;
ui->lineEdit_sphere6_r->setEnabled(true);
ui->lineEdit_sphere8_r->setEnabled(true);
if(m_DH_rightArm.d.at(2)>=D_LENGHT_TOL)
{
npoints_arm++;
ui->lineEdit_sphere5_r->setEnabled(true);
}
if(m_DH_rightArm.d.at(3)>=D_LENGHT_TOL)
{
npoints_arm++;
ui->lineEdit_sphere7_r->setEnabled(true);
}
}
//Manipulator without elbow offset
else
{
npoints_arm++;
ui->lineEdit_sphere8_r->setEnabled(true);
if(m_DH_rightArm.d.at(2)>=D_LENGHT_TOL)
{
npoints_arm++;
ui->lineEdit_sphere5_r->setEnabled(true);
}
}
//Manipulator with wrist offset
if(m_DH_rightArm.d.at(5)!=0)
{
npoints_arm = npoints_arm + 2;
ui->lineEdit_sphere10_r->setEnabled(true);
ui->lineEdit_sphere12_r->setEnabled(true);
if(m_DH_rightArm.d.at(4)>=D_LENGHT_TOL)
{
npoints_arm++;
ui->lineEdit_sphere9_r->setEnabled(true);
}
if(m_DH_rightArm.d.at(5)>=D_LENGHT_TOL)
{
npoints_arm++;
ui->lineEdit_sphere11_r->setEnabled(true);
}
}
//Manipulator without wrist offset
else
{
npoints_arm++;
ui->lineEdit_sphere12_r->setEnabled(true);
if(m_DH_rightArm.d.at(4)>=D_LENGHT_TOL)
{
npoints_arm++;
ui->lineEdit_sphere9_r->setEnabled(true);
}
}
//Sphere 13 and 14 are create for all manipulators
npoints_arm = npoints_arm + 2;
//Spheres used to model/represent the fingers (in BarrettHand)
npoints_arm = npoints_arm + npoints_finger;
//default values: defined based on the structure of the robot
if(!name.compare("ARoS"))
{
ui->lineEdit_sphere4_r->setText(QString::number(70.00));
ui->lineEdit_sphere5_r->setText(QString::number(60.00));
ui->lineEdit_sphere8_r->setText(QString::number(70.00));
ui->lineEdit_sphere9_r->setText(QString::number(60.00));
ui->lineEdit_sphere12_r->setText(QString::number(70.00));
ui->lineEdit_sphere13_r->setText(QString::number(70.00));
ui->lineEdit_sphere14_r->setText(QString::number(40.00));
}
if(!name.compare("Sawyer"))
{
ui->lineEdit_sphere2_r->setText(QString::number(60.00));
ui->lineEdit_sphere4_r->setText(QString::number(85.00));
ui->lineEdit_sphere5_r->setText(QString::number(65.00));
ui->lineEdit_sphere6_r->setText(QString::number(70.00));
ui->lineEdit_sphere8_r->setText(QString::number(70.00));
ui->lineEdit_sphere9_r->setText(QString::number(70.00));
ui->lineEdit_sphere10_r->setText(QString::number(60.00));
ui->lineEdit_sphere12_r->setText(QString::number(60.00));
ui->lineEdit_sphere13_r->setText(QString::number(80.00));
ui->lineEdit_sphere14_r->setText(QString::number(70.00));
}
ui->label_points_arm->setText(QString::number(npoints_arm));
}
void TolDialogHUMP::getPlaneParameters(std::vector<double> ¶ms)
{
params.clear(); double a,b,c,d;
std::vector<double> point1;
std::vector<double> point2;
std::vector<double> point3;
point1.push_back(ui->lineEdit_point_1_x->text().toDouble());
point1.push_back(ui->lineEdit_point_1_y->text().toDouble());
point1.push_back(ui->lineEdit_point_1_z->text().toDouble());
point2.push_back(ui->lineEdit_point_2_x->text().toDouble());
point2.push_back(ui->lineEdit_point_2_y->text().toDouble());
point2.push_back(ui->lineEdit_point_2_z->text().toDouble());
point3.push_back(ui->lineEdit_point_3_x->text().toDouble());
point3.push_back(ui->lineEdit_point_3_y->text().toDouble());
point3.push_back(ui->lineEdit_point_3_z->text().toDouble());
Matrix3d D; double det;
D << point1.at(0),point1.at(1),point1.at(2),
point2.at(0),point2.at(1),point2.at(2),
point3.at(0),point3.at(1),point3.at(2);
det = D.determinant();
//what does here?
//what does de matrix ABC?
if(det!=0)
{
d=1000;
Matrix3d A;
A << 1,point1.at(1),point1.at(2),
1,point2.at(1),point2.at(2),
1,point3.at(1),point3.at(2);
a = (-d/det)*A.determinant();
Matrix3d B;
B << point1.at(0),1,point1.at(2),
point2.at(0),1,point2.at(2),
point3.at(0),1,point3.at(2);
b = (-d/det)*B.determinant();
Matrix3d C;
C << point1.at(0),point1.at(1),1,
point2.at(0),point2.at(1),1,
point3.at(0),point3.at(1),1;
c = (-d/det)*C.determinant();
params.push_back(a);
params.push_back(b);
params.push_back(c);
params.push_back(d);
}
}
void TolDialogHUMP::on_pushButton_save_clicked()
{
QString filename = QFileDialog::getSaveFileName(this,
tr("Save the file of tolerances"),
QString(MAIN_PATH)+"/Tols",
"All Files (*.*);;Tol Files (*.tol)");
QFile f( filename );
if(f.open( QIODevice::WriteOnly ))
{
QTextStream stream( &f );
stream << "### Parameters of the Human-like Upper-limbs Motion Library ###" << endl;
stream << "# "<< this->infoLine.c_str() << endl;
stream << "# Geometric Dimensions of the arms and of the fingers" << endl;
stream << "Sphere1_radius=" << ui->lineEdit_sphere1_r->text().toStdString().c_str() << endl;
stream << "Sphere2_radius=" << ui->lineEdit_sphere2_r->text().toStdString().c_str() << endl;
stream << "Sphere3_radius=" << ui->lineEdit_sphere3_r->text().toStdString().c_str() << endl;
stream << "Sphere4_radius=" << ui->lineEdit_sphere4_r->text().toStdString().c_str() << endl;
stream << "Sphere5_radius=" << ui->lineEdit_sphere5_r->text().toStdString().c_str() << endl;
stream << "Sphere6_radius=" << ui->lineEdit_sphere6_r->text().toStdString().c_str() << endl;
stream << "Sphere7_radius=" << ui->lineEdit_sphere7_r->text().toStdString().c_str() << endl;
stream << "Sphere8_radius=" << ui->lineEdit_sphere8_r->text().toStdString().c_str() << endl;
stream << "Sphere9_radius=" << ui->lineEdit_sphere9_r->text().toStdString().c_str() << endl;
stream << "Sphere10_radius=" << ui->lineEdit_sphere10_r->text().toStdString().c_str() << endl;
stream << "Sphere11_radius=" << ui->lineEdit_sphere11_r->text().toStdString().c_str() << endl;
stream << "Sphere12_radius=" << ui->lineEdit_sphere12_r->text().toStdString().c_str() << endl;
stream << "Sphere13_radius=" << ui->lineEdit_sphere13_r->text().toStdString().c_str() << endl;
stream << "Sphere14_radius=" << ui->lineEdit_sphere14_r->text().toStdString().c_str() << endl;
stream << "Hand_1_1=" << ui->lineEdit_hand_1_1->text().toStdString().c_str() << endl;
stream << "Hand_1_2=" << ui->lineEdit_hand_1_2->text().toStdString().c_str() << endl;
stream << "Hand_1_3=" << ui->lineEdit_hand_1_3->text().toStdString().c_str() << endl;
stream << "Hand_2_1=" << ui->lineEdit_hand_2_1->text().toStdString().c_str() << endl;
stream << "Hand_2_2=" << ui->lineEdit_hand_2_2->text().toStdString().c_str() << endl;
stream << "Hand_2_3=" << ui->lineEdit_hand_2_3->text().toStdString().c_str() << endl;
stream << "Hand_3_1=" << ui->lineEdit_hand_3_1->text().toStdString().c_str() << endl;
stream << "Hand_3_2=" << ui->lineEdit_hand_3_2->text().toStdString().c_str() << endl;
stream << "Hand_3_3=" << ui->lineEdit_hand_3_3->text().toStdString().c_str() << endl;
stream << "Hand_tip_1=" << ui->lineEdit_hand_tip_1->text().toStdString().c_str() << endl;
stream << "Hand_tip_2=" << ui->lineEdit_hand_tip_2->text().toStdString().c_str() << endl;
stream << "Hand_tip_3=" << ui->lineEdit_hand_tip_3->text().toStdString().c_str() << endl;
stream << "# Joint Expanse factors" << endl;
stream << "lambda_1=" << ui->lineEdit_lambda_1->text().toStdString().c_str() << endl;
stream << "lambda_2=" << ui->lineEdit_lambda_2->text().toStdString().c_str() << endl;
stream << "lambda_3=" << ui->lineEdit_lambda_3->text().toStdString().c_str() << endl;
stream << "lambda_4=" << ui->lineEdit_lambda_4->text().toStdString().c_str() << endl;
stream << "lambda_5=" << ui->lineEdit_lambda_5->text().toStdString().c_str() << endl;
stream << "lambda_6=" << ui->lineEdit_lambda_6->text().toStdString().c_str() << endl;
stream << "lambda_7=" << ui->lineEdit_lambda_7->text().toStdString().c_str() << endl;
stream << "lambda_8=" << ui->lineEdit_lambda_8->text().toStdString().c_str() << endl;
stream << "lambda_9=" << ui->lineEdit_lambda_9->text().toStdString().c_str() << endl;
stream << "lambda_10=" << ui->lineEdit_lambda_10->text().toStdString().c_str() << endl;
stream << "lambda_11=" << ui->lineEdit_lambda_11->text().toStdString().c_str() << endl;
stream << "# Initial Velocity " << endl;
stream << "init_vel_1=" << ui->lineEdit_init_vel_1->text().toStdString().c_str() << endl;
stream << "init_vel_2=" << ui->lineEdit_init_vel_2->text().toStdString().c_str() << endl;
stream << "init_vel_3=" << ui->lineEdit_init_vel_3->text().toStdString().c_str() << endl;
stream << "init_vel_4=" << ui->lineEdit_init_vel_4->text().toStdString().c_str() << endl;
stream << "init_vel_5=" << ui->lineEdit_init_vel_5->text().toStdString().c_str() << endl;
stream << "init_vel_6=" << ui->lineEdit_init_vel_6->text().toStdString().c_str() << endl;
stream << "init_vel_7=" << ui->lineEdit_init_vel_7->text().toStdString().c_str() << endl;
stream << "init_vel_8=" << ui->lineEdit_init_vel_8->text().toStdString().c_str() << endl;
stream << "init_vel_9=" << ui->lineEdit_init_vel_9->text().toStdString().c_str() << endl;
stream << "init_vel_10=" << ui->lineEdit_init_vel_10->text().toStdString().c_str() << endl;
stream << "init_vel_11=" << ui->lineEdit_init_vel_11->text().toStdString().c_str() << endl;
stream << "# Final Velocity " << endl;
stream << "final_vel_1=" << ui->lineEdit_final_vel_1->text().toStdString().c_str() << endl;
stream << "final_vel_2=" << ui->lineEdit_final_vel_2->text().toStdString().c_str() << endl;
stream << "final_vel_3=" << ui->lineEdit_final_vel_3->text().toStdString().c_str() << endl;
stream << "final_vel_4=" << ui->lineEdit_final_vel_4->text().toStdString().c_str() << endl;
stream << "final_vel_5=" << ui->lineEdit_final_vel_5->text().toStdString().c_str() << endl;
stream << "final_vel_6=" << ui->lineEdit_final_vel_6->text().toStdString().c_str() << endl;
stream << "final_vel_7=" << ui->lineEdit_final_vel_7->text().toStdString().c_str() << endl;
stream << "final_vel_8=" << ui->lineEdit_final_vel_8->text().toStdString().c_str() << endl;
stream << "final_vel_9=" << ui->lineEdit_final_vel_9->text().toStdString().c_str() << endl;
stream << "final_vel_10=" << ui->lineEdit_final_vel_10->text().toStdString().c_str() << endl;
stream << "final_vel_11=" << ui->lineEdit_final_vel_11->text().toStdString().c_str() << endl;
stream << "# Initial Acceleration " << endl;
stream << "init_acc_1=" << ui->lineEdit_init_acc_1->text().toStdString().c_str() << endl;
stream << "init_acc_2=" << ui->lineEdit_init_acc_2->text().toStdString().c_str() << endl;
stream << "init_acc_3=" << ui->lineEdit_init_acc_3->text().toStdString().c_str() << endl;
stream << "init_acc_4=" << ui->lineEdit_init_acc_4->text().toStdString().c_str() << endl;
stream << "init_acc_5=" << ui->lineEdit_init_acc_5->text().toStdString().c_str() << endl;
stream << "init_acc_6=" << ui->lineEdit_init_acc_6->text().toStdString().c_str() << endl;
stream << "init_acc_7=" << ui->lineEdit_init_acc_7->text().toStdString().c_str() << endl;
stream << "init_acc_8=" << ui->lineEdit_init_acc_8->text().toStdString().c_str() << endl;
stream << "init_acc_9=" << ui->lineEdit_init_acc_9->text().toStdString().c_str() << endl;
stream << "init_acc_10=" << ui->lineEdit_init_acc_10->text().toStdString().c_str() << endl;
stream << "init_acc_11=" << ui->lineEdit_init_acc_11->text().toStdString().c_str() << endl;
stream << "# Final Acceleration " << endl;
stream << "final_acc_1=" << ui->lineEdit_final_acc_1->text().toStdString().c_str() << endl;
stream << "final_acc_2=" << ui->lineEdit_final_acc_2->text().toStdString().c_str() << endl;
stream << "final_acc_3=" << ui->lineEdit_final_acc_3->text().toStdString().c_str() << endl;
stream << "final_acc_4=" << ui->lineEdit_final_acc_4->text().toStdString().c_str() << endl;
stream << "final_acc_5=" << ui->lineEdit_final_acc_5->text().toStdString().c_str() << endl;
stream << "final_acc_6=" << ui->lineEdit_final_acc_6->text().toStdString().c_str() << endl;
stream << "final_acc_7=" << ui->lineEdit_final_acc_7->text().toStdString().c_str() << endl;
stream << "final_acc_8=" << ui->lineEdit_final_acc_8->text().toStdString().c_str() << endl;
stream << "final_acc_9=" << ui->lineEdit_final_acc_9->text().toStdString().c_str() << endl;
stream << "final_acc_10=" << ui->lineEdit_final_acc_10->text().toStdString().c_str() << endl;
stream << "final_acc_11=" << ui->lineEdit_final_acc_11->text().toStdString().c_str() << endl;
stream << "# Tolerances with the target [mm]" << endl;
stream << "tar_xx_1=" << ui->lineEdit_tar_xx_1->text().toStdString().c_str()<< endl;
stream << "tar_xx_2=" << ui->lineEdit_tar_xx_2->text().toStdString().c_str()<< endl;
stream << "tar_xx_3=" << ui->lineEdit_tar_xx_3->text().toStdString().c_str()<< endl;
stream << "tar_yy_1=" << ui->lineEdit_tar_yy_1->text().toStdString().c_str()<< endl;
stream << "tar_yy_2=" << ui->lineEdit_tar_yy_2->text().toStdString().c_str()<< endl;
stream << "tar_yy_3=" << ui->lineEdit_tar_yy_3->text().toStdString().c_str()<< endl;
stream << "tar_zz_1=" << ui->lineEdit_tar_zz_1->text().toStdString().c_str()<< endl;
stream << "tar_zz_2=" << ui->lineEdit_tar_zz_2->text().toStdString().c_str()<< endl;
stream << "tar_zz_3=" << ui->lineEdit_tar_zz_3->text().toStdString().c_str()<< endl;
stream << "tar_xy_1=" << ui->lineEdit_tar_xy_1->text().toStdString().c_str()<< endl;
stream << "tar_xy_2=" << ui->lineEdit_tar_xy_2->text().toStdString().c_str()<< endl;
stream << "tar_xy_3=" << ui->lineEdit_tar_xy_3->text().toStdString().c_str()<< endl;
stream << "tar_xz_1=" << ui->lineEdit_tar_xz_1->text().toStdString().c_str()<< endl;
stream << "tar_xz_2=" << ui->lineEdit_tar_xz_2->text().toStdString().c_str()<< endl;
stream << "tar_xz_3=" << ui->lineEdit_tar_xz_3->text().toStdString().c_str()<< endl;
stream << "tar_yz_1=" << ui->lineEdit_tar_yz_1->text().toStdString().c_str()<< endl;
stream << "tar_yz_2=" << ui->lineEdit_tar_yz_2->text().toStdString().c_str()<< endl;
stream << "tar_yz_3=" << ui->lineEdit_tar_yz_3->text().toStdString().c_str()<< endl;
stream << "# Tolerances with the obstacles [mm]" << endl;
stream << "obs_xx_1=" << ui->lineEdit_obs_xx_1->text().toStdString().c_str()<< endl;
stream << "obs_xx_2=" << ui->lineEdit_obs_xx_2->text().toStdString().c_str()<< endl;
stream << "obs_xx_3=" << ui->lineEdit_obs_xx_3->text().toStdString().c_str()<< endl;
stream << "obs_yy_1=" << ui->lineEdit_obs_yy_1->text().toStdString().c_str()<< endl;
stream << "obs_yy_2=" << ui->lineEdit_obs_yy_2->text().toStdString().c_str()<< endl;
stream << "obs_yy_3=" << ui->lineEdit_obs_yy_3->text().toStdString().c_str()<< endl;
stream << "obs_zz_1=" << ui->lineEdit_obs_zz_1->text().toStdString().c_str()<< endl;
stream << "obs_zz_2=" << ui->lineEdit_obs_zz_2->text().toStdString().c_str()<< endl;
stream << "obs_zz_3=" << ui->lineEdit_obs_zz_3->text().toStdString().c_str()<< endl;
stream << "obs_xy_1=" << ui->lineEdit_obs_xy_1->text().toStdString().c_str()<< endl;
stream << "obs_xy_2=" << ui->lineEdit_obs_xy_2->text().toStdString().c_str()<< endl;
stream << "obs_xy_3=" << ui->lineEdit_obs_xy_3->text().toStdString().c_str()<< endl;
stream << "obs_xz_1=" << ui->lineEdit_obs_xz_1->text().toStdString().c_str()<< endl;
stream << "obs_xz_2=" << ui->lineEdit_obs_xz_2->text().toStdString().c_str()<< endl;
stream << "obs_xz_3=" << ui->lineEdit_obs_xz_3->text().toStdString().c_str()<< endl;
stream << "obs_yz_1=" << ui->lineEdit_obs_yz_1->text().toStdString().c_str()<< endl;
stream << "obs_yz_2=" << ui->lineEdit_obs_yz_2->text().toStdString().c_str()<< endl;
stream << "obs_yz_3=" << ui->lineEdit_obs_yz_3->text().toStdString().c_str()<< endl;
stream << "# Tolerances for the final posture" << endl;
stream << "tar_pos=" << ui->lineEdit_tar_pos->text().toStdString().c_str()<< endl;
stream << "tar_or="<< ui->lineEdit_tar_or->text().toStdString().c_str() << endl;
stream << "# Pick settings" << endl;
stream << "pre_grasp_x="<< ui->lineEdit_pre_grasp_x->text().toStdString().c_str() << endl;
stream << "pre_grasp_y="<< ui->lineEdit_pre_grasp_y->text().toStdString().c_str() << endl;
stream << "pre_grasp_z="<< ui->lineEdit_pre_grasp_z->text().toStdString().c_str() << endl;
stream << "pre_grasp_dist="<< ui->lineEdit_pre_grasp_dist->text().toStdString().c_str() << endl;
stream << "post_grasp_x="<< ui->lineEdit_post_grasp_x->text().toStdString().c_str() << endl;
stream << "post_grasp_y="<< ui->lineEdit_post_grasp_y->text().toStdString().c_str() << endl;
stream << "post_grasp_z="<< ui->lineEdit_post_grasp_z->text().toStdString().c_str() << endl;
stream << "post_grasp_dist="<< ui->lineEdit_post_grasp_dist->text().toStdString().c_str() << endl;
stream << "# Place settings" << endl;
stream << "pre_place_x="<< ui->lineEdit_pre_place_x->text().toStdString().c_str() << endl;
stream << "pre_place_y="<< ui->lineEdit_pre_place_y->text().toStdString().c_str() << endl;
stream << "pre_place_z="<< ui->lineEdit_pre_place_z->text().toStdString().c_str() << endl;
stream << "pre_place_dist="<< ui->lineEdit_pre_place_dist->text().toStdString().c_str() << endl;
stream << "post_place_x="<< ui->lineEdit_post_place_x->text().toStdString().c_str() << endl;
stream << "post_place_y="<< ui->lineEdit_post_place_y->text().toStdString().c_str() << endl;
stream << "post_place_z="<< ui->lineEdit_post_place_z->text().toStdString().c_str() << endl;
stream << "post_place_dist="<< ui->lineEdit_post_place_dist->text().toStdString().c_str() << endl;
stream << "w_red_app=" << ui->lineEdit_w_red_app->text().toStdString().c_str() << endl;
stream << "w_red_ret=" << ui->lineEdit_w_red_ret->text().toStdString().c_str() << endl;
stream << "# Move settings" << endl;
stream << "target_x=" << ui->lineEdit_target_x->text().toStdString().c_str() << endl;
stream << "target_y=" << ui->lineEdit_target_y->text().toStdString().c_str() << endl;
stream << "target_z=" << ui->lineEdit_target_z->text().toStdString().c_str() << endl;
stream << "target_roll=" << ui->lineEdit_target_roll->text().toStdString().c_str() << endl;
stream << "target_pitch=" << ui->lineEdit_target_pitch->text().toStdString().c_str() << endl;
stream << "target_yaw=" << ui->lineEdit_target_yaw->text().toStdString().c_str() << endl;
stream << "final_arm_1=" << ui->lineEdit_final_arm_1->text().toStdString().c_str() << endl;
stream << "final_arm_2=" << ui->lineEdit_final_arm_2->text().toStdString().c_str() << endl;
stream << "final_arm_3=" << ui->lineEdit_final_arm_3->text().toStdString().c_str() << endl;
stream << "final_arm_4=" << ui->lineEdit_final_arm_4->text().toStdString().c_str() << endl;
stream << "final_arm_5=" << ui->lineEdit_final_arm_5->text().toStdString().c_str() << endl;
stream << "final_arm_6=" << ui->lineEdit_final_arm_6->text().toStdString().c_str() << endl;
stream << "final_arm_7=" << ui->lineEdit_final_arm_7->text().toStdString().c_str() << endl;
stream << "final_hand_1=" << ui->lineEdit_final_hand_1->text().toStdString().c_str() << endl;
stream << "final_hand_2=" << ui->lineEdit_final_hand_2->text().toStdString().c_str() << endl;
stream << "final_hand_3=" << ui->lineEdit_final_hand_3->text().toStdString().c_str() << endl;
stream << "final_hand_4=" << ui->lineEdit_final_hand_4->text().toStdString().c_str() << endl;
if (ui->checkBox_sel_final_posture->isChecked())
stream << "sel_final=true"<< endl;
else
stream << "sel_final=false"<< endl;
stream << "plane_point1_x=" << ui->lineEdit_point_1_x->text().toStdString().c_str() << endl;
stream << "plane_point1_y=" << ui->lineEdit_point_1_y->text().toStdString().c_str() << endl;
stream << "plane_point1_z=" << ui->lineEdit_point_1_z->text().toStdString().c_str() << endl;
stream << "plane_point2_x=" << ui->lineEdit_point_2_x->text().toStdString().c_str() << endl;
stream << "plane_point2_y=" << ui->lineEdit_point_2_y->text().toStdString().c_str() << endl;
stream << "plane_point2_z=" << ui->lineEdit_point_2_z->text().toStdString().c_str() << endl;
stream << "plane_point3_x=" << ui->lineEdit_point_3_x->text().toStdString().c_str() << endl;
stream << "plane_point3_y=" << ui->lineEdit_point_3_y->text().toStdString().c_str() << endl;
stream << "plane_point3_z=" << ui->lineEdit_point_3_z->text().toStdString().c_str() << endl;
if (ui->checkBox_add_plane->isChecked())
stream << "add_plane=true"<< endl;
else
stream << "add_plane=false"<< endl;
stream << "# Others" << endl;
stream << "max_velocity="<< ui->lineEdit_w_max->text().toStdString().c_str() <<endl;
stream << "max_alpha="<< ui->lineEdit_alpha_max->text().toStdString().c_str() <<endl;
#if HAND == 1
stream << "max_velocity_gripper="<< ui->lineEdit_w_max_gripper->text().toStdString().c_str() <<endl;
stream << "max_alpha_gripper="<< ui->lineEdit_alpha_max_gripper->text().toStdString().c_str() <<endl;
#endif
if (ui->checkBox_tar_av->isChecked())
stream << "tar_av=false"<< endl;
else
stream << "tar_av=true"<< endl;
if (ui->checkBox_ob_av->isChecked())
stream << "ob_av=false"<< endl;
else
stream << "ob_av=true"<< endl;
if(ui->checkBox_approach->isChecked())
stream << "approach=false"<<endl;
else
stream << "approach=true"<<endl;
if(ui->checkBox_retreat->isChecked())
stream << "retreat=false"<<endl;
else
stream << "retreat=true"<<endl;
if(ui->checkBox_rand_init->isChecked())
stream << "rand_init=true"<<endl;
else
stream << "rand_init=false"<<endl;
if(ui->checkBox_coll->isChecked())
stream << "coll=false"<<endl;
else
stream << "coll=true"<<endl;
if(ui->checkBox_straight_line->isChecked())
stream << "straight_line=true"<<endl;
else
stream << "straight_line=false"<<endl;
f.close();
}
}
void TolDialogHUMP::on_pushButton_load_clicked()
{
QString filename = QFileDialog::getOpenFileName(this,
tr("Load the file of tolerances"),
QString(MAIN_PATH)+"/Tols",
"All Files (*.*);; Tol Files (*.tol)");
QFile f(filename);
//if(f.open( QIODevice::ReadOnly )) //with this line i get the error: QIODevice::write: ReadOnly device
if(f.open( QIODevice::ReadOnly))
{
QTextStream stream( &f );
QString line;
while(!stream.atEnd())
{
line = f.readLine();
if(line.at(0)!=QChar('#'))
{ //get the error QIODevice::write: ReadOnly device when enter here
QStringList fields = line.split("=");
stream << "Sphere1_radius=" << ui->lineEdit_sphere1_r->text().toStdString().c_str() << endl;
stream << "Sphere2_radius=" << ui->lineEdit_sphere2_r->text().toStdString().c_str() << endl;
stream << "Sphere3_radius=" << ui->lineEdit_sphere3_r->text().toStdString().c_str() << endl;
stream << "Sphere4_radius=" << ui->lineEdit_sphere4_r->text().toStdString().c_str() << endl;
stream << "Sphere5_radius=" << ui->lineEdit_sphere5_r->text().toStdString().c_str() << endl;
stream << "Sphere6_radius=" << ui->lineEdit_sphere6_r->text().toStdString().c_str() << endl;
stream << "Sphere7_radius=" << ui->lineEdit_sphere7_r->text().toStdString().c_str() << endl;
stream << "Sphere8_radius=" << ui->lineEdit_sphere8_r->text().toStdString().c_str() << endl;
stream << "Sphere9_radius=" << ui->lineEdit_sphere9_r->text().toStdString().c_str() << endl;
stream << "Sphere10_radius=" << ui->lineEdit_sphere10_r->text().toStdString().c_str() << endl;
stream << "Sphere11_radius=" << ui->lineEdit_sphere11_r->text().toStdString().c_str() << endl;
stream << "Sphere12_radius=" << ui->lineEdit_sphere12_r->text().toStdString().c_str() << endl;
stream << "Sphere13_radius=" << ui->lineEdit_sphere13_r->text().toStdString().c_str() << endl;
stream << "Sphere14_radius=" << ui->lineEdit_sphere14_r->text().toStdString().c_str() << endl;
if (QString::compare(fields.at(0),QString("Sphere1_radius"),Qt::CaseInsensitive)==0)
ui->lineEdit_sphere1_r->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("Sphere2_radius"),Qt::CaseInsensitive)==0)
ui->lineEdit_sphere2_r->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("Sphere3_radius"),Qt::CaseInsensitive)==0)
ui->lineEdit_sphere3_r->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("Sphere4_radius"),Qt::CaseInsensitive)==0)
ui->lineEdit_sphere4_r->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("Sphere5_radius"),Qt::CaseInsensitive)==0)
ui->lineEdit_sphere5_r->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("Sphere6_radius"),Qt::CaseInsensitive)==0)
ui->lineEdit_sphere6_r->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("Sphere7_radius"),Qt::CaseInsensitive)==0)
ui->lineEdit_sphere7_r->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("Sphere8_radius"),Qt::CaseInsensitive)==0)
ui->lineEdit_sphere8_r->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("Sphere9_radius"),Qt::CaseInsensitive)==0)
ui->lineEdit_sphere9_r->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("Sphere10_radius"),Qt::CaseInsensitive)==0)
ui->lineEdit_sphere10_r->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("Sphere11_radius"),Qt::CaseInsensitive)==0)
ui->lineEdit_sphere11_r->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("Sphere12_radius"),Qt::CaseInsensitive)==0)
ui->lineEdit_sphere12_r->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("Sphere13_radius"),Qt::CaseInsensitive)==0)
ui->lineEdit_sphere13_r->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("Sphere14_radius"),Qt::CaseInsensitive)==0)
ui->lineEdit_sphere14_r->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("Hand_1_1"),Qt::CaseInsensitive)==0)
ui->lineEdit_hand_1_1->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("Hand_1_2"),Qt::CaseInsensitive)==0)
ui->lineEdit_hand_1_2->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("Hand_1_3"),Qt::CaseInsensitive)==0)
ui->lineEdit_hand_1_3->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("Hand_2_1"),Qt::CaseInsensitive)==0)
ui->lineEdit_hand_2_1->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("Hand_2_2"),Qt::CaseInsensitive)==0)
ui->lineEdit_hand_2_2->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("Hand_2_3"),Qt::CaseInsensitive)==0)
ui->lineEdit_hand_2_3->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("Hand_3_1"),Qt::CaseInsensitive)==0)
ui->lineEdit_hand_3_1->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("Hand_3_2"),Qt::CaseInsensitive)==0)
ui->lineEdit_hand_3_2->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("Hand_3_3"),Qt::CaseInsensitive)==0)
ui->lineEdit_hand_3_3->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("Hand_tip_1"),Qt::CaseInsensitive)==0)
ui->lineEdit_hand_tip_1->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("Hand_tip_2"),Qt::CaseInsensitive)==0)
ui->lineEdit_hand_tip_2->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("Hand_tip_3"),Qt::CaseInsensitive)==0)
ui->lineEdit_hand_tip_3->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("lambda_1"),Qt::CaseInsensitive)==0)
ui->lineEdit_lambda_1->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("lambda_2"),Qt::CaseInsensitive)==0)
ui->lineEdit_lambda_2->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("lambda_3"),Qt::CaseInsensitive)==0)
ui->lineEdit_lambda_3->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("lambda_4"),Qt::CaseInsensitive)==0)
ui->lineEdit_lambda_4->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("lambda_5"),Qt::CaseInsensitive)==0)
ui->lineEdit_lambda_5->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("lambda_6"),Qt::CaseInsensitive)==0)
ui->lineEdit_lambda_6->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("lambda_7"),Qt::CaseInsensitive)==0)
ui->lineEdit_lambda_7->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("lambda_8"),Qt::CaseInsensitive)==0)
ui->lineEdit_lambda_8->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("lambda_9"),Qt::CaseInsensitive)==0)
ui->lineEdit_lambda_9->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("lambda_10"),Qt::CaseInsensitive)==0)
ui->lineEdit_lambda_10->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("lambda_11"),Qt::CaseInsensitive)==0)
ui->lineEdit_lambda_11->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("init_vel_1"),Qt::CaseInsensitive)==0)
ui->lineEdit_init_vel_1->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("init_vel_2"),Qt::CaseInsensitive)==0)
ui->lineEdit_init_vel_2->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("init_vel_3"),Qt::CaseInsensitive)==0)
ui->lineEdit_init_vel_3->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("init_vel_4"),Qt::CaseInsensitive)==0)
ui->lineEdit_init_vel_4->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("init_vel_5"),Qt::CaseInsensitive)==0)
ui->lineEdit_init_vel_5->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("init_vel_6"),Qt::CaseInsensitive)==0)
ui->lineEdit_init_vel_6->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("init_vel_7"),Qt::CaseInsensitive)==0)
ui->lineEdit_init_vel_7->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("init_vel_8"),Qt::CaseInsensitive)==0)
ui->lineEdit_init_vel_8->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("init_vel_9"),Qt::CaseInsensitive)==0)
ui->lineEdit_init_vel_9->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("init_vel_10"),Qt::CaseInsensitive)==0)
ui->lineEdit_init_vel_10->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("init_vel_11"),Qt::CaseInsensitive)==0)
ui->lineEdit_init_vel_11->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_vel_1"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_vel_1->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_vel_2"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_vel_2->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_vel_3"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_vel_3->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_vel_4"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_vel_4->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_vel_5"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_vel_5->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_vel_6"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_vel_6->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_vel_7"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_vel_7->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_vel_8"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_vel_8->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_vel_9"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_vel_9->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_vel_10"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_vel_10->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_vel_11"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_vel_11->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("init_acc_1"),Qt::CaseInsensitive)==0)
ui->lineEdit_init_acc_1->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("init_acc_2"),Qt::CaseInsensitive)==0)
ui->lineEdit_init_acc_2->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("init_acc_3"),Qt::CaseInsensitive)==0)
ui->lineEdit_init_acc_3->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("init_acc_4"),Qt::CaseInsensitive)==0)
ui->lineEdit_init_acc_4->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("init_acc_5"),Qt::CaseInsensitive)==0)
ui->lineEdit_init_acc_5->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("init_acc_6"),Qt::CaseInsensitive)==0)
ui->lineEdit_init_acc_6->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("init_acc_7"),Qt::CaseInsensitive)==0)
ui->lineEdit_init_acc_7->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("init_acc_8"),Qt::CaseInsensitive)==0)
ui->lineEdit_init_acc_8->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("init_acc_9"),Qt::CaseInsensitive)==0)
ui->lineEdit_init_acc_9->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("init_acc_10"),Qt::CaseInsensitive)==0)
ui->lineEdit_init_acc_10->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("init_acc_11"),Qt::CaseInsensitive)==0)
ui->lineEdit_init_acc_11->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_acc_1"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_acc_1->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_acc_2"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_acc_2->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_acc_3"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_acc_3->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_acc_4"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_acc_4->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_acc_5"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_acc_5->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_acc_6"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_acc_6->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_acc_7"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_acc_7->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_acc_8"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_acc_8->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_acc_9"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_acc_9->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_acc_10"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_acc_10->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_acc_11"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_acc_11->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("tar_xx_1"),Qt::CaseInsensitive)==0)
ui->lineEdit_tar_xx_1->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("tar_xx_2"),Qt::CaseInsensitive)==0)
ui->lineEdit_tar_xx_2->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("tar_xx_3"),Qt::CaseInsensitive)==0)
ui->lineEdit_tar_xx_3->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("tar_yy_1"),Qt::CaseInsensitive)==0)
ui->lineEdit_tar_yy_1->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("tar_yy_2"),Qt::CaseInsensitive)==0)
ui->lineEdit_tar_yy_2->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("tar_yy_3"),Qt::CaseInsensitive)==0)
ui->lineEdit_tar_yy_3->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("tar_zz_1"),Qt::CaseInsensitive)==0)
ui->lineEdit_tar_zz_1->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("tar_zz_2"),Qt::CaseInsensitive)==0)
ui->lineEdit_tar_zz_2->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("tar_zz_3"),Qt::CaseInsensitive)==0)
ui->lineEdit_tar_zz_3->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("tar_xy_1"),Qt::CaseInsensitive)==0)
ui->lineEdit_tar_xy_1->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("tar_xy_2"),Qt::CaseInsensitive)==0)
ui->lineEdit_tar_xy_2->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("tar_xy_3"),Qt::CaseInsensitive)==0)
ui->lineEdit_tar_xy_3->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("tar_xz_1"),Qt::CaseInsensitive)==0)
ui->lineEdit_tar_xz_1->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("tar_xz_2"),Qt::CaseInsensitive)==0)
ui->lineEdit_tar_xz_2->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("tar_xz_3"),Qt::CaseInsensitive)==0)
ui->lineEdit_tar_xz_3->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("tar_yz_1"),Qt::CaseInsensitive)==0)
ui->lineEdit_tar_yz_1->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("tar_yz_2"),Qt::CaseInsensitive)==0)
ui->lineEdit_tar_yz_2->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("tar_yz_3"),Qt::CaseInsensitive)==0)
ui->lineEdit_tar_yz_3->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("obs_xx_1"),Qt::CaseInsensitive)==0)
ui->lineEdit_obs_xx_1->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("obs_xx_2"),Qt::CaseInsensitive)==0)
ui->lineEdit_obs_xx_2->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("obs_xx_3"),Qt::CaseInsensitive)==0)
ui->lineEdit_obs_xx_3->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("obs_yy_1"),Qt::CaseInsensitive)==0)
ui->lineEdit_obs_yy_1->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("obs_yy_2"),Qt::CaseInsensitive)==0)
ui->lineEdit_obs_yy_2->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("obs_yy_3"),Qt::CaseInsensitive)==0)
ui->lineEdit_obs_yy_3->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("obs_zz_1"),Qt::CaseInsensitive)==0)
ui->lineEdit_obs_zz_1->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("obs_zz_2"),Qt::CaseInsensitive)==0)
ui->lineEdit_obs_zz_2->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("obs_zz_3"),Qt::CaseInsensitive)==0)
ui->lineEdit_obs_zz_3->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("obs_xy_1"),Qt::CaseInsensitive)==0)
ui->lineEdit_obs_xy_1->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("obs_xy_2"),Qt::CaseInsensitive)==0)
ui->lineEdit_obs_xy_2->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("obs_xy_3"),Qt::CaseInsensitive)==0)
ui->lineEdit_obs_xy_3->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("obs_xz_1"),Qt::CaseInsensitive)==0)
ui->lineEdit_obs_xz_1->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("obs_xz_2"),Qt::CaseInsensitive)==0)
ui->lineEdit_obs_xz_2->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("obs_xz_3"),Qt::CaseInsensitive)==0)
ui->lineEdit_obs_xz_3->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("obs_yz_1"),Qt::CaseInsensitive)==0)
ui->lineEdit_obs_yz_1->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("obs_yz_2"),Qt::CaseInsensitive)==0)
ui->lineEdit_obs_yz_2->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("obs_yz_3"),Qt::CaseInsensitive)==0)
ui->lineEdit_obs_yz_3->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("tar_pos"),Qt::CaseInsensitive)==0)
ui->lineEdit_tar_pos->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("tar_or"),Qt::CaseInsensitive)==0)
ui->lineEdit_tar_or->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("pre_grasp_x"),Qt::CaseInsensitive)==0)
ui->lineEdit_pre_grasp_x->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("pre_grasp_y"),Qt::CaseInsensitive)==0)
ui->lineEdit_pre_grasp_y->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("pre_grasp_z"),Qt::CaseInsensitive)==0)
ui->lineEdit_pre_grasp_z->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("pre_grasp_dist"),Qt::CaseInsensitive)==0)
ui->lineEdit_pre_grasp_dist->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("post_grasp_x"),Qt::CaseInsensitive)==0)
ui->lineEdit_post_grasp_x->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("post_grasp_y"),Qt::CaseInsensitive)==0)
ui->lineEdit_post_grasp_y->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("post_grasp_z"),Qt::CaseInsensitive)==0)
ui->lineEdit_post_grasp_z->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("post_grasp_dist"),Qt::CaseInsensitive)==0)
ui->lineEdit_post_grasp_dist->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("pre_place_x"),Qt::CaseInsensitive)==0)
ui->lineEdit_pre_place_x->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("pre_place_y"),Qt::CaseInsensitive)==0)
ui->lineEdit_pre_place_y->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("pre_place_z"),Qt::CaseInsensitive)==0)
ui->lineEdit_pre_place_z->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("pre_place_dist"),Qt::CaseInsensitive)==0)
ui->lineEdit_pre_place_dist->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("post_place_x"),Qt::CaseInsensitive)==0)
ui->lineEdit_post_place_x->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("post_place_y"),Qt::CaseInsensitive)==0)
ui->lineEdit_post_place_y->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("post_place_z"),Qt::CaseInsensitive)==0)
ui->lineEdit_post_place_z->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("post_place_dist"),Qt::CaseInsensitive)==0)
ui->lineEdit_post_place_dist->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("w_red_app"),Qt::CaseInsensitive)==0)
ui->lineEdit_w_red_app->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("w_red_ret"),Qt::CaseInsensitive)==0)
ui->lineEdit_w_red_ret->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("target_x"),Qt::CaseInsensitive)==0)
ui->lineEdit_target_x->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("target_y"),Qt::CaseInsensitive)==0)
ui->lineEdit_target_y->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("target_z"),Qt::CaseInsensitive)==0)
ui->lineEdit_target_z->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("target_roll"),Qt::CaseInsensitive)==0)
ui->lineEdit_target_roll->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("target_pitch"),Qt::CaseInsensitive)==0)
ui->lineEdit_target_pitch->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("target_yaw"),Qt::CaseInsensitive)==0)
ui->lineEdit_target_yaw->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_arm_1"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_arm_1->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_arm_2"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_arm_2->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_arm_3"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_arm_3->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_arm_4"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_arm_4->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_arm_5"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_arm_5->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_arm_6"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_arm_6->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_arm_7"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_arm_7->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_hand_1"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_hand_1->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_hand_2"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_hand_2->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_hand_3"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_hand_3->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("final_hand_4"),Qt::CaseInsensitive)==0)
ui->lineEdit_final_hand_4->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("sel_final"),Qt::CaseInsensitive)==0)
{
if(QString::compare(fields.at(1),QString("false\n"),Qt::CaseInsensitive)==0)
ui->checkBox_sel_final_posture->setChecked(false);
else
ui->checkBox_sel_final_posture->setChecked(true);
}
else if(QString::compare(fields.at(0),QString("plane_point1_x"),Qt::CaseInsensitive)==0)
ui->lineEdit_point_1_x->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("plane_point1_y"),Qt::CaseInsensitive)==0)
ui->lineEdit_point_1_y->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("plane_point1_z"),Qt::CaseInsensitive)==0)
ui->lineEdit_point_1_z->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("plane_point2_x"),Qt::CaseInsensitive)==0)
ui->lineEdit_point_2_x->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("plane_point2_y"),Qt::CaseInsensitive)==0)
ui->lineEdit_point_2_y->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("plane_point2_z"),Qt::CaseInsensitive)==0)
ui->lineEdit_point_2_z->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("plane_point3_x"),Qt::CaseInsensitive)==0)
ui->lineEdit_point_3_x->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("plane_point3_y"),Qt::CaseInsensitive)==0)
ui->lineEdit_point_3_y->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("plane_point3_z"),Qt::CaseInsensitive)==0)
ui->lineEdit_point_3_z->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("add_plane"),Qt::CaseInsensitive)==0)
{
if(QString::compare(fields.at(1),QString("false\n"),Qt::CaseInsensitive)==0)
ui->checkBox_add_plane->setChecked(false);
else
ui->checkBox_add_plane->setChecked(true);
}
else if(QString::compare(fields.at(0),QString("max_velocity"),Qt::CaseInsensitive)==0)
ui->lineEdit_w_max->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("max_alpha"),Qt::CaseInsensitive)==0)
ui->lineEdit_alpha_max->setText(fields.at(1));
#if HAND == 1
else if(QString::compare(fields.at(0),QString("max_velocity_gripper"),Qt::CaseInsensitive)==0)
ui->lineEdit_w_max_gripper->setText(fields.at(1));
else if(QString::compare(fields.at(0),QString("max_alpha_gripper"),Qt::CaseInsensitive)==0)
ui->lineEdit_alpha_max_gripper->setText(fields.at(1));
#endif
else if(QString::compare(fields.at(0),QString("tar_av"),Qt::CaseInsensitive)==0)
{
if(QString::compare(fields.at(1),QString("false\n"),Qt::CaseInsensitive)==0)
ui->checkBox_tar_av->setChecked(true);
else
ui->checkBox_tar_av->setChecked(false);
}
else if(QString::compare(fields.at(0),QString("ob_av"),Qt::CaseInsensitive)==0)
{
if(QString::compare(fields.at(1),QString("false\n"),Qt::CaseInsensitive)==0)
ui->checkBox_ob_av->setChecked(true);
else
ui->checkBox_ob_av->setChecked(false);
}
else if(QString::compare(fields.at(0),QString("approach"),Qt::CaseInsensitive)==0)
{
if(QString::compare(fields.at(1),QString("false\n"),Qt::CaseInsensitive)==0)
ui->checkBox_approach->setChecked(true);
else
ui->checkBox_approach->setChecked(false);
}
else if(QString::compare(fields.at(0),QString("retreat"),Qt::CaseInsensitive)==0)
{
if(QString::compare(fields.at(1),QString("false\n"),Qt::CaseInsensitive)==0)
ui->checkBox_retreat->setChecked(true);
else
ui->checkBox_retreat->setChecked(false);
}
else if(QString::compare(fields.at(0),QString("rand_init"),Qt::CaseInsensitive)==0)
{
if(QString::compare(fields.at(1),QString("false\n"),Qt::CaseInsensitive)==0)
ui->checkBox_rand_init->setChecked(false);
else
ui->checkBox_rand_init->setChecked(true);
}
else if(QString::compare(fields.at(0),QString("coll"),Qt::CaseInsensitive)==0)
{
if(QString::compare(fields.at(1),QString("false\n"),Qt::CaseInsensitive)==0)
ui->checkBox_coll->setChecked(true);
else
ui->checkBox_coll->setChecked(false);
}
else if(QString::compare(fields.at(0),QString("straight_line"),Qt::CaseInsensitive)==0)
{
if(QString::compare(fields.at(1),QString("false\n"),Qt::CaseInsensitive)==0)
ui->checkBox_straight_line->setChecked(false);
else
ui->checkBox_straight_line->setChecked(true);
}
}
}
f.close();
}
}
void TolDialogHUMP::checkApproach(int state)
{
if(state==0)
{
// unchecked
ui->groupBox_pre_grasp->setEnabled(true);
ui->groupBox_pre_place->setEnabled(true);
ui->label_pick->setEnabled(true);
}
else
{
//checked
ui->groupBox_pre_grasp->setEnabled(false);
ui->groupBox_pre_place->setEnabled(false);
ui->label_pick->setEnabled(false);
}
}
void TolDialogHUMP::checkRetreat(int state)
{
if(state==0)
{
// unchecked
ui->groupBox_post_grasp->setEnabled(true);
ui->groupBox_post_place->setEnabled(true);
ui->label_pick->setEnabled(true);
}
else
{
//checked
ui->groupBox_post_grasp->setEnabled(false);
ui->groupBox_post_place->setEnabled(false);
ui->label_pick->setEnabled(false);
}
}
void TolDialogHUMP::checkFinalPosture(int state)
{
if(state==0)
{
// unchecked
ui->groupBox_target->setEnabled(true);
ui->groupBox_final_arm->setEnabled(false);
}
else
{
//checked
ui->groupBox_target->setEnabled(false);
ui->groupBox_final_arm->setEnabled(true);
}
}
void TolDialogHUMP::checkAddPlane(int state)
{
if(state==0)
//unchecked
ui->groupBox_plane->setEnabled(false);
else
//checked
ui->groupBox_plane->setEnabled(true);
}
bool TolDialogHUMP::getRandInit()
{
return ui->checkBox_rand_init->isChecked();
}
void TolDialogHUMP::setRandInit(bool rand)
{
ui->checkBox_rand_init->setChecked(rand);
}
bool TolDialogHUMP::getColl()
{
return !ui->checkBox_coll->isChecked();
}
void TolDialogHUMP::setColl(bool coll)
{
ui->checkBox_coll->setChecked(!coll);
}
bool TolDialogHUMP::get_use_final_posture()
{
return ui->checkBox_sel_final_posture->isChecked();
}
bool TolDialogHUMP::get_add_plane()
{
return ui->checkBox_add_plane->isChecked();
}
bool TolDialogHUMP::get_straight_line()
{
return ui->checkBox_straight_line->isChecked();
}
void TolDialogHUMP::setStraightLine(bool straight)
{
ui->checkBox_straight_line->setChecked(straight);
}
void TolDialogHUMP::set_add_plane(bool plane)
{
ui->checkBox_add_plane->setChecked(plane);
}
} // namespace motion_manager
| 54.066062 | 315 | 0.628788 | JoaoQPereira |
8ca3e44fb3afb84b0ade55a42d2758e71f2d1b2e | 1,910 | cpp | C++ | Paperworks/src/Platform/OpenGL/OpenGLRendererAPI.cpp | codenobacon4u/paperworks | 0e96cd2fb6070a2387ddd36aaa327b04733234fa | [
"MIT"
] | 1 | 2019-08-15T18:58:54.000Z | 2019-08-15T18:58:54.000Z | Paperworks/src/Platform/OpenGL/OpenGLRendererAPI.cpp | codenobacon4u/paperworks | 0e96cd2fb6070a2387ddd36aaa327b04733234fa | [
"MIT"
] | null | null | null | Paperworks/src/Platform/OpenGL/OpenGLRendererAPI.cpp | codenobacon4u/paperworks | 0e96cd2fb6070a2387ddd36aaa327b04733234fa | [
"MIT"
] | null | null | null | #include "pwpch.h"
#include "OpenGLRendererAPI.h"
#include <glad/glad.h>
namespace Paperworks {
void OpenGLMessageCallback(
unsigned source,
unsigned type,
unsigned id,
unsigned severity,
int length,
const char* message,
const void* userParam)
{
switch (severity)
{
case GL_DEBUG_SEVERITY_HIGH: PW_CORE_CRITICAL("{0} Source: {1}", message, source); return;
case GL_DEBUG_SEVERITY_MEDIUM: PW_CORE_ERROR("{0} Source: {1}", message, source); return;
case GL_DEBUG_SEVERITY_LOW: PW_CORE_WARN("{0} Source: {1}", message, source); return;
case GL_DEBUG_SEVERITY_NOTIFICATION: PW_CORE_TRACE(message); return;
}
PW_CORE_ASSERT(false, "Unknown severity level!");
}
void OpenGLRendererAPI::Init()
{
#ifdef PW_DEBUG
glEnable(GL_DEBUG_OUTPUT);
glEnable(GL_DEBUG_OUTPUT_SYNCHRONOUS);
glDebugMessageCallback(OpenGLMessageCallback, nullptr);
glDebugMessageControl(GL_DONT_CARE, GL_DONT_CARE, GL_DEBUG_SEVERITY_NOTIFICATION, 0, NULL, GL_FALSE);
#endif
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glEnable(GL_DEPTH_TEST);
}
void OpenGLRendererAPI::SetViewport(uint32_t x, uint32_t y, uint32_t width, uint32_t height)
{
glViewport(x, y, width, height);
}
void OpenGLRendererAPI::SetClearColor(const glm::vec4& color)
{
glClearColor(color.r, color.g, color.b, color.a);
}
void OpenGLRendererAPI::Clear()
{
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
}
std::pair<int, int> OpenGLRendererAPI::GetViewport()
{
int viewport[4];
glGetIntegerv(GL_VIEWPORT, viewport);
return std::pair<int, int>(viewport[2], viewport[3]);
}
void OpenGLRendererAPI::DrawIndexed(const Shared<VertexArray>& vertexArray, uint32_t indexCount)
{
glDrawElements(GL_TRIANGLES, indexCount ? vertexArray->GetIndexBuffer()->GetCount() : indexCount, GL_UNSIGNED_INT, nullptr);
glBindTexture(GL_TEXTURE_2D, 0);
}
} | 27.285714 | 126 | 0.742932 | codenobacon4u |
8ca44f36d5ebacb5cef0d8b9e03e7f90c366e5f5 | 763 | cpp | C++ | src/hexview/view/player.cpp | ejrh/hex | 3c063ce142e6b62fb0f92f71bc94280305b53322 | [
"MIT"
] | 7 | 2015-09-15T13:20:23.000Z | 2020-12-07T10:14:57.000Z | src/hexview/view/player.cpp | ejrh/hex | 3c063ce142e6b62fb0f92f71bc94280305b53322 | [
"MIT"
] | null | null | null | src/hexview/view/player.cpp | ejrh/hex | 3c063ce142e6b62fb0f92f71bc94280305b53322 | [
"MIT"
] | 1 | 2018-09-07T00:54:35.000Z | 2018-09-07T00:54:35.000Z | #include "common.h"
#include "hexview/view/player.h"
namespace hex {
Player::Player(int id, const std::string& name): id(id), name(name) {
}
void Player::grant_view(Faction::pointer faction, bool allow) {
if (allow)
faction_view.insert(faction->id);
else
faction_view.erase(faction->id);
}
void Player::grant_control(Faction::pointer faction, bool allow) {
if (allow)
faction_control.insert(faction->id);
else
faction_control.erase(faction->id);
}
bool Player::has_view(Faction::pointer faction) const {
return faction_view.find(faction->id) != faction_view.end();
}
bool Player::has_control(Faction::pointer faction) const {
return faction_control.find(faction->id) != faction_control.end();
}
};
| 22.441176 | 70 | 0.686763 | ejrh |
8ca50759f3edb895b34ce913275ee93732491906 | 8,473 | cpp | C++ | Softrast/src/SoftwareRasterizer/texture_load.cpp | RickvanMiltenburg/SoftRast | e14b74804c052bb448058808cbb6dd06616ba585 | [
"MIT"
] | null | null | null | Softrast/src/SoftwareRasterizer/texture_load.cpp | RickvanMiltenburg/SoftRast | e14b74804c052bb448058808cbb6dd06616ba585 | [
"MIT"
] | null | null | null | Softrast/src/SoftwareRasterizer/texture_load.cpp | RickvanMiltenburg/SoftRast | e14b74804c052bb448058808cbb6dd06616ba585 | [
"MIT"
] | null | null | null | /*
SoftRast software rasterizer, by Rick van Miltenburg
Software rasterizer created for fun and educational purposes.
---
Copyright (c) 2015 Rick van Miltenburg
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 "softrast.h"
#include "../MemoryMappedFile.h"
#include <assert.h>
#include <math.h>
#define STB_IMAGE_IMPLEMENTATION
#define STB_IMAGE_RESIZE_IMPLEMENTATION
#include <stb_image.h>
#include <stb_image_resize.h>
extern "C" {
////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////
extern buddy_allocator* _softrastAllocator;
extern DEBUG_SETTINGS Debug;
////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////
uint32_t softrast_texture_load ( softrast_texture* tex, const char* path )
{
//--------------------------------
// Load file
//--------------------------------
MemoryMappedFile file ( path );
if ( !file.IsValid ( ) )
return -1; // File not found (probably)
//--------------------------------
// Load as texture
//--------------------------------
int width, height, components;
unsigned char* data = stbi_load_from_memory ( (const stbi_uc*)file.GetData ( ), (int)file.GetSize ( ), &width, &height, &components, 4 );
if ( data == nullptr )
return -2; // Could not load image
//--------------------------------
// Check parameters
//--------------------------------
if ( width != height )
return (stbi_image_free ( data ), -5); // Only square textures are supported
if ( width & (width-1) )
return (stbi_image_free ( data ), -6); // Only power-of-two textures are supported
if ( width > 0xFFFF )
return (stbi_image_free ( data ), -7); // Only power-of-two sizes that fit in 16 bits are supported
//--------------------------------
// Allocate memory for all mips
//--------------------------------
const uint32_t mipLevels = 1 + (uint32_t)floorf ( 0.5f + log2f ( (float)width ) );
size_t allocSize;
switch ( Debug.textureAddressingMode )
{
case TEXTURE_ADDRESSING_LINEAR:
allocSize = mipLevels * sizeof ( uint32_t* )
+ (width * height + (width * height)/3) * sizeof ( uint32_t );
break;
case TEXTURE_ADDRESSING_TILED:
{
size_t mippedPixCount = (width * height + (width * height)/3);
mippedPixCount += (16 - 1*1); // Pad mip 1x1
if ( mipLevels > 1 )
mippedPixCount += (16 - 2*2); // Pad mip 2x2
allocSize = mipLevels * sizeof ( uint32_t* )
+ mippedPixCount * sizeof ( uint32_t );
}
break;
case TEXTURE_ADDRESSING_SWIZZLED:
allocSize = mipLevels * sizeof ( uint32_t* )
+ (width * height + (width * height)/3+3) * sizeof ( uint32_t );
break;
default:
assert ( false );
break;
}
void* tempMipData = (void*)miltyalloc_buddy_allocator_alloc ( _softrastAllocator, (width/2 + width/4) * (height/2 + height/4) * sizeof ( uint32_t ) );
void* memory = (void*)miltyalloc_buddy_allocator_alloc ( _softrastAllocator, allocSize );
if ( memory == nullptr || tempMipData == nullptr )
return (miltyalloc_buddy_allocator_free ( _softrastAllocator, memory ), miltyalloc_buddy_allocator_free ( _softrastAllocator, tempMipData ), stbi_image_free ( data ), -8); // Could not allocate enough memory
//--------------------------------
// Fill texture data
//--------------------------------
tex->mipData = (uint32_t**)memory;
tex->mipLevels = (uint32_t)mipLevels;
tex->width = (uint16_t)width;
tex->height = (uint16_t)height;
//--------------------------------
// Mip data for swapping
//--------------------------------
uint32_t* mipData[2] = { (uint32_t*)tempMipData, ((uint32_t*)tempMipData) + ((width/2) * (height/2)) };
//--------------------------------
// Fill mips
//--------------------------------
uint32_t* memPtr = (uint32_t*)((uintptr_t)memory + tex->mipLevels * sizeof ( uint32_t* ));
uint32_t mipSize = (uint32_t)width;
uint32_t* imgpixels = (uint32_t*)data;
for ( uint32_t i = 0; i < mipLevels; i++, mipSize /= 2 )
{
uint32_t rowPitch = mipSize * sizeof ( uint32_t );
uintptr_t imgaddr = (uintptr_t)imgpixels;
tex->mipData[i] = memPtr;
if ( Debug.textureAddressingMode == TEXTURE_ADDRESSING_LINEAR )
{
for ( uint32_t r = 0; r < mipSize; r++, imgaddr += rowPitch, memPtr += mipSize )
memcpy ( memPtr, (void*)imgaddr, mipSize * sizeof ( uint32_t ) );
}
else if ( Debug.textureAddressingMode == TEXTURE_ADDRESSING_TILED )
{
const uint32_t tileCols = (mipSize + 3)/4;
const uint32_t tileRows = (mipSize + 3)/4;
uint32_t* dptr = tex->mipData[i];
for ( uint32_t r = 0; r < tileRows; r++ )
{
for ( uint32_t c = 0; c < tileCols; c++, memPtr += 16 )
{
const uint32_t startSrcX = c * 4;
const uint32_t startSrcY = r * 4;
const uint32_t pixCols = (mipSize > 4 ? 4 : mipSize);
const uint32_t pixRows = (mipSize > 4 ? 4 : mipSize);
uint32_t* dptr = memPtr;
for ( uint32_t pr = 0; pr < pixRows; pr++, dptr += 4 )
{
const uint32_t* src = (uint32_t*)(imgpixels + ((startSrcY+pr) * rowPitch)) + startSrcX;
uint32_t* dst = dptr;
for ( uint32_t pc = 0; pc < pixCols; pc++, src++, dst++ )
{
*dst = *src;
}
}
}
}
}
else if ( Debug.textureAddressingMode == TEXTURE_ADDRESSING_SWIZZLED )
{
uint32_t idx = 0;
uint32_t* dptr = tex->mipData[i];
const uint32_t* eptr = dptr + mipSize * mipSize;
for ( ; dptr != eptr; idx++, dptr++ )
{
// yxyx yxyx yxyx yxyx yxyx yxyx yxyx yxyx
// x = 0x55555555
// y = 0xAAAAAAAA
uint32_t srcXPadded = idx & 0x55555555;
uint32_t srcYPadded = (idx & 0xAAAAAAAA) >> 1;
// 0x0x 0x0x 0x0x 0x0x 0x0x 0x0x 0x0x 0x0x
// => 0000 0000 0000 0000 xxxx xxxx xxxx xxxx
uint32_t srcX = 0, srcY = 0;
for ( uint32_t i = 0; i < 16; i++ )
{
srcX |= ((srcXPadded & (1<<(2*i))) >> i);
srcY |= ((srcYPadded & (1<<(2*i))) >> i);
}
*dptr = ((uint32_t*)(imgpixels + srcY * rowPitch))[srcX];
}
memPtr += mipSize * mipSize;
}
else
assert ( false );
//--------------------------------
// Swap mips
//--------------------------------
stbir_resize_uint8_srgb_edgemode ( (const unsigned char*)imgpixels, mipSize, mipSize, mipSize * sizeof ( uint32_t ), (unsigned char*)mipData[i&1], mipSize/2, mipSize/2, mipSize/2 * sizeof ( uint32_t ), 4, 3, 0, STBIR_EDGE_WRAP );
imgpixels = mipData[i&1];
}
if ( Debug.textureAddressingMode == TEXTURE_ADDRESSING_SWIZZLED )
{
*(memPtr++) = 0xFF00FF;
*(memPtr++) = 0xFF00FF;
*(memPtr++) = 0xFF00FF;
}
//--------------------------------
// Memory checks
//--------------------------------
assert ( (uintptr_t)memPtr == (uintptr_t)memory + allocSize );
//--------------------------------
// Cleanup
//--------------------------------
miltyalloc_buddy_allocator_free ( _softrastAllocator, tempMipData );
stbi_image_free ( data );
//--------------------------------
// We're done here!
//--------------------------------
return 0;
}
uint32_t softrast_texture_free ( softrast_texture* tex )
{
if ( miltyalloc_buddy_allocator_free ( _softrastAllocator, tex->mipData ) == MILTYALLOC_SUCCESS )
return 0;
else
return -1; // Could not free memory
}
}; | 36.83913 | 461 | 0.571698 | RickvanMiltenburg |
8cb6c29e8ae2ff198dabd14817f916210c9ad420 | 554 | cpp | C++ | Sid's Levels/Level - 2/Arrays/MissingNumber.cpp | Tiger-Team-01/DSA-A-Z-Practice | e08284ffdb1409c08158dd4e90dc75dc3a3c5b18 | [
"MIT"
] | 14 | 2021-08-22T18:21:14.000Z | 2022-03-08T12:04:23.000Z | Sid's Levels/Level - 2/Arrays/MissingNumber.cpp | Tiger-Team-01/DSA-A-Z-Practice | e08284ffdb1409c08158dd4e90dc75dc3a3c5b18 | [
"MIT"
] | 1 | 2021-10-17T18:47:17.000Z | 2021-10-17T18:47:17.000Z | Sid's Levels/Level - 2/Arrays/MissingNumber.cpp | Tiger-Team-01/DSA-A-Z-Practice | e08284ffdb1409c08158dd4e90dc75dc3a3c5b18 | [
"MIT"
] | 5 | 2021-09-01T08:21:12.000Z | 2022-03-09T12:13:39.000Z | class Solution {
public:
int missingNumber(vector<int>& nums) {
//OM GAN GANAPATHAYE NAMO NAMAH
//JAI SHRI RAM
//JAI BAJRANGBALI
//AMME NARAYANA, DEVI NARAYANA, LAKSHMI NARAYANA, BHADRE NARAYANA
int sumOfArray = 0;
int actualSum = 0;
for(int i = 0; i < nums.size(); i++)
{
sumOfArray += nums[i];
}
for(int i = 0; i <= nums.size(); i++)
{
actualSum += i;
}
int res = actualSum - sumOfArray;
return res;
}
};
| 25.181818 | 73 | 0.490975 | Tiger-Team-01 |
8cc104b9be9c6db26cbebdc42f2c3a5075eeb286 | 521 | cpp | C++ | 02-Arrays/OddOccurrencesInArray.cpp | hNrChVz/codility-lessons-solution | b76e802c97ed95feb69a1038736db6d494418777 | [
"FSFAP"
] | null | null | null | 02-Arrays/OddOccurrencesInArray.cpp | hNrChVz/codility-lessons-solution | b76e802c97ed95feb69a1038736db6d494418777 | [
"FSFAP"
] | null | null | null | 02-Arrays/OddOccurrencesInArray.cpp | hNrChVz/codility-lessons-solution | b76e802c97ed95feb69a1038736db6d494418777 | [
"FSFAP"
] | null | null | null | #include <vector>
#include <algorithm>
using namespace std;
/*
My trick here, assuming that all the assumptions are always true, is that sort the array first:
std::sort (A.begin(), A.end());
After sorting, iterate until it finds an unmatched pair.
Time complexity: O(NlogN)
NOTE: (trust that) std:sort will use the best sorting algorithm
*/
int solution(vector<int>& A) {
sort(A.begin(), A.end());
for (unsigned int i = 0; i < A.size(); i += 2) {
if (A[i] != A[i + 1]) {
return A[i];
}
}
return -1;
} | 17.965517 | 95 | 0.644914 | hNrChVz |
8cc10b87b958a738ba1f182a930f278bfa21147d | 1,487 | cc | C++ | navicat_patcher/KeystoneAssembler.cc | cntangt/navicat_keygen_tools | 1b0d73fb602b8029bbe0cdfe2b8793832d296147 | [
"Linux-OpenIB"
] | 1 | 2021-05-06T09:36:08.000Z | 2021-05-06T09:36:08.000Z | navicat_patcher/KeystoneAssembler.cc | cntangt/navicat_keygen_tools | 1b0d73fb602b8029bbe0cdfe2b8793832d296147 | [
"Linux-OpenIB"
] | null | null | null | navicat_patcher/KeystoneAssembler.cc | cntangt/navicat_keygen_tools | 1b0d73fb602b8029bbe0cdfe2b8793832d296147 | [
"Linux-OpenIB"
] | null | null | null | #include "KeystoneAssembler.h"
namespace nkg {
KeystoneAssembler::KeystoneAssembler(const KeystoneEngine& Engine) noexcept :
m_Engine(Engine) {}
[[nodiscard]]
std::vector<uint8_t> KeystoneAssembler::GenerateMachineCode(std::string_view AssemblyCode, uint64_t Address) const {
ARL::ResourceWrapper pbMachineCode(ARL::ResourceTraits::KeystoneMalloc{});
size_t cbMachineCode = 0;
size_t InstructionsProcessed = 0;
if (ks_asm(m_Engine, AssemblyCode.data(), Address, pbMachineCode.GetAddressOf(), &cbMachineCode, &InstructionsProcessed) != 0) {
throw ARL::KeystoneError(__BASE_FILE__, __LINE__, ks_errno(m_Engine), "ks_asm failed.");
}
return std::vector<uint8_t>(pbMachineCode.Get(), pbMachineCode.Get() + cbMachineCode);
}
KeystoneEngine::KeystoneEngine(ks_arch ArchType, ks_mode Mode) {
auto err = ks_open(ArchType, Mode, GetAddressOf());
if (err != KS_ERR_OK) {
throw ARL::KeystoneError(__BASE_FILE__, __LINE__, err, "ks_open failed.");
}
}
void KeystoneEngine::Option(ks_opt_type Type, ks_opt_value Value) {
auto err = ks_option(Get(), Type, Value);
if (err != KS_ERR_OK) {
throw ARL::KeystoneError(__BASE_FILE__, __LINE__, err, "ks_option failed.");
}
}
KeystoneAssembler KeystoneEngine::CreateAssembler() const {
return KeystoneAssembler(*this);
}
}
| 36.268293 | 136 | 0.652993 | cntangt |
8cc244b5c24a95fe7cb08001f05e85bbc5db8240 | 1,119 | cpp | C++ | UVa/696.cpp | aege-projects/competitive-programming | 3bd83367b6cfbdb7587045895762bf5160801be9 | [
"MIT"
] | null | null | null | UVa/696.cpp | aege-projects/competitive-programming | 3bd83367b6cfbdb7587045895762bf5160801be9 | [
"MIT"
] | null | null | null | UVa/696.cpp | aege-projects/competitive-programming | 3bd83367b6cfbdb7587045895762bf5160801be9 | [
"MIT"
] | null | null | null | #include <bits/stdc++.h>
using namespace std;
int main() {
int k1[500][500], k2[500][500];
for (int i = 0; i < 500; i++) {
for (int j = 0; j < 500; j++) {
k1[i][j] = 0;
k2[i][j] = 1;
}
}
for (int i = 0; i < 500; i++) {
for (int j = (i%2 == 0 ? 0 : 1); j < 500; j += 2) {
k1[i][j] = 1;
k2[i][j] = 0;
}
}
for (int i = 0; i < 10; i++) {
for (int j = 0; j < 10; j++) {
cout << k1[i][j] << " ";
}
cout << "\n";
}
cout << "\n";
for (int i = 0; i < 10; i++) {
for (int j = 0; j < 10; j++) {
cout << k2[i][j] << " ";
}
cout << "\n";
}
for (int i = 1; i < 500; i++) {
k1[i][0] = k1[i-1][0];
k1[0][i] = k1[0][i-1];
k2[i][0] = k2[i-1][0];
k2[0][i] = k2[0][i-1];
}
for (int i = 1; i < 500; i++) {
for (int j = 1; j < 500; j++) {
k1[i][j] += k1[i-1][j]+k1[i][j-1]-k1[i-1][j-1];
k2[i][j] += k2[i-1][j]+k2[i][j-1]-k2[i-1][j-1];
}
}
int u, v;
while (true) {
cin >> u >> v;
if (u == 0 && v == 0) {
break;
}
cout << max(k1[u-1][v-1], k2[u-1][v-1]) << " knights may be placed on a " << u << " row " << v << " column board.\n";
}
return 0;
}
| 18.048387 | 119 | 0.37891 | aege-projects |
8cc42ecf48be716d641944445851cda959d556c1 | 4,806 | cpp | C++ | unistatscore/analyser.cpp | goldim/unistats | e8dd54e46f84422d868c942367f0103949791ede | [
"MIT"
] | null | null | null | unistatscore/analyser.cpp | goldim/unistats | e8dd54e46f84422d868c942367f0103949791ede | [
"MIT"
] | null | null | null | unistatscore/analyser.cpp | goldim/unistats | e8dd54e46f84422d868c942367f0103949791ede | [
"MIT"
] | null | null | null | #include "analyser.h"
#include <array>
namespace stats {
using std::string;
Analyser::Analyser()
{
}
void Analyser::addSample(const Sample &sample)
{
string sampleStr = "Выборка: ";
string homogeneity;
if (sample.getVariation() < 17)
{
homogeneity = "абсолютно однородная";
}
else if (sample.getVariation() >= 17 && sample.getVariation() < 35)
{
homogeneity = "достаточно однородная";
}
else if (sample.getVariation() >= 35 && sample.getVariation() < 45)
{
homogeneity = "недостаточно однородная";
}
else
{
homogeneity = "неоднородная";
}
sampleStr += homogeneity;
string skewnessStr = "ассиметрия ";
if (sample.getSkewness() > 0)
{
skewnessStr += "правосторонняя";
}
else
{
skewnessStr += "левосторонняя";
}
string kurtosisStr = "мера крутости: ";
if (sample.getKurtosis() > 0)
{
kurtosisStr += "островершинность";
}
else
{
kurtosisStr += "плосковершинность";
}
string res = sampleStr + ", " + skewnessStr + ", " + kurtosisStr;
_output << res + "<br/>";
}
static double myTrunc(double val)
{
return trunc(1000 * val) / 1000;
}
void Analyser::addAnova(Anova &anova)
{
auto v1 = anova.getV1();
auto v2 = anova.getV2();
if (v1 == 0 || v2 == 0)
{
_output << "Для дисперсионного анализа степени свободы должны быть больше 0. "
"Вероятно выбран 1 элемент";
return;
}
std::vector<std::string> headers{
"Крит. значимости",
"F-набл",
"F-крит",
"H0",
"Влияние"
};
_output << "<b>Заключение дисперсионного анализа:</b>";
_output << "<table><tr>";
for (const auto &header: headers)
_output << "<td><b>" << header<< "</b></td>";
_output << "</tr>";
std::array<double, 3> a = {0.05, 0.01, 0.001};
for (auto &el : a)
{
double Fcrit = anova.FCriticalTest(el);
double Fq = anova.getFTestRes();
_output << "<tr>"
<< "<td>" << el << "</td>"
<< "<td>" << myTrunc(Fq) << "</td>"
<< "<td>" << myTrunc(Fcrit) << "</td>"
<< "<td>" << (Fq > Fcrit?"отверг.":"не отверг.") << "</td>"
<< "<td>" << (Fq > Fcrit?"<font color=green>да</font>":"<font color=red>нет</font>") << "</td>"
<< "</tr>";
}
_output << "</table>";
}
void Analyser::addAnova2(TwoFactorAnova &anova)
{
auto Va = anova.getVA();
auto Vb = anova.getVB();
auto v2 = anova.getV2();
if (Va == 0 || Vb == 0 || v2 == 0)
{
_output << "Для дисперсионного анализа степени свободы должны быть больше 0."
"Выбран 1 элемент.";
return;
}
std::vector<std::string> headers{
"Фактор",
"Крит. значимости",
"F-набл",
"F-крит",
"H0",
"Влияние"
};
_output << "<b>Заключение дисперсионного анализа по двум факторам:</b>";
_output << "<table><tr>";
for (const auto &header: headers)
_output << "<td><b>" << header<< "</b></td>";
_output << "</tr>";
std::array<double, 3> a = {0.05, 0.01, 0.001};
std::array<double, 2> vArr = {Va, Vb};
std::array<double, 2> FArr = {anova.getFTestRes().FA, anova.getFTestRes().FB};
std::array<std::string, 2> factorNameArr = {"A", "B"};
for (auto &el : a)
{
double FcritA = anova.FCriticalTestA(el);
double FcritB = anova.FCriticalTestB(el);
std::array<double, 2> FcritArr = {FcritA, FcritB};
for (int i = 0; i < 2; i++)
{
_output << "<tr>"
<< "<td>" << factorNameArr[i] << "</td>"
<< "<td>" << el << "</td>"
<< "<td>" << myTrunc(FArr[i]) << "</td>"
<< "<td>" << myTrunc(FcritArr[i]) << "</td>"
<< "<td>" << (FArr[i] > FcritArr[i]?"отверг.":"не отверг.") << "</td>"
<< "<td>" << (FArr[i] > FcritArr[i]?"<font color=green>да</font>":"<font color=red>нет</font>") << "</td>"
<< "</tr>";
}
double FcritAB = anova.FCriticalTestAB(el);
bool bFComparing = anova.getFTestRes().FAB > FcritAB;
_output << "<tr>"
<< "<td>" << "AB" << "</td>"
<< "<td>" << el << "</td>"
<< "<td>" << myTrunc(anova.getFTestRes().FAB) << "</td>"
<< "<td>" << myTrunc(FcritAB) << "</td>"
<< "<td>" << (bFComparing?"отверг.":"не отверг.") << "</td>"
<< "<td>" << (bFComparing?"<font color=green>да</font>":"<font color=red>нет</font>") << "</td>"
<< "</tr>";
}
_output << "</table>";
}
}//stats
| 27.152542 | 126 | 0.477528 | goldim |
8cc43f5e95370fe6e456795979436ab96c9e99f8 | 21,847 | cpp | C++ | Engine/ModuleScene.cpp | solidajenjo/CyberPimpEngine | da4fc5d22bc7c52a45794ea73e2bac903d893178 | [
"MIT"
] | null | null | null | Engine/ModuleScene.cpp | solidajenjo/CyberPimpEngine | da4fc5d22bc7c52a45794ea73e2bac903d893178 | [
"MIT"
] | null | null | null | Engine/ModuleScene.cpp | solidajenjo/CyberPimpEngine | da4fc5d22bc7c52a45794ea73e2bac903d893178 | [
"MIT"
] | null | null | null | #include "GameObject.h"
#include "ModuleScene.h"
#include "ModuleFrameBuffer.h"
#include "ModuleRender.h"
#include "ModuleTextures.h"
#include "ModuleEditorCamera.h"
#include "ModuleSpacePartitioning.h"
#include "ModuleFileSystem.h"
#include "ModuleEditor.h"
#include "SubModuleEditorGameViewPort.h"
#include "SubModuleEditorToolBar.h"
#include "QuadTree.h"
#include "Application.h"
#include "imgui/imgui.h"
#include "ComponentMesh.h"
#include "ComponentMap.h"
#include "ComponentCamera.h"
#include "ComponentLight.h"
#include "rapidjson-1.1.0/include/rapidjson/prettywriter.h"
#include "rapidjson-1.1.0/include/rapidjson/document.h"
#include <stack>
#include "SDL/include/SDL_filesystem.h"
#define HIERARCHY_DRAW_TAB 10
bool ModuleScene::Init()
{
LOG("Init Scene module");
root = new GameObject("Scene", true);
directory = new GameObject("Assets", true);
modelFolder = new GameObject("Models", true);
mapFolder = new GameObject("Maps", true);
materialFolder = new GameObject("Materials", true);
AttachToAssets(modelFolder);
AttachToAssets(mapFolder);
AttachToAssets(materialFolder);
return true;
}
update_status ModuleScene::Update()
{
return UPDATE_CONTINUE;
}
bool ModuleScene::CleanUp()
{
LOG("Cleaning scene GameObjects.");
RELEASE(root);
RELEASE(directory);
sceneGameObjects.clear();
LOG("Cleaning scene GameObjects. Done");
selected = nullptr;
sceneCamera = nullptr;
App->textures->CleanUp();
for (GameObject* fgo : lightingFakeGameObjects)
RELEASE(fgo);
lightingFakeGameObjects.resize(0);
return true;
}
bool ModuleScene::SaveScene(const std::string & path) const
{
rapidjson::StringBuffer sb;
rapidjson::PrettyWriter<rapidjson::StringBuffer> writer(sb);
writer.StartArray();
//Keep the roots to rebuild hierarchies
writer.StartObject();
writer.String("scene");
root->Serialize(writer);
writer.EndObject();
writer.StartObject();
writer.String("assets");
directory->Serialize(writer);
writer.EndObject();
//serialize folders
writer.StartObject();
writer.String("maps");
mapFolder->Serialize(writer);
writer.EndObject();
writer.StartObject();
writer.String("materials");
materialFolder->Serialize(writer);
writer.EndObject();
writer.StartObject();
writer.String("models");
modelFolder->Serialize(writer);
writer.EndObject();
//Serialize all the remaining gameobjects
for (std::map<std::string, GameObject*>::const_iterator it = sceneGameObjects.begin(); it != sceneGameObjects.end(); ++it)
{
if (!IsRoot((*it).second))
(*it).second->Serialize(writer);
}
writer.EndArray();
if (App->fileSystem->Write(path, sb.GetString(), strlen(sb.GetString()), true))
{
LOG("Scene saved.");
}
rapidjson::StringBuffer sbConfig;
rapidjson::PrettyWriter<rapidjson::StringBuffer> writerConfig(sbConfig);
writerConfig.StartObject();
writerConfig.String("scale"); writerConfig.Double(App->appScale);
writerConfig.String("kdTreeDepth"); writerConfig.Int(App->spacePartitioning->kDTree.maxDepth);
writerConfig.String("kdTreeBucketSize"); writerConfig.Int(App->spacePartitioning->kDTree.bucketSize);
writerConfig.String("quadTreeDepth"); writerConfig.Int(App->spacePartitioning->quadTree.maxDepth);
writerConfig.String("quadTreeBucketSize"); writerConfig.Int(App->spacePartitioning->quadTree.bucketSize);
writerConfig.String("aa"); writerConfig.Int((int)App->editor->gameViewPort->antialiasing);
writerConfig.String("fogEnabled"); writerConfig.Bool(App->renderer->fog);
writerConfig.String("fogFalloff"); writerConfig.Double(App->renderer->fogFalloff);
writerConfig.String("fogQuadratic"); writerConfig.Double(App->renderer->fogQuadratic);
writerConfig.String("fogColor");
writerConfig.StartArray();
writerConfig.Double(App->renderer->fogColor[0]);
writerConfig.Double(App->renderer->fogColor[1]);
writerConfig.Double(App->renderer->fogColor[2]);
writerConfig.EndArray();
writerConfig.String("editorCamera");
App->camera->editorCamera.Serialize(writerConfig);
writerConfig.EndObject();
if (App->fileSystem->Write(path + ".cfg", sbConfig.GetString(), strlen(sbConfig.GetString()), true))
{
LOG("Scene configuration saved.");
}
return true;
}
bool ModuleScene::LoadScene(const std::string & path)
{
LOG("Loading scene %s", path.c_str());
CleanUp();
App->spacePartitioning->aabbTree.Reset();
bool staticGameObjects = false;
if (!App->fileSystem->Exists(path + ".cfg"))
{
LOG("Error loading scene configuration %s", (path + ".cfg").c_str());
}
else
{
unsigned fileSize = App->fileSystem->Size(path + ".cfg");
char* buffer = new char[fileSize];
if (App->fileSystem->Read(path + ".cfg", buffer, fileSize))
{
rapidjson::Document document;
if (document.Parse<rapidjson::kParseStopWhenDoneFlag>(buffer).HasParseError())
{
LOG("Error loading scene %s. Scene file corrupted.", (path + ".cfg").c_str());
}
else
{
rapidjson::Value config = document.GetObjectJSON();
App->appScale = config["scale"].GetDouble();
switch ((int)App->appScale)
{
case 1:
App->editor->toolBar->scale_item_current = App->editor->toolBar->scale_items[0];
break;
case 10:
App->editor->toolBar->scale_item_current = App->editor->toolBar->scale_items[1];
break;
case 100:
App->editor->toolBar->scale_item_current = App->editor->toolBar->scale_items[2];
break;
case 1000:
App->editor->toolBar->scale_item_current = App->editor->toolBar->scale_items[3];
break;
}
App->spacePartitioning->kDTree.maxDepth = config["kdTreeDepth"].GetInt();
App->spacePartitioning->kDTree.bucketSize = config["kdTreeBucketSize"].GetInt();
App->spacePartitioning->quadTree.maxDepth = config["quadTreeDepth"].GetInt();
App->spacePartitioning->quadTree.bucketSize = config["quadTreeBucketSize"].GetInt();
App->editor->gameViewPort->antialiasing = (SubModuleEditorGameViewPort::AntiaAliasing)config["aa"].GetInt();
App->editor->gameViewPort->framebufferDirty = true;
App->editor->toolBar->aa_item_current = App->editor->toolBar->aa_items[(unsigned)App->editor->gameViewPort->antialiasing];
rapidjson::Value serializedCam = config["editorCamera"].GetObjectJSON();
App->camera->editorCamera.UnSerialize(serializedCam);
App->renderer->fog = config["fogEnabled"].GetBool();
App->renderer->fogFalloff = config["fogFalloff"].GetDouble();
App->renderer->fogQuadratic = config["fogQuadratic"].GetDouble();
App->renderer->fogColor[0] = config["fogColor"][0].GetDouble();
App->renderer->fogColor[1] = config["fogColor"][1].GetDouble();
App->renderer->fogColor[2] = config["fogColor"][2].GetDouble();
}
}
}
if (!App->fileSystem->Exists(path)) //no previous scene found
{
Init();
sceneGameObjects[root->gameObjectUUID] = root;
sceneGameObjects[directory->gameObjectUUID] = directory;
sceneGameObjects[modelFolder->gameObjectUUID] = modelFolder;
sceneGameObjects[mapFolder->gameObjectUUID] = mapFolder;
sceneGameObjects[materialFolder->gameObjectUUID] = materialFolder;
LOG("Error loading scene %s. Not found", path.c_str());
}
else
{
//restore instantiated gameobjects
unsigned fileSize = App->fileSystem->Size(path);
char* buffer = new char[fileSize];
if (App->fileSystem->Read(path, buffer, fileSize))
{
rapidjson::Document document;
if (document.Parse<rapidjson::kParseStopWhenDoneFlag>(buffer).HasParseError())
{
LOG("Error loading scene %s. Scene file corrupted.", path.c_str());
root = new GameObject("Scene", true);
directory = new GameObject("Assets", true);
modelFolder = new GameObject("Models", true);
mapFolder = new GameObject("Maps", true);
materialFolder = new GameObject("Materials", true);
AttachToAssets(modelFolder);
AttachToAssets(mapFolder);
AttachToAssets(materialFolder);
sceneGameObjects[root->gameObjectUUID] = root;
sceneGameObjects[root->gameObjectUUID] = root;
sceneGameObjects[directory->gameObjectUUID] = directory;
sceneGameObjects[modelFolder->gameObjectUUID] = modelFolder;
sceneGameObjects[mapFolder->gameObjectUUID] = mapFolder;
sceneGameObjects[materialFolder->gameObjectUUID] = materialFolder;
}
else
{
rapidjson::Value gameObjects = document.GetArray();
for (rapidjson::Value::ValueIterator it = gameObjects.Begin(); it != gameObjects.End(); ++it)
{
if ((*it).HasMember("scene"))
{
root = new GameObject("");
root->UnSerialize((*it)["scene"]);
sceneGameObjects[root->gameObjectUUID] = root;
}
else if ((*it).HasMember("assets"))
{
directory = new GameObject("");
directory->UnSerialize((*it)["assets"]);
sceneGameObjects[directory->gameObjectUUID] = directory;
}
else if ((*it).HasMember("models"))
{
modelFolder = new GameObject("");
modelFolder->UnSerialize((*it)["models"]);
sceneGameObjects[modelFolder->gameObjectUUID] = modelFolder;
}
else if ((*it).HasMember("maps"))
{
mapFolder = new GameObject("");
mapFolder->UnSerialize((*it)["maps"]);
sceneGameObjects[mapFolder->gameObjectUUID] = mapFolder;
}
else if ((*it).HasMember("materials"))
{
materialFolder = new GameObject("");
materialFolder->UnSerialize((*it)["materials"]);
sceneGameObjects[materialFolder->gameObjectUUID] = materialFolder;
}
else
{
GameObject* newGO = new GameObject("");
if (newGO->UnSerialize(*it))
{
InsertGameObject(newGO);
if (newGO->isStatic)
staticGameObjects = true;
}
}
}
LinkGameObjects();
if (staticGameObjects)
{
App->spacePartitioning->kDTree.Calculate();
}
root->transform->PropagateTransform();
LOG("Lighting tree recalculation");
App->spacePartitioning->aabbTreeLighting.Calculate();
}
delete buffer;
}
else
{
LOG("Error loading scene %s", path.c_str());
}
}
LOG("Scene loaded");
return true;
}
void ModuleScene::InsertFakeGameObject(GameObject* fgo)
{
assert(fgo != nullptr);
switch (fgo->layer)
{
case GameObject::GameObjectLayers::LIGHTING:
lightingFakeGameObjects.push_back(fgo);
ComponentLight* cL = (ComponentLight*)fgo->components.front();
cL->pointSphere.pos = fgo->components.front()->owner->transform->getGlobalPosition();
fgo->aaBBGlobal->SetNegativeInfinity();
fgo->aaBBGlobal->Enclose(cL->pointSphere);
App->spacePartitioning->aabbTreeLighting.InsertGO(fgo);
}
}
void ModuleScene::RemoveFakeGameObject(GameObject* fgo)
{
switch (fgo->layer)
{
case GameObject::GameObjectLayers::LIGHTING:
App->spacePartitioning->aabbTreeLighting.ReleaseNode(fgo->treeNode);
lightingFakeGameObjects.erase(std::find(lightingFakeGameObjects.begin(), lightingFakeGameObjects.end(), fgo));
}
}
void ModuleScene::InsertGameObject(GameObject * newGO)
{
assert(newGO != nullptr);
sceneGameObjects[newGO->gameObjectUUID] = newGO;
if (newGO->transform != nullptr)
newGO->transform->UpdateAABB();
if (newGO->isInstantiated)
App->spacePartitioning->aabbTree.InsertGO(newGO);
}
void ModuleScene::ImportGameObject(GameObject * newGO, ImportedType type)
{
assert(newGO != nullptr);
switch (type)
{
case ImportedType::MAP:
AttachToMaps(newGO);
break;
case ImportedType::MODEL:
AttachToModels(newGO);
break;
case ImportedType::MATERIAL:
AttachToMaterials(newGO);
break;
}
}
void ModuleScene::ShowHierarchy(bool isWorld)
{
if (isWorld)
{
assert(root != nullptr);
DrawNode(root);
}
else
{
assert(directory != nullptr);
DrawNode(directory, isWorld);
}
}
void ModuleScene::DrawNode(GameObject* gObj, bool isWorld)
{
assert(gObj != nullptr);
ImGuiTreeNodeFlags flags;
std::stack<GameObject*> S;
std::stack<int> depthStack;
std::stack<ImVec2> parentPosition;
S.push(gObj);
depthStack.push(0);
parentPosition.push(ImGui::GetCursorPos());
while (!S.empty())
{
gObj = S.top(); S.pop();
ImGui::PushID(gObj->gameObjectUUID);
unsigned depth = depthStack.top(); depthStack.pop();
ImVec2 parentPos = parentPosition.top(); parentPosition.pop();
if (gObj->children.size() == 0)
flags = ImGuiTreeNodeFlags_OpenOnArrow | ImGuiTreeNodeFlags_OpenOnDoubleClick | ImGuiTreeNodeFlags_Leaf;
else
flags = ImGuiTreeNodeFlags_OpenOnArrow | ImGuiTreeNodeFlags_OpenOnDoubleClick;
if (gObj->selected)
{
flags |= ImGuiTreeNodeFlags_Selected;
}
ImVec2 pos = ImGui::GetCursorPos();
ImGui::SetCursorPos(ImVec2(pos.x + depth, pos.y));
pos = ImGui::GetCursorScreenPos();
if (!IsRoot(gObj))
{
ImGui::GetWindowDrawList()->AddLine(ImVec2(pos.x, pos.y + 5.f), ImVec2(pos.x, parentPos.y), ImColor(1.f, 1.f, 1.f, 1.f));
ImGui::GetWindowDrawList()->AddLine(ImVec2(pos.x, pos.y + 5.f), ImVec2(pos.x + 5.f, pos.y + 5.f), ImColor(1.f, 1.f, 1.f, 1.f));
}
if (ImGui::TreeNodeEx(gObj->name, flags))
{
if (gObj->children.size() > 0)
{
for (std::list<GameObject*>::iterator it = gObj->children.begin(); it != gObj->children.end(); ++it)
{
S.push(*it);
depthStack.push(depth + HIERARCHY_DRAW_TAB);
parentPosition.push(ImGui::GetCursorScreenPos());
}
}
ImGui::TreePop();
}
if (isWorld)
{
if (ImGui::BeginDragDropSource(ImGuiDragDropFlags_SourceAllowNullID))
{
ImGui::SetDragDropPayload("GAMEOBJECT_ID", &gObj->gameObjectUUID, sizeof(gObj->gameObjectUUID));
ImGui::EndDragDropSource();
}
if (ImGui::BeginDragDropTarget())
{
if (const ImGuiPayload* payload = ImGui::AcceptDragDropPayload("GAMEOBJECT_ID"))
{
char movedId[sizeof(gObj->gameObjectUUID)];
sprintf_s(movedId, (char*)payload->Data);
GameObject* movedGO = FindInstanceOrigin(movedId);
if (movedGO != nullptr)
{
movedGO->parent->children.remove(movedGO);
movedGO->parent = gObj;
LOG("Moved gameobject %s", movedGO->name);
gObj->InsertChild(movedGO);
movedGO->transform->NewAttachment();
}
}
}
}
else
{
if (ImGui::BeginDragDropSource(ImGuiDragDropFlags_SourceAllowNullID))
{
ImGui::SetDragDropPayload("IMPORTED_GAMEOBJECT_ID", &gObj->gameObjectUUID, sizeof(gObj->gameObjectUUID));
ImGui::EndDragDropSource();
}
}
if (ImGui::IsItemClicked())
{
gObj->selected = !gObj->selected;
if (gObj->selected && selected != gObj)
{
selected != nullptr ? selected->selected = false : 1;
selected = gObj;
}
else if (!gObj->selected && selected == gObj)
{
selected = nullptr;
}
}
if (!IsRoot(gObj) && gObj == selected && ImGui::BeginPopupContextItem("GO_CONTEXT"))
{
ImGui::Text("GameObject operations");
ImGui::Separator();
bool deleteGameObject = false;
ImVec2 curPos = ImGui::GetCursorScreenPos();
ImGui::Text("Delete - Ctrl + X");
ImVec2 size = ImGui::GetItemRectSize();
if (ImGui::IsItemHovered())
{
ImGui::GetWindowDrawList()->AddRectFilled(curPos, ImVec2(curPos.x + size.x * 1.1f, curPos.y + size.y), IM_COL32(200, 200, 200, 55));
}
if (ImGui::IsItemClicked())
deleteGameObject = true;
if (deleteGameObject)
{
ImGui::OpenPopup("Confirm");
}
bool closeContextPopup = false;
if (ImGui::BeginPopup("Confirm", ImGuiWindowFlags_Modal))
{
ImGui::Text("Are you sure?");
if (ImGui::Button("NO", ImVec2(100, 20)))
{
ImGui::CloseCurrentPopup();
closeContextPopup = true;
}
ImGui::SameLine();
if (ImGui::Button("YES", ImVec2(100, 20)))
{
DeleteGameObject(gObj);
selected = nullptr;
App->spacePartitioning->kDTree.Calculate();
ImGui::CloseCurrentPopup();
}
ImGui::EndPopup();
}
curPos = ImGui::GetCursorScreenPos();
ImGui::Text("Duplicate - Ctrl + D");
size = ImGui::GetItemRectSize();
if (ImGui::IsItemHovered())
{
ImGui::GetWindowDrawList()->AddRectFilled(curPos, ImVec2(curPos.x + size.x * 1.1f, curPos.y + size.y), IM_COL32(200, 200, 200, 55));
}
if (ImGui::IsItemClicked())
{
GameObject* clone = gObj->Clone();
gObj->parent->InsertChild(clone);
gObj->parent->transform->PropagateTransform();
closeContextPopup = true;
}
if (closeContextPopup)
ImGui::CloseCurrentPopup();
ImGui::EndPopup();
}
ImGui::PopID();
}
}
void ModuleScene::AttachToRoot(GameObject * go)
{
assert(go != nullptr);
root->InsertChild(go);
FlattenHierarchyOnImport(go);
}
void ModuleScene::AttachToAssets(GameObject * go)
{
assert(go != nullptr);
directory->InsertChild(go);
FlattenHierarchyOnImport(go);
}
void ModuleScene::AttachToMaps(GameObject * go)
{
assert(go != nullptr);
mapFolder->InsertChild(go);
FlattenHierarchyOnImport(go);
}
void ModuleScene::AttachToModels(GameObject * go)
{
assert(go != nullptr);
modelFolder->InsertChild(go);
FlattenHierarchyOnImport(go);
}
void ModuleScene::AttachToMaterials(GameObject * go)
{
assert(go != nullptr);
materialFolder->InsertChild(go);
FlattenHierarchyOnImport(go);
}
void ModuleScene::DestroyGameObject(GameObject * destroyableGO)
{
assert(destroyableGO != nullptr);
if (destroyableGO->layer == GameObject::GameObjectLayers::WORLD_VOLUME && destroyableGO->treeNode != nullptr)
App->spacePartitioning->aabbTree.ReleaseNode(destroyableGO->treeNode);
if (destroyableGO->fakeGameObjectReference != nullptr)
{
lightingFakeGameObjects.erase(std::find(lightingFakeGameObjects.begin(),
lightingFakeGameObjects.end(), destroyableGO->fakeGameObjectReference));
App->spacePartitioning->aabbTreeLighting.ReleaseNode(destroyableGO->fakeGameObjectReference->treeNode);
}
destroyableGO->parent->children.remove(destroyableGO);
sceneGameObjects.erase(destroyableGO->gameObjectUUID);
}
void ModuleScene::DeleteGameObject(GameObject* go, bool isAsset)
{
assert(go != nullptr);
go->parent->children.remove(go);
sceneGameObjects.erase(go->gameObjectUUID);
std::stack<GameObject*> S;
std::stack<GameObject*> DFS; // start the destroy from the leaves of the tree and upwards to avoid crashes
S.push(go);
DFS.push(go);
while (!S.empty())
{
GameObject* node = S.top();
S.pop();
for (std::list<GameObject*>::iterator it = node->children.begin(); it != node->children.end(); ++it)
{
S.push(*it);
DFS.push(*it);
}
}
while (!DFS.empty())
{
DestroyGameObject(DFS.top());
RELEASE(DFS.top());
DFS.pop();
}
}
bool ModuleScene::MakeParent(const std::string &parentUUID, GameObject * son)
{
GameObject* parent = FindInstanceOrigin(parentUUID);
if (parent != nullptr)
{
parent->InsertChild(son);
if (parent->transform != nullptr)
parent->transform->PropagateTransform();
return true;
}
return false;
}
GameObject* ModuleScene::FindInstanceOrigin(const std::string &instance)
{
std::map<std::string, GameObject*>::iterator it = sceneGameObjects.find(instance);
if (it != sceneGameObjects.end())
return (*it).second;
return nullptr; //broken link
}
void ModuleScene::SetSkyBox()
{
/*
if (App->frameBuffer->skyBox == nullptr)
{
assert(sceneGameObjects.size() == 2);
assert(sceneGameObjects.back()->components.size() == 1);
App->frameBuffer->skyBox = (ComponentMesh*)sceneGameObjects.back()->components.front(); //store the skybox mesh on framebuffer module on start. Released there
sceneGameObjects.front()->components.clear();
sceneGameObjects.clear();
root->children.clear();
App->textures->textures.clear();
App->renderer->renderizables.clear(); //Clear renderizables, render skybox on demand only
}
*/
}
void ModuleScene::GetStaticGlobalAABB(AABB* globalAABB, std::vector<GameObject*> &staticGOs, unsigned &GOCount) const
{
bool first = true;
for (std::map<std::string, GameObject*>::const_iterator it = sceneGameObjects.begin(); it != sceneGameObjects.end(); ++it)
{
float3* corners = new float3[16];
if ((*it).second->layer == GameObject::GameObjectLayers::WORLD_VOLUME && (*it).second->isInstantiated && (*it).second->isStatic && (*it).second->aaBBGlobal != nullptr)
{
if (first)
{
globalAABB->SetNegativeInfinity();
globalAABB->Enclose(*(*it).second->aaBBGlobal);
first = false;
}
else
{
(*it).second->aaBBGlobal->GetCornerPoints(&corners[0]);
globalAABB->GetCornerPoints(&corners[8]);
globalAABB->Enclose(&corners[0], 16);
}
staticGOs[++GOCount] = (*it).second;
}
RELEASE(corners);
}
}
void ModuleScene::GetNonStaticGlobalAABB(AABB* globalAABB, std::vector<GameObject*>& nonStaticGOs, unsigned &GOCount) const //TODO:Keep a pool with no static gameobjects
{
bool first = true;
for (std::map<std::string, GameObject*>::const_iterator it = sceneGameObjects.begin(); it != sceneGameObjects.end(); ++it)
{
float3* corners = new float3[16];
if ((*it).second->isInstantiated && (*it).second->layer == GameObject::GameObjectLayers::WORLD_VOLUME && !(*it).second->isStatic && (*it).second->aaBBGlobal != nullptr)
{
if (first)
{
globalAABB->SetNegativeInfinity();
globalAABB->Enclose(*(*it).second->aaBBGlobal);
first = false;
}
else
{
(*it).second->aaBBGlobal->GetCornerPoints(&corners[0]);
globalAABB->GetCornerPoints(&corners[8]);
globalAABB->Enclose(&corners[0], 16);
}
nonStaticGOs[++GOCount] = (*it).second;
assert(GOCount < BUCKET_MAX);
}
RELEASE(corners);
}
}
void ModuleScene::LinkGameObjects()
{
for (std::map<std::string, GameObject*>::iterator it = sceneGameObjects.begin(); it != sceneGameObjects.end(); ++it)
{
MakeParent((*it).second->parentUUID, (*it).second);
}
}
void ModuleScene::FlattenHierarchyOnImport(GameObject * go)
{
assert(go != nullptr);
std::stack<GameObject*> S;
S.push(go);
GameObject* node = nullptr;
while (!S.empty())
{
node = S.top();
S.pop();
sceneGameObjects[node->gameObjectUUID] = node;
for (std::list<GameObject*>::iterator it = node->children.begin(); it != node->children.end(); ++it)
S.push(*it);
}
}
| 30.092287 | 170 | 0.692589 | solidajenjo |
bc45567f3986675ca83a8974de72fa177d32cf91 | 2,516 | cpp | C++ | readDataAndCheckForMagic.cpp | ohio813/shutdownonlan | 80df7789368cfcfd20a65b67585bca3264a7064a | [
"BSD-3-Clause"
] | 1 | 2015-06-26T04:18:29.000Z | 2015-06-26T04:18:29.000Z | readDataAndCheckForMagic.cpp | ohio813/shutdownonlan | 80df7789368cfcfd20a65b67585bca3264a7064a | [
"BSD-3-Clause"
] | null | null | null | readDataAndCheckForMagic.cpp | ohio813/shutdownonlan | 80df7789368cfcfd20a65b67585bca3264a7064a | [
"BSD-3-Clause"
] | null | null | null | #include "stdafx.h"
#include "getMACAddresses.h"
#include "globals.h"
#include "log.h"
DWORD readDataAndCheckForMagic(SOCKET oSocket) {
BYTE abBuffer[4096];
int iBytesReceived = recv(oSocket, (char*)abBuffer, sizeof(abBuffer), 0);
if (iBytesReceived == SOCKET_ERROR) {
DWORD dwErrorCode = WSAGetLastError();
// WSAEWOULDBLOCK appears to happen quite frequently
if (dwErrorCode != WSAEWOULDBLOCK) {
logError(_T("Socket receive failed: error code %d (0x%X)."), dwErrorCode, dwErrorCode);
}
return dwErrorCode;
} else {
int iFFCount = 0;
// look for 6 x 0xFF
for (int iFFScanIndex = 0; iFFScanIndex - iFFCount <= iBytesReceived - 6 * 17; iFFScanIndex++) {
if (abBuffer[iFFScanIndex] == 0xFF) {
iFFCount++;
} else {
iFFCount = 0;
}
if (iFFCount >= 6) {
// Found 6 x 0xFF, look up MAC addresses of all network connections
std::list<PBYTE> lpbMACAddresses;
DWORD dwErrorCode = getMACAddresses(lpbMACAddresses);
if (dwErrorCode != ERROR_SUCCESS) {
return dwErrorCode;
}
while (!lpbMACAddresses.empty()) {
PBYTE pbMACAddress = lpbMACAddresses.front();
lpbMACAddresses.pop_front();
// Look for 16 x MAC address following the 6 x 0xFF
size_t iMACScanIndex = iFFScanIndex + 1;
BOOL bMismatchFound = FALSE;
for (size_t iCopy = 0; !bMismatchFound && iCopy < 16; iCopy++) {
for (size_t iByte = 0; !bMismatchFound && iByte < 6; iByte++) {
bMismatchFound = abBuffer[iMACScanIndex++] != pbMACAddress[iByte];
}
}
delete[] pbMACAddress;
if (!bMismatchFound) {
logInformation(_T("Shutdown-on-LAN request received."));
// Found 6 x 0xFF followed by 16 x MAC address: shut down.
if (!InitiateSystemShutdownEx(
NULL, // This machine
gsShutdownReason,
0, // Shut down immediately
TRUE, // Force-close applications (do not save data)
FALSE, // Do not reboot
gdwShutdownReason
)) {
DWORD dwErrorCode = GetLastError();
logError(_T("InitiateSystemShutdownEx failed: error code %d (0x%X)."), dwErrorCode, dwErrorCode);
return dwErrorCode;
}
}
}
}
} // magic data not found
return 0;
}
} | 38.121212 | 112 | 0.57035 | ohio813 |
bc596efd29d8c8952d674e4b4ba9b8dfbe40fa85 | 321 | cpp | C++ | Nowcoder/NC21308.cpp | anine09/ACM | e9e8f09157e4ec91c1752a4b4724e28dfeaae4e6 | [
"MIT"
] | null | null | null | Nowcoder/NC21308.cpp | anine09/ACM | e9e8f09157e4ec91c1752a4b4724e28dfeaae4e6 | [
"MIT"
] | null | null | null | Nowcoder/NC21308.cpp | anine09/ACM | e9e8f09157e4ec91c1752a4b4724e28dfeaae4e6 | [
"MIT"
] | null | null | null | #include<iostream>
#include<algorithm>
using namespace std;
int num[100000];
int n;
int main(){
cin>>n;
for (int i = 0; i < n; i++)
{
cin >> num[i];
}
stable_sort(num, num + n);
for (int i = 0; i < n - 1;i++){
cout << num[i] << " ";
}
cout << num[n-1];
return 0;
} | 13.956522 | 35 | 0.457944 | anine09 |
bc5f8e81ee3b5ff6fc609ba640976ca682a98d52 | 353 | cpp | C++ | src/gameworld/gameworld/global/activity/impl/activityguildquestion.cpp | mage-game/metagame-xm-server | 193b67389262803fe0eae742800b1e878b5b3087 | [
"MIT"
] | 3 | 2021-12-16T13:57:28.000Z | 2022-03-26T07:50:08.000Z | src/gameworld/gameworld/global/activity/impl/activityguildquestion.cpp | mage-game/metagame-xm-server | 193b67389262803fe0eae742800b1e878b5b3087 | [
"MIT"
] | null | null | null | src/gameworld/gameworld/global/activity/impl/activityguildquestion.cpp | mage-game/metagame-xm-server | 193b67389262803fe0eae742800b1e878b5b3087 | [
"MIT"
] | 1 | 2022-03-26T07:50:11.000Z | 2022-03-26T07:50:11.000Z | #include "activityguildquestion.hpp"
#include "scene/activityshadow/activityshadow.hpp"
#include "world.h"
#include "config/sharedconfig/sharedconfig.h"
ActivityGuildQuestion::ActivityGuildQuestion(ActivityManager *activity_manager)
: Activity(activity_manager, ACTIVITY_TYPE_GUILD_QUESTION)
{
}
ActivityGuildQuestion::~ActivityGuildQuestion()
{
}
| 22.0625 | 79 | 0.827195 | mage-game |
bc627c86509985097bb2ce5f74a5833d4bb66931 | 619 | cpp | C++ | Fuji/Source/Drivers/PS2/MFDebug_PS2.cpp | TurkeyMan/fuji | afd6a26c710ce23965b088ad158fe916d6a1a091 | [
"BSD-2-Clause"
] | 35 | 2015-01-19T22:07:48.000Z | 2022-02-21T22:17:53.000Z | Fuji/Source/Drivers/PS2/MFDebug_PS2.cpp | TurkeyMan/fuji | afd6a26c710ce23965b088ad158fe916d6a1a091 | [
"BSD-2-Clause"
] | 1 | 2022-02-23T09:34:15.000Z | 2022-02-23T09:34:15.000Z | Fuji/Source/Drivers/PS2/MFDebug_PS2.cpp | TurkeyMan/fuji | afd6a26c710ce23965b088ad158fe916d6a1a091 | [
"BSD-2-Clause"
] | 4 | 2015-05-11T03:31:35.000Z | 2018-09-27T04:55:57.000Z | #include "Fuji_Internal.h"
#if MF_DEBUG == MF_DRIVER_PS2
#include "MFInput_Internal.h"
#include <stdio.h>
MF_API void MFDebug_Message(const char *pMessage)
{
printf("%s\n", pMessage);
}
MF_API void MFDebug_DebugAssert(const char *pReason, const char *pMessage, const char *pFile, int line)
{
MFDebug_Message(MFStr("%s(%d) : Assertion Failure.",pFile,line));
MFDebug_Message(MFStr("Failed Condition: %s\n%s", pReason, pMessage));
MFCallstack_Log();
// draw some shit on the screen..
while(!MFInput_WasPressed(Button_P2_Start, IDD_Gamepad, 0))
{
MFInput_Update();
}
}
#endif
| 21.344828 | 104 | 0.693053 | TurkeyMan |
bc631af571d4d59ee18692a1e9a4491217976c7e | 674 | cc | C++ | POJ/2752_Seek the Name, Seek the Fame/2752.cc | pdszhh/ACM | 956b3d03a5d3f070ef24c940b7459f5cccb11d6c | [
"MIT"
] | 1 | 2019-05-05T03:51:20.000Z | 2019-05-05T03:51:20.000Z | POJ/2752_Seek the Name, Seek the Fame/2752.cc | pdszhh/ACM | 956b3d03a5d3f070ef24c940b7459f5cccb11d6c | [
"MIT"
] | null | null | null | POJ/2752_Seek the Name, Seek the Fame/2752.cc | pdszhh/ACM | 956b3d03a5d3f070ef24c940b7459f5cccb11d6c | [
"MIT"
] | null | null | null | #include <iostream>
#include <stack>
#include <cstdio>
#include <cstring>
using namespace std;
int len;
char S[400010];
int nextval[400010];
void get_nextval() {
for (int k = nextval[0] = -1, j = 0; j != len; ) {
if (k == -1 or S[j] == S[k])
nextval[++j] = ++k;
else
k = nextval[k];
}
}
int main() {
while (scanf("%s", S) != EOF) {
len = strlen(S);
get_nextval();
stack<int> s;
for (int k = len; k != 0; k = nextval[k])
s.push(k);
while (not s.empty()) {
printf("%d ", s.top());
s.pop();
}
printf("\n");
}
return 0;
}
| 18.722222 | 54 | 0.437685 | pdszhh |
bc65b5eaf8257f09f0912d4f0e058887d2081775 | 9,592 | hpp | C++ | include/public/coherence/lang/HeapAnalyzer.hpp | chpatel3/coherence-cpp-extend-client | 4ea5267eae32064dff1e73339aa3fbc9347ef0f6 | [
"UPL-1.0",
"Apache-2.0"
] | 6 | 2020-07-01T21:38:30.000Z | 2021-11-03T01:35:11.000Z | include/public/coherence/lang/HeapAnalyzer.hpp | chpatel3/coherence-cpp-extend-client | 4ea5267eae32064dff1e73339aa3fbc9347ef0f6 | [
"UPL-1.0",
"Apache-2.0"
] | 1 | 2020-07-24T17:29:22.000Z | 2020-07-24T18:29:04.000Z | include/public/coherence/lang/HeapAnalyzer.hpp | chpatel3/coherence-cpp-extend-client | 4ea5267eae32064dff1e73339aa3fbc9347ef0f6 | [
"UPL-1.0",
"Apache-2.0"
] | 6 | 2020-07-10T18:40:58.000Z | 2022-02-18T01:23:40.000Z | /*
* Copyright (c) 2000, 2020, Oracle and/or its affiliates.
*
* Licensed under the Universal Permissive License v 1.0 as shown at
* http://oss.oracle.com/licenses/upl.
*/
#ifndef COH_HEAP_ANALYZER_HPP
#define COH_HEAP_ANALYZER_HPP
#include "coherence/lang/interface_spec.hpp"
#include "coherence/lang/Object.hpp"
#include "coherence/lang/TypedHandle.hpp"
COH_OPEN_NAMESPACE2(coherence,lang)
/**
* HeapAnalyzer provides a base diagnostics interface for tracking heap usage.
*
* There is at most one HeapAnalyzer registered with the system for the
* lifetime of the process. The HeapAnalyzer implementation may be specified
* via the "coherence.heap.analyzer" system property. The property
* can be set to one of the following values:
* <ul>
* <li>none No heap analysis will be performed.</li>
* <li>object The coherence::lang::ObjectCountHeapAnalyzer will be used.</li>
* <li>class The coherence::lang::ClassBasedHeapAnalyzer will be used.</li>
* <li>alloc The coherence::lang::ClassBasedHeapAnalyzer will be used,
* in allocation analysis mode.</li>
* <li>[custom] The name of a class registered with the SystemClassLoader.</li>
* </ul>
*
* In the case where a custom class is specified, it must implement this
* interface. The custom analyzer will be initialized as soon as the class
* is registered with the SystemClassLoader. As static initialization order
* cannot be guaranteed, this custom analyzer will not be notified of managed
* objects created earlier in the static initialization order.
*
* The active analyzer may be obtained from the System::getHeapAnalyzer()
* method.
*
* The HeapAnalyzer and Snapshot interfaces are intentionally narrow.
* Implementations are expected to provide useful information via the toString
* method, as well as by possibly augmenting the interfaces. The minimal
* interface is sufficient for detecting memory leaks.
*
* HeapAnalyzer::Snapshot::View vSnap = hAnalyzer->capture();
* ...
* ...
* std::cout << "Heap changed by: " << hAnalyzer->delta(vSnap) << std::endl;
*
* @see ObjectCountHeapAnalyzer
* @see ClassBasedHeapAnalyzer
*
* @author mf 2008.04.27
*/
class COH_EXPORT HeapAnalyzer
: public interface_spec<HeapAnalyzer>
{
// ----- nested interface: Snapshot -------------------------------------
public:
/**
* Snapshot provides a abstract mechanism for comparing successive
* heap analysis points.
*/
class COH_EXPORT Snapshot
: public interface_spec<Snapshot>
{
// ----- Snapshot interface ---------------------------------
public:
/**
* Return the number of registered objects reflected by this
* snapshot.
*
* @return the number of registered objects
*/
virtual int64_t getObjectCount() const = 0;
/**
* Return the result of "subtracting" the supplied Snapshot
* from this Snapshot.
*
* @param vThat the snapshot to compare against
*
* @return the delta between two snapshots
*/
virtual Snapshot::View delta(Snapshot::View vThat) const = 0;
};
// ----- HeapAnalyzer interface -----------------------------------------
public:
/**
* Capture a Snapshot of the current state of the heap.
*
* Note, when performing captures in a loop, and assigning the captured
* snapshot to a handle referencing a snapshot, it is advisable to
* NULL out the handle first, so as to avoid the new snapshot including
* the "cost" of snapshot it is about to replace.
*
* @return a Snapshot of the current state of the heap.
*/
virtual Snapshot::View capture() const = 0;
/**
* Compute the delta between the supplied Snapshot and the current heap
* state.
*
* @param vThat the snapshot to compare against.
*
* @return a snapshot containing the delta
*/
virtual Snapshot::View delta(Snapshot::View vThat) const = 0;
/**
* Return the number of registered objects.
*
* @return the number of registered objects
*/
virtual int64_t getObjectCount() const = 0;
/**
* Return the number of objects which have been marked as uncollectable.
*
* Return the number of objects which have been marked as uncollectable.
*/
virtual int64_t getImmortalCount() const = 0;
protected:
/**
* Register a newly created Object with the system.
*
* This method is called automatically by coherence::lang::Object once
* the Object has finished construction.
*
* @param o the newly created Object.
*/
virtual void registerObject(const Object& o) = 0;
/**
* Unregister an Object with the system.
*
* This method is called automatically by coherence::lang::Object
* just prior to the deletion of the Object. No new handles or views
* may be created to the object.
*
* @param o the Object to unregister
*/
virtual void unregisterObject(const Object& o) = 0;
/**
* Invoked when an object is deemed to immortal and can never be collected.
*
* Note the specified object will have already been registered via registerObject.
*/
virtual void registerImmortal(const Object& o) = 0;
// ----- static helper methods ------------------------------------------
public:
/**
* Ensure that the delta between the current heap and the supplied
* snapshot is as expected.
*
* This method can be used to perform quick memory leak assertions.
*
* @code
* HeapAnalyzer::Snapshot::View vSnapStart = HeapAnalyzer::ensureHeap();
* ...
* ...
* HeapAnalyzer::ensureHeap(vSnapStart);
* @endcode
*
* @param vSnap the snapshot to ensure; or NULL for return only
* @param cDelta the allowable change in the heap's object count
*
* @return a new Snapshot
*
* @throws IllegalStateException if the delta does not contain the
* expected amount. The text of the exception will include the
* output of the Snapshots toString() method.
*/
static Snapshot::View ensureHeap(Snapshot::View vSnap = NULL,
int64_t cDelta = 0);
// ----- inner class: Block ---------------------------------------------
public:
/**
* The HeapAnalyzer::Block allows for easily verifying that a block
* of code does not leak memory.
*
* @code
* COH_ENSURE_HEAP
* {
* ... // your code here
* }
* @endcode
*/
class Block
{
// ----- constructors ---------------------------------------
public:
/**
* Construct a ZeroBlock object.
*
* This will automatically capture an initial snapshot
*/
Block()
: m_vSnap(ensureHeap())
{
}
/**
* Copy constructor for COH_ENSURE_HEAP macro.
*/
Block(const Block& that)
: m_vSnap(that.m_vSnap)
{
that.m_vSnap = NULL;
}
/**
* Destroy a Block object.
*
* This will test that no memory has been leaked
*/
~Block() COH_NOEXCEPT(false)
{
ensureHeap(m_vSnap);
}
// ----- operators ------------------------------------------
public:
/*
* Boolean conversion for use in COH_ENSURE_HEAP macro.
*
* @return false if snapshot is held, true otherwise
*/
operator bool() const
{
return m_vSnap == NULL;
}
private:
/**
* Blocked assignment operator.
*/
const Block& operator=(const Block&);
/**
* Blocked dynamic allocation.
*/
static void* operator new(size_t);
// ----- data members ---------------------------------------
protected:
mutable Snapshot::View m_vSnap; // on stack
};
// ----- friends --------------------------------------------------------
friend class Object;
};
COH_CLOSE_NAMESPACE2
/**
* Macro for making more readable HeapAnalyzer::Block code blocks See the
* documentation of Block for a usage example.
*
* @see coherence::lang::HeapAnalyzer::Block
*/
#define COH_ENSURE_HEAP \
if (coherence::lang::HeapAnalyzer::Block COH_UNIQUE_IDENTIFIER(_coh_heap_) \
= coherence::lang::HeapAnalyzer::Block()) \
{ \
COH_THROW(coherence::lang::IllegalStateException::create()); \
} \
else
#endif // COH_HEAP_ANALYZER_HPP
| 32.515254 | 90 | 0.541389 | chpatel3 |
bc69518352aa45fe18a7ff51e828967abd605efe | 3,554 | hpp | C++ | qi/async.hpp | arntanguy/libqi | 7f3e1394cb26126b26fa7ff54d2de1371a1c9f96 | [
"BSD-3-Clause"
] | 61 | 2015-01-08T08:05:28.000Z | 2022-01-07T16:47:47.000Z | qi/async.hpp | arntanguy/libqi | 7f3e1394cb26126b26fa7ff54d2de1371a1c9f96 | [
"BSD-3-Clause"
] | 30 | 2015-04-06T21:41:18.000Z | 2021-08-18T13:24:51.000Z | qi/async.hpp | arntanguy/libqi | 7f3e1394cb26126b26fa7ff54d2de1371a1c9f96 | [
"BSD-3-Clause"
] | 64 | 2015-02-23T20:01:11.000Z | 2022-03-14T13:31:20.000Z | #pragma once
/**
** Copyright (C) 2012-2016 Aldebaran Robotics
** See COPYING for the license
*/
#ifndef _QI_ASYNC_HPP_
#define _QI_ASYNC_HPP_
#include <qi/eventloop.hpp>
#include <qi/future.hpp>
#include <qi/strand.hpp>
namespace qi
{
// some required forward declaration
namespace detail
{
template <typename F>
inline auto asyncMaybeActor(F&& cb, qi::Duration delay) ->
typename std::enable_if<detail::IsAsyncBind<F>::value, typename std::decay<decltype(cb())>::type>::type;
template <typename F>
inline auto asyncMaybeActor(F&& cb, qi::Duration delay) ->
typename std::enable_if<!detail::IsAsyncBind<F>::value,
qi::Future<typename std::decay<decltype(cb())>::type>>::type;
template <typename F>
inline auto asyncMaybeActor(F&& cb, qi::SteadyClockTimePoint timepoint) ->
typename std::enable_if<detail::IsAsyncBind<F>::value, typename std::decay<decltype(cb())>::type>::type;
template <typename F>
inline auto asyncMaybeActor(F&& cb, qi::SteadyClockTimePoint timepoint) ->
typename std::enable_if<!detail::IsAsyncBind<F>::value,
qi::Future<typename std::decay<decltype(cb())>::type>>::type;
} // detail
template <typename F>
inline auto asyncAt(F&& callback, qi::SteadyClockTimePoint timepoint)
-> decltype(qi::getEventLoop()->asyncAt(std::forward<F>(callback), timepoint))
{
return qi::getEventLoop()->asyncAt(std::forward<F>(callback), timepoint);
}
template <typename F>
inline auto asyncDelay(F&& callback, qi::Duration delay)
-> decltype(detail::asyncMaybeActor(std::forward<F>(callback), delay))
{
return detail::asyncMaybeActor(std::forward<F>(callback), delay);
}
template <typename F>
inline auto async(F&& callback)
-> decltype(asyncDelay(std::forward<F>(callback), qi::Duration(0)))
{
return asyncDelay(std::forward<F>(callback), qi::Duration(0));
}
/// \copydoc qi::EventLoop::async().
/// \deprecated use qi::async with qi::Duration
template<typename R>
QI_API_DEPRECATED_MSG(Use 'asyncDelay' instead)
inline Future<R> async(boost::function<R()> callback, uint64_t usDelay);
template<typename R>
QI_API_DEPRECATED_MSG(Use 'asyncDelay' instead)
inline Future<R> async(boost::function<R()> callback, qi::Duration delay);
template<typename R>
QI_API_DEPRECATED_MSG(Use 'asyncAt' instead)
inline Future<R> async(boost::function<R()> callback, qi::SteadyClockTimePoint timepoint);
template<typename R>
QI_API_DEPRECATED_MSG(Use 'async' without explicit return type template arguement instead)
inline Future<R> async(detail::Function<R()> callback);
#ifdef DOXYGEN
/// @deprecated since 2.5
template<typename R, typename Func, typename ArgTrack>
QI_API_DEPRECATED qi::Future<R> async(const Func& f, const ArgTrack& toTrack, ...);
#else
#define genCall(n, ATYPEDECL, ATYPES, ADECL, AUSE, comma)\
template <typename R, typename AF, typename ARG0 comma ATYPEDECL>\
inline QI_API_DEPRECATED Future<R> async(const AF& fun, const ARG0& arg0 comma ADECL, qi::Duration delay = qi::Duration(0))\
\
template <typename R, typename AF, typename ARG0 comma ATYPEDECL>\
inline QI_API_DEPRECATED Future<R> async(const AF& fun, const ARG0& arg0 comma ADECL, qi::SteadyClockTimePoint timepoint)\
QI_GEN(genCall)
#undef genCall
#endif
/// Cancels the future when the timeout expires.
///
/// The output future is the same as the input one, to allow functional
/// composition.
template<typename T, typename Duration>
Future<T> cancelOnTimeout(Future<T> fut, Duration timeout);
} // qi
#include <qi/detail/async.hxx>
#endif // _QI_ASYNC_HPP
| 34.504854 | 126 | 0.728756 | arntanguy |
bc6c6b0d6b0840dca12c91056363243de192adf1 | 6,251 | cpp | C++ | src/libs/qlib/qdmparams.cpp | 3dhater/Racer | d7fe4014b1efefe981528547649dc397da7fa780 | [
"Unlicense"
] | null | null | null | src/libs/qlib/qdmparams.cpp | 3dhater/Racer | d7fe4014b1efefe981528547649dc397da7fa780 | [
"Unlicense"
] | null | null | null | src/libs/qlib/qdmparams.cpp | 3dhater/Racer | d7fe4014b1efefe981528547649dc397da7fa780 | [
"Unlicense"
] | 1 | 2021-01-03T16:16:47.000Z | 2021-01-03T16:16:47.000Z | /*
* QDMParams - encapsulate DMparams type
* 08-09-98: Created!
* (C) MG/RVG
*/
#include <qlib/dmparams.h>
#include <qlib/debug.h>
DEBUG_ENABLE
#define DME(f,s) if((f)!=DM_SUCCESS)qerr(s)
QDMParams::QDMParams()
{
p=0;
#ifndef WIN32
DME(dmParamsCreate(&p),"QDMParams ctor; can't allocate DMparams");
#endif
}
QDMParams::~QDMParams()
{
#ifndef WIN32
if(p)dmParamsDestroy(p);
#endif
}
/******
* GET *
******/
int QDMParams::GetInt(const char *name)
{
#ifdef WIN32
return 0;
#else
return dmParamsGetInt(p,name);
#endif
}
int QDMParams::GetEnum(const char *name)
{
#ifdef WIN32
return 0;
#else
return dmParamsGetEnum(p,name);
#endif
}
const char *QDMParams::GetString(const char *name)
{
#ifdef WIN32
return 0;
#else
return dmParamsGetString(p,name);
#endif
}
double QDMParams::GetFloat(const char *name)
{
#ifdef WIN32
return 0;
#else
return dmParamsGetFloat(p,name);
#endif
}
DMfraction QDMParams::GetFract(const char *name)
{
#ifdef WIN32
return 0;
#else
return dmParamsGetFract(p,name);
#endif
}
/******
* SET *
******/
void QDMParams::SetImageDefaults(int wid,int hgt,DMimagepacking packing)
{
#ifndef WIN32
DME(dmSetImageDefaults(p,wid,hgt,packing),"QDMParams::SetImageDefaults");
#endif
}
void QDMParams::SetAudioDefaults(int bits,int freq,int channels)
{
#ifndef WIN32
DME(dmSetAudioDefaults(p,bits,freq,channels),"QDMParams::SetAudioDefaults");
#endif
}
void QDMParams::SetInt(const char *name,int n)
{
#ifndef WIN32
dmParamsSetInt(p,name,n);
#endif
}
void QDMParams::SetFloat(const char *name,double v)
{
#ifndef WIN32
dmParamsSetFloat(p,name,v);
#endif
}
void QDMParams::SetEnum(const char *name,int n)
{
#ifndef WIN32
dmParamsSetEnum(p,name,n);
#endif
}
void QDMParams::SetString(const char *name,const char *v)
{
#ifndef WIN32
dmParamsSetString(p,name,v);
#endif
}
/*******
* DEBUG *
********/
static void DbgPrintParams(const DMparams *p,int indent=0)
{
#ifndef WIN32
int len = dmParamsGetNumElems( p );
int i;
int j;
for ( i = 0; i < len; i++ ) {
const char* name = dmParamsGetElem ( p, i );
DMparamtype type = dmParamsGetElemType( p, i );
for ( j = 0; j < indent; j++ ) {
printf( " " );
}
printf( "%8s: ", name );
switch( type )
{
case DM_TYPE_ENUM:
printf( "%d", dmParamsGetEnum( p, name ) );
break;
case DM_TYPE_INT:
printf( "%d", dmParamsGetInt( p, name ) );
break;
case DM_TYPE_STRING:
printf( "%s", dmParamsGetString( p, name ) );
break;
case DM_TYPE_FLOAT:
printf( "%f", dmParamsGetFloat( p, name ) );
break;
case DM_TYPE_FRACTION:
{
DMfraction f;
f = dmParamsGetFract( p, name );
printf( "%d/%d", f.numerator, f.denominator );
}
break;
case DM_TYPE_PARAMS:
DbgPrintParams( dmParamsGetParams( p, name ), indent + 4 );
break;
case DM_TYPE_ENUM_ARRAY:
{
int i;
const DMenumarray* array = dmParamsGetEnumArray( p, name );
for ( i = 0; i < array->elemCount; i++ ) {
printf( "%d ", array->elems[i] );
}
}
break;
case DM_TYPE_INT_ARRAY:
{
int i;
const DMintarray* array = dmParamsGetIntArray( p, name );
for ( i = 0; i < array->elemCount; i++ ) {
printf( "%d ", array->elems[i] );
}
}
break;
case DM_TYPE_STRING_ARRAY:
{
int i;
const DMstringarray* array =
dmParamsGetStringArray( p, name );
for ( i = 0; i < array->elemCount; i++ ) {
printf( "%s ", array->elems[i] );
}
}
break;
case DM_TYPE_FLOAT_ARRAY:
{
int i;
const DMfloatarray* array =
dmParamsGetFloatArray( p, name );
for ( i = 0; i < array->elemCount; i++ ) {
printf( "%f ", array->elems[i] );
}
}
break;
case DM_TYPE_FRACTION_ARRAY:
{
int i;
const DMfractionarray* array =
dmParamsGetFractArray( p, name );
for ( i = 0; i < array->elemCount; i++ ) {
printf( "%d/%d ",
array->elems[i].numerator,
array->elems[i].denominator );
}
}
break;
case DM_TYPE_INT_RANGE:
{
const DMintrange* range = dmParamsGetIntRange( p, name );
printf( "%d ... %d", range->low, range->high );
}
break;
case DM_TYPE_FLOAT_RANGE:
{
const DMfloatrange* range =
dmParamsGetFloatRange( p, name );
printf( "%f ... %f", range->low, range->high );
}
break;
case DM_TYPE_FRACTION_RANGE:
{
const DMfractionrange* range =
dmParamsGetFractRange( p, name );
printf( "%d/%d ... %d/%d",
range->low.numerator,
range->low.denominator,
range->high.numerator,
range->high.denominator );
}
break;
defualt:
printf( "UNKNOWN TYPE" );
}
printf( "\n" );
}
printf("---\n");
#endif
}
void QDMParams::DbgPrint()
{
DbgPrintParams(p);
}
| 25.618852 | 79 | 0.468725 | 3dhater |
bc721205ba0641d2c9af5dceaf265c880c2463da | 2,530 | hpp | C++ | include/NumCpp/Functions/extract.hpp | purusharths/NumCpp | 269b0ff1341b06480c9679285cb6c6c6843df06b | [
"MIT"
] | 2 | 2018-07-11T04:37:24.000Z | 2018-07-11T04:37:26.000Z | include/NumCpp/Functions/extract.hpp | BADBADBADBOY/NumCpp | 269b0ff1341b06480c9679285cb6c6c6843df06b | [
"MIT"
] | null | null | null | include/NumCpp/Functions/extract.hpp | BADBADBADBOY/NumCpp | 269b0ff1341b06480c9679285cb6c6c6843df06b | [
"MIT"
] | null | null | null | /// @file
/// @author David Pilger <[email protected]>
/// [GitHub Repository](https://github.com/dpilger26/NumCpp)
///
/// License
/// Copyright 2018-2022 David Pilger
///
/// 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.
///
/// Description
/// Functions for working with NdArrays
///
#pragma once
#include "NumCpp/NdArray.hpp"
#include "NumCpp/Core/Internal/Error.hpp"
#include <vector>
namespace nc
{
//============================================================================
// Method Description:
/// Return the elements of an array that satisfy some condition.
///
/// NumPy Reference: https://numpy.org/doc/stable/reference/generated/numpy.extract.html
///
/// @param condition: An array whose nonzero or True entries indicate the elements of arr to extract.
/// @param arr: Input array of the same size as condition
/// @return NdArray
///
template<typename dtype>
NdArray<dtype> extract(const NdArray<bool>& condition, const NdArray<dtype>& arr)
{
if (condition.size() != arr.size())
{
THROW_INVALID_ARGUMENT_ERROR("Input arguments 'condition' and 'arr' must have the same size.");
}
std::vector<dtype> values;
for (decltype(arr.size()) i = 0; i < arr.size(); ++i)
{
if (condition[i])
{
values.push_back(arr[i]);
}
}
return NdArray<dtype>(values.begin(), values.end());
}
} // namespace nc
| 37.761194 | 107 | 0.655731 | purusharths |
bc721fea6903073d3e9e5e021effb0bbcc970db6 | 119 | hpp | C++ | src/agl/engine/triangle_mesh/all.hpp | the-last-willy/abstractgl | d685bef25ac18773d3eea48ca52806c3a3485ddb | [
"MIT"
] | null | null | null | src/agl/engine/triangle_mesh/all.hpp | the-last-willy/abstractgl | d685bef25ac18773d3eea48ca52806c3a3485ddb | [
"MIT"
] | null | null | null | src/agl/engine/triangle_mesh/all.hpp | the-last-willy/abstractgl | d685bef25ac18773d3eea48ca52806c3a3485ddb | [
"MIT"
] | null | null | null | #pragma once
#include "geometry/all.hpp"
#include "mesh/all.hpp"
#include "proxy/all.hpp"
#include "topology/all.hpp"
| 17 | 27 | 0.731092 | the-last-willy |
bc7679c121909d7cd61b06933823a641f9ba1bff | 4,846 | cpp | C++ | src/pressure_solver/1_cg_solver.cpp | NumerischeSimulation/FinalProject | a6dbb991241c45c0d83a6861726e4159156bdbbd | [
"MIT"
] | null | null | null | src/pressure_solver/1_cg_solver.cpp | NumerischeSimulation/FinalProject | a6dbb991241c45c0d83a6861726e4159156bdbbd | [
"MIT"
] | 5 | 2022-01-26T19:27:45.000Z | 2022-02-09T11:41:32.000Z | src/pressure_solver/1_cg_solver.cpp | NumerischeSimulation/FinalProject | a6dbb991241c45c0d83a6861726e4159156bdbbd | [
"MIT"
] | 3 | 2022-01-25T15:28:01.000Z | 2022-02-08T10:50:30.000Z | #include "1_cg_solver.h"
CGSolver::CGSolver(std::shared_ptr<Discretization> discretization, double epsilon, int maximumNumberOfIterations, bool outflowBottom, bool outflowTop, bool outflowLeft, bool outflowRight) :
PressureSolver(discretization, epsilon, maximumNumberOfIterations, outflowBottom, outflowTop, outflowLeft, outflowRight),
res({discretization_->nCells()[0],discretization_->nCells()[1]},
{discretization_->meshWidth()[0]/2., discretization_->meshWidth()[0]/2},
discretization_->meshWidth())
{
}
void CGSolver::solve()
{
// variables
// used as in wikipedia, but with x -> p and p -> c for clarity
int n = discretization_->nCells()[0];
int m = discretization_->nCells()[1];
double alpha = 0;
double beta = 0;
double res_pow2_sum = 0;
double res_pow2_sum_updated = 0;
int iteration = 0;
FieldVariable res_pow2({n,m},
{discretization_->meshWidth()[0]/2., discretization_->meshWidth()[0]/2},
discretization_->meshWidth());
FieldVariable c({n,m},
{discretization_->meshWidth()[0]/2., discretization_->meshWidth()[0]/2},
discretization_->meshWidth());
FieldVariable Ac({n,m},
{discretization_->meshWidth()[0]/2., discretization_->meshWidth()[0]/2},
discretization_->meshWidth());
//cell size
double dy = discretization_->dy();
double dx = discretization_->dx();
double dx2 = pow(dx,2);
double dy2 = pow(dy,2);
// calculate the number of fluid cells
int nFluidCells = 0;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
if(discretization_->isObstacleCell(i,j) != 1.)
{
nFluidCells++;
}
}
}
// compute inital residual
calculateInitialResidual(); // TODO: how to correctly reference
// calculate r^2
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
if(discretization_->isObstacleCell(i,j) != 1.)
{
res_pow2(i,j) = res(i,j) * res(i,j);
res_pow2_sum += res_pow2(i,j);
}
}
}
// TODO divide by number of fluid cells
while(iteration < maximumNumberOfIterations_)
{
// calculate alpha
double cAc = 0;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
if(discretization_->isObstacleCell(i,j) != 1.)
{
double pxx = (discretization_->p(i-1, j) - 2.0 *discretization_->p(i,j) + discretization_->p(i+1, j)) / (dx2);
double pyy = (discretization_->p(i, j-1) - 2.0 *discretization_->p(i,j) + discretization_->p(i, j+1)) / (dy2);
Ac(i,j) = pxx + pyy;
cAc += c(i,j) * Ac(i,j);
}
}
}
alpha = res_pow2_sum / cAc;
// calculate iterations for p and res
res_pow2_sum_updated = 0;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
if(discretization_->isObstacleCell(i,j) != 1.)
{
discretization_->p(i, j) = discretization_->p(i, j) + alpha * c(i,j);
res(i,j) = res(i,j) - alpha * Ac(i,j);
res_pow2_sum_updated += res(i,j) * res(i,j);
}
}
}
// break conditon
if ((res_pow2_sum / nFluidCells) <= pow(epsilon_,2)) // divide by number of cells
{
setBoundaryValues();
break;
}
// calculate beta
beta = res_pow2_sum_updated / res_pow2_sum;
// calculate iteration of c
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
if(discretization_->isObstacleCell(i,j) != 1.)
{
c(i,j) = res(i,j) + beta * c(i,j);
}
}
}
// update residual
res_pow2_sum = res_pow2_sum_updated;
iteration++;
}
std::cout << "CG: " << iteration << " with a residuum of " << res_pow2_sum_updated << " from target " << epsilon_ << std::endl;
}
void CGSolver::calculateInitialResidual()
{
int nCellsx = discretization_->nCells()[0]; // inner cells in x direction
int nCellsy = discretization_->nCells()[1]; // inner cells in y direction
//cell size
double dy = discretization_->dy();
double dx = discretization_->dx();
double dx2 = pow(dx,2);
double dy2 = pow(dy,2);
for ( int i = discretization_->pIBegin() +1; i < discretization_->pIEnd() -1; i++)
{
for ( int j= discretization_->pJBegin() +1; j < discretization_->pJEnd() -1; j++)
{
if (discretization_->isObstacleCell(i,j) != 1.)
{
// calculate residual
double pxx = (discretization_->p(i-1, j) - 2.0 *discretization_->p(i,j) + discretization_->p(i+1, j)) / (dx2);
double pyy = (discretization_->p(i, j-1) - 2.0 *discretization_->p(i,j) + discretization_->p(i, j+1)) / (dy2);
res(i,j) = discretization_->rhs(i, j) - pxx - pyy;
}
}
}
}
| 29.91358 | 189 | 0.563351 | NumerischeSimulation |
bc80bb30c906fb3ffaf42404e1274d7196671614 | 1,957 | cpp | C++ | SFML-RPG/Entity.cpp | Akshat69/SFML-RPG | 2ffb0fc5e94bd9f3460d9c06ffb485aa8afefe34 | [
"MIT"
] | null | null | null | SFML-RPG/Entity.cpp | Akshat69/SFML-RPG | 2ffb0fc5e94bd9f3460d9c06ffb485aa8afefe34 | [
"MIT"
] | 1 | 2021-09-17T16:37:18.000Z | 2021-09-17T16:37:18.000Z | SFML-RPG/Entity.cpp | Akshat69/SFML-RPG | 2ffb0fc5e94bd9f3460d9c06ffb485aa8afefe34 | [
"MIT"
] | null | null | null | #include "stdafx.h"
#include "Entity.h"
void Entity::initVariables()
{
this->movementSpeed = 100.0f;
this->movementComponent = NULL;
}
Entity::Entity(sf::RenderWindow* window)
{
this->window = window;
}
Entity::~Entity()
{
delete this->movementComponent;
delete this->animationComponent;
delete this->hitboxComponent;
}
void Entity::setTexture(sf::Texture* texture)
{
this->sprite.setTexture(*texture);
}
void Entity::createMovementComponent(float maxVelocity, float acceleration,
float deceleration)
{
this->movementComponent = new MovementComponent(this->sprite, maxVelocity, acceleration,
deceleration);
}
void Entity::createAnimationComponent(sf::Texture& texture_sheet)
{
this->animationComponent = new AnimationComponent(sprite, texture_sheet);
}
void Entity::createHitboxComponent(sf::Vector2f offset, sf::Vector2f size)
{
this->hitboxComponent = new HitboxComponent(this->sprite, offset, size);
}
void Entity::setPosition(const float posX, const float posY)
{
this->sprite.setPosition(sf::Vector2f(posX, posY));
}
void Entity::move(const float& DeltaTime, const float dirX, const float dirY)
{
if (!this->movementComponent) return;
this->movementComponent->move(dirX, dirY, DeltaTime);
}
void Entity::Render(sf::RenderTarget* target)
{
if (!target)
target = this->window;
//if (!this->sprite) return;
target->draw(this->sprite);
if (this->hitboxComponent)
this->hitboxComponent->Render(target);
}
void Entity::moveTo(const float& DeltaTime, const float posX, const float posY)
{
float speedX = this->movementSpeed * (posX - this->sprite.getPosition().x) * DeltaTime;
float speedY = this->movementSpeed * (posY - this->sprite.getPosition().y) * DeltaTime;
this->sprite.move(sf::Vector2f(speedX, speedY));
}
void Entity::Update(const float& DeltaTime)
{
if (this->movementComponent)
this->movementComponent->Update(DeltaTime);
if (this->hitboxComponent)
this->hitboxComponent->Update(DeltaTime);
}
| 22.755814 | 89 | 0.74093 | Akshat69 |
bc82e8bd8fc699130c980fa903473f6b72359e6f | 4,557 | cpp | C++ | apps/FontEditor/FontEditor.cpp | Koncord/YAPE | 9def79c493bc50b41a371c6e80174d47f795b8f1 | [
"Apache-2.0"
] | 3 | 2015-10-29T16:11:49.000Z | 2021-08-28T08:53:09.000Z | apps/FontEditor/FontEditor.cpp | Koncord/YAPE | 9def79c493bc50b41a371c6e80174d47f795b8f1 | [
"Apache-2.0"
] | 13 | 2015-10-29T05:39:16.000Z | 2017-06-11T19:10:07.000Z | apps/FontEditor/FontEditor.cpp | Koncord/YAPE | 9def79c493bc50b41a371c6e80174d47f795b8f1 | [
"Apache-2.0"
] | 1 | 2022-03-01T18:47:58.000Z | 2022-03-01T18:47:58.000Z | /*
*
* Copyright (c) 2015-2017 Stanislav Zhukov
*
* 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.
*
*/
#include "FontEditor.hpp"
#include "SymbolSelector.hpp"
#include <QMouseEvent>
#include <QPixmap>
#include <QPainter>
#include <components/Utils/Utils.hpp>
#include <QFileDialog>
#include <limits>
#include <QMessageBox>
MainForm *MainForm::mThis = nullptr;
MainForm::MainForm(QWidget *parent)
{
mThis = this;
Q_UNUSED(parent)
setupUi(this);
fontHeader.size_height = 8;
fontHeader.size_width = 8;
connect(actionLoad, SIGNAL(triggered()), this, SLOT(load()));
selector = new SymbolSelector(this);
selector->show();
selector->move(selector->x() - selector->width(), selector->y());
this->move(selector->x() + selector->width() + 2, selector->y());
}
MainForm::~MainForm()
{
mThis = nullptr;
}
QPoint MainForm::GetMouseCoord(QMouseEvent *event)
{
QPoint mcoords {-1,-1};
if(event->x() >= 0 && event->x() < canvas->width() && event->y() >= 0 && event->y() < canvas->height())
{
mcoords.setX(Utils::map(event->x(), canvas->width(), fontHeader.size_width));
mcoords.setY(Utils::map(event->y(), canvas->height(), fontHeader.size_height));
}
return mcoords;
}
unsigned int buttonStatus;
void MainForm::mousePressEvent(QMouseEvent *event)
{
if(event->button() == Qt::MouseButton::LeftButton)
buttonStatus = event->button();
else if(event->button() == Qt::MouseButton::RightButton)
buttonStatus = event->button();
mouseEvent(event);
QWidget::mousePressEvent(event);
}
void MainForm::mouseReleaseEvent(QMouseEvent *event)
{
if(event->button() == buttonStatus)
buttonStatus = 0;
mouseEvent(event);
QWidget::mouseReleaseEvent(event);
}
void MainForm::mouseMoveEvent(QMouseEvent *event)
{
mouseEvent(event);
QWidget::mouseMoveEvent(event);
}
void MainForm::mouseEvent(QMouseEvent *event)
{
if(buttonStatus)
{
QString btn;
if(buttonStatus == Qt::MouseButton::LeftButton)
btn = "LMB";
else if(buttonStatus == Qt::MouseButton::RightButton)
btn = "RMB";
const QPoint coords = GetMouseCoord(event);
if(coords.x() != -1 && coords.y() != -1)
{
canvas->SetPixel(coords.x(), coords.y(), buttonStatus == Qt::MouseButton::LeftButton);
QString qstr = QString::number(coords.x()) + " : " + QString::number(coords.y()) + " | " + btn;
statusbar->showMessage(qstr);
}
}
}
void MainForm::load()
{
//QMessageBox::information(this, "test", "test");
QString qstr = QFileDialog::getOpenFileName(this, tr("Open Font"), "", tr("Font (*.bfnt)"));
if(!qstr.isEmpty())
{
const char *str = qstr.toLatin1().data();
BitFont fnt(str);
fnt.Load();
fontHeader = fnt.GetHeader();
for(uint8_t i = 0; i < std::numeric_limits<uint8_t>::max(); i++)
{
BitFontChar *chr = fnt.GetSymbol(i);
if(chr != nullptr)
{
// load char
SymbolSelector::AddSymbol(*chr);
}
}
}
}
MainForm::MainForm(uint8_t *data, uint8_t size, QWidget *parent) : MainForm(parent)
{
Q_UNUSED(data)
Q_UNUSED(size)
}
MainForm *MainForm::get()
{
return mThis;
}
void MainForm::SetChar(uint8_t id, uint8_t *data, uint16_t size)
{
uint16_t x = 0;
uint16_t y = 0;
setWindowTitle(QString::number(id));
if(size == 0)
canvas->Clear();
for(uint16_t i = 0; i < size; i++)
{
if(y >= fontHeader.size_height)
break;
canvas->SetPixel(x,y, data[i] == 1);
x++;
if(x == fontHeader.size_width)
{
x = 0;
y++;
}
}
}
void MainForm::closeEvent(QCloseEvent *event)
{
selector->close();
}
| 26.494186 | 108 | 0.585034 | Koncord |
bc8531dbedcd573f5394e93c67135a97f62551a1 | 1,967 | cpp | C++ | src/IncludeDeps.cpp | Thraix/MakeGen | 61f9c3ee0dc15f784ac1f256d4ca0b0609d6b3ea | [
"MIT"
] | 1 | 2020-03-27T13:12:36.000Z | 2020-03-27T13:12:36.000Z | src/IncludeDeps.cpp | Thraix/MakeGen | 61f9c3ee0dc15f784ac1f256d4ca0b0609d6b3ea | [
"MIT"
] | null | null | null | src/IncludeDeps.cpp | Thraix/MakeGen | 61f9c3ee0dc15f784ac1f256d4ca0b0609d6b3ea | [
"MIT"
] | null | null | null | #include "IncludeDeps.h"
#include "Common.h"
std::set<std::string> IncludeDeps::printSet;
int IncludeDeps::printCounter = 0;
IncludeDeps::IncludeDeps(const std::string& filename, const std::string& dir, const std::set<HFile>& files, std::map<std::string, IncludeDeps*>& allDeps)
: IncludeDeps{filename, dir, false, files, allDeps}
{}
IncludeDeps::IncludeDeps(const std::string& filename, const std::string& dir, bool projectHFile, const std::set<HFile>& files, std::map<std::string, IncludeDeps*>& allDeps)
: filepath(dir+filename), projectHFile{projectHFile}
{
if(Utils::IsHeaderFile(filename))
{
allDeps.emplace(filepath, this);
}
std::ifstream file(filepath);
std::string line;
while(std::getline(file,line))
{
size_t pos = line.find("#include");
if(pos != std::string::npos)
{
std::string include = FileUtils::CollapseDirectory(GetIncludeFile(line, pos, filename));
auto it = files.find({include, "", false});
if(it != files.end())
{
auto itD = allDeps.find(it->filepath);
if(itD == allDeps.end())
{
IncludeDeps* inc = new IncludeDeps(it->filename,it->directory, it->isProjectHFile, files,allDeps);
dependencies.emplace(it->filepath, inc);
}else{
dependencies.emplace(itD->first, itD->second);
}
}
}
}
}
std::string IncludeDeps::GetIncludeFile(const std::string& line, size_t pos, const std::string& filename)
{
size_t bracket = line.find('<',pos);
if(bracket == std::string::npos)
{
bracket = line.find('\"',pos);
if(bracket == std::string::npos)
{
return "";
}
size_t slash = filename.find_last_of("/");
std::string include = line.substr(bracket+1, line.find('\"',bracket+1)-bracket-1);
if(slash == std::string::npos)
slash = -1;
return filename.substr(0,slash+1)+include;
}
else
{
return line.substr(bracket+1, line.find('>',bracket+1)-bracket-1);
}
}
| 30.261538 | 172 | 0.637519 | Thraix |
bc855f035d528966be7fbdb085b38b774585405a | 524 | hpp | C++ | header/actor-zeta/spawn.hpp | smart-cloud/actor-zeta | 9597d6c21843a5e24a7998d09ff041d2f948cc63 | [
"BSD-3-Clause"
] | 20 | 2016-01-07T07:37:52.000Z | 2019-06-02T12:04:25.000Z | header/actor-zeta/spawn.hpp | smart-cloud/actor-zeta | 9597d6c21843a5e24a7998d09ff041d2f948cc63 | [
"BSD-3-Clause"
] | 30 | 2017-03-10T14:47:46.000Z | 2019-05-09T19:23:25.000Z | header/actor-zeta/spawn.hpp | jinncrafters/actor-zeta | 9597d6c21843a5e24a7998d09ff041d2f948cc63 | [
"BSD-3-Clause"
] | 6 | 2017-03-10T14:06:01.000Z | 2018-08-13T18:19:37.000Z | #pragma once
#include "actor-zeta/base/forwards.hpp"
#include "actor-zeta/base/address.hpp"
namespace actor_zeta {
template<
class ChildrenSupervisor,
class... Args,
class = type_traits::enable_if_t<std::is_base_of<base::supervisor_abstract, ChildrenSupervisor>::value>>
auto spawn_supervisor(Args&&... args) -> std::unique_ptr<ChildrenSupervisor> {
return std::unique_ptr<ChildrenSupervisor>(new ChildrenSupervisor(std::forward<Args>(args)...));
}
} // namespace actor_zeta
| 30.823529 | 112 | 0.706107 | smart-cloud |
bc962d58a97d58a80450b038beea52cd497fcfe4 | 3,838 | cpp | C++ | DropWidget.cpp | Evgenii-Evgenevich/qt-the-interface | 0d12d110b09b5ff9c52adc7da70104b219220267 | [
"Apache-2.0"
] | null | null | null | DropWidget.cpp | Evgenii-Evgenevich/qt-the-interface | 0d12d110b09b5ff9c52adc7da70104b219220267 | [
"Apache-2.0"
] | null | null | null | DropWidget.cpp | Evgenii-Evgenevich/qt-the-interface | 0d12d110b09b5ff9c52adc7da70104b219220267 | [
"Apache-2.0"
] | null | null | null | #include "DropWidget.h"
#include "Element.h"
#include "HBoxLayout.h"
#include <QScrollBar>
#include <QDropEvent>
#include <QMimeData>
#include <QScrollArea>
#include <QDrag>
#include <QPainter>
DropWidget::DropWidget()
: DropWidget(nullptr)
{
}
DropWidget::DropWidget(QWidget* parent)
: QScrollArea(parent)
, m_layout(new HBoxLayout(this))
{
QPalette palette{};
palette.setColor(QPalette::Background, Qt::white);
setAutoFillBackground(true);
setPalette(palette);
setWindowFlags(Qt::WindowType::Tool | Qt::WindowType::CustomizeWindowHint | Qt::WindowType::WindowTitleHint);
setAcceptDrops(true);
setMaximumHeight(300);
setMinimumSize(300, 30);
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
setWidgetResizable(true);
setWidget(m_layout);
resize(640, 55);
setWindowTitle("Model");
}
void DropWidget::dragEnterEvent(QDragEnterEvent* event)
{
if (event->mimeData()->hasFormat("application/x-pole"))
{
if (event->source() == this)
{
event->setDropAction(Qt::MoveAction);
event->accept();
}
else
{
event->acceptProposedAction();
}
}
else
{
event->ignore();
}
}
void DropWidget::dragMoveEvent(QDragMoveEvent* event)
{
if (event->mimeData()->hasFormat("application/x-pole"))
{
if (event->source() == this)
{
event->setDropAction(Qt::MoveAction);
event->accept();
}
else
{
event->acceptProposedAction();
}
}
else
{
event->ignore();
}
}
void DropWidget::dropEvent(QDropEvent* event)
{
if (event->mimeData()->hasFormat("application/x-pole"))
{
QByteArray itemData = event->mimeData()->data("application/x-pole");
QDataStream dataStream(&itemData, QIODevice::ReadOnly);
size_t map;
dataStream >> map;
Element* label = reinterpret_cast<Element*>(map);
if (event->source() == this)
{
m_layout->drop(label, event->pos());
event->setDropAction(Qt::TargetMoveAction);
event->accept();
}
else
{
m_layout->drop(new Element(*label), event->pos());
updateGeometry();
event->acceptProposedAction();
}
}
else
{
event->ignore();
}
}
void DropWidget::mousePressEvent(QMouseEvent* event)
{
Element* child = nullptr;
for (QObject* object : m_layout->children())
{
if (Element* element = dynamic_cast<Element*>(object))
{
if (element->underMouse())
{
child = element;
break;
}
}
}
if (!child) return;
if (event->button() == Qt::MouseButton::LeftButton)
{
QByteArray itemData;
QDataStream dataStream(&itemData, QIODevice::WriteOnly);
dataStream << reinterpret_cast<size_t>(child);
QMimeData* mimeData = new QMimeData;
mimeData->setData("application/x-pole", itemData);
QDrag* drag = new QDrag(this);
drag->setMimeData(mimeData);
drag->setPixmap(child->pixmap());
drag->setHotSpot(event->pos());
if (drag->exec(Qt::TargetMoveAction) == Qt::MoveAction)
{
child->close();
}
}
else
{
child->dialog();
}
}
void DropWidget::enterEvent(QEvent* event)
{
if (isActiveWindow())
{
setWindowOpacity(1);
}
else
{
qreal opacity = windowOpacity();
setWindowOpacity(opacity + 0.2);
}
}
void DropWidget::leaveEvent(QEvent* event)
{
qreal opacity = windowOpacity();
setWindowOpacity(opacity - 0.2);
}
void DropWidget::focusInEvent(QFocusEvent* event)
{
if (isActiveWindow())
{
setWindowOpacity(1);
}
else
{
qreal opacity = windowOpacity();
setWindowOpacity(opacity + 0.2);
}
}
void DropWidget::focusOutEvent(QFocusEvent* event)
{
qreal opacity = windowOpacity();
setWindowOpacity(opacity - 0.2);
}
void DropWidget::resizeEvent(QResizeEvent* event)
{
int const height = event->size().height();
int width = 0;
for (QObject* child : m_layout->children())
{
if (Element* element = dynamic_cast<Element*>(child))
{
element->setHeight(height);
width += element->width();
}
}
}
| 19 | 110 | 0.682908 | Evgenii-Evgenevich |
bc98262a6cfc198af2d61e3ea97d77ec21178343 | 1,898 | cpp | C++ | Lamp/src/Lamp/Objects/Entity/BaseComponents/DirectionalLightComponent.cpp | ChunkTreasure1/Lamp | 65be1544322949d6640e1fd108ed5a018387d0eb | [
"MIT"
] | 2 | 2021-09-13T17:37:34.000Z | 2021-11-17T18:52:42.000Z | Lamp/src/Lamp/Objects/Entity/BaseComponents/DirectionalLightComponent.cpp | ChunkTreasure1/Lamp | 65be1544322949d6640e1fd108ed5a018387d0eb | [
"MIT"
] | 20 | 2020-09-30T13:44:46.000Z | 2021-12-03T14:30:04.000Z | Lamp/src/Lamp/Objects/Entity/BaseComponents/DirectionalLightComponent.cpp | ChunkTreasure1/Lamp | 65be1544322949d6640e1fd108ed5a018387d0eb | [
"MIT"
] | null | null | null | #include "lppch.h"
#include "DirectionalLightComponent.h"
#include "Lamp/Objects/Entity/Base/ComponentRegistry.h"
#include "Lamp/Objects/Entity/Base/Entity.h"
#include "Lamp/Level/Level.h"
#include <glm/gtx/quaternion.hpp>
namespace Lamp
{
LP_REGISTER_COMPONENT(DirectionalLightComponent)
DirectionalLightComponent::DirectionalLightComponent()
: EntityComponent("DirectionalLightComponent")
{
m_pDirectionalLight = CreateScope<DirectionalLight>();
SetComponentProperties
({
{ PropertyType::Float, "Intensity", RegisterData(&m_pDirectionalLight->intensity) },
{ PropertyType::Color3, "Color", RegisterData(&m_pDirectionalLight->color) },
{ PropertyType::Bool, "Cast Shadows", RegisterData(&m_pDirectionalLight->castShadows) }
});
if (g_pEnv->pLevel)
{
g_pEnv->pLevel->GetRenderUtils().RegisterDirectionalLight(m_pDirectionalLight.get());
}
}
DirectionalLightComponent::~DirectionalLightComponent()
{
g_pEnv->pLevel->GetRenderUtils().UnregisterDirectionalLight(m_pDirectionalLight.get());
}
void DirectionalLightComponent::Initialize()
{
UpdateLight();
}
void DirectionalLightComponent::OnEvent(Event& e)
{
EventDispatcher dispatcher(e);
dispatcher.Dispatch<ObjectRotationChangedEvent>(LP_BIND_EVENT_FN(DirectionalLightComponent::OnRotationChanged));
}
bool DirectionalLightComponent::OnRotationChanged(ObjectRotationChangedEvent& e)
{
UpdateLight();
return false;
}
void DirectionalLightComponent::UpdateLight()
{
m_pDirectionalLight->transform = m_pEntity->GetTransform();
glm::vec3 dir = glm::normalize(glm::mat3(m_pDirectionalLight->transform) * glm::vec3(1.f)) * -1.f;
glm::mat4 view = glm::lookAt(glm::vec3(0.f) - dir * m_size, glm::vec3(0.f), glm::vec3(0.f, 1.f, 0.f));
glm::mat4 projection = glm::ortho(-m_size, m_size, -m_size, m_size, 0.1f, 100.f);
m_pDirectionalLight->viewProjection = projection * view;
}
} | 30.126984 | 114 | 0.753952 | ChunkTreasure1 |
bc9c0c03497e8f1f203cf09227fc63fb866e2089 | 964,140 | cpp | C++ | VehicleManagement/VehicleManage/GeneratedFiles/qrc_checkreceiptdialog.cpp | maanjun/IVM | fe7f58c0e45b2471357fafcc63328d903f08ea76 | [
"Apache-2.0"
] | null | null | null | VehicleManagement/VehicleManage/GeneratedFiles/qrc_checkreceiptdialog.cpp | maanjun/IVM | fe7f58c0e45b2471357fafcc63328d903f08ea76 | [
"Apache-2.0"
] | null | null | null | VehicleManagement/VehicleManage/GeneratedFiles/qrc_checkreceiptdialog.cpp | maanjun/IVM | fe7f58c0e45b2471357fafcc63328d903f08ea76 | [
"Apache-2.0"
] | null | null | null | /****************************************************************************
** Resource object code
**
** Created by: The Resource Compiler for Qt version 5.6.2
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
static const unsigned char qt_resource_data[] = {
// D:/Works/Mine/IVM/Codes/IVM/VehicleManagement/VehicleManage/Resources/Images/doing.png
0x0,0x0,0x3d,0x5e,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0xc8,0x0,0x0,0x0,0xc7,0x10,0x6,0x0,0x0,0x0,0xc,0x9e,0xc0,0x8,
0x0,0x0,0x0,0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8f,0xb,0xfc,0x61,0x5,
0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0,
0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a,0x26,0x0,0x0,0x80,0x84,0x0,0x0,0xfa,
0x0,0x0,0x0,0x80,0xe8,0x0,0x0,0x75,0x30,0x0,0x0,0xea,0x60,0x0,0x0,0x3a,
0x98,0x0,0x0,0x17,0x70,0x9c,0xba,0x51,0x3c,0x0,0x0,0x0,0x6,0x62,0x4b,0x47,
0x44,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x43,0xbb,0x7f,0x0,0x0,0x0,0x9,0x70,
0x48,0x59,0x73,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x48,0x0,0x46,0xc9,0x6b,0x3e,
0x0,0x0,0x3b,0xf7,0x49,0x44,0x41,0x54,0x78,0xda,0xed,0xdd,0x67,0x60,0x14,0x55,
0xd7,0x7,0xf0,0xff,0x99,0xdd,0x4d,0x42,0x2,0x48,0xd,0x29,0x10,0x12,0x5a,0xa,
0x55,0x9a,0xd2,0xc,0x48,0x97,0xaa,0x40,0x50,0xc1,0x80,0xa1,0x84,0x1a,0x40,0xaa,
0x48,0x7,0xb,0x12,0x44,0x41,0x4a,0x28,0x41,0x14,0x15,0x42,0x17,0x29,0xa,0x22,
0xbd,0x3c,0xf4,0x96,0x82,0xb4,0x4,0x48,0x82,0x10,0x7a,0x20,0xd9,0xdd,0xcc,0x79,
0x3f,0xc0,0x46,0x1f,0x7d,0x79,0x68,0x99,0x9d,0x94,0xf3,0xfb,0x96,0xb0,0x3b,0xe7,
0xcc,0x5,0xf6,0xec,0x9d,0xdb,0x8,0x42,0xe4,0x0,0x1,0x51,0xac,0x6,0x44,0x39,
0x38,0xdc,0xd9,0x97,0x7e,0x19,0xf0,0xf2,0x52,0xaf,0x1a,0xdf,0xe1,0xdf,0xbd,0xbd,
0x39,0x50,0xfd,0x9e,0xc3,0xbd,0xbd,0x51,0x3,0x1,0xb4,0xa9,0x54,0x29,0x54,0xc0,
0x6e,0xc4,0x14,0x2d,0x8a,0x54,0x8a,0xc4,0x92,0x62,0xc5,0x70,0x9a,0xfd,0x78,0x5c,
0xf1,0xe2,0x28,0x49,0xe3,0x60,0x29,0x5a,0x94,0xe,0xe1,0xd,0x72,0x2d,0x50,0x0,
0xbf,0x72,0x39,0xbe,0x9b,0x3f,0x3f,0x7f,0x0,0x2f,0xd4,0x31,0x99,0x6c,0x71,0xa8,
0x27,0x82,0x68,0x68,0xa1,0x42,0x48,0x84,0x3,0x62,0x88,0xd0,0xf,0xd7,0xf8,0x5b,
0xab,0x95,0x5b,0xe3,0x17,0x14,0xbb,0x7b,0x37,0x33,0xa1,0x3,0x38,0x46,0xed,0xd2,
0xd2,0xc8,0x85,0x6e,0xe0,0xe3,0x7,0xf,0xb0,0x91,0x23,0xb1,0xf1,0xe6,0x4d,0x14,
0xc7,0x30,0x74,0xbc,0x7e,0x1d,0xb7,0xe9,0x2a,0x2a,0xa4,0xa4,0xc0,0x93,0xbb,0xf2,
0xe6,0xeb,0xd7,0x71,0x83,0xea,0xc1,0x31,0x25,0x85,0x4e,0x70,0x24,0x5e,0xb9,0x78,
0x31,0x63,0x1a,0xbd,0x49,0x43,0x2e,0x5e,0xa4,0x93,0xd6,0x8,0xea,0x7e,0xf1,0x62,
0x52,0xa8,0xd3,0xd4,0xe8,0xa0,0x2b,0x57,0x0,0x22,0x20,0x23,0x43,0xef,0xf6,0x16,
0xe2,0x69,0x90,0xde,0x9,0x88,0xbc,0xc9,0x56,0x10,0x6e,0x7f,0x65,0xf9,0x82,0x92,
0xfd,0xfd,0xd5,0x63,0x48,0x50,0x2b,0x56,0xae,0x4c,0x5e,0x48,0x45,0x70,0xe5,0xca,
0x68,0x6,0x17,0x7c,0x5b,0xb5,0x2a,0x22,0x29,0x1f,0x3b,0x7,0x4,0xa0,0x11,0x8f,
0xa2,0xd,0x9e,0x9e,0x38,0x4,0x17,0xac,0x52,0x14,0xbd,0xf3,0xcf,0x6a,0x3c,0x1e,
0x89,0x7c,0xc8,0x62,0x81,0x17,0x7d,0x80,0x7b,0xf1,0xf1,0xb4,0x8,0x2d,0x91,0xff,
0xd4,0x29,0x6e,0xca,0x1f,0x51,0xaf,0x93,0x27,0x95,0x53,0x7c,0x8c,0xda,0x9f,0x38,
0xc1,0x1f,0xa3,0xab,0xba,0xe3,0xc4,0x89,0xc4,0x82,0xe,0xbf,0xc5,0xce,0x3e,0x77,
0x4e,0xa,0x8e,0xd0,0x93,0x14,0x10,0xa1,0x9,0xd7,0xd7,0x59,0xad,0xf4,0x71,0x89,
0x12,0xc6,0x20,0xf3,0xbb,0x96,0xee,0xb5,0x6b,0x73,0x28,0x7e,0x54,0x3c,0x6a,0xd4,
0x20,0x3,0x7d,0x82,0x22,0xf5,0xea,0x71,0x12,0x5a,0xa1,0x47,0xfd,0xfa,0xf4,0x32,
0x2,0xb0,0xc1,0xc9,0x49,0xef,0x7c,0x73,0x1c,0x6f,0xec,0xe5,0x1d,0xa9,0xa9,0xb8,
0x2,0x13,0xc5,0x1f,0x3b,0x86,0x7a,0xf8,0x1a,0x91,0xbb,0x77,0xe3,0x35,0x66,0x75,
0xcc,0x9e,0x3d,0x4a,0x9c,0xc3,0x8f,0x86,0x3d,0x7b,0xf6,0x5c,0x9e,0x41,0x14,0x1d,
0x74,0xe3,0x86,0xde,0xe9,0x8a,0xdc,0x49,0xa,0x88,0x78,0x2e,0x25,0x87,0x30,0x97,
0x1c,0x92,0x2f,0x9f,0xf5,0x83,0x8c,0x21,0x5,0xeb,0x4,0x6,0x2a,0xf3,0xd4,0xc6,
0xea,0xed,0x96,0x2d,0x31,0x97,0xbe,0xa0,0x8b,0xcd,0x9b,0xc3,0x89,0x7f,0xc1,0x6a,
0x5f,0x5f,0xbd,0xf3,0xcc,0xb3,0xda,0xe1,0x16,0xc6,0x66,0x64,0xe0,0x36,0xa,0x61,
0xd7,0xb1,0x63,0x7c,0x16,0x35,0xf8,0xcd,0xcd,0x9b,0xd1,0x83,0xa6,0x2b,0xb7,0x36,
0x6f,0x4e,0xa,0x35,0x36,0x8d,0xe,0xda,0xb7,0x4f,0x7a,0x30,0xe2,0x45,0x48,0x1,
0x11,0xff,0x53,0x89,0xa6,0xac,0x56,0x99,0xe6,0xea,0x6a,0x8,0xb7,0x7a,0x5b,0x92,
0x3a,0x74,0xc0,0x2e,0x6e,0xc1,0xa5,0xdb,0xb6,0xc5,0x60,0xf4,0xa4,0x97,0x2,0x3,
0xe1,0x8a,0x6a,0x98,0x9a,0x2f,0x9f,0xde,0x79,0x8a,0x67,0xc3,0x1b,0xb1,0x94,0x37,
0xde,0xbc,0x89,0x5b,0x74,0x1a,0x8e,0x5b,0xb6,0xa0,0x2c,0x1f,0x44,0xf0,0xda,0xb5,
0xd6,0xf,0x4c,0xdb,0x95,0xde,0xeb,0xd7,0x5f,0x5b,0x41,0x4a,0x74,0xd0,0xbd,0x7b,
0x7a,0xe7,0x29,0xb2,0x37,0x29,0x20,0x2,0x0,0xe0,0xe5,0xc5,0x5c,0xb9,0x72,0xe1,
0xc2,0x19,0xa5,0x2c,0xd3,0x2d,0x2b,0xdb,0xb4,0x51,0x27,0xe3,0x57,0xfa,0xa6,0x53,
0x27,0xfc,0x81,0xf9,0x3c,0xa6,0x79,0x73,0x9a,0x8,0xf,0xaa,0xf9,0xd7,0x60,0xb3,
0xc8,0x9d,0xf8,0x28,0xa2,0xd1,0x2a,0x2d,0xd,0xa7,0x31,0x2,0xa6,0xad,0x5b,0x95,
0xb1,0x68,0xc6,0xdd,0x57,0xac,0x30,0x7b,0x98,0x3e,0x50,0x8e,0xaf,0x5e,0x2d,0x85,
0x45,0xfc,0x9d,0x14,0x90,0x3c,0x87,0x19,0x50,0x14,0x8f,0x77,0x33,0xea,0xfb,0xf7,
0x7d,0xfd,0x75,0xe,0xe4,0x40,0xe,0xec,0xdd,0x1b,0xe0,0xde,0x68,0xd3,0xbe,0xbd,
0x14,0xa,0xf1,0xff,0xc9,0x2c,0x2c,0x6b,0x29,0x8a,0x6b,0xae,0x5f,0x4f,0x3b,0x68,
0x7,0xed,0x98,0x3f,0x3f,0xf1,0x7,0xe3,0x9e,0x98,0xb9,0x5b,0xb7,0xea,0x9d,0x9f,
0xd0,0x87,0x14,0x90,0x5c,0xae,0xd4,0xd4,0xfb,0x15,0x7c,0x43,0x3c,0x3c,0x32,0x2e,
0x9a,0xf6,0x53,0xc3,0x9e,0x3d,0x71,0x11,0xe3,0x68,0x52,0x48,0x8,0x8e,0xf3,0x17,
0x30,0x95,0x2e,0xad,0x77,0x7e,0x22,0x67,0xe3,0x48,0xf2,0xc2,0x98,0x13,0x27,0xe8,
0x5d,0xf8,0xf3,0xf,0xb,0x16,0x38,0xbd,0x64,0xfc,0xcd,0x1c,0xfd,0xdd,0x77,0xe7,
0x2f,0x90,0x72,0xfe,0xc2,0xed,0xdb,0x7a,0xe7,0x27,0xb4,0x25,0x5,0x24,0x97,0xf1,
0x3c,0x69,0xe,0xab,0x70,0xaf,0x4a,0x15,0xbe,0x83,0x70,0xc3,0xc5,0xfe,0xfd,0xb9,
0x1c,0xa2,0xf1,0x4d,0x70,0xb0,0xcc,0x76,0x12,0x76,0x51,0x1f,0xdb,0x71,0xfd,0xde,
0x3d,0x94,0x47,0x3a,0x7f,0x12,0x19,0xa9,0xb6,0xca,0xc8,0x47,0x6b,0xbe,0xf8,0x22,
0xb9,0x6e,0xbe,0x26,0x31,0x1b,0xe3,0xe3,0xf5,0x4e,0x4f,0x64,0x2d,0x29,0x20,0x39,
0x9c,0x7b,0x3,0x6b,0xf,0xdf,0xe5,0xcd,0x9b,0xd3,0x1e,0xb5,0x8c,0xd2,0x67,0xd8,
0x30,0xb8,0x61,0x38,0xdc,0x9a,0x34,0xd1,0x3b,0x2f,0x21,0x0,0xc0,0xb6,0x10,0x13,
0xeb,0xe9,0x43,0x8a,0x5d,0xb1,0x2,0xc9,0x1c,0xa,0xbf,0x69,0xd3,0x12,0xe3,0x1d,
0xea,0xc5,0xd4,0x3a,0x7a,0x54,0xef,0xf4,0xc4,0x8b,0x91,0x2,0x92,0xc3,0xb8,0x47,
0x58,0x7e,0xd,0x88,0xaa,0x5f,0x9f,0xa,0xf3,0x4d,0x5e,0x31,0x65,0xa,0x6,0xe3,
0x4d,0x9c,0xa,0xc,0xd4,0x3b,0x2f,0x21,0x9e,0x49,0x32,0xa6,0x21,0x79,0xeb,0x56,
0x9e,0x8b,0x2e,0x7c,0x79,0xe4,0xc8,0xa4,0x50,0x7,0xef,0x58,0x97,0x23,0x47,0xf4,
0x4e,0x4b,0x3c,0x1b,0x29,0x20,0xd9,0x9c,0xc7,0x47,0x96,0xd9,0xbe,0xbf,0xd4,0xad,
0xcb,0x8d,0x98,0xe9,0xea,0xe4,0xc9,0x14,0x8c,0xde,0xf4,0xe9,0xeb,0xaf,0xeb,0x9d,
0x97,0x10,0x59,0xc2,0x3,0x66,0xf8,0x33,0xf3,0xe7,0x78,0xb,0xbe,0x1b,0x36,0x28,
0x63,0xd1,0x4c,0x71,0x1f,0x33,0xe6,0xca,0x1e,0x87,0x61,0xa7,0xc3,0x8e,0x1f,0xd7,
0x3b,0x3d,0xf1,0xbf,0x49,0x1,0xc9,0x66,0x3c,0x57,0xa6,0x17,0xf5,0x9f,0x5c,0xbe,
0xbc,0xfa,0x8a,0xb2,0x0,0xd5,0xa7,0x4f,0xa7,0x57,0xb8,0x35,0x86,0xb5,0x69,0xa3,
0x77,0x5e,0x39,0x4e,0x4d,0xa4,0xa2,0x83,0xaa,0xe2,0x2e,0xe6,0xc2,0x35,0x25,0x5,
0xb7,0x68,0x3,0x3c,0x52,0x52,0x70,0x83,0x3f,0x47,0xe9,0x94,0x14,0x5c,0xc2,0x76,
0x34,0x7b,0xf0,0x0,0x95,0xa8,0x24,0x2f,0x4f,0x4d,0xe5,0xfe,0x88,0xc3,0xd,0xb3,
0x39,0xf3,0xfd,0x1d,0xb0,0xc,0x71,0xf7,0xee,0x61,0x15,0xde,0x86,0x6f,0xfe,0xfc,
0x99,0xbf,0x2f,0xcf,0x87,0xe8,0x78,0xbe,0x7c,0xd4,0x4,0x81,0x98,0xe7,0xe4,0xc4,
0x9b,0xd1,0x11,0xee,0xf9,0xf3,0xc3,0x93,0x86,0xe2,0x66,0xd1,0xa2,0x28,0xc1,0xad,
0x71,0xa7,0x68,0x51,0xaa,0x82,0x10,0x78,0x15,0x29,0xa2,0x77,0x33,0xe4,0x38,0x8f,
0x16,0x40,0xb2,0x9,0x2a,0x3b,0x2f,0x58,0x80,0x8a,0x26,0x57,0x75,0xe3,0xd8,0xb1,
0x49,0xa1,0xa4,0x9c,0x99,0x7f,0xfd,0xba,0xde,0xe9,0x89,0xff,0x26,0x5,0x44,0x67,
0x65,0x7c,0x58,0x2d,0xe3,0xf3,0xd2,0x4b,0xf,0x7e,0xb4,0x8c,0x76,0xe8,0x31,0x66,
0xc,0xae,0xa1,0x7,0x2d,0x8,0xb,0xa3,0x50,0x94,0x86,0xb3,0x83,0x83,0xde,0xf9,
0xe9,0xce,0x19,0x33,0x51,0xff,0xfa,0x75,0x9e,0x7,0x27,0x6e,0x70,0xe2,0x4,0x6a,
0xa3,0x2e,0xc5,0xc7,0xc4,0xd0,0x6e,0xfa,0x8d,0xbf,0xb8,0x70,0x41,0xbd,0xaf,0xb6,
0x80,0xe3,0xc5,0x8b,0x34,0x90,0x7c,0x51,0xe8,0xe2,0x45,0x6e,0x61,0x32,0x5a,0xfb,
0x25,0x24,0x24,0x2f,0x26,0xe5,0x6c,0xd8,0xb5,0x6b,0xfa,0x25,0xce,0xc,0x18,0xc,
0x5e,0x9b,0x1,0xbf,0x54,0x57,0x57,0x6b,0x5d,0xeb,0x24,0x8c,0xf0,0xf6,0xe6,0xdb,
0xfc,0x1b,0xe2,0xbc,0xbd,0x31,0x81,0x3e,0xc6,0xd,0x6f,0x6f,0xaa,0x85,0x40,0xea,
0xea,0xe3,0xc3,0x8d,0xf9,0x38,0x8e,0x57,0xaa,0x44,0x73,0x11,0x8f,0x84,0x4a,0x95,
0xb0,0xc,0xcd,0x90,0x5c,0xa0,0x80,0xde,0xcd,0xaf,0x37,0x9e,0x8f,0xe5,0xfc,0xf9,
0xad,0x5b,0xca,0x47,0x74,0xa,0xc5,0x26,0x4d,0x72,0x33,0x18,0x3f,0x75,0xe9,0xff,
0xf5,0xd7,0x87,0x8f,0x90,0x72,0xf8,0x88,0xc5,0xa2,0x77,0x7e,0x79,0x9d,0x14,0x10,
0x9d,0x78,0xd6,0x33,0x87,0xfb,0xc5,0x5,0x7,0x73,0x59,0xdc,0xc3,0xe1,0x69,0xd3,
0xb0,0x15,0xa3,0x69,0xb2,0xab,0xab,0xde,0x79,0xd9,0x4b,0xe6,0x4a,0xe8,0xef,0xb1,
0x99,0xca,0xef,0xdb,0xa7,0x44,0xd0,0x78,0x2c,0xdc,0xbb,0x57,0xad,0x4a,0x5f,0xa8,
0xf9,0xe,0x1d,0x32,0xb6,0x36,0xef,0xc2,0x2f,0x27,0x4f,0x5e,0x1a,0xe9,0x7c,0x26,
0x2e,0x32,0x31,0x51,0xef,0x7c,0xed,0xd8,0x32,0xc,0x10,0xb9,0xce,0x49,0x1f,0x55,
0xfe,0x7b,0x1f,0x1f,0x83,0x81,0x7c,0x8c,0xf7,0xaa,0x54,0xc1,0x22,0x9a,0xcd,0x3e,
0x35,0x6b,0xd2,0x30,0x8c,0xa1,0x5,0xf5,0xeb,0x63,0x38,0x4a,0x72,0xff,0x5a,0xb5,
0x60,0x41,0x2d,0xea,0xeb,0xec,0xac,0x77,0xd6,0x76,0x93,0x46,0xcd,0xf1,0x56,0x5c,
0x1c,0x8d,0xa7,0xc3,0x6a,0x52,0xdf,0xbe,0x57,0x6,0x19,0xef,0xc4,0x45,0xfe,0xfe,
0xbb,0xde,0x69,0xe5,0x55,0x52,0x40,0xec,0xa4,0x44,0xd3,0xb4,0x6,0x15,0xe,0xf8,
0xf8,0x18,0x4c,0x4a,0x1d,0xc3,0xaf,0xf3,0xe6,0xe1,0x18,0xa6,0xe0,0x87,0x66,0xcd,
0xf4,0xce,0x4b,0x33,0xb6,0xcd,0xfe,0x8e,0x50,0x32,0x66,0xff,0xf6,0x1b,0xe,0x60,
0x4,0xdd,0xdd,0xbc,0x39,0x83,0xf9,0x3a,0xea,0xee,0xdc,0x79,0xb5,0x9a,0x29,0x35,
0xa6,0x63,0x4c,0xcc,0xc3,0xbd,0x98,0x54,0x55,0xef,0x74,0x73,0x9a,0x1a,0xd5,0x59,
0xad,0x51,0xdd,0x64,0xba,0x1a,0x68,0x6d,0xfc,0x60,0xd4,0xcb,0x2f,0xab,0x73,0x11,
0xca,0x5f,0x34,0x6c,0xc8,0x5f,0xf1,0x5d,0x84,0xb7,0x68,0x1,0xa0,0x29,0xbf,0x5c,
0xbf,0x7e,0xae,0x5d,0x18,0xfa,0x68,0xec,0x4,0x5,0xc8,0xb,0x3f,0x47,0x46,0x1a,
0xcf,0x19,0x53,0x8c,0xbe,0xc3,0x87,0x27,0x24,0x10,0x9d,0x3c,0x79,0xf3,0xa6,0xde,
0xe9,0xe5,0x15,0x52,0x40,0x34,0xf3,0xf0,0x11,0x86,0x67,0x55,0xeb,0x28,0xbf,0x7d,
0x61,0x61,0xec,0xc2,0x2d,0x51,0x76,0xf2,0x64,0x5c,0x44,0x5d,0xa,0x74,0x71,0xd1,
0x3b,0xbb,0x2c,0x73,0x97,0xc6,0x72,0xe4,0xa5,0x4b,0x38,0xcc,0xfe,0xd4,0x6b,0xd5,
0x2a,0x5c,0x56,0xc2,0xe9,0x8f,0x9f,0x7f,0x76,0x3e,0x65,0x38,0x61,0x9e,0xb6,0x7b,
0xf7,0xd9,0x30,0x52,0xce,0x86,0xa5,0xa7,0xeb,0x9d,0x66,0x5e,0x53,0x74,0x1d,0xab,
0xbe,0x21,0x5,0xa,0x38,0xcc,0x35,0xaf,0x56,0xd6,0x37,0x69,0x82,0xa5,0xca,0x8,
0x1e,0xd0,0xa6,0xd,0x2e,0xf3,0x18,0x4,0xb7,0x6f,0x4f,0x6f,0xa0,0x2b,0xbd,0x51,
0xb8,0xb0,0xde,0x79,0x66,0x99,0x71,0x18,0x8d,0x98,0xe4,0x64,0x3a,0xcd,0x1f,0x50,
0xd4,0xc0,0x81,0x57,0x66,0x39,0x7a,0x44,0x7,0xad,0x5c,0xa9,0x77,0x5a,0xb9,0x9d,
0x14,0x90,0x2c,0x56,0x82,0x1f,0xb0,0x2f,0x7b,0x7b,0x1b,0xbc,0xd,0x7b,0x95,0x43,
0x4b,0x97,0xc2,0x82,0x5a,0x8,0xae,0x57,0x4f,0xef,0xbc,0x5e,0x14,0x8f,0xc7,0x30,
0x98,0x92,0x92,0x28,0x1,0x4d,0x79,0xe0,0x8a,0x15,0x98,0x4e,0xa9,0x3c,0x24,0x2a,
0x2a,0x31,0xcd,0xd8,0x39,0xee,0xde,0xde,0xbd,0xf,0x7b,0x12,0xcc,0x7a,0xe7,0x29,
0xfe,0xb7,0xcc,0x73,0x58,0x96,0x66,0xcc,0x55,0x5b,0x35,0x6d,0xaa,0x96,0xe1,0xa5,
0x14,0x12,0x14,0x44,0x5e,0x3c,0x2,0xae,0xed,0xdb,0x23,0x1c,0xad,0xb0,0xb5,0x60,
0x41,0xbd,0xf3,0x7c,0x61,0xa9,0xd4,0x1f,0x75,0x97,0x2d,0x33,0xdd,0x32,0xce,0x77,
0x58,0xd8,0xb7,0x6f,0x3c,0x11,0x1d,0xa7,0x5b,0xb7,0xf4,0x4e,0x2b,0xb7,0x91,0x2,
0x92,0x45,0x3c,0x3d,0xd2,0xd3,0x2,0xfc,0x3b,0x75,0x52,0x37,0xd2,0xf,0xea,0xc6,
0x88,0x88,0x1c,0xfb,0xd,0xcf,0x36,0x7b,0xe9,0x67,0xcc,0xc1,0xec,0x6d,0xdb,0xc8,
0x8d,0x87,0x92,0xdb,0xfc,0xf9,0x6e,0x6e,0xe,0xe,0xf9,0xf2,0xad,0x5d,0x2b,0x83,
0x97,0xb9,0x53,0x69,0x66,0x2e,0xcd,0x4e,0x4e,0x56,0x4f,0x73,0xba,0x4b,0x40,0x9b,
0x36,0x9c,0x4c,0xd3,0x39,0xb9,0x77,0x6f,0x54,0xc7,0x20,0x34,0x6a,0xdc,0x38,0xf3,
0x84,0xc6,0x9c,0xa6,0x30,0x8d,0xe4,0x43,0x9,0x9,0x6a,0x6d,0x8c,0xc5,0xaa,0xe0,
0xe0,0xe4,0xc5,0xa6,0x22,0xb1,0xc1,0x3b,0x76,0xe8,0x9d,0x56,0x6e,0x91,0xf3,0xfe,
0x41,0x64,0x13,0xb6,0xd9,0x53,0x69,0x37,0xac,0xa1,0x8e,0xaf,0xcf,0x9b,0x7,0x17,
0x9e,0x8d,0xbd,0x6f,0xbf,0xad,0x77,0x5e,0xcf,0xcc,0x17,0xe1,0xe8,0x7b,0xed,0x1a,
0x4f,0xc3,0x14,0x78,0xcc,0x9d,0xab,0x2c,0xb1,0x1e,0xb3,0x24,0x2e,0x58,0x70,0x65,
0x96,0x73,0x85,0xb3,0x61,0x97,0x2f,0xeb,0x9d,0x9e,0xd0,0x57,0x89,0x63,0x66,0x67,
0xff,0x95,0x15,0x2b,0x2a,0xa9,0x38,0x8c,0x19,0xfd,0xfa,0xd1,0xbb,0xb8,0xc1,0x1f,
0x77,0xef,0x9e,0xe3,0x6,0xef,0x6d,0xd3,0x83,0xf,0xa3,0x31,0x17,0xfb,0xec,0xb3,
0xa4,0xff,0x98,0x8e,0x97,0x68,0x3a,0x61,0x2,0x40,0xca,0xe,0xb2,0x5a,0xf5,0x4e,
0x2f,0xa7,0x92,0x2,0xf2,0x8c,0x3c,0x1a,0xa5,0x87,0xf9,0x86,0xf8,0xfa,0xa2,0x90,
0xb2,0x9f,0xde,0x58,0xb3,0x6,0x7,0x78,0x37,0x8d,0xf5,0xf7,0xd7,0x3b,0xaf,0xa7,
0xc5,0xe3,0xe9,0x3d,0xfe,0xea,0xdc,0x39,0xec,0x81,0xb,0x1d,0x98,0x35,0xb,0xf5,
0x8c,0x8b,0x9c,0xd7,0x2e,0x58,0x90,0x14,0x4a,0x74,0xf8,0xf0,0xfd,0xfb,0x7a,0xe7,
0x27,0xb2,0xb7,0xcc,0x69,0xe7,0xd,0xac,0x3d,0x1d,0x43,0xba,0x77,0xc7,0x30,0x94,
0x86,0xd3,0xf0,0xe1,0xd4,0x82,0x3f,0x44,0xa4,0xa7,0xa7,0xde,0xf9,0x3d,0xb5,0x37,
0xf0,0x1b,0xff,0xbe,0x6b,0x97,0xe5,0xb6,0xa9,0x85,0xb2,0x33,0x28,0xe8,0xda,0xa,
0xa2,0xe8,0xa0,0xe4,0x64,0xbd,0xd3,0xca,0x69,0xa4,0x80,0x3c,0x25,0x8f,0xff,0x98,
0x9d,0xfd,0x57,0x6,0x5,0x21,0x1c,0x6b,0xd1,0x77,0xd1,0x22,0xec,0x46,0x43,0x14,
0xfb,0xdb,0x2,0xb3,0xec,0x6a,0x2e,0x5,0xa0,0xc4,0xa9,0x53,0xaa,0x45,0x5d,0xc3,
0xb1,0x13,0x26,0x24,0x77,0x74,0xa8,0x14,0x9b,0xbc,0x66,0x8d,0xcc,0x7e,0x12,0x59,
0xa1,0xdc,0x4c,0x56,0xcb,0xcd,0x74,0x74,0xbc,0xff,0xbb,0xf5,0x55,0xa3,0x47,0xcf,
0x9e,0xdc,0xb,0xed,0x69,0xed,0xe8,0xd1,0xd4,0x93,0x87,0xe1,0xb0,0x87,0x87,0xde,
0xf9,0x3d,0x9,0x47,0xd3,0x24,0x1e,0x7c,0xf9,0xb2,0x92,0x81,0x3f,0xe8,0x8d,0x8e,
0x1d,0xaf,0x14,0x35,0x2d,0x8f,0x29,0x75,0xe0,0x80,0xde,0x79,0xe5,0x14,0x52,0x40,
0x1e,0xeb,0xe1,0x2c,0x2a,0xf7,0xfd,0x96,0xf,0xfd,0xa6,0x7c,0xf6,0x19,0xd,0xc0,
0x18,0x3a,0x32,0x74,0x68,0xb6,0x7f,0x16,0xfc,0x68,0x9e,0x3c,0x1f,0xe7,0xc,0x3e,
0x30,0x71,0x62,0x52,0x29,0xd3,0x8e,0xd8,0xad,0xcb,0x97,0x4b,0xc1,0x10,0xf6,0x60,
0x3b,0xea,0x98,0xb7,0x59,0x47,0xe5,0xf,0xea,0xd3,0x87,0xab,0x72,0x3e,0x5c,0x18,
0x35,0x2a,0xbb,0xaf,0x73,0xe2,0x9f,0xf1,0x7,0x7c,0xd2,0xd3,0xf1,0x39,0xdc,0xb8,
0xf1,0xc0,0x81,0x49,0xcb,0x1c,0x8a,0xc6,0xe,0x5d,0xb0,0x40,0xef,0xbc,0xb2,0xbb,
0xec,0xfb,0x41,0xa8,0x93,0x12,0x4d,0x99,0xab,0x4c,0x73,0x71,0x31,0xec,0xb2,0x2e,
0x37,0xdf,0xfb,0xe1,0x7,0x14,0xe1,0xb7,0x28,0xaa,0x6d,0x5b,0xbd,0xf3,0x7a,0xac,
0x47,0x63,0x18,0x74,0x82,0xc2,0xd1,0x6c,0xdc,0xb8,0x2b,0x29,0xc6,0x94,0x18,0xbf,
0x5,0xb,0xe4,0xac,0x6b,0x91,0x1d,0xd8,0xfe,0x3f,0x29,0x65,0x2c,0x65,0x2d,0xe3,
0x46,0x8d,0xa2,0x45,0x58,0x86,0xb9,0x43,0x87,0x66,0xf7,0xa3,0x90,0x79,0x35,0xc6,
0x71,0x97,0xf0,0xf0,0xa4,0x57,0x4d,0x9f,0xc6,0x8e,0x19,0x39,0x52,0xbe,0x80,0xfd,
0xff,0xa4,0x80,0x3c,0x52,0xbc,0x13,0x73,0x40,0x94,0x9b,0x9b,0xa9,0x82,0xe5,0x1e,
0xdf,0x5d,0xbf,0x1e,0x8b,0xe1,0x88,0xf0,0x9a,0x35,0xf5,0xce,0xeb,0x9f,0x78,0x3c,
0x12,0xf9,0x90,0xc5,0x42,0x95,0xe0,0x41,0x17,0x16,0x2f,0xe6,0x53,0x26,0x63,0xc6,
0xcc,0x8f,0x3e,0x92,0xbd,0x82,0x44,0x4e,0xe0,0x39,0xf0,0xfe,0x99,0x72,0x33,0x4b,
0x96,0xe4,0xc1,0xa6,0x50,0xd3,0xe4,0x4f,0x3e,0x41,0x67,0x5e,0x8f,0x6,0x5d,0xbb,
0x66,0xdb,0x9e,0xfd,0xfb,0xb4,0x0,0x4e,0x6b,0xd6,0xb0,0x97,0xb1,0x9f,0xb3,0xd2,
0xb5,0xab,0x8c,0x15,0xfe,0xb7,0xec,0xf7,0x17,0x66,0x67,0xb6,0x59,0x26,0x86,0xf,
0x29,0x4,0xa3,0x36,0x6c,0xc8,0xb6,0x27,0xf5,0x3d,0x1a,0xf4,0xe3,0x5a,0x1c,0xaf,
0x8e,0xeb,0xdd,0x3b,0x29,0xd4,0xb1,0xcf,0x99,0xf9,0xb1,0xb1,0x7a,0xa7,0x25,0xc4,
0x8b,0xf0,0x64,0xb,0xfb,0x72,0xc3,0x86,0x6a,0x2a,0x9a,0x2b,0xad,0x22,0x22,0xa8,
0x2,0xff,0x8c,0xb,0x15,0x2a,0xe8,0x9d,0xd7,0x3f,0xf1,0x37,0xb8,0x0,0xda,0xbf,
0x9f,0x7f,0x34,0x95,0xb7,0xf4,0x69,0xdb,0x56,0xff,0xbd,0xd6,0xb2,0x87,0x3c,0x5b,
0x40,0xdc,0x23,0xcc,0x17,0xfd,0x52,0xab,0x57,0xa7,0x69,0x58,0x49,0x83,0x7f,0xf9,
0x5,0xf7,0x11,0x86,0xdd,0xc5,0x8a,0xe9,0x9d,0x57,0xa6,0x61,0xd8,0x80,0x26,0x77,
0xee,0xf0,0x31,0x5a,0xf,0xd7,0x71,0xe3,0x92,0xbe,0x35,0x2e,0x8a,0x19,0x3b,0x6b,
0x96,0x74,0xa5,0x45,0x6e,0x64,0x5b,0x87,0x62,0x86,0x19,0xce,0x18,0x35,0xa,0x3f,
0xd3,0x59,0x78,0x7f,0xf8,0x61,0xb6,0xdb,0x54,0xd4,0xb6,0x17,0x57,0x17,0x4b,0x84,
0xa5,0x44,0x93,0x26,0x79,0x7d,0xba,0xbb,0xa2,0x77,0x2,0xf6,0xe6,0xe1,0x64,0x59,
0xe6,0x9b,0xbf,0x5e,0x3d,0x0,0x7,0x68,0xe9,0xb6,0x6d,0xd9,0xae,0x70,0x8c,0xc6,
0x0,0xee,0xb3,0x79,0xb3,0x72,0xc9,0x7a,0xca,0x3a,0x3e,0x20,0x20,0xe9,0x5b,0x53,
0x64,0xcc,0xd8,0xaf,0xbe,0x92,0xc2,0x21,0x72,0xb3,0x78,0x22,0x8a,0xa7,0xb4,0xb4,
0x24,0x72,0xa4,0x18,0x9a,0x30,0x41,0xf9,0xc,0xeb,0x94,0xa1,0xb5,0x6b,0xdb,0xce,
0x5c,0xd7,0x3b,0xbf,0x4c,0x4e,0xfc,0xb,0x56,0xfb,0xfa,0xf2,0x2b,0xa6,0x49,0x26,
0x9f,0x1d,0x3b,0x6c,0x7b,0xdc,0xe9,0x9d,0x96,0x5e,0xf2,0x4c,0xf,0xc4,0xed,0x7d,
0xcb,0xd,0xbf,0x6f,0x3,0x3,0x95,0xc2,0xbc,0x97,0x16,0xaf,0x5f,0x9f,0x5d,0xb6,
0xcb,0xe6,0xa3,0x88,0x46,0xab,0xb4,0x34,0x24,0x51,0x3c,0xf7,0x9f,0x30,0x21,0xa9,
0x9a,0xb1,0x6d,0xac,0xcf,0xb4,0x69,0x52,0x30,0x84,0xf8,0xdb,0x34,0xe1,0xfd,0x96,
0x2e,0xa6,0x98,0x89,0x13,0x71,0xf,0x73,0x50,0x74,0xf8,0x70,0x1c,0x82,0xb,0x56,
0x29,0xba,0x7f,0x1,0xb6,0x6d,0xf1,0xa3,0xbe,0x82,0x85,0x18,0xd7,0xb4,0xe9,0xd5,
0x6a,0xe,0xf7,0x63,0x3a,0x9e,0x3e,0xad,0x77,0x5e,0xf6,0x92,0xeb,0xb,0x88,0xc7,
0x36,0x6b,0xa5,0x0,0xc7,0xc6,0x8d,0xb9,0xa2,0xba,0x94,0x7,0xfe,0xfc,0x33,0xbd,
0x8c,0x0,0x6c,0x70,0x72,0xd2,0x3b,0x2f,0xdb,0x37,0x2b,0x75,0x3a,0x17,0xe7,0xe2,
0x5d,0xba,0x5c,0xdd,0xe2,0x70,0x32,0xb6,0xd9,0xa9,0x53,0x7a,0xe7,0x25,0x44,0x76,
0xe6,0x9e,0x66,0x6d,0xe9,0x77,0xb4,0x69,0x53,0x2c,0x51,0xcb,0x53,0xb7,0x25,0x4b,
0x68,0x22,0xc2,0x61,0x71,0x77,0xd7,0x3b,0x2f,0xdb,0x66,0x8e,0x78,0x97,0x8f,0x70,
0xff,0xc0,0xc0,0xc4,0x82,0x8e,0xdb,0x62,0x67,0x9f,0x39,0xa3,0x77,0x5a,0x5a,0xd3,
0xbd,0x82,0x6b,0xc5,0xe3,0x8e,0x65,0xa2,0x5f,0xff,0x3a,0x75,0x30,0x4f,0xfd,0x82,
0xb,0xae,0x5d,0x9b,0x5d,0xa,0x7,0x6,0x51,0x10,0xf,0xf8,0xfe,0x7b,0xc4,0x1b,
0x93,0x9c,0xbf,0xa8,0x53,0x47,0xa,0x87,0x10,0x4f,0x2f,0xc9,0xc9,0xb8,0x29,0xf6,
0xe5,0x2d,0x5b,0x78,0xbf,0xe9,0x4b,0x4b,0xcf,0xaa,0x55,0xf9,0x5b,0xcc,0xe7,0xf,
0xb7,0x6d,0xd3,0x3b,0x2f,0x4c,0xc2,0x27,0xf0,0x77,0x73,0x63,0x55,0xa9,0x8b,0x2a,
0xbf,0xfd,0x96,0x57,0x1e,0x6d,0xe5,0xba,0x1e,0x88,0x47,0x94,0x79,0x79,0x40,0x54,
0xb5,0x6a,0x5c,0x1,0xa9,0x6a,0xad,0x6d,0xdb,0x74,0xdf,0xd4,0xb0,0x1f,0xae,0xf1,
0xb7,0x56,0x2b,0xb7,0xa6,0x43,0x28,0x36,0x66,0x4c,0x52,0x35,0x53,0xbb,0x58,0x9f,
0xa9,0x53,0xf5,0x6e,0x27,0x21,0x72,0x7,0x56,0x3,0xd9,0x68,0xf4,0x78,0xd7,0xd2,
0xe5,0xcf,0x7e,0x53,0xa6,0x60,0x3b,0x96,0x60,0xfb,0xc8,0x91,0xba,0x67,0xf5,0x68,
0xcb,0x20,0xe3,0x2d,0xcb,0x51,0x5e,0xf6,0xda,0x6b,0xb9,0xf5,0x60,0xb4,0x5c,0x53,
0x40,0x32,0xa7,0xe3,0xbe,0x8a,0xcf,0x10,0xbe,0x63,0x7,0x8a,0xa0,0xf,0x6e,0x17,
0x2d,0xaa,0x5b,0x42,0x8f,0x16,0xf8,0x61,0x1f,0x95,0x51,0x47,0xbf,0xf9,0x66,0x62,
0x9a,0xe9,0xed,0xb8,0x7b,0x7b,0xf6,0xe8,0xdd,0x4e,0x42,0xe4,0x66,0xee,0x6f,0x9a,
0x83,0x3,0xaa,0x77,0xe9,0x82,0xb1,0x18,0xc9,0x6e,0x8b,0x16,0x51,0x6b,0x94,0xc7,
0x5,0x47,0x47,0xdd,0x12,0xa,0xa2,0xda,0xbc,0x3e,0x3a,0x1a,0x93,0x8c,0x47,0x31,
0xe3,0xb5,0xd7,0x12,0xb,0x12,0xc5,0xce,0x4e,0x49,0xd1,0xbb,0x9d,0xb2,0x4a,0x8e,
0x2f,0x20,0x99,0xb,0x0,0xef,0x59,0x7,0xf2,0xe8,0xfd,0xfb,0xf5,0x5e,0xc7,0xc1,
0x8b,0xe8,0x6d,0xde,0x7e,0xf6,0x2c,0xd5,0x53,0x6f,0x61,0x52,0xab,0x56,0x79,0xe5,
0x59,0xa8,0x10,0xd9,0x49,0xe6,0x23,0xec,0x76,0x6c,0x22,0xdf,0x75,0xeb,0x10,0x87,
0x61,0x98,0x5b,0xbc,0xb8,0x6e,0x9,0xf9,0x62,0x37,0x4f,0xdd,0xbd,0xdb,0xb4,0xcd,
0xd4,0xe8,0x41,0x9b,0xa6,0x4d,0x6d,0xb3,0xce,0xf4,0x6e,0xa7,0x17,0x95,0x63,0xc7,
0x40,0x6c,0x7b,0xee,0x18,0x7b,0x59,0xce,0xf0,0x84,0x35,0x6b,0x74,0x2f,0x1c,0x3b,
0x10,0x87,0xda,0xfb,0xf6,0x71,0x94,0x71,0xa5,0x75,0x79,0xdd,0xba,0x52,0x38,0x84,
0xd0,0x4f,0x62,0x41,0xd3,0xf8,0xd8,0xd9,0xfb,0xf6,0x19,0xa0,0xfa,0x29,0xed,0xeb,
0xd4,0xe1,0x33,0xd4,0x1a,0x3e,0x3a,0xfe,0x7f,0x8c,0x43,0x7d,0x1a,0x59,0xbf,0xbe,
0x79,0x87,0x75,0x58,0xbe,0xa4,0x25,0x4b,0x1e,0xee,0xb5,0xa7,0xff,0x2c,0xb2,0x17,
0x95,0x3,0x6f,0xe0,0xe1,0x26,0x87,0xea,0x5c,0xeb,0xf2,0xfc,0x5,0x97,0x2d,0xa3,
0xee,0xf0,0x1,0xbf,0xfa,0xaa,0x6e,0xe9,0xd4,0xa5,0x25,0x7c,0x68,0xed,0x5a,0x97,
0x4d,0xa6,0x8a,0x96,0x1a,0x8d,0x1a,0xc9,0xa,0x55,0x21,0xb2,0x8f,0x4b,0xbf,0x3b,
0xbd,0x75,0xda,0xeb,0xdc,0x39,0xf5,0x4d,0xe3,0x66,0x53,0xa3,0x6,0xd,0xf8,0x3c,
0x15,0xe1,0x1f,0x8e,0x1d,0xd3,0x2b,0x1f,0x7a,0x97,0x3f,0xa5,0xc6,0x41,0x41,0x1e,
0xdb,0x2c,0x4d,0x2,0x1c,0xa7,0x4c,0xd1,0xbb,0x7d,0x5e,0xf8,0x7e,0xf4,0x4e,0xe0,
0x59,0xb9,0xef,0x37,0x8f,0xf2,0x9b,0x32,0x6d,0x1a,0xbd,0x85,0x49,0xf4,0xfd,0xb0,
0x61,0xba,0x25,0x52,0x8a,0x7a,0x62,0xf4,0x8f,0x3f,0x26,0x1e,0x30,0x7e,0xe3,0xda,
0x35,0x38,0x58,0xe,0xa6,0x11,0x22,0xfb,0xf3,0xf2,0x62,0xae,0x5c,0xb9,0x70,0x61,
0xcb,0x42,0xcb,0x19,0x6b,0xc6,0xc6,0x8d,0x7a,0x7f,0x1,0x55,0x57,0x62,0x32,0x7c,
0x82,0x83,0x93,0xeb,0x3a,0x4c,0x8e,0xd9,0xf8,0xdd,0x77,0x7a,0xb7,0xcf,0xb3,0xca,
0x31,0x3d,0x10,0xf7,0x16,0xe9,0x2b,0xfd,0x8b,0xbf,0xf9,0x66,0xe6,0xb6,0xea,0x7a,
0x99,0x47,0x6d,0x79,0xe5,0xd2,0xa5,0x52,0x38,0x84,0xc8,0x79,0x12,0x12,0x88,0x4e,
0x9e,0xbc,0x79,0x53,0x9d,0x66,0xaa,0x60,0x7a,0xbf,0x49,0x13,0x24,0x63,0x1a,0x92,
0xb7,0x6e,0xd5,0x2b,0x1f,0x2a,0x8b,0xe,0x8,0x98,0x3f,0xdf,0xdd,0xdd,0x6c,0xf6,
0xf3,0xab,0x51,0x43,0xef,0xf6,0x79,0xe6,0xfc,0xf5,0x4e,0xe0,0x49,0x32,0x67,0x57,
0x7d,0x82,0xb5,0xe8,0xbb,0x7f,0xbf,0x6e,0x7,0x39,0xf9,0x92,0x1b,0xce,0x2d,0x5a,
0x94,0xf8,0xbb,0x31,0x25,0xc6,0xdc,0xab,0xd7,0xc3,0x95,0xe2,0xcc,0x7a,0xb7,0x8f,
0x10,0xe2,0xf9,0xb9,0x47,0x30,0xd7,0xa8,0xe1,0xec,0x4c,0x85,0x2d,0x51,0xf7,0xcb,
0x6c,0xdc,0x88,0xc1,0x78,0x13,0xa7,0x2,0x3,0xed,0x9e,0xc8,0xe7,0x14,0x82,0xcf,
0xcf,0x9f,0x57,0xe,0x1b,0xbf,0xa3,0x7,0xb5,0x6a,0x5d,0x9e,0x41,0x14,0x1d,0x74,
0xe3,0x86,0xde,0xed,0xf3,0x24,0xd9,0xb6,0x7,0x62,0x3b,0x3a,0x53,0x29,0x47,0xf5,
0x11,0xb9,0x7a,0xb5,0x6e,0x85,0xc3,0xf6,0xa8,0xea,0x77,0x63,0x4a,0x8c,0x39,0x34,
0x54,0xa,0x87,0x10,0xb9,0x87,0x6d,0x7b,0xf6,0x74,0x47,0x53,0x27,0xb5,0x40,0x9b,
0x36,0xf,0x8f,0x4b,0xd0,0xe1,0x44,0xc2,0x11,0x1c,0x89,0x11,0x65,0xca,0xa8,0x2d,
0x2c,0xdd,0x54,0xef,0xa5,0x4b,0x73,0xca,0x20,0x7b,0xb6,0x4d,0x30,0xcd,0xd5,0xda,
0xdd,0x71,0xd2,0xdc,0xb9,0xba,0x6d,0xef,0x5c,0x8c,0x7e,0xe4,0xaf,0xd6,0xad,0x73,
0xb7,0x18,0xbf,0x71,0x9e,0xd1,0xad,0x9b,0x1c,0xd0,0x24,0x44,0xee,0x95,0xd2,0x8e,
0x94,0xb8,0xc8,0xbb,0x77,0xf3,0x7d,0x66,0xf2,0x32,0x57,0x6a,0xde,0x1c,0xa5,0xc9,
0x1,0xf9,0x8f,0x1c,0xb1,0x7b,0x22,0xef,0x63,0x21,0x75,0x6b,0xd9,0xd2,0xfd,0x98,
0xf5,0x27,0xbf,0xb,0xc3,0x87,0xeb,0xdd,0x2e,0x4f,0x92,0xed,0xa,0x88,0xbb,0x8b,
0x39,0xcc,0xff,0xb7,0xae,0x5d,0x71,0x89,0x17,0xe2,0x93,0x77,0xde,0xb1,0x7b,0x2,
0x3,0xb1,0x11,0xa9,0x3b,0x77,0x3a,0xf7,0x34,0xbe,0x67,0x8d,0xed,0xdc,0xf9,0xf0,
0x11,0x52,0xe,0x1f,0xb1,0x58,0xf4,0x6e,0x17,0x21,0x84,0xf6,0xce,0x5f,0x20,0xe5,
0xfc,0x85,0xdb,0xb7,0x2d,0x25,0x8d,0x4c,0xc3,0x5b,0xb5,0x42,0x1b,0x1a,0x88,0x80,
0x8b,0x17,0xed,0x9e,0xc8,0x25,0xe,0xa0,0x86,0x93,0x26,0x65,0xf7,0xb1,0x91,0x6c,
0x53,0x40,0x3c,0x3e,0x7a,0x50,0xb1,0x52,0xd9,0x52,0xa5,0xb0,0x7,0xd5,0xb8,0xcc,
0xcc,0x99,0xf6,0x8e,0x6f,0xdb,0x7a,0x40,0x3d,0x63,0x6a,0x6b,0x19,0xd6,0xb1,0xe3,
0xd9,0x30,0x52,0xce,0x86,0xa5,0xa7,0xeb,0xdd,0x2e,0x42,0x8,0xfb,0xbb,0xb6,0x82,
0x28,0x3a,0x28,0x39,0x59,0x9d,0xa9,0xbe,0xa3,0xbc,0xff,0xc6,0x1b,0xbc,0x11,0x4b,
0x79,0xe3,0xcd,0x9b,0xf6,0x8a,0x9f,0x79,0xe,0x4a,0x24,0xbd,0x8d,0x1d,0xcb,0x96,
0x15,0xef,0xc4,0x6a,0x40,0x94,0xe,0x8f,0xf0,0x9f,0x94,0xa7,0xde,0x9,0xd8,0xd6,
0x75,0x78,0x34,0xb2,0xfc,0xee,0xf7,0xd3,0xf6,0xed,0xb6,0x5,0x37,0x76,0xb,0xff,
0x68,0xcb,0x11,0xdb,0x82,0x23,0xdb,0xbc,0x71,0xbd,0x5b,0x45,0x8,0x91,0x7d,0x78,
0x56,0xb0,0x7a,0x5,0x44,0xbd,0xfe,0xba,0x3a,0x5d,0xfd,0x8d,0x87,0x6f,0xda,0x64,
0xf7,0x83,0xae,0x56,0x0,0x58,0x31,0x7f,0x7e,0x62,0x3d,0x7,0x87,0x98,0x4a,0xa1,
0xa1,0x7a,0xb7,0x87,0x8d,0xee,0x3d,0x10,0xcf,0xaa,0xd6,0x51,0x7e,0xfb,0xc2,0xc2,
0xec,0x5d,0x38,0x6c,0x67,0x8b,0xf3,0xdb,0x54,0x93,0xdc,0xde,0x7a,0x4b,0xa,0x87,
0x10,0xe2,0x71,0xae,0x9c,0x31,0x26,0x44,0x7,0x6d,0xdb,0x86,0xef,0x51,0x84,0xc3,
0x6,0xc,0xb0,0x7b,0x2,0x83,0x60,0xc6,0xb8,0x5e,0xbd,0x3c,0xde,0xb5,0xd6,0xf3,
0xef,0xdb,0xa4,0x89,0xde,0xed,0x61,0xa3,0x5b,0x1,0x71,0xdb,0xfb,0x60,0xab,0xff,
0x1b,0xa5,0x4b,0xb3,0x2f,0x37,0xa6,0xb6,0x93,0x26,0xd9,0x3b,0x3e,0x6d,0xa6,0x20,
0x6c,0x1a,0x32,0x24,0x29,0xd4,0xd4,0x2c,0x3a,0x68,0xf7,0x6e,0xbd,0xda,0x41,0x8,
0x91,0x73,0x24,0x2d,0x73,0x28,0x1a,0x3b,0x74,0xc1,0x2,0xbc,0x45,0x85,0xe0,0xb3,
0x70,0xa1,0xdd,0x2,0x27,0xc2,0x1,0x31,0x44,0x28,0xc0,0x95,0xf0,0xe7,0x82,0x5,
0x25,0x9a,0x32,0x57,0x99,0xe6,0xe2,0xa2,0x77,0x7b,0xe8,0x56,0x40,0x94,0xe5,0x86,
0x9f,0x30,0x34,0x22,0xc2,0xee,0xd3,0x73,0x1f,0x9d,0xc7,0x91,0xb8,0xc6,0xf4,0x9f,
0xd8,0x8e,0xb3,0x67,0xeb,0x75,0xff,0x42,0x88,0x9c,0xcb,0xb9,0x82,0xf1,0x9e,0xa5,
0xc5,0x80,0x1,0x98,0x8c,0xbb,0xdc,0xf3,0xe0,0x41,0xbb,0x5,0x5e,0xcf,0xb3,0x10,
0xed,0xed,0xad,0xac,0xb7,0xc,0x32,0x37,0x19,0x3f,0x5e,0xef,0x76,0xb0,0x7b,0x1,
0xf1,0xac,0x67,0xe,0xf7,0x8b,0xb,0xe,0xc6,0xa,0x84,0x63,0x40,0xf3,0xe6,0xf6,
0x8a,0x6b,0x3b,0x1,0x50,0x49,0x36,0xae,0xb9,0x77,0xb6,0x57,0x2f,0x7b,0xdf,0xb7,
0x10,0x22,0xf7,0xb0,0x4d,0xb2,0x61,0x6b,0xc6,0x54,0xa5,0x54,0xc7,0x8e,0x7c,0x2,
0x91,0x48,0xb0,0xdf,0xc2,0x3f,0xa,0xc7,0x48,0x58,0x87,0xc,0xd1,0x7b,0x96,0x96,
0xdd,0xa,0x48,0xd1,0x75,0xac,0xfa,0x86,0x14,0x28,0xc0,0xef,0x21,0x99,0x7c,0xed,
0x77,0xa0,0x12,0xff,0x8c,0x3f,0xe0,0x93,0x9e,0xae,0x78,0x72,0x50,0x46,0xbb,0xf7,
0xde,0xbb,0x3c,0x83,0xe8,0xf2,0x8c,0x7,0xf,0xec,0x15,0x5f,0x8,0x91,0x7b,0x25,
0x85,0xe6,0xfb,0x3c,0x3a,0x28,0x21,0x1,0x5d,0xb9,0x18,0x9c,0x7b,0xf6,0xb4,0x5b,
0xe0,0x39,0x28,0x4e,0xc1,0x46,0x23,0x26,0x20,0x11,0x87,0x67,0xcf,0x7e,0x38,0x19,
0x89,0xec,0x3e,0x29,0xca,0x6e,0x5,0xc4,0x21,0xd9,0x32,0xc5,0xb0,0x72,0xfc,0x78,
0xdb,0xd1,0x8f,0x76,0xbb,0xc3,0x83,0x34,0x9,0x11,0x23,0x46,0x5c,0xa9,0xec,0x30,
0xf3,0x4c,0xfe,0x13,0x27,0xec,0x16,0x57,0x8,0x91,0x67,0x24,0x6d,0x76,0xec,0x18,
0x73,0x6d,0xcd,0x1a,0x58,0xc9,0x9b,0xe7,0x47,0x46,0xda,0x2b,0x2e,0x4d,0x84,0x7,
0xd5,0x7c,0xe5,0x15,0x77,0x17,0xcb,0x20,0xff,0xdf,0xba,0x74,0xb1,0xf7,0x7d,0x6b,
0x5e,0x40,0x3c,0x57,0xa6,0x17,0xf5,0x9f,0x5c,0xbe,0x3c,0x3c,0xf0,0xe,0x17,0x1e,
0x38,0xd0,0x6e,0x77,0x36,0x1a,0x3,0xb8,0xcf,0xe6,0xcd,0x49,0xa1,0xc6,0x65,0x31,
0xa5,0x66,0xcd,0xb2,0x5b,0x5c,0x21,0x44,0x9e,0x65,0x9,0x34,0x5e,0x56,0x92,0x6,
0xd,0xe2,0x2d,0xf4,0x16,0x6e,0xfd,0xf1,0x87,0xdd,0x2,0xef,0xa3,0xa2,0x38,0xf2,
0xd9,0x67,0xf6,0x1e,0x5c,0xd7,0xbc,0x80,0xa8,0xaf,0x28,0xb,0x50,0x7d,0xfa,0x74,
0xbb,0xcd,0x9b,0x1e,0x86,0xd,0x68,0x72,0xe7,0xe,0xc5,0x59,0x87,0x59,0x49,0x36,
0x3d,0x14,0x42,0xd8,0xcf,0xb5,0x15,0xa4,0x44,0x7,0xdd,0xbb,0x47,0xa5,0x50,0x8b,
0xdf,0xea,0xd6,0xd,0x35,0x91,0x8a,0xe,0xaa,0xaa,0x75,0x5c,0x6a,0xc1,0x1f,0x22,
0xd2,0xd3,0x53,0x29,0x63,0x29,0x6b,0x19,0x37,0x6a,0x94,0xbd,0xee,0x57,0xb3,0x2,
0xe2,0x1e,0x61,0xf9,0x35,0x20,0xaa,0x7e,0x7d,0x7a,0x85,0x5b,0x63,0x58,0x9b,0x36,
0xf6,0xba,0x21,0xfa,0x98,0x7a,0xa0,0xff,0xc8,0x91,0x57,0x66,0x39,0x57,0x38,0x1b,
0x76,0xf9,0xb2,0xbd,0xe2,0xa,0x21,0x84,0x8d,0xed,0x44,0x44,0xf6,0x46,0x3a,0xd7,
0x9c,0x3f,0xdf,0x6e,0x81,0x27,0x61,0x35,0xfa,0xf,0x1b,0x56,0x72,0xc8,0xfd,0xc9,
0xe5,0xaf,0x7b,0x7a,0x6a,0x1d,0x4e,0xbb,0x1e,0xc8,0x79,0x4e,0xe6,0x84,0xc9,0x93,
0xb5,0xbe,0x1,0x1b,0xdb,0x91,0xb2,0x57,0x52,0x8c,0x29,0x31,0x7e,0x76,0xfc,0xb,
0x13,0x42,0x88,0xc7,0x48,0xff,0xc3,0xe4,0x6a,0x4d,0x18,0x39,0x92,0xa3,0x69,0x12,
0xf,0xd6,0xfe,0xb,0x2d,0xbd,0x8c,0x0,0x6c,0x70,0x72,0x52,0xcf,0x1a,0xeb,0x18,
0xfa,0x8c,0x1c,0xa9,0x75,0xbc,0x2c,0x2f,0x20,0xb6,0x95,0x92,0xf4,0x1d,0xde,0xc6,
0xa2,0x86,0xd,0xb5,0xbe,0x1,0x8e,0x40,0x3c,0xee,0x9b,0xcd,0xd8,0xc6,0x7b,0x32,
0x1c,0x43,0x42,0x1e,0x3e,0xb2,0xd2,0xbe,0xcb,0x28,0x84,0x10,0x4f,0x72,0x63,0x13,
0x29,0x67,0xc3,0xee,0xdc,0xe1,0x7c,0x6a,0x13,0x58,0x7,0xd,0xb2,0x57,0x5c,0x9e,
0x8,0x77,0xba,0xdf,0xbb,0x77,0xe6,0x1e,0x83,0x1a,0xc9,0xfa,0x1e,0x88,0xb3,0x3a,
0x86,0xc7,0x8f,0x1b,0xa7,0x69,0xeb,0xfc,0xdd,0x66,0xac,0xc3,0x77,0x5f,0x7f,0x9d,
0x14,0xea,0xd8,0xe7,0xcc,0xfc,0xd8,0x58,0xbb,0xc5,0x15,0x42,0x88,0xa7,0x94,0xec,
0xe8,0xd8,0x30,0xb6,0xff,0xea,0xd5,0xa8,0x86,0x31,0x78,0xf7,0xd7,0x5f,0xb5,0x8e,
0x47,0xad,0x51,0x1e,0x17,0x1c,0x1d,0x79,0xbf,0x61,0xaf,0xb5,0xc5,0x47,0x1f,0x69,
0x15,0x27,0xcb,0xa,0x88,0x7b,0x84,0x35,0xc8,0xaf,0x6e,0xb3,0x66,0xd8,0x88,0xc6,
0xd4,0xa8,0x41,0x3,0xad,0x1b,0xc8,0xb6,0x9,0xa2,0xc3,0xd7,0xa6,0xa1,0xe,0xd,
0xec,0xf7,0xa8,0x4c,0x8,0x21,0x9e,0x17,0x4d,0x45,0x5a,0xc6,0x90,0xe1,0xc3,0xd1,
0xe,0xb7,0x30,0xd6,0xe,0xe7,0xb,0x5,0xe1,0x26,0x3e,0xf,0x9,0x71,0x8f,0x78,
0x30,0x22,0x20,0xca,0xcb,0x2b,0xab,0x2f,0x9f,0x65,0x5,0x84,0xfa,0xaa,0x55,0x29,
0xc6,0x7e,0x7,0xa0,0xa8,0x11,0x34,0x81,0x56,0x8f,0x1d,0x1b,0x4f,0x44,0xc7,0xe9,
0xd6,0x2d,0x7b,0xc5,0x15,0x42,0x88,0xe7,0x65,0x5b,0x8f,0xc6,0xd5,0x70,0x9f,0xdb,
0x69,0x3f,0x56,0xfb,0x70,0x9d,0x88,0xc9,0x4,0x18,0xf2,0xa3,0x67,0x58,0x58,0x56,
0x5f,0xff,0x85,0xb,0x88,0xe7,0x49,0x73,0x58,0x85,0x7b,0x55,0xaa,0xa0,0x3a,0x6,
0xa1,0x51,0xe3,0xc6,0x5a,0x37,0x8,0x9f,0xa1,0xd6,0xf0,0x39,0x73,0x26,0xb9,0x82,
0x31,0xad,0xf8,0xef,0x8b,0x16,0x69,0x1d,0x4f,0x8,0x21,0xb2,0x9a,0xba,0xd2,0xe4,
0xe5,0x30,0x67,0xc2,0x4,0x78,0x63,0x2f,0xef,0x48,0x4d,0xd5,0x3a,0x1e,0xa5,0xa2,
0x32,0x77,0xeb,0xd5,0xcb,0x76,0x54,0x78,0x56,0x5d,0xf7,0x85,0xb,0x8,0x3b,0xd3,
0x49,0x83,0xcf,0xb0,0x61,0x99,0xbb,0x45,0x6a,0xed,0x26,0xa7,0xb1,0x79,0xc2,0x4,
0x80,0x94,0x1d,0x64,0xb5,0x6a,0x1e,0x4f,0x8,0x21,0xb2,0xd8,0xd5,0x2d,0xa4,0x9c,
0x18,0xfe,0xe7,0x9f,0xf0,0x46,0x4,0x8d,0xff,0xfa,0x6b,0xcd,0x3,0x86,0xa3,0x15,
0xb6,0x16,0x2c,0x98,0xe6,0x6d,0xfd,0xc6,0x71,0x48,0xef,0xde,0x59,0x75,0xd9,0xe7,
0x2e,0x20,0xa5,0xa6,0xde,0xaf,0xe0,0x1b,0xe2,0xe1,0xc1,0xd1,0x3c,0x1f,0xce,0x9d,
0x3b,0x6b,0xde,0x0,0x23,0xa8,0x1a,0xae,0x9c,0x3e,0x9d,0x54,0xca,0xb4,0x23,0x76,
0xeb,0xf2,0xe5,0x9a,0xc7,0x13,0x42,0x8,0xad,0xcd,0x33,0xfd,0xc0,0xca,0xb4,0x69,
0xb6,0x5,0xd0,0x5a,0x87,0xe3,0x35,0x38,0xcf,0x8e,0x61,0x61,0x35,0xaa,0xb3,0x5a,
0xa3,0xba,0xc9,0xf4,0xa2,0xd7,0x7b,0xee,0x2,0x92,0xe1,0x6a,0xda,0x4e,0xb3,0x7a,
0xf4,0xb0,0xd7,0xa,0x73,0xb5,0xa4,0xba,0x9c,0x9d,0xc7,0x8f,0x97,0x69,0xba,0x42,
0x88,0xdc,0x22,0xb1,0x20,0x51,0xec,0xec,0x94,0x14,0x76,0x41,0x28,0x52,0xbe,0xfa,
0x4a,0xeb,0x78,0x14,0xc0,0xe3,0xe8,0xcb,0x92,0x25,0x13,0x5d,0xcd,0xab,0xef,0x5f,
0x6a,0xdd,0xfa,0x45,0xaf,0xf7,0x1c,0x5,0x84,0x19,0x50,0x14,0xec,0xc7,0x44,0xa,
0xe,0x9,0xd1,0xfa,0x86,0x33,0xc7,0x3c,0x3a,0x3a,0x54,0x8a,0x4d,0x5e,0xb3,0x46,
0xeb,0x78,0x42,0x8,0x61,0x6f,0x86,0x58,0xd3,0x55,0x6a,0xff,0xe5,0x97,0xf6,0x1a,
0x13,0x41,0x65,0x8a,0xc2,0xcd,0x17,0xdf,0x3d,0xf8,0x99,0xc7,0x2c,0xdc,0x1b,0x58,
0x7b,0xf8,0x2e,0x6f,0xde,0x9c,0xce,0xa9,0x73,0x95,0x9,0x9b,0x37,0x6b,0x7d,0x9f,
0x94,0x4e,0x6e,0x58,0xd3,0xb7,0xef,0x95,0x14,0xd3,0x8d,0x18,0xbf,0x79,0xf3,0xb4,
0x8e,0x27,0x9e,0x8f,0x97,0x17,0x73,0xe5,0xca,0x85,0xb,0x5b,0x2c,0x16,0x8b,0xc5,
0x52,0xa6,0x8c,0x5e,0x79,0xa4,0x57,0x33,0x19,0xad,0xfd,0xfe,0xf8,0xc3,0xb6,0x80,
0x4b,0xef,0x76,0xb1,0x6d,0x29,0x91,0xb1,0xcc,0x38,0xd2,0x50,0xdf,0x8e,0xbb,0x50,
0xff,0x43,0x52,0x92,0xc9,0x14,0x1b,0x7b,0xec,0xd8,0xc3,0x1e,0xbc,0x1d,0xa6,0x8f,
0x8a,0xe7,0xe2,0xbe,0xc7,0x1c,0xe3,0x5f,0x6f,0xf6,0x6c,0xea,0x84,0xb2,0xb8,0xd1,
0xaf,0x9f,0x66,0x81,0x6c,0xd3,0x88,0x8b,0x64,0x34,0x32,0x8c,0xf5,0xf1,0x49,0xfc,
0x38,0xdf,0xe9,0x53,0xe7,0x2e,0x5d,0x7a,0xd6,0xcb,0x18,0x9f,0xf5,0xd,0x34,0x9d,
0xcb,0x29,0x86,0x5e,0xbd,0xd0,0x5e,0xb3,0x5b,0x7b,0xe8,0xd1,0x3a,0xf,0xaa,0x66,
0x4c,0xb9,0x1b,0xb1,0x64,0x9,0x66,0x3c,0x7b,0xb1,0x13,0xf6,0x93,0x61,0x35,0xa7,
0x67,0x58,0x9b,0x34,0x21,0x22,0x85,0x28,0x2a,0x4a,0xaf,0x3c,0x1c,0xd7,0x64,0xb4,
0x32,0x36,0x68,0xd6,0xc,0x4e,0x0,0xb0,0x65,0x8b,0xde,0xed,0xa2,0x5e,0x35,0x46,
0x1b,0xc7,0xe,0x1c,0x48,0x4,0x80,0xb4,0xdf,0x5a,0xe2,0x71,0xbc,0xbc,0x80,0xca,
0x95,0x8b,0x14,0x49,0x48,0x0,0x4e,0x9e,0xbc,0x79,0x53,0xef,0x76,0x11,0xff,0xbf,
0x8c,0xe3,0xea,0x37,0xd6,0x7e,0xd3,0xa7,0x1b,0xdb,0x29,0x43,0x8d,0x14,0x1a,0x8a,
0x75,0x28,0x84,0xc9,0x6,0x43,0x96,0x7,0xb2,0x5d,0xd7,0xc3,0x78,0xd0,0x5a,0x39,
0x24,0x4,0x80,0x33,0xce,0x4d,0x9c,0xf8,0xac,0x97,0x79,0xea,0x47,0x58,0x1e,0x77,
0x98,0xfd,0xfa,0x17,0x2d,0xca,0x57,0xb9,0x23,0x86,0x6a,0xbf,0x39,0x22,0xbf,0x8d,
0x2f,0xb1,0x7f,0xde,0x3c,0x39,0x0,0x4a,0x8,0x91,0x57,0xfc,0xd9,0xcf,0x69,0xea,
0x1f,0x5d,0xce,0x9f,0x47,0x11,0x5a,0x81,0x69,0x3f,0xfd,0xa4,0x79,0xc0,0x1a,0x18,
0x42,0x86,0xee,0xdd,0x9f,0xf7,0x40,0xaa,0xa7,0x2e,0x20,0xdc,0xdb,0x72,0x3,0x65,
0xde,0x7a,0x4b,0xf3,0x41,0xf3,0xcc,0xed,0x8f,0x33,0xba,0x53,0x7b,0x3b,0x1e,0x5a,
0x2f,0x84,0x10,0xd9,0x4,0xef,0xa4,0x23,0xea,0xa8,0x88,0x8,0xcd,0x3,0x3d,0x3a,
0x63,0xdd,0x33,0xc5,0xfa,0xb6,0xff,0xa5,0xda,0xb5,0x9f,0xf5,0xed,0x4f,0x5d,0x40,
0x28,0xa,0xf3,0x68,0x4a,0x50,0x90,0xd6,0xf7,0xc3,0xad,0xd0,0xd,0x3b,0x37,0x6d,
0xca,0x3c,0x2a,0x52,0x8,0x21,0xf2,0x98,0xa4,0x5d,0x86,0x85,0x71,0x9d,0xb7,0x6c,
0x41,0x1b,0x1a,0x88,0x80,0x8b,0x17,0xb5,0x8e,0xa7,0x8e,0xe3,0x5a,0xb8,0xf0,0xec,
0x9f,0xef,0x4f,0x2c,0x20,0x6e,0xef,0xb3,0x5a,0x6e,0x66,0xf1,0xe2,0x98,0x84,0xee,
0xfc,0xab,0xf6,0xbb,0xeb,0xa2,0x3,0xd7,0xa2,0x84,0x5,0xb,0x34,0x8f,0x23,0x84,
0x10,0xd9,0xd6,0xa3,0xe5,0xa,0xa,0x3e,0xe5,0x76,0x8b,0x17,0x6b,0x1e,0xee,0x63,
0xba,0xc5,0x31,0x41,0x41,0x99,0xb3,0x6c,0x9f,0xd2,0x13,0x5f,0x68,0xf8,0xc9,0x5a,
0xcc,0xd4,0xac,0x43,0x87,0xcc,0x43,0xdc,0x35,0xc2,0xe3,0x31,0xc,0xa6,0xa4,0xa4,
0xa4,0x62,0xe,0x1f,0x15,0xbf,0xb0,0x61,0x83,0xe6,0xd,0x26,0x84,0x10,0xd9,0x1c,
0x19,0x2d,0xd7,0xad,0xb7,0x22,0x23,0xb5,0x3e,0xd9,0xd0,0xb6,0x3e,0xc4,0xc3,0xc9,
0xba,0xdc,0x37,0x7f,0x9d,0x3a,0x4f,0xfb,0xbe,0x27,0x16,0x10,0xfe,0x81,0x5b,0xf3,
0x9d,0xb6,0x6d,0x35,0x6f,0xa8,0x4,0x34,0xe5,0x81,0x2b,0x56,0xc8,0x16,0x25,0x42,
0x8,0xf1,0x50,0xe6,0xc9,0xaa,0x75,0xb0,0x3,0xdf,0xee,0xde,0xad,0x79,0xc0,0xb7,
0x78,0x9d,0xf2,0xde,0xd3,0x4f,0x92,0x7a,0x6c,0x1,0x29,0xcd,0xcc,0xa5,0xd9,0xc9,
0x9,0xbd,0x11,0x8a,0xfb,0x81,0x81,0x9a,0x27,0x3e,0x9d,0x52,0x79,0x88,0x7e,0xd3,
0x3f,0x85,0x10,0x22,0xdb,0xca,0x47,0xa3,0x71,0x4b,0xfb,0x2d,0x9c,0x38,0x98,0x7e,
0x47,0xfd,0x96,0x2d,0x9f,0xf6,0xf5,0x8f,0x2d,0x20,0xe9,0x97,0x33,0x86,0xb8,0xac,
0x68,0xd8,0x10,0x16,0xd4,0xa2,0xbe,0xce,0xce,0x9a,0x25,0xfc,0xe8,0xa8,0xc7,0xc4,
0x34,0x63,0xe7,0xb8,0x7b,0xfb,0xf6,0x69,0xdd,0x40,0x42,0x8,0x91,0xd3,0xa8,0xc7,
0x8d,0xa7,0x2c,0x53,0x56,0xac,0x40,0x3f,0x5c,0xe3,0x6f,0xb5,0x7b,0x42,0x43,0x63,
0xf8,0x2c,0x56,0x55,0xae,0xfc,0xb4,0x67,0xaa,0x3f,0xb6,0x80,0x28,0xfb,0xd4,0x3a,
0x6a,0x9d,0x16,0x2d,0xb4,0x6e,0x18,0xfa,0x93,0xcb,0xd1,0xac,0x95,0x2b,0x65,0x8f,
0x2b,0x21,0x84,0xf8,0xff,0x25,0x2f,0x26,0xe5,0x6c,0xd8,0xb5,0x6b,0xfc,0x2a,0xd6,
0x20,0x66,0xe7,0x4e,0xcd,0x2,0x3d,0xda,0x55,0x3d,0xa3,0x9f,0xb1,0xbd,0x71,0xe8,
0x93,0x3f,0xff,0x1f,0x3f,0x6,0xd2,0x87,0xe6,0xd1,0x3c,0xed,0xb,0x8,0x26,0x28,
0xb,0xd0,0x40,0x6,0xcd,0x85,0x10,0xe2,0x49,0xa8,0x36,0xa5,0xe0,0x80,0x1d,0x3e,
0x2f,0xb7,0xd1,0x8f,0xdc,0xb2,0x79,0xf3,0x27,0xbd,0xec,0x5f,0x5,0xa4,0x44,0x53,
0x56,0xab,0x4c,0x73,0x75,0x85,0x13,0xff,0x82,0xd5,0xbe,0xbe,0x9a,0x25,0xf8,0x68,
0xd3,0x30,0xe7,0x57,0xd,0xbb,0x2c,0xfe,0xbb,0x76,0x69,0xde,0x20,0x42,0x8,0x91,
0xc3,0xa9,0x83,0xd4,0x5e,0x4a,0xa0,0x1d,0xf6,0x20,0x4c,0x60,0xa0,0xe2,0x6b,0xaf,
0x3d,0xe9,0x75,0xff,0x2a,0x20,0x8a,0xc1,0xbc,0xda,0xf2,0x79,0xbd,0x7a,0x5a,0x27,
0xc8,0xcb,0xe9,0x6,0x1d,0xdc,0xb6,0xed,0x6c,0x18,0x29,0x67,0xc3,0xd2,0xd3,0xb5,
0x8e,0x27,0x84,0x10,0x39,0x5d,0xf2,0x62,0x47,0x8f,0xe8,0xa0,0xe8,0x68,0x54,0xa5,
0xf,0x60,0x89,0x8f,0xd7,0x2c,0xd0,0x62,0x4c,0xa0,0xa0,0x12,0x25,0x4a,0x35,0x4a,
0x5b,0x5d,0x31,0xa1,0x6c,0xd9,0xc7,0xbd,0xec,0xdf,0x8f,0xb0,0x26,0xd0,0x21,0x1e,
0x54,0xb7,0xae,0xd6,0xd,0x41,0xab,0x30,0x6,0xef,0x68,0x5f,0x49,0x85,0x10,0x22,
0xb7,0x61,0x33,0x7f,0xcc,0xcd,0xb5,0xff,0xfc,0x54,0xcd,0xca,0xf9,0x8c,0x7,0x8f,
0xef,0x50,0xfc,0xbb,0x80,0x14,0x45,0x17,0xfa,0x43,0xfb,0x1e,0x48,0x46,0x43,0xbe,
0x88,0xc8,0x1d,0x3b,0xb4,0x8e,0x23,0x84,0x10,0xb9,0xce,0x37,0x68,0x83,0x38,0xed,
0x3f,0x3f,0xf9,0x73,0x84,0x91,0xe5,0x29,0xa,0x48,0x40,0x14,0xab,0x1,0x51,0xe,
0xe,0xb8,0xb,0x5,0xd7,0xaa,0x57,0xd7,0x2c,0xa1,0xf9,0x58,0xce,0x9f,0xdf,0xba,
0x75,0xb5,0x9a,0x29,0x35,0xa6,0x63,0x4c,0x8c,0xd6,0xd,0x20,0x84,0x10,0xb9,0xce,
0xc6,0x8c,0x57,0x95,0xde,0x7b,0xf6,0x68,0x1d,0x86,0xef,0x92,0x17,0x8e,0xbf,0xfa,
0xea,0xe3,0xfe,0x3c,0xb3,0x80,0xdc,0xf6,0xb7,0xc,0xb6,0xbe,0xe1,0xe7,0x47,0xad,
0x51,0x1e,0x17,0x1c,0x1d,0x35,0xcb,0x68,0x7,0xd6,0xd3,0x9b,0x7b,0xf7,0xca,0xb4,
0x5d,0x21,0x84,0x78,0x3e,0x99,0x9b,0xcd,0xde,0xa5,0xb1,0x1c,0xf9,0xec,0x7,0x41,
0x3d,0xb5,0x78,0xde,0xcf,0xed,0xfd,0xfd,0x33,0x3b,0x18,0xff,0x90,0x59,0x40,0xd4,
0x71,0xb8,0x65,0x7c,0xad,0x72,0x65,0xad,0x6f,0x5c,0x89,0xa0,0xf1,0x58,0xb8,0x77,
0xaf,0xd6,0x71,0x84,0x10,0x22,0xd7,0x53,0x70,0x83,0x16,0x6a,0xd7,0x13,0xa1,0x89,
0xf0,0xa0,0x9a,0x26,0x93,0xad,0x83,0xf1,0xef,0xf0,0xb6,0x17,0xc6,0xc2,0xc4,0x57,
0xab,0x54,0xd1,0xfa,0x7e,0xd5,0xaa,0xf4,0x85,0x9a,0xef,0xd0,0x21,0xad,0xe3,0x8,
0x21,0x44,0xae,0x37,0x0,0xd5,0x30,0xed,0xf0,0x61,0xad,0xc3,0xa8,0xaf,0x2,0x86,
0x3,0xff,0xae,0xf,0x7f,0xd,0xa2,0xf7,0x87,0x81,0x47,0x68,0x5f,0x40,0x8c,0xad,
0xcd,0xbb,0xf0,0xcb,0xc9,0x93,0x5a,0xc7,0x11,0x42,0x88,0xdc,0x8e,0x77,0xd2,0x11,
0x75,0x8b,0xf6,0x9f,0xa7,0xe4,0x85,0x54,0x4,0xff,0xfb,0x9,0xd5,0x5f,0x5,0x64,
0x2e,0xb9,0xa0,0x67,0x40,0x80,0x66,0x19,0xdc,0xc0,0x3c,0xbc,0x94,0x92,0x72,0x69,
0xa4,0xf3,0x99,0xb8,0xc8,0xc4,0x44,0xad,0x6f,0x58,0x8,0x21,0x72,0x3b,0xd3,0x47,
0x86,0x85,0xd4,0xfa,0xc4,0x9,0xad,0xe3,0xf0,0x6c,0x5c,0x42,0xf0,0xbf,0xeb,0x83,
0x52,0xa3,0x3a,0xab,0x35,0xaa,0x9b,0x4c,0x78,0x8d,0x3f,0xa4,0x75,0x4f,0xde,0x3c,
0xeb,0xb9,0x13,0xf8,0x19,0xa,0xf7,0x3b,0x7e,0x5c,0xeb,0x1b,0x15,0x42,0x88,0xbc,
0x22,0xa1,0x5,0x51,0xac,0x4b,0x52,0x12,0x7c,0x11,0x8e,0xbe,0xd7,0xae,0x69,0x15,
0x87,0x4e,0xd0,0x65,0xcc,0xf6,0xf1,0xf9,0xe7,0xef,0x95,0x3f,0x5f,0x4a,0x5f,0x9b,
0xb6,0xd6,0xcb,0xb,0xeb,0x50,0x8,0x93,0xd,0x6,0xcd,0xee,0x34,0x1f,0x1a,0x53,
0x44,0x6c,0xac,0x66,0xd7,0x17,0x42,0x88,0xbc,0xaa,0x19,0x2,0x10,0xae,0xe1,0xb2,
0x88,0x28,0x9e,0xc3,0x67,0xbd,0xbd,0x1f,0x9e,0x58,0x48,0x64,0xfb,0xb5,0x92,0xe1,
0x6e,0x9c,0xae,0x7e,0xfa,0xef,0xca,0x92,0xd5,0x68,0x23,0x6d,0xc3,0xfa,0xb,0x17,
0xb4,0x8e,0x23,0x84,0x10,0x79,0xd,0x5f,0xa5,0xa9,0xa8,0xa3,0xe1,0xd9,0xe9,0x17,
0x51,0x97,0x2,0x5d,0x5c,0x4a,0x34,0x5,0x57,0x99,0x56,0xbc,0xb8,0xed,0xd7,0xa,
0x7,0xaa,0xdf,0x73,0xb8,0xb7,0xb7,0xd6,0x37,0xa8,0xbe,0xac,0xbe,0xc6,0x1,0x52,
0x40,0x84,0x10,0x22,0xcb,0xcd,0x50,0xf7,0x62,0x99,0xf6,0x9f,0xaf,0xc6,0x65,0xd6,
0x77,0x2c,0x6f,0xff,0xd5,0xe1,0x50,0xd0,0x9b,0x4b,0x93,0x73,0xc9,0x92,0x9a,0xdf,
0xe0,0x6d,0x25,0x90,0xdf,0xd0,0x70,0xf3,0x2f,0x21,0x84,0xc8,0xa3,0x68,0x5,0x45,
0xa9,0xd0,0xb0,0x7,0x62,0x33,0x41,0x9d,0x41,0xfb,0x4a,0x95,0xb2,0xfd,0xa8,0xe0,
0x2e,0x1d,0xc5,0x94,0x62,0xc5,0x34,0xf,0xbc,0xdb,0x78,0x3d,0xa3,0x9a,0x14,0x10,
0x21,0x84,0xc8,0x6a,0xd4,0x89,0x82,0x60,0x8f,0x2,0xf2,0x83,0x52,0x89,0xab,0xfc,
0x55,0x2f,0x14,0xa4,0x52,0x24,0x96,0x68,0x58,0x40,0xda,0xe1,0x16,0xc6,0x66,0x64,
0x24,0x2f,0x6,0x9d,0xd,0x4b,0x49,0xd1,0xfc,0x6,0x85,0x10,0x22,0x8f,0xb1,0x1e,
0x67,0x17,0x65,0x95,0x76,0xb3,0xb0,0x6c,0x78,0x17,0xe,0xe2,0x83,0xbf,0x17,0x90,
0x34,0xf6,0xe6,0xd,0x1a,0x16,0x90,0x2d,0xf8,0x16,0xbf,0xdf,0xbc,0x29,0x7b,0x5f,
0x9,0x21,0x84,0x36,0xd4,0x8f,0x4d,0xa9,0xa4,0xda,0xe1,0xb,0xba,0x91,0x77,0x21,
0xa1,0x68,0x51,0xdb,0x8f,0xa,0xd2,0xe9,0x13,0xec,0xd6,0xb0,0x80,0x14,0xa0,0x35,
0x68,0x7e,0xfd,0xba,0xe6,0x37,0x26,0x84,0x10,0x79,0x94,0xd7,0x39,0x70,0xbe,0xcf,
0x52,0x52,0xe0,0x1,0x33,0xfc,0x99,0x35,0xb,0x14,0x4b,0xcb,0x78,0xf9,0xdf,0x7a,
0x20,0x34,0x3,0x9d,0x68,0xe3,0x4b,0x2f,0x69,0x15,0x8f,0xf,0xf1,0x57,0xb8,0x7a,
0xe3,0x86,0x66,0x37,0x24,0x84,0x10,0x79,0xdc,0xe1,0x23,0xa4,0x1c,0x3e,0x62,0xb1,
0xe0,0x5d,0x6c,0x81,0xe7,0xdd,0xbb,0x5a,0xc5,0xe1,0xfc,0xac,0xd2,0xd2,0x42,0x85,
0x6c,0x3f,0x2b,0x5c,0x9d,0x1d,0xf1,0x87,0x76,0xdb,0xb7,0xd3,0x7,0xf8,0x16,0x7e,
0xda,0xdd,0x90,0x10,0x42,0x88,0x87,0xd8,0x8f,0x62,0x70,0xf3,0xde,0x3d,0xad,0xae,
0x4f,0x7d,0xf0,0xa,0x8e,0xff,0x55,0x2f,0x14,0x1a,0x84,0x72,0x70,0xfe,0xf7,0x3e,
0xef,0x59,0x76,0x43,0xc3,0xa8,0x21,0xd2,0xcc,0x66,0xad,0xae,0x2f,0x84,0x10,0xe2,
0x21,0x3a,0x8a,0xb3,0xf0,0x4d,0x4f,0xd7,0x2c,0xc0,0x14,0x54,0x82,0xcb,0x5f,0xf5,
0x42,0x41,0x5b,0xf8,0xe1,0x9c,0x86,0x3d,0x90,0x24,0xc4,0xe1,0x81,0x14,0x10,0x21,
0x84,0xd0,0xdc,0x74,0x5c,0xd0,0xf2,0xb,0x3b,0x17,0x42,0x35,0x9c,0xfe,0x5b,0xf,
0x84,0xdf,0x83,0x8f,0x96,0x3d,0x10,0xcc,0xc1,0x31,0xbc,0xa2,0x61,0x45,0x14,0x42,
0x8,0x1,0x0,0xe0,0x1f,0x10,0x83,0x0,0xed,0x3e,0x6f,0x29,0x98,0x2a,0x23,0xf6,
0xef,0x8f,0xb0,0x36,0xe2,0x25,0x7c,0xaa,0xe1,0x26,0x8a,0x63,0xf1,0x27,0xaa,0x67,
0x64,0x68,0x76,0x7d,0x21,0x84,0x10,0x0,0x0,0xfa,0x96,0x13,0xb0,0xdb,0x62,0xd1,
0xea,0xfa,0x3c,0x11,0x6e,0x18,0x6c,0x34,0xda,0x7e,0x56,0xb8,0x17,0xae,0x61,0xa9,
0xd5,0xaa,0xd9,0x1d,0xbd,0x8b,0x52,0xf8,0xe2,0xaf,0x80,0x42,0x8,0x21,0xb4,0xc1,
0x81,0x54,0xe,0xf9,0xb4,0x7b,0xa2,0x44,0xdf,0x20,0x1,0xbb,0xfe,0x2a,0x50,0xa,
0x2d,0xc5,0x5,0x4d,0xc7,0x28,0xfa,0xa3,0x1a,0xe,0x6a,0x37,0xc6,0x22,0x84,0x10,
0xe2,0x91,0x2e,0xf0,0xfb,0xfb,0x23,0xa6,0xac,0xc6,0xdf,0xf2,0xc9,0xbf,0x3f,0x22,
0x53,0xf0,0x13,0x62,0x51,0x4e,0xbb,0x67,0x66,0x5c,0x92,0x37,0xff,0x7d,0xd4,0x5e,
0x8,0x21,0x84,0x36,0xa8,0x13,0x2a,0xe0,0x8c,0x86,0x5f,0xd8,0x17,0xe2,0x28,0x2a,
0xff,0xad,0x80,0xf0,0x6a,0x4a,0x45,0x5,0xd,0x7,0x5d,0xfe,0x31,0x6f,0x58,0x8,
0x21,0x84,0x36,0xb8,0x3d,0x2b,0x5a,0x4e,0x8a,0xa2,0x93,0x38,0xf5,0xf7,0x27,0x56,
0xa,0x9d,0xc0,0x1f,0xf0,0xd3,0xb0,0x7,0x32,0x14,0x3d,0x78,0x45,0xc1,0x82,0x5a,
0x5d,0x5f,0x8,0x21,0xc4,0x43,0xb4,0x4,0x6f,0xf1,0x56,0xd,0x3f,0x6f,0xb7,0x51,
0x75,0xb6,0xa6,0xa5,0xd9,0x7e,0x54,0x10,0xc3,0x73,0xf1,0xa7,0x96,0x5b,0x8d,0xd0,
0x48,0xec,0xb1,0xc3,0x76,0xf1,0x42,0x8,0x91,0x47,0x95,0x1c,0xc2,0x5c,0x72,0x48,
0xbe,0x7c,0xb6,0x93,0x3,0xb5,0x8a,0xc3,0x97,0x31,0x1a,0xca,0x5f,0x9b,0x36,0x2a,
0x70,0xc7,0x50,0xbe,0xa7,0xe1,0x66,0x87,0x9e,0xdc,0x1a,0xe9,0x7f,0xed,0xde,0x28,
0x84,0x10,0x22,0x6b,0xb1,0xf5,0xc1,0x1f,0x4e,0x3e,0x76,0xf8,0x9c,0xcd,0xcf,0xad,
0xd1,0xf6,0xaf,0x7a,0xa1,0x20,0x95,0xfe,0x84,0x51,0xbb,0x6d,0x80,0x69,0x2,0xde,
0xa4,0xc5,0x2f,0xbd,0x54,0xa3,0x3a,0xab,0x35,0xaa,0x9b,0x4c,0x9a,0xdf,0xa0,0x10,
0x42,0xe4,0x31,0xdc,0xc0,0x78,0xd4,0xc1,0xcd,0xe,0x4f,0x7a,0x62,0xa9,0x31,0xa,
0xfd,0xbd,0x7,0xe2,0xc3,0xef,0xfc,0xbd,0xa2,0x64,0xb9,0x44,0x38,0x20,0x86,0xe8,
0xcf,0xce,0xf,0xfc,0xee,0x55,0xfb,0xeb,0x30,0x76,0x21,0x84,0x10,0x59,0x83,0x6f,
0x2a,0xab,0xd4,0x2f,0x5d,0x5d,0x35,0xf,0xf4,0x19,0xd7,0xc7,0xea,0xbf,0x86,0x3c,
0x14,0x54,0xa2,0x9a,0x14,0xaa,0xfd,0x79,0x1d,0x19,0x77,0x4c,0x83,0xd0,0xd9,0xdb,
0x5b,0xf3,0x1b,0x14,0x42,0x88,0xbc,0x66,0x82,0xba,0x14,0x37,0xec,0xf0,0xf9,0xda,
0x88,0x57,0x50,0xfe,0xbf,0x4e,0x3e,0x54,0xa8,0x17,0xaf,0xe1,0x19,0x9,0x9,0x5a,
0xc7,0xe5,0x3e,0xbc,0x9c,0xa6,0x95,0x2e,0xad,0xf9,0xd,0xa,0x21,0x44,0x1e,0x43,
0x43,0xd1,0x91,0x66,0xf8,0xf8,0x68,0x1e,0xe7,0x13,0xaa,0x8c,0xea,0xf1,0xf1,0xb6,
0x9f,0x95,0x8c,0x69,0xf4,0x26,0xd,0xb1,0xc3,0x61,0xec,0xad,0xe8,0xb,0x5a,0xaf,
0xfd,0xd,0xa,0x21,0x44,0x9e,0x33,0x99,0x4a,0x60,0xa5,0xf6,0x3d,0x10,0xd3,0x45,
0x53,0x5d,0x87,0x9a,0x17,0x2e,0xd8,0x7e,0x56,0x94,0xd,0xd6,0xb6,0x86,0xb8,0xbf,
0x7e,0xa1,0x15,0x2a,0x8a,0x66,0x78,0xa9,0x4c,0x19,0xad,0xe3,0x8,0x21,0x44,0x5e,
0xc3,0x9f,0xf3,0x47,0x3c,0x53,0xbb,0x2f,0xe8,0x3c,0x1f,0xcb,0xf9,0xf3,0x5b,0xb7,
0xe2,0x89,0xe8,0x38,0xdd,0xba,0x65,0xfb,0xbd,0x92,0xf8,0xb1,0xd3,0xa9,0x53,0xe7,
0xae,0x5c,0xe1,0x8,0xc4,0xe3,0xbe,0x86,0xfb,0xc8,0x7f,0xc8,0xfb,0x50,0xae,0x62,
0x45,0xad,0xae,0x2f,0x84,0x10,0x79,0xf,0x33,0x40,0x44,0xa9,0x38,0x4a,0xa3,0xfc,
0xfd,0xb5,0x8a,0x42,0x3d,0xa9,0x7,0xb5,0xfb,0x77,0x47,0x43,0x1,0x88,0x0,0x55,
0x45,0x19,0x1a,0x2,0xf3,0x5f,0xcf,0xb6,0xb2,0x3c,0x81,0x85,0x88,0xc7,0xb5,0x4a,
0x95,0x1e,0xde,0xb0,0xa2,0x68,0x15,0x47,0x8,0x21,0xf2,0xa,0xd7,0x39,0xe9,0xa3,
0xca,0x7f,0xef,0xe3,0x83,0x70,0xb4,0x82,0x96,0x2b,0xd0,0x7f,0xc2,0x44,0x44,0x9d,
0x3f,0xff,0xcf,0x5f,0x67,0x7e,0x90,0xd3,0xf,0x68,0x9,0xb7,0x53,0xa7,0x34,0x4b,
0x60,0x37,0x1a,0xa2,0x58,0xfe,0xfc,0xa5,0x1a,0xa5,0xaf,0xa9,0x98,0x20,0x63,0x21,
0x42,0x8,0xf1,0xa2,0xc,0x6,0xf2,0x31,0xde,0xab,0x52,0x45,0xeb,0x38,0x5c,0x4b,
0x1d,0x85,0xe,0xff,0xae,0xf,0x99,0x5,0x84,0xa7,0xa8,0xfd,0x70,0xe4,0xc4,0x9,
0xad,0x13,0xb1,0x3a,0x92,0xaa,0xd6,0xd0,0xfe,0x86,0x85,0x10,0x22,0xb7,0x23,0x7,
0xa5,0x2d,0x77,0xad,0x5c,0x59,0xeb,0x38,0x4a,0x18,0x92,0x68,0xc5,0xff,0x2a,0x20,
0xab,0x70,0x8a,0xdd,0x4f,0x9e,0xd4,0xfc,0x86,0x47,0xd0,0x5c,0xba,0x53,0xab,0x96,
0xd6,0x71,0x84,0x10,0x22,0xb7,0xe3,0xd2,0xdc,0x9d,0xa6,0xd4,0xae,0xad,0x79,0xa0,
0x40,0x54,0xe6,0xb8,0xe3,0xc7,0xff,0xf9,0xeb,0xcc,0x2,0x62,0x0,0x1a,0x52,0x7f,
0xed,0x7b,0x20,0x38,0x80,0x81,0x5c,0xa2,0x5e,0x3d,0xcd,0xe3,0x8,0x21,0x44,0xae,
0xf5,0x70,0xf0,0x1c,0x55,0xf0,0x16,0x66,0xd6,0xad,0xab,0x59,0x18,0x13,0xe,0xf2,
0xdc,0xfb,0xf7,0xaf,0x74,0x74,0xb8,0x1e,0x33,0xf6,0xdc,0xb9,0x7f,0xfe,0x71,0x66,
0x1,0xc9,0x7c,0xc1,0xdb,0xf8,0x15,0x6e,0x77,0xef,0x6a,0x96,0xd0,0x58,0x78,0x60,
0x52,0xad,0x5a,0x1,0x51,0xac,0x6,0x44,0xc9,0x41,0x53,0x42,0x8,0xf1,0xac,0xdc,
0xde,0x37,0x27,0x5,0x44,0xf9,0xfb,0x53,0x15,0x84,0xc0,0xab,0x48,0x11,0xad,0xe2,
0xf0,0x68,0x78,0xa2,0xd6,0xc9,0x93,0x99,0x93,0xad,0xfe,0xe1,0x6f,0xb3,0xa1,0x1e,
0xbd,0xe0,0x4b,0x1c,0xc7,0xb1,0x3,0x7,0x34,0xbb,0x73,0x57,0x54,0xc3,0xd4,0x7c,
0xf9,0x6e,0x37,0xb6,0xbe,0xc3,0x75,0x5e,0x7e,0x59,0xb3,0x38,0x42,0x8,0x91,0x4b,
0xd1,0x66,0x2a,0xa6,0x8e,0xab,0x5f,0x5f,0xf3,0x40,0x27,0xb0,0x92,0xe,0xef,0xd9,
0xf3,0xb8,0x3f,0xfe,0xd7,0x74,0x5a,0xce,0xe0,0xd1,0xb8,0xf1,0xf8,0x37,0x64,0x15,
0xf5,0x12,0xde,0x65,0x6b,0xc3,0x86,0x9a,0x37,0x80,0x10,0x42,0xe4,0x32,0xd4,0x9c,
0xde,0xa3,0x2d,0x81,0x81,0x5a,0xc7,0xe1,0x46,0xdc,0x9c,0x83,0xf6,0xee,0x7d,0xdc,
0x9f,0xff,0x7b,0x3d,0x46,0xba,0xe1,0xd,0x3e,0xa6,0x7d,0x1,0xa1,0x33,0x9c,0x46,
0x23,0x5a,0xb6,0xd4,0x3a,0x8e,0x10,0x42,0xe4,0x1e,0x8f,0xd6,0xd1,0xc5,0x73,0x55,
0xac,0x69,0xda,0x54,0xeb,0x68,0xe,0xf9,0x1d,0x2a,0xe1,0xdc,0x33,0x14,0x10,0xf3,
0x2f,0x86,0xd,0x3c,0x6b,0xff,0x7e,0xb4,0xc3,0x2d,0x8c,0xcd,0xc8,0xd0,0x2c,0xb3,
0x33,0xa8,0xcf,0x23,0xea,0xd5,0x2b,0xe3,0xc3,0x6a,0x19,0x9f,0x97,0x5e,0xd2,0xba,
0x21,0x84,0x10,0x22,0xa7,0xf3,0x1c,0x68,0x1d,0xe8,0x5f,0xae,0x76,0x6d,0xc4,0x61,
0x18,0xe6,0x6a,0x77,0x3c,0x6,0x2f,0xa2,0xb7,0x79,0xfb,0xd9,0xb3,0x9,0x2d,0x88,
0x62,0x5d,0x92,0x92,0x1e,0xf7,0xba,0x7f,0x15,0x90,0x94,0x76,0xa4,0xc4,0x45,0xde,
0xbd,0x8b,0x22,0xc8,0x87,0x7,0x47,0x8f,0x6a,0xd6,0x12,0x73,0x50,0x9c,0x82,0x8d,
0xc6,0xfb,0xb1,0xe6,0x9d,0xe,0xc3,0x1a,0x37,0xd6,0x2c,0x8e,0x10,0x42,0xe4,0x12,
0xea,0x4c,0x75,0x16,0xfe,0x68,0xd1,0x42,0xeb,0x38,0xd4,0xd,0xfb,0x71,0x66,0xe7,
0xce,0x27,0xbd,0xee,0xb1,0x5b,0x8a,0xf0,0x75,0x54,0xc5,0x80,0xcd,0x9b,0x35,0x4f,
0xf4,0x80,0xd2,0x8f,0x9a,0xb7,0x69,0xa3,0x75,0x1c,0x21,0x84,0xc8,0xe9,0xa8,0xae,
0x42,0xa8,0xad,0xfd,0xe7,0x25,0x19,0xd5,0xf3,0x4a,0xef,0x27,0x7f,0xfe,0x3f,0xb6,
0x80,0x50,0x31,0x1a,0xaa,0xae,0xdd,0xb4,0x49,0xf3,0x16,0xb9,0xc3,0x1f,0x72,0x4c,
0xfb,0xf6,0xe5,0x66,0xb2,0x5a,0x6e,0xa6,0xa3,0xa3,0xe6,0xf1,0x84,0x10,0x22,0x87,
0x29,0xd5,0x28,0x6d,0x75,0xc5,0x84,0xb2,0x65,0x11,0xcf,0x66,0xdc,0xab,0x5e,0x5d,
0xb3,0x40,0x8f,0x86,0x2e,0xa8,0xb3,0x83,0x23,0x26,0xfe,0xf6,0xdb,0x93,0x5e,0xfe,
0xd8,0x2,0x92,0xf8,0xb1,0xb1,0x5f,0x5c,0xf3,0x3,0x7,0xf8,0x4,0x22,0x91,0xf0,
0xd7,0x11,0x86,0x59,0x8d,0x7a,0xa3,0x33,0x8d,0x28,0x54,0xe8,0x7e,0xf7,0x8c,0x6f,
0x8d,0x71,0xda,0xf,0xa,0x9,0x21,0x44,0x4e,0x93,0x31,0xdb,0x50,0x55,0xed,0xf3,
0xce,0x3b,0x9a,0x7,0x8a,0xc5,0x29,0xce,0xbf,0x6f,0xdf,0xe5,0x19,0x44,0xd1,0x41,
0x4f,0xfe,0xdc,0xff,0x1f,0xbb,0xe2,0x12,0x1,0x19,0x19,0xb0,0xd0,0x29,0xb8,0x6f,
0xd9,0xa2,0x79,0xe2,0xd7,0x78,0x9,0x45,0x5,0x5,0x69,0x1e,0x47,0x8,0x21,0x72,
0x18,0x4e,0x40,0x3d,0x74,0xe9,0xd4,0x49,0xeb,0x38,0x74,0x98,0x4a,0xd0,0x8d,0xa7,
0x1f,0xba,0x78,0xe2,0xb6,0xea,0xd4,0x9c,0x77,0xf0,0x9c,0xb5,0x6b,0xb5,0x4e,0x1c,
0xb3,0x79,0x28,0x2a,0xb5,0x6f,0x5f,0xa2,0x29,0x73,0x95,0x69,0x2e,0x2e,0x9a,0xc7,
0x13,0x42,0x88,0x6c,0xae,0x44,0x53,0x73,0x65,0xbf,0x5f,0x2b,0x55,0xa2,0x10,0x4e,
0xc0,0x14,0xed,0x37,0xa1,0xb5,0xee,0xe4,0x5a,0xc8,0xff,0xf4,0x9f,0xf7,0x4f,0x2c,
0x20,0xdc,0xdf,0x74,0xc2,0xe5,0xc3,0x9f,0x7e,0x82,0x37,0xf6,0xf2,0x8e,0xd4,0x54,
0xcd,0x32,0x5f,0x86,0x66,0x48,0x2e,0x50,0xc0,0x70,0xc6,0xb2,0xd7,0xd2,0xb0,0x73,
0x67,0xad,0x1b,0x4a,0x8,0x21,0xb2,0x3b,0x43,0x2f,0x8c,0x81,0x7f,0xcf,0x9e,0x9a,
0x7,0x9a,0x4b,0x1,0x28,0x71,0xea,0xd4,0xd5,0x6a,0xe,0xf7,0x63,0x3a,0x9e,0x3e,
0xfd,0xb4,0x6f,0x7b,0x62,0x1,0x49,0xa,0x25,0x3a,0x7c,0xf8,0xfe,0x7d,0xee,0x46,
0xbf,0x62,0xdb,0xc6,0x8d,0x5a,0xdf,0x7,0x2f,0x40,0x31,0x74,0xeb,0xd5,0x4b,0xeb,
0x38,0x42,0x8,0x91,0x5d,0x65,0x4e,0x2a,0x1a,0x8d,0x4b,0x34,0xa9,0x4b,0x17,0xcd,
0x3,0xde,0xc0,0x4e,0xde,0x10,0x15,0xf5,0xac,0x6f,0x7b,0xea,0x93,0x1,0x95,0x53,
0xea,0x0,0x45,0x79,0xf6,0x0,0xcf,0x8a,0xba,0xc3,0x7,0xfc,0xea,0xab,0x9e,0xf5,
0xcc,0xe1,0x15,0x67,0x56,0xad,0xaa,0x75,0x3c,0x21,0x84,0xc8,0x6e,0x52,0x1d,0x2d,
0xed,0xd,0xd,0x3b,0x74,0xc0,0x7d,0x84,0x61,0x77,0xb1,0x62,0x5a,0xc7,0x53,0xdf,
0x55,0xcf,0x18,0x7e,0x5f,0xb9,0xf2,0x59,0xdf,0xf7,0xd4,0x5,0x44,0xad,0xe4,0xe0,
0x9e,0x6f,0xea,0xc6,0x8d,0x9a,0xef,0xd6,0x6b,0x8b,0x17,0x8c,0x8e,0x19,0x3d,0x42,
0x43,0xb5,0x8e,0x23,0x84,0x10,0xd9,0xd,0x1d,0x44,0x5f,0x72,0xed,0xd3,0x47,0xeb,
0x38,0x7c,0x9e,0x8a,0xf0,0xf,0xc7,0x8e,0x25,0x3b,0x3a,0x36,0x3c,0xdd,0x3a,0x26,
0xe6,0x59,0xdf,0xff,0xd4,0x5,0xc4,0xf6,0x28,0xb,0x15,0xa8,0x2d,0xda,0x2c,0x5b,
0xa6,0xf5,0x8d,0xd1,0x27,0xb8,0x82,0x83,0xdd,0xba,0xb9,0x47,0xb0,0x5a,0xa1,0xb7,
0xf6,0x15,0x58,0x8,0x21,0xf4,0xe6,0x56,0xc1,0x12,0x50,0x71,0x54,0xad,0x5a,0xd8,
0x88,0xc6,0xd4,0xa8,0x41,0x3,0xad,0xe3,0x91,0x7,0x6a,0x61,0xcc,0xa2,0x45,0xcf,
0xfb,0xfe,0xa7,0x2e,0x20,0x36,0xea,0x17,0xf0,0x53,0xfe,0x5c,0xb0,0x40,0xeb,0x1b,
0x83,0x5,0xb5,0xa8,0xaf,0xb3,0x33,0x1d,0xb3,0xde,0x52,0xea,0xf7,0xeb,0xa7,0x79,
0x3c,0x21,0x84,0xd0,0x99,0xb2,0x14,0xef,0xa9,0x35,0x47,0x8e,0xd4,0x3c,0xd0,0x9f,
0x38,0x86,0x91,0xf,0x1e,0x18,0xf3,0x1b,0xb7,0x99,0x12,0xbe,0xff,0xfe,0xb9,0xf3,
0x7d,0xd6,0x37,0x24,0x9f,0x31,0x45,0x9f,0xfe,0xec,0xe0,0x41,0xa8,0x94,0x1f,0x71,
0x1a,0xee,0x95,0x65,0x93,0xca,0x33,0x61,0xec,0xdf,0xbf,0xe4,0x10,0xe6,0x92,0x43,
0xf2,0xe5,0xd3,0x3c,0x9e,0x10,0x42,0xd8,0x59,0x89,0xa6,0x69,0xd,0x2a,0x1c,0xf0,
0xf1,0xc1,0x62,0xee,0x1,0x73,0xfb,0xf6,0x9a,0x7,0x8c,0xa3,0x91,0x18,0xbe,0x72,
0x65,0x42,0x2,0xd1,0xc9,0x93,0x37,0x6f,0x3e,0xef,0x65,0x9e,0xb9,0x80,0x64,0xaa,
0x83,0x6a,0x1c,0xf5,0xfc,0x5d,0x9f,0xa7,0xb6,0x15,0xa3,0x69,0xb2,0xab,0xab,0xba,
0xc4,0xfa,0x7a,0xfe,0x33,0x3d,0x7a,0x68,0x1e,0x4f,0x8,0x21,0xec,0xcc,0xe0,0x6b,
0x38,0x6c,0x98,0x38,0x7a,0x34,0xd6,0xa1,0x10,0x26,0x1b,0xc,0x5a,0xc7,0x53,0xaf,
0x62,0x21,0x6a,0x2d,0x5c,0xf8,0xa2,0xd7,0x31,0x3e,0xef,0x1b,0xd3,0xd2,0x8c,0xfb,
0xad,0x89,0xdf,0x7d,0xe7,0x34,0xcc,0xb2,0xce,0xd4,0xe4,0x93,0x4f,0x10,0x8e,0x56,
0xd8,0x5a,0xb0,0xa0,0x56,0x37,0xcc,0x9f,0x72,0x65,0xba,0x34,0x7a,0x74,0xc9,0x58,
0xde,0x56,0x72,0xc8,0xa2,0x45,0x97,0x67,0x10,0x5d,0x9e,0xf1,0xe0,0x81,0x56,0xf1,
0xc4,0x33,0xea,0xa0,0xc,0x63,0xcb,0xa5,0x4b,0x5c,0x9,0x5,0x79,0xca,0x8a,0x15,
0x7a,0xa5,0xa1,0xfc,0xa1,0x96,0x57,0xcb,0x5f,0xbd,0xa,0x40,0xfb,0x7d,0xdc,0x9e,
0x2,0x3f,0x80,0x89,0xe,0x9c,0x3c,0x89,0xf1,0x34,0x41,0x1d,0xaf,0x5f,0xbb,0xa4,
0xaf,0xc4,0xc7,0x74,0xc9,0x6c,0x46,0x2,0x80,0xe1,0x7a,0xb7,0x8a,0xb0,0xb1,0xed,
0x71,0x65,0xad,0xcc,0xd5,0x33,0x8a,0x76,0xeb,0x46,0xab,0x1,0xaa,0xa9,0x5d,0x3c,
0x1e,0x4f,0xe5,0xd0,0xf2,0xe4,0xc9,0xe4,0xba,0xc6,0xf8,0x98,0x2f,0x76,0xed,0x7a,
0xd1,0xeb,0xd1,0x8b,0x5e,0xc0,0x7d,0xbf,0x79,0x94,0xdf,0x94,0x69,0xd3,0xe8,0x2d,
0x4c,0xa2,0xef,0x87,0xd,0xd3,0xee,0xd6,0x1f,0x89,0xa5,0x4f,0xf9,0xf5,0xa1,0x43,
0x13,0xb,0x9a,0xc6,0xc7,0xce,0xfe,0xe2,0xb,0xcd,0xe3,0x9,0x21,0x84,0x46,0xdc,
0x7,0x5b,0xea,0xf8,0x77,0x5e,0xb2,0x84,0xa2,0x78,0x7,0x4e,0x4,0x7,0x6b,0x1e,
0x30,0x16,0x4b,0xf8,0xf5,0xee,0xdd,0x13,0xb,0x3a,0xf4,0x8a,0x9d,0xbd,0x64,0xc9,
0x8b,0x5e,0xee,0xf9,0x1f,0x61,0x3d,0x42,0xeb,0x33,0xd6,0x1b,0x17,0xcf,0x9c,0xc9,
0xe3,0x91,0xc8,0x87,0x2c,0x16,0xcd,0x1b,0x60,0x0,0x33,0xea,0x8d,0x1c,0x59,0xbc,
0x13,0xab,0x1,0x51,0xf9,0xf3,0x6b,0x1e,0x4f,0x8,0x21,0xb2,0x98,0x7b,0x44,0xfa,
0xbc,0xa,0xbd,0xfd,0xfc,0x28,0x9d,0xd7,0xa1,0x9d,0xf6,0xb,0x5,0x79,0x33,0x7d,
0x8a,0x90,0x2b,0x57,0xa,0x6d,0x36,0xf5,0x50,0x2,0x7f,0xfc,0x31,0xab,0xae,0xfb,
0xc2,0x5,0x24,0xf1,0xe3,0x7c,0xa7,0x4f,0x9d,0xbb,0x74,0x89,0x6e,0xd1,0x60,0x7c,
0xa3,0xfd,0x42,0x43,0xdb,0x98,0x88,0x31,0xde,0x52,0x55,0x2d,0x34,0x6a,0x94,0xe6,
0xf1,0x84,0x10,0x22,0xcb,0xd1,0x46,0x43,0x6c,0x78,0xb8,0xbd,0xc6,0x3c,0xa8,0x36,
0x7c,0xb1,0x6a,0xe6,0xcc,0xe8,0x20,0x52,0xa2,0x83,0xcc,0xe6,0xac,0xba,0xee,0xb,
0x17,0x90,0x4c,0x3e,0xfc,0x8e,0x52,0x3c,0x3c,0x1c,0x1e,0x30,0xc3,0x9f,0x59,0xeb,
0x6,0xc1,0x7a,0x7c,0x47,0xbf,0xe,0x1d,0x5a,0x82,0x1f,0xb0,0x2f,0x7b,0x7b,0x6b,
0x1e,0x4f,0x8,0x21,0x5e,0x90,0x7b,0x3,0x6b,0xf,0xdf,0xe5,0xcd,0x9b,0xd3,0x44,
0xac,0xc4,0xb5,0x56,0xad,0xb4,0x8e,0xc7,0xe3,0xb1,0x6,0x83,0x6f,0xdf,0x36,0x3d,
0x30,0x76,0x76,0xd8,0x37,0x7f,0x7e,0x56,0x5f,0x3f,0xcb,0xa,0x48,0x62,0x90,0x43,
0xe7,0xe8,0xa0,0x63,0xc7,0xd0,0x9c,0x96,0xe0,0x82,0xf6,0xbb,0xf7,0xd2,0xcb,0x8,
0xc0,0x6,0x27,0x27,0x65,0xbe,0xf1,0x23,0x5a,0xfe,0xf9,0xe7,0x5a,0xc7,0x13,0x42,
0x88,0xe7,0xc7,0x6a,0x20,0x1b,0x8d,0x34,0x8c,0x77,0x28,0x73,0xc3,0xc3,0xed,0x15,
0x95,0x16,0x50,0x1b,0xde,0x34,0x63,0x46,0x3c,0x11,0x1d,0xa7,0x5b,0xb7,0xb2,0xfa,
0xfa,0x59,0xd7,0x3,0xb1,0x5d,0xf0,0x3e,0xff,0xa2,0x2e,0x19,0x3f,0x1e,0x35,0x91,
0x8a,0xe,0xaa,0xaa,0x79,0x3,0x4d,0xe4,0x9,0x34,0xb1,0x53,0x27,0xcf,0xaf,0xac,
0x5,0x7d,0x43,0x1a,0x35,0xd2,0x3a,0x9e,0x10,0x42,0x3c,0x2b,0xf7,0x72,0xd6,0xb0,
0x3f,0xcb,0xf,0x18,0x80,0xbe,0x1c,0x8d,0xab,0x95,0x2a,0x69,0x1d,0xcf,0x76,0x10,
0xa0,0x53,0x8a,0xd1,0xc9,0x7c,0xfc,0xcb,0x2f,0xb5,0x8a,0x93,0xe5,0x5,0xe4,0xf2,
0xc,0x87,0x9f,0xe2,0xaa,0x9c,0x3c,0xc9,0x11,0x34,0x16,0xcb,0xec,0x37,0x6d,0x51,
0x6d,0xc2,0xaf,0x29,0x9b,0x22,0x22,0x64,0xc1,0xa1,0x10,0x22,0xbb,0x70,0x8f,0x78,
0x30,0x22,0x20,0xca,0xcb,0x8b,0xaa,0x73,0x5b,0xdc,0x9e,0x3c,0xd9,0x6e,0x81,0x47,
0x52,0x45,0xf6,0xd,0xf,0x3f,0x7f,0x81,0x94,0xf3,0x17,0x6e,0xdf,0xd6,0x2a,0x4c,
0x96,0x17,0x90,0x4c,0x3f,0xa9,0x95,0x32,0x5e,0x9f,0x30,0xc1,0x76,0xc6,0xae,0x66,
0x71,0x1e,0xa1,0xa6,0xbc,0x1a,0x85,0xca,0x97,0x57,0x3d,0x2d,0xed,0xa,0x34,0x1b,
0x37,0x4e,0xeb,0x78,0x42,0x8,0xf1,0x24,0xe4,0x6d,0x48,0x56,0xbd,0xe7,0xcd,0xc3,
0x6e,0x34,0x44,0x31,0x3b,0xcc,0x1a,0x6d,0x82,0x4f,0x78,0xec,0x9f,0x7f,0x5a,0xef,
0x18,0xeb,0x29,0xa3,0x66,0xcd,0xd2,0xfc,0xfe,0xb4,0xe,0xe0,0xbe,0xc7,0x1c,0xe3,
0x5f,0x6f,0xf6,0x6c,0xea,0x84,0xb2,0xb8,0x61,0x87,0x3d,0xad,0xfa,0xe1,0x1a,0x7f,
0x6b,0xb5,0xa2,0x2,0x76,0x2b,0x17,0x6a,0xd5,0xca,0x1c,0x9b,0x11,0x42,0x8,0x3b,
0x71,0x8f,0x30,0xb7,0xf5,0x3d,0xf1,0xee,0xbb,0x34,0x11,0x2b,0x95,0xce,0xcf,0xbf,
0xd7,0xd4,0xb3,0xa2,0x74,0x72,0xc3,0x9a,0xbe,0x7d,0xaf,0xa4,0x98,0x6e,0xc4,0xf8,
0xcd,0x9b,0xa7,0x75,0x3c,0xed,0x7a,0x20,0x8f,0x18,0x56,0x9a,0xfc,0x68,0xd0,0xd8,
0xb1,0xb8,0x81,0x79,0x78,0x29,0x25,0x45,0xeb,0x78,0x98,0x83,0xe2,0x14,0x6c,0x34,
0x22,0x91,0x26,0x72,0xcf,0xa5,0x4b,0xe5,0x91,0x96,0x10,0xc2,0x5e,0x4a,0xe,0xb9,
0x3f,0xb9,0xfc,0x75,0x4f,0x4f,0x1a,0x84,0x26,0x4a,0xef,0x99,0x33,0xed,0x16,0x78,
0x4,0x55,0xc3,0x95,0xd3,0xa7,0xaf,0xa4,0x18,0xaf,0xbb,0xfa,0xbe,0xf8,0x16,0x25,
0x4f,0x4b,0xf3,0x2,0x72,0x79,0x6,0x51,0x74,0xd0,0x8d,0x1b,0x1c,0x44,0xc7,0xd0,
0xca,0x8e,0xcf,0x0,0x3f,0xe7,0x63,0xf0,0xac,0x58,0x51,0xed,0x6b,0x59,0x52,0x60,
0xcb,0x27,0x9f,0xd8,0x2d,0xae,0x10,0x22,0xf,0x62,0x6,0x14,0x25,0x23,0xcc,0x98,
0xcf,0x90,0xb2,0x64,0x9,0x8a,0xa0,0xf,0x6e,0x17,0x2d,0x6a,0xb7,0xe8,0x7d,0xa8,
0x34,0xef,0x18,0x32,0x4,0x20,0x65,0x7,0x59,0xad,0xf6,0x8a,0xab,0x79,0x1,0xb1,
0xf1,0x38,0x65,0x5c,0xe8,0xbc,0x66,0xce,0x1c,0xbc,0x42,0xf5,0x79,0xf2,0xb3,0x1f,
0x5c,0xf2,0xdc,0xde,0x45,0x47,0x54,0x18,0x34,0xc8,0x36,0xff,0xda,0x6e,0x71,0x85,
0x10,0x79,0x86,0x87,0x93,0x75,0xb9,0xff,0xab,0xc3,0x86,0x51,0x3d,0x84,0x51,0xfb,
0xc6,0x8d,0xed,0x16,0x78,0x2d,0x4d,0xc7,0xe4,0x55,0xab,0x92,0x9c,0x8c,0x9b,0x62,
0x5f,0xde,0xb2,0xc5,0xde,0xf7,0x6d,0xb7,0x2,0x72,0xf8,0x8,0x29,0x87,0x8f,0x58,
0x2c,0xb4,0x1a,0x7,0xb8,0x43,0xbf,0x7e,0x76,0x5b,0x70,0x98,0x8,0x7,0xc4,0x10,
0x51,0x17,0xb5,0xb0,0xd2,0xf9,0x9b,0x6f,0xbc,0x36,0x33,0xfb,0xa5,0xba,0xbb,0xdb,
0xeb,0xbe,0x85,0x10,0xb9,0x97,0x67,0x8a,0xa5,0xb3,0xff,0xa5,0x57,0x5e,0xe1,0x15,
0x5c,0x3,0x49,0x76,0x7c,0xc2,0x62,0x3b,0x19,0x76,0x9d,0x75,0xa9,0x61,0xe4,0x90,
0x21,0x7a,0xdd,0xbf,0xdd,0xa,0x88,0xcd,0x15,0x32,0x51,0x1c,0x6d,0xdf,0x8e,0x57,
0xc9,0x15,0x69,0x76,0xd8,0xe,0xde,0x66,0x12,0x3e,0x81,0xbf,0x9b,0x9b,0xa5,0xac,
0xe5,0x14,0xf5,0x5b,0xb5,0x2a,0x20,0x8a,0xd5,0x80,0x28,0x7,0x7,0x7b,0xdf,0xbf,
0x10,0x22,0xe7,0x2b,0xd1,0x94,0xd5,0x2a,0xd3,0x5c,0x5d,0x55,0x3,0xca,0xf3,0xc6,
0x95,0x2b,0x29,0x14,0xa5,0xe1,0x6c,0xc7,0xcf,0x93,0x6f,0x68,0x3a,0x3b,0x8f,0x1e,
0x6d,0xdb,0x4a,0x4a,0xaf,0x76,0xb0,0x7b,0x1,0xb1,0x71,0xda,0x60,0xbc,0x97,0x1e,
0x33,0x6c,0x98,0x6d,0x93,0x2f,0x7b,0xc5,0xa5,0x40,0xf8,0xe2,0x3f,0x75,0xea,0xdc,
0xfa,0xce,0xb2,0x4d,0x8d,0xb2,0xdf,0x8a,0x50,0x21,0x44,0x6e,0xc0,0xc,0x18,0xc,
0x86,0x78,0xcb,0x78,0xcb,0xef,0x4b,0x97,0x52,0x0,0x8f,0xa3,0x2f,0x4b,0x96,0xb4,
0x5b,0xf4,0xf1,0x48,0xe4,0x43,0x7,0xe,0x24,0xde,0x30,0x6e,0x8b,0xdd,0x30,0x77,
0xae,0xde,0xad,0xa1,0x5b,0x1,0xb1,0x2d,0x70,0xe1,0x33,0xea,0x5b,0x3c,0x7d,0xd0,
0x20,0xbb,0x27,0x70,0x18,0xaf,0xd1,0xe9,0x81,0x3,0xdd,0xf6,0x9a,0xc7,0xfa,0xbf,
0xf1,0xde,0x7b,0x7a,0xb5,0x83,0x10,0x22,0xe7,0x70,0x8f,0xb0,0x4c,0xe,0x28,0x38,
0x75,0x2a,0xee,0x61,0x2c,0x2e,0x34,0x6d,0x6a,0xaf,0xb8,0x1c,0x81,0x78,0xdc,0x37,
0x9b,0xd5,0x57,0x10,0x40,0x9b,0x7a,0xf4,0x0,0x88,0x0,0xed,0xd7,0xd7,0x3d,0x89,
0x6e,0x5,0xc4,0x26,0xb9,0xa3,0x63,0xe5,0xd8,0xe4,0x55,0xab,0xd0,0x8c,0xde,0xc3,
0xaf,0x3f,0xfc,0x60,0xef,0xf8,0x94,0x82,0x60,0x9c,0x5e,0xb8,0xd0,0xb3,0x82,0xd5,
0x2b,0x20,0xea,0xf5,0xd7,0xf5,0x6e,0xf,0x21,0x44,0xf6,0xe3,0xfe,0x87,0xf9,0xa4,
0x7f,0xb7,0x1e,0x3d,0x68,0x22,0x46,0xb1,0xe7,0xd0,0xa1,0x76,0x4f,0xa0,0x14,0x45,
0xf3,0xf6,0x71,0xe3,0xae,0x56,0x73,0xb8,0x1f,0xd3,0xf1,0xf4,0x69,0xbd,0xdb,0xc3,
0x46,0xf7,0x2,0x62,0xe3,0xb4,0xc3,0xf8,0x63,0xfa,0x6b,0xfd,0xfa,0xa1,0xd,0xd,
0x44,0xc0,0xc5,0x8b,0xf6,0x8a,0x6b,0x7b,0x76,0xa9,0xee,0x55,0x47,0xf3,0xfb,0x2b,
0x56,0x78,0x34,0x4a,0xf,0xf3,0xd,0xf1,0xf5,0xd5,0xbb,0x3d,0x84,0x10,0xfa,0x73,
0xbb,0x64,0x1d,0x1c,0x10,0xd5,0xa2,0x5,0x2d,0x47,0x11,0x1e,0xa0,0xfd,0xc2,0xbc,
0x7f,0x19,0x88,0x8d,0x48,0xdd,0xb9,0x33,0xa9,0x9a,0xb1,0x6d,0xac,0x4f,0xf6,0x7b,
0xe4,0x9e,0x6d,0xa,0x48,0xe6,0x23,0xad,0xea,0xe8,0x40,0x9d,0xdf,0x7b,0xcf,0x5e,
0x5b,0xa0,0xd8,0x50,0x15,0x84,0xc0,0xab,0x48,0x11,0xf4,0x50,0x6e,0x28,0x6f,0x6e,
0xdc,0x68,0x1b,0x24,0xd3,0xbb,0x5d,0x84,0x10,0xf6,0xe7,0x11,0x65,0x5e,0x1e,0x10,
0x55,0xad,0x9a,0x32,0x43,0x6d,0xc2,0x73,0xa3,0xa2,0x32,0x17,0x28,0xdb,0x89,0x6d,
0x33,0x44,0x4a,0xb4,0x6,0x58,0x86,0x75,0xe9,0x92,0x5d,0x1e,0x59,0xfd,0x53,0xb6,
0x29,0x20,0x36,0x49,0xa1,0xa6,0x66,0xd1,0x41,0xbb,0x77,0xb3,0x8a,0x57,0xd1,0xe3,
0xd3,0x4f,0xed,0x9e,0xc0,0x8,0x8e,0xc4,0x88,0x32,0x65,0x94,0x59,0xd6,0x62,0xe6,
0x22,0xbf,0xfe,0xea,0xe5,0xc5,0x5c,0xb9,0x72,0xe1,0xc2,0x7a,0xb7,0x8b,0x10,0x42,
0x7b,0x99,0x4f,0x20,0x8e,0xe3,0xb8,0xea,0xbf,0x79,0x33,0x96,0xa1,0x19,0x92,0xb,
0x14,0xb0,0x77,0x1e,0xca,0x44,0x6e,0x4b,0x8b,0x43,0x43,0xaf,0xcc,0x72,0xae,0x70,
0x36,0xec,0xf2,0x65,0xbd,0xdb,0xe5,0x71,0x34,0xdf,0xb,0xeb,0xf9,0x3d,0x9c,0xed,
0xe0,0xf1,0x86,0x65,0xa4,0xff,0xe4,0x8d,0x1b,0x71,0xc,0x53,0xf0,0x43,0xb3,0x66,
0x76,0xcf,0x22,0x18,0xd7,0x79,0xde,0x7f,0xfe,0x63,0xae,0x63,0x72,0xe3,0x25,0x4d,
0x9a,0xa4,0xb4,0x23,0x25,0x2e,0xf2,0xee,0x5d,0xbd,0x5b,0x47,0x8,0x91,0x75,0x3c,
0x3e,0x7a,0x50,0xb1,0x52,0xd9,0x52,0xa5,0x70,0xc4,0xd8,0x28,0x83,0x76,0xed,0xc2,
0x71,0xfe,0x2,0xa6,0xd2,0xa5,0xed,0x9e,0xc8,0x97,0x58,0xc3,0xbf,0x7e,0xf5,0x55,
0x62,0x90,0x43,0xe7,0xd8,0x52,0x83,0x7,0xeb,0xdd,0x2e,0x4f,0x92,0xed,0x7a,0x20,
0x7f,0x79,0xd8,0x65,0x53,0x4b,0x98,0x3e,0xb3,0xbc,0xd4,0xb5,0x2b,0xee,0xd2,0x58,
0x8e,0xb4,0xff,0x7c,0x67,0xfa,0x16,0xc5,0xa8,0x4f,0xed,0xda,0x8e,0xe9,0x96,0x15,
0xca,0xdd,0xf5,0xeb,0xdd,0x23,0x98,0x6b,0xd4,0x70,0x76,0xd6,0xbb,0x75,0x84,0x10,
0x2f,0xae,0xd4,0xd4,0xfb,0x15,0x7c,0x43,0x3c,0x3c,0xd8,0xcb,0x58,0xc9,0x3a,0xf7,
0xf7,0xdf,0x75,0x2b,0x1c,0xbe,0xd8,0xcd,0x53,0x77,0xef,0x76,0xff,0xcc,0xd4,0xc9,
0xa5,0xdd,0xf0,0xe1,0x7a,0xb7,0xcb,0xd3,0xca,0xc6,0x3d,0x90,0xff,0xe6,0x51,0xda,
0xbc,0xc7,0xff,0xe0,0xcb,0x2f,0xe3,0xa,0x4c,0x38,0xbd,0x67,0xf,0x5c,0x51,0xd,
0x53,0x75,0xd8,0x24,0xf1,0xd1,0x5f,0x74,0x9a,0x93,0xa9,0xa1,0xf5,0x62,0xab,0x56,
0x37,0x36,0x91,0x72,0x36,0xec,0xce,0x1d,0xbd,0xdb,0x47,0x8,0xf1,0xf4,0xdc,0xf6,
0x3e,0xd8,0xea,0xff,0x46,0xe9,0xd2,0x74,0xdb,0x38,0x87,0x17,0x6f,0xdd,0x4a,0x3d,
0x78,0x19,0x35,0x2c,0x57,0xce,0xee,0x89,0x8c,0xc3,0x68,0xc4,0x24,0x27,0x1b,0x6e,
0x5b,0x7f,0x52,0x43,0x6a,0xd4,0xb8,0x34,0xd2,0xf9,0x4c,0x5c,0x64,0x62,0xa2,0xde,
0xed,0xf3,0xb4,0xb2,0x71,0xf,0xe4,0xbf,0x25,0xc6,0x3b,0xd4,0x8b,0xa9,0x75,0xf4,
0x28,0xc7,0x20,0x1f,0x7e,0x1f,0x38,0x50,0xb7,0x44,0xe2,0x50,0x9f,0x46,0xd6,0xaf,
0xef,0xd4,0xd1,0x72,0xd3,0x68,0xd9,0xba,0xb5,0xe4,0x10,0xe6,0x80,0xa8,0x22,0x45,
0xf4,0x6e,0x1f,0x21,0xc4,0x93,0xd9,0xc6,0x38,0x28,0xc0,0xb8,0x9d,0xdb,0xed,0xde,
0xad,0x57,0xe1,0xb0,0xad,0xeb,0x60,0xa2,0x66,0x14,0xd5,0xa9,0x53,0x4e,0x2b,0x1c,
0x36,0x39,0xa6,0x7,0xf2,0x4f,0x1e,0xfe,0xe6,0x1e,0xfe,0x9e,0x53,0xa7,0xe2,0x36,
0xe6,0xa2,0xe0,0x88,0x11,0x7a,0xe5,0xc1,0x91,0xe4,0x85,0x31,0x27,0x4e,0x98,0x60,
0x4c,0xe2,0xf6,0x2d,0x5a,0x24,0xb4,0x20,0x8a,0x75,0x49,0x4a,0xd2,0xbb,0x7d,0x84,
0x10,0x7f,0xb1,0xcd,0xaa,0xca,0x1c,0x1c,0x5f,0x8c,0x9,0x14,0x54,0xa2,0x84,0xfd,
0x13,0x79,0xb8,0x7,0x20,0xc7,0x60,0x34,0xfa,0x7,0x7,0x27,0xa5,0x3a,0xcc,0x8c,
0x69,0xbc,0x74,0xa9,0xde,0xed,0xf3,0xbc,0x72,0x4c,0xf,0xe4,0x9f,0x12,0x63,0x4c,
0xb,0x63,0xae,0x8c,0x1a,0xa5,0xd7,0x2,0x44,0x1b,0xa,0xe1,0x4,0x4c,0xa9,0x52,
0xc5,0xe2,0x61,0x9d,0x44,0x73,0xe,0x1e,0xcc,0xfc,0x87,0x2a,0x84,0xd0,0x9d,0x7b,
0x9a,0xb5,0xa5,0xdf,0xd1,0xa6,0x4d,0x71,0x19,0xe,0xbc,0x6b,0xc7,0xe,0xdd,0xa,
0x87,0x4d,0x7f,0xba,0xc3,0xdf,0x8d,0x1f,0x9f,0xd3,0xb,0x87,0x4d,0x8e,0xed,0x81,
0xd8,0x94,0x66,0xe6,0xd2,0xec,0xe4,0x64,0x56,0x2d,0x87,0x9d,0xe7,0xfc,0xf6,0x1b,
0x95,0x42,0x15,0x7c,0x5d,0xb7,0xae,0x6e,0x9,0x3d,0xda,0x25,0x53,0xf5,0x50,0xe,
0xd0,0xc9,0xce,0x9d,0x93,0x87,0x19,0x27,0x47,0x5f,0xdf,0xb4,0x49,0xef,0x76,0x12,
0x22,0x2f,0x79,0x38,0x66,0x1a,0x12,0xc2,0xa3,0xe1,0xc9,0x1,0xf3,0xe6,0xd1,0x44,
0x78,0x50,0x4d,0x93,0x49,0xb7,0x84,0x1e,0x7d,0xd1,0x4d,0xfc,0xc6,0xb8,0x2c,0xa6,
0x54,0xd7,0xae,0xf,0x27,0x9,0xd9,0x61,0x37,0x72,0x8d,0xe5,0xd8,0x1e,0x88,0x4d,
0x3c,0x11,0xc5,0x53,0x5a,0x1a,0x16,0x9a,0xaa,0x67,0x1c,0x6f,0xd7,0xe,0x41,0x54,
0x9b,0xd7,0x47,0x47,0xeb,0x96,0xd0,0xa3,0x79,0xe3,0x54,0x40,0xed,0xa1,0xc6,0xaf,
0x5b,0xe7,0x76,0xc6,0xe2,0x10,0xd0,0x30,0x34,0x54,0xef,0x76,0x12,0x22,0x77,0x63,
0x35,0x90,0x8d,0x46,0xf7,0x8,0xf3,0xa4,0x80,0x82,0xe1,0xe1,0xb0,0xa0,0x16,0x82,
0x17,0x2d,0xd2,0xbd,0x70,0x2c,0x46,0x4f,0x5e,0xb2,0x69,0x93,0xfb,0x9,0xe3,0x8f,
0xce,0xed,0xba,0x77,0xcf,0x2d,0x85,0xc3,0x26,0xc7,0xf7,0x40,0xfe,0xc9,0xf5,0x75,
0x56,0x2b,0x7d,0x5c,0xa2,0x84,0xf1,0x98,0xb5,0x71,0xc6,0xfd,0x1d,0x3b,0xe0,0xc4,
0xbf,0x60,0x75,0x36,0xd8,0x9a,0x64,0x1e,0xb5,0xe5,0x95,0x4b,0x97,0x72,0x92,0x71,
0x93,0x4b,0x70,0x68,0x68,0x52,0x28,0xd1,0xe1,0xc3,0xf7,0xef,0xeb,0x9d,0x96,0x10,
0x39,0x99,0x7b,0x4,0xab,0x15,0x7a,0x17,0x2b,0x46,0x7d,0x2d,0x9f,0x1a,0x56,0xfc,
0xf8,0x23,0xdc,0x30,0x1c,0x6e,0x4d,0x9a,0xe8,0x9d,0x17,0x4c,0x38,0x88,0x6f,0xf7,
0xec,0xc9,0xa8,0x60,0xaa,0x6b,0xda,0xde,0xbc,0xf9,0xd5,0x2d,0x44,0x27,0x86,0xa7,
0xa6,0xea,0x9d,0x56,0x56,0xcb,0x75,0x5,0xc4,0xa6,0x4,0x3f,0x60,0x5f,0xf6,0xf6,
0x36,0x14,0x34,0x8e,0xa2,0xfd,0x3b,0x77,0xa2,0x0,0x4f,0xa6,0x90,0x52,0xa5,0xf4,
0xce,0xb,0xd,0x1,0x34,0x3c,0x7c,0x58,0x1d,0x90,0xb1,0x13,0xf1,0x1d,0x3a,0x24,
0xd7,0xcd,0xd7,0x24,0x66,0x63,0x7c,0xbc,0xde,0x69,0x9,0x91,0x93,0xd8,0xe,0x72,
0xca,0x3c,0x8f,0xc3,0xce,0xdb,0xaa,0x3f,0x8e,0x6d,0xbb,0x75,0xb3,0x9b,0xc9,0x8b,
0x7,0x36,0x6d,0x9a,0xdb,0x17,0x1e,0xe7,0xf8,0x47,0x58,0x8f,0x73,0x95,0xf2,0x51,
0x1c,0x5d,0xbc,0x88,0x2b,0xea,0x41,0x2c,0x6d,0xd2,0x84,0xc7,0x63,0x18,0x4c,0xd9,
0x60,0x76,0xd4,0x76,0x0,0xdb,0x6b,0xd4,0x20,0x67,0x43,0x2,0xcf,0x3e,0x7a,0xd4,
0xd3,0x23,0x3d,0x2d,0xc0,0xbf,0x53,0x27,0xbd,0xd3,0x12,0x22,0x7b,0x7b,0x78,0xe6,
0xb8,0x87,0x93,0x65,0x99,0xff,0xab,0x23,0x46,0xa8,0x7b,0x79,0xa,0xea,0xef,0xdc,
0x99,0x6d,0xa,0xc7,0x79,0x2a,0xc2,0x3f,0x1c,0x3b,0x66,0xfa,0xd8,0x54,0xda,0xf4,
0x6a,0xcb,0x96,0xb9,0xbd,0x70,0xd8,0xe4,0xda,0x1e,0xc8,0x3f,0x95,0x68,0x9a,0xd6,
0xa0,0xc2,0x1,0x1f,0x1f,0x43,0x37,0x43,0x69,0xc3,0x9f,0x5b,0xb7,0xda,0xf6,0xbc,
0xd2,0x3b,0x2f,0x1b,0x1e,0x4f,0x13,0x78,0xfc,0x8a,0x15,0xe,0xbd,0x8d,0x1f,0x3b,
0x76,0xee,0xdd,0x3b,0x9e,0x88,0x8e,0xd3,0xad,0x5b,0x7a,0xe7,0x25,0x84,0x9e,0x8a,
0x77,0x62,0xe,0x88,0x72,0x73,0x33,0x5,0x5a,0x42,0xd5,0xa4,0xc5,0x8b,0xf1,0x9,
0xbe,0xa6,0x79,0x2d,0x5a,0xe8,0x9d,0x57,0xa6,0xf7,0x91,0x8e,0x61,0x87,0xe,0x61,
0xa4,0x29,0x3f,0x1f,0x69,0xd1,0x22,0xb1,0x20,0x51,0xec,0xec,0x94,0x14,0xbd,0xd3,
0xb2,0x97,0x3c,0x53,0x40,0x6c,0xb2,0xcd,0xa,0xd4,0xc7,0xe0,0xf1,0xf4,0x1e,0x7f,
0x75,0xee,0x1c,0x57,0xc6,0x27,0xf4,0x65,0x48,0x48,0x72,0x5d,0x53,0xd9,0x98,0x8d,
0x3b,0x77,0xea,0x9d,0x97,0x10,0xf6,0xe4,0xfe,0xa6,0x39,0x38,0xa0,0x7a,0x97,0x2e,
0x58,0x80,0xba,0x1c,0x37,0x73,0x66,0xe6,0x6e,0xd9,0xd9,0x4,0xbf,0x87,0x65,0xe8,
0xb1,0x7d,0xbb,0xb9,0xae,0xa9,0xab,0x1a,0xdd,0xb6,0x6d,0x5e,0xe9,0x71,0xfc,0x53,
0x9e,0x2b,0x20,0x36,0xb6,0xc1,0x76,0x43,0x67,0xab,0x77,0x46,0xca,0x96,0x2d,0x34,
0x91,0xcf,0x62,0x53,0xe5,0xca,0x7a,0xe7,0x95,0xe9,0xd1,0x82,0x23,0x2c,0xa7,0x36,
0xd8,0xb5,0x74,0xa9,0xf2,0xb5,0x71,0x1b,0xcd,0x1e,0x3c,0xf8,0xf2,0xc,0xa2,0xe8,
0xa0,0x1b,0x37,0xf4,0x4e,0x4f,0x88,0xac,0x64,0xdb,0x93,0x2a,0xe3,0xa0,0x69,0x38,
0xcd,0x9a,0x3d,0x1b,0x7b,0xb9,0x1b,0xd5,0x6c,0xdf,0x5e,0xef,0xbc,0xfe,0xe5,0xd1,
0xac,0x2a,0x65,0xb3,0x69,0xc9,0xbd,0x1f,0x3b,0x74,0xb8,0x3c,0x83,0xe8,0xf2,0x8c,
0x7,0xf,0xf4,0x4e,0x4b,0x2f,0x79,0xb6,0x80,0xd8,0xd8,0xb6,0x22,0x51,0x5d,0x2d,
0xeb,0x78,0xd8,0x9a,0x35,0x98,0x85,0x37,0xe0,0xf2,0xda,0x6b,0x7a,0xe7,0xf5,0x4f,
0xbc,0x90,0xc2,0x51,0x23,0x31,0x51,0xd9,0xa4,0x76,0xa7,0xb6,0x83,0x6,0x5d,0x99,
0xe5,0xe8,0x11,0x1d,0xb4,0x72,0xa5,0xde,0x79,0x9,0xf1,0x3c,0x6a,0x54,0x67,0xb5,
0x46,0x75,0x93,0x29,0x39,0xc3,0xfa,0x61,0xea,0xec,0x1,0x3,0xd8,0x97,0x1b,0x53,
0xdb,0x49,0x93,0xb0,0x1b,0xd,0x51,0x2c,0x7f,0x7e,0xbd,0xf3,0xfb,0x27,0x5e,0x46,
0xd5,0xb0,0xfe,0x9b,0x6f,0x3c,0x6,0x1b,0x4f,0x39,0x7,0xf5,0xee,0x7d,0xf8,0x8,
0x29,0x87,0x8f,0x58,0x2c,0x7a,0xe7,0xa5,0xb7,0x3c,0x5f,0x40,0x6c,0x2,0xa2,0x58,
0xd,0x88,0x72,0x70,0xb8,0xe5,0x64,0x7d,0x43,0xad,0xb8,0x68,0x11,0xfa,0xf0,0x4f,
0xd4,0xb1,0x6b,0x57,0xbd,0xf3,0x7a,0x1c,0x5b,0x17,0x5a,0xd9,0x8d,0x3f,0x15,0x87,
0xc1,0x83,0xaf,0xec,0x71,0x18,0x76,0x3a,0xec,0xf8,0x71,0xbd,0xf3,0x12,0xe2,0x7f,
0xf1,0xd8,0x66,0xad,0x14,0xe0,0xd8,0xb8,0x31,0xee,0x72,0x1a,0xd7,0xf9,0xf2,0x4b,
0xf4,0xe5,0x68,0x5c,0xad,0x54,0x49,0xef,0xbc,0xfe,0x9d,0xe8,0xa3,0x2d,0x47,0xe,
0xb2,0xb,0x56,0x4d,0x9a,0x94,0x44,0xe,0x88,0xa1,0x89,0x13,0x73,0xdb,0x3a,0x8e,
0x17,0x25,0x5,0xe4,0x5f,0x98,0x1,0x22,0xf7,0xda,0x96,0x2a,0x7e,0xbf,0x4e,0x9e,
0x4c,0x97,0x71,0x98,0x6,0x7d,0xf4,0x91,0xde,0x59,0x3d,0xd6,0xa3,0x93,0x1b,0xf9,
0xc,0x1c,0x79,0xcf,0xc2,0x85,0x19,0x6c,0x2a,0x60,0xf4,0x18,0x3f,0xfe,0xcf,0x6d,
0xa4,0x9c,0xfa,0xe8,0xea,0x55,0xbd,0xd3,0x13,0x79,0x9b,0x7b,0x44,0xfa,0xbc,0xa,
0xbd,0xfd,0xfc,0x50,0x9e,0x56,0x1b,0x8a,0x4e,0x9b,0x46,0x5d,0xf1,0x33,0xd6,0xb6,
0x6e,0xad,0x77,0x5e,0x8f,0x63,0xdb,0xe4,0x10,0x6f,0x63,0x16,0x22,0x7b,0xf4,0xc8,
0x2d,0x5b,0x8e,0x68,0x45,0xa,0xc8,0x13,0xd8,0x6,0xf3,0xe8,0x8,0x42,0xd5,0x2f,
0xe6,0xcf,0x87,0x5,0xb5,0xa8,0x6f,0x36,0x3e,0xf,0xc4,0x1b,0x7b,0x79,0x47,0x6a,
0x2a,0x6e,0xe2,0x3b,0x7a,0x79,0xf6,0x6c,0x1e,0x6c,0x5a,0x90,0xd1,0x6a,0xda,0xb4,
0xa4,0x50,0x52,0xce,0xcc,0xbf,0x7e,0x5d,0xef,0xf4,0x44,0xee,0x56,0xaa,0x51,0xda,
0xea,0x8a,0x9,0x65,0xcb,0x5a,0xab,0x1a,0xa6,0xa9,0xc3,0xc7,0x8d,0xa3,0x74,0x5e,
0x87,0x76,0x5d,0xba,0x60,0x1d,0xa,0x61,0xb2,0xc1,0xa0,0x77,0x7e,0x8f,0xf3,0xd7,
0x34,0x7f,0x6a,0x4d,0x63,0x82,0x82,0x6c,0x27,0xa3,0xea,0x9d,0x57,0x76,0x27,0x5,
0xe4,0x29,0x79,0xd6,0x33,0x87,0x57,0x9c,0x59,0xb5,0xaa,0x1a,0x4c,0x7,0x33,0xfc,
0x56,0xad,0xa2,0x89,0xfc,0x1d,0xd,0x2a,0x5b,0x56,0xef,0xbc,0x9e,0xe8,0xd1,0xde,
0x5c,0x9c,0x8a,0x30,0xec,0xff,0xea,0x2b,0x36,0x9b,0xce,0x5a,0xa6,0xce,0x9c,0x99,
0xbc,0x98,0x94,0xb3,0x61,0xd7,0xae,0xe9,0x9d,0x9e,0xc8,0xd9,0x6c,0x5,0x23,0xa3,
0xa2,0xa1,0xab,0xda,0x67,0xd4,0x28,0xae,0xcc,0xd1,0xbc,0xa2,0x5b,0x37,0xdd,0xb7,
0x10,0x79,0x5a,0x8f,0xce,0xf7,0x31,0x8e,0x34,0x35,0x42,0xe3,0xa0,0x20,0xd9,0x4d,
0xfb,0xd9,0x48,0x1,0x79,0x46,0x45,0x5a,0xb2,0x5a,0x6e,0x66,0xc1,0x82,0x4e,0xd5,
0xad,0x73,0x4d,0x8b,0xbf,0xf9,0x6,0x8b,0xb9,0x17,0xd2,0xde,0x7c,0x53,0xef,0xbc,
0x9e,0x16,0xff,0x8c,0x3f,0xe0,0x93,0x9e,0x4e,0x2f,0xd1,0x0,0x1c,0x8c,0x8a,0x52,
0x4b,0xaa,0xe3,0x95,0xc5,0x9f,0x7e,0x9a,0xec,0xe8,0xd8,0xf0,0x74,0xeb,0x98,0x18,
0xbd,0xf3,0x13,0xd9,0x9b,0x7b,0x84,0xf9,0xa2,0x5f,0x6a,0xf5,0xea,0xd4,0x84,0xde,
0x27,0xef,0xc1,0x83,0xf1,0x23,0x2f,0xe5,0x8d,0xef,0xbc,0x83,0x39,0x28,0x4e,0xc1,
0x46,0xa3,0xde,0xf9,0x3d,0xb5,0x15,0x0,0x56,0xcc,0x9f,0x5f,0xe8,0x8a,0xc9,0x48,
0xd1,0x3,0x7,0x46,0x7,0x91,0x12,0x1d,0x64,0x36,0xeb,0x9d,0x56,0x4e,0x23,0x5,
0xe4,0xb9,0x3d,0x5a,0x19,0xdb,0xc8,0xba,0xd8,0x7f,0xe6,0xd0,0xa1,0xfc,0x1,0x37,
0xc0,0xf4,0x29,0x53,0x28,0x14,0xa5,0xe1,0xec,0xe0,0xa0,0x77,0x76,0x4f,0xad,0x26,
0x52,0xd1,0x41,0x55,0xe1,0x40,0x2b,0xf9,0xc3,0x9f,0x7e,0x52,0x67,0xd0,0x69,0x65,
0x43,0x44,0x44,0x72,0x29,0xc3,0x8c,0xe8,0xa0,0x5f,0x7f,0x7d,0x38,0x68,0xa8,0xaa,
0x7a,0xa7,0x29,0xec,0x2b,0x73,0x97,0xeb,0xf9,0x96,0x76,0x4e,0x27,0xdf,0x7a,0x8b,
0x96,0x61,0x30,0x5d,0xec,0xdb,0xd7,0x76,0xa0,0x9a,0xde,0xf9,0x3d,0x2b,0x3e,0x81,
0x48,0x24,0xdc,0xb8,0xc1,0xdb,0xb9,0x1e,0x17,0xe8,0xdd,0x3b,0xb9,0xa3,0x63,0xe5,
0xd8,0xe4,0x55,0xab,0xf4,0xce,0x2b,0xa7,0x93,0x2,0x92,0x45,0x32,0xbf,0x99,0xcd,
0xa3,0x2e,0xb4,0xe9,0xfb,0xef,0x71,0x95,0x7f,0xc7,0x58,0x3f,0x3f,0xbd,0xf3,0x7a,
0x6e,0x85,0x69,0x24,0x1f,0x4a,0x48,0x40,0x3e,0x7c,0x8c,0x2e,0x91,0x91,0x68,0x6e,
0xad,0x65,0x3c,0x19,0x19,0x99,0xf8,0x71,0xbe,0xd3,0xa7,0xce,0xd9,0xff,0x6c,0x7a,
0xa1,0xad,0x92,0x43,0xcc,0x6d,0x7d,0x4f,0x54,0xae,0xac,0x3a,0xa3,0x17,0x1d,0xe8,
0xd9,0x93,0x87,0xe0,0xa,0xd,0xee,0xda,0x35,0xbb,0x2d,0xe0,0x7b,0x56,0x3c,0x1e,
0x4b,0xb0,0xe0,0xf7,0xdf,0x95,0x53,0xd6,0x40,0xcb,0x91,0xe0,0xe0,0x2b,0xb3,0x9c,
0x2b,0x9c,0xd,0xbb,0x7c,0x59,0xef,0xbc,0x72,0xb,0x29,0x20,0x59,0xcc,0x3d,0x82,
0xb9,0x46,0xd,0x67,0x67,0x9c,0xb6,0x5c,0x4d,0x1d,0x3b,0x7d,0x3a,0xed,0x45,0x7e,
0xfa,0x36,0x34,0x14,0x89,0x70,0x40,0xc,0xe5,0xdc,0xf6,0xb6,0xf5,0x54,0x5c,0xb1,
0x9f,0x7,0xec,0xd9,0x83,0x14,0x1a,0x8f,0xdd,0xcb,0x97,0x5b,0x8c,0xc6,0x3,0x8a,
0xba,0x6a,0xd5,0xb5,0x15,0x44,0xd1,0x41,0xc9,0xc9,0x7a,0xa7,0x29,0xfe,0x37,0xcf,
0x95,0xe9,0x45,0xfd,0x27,0x97,0x2f,0x8f,0x10,0x65,0x27,0x4a,0x5,0x5,0xa9,0xd3,
0xd0,0x12,0x27,0x3a,0x77,0xce,0x76,0xb,0x69,0x9f,0x53,0xe6,0x2c,0xaa,0x52,0x14,
0xcd,0xdb,0xc7,0x8d,0x4b,0xaa,0x66,0x6c,0x1b,0xeb,0x33,0x6d,0x9a,0xf4,0xa4,0xb5,
0x91,0x73,0x3f,0xd0,0x72,0x8,0xdb,0xbc,0x77,0xfe,0x83,0x2b,0xaa,0xeb,0x23,0x22,
0x72,0xcc,0xe0,0xfb,0xd3,0xb2,0x4d,0x23,0xae,0x86,0x75,0xf0,0xda,0xb9,0x93,0x12,
0xc8,0x8c,0x80,0x8d,0x1b,0x33,0x3a,0xf1,0x70,0x6c,0xdb,0xb4,0xe9,0x6a,0x35,0x87,
0xfb,0x31,0x1d,0x4f,0x9f,0xd6,0x3b,0xcd,0xbc,0x83,0x19,0x30,0x18,0x3c,0x7,0x5a,
0x7,0xfa,0x97,0xab,0x55,0x4b,0xed,0xc6,0x91,0xf8,0xac,0x65,0x4b,0x1a,0x48,0xf7,
0x31,0xb5,0x75,0x6b,0xc4,0xb3,0x19,0xf7,0xaa,0x57,0xd7,0x3b,0xcb,0x2c,0xbf,0xeb,
0x1d,0x88,0x43,0xed,0x7d,0xfb,0xd4,0x54,0xbc,0x82,0x36,0xbd,0x7a,0xc9,0xbf,0x3b,
0xfb,0x90,0x2,0x62,0x27,0x25,0x87,0x30,0x97,0x1c,0x92,0x2f,0x5f,0xc6,0xa7,0x96,
0x41,0xf9,0x83,0x27,0x4e,0xa4,0x70,0x8c,0x84,0x75,0xc8,0x90,0x1c,0x37,0xf8,0xf8,
0xac,0x6c,0x8f,0xc2,0xe6,0xf3,0x54,0xba,0xb0,0x79,0x33,0x87,0xa3,0x27,0x5,0xef,
0xdc,0xc9,0xc3,0x33,0x82,0xd9,0x6d,0xf7,0x6e,0xd9,0xce,0xfe,0x59,0x3d,0x5c,0xa7,
0xe4,0xf6,0xbe,0x39,0x29,0x20,0xca,0xdf,0x9f,0x1e,0x90,0xa3,0x7a,0xa9,0x5e,0x3d,
0xba,0x40,0x43,0xc8,0xb5,0x51,0x23,0x1c,0xe7,0x9a,0x98,0xdd,0xac,0x19,0x8a,0xa0,
0xf,0x6e,0x17,0x2d,0xaa,0x77,0xb6,0x9a,0x79,0x34,0xbb,0x10,0xdf,0xd0,0x74,0x76,
0x1e,0x3d,0x3a,0xf1,0x86,0x71,0x5b,0xec,0x86,0x39,0x73,0xa4,0xa7,0x61,0x5f,0x52,
0x40,0x74,0x62,0x1b,0x33,0xc1,0xeb,0xb8,0x4b,0xfd,0xbe,0xfe,0x9a,0x2,0xe1,0x8b,
0xff,0xd4,0xa9,0xa3,0x77,0x5e,0xf6,0xc6,0x9b,0xe9,0x53,0x84,0x5c,0xb9,0x82,0xe2,
0xb8,0x86,0x88,0xdd,0xbb,0xc9,0x7,0xf5,0x51,0xec,0xc8,0x11,0xae,0x45,0x5b,0xd4,
0x21,0xc7,0x8f,0x1b,0x5b,0x9b,0x77,0xe1,0x97,0x93,0x27,0x2f,0x8d,0x74,0x3e,0x13,
0x17,0x99,0x98,0xa8,0x77,0xbe,0x1a,0xb6,0x4,0x3,0x44,0xae,0x73,0xd2,0x47,0x95,
0xff,0xde,0xc7,0xc7,0x60,0x20,0x1f,0xe3,0xbd,0x2a,0x55,0xc8,0x41,0x69,0xcb,0x5d,
0x2b,0x57,0xe6,0xd2,0xdc,0x9d,0xa6,0xd4,0xae,0x8d,0x2a,0x78,0xb,0x33,0xeb,0xd6,
0xcd,0xe9,0x63,0x13,0xcf,0x6d,0x2d,0x4d,0xc7,0xe4,0x55,0xab,0xb0,0xce,0xba,0xd4,
0x30,0x72,0xc8,0x10,0x19,0x93,0xd3,0x97,0x14,0x10,0xdd,0x3d,0x5a,0xf9,0xfe,0xa6,
0xa5,0x5b,0x40,0xf5,0x77,0xdf,0xc5,0x62,0xf2,0x52,0x43,0x3f,0xfb,0x2c,0xbb,0x9c,
0x73,0x90,0x6d,0xdc,0xc0,0x3c,0xbc,0x94,0x92,0x82,0x3a,0xa8,0xc4,0xa3,0x63,0x62,
0xb0,0x90,0x26,0x53,0x8f,0xb,0x17,0xf8,0x26,0x1f,0xc0,0xdc,0xb,0x17,0xe8,0x3c,
0x16,0xab,0x1d,0x2e,0x5c,0xa0,0x24,0xa5,0x17,0x7a,0xc4,0xc7,0x5b,0x7f,0x56,0x4b,
0xd3,0xdb,0xd7,0xae,0x39,0xe,0x35,0x9d,0x40,0xbd,0x94,0x94,0xfc,0x77,0xc0,0xca,
0x86,0x94,0x14,0xad,0xa6,0x6b,0xda,0x7a,0x98,0x6c,0x7d,0xf0,0x87,0x93,0x4f,0xd1,
0xa2,0x38,0x62,0xfc,0xc9,0x11,0x45,0x8b,0xaa,0x8a,0x12,0x63,0x2d,0xe1,0xe6,0xc6,
0x8b,0xf8,0x3b,0xc3,0x5c,0x6f,0x6f,0xe5,0x27,0x6e,0xc1,0x23,0xbd,0xbd,0xb9,0xb,
0x79,0x61,0xa0,0x8f,0xf,0xbe,0xe2,0xd1,0xbc,0xc8,0xc7,0x87,0xce,0xe3,0x14,0x75,
0xc,0x8,0xc8,0xae,0x7b,0x41,0xe9,0x85,0xb7,0x91,0x1b,0xf,0x3b,0x7e,0x5c,0xf1,
0x45,0xa,0x87,0xc,0x1e,0x7c,0x85,0x4c,0x14,0x47,0xdb,0xb7,0xeb,0x9d,0x97,0x78,
0x48,0xa,0x48,0x36,0x53,0xa2,0x29,0x73,0x95,0x69,0x2e,0x2e,0x4a,0x47,0x4b,0x9,
0xcb,0xd1,0x91,0x23,0xe9,0x13,0xac,0xe1,0xde,0x43,0x87,0x66,0xfb,0x15,0xf0,0x39,
0x85,0x6d,0x61,0x65,0x13,0x3a,0x1,0xcf,0xbb,0x77,0xe9,0x6,0xa2,0xd1,0x39,0x2d,
0x2d,0xf3,0xcf,0x37,0x72,0x24,0x36,0xde,0xbc,0x69,0xfb,0x91,0x23,0xa9,0x8,0xf7,
0x36,0x18,0x68,0x25,0xda,0xd3,0xe5,0x82,0x5,0x33,0x5f,0x17,0xc3,0x5e,0xec,0xed,
0xe2,0x82,0xa5,0x68,0x85,0x94,0x2,0x5,0xe4,0xef,0x27,0x8b,0x34,0xc1,0x27,0x3c,
0xf6,0xcf,0x3f,0xd5,0x31,0xf4,0x89,0x32,0x7f,0xdc,0xb8,0xe4,0xa,0xc6,0xf4,0xe8,
0xed,0xb,0x17,0x3e,0x7c,0x34,0x95,0x91,0xa1,0x77,0x7a,0xe2,0xbf,0x49,0x1,0xc9,
0xe6,0xdc,0xde,0x67,0xb5,0xdc,0xcc,0xe2,0xc5,0x95,0x74,0x4b,0x17,0x53,0xcc,0xd0,
0xa1,0x88,0xc2,0x10,0xbc,0x12,0x16,0x6,0x57,0x54,0xc3,0xd4,0x7c,0xf9,0xf4,0xce,
0x4f,0x88,0x17,0x61,0x5b,0x9f,0x81,0xa2,0x1c,0x8a,0x7b,0xb3,0x66,0xa5,0xbf,0xe1,
0xc0,0x96,0x59,0x5f,0x7c,0x71,0x63,0x13,0x29,0x67,0xc3,0xee,0xdc,0xd1,0x3b,0x3f,
0xf1,0xbf,0x49,0x1,0xc9,0x61,0x3c,0x7,0xde,0x3f,0x53,0x6e,0x66,0xc9,0x92,0x5c,
0xd0,0x18,0x67,0xcc,0x37,0x7c,0x38,0x87,0xa1,0x14,0xc5,0xf5,0xee,0x4d,0x2f,0x23,
0x0,0x1b,0x9c,0x9c,0xf4,0xce,0x4f,0x88,0xff,0xa9,0x3e,0xb6,0xe3,0xfa,0xbd,0x7b,
0x30,0x62,0x31,0x3a,0xce,0x9e,0x6d,0xfa,0xde,0xf4,0x83,0xc3,0x9c,0xcf,0x3e,0x93,
0x13,0x38,0x73,0x26,0x29,0x20,0x39,0x9c,0xed,0xc8,0x4f,0x63,0x94,0x19,0xdc,0xa9,
0x4f,0x1f,0x1c,0xa7,0xc5,0x7c,0x31,0x2c,0x8c,0xde,0x40,0x57,0x7a,0xa3,0x70,0x61,
0xbd,0xf3,0x13,0x79,0xdc,0xfb,0x98,0xc0,0x51,0x57,0xaf,0xf2,0x14,0xfe,0x98,0x2a,
0xcd,0x9b,0x67,0xf8,0xc0,0x1,0xb4,0x62,0xe6,0x4c,0x39,0x18,0x2d,0x77,0x90,0x2,
0x92,0xcb,0x14,0x5d,0xc7,0xaa,0x6f,0x48,0x81,0x2,0xe,0xab,0xac,0x3d,0x15,0x9f,
0x90,0x10,0x3a,0x8c,0x97,0xf8,0x83,0xf,0x3e,0xc0,0x4d,0x9e,0x4a,0x35,0xbd,0xbc,
0xf4,0xce,0x4f,0xe4,0x6e,0x3c,0x9e,0xca,0xa1,0xe5,0xc9,0x93,0x98,0xc0,0x67,0x79,
0xe3,0xd7,0x5f,0x3b,0x24,0x9a,0x4c,0xf,0x62,0xbe,0xfd,0x36,0x9e,0x88,0xe2,0xe9,
0x6f,0x63,0x4d,0x22,0x57,0x90,0x2,0x92,0xeb,0x3d,0xda,0xb3,0xeb,0xdd,0x8c,0xfa,
0xfe,0x7d,0x5f,0x7f,0x9d,0x3,0x39,0x90,0x3,0x7b,0xf7,0xa6,0x6b,0xdc,0x1f,0x65,
0xdf,0x7c,0x33,0xd7,0xaf,0x43,0x11,0x9a,0xb0,0x6d,0xca,0x89,0x83,0xf4,0x3d,0x7,
0xff,0xf4,0x13,0xed,0xa0,0x1d,0xb4,0x63,0xfe,0xfc,0xc4,0x1f,0xc,0xbb,0x63,0xe6,
0xfe,0xf6,0x9b,0x1c,0xbc,0x94,0x37,0x48,0x1,0xc9,0xa3,0x32,0xc7,0x52,0xac,0xa6,
0x62,0xc6,0x42,0x21,0x21,0x28,0x89,0x61,0x14,0xdf,0xbd,0x3b,0x66,0xf3,0x3c,0xfc,
0xe0,0xe3,0xa3,0x77,0x7e,0x22,0x9b,0x51,0x29,0x3f,0xe2,0x8e,0x1e,0x85,0x19,0xf5,
0xb8,0x65,0x64,0xa4,0x29,0xc5,0xb8,0xcd,0xf1,0xe7,0xa5,0x4b,0x65,0xec,0x22,0x6f,
0x93,0x2,0x22,0xfe,0x4b,0x89,0x63,0x66,0x67,0xff,0x95,0x15,0x2b,0x2a,0x55,0x39,
0x15,0x1d,0x3a,0x75,0xc2,0x7c,0xe5,0x6d,0xde,0xd2,0xb5,0x6b,0xae,0xdb,0x82,0x45,
0xfc,0xff,0x82,0xa8,0x36,0xaf,0x8f,0x8e,0xe6,0x19,0xea,0x51,0x2a,0xbb,0x62,0x5,
0xe6,0x23,0x22,0x23,0x74,0xd9,0xb2,0xa4,0x50,0xc7,0x3e,0x67,0xe6,0xc7,0xc6,0xea,
0x9d,0x9e,0xc8,0x5e,0xa4,0x80,0x88,0x27,0x78,0xb8,0xd0,0xd1,0xe3,0x23,0xeb,0x1c,
0xdf,0x5f,0xea,0xd4,0x41,0x61,0xfe,0x45,0x51,0xdb,0xb4,0xe1,0xd6,0xb4,0x9b,0x13,
0x5b,0xb6,0xa4,0xae,0x9c,0x40,0x1b,0xaa,0x54,0xc9,0xf1,0x9b,0x45,0xe6,0x15,0xfd,
0x70,0x8d,0xbf,0xb5,0x5a,0xf1,0x1b,0xe2,0x90,0xb4,0x7f,0x3f,0xa7,0x50,0x41,0x6a,
0xba,0x69,0x13,0xd7,0x50,0x3d,0x68,0xfd,0xda,0xb5,0xc9,0x8b,0x1d,0x3d,0xa2,0x83,
0xa2,0xa3,0xf5,0x4e,0x53,0xe4,0xc,0xf2,0x1f,0x5e,0xbc,0x90,0x52,0x53,0xef,0x57,
0xf0,0xd,0xf1,0xf0,0xc8,0x98,0x63,0x5c,0xac,0xf4,0x6d,0xd1,0x82,0x97,0xd0,0x6a,
0xf6,0x6c,0xde,0x1c,0x71,0x6c,0xa1,0x16,0xd,0x1a,0xd0,0x44,0x84,0xc3,0xe2,0xee,
0xae,0x77,0x9e,0x79,0xd,0x2f,0xa2,0xb7,0x79,0xfb,0xd9,0xb3,0xd4,0xd,0xfb,0x71,
0x66,0xe7,0x4e,0xea,0xac,0x1e,0x52,0x92,0x36,0x6d,0x32,0xce,0x74,0x70,0x37,0x75,
0xda,0xba,0x55,0x1e,0x3d,0x89,0xac,0x20,0x5,0x44,0x68,0xca,0x75,0x4e,0xda,0xc8,
0xf2,0xdf,0x97,0x29,0xa3,0x54,0x53,0x1c,0x8c,0xdf,0xd7,0xab,0x47,0x63,0x31,0x8c,
0x7d,0xea,0xd5,0xc3,0x6c,0xf2,0x41,0xf5,0x57,0x5f,0xc5,0xe,0x3e,0x82,0xb7,0x3,
0x2,0x72,0xcc,0x11,0xa8,0x7a,0x33,0xe1,0x20,0xcf,0xbd,0x7f,0x9f,0x17,0xa0,0x18,
0xf5,0x3b,0x71,0x2,0x93,0xf1,0x1b,0x5a,0xef,0xdb,0xc7,0x5b,0x39,0x80,0x4b,0xef,
0xde,0x9d,0xd1,0xd5,0x21,0x50,0x29,0xbe,0x77,0xaf,0x6c,0xaf,0x2f,0xec,0x41,0xa,
0x88,0xd0,0x55,0x8d,0xea,0xac,0xd6,0xa8,0x6e,0x32,0x25,0x2f,0xb1,0xc,0xbe,0xbb,
0xd3,0xdf,0x5f,0xdd,0x8b,0x8b,0x74,0xbe,0x52,0x25,0xda,0x1,0x17,0x65,0x6e,0x95,
0x2a,0x3c,0x95,0x3a,0xa1,0x75,0x40,0x0,0xad,0xc2,0x18,0xbc,0x53,0xa6,0xc,0xa2,
0x78,0xe,0x9f,0xf5,0xf6,0xc6,0x45,0xd4,0xa5,0x40,0x17,0x17,0xbd,0xf3,0x7f,0x51,
0xbc,0x11,0x4b,0x79,0xe3,0xcd,0x9b,0xd4,0x97,0x42,0x28,0xe8,0xc2,0x5,0xae,0x8b,
0x89,0x5c,0xfb,0xfc,0x79,0x84,0xab,0xe3,0xe8,0xeb,0xd3,0xa7,0x79,0x15,0x4e,0xb1,
0xfb,0xc9,0x93,0x6,0xa0,0x21,0xf5,0x3f,0x71,0xe2,0x4a,0x47,0x87,0xeb,0x31,0x63,
0xcf,0x9d,0x93,0x5d,0x67,0x45,0x76,0x20,0x5,0x44,0xe4,0x48,0x25,0x9a,0xb2,0x5a,
0x65,0x9a,0xab,0xab,0xa9,0x92,0xb5,0xb1,0xb5,0xb4,0xb7,0xb7,0xf5,0x33,0x75,0xbc,
0x7a,0xad,0x64,0x49,0x83,0x87,0xf2,0x16,0x35,0x76,0x75,0x85,0x5,0xbb,0xb0,0xbf,
0x68,0x51,0x3e,0xc4,0x7,0x11,0x5e,0xac,0x18,0xc,0xb4,0x4,0x57,0x8b,0x16,0xe5,
0x78,0x36,0xa1,0x67,0xe1,0xc2,0xd4,0x4,0x81,0x98,0xf7,0xb7,0x95,0xfb,0x1f,0x22,
0xc,0xe1,0x85,0xa,0xe1,0x2,0x1c,0x71,0xe8,0xdf,0x63,0x39,0x1c,0x88,0x44,0xe,
0xb7,0x5a,0xa9,0x2f,0xbe,0xa7,0x92,0x77,0xef,0x66,0xfe,0x41,0x25,0x2a,0xc9,0xcb,
0x53,0x53,0xf9,0x6b,0x4c,0xa5,0x32,0x37,0x6f,0x22,0x86,0xdf,0xa6,0xea,0x29,0x29,
0x78,0x85,0xaa,0xaa,0xc7,0xaf,0x5d,0x83,0xb,0x97,0xa1,0x9,0xd7,0xaf,0xa3,0x30,
0xaf,0xa5,0x1d,0xd7,0xaf,0xd3,0x36,0xaa,0x80,0xcf,0xe3,0xe3,0x4d,0x9d,0x4c,0x41,
0xa6,0x4e,0x17,0x2f,0xca,0xa3,0x24,0x91,0x93,0xfd,0x1f,0x24,0x37,0x3,0xae,0xbb,
0x17,0x67,0xc2,0x0,0x0,0x0,0x25,0x74,0x45,0x58,0x74,0x64,0x61,0x74,0x65,0x3a,
0x63,0x72,0x65,0x61,0x74,0x65,0x0,0x32,0x30,0x31,0x39,0x2d,0x30,0x31,0x2d,0x31,
0x34,0x54,0x32,0x33,0x3a,0x31,0x36,0x3a,0x34,0x32,0x2b,0x30,0x38,0x3a,0x30,0x30,
0x16,0x32,0x2a,0x4b,0x0,0x0,0x0,0x25,0x74,0x45,0x58,0x74,0x64,0x61,0x74,0x65,
0x3a,0x6d,0x6f,0x64,0x69,0x66,0x79,0x0,0x32,0x30,0x31,0x39,0x2d,0x30,0x31,0x2d,
0x31,0x34,0x54,0x32,0x33,0x3a,0x31,0x36,0x3a,0x34,0x32,0x2b,0x30,0x38,0x3a,0x30,
0x30,0x67,0x6f,0x92,0xf7,0x0,0x0,0x0,0x50,0x74,0x45,0x58,0x74,0x73,0x76,0x67,
0x3a,0x62,0x61,0x73,0x65,0x2d,0x75,0x72,0x69,0x0,0x66,0x69,0x6c,0x65,0x3a,0x2f,
0x2f,0x2f,0x68,0x6f,0x6d,0x65,0x2f,0x61,0x64,0x6d,0x69,0x6e,0x2f,0x69,0x63,0x6f,
0x6e,0x2d,0x66,0x6f,0x6e,0x74,0x2f,0x74,0x6d,0x70,0x2f,0x69,0x63,0x6f,0x6e,0x5f,
0x6d,0x68,0x7a,0x70,0x39,0x32,0x70,0x38,0x79,0x6b,0x2f,0x7a,0x68,0x65,0x6e,0x67,
0x7a,0x61,0x69,0x62,0x6f,0x66,0x61,0x6e,0x67,0x2e,0x73,0x76,0x67,0x7f,0xc8,0x4a,
0x86,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// D:/Works/Mine/IVM/Codes/IVM/VehicleManagement/VehicleManage/Resources/Images/undoneline.png
0x0,0x0,0x1,0xe8,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0xc8,0x0,0x0,0x0,0xc,0x10,0x6,0x0,0x0,0x0,0x77,0xb1,0x2e,0x7f,
0x0,0x0,0x0,0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8f,0xb,0xfc,0x61,0x5,
0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0,
0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a,0x26,0x0,0x0,0x80,0x84,0x0,0x0,0xfa,
0x0,0x0,0x0,0x80,0xe8,0x0,0x0,0x75,0x30,0x0,0x0,0xea,0x60,0x0,0x0,0x3a,
0x98,0x0,0x0,0x17,0x70,0x9c,0xba,0x51,0x3c,0x0,0x0,0x0,0x6,0x62,0x4b,0x47,
0x44,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x43,0xbb,0x7f,0x0,0x0,0x0,0x9,0x70,
0x48,0x59,0x73,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x48,0x0,0x46,0xc9,0x6b,0x3e,
0x0,0x0,0x0,0x86,0x49,0x44,0x41,0x54,0x78,0xda,0xed,0xd5,0xa1,0xd,0xc2,0x0,
0x14,0x45,0xd1,0x57,0x82,0x68,0x1d,0x5b,0xa0,0xd0,0x18,0x86,0xc0,0x30,0x0,0x9a,
0x79,0x50,0x8,0x82,0x66,0x4,0x74,0x93,0x8e,0x83,0x6a,0xeb,0x60,0x3,0xc4,0x37,
0x40,0x72,0xce,0x4,0xd7,0xdd,0x66,0xbb,0x1e,0x6f,0x8f,0xfd,0x38,0x66,0x95,0x43,
0x4e,0x5d,0x17,0x0,0xf8,0xe4,0x99,0x7b,0xce,0xd3,0xb4,0xf8,0x76,0x7,0x0,0xff,
0xc9,0x40,0x0,0x28,0x31,0x10,0x0,0x4a,0xc,0x4,0x80,0x12,0x3,0x1,0xa0,0xc4,
0x40,0x0,0x28,0x31,0x10,0x0,0x4a,0xc,0x4,0x80,0x12,0x3,0x1,0xa0,0xc4,0x40,
0x0,0x28,0x59,0xbe,0x2e,0x19,0xb2,0xeb,0xfb,0xe6,0x98,0x4d,0xd2,0xb6,0xdf,0xe,
0x2,0xe0,0xb7,0xbd,0xae,0x19,0xb2,0x9b,0xe7,0x37,0xa7,0xef,0x13,0x5f,0xc9,0x80,
0x62,0xf5,0x0,0x0,0x0,0x25,0x74,0x45,0x58,0x74,0x64,0x61,0x74,0x65,0x3a,0x63,
0x72,0x65,0x61,0x74,0x65,0x0,0x32,0x30,0x31,0x39,0x2d,0x30,0x31,0x2d,0x31,0x34,
0x54,0x32,0x33,0x3a,0x33,0x37,0x3a,0x33,0x34,0x2b,0x30,0x38,0x3a,0x30,0x30,0xc8,
0x89,0xc4,0x97,0x0,0x0,0x0,0x25,0x74,0x45,0x58,0x74,0x64,0x61,0x74,0x65,0x3a,
0x6d,0x6f,0x64,0x69,0x66,0x79,0x0,0x32,0x30,0x31,0x39,0x2d,0x30,0x31,0x2d,0x31,
0x34,0x54,0x32,0x33,0x3a,0x33,0x37,0x3a,0x33,0x34,0x2b,0x30,0x38,0x3a,0x30,0x30,
0xb9,0xd4,0x7c,0x2b,0x0,0x0,0x0,0x4b,0x74,0x45,0x58,0x74,0x73,0x76,0x67,0x3a,
0x62,0x61,0x73,0x65,0x2d,0x75,0x72,0x69,0x0,0x66,0x69,0x6c,0x65,0x3a,0x2f,0x2f,
0x2f,0x68,0x6f,0x6d,0x65,0x2f,0x61,0x64,0x6d,0x69,0x6e,0x2f,0x69,0x63,0x6f,0x6e,
0x2d,0x66,0x6f,0x6e,0x74,0x2f,0x74,0x6d,0x70,0x2f,0x69,0x63,0x6f,0x6e,0x5f,0x6c,
0x72,0x6e,0x32,0x64,0x76,0x61,0x66,0x38,0x64,0x6b,0x2f,0x68,0x65,0x6e,0x67,0x78,
0x69,0x61,0x6e,0x2e,0x73,0x76,0x67,0x8a,0xf1,0x34,0xb1,0x0,0x0,0x0,0x0,0x49,
0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// D:/Works/Mine/IVM/Codes/IVM/VehicleManagement/VehicleManage/Resources/Images/prepared.png
0x0,0x0,0x3b,0x38,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0xc8,0x0,0x0,0x0,0xc8,0x10,0x6,0x0,0x0,0x0,0xfd,0xc8,0x72,0xdd,
0x0,0x0,0x0,0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8f,0xb,0xfc,0x61,0x5,
0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0,
0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a,0x26,0x0,0x0,0x80,0x84,0x0,0x0,0xfa,
0x0,0x0,0x0,0x80,0xe8,0x0,0x0,0x75,0x30,0x0,0x0,0xea,0x60,0x0,0x0,0x3a,
0x98,0x0,0x0,0x17,0x70,0x9c,0xba,0x51,0x3c,0x0,0x0,0x0,0x6,0x62,0x4b,0x47,
0x44,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x43,0xbb,0x7f,0x0,0x0,0x0,0x9,0x70,
0x48,0x59,0x73,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x48,0x0,0x46,0xc9,0x6b,0x3e,
0x0,0x0,0x39,0xd6,0x49,0x44,0x41,0x54,0x78,0xda,0xed,0xdd,0x67,0x78,0x15,0xd5,
0xd6,0x7,0xf0,0xff,0x9a,0x93,0x84,0x80,0xb4,0x14,0x9a,0x2,0x29,0x84,0x22,0x42,
0x14,0x45,0x69,0xa1,0x77,0x94,0x26,0x26,0x54,0x95,0x66,0x44,0xa9,0x1,0x81,0x14,
0x20,0x86,0x92,0x4,0x90,0x16,0x4,0xe9,0x48,0x15,0x88,0x20,0x88,0x10,0x9a,0x68,
0xe8,0x88,0x20,0x82,0x22,0x9,0xa9,0x14,0x69,0x29,0x40,0x10,0x48,0x39,0xb3,0xde,
0xf,0xe4,0x70,0x9f,0x57,0x2e,0x97,0x36,0x73,0x26,0x65,0xfd,0xbe,0x99,0x73,0xb2,
0xf7,0xda,0x9b,0xc7,0x59,0xd9,0x33,0xb3,0xd7,0x6,0x84,0x10,0x42,0x8,0x21,0x84,
0x10,0xc2,0x5a,0xc8,0xe8,0x0,0x84,0xb0,0x6,0x8f,0x8,0x8f,0x88,0xa1,0xdb,0x8b,
0x14,0x49,0x77,0xc9,0xbc,0x5b,0x74,0x84,0x93,0x93,0xe9,0x92,0x7d,0x45,0xe5,0x5d,
0x7b,0x7b,0xf5,0xa2,0x5a,0x47,0x19,0x54,0xba,0x34,0x16,0xa1,0xa3,0xba,0x80,0x48,
0x3d,0xaf,0x16,0x37,0x1d,0x35,0x99,0x10,0x87,0xef,0x29,0xab,0x64,0xc9,0xff,0x34,
0x80,0x4e,0x6c,0x77,0xeb,0x96,0x52,0x59,0xb9,0x6d,0xae,0x67,0x36,0xc3,0x17,0x5b,
0x95,0x41,0xcc,0x4a,0x45,0xe5,0x37,0x75,0xc1,0x8d,0x1b,0xe6,0x97,0xee,0x5d,0x54,
0x37,0xdd,0xbb,0xe7,0x90,0x5c,0xa4,0xe8,0xdd,0xd9,0xa9,0xa9,0x71,0xc3,0xe2,0x86,
0xcd,0xed,0x90,0x99,0x69,0xf4,0xb8,0x85,0xd0,0x93,0x24,0x10,0x91,0xa7,0x55,0xf4,
0xab,0xe8,0xe7,0x77,0xa8,0x68,0xd1,0xdb,0x7f,0xdb,0x34,0xb6,0x2b,0x51,0xad,0x9a,
0xe9,0x45,0xd3,0x5d,0x9b,0x2e,0xae,0xae,0xac,0x70,0x6,0x97,0x77,0x75,0xa5,0x97,
0xd8,0x13,0xc3,0xdd,0xdc,0xb8,0x29,0xdd,0x40,0x6b,0x37,0x37,0x7a,0x13,0x21,0x50,
0x2b,0x54,0xc0,0x60,0x38,0xa2,0x77,0xd9,0xb2,0x3c,0x95,0x87,0x22,0xc5,0xc9,0x89,
0x2a,0xd1,0x10,0xb4,0x29,0x5e,0xdc,0x5a,0x71,0xf3,0x5,0xfe,0x12,0xbb,0x6e,0xdf,
0xa6,0x19,0xb4,0xb,0x2b,0x52,0x52,0x10,0x8c,0xc3,0x28,0x7f,0xfd,0x3a,0x1f,0x43,
0x30,0x94,0xcb,0x97,0x29,0x9a,0x4b,0x63,0x77,0x62,0x22,0x5f,0xa2,0x53,0x98,0x93,
0x98,0x48,0x2a,0x95,0xa0,0x2b,0x49,0x49,0xe6,0xe6,0xea,0x4f,0xfc,0x76,0x62,0x62,
0xa9,0x8e,0xea,0x62,0xdb,0x39,0xb1,0xb1,0xc9,0x94,0x4c,0x21,0x74,0xef,0x9e,0xd1,
0xff,0xe,0x42,0xfc,0x37,0x92,0x40,0x84,0x21,0xca,0xb5,0x76,0xbf,0x12,0xcc,0x65,
0xcb,0xe6,0xc,0x51,0xaf,0x66,0x8d,0xa8,0x5f,0x9f,0x2f,0x98,0xda,0xe2,0x3,0x4f,
0x4f,0x62,0x9e,0x86,0x5a,0x9e,0x9e,0x3c,0x0,0x7b,0xa8,0x82,0xa7,0x27,0x75,0x47,
0x2d,0xc4,0x78,0x78,0xe0,0x10,0x16,0x60,0x96,0xc9,0x64,0x74,0xdc,0x56,0xd3,0x10,
0x83,0xe0,0x67,0x36,0xe3,0x67,0x98,0xb1,0xe3,0xdc,0x39,0xac,0x46,0x67,0x94,0x3a,
0x75,0x8a,0x8b,0xf1,0x18,0x54,0x38,0x75,0x8a,0xea,0x21,0x83,0xea,0x9d,0x3a,0x65,
0x3b,0xdc,0xd4,0x4d,0xbd,0x74,0xe4,0xc8,0x95,0xe5,0x71,0xc3,0xc2,0x2a,0x5c,0xbf,
0x6e,0x74,0xd8,0xa2,0x70,0x91,0x4,0x22,0x74,0xe1,0xb4,0xc5,0xf5,0xf7,0x71,0x51,
0xd5,0xab,0xab,0xd,0x69,0x8c,0xfa,0x72,0xe3,0xc6,0x4a,0x3b,0xbc,0x4b,0xef,0x7a,
0x79,0xf1,0x46,0x5a,0xca,0x13,0x1a,0x34,0xa0,0x37,0x90,0x82,0x5f,0xaa,0x55,0x33,
0x3a,0xce,0x82,0x82,0x2f,0xc0,0xb,0xb,0x62,0x62,0xa8,0xf,0xfb,0xa1,0xc3,0xe1,
0xc3,0x7c,0x18,0x27,0xb8,0xd6,0x81,0x3,0x4a,0x45,0x38,0x62,0xd7,0xfe,0xfd,0x29,
0xc7,0x12,0xbb,0x86,0xed,0x8d,0x8d,0x35,0x3a,0x4e,0x51,0xb0,0x48,0x2,0x11,0xcf,
0xa4,0xc2,0xc2,0xa,0xb,0x83,0xb9,0x58,0xb1,0xcc,0x6,0xf6,0xed,0xcc,0x5e,0xd,
0x1b,0x2,0x80,0x5a,0xb9,0x55,0x2b,0xea,0x4a,0xbf,0x21,0xb2,0x53,0x27,0xdc,0xc0,
0x48,0x8c,0x79,0xf9,0x65,0xa3,0xe3,0x14,0xb9,0xc2,0x30,0x6,0xd1,0x89,0x89,0x7c,
0x9c,0x13,0x70,0x75,0xf7,0x6e,0x6c,0xc0,0x6,0xf2,0xd9,0xb3,0x7,0xf5,0x4d,0x23,
0x6d,0xa6,0xec,0xdc,0x99,0x16,0x15,0x37,0x2c,0x84,0x6e,0xdd,0x32,0x3a,0x4c,0x91,
0xbf,0x48,0x2,0x11,0xff,0x93,0x63,0x7b,0x8f,0x88,0x60,0x2e,0x59,0x92,0xb2,0xcd,
0x63,0xb2,0x2a,0x77,0xee,0xcc,0xdd,0xa8,0x3,0x25,0xfb,0xf8,0xc0,0x8c,0xbd,0x38,
0xdb,0xba,0x35,0x5,0xc3,0x11,0xab,0x8b,0x14,0x31,0x3a,0x4e,0xf1,0x6c,0x38,0x4,
0x69,0xe8,0x93,0x99,0x89,0xca,0xf8,0xc,0x83,0x76,0xed,0xa2,0x23,0x9c,0x84,0xd7,
0x36,0x6c,0xe0,0xdf,0x4c,0x9e,0xb6,0x73,0xbe,0xff,0x5e,0x12,0x8b,0xf8,0x5f,0x24,
0x81,0x8,0x0,0xff,0x79,0x4b,0x29,0xb5,0xc,0xff,0x58,0x32,0xb1,0x4b,0x17,0x6a,
0xae,0x56,0xe5,0x85,0x3d,0x7b,0xe2,0x27,0xfa,0x9,0x95,0xdb,0xb6,0xa5,0x21,0x48,
0x87,0xa7,0xbd,0xbd,0xd1,0x71,0xa,0xeb,0xe0,0x2f,0xe1,0x80,0x53,0xf7,0xee,0x51,
0x0,0xaf,0xc2,0xc9,0xa8,0x28,0x75,0xf,0x5f,0x41,0xfa,0xba,0x75,0x4e,0xdb,0x6d,
0xfe,0xc8,0x88,0xdc,0xb2,0x45,0xde,0x32,0x13,0x80,0x24,0x90,0x42,0xcb,0xf2,0x8c,
0x82,0xdd,0xa8,0xb4,0xba,0xb2,0x5f,0x3f,0x1c,0x86,0x3d,0x3c,0xfb,0xf7,0xa7,0x40,
0x6a,0x80,0x8c,0x32,0x65,0x8c,0x8e,0x4f,0xe4,0x51,0x75,0xe1,0x81,0x15,0x37,0x6e,
0xb0,0x2b,0xbf,0x86,0xa2,0x1b,0x36,0xa8,0x6f,0x23,0xd,0x1d,0xe6,0xcd,0xbb,0xd1,
0x29,0x71,0x49,0x68,0xc4,0xa9,0x53,0x46,0x87,0x27,0xac,0x4b,0x12,0x48,0x21,0xe0,
0xed,0x6d,0x32,0x39,0x3a,0xb8,0xb9,0x56,0xab,0xfa,0xee,0xbb,0xf4,0x35,0x29,0xbc,
0x74,0xd8,0x30,0xf4,0x7,0x30,0xc0,0xcb,0xcb,0xe8,0xd8,0x44,0xc1,0xc0,0xbe,0xa8,
0x8d,0x26,0xfb,0xf7,0x63,0x1,0xff,0x4e,0xfb,0xe6,0xce,0x4d,0x4b,0x4f,0x4c,0x8a,
0x3d,0xb7,0x69,0x13,0x0,0x44,0x46,0x9a,0xcd,0x46,0xc7,0x27,0xf4,0x21,0x9,0xa4,
0x80,0x29,0xe3,0x5d,0x73,0x43,0x30,0x17,0x2f,0xce,0x3f,0x65,0x6,0x64,0x67,0xf7,
0xea,0xa5,0x9e,0xe7,0x46,0x28,0x3f,0x72,0x24,0x55,0xc2,0x1,0xc,0xaa,0x5e,0xdd,
0xe8,0xf8,0x44,0x21,0x91,0xfb,0xd0,0x1e,0xfb,0x70,0x1a,0x3,0x16,0x2e,0x54,0x7f,
0xc0,0x76,0xf3,0xd9,0x5,0xb,0xd2,0x6f,0x24,0x24,0x4e,0x9d,0x76,0xf3,0xa6,0xd1,
0xe1,0x9,0x6d,0x48,0x2,0xc9,0xe7,0x4a,0xb1,0xb,0x7,0x73,0xe9,0xd2,0x36,0xdf,
0x2b,0x81,0xd9,0xe5,0x47,0x8e,0x44,0x24,0xdd,0x42,0xd8,0x90,0x21,0x88,0x42,0x14,
0xe2,0x1c,0x1c,0x8c,0x8e,0x4f,0x8,0x0,0xc0,0x7,0x18,0x86,0x2f,0xd3,0xd2,0x30,
0x93,0x87,0xf3,0xcd,0xb9,0x73,0x55,0x7,0x72,0x57,0xc7,0xce,0x9a,0x25,0x9,0x25,
0x7f,0x93,0x4,0x92,0xcf,0x58,0x56,0x18,0x6a,0x91,0x7b,0xd1,0xd9,0xcb,0x7,0xf,
0xbe,0xff,0xd3,0xb1,0x63,0x25,0x61,0x88,0x7c,0xe5,0x2e,0x47,0xa1,0x51,0x46,0x6,
0x1f,0x81,0x3d,0x56,0xcf,0x9f,0xcf,0x4d,0xa8,0x99,0xb9,0x52,0x58,0x98,0x24,0x94,
0xfc,0x45,0x12,0x48,0x9e,0x57,0x73,0x43,0x30,0xdb,0xd9,0x39,0xdb,0xdf,0xdd,0x95,
0x3d,0x7c,0xe8,0x50,0x9e,0x8b,0x7e,0x98,0xeb,0xef,0xf,0x7f,0x7a,0x1f,0x1,0xce,
0xce,0x46,0x47,0x67,0x94,0x7,0x6f,0x9,0x8d,0xc3,0x78,0xec,0x48,0x4c,0xc4,0x4c,
0x76,0x40,0xef,0xa4,0x24,0x76,0xa6,0x7e,0x8,0x49,0x4a,0xc2,0x1d,0xae,0x89,0xeb,
0x97,0x2e,0x51,0x75,0xa,0x66,0x73,0x4a,0xa,0x2f,0x67,0x77,0xe5,0xab,0x94,0x14,
0x9a,0xa0,0x38,0xe2,0xeb,0xd4,0x54,0x73,0xf,0xf3,0x77,0x39,0x7f,0xa4,0xa7,0xdb,
0x35,0xb5,0xbd,0x4b,0x6b,0x32,0x32,0x2c,0xed,0xaa,0x17,0x33,0x9d,0x94,0x41,0x77,
0xef,0x66,0xcf,0x83,0xaf,0xba,0xe0,0x3f,0x25,0x44,0x6c,0x7,0x63,0x91,0x32,0xc8,
0xde,0x5e,0xa9,0x58,0x24,0x55,0x5d,0x50,0xb4,0xa8,0xe5,0xe7,0x59,0xd1,0xd9,0x45,
0xb9,0x77,0x89,0x12,0xa6,0x75,0xa6,0xae,0x36,0xb5,0x1c,0x1c,0x78,0xa2,0x9a,0x86,
0xbe,0x4e,0x4e,0xf4,0x1a,0x4d,0xc5,0xf,0x65,0xca,0x70,0x31,0x3e,0xc3,0x3b,0x9c,
0x9c,0x70,0x1d,0x4b,0xd0,0xba,0x62,0x45,0x4a,0xc7,0x6,0x2a,0xe6,0xea,0xa,0x7f,
0xfa,0x87,0xa7,0xba,0xba,0xf2,0x22,0x7c,0x8b,0xf5,0xae,0xae,0x85,0xfd,0x2d,0x37,
0xe,0xe5,0xc3,0x28,0x71,0xfd,0x3a,0x36,0x53,0x5f,0xfa,0x3b,0x34,0x34,0x2d,0xca,
0xe1,0xea,0xf5,0x7b,0xf3,0xe6,0x1,0xc7,0x4f,0x2c,0x5a,0x9c,0x9d,0x6d,0x74,0x7c,
0xe2,0xbf,0x93,0x4,0x92,0x47,0x39,0x6d,0x71,0xfd,0x3d,0x60,0x78,0xa7,0x4e,0x5c,
0x5e,0xf1,0xa2,0x2d,0x5f,0x7c,0x41,0x1d,0x50,0x6,0xbd,0xaa,0x56,0x35,0x3a,0x2e,
0xfd,0x6,0xc,0x77,0x4,0x31,0xf3,0x49,0xbc,0x88,0x4a,0xb1,0xb1,0x14,0xc3,0xd5,
0xf9,0xcf,0x93,0x27,0xd1,0x8,0xef,0xd1,0x89,0xdf,0x7f,0xa7,0x11,0xd4,0x1e,0xaf,
0x9c,0x3a,0x65,0x9e,0xf,0x36,0xcf,0x3f,0x7d,0xfa,0xfe,0x5f,0xaa,0xe7,0xcf,0x1b,
0x1d,0xb6,0x56,0x4a,0x4f,0x76,0xb3,0xf,0x4a,0x70,0x71,0xb1,0xd9,0x82,0x6f,0xd4,
0x81,0xb5,0x6b,0xf3,0x9f,0xa8,0x49,0xa3,0x6a,0xd7,0xc6,0x41,0x7c,0xcb,0xaf,0xbf,
0xfa,0x2a,0x57,0xa7,0x18,0x7a,0xe5,0xb5,0xd7,0xa,0xcb,0xb3,0x2c,0xcb,0xce,0x7a,
0x65,0x32,0xe,0xe0,0xc4,0xa8,0x51,0x29,0xa1,0x9,0x9,0xa1,0xae,0xdb,0xb6,0x19,
0x1d,0x97,0xf8,0xff,0x24,0x81,0xe4,0x11,0xe,0x71,0x55,0x76,0x8c,0xb7,0x7d,0xe5,
0x15,0x65,0x10,0x6f,0x36,0x7,0xcc,0x9a,0x85,0xdf,0xb0,0xb,0x39,0xad,0x5b,0x1b,
0x1d,0x97,0x66,0x3a,0x72,0x28,0xae,0xe6,0xe4,0xa0,0x1e,0x3a,0x62,0xc0,0xd1,0xa3,
0xdc,0x8,0x29,0x98,0x7b,0xe0,0x0,0xb9,0xe2,0x3,0x5a,0x7f,0xf0,0x60,0x66,0xac,
0x6d,0x75,0x1b,0xf3,0xe1,0xc3,0xb7,0xeb,0xc6,0x2e,0xa,0xa1,0x94,0x14,0xa3,0xc3,
0xcd,0xab,0x8a,0xff,0x5a,0xcd,0x37,0x98,0x9d,0x9d,0x8b,0x5c,0xca,0x1a,0x9c,0x35,
0xa2,0x61,0x43,0x56,0xe9,0x77,0xe5,0x62,0xa3,0x46,0x74,0x2,0xd5,0xf9,0xb4,0x97,
0x17,0x4e,0x52,0x34,0xe,0xd6,0xab,0x57,0xe0,0x6a,0x87,0x7d,0x8c,0xb5,0xb8,0xbd,
0x73,0x27,0x76,0x9a,0xeb,0xf1,0x2b,0x23,0x46,0xa4,0x1e,0x4f,0xa6,0xb0,0x8f,0xcf,
0x9e,0x35,0x3a,0xac,0xc2,0x4e,0x12,0x88,0x41,0xfe,0x53,0x5e,0xdc,0x7c,0xb9,0x44,
0xbf,0xa0,0x20,0xec,0x47,0x57,0x1c,0xf5,0xf7,0xc7,0x72,0xea,0x81,0x45,0xb6,0xb6,
0x46,0xc7,0xf7,0xcc,0xd2,0x30,0x5,0xe3,0xff,0xfe,0x1b,0xb3,0x31,0x1f,0xdd,0x76,
0xec,0xe0,0x1d,0xdc,0x8e,0x97,0x46,0x45,0x99,0xb7,0xab,0x81,0x76,0xe5,0xf7,0xec,
0xb9,0x49,0xc9,0x14,0x42,0x37,0x6e,0x18,0x1d,0x66,0x41,0x55,0xaa,0x54,0xe5,0xca,
0xfe,0xfe,0xe,0xe,0xca,0x71,0xe5,0x6b,0x65,0x6e,0xeb,0xd6,0xca,0x3c,0xa5,0x1d,
0x95,0x6f,0xd7,0x8e,0x3,0x11,0xc8,0x6f,0xb7,0x6b,0x47,0x35,0xb0,0x12,0xc5,0x2b,
0x54,0x30,0x3a,0xce,0x67,0x36,0x9a,0x8f,0x21,0x3e,0x2b,0x8b,0x97,0x50,0x77,0x2c,
0xb,0xd,0x4d,0x8b,0xb3,0xf7,0xb5,0x2d,0x16,0x16,0x6,0x9c,0xf1,0x9,0xa1,0xac,
0x2c,0xa3,0xc3,0x2b,0x6c,0x24,0x81,0x58,0x99,0xc3,0x37,0x55,0x3a,0x7,0xcd,0x6b,
0xd8,0x50,0x99,0xab,0x76,0x67,0x5a,0xbc,0x18,0x31,0x34,0xe,0x17,0x6b,0xd6,0x34,
0x3a,0xae,0xa7,0x16,0xce,0xab,0x10,0x96,0x92,0xc2,0xbd,0x49,0xa5,0x66,0x51,0x51,
0x88,0xe3,0xca,0x94,0xb5,0x72,0x65,0x9a,0x67,0xa2,0x8b,0xe9,0xc0,0xde,0xbd,0x0,
0x10,0x42,0xaa,0x6a,0x74,0x98,0xe2,0x3f,0x82,0x59,0x51,0x1c,0x4a,0xbb,0xbb,0xe5,
0xec,0x69,0xd8,0x50,0xe9,0xcd,0x9f,0xaa,0x65,0xbd,0xbd,0x31,0x9f,0x2a,0x52,0xb5,
0xf7,0xde,0x83,0x23,0x82,0x30,0xe9,0xc5,0x17,0x8d,0x8e,0xf1,0x69,0xf1,0x76,0x5c,
0xc7,0xda,0x73,0xe7,0xe8,0x2d,0xba,0x45,0x89,0xbe,0xbe,0xa9,0x14,0x4f,0x53,0xe8,
0xe7,0x9f,0x8d,0x8e,0xab,0xb0,0x90,0x4,0xa2,0x33,0xcb,0x79,0x16,0x77,0xb3,0x6c,
0x5f,0xb4,0x7f,0x21,0x3c,0x1c,0x27,0x28,0x8e,0x96,0xe,0x19,0x82,0x58,0xec,0x46,
0x71,0x45,0x31,0x3a,0xbe,0xc7,0xb1,0x3c,0xac,0x46,0x1d,0xf4,0x42,0xdd,0x6f,0xbf,
0xa5,0xea,0x34,0x92,0x82,0x97,0x2e,0x4d,0xa5,0x78,0xb2,0xc1,0xbe,0x7d,0x80,0x24,
0x8a,0xfc,0x2e,0x98,0x15,0xc5,0x69,0xa0,0xfb,0x15,0xb3,0x4b,0xb3,0x66,0xdc,0x1d,
0xc3,0xcd,0xab,0xfa,0xf7,0x47,0xa,0xe2,0x68,0x7a,0xb7,0x6e,0xf9,0xe6,0xe1,0x7e,
0x35,0xb4,0xc6,0x6d,0x55,0x85,0x37,0x7f,0x8,0xaf,0xb9,0x73,0x8b,0xfb,0xa9,0xd,
0x6c,0xbd,0xfd,0xfd,0xe5,0x3c,0x15,0x7d,0x49,0x2,0xd1,0x49,0xe9,0xee,0xae,0x9b,
0xc6,0x9e,0x7e,0xf5,0x55,0x53,0x36,0xb9,0x29,0xee,0x6b,0xd6,0x20,0x9a,0xba,0xd1,
0x94,0x57,0x5e,0x31,0x3a,0xae,0xc7,0xaa,0xce,0x93,0x51,0xf1,0xcc,0x19,0x6e,0x40,
0xb7,0xb0,0x66,0xd1,0xa2,0x9c,0x83,0x59,0x31,0xb6,0x7,0x56,0xad,0xba,0x75,0xe4,
0xe2,0xac,0x10,0x4a,0x4b,0x33,0x3a,0x3c,0x61,0x1d,0x25,0xeb,0x57,0xf4,0xb,0x66,
0x47,0x47,0x9b,0x46,0x76,0xd5,0xb3,0xbd,0xde,0x7f,0x9f,0x36,0xa3,0x3c,0x8e,0x7e,
0xfc,0x71,0xbe,0xa9,0xb2,0xec,0xc3,0x67,0x50,0xea,0x8f,0x3f,0xd4,0x6f,0xe8,0x65,
0xd3,0xb2,0x5e,0xbd,0xd2,0x6f,0x24,0x24,0x4e,0x8a,0x39,0x7d,0xda,0xe8,0xb0,0xa,
0x1a,0x49,0x20,0x9a,0x22,0x72,0x1c,0xe5,0xbe,0x20,0xb0,0xd1,0xb0,0x61,0x70,0x83,
0x3f,0x16,0x4f,0x9d,0x9a,0xe7,0xab,0xd5,0x4e,0xe6,0xd3,0x78,0xe7,0xe0,0x41,0xf4,
0x46,0x7,0xf2,0x9a,0x3a,0x35,0xb5,0x64,0x62,0xf4,0x14,0xf5,0x87,0x1f,0xee,0x7f,
0xc8,0x6c,0x74,0x78,0x22,0x6f,0x71,0x28,0xed,0xee,0x16,0xb4,0xdb,0xcb,0x8b,0xc2,
0x50,0x87,0x5b,0x8e,0x1d,0x4b,0xb3,0x70,0xb,0x77,0xdf,0x7e,0x1b,0xa9,0x48,0xc0,
0x14,0xca,0x73,0xd7,0x13,0x4b,0xb5,0x61,0x3a,0x82,0xde,0x38,0x12,0x1c,0x9c,0xba,
0x3a,0x61,0x9e,0x6d,0xbf,0xe9,0xd3,0x1,0x59,0x39,0x6b,0x21,0xcf,0xfd,0x83,0xe7,
0x37,0x96,0x87,0x96,0xa6,0x6e,0xa6,0xd3,0xa6,0x2f,0x57,0xaf,0xa6,0x2d,0x54,0x87,
0x87,0x75,0xe8,0x60,0x74,0x5c,0xf,0xc9,0x5d,0xe2,0x73,0x3b,0xe,0x65,0xdf,0xf5,
0xeb,0xd5,0x33,0x1c,0xad,0xf2,0xd4,0xa9,0x37,0xd6,0x27,0xbd,0x3b,0xb5,0xf6,0xef,
0xbf,0x1b,0x1d,0x9e,0xc8,0x9f,0xca,0x78,0xbb,0x70,0xe0,0x86,0xd7,0x5e,0x53,0x3,
0x95,0x50,0x6e,0xec,0xef,0x8f,0x4f,0xe9,0x3c,0x85,0x79,0x7b,0xe7,0xd5,0x5b,0xb4,
0xbc,0x1c,0xfd,0x71,0x60,0xeb,0x56,0x73,0x47,0x73,0x90,0x6d,0xf4,0x7,0x1f,0xc8,
0x4b,0x1d,0xcf,0x47,0x12,0xc8,0x33,0xb2,0xdc,0xa2,0x52,0xda,0x52,0x69,0x53,0xef,
0x8d,0x1b,0x69,0x34,0xd,0xc4,0x3b,0x55,0xaa,0x18,0x1d,0xd7,0x3,0x96,0x7d,0x15,
0x7e,0x28,0x89,0xa2,0xdb,0xb6,0x99,0xf6,0x9a,0x37,0xe2,0xdb,0xf1,0xe3,0xaf,0x47,
0x26,0x53,0xa8,0xcf,0xc9,0x93,0x46,0x87,0x27,0xa,0x26,0xc7,0xf6,0x1e,0x11,0x1,
0x97,0x6b,0xd6,0xa4,0xe,0x6a,0x69,0x38,0x7e,0xfe,0x39,0xe6,0x62,0x25,0xe5,0xbc,
0xf7,0x5e,0x5e,0x5b,0xa1,0xf0,0xd7,0x7c,0x0,0x2d,0xe2,0xe2,0x54,0xc6,0x4,0x7c,
0xdf,0xad,0x9b,0x54,0x13,0x7e,0x36,0x79,0xe6,0x1f,0x34,0xbf,0x70,0xda,0xe2,0x16,
0x1d,0x74,0xb8,0x77,0x6f,0xae,0x44,0xbb,0x38,0x60,0xd1,0x22,0x6a,0x8d,0x6f,0xd0,
0xb0,0x58,0x31,0xa3,0xe3,0x7a,0xa0,0xe,0xda,0xc0,0x66,0xf7,0x6e,0x5a,0xa1,0xd4,
0x54,0x23,0xc7,0x8e,0x4d,0x79,0x29,0x6e,0x58,0xf8,0x5f,0xbf,0xfd,0x66,0x74,0x58,
0xa2,0x70,0x72,0xe,0xac,0x72,0x26,0x30,0xe9,0xf5,0xd7,0x79,0x3e,0xd7,0xc5,0xc6,
0x69,0xd3,0x60,0x42,0x79,0xa4,0xb6,0x6c,0x69,0x74,0x5c,0x16,0xfc,0x1b,0xc6,0xa3,
0xcd,0x3f,0xff,0x50,0x11,0x4c,0xc2,0x2c,0x5f,0xdf,0xd4,0x72,0x9,0x9,0xa1,0x5b,
0xd6,0xae,0x35,0x3a,0xae,0xfc,0x42,0x12,0xc8,0x13,0x21,0x72,0x62,0x37,0xe,0xe0,
0xe0,0x60,0x38,0x53,0x15,0xa,0xa,0xe,0x36,0x3a,0x22,0xb,0xcb,0x6b,0x8c,0x68,
0xc7,0x4e,0xd4,0x2b,0x28,0x28,0x2d,0x3d,0x31,0x69,0x4a,0x68,0x64,0xa4,0xd1,0x71,
0x9,0xf1,0xdf,0x38,0x9e,0x72,0x4b,0x1e,0xd7,0xa8,0x55,0x2b,0x1a,0x84,0x83,0x6a,
0xef,0x39,0x73,0xf2,0xdc,0x6b,0xec,0x3d,0xf8,0x13,0xee,0x1e,0x11,0x91,0x3a,0x2f,
0x71,0xb4,0x9d,0xa7,0x9f,0x1f,0x20,0xcf,0x4a,0xfe,0x17,0x49,0x20,0x8f,0x60,0xd9,
0xe8,0x97,0x96,0x6e,0xee,0x5d,0xbc,0xf2,0xf2,0xe5,0x14,0x41,0x6f,0xd2,0xda,0x9e,
0x3d,0x8d,0x8e,0xeb,0xc1,0x5f,0x4c,0x59,0x1c,0xc4,0x5f,0x7f,0xfe,0x79,0xaa,0x47,
0xd1,0xd9,0x76,0xcb,0x23,0x22,0x64,0x23,0x95,0xc8,0x4f,0x1e,0x6c,0xa4,0xfd,0x45,
0x8d,0x29,0x71,0x65,0xc4,0x8,0x1e,0x89,0xd2,0x58,0x39,0x61,0x42,0x5e,0x59,0xd1,
0xf3,0x3a,0xbc,0xc9,0x6d,0xd7,0xac,0x71,0xfc,0x4b,0x69,0x74,0xfb,0x9f,0x1,0x3,
0xe4,0x4,0xc6,0xff,0x4e,0x12,0xc8,0xbf,0x3c,0x78,0x28,0xbe,0xd8,0xe6,0xb,0xe5,
0xf5,0xef,0xbe,0xa3,0x4f,0xe0,0x8f,0x93,0x4d,0x9b,0x1a,0x1d,0x17,0x7f,0x85,0x70,
0xbc,0x16,0x1d,0xad,0x4c,0x67,0x5b,0x5e,0xe0,0xeb,0x9b,0x72,0x2c,0xb1,0x6b,0xd8,
0xde,0xd8,0x58,0xa3,0xe3,0x12,0x42,0xb,0xa5,0x26,0xb9,0x14,0x19,0x57,0xd9,0xcd,
0xcd,0x26,0xda,0xd4,0x4f,0xed,0xbb,0x70,0x61,0x9e,0x29,0xe5,0xf3,0x29,0x7f,0x83,
0x6f,0xf,0x1d,0xca,0xec,0x6c,0xbb,0xd4,0x36,0xa6,0x73,0x67,0x29,0xb5,0xf3,0xff,
0x49,0x2,0xc9,0xe5,0x1c,0x58,0x79,0x47,0x60,0x52,0x85,0xa,0x7c,0xd6,0x54,0x8e,
0xcb,0xec,0xde,0x6d,0xf8,0xbe,0x8d,0xf6,0x68,0xf,0x8f,0xf4,0x74,0xfe,0x9c,0x96,
0xf0,0x6a,0x3f,0xbf,0x34,0x8f,0xf8,0xcc,0xb0,0xbd,0x2b,0x57,0xde,0xff,0x50,0x5e,
0xaf,0x15,0x5,0x19,0x91,0x63,0x80,0x7b,0xe7,0x0,0xdf,0xbe,0x7d,0xe9,0x4,0xee,
0xd2,0xb6,0x99,0x33,0xf1,0x2b,0xe2,0xf0,0x61,0xe9,0xd2,0x86,0x85,0x94,0xbb,0xaf,
0x44,0x49,0x51,0x8b,0x64,0x1f,0x6b,0xdd,0xfa,0x7a,0x64,0x32,0x4d,0xff,0xf6,0xca,
0x15,0xa3,0x67,0xca,0x68,0x85,0x3e,0x81,0x38,0x94,0x76,0x77,0x1b,0x3b,0xa6,0x72,
0x65,0xda,0x89,0x14,0xd3,0x86,0x3d,0x7b,0xc,0xaf,0x7a,0x9b,0xfb,0x17,0x4f,0x8e,
0x9d,0xda,0x44,0xb9,0xd7,0xa7,0xcf,0xcd,0xf1,0xc9,0x99,0x93,0xcf,0x27,0x26,0x1a,
0x3d,0x4f,0x42,0x18,0xe1,0x7e,0xe9,0x9f,0x4a,0x95,0xc8,0xc4,0xbd,0xb9,0xcc,0xaa,
0x55,0x86,0xdf,0x11,0xc8,0x3d,0x69,0xd1,0x94,0x63,0x2a,0xa1,0x36,0x6e,0xd5,0xea,
0xda,0xa7,0xe7,0x7a,0x87,0x87,0x27,0x24,0x18,0x3d,0x4f,0x46,0x29,0xb4,0x9,0xc4,
0xb2,0x64,0x36,0xd9,0x2a,0xb3,0xd5,0xc8,0x3d,0x7b,0x68,0x3a,0x4d,0xc7,0x16,0x77,
0x77,0xab,0x7,0x62,0xa9,0x52,0xbb,0x1c,0xdd,0x79,0xc9,0x94,0x29,0xa9,0x94,0x48,
0x71,0x3e,0x93,0x26,0x1,0x72,0x96,0xb4,0x10,0xff,0xdf,0x7f,0x36,0xea,0x52,0x19,
0xf6,0x46,0xc5,0x69,0xd3,0x30,0x9d,0xde,0x44,0x15,0x3b,0x3b,0xab,0x87,0xd2,0xa,
0x80,0xef,0xf9,0xf3,0xf4,0x29,0xc6,0x28,0xeb,0x5b,0xb5,0x4a,0x69,0x9a,0x30,0x68,
0xf2,0xd8,0x73,0xe7,0x8c,0x9e,0x21,0x6b,0x2b,0x74,0x9,0xa4,0x8c,0x77,0x95,0x99,
0xfe,0x17,0x3c,0x3c,0xd4,0x6f,0xb9,0x82,0xe2,0x1c,0x1d,0x6d,0x58,0x11,0x39,0x4f,
0x8e,0xc1,0xb9,0xb,0x17,0xe0,0x80,0x3f,0xd4,0xc1,0xdd,0xba,0xa5,0x6e,0x4a,0xac,
0x13,0xde,0xec,0xd8,0x31,0xa3,0xe7,0x47,0x88,0xfc,0xc0,0xb1,0xbd,0xb,0x7,0xd,
0xad,0x5f,0x9f,0xce,0x2b,0x67,0x38,0x38,0x32,0x12,0x57,0xa8,0x23,0x66,0x56,0xac,
0x68,0xf5,0x40,0x72,0xab,0x4f,0x2b,0xef,0xd1,0x65,0x35,0xa5,0x69,0xd3,0xeb,0x91,
0xf1,0x23,0xc3,0x2b,0xc5,0xc5,0x19,0x3d,0x3f,0xd6,0x52,0x68,0x12,0x88,0x63,0x7b,
0x8f,0x88,0x31,0xb1,0x15,0x2b,0x52,0x43,0x35,0xc1,0x26,0x7b,0xff,0x7e,0xcc,0xc6,
0xf7,0x58,0xe3,0xea,0x6a,0xed,0x38,0x78,0x2,0x7a,0x61,0xc6,0xbe,0x7d,0x36,0x5b,
0xf8,0xa,0x3e,0xf6,0xf1,0xb9,0xb6,0x37,0x71,0x49,0x68,0xc4,0xd5,0xab,0x46,0xcf,
0x8f,0x10,0xf9,0xd1,0x83,0xf3,0x51,0x3e,0xc8,0x39,0x9d,0xf5,0xd7,0x37,0xdf,0xe0,
0x2a,0xae,0xd2,0xea,0x56,0xad,0xac,0x1e,0x48,0xee,0x1f,0x84,0x39,0x7b,0x55,0x1b,
0xf3,0x86,0x26,0x4d,0x6e,0x52,0x32,0x4d,0xa5,0xa4,0x24,0xa3,0xe7,0x47,0x6f,0x5,
0x3e,0x81,0x58,0x1e,0x8e,0xab,0x9d,0x6d,0xbc,0xd1,0x2c,0x3a,0xda,0xa8,0x67,0x1c,
0xdc,0x1d,0x71,0xec,0xf4,0xc5,0x17,0x69,0xf3,0x13,0x94,0xb8,0x23,0xfe,0xfe,0x80,
0xdc,0xa2,0x12,0x42,0x3b,0x4d,0x39,0x98,0x6d,0x6c,0x9c,0xfe,0xb8,0xd0,0x3c,0xfb,
0xab,0x69,0xd3,0xd0,0x14,0xe7,0x71,0xf1,0xfe,0x3e,0xe,0x6b,0xb2,0xec,0xcb,0x32,
0x7d,0x61,0xbe,0x95,0x5d,0xb7,0x49,0x93,0x82,0xfe,0xb0,0xbd,0xc0,0x26,0x10,0x4b,
0x35,0x51,0xdb,0x17,0x6d,0x3f,0xc8,0xba,0xb3,0x6f,0x9f,0xd5,0xdf,0xaa,0xca,0x7d,
0xb6,0xa1,0x4e,0xc7,0x72,0x8c,0xff,0xe4,0x93,0xf4,0x32,0x89,0x3b,0x43,0x5d,0x97,
0x2c,0x31,0x7a,0x5e,0x84,0x28,0xc,0x9c,0xb6,0xb8,0x8f,0x9,0x72,0x1a,0x34,0x8,
0xdf,0xf1,0xeb,0xdc,0x65,0xee,0x5c,0x6c,0xa5,0x40,0x94,0xb3,0xb1,0xb1,0x5a,0x0,
0xc3,0x0,0x1e,0x7a,0xfa,0x74,0xce,0xcc,0x9c,0x1c,0x9e,0xd3,0xb4,0xe9,0xcd,0x9b,
0xe7,0xcf,0x87,0x87,0xa7,0xa7,0x1b,0x3d,0x2f,0x5a,0xcb,0x73,0xc5,0xce,0x9e,0x5f,
0xcd,0xd,0xc1,0x6c,0x67,0x67,0xb3,0xd7,0x76,0x70,0xd6,0x95,0xc8,0x48,0x6b,0x27,
0xe,0xbe,0xc0,0x5f,0x62,0xd7,0xed,0xdb,0xf4,0x22,0x5,0x62,0x7c,0x97,0x2e,0x92,
0x38,0x84,0xb0,0xbe,0xd4,0xce,0x9,0xd3,0xa6,0xa4,0x2e,0x58,0xc0,0xb5,0xb0,0x7,
0x2f,0x74,0xe8,0x80,0x17,0xf8,0x1c,0x36,0xde,0xba,0x65,0xb5,0x0,0x22,0x0,0x9a,
0x5b,0xbb,0xb6,0x69,0xa2,0xcd,0x7,0xca,0xac,0xcd,0x9b,0x2d,0x1b,0x27,0x8d,0x9e,
0x17,0xad,0x15,0xb0,0x4,0x42,0xe4,0x18,0x72,0xb7,0x65,0xd6,0x9f,0x5f,0x7f,0x4d,
0x95,0xa8,0xd,0xcd,0x6d,0xd1,0xc2,0x5a,0x3d,0xf3,0x7e,0xd4,0xa7,0xf0,0x2b,0x57,
0xd4,0x3d,0xd8,0x84,0x86,0x8d,0x1a,0xa5,0x84,0x26,0x24,0x84,0xba,0x6e,0xdb,0x66,
0xf4,0x8c,0x8,0x51,0x98,0xa5,0x7d,0x96,0xb8,0x24,0x34,0x62,0xf7,0x6e,0x3a,0x6c,
0x9a,0xa7,0x2a,0xcd,0x9a,0xf1,0x22,0xa4,0x72,0xe0,0xb5,0x6b,0xd6,0xea,0x9f,0x26,
0x62,0x2d,0x46,0x35,0x69,0x92,0xd6,0x46,0xcd,0x2e,0xf1,0x8b,0xe5,0xf,0xc9,0xbc,
0x53,0x54,0xf2,0x79,0x15,0x98,0x4,0xe2,0xd4,0xd4,0x7d,0x4d,0xd0,0xab,0x93,0x27,
0x5b,0xbb,0xe4,0x8,0x9f,0xc5,0x7,0xb8,0x7d,0xf9,0x32,0x46,0x29,0xf5,0xd5,0x4b,
0x2d,0x5b,0x4a,0x55,0x4f,0x21,0xf2,0x1e,0x4b,0x51,0x51,0xb2,0x51,0xf7,0x99,0xf6,
0x37,0x69,0x82,0xf2,0xbc,0x15,0x23,0x2f,0x5e,0xb4,0x56,0xff,0xd4,0x8,0xf3,0x90,
0xd5,0xa7,0x8f,0xd3,0x59,0xb7,0x3d,0x41,0x45,0x3f,0xff,0xdc,0xe8,0xf9,0xd0,0x6c,
0x5c,0x46,0x7,0xf0,0xbc,0x2c,0xd5,0x71,0xd1,0x9f,0xfa,0xf1,0xd6,0xd5,0xab,0xad,
0xd5,0x2f,0x8f,0xe6,0xd1,0xe8,0x9c,0x90,0x60,0x1e,0xab,0xe,0x32,0xbf,0xd5,0xb2,
0x65,0x61,0x79,0xeb,0x42,0x88,0x82,0xe0,0x41,0xe9,0x94,0x72,0xa6,0x39,0x6a,0xa5,
0x1f,0x7f,0x44,0x0,0xa6,0xa1,0xa9,0x9b,0x9b,0xb5,0xfa,0xa7,0xe,0x38,0x84,0x1f,
0x7a,0xf6,0x4c,0x59,0x95,0x50,0x3e,0xf4,0xd4,0xba,0x75,0x46,0xcf,0xc7,0xb3,0xca,
0xb7,0x2b,0x10,0xcb,0x79,0x1c,0x96,0xb2,0xea,0xd6,0xea,0xd7,0x92,0x38,0x10,0x6d,
0xca,0xce,0x71,0x68,0xda,0x54,0x12,0x87,0x10,0xf9,0x8f,0xa5,0xc2,0x3,0x7f,0xa7,
0x64,0xe5,0x2c,0x6f,0xd2,0xc4,0xb2,0xc3,0xdc,0x5a,0xfd,0xab,0x53,0x10,0x85,0x88,
0x25,0x4b,0x1c,0x3e,0x73,0xbf,0x12,0xe8,0x59,0xab,0x96,0xd1,0xf3,0xf1,0xac,0xf2,
0xdd,0xa,0xe4,0x41,0xb1,0xc3,0x59,0xa6,0xaf,0x95,0xed,0xc7,0x8e,0x59,0xed,0x20,
0xa7,0xdc,0x25,0x6f,0x4e,0xf,0xf5,0x75,0xe5,0xf5,0x26,0x4d,0xa4,0xc4,0x88,0x10,
0x5,0x87,0xa5,0xa4,0x91,0xf2,0x3e,0x6a,0x98,0x4e,0xed,0xdb,0x87,0xb5,0x88,0xc1,
0xeb,0x2e,0x2e,0x7a,0xf7,0x6b,0x39,0xd8,0xca,0xfc,0x8e,0x5a,0xc1,0xb6,0xe5,0x9b,
0x6f,0xe6,0xb7,0x13,0x12,0xf3,0xd5,0xa,0x24,0x98,0x15,0xe5,0xc1,0xd1,0xb1,0x56,
0x4a,0x1c,0x96,0x87,0xe3,0x54,0xc,0xb1,0xec,0xd3,0xb2,0xa5,0x24,0xe,0x21,0xa,
0x9e,0xf4,0x1b,0x9,0x89,0x53,0xa7,0x9d,0x3f,0x8f,0x43,0xe6,0xed,0xdc,0xb5,0x5d,
0x3b,0x6b,0x3d,0x6c,0xa7,0xbe,0xe4,0x85,0xbd,0x1e,0x1e,0xa6,0x13,0xa6,0xa8,0xec,
0x1b,0x2b,0x56,0xe4,0xfe,0x34,0xdf,0xfc,0x61,0x9f,0x6f,0x12,0x88,0xc3,0x1d,0xb7,
0xef,0x72,0x26,0x8e,0x18,0x61,0xb5,0x33,0xc7,0x73,0x5f,0xfb,0x53,0xe3,0xb8,0x18,
0xf,0x69,0xdb,0x56,0xca,0xa7,0xb,0x51,0xf0,0xa5,0x1e,0x4f,0xa6,0xb0,0x8f,0xcf,
0x9e,0x55,0xea,0x2b,0x93,0xf8,0xcd,0x76,0xed,0x70,0x97,0xa3,0xd0,0x28,0x23,0x43,
0xef,0x7e,0xa9,0xd,0x86,0x60,0x7a,0xa7,0x4e,0x96,0x5a,0x5f,0x46,0xcf,0xc3,0x13,
0xc7,0x6d,0x74,0x0,0x8f,0x63,0xb9,0x47,0x48,0x6f,0xe0,0x6d,0x54,0x3e,0x76,0x8c,
0x86,0x20,0x1d,0x9e,0xf6,0xf6,0xba,0x75,0x98,0xbb,0x1,0x90,0xbf,0xe1,0x63,0x78,
0xe3,0x9d,0x77,0xd2,0x32,0x93,0x66,0x84,0x7e,0xba,0x73,0xa7,0xd1,0xf3,0x20,0x84,
0xb0,0x3e,0x87,0xf0,0x2a,0xe,0x81,0x7b,0xda,0xb7,0x57,0xce,0xaa,0x5f,0xe1,0x9b,
0xef,0xbf,0xd7,0x7b,0x43,0x22,0x87,0x20,0xd,0x7d,0x32,0x33,0xd5,0xfd,0xea,0x32,
0xb3,0xb9,0x5e,0xbd,0x1b,0xeb,0x93,0xde,0x9d,0x5a,0xfb,0xf7,0xdf,0x8d,0x9e,0x87,
0x47,0xc9,0xb3,0x9,0xc4,0x85,0x5d,0x38,0x98,0xed,0xed,0x6f,0x4f,0x34,0x55,0xc9,
0xba,0xf2,0xcb,0x2f,0x96,0x8d,0x39,0xba,0x77,0x3c,0xc,0xe0,0xa1,0x9f,0x7e,0x9a,
0x1a,0x9c,0x90,0x10,0x56,0xe1,0xab,0xaf,0x8c,0x9e,0x7,0x21,0x84,0xf1,0x1c,0xae,
0xbb,0xb5,0xd,0x4c,0x1a,0x38,0x50,0xa9,0x41,0xe7,0xb0,0x68,0xf1,0x62,0xdd,0x3b,
0xac,0xce,0x93,0x51,0xf1,0xcc,0x99,0xa2,0xf5,0xb2,0x8f,0xdd,0x7d,0xad,0x6e,0xdd,
0x8b,0xb3,0x2e,0xce,0x9a,0xd5,0xf0,0xee,0x5d,0xa3,0xe7,0xe1,0xdf,0xf2,0xec,0x2d,
0xac,0xdb,0x43,0x94,0x2f,0xb2,0x4e,0x4d,0x9d,0x6a,0xad,0xc4,0x61,0xa9,0x55,0x25,
0x89,0x43,0x8,0xf1,0x6f,0xf,0x2a,0x4a,0x2c,0x43,0x32,0x37,0x9f,0x3d,0x5b,0xf7,
0xe,0x73,0xcf,0x8a,0xbf,0x5b,0xc9,0xd6,0xbb,0xe8,0xc5,0xb0,0x30,0xa3,0xc7,0xff,
0x28,0x79,0x2e,0x81,0x58,0xca,0x34,0xe3,0x4,0xc5,0xd1,0xd2,0x21,0x43,0xf4,0xee,
0x8f,0x2f,0xf0,0x2e,0x1e,0xba,0x77,0x6f,0xda,0xfc,0x4a,0x64,0x37,0x32,0x20,0xc0,
0xe8,0xf1,0xb,0x21,0xf2,0xae,0xd4,0xce,0x95,0x72,0xec,0x5a,0x8d,0x1e,0x6d,0x39,
0x62,0x5a,0xf7,0xe,0x23,0x69,0x5,0xe,0xc,0x1d,0xea,0x50,0xda,0xdd,0x2d,0x68,
0xb7,0x97,0x97,0xd1,0xe3,0xff,0xb7,0x3c,0x93,0x40,0x2c,0xb5,0x62,0xe8,0xa6,0xf2,
0xd,0xbf,0xbc,0x74,0x29,0x62,0xb1,0x1b,0xc5,0x15,0xfd,0xe2,0xcb,0x2d,0xbf,0x6c,
0x37,0xd8,0xb4,0x1d,0xe8,0xd1,0x3,0x88,0xa6,0x10,0xca,0xc9,0x31,0x7a,0x1e,0x84,
0x10,0x79,0xd9,0xfd,0xeb,0x84,0xcd,0x2,0xde,0x85,0x3,0xdd,0xbb,0xeb,0xbe,0xa3,
0x3d,0xf7,0x3a,0x48,0x7f,0xa3,0x31,0x77,0x5f,0xb2,0xc4,0x72,0x6b,0xdf,0xe8,0x59,
0xb0,0xc8,0x33,0x9,0x24,0xdd,0xc5,0x7c,0xb9,0x44,0xbf,0xa0,0x20,0xcb,0xd2,0x4d,
0xb7,0x8e,0x46,0xf3,0x31,0xc4,0x67,0x65,0x59,0xe,0x72,0xba,0xb2,0x3c,0x6e,0x58,
0x58,0x85,0xeb,0xd7,0x8d,0x1e,0xbf,0x10,0x22,0xff,0xb0,0x9c,0xe3,0xa3,0x8e,0x53,
0x2,0x69,0x7d,0xf7,0xee,0xf,0x4e,0x16,0xd5,0x9,0x55,0xc2,0x1,0xc,0xaa,0x5e,
0xfd,0x36,0x14,0x64,0xe1,0xfe,0x71,0x10,0x79,0x81,0xe1,0x9,0xc4,0x21,0xae,0xca,
0x8e,0xf1,0xb6,0xaf,0xbc,0x82,0xbf,0xf0,0x19,0x9a,0x8d,0x1d,0xab,0x7b,0x87,0x2a,
0x1d,0xe5,0x6a,0xe3,0xc7,0xcb,0x9,0x80,0x42,0x88,0xe7,0x95,0xde,0x33,0x7e,0xcb,
0x94,0xc1,0x87,0xe,0x71,0x5d,0x65,0x4,0x7f,0x1a,0x12,0xa2,0x7b,0x87,0x53,0x91,
0x46,0x3d,0x2,0x2,0x1c,0x77,0xbb,0xd4,0x1f,0x97,0xf4,0xf2,0xcb,0x46,0x8f,0xdf,
0xf0,0x4,0xa2,0x2c,0xe3,0xd2,0xe6,0x4f,0x66,0xcc,0xd0,0xfb,0x6c,0x63,0xf6,0x45,
0x6d,0x34,0xd9,0xbf,0x3f,0x35,0x30,0xa1,0x43,0xdc,0xd9,0x19,0x33,0x8c,0x1e,0xb7,
0x10,0xa2,0xe0,0x48,0x1b,0x12,0x7f,0xc5,0xee,0xf5,0xd0,0x50,0xde,0xcc,0x1f,0xf2,
0xf8,0x9f,0x7f,0xd6,0xad,0xa3,0xdc,0xeb,0x24,0x79,0x9b,0x4e,0xa9,0x1b,0xe7,0xce,
0x35,0x7a,0xdc,0x86,0x25,0x10,0xa7,0x2d,0xae,0xbf,0x7,0xc,0xef,0xd4,0x9,0xb,
0xd1,0xb,0xc5,0xdb,0xb6,0xd5,0xad,0xa3,0xf6,0x68,0xf,0x8f,0xf4,0x74,0xf6,0x24,
0x50,0x7c,0xef,0xde,0x80,0x9c,0x4,0x28,0x84,0xd0,0x5e,0x8,0xa9,0xaa,0x1a,0x8d,
0x30,0xe5,0x72,0xdf,0xbe,0x70,0x5,0xf0,0xda,0xcd,0x9b,0xba,0x75,0x66,0x42,0x79,
0xa4,0xb6,0x6c,0xe9,0x1c,0xe8,0xee,0x1e,0x98,0xf4,0xf6,0xdb,0x46,0x8d,0xd9,0x80,
0x4,0x72,0xff,0xc0,0x27,0x7e,0x55,0xf9,0x88,0x9a,0x4f,0x9f,0xae,0x77,0x6f,0xfc,
0x39,0x2d,0xe1,0xd5,0x7e,0x7e,0xf7,0x97,0x9a,0x17,0x2e,0x58,0x7f,0xbc,0x42,0x88,
0xc2,0xe2,0xc6,0xb8,0xc4,0x7b,0x53,0xdc,0x93,0x93,0xd5,0x1d,0x5c,0x15,0x6f,0x7d,
0xf6,0x99,0xde,0xfd,0xa9,0xd,0xf8,0x0,0xe2,0x66,0xcf,0x36,0xea,0xc0,0x2a,0xab,
0x27,0x10,0x87,0x3b,0x77,0x6d,0x73,0x26,0xe,0x19,0x42,0x6f,0x20,0x5,0xbf,0x54,
0xab,0xa6,0x5b,0x47,0x75,0xd0,0x6,0x36,0xbb,0x77,0xa7,0x79,0xc4,0x67,0x86,0xed,
0x5d,0xb9,0xd2,0xda,0xe3,0x14,0x42,0x14,0x5e,0xf7,0xf7,0x8d,0x2c,0x5d,0xca,0x47,
0x79,0x6,0xdc,0x7e,0xfa,0x49,0xaf,0x7e,0x2c,0xb5,0xb4,0xd2,0xa2,0xd4,0xa8,0x92,
0x51,0x9f,0x7c,0x62,0xed,0x71,0x5a,0x2d,0x81,0x94,0xf1,0xae,0xb9,0x21,0x98,0x8b,
0x17,0xa7,0x28,0xea,0xab,0x8e,0xd2,0xef,0x61,0x39,0xef,0x46,0x4f,0x1c,0xba,0x73,
0x47,0xd9,0xa8,0xd4,0x54,0x62,0x2c,0x13,0xca,0x6c,0xad,0x71,0xa,0x21,0xc4,0x7d,
0xcc,0xca,0x25,0xba,0xaa,0xa4,0x7d,0xfc,0x31,0xaf,0xc3,0x9b,0xe8,0xaa,0xdf,0x4e,
0x72,0x7a,0x97,0xc7,0xf1,0x97,0x41,0x41,0x4e,0x5b,0xaa,0xf7,0x1f,0x53,0xad,0x44,
0x9,0x6b,0x8d,0xd0,0x6a,0x9,0xc4,0xdc,0x34,0x73,0x58,0xd6,0x89,0x11,0x23,0xc8,
0x17,0x4e,0x14,0x5a,0xb6,0xac,0x5e,0xfd,0x50,0x49,0x5e,0xce,0xae,0xc1,0xc1,0xd7,
0x4b,0xc5,0xd,0x9b,0xbc,0x3e,0x3e,0xde,0x5a,0xe3,0x13,0x42,0x88,0x7f,0x4b,0x69,
0x9a,0x30,0x68,0xf2,0xd8,0x73,0xe7,0x50,0x9d,0x1b,0xf1,0x95,0xc9,0x93,0x75,0xeb,
0xc8,0x9f,0xde,0x47,0x80,0xb3,0x33,0xd7,0xc9,0x7a,0xcd,0x34,0x63,0xe8,0x50,0x6b,
0x8d,0x4f,0xf7,0x4,0x72,0xbf,0xce,0x7e,0xa9,0x52,0x14,0xcf,0xfe,0xd4,0xdc,0xcf,
0x4f,0xaf,0x7e,0x78,0x3a,0x2f,0xc1,0xf,0xf1,0xf1,0xe,0xdb,0x4d,0xfe,0xb7,0x7d,
0x8c,0x7f,0x3b,0x41,0x8,0x21,0x2c,0xd2,0x2a,0x17,0x2d,0x6f,0xf7,0xce,0x17,0x5f,
0x58,0xce,0xff,0xd0,0xab,0x1f,0xfa,0x88,0x7e,0xa0,0x41,0xa3,0x47,0x97,0x62,0x17,
0xe,0xe6,0xd2,0xa5,0xf5,0x1e,0x97,0xee,0x9,0x44,0x59,0xc1,0x3d,0x4c,0x2b,0x46,
0x8d,0xc2,0x4a,0x44,0x60,0x88,0xa3,0xa3,0x5e,0xfd,0xd0,0x7b,0x8,0xa1,0x3f,0xfc,
0xfc,0xe2,0x86,0xc5,0xd,0x9b,0xdb,0x21,0x33,0x53,0xef,0x71,0x9,0x21,0xc4,0x93,
0x3b,0xe3,0x13,0x42,0x59,0x59,0x38,0x81,0x22,0xb4,0x4a,0xc7,0x8d,0x80,0xbf,0x22,
0xe,0x1f,0x96,0x2e,0x6d,0x3,0x5,0x59,0x18,0x31,0x42,0xef,0x51,0xe9,0x56,0x8d,
0xb7,0x5c,0xeb,0x72,0xad,0x3f,0xeb,0xf3,0xc2,0xb,0x39,0xcd,0x8b,0xf5,0xb6,0xab,
0x97,0x9c,0x8c,0x19,0x34,0x11,0x97,0x9d,0x9c,0xb4,0xee,0xe7,0x41,0x2d,0xab,0x62,
0x89,0x1e,0x61,0x15,0x5a,0xb6,0xd4,0x77,0xba,0x84,0x10,0xe2,0xf9,0x39,0xd5,0x74,
0x6f,0x10,0x70,0x66,0xf7,0x6e,0x5c,0xc5,0x55,0x5a,0xdd,0xaa,0x95,0xe6,0x1d,0xe4,
0x6e,0x5f,0x50,0x32,0xed,0x9b,0xda,0xf6,0xab,0x5c,0xf9,0x7a,0xe4,0x19,0x9f,0x10,
0xba,0x7d,0x5b,0xeb,0x6e,0x74,0x5b,0x81,0x64,0x7b,0xbe,0xd0,0xcd,0x2e,0x71,0xe0,
0x40,0xbd,0x12,0x7,0x9c,0xe0,0x8e,0x20,0x66,0x25,0xdd,0xb4,0x9d,0x5b,0xe8,0xff,
0xba,0x9c,0x10,0x42,0x68,0x85,0xae,0xd1,0x35,0x5e,0xe9,0xef,0x6f,0xb9,0x8e,0x69,
0xde,0x41,0x14,0xa2,0x10,0xe7,0xe0,0x60,0xfe,0x2c,0x73,0x76,0xb6,0x5b,0xbf,0x7e,
0x7a,0x8d,0x43,0x97,0x4,0xe2,0xed,0x6d,0x32,0xe1,0x15,0xae,0x86,0xc,0x1d,0x1f,
0xe6,0x74,0x41,0x4d,0x1c,0xdf,0xb8,0x31,0xe5,0xa5,0xb8,0x61,0xe1,0x7f,0xfd,0xf6,
0x9b,0x6e,0xfd,0x8,0x21,0x84,0xc6,0x52,0x52,0xe2,0xe3,0xc3,0xc3,0x8f,0x1f,0xe7,
0x6f,0x30,0x12,0x59,0x5b,0xb7,0xea,0xd5,0xf,0xfd,0xce,0x1f,0xe0,0x25,0x3f,0x3f,
0xa0,0x29,0x7,0xb3,0xf6,0x7,0x61,0x69,0x9e,0x40,0x1c,0xe2,0x5c,0xf7,0x56,0xdd,
0xde,0xad,0x9b,0x6e,0x67,0x96,0x57,0x43,0x6b,0xdc,0x56,0x55,0xb3,0x17,0xdf,0xc1,
0xb7,0x93,0x26,0x69,0xde,0xbe,0x10,0x42,0x58,0x9,0xb7,0xc4,0x60,0x53,0xfd,0x71,
0xe3,0x2c,0xd7,0x35,0xcd,0x3b,0x8,0xc0,0x34,0x34,0x75,0x73,0x73,0x74,0x38,0xef,
0x96,0x13,0xd4,0xb5,0xab,0xd6,0xcd,0x6b,0x9e,0x40,0x94,0x3f,0x95,0x81,0x28,0xae,
0xdf,0xca,0x83,0xdb,0x71,0x28,0xfb,0xae,0x5f,0x7f,0xa3,0x53,0xe2,0x92,0xd0,0x88,
0x53,0xa7,0xf4,0xea,0x47,0x8,0x21,0xf4,0x96,0x7e,0x23,0x21,0x71,0x52,0xcc,0xe9,
0xd3,0x68,0x8c,0x22,0x78,0x6f,0xd3,0x26,0xbd,0xfa,0xa1,0xaf,0x49,0xe1,0xa5,0xda,
0x9f,0xb5,0xae,0x59,0x2,0x71,0x7a,0xc3,0x85,0x3,0x16,0xd6,0xa8,0x81,0xd1,0x70,
0x47,0x42,0xa3,0x46,0x7a,0x4d,0x84,0xe9,0xf,0xd5,0x91,0xce,0x4c,0x9b,0xa6,0x57,
0xfb,0x42,0x8,0x61,0x6d,0xb4,0x8c,0xb6,0xa9,0xdb,0xc3,0xc3,0x75,0xeb,0xa0,0x3f,
0x80,0x1,0x5e,0x5e,0x8e,0xed,0x3d,0x22,0x2,0x2e,0x6b,0x77,0x5c,0x86,0x76,0x2b,
0x90,0x15,0xa6,0xe6,0x64,0xf6,0xf5,0x45,0x2a,0x12,0x30,0x85,0xb4,0x7f,0xbb,0x2b,
0xb7,0x34,0xc9,0xf5,0xc8,0x64,0xa,0xf5,0x39,0x79,0x52,0xf3,0xf6,0x85,0x10,0xc2,
0x20,0xf,0x9e,0x89,0xe8,0x5d,0xcd,0x17,0x6a,0x2d,0x5a,0xd2,0xbf,0xbf,0x56,0xad,
0x69,0x90,0x40,0x72,0x8b,0x23,0x1e,0xe4,0xf5,0xb8,0xd9,0xa7,0x8f,0x5e,0xc3,0xe6,
0xfd,0xea,0xb,0x28,0x2f,0x65,0xd8,0x85,0x10,0x5,0x97,0x12,0x45,0x2b,0xe8,0xea,
0x17,0x5f,0xe8,0xd5,0x3e,0x35,0xe6,0xf3,0x28,0xdd,0xb7,0xaf,0x56,0xc5,0x17,0x9f,
0x3b,0x81,0x38,0x7c,0x93,0xb9,0x26,0x67,0x7e,0xd7,0xae,0x14,0x48,0xd,0x90,0x51,
0xa6,0x8c,0xe6,0x23,0xae,0xce,0x93,0x51,0xf1,0xcc,0x99,0xb4,0xcc,0xa4,0x19,0xa1,
0x9f,0xee,0xda,0xa5,0x79,0xfb,0x42,0x8,0x91,0x47,0xa4,0x84,0x26,0x24,0x84,0xba,
0x6e,0xdf,0x8e,0x2c,0x7c,0x84,0x97,0xcf,0x9e,0xd5,0xbc,0x83,0xdc,0x6d,0x15,0x69,
0x51,0xe6,0x8c,0xe2,0x75,0x3a,0x76,0x7c,0xde,0xe6,0x9e,0x3b,0x81,0x50,0x35,0xfe,
0x98,0x7b,0xf5,0xea,0xa5,0xf9,0x40,0x73,0xf1,0x40,0x6a,0x41,0xd1,0xb,0x17,0xe6,
0xfe,0x97,0x14,0x45,0x14,0x42,0x14,0x70,0xcc,0xea,0x55,0xae,0x41,0x9,0x8b,0x17,
0xeb,0xd5,0x3,0x65,0xd0,0x24,0xba,0xd6,0xb3,0xe7,0xf3,0xb6,0xf3,0xcc,0x9,0xc4,
0xb1,0xbd,0x47,0x44,0x30,0x97,0x2c,0x89,0x58,0x8c,0xc7,0xfb,0x6d,0xda,0x68,0x3d,
0x40,0xfe,0x12,0xe,0x38,0x75,0xef,0x5e,0xce,0xa2,0xac,0xa9,0x36,0xeb,0x56,0xaf,
0xd6,0xba,0x7d,0x21,0x84,0xc8,0xab,0x72,0x26,0x15,0xd9,0xa3,0x46,0xaf,0x58,0xc1,
0x21,0x48,0x43,0x1f,0xed,0x4b,0x33,0xf1,0x60,0xbc,0x82,0xa0,0xe,0x1d,0x1e,0x5c,
0xc7,0x9f,0xd1,0x33,0x27,0x10,0x3a,0xcc,0x7f,0x66,0xcf,0xec,0xd2,0x85,0x86,0x20,
0x1d,0x9e,0xf6,0xf6,0x5a,0xf,0x10,0x75,0xd0,0xb,0x75,0xbf,0xfd,0xf6,0xd6,0x91,
0x8b,0xb3,0x42,0x28,0x2d,0x4d,0xf3,0xf6,0x85,0x10,0x22,0x8f,0xca,0x8,0x3b,0x3b,
0x2f,0x6c,0x6f,0x6a,0x2a,0x35,0xe2,0xd1,0xec,0xb0,0x79,0xb3,0xd6,0xed,0x5b,0xae,
0xdb,0x34,0xc8,0xfc,0x6a,0xce,0x91,0x67,0xbf,0x95,0xf5,0xcc,0x9,0x84,0xc3,0xf8,
0x3a,0xfc,0xbc,0xbd,0xb5,0x1e,0xd8,0x83,0x1,0xc6,0xd0,0x25,0x7c,0xb5,0x6c,0x99,
0x5e,0xed,0xb,0x21,0x44,0x5e,0xc7,0x3f,0x22,0x91,0xc2,0x96,0x2e,0xd5,0xad,0xfd,
0x8a,0xf4,0xf,0xd7,0xf0,0xf1,0x79,0xd6,0xdf,0x7f,0xea,0x4,0x62,0x29,0x92,0x8,
0x33,0xf6,0xe2,0x6c,0xeb,0xd6,0x9a,0xf,0xe8,0x2c,0x3e,0xc0,0xed,0xcb,0x97,0x53,
0x3b,0xc7,0xcf,0xb4,0xbd,0x12,0x1d,0xad,0x75,0xfb,0x42,0x8,0x91,0x5f,0xa4,0x7d,
0x56,0x79,0xb1,0xed,0x9c,0x9f,0x7e,0xe2,0x45,0x48,0xe5,0xc0,0x6b,0xd7,0x34,0xef,
0x20,0xf7,0x11,0x44,0x85,0x85,0x15,0x16,0x6,0x73,0xb1,0x62,0x4f,0xfb,0xeb,0x4f,
0x9d,0x40,0x72,0x36,0x16,0xcb,0x2a,0xb2,0xb6,0x45,0xb,0xa,0x86,0x23,0x56,0x6b,
0x7f,0x6,0x2f,0x7d,0xce,0x2f,0xf0,0x80,0xc8,0x48,0xe0,0xfe,0x21,0xf5,0x9a,0x4f,
0x98,0x10,0x42,0xe4,0x1b,0xd1,0x14,0x42,0x39,0x39,0x28,0xf,0x27,0x4a,0xd9,0xb8,
0x51,0xeb,0xd6,0x2d,0xb7,0xb2,0xb2,0x6b,0x14,0xe5,0xac,0x32,0xcd,0x9a,0x3d,0xed,
0xef,0x3f,0x75,0x2,0xe1,0xd3,0x74,0x81,0x13,0xda,0xb7,0xd7,0x69,0xb6,0xa0,0xde,
0xa0,0x57,0xf0,0xed,0x86,0xd,0x7a,0xb5,0x2f,0x84,0x10,0xf9,0xd,0x35,0xa4,0x78,
0x72,0xd1,0xef,0xba,0xc8,0xbe,0xf0,0xc2,0xe9,0xa7,0xbf,0xae,0x3f,0x75,0x2,0xa1,
0x3f,0x31,0x6,0xbd,0xdb,0xb5,0xd3,0x7c,0x4,0x69,0x98,0x82,0xf1,0x7f,0xff,0x9d,
0xbe,0x26,0xa1,0x83,0xdd,0xc4,0xc3,0x87,0x75,0x9a,0x27,0x21,0x84,0xc8,0x77,0x52,
0x29,0x9e,0x6c,0xb0,0x6f,0x1f,0x7f,0x7,0x47,0xd0,0xd5,0xab,0x5a,0xb7,0xcf,0x63,
0xf9,0x1a,0xb5,0xd5,0x31,0x81,0x38,0x6d,0x71,0xfd,0x7d,0x5c,0x54,0xf5,0xea,0x96,
0xea,0x8e,0x9a,0xcf,0xd0,0x6c,0xcc,0x47,0xb7,0x1d,0x3b,0x0,0xb9,0x75,0x25,0x84,
0x10,0xff,0x16,0x42,0xaa,0x4a,0xef,0xf2,0x6b,0xc8,0xd8,0xb9,0x53,0xeb,0xb6,0x2d,
0xd5,0xd3,0x9d,0xa3,0xdd,0x17,0x8c,0x9b,0x5a,0xb5,0xea,0x93,0xfe,0xde,0x13,0x27,
0x10,0x1a,0x60,0x7a,0x57,0x6d,0xd9,0xb4,0xa9,0x5e,0x93,0xc3,0x3b,0xb8,0x1d,0x2f,
0x8d,0x8a,0xd2,0xab,0x7d,0x21,0x84,0xc8,0xf7,0xfe,0xa4,0xbd,0x48,0xd6,0x3e,0x81,
0x58,0xa8,0x3d,0xd8,0xd6,0xcc,0x4d,0x9a,0x3c,0xe9,0xf7,0x9f,0x38,0x81,0xb0,0x8b,
0x3a,0x86,0xea,0x37,0x6c,0xa8,0x79,0xc4,0x1d,0x39,0x14,0x57,0x73,0x72,0xcc,0xdb,
0xd5,0x40,0xbb,0xf2,0x7b,0xf6,0xe8,0x35,0x31,0x42,0x8,0x91,0xdf,0x65,0x77,0xce,
0xea,0x6c,0xbb,0x79,0xc7,0xe,0x34,0xc4,0x20,0xf8,0x99,0xcd,0x5a,0xb7,0x4f,0x3d,
0xe8,0x13,0x65,0xf1,0x93,0x57,0x53,0x7f,0xf2,0x4,0x32,0x9f,0x3e,0xe3,0x34,0x1d,
0x12,0x48,0x3d,0x74,0xc4,0x80,0xa3,0x47,0x6f,0x52,0x32,0x85,0xd0,0x8d,0x1b,0x9a,
0xb7,0x2f,0x84,0x10,0x5,0xc4,0x83,0x8d,0xd5,0xc7,0x11,0x83,0x9e,0xc7,0x8f,0x6b,
0xdd,0x3e,0xf,0xc7,0x6b,0x3c,0x43,0xc3,0x4,0x52,0xae,0xb5,0xfb,0x95,0x60,0x2e,
0x5b,0x96,0x3a,0xa0,0xc,0x7a,0x3d,0xf9,0xbd,0xb1,0x27,0xe,0xf8,0x43,0xaa,0x4d,
0x41,0xfb,0xf7,0x6b,0xdd,0xae,0x10,0x42,0x14,0x54,0xfc,0x2a,0x7a,0xa3,0xa9,0xf6,
0xd7,0x4d,0x6a,0x83,0x92,0x68,0x5d,0xb5,0xaa,0xe5,0xba,0xff,0xb8,0xef,0x3f,0x36,
0x81,0xe4,0xc,0x51,0xaf,0x66,0x8d,0xa8,0x5f,0x5f,0xaf,0x89,0xa0,0x1c,0xae,0x84,
0xe8,0x43,0x87,0xf4,0x6a,0x5f,0x8,0x21,0xa,0x9c,0x8d,0xb0,0xa5,0xbd,0x7,0xf,
0x6a,0xde,0x6e,0xee,0x79,0x4e,0x39,0x1b,0xb9,0x7b,0x8e,0xa9,0x5e,0xbd,0xc7,0x7d,
0xfd,0xb1,0x9,0x84,0x7f,0x54,0x98,0xfc,0x5e,0x7d,0x55,0xf3,0x40,0x9d,0xe0,0x8e,
0x20,0xe6,0xcc,0x58,0xdb,0xea,0x36,0x66,0x79,0x6d,0x57,0x8,0x21,0x9e,0x54,0xd6,
0x19,0x9b,0x55,0x36,0x7b,0xf7,0xef,0xb7,0x5c,0x47,0xb5,0x6e,0x9f,0x57,0x2a,0x31,
0xea,0xb1,0xc7,0x5f,0xf7,0x1f,0x9b,0x40,0xa8,0x2a,0x4e,0x71,0x85,0xda,0xb5,0x35,
0xf,0xf0,0x24,0x5e,0x44,0xa5,0xd8,0xd8,0xdb,0x75,0x63,0x17,0x85,0x50,0x4a,0x8a,
0xd6,0xed,0xb,0x21,0x44,0x41,0x65,0xb9,0x6e,0xf2,0x2a,0x1c,0xc5,0x2b,0x71,0x71,
0x5a,0xb7,0x4f,0x95,0x78,0x2f,0x5d,0x7a,0xfc,0x75,0xff,0xf1,0x2b,0x90,0x1,0xd8,
0x43,0x15,0x3c,0x3d,0x35,0x9f,0x81,0xe9,0x3c,0x8b,0xf7,0x9d,0x38,0xa1,0x79,0xbb,
0x42,0x8,0x51,0x48,0xd0,0x2f,0x98,0xc7,0x31,0x3a,0x1c,0xf1,0xdd,0x7,0x5b,0x70,
0xf3,0xf1,0xd7,0xfd,0x47,0x26,0x90,0x8a,0x7e,0x15,0xfd,0xfc,0xe,0x15,0x2d,0x4a,
0xdd,0x51,0xb,0x31,0x1e,0x1e,0x9a,0xf,0x7c,0x2a,0x52,0x28,0xf9,0xf4,0x69,0xcd,
0x7,0x2e,0x84,0x10,0x85,0x4,0x9f,0x83,0x27,0x5d,0xd6,0xe1,0x3a,0xda,0xc,0x26,
0xb4,0xab,0x5a,0xd5,0x92,0x7,0x1e,0xf5,0xb5,0x47,0x26,0x90,0xdb,0x7f,0xdb,0x34,
0xb6,0x2b,0x51,0xad,0x1a,0xe,0x61,0x1,0x66,0x99,0x4c,0x5a,0xc7,0x47,0xaf,0xe0,
0xc,0xcf,0x90,0x4,0x22,0x84,0x10,0xcf,0x8a,0x4c,0xf4,0x27,0xb5,0x3c,0x75,0x4a,
0xf3,0x86,0x73,0xaf,0xfb,0xb7,0x9b,0xdb,0x66,0x14,0x5d,0xf7,0xe8,0xb7,0x6f,0x1f,
0x99,0x40,0x4c,0x71,0xa6,0x29,0xca,0x21,0x1d,0x4a,0x96,0xe4,0x32,0x9f,0xa3,0x91,
0x6a,0x5d,0x1d,0x6,0x2e,0x84,0x10,0x85,0x44,0x8e,0x63,0x4e,0x7f,0xca,0xd6,0xef,
0x3a,0x6a,0xfa,0x49,0x69,0x4e,0xdb,0x1e,0x9d,0x7,0x1e,0x99,0x40,0x38,0x45,0x3d,
0x42,0x7b,0xb4,0x4f,0x20,0xbc,0xe,0x6f,0xa2,0xeb,0xdd,0xbb,0xe9,0x37,0x12,0x12,
0xa7,0x4e,0xbb,0x70,0x41,0xaf,0x81,0xb,0x21,0x44,0x41,0x77,0x73,0x7c,0x72,0xa6,
0x29,0x39,0x39,0x59,0xb7,0xa3,0x6f,0x15,0xce,0xe0,0xf2,0xae,0xae,0x8f,0xfa,0xfc,
0x91,0x9,0x84,0x86,0xe3,0x18,0xbc,0x5d,0x5c,0xb4,0xe,0x88,0x6,0xa1,0x27,0x1a,
0x24,0x25,0xe5,0x86,0xa7,0xf9,0xeb,0x67,0x42,0x8,0x51,0x98,0x84,0x90,0xaa,0xc2,
0x85,0xcf,0xe0,0x6f,0xed,0xff,0x20,0xa7,0x26,0x18,0xcc,0x9f,0x3f,0x43,0x2,0xe1,
0xa6,0x74,0x3,0xad,0x75,0xb8,0x85,0x35,0x93,0x1d,0xd0,0xdb,0x92,0x40,0x84,0x10,
0x42,0x3c,0x2f,0x9a,0x43,0x13,0xb1,0x2f,0x31,0x51,0xeb,0x76,0xb9,0x1e,0xfb,0xd1,
0xa8,0x67,0xb8,0x85,0x85,0x4a,0xf0,0xc1,0x80,0x17,0x5f,0xd4,0x3c,0x20,0x67,0xea,
0x87,0x10,0x49,0x20,0x42,0x8,0xa1,0x15,0xae,0xc2,0x25,0xb1,0x56,0xfb,0x4,0x2,
0x85,0x16,0xc0,0xe3,0xa5,0x97,0x1e,0xf9,0xf1,0xa3,0x3e,0xa0,0x85,0x18,0x88,0x49,
0xce,0xce,0x9a,0x7,0x54,0x89,0x47,0xf0,0xe9,0x8b,0x17,0x35,0x6f,0x57,0x8,0x21,
0xa,0xab,0xda,0xca,0x4a,0x5e,0xaf,0xc3,0x2d,0xac,0xc7,0xe4,0x81,0x47,0xdf,0xc2,
0x1a,0xc5,0x6d,0xf0,0xa1,0xf6,0x9,0x44,0x79,0x5d,0x99,0x43,0x6d,0x65,0xe7,0xb9,
0x10,0x42,0x68,0x85,0x52,0xb9,0x18,0x5e,0x4c,0x4d,0xd5,0xbc,0xe1,0x30,0xfe,0x4,
0x49,0x4e,0x4e,0x8f,0xfa,0xf8,0xa1,0x4,0xe2,0xc2,0x2e,0x1c,0xcc,0xf6,0xf6,0x54,
0x89,0x86,0xa0,0x4d,0xf1,0xe2,0x5a,0xc7,0xa3,0x7e,0xc3,0x75,0xf9,0xb0,0x24,0x10,
0x21,0x84,0xd0,0xa,0xcf,0x66,0x55,0x99,0xab,0xc3,0x75,0xb5,0x28,0xb5,0xc7,0xc1,
0x12,0x25,0x2c,0x79,0xe1,0xdf,0x1f,0x3f,0x94,0x40,0x32,0xee,0xda,0xa5,0xe6,0xb4,
0x78,0x74,0xc6,0x79,0x5e,0xca,0x7c,0xb5,0x26,0xaa,0xe9,0x90,0x29,0x85,0x10,0xa2,
0x90,0xa2,0x6e,0x74,0x84,0x56,0xeb,0x77,0x5d,0xbd,0xfd,0xbd,0x3a,0xed,0x6e,0x75,
0x47,0xc7,0x7f,0xff,0xfc,0xa1,0x4,0x42,0xbb,0xb3,0x2f,0xd1,0x18,0xed,0x57,0x1e,
0x16,0x39,0xfd,0xe8,0x2,0x85,0xa5,0xa7,0xeb,0xd5,0xbe,0x10,0x42,0x14,0x36,0xca,
0x4d,0x73,0x39,0xf5,0x8b,0xb4,0x34,0xfd,0x7a,0x30,0xb5,0xb3,0x9b,0x53,0xa2,0xc4,
0x43,0xfd,0xfe,0xfb,0x7,0x66,0xa2,0xb9,0x6a,0x54,0x91,0x22,0x7a,0x85,0x61,0x53,
0x8a,0xea,0x2a,0x2f,0xdd,0xbd,0xab,0xdf,0x40,0x85,0x10,0xa2,0x70,0x51,0x13,0x0,
0x4e,0xbf,0x77,0x4f,0xb7,0xf6,0x3f,0x54,0xba,0xd0,0x8,0x3b,0xbb,0x7f,0xff,0xfc,
0xa1,0x4,0x62,0x62,0x72,0xa4,0x35,0xf,0x7f,0x51,0x2b,0x39,0xfb,0x79,0x4,0x7b,
0x67,0x65,0xe9,0xd5,0xbe,0x10,0x42,0x14,0x36,0x39,0x5d,0x60,0x6f,0x9a,0xa2,0xfd,
0x4e,0x74,0xb,0x65,0x5,0xbc,0xd5,0x94,0x87,0x17,0x16,0xf,0x25,0x10,0xf5,0xe,
0xc5,0x60,0xa2,0x7e,0x9,0xc4,0xe6,0x8e,0x79,0x33,0x2b,0x92,0x40,0x84,0x10,0x42,
0x2b,0x36,0x9e,0xea,0xc4,0x2c,0x7b,0xfd,0x12,0xc8,0xa3,0xf2,0xc2,0x43,0x9,0x44,
0xe9,0x81,0xcd,0xf8,0x54,0xbf,0x4,0x92,0xc9,0xc5,0xb6,0x72,0x7f,0x49,0x20,0x42,
0x8,0xa1,0x95,0xac,0x23,0x2f,0x9c,0x37,0x55,0xd4,0x71,0x5,0x52,0xc,0x55,0x78,
0xe2,0x13,0xac,0x40,0x84,0x10,0x42,0x88,0x27,0xf1,0xf0,0x2d,0xac,0x75,0xe8,0x82,
0xf9,0xfa,0xad,0x10,0x8a,0xd0,0x9d,0x8e,0xb4,0x4c,0xbf,0x15,0x8e,0x10,0x42,0x14,
0x36,0x76,0xf5,0xff,0xa9,0x6c,0xbe,0xa8,0xdf,0xcb,0x4f,0xea,0x1d,0xc4,0xd3,0x84,
0x87,0x57,0x38,0xf,0xdf,0xc2,0x2a,0xc6,0xd5,0x31,0x41,0xbf,0x4,0x92,0x53,0xcc,
0xd4,0x85,0x54,0x49,0x20,0x42,0x8,0xa1,0x95,0x9c,0x53,0xca,0x4,0xbb,0x7b,0xfa,
0x25,0x90,0x47,0xe5,0x85,0xff,0xf2,0x1a,0x2f,0xa7,0x71,0x6f,0xfd,0x12,0x88,0xcd,
0x16,0x7c,0xa3,0xe,0xd4,0x6f,0xa0,0x42,0x8,0x51,0xd8,0xd8,0x6c,0xc6,0x3d,0x73,
0x90,0x8e,0x2b,0x90,0xf,0x11,0xa9,0x38,0x3f,0xc1,0xa,0xc4,0xc4,0x3c,0x54,0x69,
0xaf,0xdf,0xc3,0x98,0x1c,0x77,0x66,0x75,0xce,0xa3,0xcf,0xd8,0x15,0x42,0x8,0xf1,
0x74,0x14,0x77,0x80,0x1c,0x1e,0x2e,0x35,0xa2,0x59,0xfb,0x2b,0xd4,0xcd,0x3c,0xfb,
0x9,0x56,0x20,0x80,0x79,0x47,0xd6,0xf0,0x8c,0xc,0xbd,0x2,0x31,0xad,0x33,0x75,
0xb5,0xa9,0xe5,0xe0,0xa0,0x57,0xfb,0x42,0x8,0x51,0xd8,0xa8,0x7,0x4d,0x3,0xb1,
0x48,0xbf,0x12,0x54,0x74,0x54,0xbd,0xac,0xbe,0x7c,0xeb,0xd6,0xbf,0x7f,0xfe,0x50,
0x2,0x49,0xed,0x5c,0xc2,0xad,0x68,0x8c,0x7e,0xc5,0xe,0xb9,0x83,0x1a,0xaa,0x5e,
0xd1,0xa1,0x4c,0xbc,0x10,0x42,0x14,0x52,0xea,0xc,0x4a,0xa1,0xae,0xfa,0x5d,0x57,
0x53,0x42,0x8b,0xdf,0xb2,0x75,0x79,0xb8,0xd6,0xd6,0x7f,0x59,0x81,0x9c,0xf1,0x9,
0xa1,0xac,0x2c,0xdc,0xe5,0x28,0x34,0xd2,0x7e,0x25,0x42,0xb,0xa9,0xd,0x92,0xf5,
0xcb,0x94,0x42,0x8,0x51,0xd8,0x28,0x91,0xea,0xe7,0x98,0xa7,0xc3,0x75,0xf5,0x5,
0x3e,0x87,0x8d,0xb7,0x6e,0x3d,0xc8,0xb,0xff,0xee,0xf7,0x91,0xbf,0x38,0x9b,0x7e,
0x42,0xa8,0xf6,0x2b,0x11,0x6,0x1f,0xc6,0x75,0x49,0x20,0x42,0x8,0xa1,0x15,0x6e,
0xa1,0xb4,0x57,0x57,0x3d,0x5c,0x2d,0xf7,0xb9,0x8d,0xa3,0xc5,0x70,0x7e,0x74,0x95,
0xdf,0x47,0x1f,0x28,0xd5,0x5,0x9f,0xa1,0x9c,0xe,0xe5,0x81,0xf,0xc0,0x87,0xde,
0xaf,0x54,0x49,0xf3,0x76,0x85,0x10,0xa2,0xb0,0x3a,0xad,0x7e,0x40,0xdd,0xb5,0xbf,
0xae,0x3e,0x2e,0xf,0x3c,0x7a,0x5,0x72,0x1,0x1b,0xb0,0xf4,0xef,0xbf,0xb5,0xe,
0x88,0x5e,0x40,0xc,0x3a,0xbb,0xb8,0x68,0xdd,0xae,0x10,0x42,0x14,0x56,0x14,0x4f,
0xb7,0xd0,0xcb,0xcd,0x4d,0xf3,0x86,0x55,0x1e,0x84,0xb8,0x4b,0x97,0x1e,0xf5,0xf1,
0xa3,0xcf,0x44,0x8f,0xe6,0xd2,0xd8,0xad,0xc3,0x21,0xed,0x7d,0xe8,0x10,0x5a,0xe9,
0x30,0x50,0x21,0x84,0x28,0xa4,0x78,0x38,0x4f,0x40,0x13,0xed,0xaf,0xab,0x74,0x94,
0x66,0xf1,0x8c,0x47,0xe7,0x81,0x47,0xdf,0xc2,0xda,0x4d,0x93,0x68,0x7f,0x52,0x92,
0xe6,0x3,0xdd,0x84,0x93,0xa8,0x61,0x59,0x81,0x10,0x69,0xdd,0xbe,0x10,0x42,0x14,
0x26,0xc1,0xac,0x28,0x48,0xa6,0x9a,0x78,0x51,0x87,0x5b,0x58,0xfb,0x30,0x8f,0x3e,
0x7f,0x74,0x1e,0x78,0xf4,0xa,0xa4,0x6,0xf5,0xc1,0x76,0xed,0x57,0x20,0xd4,0x3,
0xc7,0xf0,0x5d,0xd1,0xa2,0xe,0xa5,0xdd,0xdd,0xc6,0x8e,0x91,0x67,0x21,0x42,0x8,
0xf1,0xac,0xca,0xce,0xaf,0xba,0x26,0x33,0xc0,0xd5,0x95,0x82,0xe1,0x88,0xd5,0xda,
0xef,0x44,0xa7,0x26,0x6a,0x3,0xae,0xfb,0xc,0x2b,0x10,0xf3,0xdf,0xe6,0xa2,0x39,
0x9b,0xb5,0x5f,0x81,0x58,0x98,0xaa,0xf2,0x4c,0xe5,0x57,0x4f,0x4f,0xbd,0xda,0x17,
0x42,0x88,0x82,0xce,0x7c,0x4e,0x85,0x29,0xb2,0x76,0x6d,0xdd,0xda,0x27,0x9a,0x4b,
0xfc,0xc,0x2b,0x90,0x52,0xeb,0xb8,0xab,0x7d,0xad,0x98,0x18,0x74,0xe4,0x50,0x5c,
0xcd,0xc9,0xd1,0x3a,0x30,0x75,0x23,0x2e,0xc0,0x4f,0x12,0x88,0x10,0x42,0x3c,0x2b,
0x3e,0xcb,0x97,0xd4,0x3,0xaf,0xbe,0xaa,0x79,0xc3,0xb9,0xd7,0xfd,0x52,0x1d,0xd5,
0xc5,0xb6,0x73,0x62,0x63,0x1f,0xf5,0xb5,0x47,0x26,0x90,0x64,0x4a,0xa6,0x10,0xba,
0x77,0xf,0x1b,0x29,0x11,0xcd,0xe2,0xe2,0x34,0xf,0x70,0x12,0xaa,0x53,0xba,0x7e,
0x99,0x53,0x8,0x21,0xa,0x3a,0xaa,0x8d,0x8b,0x74,0x4e,0x87,0xeb,0x68,0x2c,0x54,
0xbc,0x11,0x1b,0xfb,0x20,0xf,0x3c,0xc2,0xe3,0xf,0x94,0x5a,0x8d,0xce,0x28,0x75,
0xea,0x94,0xe6,0x1,0x6,0xd1,0x78,0x94,0x7c,0xfd,0x75,0xcd,0xdb,0x15,0x42,0x88,
0x42,0x82,0x1b,0xb3,0x3f,0xb2,0x5e,0x7b,0x4d,0xf3,0x86,0xc7,0xd2,0x6b,0xa8,0xf8,
0xc7,0x1f,0x8f,0xfb,0xda,0x63,0x13,0x8,0x5f,0xa0,0x16,0xfc,0xd2,0xe9,0xd3,0x5a,
0xc7,0x47,0x6d,0x50,0x12,0xad,0xab,0x56,0x2d,0xdf,0xcf,0x23,0x22,0xe0,0x72,0x99,
0x32,0x9a,0x4f,0x80,0x10,0x42,0x14,0x50,0x65,0x5b,0xb8,0xd,0xc,0x1c,0x56,0xae,
0x1c,0xf5,0x25,0x2f,0xec,0xf5,0xf0,0xd0,0xba,0x7d,0x2e,0xc6,0x63,0x50,0xe1,0xf1,
0xb,0x87,0xc7,0x26,0x10,0xfa,0x40,0xad,0xae,0xbc,0xf9,0xfb,0xef,0x9a,0xcf,0x40,
0x2a,0x12,0x30,0x85,0x28,0xbb,0x4b,0x4e,0x53,0x84,0x37,0x68,0xa0,0x79,0xfb,0x42,
0x8,0x51,0x40,0xe5,0x4,0x50,0x6,0x77,0x6b,0xd4,0x48,0xaf,0xf6,0xa9,0x1e,0x32,
0xa8,0x9e,0x6,0x9,0x24,0x33,0xd6,0xb6,0xba,0x8d,0xf9,0xf0,0x61,0x38,0xc1,0x1d,
0x41,0xcc,0x5a,0x7,0xca,0x6e,0x54,0x9a,0xae,0x35,0x6c,0xa8,0xd7,0x44,0x8,0x21,
0x44,0x41,0x43,0x15,0x70,0x95,0xfe,0xf4,0xf2,0xd2,0xbc,0xe1,0xdc,0xeb,0xbc,0xed,
0x70,0x53,0x37,0xf5,0xd2,0x91,0x23,0x8f,0xfb,0xfa,0x63,0x13,0xc8,0xed,0xba,0xb1,
0x8b,0x42,0x28,0x25,0x85,0x77,0xe1,0x16,0x76,0x9f,0x3b,0xa7,0xf9,0x44,0x44,0xe2,
0xa,0x8e,0x37,0x6e,0xac,0xf9,0x44,0x8,0x21,0x44,0x41,0xe5,0x89,0xbb,0xe8,0xae,
0x7d,0x2,0xe1,0x93,0x78,0x11,0x95,0x62,0x63,0xaf,0x2c,0x8f,0x1b,0x16,0x56,0xe1,
0xfa,0xf5,0xc7,0x7d,0xff,0xf1,0xf,0xd1,0x73,0xd1,0x48,0x5e,0x88,0x6f,0xf,0x1d,
0xd2,0x7c,0x22,0x4e,0x52,0x34,0xe,0xd6,0xab,0x57,0xb2,0x7e,0x45,0xbf,0x60,0xd6,
0xa1,0x9a,0xa4,0x10,0x42,0x14,0x10,0xc5,0x7f,0xad,0xe6,0x1b,0xcc,0xce,0xce,0xa8,
0x87,0xd7,0x10,0xf2,0xc6,0x1b,0x5a,0xb7,0x4f,0xbb,0x51,0x9e,0xe8,0xc0,0x81,0x27,
0xfd,0xfe,0x13,0x27,0x10,0x75,0x21,0xfc,0x31,0xf9,0xe0,0x41,0xcd,0x67,0xe4,0x10,
0x16,0x60,0x96,0xc9,0x64,0x13,0x63,0xfb,0x5d,0x4e,0x50,0xcb,0x96,0x9a,0xb7,0x2f,
0x84,0x10,0x5,0x44,0x91,0x4b,0xd9,0xbd,0x73,0x8e,0xb4,0x6d,0x8b,0x58,0xec,0x46,
0x71,0xe5,0x89,0xaf,0xdf,0x4f,0x8a,0x8f,0x20,0x46,0xed,0xf6,0xe4,0xd7,0xf9,0x27,
0xe,0xc0,0xd4,0x1,0x83,0xb8,0xff,0xbe,0x7d,0x7a,0x4d,0xc,0xf5,0xa5,0xbf,0xb1,
0xbe,0x7d,0x7b,0xbd,0xda,0x17,0x42,0x88,0xfc,0x8e,0x5b,0x93,0x82,0xc0,0xb6,0x6d,
0xf5,0x6a,0xdf,0x14,0x47,0x4d,0x79,0xfc,0xfe,0xfd,0x4f,0xfa,0xfd,0x27,0x4e,0x20,
0x29,0xc7,0x12,0xbb,0x86,0xed,0x8d,0x8d,0xe5,0xd1,0x3c,0x1a,0x9d,0x13,0x12,0x34,
0x9f,0x98,0x40,0x4,0xf2,0xdb,0xed,0xda,0x1,0xb9,0xc5,0xc1,0x84,0x10,0x42,0x3c,
0xe0,0xed,0x6d,0x32,0x21,0xa,0xef,0xa8,0x5b,0xb5,0x4f,0x20,0xfc,0x35,0x1f,0x40,
0x8b,0xb8,0xb8,0xeb,0x91,0xf1,0x23,0xc3,0x2b,0x3d,0xf9,0xc6,0xf1,0xa7,0xbf,0x50,
0x7f,0x40,0x7,0xf9,0x8d,0x1d,0x3b,0xb4,0x1e,0x0,0xd5,0xc0,0x4a,0x14,0xaf,0x50,
0xc1,0x39,0xdb,0x2d,0x22,0xeb,0x7,0xfd,0x5e,0x4f,0x13,0x42,0x88,0xfc,0xc6,0x69,
0xa0,0xfb,0x95,0xea,0x47,0x9b,0x36,0x25,0x5f,0x38,0x51,0x68,0xd9,0xb2,0x5a,0xb7,
0x4f,0xf3,0xf1,0x29,0x10,0x15,0xf5,0xb4,0xbf,0xf7,0xd4,0x9,0x44,0xe9,0xcc,0xdd,
0xd0,0xe6,0xe9,0x3b,0x7a,0x52,0x5c,0x8b,0x5a,0xa0,0xae,0x8f,0x8f,0x5e,0xed,0xb,
0x21,0x44,0x7e,0xc3,0xee,0x7c,0x58,0xfd,0x43,0xbf,0xeb,0xa2,0xda,0x54,0x89,0xb6,
0x4a,0x2,0x31,0x95,0xbe,0x33,0x3f,0xfb,0xc5,0x9f,0x7e,0xe2,0x10,0xa4,0xa1,0x4f,
0x66,0xa6,0xe6,0x13,0x75,0x0,0xdf,0x52,0x58,0xb7,0x6e,0x40,0xee,0x92,0x4d,0x8,
0x21,0xa,0xad,0xa6,0x1c,0xcc,0x36,0x36,0x70,0x42,0x43,0xcc,0x7b,0xf7,0x5d,0xad,
0x5b,0xe7,0x2f,0xe1,0x80,0x53,0xf7,0xee,0xd9,0x3b,0xdc,0x9,0xb7,0x6d,0x19,0x1d,
0xfd,0xb4,0xbf,0xff,0xd4,0x9,0xe4,0xea,0xee,0xab,0xbb,0xbf,0x58,0xfd,0xcf,0x3f,
0xa8,0x8c,0xcf,0x30,0x68,0xd7,0x2e,0xad,0x7,0x64,0xb9,0x95,0x65,0x59,0xb2,0x69,
0xdd,0xbe,0x10,0x42,0xe4,0x17,0x8e,0xed,0x93,0xaf,0x65,0x6e,0x6e,0xd1,0x82,0x2,
0xa9,0x1,0x32,0x74,0x28,0xf9,0xd4,0x9c,0x9b,0xe3,0xfc,0xce,0x9d,0x97,0x3f,0xbe,
0xfc,0x71,0x8,0xdd,0xb9,0xf3,0xb4,0xbf,0xfe,0xcc,0xf,0xab,0xe9,0x8,0x27,0xe1,
0xb5,0xd,0x1b,0x34,0x1f,0x50,0x2e,0xee,0x8e,0xe1,0xe6,0x55,0xfd,0xfb,0xeb,0xd5,
0xbe,0x10,0x42,0xe4,0x75,0x34,0x48,0x49,0x55,0x4c,0x3,0x6,0xe8,0xd5,0xbe,0x32,
0x9a,0x3e,0x3,0xd6,0xad,0x7b,0xe6,0xdf,0x7f,0xe6,0x9e,0xeb,0xd9,0xa9,0x39,0x3b,
0xb6,0x6c,0xe1,0x75,0x78,0x13,0x5d,0xef,0xde,0xd5,0x7c,0x64,0x31,0xd8,0x49,0x65,
0xde,0x7b,0xef,0xc1,0xc6,0x19,0x21,0x84,0x28,0x24,0x4a,0x4,0xd4,0x18,0x1c,0xd0,
0xc2,0xc9,0x89,0x2f,0xa0,0x21,0x3c,0x3a,0x77,0xd6,0xba,0x7d,0xde,0x8d,0x9e,0x38,
0x74,0xe7,0xe,0xdd,0xb3,0xdf,0x67,0xfb,0xfb,0xf,0x3f,0x3c,0x6b,0x3b,0xcf,0x9c,
0x40,0x52,0x3b,0xc7,0x2c,0x9b,0x16,0x9b,0x91,0x41,0x1f,0x71,0x30,0xba,0xea,0xf0,
0x56,0x56,0xee,0x11,0x8d,0x76,0xdf,0xe4,0xbc,0x9e,0xed,0xd5,0xbb,0xb7,0xd6,0xed,
0xb,0x21,0x44,0x5e,0x55,0x64,0x56,0x66,0x26,0xd5,0xea,0xdb,0x57,0xb7,0xa3,0x6a,
0xd7,0x21,0x3,0x13,0xb7,0x6f,0xbf,0x1e,0x79,0xc6,0x27,0x84,0x6e,0xdf,0x7e,0xd6,
0x76,0x9e,0x7b,0xbf,0x85,0xba,0x87,0xaf,0x20,0xfd,0xd9,0x97,0x40,0x8f,0x1d,0xe8,
0x61,0x2e,0x89,0xde,0xbe,0xbe,0xb9,0xff,0x45,0x7a,0xf5,0x23,0x84,0x10,0x79,0x3,
0x11,0xdb,0x52,0x15,0xbc,0x39,0x70,0xa0,0x5e,0x3d,0xf0,0xb,0x1c,0x4c,0x4b,0x9f,
0xff,0xba,0xfd,0xdc,0x9,0x24,0xdd,0xa3,0x58,0x8a,0xed,0xed,0xcd,0x9b,0x39,0x94,
0xf,0xa3,0xc4,0xe3,0x8b,0x6f,0x3d,0xb5,0x18,0x1a,0x87,0x8b,0x35,0x6b,0x3a,0x84,
0x57,0x71,0x8,0xdc,0x73,0x7f,0xa3,0xa1,0x10,0x42,0x14,0x44,0x4e,0xb7,0xdc,0x9a,
0x6,0x29,0xef,0xbc,0x3,0x3b,0x2c,0xc6,0x5f,0x35,0x6a,0x68,0xde,0x41,0x38,0xaf,
0x42,0x58,0x4a,0x8a,0xa3,0x83,0x69,0xcd,0xad,0xee,0xcf,0x7e,0xeb,0xca,0x42,0x83,
0x1d,0xdf,0x67,0x7c,0x42,0x28,0x2b,0x8b,0x3e,0xa4,0x79,0x5c,0x69,0xd5,0x2a,0xcd,
0x7,0x6c,0x9,0x34,0x9c,0x33,0xf1,0xfb,0xa8,0x51,0x7a,0xb5,0x2f,0x84,0x10,0x46,
0xe3,0xe5,0xd4,0x98,0x6d,0x3f,0xfb,0x4c,0xb7,0xf6,0x7f,0xa3,0x6,0xfc,0xc5,0xd7,
0x5f,0xc7,0xd,0x8b,0x1b,0x36,0xb7,0xc3,0xf3,0x6f,0xc3,0xd0,0xae,0x64,0xc8,0x4e,
0xb5,0x9b,0xc9,0x69,0xd1,0x22,0xbd,0xce,0xd,0x81,0x9,0xe5,0x91,0xda,0xb2,0xa5,
0xf3,0x25,0x8f,0x8,0xff,0x97,0xeb,0xd4,0xd1,0xbc,0x7d,0x21,0x84,0x30,0x88,0xd3,
0x16,0xf7,0x31,0x41,0x4e,0x75,0xeb,0xd2,0x44,0xac,0xc5,0xa8,0x26,0x4d,0x74,0xeb,
0xa8,0xab,0xb9,0xa1,0xa9,0xdb,0xb2,0x65,0x5a,0x35,0xa7,0x59,0x2,0x49,0xed,0x9c,
0xf4,0xea,0xe4,0xf6,0x31,0x31,0x98,0x8e,0x4,0xb8,0xeb,0x50,0xb5,0x37,0x17,0x5f,
0x33,0x67,0xd0,0xde,0xb1,0x63,0xf5,0x6a,0x5f,0x8,0x21,0xac,0x6e,0x3a,0x22,0x78,
0x6f,0x40,0x80,0x5e,0xcd,0xb3,0x2f,0x6a,0xa3,0xc9,0xfe,0xfd,0x69,0xad,0x93,0x8f,
0x4c,0x76,0xfd,0xeb,0x2f,0xad,0xda,0xd5,0xbe,0x1c,0x70,0x5f,0x56,0x69,0x40,0x44,
0x84,0x5e,0x13,0x81,0x4f,0xe9,0x3c,0x85,0x79,0x7b,0x97,0xee,0xee,0xba,0x69,0xec,
0xe9,0x57,0x5f,0xd5,0xad,0x1f,0x21,0x84,0xd0,0x99,0x43,0x69,0x77,0xb7,0xf1,0xd5,
0x6b,0xd7,0x86,0x19,0x1f,0x62,0x69,0x97,0x2e,0xba,0x75,0x64,0xcf,0xcb,0xe8,0x9b,
0x39,0x73,0xb4,0x6e,0x56,0xf3,0x4,0x92,0x96,0x9e,0x98,0x14,0x7b,0x6e,0xd3,0x26,
0x9e,0xce,0x4b,0xf0,0x43,0x7c,0xbc,0xe6,0x13,0x91,0x5b,0x7,0xdf,0x74,0x49,0xe9,
0x65,0x52,0x27,0x4c,0xd0,0xbc,0x7d,0x21,0x84,0xb0,0x12,0xa,0x43,0x1d,0xf3,0x5f,
0xa1,0xa1,0x7a,0x9d,0xef,0x81,0x30,0x8c,0x41,0x74,0x62,0x62,0x5a,0x70,0xa2,0x53,
0xec,0x9d,0xcd,0x9b,0xb5,0x6e,0x5e,0x97,0xb2,0xe9,0x91,0x91,0x66,0x33,0x5e,0x51,
0xc6,0xe1,0x96,0xf6,0x19,0xef,0x81,0x6b,0xf0,0x82,0x47,0xd7,0xae,0xce,0x81,0x55,
0xce,0x4,0x26,0xbd,0xfe,0xba,0x6e,0xfd,0x8,0x21,0x84,0xc6,0x1c,0xef,0xb8,0xbd,
0x1a,0xd4,0xfc,0xad,0xb7,0x68,0x1c,0x4e,0x62,0xdc,0x3b,0xef,0xe8,0xd5,0xf,0xf7,
0xe1,0xaf,0xc8,0x6e,0xe6,0x4c,0x20,0xf7,0xba,0xac,0x31,0xdd,0xce,0xdd,0x28,0x72,
0xf2,0xce,0x87,0xb6,0x89,0x4b,0x97,0x62,0x14,0x4f,0x40,0x85,0xd4,0x54,0xcd,0x3b,
0x48,0x45,0x2,0xa6,0x10,0xa9,0xe3,0x54,0x3b,0x2e,0x32,0x7d,0xba,0x5e,0xe3,0x10,
0x42,0x8,0xcd,0xfd,0x40,0x41,0xfc,0xc9,0xb4,0x69,0xba,0xb5,0xff,0x1,0x86,0xe1,
0xcb,0xb4,0x34,0xdb,0xce,0x77,0xca,0x66,0xbe,0xb4,0x7c,0xb9,0x5e,0xdd,0xe8,0x96,
0x40,0x1e,0x14,0xe7,0xa,0xc0,0x87,0x3c,0xe4,0xcb,0x2f,0xf5,0xea,0x87,0x2a,0x51,
0x1b,0x9a,0xdb,0xa2,0x85,0x93,0x5f,0x95,0x35,0x41,0x55,0xb4,0xdf,0xf2,0x2f,0x84,
0x10,0x5a,0x71,0x74,0x70,0x73,0xd,0xa,0xf4,0xf6,0xa6,0x4f,0xe0,0x8f,0x93,0xfa,
0x15,0x8b,0xe5,0xb3,0xc8,0xe2,0x98,0x39,0x73,0x1e,0x14,0xbf,0xd5,0x89,0xee,0x27,
0xff,0xa9,0xe,0xe4,0xae,0x8e,0x9d,0x35,0xcb,0x92,0x11,0xf5,0xea,0x87,0xcb,0xa9,
0xb7,0x78,0xed,0xcc,0x99,0x1e,0x11,0x1e,0x11,0x43,0xb7,0x6b,0xbf,0xf5,0x5f,0x8,
0x21,0x9e,0x95,0xb,0xbb,0x70,0x30,0xdb,0xdb,0xd3,0x48,0xea,0xc2,0xbd,0x75,0x5c,
0x79,0x3c,0xb8,0xe3,0xa3,0xd8,0xdb,0x95,0x9f,0x3d,0x5b,0xef,0x71,0xe9,0x9e,0x40,
0xd2,0x6f,0x24,0x24,0x4e,0x9d,0x76,0xf3,0x26,0xfb,0xb1,0xc2,0x6b,0x66,0xcc,0xd0,
0xab,0x1f,0x9a,0x4e,0xd3,0xb1,0xc5,0xdd,0x3d,0xfd,0x17,0x35,0xa6,0xc4,0x95,0x11,
0x23,0xf4,0x1e,0x97,0x10,0x42,0x3c,0xa9,0x8c,0xe1,0xa6,0xdf,0xb3,0x93,0x47,0x8f,
0xc6,0x6c,0x7c,0x8f,0x35,0xae,0xae,0xba,0x75,0xb4,0x91,0x26,0xb2,0xdd,0x17,0x5f,
0xa4,0x45,0xc5,0xd,0xb,0xa1,0x5b,0xb7,0xf4,0x1e,0x97,0xd5,0xce,0x1e,0xb7,0x1d,
0x70,0x67,0x6b,0xf6,0xfa,0x39,0x73,0x78,0x11,0x52,0x39,0xf0,0xda,0x35,0xbd,0xfa,
0xe1,0xf,0x91,0x82,0xda,0xc1,0xc1,0x65,0xbc,0xab,0xcc,0xf4,0xbf,0xe0,0xe1,0x61,
0xad,0xf1,0x9,0x21,0xc4,0xbf,0x39,0xbf,0xe9,0xf6,0x5d,0x40,0x8b,0x6a,0xd5,0xd0,
0x0,0x3,0x30,0x24,0x30,0x50,0xb7,0x8e,0x72,0x4b,0x94,0x60,0x82,0x6d,0x33,0xf3,
0x8c,0x79,0xf3,0xac,0x35,0x3e,0xab,0x25,0x90,0x7,0xf7,0xe2,0x96,0xa0,0xa1,0x12,
0x10,0x16,0xa6,0x57,0x3f,0xd4,0x3,0xc7,0xf0,0x5d,0xd1,0xa2,0xea,0x6e,0x1e,0xa7,
0x6c,0x58,0xb0,0x20,0xf7,0xa7,0x52,0x84,0x51,0x8,0x61,0x65,0x44,0xea,0x68,0xca,
0xa6,0x41,0x8b,0x16,0xd1,0x10,0xa4,0xc3,0xd3,0xde,0x5e,0xaf,0x9e,0xd8,0x44,0x55,
0xc8,0x67,0xd2,0x24,0x4b,0x95,0x74,0x6b,0x8d,0xd0,0x6a,0x9,0xc4,0x22,0x2d,0xca,
0xe1,0xea,0xf5,0x7b,0xf3,0xe6,0xf1,0x5,0x78,0x61,0x41,0x4c,0x8c,0x6e,0x1d,0xe5,
0x96,0x3e,0x71,0xc,0x70,0xef,0x1c,0xe0,0xdb,0xb7,0xaf,0xb5,0xc7,0x29,0x84,0x28,
0xbc,0x9c,0x9d,0xab,0x54,0x9,0xcc,0xfa,0xe8,0x23,0xbd,0x1f,0x96,0x23,0xb,0x1f,
0xe1,0xe5,0xb3,0x67,0xd3,0xfa,0x3b,0x74,0xb8,0x5e,0xf2,0xab,0xaf,0xac,0x3d,0x4e,
0xab,0x27,0x10,0xe0,0xf8,0x89,0x45,0x8b,0xb3,0xb3,0x95,0xc9,0x38,0x80,0x13,0xfa,
0x17,0x47,0xa4,0x13,0xb8,0x4b,0xdb,0x66,0xce,0x74,0x28,0xed,0xee,0x36,0x76,0x4c,
0xe5,0xca,0xd6,0x1f,0xaf,0x10,0xa2,0xb0,0x28,0x35,0xc9,0xa5,0xc8,0xb8,0xca,0x6e,
0x6e,0x5c,0x4c,0x8d,0x45,0x6d,0xfd,0xb7,0x17,0xa8,0x41,0x34,0xd,0x15,0x46,0x8e,
0xb4,0x5c,0x57,0xad,0x3d,0x5e,0x3,0x12,0xc8,0x7d,0x29,0xa1,0x9,0x9,0xa1,0xae,
0xdb,0xb6,0x61,0x22,0x8f,0xa0,0xaf,0xb5,0x3f,0x90,0xea,0x81,0x5f,0x11,0x87,0xf,
0x4b,0x97,0x56,0x56,0x80,0x4c,0x2b,0xd6,0xac,0x1,0x0,0x6f,0x6f,0x93,0xc9,0xa8,
0x71,0xb,0x21,0xa,0xa6,0x60,0x56,0x14,0x53,0x75,0xd3,0x2a,0xf5,0x8b,0xe5,0xcb,
0xf1,0xf,0x55,0x45,0xb7,0x92,0x25,0xf5,0xea,0x8b,0x3f,0x5,0xf0,0xe7,0xb6,0x6d,
0xe9,0xfe,0xf1,0xe9,0xa1,0xad,0xa2,0xa2,0x8c,0x1a,0xb3,0x61,0x9,0xe4,0xc1,0x44,
0x54,0x53,0xd7,0xd2,0xa1,0x91,0x23,0x39,0x4,0x69,0xe8,0xf3,0xfc,0xe5,0x85,0x1f,
0xa9,0x3f,0x80,0x1,0x5e,0x5e,0x8e,0xe7,0xdd,0x22,0x3c,0x3e,0x90,0x62,0x8c,0x42,
0x8,0xed,0x38,0x7a,0xb8,0xb7,0xca,0xbe,0x33,0x7e,0xbc,0xee,0xfb,0x3b,0x72,0xaf,
0x93,0x54,0x57,0xfd,0x4e,0x19,0x64,0xfc,0xf1,0x16,0x86,0x27,0x90,0x7,0xd5,0x21,
0x67,0xa3,0x2e,0x5c,0xf4,0x7b,0xb8,0x6e,0x41,0x11,0xa8,0x4f,0xb5,0x3f,0xff,0xdc,
0xb1,0xbd,0xb,0x7,0xd,0xad,0x5f,0xdf,0xe8,0xf1,0xb,0x21,0xf2,0x2f,0xe7,0x6c,
0xb7,0x88,0x80,0xad,0x8d,0x1b,0x93,0x17,0xf,0xc4,0xb0,0x71,0xe3,0x74,0xef,0x30,
0x16,0x3f,0xa3,0xd8,0x94,0x29,0xf,0xaa,0x9f,0x1b,0xcc,0xf0,0x4,0x62,0x91,0x16,
0x67,0xef,0x6b,0x5b,0x2c,0x2c,0xc,0x4d,0x79,0x23,0x7,0xfd,0xf9,0xa7,0x6e,0x1d,
0x2d,0xa7,0x1e,0x58,0x64,0x6b,0x8b,0x95,0xa6,0x10,0xa6,0x4d,0x9b,0x9c,0xb6,0x54,
0x9a,0x3a,0xa6,0xda,0x8b,0x2f,0x1a,0x3d,0x7e,0x21,0x44,0xfe,0x51,0xc6,0xdb,0x85,
0x47,0xbf,0x57,0xbe,0x3c,0xdb,0x51,0x19,0x6a,0xb5,0x6e,0x1d,0xb6,0x52,0x20,0xca,
0xd9,0xd8,0xe8,0xd6,0x61,0xee,0xc3,0x72,0x47,0xf,0x65,0x5f,0xc6,0x19,0x1d,0x37,
0x22,0x3e,0xa5,0x3c,0x93,0x40,0x2c,0x27,0x1b,0xf2,0x3b,0x7c,0x10,0xa5,0x6,0xc,
0x40,0x35,0xb4,0xc6,0x6d,0x55,0xd5,0xab,0x37,0xaa,0x81,0x95,0x28,0x5e,0xa1,0x2,
0x7e,0xb5,0x69,0x66,0x83,0xc8,0x48,0xe0,0x8d,0xd7,0x7d,0x3f,0xb2,0xb5,0x35,0x7a,
0x16,0x84,0x10,0x79,0xd9,0xfd,0xeb,0x84,0xd9,0xc3,0xd4,0xc5,0x76,0xe0,0x86,0xd,
0x70,0x44,0x10,0x26,0xe9,0xf8,0x7,0x68,0xee,0x75,0x50,0xed,0x84,0x57,0x39,0x76,
0xe0,0x40,0xad,0x4e,0x12,0xd4,0x4a,0x1e,0x4a,0x20,0xf7,0xa5,0xf5,0x4f,0x1a,0x12,
0x96,0x73,0xf4,0x28,0xbc,0xf9,0x43,0x78,0xcd,0x9d,0xab,0x7b,0x87,0xf3,0xa9,0x27,
0xde,0x6b,0xd8,0xd0,0xe9,0x8f,0xf4,0x92,0xce,0x75,0xa6,0x4e,0x35,0x7a,0xfc,0x42,
0x88,0xbc,0xcb,0xa9,0x7d,0x5a,0x65,0xe7,0xee,0x33,0x66,0xd0,0x22,0x9c,0xc6,0xbe,
0xc6,0x8d,0x75,0xef,0xd0,0x1f,0x4b,0xb8,0x63,0x44,0x44,0xfa,0x9a,0x84,0xe,0x61,
0x93,0xf4,0x3b,0xa8,0xef,0x59,0xe5,0xb9,0x4,0x62,0xe1,0x60,0x63,0xfa,0x35,0xa3,
0xf8,0xd8,0xb1,0x8,0xc5,0xcb,0x50,0x4e,0x9d,0xd2,0xbd,0xc3,0xa6,0x38,0x8f,0x8b,
0x7e,0x7e,0x4e,0x55,0xdc,0x26,0x4,0xda,0xc,0x1e,0x6c,0xf4,0xf8,0x85,0x10,0x79,
0xc7,0xfd,0x7d,0x1d,0xbe,0xbe,0xf8,0x85,0x4e,0x61,0xef,0xd0,0xa1,0xba,0x77,0x98,
0x7b,0x2b,0xbf,0xe8,0xcf,0x59,0xc3,0xee,0xbd,0xa0,0xe3,0xe,0xf6,0xe7,0x94,0x67,
0x13,0x88,0x65,0xa9,0xa6,0xb6,0xa4,0xa1,0xa6,0xa9,0xbd,0x7a,0xf1,0x3a,0xbc,0x89,
0xae,0x77,0xef,0xea,0xde,0x71,0x4d,0x2a,0x8e,0xcb,0x73,0xe6,0x38,0x6d,0x71,0xfd,
0x3d,0x60,0x78,0xa7,0x4e,0x46,0xcf,0x83,0x10,0xc2,0x38,0xce,0xd1,0xee,0xb,0x2,
0x9c,0x3b,0x74,0xe0,0x77,0xd4,0x29,0xf8,0x44,0xff,0x12,0x21,0x96,0xb7,0xac,0xcc,
0x7d,0x31,0x8f,0x2,0x7a,0xf5,0xba,0x38,0xeb,0xe2,0xac,0x59,0xd,0xad,0x70,0xdd,
0x7b,0x46,0xf9,0xa6,0xc4,0x87,0x63,0x7b,0xf7,0xf6,0x41,0x43,0x47,0x8c,0xa0,0x5f,
0x10,0xc3,0x25,0x66,0xcd,0xd2,0xbd,0xc3,0xbb,0x1c,0x85,0x46,0x19,0x19,0x74,0xce,
0xb4,0x53,0xfd,0xac,0x69,0xd3,0x94,0x97,0xe2,0x86,0x85,0xff,0xf5,0xdb,0x6f,0x46,
0xcf,0x83,0x10,0x42,0x7f,0xce,0xce,0x55,0xaa,0xf8,0xfb,0xbf,0xf1,0x86,0x7a,0x82,
0xc7,0x29,0xed,0xa2,0xa3,0xa9,0xe,0x26,0x61,0xd7,0xb,0x2f,0xe8,0xdd,0x2f,0x5f,
0xe0,0x12,0x74,0x78,0xe8,0xd0,0xb4,0x62,0x89,0xbf,0x4f,0xf9,0x49,0xbf,0x63,0x30,
0xb4,0x92,0x67,0x57,0x20,0xff,0x96,0x16,0x95,0x10,0x35,0x65,0xee,0x9c,0x39,0xbc,
0x1c,0xfd,0x71,0x60,0xeb,0x56,0xdd,0x3b,0x2c,0x4a,0xed,0x71,0xb0,0x44,0x9,0xf5,
0x88,0x3a,0x9e,0x8e,0xed,0xd8,0xe1,0xf4,0x86,0xb,0x7,0x2c,0xac,0x51,0xc3,0xe8,
0x79,0x10,0x42,0xe8,0xc7,0xb1,0xbd,0x47,0x44,0xc0,0xe5,0x9a,0x35,0xd5,0x29,0xea,
0x21,0xa5,0x54,0x54,0x94,0xb5,0x12,0x7,0x6e,0xf2,0x24,0xf8,0x6e,0xde,0x7c,0x3f,
0x71,0x58,0xaf,0x18,0xe2,0xf3,0xca,0x37,0x9,0xe4,0x3e,0x66,0x62,0xdb,0x84,0x9c,
0x2b,0xbd,0x7b,0x5b,0x5e,0x6b,0xd3,0xbb,0x47,0xf2,0x85,0x13,0x85,0x96,0x2d,0x8b,
0xb,0xca,0x66,0x3a,0xba,0x67,0x4f,0xd9,0xf9,0x55,0xd7,0xf8,0xfb,0xbb,0xbb,0x1b,
0x3d,0x13,0x42,0x8,0xed,0x58,0x4a,0x1d,0x51,0x49,0x75,0x36,0x65,0x46,0x45,0x51,
0x20,0x35,0x40,0x46,0x99,0x32,0x7a,0xf7,0xcb,0xc7,0xe1,0x8c,0xb7,0x62,0x63,0xd5,
0xe2,0x34,0xce,0x3c,0xdf,0x52,0xb3,0x8f,0xd9,0xe8,0xf9,0x78,0x52,0xf9,0x2c,0x81,
0x0,0x96,0x6a,0x93,0xaa,0x9,0x8b,0x4c,0x93,0x7d,0x7c,0xf8,0x37,0x8c,0x47,0x1b,
0xfd,0x4e,0xdc,0x7a,0xc0,0x4c,0xa3,0x50,0xfe,0xa5,0x97,0xcc,0x36,0xe6,0xc,0x65,
0xff,0x9e,0x3d,0x8e,0xed,0x3d,0x22,0xc6,0xc4,0x56,0xac,0x68,0xf4,0x7c,0x8,0x21,
0x9e,0x9d,0xc3,0x37,0x55,0x3a,0x7,0xcd,0xab,0x54,0x49,0x99,0x86,0xb1,0xa6,0x83,
0x3f,0xff,0x8c,0x3d,0x0,0x16,0xe9,0x5f,0x33,0x8f,0x2f,0xf0,0x97,0xd8,0x75,0xfb,
0x36,0xe7,0xd0,0x44,0x93,0xf7,0xbb,0xef,0x5a,0xce,0x4d,0x32,0x7a,0x3e,0x9e,0x56,
0xbe,0x4b,0x20,0x16,0xe9,0x37,0x12,0x12,0x27,0xc5,0x9c,0x3e,0x4d,0x45,0x30,0x9,
0xb3,0x7c,0x7d,0xad,0xd6,0x71,0x0,0xa6,0xa1,0xa9,0x9b,0x1b,0x75,0x55,0xed,0x6c,
0xfa,0xed,0xdb,0x67,0x29,0x9e,0x66,0xf4,0x7c,0x8,0x21,0x9e,0x5c,0x99,0x9b,0x1e,
0x11,0xe3,0xba,0x57,0xa9,0xa2,0x64,0x70,0x7b,0x5e,0x1b,0x1d,0x6d,0xf9,0xff,0x5a,
0xf7,0x8e,0x9d,0xe0,0x8e,0x20,0x66,0xde,0xa2,0x2c,0xa4,0x7e,0x3,0x7,0xa6,0x7b,
0xc4,0xb7,0x9b,0x94,0xad,0xe3,0xc6,0x69,0x9d,0xe5,0x9b,0x87,0xe8,0x8f,0xe3,0x34,
0xcd,0xad,0x7e,0x50,0xc5,0x49,0x93,0x30,0x95,0xae,0xf1,0x7,0x56,0x28,0x29,0x90,
0x8b,0xf7,0xa3,0x3e,0x85,0x5f,0xb9,0xc2,0xcb,0x30,0x93,0x6b,0xb5,0x6e,0x9d,0xfe,
0x45,0x42,0xf9,0xd0,0x53,0x7f,0xfc,0x61,0xf4,0x7c,0x8,0x21,0x1e,0xf6,0xe0,0x59,
0x66,0xee,0x2d,0x69,0xcb,0x9d,0x5,0xab,0x5,0x90,0xc2,0xf1,0x3c,0x25,0x24,0x24,
0x95,0x12,0x29,0x8c,0x3e,0xff,0xdc,0xe8,0xf9,0x78,0x5e,0xf9,0x76,0x5,0xf2,0x6f,
0xa9,0x63,0x12,0x8f,0x4c,0xb9,0x38,0x61,0x2,0xaf,0xc3,0x9b,0xdc,0xf6,0x7e,0xd5,
0x5d,0x6b,0xa0,0xc6,0x38,0xc2,0xfe,0xe5,0xcb,0x53,0x3,0x54,0xe7,0x43,0x3f,0xfe,
0xe8,0x7c,0xc9,0x23,0xc2,0xff,0xe5,0x3a,0x75,0x8c,0x9e,0xf,0x21,0xc4,0x7f,0x58,
0xde,0xaa,0x62,0x5f,0xe5,0x1a,0xa5,0xed,0xdb,0x67,0xf5,0xc4,0x41,0xdc,0x2,0xb7,
0x57,0xae,0xbc,0x9f,0x38,0x42,0x42,0x8c,0x9e,0xf,0xad,0x14,0x98,0x4,0x72,0x1f,
0x73,0x5a,0x6b,0x87,0x73,0xa9,0xab,0xfb,0xf5,0x83,0x19,0x57,0xe0,0xf4,0xe3,0x8f,
0xd6,0xea,0xd9,0xf2,0xb0,0x5d,0x35,0xab,0x25,0x94,0xaf,0xf6,0xef,0xbf,0x7f,0x94,
0xe5,0x3b,0xef,0x18,0x3d,0x23,0x42,0x14,0x66,0x8e,0x45,0x5c,0x47,0x5,0xce,0x6f,
0xdb,0x96,0xef,0xa8,0xdb,0x95,0xc6,0x3f,0xfd,0x64,0xad,0x87,0xe3,0x16,0x3c,0x1,
0xbd,0x30,0x63,0xdf,0x3e,0x87,0x9,0x26,0xcf,0x8c,0x76,0x96,0x5b,0xed,0xf9,0xe7,
0x21,0xf9,0xe3,0x14,0xb0,0x4,0x2,0x58,0xe,0x56,0xc9,0xae,0x91,0xf5,0xb1,0xed,
0x48,0x1f,0x1f,0xf8,0xf0,0x19,0x94,0xb2,0xde,0x2d,0x25,0xcb,0x6b,0x7f,0xfc,0xa,
0x32,0xc9,0xed,0xbb,0xef,0x9c,0xb6,0xb8,0x8f,0x9,0x72,0x1a,0x34,0xc8,0xe8,0x59,
0x11,0xa2,0x30,0x71,0xbc,0xe3,0xf6,0x6a,0x50,0xf3,0x21,0x43,0xa8,0x8d,0x52,0xe,
0xde,0xdb,0xb6,0x59,0x5e,0xcb,0xb7,0x5a,0x0,0xb9,0x15,0x34,0xcc,0xc3,0xcc,0x93,
0x6c,0xef,0x75,0xee,0x9c,0xd7,0x6a,0x58,0x69,0xa5,0xc0,0x3c,0x3,0x79,0x14,0x4b,
0xd5,0x4c,0xf3,0x67,0xa6,0x92,0xb6,0xbf,0xee,0xdb,0x47,0x1d,0x50,0x6,0xbd,0xaa,
0x56,0xb5,0x7a,0x20,0xcb,0x90,0xcc,0xcd,0x67,0xcf,0x4e,0xed,0x5c,0x29,0xc7,0xae,
0xd5,0xe8,0xd1,0x40,0x34,0x85,0x50,0x4e,0x8e,0xd1,0xf3,0x23,0x44,0xc1,0x70,0xbf,
0xc8,0xa1,0xa5,0x56,0x95,0xd5,0x4a,0x8e,0xfc,0x8b,0xe5,0xb5,0x5c,0x9b,0xfe,0xec,
0x89,0xbd,0x4d,0x9a,0x5c,0xdb,0x9b,0xb8,0x24,0x34,0xe2,0xea,0x55,0xa3,0x67,0x47,
0x2f,0x5,0x3e,0x81,0x58,0x58,0x5e,0xbb,0xb5,0xbc,0x3d,0x65,0xb5,0xb7,0x2e,0xfe,
0x6d,0x19,0x80,0xa5,0x7,0xe,0xd0,0xd1,0x9c,0xf9,0x38,0xea,0xe3,0x93,0x12,0x7a,
0xbe,0x5d,0xa8,0xeb,0xe5,0xcb,0x46,0xcf,0x8f,0x10,0xf9,0x51,0xb9,0xd6,0xee,0x57,
0x82,0xb9,0x6c,0xd9,0xec,0xaf,0xf8,0x70,0xf6,0x92,0x75,0xeb,0xa8,0x1e,0x8d,0x42,
0x62,0xf3,0xe6,0x56,0xf,0xc4,0x93,0x63,0x70,0xee,0xc2,0x85,0x9c,0xbd,0xaa,0x8d,
0x79,0x43,0x93,0x26,0x37,0x29,0x99,0xa6,0x52,0x52,0x92,0xd1,0xf3,0xa3,0xb7,0x42,
0x93,0x40,0x2c,0xca,0x78,0x57,0x99,0xe9,0x7f,0xc1,0xc3,0x43,0xfd,0x96,0x2b,0x28,
0xce,0xd1,0xd1,0xba,0x97,0x63,0x7e,0x14,0x13,0xcf,0xc0,0x95,0x4b,0x97,0xd4,0x39,
0xca,0xd7,0xf4,0x86,0x8f,0x4f,0x7a,0xcf,0xf8,0x2d,0x53,0x6,0x1f,0x3a,0x64,0xf4,
0xfc,0x8,0x91,0x1f,0x58,0xe,0x72,0x52,0x6f,0x50,0x1a,0xed,0x5e,0xbf,0xfe,0xc1,
0xf1,0xc,0xd6,0x96,0x86,0x29,0x18,0xff,0xf7,0xdf,0xca,0x7b,0x74,0x59,0x4d,0x69,
0xda,0xf4,0x7a,0x64,0xfc,0xc8,0xf0,0x4a,0x71,0x71,0x46,0xcf,0x8f,0xb5,0x14,0xc0,
0x67,0x20,0xff,0x9b,0xe5,0x1f,0x38,0x47,0x35,0xf7,0x30,0xdb,0x37,0x6a,0xc4,0xd3,
0x79,0x9,0x7e,0x88,0x8f,0xb7,0x7a,0x20,0xb9,0x6f,0x81,0x28,0x3b,0xd5,0x9e,0x7c,
0x22,0x3a,0xda,0x89,0xdd,0x38,0x80,0xef,0xbf,0xd6,0x27,0x67,0xb6,0xb,0xf1,0x30,
0x6f,0x6f,0x93,0xc9,0xa9,0x8f,0xfb,0xe0,0xc0,0x65,0x63,0xc7,0x72,0x0,0xea,0x53,
0xed,0x1f,0x7f,0x34,0x2c,0x71,0xb4,0x2,0xe0,0x7b,0xfe,0x3c,0xfd,0x8c,0x9b,0x4a,
0x44,0xb3,0x66,0x85,0x2d,0x71,0x58,0x14,0xba,0x15,0xc8,0xbf,0x59,0x76,0xa2,0x52,
0x3,0xbe,0xcc,0x2f,0xed,0xd9,0x43,0x6f,0x20,0x5,0xbf,0x54,0xab,0x66,0x58,0x40,
0xf5,0xb1,0x10,0xbb,0x8f,0x1c,0x51,0xd6,0x2a,0x7f,0x29,0xee,0x7d,0xfa,0x5c,0x2f,
0x15,0x37,0x6c,0xf2,0x7a,0x3,0x12,0x9c,0x10,0x79,0x40,0xe9,0xc9,0x6e,0xf6,0x41,
0x9,0x2e,0x2e,0xca,0x3f,0xd4,0x96,0x63,0x57,0xad,0xb2,0xda,0x39,0x1c,0x8f,0xc0,
0x17,0xe0,0x85,0x5,0x31,0x31,0xbc,0x85,0x6e,0xd2,0xa4,0xd6,0xad,0xef,0xdf,0x39,
0xb8,0x70,0xc1,0xe8,0x79,0x32,0x4a,0xa1,0x4f,0x20,0x16,0x96,0x87,0xed,0xaa,0xb3,
0x92,0x69,0xfb,0xe6,0xee,0xdd,0xd8,0x40,0x35,0x71,0xb3,0x56,0x2d,0xc3,0x2,0x72,
0x5,0xf0,0xda,0xcd,0x9b,0xfc,0x37,0x7,0x71,0xc2,0xa8,0x51,0x69,0x97,0x13,0x7,
0x84,0xf9,0x2f,0x5b,0x76,0xff,0xc3,0x82,0xf3,0x1a,0xa0,0x10,0xf,0x23,0xba,0x7f,
0xfe,0xc6,0x47,0x1f,0x71,0x31,0x35,0x16,0xb5,0xa7,0x4f,0xc7,0x3f,0x54,0x15,0xdd,
0x4a,0x96,0x34,0x2c,0xa4,0x61,0x0,0xf,0x3d,0x7d,0xda,0x14,0xcd,0x2d,0x28,0xac,
0x75,0xeb,0x82,0xfe,0x70,0xfc,0x49,0x49,0x2,0xf9,0x97,0x52,0xa5,0x2a,0x57,0xf6,
0xf7,0x77,0x70,0x30,0x1d,0x37,0xcd,0x51,0xaa,0x6c,0xdc,0x68,0xd8,0x43,0xb9,0x7f,
0x61,0x5f,0xd4,0x46,0x93,0xfd,0xfb,0x69,0x97,0x79,0x33,0x27,0xfb,0xfa,0xa6,0x1e,
0x4f,0xa6,0xb0,0x8f,0xf5,0x2f,0x26,0x29,0x84,0x35,0x58,0x4a,0x8b,0xa8,0x2e,0xaa,
0xbf,0xfa,0xd6,0xc2,0x85,0x30,0xa1,0x3c,0x52,0x5b,0xb6,0x34,0x3a,0x2e,0xbe,0xc0,
0xbb,0x78,0xe8,0xde,0xbd,0xe6,0xa2,0x6a,0x15,0xbb,0xf2,0xdd,0xba,0xdd,0xa4,0x64,
0xa,0xa1,0x1b,0x37,0x8c,0x8e,0x2b,0xaf,0x28,0x74,0xcf,0x40,0x1e,0xe7,0xe6,0xcd,
0xf3,0xe7,0xc3,0xc3,0xd3,0xd3,0xd3,0x3c,0x8a,0x66,0xdb,0xe,0x6c,0xd7,0x8e,0xf,
0x62,0x30,0xec,0x56,0xaf,0x36,0x3a,0x2e,0xcb,0xd2,0x9d,0xc3,0x4d,0x3d,0xe8,0xf5,
0x13,0x27,0x1c,0xcf,0xbb,0x45,0x4,0x6c,0xd,0xc,0x74,0x61,0x17,0xe,0x66,0x7b,
0x7b,0xa3,0xe3,0x13,0xe2,0x69,0x54,0xf4,0xab,0xe8,0xe7,0x77,0xa8,0x68,0x51,0xc7,
0x61,0xee,0x27,0x3,0x93,0xc6,0x8f,0x37,0x6f,0x57,0x57,0xa8,0xff,0xfc,0xf1,0x47,
0x5e,0x49,0x1c,0x96,0x9d,0xe3,0x69,0xc5,0x8a,0x9e,0xb0,0x2b,0xdf,0xbe,0xbd,0x24,
0x8e,0xff,0x4e,0x56,0x20,0x4f,0x84,0xe8,0xfe,0x43,0xee,0xe0,0x60,0x54,0xa7,0xd6,
0x74,0x67,0xc2,0x4,0xa4,0x22,0x1,0x53,0xc8,0xf8,0xf9,0xcb,0x7d,0x7d,0x10,0xbf,
0x29,0x43,0x50,0x7f,0xdc,0xb8,0xd4,0x1b,0xf1,0xb,0x43,0x47,0xad,0x5a,0x75,0xff,
0x43,0xb9,0xd5,0x25,0xf2,0x16,0xa7,0x5b,0x6e,0x4d,0x83,0x94,0x8e,0x1d,0xb1,0x8e,
0x7a,0x72,0x83,0x39,0x73,0xc,0x7b,0x9d,0xfe,0x51,0x7a,0xf0,0x27,0xdc,0x3d,0x22,
0x22,0x75,0x5e,0xe2,0xe8,0xb0,0x57,0x47,0x8c,0xb8,0xff,0x43,0xf9,0xff,0xe8,0x51,
0x8c,0xbf,0x0,0xe6,0x33,0xce,0xef,0xbb,0x5f,0x9,0xf4,0xec,0xd1,0x43,0x9d,0x82,
0x28,0x44,0x2c,0x59,0x62,0xb5,0x3,0x67,0x9e,0x10,0x6f,0xe6,0xf,0x79,0xfc,0xcf,
0x3f,0xd3,0x2c,0x74,0xe2,0xa3,0x63,0xc6,0xa4,0x6e,0x4a,0xac,0x13,0xde,0xec,0xd8,
0x31,0xa3,0xe3,0x12,0x85,0xd3,0xfd,0x1d,0xe1,0x6f,0xbd,0x85,0xc5,0xd4,0x91,0xf,
0x4d,0x9f,0x4e,0x13,0xb1,0x16,0xa3,0x9a,0x34,0x31,0x3a,0x2e,0x8b,0x7,0x65,0xd5,
0x2d,0xd5,0x71,0x7b,0xc6,0x6f,0x99,0x32,0x78,0xfd,0x7a,0xa3,0xe3,0xca,0x2f,0x24,
0x81,0x3c,0xa3,0x7,0x55,0x3d,0x6f,0x98,0xb6,0xd0,0xe0,0x4d,0x9b,0x70,0x3,0x23,
0x31,0xe6,0xe5,0x97,0x8d,0x8e,0xeb,0x21,0xe5,0x50,0x8e,0xfb,0xec,0xd9,0x43,0xd7,
0xe8,0x1a,0xaf,0xf4,0xf7,0x4f,0x49,0x89,0x8f,0xf,0xf,0x3f,0x7e,0xdc,0xe8,0xb0,
0x44,0xc1,0xe4,0xf0,0x99,0xfb,0x95,0x40,0xcf,0x5a,0xb5,0x14,0x17,0xec,0xe2,0x63,
0x13,0x26,0x60,0x2e,0x56,0x52,0xce,0x7b,0xef,0xe5,0x99,0x15,0x7b,0x2e,0xde,0x8e,
0xeb,0x58,0x7b,0xee,0x1c,0x47,0xe2,0x1c,0x4a,0xbe,0xfb,0xae,0x54,0xd1,0x7e,0x36,
0x79,0xe6,0x1f,0x34,0xbf,0xba,0x7f,0x92,0x59,0xa9,0x52,0xf4,0x23,0xe6,0x99,0x2,
0x56,0xae,0xa4,0x36,0x18,0x82,0xe9,0x9d,0x3a,0x19,0x1d,0xd7,0x43,0x72,0xcf,0x21,
0x40,0x17,0xd4,0xc4,0xf1,0x8d,0x1b,0x69,0x19,0x6d,0x53,0xb7,0x87,0x87,0x4b,0x42,
0x11,0xcf,0xe3,0x7e,0xad,0xb7,0xba,0x75,0x31,0x1d,0x11,0xbc,0x37,0x20,0x0,0xd7,
0xe0,0x5,0x8f,0xae,0x5d,0xf3,0x5a,0xc2,0x78,0x20,0xf7,0xe8,0x58,0x6e,0x6d,0x4a,
0xb5,0x75,0xf9,0xf0,0xc3,0xb4,0xa8,0xb8,0x61,0x21,0x74,0xeb,0x96,0xd1,0x61,0xe5,
0x57,0x79,0xef,0x1f,0x38,0x5f,0xfb,0xcf,0xeb,0x87,0xea,0x2e,0xee,0x81,0x36,0xb3,
0x66,0x51,0x6b,0x7c,0x83,0x86,0xc5,0x8a,0x19,0x1d,0xd9,0x23,0x4d,0xe6,0xd3,0x78,
0xe7,0xe0,0x41,0xe,0xc4,0x2b,0xf4,0xc3,0x9c,0x39,0x69,0xe9,0x89,0x49,0xb1,0xe7,
0x36,0x6d,0x2,0x80,0xc8,0x48,0xb3,0xd9,0xe8,0xf0,0x44,0x5e,0x42,0xe4,0x78,0xca,
0x2d,0x79,0x5c,0xa3,0x96,0x2d,0x71,0x90,0xfc,0xd4,0xfd,0xc3,0x87,0xd3,0x38,0x9c,
0xc4,0xb8,0xbc,0x5b,0x75,0x9a,0xbf,0x84,0x3,0x4e,0xdd,0xbb,0x87,0x5f,0xf1,0x11,
0xd2,0xfd,0xfd,0xd3,0x66,0x24,0xc,0xa,0x3d,0x18,0x11,0x91,0xfb,0xa9,0x3c,0xdb,
0x78,0x4e,0x92,0x40,0x74,0xe2,0x50,0xda,0xdd,0x6d,0x7c,0xf5,0xda,0xb5,0x95,0x9e,
0xfc,0x97,0xb9,0xff,0xda,0xb5,0x86,0xef,0x2b,0x79,0x52,0xb9,0x67,0xcd,0xb3,0x23,
0x7f,0x86,0xef,0x17,0x2d,0xca,0xda,0x68,0x3b,0xd8,0x76,0xc3,0xaa,0x55,0xb7,0xeb,
0xc6,0x2e,0xa,0xa1,0x94,0x14,0xa3,0xc3,0x13,0xd6,0x51,0xfc,0xd7,0x6a,0xbe,0xc1,
0xec,0xec,0x6c,0x5b,0x33,0xbb,0x7d,0xce,0xc4,0xf,0x3e,0x50,0xca,0xd1,0x59,0x76,
0xff,0xe8,0x23,0xd8,0x61,0x31,0xfe,0xaa,0x51,0xc3,0xe8,0xf8,0x1e,0x2b,0x77,0xdf,
0x86,0x9a,0x81,0x43,0xd4,0xb6,0x57,0x2f,0xb9,0x45,0xa5,0xf,0x49,0x20,0x3a,0xb3,
0xbc,0x66,0x7b,0x7b,0x96,0x72,0x38,0x3b,0x32,0x3c,0x1c,0x91,0xb4,0x2,0x7,0x86,
0xe,0x45,0x2c,0x76,0xa3,0xb8,0x92,0xe7,0x5f,0xa3,0xe6,0x10,0xa4,0xa1,0x4f,0x66,
0x26,0x35,0xe2,0xd1,0xec,0xb0,0x79,0x33,0x7,0xf2,0x40,0x3e,0xb2,0x6c,0x59,0x5a,
0x54,0x52,0xb9,0xf8,0xb5,0xf7,0xcf,0x5b,0x91,0x95,0x4a,0xfe,0xe6,0xed,0x6d,0x32,
0x39,0x16,0x71,0x1d,0x55,0xb5,0x79,0xab,0x56,0xb4,0x41,0x19,0x80,0x8a,0xfd,0xfb,
0xf3,0x5,0x34,0x84,0x47,0xe7,0xce,0x14,0xc,0x47,0xac,0x2e,0x52,0xc4,0xe8,0x18,
0x1f,0xab,0x1a,0x5a,0xe3,0xb6,0xaa,0xc2,0x1f,0x4b,0xb8,0x63,0x44,0x44,0xf1,0x4e,
0xe6,0x1c,0xbb,0x56,0x1,0x1,0xc9,0x94,0x4c,0x21,0x74,0xef,0x9e,0xd1,0xe1,0x15,
0x54,0x92,0x40,0xac,0xcc,0xe1,0x4e,0x95,0xd4,0x80,0x16,0xd,0x1a,0x28,0x7d,0xd4,
0xf3,0xd8,0xba,0x78,0x31,0xa2,0xa9,0x1b,0x4d,0x79,0xe5,0x15,0xa3,0xe3,0x7a,0x6a,
0x1f,0x60,0x18,0xbe,0x4c,0x4b,0xe3,0x29,0x78,0x83,0xde,0xd8,0xb6,0x8d,0x72,0x78,
0x1c,0xa2,0x23,0x23,0x53,0x4b,0x56,0xfe,0xd9,0xc6,0x1c,0x15,0x25,0xe5,0xea,0xf3,
0x9e,0x60,0x56,0x14,0x87,0xd2,0xee,0x6e,0x39,0x7b,0x1a,0x36,0x54,0x7a,0xf3,0xa7,
0x6a,0x59,0x6f,0x6f,0x1e,0x4c,0xbf,0x29,0x75,0x7c,0x7c,0x2c,0x27,0x6b,0x1a,0x1d,
0xe3,0x53,0xcb,0x3d,0xef,0x47,0x9d,0xa1,0xfc,0xc3,0x3b,0x7d,0x7d,0xd3,0x8b,0xc5,
0x3b,0x85,0xed,0x3d,0x7c,0xd8,0xe8,0xb0,0xa,0xb,0x49,0x20,0x86,0xa9,0xb9,0x21,
0x98,0xed,0xec,0x9c,0xf8,0xae,0x77,0x16,0x2,0x3,0x31,0x15,0x69,0xd4,0x23,0x20,
0x0,0xd3,0xe9,0x4d,0x54,0xb1,0xb3,0x33,0x3a,0xba,0x67,0xc5,0x8b,0x90,0xca,0x81,
0xd7,0xae,0xd1,0xc7,0xec,0x4d,0x81,0x3b,0x76,0x50,0x49,0x72,0xa5,0x66,0x3b,0x76,
0x64,0x76,0xb7,0xbb,0xac,0x7e,0xb9,0x6b,0x57,0x46,0xd8,0xd9,0x79,0x61,0x7b,0x53,
0x53,0x8d,0x8e,0xb3,0xa0,0xb2,0xdc,0x7a,0x2a,0x52,0x29,0x67,0x4f,0x76,0x97,0x36,
0x6d,0xb8,0x4,0x56,0xd0,0xad,0x76,0xed,0x10,0x85,0x77,0xd4,0xad,0x6d,0xdb,0x5a,
0x4e,0xce,0x34,0x3a,0xce,0x67,0x65,0x59,0x11,0x23,0x16,0x3f,0xa3,0xd8,0x94,0x29,
0x69,0x11,0xf6,0xb1,0xb6,0x2e,0x53,0xa7,0x2,0x67,0x7c,0x42,0x28,0x2b,0xcb,0xe8,
0xf8,0xa,0x1b,0x49,0x20,0x79,0xc4,0x83,0xd7,0x82,0xdb,0x9a,0x8e,0xd2,0x9f,0xb3,
0x67,0x63,0x21,0x7a,0xa1,0x78,0xdb,0xb6,0x46,0xc7,0xa5,0x99,0x86,0x18,0x4,0x3f,
0xb3,0x19,0xc7,0x11,0x83,0x9e,0xc7,0x8f,0x23,0x1,0x2f,0x71,0xdf,0x3,0x7,0xd0,
0x88,0xb6,0xe1,0x9f,0xfd,0xfb,0x6d,0x1c,0x79,0x9b,0x9d,0xef,0xa1,0x43,0x57,0x77,
0x27,0x94,0xf,0xa1,0x6b,0xd7,0x8c,0xe,0x37,0xaf,0x2a,0xdb,0xc2,0x6d,0x60,0xe0,
0xb0,0x72,0xe5,0x72,0x7e,0xa0,0xf,0xe9,0x74,0xc3,0x86,0xa4,0x60,0xb7,0x3a,0xc0,
0xcb,0xb,0xc5,0xb0,0x93,0xda,0x37,0x6e,0x8c,0x7a,0x78,0xd,0x21,0x6f,0xbc,0x91,
0x5f,0x6e,0x91,0x3e,0x29,0xee,0xcc,0xbf,0x51,0xc4,0xf6,0xed,0xca,0x69,0xec,0x55,
0xdf,0xf2,0xf3,0x4b,0x39,0x96,0xd8,0x35,0x6c,0x6f,0x6c,0xac,0xd1,0x71,0x15,0x76,
0x92,0x40,0xf2,0x28,0xe7,0x40,0x77,0xf7,0xc0,0xa4,0xb7,0xdf,0x56,0xc7,0xc1,0xb,
0xaf,0xcf,0x98,0x41,0x95,0x70,0x0,0x83,0xaa,0x57,0x37,0x3a,0x2e,0xbd,0x59,0xde,
0xcf,0xa7,0x5f,0x30,0x8f,0x63,0x4e,0x9e,0x64,0xa2,0x31,0xf8,0xe3,0xd4,0x29,0x8a,
0xc7,0xc,0xc5,0xe7,0xf4,0x69,0x53,0x55,0x5,0x66,0xef,0xd3,0xa7,0xaf,0x7d,0x7a,
0xae,0x77,0x91,0xb0,0xfb,0x7,0xf6,0x84,0x90,0xaa,0x1a,0x1d,0xf7,0xf3,0x8,0x66,
0x45,0x29,0x3b,0xbf,0xea,0x9a,0xcc,0x0,0x57,0x57,0xf3,0x52,0x75,0x26,0xb9,0x79,
0x7a,0x72,0x3f,0x5c,0x42,0xdd,0x5a,0xb5,0x88,0x79,0x1a,0x6a,0x79,0x7a,0xb2,0x2b,
0xb7,0xa2,0xfd,0x75,0xea,0x50,0x5f,0xf2,0xc2,0x5e,0xf,0xf,0xa3,0x63,0xd6,0x5d,
0xee,0xcb,0x1c,0xea,0x2e,0x2a,0xa2,0x36,0xf3,0xf3,0x4b,0x6f,0x10,0x3f,0x32,0xbc,
0xd2,0x8e,0x1d,0x46,0x87,0x25,0xfe,0x3f,0x49,0x20,0x79,0xde,0xfd,0xa3,0x3a,0x1d,
0xdb,0xa7,0x97,0x2b,0x63,0x3f,0x78,0x30,0xba,0xf0,0xd7,0xfc,0x62,0x60,0x20,0x5,
0x52,0x3,0x64,0x94,0x29,0x63,0x74,0x74,0x86,0x19,0xcd,0xc7,0x10,0x9f,0x95,0xc5,
0xcd,0xc9,0x15,0x47,0x93,0x93,0x69,0x3e,0xa6,0x53,0x91,0xc4,0x44,0xb6,0xe7,0x4,
0x36,0x27,0x25,0xa1,0xb6,0xb2,0x92,0xd7,0x5f,0xb8,0x40,0xa9,0x5c,0xc,0x2f,0xa6,
0xa6,0xaa,0xbd,0xd5,0x25,0xe4,0x91,0x9a,0xaa,0x84,0x2b,0x35,0x15,0xa7,0x94,0x14,
0xda,0x4c,0x8d,0x72,0x7a,0xdd,0xbc,0x49,0xf1,0x34,0xdc,0x26,0xf1,0xc6,0xd,0x5a,
0x43,0x4e,0x39,0x6e,0xcc,0x39,0x7d,0xd1,0xd6,0x74,0x34,0x33,0xd3,0x5c,0x21,0xf3,
0x75,0x73,0xbd,0x3b,0x77,0x2c,0xdd,0x99,0x2e,0x17,0x39,0x61,0x3a,0x5a,0xac,0x98,
0xcd,0xd7,0xd8,0x69,0xae,0x57,0xa4,0x8,0xf7,0xe6,0x54,0x9b,0x44,0x22,0xae,0xc2,
0x73,0x72,0xdc,0x4a,0x97,0xe6,0x2e,0x7c,0xd0,0x66,0x6d,0xa9,0x52,0xaa,0xbf,0x7a,
0x46,0x4d,0x75,0x76,0x56,0xc6,0x90,0x3,0xb9,0x38,0x3b,0x73,0x45,0x22,0xde,0xee,
0xe4,0x84,0x4c,0x5e,0x8b,0x56,0x15,0x2b,0x52,0x3c,0xdd,0x42,0x2f,0x37,0x37,0x9e,
0x82,0x35,0x58,0xe9,0xea,0x4a,0x3f,0x71,0x12,0xea,0xb9,0xb8,0xe4,0xf7,0x5b,0x97,
0xcf,0xcb,0x72,0xeb,0x13,0x37,0x11,0xa3,0xc,0x98,0x32,0x25,0xad,0xbf,0x43,0x87,
0xeb,0x25,0xbf,0xfa,0xa,0x38,0x7e,0x62,0xd1,0xe2,0xec,0x6c,0xa3,0xe3,0x13,0xff,
0x9d,0x24,0x90,0x7c,0xa6,0x5c,0xeb,0x72,0xad,0x3f,0xeb,0xf3,0xc2,0xb,0xd9,0x9e,
0x2f,0x74,0xb3,0x4b,0x1c,0x38,0x10,0xd,0x31,0x96,0x77,0x6,0x6,0xe6,0xf7,0x7b,
0xdb,0xa2,0x90,0xc9,0x7d,0x9,0x3,0x33,0x79,0x38,0xdf,0x9c,0x3b,0x97,0x3b,0x98,
0xe6,0xda,0x61,0xe6,0x4c,0xd9,0xd8,0x97,0xbf,0x48,0x2,0xc9,0xe7,0x2c,0x3b,0xe1,
0x95,0x74,0x4e,0x50,0xa6,0xfa,0xf9,0x61,0x24,0xcd,0xa1,0x52,0x43,0x87,0x62,0x25,
0x22,0x30,0xc4,0xd1,0xd1,0xe8,0xf8,0x84,0x0,0x0,0x8c,0xe2,0x9,0xa8,0x90,0x9a,
0xca,0xfb,0xe9,0x1a,0xbf,0x17,0x11,0x1,0x28,0xf6,0x76,0xe5,0x67,0xcf,0x96,0x84,
0x91,0xbf,0x49,0x2,0x29,0x60,0x1e,0xec,0x3b,0x71,0xb0,0x19,0x94,0x3d,0xd3,0xc7,
0x87,0xff,0xe6,0xbb,0x98,0x12,0x18,0x58,0x58,0x9e,0xa1,0x88,0x3c,0x22,0xc,0x63,
0x10,0x9d,0x98,0xc8,0x31,0x0,0x30,0x67,0x8e,0xed,0xa9,0x7f,0x36,0x66,0xb9,0x2d,
0x59,0x72,0x75,0xf7,0xd5,0xdd,0x5f,0xac,0xfe,0xe7,0x1f,0xa3,0xc3,0x13,0xda,0x90,
0x4,0x52,0x8,0x78,0x7b,0x9b,0x4c,0x8e,0xe,0x6e,0xae,0xd5,0xaa,0xbe,0xfb,0x2e,
0x7d,0x4d,0xa,0x2f,0x1d,0x36,0xc,0xfd,0x1,0xc,0xf0,0xf2,0x32,0x3a,0x36,0x51,
0x30,0x58,0xe,0x3c,0xc3,0x49,0x7e,0x8b,0x5f,0x8d,0x88,0x48,0x8b,0x4a,0xc,0x8a,
0x1b,0xf6,0xdd,0x77,0x80,0x6c,0x34,0x2d,0xc8,0x24,0x81,0x14,0x52,0xce,0x6f,0xba,
0x7d,0x17,0xd0,0xa2,0x5a,0x35,0x75,0x29,0x5e,0xa7,0x72,0xfd,0xfb,0xe3,0x1c,0x79,
0xf2,0xe2,0x7e,0xfd,0xe4,0x59,0x8a,0xf8,0x9f,0xda,0xa3,0x3d,0x3c,0xd2,0xd3,0xf9,
0x5,0x7e,0x1,0xa1,0x91,0x91,0xbc,0x9e,0x22,0x4d,0xa6,0x2f,0xbf,0x4c,0xbf,0x91,
0x90,0x38,0x29,0xe6,0xf4,0x69,0xa3,0xc3,0x13,0xd6,0x25,0x9,0x44,0xe4,0xba,0xbf,
0xb1,0xd1,0xb1,0xfd,0xdd,0x73,0x59,0x57,0x3a,0x75,0xa2,0xc,0x9a,0x44,0xd7,0x7a,
0xf6,0xe4,0x60,0x74,0x46,0x56,0xfb,0xf6,0xd4,0x3,0xc7,0xf0,0x5d,0xd1,0xa2,0x46,
0x47,0x29,0xac,0x83,0xd7,0xe1,0x4d,0x74,0xbd,0x7b,0x97,0x96,0xe1,0x22,0x9a,0x6d,
0xdf,0xce,0x35,0xf8,0x7b,0x7a,0xef,0x9b,0x6f,0xd2,0x82,0x8b,0xfe,0x68,0xf3,0xf5,
0xd6,0xad,0xb2,0x71,0x4f,0x0,0x92,0x40,0xc4,0x63,0x38,0x6d,0xa9,0xde,0x7f,0x4c,
0xb5,0x12,0x25,0x80,0xac,0xf,0x6d,0x57,0x74,0xea,0xc4,0x15,0xe9,0x1f,0xae,0xe1,
0xe3,0x83,0x58,0x8c,0xc7,0xfb,0x6d,0xda,0xd0,0x10,0xa4,0xc3,0x53,0x8e,0xd4,0xcd,
0xaf,0x1e,0x54,0xab,0x6d,0xce,0xcd,0x71,0x7e,0xe7,0x4e,0x22,0xda,0x4,0xb7,0xd,
0x1b,0x94,0x21,0xf6,0xe1,0xb6,0x9b,0xbf,0xff,0xfe,0x7a,0xe4,0x19,0x9f,0x10,0xba,
0x7d,0xdb,0xe8,0x38,0x45,0xde,0x24,0x9,0x44,0x3c,0x13,0xcb,0x99,0xd6,0x77,0xfa,
0xd9,0x8e,0x78,0x61,0x74,0xa3,0x46,0x0,0xa0,0x56,0x6e,0xd5,0x8a,0x6,0xe1,0x20,
0x1a,0x77,0xec,0x88,0x18,0x1a,0x87,0x8b,0x35,0x6b,0x1a,0x1d,0xa7,0xb8,0x8f,0x47,
0xf3,0x68,0x74,0x4e,0x48,0x40,0x22,0x12,0xd1,0x7b,0xcf,0x1e,0x6c,0xc0,0x6,0xf2,
0xd9,0xb3,0x87,0xbe,0xb6,0x6b,0x91,0xfd,0xed,0x8e,0x1d,0xa9,0x9d,0x63,0x96,0x4d,
0x8b,0xcd,0xc8,0x30,0x3a,0x4e,0x91,0xbf,0x48,0x2,0x11,0xba,0x70,0x8e,0x76,0x5f,
0x30,0x6e,0x6a,0xd5,0xaa,0x6a,0x38,0xbf,0xaf,0x36,0x6e,0xdc,0x98,0x6a,0x90,0x3,
0xbd,0xef,0xe5,0xc5,0x53,0xd0,0x83,0xd3,0x1b,0x36,0x94,0xb7,0xc2,0xb4,0xc5,0x17,
0xe0,0x85,0x5,0x31,0x31,0x14,0x84,0x75,0xe4,0x70,0xe8,0x10,0x9f,0xe5,0x74,0x5e,
0x75,0xe0,0x80,0xa9,0xb8,0xb2,0x50,0xad,0xb4,0x6f,0xdf,0xf5,0xc8,0xf8,0x91,0xe1,
0x95,0xe2,0xe2,0x8c,0x8e,0x53,0x14,0x2c,0x92,0x40,0x84,0x21,0xca,0xb5,0x76,0xbf,
0x12,0xcc,0x65,0xcb,0xe6,0x6c,0xe4,0xee,0x39,0xa6,0x7a,0xf5,0xf8,0x28,0x4a,0xf0,
0x51,0x4f,0x4f,0xba,0x43,0xd3,0x70,0xd9,0xd3,0x13,0x7d,0xb0,0x5,0x37,0x3d,0x3d,
0xd1,0xc,0x26,0xb4,0xab,0x5a,0x15,0x87,0xb0,0x0,0xb3,0x4c,0x26,0xa3,0xe3,0xb6,
0x9a,0x8e,0x1c,0x8a,0xab,0x39,0x39,0xd8,0x4f,0xf6,0x58,0x71,0xee,0x1c,0x66,0xa2,
0x1a,0x36,0x9d,0x3e,0xcd,0xc5,0x78,0xc,0x2a,0x9c,0x3a,0x45,0xf5,0x90,0x41,0xf5,
0x4e,0x9d,0xb2,0x1d,0x6e,0xea,0xa6,0x5e,0x3a,0x72,0xe4,0xca,0xf2,0xb8,0x61,0x61,
0x15,0xae,0x5f,0x37,0x3a,0x6c,0x51,0xb8,0x48,0x2,0x11,0x79,0x9a,0x65,0x5f,0xcb,
0xcd,0xad,0xca,0x47,0xd9,0xc3,0xab,0x55,0x33,0x31,0xf,0x65,0x72,0x75,0xe5,0x7d,
0xca,0x61,0xfa,0xd5,0xcd,0x8d,0x5e,0x62,0x4f,0xc,0x77,0x73,0xe3,0xa6,0x74,0x3,
0xad,0xdd,0xdc,0xe8,0x4d,0x84,0x40,0xad,0x50,0x1,0x83,0xe1,0x88,0xde,0x65,0xcb,
0xf2,0x54,0x1e,0x8a,0x14,0x27,0x27,0xaa,0x44,0x43,0xd0,0xa6,0x78,0x71,0x6b,0xc5,
0xcd,0x17,0xf8,0x4b,0xec,0xba,0x7d,0x9b,0x66,0xd0,0x2e,0xac,0x48,0x49,0x41,0x30,
0xe,0xa3,0xfc,0xf5,0xeb,0xfc,0x37,0x37,0x46,0xf3,0xbf,0xff,0xa6,0xb5,0x78,0x17,
0xe3,0x92,0x92,0xf8,0x12,0x9d,0xc2,0x9c,0xc4,0x44,0x6a,0xa2,0x36,0xe0,0xba,0x89,
0x89,0x66,0xa2,0xb9,0xc4,0x49,0x49,0xa5,0x3a,0xaa,0x8b,0x6d,0xe7,0xc4,0xc6,0xca,
0x79,0x16,0x22,0x2f,0x93,0x4,0x22,0xa,0x5,0x8f,0x8,0x8f,0x88,0xa1,0xdb,0x8b,
0x14,0x49,0x77,0xc9,0xbc,0x5b,0x74,0x84,0x93,0x93,0xe9,0x92,0x7d,0x45,0xe5,0x5d,
0x7b,0x7b,0x75,0x82,0x3a,0x1,0x70,0x70,0xb0,0x7c,0xcf,0x3c,0x17,0xb5,0x4c,0x95,
0x8a,0x14,0xa1,0x57,0xd4,0x8,0x5a,0xfb,0x9f,0xa3,0x88,0xf9,0x4f,0x65,0x18,0xf7,
0xba,0x73,0xc7,0x34,0x14,0x7f,0x98,0x2f,0x64,0x66,0x5a,0x7e,0xae,0x4c,0x54,0x26,
0x2,0xe9,0xe9,0xe6,0x97,0xee,0x5d,0x54,0x37,0xdd,0xbb,0xe7,0x90,0x5c,0xa4,0xe8,
0xdd,0xd9,0xa9,0xa9,0x71,0xc3,0xe2,0x86,0xcd,0xed,0xf0,0x9f,0xef,0x9,0x21,0x84,
0x10,0x42,0x8,0x21,0x84,0x10,0xe2,0x79,0xfc,0x1f,0x89,0xfa,0x59,0xf,0x37,0x41,
0x9e,0xdc,0x0,0x0,0x0,0x25,0x74,0x45,0x58,0x74,0x64,0x61,0x74,0x65,0x3a,0x63,
0x72,0x65,0x61,0x74,0x65,0x0,0x32,0x30,0x31,0x39,0x2d,0x30,0x31,0x2d,0x31,0x34,
0x54,0x32,0x33,0x3a,0x32,0x34,0x3a,0x34,0x36,0x2b,0x30,0x38,0x3a,0x30,0x30,0x7f,
0x6a,0xb8,0x64,0x0,0x0,0x0,0x25,0x74,0x45,0x58,0x74,0x64,0x61,0x74,0x65,0x3a,
0x6d,0x6f,0x64,0x69,0x66,0x79,0x0,0x32,0x30,0x31,0x39,0x2d,0x30,0x31,0x2d,0x31,
0x34,0x54,0x32,0x33,0x3a,0x32,0x34,0x3a,0x34,0x36,0x2b,0x30,0x38,0x3a,0x30,0x30,
0xe,0x37,0x0,0xd8,0x0,0x0,0x0,0x4b,0x74,0x45,0x58,0x74,0x73,0x76,0x67,0x3a,
0x62,0x61,0x73,0x65,0x2d,0x75,0x72,0x69,0x0,0x66,0x69,0x6c,0x65,0x3a,0x2f,0x2f,
0x2f,0x68,0x6f,0x6d,0x65,0x2f,0x61,0x64,0x6d,0x69,0x6e,0x2f,0x69,0x63,0x6f,0x6e,
0x2d,0x66,0x6f,0x6e,0x74,0x2f,0x74,0x6d,0x70,0x2f,0x69,0x63,0x6f,0x6e,0x5f,0x6e,
0x36,0x36,0x34,0x36,0x30,0x6d,0x31,0x34,0x79,0x69,0x2f,0x79,0x75,0x61,0x6e,0x71,
0x75,0x61,0x6e,0x2e,0x73,0x76,0x67,0xe6,0x31,0xf6,0x28,0x0,0x0,0x0,0x0,0x49,
0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// D:/Works/Mine/IVM/Codes/IVM/VehicleManagement/VehicleManage/Resources/Images/homepageon.png
0x0,0x0,0x37,0x24,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x2,0x7f,0x0,0x0,0x1,0x15,0x8,0x6,0x0,0x0,0x0,0x91,0xc9,0x83,0x5a,
0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x5c,0x46,0x0,0x0,0x5c,0x46,
0x1,0x14,0x94,0x43,0x41,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x78,0x9c,0xed,
0xdd,0x7f,0x8c,0xdc,0xf5,0x7d,0xe7,0xf1,0xd7,0x77,0x3c,0xbb,0x2d,0x32,0xc7,0xae,
0x23,0xc5,0x8a,0x64,0x64,0xec,0x2a,0xa,0x12,0x18,0xb3,0xa1,0x55,0x2d,0x52,0x2c,
0x7c,0x9c,0x72,0x9,0x7,0x14,0x27,0x4d,0x55,0x12,0x97,0xc6,0xa8,0x55,0xa0,0xe1,
0x72,0x75,0xae,0x97,0x84,0x70,0x55,0x70,0xa2,0xb,0xa4,0xe9,0x25,0xf5,0x5d,0xe3,
0x4,0xa2,0x56,0x38,0x6d,0xdc,0x72,0x6a,0xae,0x31,0x18,0x1a,0xaa,0x9e,0xa8,0x91,
0xdd,0x44,0x8e,0x2e,0xe0,0x60,0x8c,0x64,0x2e,0x92,0x7f,0xc8,0x96,0x22,0x47,0x82,
0x5d,0x37,0x5b,0xe3,0xdd,0xf9,0x7e,0x3f,0xf7,0xc7,0xcc,0xe7,0x3b,0x9f,0xcf,0xe7,
0xfb,0xf9,0xce,0x8f,0x9d,0x99,0xdd,0x9d,0x9d,0xe7,0xc3,0x9a,0xce,0xcc,0x77,0x66,
0x67,0xbf,0x33,0xe3,0xd4,0x2f,0xde,0xef,0xcf,0x8f,0xe4,0x96,0xff,0xf3,0x5e,0x8d,
0x25,0x63,0x1a,0xab,0x8c,0x69,0xbc,0x32,0xa6,0xf1,0xca,0x78,0xe3,0xf6,0xb8,0xc6,
0x2a,0x55,0x8d,0x55,0xc6,0x34,0x96,0x8c,0xa9,0x5a,0xa9,0x6a,0x2c,0xa9,0xaa,0x5a,
0xa9,0x6a,0x55,0xb2,0xca,0xbb,0x54,0x92,0x8a,0x2a,0xaa,0xa8,0x92,0x24,0x4a,0x94,
0xa8,0x92,0x54,0x24,0x49,0x89,0x12,0x25,0x8d,0x63,0x96,0x91,0xa9,0x5f,0x1b,0x93,
0xdf,0xce,0x4c,0x26,0x7b,0x2f,0x33,0x99,0x77,0x2c,0x35,0xa9,0x8c,0x4c,0xfd,0xbe,
0x31,0xeb,0x32,0x65,0xef,0x34,0xc6,0x5c,0x9b,0x29,0x93,0x31,0x46,0x99,0xb2,0x2b,
0x8d,0x31,0xd7,0x9a,0xc6,0x6b,0xdb,0x9f,0x73,0x5f,0xc3,0xfd,0x7d,0xf6,0xbe,0x3d,
0xe6,0x9d,0x93,0xf3,0x18,0x0,0x0,0x18,0x3e,0xf6,0xdf,0x76,0xef,0x58,0xc9,0xbf,
0xf3,0x79,0x36,0x70,0xf2,0x80,0x71,0x8e,0xdb,0x1c,0xe1,0x5c,0xcf,0x65,0xca,0x8e,
0x1b,0x53,0xcf,0x27,0x99,0xb2,0xb9,0xcc,0x64,0xc7,0x33,0x63,0x5e,0x4b,0x4d,0x7a,
0x29,0x35,0xa9,0x32,0x93,0x29,0x35,0xa9,0x7d,0xbc,0x71,0xbb,0x79,0x2c,0xcd,0xd2,
0xe6,0x6d,0xe7,0xb1,0xe6,0x73,0x1b,0x3f,0x6b,0xb2,0xc6,0xc5,0xcf,0x42,0x79,0xfe,
0xb9,0xe7,0xe2,0x82,0x3f,0xa3,0xea,0x58,0x32,0xa6,0xf1,0x55,0xe3,0x1a,0x4b,0xaa,
0x1a,0xaf,0x8c,0xe7,0x97,0x3c,0xf8,0xe5,0xe1,0x6f,0x95,0xaa,0x49,0xb5,0x7e,0x69,
0x4,0xc0,0x4a,0x52,0xd1,0xaa,0x64,0x95,0x12,0xa9,0x71,0x5d,0xc,0x7e,0xf6,0x76,
0x18,0xba,0x4c,0xd2,0xc,0x68,0x95,0xa4,0x92,0xbf,0xa9,0x4a,0x52,0x51,0x66,0x32,
0x25,0x49,0x72,0x83,0x31,0xe6,0xfd,0x95,0xa4,0x72,0x5d,0x66,0xb2,0x1b,0x12,0x25,
0xd7,0x29,0xd1,0x15,0x89,0x49,0xa4,0x44,0xa,0xaf,0xed,0x17,0x17,0xfe,0xae,0x32,
0xb,0x9,0x7e,0xb1,0xbf,0x50,0x0,0x0,0x60,0x79,0xf2,0xb2,0x47,0x49,0xf0,0xf3,
0x9f,0x5f,0xcc,0x7,0xed,0x5e,0xcb,0x34,0xef,0xff,0x54,0xd2,0x4f,0x8c,0xcc,0x6b,
0x46,0xe6,0x7,0x46,0xe6,0x48,0x66,0xb2,0x9f,0x64,0xc6,0x38,0x41,0xae,0x1e,0xde,
0x9a,0x7f,0x4c,0xf3,0xb6,0xf3,0x1c,0x63,0xea,0x81,0x34,0xab,0x17,0xb9,0xbc,0xe0,
0x97,0x99,0x4c,0xbd,0xd6,0xaa,0xaa,0xb1,0xe0,0x37,0xbe,0x6a,0x2c,0xaf,0x6,0xd6,
0xc3,0x5f,0x3d,0xf0,0x55,0x93,0xb0,0xea,0x57,0xa9,0x57,0xfd,0x92,0x4a,0x1e,0xfc,
0x6c,0x95,0xcf,0xd,0x7f,0xee,0x7,0x2d,0x49,0x26,0x69,0x26,0x6d,0x27,0xf8,0xbd,
0xa3,0x92,0x54,0x3e,0x94,0x99,0xec,0xb6,0x4a,0x52,0xb9,0x35,0x33,0xd9,0xdb,0xdc,
0x8a,0x61,0x92,0x24,0x1d,0x85,0x2f,0xb7,0xd2,0xe7,0xfe,0x5e,0xb7,0xea,0xe7,0x7e,
0xe1,0xb1,0xbf,0xc,0x65,0xaf,0x9,0x0,0x0,0x86,0x47,0xec,0xdf,0x6f,0xaf,0xca,
0x67,0xfc,0x40,0x17,0x3e,0xe6,0x56,0xfd,0xdc,0x2a,0x61,0xfe,0xc7,0x78,0xf7,0xdf,
0xd1,0xb8,0xdc,0x22,0xe9,0x63,0x8d,0x97,0xfd,0xa9,0xa4,0x7f,0x34,0x32,0xcf,0x18,
0x99,0xe7,0x8c,0x31,0x97,0xf2,0x9f,0x9,0x2e,0x79,0xf0,0x6b,0xfc,0xce,0xd4,0xf8,
0xa1,0x30,0x35,0x69,0xfd,0xfc,0x32,0xd5,0x2f,0x3d,0xa8,0xc6,0x82,0xdf,0x78,0x65,
0xdc,0x9,0x7f,0xf5,0xd0,0x37,0x56,0x19,0xf3,0x42,0x9f,0xdf,0xee,0xad,0x14,0x5a,
0xbc,0x6e,0x70,0xb3,0x1f,0xa4,0xd,0x83,0xf6,0x8d,0x25,0x49,0x72,0x65,0x66,0xb2,
0xf,0x48,0xba,0x37,0x51,0xf2,0x5e,0xfb,0x73,0xf6,0xcb,0xb2,0x81,0x2f,0x56,0xcd,
0x8b,0x7e,0x11,0x65,0x5f,0x4c,0x24,0xf8,0xb5,0x6a,0xff,0xba,0xbf,0x3,0x0,0x0,
0xc,0xb7,0x30,0xe4,0xb9,0xc7,0xdc,0x56,0xaf,0xbd,0x6f,0x87,0xa0,0x85,0x85,0xa2,
0x56,0xd9,0xc2,0xad,0xda,0x39,0x2d,0xdb,0x77,0x64,0x26,0xbb,0xb7,0x71,0x99,0xc9,
0x94,0x7d,0x37,0x53,0xf6,0x57,0x99,0xb2,0x17,0xbc,0xaa,0x9f,0xf3,0xa7,0xde,0x16,
0x6e,0x13,0xfc,0xb2,0xde,0xf2,0x49,0x35,0x16,0xfc,0xea,0xe1,0xaf,0xd9,0xf6,0x5d,
0x95,0xac,0x72,0xda,0xbd,0xcd,0xc0,0xe7,0xb6,0x7a,0x63,0xe3,0xfb,0xa,0x1f,0x7e,
0x33,0x55,0x5f,0x5b,0x49,0x2a,0xf,0x65,0x26,0xfb,0x50,0x92,0x24,0x57,0x1a,0x63,
0xbc,0xca,0x5e,0xf8,0xa,0x65,0xd5,0xb9,0xe6,0x97,0xa1,0xe0,0x7e,0xf3,0xcb,0xc9,
0x1a,0xf1,0x38,0xf6,0x45,0x85,0x3f,0xd3,0x9,0x5a,0xbf,0x0,0x0,0xc,0x8f,0x58,
0xb1,0xc7,0x3d,0xde,0x2a,0xf8,0xb5,0x2b,0x2e,0xb9,0x6d,0xd9,0x42,0x6,0x9,0xff,
0x18,0x33,0x61,0x8c,0xd9,0x99,0x99,0x6c,0x67,0x66,0xb2,0xf3,0x99,0xc9,0xbe,0x96,
0x9a,0xf4,0x1b,0xa9,0x49,0x67,0xdc,0xf1,0x80,0x6e,0x1b,0xd8,0x8e,0xfd,0x33,0xc6,
0x48,0xa9,0xea,0x97,0xcc,0xf4,0xa1,0xed,0x1b,0x9,0x7e,0xe3,0x95,0xb1,0xbc,0xda,
0x57,0xcd,0x5b,0xbe,0xb1,0x9,0x1e,0xcd,0x76,0xaf,0x54,0x3e,0xce,0xcf,0xf9,0xb0,
0x7f,0x59,0x89,0x3e,0x25,0xa3,0xdf,0xb2,0xcf,0x9,0x9f,0xeb,0x7d,0x61,0x6e,0x7b,
0xd6,0x14,0x3f,0x74,0xf7,0x3a,0x1c,0x94,0xe9,0x6,0xbf,0xd8,0xc4,0xf,0xf7,0x8b,
0x77,0x7f,0x5f,0x7e,0x9b,0xaa,0x1f,0x0,0x0,0x43,0xa7,0x5d,0x91,0xa6,0x2c,0xf4,
0x39,0x5,0x2a,0x3f,0x4f,0x28,0x98,0x9c,0x5a,0x52,0xf5,0xcb,0xaf,0x65,0x73,0x49,
0x50,0xd,0xcc,0x47,0xf9,0x19,0x65,0xc6,0xac,0xcb,0x4c,0xf6,0x98,0x31,0xe6,0xa1,
0xcc,0x64,0x5f,0xcb,0x4c,0xf6,0xd5,0xcc,0x64,0x6f,0xd4,0x27,0x7d,0x4,0xc1,0x2f,
0x33,0xcd,0xd0,0x97,0xaa,0x3f,0x6d,0xdf,0x58,0xf0,0xcb,0x67,0xf7,0x36,0xc2,0x9f,
0x6d,0xf3,0xba,0x97,0xb2,0x8a,0x9f,0x37,0xce,0xaf,0xf1,0xf9,0x27,0x49,0x72,0x9d,
0x91,0xf9,0x8a,0x8c,0xde,0x5f,0x3f,0x50,0xff,0xb0,0xca,0xc6,0xf1,0xc5,0xbe,0xb6,
0x58,0xa9,0xb5,0xfe,0x61,0xb6,0xe,0x80,0x65,0x25,0x5a,0xfb,0x85,0xd9,0xd7,0x76,
0xef,0x3,0x0,0x80,0xe1,0x15,0x2d,0x28,0xd9,0xeb,0x68,0xf5,0xaf,0x19,0xfc,0xec,
0x6c,0x5a,0xf7,0x78,0xde,0x45,0xf4,0x32,0x85,0xbc,0x5c,0xd1,0xc,0x7d,0x99,0x17,
0x2,0xfd,0x4a,0x61,0x61,0xd2,0xc7,0x84,0x91,0xf9,0xaf,0x99,0xc9,0xfe,0x20,0x33,
0xd9,0x37,0x32,0x63,0xbe,0x90,0x99,0xec,0xe7,0x79,0xf0,0x4b,0x1b,0xad,0xde,0xfc,
0x5a,0x7d,0x1a,0xf3,0x57,0xa9,0xfa,0xad,0xde,0x20,0xf8,0x55,0x63,0xcb,0xba,0x38,
0x95,0x3f,0x49,0x79,0xf8,0x2b,0xb4,0x6b,0x93,0xe4,0x4a,0x23,0xf3,0x39,0x63,0xcc,
0x1f,0x24,0x4a,0xc6,0xdd,0x59,0xb9,0x65,0xc2,0xa0,0xe6,0xcd,0x7c,0x9,0x82,0x9c,
0xd,0x7e,0xb6,0x3c,0xda,0x75,0xe5,0x2f,0x38,0x17,0x2f,0x18,0xf6,0xf2,0xa9,0x2,
0x0,0x80,0x25,0xd3,0x2a,0x6b,0x84,0xdd,0xbf,0x58,0xf5,0x2f,0xd6,0x65,0xb4,0xa1,
0x30,0xc,0x73,0xde,0x31,0xf9,0xc1,0xd2,0xcb,0x32,0x79,0x7b,0xd8,0x1f,0x23,0xd8,
0x8,0x7a,0x57,0x66,0xc6,0x7c,0xaa,0x31,0x36,0xf0,0xf,0x33,0x93,0xfd,0x75,0x1e,
0xfc,0x6a,0x91,0xe0,0x97,0xf6,0x61,0xcc,0xdf,0x58,0x32,0x96,0x8f,0xf1,0xb,0x83,
0x9f,0xbb,0xae,0x9f,0xd,0x7c,0x6e,0xc5,0xaf,0x12,0xcc,0xc8,0x75,0x3e,0xf8,0xf,
0x25,0xd2,0x57,0x12,0x25,0xeb,0xb3,0x60,0x29,0x96,0xd8,0x17,0x11,0xb6,0x63,0xb,
0xf7,0x15,0x24,0x66,0x63,0x4a,0x83,0x5f,0x2c,0x0,0xc6,0xd6,0xf2,0xa9,0x5f,0xe7,
0xe7,0xdb,0xd3,0x7,0x9,0x0,0x0,0x96,0x46,0xac,0xd2,0x57,0xf6,0x78,0xbb,0xca,
0x9f,0xcd,0x11,0x92,0xfc,0xc0,0xe7,0x5d,0xfb,0x3f,0xeb,0x2f,0xcf,0xe2,0x64,0x14,
0xa7,0xa,0x68,0x7f,0xb7,0x1b,0x4,0xdd,0x5c,0xd3,0x18,0xf7,0xf7,0x8e,0xd4,0xa4,
0xfb,0x4d,0x66,0x7e,0x57,0x99,0x3e,0xa1,0x9a,0x79,0x2d,0xf,0x7d,0xee,0x98,0xbf,
0x5e,0x2b,0x7f,0xd5,0x4a,0x63,0x4c,0x9f,0xb3,0xae,0x5f,0x2c,0xf8,0xd9,0x56,0xef,
0xaa,0x64,0x95,0x17,0xfa,0x22,0x93,0x3c,0xae,0x94,0xf4,0x84,0x12,0x7d,0xc4,0xd,
0x7c,0x46,0xcd,0x59,0xbb,0xb1,0xca,0x9b,0xfb,0x81,0xba,0x1f,0x66,0xd8,0x47,0xb7,
0xc1,0xcf,0x5d,0xef,0xc6,0x5b,0xf4,0xd0,0xb9,0x96,0xd4,0x1c,0x28,0x69,0x7f,0x87,
0xca,0x2b,0x7e,0xe1,0x5f,0x1e,0x2,0x21,0x0,0x0,0x2b,0x47,0x59,0xd5,0xcf,0x1e,
0x2b,0xab,0xfc,0xb9,0xc5,0xa5,0xbc,0xeb,0x18,0x6,0xbb,0xc8,0x1f,0xfb,0x3b,0x9a,
0xa1,0xcf,0xaf,0x1a,0xe6,0x99,0x25,0xef,0x68,0xe6,0x93,0x3b,0x6e,0x53,0xcd,0xbc,
0xac,0x4c,0x7f,0xa8,0x4c,0x5f,0x53,0x4d,0x7e,0x15,0xb0,0x2f,0x63,0xfe,0xec,0x38,
0x3f,0xbb,0x88,0x73,0x23,0xf8,0x55,0x93,0x6a,0x3e,0xab,0xd7,0xaf,0xfa,0xb9,0xad,
0x5e,0x2f,0xf8,0x4d,0x49,0x7a,0x4a,0xd2,0xb5,0x92,0xfc,0xc5,0x97,0x1b,0xe3,0xfb,
0xa,0x1,0xcb,0xfd,0x80,0xdc,0x14,0xec,0x7d,0xd0,0xcd,0x54,0xec,0x6,0x3f,0x3b,
0xf5,0xb9,0xb4,0xfa,0x97,0xf7,0xef,0x63,0x15,0x3f,0x13,0xd,0x77,0xb1,0xff,0x7a,
0x68,0xf7,0x5f,0x14,0x0,0x0,0x60,0x79,0x2a,0x2b,0xe4,0xc4,0x8a,0x51,0x6e,0xe8,
0x93,0xfc,0xca,0x5f,0xd8,0x55,0xc,0xbb,0x92,0xb1,0xf0,0xe7,0x16,0xae,0xa,0xa1,
0xcf,0x79,0x2d,0x37,0xfb,0xe4,0x4b,0xb9,0x18,0x8d,0x2b,0xd5,0x9f,0xa9,0xa6,0x5b,
0x95,0x9a,0xfb,0x94,0xea,0xe7,0x5e,0x15,0xb0,0x7,0x55,0x3b,0xa6,0xcf,0x56,0xff,
0xdc,0xc9,0x1d,0x65,0xc1,0xcf,0x5b,0xcc,0xb9,0xd9,0xea,0xfd,0x98,0xa4,0x3d,0xc6,
0x98,0x2b,0xa4,0x92,0x5d,0x3d,0xdc,0x14,0xec,0x7e,0x30,0x79,0x65,0x2f,0xde,0x23,
0x6f,0x6e,0x73,0x12,0x3b,0x16,0xa9,0xfa,0x39,0xdb,0xc5,0x85,0x9,0xde,0x7e,0xb9,
0xde,0x75,0x87,0x33,0x83,0x0,0x0,0xc0,0x70,0x29,0x6b,0xf9,0xba,0x8f,0x87,0x19,
0xa1,0x3c,0x0,0x3a,0x63,0xff,0x82,0xe1,0x69,0xcd,0xd6,0xaf,0x82,0x2c,0x52,0xcc,
0x3e,0xde,0xe4,0x8f,0xc6,0x6b,0xa6,0x26,0xf5,0xdb,0xbb,0x35,0xd9,0x71,0x7e,0x1f,
0x52,0xaa,0x29,0xd5,0x74,0x8f,0x32,0xfd,0x28,0x6f,0xfd,0xf6,0xa0,0x5a,0x68,0xf5,
0x6,0xfb,0xf7,0x36,0xd7,0xf4,0xab,0x78,0xd5,0x3e,0x77,0x49,0x17,0x49,0x5f,0x91,
0xf4,0x9f,0x8d,0xca,0x67,0xf0,0x16,0x3e,0xe8,0x60,0x80,0xa4,0x9b,0x9e,0xfd,0x3d,
0xef,0xec,0x3e,0x79,0xce,0xc0,0x48,0x27,0xfc,0x19,0x99,0x66,0x5,0x30,0xaf,0xfa,
0x15,0x67,0xec,0xb8,0x63,0xff,0xec,0x39,0x78,0xd7,0xb4,0x78,0x1,0x0,0x58,0x31,
0x5a,0x75,0xf2,0x62,0xc3,0xbf,0xca,0x2,0xa0,0x5b,0x4c,0x72,0x8b,0x4c,0x6e,0xc5,
0x2e,0x56,0xf5,0xcb,0x5f,0x3b,0xd6,0xf2,0xd,0x2a,0x87,0x79,0x90,0x4c,0xd5,0x9c,
0xd9,0x6b,0x83,0x60,0xcd,0x48,0xa9,0xde,0xa9,0x4c,0x87,0x95,0xea,0x83,0x4a,0xcd,
0xf3,0x3d,0x57,0xfe,0xec,0x2,0xce,0xde,0x8c,0x5e,0xf7,0x8f,0x13,0xfc,0x2a,0xa,
0x67,0xf7,0x26,0xe3,0x92,0xfe,0x5c,0xd2,0xbd,0x46,0xf1,0x9d,0x38,0xbc,0xf,0x37,
0x92,0x92,0xbd,0xe4,0x6b,0xb2,0xe8,0x25,0xdf,0xf4,0xb8,0x2c,0xfc,0x65,0x76,0xc3,
0xe3,0xe6,0x7,0x29,0x45,0xa6,0x6b,0x3b,0x5f,0xac,0x7b,0xcc,0x3d,0x3f,0x0,0x0,
0xb0,0x72,0x84,0xb9,0xa4,0xbb,0x0,0x28,0xa7,0xea,0xd7,0x9c,0x4b,0xe0,0xe,0x37,
0xf3,0xbb,0x98,0xc5,0x82,0x56,0x58,0xfd,0x73,0xe7,0x24,0xb8,0x63,0xfd,0xf2,0xc0,
0x67,0xd4,0xac,0xfe,0xb9,0x4b,0xbc,0xa4,0xba,0x42,0x35,0xf3,0xb4,0x52,0xfd,0x9e,
0x52,0xfd,0x55,0x2f,0x9f,0x49,0xd5,0x6,0xbf,0x6a,0x25,0x58,0xca,0xc5,0xdd,0xb7,
0xd7,0x9,0x7e,0x4e,0xcb,0xf7,0xa,0x49,0x7f,0x27,0xd5,0xd7,0xee,0x2b,0xb4,0x79,
0x55,0xc,0x59,0xb1,0xf,0xa3,0xfe,0xa6,0x9b,0x25,0xcf,0xe2,0x25,0x2b,0x54,0x1,
0xb,0x6d,0xdf,0xc8,0x80,0xcc,0x76,0x65,0xdc,0xb0,0xf2,0x17,0xfb,0x8b,0x0,0x0,
0x0,0x86,0x5b,0x59,0xf8,0x93,0xca,0x66,0xfe,0xca,0xeb,0x1a,0xe6,0xb7,0xc3,0xb0,
0x27,0x93,0x17,0xa5,0xda,0xe5,0x1c,0xb7,0x5a,0x98,0xbf,0x96,0x9b,0x5d,0x8c,0x69,
0x8e,0xf5,0xcb,0xc7,0xf5,0x19,0x27,0x4,0xca,0x56,0x0,0xc7,0x95,0xea,0x2f,0x95,
0xea,0xed,0x92,0xbe,0xba,0xd0,0xcf,0xa4,0x6a,0xf7,0xea,0xad,0xa8,0xb8,0x90,0x73,
0x3e,0xc6,0xaf,0x18,0xfc,0xc6,0x25,0x3d,0x2b,0xe9,0xb6,0x56,0x2f,0x9e,0x4f,0x87,
0x2e,0xe9,0x8d,0xfb,0xd5,0xbd,0xb4,0x10,0x0,0x6b,0xd1,0xf6,0x6f,0x2a,0xb7,0x22,
0x98,0xbf,0x56,0x30,0xee,0xcf,0x4d,0xe9,0x54,0xfd,0x0,0x0,0x18,0x2d,0xf1,0xb6,
0xaf,0x73,0xbb,0xc5,0xca,0x1f,0x5e,0xe1,0x28,0xa8,0xe6,0x49,0xcd,0x20,0x68,0x83,
0x9f,0x3b,0x3c,0xcd,0xcd,0x1c,0x6e,0xfe,0xb1,0xaf,0x1f,0xb,0x91,0x79,0xf8,0x33,
0x8a,0xac,0xe9,0xa7,0x58,0x10,0xfc,0x4a,0xf2,0x5f,0xae,0x18,0x37,0xff,0xfd,0xd2,
0x97,0x16,0xf2,0xd9,0x54,0xa3,0xb,0x38,0xe7,0xe3,0xfb,0x94,0x2f,0xe4,0xec,0x4,
0xbf,0x55,0x92,0xfe,0x56,0x25,0xc1,0x2f,0x3a,0xab,0xd6,0x79,0x93,0x6e,0x88,0x2b,
0x54,0xf6,0x32,0x1b,0xfa,0x6a,0x85,0x8a,0x9f,0xbf,0xef,0x9d,0x3f,0x3e,0xb0,0x55,
0xd5,0xaf,0xbc,0xe2,0x17,0xff,0xf2,0xb,0xef,0x27,0xf2,0x97,0x7,0x0,0x0,0xc,
0x8f,0x42,0xf5,0xaf,0x6c,0xe2,0x47,0xc9,0xca,0x20,0x61,0xae,0x28,0xae,0x30,0x52,
0xac,0xfc,0xb9,0x7f,0xf2,0x31,0x83,0xee,0x8c,0x61,0xb7,0x50,0x65,0xab,0x7e,0x79,
0xf0,0x33,0xfe,0xe4,0x8f,0xb0,0x2,0x98,0x49,0xaa,0xe9,0xb1,0xe4,0x3f,0x5d,0x71,
0xde,0xfc,0xcf,0x4b,0x5d,0xb7,0x80,0xab,0xab,0x92,0x60,0xe1,0xe6,0xc6,0x9f,0x8a,
0xb3,0x6d,0x9b,0xb7,0x65,0x9b,0xf4,0x67,0x49,0x92,0xfc,0x7a,0xf8,0xe1,0xb9,0xa9,
0xb6,0xf9,0x1,0xf9,0xab,0x58,0x37,0xdb,0xbc,0xfe,0x58,0x3e,0x1b,0xea,0x6a,0xa6,
0xe6,0x5,0xbf,0x5a,0x56,0x8b,0xb6,0x81,0xdd,0x4a,0xa1,0x31,0x7e,0xf2,0x96,0x82,
0x45,0x19,0xe5,0x7,0xd2,0xfc,0x1c,0x4b,0x12,0x7f,0x7e,0x9f,0x4a,0x20,0x0,0x0,
0x43,0xaf,0x5d,0x11,0x27,0xcc,0x5,0xb1,0xe0,0x17,0xde,0x8f,0x5,0x3f,0xb7,0xc0,
0xe5,0x55,0xfd,0x82,0xea,0x5f,0xf8,0x9a,0x92,0x9a,0x55,0x3e,0xf7,0x92,0x57,0xff,
0xdc,0x9,0x20,0x79,0xf0,0xb3,0x61,0xf0,0xc9,0xe4,0xfe,0x5f,0x9c,0x31,0x4f,0xbc,
0xf5,0x4c,0x37,0x9f,0x49,0xd5,0xdd,0xaa,0xcd,0xad,0xfe,0x49,0xf5,0x76,0x6f,0xb0,
0x9e,0xdf,0xe7,0x25,0xfd,0x7e,0xe9,0x7,0x18,0x7c,0x70,0x85,0xd0,0xe7,0xcd,0xe6,
0x6d,0x6,0xbf,0x5a,0x56,0xf3,0x82,0x9f,0x7f,0xdf,0x56,0x4,0x9b,0xcf,0x8f,0x2d,
0xee,0xdc,0xec,0xb9,0x17,0x7,0x67,0x86,0x1f,0x76,0xec,0xcb,0xe,0x8f,0x3,0x0,
0x80,0x95,0xc7,0xcb,0x2,0x91,0x31,0x7f,0xee,0xed,0xd6,0xe1,0xaf,0x58,0x5,0xf4,
0x36,0xa4,0x70,0xea,0x7e,0xee,0xba,0x7e,0x79,0xe5,0xcf,0x59,0x32,0xc6,0x6b,0xf9,
0xba,0x61,0xcf,0x8e,0x1,0xf4,0x2a,0x7f,0x8d,0x4b,0x3d,0xc,0xae,0x52,0xaa,0xa7,
0x92,0xfb,0x7e,0x71,0x9b,0x79,0xf2,0xad,0x1f,0x76,0xfa,0x19,0x54,0xf3,0xc0,0x27,
0xb7,0xf2,0xd7,0x6c,0xf7,0x4a,0xf9,0x72,0x2e,0xef,0x97,0xf4,0x39,0x5b,0x5,0x2c,
0xab,0xfa,0x35,0xc7,0xde,0x15,0xdb,0xbd,0xb1,0x56,0xaf,0x1b,0xf4,0x6a,0x5e,0xf5,
0xcf,0x3e,0x56,0x1c,0xf7,0xe7,0x56,0xfe,0x62,0x13,0x3e,0x5a,0x25,0xec,0x30,0xa0,
0xb6,0xfa,0x4b,0x1,0x0,0x0,0x86,0xcf,0x42,0x87,0x74,0xc5,0x42,0x9f,0x3d,0x6e,
0x8c,0x5f,0x15,0xc,0x33,0x87,0xd7,0xee,0x8d,0x54,0xff,0x62,0x93,0x40,0x8c,0x6c,
0xf0,0x33,0x6d,0xaa,0x7f,0x6a,0x8e,0xfb,0x73,0xef,0xd7,0x43,0xe0,0x15,0xaa,0xe9,
0x6f,0x93,0x1d,0xbf,0xf0,0x6e,0xb3,0xff,0xf2,0x1b,0x9d,0x7c,0x3e,0xd5,0x44,0x89,
0x3f,0xab,0xb7,0x11,0xfa,0xf2,0x45,0x9c,0xeb,0xd7,0xeb,0x24,0xfd,0x65,0xec,0x3,
0xd,0xdf,0x44,0xac,0xdd,0x1b,0x5b,0xbf,0x2f,0xf,0x78,0x8d,0xb0,0x37,0x6f,0x43,
0xa0,0x73,0x9d,0x9a,0xac,0x59,0xfd,0xb,0x27,0x7d,0xc8,0x7f,0x7d,0xef,0x8b,0x68,
0x11,0x0,0xc3,0x2f,0xb7,0xdd,0x5f,0x4,0x0,0x0,0xb0,0x72,0x84,0xff,0xde,0xbb,
0xb1,0xa6,0xf0,0x58,0xa4,0x68,0x54,0x96,0x31,0xc2,0xa,0xa0,0x5b,0xf5,0x73,0xd7,
0xf5,0x2b,0x8c,0xf7,0x33,0x72,0xaa,0x7e,0xf2,0xab,0x7e,0xb1,0x9,0x1f,0x35,0x35,
0x83,0x5f,0x73,0x49,0x98,0xf5,0x4a,0xb5,0x5f,0xd2,0xed,0x9d,0x7c,0x6,0x55,0x6f,
0xb7,0x8e,0xc6,0xad,0x7c,0x1,0xe7,0x24,0x9f,0xe0,0xf1,0x94,0xa4,0xb7,0xc7,0x3e,
0xc0,0xe2,0x1b,0x97,0x1f,0xfa,0xd4,0x5c,0x9a,0xc5,0x56,0xfd,0xec,0x58,0xbe,0xf9,
0x6c,0xde,0xb,0x7e,0xf6,0x7e,0x2d,0xab,0x1f,0x6b,0xb5,0xf4,0x4b,0x6c,0xa6,0x4d,
0xd8,0xea,0xf5,0xdb,0xbe,0xe5,0x5f,0x6c,0xf3,0x2f,0x0,0x1,0x10,0x0,0x80,0x61,
0xb6,0xd0,0x62,0x4e,0x2c,0xf,0xb4,0x6d,0x5,0x7,0xeb,0xf6,0xb9,0x79,0x24,0x9f,
0xfd,0x1b,0x54,0xff,0xc2,0x95,0x48,0xf2,0xe0,0x57,0xf,0x50,0xc1,0x2c,0x5f,0x15,
0x2b,0x80,0x61,0x2b,0xb8,0x96,0x87,0xc4,0xf7,0x27,0x1f,0xf8,0x85,0x4f,0x99,0xef,
0x5e,0xfe,0x93,0x76,0xef,0x35,0xaf,0xfc,0x45,0x76,0xed,0xb0,0x3e,0x27,0xe9,0x96,
0xd8,0x87,0xd4,0x32,0xf8,0x15,0x42,0x5f,0x9a,0x57,0xf2,0xdc,0xa0,0x37,0x97,0xcd,
0xd7,0xc3,0x9e,0x99,0xaf,0x1f,0x73,0x5a,0xbf,0xfe,0x84,0x8f,0xe2,0x7a,0x7f,0xb1,
0xf0,0x67,0xcb,0xb2,0xdd,0xb6,0x7c,0x3b,0xfd,0xcb,0x42,0x40,0x4,0x0,0x60,0xf8,
0xb5,0xfb,0x77,0x3f,0xbe,0x6,0x60,0x71,0x72,0x48,0x58,0x9,0x2c,0xcb,0x43,0xde,
0xae,0x1e,0x76,0xfd,0x40,0x2f,0xf8,0x39,0xb7,0xc3,0xf6,0xae,0xbf,0xdb,0x47,0xb8,
0xf6,0x9f,0x5b,0x1,0x7c,0x2c,0xb9,0x63,0xfc,0x88,0x79,0x6e,0xee,0x7,0xad,0xde,
0x5b,0xd5,0xd,0x7e,0x41,0xe8,0x93,0xa4,0x77,0x4a,0x7a,0x28,0xf6,0x61,0x15,0xca,
0x9e,0xe1,0x1b,0x2d,0xb4,0x7b,0xb3,0x66,0xb5,0xaf,0x51,0xe9,0x9b,0xcb,0xea,0x81,
0x2f,0xbf,0xd8,0xaa,0x9f,0x99,0xcf,0x83,0x5f,0xab,0xb5,0xfe,0x6c,0xb2,0xf6,0xc3,
0x5f,0xbc,0xdd,0x1b,0x9d,0x5d,0xd3,0xe6,0xcb,0x6,0x0,0x0,0x2b,0x47,0xdb,0xc0,
0xd7,0x41,0x3e,0x88,0x5,0x41,0x77,0x70,0x59,0xb1,0x2,0x98,0xfa,0x1d,0x51,0x5b,
0x5,0x54,0xb0,0xc4,0x4b,0xac,0xe5,0x1b,0x56,0x1,0x8d,0xdc,0xa0,0x57,0x6c,0x5,
0x67,0x5a,0xa5,0x54,0x5f,0x4f,0xde,0x3b,0xfe,0x2b,0xe6,0x1f,0xe7,0x4a,0x37,0x81,
0xab,0xda,0x1b,0x91,0xe0,0x27,0x49,0x5f,0x97,0x34,0xde,0xaa,0xec,0xe9,0x26,0x5c,
0x37,0xf5,0xba,0x63,0xfb,0x6c,0x35,0x6f,0xde,0xa9,0xf2,0xcd,0x65,0xf3,0x9a,0xcb,
0xe6,0x9c,0xf0,0x57,0xd3,0x5c,0x36,0x97,0x3f,0x2f,0xaf,0x12,0x3a,0xd5,0xbf,0xe6,
0xce,0x1e,0x7e,0xc5,0xcf,0x5b,0x37,0x47,0xcd,0x3d,0x7c,0xed,0x6d,0xf7,0x7c,0x3b,
0xfd,0x72,0x1,0x0,0xc0,0xca,0xd5,0x49,0xc7,0xaf,0xec,0x19,0xed,0x83,0x60,0x64,
0xc,0xa0,0x6d,0x1,0x87,0x95,0xbf,0xe8,0x2c,0xdf,0xe0,0x98,0x5d,0xfb,0x2f,0x16,
0xfc,0x8a,0xf7,0xa7,0x94,0xe9,0x63,0x92,0xbe,0x51,0xf6,0xbe,0xaa,0xce,0x32,0x2e,
0x92,0xe4,0xae,0xe9,0xf7,0x11,0x63,0xcc,0x7b,0xc3,0x4c,0xe8,0xbe,0xe1,0x30,0xf8,
0x15,0x67,0xf5,0xfa,0xad,0xde,0x9a,0xf1,0x83,0xdf,0x5c,0x36,0xa7,0xb9,0x74,0x3e,
0x6f,0xf9,0xba,0xd5,0x3f,0x77,0xf2,0x47,0x38,0xd6,0x2f,0xac,0x2c,0xfa,0xeb,0xfa,
0x99,0x42,0xa,0x6f,0x17,0xfc,0x8,0x7c,0x0,0x0,0xac,0x4c,0xb,0x1d,0x3,0xd8,
0xcd,0x6b,0xb5,0x6f,0x3,0x7,0xbb,0x80,0xd8,0x25,0x5e,0xc2,0xc9,0x1e,0xe1,0xc4,
0x8f,0xb4,0xe4,0x7e,0xac,0xf5,0x9b,0x4f,0x0,0x31,0x52,0xa6,0xff,0x96,0xfc,0xda,
0xd8,0x33,0xe6,0x9f,0xe7,0xcf,0xc7,0xce,0xb7,0x1a,0x1e,0x30,0xc6,0x28,0x49,0x92,
0x2b,0x25,0x7d,0xd9,0x7d,0x43,0xee,0x1b,0x6f,0xbe,0x31,0x7f,0x2d,0xbf,0x30,0xf8,
0xd5,0xbc,0x49,0x1d,0x36,0xf0,0xf9,0xc1,0x2f,0xbf,0x9d,0xcd,0x35,0xdb,0xbe,0x8d,
0x9f,0x29,0xb4,0x7d,0x33,0xb7,0xfa,0xe7,0x96,0x55,0xa5,0x58,0xdb,0xd7,0x9e,0xbf,
0x1f,0x5,0xfd,0x2f,0xaa,0x93,0x2f,0x15,0x0,0x0,0xa0,0x4c,0x2c,0x63,0x84,0xfb,
0xf8,0xa6,0xc1,0xf8,0x3f,0xb9,0x13,0x3c,0x5a,0x55,0x0,0xdd,0xaa,0x5f,0xa6,0x60,
0x9c,0x5f,0x24,0xf8,0xd5,0x1f,0x7b,0x9b,0x32,0x3d,0x26,0xe9,0x77,0x62,0xe7,0x5b,
0xd,0x76,0xef,0xb0,0x6f,0xe2,0x63,0x92,0xd6,0xb9,0x15,0xc1,0xe2,0x58,0xbf,0xe2,
0x18,0xbf,0x30,0xf8,0xb9,0xb3,0x7a,0xc3,0xe0,0x77,0x39,0x9d,0xd3,0xe5,0xec,0x72,
0x7e,0xdc,0x56,0xfe,0x6c,0xeb,0xd7,0xb6,0x8a,0xc3,0x40,0x69,0xfb,0xe5,0xf9,0x3a,
0x3a,0xf2,0xc7,0xfb,0xb9,0x6d,0xdf,0x30,0xf4,0xb5,0x5a,0xda,0x85,0xea,0x1f,0x0,
0x0,0xa3,0x2d,0x96,0x89,0xf2,0xc7,0xe2,0xc3,0xe3,0x3c,0xe5,0x13,0x42,0xe4,0xad,
0xff,0xd7,0xdc,0xd2,0x4d,0xc5,0x59,0xbe,0xd1,0x96,0xaf,0x4a,0xf6,0xfc,0x95,0x1f,
0x4,0xdd,0xe5,0x5f,0x32,0x7d,0x24,0x79,0x77,0xf5,0x8b,0xe6,0xe5,0xda,0xc9,0xf0,
0x3c,0xb,0x95,0x3f,0x49,0xe3,0xc6,0x98,0x4f,0xb9,0xef,0x31,0x7c,0x33,0x99,0xd,
0x5a,0x6d,0x82,0x5f,0x7d,0x52,0xc7,0x9c,0x37,0xa6,0x6f,0x2e,0x9b,0xd3,0x5b,0xe9,
0x65,0x5d,0x4e,0xeb,0xc1,0xef,0xb2,0xad,0xfa,0xe5,0x63,0x0,0x63,0x2d,0xdf,0x78,
0xdb,0x37,0x2c,0xa7,0xc6,0x3e,0x6c,0xef,0xfc,0x4b,0x82,0x20,0x0,0x0,0x80,0x14,
0xf,0x80,0x61,0xf0,0xeb,0x24,0x8,0x4a,0x7e,0xb7,0xd4,0xdd,0x91,0xac,0xd0,0xe6,
0xd,0xdb,0xbd,0xde,0x7d,0xa7,0xea,0xe7,0xce,0xfc,0x4d,0x4d,0x79,0xf0,0xab,0x35,
0x26,0x7f,0x18,0x7d,0x4a,0xd2,0xef,0x85,0xe7,0xe5,0x85,0x3f,0x23,0xa3,0x44,0xc9,
0xef,0x4a,0x7a,0x47,0xb8,0x30,0xb2,0xec,0xb9,0x44,0x42,0x57,0xbb,0xe0,0xe7,0x56,
0xfc,0x6c,0xf0,0x7b,0x2b,0x7b,0x4b,0x97,0xd3,0x39,0xa7,0xed,0x3b,0xef,0xb5,0x88,
0xdd,0x3d,0x7e,0xa3,0x4b,0xbc,0x64,0x76,0xc2,0x87,0xd,0xa4,0xc5,0xf0,0x27,0xc5,
0xdb,0xd6,0xb1,0x2f,0x7,0x0,0x0,0x8c,0x96,0x68,0x88,0x33,0xad,0xc3,0x9d,0x1b,
0xe,0x3b,0xad,0x6,0x7a,0x93,0x64,0xf3,0xdd,0x3c,0x4c,0x24,0xf0,0x45,0x2a,0x80,
0x36,0x8,0x7a,0xe3,0xfd,0xc2,0x9,0x1f,0x52,0x61,0xc,0x60,0xbd,0x11,0x7a,0x6f,
0x72,0x7d,0xf5,0xb,0xe6,0x44,0xed,0xac,0x7b,0x4e,0x55,0x7b,0x62,0x92,0x64,0x8c,
0x59,0x95,0x25,0x7a,0xc8,0x9d,0x2,0x92,0x4f,0x9a,0x8,0x4e,0x3e,0x56,0xf5,0x73,
0x83,0x5f,0x3e,0xb3,0xb7,0x31,0x86,0xef,0x72,0x76,0xb9,0xde,0xea,0x75,0x82,0x5f,
0xfd,0xd8,0xe5,0x7a,0xf0,0x73,0x26,0x7d,0xd8,0x71,0x7e,0xb5,0xac,0xe6,0xad,0x15,
0xe8,0x4d,0x93,0x56,0x7c,0x41,0xe7,0xfc,0x5c,0x4b,0xc2,0xdf,0x42,0x10,0xe,0x1,
0x0,0x18,0x2e,0xdd,0xb4,0x69,0x3b,0x7a,0x3d,0x1b,0xfa,0x4c,0xf1,0xf5,0xcb,0x7e,
0x57,0x61,0xc8,0x9c,0xbb,0x8f,0x6f,0x58,0xed,0xf3,0x8e,0x47,0x42,0x60,0x18,0xf8,
0xa2,0xbb,0x7f,0x78,0xc1,0x4f,0x32,0x1a,0x97,0xf4,0x29,0x49,0x9f,0x70,0xcf,0xab,
0xda,0x98,0xe0,0x61,0xab,0x7e,0xbf,0x6e,0x8c,0x59,0xaf,0xc4,0x9,0x7d,0x26,0x38,
0x71,0xf9,0xcb,0xac,0xc4,0x82,0x5f,0x1e,0x0,0xf3,0xd9,0xbd,0xfe,0xe4,0xe,0x1b,
0xfc,0xde,0x4a,0xdf,0xf2,0x96,0x7c,0x71,0x77,0xfb,0x88,0xed,0xe7,0x5b,0xd8,0xc3,
0xb7,0x71,0x4e,0xf9,0xf9,0x39,0xf7,0xcb,0xbe,0x0,0x0,0x0,0xb0,0xf2,0xf5,0xfa,
0xef,0x7e,0x18,0xe8,0x5a,0x75,0x12,0xcb,0xc6,0xa,0x16,0xe6,0x1a,0xb8,0xa1,0x2f,
0x3c,0xbd,0x68,0x20,0xec,0x70,0xf9,0x97,0x9a,0xfc,0xe0,0xe7,0xbf,0xf6,0xef,0x26,
0xd7,0x57,0x3f,0x6b,0x4e,0xd4,0x7e,0x6e,0xf,0x54,0x82,0x59,0xb1,0xf7,0xe6,0xb7,
0x8d,0x89,0x56,0xfa,0xdc,0x85,0x96,0x8b,0xb3,0x7b,0x6b,0x85,0x75,0xfc,0xdc,0xcb,
0xe5,0xec,0x72,0x3e,0xc6,0xcf,0x56,0xfc,0xe6,0xbc,0x31,0x7f,0xcd,0xed,0xdd,0xf2,
0xf5,0xfd,0xb2,0x16,0x63,0xfe,0x9c,0xf5,0x72,0xdc,0x31,0x7f,0xee,0x7,0x1d,0x9b,
0xe9,0xb,0x0,0x0,0xd0,0x4a,0x37,0x19,0xc2,0xcb,0x4d,0xce,0xc5,0x7d,0xad,0x3c,
0xdc,0xb9,0x2f,0x67,0x24,0x85,0xd5,0x40,0x7b,0xdc,0x1b,0xfb,0xe7,0x84,0x40,0xb7,
0xf2,0x57,0x73,0x6e,0xbb,0xd5,0x43,0xdf,0x15,0x92,0x3e,0xe4,0x1e,0xa8,0x38,0x6f,
0xf0,0x6d,0xc6,0x98,0x3b,0xfc,0x55,0xa8,0xe3,0x3b,0x76,0x84,0xdb,0xb6,0xb9,0x33,
0x7b,0xdd,0xf0,0x66,0x97,0x6d,0x69,0x4e,0xf6,0x98,0xf7,0xc6,0xf8,0xb9,0xc1,0x2f,
0x5c,0xe6,0xa5,0xb9,0xc0,0xb3,0xb3,0x2e,0x8e,0xad,0x3a,0x76,0x18,0xfa,0x0,0x0,
0x0,0x7a,0x65,0x82,0x3f,0xdd,0xfe,0x5c,0xf1,0x47,0x4a,0x5e,0x23,0xac,0xa,0x16,
0xaa,0x7e,0xce,0x25,0x9c,0xfc,0x91,0x15,0x5f,0xce,0x71,0xaf,0x7b,0xa7,0x1e,0xfe,
0xea,0x61,0xea,0x23,0x46,0x66,0xdc,0x7d,0x73,0x5e,0xe8,0x53,0x71,0x6f,0xdd,0x76,
0xed,0xde,0xfa,0x38,0xbe,0xc6,0xc4,0xf,0x33,0x5f,0x58,0xf2,0xa5,0xb9,0xd5,0x5b,
0xea,0x85,0xbe,0x70,0x49,0x17,0x3b,0x4b,0x26,0x9f,0x64,0x42,0xe8,0x3,0x0,0x0,
0x4b,0xa4,0x5d,0x10,0xf4,0x1e,0x73,0xab,0x79,0x9d,0xff,0x2,0x77,0xdc,0x5e,0x7c,
0x42,0x48,0x38,0x3,0x38,0xac,0x2a,0xfa,0x6e,0x4d,0xae,0xaf,0xae,0xb7,0x77,0x2a,
0xce,0xac,0xdd,0xdf,0x8a,0x55,0xfd,0xbc,0xb6,0x6f,0x61,0x92,0x87,0x1f,0x8,0x6d,
0xd8,0x6b,0x56,0xfd,0x1a,0x95,0xbf,0xc6,0xf1,0xc2,0x5a,0x7e,0x8d,0xa0,0xe8,0x56,
0xd,0x63,0x6d,0x5e,0xb7,0xda,0x17,0x1b,0xd7,0x47,0xe8,0x3,0x0,0x0,0x4b,0x21,
0xac,0xa,0x7a,0x79,0xa4,0x34,0x9a,0x24,0xcd,0x2b,0x77,0x22,0x49,0x18,0x14,0x4b,
0xab,0x80,0x91,0x35,0x0,0x5b,0xc7,0xa0,0x55,0x92,0x3e,0x62,0xef,0x54,0x6c,0xcb,
0x57,0xd2,0xcd,0xb1,0xaa,0x9f,0xbb,0xa7,0x6e,0x74,0xdb,0xb6,0xcc,0x6f,0xd1,0xda,
0x2d,0xdc,0xdc,0x7d,0x7c,0xdd,0xd0,0x37,0x97,0xcf,0x2,0x76,0x82,0xa2,0xad,0xf8,
0x35,0x76,0xf0,0xc8,0x8c,0xbf,0x94,0x8c,0xf7,0xe1,0x76,0xb0,0x74,0xb,0x0,0x0,
0xc0,0x50,0xc9,0x97,0x59,0x31,0xfe,0x75,0xb8,0xb,0x48,0x6c,0x4d,0xc0,0xce,0xbc,
0xd7,0xde,0xa8,0x34,0x2,0xd6,0xfb,0x33,0x93,0xad,0xea,0xbc,0xea,0x57,0xc,0x83,
0xee,0xb8,0xbf,0x7c,0x6b,0x37,0xe3,0x2f,0xf7,0xe2,0xee,0xef,0x5b,0x33,0xfe,0xe,
0x1e,0xcd,0xd7,0xf,0x16,0x6e,0x2e,0x69,0xf3,0x52,0xed,0x3,0x0,0x0,0xcb,0x56,
0xbb,0x88,0x92,0x94,0xdc,0x76,0x7f,0xde,0x4,0xb7,0xcb,0x66,0xfe,0x76,0x16,0x87,
0x6e,0x4e,0xae,0xaf,0x5e,0x21,0x49,0x95,0x46,0x3b,0xf5,0xb6,0x76,0x55,0xbf,0x68,
0xf0,0xcb,0x82,0x99,0xbe,0xa6,0xd9,0xee,0x6d,0xce,0xfc,0x6d,0xb6,0x74,0xdd,0x96,
0xb0,0x1b,0x14,0x9b,0x1,0xb0,0x18,0xfc,0xa8,0xf6,0x1,0x0,0x80,0x15,0x25,0x71,
0xae,0x13,0xc5,0xc3,0x9f,0xe4,0x57,0xfb,0x4c,0x64,0xa9,0x98,0xee,0xe2,0xd0,0x15,
0x92,0x7e,0x55,0x6a,0x56,0xfe,0x6e,0x69,0x57,0xf5,0x4b,0x4b,0x2b,0x7e,0xf5,0x7d,
0x78,0xc3,0x0,0x18,0x4e,0x2,0x71,0x9f,0x1f,0xbe,0x4e,0xbd,0xaa,0x57,0xdc,0x3d,
0x84,0xe0,0x7,0x0,0x0,0x56,0x14,0x37,0xec,0x95,0xdd,0x76,0x85,0xd5,0x3f,0x1b,
0x2,0xbb,0x6b,0xf9,0x5a,0xef,0x95,0xa4,0xaa,0x91,0x99,0x48,0x94,0x5c,0x9b,0xaf,
0xf7,0xd7,0xb8,0xb6,0x63,0xed,0xea,0xed,0xd8,0xe2,0x36,0x6e,0xe1,0x9e,0xbb,0x79,
0xb8,0xcb,0x8a,0xcf,0xb1,0x33,0x7a,0xbd,0x89,0x1d,0xde,0x2,0xce,0xfe,0xc2,0xd1,
0x4,0x3f,0x0,0x0,0xb0,0xa2,0x24,0xaa,0x87,0x35,0xf7,0x3a,0xfa,0x3c,0xfb,0x4,
0x47,0x38,0xde,0x2f,0x5c,0x1f,0xb0,0x73,0x37,0x4b,0x52,0x35,0x33,0xd9,0x94,0xbb,
0x8a,0xb5,0x1b,0x2,0xeb,0x41,0x4c,0x5e,0xf0,0x2b,0xf,0x81,0x7e,0x1b,0xd8,0x8e,
0xfb,0x6b,0x15,0x16,0x6d,0x45,0xb1,0x1e,0x2f,0x83,0xc9,0x1d,0x4,0x3f,0x0,0x0,
0x30,0xac,0x22,0x19,0xce,0x3b,0x96,0x24,0x52,0x62,0xea,0xc7,0x2a,0x25,0xaf,0x51,
0xa8,0xfa,0x35,0xee,0xdb,0x31,0x7f,0xdd,0xfb,0x65,0xa9,0x5e,0xf9,0xbb,0xc1,0xff,
0x3d,0xc6,0xd9,0xd9,0xa3,0x7e,0xed,0x6e,0xb1,0xe6,0x7,0xc0,0x30,0x8,0x66,0x25,
0x61,0xb0,0xd8,0xe6,0x75,0xd7,0xed,0xb3,0xbf,0xaf,0xfe,0x7e,0xe2,0xeb,0xf7,0x1,
0x0,0x0,0xac,0x28,0xb,0x69,0xfb,0x2e,0x2c,0xf4,0x59,0x13,0xc9,0xf5,0xd5,0xf5,
0xd5,0xcc,0x64,0xd7,0xda,0xca,0x5f,0xb3,0xea,0xa7,0xe2,0xb8,0x3f,0x65,0x5e,0x0,
0x4c,0x4d,0xe6,0x4d,0xc,0x9,0xab,0x7e,0xe5,0x41,0xb0,0x79,0xdf,0x4e,0xf0,0xb0,
0x81,0x2f,0x16,0xf2,0x8,0x7e,0x0,0x0,0x60,0x28,0x85,0xd5,0x3f,0xb7,0xe5,0x5b,
0xd6,0xf6,0x75,0x85,0x15,0xbf,0xd8,0xfa,0x7f,0xdd,0x7b,0x67,0xd5,0x48,0xeb,0xe5,
0x84,0x3e,0x77,0x31,0xe5,0x42,0xf0,0x53,0x2c,0x4,0xda,0x19,0xc1,0xcd,0xc7,0xfd,
0xe3,0x4e,0xc5,0xcf,0x56,0x11,0x9d,0x3f,0x6e,0xe5,0x2f,0x6c,0xf7,0x12,0xfc,0x0,
0x0,0xc0,0x8a,0x12,0x9b,0xe9,0x1b,0xb,0x83,0x61,0x4,0x72,0x83,0x5f,0xd9,0x73,
0x3a,0xb3,0xb1,0x6a,0x8c,0x59,0xdf,0xc,0x94,0xcd,0xc9,0x1e,0x79,0xf8,0x53,0x56,
0x18,0xe7,0xe7,0x4e,0x0,0xc9,0x4c,0x96,0x2f,0xce,0x5c,0x8,0x79,0xce,0x16,0x6d,
0xf9,0x92,0x31,0x76,0x36,0xb1,0x91,0x57,0xed,0x23,0xf8,0x1,0x0,0x80,0x15,0x27,
0x36,0xf6,0x2f,0x7c,0xdc,0xd,0x84,0x31,0x85,0x31,0x7f,0xb1,0xfd,0x82,0x3b,0xb6,
0xbe,0x6a,0x64,0xde,0xde,0x7c,0x6d,0x77,0xbc,0x9f,0x1f,0xfc,0x9a,0xcb,0xbe,0x38,
0xd5,0x3b,0xd3,0xac,0xdf,0x35,0x43,0x9d,0xf1,0x2a,0x83,0xde,0xfe,0xc0,0x41,0xa8,
0xf4,0xaa,0x7e,0x4,0x3f,0x0,0x0,0xb0,0xd2,0x79,0x93,0x3e,0x82,0xe3,0xed,0x18,
0x53,0x6c,0x1,0x77,0xef,0x6d,0xd5,0xcc,0x64,0x6f,0xcb,0x5f,0xd3,0x69,0xbd,0xba,
0xa1,0xcd,0xd,0x74,0x85,0x89,0x1f,0x59,0x1a,0x3d,0x1e,0x86,0x3e,0x1b,0xfc,0xec,
0x62,0xce,0xc6,0xf8,0xcb,0xba,0x0,0x0,0x0,0xac,0x48,0xb1,0xb1,0x7f,0x65,0x2d,
0xdf,0x56,0xd5,0x3f,0x7b,0xdd,0x5b,0x6c,0x7a,0x7b,0xd5,0xc8,0x5c,0xd1,0x7c,0xdd,
0x60,0x87,0xd,0x5b,0x5,0x74,0x46,0xe8,0xb9,0xcb,0xb2,0x84,0xb7,0xb,0x55,0x40,
0x6f,0xdc,0x60,0xf3,0x35,0xed,0xef,0xb2,0xd7,0x54,0xfd,0x0,0x0,0xc0,0x48,0x49,
0x1a,0xff,0x27,0x31,0xfe,0xb2,0x2f,0x31,0x61,0xb5,0xaf,0xb7,0xa8,0x74,0x65,0x35,
0xf,0x61,0xc1,0x44,0xf,0x5b,0xfd,0xf3,0xc6,0xee,0x39,0xd5,0xbd,0xbc,0x42,0xe8,
0x54,0x9,0x8d,0xf1,0x27,0x6f,0xa4,0xce,0xde,0xbc,0x61,0x3b,0x39,0x56,0xf1,0x23,
0xf8,0x1,0x0,0x80,0x15,0x29,0x6c,0xf7,0x76,0x1a,0x79,0x4c,0x70,0xbb,0xf7,0xa8,
0xb4,0xaa,0x6a,0x17,0x56,0xae,0xbf,0xa6,0x1f,0xfc,0xdc,0xea,0x9f,0xf7,0xc7,0xf8,
0x33,0x81,0xf3,0xfb,0xc1,0x6c,0xe0,0xd8,0xeb,0x49,0xf2,0x43,0xa2,0x21,0xf0,0x1,
0x0,0x80,0x11,0x14,0xab,0xf4,0x75,0x5a,0xfd,0x5b,0xb8,0x2b,0xab,0xf5,0xd7,0xf1,
0xc3,0x98,0x57,0xa9,0x93,0x5f,0xf5,0xf3,0xda,0xbd,0xee,0xf3,0xed,0x6b,0x4,0xcb,
0xb6,0x84,0xb7,0xa9,0xfa,0x1,0x0,0x80,0x91,0x54,0x36,0xf6,0x4f,0x6a,0x33,0xd3,
0x37,0xb2,0xdd,0x5b,0xf,0xf2,0xca,0x5f,0x2c,0x0,0xb6,0xab,0xfc,0x79,0xcf,0x77,
0xc6,0xf5,0x15,0x2a,0x7f,0x6e,0x0,0x34,0xce,0x78,0x3f,0xaa,0x7e,0x0,0x0,0x60,
0x14,0xc5,0x76,0xf6,0x68,0x35,0xe3,0xb7,0x7f,0x95,0x3f,0x45,0xc7,0xfc,0xf9,0x95,
0xba,0xe2,0x4c,0xdf,0x70,0xc,0x5f,0xec,0x35,0xea,0xe7,0x57,0xac,0x0,0xba,0xcf,
0x6b,0xbe,0x1f,0x42,0x20,0x0,0x0,0x18,0x21,0xdd,0x2e,0xf3,0x22,0xf5,0x6b,0xcc,
0x5f,0x7d,0x2b,0xe1,0xc2,0x64,0xf,0x27,0xb4,0xd5,0x7f,0x97,0xff,0xc7,0x1e,0x8b,
0xae,0xdb,0x97,0xbf,0x8e,0x51,0xb4,0xaa,0x48,0xd5,0xf,0x0,0x0,0x8c,0xaa,0x4e,
0x83,0x5e,0x4c,0x38,0xf9,0x63,0x81,0x4a,0xdb,0xbe,0x6e,0xd5,0x2f,0x1f,0xcb,0xe7,
0xac,0xcf,0x97,0x85,0x4b,0xb6,0xb8,0x3f,0x6b,0x4c,0x70,0xdc,0x5f,0xda,0xc5,0x7f,
0x1f,0x84,0x40,0x0,0x0,0x30,0x82,0xda,0x5,0xc1,0xb2,0xb5,0xfd,0x7a,0x1d,0xf3,
0x17,0x6b,0xc5,0xda,0xb6,0x6e,0xfd,0xf5,0xe3,0x63,0xfe,0xf2,0xc7,0xa,0x41,0xaf,
0xd8,0xf6,0xf5,0x9e,0x1b,0xb4,0x7c,0x1,0x0,0x0,0x46,0x52,0x6c,0x4f,0xdf,0x45,
0x10,0x6d,0xfb,0x4a,0x76,0x72,0x49,0xeb,0xb6,0x6f,0xec,0xb6,0x15,0x56,0x12,0xed,
0xb1,0xd8,0x35,0x0,0x0,0xc0,0xc8,0x28,0x5b,0xe2,0x65,0x91,0x82,0x60,0x25,0xba,
0x34,0x4b,0x78,0xcc,0x44,0x82,0x5d,0xe1,0xf9,0x41,0x48,0x74,0x2b,0x82,0x8c,0xf3,
0x3,0x0,0x0,0xe8,0x5d,0x3f,0x26,0x7c,0x84,0x15,0x3c,0xfb,0xba,0xd1,0xd9,0xbf,
0xc6,0x9,0x7a,0xb1,0x31,0x7f,0xce,0x25,0x3f,0xc7,0x92,0xea,0x1f,0x0,0x0,0x0,
0xd4,0xdd,0x6c,0x5f,0xf7,0x7a,0x81,0x2a,0xf9,0xeb,0x99,0x62,0xc5,0xae,0xfe,0xfa,
0x91,0xd6,0x6f,0xd9,0x98,0xbf,0x16,0x6d,0x60,0xef,0xdc,0x19,0xf7,0x7,0x0,0x0,
0xd0,0xd4,0x6e,0x8d,0xbf,0x3c,0xf8,0xf5,0x9e,0x9f,0x2a,0xb1,0xaa,0x9f,0xbd,0x1f,
0x1d,0xf3,0x67,0xe2,0xc1,0x30,0x3c,0xd6,0xea,0x39,0x0,0x0,0x0,0x68,0x23,0x8c,
0x4e,0x7d,0x8a,0x52,0xf9,0x84,0x8f,0xe2,0xef,0x2b,0x86,0xbd,0xf0,0xf1,0x56,0xf7,
0x5b,0xbd,0x2e,0x0,0x0,0x0,0x3a,0x30,0x80,0xd8,0xd4,0x6c,0xfb,0x46,0x66,0xe7,
0x96,0x9f,0x47,0x71,0x6d,0xbf,0x76,0xcf,0xd,0x6f,0x3,0x0,0x0,0x40,0x8b,0xbe,
0xdc,0x4b,0x25,0x36,0xfe,0xae,0x30,0xce,0xaf,0x83,0xa,0x5e,0x38,0xce,0xcf,0x9b,
0x48,0xc2,0x18,0x3f,0x0,0x0,0x80,0x65,0xa1,0xe2,0xde,0xf1,0x16,0x8f,0xe,0x97,
0x77,0xe9,0x70,0x81,0xe6,0x76,0x93,0x3d,0x0,0x0,0x0,0xb0,0x74,0x2a,0xb1,0xea,
0x5e,0x59,0x5,0xcf,0x3b,0xc6,0xd2,0x2d,0x0,0x0,0x0,0xbd,0xe9,0x76,0x99,0x97,
0x3e,0x8,0x2a,0x7f,0xed,0x27,0x78,0x94,0xfd,0xee,0xd8,0x62,0xd0,0x0,0x0,0x0,
0x58,0x5e,0x2a,0x65,0xf,0x44,0x67,0xef,0x76,0x11,0x3b,0x9,0x82,0x0,0x0,0x0,
0x7d,0xd0,0xe7,0x48,0x55,0xe9,0x24,0xd0,0x15,0xda,0xbe,0x1d,0xb6,0x7c,0x3b,0x59,
0xe,0x6,0x0,0x0,0x0,0x8b,0xc7,0x59,0xea,0xa5,0xa8,0xd3,0xea,0x9d,0x37,0x46,
0xd0,0x98,0x96,0x8b,0x4f,0x53,0x11,0x4,0x0,0x0,0x58,0x3a,0x85,0xb6,0x6f,0xb7,
0xd5,0xb9,0x4e,0xc2,0x1c,0x15,0x3f,0x0,0x0,0x80,0xe5,0xa1,0x74,0xcc,0x1f,0x0,
0x0,0x0,0x56,0x9e,0x8e,0xc3,0x1f,0xd5,0x3b,0x0,0x0,0x80,0xe1,0xd7,0x75,0xe5,
0x8f,0x31,0x7b,0x0,0x0,0x0,0x4b,0xa0,0x4f,0x11,0xac,0x22,0x11,0xe8,0x0,0x0,
0x0,0x46,0x5,0x63,0xfe,0x0,0x0,0x0,0x46,0x8,0xe1,0xf,0x0,0x0,0x60,0x84,
0x10,0xfe,0x0,0x0,0x0,0x46,0x48,0x57,0xdb,0xbb,0x1,0x0,0x0,0x60,0xb8,0x51,
0xf9,0x3,0x0,0x0,0x18,0x21,0x84,0x3f,0x0,0x0,0x80,0x11,0x42,0xf8,0x3,0x0,
0x0,0x18,0x21,0x84,0x3f,0x0,0x0,0x80,0x11,0x42,0xf8,0x3,0x0,0x0,0x18,0x21,
0x84,0x3f,0x0,0x0,0x80,0x11,0x42,0xf8,0x3,0x6,0x6c,0x72,0x7c,0x42,0xbb,0xae,
0x7d,0x50,0xdb,0xaf,0xbe,0x73,0xa9,0x4f,0x5,0x0,0x0,0x55,0x97,0xfa,0x4,0x80,
0x95,0x68,0xdb,0xda,0xad,0xf9,0xe5,0xd6,0xb5,0xb7,0xe4,0xc7,0xef,0x3b,0xfa,0x80,
0xf6,0x9d,0xda,0xbf,0x84,0x67,0x6,0x0,0x18,0x75,0x84,0x3f,0xa0,0x47,0x1b,0x56,
0xaf,0xd7,0xb6,0xb5,0x5b,0x35,0xb5,0x66,0xb3,0xb6,0xad,0xdd,0xaa,0x1b,0x27,0x6f,
0x28,0x7d,0xee,0x93,0x5b,0x1e,0xd7,0xb1,0xe9,0xe3,0x3a,0xf6,0xe6,0x2b,0x8b,0x78,
0x86,0x18,0x5,0x93,0xe3,0x13,0xda,0xf5,0xae,0x7,0x17,0xf4,0xb3,0x87,0x2e,0x1c,
0x6e,0xf9,0xf8,0xe9,0xd9,0x33,0x3a,0x3d,0x7b,0x76,0x41,0xaf,0xbd,0x1c,0x6d,0x58,
0xbd,0x5e,0x1b,0x56,0x5f,0xd3,0xf6,0x79,0x53,0x6b,0x36,0x6b,0x72,0x6c,0xa2,0xa3,
0xd7,0xdc,0xf3,0xfa,0x5e,0x4d,0xcf,0xcd,0xf4,0x7a,0x6a,0xc0,0xa2,0x20,0xfc,0x1,
0x3d,0xd8,0xbd,0xe9,0x61,0x3d,0xb2,0xe9,0xb3,0x5d,0xfd,0xcc,0xa1,0xdb,0xbe,0xa7,
0x6d,0x2f,0xdc,0x4e,0x0,0x44,0x5f,0x9d,0xbe,0xeb,0x35,0x4d,0x8c,0x5d,0xb5,0xa0,
0x9f,0x7d,0x44,0xdd,0xfd,0x1d,0x8e,0x79,0xf1,0xc2,0x91,0xb6,0xcf,0x39,0x36,0xfd,
0xca,0x82,0x2,0x52,0xa7,0x21,0x6c,0x72,0x7c,0xa2,0xe5,0x7f,0x7c,0xd,0xd2,0xd4,
0x9a,0xcd,0xda,0x7e,0xf8,0x9e,0x25,0xf9,0xdd,0x40,0xb7,0x8,0x7f,0x40,0xf,0xf6,
0xbc,0xbe,0x57,0xdb,0xaf,0xbe,0xb3,0xab,0x7f,0x70,0x26,0xc6,0xae,0xd2,0xa1,0xdb,
0xbe,0xa7,0xd,0x7,0xaf,0xa3,0x52,0x80,0xbe,0x59,0x68,0xf0,0xeb,0x17,0x77,0x78,
0x43,0x2f,0xcf,0x19,0x56,0x9d,0x56,0x8,0x81,0xe5,0x80,0x9,0x1f,0x40,0xf,0xa6,
0xe7,0x66,0xb4,0xfd,0xf0,0x3d,0x9a,0x99,0xbf,0xd8,0xd5,0xcf,0xd9,0x0,0x8,0x0,
0xc0,0x62,0x23,0xfc,0x1,0x3d,0x3a,0x3d,0x7b,0x56,0xdb,0x5e,0xb8,0xbd,0xeb,0x9f,
0xbb,0x71,0xf2,0x6,0xed,0xdb,0xf2,0xf8,0x0,0xce,0x8,0x0,0x80,0x72,0x84,0x3f,
0xa0,0xf,0x8e,0xbd,0xf9,0x8a,0x3e,0xf9,0xf2,0x43,0x5d,0xff,0xdc,0x47,0x37,0xee,
0xd0,0xce,0x8d,0x3b,0x6,0x70,0x46,0x0,0x0,0xc4,0x11,0xfe,0x80,0x3e,0xd9,0x73,
0x72,0xaf,0x9e,0x3e,0xff,0x5c,0xf7,0x3f,0x77,0xd3,0x97,0x35,0xb5,0x66,0xf3,0x0,
0xce,0x8,0x0,0x80,0x22,0xc2,0x1f,0xd0,0x47,0x3b,0x8f,0xde,0xbf,0xa0,0xf1,0x7f,
0xb4,0x7f,0x1,0x0,0x8b,0x85,0xf0,0x7,0xf4,0xd1,0xf4,0xdc,0x8c,0x76,0xbd,0xf4,
0xe9,0xae,0x7f,0xee,0xc6,0xc9,0x1b,0x68,0xff,0x2,0x0,0x16,0x5,0xe1,0xf,0xe8,
0xb3,0x7d,0xa7,0xf6,0x77,0xb4,0xe6,0x59,0x68,0xcf,0x4d,0x5f,0xd6,0xe4,0x38,0xcb,
0x45,0x0,0x0,0x6,0x8b,0xf0,0x7,0xc,0xc0,0xae,0x97,0x3f,0xd3,0xf5,0xcf,0x4c,
0x8c,0x5d,0xb5,0xe0,0x1d,0x1a,0x0,0x0,0xe8,0x14,0x8b,0x3c,0x3,0x3,0x70,0xec,
0xcd,0x57,0xf4,0xad,0x53,0xfb,0xf5,0xd1,0x2e,0x5b,0xb9,0xbb,0xae,0x7d,0x90,0x6d,
0xa2,0xb0,0x20,0x33,0xf3,0x17,0xfb,0xb6,0xd0,0x73,0xbf,0x76,0xeb,0x70,0xb7,0x85,
0x3b,0xb0,0xf5,0xa9,0x8e,0xcf,0x6f,0x66,0xfe,0xa2,0xb7,0x5b,0xc6,0xb6,0xb5,0x5b,
0x5b,0x3e,0xbf,0xdd,0x76,0x6d,0x1b,0x56,0xaf,0xd7,0x35,0xab,0xd7,0x77,0xf4,0xbb,
0x17,0xea,0xf4,0xec,0x99,0x81,0xbe,0x3e,0xd0,0x4f,0x84,0x3f,0x60,0x40,0x76,0xbf,
0xfa,0xa8,0xb6,0x5f,0x7d,0x57,0x57,0xff,0x20,0x4f,0x8c,0x5d,0xa5,0xdd,0x9b,0x1e,
0xd6,0xae,0x97,0xba,0xaf,0x1c,0x62,0xb4,0x4d,0x3d,0x7f,0x73,0xdb,0xfd,0x6a,0x97,
0x6a,0x8f,0xde,0xa9,0x35,0x9b,0xbb,0xfa,0xdf,0xc1,0xbe,0x53,0xdf,0xf6,0xf6,0x1b,
0x6e,0xb7,0xf7,0x70,0xaf,0x26,0xc7,0x27,0x34,0x35,0xd9,0xdb,0x8c,0x7b,0xc2,0x1f,
0x86,0x9,0xe1,0xf,0x18,0x90,0xd3,0xb3,0x67,0xb5,0xe7,0xe4,0xde,0xae,0xf6,0xfe,
0x3d,0x33,0x7b,0x96,0xaa,0x1f,0x16,0xe4,0xf4,0xec,0xd9,0x25,0x9,0x76,0x9d,0xd8,
0xbe,0xee,0xce,0xae,0x9e,0xbf,0xe7,0xe4,0xde,0x1,0x9d,0x49,0xdc,0xf4,0xdc,0xcc,
0xc0,0x3,0x26,0xb0,0x9c,0x10,0xfe,0x80,0x1,0xda,0xf3,0xfa,0x5e,0xed,0xba,0xf6,
0xc1,0xd2,0xaa,0xc7,0x8b,0x17,0x8e,0xe8,0xf4,0xec,0x19,0x1d,0xba,0x70,0x58,0x87,
0x2e,0x1c,0x5e,0xb6,0xff,0x78,0x3,0xbd,0xd8,0x7e,0x75,0xe7,0xe1,0xef,0xc7,0xd3,
0xc7,0xf9,0xdf,0x1,0x30,0x60,0x84,0x3f,0x60,0x80,0xec,0xd2,0x2f,0x4f,0x6e,0x79,
0x5c,0x67,0x66,0xcf,0xe6,0x21,0x8f,0xa0,0x87,0x51,0xb1,0x61,0xf5,0x7a,0xdd,0x38,
0x79,0x43,0xc7,0xcf,0xdf,0x77,0x6a,0xff,0x0,0xcf,0x6,0x80,0x44,0xf8,0xc3,0x90,
0xdb,0xb0,0x7a,0xbd,0x4e,0xdd,0x75,0xa2,0xed,0xf3,0x66,0xe6,0x2f,0xea,0xd8,0x9b,
0xaf,0xb4,0x7d,0x5e,0xbb,0x41,0xec,0xed,0x5a,0x43,0xb1,0x31,0x55,0xfb,0x4e,0xed,
0xd7,0xb1,0xe9,0xe3,0x1d,0xfd,0xfe,0x56,0xda,0xd,0x6a,0xef,0xe6,0x79,0x9d,0x8c,
0x71,0xba,0x75,0xed,0x2d,0xde,0xfd,0x99,0xf9,0x8b,0xda,0xf6,0xc2,0xed,0x3d,0xbf,
0xf,0x8c,0x96,0xed,0x57,0xdf,0xd5,0xd5,0xf3,0xf,0x9c,0x3b,0x38,0xa0,0x33,0x1,
0x60,0x11,0xfe,0x30,0xd4,0x3a,0x9,0x43,0x52,0x7d,0x22,0x45,0x18,0x66,0x62,0xda,
0x3d,0xe7,0x11,0x75,0x3e,0x7e,0x6f,0xa5,0x99,0x18,0xbb,0x4a,0xdb,0xd7,0xdd,0x49,
0xf8,0x43,0x57,0x76,0xbd,0xeb,0xe3,0x1d,0x3f,0x97,0x96,0x2f,0xb0,0x38,0x58,0xe7,
0xf,0x0,0x30,0x10,0x53,0x6b,0x36,0x77,0xb5,0xc4,0xa,0x2d,0x5f,0x60,0x71,0x10,
0xfe,0x0,0x0,0x3,0xd1,0x4d,0xd5,0x4f,0x1a,0xfc,0x92,0x2e,0x0,0xea,0x8,0x7f,
0x0,0x80,0xbe,0xdb,0xb0,0x7a,0x7d,0x57,0x8b,0x9c,0xff,0xb8,0xf,0xe3,0x62,0x1,
0x74,0x86,0xf0,0x7,0x0,0xe8,0xbb,0xdd,0x9b,0x1e,0xee,0xea,0xf9,0xb4,0x7c,0x81,
0xc5,0x43,0xf8,0x3,0x0,0xf4,0x55,0xb7,0x55,0x3f,0xa9,0xbe,0xab,0x7,0x80,0xc5,
0xc1,0x6c,0x5f,0x0,0x18,0x51,0x93,0xe3,0x13,0xda,0xf5,0xae,0x7,0xf3,0xfb,0xe1,
0x52,0x45,0x9d,0xec,0xdf,0x1b,0xb3,0xe7,0xa6,0x2f,0x77,0xf5,0xfc,0xa7,0xcf,0x3f,
0xb7,0xa8,0x3b,0xdb,0x4c,0xad,0xd9,0xac,0xc9,0xb1,0x89,0xfc,0xbe,0xbb,0x3c,0xd2,
0xf4,0xfc,0xcc,0xa2,0xef,0x30,0x2,0x2c,0x36,0xc2,0x1f,0x0,0x8c,0xa8,0x5d,0xef,
0x7a,0xb0,0xab,0xed,0x7,0x7,0xe5,0xee,0x75,0x77,0xc8,0xdc,0xf3,0x2f,0x4b,0x7d,
0x1a,0xb9,0x6d,0x6b,0xb7,0x6a,0xfb,0xe1,0x7b,0x96,0xfa,0x34,0x80,0x81,0xa1,0xed,
0xb,0x0,0x80,0xc3,0xad,0xa,0x2,0x2b,0x11,0x95,0x3f,0xa0,0x43,0x67,0x66,0xcf,
0x76,0xbd,0x0,0x6d,0x27,0xb,0x4b,0xbb,0x7e,0x3c,0x7d,0xbc,0xb4,0xfd,0xb5,0x61,
0xf5,0xfa,0xae,0xd6,0x4c,0x3,0x0,0x20,0x86,0xf0,0x87,0xa1,0x76,0xe8,0xc2,0x61,
0x3d,0x7d,0xfe,0x39,0xef,0xbf,0xd4,0x7b,0xd9,0xa2,0x2d,0xb6,0x3d,0x5b,0x2f,0xba,
0x6d,0x65,0xed,0x7a,0xe9,0x33,0x3d,0xad,0x75,0x16,0x8e,0x65,0x72,0x75,0xb2,0xa5,
0x5b,0xab,0xe7,0x4c,0xcf,0xcf,0xb0,0xe,0x1b,0x0,0xac,0x0,0x84,0x3f,0xc,0x3d,
0xc6,0xe6,0x34,0xb5,0x5b,0x27,0xed,0xc0,0xb9,0x67,0x17,0xe9,0x4c,0x0,0x0,0xcb,
0x15,0x63,0xfe,0x0,0x0,0x0,0x46,0x8,0xe1,0xf,0x0,0x0,0x60,0x84,0x10,0xfe,
0x0,0x0,0x0,0x46,0x8,0xe1,0xf,0x0,0x0,0x60,0x84,0x10,0xfe,0x0,0x0,0x0,
0x46,0x8,0xb3,0x7d,0x1,0x0,0x1d,0xf9,0xe4,0xcb,0xf,0xb5,0x9d,0x51,0xbe,0x5c,
0xed,0xb9,0xe9,0x8f,0x75,0xe3,0xe4,0xd,0x4b,0x7d,0x1a,0xc0,0xb2,0x40,0xf8,0x3,
0x0,0x74,0xe4,0xd8,0x9b,0xaf,0xc,0xed,0x5a,0x8f,0x8b,0xb9,0x77,0x30,0xb0,0xdc,
0xd1,0xf6,0x5,0x0,0x0,0x18,0x21,0x84,0x3f,0x0,0x0,0x80,0x11,0x42,0xdb,0x17,
0x0,0xb0,0x24,0x76,0x5d,0xfb,0xa0,0x26,0xc7,0x26,0x74,0x7a,0xf6,0x8c,0x8e,0x4d,
0x1f,0x1f,0xda,0xf1,0x84,0xc0,0xb0,0x21,0xfc,0x1,0x0,0x16,0xdd,0xf6,0xab,0xef,
0xd4,0x9f,0xbe,0xfb,0x4b,0xde,0xb1,0x99,0xf9,0x8b,0x3a,0x70,0xee,0xa0,0xe,0x5d,
0x38,0xac,0x3,0xe7,0x9f,0x65,0x9c,0x1e,0x30,0x20,0xb4,0x7d,0x1,0x0,0x8b,0x6e,
0x6a,0x72,0x73,0xe1,0xd8,0xc4,0xd8,0x55,0xfa,0xe8,0xc6,0x1d,0x7a,0x72,0xcb,0xe3,
0x7a,0xf3,0x83,0xe7,0x74,0x60,0xeb,0x53,0xda,0xb9,0x71,0xc7,0x12,0x9c,0x1d,0xb0,
0xb2,0x11,0xfe,0x0,0x0,0x8b,0xae,0x93,0x59,0xc3,0x77,0xaf,0xbb,0x43,0x4f,0x6e,
0x79,0x5c,0xd3,0xbf,0x71,0x5e,0xbb,0x37,0x3d,0xbc,0x8,0x67,0x5,0x8c,0x6,0xc2,
0x1f,0x0,0x60,0x59,0x9b,0x18,0xbb,0x4a,0x8f,0x6c,0xfa,0xac,0x76,0x5d,0xfb,0xe0,
0x52,0x9f,0xa,0xb0,0x22,0x10,0xfe,0x0,0x0,0x43,0xe1,0xc0,0xb9,0x83,0x4b,0x7d,
0xa,0xc0,0x8a,0x40,0xf8,0x3,0x0,0x2c,0x7b,0xdf,0x3a,0xb5,0x5f,0xa7,0x67,0xcf,
0x2e,0xf5,0x69,0x0,0x2b,0x2,0xe1,0xf,0x0,0xb0,0xac,0xcd,0xcc,0x5f,0xd4,0xee,
0x57,0x1f,0x5d,0xea,0xd3,0x0,0x56,0xc,0xc2,0x1f,0x0,0x60,0x59,0xdb,0x73,0x72,
0x2f,0x55,0x3f,0xa0,0x8f,0x8,0x7f,0x0,0x80,0x45,0x37,0x39,0x3e,0xd1,0xf1,0x73,
0xf7,0x9d,0xfa,0xf6,0x0,0xcf,0x4,0x18,0x3d,0x84,0x3f,0x0,0xc0,0xa2,0x8b,0xad,
0xf3,0x57,0x86,0xaa,0x1f,0xd0,0x5f,0x84,0x3f,0x0,0xc0,0xa2,0xdb,0xb0,0x7a,0x7d,
0x47,0xcf,0x7b,0xf1,0xc2,0x91,0x1,0x9f,0x9,0x30,0x7a,0x8,0x7f,0x0,0x80,0x45,
0xb7,0x61,0xf5,0x35,0x1d,0x3d,0xef,0xd8,0x34,0xfb,0xfd,0x2,0xfd,0xc6,0xde,0xbe,
0x58,0x91,0xa6,0xd6,0x6c,0xd6,0xa1,0xdb,0xbe,0xa7,0x89,0xb1,0xab,0x24,0x49,0x67,
0x66,0xcf,0xb6,0x6c,0x1d,0x4d,0xcf,0xcf,0x94,0x6e,0x2a,0x7f,0x6c,0xfa,0x95,0xd2,
0x3d,0x46,0x4f,0xcf,0x9e,0x59,0xb4,0x96,0xd4,0xd4,0x9a,0xcd,0x9a,0x1c,0x8b,0x8f,
0x93,0x2a,0x7b,0x6c,0xc3,0xea,0xf5,0x6d,0xff,0x91,0xbd,0x75,0xed,0x2d,0xde,0xfd,
0xcf,0xbf,0xfa,0x18,0x33,0x2b,0x31,0x70,0xe1,0xdf,0xbb,0x32,0x65,0xff,0xbb,0x4,
0xb0,0x70,0x84,0x3f,0xac,0x48,0xdb,0xd7,0xdd,0x99,0x7,0x3f,0x49,0xba,0x66,0xf5,
0x7a,0x5d,0xd3,0xa6,0xcd,0x74,0xf7,0xba,0x3b,0x6,0x7d,0x5a,0x6d,0xfd,0xd3,0x6d,
0x7f,0xbf,0xd4,0xa7,0xa0,0x6d,0x6b,0xb7,0x2e,0xf5,0x29,0x60,0x85,0xeb,0xe6,0xef,
0x58,0x27,0xdb,0xc0,0x1,0xe8,0xe,0x6d,0x5f,0x0,0xc0,0xa2,0x9a,0x5a,0xd3,0xd9,
0x64,0x8f,0x99,0xf9,0x8b,0x4c,0xf6,0x0,0x6,0x80,0xf0,0x7,0x0,0x58,0x54,0x9d,
0x56,0xfe,0xa8,0xfa,0x1,0x83,0x41,0xf8,0x3,0x0,0x2c,0x2a,0xc2,0x1f,0xb0,0xb4,
0x8,0x7f,0x0,0x80,0x45,0xb3,0x6d,0xed,0x56,0x6f,0x3c,0x6e,0x2b,0x4b,0x15,0xfe,
0x3a,0x5d,0x86,0x6,0x18,0x56,0x84,0x3f,0x0,0xc0,0xa2,0xd9,0x7e,0xf5,0x9d,0x1d,
0x3d,0x6f,0x66,0xfe,0xe2,0x92,0xcd,0xf4,0x6d,0x37,0x39,0xc,0x18,0x76,0x84,0x3f,
0x0,0xc0,0xa2,0xd9,0xbe,0xae,0xb3,0xf0,0x77,0xe0,0xdc,0xc1,0x1,0x9f,0x9,0x30,
0xba,0x8,0x7f,0x0,0x80,0x45,0x31,0xb5,0x66,0x73,0xc7,0x55,0x35,0xc6,0xfb,0x1,
0x83,0x43,0xf8,0x3,0x80,0x11,0xd5,0xe9,0x92,0x2b,0xfd,0xb2,0x73,0xe3,0x8e,0x8e,
0x9f,0x7b,0xe0,0xfc,0xb3,0x3,0x3c,0x13,0x60,0xb4,0xb1,0xc8,0x33,0xd0,0x27,0xb1,
0x31,0x4a,0x9d,0xee,0x62,0x60,0xfd,0x78,0xfa,0xb8,0xb7,0x9b,0xc8,0xd4,0x9a,0xcd,
0x1d,0xf,0x8e,0x7,0xba,0x55,0xb6,0x63,0xcc,0xa0,0xec,0xdc,0xf8,0xdb,0x1d,0x3d,
0x2f,0xfc,0xdf,0x1,0x80,0xfe,0x22,0xfc,0x61,0x45,0xda,0xf3,0xfa,0xde,0xae,0x9e,
0xdf,0x6a,0xb,0x37,0x69,0xe1,0x2d,0x28,0x73,0xcf,0xbf,0x74,0xf5,0xfc,0x5d,0x2f,
0x7d,0xa6,0xeb,0xdf,0xd5,0x6e,0xb,0xb7,0x6e,0x77,0xec,0xa0,0xe2,0x82,0x41,0xd8,
0x7e,0xf5,0x9d,0x1d,0xff,0x87,0xcc,0xbe,0x53,0xfb,0x7,0x7c,0x36,0xc0,0x68,0x23,
0xfc,0x61,0x45,0x9a,0x9e,0x9b,0x19,0x99,0xfd,0x69,0x4f,0xb7,0xd9,0xb7,0x98,0xb1,
0x53,0x58,0xe,0x3a,0xad,0xfa,0x49,0x4c,0xf6,0x0,0x6,0x8d,0x31,0x7f,0x0,0x80,
0x81,0xda,0xb0,0x7a,0x7d,0xc7,0x7b,0x67,0xff,0x78,0xfa,0x38,0x5b,0xba,0x1,0x3,
0x46,0xf8,0x3,0x0,0xc,0x54,0x37,0x55,0x3f,0x5a,0xbe,0xc0,0xe0,0x11,0xfe,0x0,
0x0,0x3,0xd5,0xd5,0x2c,0x5f,0x5a,0xbe,0xc0,0xc0,0x11,0xfe,0x0,0x0,0x3,0xb3,
0x73,0xe3,0x8e,0x8e,0xd7,0xf6,0xa3,0xe5,0xb,0x2c,0xe,0xc2,0x1f,0x0,0x60,0x60,
0x76,0x6f,0x7a,0xb8,0xe3,0xe7,0xee,0x39,0xd9,0xdd,0x2c,0x7d,0x0,0xb,0x43,0xf8,
0x3,0x0,0xc,0x44,0x37,0x55,0x3f,0x89,0x65,0x86,0x80,0xc5,0x42,0xf8,0x3,0x0,
0xc,0x44,0x37,0x55,0xbf,0x6f,0x9d,0xda,0xbf,0xac,0x16,0x76,0x9e,0x1c,0x5f,0xdc,
0x5,0xb0,0x81,0xc5,0x44,0xf8,0x3,0x0,0xf4,0xdd,0xae,0x6b,0x1f,0xec,0xaa,0xea,
0xb7,0xe7,0xf5,0xaf,0xf,0xf0,0x6c,0xba,0x37,0x35,0xb9,0xb8,0x5b,0xdf,0x1,0x8b,
0x89,0xf0,0x7,0x0,0x23,0x6a,0x43,0x17,0xe1,0xac,0x1b,0x93,0xe3,0x13,0x5d,0x55,
0xfd,0x5e,0xbc,0x70,0xa4,0xb0,0x35,0x22,0x80,0xc1,0x61,0x87,0xf,0x0,0x18,0x51,
0xdd,0x54,0xe6,0xba,0xb1,0x6f,0xcb,0x13,0x5d,0xed,0x49,0xbd,0xef,0xd4,0xb7,0xb,
0xc7,0xe,0x6c,0x7d,0x4a,0x1b,0x56,0xaf,0xd7,0xe9,0xd9,0xb3,0x3a,0x70,0xee,0xa0,
0xe,0x9c,0x7f,0x76,0x59,0xb5,0x85,0x81,0x61,0x46,0xf8,0x3,0x80,0x11,0x34,0xa8,
0x31,0x6d,0x3b,0x37,0xee,0xe8,0x78,0x37,0xf,0x49,0x3a,0x33,0x7b,0xb6,0xb0,0xb0,
0xb3,0xfb,0x1a,0x37,0x4e,0xde,0xa0,0xbb,0xd7,0xdd,0xa1,0x27,0x25,0x3d,0x7d,0xfe,
0x39,0x1d,0x38,0x77,0x90,0x85,0xa0,0x81,0x1e,0xd1,0xf6,0x5,0x80,0x11,0x34,0x88,
0x31,0x6d,0x53,0x6b,0x36,0x6b,0xcf,0x4d,0x5f,0xee,0xea,0x67,0xc2,0x3d,0xb8,0x5b,
0xb5,0x8c,0xef,0x5e,0x77,0x87,0x9e,0xdc,0xf2,0xb8,0xa6,0x7f,0xe3,0xbc,0xf6,0xdc,
0xf4,0xc7,0x3,0x6b,0x5b,0x3,0x2b,0x1d,0xe1,0xf,0x0,0x46,0xd0,0xea,0xd4,0x4a,
0x6a,0x0,0x0,0x16,0xca,0x49,0x44,0x41,0x54,0xe9,0xd9,0x33,0x9a,0x99,0xbf,0xd8,
0xb7,0xd7,0x9b,0x1c,0x9f,0xd0,0xbe,0x2d,0x8f,0x77,0xd5,0xee,0x8d,0x55,0xfd,0x76,
0xbd,0xab,0xfd,0x44,0x91,0x89,0xb1,0xab,0xf4,0x7,0xef,0xfa,0xb8,0x4e,0xdd,0x75,
0x42,0x87,0x6e,0xfb,0x9e,0xb6,0x5f,0x7d,0x67,0xdb,0xdf,0xb5,0xe7,0xf5,0xce,0xd7,
0x10,0xfc,0xd6,0xa9,0xfd,0x3a,0x74,0xe1,0x70,0xc7,0xcf,0x7,0x86,0xd,0x6d,0x5f,
0x0,0x18,0x41,0xa7,0x67,0xcf,0x6a,0xea,0xf9,0x9b,0xb5,0x61,0xf5,0x35,0x1d,0x3e,
0xff,0x4c,0xe9,0xee,0x1b,0x93,0xe3,0x13,0x3a,0x74,0xdb,0xf7,0x74,0xe3,0xe4,0xd,
0x5d,0x9d,0x43,0x58,0xf5,0xdb,0xb0,0x7a,0xbd,0x1e,0xd9,0xf4,0xd9,0xae,0x5e,0xe3,
0xd6,0xb5,0xb7,0xe8,0xd6,0xb5,0xb7,0xe8,0xcc,0xec,0x59,0xed,0x7e,0xf5,0xd1,0xd2,
0x96,0xf0,0x81,0x73,0xcf,0xea,0x3,0x47,0x3e,0xdc,0xb6,0xe2,0x39,0x3d,0x3f,0xc3,
0x62,0xd3,0x58,0xf1,0x8,0x7f,0x0,0x30,0xa2,0x4e,0xcf,0x9e,0xed,0x79,0x3b,0xb5,
0x85,0x6,0xbf,0x58,0xd5,0x6f,0xdf,0x96,0x27,0x16,0x7c,0x1e,0xd7,0xac,0x5e,0xaf,
0x27,0xb7,0x3c,0xae,0x3d,0x37,0x7d,0x59,0x7b,0x4e,0xee,0xd5,0x9e,0xd7,0xf7,0x16,
0x26,0x88,0x1c,0x38,0xf7,0xac,0xe,0x9c,0x63,0x21,0x69,0x80,0xb6,0x2f,0x0,0x60,
0x41,0x16,0x1a,0xfc,0x24,0x69,0xe7,0xd1,0x7,0xbc,0xfb,0xdb,0xaf,0xbe,0x53,0xb7,
0xae,0xbd,0xa5,0xe7,0x73,0x9a,0x18,0xbb,0x4a,0x8f,0x6c,0xfa,0xac,0x4e,0xdf,0xf5,
0x9a,0x76,0x6f,0x7a,0x98,0xc5,0x9a,0x81,0x8,0xc2,0x1f,0x0,0xa0,0x6b,0x53,0x6b,
0x36,0xeb,0xf4,0x5d,0xaf,0x2d,0x28,0xf8,0x3d,0x7d,0xfe,0xb9,0xc2,0x98,0xba,0x3d,
0xef,0xfe,0xe3,0x7e,0x9d,0x9a,0x24,0x42,0x20,0xd0,0xa,0xe1,0xf,0x0,0xd0,0x95,
0x9d,0x1b,0x77,0xe8,0xe5,0xf7,0xfd,0x73,0x57,0x93,0x3b,0xac,0x99,0xf9,0x8b,0xda,
0xf5,0xd2,0xa7,0xbd,0x63,0xdd,0xee,0x6,0xd2,0xd,0x42,0x20,0x50,0x44,0xf8,0x3,
0x0,0x74,0x64,0x72,0x7c,0x42,0x7,0xb6,0x3e,0xa5,0x27,0xb7,0x3c,0xbe,0xe0,0xd7,
0xd8,0xfd,0xea,0xa3,0x85,0x71,0x86,0x7b,0x4e,0xee,0xd5,0xc6,0x83,0xd7,0xeb,0x93,
0x2f,0x3f,0xa4,0xa7,0xcf,0x3f,0xd7,0xeb,0x69,0x46,0xb9,0x21,0x70,0xe7,0xc6,0x1d,
0x3,0xf9,0x1d,0xc0,0xb0,0x20,0xfc,0x1,0x0,0xda,0xda,0xb6,0x76,0xab,0x8e,0xbd,
0xef,0xfb,0x5d,0x2d,0xe0,0x1c,0x7a,0xfa,0xfc,0x73,0xa5,0x33,0x69,0x4f,0xcf,0x9e,
0xd5,0x9e,0x93,0x7b,0xb5,0xfd,0xf0,0x3d,0x4a,0x9e,0xfa,0x37,0xfa,0xc0,0x91,0xf,
0xeb,0x5b,0xa7,0xf6,0xf7,0x75,0x39,0x1a,0xa9,0x1e,0x2,0x9f,0xdc,0xf2,0xb8,0x4e,
0xdf,0x75,0x42,0xdb,0xd6,0x6e,0xed,0xeb,0x6b,0x3,0xc3,0x82,0xf0,0x7,0x0,0x28,
0x65,0xab,0x7d,0xff,0x74,0xdb,0xdf,0xf7,0xd4,0x9a,0x3d,0x33,0x7b,0x56,0x3b,0x8f,
0xde,0xdf,0xf1,0xf3,0xf,0x9c,0x7b,0x56,0x3b,0x8f,0x3e,0xa0,0xc9,0xff,0xbd,0x4e,
0x1f,0x38,0xf2,0xe1,0xbe,0x57,0x4,0xaf,0x59,0xbd,0x5e,0xff,0x74,0xdb,0xdf,0xeb,
0xd0,0x6d,0xdf,0x63,0xb1,0x68,0x8c,0x1c,0xc2,0x1f,0x0,0xa0,0xc0,0xee,0xb4,0x71,
0xfa,0xae,0xd7,0x7a,0xaa,0xf6,0x49,0xf5,0x71,0x7e,0xdb,0x8f,0x7c,0x78,0xc1,0x7b,
0xf3,0x1e,0x38,0xf7,0xac,0xb6,0x1f,0xbe,0x47,0x1b,0xf,0x5e,0xaf,0xcf,0xbf,0xfa,
0x58,0x5f,0xab,0x81,0xb7,0xae,0xbd,0x45,0xa7,0xee,0x3a,0xc1,0x78,0x40,0x8c,0x14,
0xc2,0x1f,0x0,0xc0,0xb3,0x73,0xe3,0xe,0x1d,0x7b,0xdf,0xf7,0xf5,0xc8,0xa6,0xcf,
0x2e,0x68,0x52,0x47,0xe1,0xf5,0x8e,0xde,0xaf,0x63,0x6f,0xbe,0xd2,0xf3,0xeb,0x9c,
0x6e,0x2c,0xe4,0xbc,0xe1,0xe0,0x75,0xba,0xef,0xe8,0x3,0x3a,0xd3,0xe3,0x1a,0x85,
0xae,0x47,0x36,0x7d,0x56,0xc7,0xde,0xf7,0xfd,0x8e,0x76,0xb,0x1,0x86,0x1d,0xe1,
0xf,0x0,0xe0,0x54,0xfa,0x4e,0xe8,0xc9,0x2d,0x8f,0xf7,0x6d,0xf6,0xed,0x7d,0x47,
0x1f,0xe8,0xfb,0xc2,0xca,0xd3,0x73,0x33,0xda,0x77,0x6a,0xbf,0x36,0x1c,0xbc,0xbe,
0xaf,0x21,0xf0,0x9a,0xd5,0xeb,0xf5,0xdd,0x5b,0xfe,0x46,0x7,0xb6,0x3e,0x45,0x2b,
0x18,0x2b,0x1a,0x3b,0x7c,0x60,0x68,0x4c,0xad,0xd9,0xac,0xed,0xeb,0xfc,0xff,0x2a,
0xef,0x74,0xff,0xcd,0x56,0x5b,0x53,0xa1,0xae,0x93,0xc1,0xef,0xe1,0x73,0xd8,0xa,
0x6b,0xf8,0x4d,0xad,0xd9,0xac,0x5d,0xef,0xfa,0xb8,0xb6,0x5f,0x7d,0x57,0x5f,0xaa,
0x7c,0xae,0xfb,0x8e,0x3e,0x50,0xba,0xdd,0x5a,0xbf,0xec,0x3b,0xb5,0x5f,0xfb,0x4e,
0xed,0xd7,0xce,0x8d,0x3b,0xb4,0x7b,0xd3,0xc3,0x7d,0x9,0xad,0x77,0xaf,0xbb,0x43,
0xdb,0xd6,0x6e,0xd5,0xee,0x57,0x1f,0xe5,0xef,0x37,0x56,0x24,0xc2,0x1f,0x86,0xc2,
0xf6,0xab,0xef,0xd4,0x77,0x6f,0xf9,0x9b,0xc2,0xf1,0x47,0xd4,0xdd,0x3e,0xa0,0x9d,
0x78,0xf1,0xc2,0x91,0x8e,0x9e,0x37,0x88,0x40,0xb9,0x73,0xe3,0x8e,0x5,0xcd,0x40,
0xdc,0xb0,0x7a,0x7d,0xcb,0x3d,0x5a,0x27,0xc7,0x27,0x16,0xb4,0x18,0x6f,0xa7,0xf8,
0x7,0x72,0xb8,0xd8,0xff,0x90,0xda,0xb9,0x71,0xc7,0x40,0xd6,0xd7,0x9b,0x99,0xbf,
0xa8,0x9d,0x47,0xef,0x5f,0xd4,0xad,0xd4,0x6c,0x8,0xdc,0xbd,0xe9,0x61,0xed,0xba,
0xf6,0xc1,0x9e,0x83,0xec,0xc4,0xd8,0x55,0xfa,0xd3,0x77,0x7f,0xa9,0xfe,0x39,0x1d,
0xbd,0x9f,0xff,0x78,0xc4,0x8a,0x42,0xf8,0xc3,0x50,0x68,0xb7,0x19,0x7b,0x3f,0x75,
0xba,0xc5,0xd4,0xad,0xea,0x7d,0x2b,0xaa,0xd0,0x47,0x87,0x70,0xfd,0xb1,0xc9,0x31,
0x6,0xc9,0x2f,0x77,0x93,0xe3,0x13,0xda,0xb6,0x76,0xab,0xb6,0xad,0xdd,0xaa,0xed,
0xeb,0xee,0x1c,0xd8,0x82,0xca,0x52,0x3d,0xf8,0x6d,0x7b,0xe1,0xf6,0xbe,0x8c,0xf1,
0x5b,0x88,0xdd,0xaf,0x3e,0xaa,0x7d,0xa7,0xbe,0xad,0x3d,0x37,0x7d,0xb9,0xe7,0x89,
0x2a,0x52,0xfd,0xff,0x1f,0x1c,0x7b,0xff,0xf,0xb4,0xeb,0xa5,0x4f,0xf,0xbc,0x8a,
0x9,0x2c,0x16,0xc2,0x1f,0x0,0xac,0x20,0x53,0x6b,0x36,0x6b,0x72,0xac,0x1e,0xf6,
0x36,0xac,0x5e,0xaf,0xa9,0x35,0x9b,0x7,0x5a,0xf5,0x75,0xbd,0x78,0xe1,0x88,0xb6,
0x1f,0xb9,0x67,0xc1,0xb3,0x7a,0xfb,0xe5,0xf4,0xec,0x59,0x6d,0x3f,0x7c,0x8f,0xb6,
0x5f,0x7d,0xa7,0xf6,0x6d,0x79,0xa2,0x2f,0x55,0xc0,0x27,0xb7,0x3c,0xae,0x6d,0x6b,
0xb7,0x6a,0xd7,0xcb,0x9f,0x59,0xf2,0xf7,0x7,0xf4,0x8a,0xf0,0x7,0x0,0x43,0x6c,
0x72,0x7c,0x42,0xfb,0xb6,0x3c,0xa1,0x6d,0x6b,0xb7,0xf6,0x7d,0xcc,0x5e,0x37,0x3e,
0xff,0xea,0x63,0xda,0xfd,0xea,0xa3,0x4b,0xf6,0xfb,0x63,0xe,0x9c,0x7b,0x56,0x1b,
0x2e,0x5c,0xa7,0x7d,0x5b,0x9e,0xe8,0x4b,0x15,0xf0,0xa3,0x1b,0x77,0x68,0x6a,0xcd,
0x66,0xed,0x3c,0xfa,0xc0,0x92,0x55,0x36,0x81,0x7e,0x60,0xb6,0x2f,0x0,0xc,0xb1,
0x9d,0x1b,0x7f,0x5b,0x77,0xaf,0xbb,0x63,0xc9,0x82,0xdf,0x99,0xd9,0xb3,0xfa,0xb7,
0x2f,0xfc,0x87,0x65,0x17,0xfc,0xac,0xe9,0xb9,0x19,0x6d,0x3f,0x7c,0x8f,0xee,0x3b,
0xfa,0x40,0x5f,0xd6,0x7,0xbc,0x71,0xf2,0x6,0x1d,0xba,0xed,0x7b,0x6c,0x11,0x87,
0xa1,0x46,0xf8,0x3,0x80,0x21,0x76,0xe0,0xdc,0xc1,0x25,0xfb,0xdd,0x9f,0x7f,0xf5,
0x31,0x4d,0xfd,0xc3,0x7b,0x3a,0x9e,0x75,0xbf,0x94,0xf6,0x9d,0xda,0xaf,0xa9,0xe7,
0x6f,0xd6,0x8f,0xa7,0x8f,0xf7,0xfc,0x5a,0xb6,0xd,0xbc,0x7b,0xd3,0xc3,0x7d,0x38,
0x33,0x60,0xf1,0x11,0xfe,0x0,0x60,0x88,0x9d,0x9e,0x3d,0xab,0x4f,0xbe,0xfc,0xd0,
0xa2,0xfe,0xce,0x17,0x2f,0x1c,0xd1,0xc6,0x83,0xd7,0x6b,0xf7,0xab,0x8f,0xe,0xd5,
0xf8,0xb7,0xd3,0xb3,0x67,0x35,0xf5,0xfc,0x7b,0xf4,0xad,0x3e,0x4d,0xdc,0x60,0x2d,
0x40,0xc,0x2b,0xc2,0x1f,0x0,0xc,0xb9,0x3d,0x27,0xf7,0xf6,0x7d,0xef,0xdb,0x18,
0xdb,0xe2,0xdd,0xf6,0xc2,0xed,0x43,0xbd,0xf4,0xc9,0xce,0xa3,0xf,0xf4,0xdc,0x6,
0xfe,0xf1,0xf4,0x71,0xed,0x7a,0xf9,0x33,0x7d,0x3c,0x2b,0x60,0xf1,0x10,0xfe,0x0,
0x60,0x5,0xd8,0x79,0xf4,0xfe,0xbe,0xb4,0x34,0x63,0xce,0xcc,0x9e,0xd5,0x7d,0x47,
0x1f,0xd0,0x86,0x83,0xd7,0xf,0x45,0x8b,0xb7,0x13,0xfb,0x4e,0xed,0xd7,0xb6,0x17,
0x6e,0x5f,0xd0,0xee,0x20,0x2f,0x5e,0x38,0xa2,0x6d,0x2f,0xdc,0x3e,0x54,0x55,0x4f,
0xc0,0x45,0xf8,0x3,0x80,0x15,0x60,0x7a,0x6e,0x46,0x3b,0xfb,0x34,0xa9,0xc1,0x7a,
0xf1,0xc2,0x91,0x3c,0xf4,0xad,0xc4,0x35,0xee,0x8e,0xbd,0xf9,0x8a,0xa6,0xfe,0xe1,
0x3d,0x5d,0x85,0xe6,0x6f,0x35,0x42,0x23,0xc1,0xf,0xc3,0x8c,0xa5,0x5e,0x30,0x14,
0xe,0x5d,0x38,0xdc,0xd3,0x6e,0x1e,0x33,0xf3,0x17,0x3b,0x5a,0x9a,0xe1,0xd8,0xf4,
0x2b,0x6d,0xff,0x9f,0xfa,0xf4,0xfc,0xcc,0xc0,0x96,0x79,0xb0,0x6b,0xb4,0x75,0xa2,
0x93,0x9d,0x40,0x6,0xbd,0xb3,0x7,0x96,0x97,0x63,0x6f,0xbe,0xa2,0x5d,0x2f,0x7d,
0x5a,0x4f,0x6e,0x79,0x7c,0xc1,0xaf,0x31,0x33,0x7f,0x51,0x7,0xce,0x1d,0xd4,0x9e,
0xd7,0xbf,0x3e,0x12,0xcb,0x99,0x4c,0xcf,0xcd,0x68,0xea,0xf9,0xf7,0x68,0xdf,0x96,
0xc7,0xdb,0x2e,0xb2,0xbe,0x1c,0x97,0xb3,0x1,0x16,0x82,0xf0,0x87,0xa1,0x70,0xe8,
0xc2,0x61,0xbd,0xfb,0x1f,0x7e,0x2d,0x1a,0x8c,0x56,0x4a,0x1b,0x4a,0x5a,0x1e,0xef,
0xa5,0x9b,0x0,0x3a,0xc8,0x20,0x8c,0x85,0xd9,0x77,0x6a,0xbf,0xb6,0x5f,0x7d,0x57,
0xd7,0xeb,0xda,0x3d,0x7d,0xfe,0x39,0x1d,0x38,0x77,0x50,0x7,0xce,0x3f,0x3b,0x92,
0x55,0xad,0x9d,0x47,0x1f,0xd0,0xb1,0xe9,0xe3,0xfa,0xd3,0x77,0x7f,0x29,0xfa,0xf8,
0x62,0xec,0x53,0xc,0x2c,0x16,0xc2,0x1f,0x86,0x6,0x21,0x63,0x71,0xf0,0x39,0xf,
0xbf,0x5d,0x2f,0x7d,0xba,0xed,0xa2,0xcf,0xb6,0xc2,0x77,0xe8,0xc2,0xe1,0x91,0xd,
0x7c,0xa1,0x3d,0x27,0xf7,0xea,0xf4,0xec,0x19,0x6f,0x57,0x90,0x99,0xf9,0x8b,0x6c,
0xed,0x86,0x15,0x87,0xf0,0x7,0x0,0x2b,0xcc,0xe9,0xd9,0xb3,0xda,0x73,0x72,0xaf,
0x1e,0xd9,0xd4,0x1c,0x2a,0x31,0x33,0x7f,0x51,0x87,0x2e,0x1c,0xce,0x2f,0x84,0xfc,
0xb8,0x3,0xe7,0x9e,0xd5,0xd4,0x9b,0x37,0x6b,0xdf,0x96,0x27,0x34,0xb5,0x66,0xf3,
0x92,0xee,0x53,0xc,0xc,0xa,0xe1,0xf,0x0,0x56,0xa0,0x3d,0xaf,0xef,0xcd,0x87,
0x11,0x9c,0x9e,0x3d,0x33,0xd4,0x4b,0xb3,0x2c,0xb6,0xd3,0xb3,0x67,0xb5,0xed,0x85,
0xdb,0x97,0xfa,0x34,0x80,0x81,0x21,0xfc,0x1,0xc0,0xa,0x34,0x3d,0x37,0xb3,0x2c,
0xc6,0x90,0x2,0x58,0x7e,0x58,0xea,0x5,0x0,0x0,0x60,0x84,0x10,0xfe,0x0,0x0,
0x0,0x46,0x8,0xe1,0xf,0x0,0x0,0x60,0x84,0x10,0xfe,0x0,0x0,0x0,0x46,0x8,
0xe1,0xf,0x0,0x0,0x60,0x84,0x74,0x15,0xfe,0x8c,0x31,0xad,0x1f,0x57,0xeb,0xc7,
0x1,0x0,0x0,0xb0,0xb4,0xa8,0xfc,0x1,0x0,0x0,0x8c,0x90,0xae,0xc2,0x5f,0x92,
0x24,0xad,0x1f,0x57,0xeb,0xc7,0x1,0x0,0x0,0xb0,0xb4,0xfa,0xda,0xf6,0x5,0x0,
0x0,0xc0,0xf2,0xd6,0xd7,0xb6,0x2f,0x63,0xfe,0x0,0x0,0x0,0x6,0xa8,0xf,0x51,
0x8b,0x31,0x7f,0x0,0x0,0x0,0x23,0x84,0xf0,0x7,0x0,0x0,0x30,0x42,0xf2,0xf0,
0x17,0x6b,0xd9,0xd2,0xc6,0x5,0x0,0x0,0x58,0x42,0x3,0x88,0x62,0x5e,0xe5,0xcf,
0x4e,0xe8,0x70,0x27,0x76,0xb4,0x9a,0xe4,0x41,0x38,0x4,0x0,0x0,0x18,0x2e,0x85,
0xb6,0x2f,0x81,0xe,0x0,0x0,0x60,0x19,0xea,0x53,0x44,0xab,0x2c,0xf4,0xb5,0x8,
0x89,0x0,0x0,0x0,0x3d,0x5a,0x82,0x38,0x55,0xe9,0xc7,0xda,0x7d,0xc4,0x40,0x0,
0x0,0x80,0x5,0x32,0xce,0xc5,0x3d,0xd6,0xee,0xf6,0x2,0xf9,0x63,0xfe,0x1a,0xaf,
0x58,0xb8,0xee,0xe3,0xe2,0xce,0xed,0x76,0x9,0x1,0x0,0x0,0x80,0xfa,0x1e,0xfa,
0xac,0x4a,0x3d,0x68,0xf6,0x6f,0x52,0x47,0x18,0x1c,0x1,0x0,0x0,0xd0,0x5,0xb7,
0xa,0x98,0x5f,0xf7,0x2f,0x57,0x35,0x97,0x7a,0x9,0x5e,0xb4,0xd5,0xfd,0x58,0x45,
0xb0,0x93,0xb0,0xc7,0xde,0xbf,0x0,0x0,0x0,0x81,0x58,0xd8,0x93,0x9a,0x81,0x2f,
0xf6,0x58,0xf,0x2a,0x6e,0x68,0x33,0x32,0x32,0xc6,0xa8,0x70,0xcc,0xa9,0xe6,0x75,
0x52,0xd9,0xa3,0xea,0x7,0x0,0x0,0xb0,0x0,0xe1,0xd8,0xbf,0x1,0x28,0x5d,0xe4,
0xb9,0xdd,0x7d,0xf7,0x78,0x3f,0xc7,0x4,0x2,0x0,0x0,0x8c,0xa4,0x58,0x9c,0xa,
0xc7,0xfd,0xf5,0x6b,0xc2,0x87,0x5b,0xed,0xf3,0xaa,0x7e,0xc6,0x3f,0x66,0xc7,0x7,
0x12,0xf8,0x0,0x0,0x0,0x6,0x28,0x6c,0x5,0xf7,0x75,0xc2,0x87,0x1b,0xfc,0x4c,
0x33,0xd8,0xb9,0x2d,0x5e,0xfb,0x58,0xcb,0x73,0x24,0xc,0x2,0x0,0x0,0x74,0x27,
0x36,0xa3,0xd7,0xb4,0xb8,0x84,0x3f,0xb3,0x0,0x95,0xd8,0x38,0xbe,0xb2,0xd0,0x67,
0x8c,0xc9,0x2f,0xf6,0x79,0xe1,0xf8,0xc0,0x18,0x26,0x7a,0x0,0x0,0x0,0x34,0x14,
0x66,0xf2,0x3a,0xb7,0x33,0xd3,0x7a,0x8d,0xbf,0x7e,0xb4,0x7d,0x4b,0xab,0x7e,0x4e,
0xf5,0xaf,0xaf,0xeb,0xfc,0x11,0x4,0x1,0x0,0x0,0x9a,0xca,0x16,0x79,0x76,0x2f,
0x59,0xff,0x7e,0x5d,0xe9,0x98,0xbf,0x70,0x86,0x6f,0x6c,0x2,0x48,0x59,0x8b,0xb8,
0x8c,0x1b,0xfc,0x8,0x81,0x0,0x0,0x60,0xa4,0x95,0xed,0xea,0xe1,0x5,0x3f,0x13,
0xaf,0x10,0xf6,0xa0,0x12,0x56,0xf8,0xc2,0x6b,0xc9,0x86,0x43,0x3f,0x8,0xc6,0xc2,
0x5e,0xa7,0x15,0x42,0x76,0xf9,0x0,0x0,0x0,0x23,0x29,0xda,0xf2,0x75,0x2,0x5e,
0x16,0x3e,0xa6,0x66,0xe5,0xaf,0x4f,0x9d,0xd8,0x4a,0x18,0xfc,0xea,0xbf,0xcb,0xa9,
0xfa,0x79,0x1,0xd0,0xf,0x7e,0xe1,0x6c,0xe0,0xf0,0xb6,0x8b,0x4a,0x1f,0x0,0x0,
0x40,0x43,0x6c,0x36,0xaf,0xbb,0x9b,0x47,0xa6,0x20,0xf8,0xa9,0x2f,0x55,0x3f,0xc9,
0x86,0x3f,0x27,0xd8,0x65,0x26,0xf3,0xae,0xc3,0xb0,0x17,0x9b,0xf4,0xd1,0x7c,0x1f,
0xb4,0x7e,0x1,0x0,0x0,0xa2,0xc2,0x98,0x14,0x6,0xc0,0x4c,0x7e,0xd0,0x2b,0x9b,
0xed,0xdb,0xa3,0xb6,0x6d,0xdf,0xb0,0xe5,0xeb,0x9f,0x73,0xe3,0xb1,0xc8,0x72,0x31,
0xad,0x10,0xfa,0x0,0x0,0xc0,0xc8,0x32,0xce,0x8d,0xb0,0xb2,0x17,0xb6,0x7a,0x6d,
0xbb,0xd7,0x6d,0x7,0xf7,0xa8,0x9a,0x35,0xa6,0x8f,0xe4,0x95,0x3e,0x63,0x94,0x29,
0xab,0x5f,0xbb,0xc7,0x82,0x4a,0x60,0x38,0x13,0x98,0x75,0xfe,0x0,0x0,0x0,0x4a,
0xc4,0x66,0xf2,0x7a,0xa1,0xcf,0x4,0xa1,0x2f,0xbc,0x1f,0x79,0x9d,0x5,0xaa,0x86,
0x95,0x3f,0x1b,0xfc,0x9a,0x6d,0x60,0xbf,0xaa,0xe7,0x85,0xc0,0x16,0xad,0xdf,0x4e,
0x5a,0xc0,0x52,0xbd,0xa,0xd8,0xe9,0x73,0x1,0x0,0x0,0x56,0x84,0x70,0xbc,0x5f,
0xd6,0xe6,0xd2,0xc7,0xe5,0x5e,0xe2,0x95,0x3f,0x93,0x39,0xe7,0x53,0xbf,0x9f,0x29,
0x2b,0x8c,0xfd,0x93,0x9a,0x93,0x42,0x62,0x13,0x41,0x5c,0x89,0x92,0x7c,0x96,0x2f,
0x6d,0x5f,0x0,0x0,0x30,0x32,0x5a,0x2d,0xe7,0xe2,0x5,0x3c,0x13,0x84,0x3e,0xe3,
0x3f,0xd6,0x27,0xc5,0xca,0x5f,0x3e,0xe1,0xc3,0x9f,0x0,0x62,0x1f,0xb3,0x21,0x30,
0xb6,0xec,0x4b,0x18,0xfa,0xa2,0x21,0x30,0x49,0x24,0x53,0xbf,0xa6,0x55,0xc,0x0,
0x0,0x46,0x8a,0xdb,0xee,0x8d,0x55,0xf6,0x5a,0x5d,0xfa,0x63,0xc6,0xaf,0xfc,0xe5,
0x81,0xaf,0x38,0xf3,0x37,0xf,0x7d,0x36,0x4,0x9a,0xac,0xfe,0xbc,0x60,0xab,0xb7,
0x85,0x8c,0x5,0xa4,0xf5,0xb,0x0,0x0,0x56,0x24,0x37,0xde,0xb8,0x1,0xce,0x8e,
0xe9,0xb3,0xd5,0xbd,0xb4,0x71,0x71,0xab,0x7d,0xa9,0xa4,0xd4,0xd4,0xaf,0xfb,0x39,
0xdb,0x37,0x33,0xd9,0xcf,0xd3,0x2c,0x6d,0x8c,0xf7,0x6b,0x11,0xfc,0x22,0x95,0xbf,
0xfa,0x7b,0xf2,0xc3,0x5e,0x8c,0xdb,0xee,0xb5,0x2d,0x5f,0x5a,0xbf,0x0,0x0,0x60,
0x45,0x8b,0xb5,0x7b,0xdb,0x55,0xfa,0x6c,0x0,0xb4,0x61,0x30,0x55,0xbf,0x2b,0x7f,
0x6f,0x54,0x8c,0x31,0x3f,0xcb,0x64,0x94,0xda,0x6a,0x9e,0x8a,0xd7,0xf9,0x44,0x10,
0xaf,0x35,0xac,0xe2,0xac,0x60,0x99,0xbc,0x25,0x1d,0x2e,0xd,0xe3,0x5,0x40,0x7b,
0x3b,0x61,0xcd,0x3f,0x0,0x0,0xb0,0x2,0xb5,0x5c,0xd3,0x2f,0x32,0xb6,0xcf,0xd,
0x79,0x35,0x35,0x2b,0x7e,0xb6,0xfa,0xd7,0x3f,0x6f,0x54,0x52,0x93,0xbd,0x61,0xc3,
0x9d,0x6d,0xe7,0xa6,0x26,0x8d,0x5e,0x87,0xed,0xdf,0x70,0x57,0x90,0x76,0xfb,0xfc,
0x32,0xe1,0x3,0x0,0x0,0x8c,0x9c,0xb2,0x85,0x9c,0x6d,0xe0,0xb3,0xd5,0xbe,0x9a,
0xea,0x97,0x1,0xb6,0x7c,0x25,0xfd,0xac,0x92,0x29,0xfb,0x49,0x21,0xe4,0x45,0xaa,
0x7f,0xde,0xb5,0x31,0x7e,0x20,0x74,0xc6,0xb,0x4a,0x9d,0x8f,0xf3,0xeb,0xe4,0x18,
0x0,0x0,0xc0,0x50,0x69,0xb5,0xa6,0x9f,0x1d,0xeb,0x17,0xb6,0x77,0x6d,0xb5,0xcf,
0x56,0xfe,0xec,0xc5,0x6,0xc4,0xfe,0x39,0x5b,0xcd,0x4c,0x76,0x36,0xb6,0xc6,0x5f,
0xb8,0xcd,0x9b,0x3b,0xb,0xb8,0x6c,0xc6,0x6f,0x38,0x3b,0xb8,0x6c,0x3c,0xa0,0x3b,
0xee,0x8f,0x89,0x1e,0x0,0x0,0x60,0xc5,0x88,0x5,0x3f,0xb7,0xdd,0xeb,0x56,0xff,
0xd2,0xc8,0xa5,0x66,0x9c,0x30,0xa8,0x7e,0xb7,0x7c,0x25,0xe9,0x27,0xd5,0xcc,0x64,
0x27,0xc3,0xd0,0x27,0x39,0xe3,0xf9,0xf2,0xeb,0x66,0x40,0xc,0xdb,0xc3,0xcd,0xea,
0x5f,0xfb,0x45,0x9e,0x93,0x44,0xde,0x7,0x13,0x2e,0xf9,0x42,0x20,0x4,0x0,0x0,
0x43,0x29,0x36,0xce,0xcf,0x5e,0x87,0x93,0x3a,0x6c,0x4b,0xb7,0x66,0xfc,0xc0,0x57,
0x93,0x34,0x6f,0xea,0x8f,0xd7,0xd4,0xef,0x96,0xaf,0x24,0x9d,0xac,0xa6,0x26,0x3d,
0xd6,0x2a,0xf4,0x95,0x2d,0xfd,0xe2,0xb6,0x88,0x5b,0x57,0xff,0x0,0x0,0x0,0x56,
0xb8,0x30,0xf0,0x64,0xce,0x75,0xb8,0x60,0xb3,0xd,0x80,0x6e,0x7b,0x77,0xde,0x34,
0x2e,0xf6,0xbe,0x9a,0x6d,0xe0,0xfe,0x39,0x6f,0x4e,0xd4,0xde,0xa8,0xa6,0x26,0x7d,
0xcd,0xc8,0xa4,0x46,0x66,0x55,0x27,0xa1,0x2f,0x5f,0xfe,0xc5,0x19,0x3,0x58,0xf,
0x82,0xcd,0xe3,0xad,0xaa,0x7f,0x79,0xcb,0xb7,0xb1,0xd8,0x33,0xf1,0x10,0x0,0x0,
0xc,0xb5,0x56,0xc1,0xcf,0xdd,0xb7,0x37,0xf,0x7d,0x76,0x72,0x87,0x69,0x6,0x3d,
0x2f,0x4,0x36,0x8e,0xa5,0x7d,0x3f,0xd3,0x1f,0x49,0x52,0x25,0x35,0xe9,0xa5,0xcc,
0x64,0x3f,0x4a,0x4d,0xea,0xcc,0xee,0xb5,0x97,0xb4,0xd0,0xda,0xcd,0xc3,0x5e,0x18,
0xfc,0x54,0x5c,0x8,0xba,0x2c,0x4,0xb2,0xc4,0xb,0x0,0x0,0x58,0x11,0xda,0x5,
0xbf,0xc2,0xa2,0xcd,0xa,0xaa,0x7e,0x4e,0x0,0xcc,0x2f,0x8d,0x56,0x70,0x16,0x79,
0xfd,0xde,0xfc,0x50,0xaa,0x87,0x3f,0xa5,0x26,0x3d,0x92,0x46,0x42,0x9f,0x3b,0xb,
0xb8,0xec,0x58,0x16,0x8c,0x3,0x8c,0xee,0x3,0x1c,0x99,0xf4,0xe1,0x72,0xc3,0x20,
0x0,0x0,0xc0,0xb2,0x17,0x1b,0x8b,0x17,0xab,0xf8,0x85,0xc1,0xcf,0xad,0xfa,0xcd,
0x4b,0x9a,0x53,0xb3,0xe5,0x3b,0xe7,0x1c,0xeb,0x7f,0xd5,0x4f,0x92,0x8e,0x48,0x52,
0xa5,0xb1,0xc0,0xf3,0xb,0xb1,0x90,0x97,0x9a,0x54,0x35,0x53,0x8b,0x1e,0xb7,0x15,
0x42,0xbf,0x2,0xe8,0x2c,0xfb,0xe2,0xec,0x8,0x12,0x43,0xc5,0xf,0x0,0x0,0xc,
0xa5,0xd8,0xc4,0x8e,0x58,0xc5,0xcf,0x5d,0xc7,0xcf,0x4e,0xf2,0xf0,0xaa,0x7c,0xa6,
0x1e,0xf4,0xe6,0x24,0x5d,0x6e,0x5c,0xcf,0xd,0xac,0xea,0x77,0x49,0x8d,0xca,0x5f,
0x35,0x35,0xa9,0x8c,0x31,0x2f,0x18,0x99,0x4b,0x99,0xc9,0xae,0x68,0xb5,0xcc,0x8b,
0x3b,0x16,0xd0,0x86,0x3e,0x6f,0xc,0xa0,0x3b,0x16,0x50,0x99,0x33,0xb3,0xd9,0x94,
0xb6,0x80,0xed,0xe3,0xcd,0xcf,0x8f,0x31,0x80,0x0,0x0,0x60,0x19,0x8a,0x45,0x14,
0xb7,0x2,0x98,0x2f,0xe0,0x1c,0x9b,0xdc,0x61,0x8a,0xe3,0xfa,0x6c,0xd5,0xef,0x72,
0xa3,0xea,0x77,0xd9,0xc,0xb2,0xea,0xf7,0x82,0x39,0x51,0xbb,0x24,0x49,0xd5,0x34,
0x4b,0x65,0x64,0x2e,0x19,0x99,0x17,0x32,0x93,0xdd,0xd1,0x6e,0x8d,0xbf,0x96,0x13,
0x40,0x1a,0xc1,0xaf,0x5e,0x1d,0x74,0x5a,0xc3,0xce,0x58,0x40,0xa9,0x7d,0x18,0xcc,
0x3f,0xcc,0x32,0x14,0xd,0x1,0x0,0xc0,0x62,0x8a,0xe5,0x92,0xcc,0x79,0x2c,0x5f,
0xce,0x25,0x98,0xdc,0xe1,0x6,0x3f,0xb7,0xda,0x77,0xb9,0x11,0xf6,0xde,0x52,0xbd,
0xea,0xf7,0x96,0x9a,0x95,0xbf,0xfe,0x57,0xfd,0x24,0xe9,0x19,0x7b,0xa3,0x5e,0xf9,
0xab,0xff,0xf9,0x5f,0x99,0xc9,0xee,0x68,0x17,0xf8,0x62,0xa1,0x2f,0x9c,0x1,0x9c,
0x6,0xed,0x5f,0x6f,0xff,0xdf,0xc6,0x9b,0x71,0x3,0xa0,0x65,0x64,0x3a,0x7b,0xb3,
0xee,0x73,0x8,0x82,0x0,0x0,0x60,0x50,0x3a,0xa9,0xf6,0xd9,0x6b,0x37,0xf8,0xd9,
0x6d,0xda,0xdc,0xe0,0x37,0x67,0x9a,0x1,0xcf,0x6,0xbe,0xb7,0x4c,0xfd,0x62,0xab,
0x7e,0x83,0x9,0x7e,0xa9,0xa4,0xef,0xd8,0x3b,0x79,0xf8,0xcb,0x4c,0xf6,0x9c,0xdf,
0xfa,0x6d,0xb7,0xd3,0x87,0x7f,0xdd,0x68,0x1f,0x2b,0x53,0xb0,0xf5,0x5b,0x30,0xb,
0xd8,0xfe,0xa9,0x7f,0x76,0x4e,0x35,0xb0,0xd3,0xe0,0x17,0x22,0x8,0x2,0x0,0x80,
0x7e,0x6b,0x17,0xfa,0xdc,0x6a,0x5f,0xb8,0x94,0x4b,0xac,0xd5,0x6b,0x83,0xdf,0xe5,
0x46,0xf0,0xbb,0x6c,0x9a,0xc1,0xef,0x2d,0xd5,0x2f,0xf3,0xb,0xcc,0x42,0xed,0xfd,
0xa3,0x39,0x51,0x7b,0xc3,0xde,0x71,0xc3,0xdf,0x1b,0x46,0xe6,0x3b,0x99,0x31,0xf7,
0xe6,0x61,0x2e,0xc,0x79,0xde,0x8e,0x1f,0xc5,0x1d,0x40,0xdc,0x20,0x58,0x68,0x3,
0x67,0x69,0x5e,0x11,0xc,0xc7,0x10,0x7a,0x1f,0xa4,0x7b,0x2d,0x15,0x3,0x5d,0xab,
0x80,0x47,0x10,0x4,0x0,0x0,0xb,0x55,0x16,0xbc,0x62,0xa1,0x2f,0xf,0x7f,0x4e,
0xf0,0x8b,0xce,0xea,0x95,0x5f,0xf1,0x7b,0x4b,0xd2,0x25,0x23,0xfd,0xab,0xbd,0xad,
0x7a,0x0,0x1c,0x5c,0xbb,0x57,0x92,0xfe,0xc2,0xbd,0xe3,0x84,0x3f,0x23,0x23,0xf3,
0xcd,0xcc,0x64,0xf7,0xc6,0x26,0x73,0x94,0x57,0xfd,0xe4,0x2f,0xf1,0x12,0x2e,0xfd,
0xa2,0xac,0x19,0xfc,0x9c,0x2a,0xa0,0xd,0x93,0xde,0x7,0x2a,0xb5,0x7f,0xd3,0xf6,
0xf1,0x24,0xb8,0x2e,0x7b,0x9e,0x45,0x18,0x4,0x0,0x0,0xa1,0x56,0xb9,0xa3,0x9b,
0xd0,0xe7,0x6e,0xdb,0x66,0xf7,0xe5,0xf5,0x66,0xf4,0x36,0x2a,0x7e,0x97,0x9c,0xd0,
0xf7,0xaf,0xa6,0x71,0xbf,0x31,0x33,0x78,0x30,0xc1,0xef,0xa7,0x92,0xbe,0xeb,0x1e,
0xa8,0xa6,0x7e,0xa0,0x3b,0x92,0x9a,0xf4,0x87,0x46,0xe6,0x57,0xdd,0xd0,0xd7,0x6c,
0xe9,0x16,0xab,0x7c,0xe5,0xed,0x5f,0x77,0x6,0xb0,0xc9,0x27,0x7e,0xd8,0xaa,0x60,
0x73,0x2a,0x74,0xe4,0x3,0x76,0x25,0x8a,0x7,0x37,0x7b,0xbc,0x55,0xc8,0x73,0x6f,
0x33,0x89,0x18,0x0,0x0,0x94,0x89,0x75,0x1f,0xc3,0xc0,0xe7,0x16,0xad,0xca,0xf6,
0xea,0xb5,0xb,0x38,0xbb,0x3b,0x75,0xd8,0xf1,0x7c,0x6f,0x35,0xc2,0xde,0x25,0x49,
0xb3,0x4e,0xf5,0xaf,0xa6,0x41,0xe6,0x94,0xaf,0x99,0x13,0x35,0x6f,0xfe,0x70,0x35,
0x6c,0xef,0xa6,0x26,0xfd,0xa2,0x31,0xe6,0xe9,0xb0,0x7a,0xd7,0xaa,0xca,0x67,0x82,
0xa5,0x5f,0x1a,0x33,0x88,0xb,0xb,0x40,0xdb,0x60,0x98,0x7f,0x38,0xb1,0xca,0x5f,
0x99,0x58,0xfb,0x37,0x9,0x1e,0x68,0x57,0xd,0x2c,0x7b,0xad,0x85,0x3e,0x7,0x0,
0x0,0x2c,0x1f,0x9d,0x6,0xa8,0xb6,0xed,0x5d,0xe3,0x87,0x3e,0xc9,0x2f,0x5a,0xe5,
0xe3,0xfb,0x4c,0x30,0xc6,0x4f,0x6d,0x26,0x78,0x34,0x82,0x9f,0x6d,0xfb,0xfe,0xab,
0x6,0x39,0xce,0x4f,0xaa,0xff,0xb6,0x6f,0x86,0x7,0x63,0xe1,0xef,0x99,0xcc,0x64,
0xc7,0x8d,0xcc,0xd,0xe1,0x24,0x8e,0x30,0xe4,0x15,0x82,0x60,0x7e,0x5b,0xcd,0x25,
0x5e,0x4c,0xf3,0x67,0x9b,0xb3,0x5f,0x82,0x52,0xa9,0xd4,0x3e,0x4,0x96,0x56,0x0,
0x4d,0x79,0x65,0x30,0x76,0x1b,0x0,0x0,0xa0,0x55,0xa5,0xcf,0xbd,0xed,0x55,0xfa,
0x8c,0x5f,0xf1,0xb,0xab,0x7e,0xb1,0xfd,0x79,0xdd,0xaa,0x9f,0x1b,0xfe,0xec,0x4,
0x8f,0xc1,0x8d,0xf3,0x93,0xa4,0x6f,0x9a,0x13,0xb5,0x9f,0x85,0x7,0x63,0xe1,0x4f,
0x99,0xc9,0xbe,0x60,0x64,0xfe,0xd6,0x9d,0xa0,0xe1,0x55,0xf6,0xc2,0x20,0x68,0x8c,
0xdc,0xf6,0xb1,0x5b,0xed,0xcb,0x43,0x9f,0xfd,0x70,0xdc,0x99,0x30,0xf9,0xf6,0x27,
0x6a,0x56,0x1,0x3b,0x95,0x57,0xf9,0x4a,0x92,0x1d,0xe1,0xf,0x0,0x0,0x84,0x62,
0xa1,0x4f,0xf2,0x73,0x48,0x16,0xb9,0xf6,0x5a,0xbd,0x41,0xc5,0xaf,0xd5,0x22,0xce,
0x6e,0xd5,0xcf,0x5d,0xda,0xc5,0xb6,0x7a,0x7,0x17,0xfc,0x7e,0x2e,0xe9,0x4b,0xb1,
0x7,0xca,0xc2,0xdf,0x77,0x33,0x63,0x8e,0x65,0xca,0xa6,0xc2,0xf0,0x57,0xb8,0xed,
0xb4,0x7e,0xbd,0xd7,0x72,0xdb,0xbb,0x59,0x10,0xfa,0x6c,0x10,0x74,0xd3,0x74,0xb7,
0x13,0x3f,0xa4,0x46,0xa8,0xeb,0xe2,0x53,0x23,0x4,0x2,0x0,0x30,0x3a,0x3a,0x9d,
0x44,0x5a,0x56,0xed,0xb3,0xc5,0xa9,0x42,0xf8,0x53,0x33,0xdf,0xd8,0xc9,0x1d,0x61,
0xcb,0xd7,0x5b,0xcc,0x59,0x8d,0xb5,0xfc,0x1a,0xf7,0xd3,0xe0,0xf7,0xe,0xc6,0x57,
0xcd,0x89,0xda,0x4f,0x63,0xf,0x54,0xc3,0xf1,0x7b,0x8d,0x6a,0x5f,0x9a,0x99,0xec,
0xfe,0x4c,0xd9,0xf7,0x33,0x93,0xad,0x72,0x97,0x6c,0x9,0x43,0x5f,0xd8,0xfa,0x35,
0x5e,0xd0,0x2b,0x9,0x7d,0x61,0xc9,0x34,0xc,0x7f,0x6e,0xbf,0x1d,0x0,0x0,0xa0,
0x57,0x85,0x4a,0x5f,0x8b,0xeb,0xb0,0x38,0x15,0x6e,0xd9,0x16,0xe6,0x9a,0x58,0xcb,
0x37,0x1f,0xef,0xa7,0x66,0x0,0x1c,0x7c,0x9b,0xd7,0xfa,0x89,0xa4,0x2f,0x96,0x3d,
0x58,0x75,0xc7,0xe6,0xb9,0x63,0xfb,0x52,0x93,0xfe,0x30,0x53,0xf6,0xcd,0xd4,0xa4,
0xbf,0x5f,0xd8,0xb7,0xb7,0x31,0xbe,0xcf,0xfd,0xd9,0x96,0xa1,0xcf,0xae,0x70,0x1d,
0x7e,0x60,0xe1,0x6a,0xd8,0x85,0x0,0x28,0x75,0x5d,0xd,0xec,0x14,0xc1,0x12,0x0,
0x80,0xd1,0x11,0xfb,0x77,0xdf,0xcb,0x1d,0x41,0xdb,0x37,0x16,0x0,0xed,0x24,0xf,
0x23,0x7f,0x66,0xaf,0x5d,0xde,0x25,0xd6,0xf2,0xb5,0xfb,0xf7,0xa6,0x5a,0xac,0xe0,
0x27,0x49,0xbb,0xcc,0x89,0xda,0x5c,0xd9,0x83,0xc9,0x2f,0x1d,0xdc,0x54,0x5a,0xc9,
0x4b,0x4d,0xfa,0xb6,0xd4,0xa4,0xff,0x2f,0x33,0xd9,0xdb,0xc2,0x25,0x5b,0xbc,0x31,
0x7d,0x65,0xed,0xdd,0xd8,0x4c,0x98,0xf0,0xb9,0x6e,0xe5,0x2f,0xec,0xb1,0xc7,0xc6,
0x1,0x96,0xf5,0xea,0x5b,0xe9,0xb4,0xec,0xb,0x0,0x0,0x56,0xae,0xae,0x27,0x79,
0x18,0x3f,0xf8,0xb9,0x17,0x5b,0xd4,0xca,0xdb,0xbe,0xce,0x24,0xf,0xdb,0xf2,0xb5,
0x61,0x70,0xf1,0x42,0x9f,0x24,0x3d,0x63,0x4e,0xd4,0xee,0x6e,0xf5,0x84,0x6a,0xbe,
0xf,0xaf,0xa2,0x3b,0x73,0xbc,0x91,0x99,0xec,0x13,0xa9,0x49,0xf7,0x87,0xd5,0xbe,
0xcc,0x64,0x4e,0xa8,0x33,0x7e,0xb8,0xb,0x3f,0x18,0x2f,0xf8,0x5,0x61,0x30,0xff,
0x50,0x4d,0x7c,0x80,0xa5,0x14,0x1f,0x10,0xd9,0x6a,0x90,0x64,0x59,0x60,0x4,0x0,
0x0,0x2b,0x9b,0x89,0xfc,0xa3,0x5f,0x56,0xf5,0xb3,0xc2,0xbc,0xe1,0x56,0xfd,0xf2,
0x2,0x95,0x9,0x8a,0x5b,0xf2,0x2b,0x7e,0x76,0xcc,0x9f,0xd,0x80,0x35,0x27,0xf4,
0x2d,0x5e,0xe,0x79,0x43,0xd2,0xc7,0xdb,0x3d,0xa9,0x1a,0x5d,0x94,0x59,0xcd,0x2d,
0xd9,0x32,0x65,0x7f,0x9d,0x9a,0xec,0xd6,0xcc,0x64,0x1f,0x8b,0xae,0xd5,0xe7,0x7e,
0x18,0x76,0x13,0x63,0x3b,0x0,0xd2,0x6b,0xf3,0x9a,0xa0,0xf2,0xa7,0xf8,0xf8,0x3f,
0xa9,0x7c,0x16,0x70,0x59,0x52,0x57,0xf0,0x78,0xab,0xf,0x99,0x60,0x8,0x0,0xc0,
0x68,0x29,0xcb,0x7,0x6e,0x96,0xc8,0x8c,0x7f,0x2c,0x5c,0xd7,0xcf,0x1d,0xae,0xe6,
0xe6,0x99,0x5a,0x24,0x0,0xba,0x3f,0xb7,0xb8,0x7e,0xc7,0x9c,0xa8,0x9d,0x6f,0xf7,
0xa4,0x6a,0x69,0xd5,0x2f,0xb3,0x3b,0x72,0x64,0xca,0x4c,0xb6,0x2b,0x35,0xe9,0x2d,
0x99,0xc9,0xae,0x33,0xf9,0x9b,0xe,0xaa,0x7d,0xb1,0x63,0x65,0xa1,0x2f,0x36,0xfe,
0xcf,0x2d,0xaf,0x86,0x63,0x0,0xbd,0x2f,0xc7,0x39,0xfb,0x30,0x0,0xda,0xb0,0x18,
0xb3,0x90,0x76,0x31,0x0,0x0,0x58,0xfe,0x3a,0xed,0x4,0xba,0xc7,0x63,0x5,0xa5,
0xb0,0xea,0xe7,0x4e,0xf2,0x8,0x2b,0x7e,0xb6,0xe8,0x65,0x8b,0x5d,0x4b,0x1b,0xfa,
0x24,0xe9,0x4f,0xcc,0x89,0xda,0x73,0x9d,0x3c,0xd1,0x5b,0xea,0xa5,0x24,0xf8,0x29,
0x35,0xe9,0xa5,0xcc,0x64,0x1f,0x34,0xa9,0xf9,0xbf,0xca,0x74,0xa5,0x17,0xde,0xca,
0xda,0xb9,0xe1,0x56,0x27,0xb1,0xe0,0xe7,0xa6,0xe8,0xd8,0xf8,0xbf,0xbc,0x12,0xd8,
0xf8,0x14,0x63,0x6d,0xe0,0xd8,0x17,0xa8,0x92,0x63,0x65,0xf7,0xdb,0x1d,0x7,0x0,
0x0,0xc3,0xa7,0xd5,0xbf,0xff,0x61,0x67,0x31,0x1a,0xfe,0xe4,0xe4,0x93,0x48,0xce,
0xb1,0xc7,0xc2,0x42,0xd5,0xe2,0xfb,0x81,0xa4,0x3f,0xea,0xf4,0xc9,0xc5,0xa5,0x5e,
0x32,0x3b,0xa6,0xcf,0x19,0xe3,0x67,0x32,0x99,0xd4,0x9c,0x54,0xa6,0x1d,0xaa,0x99,
0xbf,0x53,0xaa,0x55,0xcd,0x41,0x8e,0x25,0xed,0x5c,0x2f,0x18,0xb6,0x38,0x16,0x1b,
0x44,0xe9,0x86,0xc1,0xd8,0x17,0x12,0x7e,0xc8,0x6e,0xc5,0xaf,0x5d,0xf8,0x6b,0xd7,
0xf7,0x7,0x0,0x0,0xc3,0xa1,0xd3,0x7f,0xbf,0x5b,0x15,0x89,0xa,0x1d,0xc6,0xa0,
0xb,0x59,0x96,0x51,0xec,0xe3,0xdd,0x9c,0xc7,0x60,0x9c,0x97,0xf4,0x9b,0xad,0x66,
0xf7,0x86,0xaa,0xad,0x82,0x5f,0x3e,0xa3,0xd7,0xbe,0xd1,0x9a,0x79,0x46,0xa9,0x3e,
0xa1,0x54,0x5f,0x2f,0xac,0x6d,0x13,0x5b,0xef,0x26,0xac,0xf6,0xb9,0xa5,0xd1,0x58,
0x7a,0x8e,0xad,0xfd,0xe7,0x4d,0xb7,0x36,0x2d,0xc2,0x9f,0xe2,0x5f,0xa8,0x7b,0x1d,
0xde,0xe,0x95,0x56,0x4,0x49,0x87,0x0,0x0,0xc,0xb5,0x58,0x26,0x68,0x35,0xd1,
0xc3,0xcd,0x1e,0x61,0x31,0x2a,0x7c,0x9d,0xa5,0xf3,0x33,0x49,0xff,0xae,0x93,0x71,
0x7e,0xae,0xe6,0x98,0xbf,0xac,0xde,0xfe,0x35,0x46,0x79,0xc5,0xcf,0x9f,0xdc,0x91,
0x87,0xb3,0x6f,0x28,0xd5,0x84,0x52,0xf3,0x98,0x17,0xf2,0x62,0xd5,0xbd,0x70,0x1a,
0x74,0xb4,0x2,0xe8,0xb4,0x81,0xdb,0xa5,0xeb,0x96,0x55,0xc0,0xa0,0x35,0x2c,0xf9,
0x5f,0x92,0xd4,0xd9,0x17,0x46,0x65,0x10,0x0,0x80,0x95,0x27,0x96,0x9,0x62,0x1d,
0xc4,0x58,0x20,0x74,0x7f,0x66,0xf9,0xb8,0x24,0xe9,0x4e,0x73,0xa2,0x76,0xb2,0xdb,
0x1f,0xac,0x66,0xce,0x52,0x2f,0xde,0x3a,0x7e,0x72,0xd6,0xf0,0x73,0xd7,0xef,0xab,
0xb7,0x7a,0xbf,0xa4,0x54,0xeb,0x54,0xd3,0x7f,0xf4,0x42,0x5c,0x18,0xf2,0xf2,0x4a,
0x9f,0xfc,0xc1,0x91,0x61,0x38,0xc,0xc7,0xff,0x85,0x7b,0xff,0x7a,0x2d,0xe0,0x48,
0x2,0x2f,0xab,0x4,0x86,0xb7,0xe5,0x1e,0x5b,0x5e,0xdf,0x20,0x0,0x0,0xe8,0x51,
0x37,0x5,0x9c,0xb2,0x20,0xd8,0xc9,0xcf,0x2e,0xbd,0x39,0x49,0x1f,0x34,0x27,0x6a,
0x3f,0x5c,0xc8,0xf,0x57,0xdd,0xe0,0x67,0x43,0x5f,0xbe,0x78,0x73,0x38,0xbb,0xc5,
0x5f,0xb3,0xef,0x13,0xca,0xf4,0x86,0x52,0x7d,0xae,0x34,0xf8,0xb9,0x21,0xaf,0x5d,
0x45,0x30,0x1c,0x48,0xd9,0x6a,0xfc,0x5f,0x78,0x5b,0x2a,0x4e,0xd1,0xb6,0x62,0xc1,
0xaf,0xec,0x31,0x0,0x0,0x30,0x5a,0x86,0x2f,0xb,0xfc,0x5c,0xf5,0x8a,0xdf,0x8b,
0xb,0x7d,0x81,0xaa,0x17,0xfc,0x1a,0xa1,0xcf,0xb,0x7f,0xee,0x2c,0xde,0x30,0x8c,
0xa5,0x7a,0x44,0xa9,0xf9,0xa9,0x52,0xfd,0x99,0x52,0xad,0x2a,0x2c,0x78,0x18,0x1b,
0x3,0x58,0x8,0x8a,0xce,0x73,0xc2,0x9d,0x41,0xca,0xc6,0x0,0x86,0x63,0xff,0xa4,
0xf2,0xd4,0xee,0x1a,0xbe,0x2f,0x18,0x0,0x0,0xc0,0xfa,0xa9,0xa4,0xdb,0x25,0x1d,
0xeb,0xe5,0x45,0xaa,0x36,0xf8,0xd9,0xd0,0x97,0xa9,0x5e,0x9,0x8c,0xb6,0x5d,0x53,
0x13,0x54,0xff,0x8c,0x1d,0x3,0xf8,0x33,0x65,0xda,0xaf,0xd4,0x8c,0x77,0x1c,0xfc,
0x62,0x33,0x85,0xc3,0x25,0x63,0xca,0xc6,0xff,0x95,0xb5,0x72,0x1,0x0,0x0,0x56,
0xa6,0x9f,0x48,0xfa,0xf7,0x92,0x4e,0xf5,0xfa,0x42,0x95,0xfa,0x24,0xf,0x93,0x87,
0x3e,0xbf,0xdd,0x6b,0x8a,0x1,0x30,0xba,0xd8,0xa1,0xbe,0xa3,0xd4,0xbc,0x47,0xa9,
0x4e,0x79,0x41,0xd1,0x86,0x3c,0xbb,0xe2,0x75,0xb8,0x2,0x76,0xbe,0x9,0xb2,0xea,
0x7b,0xdf,0xd9,0x6d,0x51,0xdc,0xe3,0x73,0xa6,0xf1,0x98,0x8a,0x63,0x1,0xcb,0x82,
0x20,0x0,0x0,0xc0,0xca,0xf1,0x8c,0xa4,0x5f,0x51,0x1f,0x82,0x9f,0x24,0x55,0xec,
0x98,0x3f,0x63,0x4c,0x33,0xfc,0xb5,0x9a,0x5d,0x1b,0x6b,0xff,0xd6,0x43,0xe0,0x8f,
0x94,0x6a,0xb3,0x6a,0xfa,0x4e,0x71,0xed,0xbf,0xa0,0x2,0x58,0xb,0x82,0x61,0x61,
0x6f,0x3c,0x35,0xc3,0x60,0x1a,0x39,0x17,0x0,0x0,0x80,0x95,0x6f,0x4e,0xd2,0x2e,
0x49,0x77,0x4b,0x9a,0xe9,0xd7,0x8b,0x56,0xec,0xee,0x1e,0x79,0xf0,0x93,0x1a,0x61,
0xcb,0x99,0x40,0x11,0xb,0x7b,0xf1,0x45,0x99,0x7f,0xae,0x4c,0xbf,0xa9,0x4c,0x9f,
0x50,0xa6,0x4b,0x2d,0x27,0x7f,0x84,0xad,0x60,0xaf,0x22,0x48,0xe8,0x3,0x0,0x0,
0x23,0xed,0x94,0xa4,0xf7,0x48,0xfa,0x1f,0xfd,0x7e,0xe1,0x8a,0x69,0xa4,0xaa,0x46,
0xdd,0xcf,0x5f,0xdf,0xa6,0x93,0x5d,0x36,0xe2,0x41,0xf0,0x6b,0xca,0x74,0xbd,0x32,
0x3d,0x53,0x18,0x23,0x18,0x8e,0xef,0x73,0xc7,0x8,0xba,0xb3,0x82,0x9,0x7c,0x0,
0x0,0x60,0xf4,0x5c,0x92,0xf4,0x5,0x49,0xd7,0x4b,0xfa,0xd1,0x20,0x7e,0x41,0xa5,
0xd0,0xee,0x95,0xfc,0x85,0x92,0xa5,0xf8,0x82,0xca,0xee,0x32,0x2b,0xe1,0x12,0x2c,
0xf5,0xc0,0x77,0x4a,0x99,0xb9,0x5b,0xa9,0xee,0x56,0xaa,0x53,0xd1,0x89,0x1d,0xb1,
0xc9,0x21,0x6e,0xd8,0x4,0x0,0x0,0x18,0x1d,0xcf,0x4b,0xda,0x2c,0xe9,0x11,0xd5,
0x43,0xe0,0x40,0x54,0xa4,0x7a,0xd5,0x2f,0xd7,0xc9,0xd2,0x29,0xee,0x63,0xee,0xb2,
0x2b,0x52,0xac,0x2d,0xfc,0x4c,0xbd,0xa,0x68,0xfe,0x50,0x99,0x7e,0x56,0x5c,0xd4,
0x59,0xc5,0xe0,0x7,0x0,0x0,0x30,0x3a,0x7e,0xa4,0xfa,0xb8,0xbe,0xdb,0x55,0x9f,
0xd5,0x3b,0x50,0x15,0x77,0xb2,0x47,0x33,0x7c,0x95,0x2c,0x98,0xac,0xe0,0x7e,0x78,
0xdb,0x5d,0x68,0xd9,0x9f,0x29,0x7c,0x49,0x99,0xbe,0xaa,0x4c,0xd7,0xd4,0xc7,0x3,
0x9a,0xf3,0xcd,0x9,0x1f,0x4,0x3f,0x0,0x0,0x30,0x92,0x7e,0xa0,0x7a,0xe0,0xfb,
0x15,0xd5,0x67,0xf4,0x2e,0x8a,0x7c,0xcc,0x5f,0x4f,0xc1,0xab,0x6c,0xb1,0xe5,0x62,
0x9b,0xf8,0x92,0x8c,0xbe,0xa6,0x4c,0xbf,0xa4,0x4c,0xbf,0xa7,0x4c,0x3f,0x24,0xf4,
0x1,0x0,0x80,0x11,0x32,0x27,0xe9,0x3b,0x92,0xb6,0xa9,0x3e,0xa1,0xe3,0xf9,0xc5,
0x3e,0x81,0x8a,0x89,0xed,0x71,0xeb,0x1e,0x4a,0x82,0xc7,0x12,0xe7,0x58,0x12,0x39,
0x16,0xbe,0x4e,0x18,0x4,0xeb,0x6d,0xe2,0x39,0x49,0x7f,0x21,0xa3,0x2d,0x32,0xda,
0x2c,0xa3,0x2f,0xca,0xe8,0xec,0xc2,0xde,0x2,0x0,0x0,0xc0,0xb2,0x77,0x44,0xf5,
0x65,0x5b,0xae,0x96,0xf4,0x9b,0x92,0x16,0xbc,0x3d,0x5b,0xaf,0xaa,0x52,0x30,0xe6,
0xcf,0x15,0xb,0x74,0xb1,0xe0,0x67,0xaf,0xc3,0x10,0x18,0xfb,0xf9,0xfa,0x2f,0x74,
0x97,0x93,0x39,0xde,0xb8,0xfc,0x91,0xa4,0xeb,0x24,0xbd,0x5f,0xd2,0xad,0x8d,0xcb,
0x44,0xdb,0x77,0x0,0x0,0x0,0xb0,0xfc,0x9c,0x95,0xf4,0x82,0xea,0x95,0xbd,0x17,
0x55,0xdf,0x9a,0x6d,0x59,0xa8,0x4a,0x2a,0x9f,0xdc,0xe1,0x6,0xbb,0x4a,0xe3,0x92,
0x49,0xaa,0x24,0x52,0x62,0xea,0xf7,0x93,0x44,0xaa,0x98,0x46,0xf0,0x4b,0xea,0x2f,
0x64,0x8f,0x27,0x26,0x5e,0x1d,0x2c,0xab,0x14,0x4a,0xaf,0x35,0x2e,0x5f,0x6d,0xdc,
0xbf,0x59,0xd2,0xd,0xaa,0x87,0xc2,0x77,0x4a,0xda,0xd8,0xb8,0xd,0x0,0x0,0xb0,
0x1c,0xcc,0xa9,0x5e,0xc4,0x3a,0xa9,0xfa,0x64,0x8d,0x9f,0xa8,0x5e,0xe5,0xeb,0xcb,
0x6e,0x1c,0x83,0x50,0xf5,0xc6,0xfc,0xc5,0x42,0x60,0xac,0x9a,0x67,0xc3,0xa0,0x1b,
0xa,0xdd,0xdb,0x85,0x8b,0x13,0x16,0x2b,0x4e,0x28,0xac,0x24,0xcd,0x49,0x22,0x71,
0x3f,0x68,0x5c,0x42,0x13,0xaa,0x87,0x41,0xeb,0xed,0x92,0xd6,0xb7,0x79,0xaf,0x0,
0x0,0x0,0xbd,0x38,0xae,0x7a,0xd8,0xb3,0x6,0xb2,0xe,0xdf,0xa0,0xfd,0x7f,0x10,
0xba,0x35,0xba,0xe3,0x2,0x8c,0xdb,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,
0x42,0x60,0x82,
// D:/Works/Mine/IVM/Codes/IVM/VehicleManagement/VehicleManage/Resources/Images/nexton.png
0x0,0x0,0x38,0x3d,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x2,0x7f,0x0,0x0,0x1,0x15,0x8,0x6,0x0,0x0,0x0,0x91,0xc9,0x83,0x5a,
0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x5c,0x46,0x0,0x0,0x5c,0x46,
0x1,0x14,0x94,0x43,0x41,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x78,0x9c,0xed,
0xdd,0x7f,0xac,0x9c,0x57,0x7d,0xe7,0xf1,0xcf,0x33,0x9e,0x7b,0xdb,0xc8,0x11,0xf7,
0x1a,0x9,0xb,0x29,0x91,0x63,0x57,0x28,0x91,0x12,0xc7,0x38,0xb4,0xaa,0x5,0x4d,
0x14,0x93,0x15,0x5b,0x2,0x69,0xe3,0x76,0xa9,0x4a,0xf1,0xd2,0x18,0xb5,0x82,0x34,
0x59,0x36,0x66,0xbb,0x10,0xc8,0x56,0x60,0xd0,0x92,0x90,0x76,0x1,0x77,0xcb,0x8f,
0x80,0xb6,0xc2,0x69,0x71,0x61,0x55,0xb6,0x9,0x21,0x29,0x54,0x5d,0xb9,0x8e,0xec,
0x82,0x82,0x96,0xc4,0x3f,0x12,0xa4,0xb0,0x48,0x4e,0x2c,0x2c,0x21,0x23,0x25,0xd7,
0x59,0x8c,0xed,0x7b,0xe7,0x39,0x67,0xff,0x98,0x39,0xcf,0x9c,0x73,0x9e,0xf3,0xcc,
0xef,0xb9,0xf7,0xce,0x9d,0xf7,0xcb,0x1a,0xe6,0xf7,0x73,0xe7,0xc7,0x35,0xfe,0xe4,
0x7b,0xce,0xf7,0x9c,0xec,0xc6,0xff,0xfd,0x16,0xcd,0x64,0x33,0x9a,0xa9,0xcd,0x68,
0xb6,0x36,0xa3,0xd9,0xda,0x6c,0xeb,0xf2,0xac,0x66,0x6a,0x75,0xcd,0xd4,0x66,0x34,
0x93,0xcd,0xa8,0x5e,0xab,0x6b,0x26,0xab,0xab,0x5e,0xab,0x6b,0x5d,0xb6,0x2e,0x38,
0xd5,0xb2,0x9a,0x6a,0xaa,0xa9,0x96,0x65,0xca,0x94,0xa9,0x96,0xd5,0x24,0x49,0x99,
0x32,0x65,0xad,0xdb,0x1c,0x2b,0xdb,0x3c,0xb7,0xb6,0xb8,0x6c,0xac,0x91,0xbb,0x66,
0xac,0x9,0x6e,0xcb,0x6d,0x2e,0x2b,0xdb,0xbc,0x6e,0xed,0x15,0x46,0xe6,0x75,0xd6,
0xda,0x6b,0x8c,0x8c,0xac,0xb5,0x32,0x32,0x97,0x5b,0x6b,0xaf,0xb1,0xad,0x63,0xbb,
0xe7,0xf9,0xc7,0xf0,0x7f,0x9e,0xbb,0xee,0x6e,0xb,0x5e,0x93,0x77,0x1f,0x0,0x0,
0x98,0x3c,0xee,0xdf,0xf6,0xe0,0xb6,0x8a,0x7f,0xe7,0x8b,0x6c,0xe0,0xe5,0x1,0xeb,
0xdd,0xee,0x72,0x84,0x77,0xbe,0x68,0x64,0x4e,0x5a,0xdb,0xcc,0x27,0x46,0x66,0xd1,
0x58,0x73,0xd2,0x58,0xfb,0xc3,0xdc,0xe6,0x17,0x72,0x9b,0xcb,0x58,0xa3,0xdc,0xe6,
0xee,0xfe,0xd6,0xe5,0xf6,0x6d,0xb9,0xc9,0xdb,0x97,0xbd,0xfb,0xda,0x8f,0x6d,0x3d,
0xd7,0x9a,0xd6,0x29,0xcc,0x42,0x45,0xfe,0x79,0xe7,0x2b,0x3,0x7f,0x46,0xf5,0x99,
0x6c,0x46,0xb3,0xeb,0x66,0x35,0x93,0xd5,0x35,0x5b,0x9b,0x2d,0x4e,0x45,0xf0,0x2b,
0xc2,0xdf,0x3a,0xd5,0xb3,0x7a,0xf3,0xd4,0xa,0x80,0xb5,0xac,0xa6,0x75,0xd9,0x3a,
0x65,0x52,0xeb,0xbc,0x1c,0xfc,0xdc,0xe5,0x38,0x74,0xd9,0xac,0x1d,0xd0,0x6a,0x59,
0xad,0x78,0x53,0xb5,0xac,0x26,0x63,0x8d,0xb2,0x2c,0xbb,0xde,0x5a,0xfb,0xd6,0x5a,
0x56,0xbb,0xd6,0x58,0x73,0x7d,0xa6,0xec,0x5a,0x65,0xba,0x2c,0xb3,0x99,0x94,0x49,
0xf1,0xb9,0xfb,0xe2,0xe2,0x9f,0x55,0x65,0x90,0xe0,0x97,0xfa,0x85,0x2,0x0,0x0,
0xab,0x53,0x90,0x3d,0x2a,0x82,0x5f,0xf8,0xf8,0x72,0x3e,0xe8,0x76,0x2c,0xdb,0xbe,
0xfe,0x53,0x49,0x3f,0xb6,0xb2,0x3f,0xb4,0xb2,0xdf,0xb3,0xb2,0x47,0x8d,0x35,0x3f,
0x36,0xd6,0x7a,0x41,0xae,0x19,0xde,0xda,0x7f,0x6c,0xfb,0xb2,0xf7,0x18,0x6b,0x9b,
0x81,0xd4,0x34,0x8b,0x5c,0x41,0xf0,0x33,0xd6,0x68,0xd8,0x5a,0x55,0x3d,0x15,0xfc,
0x66,0xd7,0xcd,0x14,0xd5,0xc0,0x66,0xf8,0x6b,0x6,0xbe,0x7a,0x16,0x57,0xfd,0x6a,
0xcd,0xaa,0x5f,0x56,0x2b,0x82,0x9f,0xab,0xf2,0xf9,0xe1,0xcf,0xff,0xa0,0x25,0xc9,
0x66,0xed,0xa4,0xed,0x5,0xbf,0xd7,0xd6,0xb2,0xda,0x3b,0x8c,0x35,0xb7,0xd4,0xb2,
0xda,0xcd,0xc6,0x9a,0x57,0xfb,0x15,0xc3,0x2c,0xcb,0x7a,0xa,0x5f,0x7e,0xa5,0xcf,
0xff,0xb9,0x7e,0xd5,0xcf,0xff,0xc2,0x53,0xbf,0xc,0x55,0xc7,0x4,0x0,0x0,0x93,
0x23,0xf5,0xef,0x77,0x50,0xe5,0xb3,0x61,0xa0,0x8b,0xef,0xf3,0xab,0x7e,0x7e,0x95,
0xb0,0xf8,0x63,0x83,0xeb,0xaf,0x6d,0x9d,0x6e,0x94,0xf4,0xde,0xd6,0x61,0x7f,0x2a,
0xe9,0x9f,0xad,0xec,0x63,0x56,0xf6,0x9,0x6b,0xed,0x85,0xe2,0x39,0xd1,0xa9,0x8,
0x7e,0xad,0x9f,0x99,0xdb,0x30,0x14,0xe6,0x36,0x6f,0xbe,0x3e,0xa3,0xe6,0x69,0x8,
0xf5,0x54,0xf0,0x9b,0xad,0xcd,0x7a,0xe1,0xaf,0x19,0xfa,0x66,0x6a,0x33,0x41,0xe8,
0xb,0x87,0x7b,0x6b,0xa5,0x21,0x5e,0x3f,0xb8,0xb9,0xf,0xd2,0x85,0x41,0xf7,0xc6,
0xb2,0x2c,0xbb,0xdc,0x58,0xf3,0x3b,0x92,0xde,0x9d,0x29,0x7b,0x8b,0x7b,0x9e,0xfb,
0xb2,0x5c,0xe0,0x4b,0x55,0xf3,0x92,0x5f,0x44,0xd5,0x17,0x93,0x8,0x7e,0x9d,0x86,
0x7f,0xfd,0x9f,0x1,0x0,0x0,0x26,0x5b,0x1c,0xf2,0xfc,0xdb,0xfc,0xa1,0x5e,0x77,
0xdd,0x4d,0x41,0x8b,0xb,0x45,0x9d,0xb2,0x85,0x5f,0xb5,0xf3,0x86,0x6c,0x5f,0x6b,
0xac,0x79,0x77,0xeb,0x74,0xce,0xc8,0x3c,0x62,0x64,0xfe,0xd6,0xc8,0x1c,0xa,0xaa,
0x7e,0xde,0x9f,0xe6,0xb0,0x70,0x97,0xe0,0x67,0x86,0xcb,0x27,0xf5,0x54,0xf0,0x6b,
0x86,0xbf,0xf6,0xb0,0xef,0xba,0x6c,0x9d,0x37,0xdc,0xdb,0xe,0x7c,0xfe,0x50,0x6f,
0x6a,0x7e,0x5f,0xe9,0xc3,0x6f,0xa7,0xea,0x6b,0x6a,0x59,0xed,0xc3,0xc6,0x9a,0x77,
0x64,0x59,0x76,0xb9,0xb5,0x36,0xa8,0xec,0xc5,0x47,0xa8,0xaa,0xce,0xb5,0xbf,0xc,
0x45,0xd7,0xdb,0x5f,0x8e,0x69,0xc5,0xe3,0xd4,0x17,0x15,0x3f,0xa7,0x17,0xc,0xfd,
0x2,0x0,0x30,0x39,0x52,0xc5,0x1e,0xff,0xf6,0x4e,0xc1,0xaf,0x5b,0x71,0xc9,0x1f,
0x96,0x2d,0x65,0x90,0xf8,0x8f,0xb5,0x73,0xd6,0xda,0x3d,0xc6,0x9a,0x3d,0xc6,0x9a,
0x33,0xc6,0x9a,0xcf,0xe5,0x36,0xff,0x62,0x6e,0xf3,0x73,0xfe,0x7c,0x40,0x7f,0x18,
0xd8,0xcd,0xfd,0xb3,0xd6,0x4a,0xb9,0x9a,0x27,0x63,0x47,0x30,0xec,0x9b,0x8,0x7e,
0xb3,0xb5,0x99,0xa2,0xda,0x57,0x2f,0x86,0x7c,0x53,0xd,0x1e,0xed,0xe1,0x5e,0xa9,
0x7a,0x9e,0x9f,0xf7,0x61,0xff,0xaa,0x32,0x7d,0x50,0x56,0xbf,0xef,0x1e,0x13,0x3f,
0x36,0xf8,0xc2,0xfc,0xe1,0x59,0x5b,0xfe,0xd0,0xfd,0xf3,0x78,0x52,0xa6,0x1f,0xfc,
0x52,0x8d,0x1f,0xfe,0x17,0xef,0xff,0xbc,0xe2,0x32,0x55,0x3f,0x0,0x0,0x26,0x4e,
0xb7,0x22,0x4d,0x55,0xe8,0xf3,0xa,0x54,0x61,0x9e,0x50,0xd4,0x9c,0x5a,0x51,0xf5,
0x2b,0xce,0xe5,0x72,0x49,0x54,0xd,0x2c,0x66,0xf9,0x59,0x19,0x6b,0xaf,0x30,0xd6,
0x3c,0x60,0xad,0xfd,0xb0,0xb1,0xe6,0x73,0xc6,0x9a,0xcf,0x18,0x6b,0x5e,0x6a,0x36,
0x7d,0x44,0xc1,0xcf,0xd8,0x76,0xe8,0xcb,0x35,0x9a,0x61,0xdf,0x54,0xf0,0x2b,0xba,
0x7b,0x5b,0xe1,0xcf,0xd,0xf3,0xfa,0xa7,0xaa,0x8a,0x5f,0x30,0xcf,0xaf,0xf5,0xf9,
0x67,0x59,0x76,0xad,0x95,0xfd,0xb4,0xac,0xde,0xda,0xbc,0xa1,0xf9,0x61,0x55,0xcd,
0xe3,0x4b,0x7d,0x6d,0xa9,0x52,0x6b,0xf3,0xc3,0xec,0x1c,0x0,0xab,0x4a,0xb4,0xee,
0xb,0x73,0xc7,0xf6,0xaf,0x3,0x0,0x80,0xc9,0x95,0x2c,0x28,0xb9,0xf3,0x64,0xf5,
0xaf,0x1d,0xfc,0x5c,0x37,0xad,0x7f,0x7b,0x31,0x8a,0x18,0x64,0xa,0x5,0xb9,0xa2,
0x1d,0xfa,0x4c,0x10,0x2,0xc3,0x4a,0x61,0xa9,0xe9,0x63,0xce,0xca,0xfe,0x17,0x63,
0xcd,0x3d,0xc6,0x9a,0x2f,0x1a,0x6b,0x3f,0x61,0xac,0xf9,0x79,0x11,0xfc,0xf2,0xd6,
0x50,0x6f,0x71,0xae,0x11,0xcd,0xf9,0xab,0xd5,0xc3,0xa1,0xde,0x28,0xf8,0xd5,0x53,
0xcb,0xba,0x78,0x95,0x3f,0x49,0x45,0xf8,0x2b,0xd,0xd7,0x66,0xd9,0xe5,0x56,0xf6,
0xa3,0xd6,0xda,0x7b,0x32,0x65,0xb3,0x7e,0x57,0x6e,0x95,0x38,0xa8,0x5,0x9d,0x2f,
0x51,0x90,0x73,0xc1,0xcf,0x95,0x47,0xfb,0xae,0xfc,0x45,0xaf,0x25,0x8,0x86,0xc3,
0x7c,0xaa,0x0,0x0,0x60,0xc5,0x74,0xca,0x1a,0xf1,0xe8,0x5f,0xaa,0xfa,0x97,0x1a,
0x65,0x74,0xa1,0x30,0xe,0x73,0xc1,0x6d,0xa,0x83,0x65,0x90,0x65,0x8a,0xe1,0xe1,
0x70,0x8e,0x60,0x2b,0xe8,0x5d,0x6e,0xac,0xfd,0x60,0x6b,0x6e,0xe0,0x9f,0x1a,0x6b,
0xfe,0xae,0x8,0x7e,0x8d,0x44,0xf0,0xcb,0x47,0x30,0xe7,0x6f,0x26,0x9b,0x29,0xe6,
0xf8,0xc5,0xc1,0xcf,0x5f,0xd7,0xcf,0x5,0x3e,0xbf,0xe2,0x57,0x8b,0x3a,0x72,0xbd,
0xf,0xfe,0x1d,0x99,0xf4,0xe9,0x4c,0xd9,0x26,0x13,0x2d,0xc5,0x92,0xfa,0x22,0xe2,
0xe1,0xd8,0xd2,0x75,0x45,0x89,0xd9,0xda,0xca,0xe0,0x97,0xa,0x80,0xa9,0xb5,0x7c,
0x9a,0xe7,0xc5,0xeb,0x1d,0xea,0x83,0x4,0x0,0x0,0x2b,0x23,0x55,0xe9,0xab,0xba,
0xbf,0x5b,0xe5,0xcf,0xe5,0x8,0x49,0x61,0xe0,0xb,0xce,0xc3,0xe7,0x86,0xcb,0xb3,
0x78,0x19,0xc5,0xab,0x2,0xba,0x9f,0xed,0x7,0x41,0x3f,0xd7,0xb4,0xe6,0xfd,0xbd,
0x36,0xb7,0xf9,0x41,0x6b,0xec,0x1f,0xc9,0xe8,0xfd,0x6a,0xd8,0x1f,0x16,0xa1,0xcf,
0x9f,0xf3,0x37,0x6c,0xe5,0xaf,0x5e,0x6b,0xcd,0xe9,0xf3,0xd6,0xf5,0x4b,0x5,0x3f,
0x37,0xd4,0xbb,0x2e,0x5b,0x17,0x84,0xbe,0x44,0x93,0xc7,0xe5,0x92,0xbe,0xa4,0x4c,
0xef,0xf2,0x3,0x9f,0x55,0xbb,0x6b,0x37,0x55,0x79,0xf3,0x3f,0x50,0xff,0xc3,0x8c,
0xc7,0xd1,0x5d,0xf0,0xf3,0xd7,0xbb,0x9,0x16,0x3d,0xf4,0xce,0x25,0xb5,0x27,0x4a,
0xba,0x9f,0xa1,0xea,0x8a,0x5f,0xfc,0xcb,0x43,0x20,0x4,0x0,0x60,0xed,0xa8,0xaa,
0xfa,0xb9,0xdb,0xaa,0x2a,0x7f,0x7e,0x71,0xa9,0x18,0x75,0x8c,0x83,0x5d,0xe2,0x8f,
0xfb,0x19,0xed,0xd0,0x17,0x56,0xd,0x8b,0xcc,0x52,0x8c,0x68,0x16,0xcd,0x1d,0xb7,
0xa8,0x61,0x9f,0x91,0xd1,0x9f,0xca,0xe8,0x73,0x6a,0x28,0xac,0x2,0x8e,0x64,0xce,
0x9f,0x9b,0xe7,0xe7,0x16,0x71,0x6e,0x5,0xbf,0x7a,0x56,0x2f,0xba,0x7a,0xc3,0xaa,
0x9f,0x3f,0xd4,0x1b,0x4,0xbf,0xed,0x92,0xbe,0x2e,0xe9,0x1a,0x49,0xe1,0xe2,0xcb,
0xad,0xf9,0x7d,0xa5,0x80,0xe5,0x7f,0x40,0x7e,0xa,0xe,0x3e,0xe8,0x76,0x2a,0xf6,
0x83,0x9f,0x6b,0x7d,0xae,0xac,0xfe,0x15,0xe3,0xf7,0xa9,0x8a,0x9f,0x4d,0x86,0xbb,
0xd4,0x7f,0x3d,0x74,0xfb,0x2f,0xa,0x0,0x0,0xb0,0x3a,0x55,0x15,0x72,0x52,0xc5,
0x28,0x3f,0xf4,0x49,0x61,0xe5,0x2f,0x1e,0x55,0x8c,0x47,0x25,0x53,0xe1,0xcf,0x2f,
0x5c,0x95,0x42,0x9f,0x77,0x2c,0x3f,0xfb,0x14,0x4b,0xb9,0x58,0xcd,0x2a,0xd7,0x5f,
0xa9,0xa1,0x9b,0x95,0xdb,0xf7,0x28,0xd7,0xcf,0x83,0x2a,0xe0,0x10,0xea,0x6e,0x4e,
0x9f,0xab,0xfe,0xf9,0xcd,0x1d,0x55,0xc1,0x2f,0x58,0xcc,0xb9,0x3d,0xd4,0xfb,0x5e,
0x49,0xfb,0xad,0xb5,0x97,0x49,0x15,0xbb,0x7a,0xf8,0x29,0xd8,0xff,0x60,0x8a,0xca,
0x5e,0x7a,0x8c,0xbc,0xbd,0xcd,0x49,0xea,0xb6,0x44,0xd5,0xcf,0xdb,0x2e,0x2e,0x4e,
0xf0,0xee,0xcb,0xd,0xce,0x7b,0xec,0xc,0x2,0x0,0x0,0x93,0xa5,0x6a,0xc8,0xd7,
0xbf,0x3f,0xce,0x8,0xd5,0x1,0xd0,0x9b,0xfb,0x17,0x4d,0x4f,0x6b,0xf,0xfd,0x2a,
0xca,0x22,0xe5,0xec,0x13,0x34,0x7f,0xb4,0x8e,0x99,0xdb,0x3c,0x1c,0xde,0x6d,0xc8,
0xcd,0xf3,0x7b,0x87,0x72,0x6d,0x57,0x43,0xef,0x94,0xd1,0xf,0x8a,0xa1,0xdf,0x21,
0xd4,0x4b,0x43,0xbd,0xd1,0xfe,0xbd,0xed,0x35,0xfd,0x6a,0x41,0xb5,0xcf,0x5f,0xd2,
0x45,0xd2,0xa7,0x25,0xfd,0x27,0xab,0xea,0xe,0xde,0xd2,0x7,0x1d,0x4d,0x90,0xf4,
0xd3,0x73,0xb8,0xe7,0x9d,0xdb,0x27,0xcf,0x9b,0x18,0xe9,0x85,0x3f,0x2b,0xdb,0xae,
0x0,0x16,0x55,0xbf,0x72,0xc7,0x8e,0x3f,0xf7,0xcf,0xbd,0x86,0xe0,0x9c,0x21,0x5e,
0x0,0x0,0xd6,0x8c,0x4e,0x23,0x79,0xa9,0xe9,0x5f,0x55,0x1,0xd0,0x2f,0x26,0xf9,
0x45,0x26,0xbf,0x62,0x97,0xaa,0xfa,0x15,0xc7,0x4e,0xd,0xf9,0x46,0x95,0xc3,0x22,
0x48,0xe6,0x6a,0x77,0xf6,0xba,0x20,0xd8,0xb0,0x52,0xae,0xd7,0xc9,0xe8,0x88,0x72,
0xfd,0xae,0x72,0xfb,0x9d,0xa1,0x2b,0x7f,0x6e,0x1,0xe7,0xa0,0xa3,0xd7,0xff,0xe3,
0x5,0xbf,0x9a,0xe2,0xee,0xde,0x6c,0x56,0xd2,0xff,0x90,0xf4,0x6e,0xab,0xf4,0x4e,
0x1c,0xc1,0x87,0x9b,0x48,0xc9,0x41,0xf2,0xb5,0x26,0x79,0x2a,0x36,0x3d,0xae,0xa,
0x7f,0xc6,0x6d,0x78,0xdc,0xfe,0x20,0xa5,0x44,0xbb,0xb6,0xf7,0xc5,0xfa,0xb7,0xf9,
0xaf,0xf,0x0,0x0,0xac,0x1d,0x71,0x2e,0xe9,0x2f,0x0,0xca,0xab,0xfa,0xb5,0x7b,
0x9,0xfc,0xe9,0x66,0xe1,0x28,0x66,0xb9,0xa0,0x15,0x57,0xff,0xfc,0x9e,0x4,0x7f,
0xae,0x5f,0x11,0xf8,0xac,0xda,0xd5,0x3f,0x7f,0x89,0x97,0x5c,0x97,0xa9,0x61,0xbf,
0xa9,0x5c,0x7f,0xac,0x5c,0x7f,0x3b,0xcc,0x67,0x52,0x77,0xc1,0xaf,0x5e,0x8b,0x96,
0x72,0xf1,0xf7,0xed,0xf5,0x82,0x9f,0x37,0xe4,0x7b,0x99,0xa4,0x7f,0x90,0x9a,0x6b,
0xf7,0x95,0x86,0x79,0x55,0xe,0x59,0xa9,0xf,0xa3,0xf9,0xa6,0xdb,0x25,0xcf,0xf2,
0xc9,0x94,0xaa,0x80,0xa5,0x61,0xdf,0xc4,0x84,0xcc,0x6e,0x65,0xdc,0xb8,0xf2,0x97,
0xfa,0x45,0x0,0x0,0x0,0x93,0xad,0x2a,0xfc,0x49,0x55,0x9d,0xbf,0xa,0x46,0xd,
0x8b,0xcb,0x71,0xd8,0x93,0x2d,0x8a,0x52,0xdd,0x72,0x8e,0x5f,0x2d,0x2c,0x8e,0xe5,
0x67,0x17,0x6b,0xdb,0x73,0xfd,0x8a,0x79,0x7d,0xd6,0xb,0x81,0x72,0x15,0xc0,0x59,
0xe5,0xfa,0x1b,0xe5,0x7a,0x8d,0xa4,0xcf,0xc,0xfa,0x99,0xd4,0xdd,0x5e,0xbd,0x35,
0x95,0x17,0x72,0x2e,0xe6,0xf8,0x95,0x83,0xdf,0xac,0xa4,0xc7,0x25,0xdd,0xd2,0xe9,
0xe0,0x45,0x3b,0x74,0xc5,0xd8,0x78,0x58,0xdd,0xcb,0x4b,0x1,0xb0,0x91,0x1c,0xfe,
0xcd,0xe5,0x57,0x4,0x8b,0x63,0x45,0xf3,0xfe,0xfc,0x94,0x4e,0xd5,0xf,0x0,0x80,
0xe9,0x92,0x1e,0xf6,0xf5,0x2e,0x77,0x58,0xf9,0x23,0x28,0x1c,0x45,0xd5,0x3c,0xa9,
0x1d,0x4,0x5d,0xf0,0xf3,0xa7,0xa7,0xf9,0x99,0xc3,0xcf,0x3f,0xee,0xf8,0xa9,0x10,
0x59,0x84,0x3f,0xab,0xc4,0x9a,0x7e,0x4a,0x5,0xc1,0x4f,0x67,0xff,0xf9,0xb2,0x59,
0xfb,0xdf,0x2e,0x7c,0x6a,0x90,0xcf,0xa6,0x9e,0x5c,0xc0,0xb9,0x98,0xdf,0xa7,0x62,
0x21,0x67,0x2f,0xf8,0xad,0x93,0xf4,0xf7,0xaa,0x8,0x7e,0xc9,0xae,0x5a,0xef,0x4d,
0xfa,0x21,0xae,0x54,0xd9,0x33,0x2e,0xf4,0x35,0x4a,0x15,0xbf,0x70,0xdf,0xbb,0x70,
0x7e,0x60,0xa7,0xaa,0x5f,0x75,0xc5,0x2f,0xfd,0xe5,0x97,0xde,0x4f,0xe2,0x97,0x7,
0x0,0x0,0x4c,0x8e,0x52,0xf5,0xaf,0xaa,0xf1,0xa3,0x62,0x65,0x90,0x38,0x57,0x94,
0x57,0x18,0x29,0x57,0xfe,0xfc,0x3f,0xc5,0x9c,0x41,0xbf,0x63,0xd8,0x2f,0x54,0xb9,
0xaa,0x5f,0x11,0xfc,0x6c,0xd8,0xfc,0x11,0x57,0x0,0x8d,0xa4,0x86,0x1e,0xc8,0xfe,
0xe3,0x65,0x67,0xec,0x7f,0xbf,0xd0,0xf7,0x10,0x70,0x7d,0x5d,0x16,0x2d,0xdc,0xdc,
0xfa,0x53,0xf3,0xb6,0x6d,0xb,0xb6,0x6c,0x93,0xfe,0x2a,0xcb,0xb2,0xdf,0x8e,0x3f,
0x3c,0x3f,0xd5,0xb6,0x3f,0xa0,0x70,0x15,0xeb,0xf6,0x30,0x6f,0x38,0x97,0xcf,0x85,
0xba,0x86,0x6d,0x4,0xc1,0xaf,0x61,0x1a,0xc9,0x61,0x60,0xbf,0x52,0x68,0x6d,0x98,
0xbc,0xa5,0x68,0x51,0x46,0x85,0x81,0xb4,0x78,0x8d,0x15,0x89,0xbf,0xb8,0x4e,0x25,
0x10,0x0,0x80,0x89,0xd7,0xad,0x88,0x13,0xe7,0x82,0x54,0xf0,0x8b,0xaf,0xa7,0x82,
0x9f,0x5f,0xe0,0xa,0xaa,0x7e,0x51,0xf5,0x2f,0x3e,0xa6,0xa4,0x76,0x95,0xcf,0x3f,
0x15,0xd5,0x3f,0xbf,0x1,0xa4,0x8,0x7e,0x2e,0xc,0x7e,0x25,0x7b,0xdf,0x2f,0x9f,
0xb3,0x5f,0xba,0xf8,0x58,0x3f,0x9f,0x49,0xdd,0xdf,0xaa,0xcd,0xaf,0xfe,0x49,0xcd,
0xe1,0xde,0x68,0x3d,0xbf,0x8f,0x4b,0xfa,0x93,0xca,0xf,0x30,0xfa,0xe0,0x4a,0xa1,
0x2f,0xe8,0xe6,0x6d,0x7,0xbf,0x86,0x69,0x4,0xc1,0x2f,0xbc,0xee,0x2a,0x82,0xed,
0xc7,0xa7,0x16,0x77,0x6e,0x8f,0xb9,0x97,0x27,0x67,0xc6,0x1f,0x76,0xea,0xcb,0x8e,
0x6f,0x7,0x0,0x0,0x6b,0x4f,0x90,0x5,0x12,0x73,0xfe,0xfc,0xcb,0x9d,0xc3,0x5f,
0xb9,0xa,0x18,0x6c,0x48,0xe1,0xd5,0xfd,0xfc,0x75,0xfd,0x8a,0xca,0x9f,0xb7,0x64,
0x4c,0x30,0xe4,0xeb,0x87,0x3d,0x37,0x7,0x30,0xa8,0xfc,0xb5,0x4e,0xcd,0x30,0xb8,
0x4e,0xb9,0xbe,0x9e,0xbd,0xe7,0x97,0x77,0xda,0xaf,0x5c,0xfc,0x7e,0xaf,0x9f,0x41,
0xbd,0x8,0x7c,0xf2,0x2b,0x7f,0xed,0xe1,0x5e,0xa9,0x58,0xce,0xe5,0xad,0x92,0x3e,
0xea,0xaa,0x80,0x55,0x55,0xbf,0xf6,0xdc,0xbb,0xf2,0x70,0x6f,0x6a,0xa8,0xd7,0xf,
0x7a,0x8d,0xa0,0xfa,0xe7,0xee,0x2b,0xcf,0xfb,0xf3,0x2b,0x7f,0xa9,0x86,0x8f,0x4e,
0x9,0x3b,0xe,0xa8,0x9d,0x7e,0x29,0x0,0x0,0xc0,0xe4,0x19,0x74,0x4a,0x57,0x2a,
0xf4,0xb9,0xdb,0xad,0xd,0xab,0x82,0x71,0xe6,0x8,0x86,0x7b,0x13,0xd5,0xbf,0x54,
0x13,0x88,0x95,0xb,0x7e,0xb6,0x4b,0xf5,0x4f,0xed,0x79,0x7f,0xfe,0xf5,0x66,0x8,
0xbc,0x4c,0xd,0xfd,0x7d,0xb6,0xfb,0x97,0x6e,0xb0,0x7,0x2f,0xbd,0xd4,0xcb,0xe7,
0x53,0xcf,0x94,0x85,0x5d,0xbd,0xad,0xd0,0x57,0x2c,0xe2,0xdc,0x3c,0xbf,0x42,0xd2,
0xdf,0xa4,0x3e,0xd0,0xf8,0x4d,0xa4,0x86,0x7b,0x53,0xeb,0xf7,0x15,0x1,0xaf,0x15,
0xf6,0x96,0x5c,0x8,0xf4,0xce,0x73,0x6b,0xda,0xd5,0xbf,0xb8,0xe9,0x43,0xe1,0xf1,
0x83,0x2f,0xa2,0x43,0x0,0x8c,0xbf,0xdc,0x6e,0xbf,0x8,0x0,0x0,0x60,0xed,0x88,
0xff,0xbd,0xf7,0x63,0x4d,0xe9,0xbe,0x44,0xd1,0xa8,0x2a,0x63,0xc4,0x15,0x40,0xbf,
0xea,0xe7,0xaf,0xeb,0x57,0x9a,0xef,0x67,0xe5,0x55,0xfd,0x14,0x56,0xfd,0x52,0xd,
0x1f,0xd,0xb5,0x83,0x5f,0x7b,0x49,0x98,0x4d,0xca,0x75,0x50,0xd2,0xad,0xbd,0x7c,
0x6,0xf5,0x60,0xb7,0x8e,0xd6,0xa5,0x62,0x1,0xe7,0xac,0x68,0xf0,0xf8,0xba,0xa4,
0xd7,0xa4,0x3e,0xc0,0xf2,0x1b,0x57,0x18,0xfa,0xd4,0x5e,0x9a,0xc5,0x55,0xfd,0xdc,
0x5c,0xbe,0x25,0xb3,0x14,0x4,0x3f,0x77,0xbd,0x61,0x9a,0xb7,0x75,0x5a,0xfa,0x25,
0xd5,0x69,0x13,0xf,0xf5,0x86,0xc3,0xbe,0xd5,0x5f,0x6c,0xfb,0x17,0x80,0x0,0x8,
0x0,0xc0,0x24,0x1b,0xb4,0x98,0x93,0xca,0x3,0x5d,0x87,0x82,0xa3,0x75,0xfb,0xfc,
0x3c,0x52,0x74,0xff,0x46,0xd5,0xbf,0x78,0x25,0x92,0x22,0xf8,0x35,0x3,0x54,0xd4,
0xe5,0xab,0x72,0x5,0x30,0x1e,0xa,0x6e,0x14,0x21,0xf1,0xad,0xd9,0xef,0xfc,0xd2,
0x7,0xed,0x23,0x97,0xfe,0xa2,0xdb,0x7b,0x2d,0x2a,0x7f,0x89,0x5d,0x3b,0x9c,0x8f,
0x4a,0xba,0x31,0xf5,0x21,0x75,0xc,0x7e,0xa5,0xd0,0x97,0x17,0x95,0x3c,0x3f,0xe8,
0x2d,0x9a,0xa5,0x66,0xd8,0xb3,0x4b,0xcd,0xdb,0xbc,0xa1,0xdf,0xb0,0xe1,0xa3,0xbc,
0xde,0x5f,0x2a,0xfc,0xb9,0xb2,0x6c,0xbf,0x43,0xbe,0xbd,0xfe,0xb2,0x10,0x10,0x1,
0x0,0x98,0x7c,0xdd,0xfe,0xdd,0x4f,0xaf,0x1,0x58,0x6e,0xe,0x89,0x2b,0x81,0x55,
0x79,0x28,0xd8,0xd5,0xc3,0xad,0x1f,0x18,0x4,0x3f,0xef,0x72,0x3c,0xbc,0x1b,0xee,
0xf6,0x11,0xaf,0xfd,0xe7,0x57,0x0,0x1f,0xc8,0xde,0x3e,0x7b,0xd4,0x3e,0xb1,0xf8,
0xbd,0x4e,0xef,0xad,0xee,0x7,0xbf,0x28,0xf4,0x49,0xd2,0xeb,0x24,0x7d,0x38,0xf5,
0x61,0x95,0xca,0x9e,0xf1,0x1b,0x2d,0xd,0xf7,0x9a,0x76,0xb5,0xaf,0x55,0xe9,0x5b,
0x34,0xcd,0xc0,0x57,0x9c,0x5c,0xd5,0xcf,0x2e,0x15,0xc1,0xaf,0xd3,0x5a,0x7f,0x2e,
0x59,0x87,0xe1,0x2f,0x3d,0xdc,0x9b,0xec,0xae,0xe9,0xf2,0x65,0x3,0x0,0x80,0xb5,
0xa3,0x6b,0xe0,0xeb,0x21,0x1f,0xa4,0x82,0xa0,0x3f,0xb9,0xac,0x5c,0x1,0xcc,0xc3,
0x11,0x51,0x57,0x5,0x54,0xb4,0xc4,0x4b,0x6a,0xc8,0x37,0xae,0x2,0x5a,0xf9,0x41,
0xaf,0x3c,0x14,0x6c,0xb4,0x4e,0xb9,0xbe,0x90,0xbd,0x65,0xf6,0xd7,0xec,0x3f,0x2f,
0x56,0x6e,0x2,0x57,0x77,0x17,0x12,0xc1,0x4f,0x92,0xbe,0x20,0x69,0xb6,0x53,0xd9,
0xd3,0x4f,0xb8,0x7e,0xea,0xf5,0xe7,0xf6,0xb9,0x6a,0xde,0x92,0x57,0xe5,0x5b,0x34,
0x4b,0x5a,0x34,0x8b,0x5e,0xf8,0x6b,0x68,0xd1,0x2c,0x16,0x8f,0x2b,0xaa,0x84,0x5e,
0xf5,0xaf,0xbd,0xb3,0x47,0x58,0xf1,0xb,0xd6,0xcd,0x51,0x7b,0xf,0x5f,0x77,0xd9,
0x7f,0xbd,0xbd,0x7e,0xb9,0x0,0x0,0x60,0xed,0xea,0x65,0xc4,0xaf,0xea,0x11,0xdd,
0x83,0x60,0x62,0xe,0xa0,0x1b,0x2,0x8e,0x2b,0x7f,0xc9,0x2e,0xdf,0xe8,0x36,0xb7,
0xf6,0x5f,0x2a,0xf8,0x95,0xaf,0x6f,0x97,0xd1,0x7b,0x25,0x7d,0xb1,0xea,0x7d,0xd5,
0xbd,0x65,0x5c,0x24,0xc9,0x5f,0xd3,0xef,0x5d,0xd6,0xda,0xb7,0xc4,0x99,0xd0,0x7f,
0xc3,0x71,0xf0,0x2b,0x77,0xf5,0x86,0x43,0xbd,0xd,0x1b,0x6,0xbf,0x45,0xb3,0xa8,
0xc5,0x7c,0xa9,0x18,0xf2,0xf5,0xab,0x7f,0x7e,0xf3,0x47,0x3c,0xd7,0x2f,0xae,0x2c,
0x86,0xeb,0xfa,0xd9,0x52,0xa,0xef,0x16,0xfc,0x8,0x7c,0x0,0x0,0xac,0x4d,0x83,
0xce,0x1,0xec,0xe7,0x58,0xdd,0x87,0x81,0xa3,0x5d,0x40,0xdc,0x12,0x2f,0x71,0xb3,
0x47,0xdc,0xf8,0x91,0x57,0x5c,0x4f,0xd,0xfd,0x16,0xd,0x20,0x56,0x32,0xfa,0xaf,
0xd9,0x6f,0xcc,0x3c,0x66,0xff,0x75,0xe9,0x4c,0xea,0xf5,0xd6,0xe3,0x1b,0xac,0xb5,
0xca,0xb2,0xec,0x72,0x49,0x7f,0xee,0xbf,0x21,0xff,0x8d,0xb7,0xdf,0x58,0xb8,0x96,
0x5f,0x1c,0xfc,0x1a,0x41,0x53,0x87,0xb,0x7c,0x61,0xf0,0x2b,0x2e,0x9b,0xc5,0xf6,
0xb0,0x6f,0xeb,0x39,0xa5,0x61,0x5f,0xe3,0x57,0xff,0xfc,0xb2,0xaa,0x94,0x1a,0xf6,
0x75,0xaf,0x3f,0x8c,0x82,0xe1,0x17,0xd5,0xcb,0x97,0xa,0x0,0x0,0x50,0x25,0x95,
0x31,0xe2,0x7d,0x7c,0xf3,0x68,0xfe,0x9f,0xfc,0x6,0x8f,0x4e,0x15,0x40,0xbf,0xea,
0x67,0x14,0xcd,0xf3,0x4b,0x4,0xbf,0xe6,0x7d,0xaf,0x96,0xd1,0x3,0x92,0xfe,0x30,
0xf5,0x7a,0xeb,0xd1,0xee,0x1d,0xee,0x4d,0xbc,0x57,0xd2,0x15,0x7e,0x45,0xb0,0x3c,
0xd7,0xaf,0x3c,0xc7,0x2f,0xe,0x7e,0x7e,0x57,0x6f,0x1c,0xfc,0x2e,0xe5,0x8b,0xba,
0x64,0x2e,0x15,0xb7,0xbb,0xca,0x9f,0x1b,0xfa,0x75,0x43,0xc5,0x71,0xa0,0x74,0xe3,
0xe5,0xc5,0x3a,0x3a,0xa,0xe7,0xfb,0xf9,0xc3,0xbe,0x71,0xe8,0xeb,0xb4,0xb4,0xb,
0xd5,0x3f,0x0,0x0,0xa6,0x5b,0x2a,0x13,0x15,0xf7,0xa5,0xa7,0xc7,0x5,0xaa,0x1b,
0x42,0x14,0xac,0xff,0xd7,0xde,0xd2,0x4d,0xe5,0x2e,0xdf,0xe4,0x90,0xaf,0x2a,0xf6,
0xfc,0x55,0x18,0x4,0xfd,0xe5,0x5f,0x8c,0xde,0x95,0xdd,0x50,0xff,0xa4,0x7d,0xa6,
0xf1,0x7c,0xfc,0x3a,0x4b,0x95,0x3f,0x49,0xb3,0xd6,0xda,0xf,0xfa,0xef,0x31,0x7e,
0x33,0xc6,0x5,0xad,0x2e,0xc1,0xaf,0xd9,0xd4,0xb1,0x18,0xcc,0xe9,0x5b,0x34,0x8b,
0xba,0x98,0x5f,0xd2,0xa5,0xbc,0x19,0xfc,0x2e,0xb9,0xaa,0x5f,0x31,0x7,0x30,0x35,
0xe4,0x9b,0x1e,0xf6,0x8d,0xcb,0xa9,0xa9,0xf,0x3b,0x78,0xfd,0x15,0x41,0x10,0x0,
0x0,0x40,0x4a,0x7,0xc0,0x38,0xf8,0xf5,0x12,0x4,0xa5,0x70,0xb4,0xd4,0xdf,0x91,
0xac,0x34,0xcc,0x1b,0xf,0xf7,0x6,0xd7,0xbd,0xaa,0x9f,0xdf,0xf9,0x9b,0xdb,0xea,
0xe0,0xd7,0x68,0x35,0x7f,0x58,0x7d,0x50,0xd2,0x1f,0xc7,0xaf,0x2b,0x8,0x7f,0x56,
0x56,0x99,0xb2,0x3f,0x92,0xf4,0xda,0x78,0x61,0x64,0xb9,0xd7,0x92,0x8,0x5d,0xdd,
0x82,0x9f,0x5f,0xf1,0x73,0xc1,0xef,0xa2,0xb9,0xa8,0x4b,0xf9,0xa2,0x37,0xec,0xbb,
0x14,0xc,0x11,0xfb,0x7b,0xfc,0x26,0x97,0x78,0x31,0xae,0xe1,0xc3,0x5,0xd2,0x72,
0xf8,0x93,0xd2,0xc3,0xd6,0xa9,0x2f,0x7,0x0,0x0,0x4c,0x97,0x64,0x88,0xb3,0x9d,
0xc3,0x9d,0x1f,0xe,0x7b,0xad,0x6,0x6,0x4d,0xb2,0xc5,0x6e,0x1e,0x36,0x11,0xf8,
0x12,0x15,0x40,0x17,0x4,0x83,0xf9,0x7e,0x71,0xc3,0x87,0x54,0x9a,0x3,0xd8,0x1c,
0x8,0x7d,0x77,0x76,0x5d,0xfd,0x13,0xf6,0xb9,0xc6,0x69,0xff,0x35,0xd5,0xdd,0xb,
0x93,0x24,0x6b,0xed,0x3a,0x93,0xe9,0xc3,0x7e,0xb,0x48,0xd1,0x34,0x11,0xbd,0xf8,
0x54,0xd5,0xcf,0xf,0x7e,0x45,0x67,0x6f,0x6b,0xe,0xdf,0x25,0x73,0xa9,0x39,0xd4,
0xeb,0x5,0xbf,0xe6,0x6d,0x97,0x9a,0xc1,0xcf,0x6b,0xfa,0x70,0xf3,0xfc,0x1a,0xa6,
0x11,0xac,0x15,0x18,0xb4,0x49,0x2b,0xbd,0xa0,0x73,0xf1,0x5a,0x2b,0xc2,0xdf,0x20,
0x8,0x87,0x0,0x0,0x4c,0x96,0x7e,0x86,0x69,0x7b,0x3a,0x9e,0xb,0x7d,0xb6,0x7c,
0xfc,0xaa,0x9f,0x55,0x9a,0x32,0xe7,0xef,0xe3,0x1b,0x57,0xfb,0x82,0xdb,0x13,0x21,
0x30,0xe,0x7c,0xc9,0xdd,0x3f,0x82,0xe0,0x27,0x59,0xcd,0x4a,0xfa,0xa0,0xa4,0xf7,
0xfb,0xaf,0xab,0xde,0x6a,0xf0,0x70,0x55,0xbf,0xdf,0xb6,0xd6,0x6e,0x52,0xe6,0x85,
0x3e,0x1b,0xbd,0x70,0x85,0xcb,0xac,0xa4,0x82,0x5f,0x11,0x0,0x8b,0xee,0xde,0xb0,
0xb9,0xc3,0x5,0xbf,0x8b,0xf9,0xc5,0x60,0xc9,0x17,0x7f,0xb7,0x8f,0xd4,0x7e,0xbe,
0xa5,0x3d,0x7c,0x5b,0xaf,0xa9,0x78,0x7d,0xde,0xf5,0xaa,0x2f,0x0,0x0,0x0,0xac,
0x7d,0xc3,0xfe,0xbb,0x1f,0x7,0xba,0x4e,0x23,0x89,0x55,0x73,0x5,0x4b,0xbd,0x6,
0x7e,0xe8,0x8b,0x5f,0x5e,0x32,0x10,0xf6,0xb8,0xfc,0x4b,0x43,0x61,0xf0,0xb,0x8f,
0xfd,0x47,0xd9,0x75,0xf5,0x8f,0xd8,0xe7,0x1a,0x3f,0x77,0x37,0xd4,0xa2,0xae,0xd8,
0x77,0x17,0x97,0xad,0x4d,0x56,0xfa,0xfc,0x85,0x96,0xcb,0xdd,0xbd,0x8d,0xd2,0x3a,
0x7e,0xfe,0xe9,0x92,0xb9,0x54,0xcc,0xf1,0x73,0x15,0xbf,0xc5,0x60,0xce,0x5f,0x7b,
0x7b,0xb7,0x62,0x7d,0x3f,0xd3,0x61,0xce,0x9f,0xb7,0x5e,0x8e,0x3f,0xe7,0xcf,0xff,
0xa0,0x53,0x9d,0xbe,0x0,0x0,0x0,0x9d,0xf4,0x93,0x21,0x82,0xdc,0xe4,0x9d,0xfc,
0x63,0x15,0xe1,0xce,0x3f,0x9c,0x95,0x14,0x57,0x3,0xdd,0xed,0xc1,0xdc,0x3f,0x2f,
0x4,0xfa,0x95,0xbf,0x86,0x77,0xd9,0xaf,0x1e,0x86,0x2e,0x93,0xf4,0xe,0xff,0x86,
0x9a,0xf7,0x6,0x5f,0x6d,0xad,0x7d,0x7b,0xb8,0xa,0x75,0x7a,0xc7,0x8e,0x78,0xdb,
0x36,0xbf,0xb3,0xd7,0xf,0x6f,0x6e,0xd9,0x96,0x76,0xb3,0xc7,0x52,0x30,0xc7,0xcf,
0xf,0x7e,0xf1,0x32,0x2f,0xed,0x5,0x9e,0xbd,0x75,0x71,0x5c,0xd5,0xb1,0xc7,0xd0,
0x7,0x0,0x0,0x30,0x2c,0x1b,0xfd,0xe9,0xf7,0x79,0xe5,0xa7,0x54,0x1c,0x23,0xae,
0xa,0x96,0xaa,0x7e,0xde,0x29,0x6e,0xfe,0x30,0xe5,0xc3,0x79,0xde,0xed,0x5f,0x69,
0x86,0xbf,0x66,0x98,0x7a,0x97,0x95,0x9d,0xf5,0xdf,0x5c,0x10,0xfa,0x54,0xde,0x5b,
0xb7,0xdb,0x70,0x6f,0x73,0x1e,0x5f,0xab,0xf1,0xc3,0x2e,0x95,0x96,0x7c,0x69,0x6f,
0xf5,0x96,0x7,0xa1,0x2f,0x5e,0xd2,0xc5,0x75,0xc9,0x14,0x4d,0x26,0x84,0x3e,0x0,
0x0,0xb0,0x42,0xba,0x5,0xc1,0xe0,0x3e,0xbf,0x9a,0xd7,0xfb,0xf,0xf0,0xe7,0xed,
0xa5,0x1b,0x42,0xe2,0xe,0xe0,0xb8,0xaa,0x18,0xba,0x39,0xbb,0xae,0xbe,0xc9,0x5d,
0xa9,0x79,0x5d,0xbb,0xbf,0x9f,0xaa,0xfa,0x5,0xc3,0xbe,0xa5,0x26,0x8f,0x30,0x10,
0xba,0xb0,0xd7,0xae,0xfa,0xb5,0x2a,0x7f,0xad,0xdb,0x4b,0x6b,0xf9,0xb5,0x82,0xa2,
0x5f,0x35,0x4c,0xd,0xf3,0xfa,0xd5,0xbe,0xd4,0xbc,0x3e,0x42,0x1f,0x0,0x0,0x58,
0x9,0x71,0x55,0x30,0xc8,0x23,0x95,0xd1,0x24,0x6b,0x9f,0xf9,0x8d,0x24,0x71,0x50,
0xac,0xac,0x2,0x26,0xd6,0x0,0xec,0x1c,0x83,0xd6,0x49,0x7a,0x97,0xbb,0x52,0x73,
0x43,0xbe,0x92,0xde,0x98,0xaa,0xfa,0xf9,0x7b,0xea,0x26,0xb7,0x6d,0x33,0xe1,0x10,
0xad,0xdb,0xc2,0xcd,0xdf,0xc7,0xd7,0xf,0x7d,0x8b,0x45,0x17,0xb0,0x17,0x14,0x5d,
0xc5,0xaf,0xb5,0x83,0x87,0xb1,0xe1,0x52,0x32,0xc1,0x87,0xdb,0xc3,0xd2,0x2d,0x0,
0x0,0x0,0x13,0xa5,0x58,0x66,0xc5,0x86,0xe7,0xf1,0x2e,0x20,0xa9,0x35,0x1,0x7b,
0xf3,0x16,0x77,0xa1,0xd6,0xa,0x58,0x6f,0x35,0xd6,0xac,0xeb,0xbd,0xea,0x57,0xe,
0x83,0xfe,0xbc,0xbf,0x62,0x6b,0x37,0x1b,0x2e,0xf7,0xe2,0xef,0xef,0xdb,0xb0,0xe1,
0xe,0x1e,0xed,0xe3,0x47,0xb,0x37,0x57,0xc,0xf3,0x52,0xed,0x3,0x0,0x0,0xab,
0x56,0xb7,0x88,0x92,0x55,0x5c,0xf6,0x9f,0x6f,0xa3,0xcb,0x55,0x9d,0xbf,0xbd,0xc5,
0xa1,0x37,0x66,0xd7,0xd5,0x2f,0x93,0xa4,0x5a,0x6b,0x38,0xf5,0x96,0x6e,0x55,0xbf,
0x64,0xf0,0x33,0x51,0xa7,0xaf,0x6d,0xf,0xf7,0xb6,0x3b,0x7f,0xdb,0x43,0xba,0xfe,
0x90,0xb0,0x1f,0x14,0xdb,0x1,0xb0,0x1c,0xfc,0xa8,0xf6,0x1,0x0,0x80,0x35,0x25,
0xf3,0xce,0x33,0xa5,0xc3,0x9f,0x14,0x56,0xfb,0x6c,0x62,0xa9,0x98,0xfe,0xe2,0xd0,
0x65,0x92,0x7e,0x5d,0x6a,0x57,0xfe,0x6e,0xec,0x56,0xf5,0xcb,0x2b,0x2b,0x7e,0xcd,
0x7d,0x78,0xe3,0x0,0x18,0x37,0x81,0xf8,0x8f,0x8f,0x8f,0xd3,0xac,0xea,0x95,0x77,
0xf,0x21,0xf8,0x1,0x0,0x80,0x35,0xc5,0xf,0x7b,0x55,0x97,0x7d,0x71,0xf5,0xcf,
0x85,0xc0,0xfe,0x86,0x7c,0x9d,0xb7,0x48,0x52,0xdd,0xca,0xce,0x65,0xca,0xae,0x29,
0xd6,0xfb,0x6b,0x9d,0xbb,0xb9,0x76,0xcd,0xe1,0xd8,0xf2,0x36,0x6e,0xf1,0x9e,0xbb,
0x45,0xb8,0x33,0xe5,0xc7,0xb8,0x8e,0xde,0xa0,0xb1,0x23,0x58,0xc0,0x39,0x5c,0x38,
0x9a,0xe0,0x7,0x0,0x0,0xd6,0x94,0x4c,0xcd,0xb0,0xe6,0x9f,0x27,0x1f,0xe7,0x1e,
0xe0,0x89,0xe7,0xfb,0xc5,0xeb,0x3,0xf6,0xee,0x8d,0x92,0x54,0x37,0xd6,0x6c,0xf7,
0x57,0xb1,0xf6,0x43,0x60,0x33,0x88,0x29,0x8,0x7e,0xd5,0x21,0x30,0x1c,0x6,0x76,
0xf3,0xfe,0x3a,0x85,0x45,0x57,0x51,0x6c,0xc6,0xcb,0xa8,0xb9,0x83,0xe0,0x7,0x0,
0x0,0x26,0x55,0x22,0xc3,0x5,0xb7,0x65,0x99,0x94,0xd9,0xe6,0x6d,0xb5,0x8a,0x63,
0x94,0xaa,0x7e,0xad,0xeb,0x6e,0xce,0x5f,0xff,0x7e,0x55,0x6a,0x56,0xfe,0xae,0xf,
0x7f,0x8e,0xf5,0x76,0xf6,0x68,0x9e,0xfb,0x5b,0xac,0x85,0x1,0x30,0xe,0x82,0xa6,
0x22,0xc,0x96,0x87,0x79,0xfd,0x75,0xfb,0xdc,0xcf,0x6b,0xbe,0x9f,0xf4,0xfa,0x7d,
0x0,0x0,0x0,0x6b,0xca,0x20,0xc3,0xbe,0x83,0x85,0x3e,0x67,0x2e,0xbb,0xae,0xbe,
0xa9,0x6e,0xac,0xb9,0xc6,0x55,0xfe,0xda,0x55,0x3f,0x95,0xe7,0xfd,0xc9,0x4,0x1,
0x30,0xb7,0x26,0x68,0xc,0x89,0xab,0x7e,0xd5,0x41,0xb0,0x7d,0xdd,0x35,0x78,0xb8,
0xc0,0x97,0xa,0x79,0x4,0x3f,0x0,0x0,0x30,0x91,0xe2,0xea,0x9f,0x3f,0xe4,0x5b,
0x35,0xec,0xeb,0x8b,0x2b,0x7e,0xa9,0xf5,0xff,0xfa,0xf7,0xba,0xba,0x95,0x36,0xc9,
0xb,0x7d,0xfe,0x62,0xca,0xa5,0xe0,0xa7,0x54,0x8,0x74,0x1d,0xc1,0xed,0xfb,0xc3,
0xdb,0xbd,0x8a,0x9f,0xab,0x22,0x7a,0x7f,0xfc,0xca,0x5f,0x3c,0xdc,0x4b,0xf0,0x3,
0x0,0x0,0x6b,0x4a,0xaa,0xd3,0x37,0x15,0x6,0xe3,0x8,0xe4,0x7,0xbf,0xaa,0xc7,
0xf4,0x66,0x4b,0xdd,0x5a,0xbb,0xa9,0x1d,0x28,0xdb,0xcd,0x1e,0x45,0xf8,0x93,0x29,
0xcd,0xf3,0xf3,0x1b,0x40,0x8c,0x35,0xc5,0xe2,0xcc,0xa5,0x90,0xe7,0x6d,0xd1,0x56,
0x2c,0x19,0xe3,0xba,0x89,0xad,0x82,0x6a,0x1f,0xc1,0xf,0x0,0x0,0xac,0x39,0xa9,
0xb9,0x7f,0xf1,0xfd,0x7e,0x20,0x4c,0x29,0xcd,0xf9,0x4b,0xed,0x17,0xdc,0xb3,0x4d,
0x75,0x2b,0xfb,0x9a,0xf6,0xb1,0xfd,0xf9,0x7e,0x61,0xf0,0x6b,0x2f,0xfb,0xe2,0x55,
0xef,0x6c,0xbb,0x7e,0xd7,0xe,0x75,0x36,0xa8,0xc,0x6,0xfb,0x3,0x47,0xa1,0x32,
0xa8,0xfa,0x11,0xfc,0x0,0x0,0xc0,0x5a,0x17,0x34,0x7d,0x44,0xb7,0x77,0x63,0x6d,
0x79,0x8,0xb8,0x7f,0xaf,0xae,0x1b,0x6b,0x5e,0x5d,0x1c,0xd3,0x1b,0x7a,0xf5,0x43,
0x9b,0x1f,0xe8,0x4a,0x8d,0x1f,0x26,0x4f,0xde,0x1e,0x87,0x3e,0x17,0xfc,0xdc,0x62,
0xce,0xd6,0x86,0xcb,0xba,0x0,0x0,0x0,0xac,0x49,0xa9,0xb9,0x7f,0x55,0x43,0xbe,
0x9d,0xaa,0x7f,0xee,0x7c,0xb8,0xd8,0xf4,0x9a,0xba,0x95,0xbd,0xac,0x7d,0xdc,0x68,
0x87,0xd,0x57,0x5,0xf4,0x66,0xe8,0xf9,0xcb,0xb2,0xc4,0x97,0x4b,0x55,0xc0,0x60,
0xde,0x60,0xfb,0x98,0xee,0x67,0xb9,0x73,0xaa,0x7e,0x0,0x0,0x60,0xaa,0x64,0xad,
0xff,0xc9,0x6c,0xb8,0xec,0x4b,0x4a,0x5c,0xed,0x1b,0x2e,0x2a,0x5d,0x5e,0x2f,0x42,
0x58,0xd4,0xe8,0xe1,0xaa,0x7f,0xc1,0xdc,0x3d,0xaf,0xba,0x57,0x54,0x8,0xbd,0x2a,
0xa1,0xb5,0x61,0xf3,0x46,0xee,0xed,0xcd,0x1b,0xf,0x27,0xa7,0x2a,0x7e,0x4,0x3f,
0x0,0x0,0xb0,0x26,0xc5,0xc3,0xbd,0xbd,0x46,0x1e,0x1b,0x5d,0x1e,0x3e,0x2a,0xad,
0xab,0xbb,0x85,0x95,0x9b,0xc7,0xc,0x83,0x9f,0x5f,0xfd,0xb,0xfe,0xd8,0xb0,0x13,
0xb8,0xb8,0x1e,0x75,0x3,0xa7,0x8e,0x27,0x29,0xc,0x89,0x96,0xc0,0x7,0x0,0x0,
0xa6,0x50,0xaa,0xd2,0xd7,0x6b,0xf5,0x6f,0x70,0x97,0xd7,0x9b,0xc7,0x9,0xc3,0x58,
0x50,0xa9,0x53,0x58,0xf5,0xb,0x86,0x7b,0xfd,0xc7,0xbb,0x63,0x44,0xcb,0xb6,0xc4,
0x97,0xa9,0xfa,0x1,0x0,0x80,0xa9,0x54,0x35,0xf7,0x4f,0xea,0xd2,0xe9,0x9b,0xd8,
0xee,0x6d,0x8,0x45,0xe5,0x2f,0x15,0x0,0xbb,0x55,0xfe,0x82,0xc7,0x7b,0xf3,0xfa,
0x4a,0x95,0x3f,0x3f,0x0,0x5a,0x6f,0xbe,0x1f,0x55,0x3f,0x0,0x0,0x30,0x8d,0x52,
0x3b,0x7b,0x74,0xea,0xf8,0x1d,0x5d,0xe5,0x4f,0xc9,0x39,0x7f,0x61,0xa5,0xae,0xdc,
0xe9,0x1b,0xcf,0xe1,0x4b,0x1d,0xa3,0xf9,0xfa,0xca,0x15,0x40,0xff,0x71,0xed,0xf7,
0x43,0x8,0x4,0x0,0x0,0x53,0xa4,0xdf,0x65,0x5e,0xa4,0x51,0xcd,0xf9,0x6b,0x6e,
0x25,0x5c,0x6a,0xf6,0xf0,0x42,0x5b,0xf3,0x67,0x85,0x7f,0xdc,0x6d,0xc9,0x75,0xfb,
0x8a,0xe3,0x58,0x25,0xab,0x8a,0x54,0xfd,0x0,0x0,0xc0,0xb4,0xea,0x35,0xe8,0xa5,
0xc4,0xcd,0x1f,0x3,0xaa,0x1c,0xf6,0xf5,0xab,0x7e,0xc5,0x5c,0x3e,0x6f,0x7d,0x3e,
0x13,0x2f,0xd9,0xe2,0x3f,0xd7,0xda,0xe8,0xf6,0x70,0x69,0x97,0xf0,0x7d,0x10,0x2,
0x1,0x0,0xc0,0x14,0xea,0x16,0x4,0xab,0xd6,0xf6,0x1b,0x76,0xce,0x5f,0x6a,0x28,
0xd6,0xd,0xeb,0x36,0x8f,0x9f,0x9e,0xf3,0x57,0xdc,0x57,0xa,0x7a,0xe5,0x61,0xdf,
0xe0,0xb1,0xd1,0x90,0x2f,0x0,0x0,0xc0,0x54,0x4a,0xed,0xe9,0xbb,0xc,0x92,0xc3,
0xbe,0x92,0x6b,0x2e,0xe9,0x3c,0xec,0x9b,0xba,0xec,0xc4,0x95,0x44,0x77,0x5b,0xea,
0x1c,0x0,0x0,0x60,0x6a,0x54,0x2d,0xf1,0xb2,0x4c,0x41,0xb0,0x96,0x5c,0x9a,0x25,
0xbe,0xcd,0x26,0x82,0x5d,0xe9,0xf1,0x51,0x48,0xf4,0x2b,0x82,0xcc,0xf3,0x3,0x0,
0x0,0x18,0xde,0x28,0x1a,0x3e,0xe2,0xa,0x9e,0x3b,0x6e,0xb2,0xfb,0xd7,0x7a,0x41,
0x2f,0x35,0xe7,0xcf,0x3b,0x15,0xaf,0xb1,0xa2,0xfa,0x7,0x0,0x0,0x0,0xf5,0xd7,
0xed,0xeb,0x9f,0xf,0xa8,0x56,0x1c,0xcf,0x96,0x2b,0x76,0xcd,0xe3,0x27,0x86,0x7e,
0xab,0xe6,0xfc,0x75,0x18,0x6,0xe,0x5e,0x3b,0xf3,0xfe,0x0,0x0,0x0,0xda,0xba,
0xad,0xf1,0x57,0x4,0xbf,0xe1,0xf3,0x53,0x2d,0x55,0xf5,0x73,0xd7,0x93,0x73,0xfe,
0x6c,0x3a,0x18,0xc6,0xb7,0x75,0x7a,0xc,0x0,0x0,0x0,0xba,0x88,0xa3,0xd3,0x88,
0xa2,0x54,0xd1,0xf0,0x51,0xfe,0x79,0xe5,0xb0,0x17,0xdf,0xdf,0xe9,0x7a,0xa7,0xe3,
0x2,0x0,0x0,0xa0,0x7,0x63,0x88,0x4d,0xed,0x61,0xdf,0x44,0x77,0x6e,0xf5,0xeb,
0x28,0xaf,0xed,0xd7,0xed,0xb1,0xf1,0x65,0x0,0x0,0x0,0x68,0xd9,0x97,0x7b,0xa9,
0xa5,0xe6,0xdf,0x95,0xe6,0xf9,0xf5,0x50,0xc1,0x8b,0xe7,0xf9,0x5,0x8d,0x24,0xcc,
0xf1,0x3,0x0,0x0,0x58,0x15,0x6a,0xfe,0x95,0x60,0xf1,0xe8,0x78,0x79,0x97,0x1e,
0x17,0x68,0xee,0xd6,0xec,0x1,0x0,0x0,0x80,0x95,0x53,0x4b,0x55,0xf7,0xaa,0x2a,
0x78,0xc1,0x6d,0x2c,0xdd,0x2,0x0,0x0,0x30,0x9c,0x7e,0x97,0x79,0x19,0x81,0xa8,
0xf2,0xd7,0xbd,0xc1,0xa3,0xea,0x67,0xa7,0x16,0x83,0x6,0x0,0x0,0xc0,0xea,0x52,
0xab,0xba,0x23,0xd9,0xbd,0xdb,0x47,0xec,0x24,0x8,0x2,0x0,0x0,0x8c,0xc0,0x88,
0x23,0x55,0xad,0x97,0x40,0x57,0x1a,0xf6,0xed,0x71,0xc8,0xb7,0x97,0xe5,0x60,0x0,
0x0,0x0,0xb0,0x7c,0xbc,0xa5,0x5e,0xca,0x7a,0xad,0xde,0x5,0x73,0x4,0xad,0xed,
0xb8,0xf8,0x34,0x15,0x41,0x0,0x0,0x80,0x95,0x53,0x1a,0xf6,0xed,0xb7,0x3a,0xd7,
0x4b,0x98,0xa3,0xe2,0x7,0x0,0x0,0xb0,0x3a,0x54,0xce,0xf9,0x3,0x0,0x0,0xc0,
0xda,0xd3,0x73,0xf8,0xa3,0x7a,0x7,0x0,0x0,0x30,0xf9,0xfa,0xae,0xfc,0x31,0x67,
0xf,0x0,0x0,0x60,0x5,0x8c,0x28,0x82,0xd5,0x24,0x2,0x1d,0x0,0x0,0xc0,0xb4,
0x60,0xce,0x1f,0x0,0x0,0xc0,0x14,0x21,0xfc,0x1,0x0,0x0,0x4c,0x11,0xc2,0x1f,
0x0,0x0,0xc0,0x14,0xe9,0x6b,0x7b,0x37,0x0,0x0,0x0,0x4c,0x36,0x2a,0x7f,0x0,
0x0,0x0,0x53,0x84,0xf0,0x7,0x0,0x0,0x30,0x45,0x8,0x7f,0x0,0x0,0x0,0x53,
0x84,0xf0,0x7,0x0,0x0,0x30,0x45,0xea,0x2b,0xfd,0x2,0x0,0x0,0x18,0xd6,0xf6,
0xd,0xdb,0x74,0xf8,0x96,0x6f,0x6b,0x6e,0xe6,0x55,0xc1,0xed,0x4f,0x9e,0x3d,0x1a,
0x5c,0x7f,0xe1,0xfc,0x8b,0x7a,0xe1,0xfc,0x69,0x1d,0x5b,0x38,0xa1,0x47,0x7f,0xf2,
0xf8,0x72,0xbe,0x44,0x60,0xd5,0x20,0xfc,0x1,0x0,0x26,0xde,0xfe,0x1b,0x1e,0x2c,
0x5,0x3f,0x49,0xba,0x79,0xe3,0x8d,0xe1,0x75,0xb5,0xaf,0x9f,0x5b,0x7a,0x45,0xf3,
0xff,0xeb,0x8a,0xb1,0xbf,0x36,0x60,0xb5,0x61,0xd8,0x17,0x0,0x30,0x95,0x52,0x61,
0x11,0x98,0x6,0x84,0x3f,0x0,0xc0,0xc4,0x3b,0x7c,0xf6,0x48,0xdf,0xcf,0x89,0x87,
0x84,0x81,0x69,0x41,0xf8,0x3,0x0,0x4c,0xbc,0x85,0xa5,0x73,0x7d,0x3f,0x67,0xff,
0x8f,0x3e,0x3f,0x86,0x57,0x2,0xac,0x7e,0x84,0x3f,0x0,0xc0,0xc4,0x3b,0xf6,0xf2,
0x89,0xbe,0x1e,0xff,0xe4,0xd9,0xa3,0x34,0x7c,0x60,0x6a,0x11,0xfe,0x0,0x0,0x0,
0xa6,0x8,0xe1,0xf,0x0,0x30,0xf1,0x6,0x99,0xf3,0x7,0x4c,0x2b,0x96,0x7a,0xc1,
0x48,0xed,0xdc,0x78,0xd3,0x50,0xcf,0x3f,0xb6,0x70,0x42,0xb,0x8b,0xfd,0xcf,0xdd,
0x59,0x6b,0x36,0xaf,0xdf,0xa4,0xcd,0xeb,0xaf,0xea,0xfb,0x79,0xfe,0xe7,0xbf,0xff,
0x47,0x9f,0xe7,0xb3,0x4,0x2a,0x10,0x16,0x31,0xcd,0x8,0x7f,0x18,0x99,0xfd,0x6f,
0x78,0x50,0xf7,0x5c,0x7d,0xd7,0x58,0x7f,0xc6,0x8b,0xe7,0x4f,0xeb,0x85,0xf3,0xa7,
0x3b,0x3e,0xa6,0x97,0x0,0xe9,0x16,0x7a,0x1d,0xc4,0xfc,0xec,0x9c,0xb6,0xcf,0x6f,
0xeb,0xf8,0x98,0x6e,0xe1,0x6d,0xfb,0x86,0x6d,0x63,0x5f,0x66,0x62,0xfb,0x86,0x6d,
0xda,0x75,0xe4,0x9d,0x63,0xfd,0x19,0x0,0x80,0xc9,0x43,0xf8,0xc3,0xc8,0x74,0xb,
0x44,0xa3,0x70,0xd5,0xfa,0x4d,0xba,0x6a,0xfd,0xa6,0x8e,0x8f,0x89,0x17,0x75,0x9d,
0x56,0xf3,0x33,0x73,0x2b,0xfd,0x12,0x80,0x65,0x75,0x7c,0xe1,0xa4,0x5e,0x3f,0x7f,
0xfd,0x4a,0xbf,0xc,0x60,0xd5,0x63,0xce,0x1f,0x0,0x60,0x4d,0x60,0x9a,0x3,0xd0,
0x1b,0x2a,0x7f,0x0,0x80,0x91,0xda,0xbe,0x61,0x9b,0x76,0x5d,0x71,0x5b,0xe5,0xfd,
0xfe,0x7c,0x3b,0xe6,0xf9,0x2,0xcb,0x8f,0xf0,0x7,0x0,0x18,0x99,0xed,0x1b,0xb6,
0xe9,0x99,0xdf,0xfc,0xd7,0x8e,0x8f,0xf9,0x98,0x3e,0x12,0x5c,0x7f,0xf1,0xfc,0x69,
0xed,0x3c,0x74,0xeb,0xc0,0xf3,0x70,0x1,0xf4,0x87,0xf0,0x7,0x0,0x18,0x99,0x17,
0xce,0xbf,0xd8,0xf7,0x73,0xae,0x5a,0xbf,0x69,0xa0,0x1d,0x3a,0x52,0x3f,0xfb,0x66,
0xf5,0x36,0xe7,0x77,0xf3,0xfa,0x4d,0x45,0x77,0xfc,0xc2,0xd2,0xb9,0xbe,0x17,0x89,
0xee,0x45,0x6a,0xf5,0x83,0xed,0x1b,0xb6,0x69,0x7e,0x66,0x4e,0x7,0x4e,0x7d,0x95,
0xb0,0x8b,0x15,0x43,0xf8,0x3,0x0,0x8c,0xcc,0xc2,0xe2,0x39,0xbd,0x78,0xfe,0x74,
0xd7,0xc6,0x2c,0xdf,0xf1,0x85,0x93,0x23,0x19,0xfa,0xed,0x27,0x4c,0xdd,0xb1,0x65,
0xb7,0xee,0xd8,0xb2,0xbb,0xa7,0xc7,0x76,0xda,0x3,0x78,0x7e,0x76,0x6e,0xa0,0x26,
0x13,0xba,0xf1,0xb1,0x92,0x8,0x7f,0x0,0x80,0x91,0x3a,0x7c,0xf6,0x48,0xcf,0xc1,
0x4a,0x92,0xf6,0x3c,0x75,0xe7,0x18,0x5f,0xcd,0xf0,0xc6,0xb1,0x82,0x0,0xdd,0xf8,
0x58,0x49,0x74,0xfb,0x2,0x0,0x46,0xaa,0xdf,0xe1,0xcc,0x71,0xc,0xb9,0x2,0xa8,
0x46,0xf8,0x3,0x0,0x8c,0xd4,0xb1,0x5,0xc2,0x1c,0xb0,0x9a,0x11,0xfe,0x0,0x0,
0x23,0xc5,0xd2,0x2d,0xc0,0xea,0xc6,0x9c,0x3f,0x8c,0xcc,0x81,0x53,0x5f,0x1d,0x7a,
0x6e,0x4c,0xb7,0x89,0xdf,0xbd,0x76,0xe5,0xf5,0xb2,0x7d,0xdb,0x9e,0x3e,0x26,0x7c,
0x3b,0x1f,0x78,0xe6,0xc3,0x1d,0x7f,0x7e,0x2f,0x7b,0xf2,0xf6,0xb2,0x3d,0xdc,0x28,
0xe6,0x18,0x3d,0x7a,0xe6,0xf1,0xa1,0x8f,0x1,0x8c,0xdb,0xb9,0xa5,0x57,0x56,0xfa,
0x25,0x0,0x53,0x87,0xf0,0x87,0x91,0x39,0x70,0xea,0xa0,0x8e,0x2d,0x9c,0x2c,0x4d,
0x64,0x1e,0x66,0x1f,0xdd,0x71,0x4a,0x2d,0xc3,0xd0,0xcd,0xb1,0x97,0x4f,0xac,0xaa,
0xd,0xe1,0xab,0x82,0xe4,0xb8,0x96,0xae,0x0,0x7a,0xd1,0xcf,0x72,0x2f,0xfc,0x9e,
0x2,0xcb,0x8f,0xf0,0x87,0x91,0xe2,0xff,0xc8,0x97,0xd7,0xc2,0xe2,0xb9,0x55,0x15,
0x46,0x1,0xa9,0xff,0x86,0xf,0x0,0xcb,0x8b,0x39,0x7f,0x0,0x0,0x0,0x53,0x84,
0xf0,0x7,0xf4,0x81,0x2a,0x1b,0x0,0x60,0xd2,0x31,0xec,0xb,0x0,0x58,0x13,0xb6,
0x6f,0xe8,0xdc,0x48,0xe5,0x7b,0xf2,0xec,0xd1,0xd2,0x7f,0xcc,0xa5,0xfe,0xe3,0xae,
0xea,0x3f,0xf8,0xaa,0x9a,0xbb,0xdc,0xf6,0x6d,0x55,0xdc,0x5c,0xe3,0xbd,0xcf,0xdc,
0xdb,0xf3,0x6b,0x5,0x46,0x8d,0xf0,0x7,0x0,0x58,0x13,0xfa,0xd9,0x35,0xe3,0xf0,
0xd9,0x23,0xda,0xf7,0xec,0xfd,0x3,0xff,0xac,0x17,0xce,0x9f,0x4e,0xce,0x6d,0x64,
0x74,0x0,0x93,0x80,0x61,0x5f,0x0,0xc0,0xc8,0xbd,0x48,0xd3,0x7,0xb0,0x6a,0x11,
0xfe,0x0,0x0,0x23,0xb7,0x12,0x1d,0xbf,0xf3,0xb3,0xbd,0x57,0xfe,0x36,0xaf,0xdf,
0x34,0xc6,0x57,0x2,0xac,0x6e,0x84,0x3f,0x0,0xc0,0x9a,0xf0,0xfa,0xf9,0xeb,0x7b,
0x7e,0x6c,0xb7,0xc5,0xd8,0x81,0xb5,0x8c,0xf0,0x7,0x0,0x18,0xb9,0x51,0xec,0x52,
0x3,0x60,0x3c,0x8,0x7f,0x0,0x0,0x0,0x53,0x84,0xf0,0x7,0x0,0x98,0x78,0xcc,
0xe1,0x3,0x7a,0x47,0xf8,0x3,0x0,0xac,0x98,0x7e,0x9a,0x34,0x3a,0xe9,0x77,0xe,
0x5f,0x3f,0x6b,0x2,0x2,0x6b,0xd,0xe1,0xf,0x0,0x30,0x52,0xfd,0x54,0xe1,0xfa,
0x69,0xd2,0x18,0xa5,0xb9,0x99,0x57,0xad,0xc8,0xcf,0x5,0x56,0x3,0xc2,0x1f,0xa6,
0x16,0x8b,0xb1,0x2,0xe3,0x41,0x27,0x2d,0xb0,0xba,0x11,0xfe,0x0,0x0,0x0,0xa6,
0x8,0xdb,0xbb,0x1,0x0,0x24,0x35,0xe7,0xdf,0xed,0xbd,0xfa,0xee,0x9e,0x1f,0x7f,
0x6c,0xe1,0x84,0x16,0x16,0xcf,0x95,0x6e,0xdf,0x75,0xe5,0x6d,0xa3,0x7c,0x59,0x3d,
0x59,0x6d,0x73,0xf8,0xe6,0x67,0xe7,0xb4,0x7d,0xbe,0xf3,0x6b,0xaa,0xda,0x1f,0xd8,
0xb7,0xb0,0x74,0x4e,0xfb,0x9f,0xff,0xfc,0x28,0x5f,0x1a,0x40,0xf8,0x3,0x0,0x34,
0x1d,0xd8,0xf1,0x25,0xdd,0x7e,0xc5,0xdb,0x97,0xfd,0xe7,0xda,0x77,0xfe,0x3f,0x9d,
0x5b,0x7a,0x45,0xc7,0x5e,0x3e,0xd1,0xd7,0xf3,0x5e,0x38,0xff,0x62,0xb1,0x93,0xc8,
0xce,0x8d,0x37,0xf5,0xfd,0x73,0x8f,0xbd,0xf5,0xbb,0xc9,0xf0,0xda,0xcd,0xfc,0xec,
0xdc,0xb2,0xce,0x55,0x9c,0x9f,0x99,0x1b,0x6a,0x1f,0x62,0x20,0x46,0xf8,0x3,0x7a,
0xf4,0xe4,0xd9,0xa3,0x2b,0xfd,0x12,0x80,0xb1,0x9a,0x9f,0x19,0x4d,0xe7,0xed,0x20,
0xe6,0x66,0x5e,0xd5,0xf7,0xc2,0xd0,0x37,0x6b,0xb8,0x85,0xa4,0x57,0xaa,0xd9,0x4,
0x58,0x69,0xcc,0xf9,0x3,0x6,0xb4,0xf7,0x9a,0xbb,0x7,0xaa,0x36,0x0,0x0,0xb0,
0x92,0xa8,0xfc,0x1,0x3,0xd8,0xb9,0xf1,0x26,0x7d,0xf6,0x86,0x4f,0x49,0x92,0x5e,
0x3c,0x7f,0x5a,0xfb,0x7f,0xf4,0x5,0x1d,0x38,0xf5,0xd5,0x81,0x86,0x90,0x0,0x0,
0x58,0x4e,0x84,0x3f,0x60,0x0,0x7,0x76,0x3c,0x54,0x5c,0xbe,0x6a,0xfd,0x26,0x7d,
0xf6,0x86,0x4f,0x69,0xdf,0xd6,0xfb,0xb4,0xff,0xf9,0xcf,0x6b,0xff,0x8f,0x3e,0xbf,
0xe6,0x43,0xe0,0xce,0x8d,0x37,0x75,0xad,0x7a,0x56,0x35,0x3,0xa4,0x4c,0xdb,0xb2,
0x3b,0xbd,0x34,0x3,0xf4,0xf2,0xb8,0x63,0xb,0x27,0xf4,0xe8,0x4f,0x1e,0x1f,0xe5,
0x4b,0x3,0x30,0x5,0x8,0x7f,0x40,0x9f,0xf6,0x6d,0xbd,0x4f,0x57,0x25,0x16,0xb1,
0x9d,0x9b,0x79,0x95,0x3e,0xb6,0xf5,0x23,0xda,0x7b,0xcd,0xdd,0x6b,0x3a,0x4,0xee,
0xba,0xf2,0x36,0x3d,0x72,0xe3,0xd7,0x96,0xf5,0x67,0x76,0x6b,0x6,0x58,0x58,0x3a,
0xd7,0xf1,0x7e,0xbf,0x31,0x20,0xb6,0x7d,0xc3,0xb6,0x9e,0xe7,0xba,0xf5,0xda,0xc1,
0x99,0xfa,0xfd,0x18,0x87,0x27,0xcf,0x1e,0x25,0xfc,0x1,0xe8,0x1b,0xe1,0xf,0xe8,
0xc3,0xfc,0xec,0x9c,0xf6,0x5e,0xd3,0x79,0x29,0xc,0x3f,0x4,0xee,0x7d,0xfa,0x43,
0x3a,0x70,0xea,0xe0,0x32,0xbd,0xba,0xe5,0xd1,0x4b,0xc5,0x6a,0xd4,0x7a,0x69,0x6,
0x58,0x89,0x2e,0x55,0x0,0x98,0x44,0x34,0x7c,0x0,0x7d,0xd8,0x7f,0xc3,0x83,0x3d,
0x6f,0xb,0x35,0x37,0xf3,0x2a,0x7d,0x65,0xc7,0x43,0x3a,0xf6,0xd6,0xef,0xd2,0x18,
0x2,0x0,0x58,0x35,0x8,0x7f,0x98,0x5a,0xc7,0x16,0xfa,0x5b,0x53,0x6c,0xf3,0xfa,
0x4d,0xba,0x63,0xcb,0xee,0xbe,0x7f,0xce,0xeb,0xe7,0xaf,0xd7,0xbf,0xdc,0xf2,0x8f,
0xda,0xff,0x86,0x7,0x47,0xb6,0x89,0x3d,0x0,0x0,0x83,0x22,0xfc,0x61,0x6a,0xf5,
0x3b,0x1f,0x6f,0xd8,0x79,0x5c,0xf7,0x5c,0x7d,0x97,0x5e,0xf8,0xad,0x1f,0xae,0xc8,
0xee,0x7,0x0,0x0,0x38,0xcc,0xf9,0x3,0x96,0xd1,0xdc,0xcc,0xab,0xf4,0xc8,0x8d,
0x5f,0xd3,0xc3,0xa7,0xe,0x6a,0xef,0x33,0xf7,0xae,0xc9,0x86,0x10,0x4c,0xae,0x63,
0xb,0x27,0x7a,0x5a,0x68,0xb9,0xd7,0x5,0xcf,0x7b,0xe9,0xe2,0xee,0xb5,0xd3,0xbb,
0x9f,0xee,0x71,0xa9,0xb7,0x46,0x9e,0x5e,0xb6,0x57,0xeb,0xe7,0x71,0xfe,0xcf,0xee,
0x75,0x7a,0x8,0xb0,0x12,0x8,0x7f,0xc0,0xa,0xb8,0x63,0xcb,0x6e,0xed,0xdc,0x78,
0x93,0x76,0x1d,0xfd,0x83,0xbe,0xb7,0xb4,0x2,0xc6,0x65,0xef,0xd3,0xf7,0x6a,0xef,
0xd3,0xf7,0xae,0xf4,0xcb,0x18,0xd8,0x9e,0x2d,0xbb,0xb5,0x67,0xcb,0xbf,0xef,0xf8,
0x18,0x17,0x36,0x8f,0x2d,0x9c,0xd0,0xa3,0x67,0x1e,0xe7,0x3f,0xc0,0x30,0x95,0x8,
0x7f,0xc0,0xa,0xb9,0x6a,0xfd,0x26,0x3d,0xf3,0x9b,0xff,0xaa,0xf,0x3c,0xf3,0x61,
0x36,0x6e,0x7,0x86,0xb4,0xeb,0xca,0xdb,0xf4,0x15,0x6f,0xfd,0xcd,0x2a,0x71,0x65,
0x93,0xbf,0x7f,0x98,0x46,0xcc,0xf9,0x3,0x7a,0xf4,0xcd,0x33,0x4f,0x8c,0x65,0x7f,
0xdf,0xcf,0xde,0xf0,0x29,0x1d,0xd8,0xf1,0x10,0xcd,0x20,0xc0,0x10,0x6,0xad,0xe0,
0xd1,0x89,0x8f,0x69,0x44,0xf8,0x3,0x7a,0x74,0xec,0xe5,0x13,0xda,0x79,0xe8,0x56,
0xbd,0xf9,0xd0,0xdb,0x46,0x1e,0x2,0xef,0xd8,0xb2,0x5b,0x7,0x76,0x7c,0x69,0xa4,
0xc7,0x4,0x56,0xa3,0xf9,0xd9,0x39,0xed,0xdb,0x7a,0x9f,0xe,0xdf,0xf2,0x6d,0xed,
0x7f,0xc3,0x83,0x23,0x6b,0x80,0xea,0xb7,0x7b,0xdf,0xa1,0xea,0x87,0x69,0x44,0xf8,
0x3,0xfa,0x74,0xf8,0xec,0x11,0xed,0x3c,0x74,0xab,0xde,0xf3,0xd4,0x9d,0x3a,0xb7,
0xf4,0xca,0xc8,0x8e,0x7b,0xfb,0x15,0x6f,0xf,0xb6,0x8d,0x3,0xd6,0xa2,0xbd,0x57,
0xdf,0xad,0x8f,0x6d,0xfd,0x88,0x6e,0xde,0x78,0xa3,0xee,0xb9,0xfa,0x2e,0x3d,0x72,
0xe3,0xd7,0xb4,0xf0,0xef,0xce,0x68,0xff,0x1b,0x1e,0xd4,0xf6,0xd,0x83,0x2f,0x20,
0xbe,0xb0,0x78,0xae,0xef,0xbf,0x8f,0x7f,0xf9,0xa3,0x2f,0x8c,0x75,0x6b,0xc1,0x7d,
0x5b,0xef,0xd3,0xfe,0x37,0x3c,0x48,0x75,0x11,0xab,0xe,0x73,0xfe,0x80,0x1,0x1d,
0x38,0x75,0x50,0x8f,0x9e,0x79,0x5c,0xfb,0xb6,0xde,0xa7,0x7b,0xae,0xbe,0x6b,0x24,
0xc7,0xbc,0x63,0xcb,0x6e,0x1d,0x5b,0x38,0xb9,0xaa,0xab,0x11,0xb,0x4b,0xcb,0x37,
0x41,0xfe,0xf8,0xc2,0xc9,0x8e,0xc3,0x79,0xfd,0x76,0x80,0xf6,0xa2,0xd7,0x7d,0x77,
0x7b,0xe9,0x8a,0x45,0xd9,0xe6,0x8a,0xad,0x11,0xef,0xb9,0xfa,0x2e,0xdd,0x73,0xf5,
0x5d,0x3a,0xde,0xfa,0xfd,0x1f,0xa4,0x19,0xe3,0xd8,0xcb,0xbd,0x75,0x2b,0x3b,0xe3,
0xfc,0x7b,0xb6,0x7d,0xc3,0x36,0x7d,0x6c,0xeb,0x47,0x24,0x35,0x97,0x79,0x7a,0xf1,
0xfc,0x69,0xed,0x7b,0xf6,0xfe,0x35,0xb7,0xe3,0xf,0x26,0x13,0xe1,0xf,0x18,0xc2,
0xc2,0xe2,0x39,0xed,0x7d,0xfa,0x5e,0x1d,0x3e,0x7b,0x44,0x7,0x76,0x7c,0x69,0x24,
0xcb,0x3b,0x7c,0xf6,0x86,0x4f,0x69,0x61,0x71,0x61,0xd5,0xfe,0x23,0x71,0xe0,0xd4,
0x57,0x7b,0xda,0xb,0xb7,0xd3,0x7e,0xba,0xce,0x38,0xab,0x2e,0xab,0x41,0x2f,0x15,
0x9f,0x7e,0x97,0x11,0xf1,0x4d,0xe2,0xe7,0xd7,0xed,0x33,0x79,0xfd,0xfc,0xf5,0xfa,
0xca,0x8e,0x87,0xb4,0x7f,0xe9,0x95,0xb1,0xef,0x91,0xdd,0xed,0xf7,0x73,0x18,0xf1,
0xfb,0xbc,0x6a,0xfd,0x26,0x7d,0x65,0xc7,0x43,0xda,0xb7,0xf5,0x3e,0xed,0x7d,0xe6,
0x5e,0xf6,0x64,0xc6,0x8a,0x22,0xfc,0x1,0x23,0xf0,0xe8,0x4f,0x1e,0xd7,0xe6,0xb3,
0xd7,0xea,0xd1,0x1b,0xbf,0x3e,0x92,0x8a,0xd0,0x57,0x76,0x3c,0xa4,0x17,0xce,0x9f,
0x5e,0x95,0xff,0xb8,0x2f,0x2c,0x9e,0xd3,0xbe,0x67,0xef,0x5f,0xe9,0x97,0x31,0x11,
0x56,0xe3,0xf7,0xb7,0x92,0xf6,0x6c,0xd9,0xdd,0xf3,0x62,0xe9,0x6e,0x8f,0xec,0x3d,
0x5b,0x76,0xf7,0xbc,0x24,0xd2,0xe1,0xb3,0x47,0x56,0x4d,0x45,0xb6,0x2a,0xe4,0x5e,
0xb5,0x7e,0x93,0x1e,0xb9,0xf1,0x6b,0x7a,0xf2,0xec,0x51,0xed,0x7b,0xf6,0x7e,0x7e,
0x47,0xb0,0x22,0x98,0xf3,0x87,0xa9,0x76,0x7c,0xe1,0xe4,0xc8,0x8e,0xb5,0xb0,0x78,
0x4e,0x3b,0xf,0xdd,0xaa,0xbf,0xfc,0xd1,0x17,0x46,0x72,0xbc,0x47,0x6f,0xfa,0xfa,
0x50,0x73,0xa0,0x80,0xd5,0x66,0xdf,0xd6,0xfb,0xfa,0x7e,0xce,0x55,0xeb,0x37,0xd,
0xf4,0xbc,0x95,0xb4,0x79,0xfd,0x26,0xdd,0x7e,0xc5,0xdb,0x3b,0x3e,0xe6,0xe6,0x8d,
0x37,0xea,0x5f,0x6e,0xf9,0x47,0x3a,0xfd,0xb1,0x22,0x8,0x7f,0x98,0x6a,0xe3,0x18,
0x4e,0xda,0xfb,0xf4,0xbd,0x7a,0xcf,0x53,0x77,0xe,0x7d,0x9c,0xb9,0x99,0x57,0xe9,
0xf0,0x2d,0xdf,0x26,0x0,0x62,0x4d,0xe8,0xa7,0xea,0xe7,0x3b,0xbe,0x70,0x52,0x7b,
0x9e,0x7a,0xdf,0x18,0x5e,0xd1,0xf8,0xec,0xbd,0xe6,0xee,0x9e,0x1f,0x7b,0xc7,0x96,
0xdd,0x6c,0xfb,0x88,0x65,0x47,0xf8,0x3,0xc6,0xe0,0xc0,0xa9,0x83,0xba,0xe1,0x9f,
0x7e,0x63,0xe8,0x6e,0xe0,0xb9,0x99,0x57,0x51,0x19,0xc0,0xc4,0x9b,0x9f,0x9d,0xd3,
0xfe,0x37,0xfc,0x79,0xdf,0xcf,0x3b,0xbe,0x70,0x52,0x3b,0xf,0xdd,0xda,0xf3,0x7f,
0xa4,0xad,0x86,0x21,0xd4,0xf9,0xd9,0xb9,0xae,0xbb,0x8c,0xc4,0xdc,0xb6,0x8f,0x74,
0xfb,0x63,0xb9,0x10,0xfe,0x80,0x31,0x71,0xeb,0x2,0xe,0x1b,0x0,0x5f,0x3f,0x7f,
0xbd,0xf6,0xdf,0xf0,0xe0,0x88,0x5e,0x15,0xb0,0xfc,0xf6,0x5e,0x7d,0x77,0xdf,0xcd,
0x50,0xfd,0x6,0xbf,0xd5,0x62,0x90,0xf7,0xea,0xb8,0x6d,0x1f,0x81,0x71,0x23,0xfc,
0x1,0x63,0x74,0xec,0xe5,0x13,0xda,0xfc,0xad,0x6b,0x87,0x9a,0x5b,0x78,0x7c,0xe1,
0xa4,0xf6,0x3e,0x33,0xb9,0xfb,0xad,0x62,0xba,0xf9,0x4b,0x9e,0xf4,0x2c,0xbf,0x7a,
0xec,0x0,0x0,0x17,0xe3,0x49,0x44,0x41,0x54,0xea,0xdc,0xd2,0x2b,0x13,0x19,0xfc,
0xe6,0x67,0xe7,0xfa,0x1a,0xf2,0x8d,0x1d,0x5f,0x38,0x39,0xf0,0x62,0xd5,0x40,0x3f,
0x8,0x7f,0xc0,0x98,0xb9,0x46,0x90,0x41,0x2,0xe0,0xa4,0x56,0x3f,0x0,0x67,0x90,
0xaa,0xf5,0xbe,0x67,0xef,0x9f,0xc8,0xdf,0xf9,0xfd,0x37,0x3c,0x38,0x70,0xd5,0x8f,
0xbf,0xeb,0x58,0x4e,0x84,0x3f,0x60,0x19,0xc,0x12,0x0,0xf9,0xc7,0x0,0x93,0x6e,
0xef,0x35,0x77,0xf7,0xbd,0xf4,0xca,0x93,0x67,0x8f,0xe,0xbc,0xf8,0xf2,0x4a,0xce,
0xf9,0xdb,0xbe,0x61,0x9b,0xee,0xd8,0xb2,0x7b,0xa0,0xe7,0xf2,0x77,0x1d,0xcb,0x8d,
0xf0,0x7,0xf4,0x68,0xd8,0xa6,0x8b,0x7e,0x2,0xe0,0xc3,0xa7,0xe,0x6a,0xfb,0x77,
0xde,0xc4,0x3f,0x6,0x98,0x58,0xdb,0x37,0x6c,0xeb,0x7b,0x89,0x96,0x73,0x4b,0xaf,
0x4c,0x5c,0x67,0xaf,0x33,0xe8,0xbc,0x5c,0xfe,0xae,0x63,0x25,0x10,0xfe,0x30,0xd5,
0xfa,0x59,0x46,0xa5,0x97,0x2d,0xbf,0xba,0x71,0x1,0xf0,0xe1,0xe,0xbb,0x77,0x3c,
0x7c,0xea,0xa0,0xf6,0x8c,0x60,0xa9,0x18,0x60,0x25,0x1d,0xd8,0xf1,0x50,0xdf,0x43,
0xa0,0x7b,0x9e,0x7a,0xdf,0x58,0x77,0xdd,0xf0,0x3d,0x79,0xf6,0xe8,0xc8,0x8e,0xb5,
0xeb,0xca,0xdb,0x6,0x5a,0x5c,0xfa,0x9b,0x67,0x9e,0xe0,0xef,0x3a,0x56,0x4,0x3b,
0x7c,0x60,0xaa,0x8d,0x62,0x3b,0xb6,0x7e,0x2d,0x2c,0x9e,0x2b,0xfe,0xf,0x3f,0x1e,
0x26,0x7a,0xcf,0x53,0x77,0xae,0xda,0x6d,0xdd,0x80,0x5e,0xed,0x7f,0xc3,0x83,0x7a,
0xfd,0xfc,0xf5,0x7d,0x3d,0xe7,0xe1,0x53,0x7,0x27,0x72,0xcb,0xb3,0xf9,0xd9,0x39,
0x1d,0xd8,0xf1,0xa5,0x81,0x9e,0xbb,0xf7,0xe9,0xf,0x8d,0xf8,0xd5,0x0,0xbd,0xa1,
0xf2,0x7,0xac,0x90,0x3d,0x4f,0xdd,0xa9,0x6f,0x9e,0x79,0xa2,0xb8,0x4e,0xf0,0xc3,
0x5a,0xb0,0xeb,0xca,0xdb,0x74,0xcf,0xd5,0x77,0xf5,0xf5,0x9c,0x49,0xee,0x68,0x1f,
0x74,0x4f,0xef,0x87,0x4f,0x1d,0x5c,0xb6,0x2a,0x27,0x10,0x23,0xfc,0x1,0x2b,0x68,
0xcf,0x53,0xef,0xd3,0x37,0xcf,0x3c,0xa1,0x1b,0xfe,0xe9,0x37,0x8,0x7e,0x98,0x78,
0xdb,0x37,0x6c,0x1b,0xa8,0xa,0xb6,0xe7,0xa9,0x3b,0x27,0x72,0xce,0xdb,0xae,0x2b,
0x6f,0xeb,0xba,0x8d,0x5b,0xca,0xb9,0xa5,0x57,0x26,0x36,0xec,0x62,0x6d,0x60,0xd8,
0x17,0x58,0x41,0xb,0x8b,0xe7,0xb4,0xeb,0xc8,0x3b,0x57,0xfa,0x65,0x0,0x43,0x6b,
0xe,0x7f,0xf6,0x3f,0xcf,0xef,0x3,0xcf,0x7c,0x58,0xc7,0x5e,0x9e,0xbc,0xb5,0xed,
0x36,0xaf,0xdf,0x34,0xf0,0x70,0xef,0xa4,0x2e,0x65,0x83,0xb5,0x83,0xca,0x1f,0x0,
0x60,0x68,0x87,0x6f,0xf9,0x76,0xdf,0xf3,0xfc,0xbe,0x79,0xe6,0x89,0x81,0x97,0x75,
0x59,0x69,0x8f,0xde,0xf4,0xf5,0x81,0x86,0x7b,0x8f,0x2f,0x9c,0x9c,0xd8,0xf7,0x8c,
0xb5,0x83,0xf0,0x7,0x0,0x18,0xca,0x81,0x1d,0xf,0xf5,0x1d,0xfc,0x5e,0x3c,0x7f,
0x7a,0xe4,0xcb,0xba,0xf4,0xb3,0x1c,0xd3,0x30,0x4b,0x37,0xd,0xd2,0xd0,0xe2,0xd0,
0xdd,0x8b,0xd5,0x80,0xf0,0x7,0x0,0x18,0xd8,0x81,0x1d,0xf,0xd,0xb4,0xb8,0xf1,
0xae,0xa3,0x7f,0x30,0xf2,0xa1,0xcf,0x7e,0x96,0x63,0x1a,0x38,0xbc,0x6d,0xd9,0xdd,
0x77,0x43,0x8b,0xf3,0xf1,0x67,0x1f,0x98,0xc8,0x21,0x6e,0xac,0x3d,0x84,0x3f,0x0,
0xc0,0x40,0x6,0xd,0x7e,0x93,0x3a,0xcf,0x6f,0xfb,0x86,0x6d,0xfa,0xca,0x8e,0x87,
0x6,0x7a,0xee,0xf1,0x85,0x93,0xda,0xf7,0xec,0xfd,0x23,0x7e,0x45,0xc0,0x60,0x8,
0x7f,0x0,0x80,0xbe,0xd,0x1a,0xfc,0x1e,0x3e,0x75,0x70,0x22,0xe7,0xbc,0x6d,0xdf,
0xb0,0x4d,0x87,0x6f,0xf9,0xf6,0x40,0xcf,0x3d,0xb7,0xf4,0xa,0x8d,0x5d,0x58,0x55,
0xe8,0xf6,0xc5,0xd4,0xda,0xbc,0x7e,0xd3,0x4a,0xbf,0x4,0x60,0xe2,0xcc,0xcf,0xce,
0xd,0xd4,0xdc,0x21,0x8d,0x7f,0x3d,0xbf,0x71,0xfd,0x9d,0x9e,0x9f,0x9d,0xd3,0xa3,
0x37,0x7e,0x6d,0xe0,0x45,0xe1,0xf7,0x3e,0xfd,0x21,0xd6,0xf4,0xc3,0xaa,0x42,0xe5,
0xf,0x53,0x6b,0xf3,0xfa,0xab,0x56,0xfa,0x25,0x0,0x13,0x65,0xfb,0x86,0x6d,0x3a,
0xf6,0x9b,0xdf,0x1d,0x28,0xf8,0xb9,0xea,0xd7,0x38,0x97,0x38,0xe9,0xf7,0xef,0x74,
0x2f,0xdb,0x3b,0xba,0xb0,0x7b,0xd5,0x80,0xc1,0xf2,0xe1,0x53,0x7,0x59,0xc3,0x13,
0xab,0xe,0xe1,0xf,0x0,0xd0,0xd5,0x9e,0x2d,0xbb,0x87,0xa,0x41,0x3b,0xf,0xdd,
0xba,0xea,0xaa,0x5f,0xf3,0x33,0x9d,0x3b,0x7e,0x87,0xa9,0x72,0x4a,0x93,0xbd,0x73,
0x9,0xd6,0x36,0x86,0x7d,0x1,0x0,0x95,0xe6,0x67,0xe7,0xb4,0xff,0x86,0x7,0x7,
0x9a,0xdf,0xe7,0xbc,0xe7,0xa9,0x3b,0x97,0xa5,0xc1,0x63,0x98,0xe5,0x5b,0x52,0xc7,
0x1a,0x26,0xf8,0x2d,0x47,0xa5,0x13,0x18,0x14,0xe1,0xf,0xe8,0x51,0x2f,0x43,0x44,
0xc0,0x5a,0xd2,0xdc,0xae,0xad,0xff,0x35,0xfc,0x7c,0xcb,0xb9,0x67,0x75,0x3f,0x4b,
0xbd,0x74,0x32,0x6c,0xf0,0x93,0xa4,0x5d,0x47,0xde,0xb9,0xea,0x2a,0x9d,0x80,0xc3,
0xb0,0x2f,0xd0,0xa3,0x41,0x27,0x7b,0x3,0x93,0x68,0xef,0x35,0x77,0xf,0x1d,0x80,
0x96,0x33,0xf8,0xd,0x62,0xe7,0xc6,0x9b,0x4a,0xb7,0x6d,0x5e,0xbf,0x69,0x24,0xef,
0xfb,0xf0,0xd9,0x23,0xc3,0xbc,0x34,0x60,0xac,0xa8,0xfc,0x1,0x0,0x2,0x3b,0x37,
0xde,0xa4,0x7d,0x5b,0xef,0x1b,0xea,0x3f,0x78,0x56,0x7b,0xf0,0x4b,0x71,0xcb,0xb9,
0xc,0xf3,0xbe,0x69,0xf0,0xc0,0x24,0xa0,0xf2,0x7,0x0,0x8,0x1c,0x3e,0x7b,0x44,
0x9b,0xbf,0x75,0xad,0xfe,0xf2,0x47,0x5f,0x18,0xe8,0xf9,0x2b,0x15,0xfc,0x86,0x59,
0xea,0x65,0xd7,0x95,0xb7,0x8d,0x24,0xf8,0xb1,0x7d,0x1b,0x26,0x1,0xe1,0xf,0x0,
0x50,0xb2,0xb0,0x78,0x4e,0x7b,0x9f,0xbe,0x57,0x5b,0xbe,0x75,0x9d,0x1e,0xee,0x31,
0xc8,0x9d,0x5b,0x7a,0x65,0x45,0x2b,0x7e,0xfd,0x76,0x22,0xbb,0x6,0x91,0x7d,0x5b,
0xef,0xd3,0x23,0x43,0xac,0xe3,0x27,0x35,0x3b,0x7b,0x9,0x7e,0x98,0x14,0x84,0x3f,
0x0,0x40,0xa5,0x17,0xce,0x9f,0xd6,0x9e,0xa7,0xee,0xd4,0x96,0x6f,0x5d,0xa7,0x27,
0xcf,0x1e,0xad,0x7c,0xdc,0xb9,0xa5,0x57,0xb4,0xf3,0xd0,0xad,0x13,0x35,0xe4,0xb9,
0x73,0xe3,0x4d,0x7a,0xf4,0xa6,0xaf,0xeb,0x63,0x5b,0x3f,0x32,0xd4,0x71,0x8e,0x2f,
0x9c,0xd4,0xce,0x43,0xb7,0x8e,0xe8,0x55,0x1,0xe3,0x47,0xf8,0xc3,0xd4,0xa2,0x7b,
0x17,0xe8,0xdd,0xb,0xe7,0x4f,0x6b,0xe7,0xa1,0x5b,0xf5,0xe6,0x43,0x6f,0xd3,0x8b,
0x51,0x17,0xeb,0xf1,0x85,0x93,0xda,0xfc,0xad,0x6b,0x27,0x6e,0xbf,0xde,0xd7,0xcf,
0x5f,0xaf,0xdb,0xaf,0x78,0xfb,0x50,0xc7,0x70,0xc1,0x8f,0x25,0x5d,0x30,0x49,0x68,
0xf8,0xc0,0xd4,0xea,0xb6,0xc0,0x2b,0x80,0xb2,0xe6,0x7c,0xc0,0xeb,0xb4,0x6f,0xeb,
0x7d,0xda,0x75,0xe5,0x6d,0x7a,0xf4,0x27,0x8f,0x6b,0xdf,0xb3,0xf7,0xaf,0xf4,0xcb,
0x92,0x24,0xbd,0xf9,0xd0,0xdb,0x92,0x1d,0xbc,0xb1,0x3d,0x5b,0x76,0xf,0xbc,0x58,
0xb5,0x8f,0xe0,0x87,0x49,0x45,0xf8,0x3,0x0,0xf4,0x6d,0xdf,0xb3,0xf7,0xaf,0x9a,
0xd0,0xe7,0x1c,0x3e,0x7b,0xa4,0xe3,0x12,0x2b,0x9b,0xd7,0x6f,0xd2,0x81,0x1d,0x5f,
0x22,0xf8,0x61,0xea,0x31,0xec,0xb,0xf4,0x61,0x5c,0x1b,0xc7,0x3,0x18,0x9f,0xf9,
0xd9,0x39,0xed,0xdb,0x7a,0x9f,0x4e,0xfd,0xd6,0x73,0xba,0x79,0xe3,0x8d,0x43,0x1f,
0x8f,0xe0,0x87,0x49,0x47,0xe5,0xf,0xe8,0xc3,0xe6,0xf5,0x57,0xb1,0x6a,0x3f,0x30,
0x21,0xe6,0x67,0xe7,0xb4,0xf7,0xea,0xbb,0xb5,0xf7,0x9a,0xbb,0x47,0xb6,0x48,0xfb,
0xc3,0xa7,0xe,0x6a,0xef,0x33,0xf7,0x12,0xfc,0x30,0xd1,0x8,0x7f,0x0,0x80,0x35,
0x65,0x1c,0xa1,0x4f,0x62,0x1d,0x3f,0xac,0x1d,0x84,0x3f,0x0,0xc0,0x9a,0xb0,0x7d,
0xc3,0x36,0xed,0xbd,0xfa,0x2e,0xdd,0xb1,0x65,0xf7,0xc8,0x8f,0xfd,0x81,0x67,0x3e,
0xac,0xfd,0xcf,0x7f,0x7e,0xe4,0xc7,0x5,0x56,0x2,0xe1,0xf,0x0,0x30,0xb1,0x36,
0xaf,0xdf,0xa4,0x5d,0x57,0xfe,0x96,0xf6,0x5e,0x7d,0xd7,0x48,0x1a,0x39,0x62,0xe7,
0x96,0x5e,0xd1,0xde,0xa7,0x3f,0x34,0x51,0xeb,0x17,0x2,0xdd,0x10,0xfe,0x0,0x0,
0x13,0x65,0xe7,0xc6,0x9b,0xb4,0xeb,0xca,0xdb,0xb4,0xeb,0x8a,0xdb,0xc6,0x12,0xf8,
0x1c,0xb7,0x70,0xf5,0xa4,0xad,0x5f,0x8,0x74,0x43,0xf8,0xc3,0xd4,0xea,0x65,0x3d,
0x30,0x0,0x2b,0x6b,0x7e,0x76,0x4e,0xdb,0xe7,0xb7,0x69,0xe7,0xc6,0x9b,0xb4,0x73,
0xe3,0x4d,0x23,0xe9,0xd6,0xed,0xc5,0x93,0x67,0x8f,0x6a,0xd7,0xd1,0x77,0xd2,0xd8,
0x81,0x35,0x89,0xf0,0x7,0x0,0x58,0x71,0x9b,0xd7,0x6f,0xd2,0xe6,0xf5,0x57,0x15,
0xe7,0x3b,0x37,0xde,0xa4,0xcd,0xeb,0x37,0x8d,0xb5,0xb2,0x57,0xe5,0xe3,0xcf,0x3e,
0xb0,0xea,0xd6,0x30,0x4,0x46,0x89,0xf0,0x7,0xf4,0x61,0xfb,0x86,0x6d,0x1d,0x17,
0x91,0x5,0xa6,0xc5,0xfc,0xec,0x9c,0xe,0xec,0xf8,0x92,0xe6,0x67,0xe6,0xfa,0xfe,
0x3b,0xe1,0x2,0x9e,0xd4,0xfc,0x3b,0x35,0xca,0x8e,0xdc,0x61,0x1c,0x5f,0x38,0xa9,
0x3d,0x4f,0xdd,0xc9,0x30,0x2f,0xd6,0x3c,0xc2,0x1f,0xd0,0x7,0xb6,0x84,0x3,0x9a,
0x76,0x5d,0x71,0x5b,0xb1,0x2f,0xee,0x72,0xd,0xc5,0x8e,0x13,0xd5,0x3e,0x4c,0x13,
0x76,0xf8,0x0,0x0,0xf4,0xed,0xc0,0xa9,0x83,0x7a,0xf2,0xec,0xd1,0x95,0x7e,0x19,
0x43,0x7b,0xf2,0xec,0x51,0x6d,0xf9,0xd6,0x75,0x4,0x3f,0x4c,0x15,0xc2,0x1f,0x0,
0x60,0x20,0x7b,0x9e,0x7a,0xdf,0x4a,0xbf,0x84,0x81,0x1d,0x5f,0x38,0xa9,0x37,0x1f,
0x7a,0x9b,0x76,0x1e,0xba,0x95,0x5d,0x7b,0x30,0x75,0x8,0x7f,0x0,0x80,0x81,0xbc,
0x70,0xfe,0xb4,0x3e,0xfe,0xec,0x3,0x2b,0xfd,0x32,0xfa,0xf2,0xe2,0xf9,0xd3,0x7a,
0xcf,0x53,0x77,0x6a,0xfb,0x77,0xde,0xc4,0xfc,0x5d,0x4c,0x2d,0xc2,0x1f,0xa6,0xd6,
0xf6,0xd,0xdb,0x56,0xfa,0x25,0x0,0x13,0x6f,0xdf,0xb3,0xf7,0xeb,0xc5,0x9,0xa8,
0x9c,0x3d,0x79,0xf6,0xa8,0x7e,0xe7,0xe8,0x1f,0x68,0xf3,0xb7,0xae,0x63,0xc1,0x66,
0x4c,0x3d,0x1a,0x3e,0x30,0xb5,0x6,0xe9,0x30,0x9c,0x9f,0xa5,0xe1,0x3,0x88,0xed,
0x79,0xea,0x4e,0xfd,0xcb,0x2d,0xff,0xb8,0xd2,0x2f,0x23,0xe9,0xe1,0x53,0x7,0x75,
0xe0,0xd4,0x41,0xaa,0x7c,0x80,0x87,0xf0,0x7,0xf4,0x61,0xfb,0x3c,0xd5,0x42,0x20,
0x76,0xf8,0xec,0x11,0x7d,0xf3,0xcc,0x13,0x45,0xf7,0xef,0x4a,0x3b,0xbe,0x70,0x52,
0x7,0x4e,0x1d,0xd4,0x81,0x53,0x5f,0x65,0x91,0x66,0x20,0x81,0xf0,0x7,0x0,0x18,
0xda,0xde,0xa7,0x3f,0xb4,0xa2,0xe1,0xef,0xc5,0xf3,0xa7,0xf5,0xe8,0x99,0xc7,0x75,
0xe0,0xd4,0x41,0xd6,0xe9,0x3,0xba,0x20,0xfc,0x1,0x0,0x86,0xf6,0xc2,0xf9,0xd3,
0x7a,0xf8,0xd4,0x41,0xdd,0xb1,0x65,0xf7,0xb2,0xfd,0x4c,0x57,0xe1,0x3b,0x7c,0xf6,
0x8,0x81,0xf,0xe8,0x3,0xe1,0xf,0x53,0x69,0xd0,0x66,0xf,0xe6,0xfc,0x1,0xd5,
0xe,0x8c,0x39,0xfc,0x1d,0x5f,0x38,0xa9,0xc3,0x67,0x8f,0x14,0x27,0x86,0x74,0x81,
0xc1,0x10,0xfe,0x80,0x3e,0xb8,0x2d,0xa9,0x0,0x94,0x1d,0x3e,0x7b,0x44,0x2f,0x9e,
0x3f,0x3d,0x92,0xfd,0x78,0xcf,0x2d,0xbd,0xa2,0x63,0x2f,0x9f,0x68,0x56,0xf5,0x16,
0x4e,0x10,0xf6,0x80,0x11,0x22,0xfc,0x61,0x2a,0x1d,0x7b,0xf9,0x84,0x3e,0xfe,0xec,
0x3,0xda,0xb9,0xf1,0xa6,0xbe,0x9e,0xb7,0xf7,0x99,0x7b,0xc7,0xf4,0x8a,0x80,0xb5,
0xe1,0xc0,0xa9,0x83,0xfa,0xd8,0xd6,0x8f,0xf4,0xfc,0x78,0xb7,0x4b,0xc8,0xb1,0x85,
0x13,0x7a,0xe1,0xfc,0x69,0x1d,0x7b,0xf9,0x84,0x8e,0x2d,0x9c,0x20,0xe8,0x1,0x63,
0x94,0x7d,0xe8,0xd8,0x9f,0x59,0x6b,0xad,0xac,0x24,0x2b,0x2b,0x63,0x8d,0xac,0xac,
0x72,0x9b,0xcb,0x5a,0x2b,0x23,0xa3,0xdc,0xe6,0xca,0x6d,0x2e,0x63,0x8d,0x1a,0x26,
0x2f,0xae,0x37,0x6c,0x43,0x4b,0x66,0xa9,0x75,0xde,0xbc,0xbc,0x68,0x16,0xb5,0xd8,
0x3a,0xbf,0x64,0x2e,0x69,0xd1,0x2c,0xea,0x62,0x7e,0x49,0x97,0xcc,0x25,0x5d,0xcc,
0x2f,0xea,0x52,0xbe,0xd8,0x3c,0xb6,0xec,0x4a,0xbf,0x77,0x0,0xc0,0x18,0xcc,0xcf,
0xce,0x75,0xec,0x8c,0x27,0xdc,0x1,0x92,0xac,0x24,0x23,0x69,0xc9,0x4a,0x17,0x25,
0xfd,0xc2,0xb6,0x4e,0xad,0xcb,0x17,0x5a,0x97,0x2f,0xb4,0x6e,0xbf,0xd0,0xba,0x7c,
0xc9,0x4a,0x4b,0xad,0xe7,0xf,0xe6,0x28,0x95,0x3f,0x0,0xc0,0x48,0x2d,0x2c,0x9e,
0x63,0x5d,0x3d,0x60,0x15,0x63,0x87,0xf,0x0,0x0,0x80,0x29,0x42,0xf8,0x3,0x0,
0x0,0x98,0x22,0x84,0x3f,0x0,0x0,0x80,0x29,0xd2,0x57,0xf8,0xb3,0xb6,0xf3,0xec,
0x42,0x9a,0x38,0x0,0x0,0x0,0x56,0x37,0x2a,0x7f,0x0,0x0,0x0,0x53,0xa4,0xaf,
0xf0,0x97,0x65,0x59,0xe7,0xfb,0xd5,0xf9,0x7e,0x0,0x0,0x0,0xac,0xac,0x91,0xe,
0xfb,0x2,0x0,0x0,0x60,0x75,0x1b,0xe9,0xb0,0x2f,0x73,0xfe,0x0,0x0,0x0,0xc6,
0x68,0x4,0x51,0x8b,0x39,0x7f,0x0,0x0,0x0,0x53,0x84,0xf0,0x7,0x0,0x0,0x30,
0x45,0x8a,0xf0,0x97,0x1a,0xb2,0x65,0x18,0x17,0x0,0x0,0x60,0x5,0x8d,0x21,0x8a,
0x5,0x95,0x3f,0xd7,0xd0,0xe1,0x37,0x76,0x74,0x6a,0xf2,0x20,0x1c,0x2,0x0,0x0,
0x4c,0x96,0xd2,0xb0,0x2f,0x81,0xe,0x0,0x0,0x60,0x15,0x1a,0x51,0x44,0xab,0xd,
0x7a,0x2c,0x42,0x22,0x0,0x0,0xc0,0x90,0x56,0x20,0x4e,0xd5,0x46,0xb1,0x76,0x1f,
0x31,0x10,0x0,0x0,0x60,0x40,0xd6,0x3b,0xf9,0xb7,0x75,0xbb,0x3c,0xa0,0x70,0xce,
0x5f,0xeb,0x88,0xa5,0xf3,0x11,0x2e,0xee,0xdc,0x6d,0x97,0x10,0x0,0x0,0x0,0x68,
0xe4,0xa1,0xcf,0xa9,0x35,0x83,0xe6,0xe8,0x9a,0x3a,0xe2,0xe0,0x8,0x0,0x0,0x80,
0x3e,0xf8,0x55,0xc0,0xe2,0x7c,0x74,0xb9,0xaa,0xbd,0xd4,0x4b,0x74,0xd0,0x4e,0xd7,
0x53,0x15,0xc1,0x5e,0xc2,0x1e,0x7b,0xff,0x2,0x0,0x0,0x44,0x52,0x61,0x4f,0x6a,
0x7,0xbe,0xd4,0x7d,0x43,0xa8,0xf9,0xa1,0xcd,0xca,0xca,0x5a,0xab,0xd2,0x6d,0x5e,
0x35,0xaf,0x97,0xca,0x1e,0x55,0x3f,0x0,0x0,0x80,0x1,0xc4,0x73,0xff,0xc6,0xa0,
0x72,0x91,0xe7,0x6e,0xd7,0xfd,0xdb,0x47,0x39,0x27,0x10,0x0,0x0,0x60,0x2a,0xa5,
0xe2,0x54,0x3c,0xef,0x6f,0x54,0xd,0x1f,0x7e,0xb5,0x2f,0xa8,0xfa,0xd9,0xf0,0x36,
0x37,0x3f,0x90,0xc0,0x7,0x0,0x0,0x30,0x46,0xf1,0x50,0xf0,0x48,0x1b,0x3e,0xfc,
0xe0,0x67,0xdb,0xc1,0xce,0x1f,0xe2,0x75,0xf7,0x75,0x7c,0x8d,0x84,0x41,0x0,0x0,
0x80,0xfe,0xa4,0x3a,0x7a,0x6d,0x87,0x53,0xfc,0x9c,0x1,0xd4,0x52,0xf3,0xf8,0xaa,
0x42,0x9f,0xb5,0xb6,0x38,0xb9,0xc7,0xc5,0xf3,0x3,0x53,0x68,0xf4,0x0,0x0,0x0,
0x68,0x29,0x75,0xf2,0x7a,0x97,0x8d,0xed,0xbc,0xc6,0xdf,0x28,0x86,0x7d,0x2b,0xab,
0x7e,0x5e,0xf5,0x6f,0xa4,0xeb,0xfc,0x11,0x4,0x1,0x0,0x0,0xda,0xaa,0x16,0x79,
0xf6,0x4f,0x66,0x74,0x3f,0xae,0x72,0xce,0x5f,0xdc,0xe1,0x9b,0x6a,0x0,0xa9,0x1a,
0x22,0xae,0xe2,0x7,0x3f,0x42,0x20,0x0,0x0,0x98,0x6a,0x55,0xbb,0x7a,0x4,0xc1,
0xcf,0xa6,0x2b,0x84,0x43,0xa8,0xc5,0x15,0xbe,0xf8,0x5c,0x72,0xe1,0x30,0xc,0x82,
0xa9,0xb0,0xd7,0x6b,0x85,0x90,0x5d,0x3e,0x0,0x0,0xc0,0x54,0x4a,0xe,0xf9,0x7a,
0x1,0xcf,0xc4,0xf7,0xa9,0x5d,0xf9,0x1b,0xd1,0x48,0x6c,0x2d,0xe,0x7e,0xcd,0x9f,
0xe5,0x55,0xfd,0x82,0x0,0x18,0x6,0xbf,0xb8,0x1b,0x38,0xbe,0xec,0xa3,0xd2,0x7,
0x0,0x0,0xd0,0x92,0xea,0xe6,0xf5,0x77,0xf3,0x30,0x8a,0x82,0x9f,0x46,0x52,0xf5,
0x93,0x5c,0xf8,0xf3,0x82,0x9d,0xb1,0x26,0x38,0x8f,0xc3,0x5e,0xaa,0xe9,0xa3,0xfd,
0x3e,0x18,0xfa,0x5,0x0,0x0,0x48,0x8a,0x63,0x52,0x1c,0x0,0x8d,0xc2,0xa0,0x57,
0xd5,0xed,0x3b,0xa4,0xae,0xc3,0xbe,0xf1,0x90,0x6f,0xf8,0x9a,0x5b,0xf7,0x25,0x96,
0x8b,0xe9,0x84,0xd0,0x7,0x0,0x0,0xa6,0x96,0xf5,0x2e,0xc4,0x95,0xbd,0x78,0xa8,
0xd7,0xd,0xf7,0xfa,0xc3,0xc1,0x43,0xaa,0x9b,0x56,0xfb,0x48,0x51,0xe9,0xb3,0x56,
0x46,0xa6,0x79,0xee,0xdf,0x16,0x55,0x2,0xe3,0x4e,0x60,0xd6,0xf9,0x3,0x0,0x0,
0xa8,0x90,0xea,0xe4,0xd,0x42,0x9f,0x8d,0x42,0x5f,0x7c,0x3d,0x71,0x9c,0x1,0xd5,
0xe3,0xca,0x9f,0xb,0x7e,0xed,0x61,0xe0,0xb0,0xaa,0x17,0x84,0xc0,0xe,0x43,0xbf,
0xbd,0xc,0x1,0x4b,0xcd,0x2a,0x60,0xaf,0x8f,0x5,0x0,0x0,0x58,0x13,0xe2,0xf9,
0x7e,0xa6,0xcb,0x69,0x84,0xcb,0xbd,0xa4,0x2b,0x7f,0xd6,0x78,0xaf,0xa7,0x79,0xdd,
0xc8,0x94,0xe6,0xfe,0x49,0xed,0xa6,0x90,0x54,0x23,0x88,0x2f,0x53,0x56,0x74,0xf9,
0x32,0xec,0xb,0x0,0x0,0xa6,0x46,0xa7,0xe5,0x5c,0x82,0x80,0x67,0xa3,0xd0,0x67,
0xc3,0xfb,0x46,0xa4,0x5c,0xf9,0x2b,0x1a,0x3e,0xc2,0x6,0x10,0x77,0x9f,0xb,0x81,
0xa9,0x65,0x5f,0xe2,0xd0,0x97,0xc,0x81,0x59,0x26,0xd9,0xe6,0x39,0x43,0xc5,0x0,
0x0,0x60,0xaa,0xf8,0xc3,0xbd,0xa9,0xca,0x5e,0xa7,0xd3,0x68,0x9c,0xb,0x2b,0x7f,
0x45,0xe0,0x2b,0x77,0xfe,0x16,0xa1,0xcf,0x85,0x40,0x6b,0x9a,0x8f,0x8b,0xb6,0x7a,
0x1b,0x64,0x2e,0x20,0x43,0xbf,0x0,0x0,0x60,0x4d,0xf2,0xe3,0x8d,0x1f,0xe0,0xdc,
0x9c,0x3e,0x57,0xdd,0xcb,0x5b,0x27,0xbf,0xda,0x97,0x4b,0xca,0x6d,0xf3,0x7c,0x94,
0xdd,0xbe,0xc6,0x9a,0x9f,0xe7,0x26,0x6f,0xcd,0xf7,0xeb,0x10,0xfc,0x12,0x95,0xbf,
0xe6,0x7b,0xa,0xc3,0x5e,0x8a,0x3f,0xdc,0xeb,0x86,0x7c,0x19,0xfa,0x5,0x0,0x0,
0x6b,0x5a,0x6a,0xb8,0xb7,0x5b,0xa5,0xcf,0x5,0x40,0x17,0x6,0x73,0x8d,0xba,0xf2,
0xf7,0x52,0xcd,0x5a,0xfb,0x33,0x23,0xab,0xdc,0x55,0xf3,0x54,0x3e,0x2f,0x1a,0x41,
0x82,0xa1,0x61,0x95,0xbb,0x82,0x65,0x8b,0x21,0xe9,0x78,0x69,0x98,0x20,0x0,0xba,
0xcb,0x19,0x6b,0xfe,0x1,0x0,0x80,0x35,0xa8,0xe3,0x9a,0x7e,0x89,0xb9,0x7d,0x7e,
0xc8,0x6b,0xa8,0x5d,0xf1,0x73,0xd5,0xbf,0xd1,0x79,0xa9,0x96,0x5b,0xf3,0x92,0xb,
0x77,0x6e,0x38,0x37,0xb7,0x79,0xf2,0x3c,0x1e,0xfe,0x8d,0x77,0x5,0xe9,0xb6,0xcf,
0x2f,0xd,0x1f,0x0,0x0,0x60,0xea,0x54,0x2d,0xe4,0xec,0x2,0x9f,0xab,0xf6,0x35,
0xd4,0x3c,0x8d,0x71,0xc8,0x57,0xd2,0xcf,0x6a,0x46,0xe6,0xc7,0xa5,0x90,0x97,0xa8,
0xfe,0x5,0xe7,0xd6,0x86,0x81,0xd0,0x9b,0x2f,0x28,0xf5,0x3e,0xcf,0xaf,0x97,0xdb,
0x0,0x0,0x0,0x26,0x4a,0xa7,0x35,0xfd,0xdc,0x5c,0xbf,0x78,0x78,0xd7,0x55,0xfb,
0x5c,0xe5,0xcf,0x9d,0x5c,0x40,0x1c,0x9d,0xd3,0x75,0x63,0xcd,0xe9,0xd4,0x1a,0x7f,
0xf1,0x36,0x6f,0x7e,0x17,0x70,0x55,0xc7,0x6f,0xdc,0x1d,0x5c,0x35,0x1f,0xd0,0x9f,
0xf7,0x47,0xa3,0x7,0x0,0x0,0x58,0x33,0x52,0xc1,0xcf,0x1f,0xee,0xf5,0xab,0x7f,
0x79,0xe2,0xd4,0xb0,0x5e,0x18,0xd4,0xa8,0x87,0x7c,0x25,0xe9,0xc7,0x75,0x63,0xcd,
0xf3,0x71,0xe8,0x93,0xbc,0xf9,0x7c,0xc5,0x79,0x3b,0x20,0xc6,0xc3,0xc3,0xed,0xea,
0x5f,0xf7,0x45,0x9e,0xb3,0x4c,0xc1,0x7,0x13,0x2f,0xf9,0x42,0x20,0x4,0x0,0x0,
0x13,0x29,0x35,0xcf,0xcf,0x9d,0xc7,0x4d,0x1d,0x6e,0x48,0xb7,0x61,0xc3,0xc0,0xd7,
0x90,0xb4,0x64,0x9b,0xf7,0x37,0x34,0xea,0x21,0x5f,0x49,0x7a,0xbe,0x9e,0xdb,0xfc,
0x58,0xa7,0xd0,0x57,0xb5,0xf4,0x8b,0x3f,0x44,0xdc,0xb9,0xfa,0x7,0x0,0x0,0xb0,
0xc6,0xc5,0x81,0xc7,0x78,0xe7,0xf1,0x82,0xcd,0x2e,0x0,0xfa,0xc3,0xbb,0x4b,0xb6,
0x75,0x72,0xd7,0xd5,0x1e,0x6,0x1e,0x9d,0x33,0xf6,0xb9,0xc6,0x4b,0xf5,0xdc,0xe6,
0x3f,0xb4,0xb2,0xb9,0x95,0x5d,0xd7,0x4b,0xe8,0x2b,0x96,0x7f,0xf1,0xe6,0x0,0x36,
0x83,0x60,0xfb,0xf6,0x4e,0xd5,0xbf,0x62,0xc8,0xb7,0xb5,0xd8,0x33,0xf1,0x10,0x0,
0x0,0x4c,0xb4,0x4e,0xc1,0xcf,0xdf,0xb7,0xb7,0x8,0x7d,0xae,0xb9,0xc3,0xb6,0x83,
0x5e,0x10,0x2,0x5b,0xb7,0xe5,0x23,0x7f,0xa5,0x3f,0x90,0xa4,0x5a,0x6e,0xf3,0xb,
0xc6,0x9a,0x1f,0xe4,0x36,0xf7,0xba,0x7b,0xdd,0x29,0x2f,0xd,0xed,0x16,0x61,0x2f,
0xe,0x7e,0x2a,0x2f,0x4,0x5d,0x15,0x2,0x59,0xe2,0x5,0x0,0x0,0xac,0x9,0xdd,
0x82,0x5f,0x69,0xd1,0x66,0x45,0x55,0x3f,0x2f,0x0,0x16,0xa7,0xd6,0x50,0xb0,0x49,
0x1c,0x7f,0x38,0xdf,0x97,0x9a,0xe1,0x4f,0xb9,0xcd,0x8f,0xe6,0x89,0xd0,0xe7,0x77,
0x1,0x57,0xdd,0x66,0xa2,0x79,0x80,0xc9,0x7d,0x80,0x13,0x4d,0x1f,0x3e,0x3f,0xc,
0x2,0x0,0x0,0xac,0x7a,0xa9,0xb9,0x78,0xa9,0x8a,0x5f,0x1c,0xfc,0xfc,0xaa,0xdf,
0x92,0xa4,0x45,0xb5,0x87,0x7c,0x17,0xbd,0xdb,0x46,0x5f,0xf5,0x93,0xa4,0xa3,0x92,
0x54,0x6b,0x2d,0xf0,0x7c,0x28,0x15,0xf2,0x72,0x9b,0xab,0x61,0x1b,0xc9,0xdb,0x5d,
0x85,0x30,0xac,0x0,0x7a,0xcb,0xbe,0x78,0x3b,0x82,0xa4,0x50,0xf1,0x3,0x0,0x0,
0x13,0x29,0xd5,0xd8,0x91,0xaa,0xf8,0xf9,0xeb,0xf8,0xb9,0x26,0x8f,0xa0,0xca,0x67,
0x9b,0x41,0x6f,0x51,0xd2,0xa5,0xd6,0xf9,0xe2,0xd8,0xaa,0x7e,0x17,0xd4,0xaa,0xfc,
0xd5,0x73,0x9b,0xcb,0x5a,0x7b,0xc8,0xca,0x5e,0x30,0xd6,0x5c,0xd6,0x69,0x99,0x17,
0x7f,0x2e,0xa0,0xb,0x7d,0xc1,0x1c,0x40,0x7f,0x2e,0xa0,0x8c,0xd7,0xd9,0x6c,0x2b,
0x87,0x80,0xdd,0xfd,0xed,0xcf,0x8f,0x39,0x80,0x0,0x0,0x60,0x15,0x4a,0x45,0x14,
0xbf,0x2,0x58,0x2c,0xe0,0x9c,0x6a,0xee,0xb0,0xe5,0x79,0x7d,0xae,0xea,0x77,0xa9,
0x55,0xf5,0xbb,0x64,0xc7,0x59,0xf5,0x3b,0x64,0x9f,0x6b,0x5c,0x90,0xa4,0x7a,0x6e,
0x72,0x59,0xd9,0xb,0x56,0xf6,0x90,0xb1,0xe6,0xed,0xdd,0xd6,0xf8,0xeb,0xd8,0x0,
0xd2,0xa,0x7e,0xcd,0xea,0xa0,0x37,0x34,0xec,0xcd,0x5,0x94,0xba,0x87,0xc1,0xe2,
0xc3,0xac,0x42,0xd1,0x10,0x0,0x0,0x2c,0xa7,0x54,0x2e,0x31,0xde,0x7d,0xc5,0x72,
0x2e,0x51,0x73,0x87,0x1f,0xfc,0xfc,0x6a,0xdf,0xa5,0x56,0xd8,0xbb,0xa8,0x66,0xd5,
0xef,0xa2,0xda,0x95,0xbf,0xd1,0x57,0xfd,0x24,0xe9,0x31,0x77,0xa1,0x59,0xf9,0x6b,
0xfe,0xf9,0x9f,0xc6,0x9a,0xb7,0x77,0xb,0x7c,0xa9,0xd0,0x17,0x77,0x0,0xe7,0xd1,
0xf0,0x6f,0xb0,0xff,0x6f,0xeb,0xcd,0xf8,0x1,0xd0,0xb1,0xb2,0xbd,0xbd,0x59,0xff,
0x31,0x4,0x41,0x0,0x0,0x30,0x2e,0xbd,0x54,0xfb,0xdc,0xb9,0x1f,0xfc,0xdc,0x36,
0x6d,0x7e,0xf0,0x5b,0xb4,0xed,0x80,0xe7,0x2,0xdf,0x45,0xdb,0x3c,0xb9,0xaa,0xdf,
0x78,0x82,0x5f,0x2e,0xe9,0x1b,0xee,0x4a,0x11,0xfe,0x8c,0x35,0x4f,0x84,0x43,0xbf,
0xdd,0x76,0xfa,0x8,0xcf,0x5b,0xc3,0xc7,0x32,0x8a,0xb6,0x7e,0x8b,0xba,0x80,0xdd,
0x9f,0xe6,0x67,0xe7,0x55,0x3,0x7b,0xd,0x7e,0x31,0x82,0x20,0x0,0x0,0x18,0xb5,
0x6e,0xa1,0xcf,0xaf,0xf6,0xc5,0x4b,0xb9,0xa4,0x86,0x7a,0x5d,0xf0,0xbb,0xd4,0xa,
0x7e,0x97,0x6c,0x3b,0xf8,0x5d,0x54,0xf3,0xb4,0x34,0x60,0x16,0xea,0xee,0x9f,0xed,
0x73,0x8d,0x97,0xdc,0x15,0x3f,0xfc,0xbd,0x64,0x65,0xbf,0x61,0xac,0x7d,0x77,0x11,
0xe6,0xe2,0x90,0x17,0xec,0xf8,0x51,0xde,0x1,0xc4,0xf,0x82,0xa5,0x61,0x60,0x93,
0x17,0x15,0xc1,0x78,0xe,0x61,0xf0,0x41,0xfa,0xe7,0x52,0x39,0xd0,0x75,0xa,0x78,
0x4,0x41,0x0,0x0,0x30,0xa8,0xaa,0xe0,0x95,0xa,0x7d,0x45,0xf8,0xf3,0x82,0x5f,
0xb2,0xab,0x57,0x61,0xc5,0xef,0xa2,0xa4,0xb,0x56,0xfa,0x85,0xbb,0xac,0x66,0x0,
0x1c,0xdf,0x70,0xaf,0x24,0xfd,0xb5,0x7f,0xc5,0xb,0x7f,0x56,0x56,0xf6,0xcb,0xc6,
0x9a,0x77,0xa7,0x9a,0x39,0xaa,0xab,0x7e,0xa,0x97,0x78,0x89,0x97,0x7e,0x91,0x69,
0x7,0x3f,0xaf,0xa,0xe8,0xc2,0x64,0xf0,0x81,0x4a,0xdd,0xdf,0xb4,0xbb,0x3f,0x8b,
0xce,0xab,0x1e,0xe7,0x10,0x6,0x1,0x0,0x40,0xac,0x53,0xee,0xe8,0x27,0xf4,0xf9,
0xdb,0xb6,0xb9,0x7d,0x79,0x83,0x8e,0xde,0x56,0xc5,0xef,0x82,0x17,0xfa,0x7e,0x61,
0x5b,0xd7,0x5b,0x9d,0xc1,0xe3,0x9,0x7e,0x3f,0x95,0xf4,0x88,0x7f,0x43,0x3d,0xf,
0x3,0xdd,0xd1,0xdc,0xe6,0xdf,0xb7,0xb2,0xbf,0xee,0x87,0xbe,0xf6,0x90,0x6e,0xb9,
0xca,0x57,0x3d,0xfc,0xeb,0x77,0x0,0xdb,0xa2,0xf1,0xc3,0x55,0x5,0xdb,0xad,0xd0,
0x89,0xf,0xd8,0x97,0x29,0x1d,0xdc,0xdc,0xed,0x9d,0x42,0x9e,0x7f,0x99,0x26,0x62,
0x0,0x0,0x50,0x25,0x35,0xfa,0x18,0x7,0x3e,0xbf,0x68,0x55,0xb5,0x57,0xaf,0x5b,
0xc0,0xd9,0xdf,0xa9,0xc3,0xcd,0xe7,0xbb,0xd8,0xa,0x7b,0x17,0x24,0x9d,0xf7,0xaa,
0x7f,0xd,0x8d,0x33,0xa7,0x7c,0xce,0x3e,0xd7,0x8,0xfa,0x87,0xeb,0xf1,0xf0,0x6e,
0x6e,0xf3,0x4f,0x5a,0x6b,0xbf,0x19,0x57,0xef,0x3a,0x55,0xf9,0x6c,0xb4,0xf4,0x4b,
0xab,0x83,0xb8,0xb4,0x0,0xb4,0xb,0x86,0xc5,0x87,0x93,0xaa,0xfc,0x55,0x49,0xd,
0xff,0x66,0xd1,0x1d,0xdd,0xaa,0x81,0x55,0xc7,0x1a,0xf4,0x31,0x0,0x0,0x60,0xf5,
0xe8,0x35,0x40,0x75,0x1d,0xde,0xb5,0x61,0xe8,0x93,0xc2,0xa2,0x55,0x31,0xbf,0xcf,
0x46,0x73,0xfc,0xd4,0xa5,0xc1,0xa3,0x15,0xfc,0xdc,0xb0,0xef,0x2f,0x34,0xce,0x79,
0x7e,0x52,0xf3,0xa7,0x7d,0x39,0xbe,0x31,0x15,0xfe,0x1e,0x33,0xd6,0x9c,0xb4,0xb2,
0xd7,0xc7,0x4d,0x1c,0x71,0xc8,0x2b,0x5,0xc1,0xe2,0xb2,0xda,0x4b,0xbc,0xd8,0xf6,
0x73,0xdb,0xdd,0x2f,0x51,0xa9,0x54,0xea,0x1e,0x2,0x2b,0x2b,0x80,0xb6,0xba,0x32,
0x98,0xba,0xc,0x0,0x0,0xd0,0xa9,0xd2,0xe7,0x5f,0xe,0x2a,0x7d,0x36,0xac,0xf8,
0xc5,0x55,0xbf,0xd4,0xfe,0xbc,0x7e,0xd5,0xcf,0xf,0x7f,0xae,0xc1,0x63,0x7c,0xf3,
0xfc,0x24,0xe9,0xcb,0xf6,0xb9,0xc6,0xcf,0xe2,0x1b,0x53,0xe1,0x4f,0xc6,0x9a,0x4f,
0x58,0xd9,0xbf,0xf7,0x1b,0x34,0x82,0xca,0x5e,0x1c,0x4,0xad,0x95,0x3f,0x7c,0xec,
0x57,0xfb,0x8a,0xd0,0xe7,0x3e,0x1c,0xbf,0x13,0xa6,0xd8,0xfe,0x44,0xed,0x2a,0x60,
0xaf,0x8a,0x2a,0x5f,0x45,0xb2,0x23,0xfc,0x1,0x0,0x80,0x58,0x2a,0xf4,0x49,0x61,
0xe,0x31,0x89,0xf3,0x60,0xa8,0x37,0xaa,0xf8,0x75,0x5a,0xc4,0xd9,0xaf,0xfa,0xf9,
0x4b,0xbb,0xb8,0xa1,0xde,0xf1,0x5,0xbf,0x9f,0x4b,0xfa,0x54,0xea,0x8e,0xaa,0xf0,
0xf7,0x88,0xb1,0xf6,0x98,0x91,0xd9,0x1e,0x87,0xbf,0xd2,0x65,0x6f,0xe8,0x37,0x38,
0x96,0x3f,0xbc,0x6b,0xa2,0xd0,0xe7,0x82,0xa0,0x9f,0xa6,0xfb,0x6d,0xfc,0x90,0x5a,
0xa1,0xae,0x8f,0x4f,0x8d,0x10,0x8,0x0,0xc0,0xf4,0xe8,0xb5,0x89,0xb4,0xaa,0xda,
0xe7,0x8a,0x53,0xa5,0xf0,0xa7,0x76,0xbe,0x71,0xcd,0x1d,0xf1,0x90,0x6f,0xb0,0x98,
0xb3,0x5a,0x6b,0xf9,0xb5,0xae,0xe7,0xd1,0xcf,0x1d,0x8f,0xcf,0xd8,0xe7,0x1a,0x3f,
0x4d,0xdd,0x51,0x8f,0xe7,0xef,0xb5,0xaa,0x7d,0xb9,0xb1,0xe6,0x7d,0x46,0xe6,0xbb,
0xc6,0x9a,0x75,0xfe,0x92,0x2d,0x71,0xe8,0x8b,0x87,0x7e,0x6d,0x10,0xf4,0x2a,0x42,
0x5f,0x5c,0x32,0x8d,0xc3,0x9f,0x3f,0xde,0xe,0x0,0x0,0x30,0xac,0x52,0xa5,0xaf,
0xc3,0x79,0x5c,0x9c,0x8a,0xb7,0x6c,0x8b,0x73,0x4d,0x6a,0xc8,0xb7,0x98,0xef,0xa7,
0x76,0x0,0x1c,0xff,0x30,0xaf,0xf3,0x63,0x49,0x9f,0xac,0xba,0xb3,0xee,0xcf,0xcd,
0xf3,0xe7,0xf6,0xe5,0x36,0xff,0xbe,0x91,0xf9,0x72,0x6e,0xf3,0x3f,0x29,0xed,0xdb,
0xdb,0x9a,0xdf,0xe7,0x3f,0xb7,0x63,0xe8,0x73,0x2b,0x5c,0xc7,0x1f,0x58,0xbc,0x1a,
0x76,0x29,0x0,0x4a,0x7d,0x57,0x3,0x7b,0x45,0xb0,0x4,0x0,0x60,0x7a,0xa4,0xfe,
0xdd,0xf,0x72,0x47,0x34,0xec,0x9b,0xa,0x80,0xae,0xc9,0xc3,0x2a,0xec,0xec,0x75,
0xcb,0xbb,0xa4,0x86,0x7c,0xdd,0xfe,0xbd,0xb9,0x96,0x2b,0xf8,0x49,0xd2,0x5e,0xfb,
0x5c,0x63,0xb1,0xea,0xce,0xec,0x57,0xbe,0xb5,0xb5,0xb2,0x92,0x97,0xdb,0xfc,0xd5,
0xb9,0xcd,0xff,0xaf,0xb1,0xe6,0xd5,0xf1,0x92,0x2d,0xc1,0x9c,0xbe,0xaa,0xe1,0xdd,
0x54,0x27,0x4c,0xfc,0x58,0xbf,0xf2,0x17,0x8f,0xb1,0xa7,0xe6,0x1,0x56,0x8d,0xd5,
0x77,0xd2,0x6b,0xd9,0x17,0x0,0x0,0xac,0x5d,0x7d,0x37,0x79,0xd8,0x30,0xf8,0xf9,
0x27,0x57,0xd4,0x2a,0x86,0x7d,0xbd,0x26,0xf,0x37,0xe4,0xeb,0xc2,0xe0,0xf2,0x85,
0x3e,0x49,0x7a,0xcc,0x3e,0xd7,0xb8,0xbd,0xd3,0x3,0xea,0xc5,0x3e,0xbc,0x4a,0xee,
0xcc,0xf1,0x92,0xb1,0xe6,0xfd,0xb9,0xcd,0xf,0xc6,0xd5,0x3e,0x63,0x8d,0x17,0xea,
0x6c,0x18,0xee,0xe2,0xf,0x26,0x8,0x7e,0x51,0x18,0x2c,0x3e,0x54,0x9b,0x9e,0x60,
0x29,0xa5,0x27,0x44,0x76,0x9a,0x24,0x59,0x15,0x18,0x1,0x0,0xc0,0xda,0x66,0x13,
0xff,0xe8,0x57,0x55,0xfd,0x9c,0x38,0x6f,0xf8,0x55,0xbf,0xa2,0x40,0x65,0xa3,0xe2,
0x96,0xc2,0x8a,0x9f,0x9b,0xf3,0xe7,0x2,0x60,0xc3,0xb,0x7d,0xcb,0x97,0x43,0x5e,
0x92,0x74,0x57,0xb7,0x7,0xd5,0x93,0x8b,0x32,0xab,0xbd,0x25,0x9b,0x91,0xf9,0xbb,
0xdc,0x9a,0x9b,0x8d,0x35,0xef,0x4d,0xae,0xd5,0xe7,0x7f,0x18,0x6e,0x13,0x63,0x37,
0x1,0x32,0x18,0xe6,0xb5,0x51,0xe5,0x4f,0xe9,0xf9,0x7f,0x52,0x75,0x17,0x70,0x55,
0x52,0x57,0x74,0x7f,0xa7,0xf,0x99,0x60,0x8,0x0,0xc0,0x74,0xa9,0xca,0x7,0x7e,
0x96,0x30,0x36,0xbc,0x2d,0x5e,0xd7,0xcf,0x9f,0xae,0xe6,0xe7,0x99,0x46,0x22,0x0,
0xfa,0xcf,0x5b,0x5e,0x7f,0x68,0x9f,0x6b,0x9c,0xe9,0xf6,0xa0,0x7a,0x65,0xd5,0xcf,
0xb8,0x1d,0x39,0x8c,0x8c,0x35,0x7b,0x73,0x9b,0xdf,0x68,0xac,0xb9,0xd6,0x16,0x6f,
0x3a,0xaa,0xf6,0xa5,0x6e,0xab,0xa,0x7d,0xa9,0xf9,0x7f,0x7e,0x79,0x35,0x9e,0x3,
0x18,0x7c,0x39,0xde,0xab,0x8f,0x3,0xa0,0xb,0x8b,0x29,0x83,0xc,0x17,0x3,0x0,
0x80,0xd5,0xaf,0xd7,0x91,0x40,0xff,0xf6,0x54,0x41,0x29,0xae,0xfa,0xf9,0x4d,0x1e,
0x71,0xc5,0xcf,0x15,0xbd,0x5c,0xb1,0x6b,0x65,0x43,0x9f,0x24,0xfd,0x85,0x7d,0xae,
0xf1,0x44,0x2f,0xf,0xc,0x96,0x7a,0xa9,0x8,0x7e,0xca,0x6d,0x7e,0xc1,0x58,0xf3,
0xbb,0x36,0xb7,0xff,0x47,0x46,0x97,0x7,0xe1,0xad,0x6a,0x38,0x37,0xde,0xea,0x24,
0x15,0xfc,0xfc,0x14,0x9d,0x9a,0xff,0x57,0x54,0x2,0x5b,0x9f,0x62,0x6a,0x18,0x38,
0xf5,0x5,0xaa,0xe2,0xb6,0xaa,0xeb,0xdd,0x6e,0x7,0x0,0x0,0x93,0xa7,0xd3,0xbf,
0xff,0xf1,0xc8,0x62,0x32,0xfc,0xc9,0xcb,0x27,0x89,0x9c,0xe3,0x6e,0x8b,0xb,0x55,
0xcb,0xef,0x7b,0x92,0xfe,0xac,0xd7,0x7,0x97,0x97,0x7a,0x31,0x6e,0x4e,0x9f,0x37,
0xc7,0xcf,0x1a,0xd9,0xdc,0x3e,0x2f,0xa3,0xdd,0x6a,0xd8,0x7f,0x50,0xae,0x75,0xed,
0x49,0x8e,0x15,0xc3,0xb9,0x41,0x30,0xec,0x70,0x5b,0x6a,0x12,0xa5,0x1f,0x6,0x53,
0x5f,0x48,0xfc,0x21,0xfb,0x15,0xbf,0x6e,0xe1,0xaf,0xdb,0xb8,0x3f,0x0,0x0,0x98,
0xc,0xbd,0xfe,0xfb,0xdd,0xa9,0x48,0x54,0x1a,0x61,0x8c,0x46,0x21,0xab,0x32,0x8a,
0xbb,0xbf,0x9f,0xd7,0x31,0x1e,0x67,0x24,0xfd,0x5e,0xa7,0xee,0xde,0x58,0xbd,0x53,
0xf0,0x2b,0x3a,0x7a,0xdd,0x1b,0x6d,0xd8,0xc7,0x94,0xeb,0xfd,0xca,0xf5,0x85,0xd2,
0xda,0x36,0xa9,0xf5,0x6e,0xe2,0x6a,0x9f,0x5f,0x1a,0x4d,0xa5,0xe7,0xd4,0xda,0x7f,
0x41,0xbb,0xb5,0xed,0x10,0xfe,0x94,0xfe,0x42,0xfd,0xf3,0xf8,0x72,0xac,0xb2,0x22,
0x48,0x3a,0x4,0x0,0x60,0xa2,0xa5,0x32,0x41,0xa7,0x46,0xf,0x3f,0x7b,0xc4,0xc5,
0xa8,0xf8,0x38,0x2b,0xe7,0x67,0x92,0xfe,0x4d,0x2f,0xf3,0xfc,0x7c,0xed,0x39,0x7f,
0xa6,0x39,0xfc,0x6b,0xad,0x8a,0x8a,0x5f,0xd8,0xdc,0x51,0x84,0xb3,0x2f,0x2a,0xd7,
0x9c,0x72,0xfb,0x40,0x10,0xf2,0x52,0xd5,0xbd,0xb8,0xd,0x3a,0x59,0x1,0xf4,0x86,
0x81,0xbb,0xa5,0xeb,0x8e,0x55,0xc0,0x68,0x68,0x58,0xa,0xbf,0x24,0xa9,0xb7,0x2f,
0x8c,0xca,0x20,0x0,0x0,0x6b,0x4f,0x2a,0x13,0xa4,0x46,0x10,0x53,0x81,0xd0,0x7f,
0xce,0xea,0x71,0x41,0xd2,0x6d,0xf6,0xb9,0xc6,0xf3,0xfd,0x3e,0xb1,0x6e,0xbc,0xa5,
0x5e,0x82,0x75,0xfc,0xe4,0xad,0xe1,0xe7,0xaf,0xdf,0xd7,0x1c,0xea,0xfd,0x94,0x72,
0x5d,0xa1,0x86,0xfe,0x43,0x10,0xe2,0xe2,0x90,0x57,0x54,0xfa,0x14,0x4e,0x8e,0x8c,
0xc3,0x61,0x3c,0xff,0x2f,0xde,0xfb,0x37,0x18,0x2,0x4e,0x24,0xf0,0xaa,0x4a,0x60,
0x7c,0x59,0xfe,0x6d,0xab,0xeb,0x1b,0x4,0x0,0x0,0x43,0xea,0xa7,0x80,0x53,0x15,
0x4,0x7b,0x79,0xee,0xca,0x5b,0x94,0xf4,0xbb,0xf6,0xb9,0xc6,0xf7,0x7,0x79,0x72,
0xdd,0xf,0x7e,0x2e,0xf4,0x15,0x8b,0x37,0xc7,0xdd,0x2d,0xe1,0x9a,0x7d,0xef,0x97,
0xd1,0x4b,0xca,0xf5,0xd1,0xca,0xe0,0xe7,0x87,0xbc,0x6e,0x15,0xc1,0x78,0x22,0x65,
0xa7,0xf9,0x7f,0xf1,0x65,0xa9,0xdc,0xa2,0xed,0xa4,0x82,0x5f,0xd5,0x7d,0x0,0x0,
0x60,0xba,0x4c,0x5e,0x16,0xf8,0xb9,0x9a,0x15,0xbf,0x27,0x7,0x3d,0x40,0x3d,0x8,
0x7e,0xad,0xd0,0x17,0x84,0x3f,0xbf,0x8b,0x37,0xe,0x63,0xb9,0x3e,0xa6,0xdc,0xfe,
0x54,0xb9,0xfe,0x4a,0xb9,0xd6,0x95,0x16,0x3c,0x4c,0xcd,0x1,0x2c,0x5,0x45,0xef,
0x31,0xf1,0xce,0x20,0x55,0x73,0x0,0xe3,0xb9,0x7f,0x52,0x75,0x6a,0xf7,0x4d,0xde,
0x17,0xc,0x0,0x0,0xe0,0xfc,0x54,0xd2,0xad,0x92,0x8e,0xd,0x73,0x90,0xba,0xb,
0x7e,0x2e,0xf4,0x19,0x35,0x2b,0x81,0xc9,0x61,0xd7,0xdc,0x46,0xd5,0x3f,0xeb,0xe6,
0x0,0xfe,0x4c,0x46,0x7,0x95,0xdb,0xd9,0x9e,0x83,0x5f,0xaa,0x53,0x38,0x5e,0x32,
0xa6,0x6a,0xfe,0x5f,0xd5,0x50,0x2e,0x0,0x0,0xc0,0xda,0xf4,0x63,0x49,0xff,0x56,
0xd2,0xa9,0x61,0xf,0x54,0x6b,0x36,0x79,0xd8,0x22,0xf4,0x85,0xc3,0xbd,0xb6,0x1c,
0x0,0x93,0x8b,0x1d,0xea,0x1b,0xca,0xed,0x9b,0x94,0xeb,0x54,0x10,0x14,0x5d,0xc8,
0x73,0x2b,0x5e,0xc7,0x2b,0x60,0x17,0x9b,0x20,0xab,0xb9,0xf7,0x9d,0xdb,0x16,0xc5,
0xbf,0x7d,0xd1,0xb6,0xee,0x53,0x79,0x2e,0x60,0x55,0x10,0x4,0x0,0x0,0x58,0x3b,
0x1e,0x93,0xf4,0x6b,0x1a,0x41,0xf0,0x93,0xa4,0x9a,0x9b,0xf3,0x67,0xad,0x6d,0x87,
0xbf,0x4e,0xdd,0xb5,0xa9,0xe1,0xdf,0x66,0x8,0xfc,0x81,0x72,0x6d,0x53,0x43,0xdf,
0x28,0xaf,0xfd,0x17,0x55,0x0,0x1b,0x51,0x30,0x2c,0xed,0x8d,0xa7,0x76,0x18,0xcc,
0x13,0xaf,0x5,0x0,0x0,0x60,0xed,0x5b,0x94,0xb4,0x57,0xd2,0xed,0x92,0xce,0x8d,
0xea,0xa0,0x35,0xb7,0xbb,0x47,0x11,0xfc,0xa4,0x56,0xd8,0xf2,0x1a,0x28,0x52,0x61,
0x2f,0xbd,0x28,0xf3,0xcf,0x65,0xf4,0x7b,0x32,0x7a,0xbf,0x8c,0x2e,0x74,0x6c,0xfe,
0x88,0x87,0x82,0x83,0x8a,0x20,0xa1,0xf,0x0,0x0,0x4c,0xb5,0x53,0x92,0xde,0x24,
0xe9,0x2f,0x47,0x7d,0xe0,0x9a,0x6d,0xa5,0xaa,0x56,0xdd,0x2f,0x5c,0xdf,0xa6,0x97,
0x5d,0x36,0xd2,0x41,0xf0,0x73,0x32,0xba,0x4e,0x46,0x8f,0x95,0xe6,0x8,0xc6,0xf3,
0xfb,0xfc,0x39,0x82,0x7e,0x57,0x30,0x81,0xf,0x0,0x0,0x4c,0x9f,0xb,0x92,0x3e,
0x21,0xe9,0x3a,0x49,0x3f,0x18,0xc7,0xf,0xa8,0x95,0x86,0x7b,0xa5,0x70,0xa1,0x64,
0x29,0xbd,0xa0,0xb2,0xbf,0xcc,0x4a,0xbc,0x4,0x4b,0x33,0xf0,0x9d,0x92,0xb1,0xb7,
0x2b,0xd7,0xed,0xca,0x75,0x2a,0xd9,0xd8,0x91,0x6a,0xe,0xf1,0xc3,0x26,0x0,0x0,
0xc0,0xf4,0xf8,0x8e,0xa4,0x6d,0x92,0x3e,0xa6,0x66,0x8,0x1c,0x8b,0x9a,0xd4,0xac,
0xfa,0x15,0x7a,0x59,0x3a,0xc5,0xbf,0xcf,0x5f,0x76,0x45,0x4a,0xd,0xb,0x3f,0xd6,
0xac,0x2,0xda,0x3f,0x95,0xd1,0xcf,0xca,0x8b,0x3a,0xab,0x1c,0xfc,0x0,0x0,0x0,
0xa6,0xc7,0xf,0xd4,0x9c,0xd7,0x77,0xab,0x9a,0x5d,0xbd,0x63,0x55,0xf3,0x9b,0x3d,
0xda,0xe1,0xab,0x62,0xc1,0x64,0x45,0xd7,0xe3,0xcb,0xfe,0x42,0xcb,0x61,0xa7,0xf0,
0x5,0x19,0x7d,0x46,0x46,0x57,0x35,0xe7,0x3,0xda,0x33,0xed,0x86,0xf,0x82,0x1f,
0x0,0x0,0x98,0x4a,0xdf,0x53,0x33,0xf0,0xfd,0x9a,0x9a,0x1d,0xbd,0xcb,0xa2,0x98,
0xf3,0x37,0x54,0xf0,0xaa,0x5a,0x6c,0xb9,0x3c,0x4c,0x7c,0x41,0x56,0x9f,0x93,0xd1,
0xaf,0xc8,0xe8,0x8f,0x65,0xf4,0x7d,0x42,0x1f,0x0,0x0,0x98,0x22,0x8b,0x92,0xbe,
0x21,0x69,0xa7,0x9a,0xd,0x1d,0xdf,0x59,0xee,0x17,0x50,0xb3,0xa9,0x3d,0x6e,0xfd,
0x9b,0xb2,0xe8,0xbe,0xcc,0xbb,0x2d,0x4b,0xdc,0x16,0x1f,0x27,0xe,0x82,0xcd,0x61,
0xe2,0x45,0x49,0x7f,0x2d,0xab,0x1d,0xb2,0xda,0x26,0xab,0x4f,0xca,0xea,0xf4,0x60,
0x6f,0x1,0x0,0x0,0x60,0xd5,0x3b,0xaa,0xe6,0xb2,0x2d,0x57,0x4a,0xfa,0x3d,0x49,
0x3,0x6f,0xcf,0x36,0xac,0xba,0x14,0xcd,0xf9,0xf3,0xa5,0x2,0x5d,0x2a,0xf8,0xb9,
0xf3,0x38,0x4,0xa6,0x9e,0xdf,0xfc,0x81,0xfe,0x72,0x32,0x27,0x5b,0xa7,0x3f,0x93,
0x74,0xad,0xa4,0xb7,0x4a,0xba,0xb9,0x75,0x9a,0xeb,0xfa,0xe,0x0,0x0,0x0,0x56,
0x9f,0xd3,0x92,0xe,0xa9,0x59,0xd9,0x7b,0x52,0xcd,0xad,0xd9,0x56,0x85,0xba,0xa4,
0xea,0xe6,0xe,0x3f,0xd8,0xd5,0x5a,0x27,0x23,0xa9,0x96,0x49,0x99,0x6d,0x5e,0xcf,
0x32,0xa9,0x66,0x5b,0xc1,0x2f,0x6b,0x1e,0xc8,0xdd,0x9e,0xd9,0x74,0x75,0xb0,0xaa,
0x52,0x28,0xfd,0xb0,0x75,0xfa,0x4c,0xeb,0xfa,0x1b,0x25,0x5d,0xaf,0x66,0x28,0x7c,
0x9d,0xa4,0x2d,0xad,0xcb,0x0,0x0,0x0,0xab,0xc1,0xa2,0x9a,0x45,0xac,0xe7,0xd5,
0x6c,0xd6,0xf8,0xb1,0x9a,0x55,0xbe,0x91,0xec,0xc6,0x31,0xe,0xf5,0x60,0xce,0x5f,
0x2a,0x4,0xa6,0xaa,0x79,0x2e,0xc,0xfa,0xa1,0xd0,0xbf,0x5c,0x3a,0x79,0x61,0xb1,
0xe6,0x85,0xc2,0x5a,0xd6,0x6e,0x12,0x49,0xfb,0x5e,0xeb,0x14,0x9b,0x53,0x33,0xc,
0x3a,0xaf,0x91,0xb4,0xa9,0xcb,0x7b,0x5,0x0,0x0,0x18,0xc6,0x49,0x35,0xc3,0x9e,
0x33,0x96,0x75,0xf8,0xc6,0xed,0xff,0x3,0x53,0xae,0x2b,0xdf,0xc2,0x34,0x69,0xbb,
0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// D:/Works/Mine/IVM/Codes/IVM/VehicleManagement/VehicleManage/Resources/Images/homepageoff.png
0x0,0x0,0x2d,0x3a,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x2,0x7f,0x0,0x0,0x1,0x15,0x8,0x6,0x0,0x0,0x0,0x91,0xc9,0x83,0x5a,
0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x5c,0x46,0x0,0x0,0x5c,0x46,
0x1,0x14,0x94,0x43,0x41,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x78,0x9c,0xed,
0xdd,0x7f,0x88,0xe3,0xf9,0x7d,0xdf,0xf1,0x97,0x66,0x47,0x7,0xa7,0x1c,0x68,0x39,
0xb4,0x60,0xad,0xcb,0x1c,0xe9,0xe,0x78,0xd7,0x61,0x87,0x2b,0x13,0xd2,0x75,0xf1,
0xe0,0x70,0x25,0x3d,0x87,0x9a,0x84,0x33,0xe,0x1,0x97,0x33,0x29,0x31,0x2e,0x29,
0x35,0xd,0xd,0x2e,0x29,0xd,0x9,0x9,0x75,0x63,0x92,0xd6,0x50,0xe2,0xc4,0xc4,
0x69,0xa0,0x38,0x38,0xa4,0x8d,0x49,0x9a,0x83,0x24,0x3e,0x42,0x87,0x38,0x6b,0xe2,
0xe5,0xc8,0x90,0x65,0x86,0x78,0xf7,0x1c,0x6d,0xcc,0xa,0x3c,0x32,0xcc,0x70,0xec,
0xc0,0xad,0x66,0x67,0xbe,0xfa,0x7e,0x3f,0xfd,0x43,0xfa,0x68,0x3e,0xfa,0xea,0xf3,
0xfd,0x25,0x7d,0x35,0x33,0x92,0x9e,0xf,0x10,0xfa,0xea,0xfb,0xfd,0x4a,0xfa,0x7e,
0xb5,0xb6,0xe7,0xe5,0xf7,0xe7,0x57,0xe5,0xeb,0x5f,0xff,0xba,0x56,0x56,0x56,0x54,
0xa9,0x54,0xb4,0xb2,0xb2,0x32,0xf2,0xb0,0xfb,0xdc,0xe7,0xb4,0x87,0x95,0xb4,0xed,
0x32,0xc6,0xe4,0xda,0xb6,0xaf,0x7,0xcf,0xef,0x35,0xc6,0xac,0x4b,0x7a,0x9f,0xb3,
0xff,0x5,0x49,0xef,0x2b,0xf2,0xb9,0x69,0xfb,0x0,0x0,0xc0,0xfc,0x2a,0xf2,0xb7,
0x3d,0x7e,0x6e,0xd2,0x6b,0xe7,0xf9,0xd4,0x18,0xb3,0x67,0xf7,0x19,0x63,0x4e,0x25,
0xed,0x19,0x63,0xbe,0x65,0x8c,0x39,0x76,0xcf,0xcf,0xfb,0x48,0x3b,0xdf,0x3d,0x16,
0xbf,0x9e,0xd7,0x5e,0x7b,0xad,0xd0,0xef,0xe2,0x5a,0x8d,0x7,0x3d,0xdf,0x6b,0x1b,
0xee,0x92,0x2,0xa0,0xa4,0xb1,0xe7,0xf8,0x76,0xfc,0xc7,0xb4,0xc7,0x7c,0xdb,0x83,
0x9b,0xbb,0x2d,0xe9,0xc3,0x95,0x4a,0xe5,0xfd,0xc6,0x98,0xdb,0x83,0xe7,0xe7,0xed,
0xf1,0xf8,0x73,0x51,0xe7,0xf5,0x1e,0x0,0x0,0x70,0xf9,0x64,0xfd,0x4d,0xcf,0xa,
0x86,0x1e,0xdf,0x93,0xd4,0x1a,0x4,0xc1,0x6f,0x1a,0x63,0xbe,0x61,0x8c,0x69,0xe5,
0xb9,0xe,0x5f,0xe8,0x8b,0x7f,0xa7,0x2f,0xc,0x4e,0x6a,0x35,0xab,0xea,0x97,0x16,
0xfe,0x24,0x79,0x3,0xa0,0x15,0x7f,0x6d,0x2f,0x36,0x21,0xf8,0xbd,0xa7,0x52,0xa9,
0x7c,0xcc,0x18,0xf3,0x4a,0xa5,0x52,0xf9,0x90,0x31,0xe6,0xc5,0x49,0x83,0x9d,0xfb,
0x5d,0xf1,0x6d,0xdf,0xeb,0xbc,0xc7,0x0,0x0,0xc0,0x7c,0x4b,0xfa,0x3b,0x5f,0x64,
0x7f,0x42,0xc6,0x78,0xcf,0xe0,0xf1,0x41,0x49,0x9f,0x1a,0xec,0xfb,0x9e,0xa4,0xbf,
0x30,0xc6,0xbc,0x61,0x8c,0xf9,0x53,0x5b,0x1d,0xcc,0xa,0x70,0x69,0x55,0xc1,0x28,
0x8a,0x14,0x45,0x51,0xea,0x3d,0x66,0x59,0xf5,0x5,0xbf,0x22,0x4d,0xbe,0x92,0xbf,
0xea,0xe7,0xe3,0x1e,0x1f,0x4,0xbf,0x17,0x8c,0x31,0xaf,0x49,0x7a,0x5d,0xd2,0x8f,
0xa4,0xbd,0x2f,0xab,0x14,0x9b,0xb5,0x2f,0xe9,0x75,0xd2,0x3e,0x0,0x0,0xb0,0x18,
0x8a,0x16,0x7d,0x7c,0xcd,0xac,0xf1,0x73,0x7d,0xdd,0xd4,0x3c,0x9f,0xf5,0x1e,0x63,
0xcc,0xeb,0xea,0xe7,0x9c,0x23,0x49,0x7f,0x2c,0xe9,0xf7,0x24,0x6d,0xc7,0xdf,0x97,
0xa7,0x39,0xd8,0x6,0xbf,0x28,0xc,0xb,0xdd,0x7f,0xdc,0xaa,0x2f,0xf8,0xf9,0x42,
0x9f,0xbb,0x2d,0xf9,0x2b,0x7e,0x59,0xe1,0xcf,0xde,0x88,0xa4,0xf7,0x55,0x2a,0x95,
0x9f,0x37,0xc6,0x7c,0x6c,0x10,0x0,0x53,0x9b,0x6f,0xcf,0xbb,0xfa,0x97,0xf7,0x33,
0x1,0x0,0xc0,0x7c,0x9a,0x34,0x73,0xa4,0x65,0xb,0xbb,0xcf,0xd7,0x7c,0x6b,0x8c,
0xa9,0x1b,0x63,0x7e,0x6a,0xf0,0xf8,0xae,0x31,0xe6,0xb,0xc6,0x98,0x2f,0x1a,0x63,
0x8e,0xf2,0x4,0xbf,0x30,0xc,0x15,0x86,0x61,0x29,0x95,0xbf,0x95,0x3c,0x55,0xbf,
0x78,0xe5,0x2f,0xab,0xef,0x5f,0xd2,0x40,0x10,0x49,0x9b,0x95,0x4a,0xe5,0xf,0x24,
0x3d,0x94,0xf4,0x53,0x92,0x5e,0x28,0x7a,0xc1,0x79,0xda,0xc2,0xb3,0xce,0x4b,0xfb,
0x7,0xcf,0x7a,0x0,0x0,0x80,0xf9,0x95,0xf4,0xf7,0x3c,0xa9,0xbf,0x5d,0x19,0xb9,
0xc2,0xe3,0xbd,0x92,0x7e,0x55,0xd2,0x63,0x63,0xcc,0x7f,0x31,0xc6,0xbc,0x98,0x14,
0xfc,0xa2,0x28,0x52,0xaf,0xd7,0x53,0xd8,0xeb,0xd,0x3,0x60,0x38,0x65,0xe5,0x6f,
0x2c,0xfc,0x15,0x1d,0xe1,0x9b,0x12,0xf4,0x86,0x2a,0x95,0xca,0xfb,0x2b,0x95,0xca,
0x9f,0x4b,0xfa,0x1b,0x49,0x3f,0x59,0xa4,0x52,0x68,0xe5,0xa9,0xe2,0xf9,0x9e,0x7d,
0xdb,0xee,0xfb,0x8,0x76,0x0,0x0,0x2c,0x96,0xa2,0x45,0x9c,0xa4,0x30,0x97,0x16,
0x0,0xb3,0xbe,0x33,0xe7,0x35,0xd5,0x25,0xfd,0x67,0x49,0x8f,0x25,0xfd,0x9a,0xa4,
0x17,0x7c,0xd5,0xbe,0x30,0xc,0xd5,0xb,0xc3,0x7e,0x0,0x1c,0x3c,0xa6,0x31,0xd2,
0xe7,0xaf,0x48,0xf0,0x93,0x72,0x8d,0xec,0x7d,0xc1,0x18,0xf3,0x8b,0x92,0xfe,0xbd,
0xa4,0xe7,0x8a,0xe,0xe0,0x48,0x4a,0xe1,0xee,0x76,0x9e,0x7f,0xa0,0xac,0x12,0x6d,
0x9e,0x63,0x0,0x0,0x60,0x71,0x24,0x5,0xb4,0xa4,0xe3,0x69,0x5,0xa6,0xa4,0xcf,
0x2f,0x10,0x6,0x5f,0x30,0xc6,0x7c,0xc6,0x18,0xf3,0xba,0x31,0xe6,0xe7,0x8c,0x31,
0xbf,0x6f,0x9b,0x78,0x7b,0xbd,0x9e,0xa2,0x30,0x54,0x18,0x45,0x67,0xcd,0xbe,0x65,
0x54,0xfe,0xe2,0xcd,0xb9,0xf1,0x7d,0xbe,0xa6,0x5f,0x5f,0xdf,0xbf,0x98,0x8f,0x49,
0xfa,0xbb,0x4a,0xa5,0xf2,0x19,0x49,0xcf,0x65,0x5d,0x48,0x9e,0x1f,0xdc,0x6e,0xe7,
0xd,0x7e,0x69,0x95,0x3f,0x9a,0x74,0x1,0x0,0x58,0xe,0x59,0x7f,0xf3,0xd3,0x9a,
0x7c,0xb3,0xf2,0x41,0x91,0xc,0xe1,0xfb,0xfe,0xd8,0x75,0xbd,0xc7,0x18,0xf3,0x95,
0x28,0x8a,0xfe,0x5f,0x14,0x45,0xef,0xef,0xd,0x9a,0x7a,0x6d,0xd5,0xaf,0x67,0x1f,
0x65,0xd,0xf8,0xf0,0xf5,0xe7,0x4b,0x9a,0xda,0xc5,0x7d,0xf6,0x78,0x41,0xd2,0x6f,
0x4b,0xfa,0xb8,0xdd,0x91,0x54,0xf1,0xcb,0x1b,0xf2,0xdc,0xd7,0x59,0x1,0xcf,0xf7,
0x39,0x49,0xdf,0x97,0x75,0x3d,0x0,0x0,0x60,0xf1,0xe4,0x6d,0xfe,0x8d,0x6f,0xe7,
0xed,0x4a,0x56,0x64,0xbf,0xef,0x1a,0xc2,0x30,0x7c,0xa5,0xd7,0xeb,0xfd,0x6d,0x14,
0x86,0x3f,0x17,0x86,0xe1,0x17,0x86,0xcd,0xbf,0xbd,0x9e,0xc2,0x32,0xa6,0x7a,0x99,
0x74,0x4e,0x3f,0x2b,0xf6,0xfa,0x65,0x49,0x7f,0x20,0x67,0x5,0x8e,0xa2,0xd2,0x7e,
0xb4,0x22,0xc1,0x2f,0x2b,0xf4,0x15,0x6d,0x7e,0x6,0x0,0x0,0x8b,0xa5,0x48,0xd3,
0x6f,0x52,0xbe,0xc8,0x6a,0xd2,0x4d,0x3a,0xe6,0x3b,0xd7,0x18,0x33,0x6c,0xd6,0x8d,
0xa2,0xe8,0xb9,0x5e,0x18,0xfe,0x46,0x18,0x86,0x1f,0xa,0x7b,0xbd,0x7f,0xdd,0xb,
0xc3,0x77,0x23,0x1b,0x2,0xa7,0x1d,0xed,0x9b,0x77,0x10,0x47,0x3c,0xf8,0x79,0x82,
0xe0,0xa7,0x24,0xfd,0xb5,0x6,0x4b,0xad,0xa5,0xd,0xe6,0x48,0xab,0xe8,0xf9,0x7e,
0x88,0xb4,0x52,0x6c,0x9e,0x87,0xef,0xfc,0x22,0x9f,0x1,0x0,0x0,0xe6,0x53,0x9e,
0xbf,0xef,0x49,0xf9,0xc0,0xb7,0xed,0x3e,0xc7,0xdf,0x9f,0xe7,0x3a,0xd2,0x5e,0x47,
0x83,0x7e,0x7d,0xc3,0xfe,0x7d,0xfd,0xb0,0xf7,0xb1,0x5e,0x18,0xfe,0x6d,0xd8,0xeb,
0x6d,0xf6,0x9c,0xa,0xe0,0x34,0xc6,0x6,0x7c,0x64,0xcd,0xe9,0x67,0x5f,0xc7,0xfc,
0x77,0x49,0xff,0xa1,0xc8,0x17,0x67,0x25,0xe5,0xb4,0xa0,0xe6,0xbe,0xf6,0x6d,0xfb,
0xbe,0x23,0x4f,0x89,0x17,0x0,0x0,0x2c,0xae,0xb4,0xbf,0xf9,0xbe,0x40,0xe7,0x7b,
0x9d,0xd5,0xf4,0xeb,0xfb,0xdc,0xb4,0xf3,0xdc,0xe3,0xee,0xe8,0x5e,0xb7,0xaf,0x5f,
0x14,0x86,0xeb,0x61,0x14,0xdd,0xd,0x7b,0xbd,0x8f,0x86,0x61,0xf8,0xb5,0x69,0xa7,
0x7a,0x59,0xcd,0x9a,0xae,0x25,0x69,0x74,0xef,0xe0,0xf5,0x73,0x92,0xfe,0xa7,0xa4,
0xd7,0xf3,0x84,0xa8,0xbc,0xed,0xe0,0xbe,0xf7,0xe5,0xd,0x7f,0xee,0xf7,0xe4,0xfd,
0x47,0x1,0x0,0x0,0xcb,0xa1,0x48,0x0,0x74,0xf7,0x25,0x5,0xb6,0xac,0xd6,0xcb,
0xb4,0xcf,0x73,0x8f,0xf,0x57,0xef,0xb0,0xcd,0xbe,0xb6,0xf2,0x17,0x45,0x36,0x4,
0x3e,0x1f,0x86,0xe1,0x9f,0xf4,0x7a,0xbd,0x4f,0x46,0x51,0xf4,0x7b,0x5,0x6f,0x7b,
0xc4,0x6a,0x9e,0xb9,0xfc,0x24,0xef,0xb4,0x2e,0xcf,0x4b,0xfa,0x23,0x49,0x1f,0xb6,
0xfb,0xf2,0x54,0xdd,0xd2,0x7e,0x8c,0x49,0x9b,0x71,0xe3,0xdf,0x43,0xf8,0x3,0x0,
0x0,0x3e,0x45,0x8b,0x55,0x59,0x39,0x23,0x29,0x73,0xc4,0x3f,0x2f,0xad,0x95,0xd2,
0x36,0xf9,0x3a,0xfd,0xfd,0xe4,0xe,0xf2,0xb0,0x7d,0xfd,0x7a,0xbd,0xde,0x73,0x61,
0x18,0x7e,0x39,0xc,0xc3,0x6b,0x92,0x3e,0x9f,0xff,0xae,0x47,0x55,0xde,0x7e,0xfb,
0xed,0xd4,0x95,0x3b,0x24,0x6f,0xf0,0x7b,0x4e,0xd2,0x9f,0x4b,0x7a,0x25,0x7e,0x73,
0x49,0xdb,0xbe,0xd0,0x36,0xcd,0xc3,0xfd,0x8e,0x49,0x9b,0x7d,0x9,0x7e,0x0,0x0,
0x2c,0xa7,0x49,0x9a,0x80,0xd3,0xb2,0x8d,0xbb,0x2f,0xed,0x11,0x45,0xd1,0xd8,0x76,
0x14,0x45,0xa,0x82,0x40,0x41,0x10,0xa8,0x17,0x4,0xa,0x7a,0xbd,0xfe,0xb6,0x9d,
0xda,0x65,0xb0,0x1d,0x9e,0x85,0x40,0x45,0x61,0xf8,0x9f,0xfe,0xeb,0xe7,0x3e,0xf7,
0xb9,0x49,0xee,0xbd,0xf2,0xed,0x6f,0x7f,0x3b,0xb5,0xaf,0x9f,0xe7,0xf9,0x8a,0xfa,
0x15,0xbf,0x1f,0x4b,0xfb,0xb1,0x26,0xf9,0x41,0xdc,0x1f,0x23,0xeb,0x3d,0x69,0x3f,
0x7c,0xd2,0xb5,0xf8,0x10,0x0,0x1,0x0,0x58,0x2e,0x59,0x7f,0xfb,0xd3,0x5a,0xe,
0xb3,0x72,0xc7,0x24,0xc1,0x2f,0xc,0xc3,0x61,0xf8,0x1b,0x86,0x40,0x27,0xf4,0xc5,
0x1f,0xd1,0xa0,0x3f,0x60,0x14,0x86,0x9f,0xf8,0x6f,0x9f,0xff,0x7c,0xe1,0x26,0xe0,
0xca,0xb7,0xbf,0xfd,0xed,0xcc,0xb5,0x7a,0x87,0x27,0xf7,0xb7,0x7f,0x4b,0xd2,0xcf,
0xa4,0xfd,0x50,0xbe,0x64,0x1c,0xff,0x51,0xdc,0x1f,0x20,0x29,0xf8,0xf9,0xce,0x49,
0xfa,0x4c,0xdf,0xb3,0xef,0x7a,0xd2,0xf6,0x1,0x0,0x80,0xc5,0x52,0xf4,0xef,0x7d,
0x56,0x86,0x48,0x2b,0x32,0xa5,0x15,0xac,0x7c,0xc1,0x2f,0x5e,0xf5,0x1b,0x9,0x7f,
0x6e,0x8,0x74,0x1e,0xe1,0x60,0x92,0xe7,0x41,0x15,0x30,0xc,0x7b,0xbd,0x8f,0xfe,
0xc6,0x6f,0xfe,0xe6,0x1b,0x45,0xee,0xb1,0xf2,0xf7,0x7f,0xff,0xf7,0x99,0x13,0x3a,
0x3b,0xdb,0xbf,0x2c,0xe9,0x17,0xb3,0x7e,0xac,0xa4,0xca,0x5c,0x5a,0x2,0x76,0x83,
0x5f,0x52,0x30,0xcc,0x53,0xf9,0x4b,0xfa,0x87,0xf1,0xbd,0xce,0xba,0xf,0x0,0x0,
0xb0,0x1c,0x92,0xfe,0xfe,0x4f,0x5a,0x5,0xcc,0x5b,0xfd,0x8b,0xa2,0x48,0xa7,0xa7,
0xa7,0xea,0x5,0x81,0x4e,0x83,0x40,0xc1,0xe9,0xa9,0x82,0x41,0xd5,0x2f,0x48,0x8,
0x80,0xb1,0xea,0xdf,0x71,0x18,0x86,0x3f,0xfc,0xdb,0xbf,0xf3,0x3b,0x6f,0xe5,0xbd,
0xd7,0x4a,0xab,0xd5,0xca,0xac,0xfa,0xd,0x9e,0x3f,0xac,0x7e,0x3f,0xbf,0xd4,0x1f,
0x66,0xda,0xf2,0x67,0x5a,0x38,0xcc,0x5b,0xf9,0x4b,0xdb,0x4e,0xdb,0x7,0x0,0x0,
0x16,0xdf,0xb4,0xc5,0xa0,0xa4,0xdc,0x91,0x96,0x53,0x7c,0x5,0x2f,0x63,0x8c,0x7a,
0x83,0xfe,0x7d,0xc1,0xe9,0xe9,0x48,0xf8,0xb,0x4e,0x4f,0x47,0x82,0x9f,0xdd,0x1e,
0x2e,0xf3,0xe6,0xac,0xf8,0x11,0xf6,0x7a,0xed,0x30,0xc,0xff,0xc9,0xff,0xfa,0xf2,
0x97,0xdf,0xc9,0x73,0xff,0xab,0x92,0x32,0x9b,0x7b,0x25,0xbd,0x57,0xd2,0x97,0xb3,
0x7e,0x1c,0x5f,0x3a,0x2e,0x1a,0xfc,0xf2,0x54,0xfd,0xd2,0x2a,0x7f,0x45,0x2,0x60,
0xd2,0x7d,0x0,0x0,0x0,0x64,0x15,0x8f,0xb2,0x5a,0x3d,0x7d,0xaf,0x7d,0xe7,0x1a,
0x77,0x9a,0x17,0xcf,0x23,0x3e,0xf7,0xdf,0x30,0xf8,0x9d,0x55,0xff,0xd6,0x7a,0xbd,
0xde,0x57,0x24,0xfd,0x68,0x9e,0xfb,0xaa,0x3c,0x7a,0xf4,0x28,0x2b,0xfc,0x5d,0xa9,
0x54,0x2a,0x7f,0x29,0xe9,0x83,0x45,0x7e,0x80,0xbc,0x89,0x37,0xa9,0xf3,0x63,0xd9,
0xe1,0x2f,0x9,0xa1,0xf,0x0,0x0,0x4c,0x52,0x24,0xca,0xd3,0xf2,0xe9,0x6e,0xfb,
0xb2,0x50,0x10,0x4,0x3a,0x3d,0x39,0xd1,0x69,0x10,0xe8,0xf4,0xf4,0x74,0x58,0xf9,
0x3b,0x3d,0x39,0x39,0xab,0xa,0x26,0xd,0x0,0x71,0x42,0xe0,0xe0,0xf1,0x1f,0xff,
0xcf,0x57,0xbf,0xfa,0xeb,0x59,0xf7,0x5a,0x79,0xf4,0xe8,0x91,0x56,0x56,0x56,0xfa,
0x2f,0xfc,0xe1,0xef,0x97,0x2b,0x95,0xca,0x58,0x3f,0xbf,0xac,0xe0,0xe7,0x6e,0x67,
0x85,0xbc,0xb4,0x20,0x58,0x34,0xfc,0x25,0xfd,0x23,0x51,0xf9,0x3,0x0,0x0,0x79,
0xe5,0x69,0xf6,0xf5,0xbd,0x4e,0xa,0x81,0xbe,0x16,0x50,0xdb,0xdf,0xcf,0x7d,0xd8,
0xe6,0xde,0xd3,0xd3,0x53,0xf5,0x7a,0xbd,0x61,0x7f,0xc0,0xb1,0xe9,0x5f,0x6,0x4d,
0xc0,0x76,0xea,0x17,0x3b,0x0,0x24,0x8a,0xa2,0xad,0xff,0xfb,0xc6,0x1b,0xdf,0x4c,
0xbb,0xb7,0xca,0x3f,0xfc,0xc3,0x3f,0x78,0x57,0xf7,0x18,0x6c,0xaf,0x4b,0xfa,0xbb,
0xc1,0x4a,0x1e,0xb9,0x6e,0x38,0xed,0x66,0xed,0x8d,0xc6,0x3,0x5f,0x5a,0x8,0xcc,
0xa,0x7f,0xbe,0xe7,0xac,0xeb,0x4c,0x43,0x8,0x4,0x0,0x0,0x71,0x49,0xf9,0x20,
0xad,0x49,0xd7,0x3e,0x27,0x3d,0x6c,0xb8,0x73,0x83,0xdf,0xa9,0x13,0xfe,0x8a,0x4e,
0xff,0x32,0x58,0x13,0xf8,0x7e,0x14,0x45,0x3f,0xf8,0x67,0x5f,0xfb,0x5a,0xe2,0x1a,
0x70,0xab,0x19,0xf7,0xfa,0x5b,0x92,0x9e,0xcb,0x73,0xc3,0x49,0xcd,0xbe,0x59,0x95,
0xbf,0x49,0xc2,0x9f,0xfb,0x1d,0xbe,0x1f,0x3a,0xed,0x1f,0x23,0xb,0xe1,0xf,0x0,
0x0,0xe4,0x91,0xd6,0x14,0x9c,0xd4,0x32,0xe9,0x9e,0x37,0xf2,0x48,0xea,0xf3,0x37,
0x68,0xd2,0x75,0xb7,0x47,0xaa,0x7f,0x83,0x65,0xe0,0x9c,0xe9,0x5f,0x5e,0x8e,0xa2,
0xe8,0x53,0x92,0xbe,0x98,0x74,0xdd,0x69,0x95,0xbf,0x8f,0x4b,0xfa,0x4a,0x9e,0x1b,
0xce,0x53,0xda,0xf4,0x55,0xf9,0xf2,0x84,0x3f,0xbb,0x1d,0xff,0x7c,0xf7,0x75,0xd2,
0xf5,0x24,0x5d,0x2f,0x0,0x0,0x58,0xe,0xe7,0xf9,0xf7,0xbf,0x48,0xf3,0x6f,0x14,
0x45,0xfd,0xca,0xdf,0xc9,0x89,0x4e,0x4e,0x4f,0xfb,0xfd,0xfe,0x9c,0xaa,0x9f,0x7d,
0xd8,0x29,0x60,0x86,0xcf,0xf1,0xea,0x5f,0x10,0xf4,0x7,0x81,0xb8,0xd3,0xbf,0x44,
0xd1,0x3b,0x51,0x14,0x6d,0xfc,0xe5,0x5f,0xfd,0xd5,0x77,0x7d,0xd7,0x99,0x54,0xf9,
0x7b,0x41,0xd2,0xaf,0x65,0xdd,0x98,0x7b,0x33,0xbe,0x1b,0xcb,0x1b,0xfc,0x8a,0x54,
0xff,0x7c,0xdf,0x99,0xf4,0x83,0x27,0xbd,0x4e,0x42,0x40,0x4,0x0,0x0,0x65,0xc8,
0xaa,0x0,0x1a,0x63,0x86,0xeb,0xf8,0x1a,0xcf,0xdc,0x7f,0xc3,0x91,0xbe,0xce,0x88,
0xdf,0xa8,0x3f,0xad,0xcb,0xd8,0xa0,0xf,0x77,0xe9,0xb7,0xc1,0xf4,0x2f,0x2f,0x46,
0x51,0xf4,0xab,0x92,0x3e,0xe1,0xbb,0xb6,0xd5,0xd8,0x94,0x2e,0xd6,0xa7,0x8c,0x31,
0xef,0x75,0x8f,0x25,0x55,0xd3,0xf2,0xb4,0x69,0x27,0x5,0x3f,0x7b,0x23,0xbe,0x26,
0xe0,0x49,0x9a,0x7d,0xd3,0xb6,0x93,0xfe,0x51,0x0,0x0,0x0,0xb2,0x24,0xe4,0xa5,
0x11,0x59,0x2d,0x8f,0x63,0xd9,0xc8,0x98,0xfe,0x23,0x63,0x9a,0x17,0xdb,0x9f,0x6f,
0xa4,0x9,0xd8,0x99,0x2,0x26,0x1a,0x84,0x3e,0x77,0xee,0xbf,0x28,0x8a,0x3e,0xfe,
0x43,0x9b,0x9b,0x9f,0x7d,0x6b,0x67,0xe7,0xed,0xf8,0x35,0xf9,0x2a,0x7f,0xcf,0x49,
0xfa,0x4c,0xd2,0x4d,0xb8,0xfb,0xf3,0x34,0xf7,0xfa,0x66,0xb2,0x76,0x2f,0xdc,0x57,
0xfd,0x9b,0xb6,0xf2,0x97,0x76,0xed,0x79,0x8f,0x3,0x0,0x80,0xe5,0x93,0x14,0xf2,
0xa6,0xc9,0xd,0xf1,0xfc,0x32,0x96,0x7f,0x7c,0xfb,0x62,0x21,0xcf,0x36,0x13,0xdb,
0xd7,0x6e,0xb5,0x6f,0x6c,0xee,0xbf,0xfe,0x79,0x57,0xa2,0x28,0xfa,0x8c,0xa4,0x4f,
0xc6,0xaf,0x67,0x35,0x7e,0x71,0x95,0x4a,0xe5,0xa7,0x25,0xbd,0x27,0xcf,0xd,0xb8,
0x37,0x52,0xb4,0xda,0x17,0xf,0x80,0x79,0x9a,0x7c,0x8b,0x36,0xf7,0x26,0xed,0x3,
0x0,0x0,0xf0,0xc9,0xca,0xd,0x79,0x2a,0x80,0x49,0x9f,0x99,0x18,0xfe,0x32,0x2,
0x60,0xe8,0x6e,0xbb,0xd5,0x3e,0xb7,0xa9,0x37,0x36,0xed,0xcb,0x20,0x4b,0xbd,0xfe,
0xf2,0xed,0xdb,0xbf,0x72,0x7f,0x6f,0xaf,0xed,0x5e,0x4f,0xbc,0xf2,0x77,0xc5,0x18,
0xf3,0xf3,0xbe,0x1b,0xf3,0x95,0x2d,0xdd,0x6d,0x5f,0x3f,0xbf,0xa4,0x1b,0x4c,0xaa,
0xfc,0x95,0x1d,0xfc,0xd2,0xf6,0x3,0x0,0x0,0xe4,0x65,0xb3,0xd1,0xa4,0xb9,0x62,
0x2c,0x23,0xb9,0x79,0x27,0xa5,0xea,0xe7,0x2d,0x9e,0x9d,0x4d,0xeb,0x32,0xba,0xfa,
0x87,0x53,0xd,0x1c,0xb0,0xad,0xb9,0x9f,0x76,0xaf,0x65,0x25,0x76,0x13,0x3f,0x26,
0x69,0x2d,0xab,0xb9,0x35,0x4f,0xf0,0xcb,0xa,0x80,0x59,0xcd,0xbf,0x49,0xcd,0xc1,
0x69,0x4d,0xc0,0xbe,0x6b,0x2,0x0,0x0,0x98,0x56,0x56,0x61,0x2a,0xeb,0x3d,0xee,
0xeb,0x28,0x8a,0x64,0xdc,0xe3,0xfd,0x83,0xe3,0x7d,0x1,0x63,0x5d,0xe6,0x42,0xa7,
0x12,0x18,0xef,0xeb,0xe7,0x9,0x7e,0xd6,0x4f,0xbf,0x7c,0xfb,0xf6,0xb,0xee,0x8e,
0x15,0xf7,0x2,0x25,0xbd,0x9e,0x76,0xf1,0x59,0x37,0xef,0x6b,0xbe,0x4d,0xb,0x7b,
0xbe,0x73,0xd2,0x3e,0x3f,0x4f,0xe8,0x3,0x0,0x0,0x38,0x4f,0x79,0x42,0xa1,0xb7,
0x15,0x73,0xf0,0x30,0x83,0xc0,0xe7,0x1e,0x4b,0xac,0x4,0x3a,0xcd,0xbe,0x3d,0x67,
0x20,0x88,0x3d,0xee,0xf1,0xbc,0xa4,0x8f,0xb9,0x3b,0x56,0x9c,0xed,0x17,0x8d,0x31,
0xff,0x72,0x9a,0xaa,0x5f,0x3c,0x8,0x26,0xf5,0xe7,0xcb,0x1a,0xe8,0x11,0xdf,0x37,
0xfc,0x91,0x44,0xe8,0x3,0x0,0x0,0xf3,0x65,0x2c,0xa7,0xa4,0x74,0x55,0xb3,0xf9,
0x67,0x18,0xa,0x33,0x5a,0x4f,0xc3,0xd1,0x3e,0x7e,0x49,0x97,0x30,0x52,0xdc,0x5b,
0x71,0x2e,0xea,0xe3,0xea,0xb7,0xd,0x8f,0x5d,0xc8,0x24,0x55,0xbf,0xa4,0x20,0xe8,
0xb,0x81,0xee,0xeb,0xa4,0xc0,0x17,0xff,0xf1,0x8,0x7d,0x0,0x0,0xe0,0xb2,0xf3,
0x65,0x98,0x3c,0xef,0x89,0x62,0xcd,0xc1,0xf1,0xec,0xe4,0x4e,0xfd,0x62,0xc3,0x5f,
0x8a,0xf,0xbd,0x7c,0xfb,0xf6,0x9a,0x7d,0xb1,0xe2,0x5c,0xd4,0x4f,0x4e,0x5b,0xf5,
0x4b,0xab,0xee,0x25,0x55,0xf5,0x8a,0x3c,0xe2,0x3f,0x24,0x0,0x0,0xc0,0x65,0x95,
0x98,0x57,0xec,0xc0,0xda,0x4a,0xe5,0x6c,0xdb,0xd3,0x24,0xec,0x36,0x7,0x1b,0x4f,
0x25,0x30,0x47,0xc5,0xcf,0xba,0xa2,0x7e,0x91,0x4f,0xd2,0x59,0xb3,0xef,0x8b,0x92,
0x3e,0xe0,0xbb,0xe8,0x22,0x55,0x3f,0xdf,0x79,0xbe,0xca,0x5e,0xd6,0x8,0x5f,0xf7,
0x7,0xf3,0xb5,0x99,0x3,0x0,0x0,0xcc,0xb3,0xb1,0x99,0x55,0x62,0xa3,0x89,0xcd,
0xa0,0xf2,0x37,0x12,0xf8,0x8c,0x7f,0x52,0xe8,0x9c,0xd9,0xe8,0x47,0xec,0x86,0x6d,
0xf6,0xfd,0xb0,0x31,0xe6,0xca,0xb4,0x7d,0xfd,0xe2,0x21,0x2e,0x69,0xe4,0x6f,0x56,
0x75,0x8f,0x66,0x5e,0x0,0x0,0x30,0xcf,0xb2,0x32,0x4b,0x45,0xfd,0x0,0x68,0x1f,
0xb1,0x37,0x8f,0x34,0xf9,0xda,0xcf,0x4b,0x6a,0x59,0xcd,0xe9,0x3,0x2f,0xdf,0xbe,
0xfd,0xbc,0x74,0xd6,0xec,0xfb,0x8a,0xef,0xa2,0x7d,0x61,0x2c,0xeb,0x91,0xd4,0xb4,
0x9b,0x27,0x0,0xc6,0xbf,0x2b,0xef,0xf,0x8,0x0,0x0,0x30,0x2f,0x2a,0x83,0xe6,
0xde,0x8a,0xfa,0x21,0x50,0x19,0xab,0x8a,0x78,0x33,0x55,0x6c,0x9c,0x44,0xe,0xcf,
0x4b,0xfa,0x21,0xe9,0xac,0xf2,0xf7,0xc1,0xac,0xaa,0x5f,0xde,0x6a,0x5f,0x9e,0xe3,
0xf1,0xcf,0x8e,0xdf,0x24,0xc1,0xf,0x0,0x0,0x2c,0xa2,0x91,0x4a,0x9f,0xd3,0xe7,
0xcf,0x56,0x2,0x5d,0x76,0x2e,0x40,0xc9,0xc9,0x4d,0x83,0xe0,0x97,0x32,0xb5,0x4b,
0x9a,0x1f,0x91,0xfa,0xe1,0xaf,0x2e,0xe9,0x7d,0xf1,0xa3,0x79,0xab,0x7e,0x69,0xc7,
0x92,0x82,0x60,0x9e,0xca,0x5f,0x7c,0x1b,0x0,0x0,0x60,0x5e,0xd9,0x60,0xe7,0x3e,
0xf,0x1f,0x9e,0xf3,0x94,0x90,0xb1,0xec,0x28,0xe0,0x9,0xbb,0xc3,0x7d,0x40,0x92,
0x56,0x8d,0x31,0x2f,0x27,0x9d,0x91,0x54,0xa5,0xcb,0x1b,0xf6,0xf2,0x3e,0xe2,0xdf,
0x17,0xdf,0x6,0x0,0x0,0x98,0x27,0x95,0x4a,0x65,0x2c,0xcb,0xb8,0xfb,0x2a,0x4e,
0xb3,0x6f,0x65,0x65,0x25,0xb1,0xef,0x5f,0xff,0xc9,0xc9,0x4c,0xc6,0x4c,0xd2,0xdf,
0xcf,0xda,0x94,0xfa,0x6b,0xfb,0xde,0x8e,0x1f,0x89,0x87,0xb0,0xa4,0xa6,0xd9,0x69,
0xc2,0x5e,0x5a,0xd0,0x23,0xf8,0x1,0x0,0x80,0x85,0xe7,0x4e,0xf5,0x92,0xd0,0xef,
0xcf,0x1a,0x6,0xbf,0xc1,0xf3,0x84,0xea,0x2f,0xdf,0xbe,0xbd,0xb6,0x6a,0x8c,0x19,
0x6b,0xf2,0x1d,0x7e,0x89,0x92,0xc3,0x9e,0x7b,0x5e,0x19,0x95,0x3f,0x2,0x1f,0x0,
0x0,0x58,0x24,0xf1,0xea,0x9f,0x7d,0x3d,0xd2,0xe4,0x1b,0x6b,0xf6,0x75,0xc5,0x33,
0x57,0xe4,0x4,0xc0,0x9,0xfa,0xfb,0x59,0xeb,0xab,0x92,0xd6,0xe2,0x7b,0xf3,0xf6,
0xf7,0x2b,0xda,0x14,0x1c,0x3f,0x2f,0xfe,0x7d,0xf1,0x6d,0x0,0x0,0x80,0x45,0x32,
0xd6,0xe7,0x4f,0xf2,0x6,0x40,0x6f,0x2b,0xec,0xf4,0x95,0x3f,0x49,0xfa,0xfe,0x15,
0x39,0xe1,0xcf,0x57,0x89,0x9b,0x24,0xec,0xe5,0xf9,0xac,0xf8,0x8d,0xf9,0x5e,0x3,
0x0,0x0,0xcc,0xb3,0xb1,0x7e,0x7c,0xe3,0x27,0xf4,0xa7,0x7d,0xf1,0xf5,0xf9,0x53,
0x2c,0x6f,0xf5,0x77,0x4c,0x53,0xf5,0x93,0xa4,0xb5,0x55,0x63,0xcc,0x35,0xdf,0x17,
0xc5,0xbf,0x30,0xe9,0xb8,0xfb,0x9c,0xf4,0xfe,0xf8,0x76,0xda,0x67,0x1,0x0,0x0,
0x2c,0xaa,0xb1,0x41,0x1f,0x4e,0x9f,0xbf,0x4a,0xac,0xff,0x5f,0x3c,0x19,0x95,0xd4,
0x5d,0xee,0xc5,0x15,0xf5,0x97,0x76,0xf3,0x7e,0x68,0xde,0xbe,0x7d,0x49,0xc7,0xd3,
0x3e,0x37,0x29,0xc,0x2,0x0,0x0,0x2c,0x92,0x78,0x45,0x6f,0xa4,0xc9,0x57,0xd2,
0x8a,0x73,0x3c,0xb1,0x52,0x68,0x73,0x94,0xa6,0x2e,0x98,0x5d,0x5b,0x35,0xc6,0x3c,
0x3f,0xfa,0xd9,0xe9,0x4d,0xb5,0xbe,0xf3,0xf2,0xc,0x4,0x71,0xdf,0x33,0x7e,0x3f,
0x84,0x40,0x0,0x0,0xb0,0x3c,0xec,0x2a,0x1f,0xc3,0x66,0xdf,0x8c,0xf3,0xed,0x3a,
0xbf,0x9a,0xbe,0x80,0xf6,0xc2,0xca,0xc8,0x7,0x27,0x4,0x3f,0xf7,0x78,0x52,0x5f,
0xbe,0xf8,0x39,0x89,0x17,0x4f,0xd0,0x3,0x0,0x0,0x4b,0xa6,0x92,0xa7,0xba,0x97,
0x60,0x98,0xb7,0x54,0x4a,0x8e,0xba,0xb2,0x9a,0xd5,0x9f,0x2f,0xbe,0x6d,0x5f,0x17,
0x9,0x8a,0x79,0x6,0x83,0x0,0x0,0x0,0x2c,0x13,0xb7,0xcf,0x5f,0xfc,0x39,0xce,
0xd,0x80,0x53,0xca,0x5f,0xf9,0x4b,0x6a,0xda,0x75,0x9f,0xe3,0xef,0x49,0xbb,0x78,
0x0,0x0,0x80,0x65,0xe2,0xed,0xfb,0x27,0xa7,0x9,0xd8,0x63,0x24,0x57,0x19,0x33,
0x6c,0xf6,0x9d,0xc6,0x30,0xfc,0x15,0x99,0x76,0x25,0xad,0xf,0x60,0xfc,0x75,0x5a,
0x85,0x8f,0x20,0x8,0x0,0x0,0x96,0xd1,0xc8,0x28,0xdf,0xf8,0x3e,0x9f,0x8c,0xd9,
0x53,0x8a,0x48,0x6c,0xf6,0x75,0xb7,0xd3,0x46,0xe8,0x16,0xe9,0x13,0x48,0x53,0x2f,
0x0,0x0,0x40,0x2c,0xe8,0xe5,0xec,0x3,0x68,0x8c,0x29,0xa3,0xd9,0x57,0xa9,0xcd,
0xbe,0x99,0x17,0x30,0x45,0xa,0x25,0x0,0x2,0x0,0x80,0x65,0x93,0x54,0xdd,0xab,
0x24,0x1c,0x1b,0x19,0xec,0x51,0xd2,0x35,0x8c,0x35,0xfb,0xa6,0x4d,0xf5,0x92,0xd6,
0xef,0x2f,0x9,0xd5,0x3e,0x0,0x0,0x80,0x71,0x49,0xab,0x7a,0xc,0x39,0x7d,0xfd,
0xca,0xcc,0x51,0x63,0xcd,0xbe,0xfd,0xef,0x98,0xec,0xb,0xf2,0xcc,0xeb,0x47,0x8,
0x4,0x0,0x0,0xf0,0xaf,0xe9,0x9b,0xa9,0x84,0x1c,0xe5,0x6d,0xf6,0x4d,0x7a,0x3d,
0xfe,0xfd,0xc5,0x42,0x1e,0xc1,0xf,0x0,0x0,0x2c,0xbb,0xa4,0x15,0x3f,0x92,0xc,
0xd3,0x53,0x49,0x39,0x2a,0xb1,0xd9,0xd7,0xdd,0x9f,0x67,0x5f,0x1a,0x42,0x1f,0x0,
0x0,0x80,0xc7,0x84,0x13,0x3e,0x4f,0x63,0x25,0xe9,0x83,0x92,0x2,0x5f,0x9e,0x49,
0xa1,0xcb,0xbe,0x48,0x0,0x0,0x80,0x45,0x95,0x37,0xfe,0x95,0x35,0x8e,0x22,0xb5,
0xd9,0xb7,0xa8,0xbc,0x17,0x45,0x20,0x4,0x0,0x0,0x70,0xa4,0x35,0xfb,0xe,0x26,
0x77,0x1e,0x6e,0x4f,0x69,0x65,0x9a,0xd5,0x38,0xf2,0x2c,0x5,0x97,0xf7,0xb3,0x0,
0x0,0x0,0x70,0x66,0xac,0xb5,0xb5,0xa4,0xcf,0x5d,0xc9,0x3a,0x61,0x9a,0xd0,0x46,
0xe0,0x3,0x0,0x0,0xb8,0x5c,0xbc,0xcb,0xbb,0x11,0xda,0x0,0x0,0x0,0xce,0x89,
0x6f,0x72,0xe7,0x8c,0xd7,0xd3,0xc8,0xac,0xfc,0x49,0x93,0x4d,0xdb,0x42,0x80,0x4,
0x0,0x0,0xb8,0x7c,0x12,0xc3,0x5f,0xde,0xd1,0xbe,0x0,0x0,0x0,0x98,0x1f,0x89,
0x53,0xbd,0xa4,0xa1,0x89,0x18,0x0,0x0,0x60,0x7a,0xa9,0xcb,0xbb,0x39,0xca,0xcc,
0x5b,0x63,0x95,0xbf,0x69,0x96,0x76,0x3,0x0,0x0,0x40,0x79,0x46,0xf2,0x55,0xd9,
0x2b,0x7c,0x0,0x0,0x0,0xe0,0x12,0x2a,0xb9,0xc0,0x96,0x3a,0xcf,0x5f,0xd9,0xa8,
0xe,0x2,0x0,0x0,0xe4,0x33,0xab,0xd4,0x94,0x5a,0xf9,0x9b,0x45,0x58,0x23,0x0,
0x2,0x0,0x0,0x5c,0x9c,0x73,0x69,0xf6,0x25,0xf0,0x1,0x0,0x0,0x94,0xa3,0xd4,
0xb5,0x7d,0x1,0x0,0x0,0xb0,0xd8,0x8,0x7f,0x0,0x0,0x0,0x4b,0x84,0xf0,0x7,
0x0,0x0,0x30,0x7,0xca,0xea,0x46,0x47,0xf8,0x3,0x0,0x0,0x58,0x22,0x84,0x3f,
0x0,0x0,0x80,0x25,0x42,0xf8,0x3,0x0,0x0,0x58,0x22,0x84,0x3f,0x0,0x0,0x80,
0x25,0x42,0xf8,0x3,0x0,0x0,0x58,0x22,0x84,0x3f,0x0,0x0,0x80,0x25,0x42,0xf8,
0x3,0x0,0x0,0x58,0x22,0x84,0x3f,0x0,0x0,0x80,0x25,0x42,0xf8,0x3,0x0,0x0,
0x58,0x22,0x84,0x3f,0x0,0x0,0x80,0x25,0x42,0xf8,0x3,0x0,0x0,0x58,0x22,0x84,
0x3f,0x60,0xc6,0xaa,0xd5,0xaa,0xd6,0xd7,0xd7,0xd5,0x6c,0x36,0x2f,0xfa,0x52,0x0,
0x0,0xd0,0xea,0x45,0x5f,0x0,0xb0,0x88,0x1a,0x8d,0x86,0xae,0x5d,0xbb,0xa6,0x46,
0xa3,0xa1,0x46,0xa3,0x31,0xdc,0xbf,0xb3,0xb3,0xa3,0x76,0xbb,0x7d,0x81,0x57,0x6,
0x0,0x58,0x76,0x84,0x3f,0x60,0x4a,0xb5,0x5a,0x4d,0x8d,0x46,0x43,0x57,0xaf,0x5e,
0x55,0xa3,0xd1,0x50,0xbd,0x5e,0x4f,0x3c,0x77,0x73,0x73,0x53,0x47,0x47,0x47,0x3a,
0x3a,0x3a,0x3a,0xc7,0x2b,0xc4,0x32,0xb0,0x15,0xe6,0x49,0x1c,0x1c,0x1c,0xa4,0x1e,
0xef,0x76,0xbb,0xea,0x76,0xbb,0x13,0x7d,0xf6,0x65,0x54,0xab,0xd5,0x54,0xab,0xd5,
0x32,0xcf,0xbb,0x7a,0xf5,0xaa,0xaa,0xd5,0x6a,0xae,0xcf,0x6c,0xb5,0x5a,0xa,0x82,
0x60,0xda,0x4b,0x3,0xce,0x5,0xe1,0xf,0x98,0xc2,0xad,0x5b,0xb7,0x74,0xf3,0xe6,
0xcd,0x42,0xef,0xd9,0xda,0xda,0xd2,0xdd,0xbb,0x77,0x9,0x80,0x28,0xd5,0xab,0xaf,
0xbe,0x9a,0x3b,0xa8,0xc4,0x15,0xfd,0xcf,0xb0,0xcf,0xe1,0xe1,0x61,0xe6,0x39,0x47,
0x47,0x47,0x13,0x5,0xa4,0x7a,0xbd,0x9e,0xeb,0xde,0xaa,0xd5,0x6a,0xea,0xff,0xf9,
0x9a,0xa5,0x7a,0xbd,0xae,0x7b,0xf7,0xee,0x5d,0xc8,0x77,0x3,0x45,0x11,0xfe,0x80,
0x29,0xb4,0x5a,0x2d,0x35,0x9b,0xcd,0x42,0x7f,0x70,0xaa,0xd5,0xaa,0xb6,0xb6,0xb6,
0xf4,0xe6,0x9b,0x6f,0x52,0x29,0x40,0x69,0x26,0xd,0x7e,0x65,0x71,0xbb,0x37,0x4c,
0x73,0xce,0xbc,0xba,0xe8,0xdf,0x1f,0x28,0x82,0x1,0x1f,0xc0,0x14,0x82,0x20,0xd0,
0xbd,0x7b,0xf7,0xa,0x87,0x38,0x1b,0x0,0x1,0x0,0x38,0x6f,0x84,0x3f,0x60,0x4a,
0xdd,0x6e,0x57,0x77,0xef,0xde,0x2d,0xfc,0xbe,0x7a,0xbd,0xae,0xcd,0xcd,0xcd,0x19,
0x5c,0x11,0x0,0x0,0xc9,0x8,0x7f,0x40,0x9,0x8e,0x8e,0x8e,0xb4,0xb7,0xb7,0x57,
0xf8,0x7d,0x6b,0x6b,0x6b,0x5a,0x5b,0x5b,0x9b,0xc1,0x15,0x1,0x0,0xe0,0x47,0xf8,
0x3,0x4a,0xd2,0x6a,0xb5,0xd4,0xe9,0x74,0xa,0xbf,0x6f,0x63,0x63,0xe3,0xc2,0x3a,
0xa9,0x3,0x0,0x96,0xf,0xe1,0xf,0x28,0xd1,0xce,0xce,0xce,0x44,0xfd,0xff,0x68,
0xfe,0x5,0x0,0x9c,0x17,0xc2,0x1f,0x50,0xa2,0x20,0x8,0xb4,0xbb,0xbb,0x5b,0xf8,
0x7d,0xf5,0x7a,0x9d,0xe6,0x5f,0x0,0xc0,0xb9,0x20,0xfc,0x1,0x25,0x6b,0xb7,0xdb,
0xb9,0xe6,0x3c,0x8b,0xdb,0xd8,0xd8,0x60,0xba,0x8,0x0,0xc0,0xcc,0x11,0xfe,0x80,
0x19,0x98,0xa4,0xfa,0x37,0xcd,0xa,0xd,0x0,0x0,0xe4,0xc5,0x24,0xcf,0xc0,0xc,
0x1c,0x1d,0x1d,0xa9,0xdd,0x6e,0x17,0x6e,0xca,0xbd,0x71,0xe3,0x6,0xcb,0x44,0x61,
0x22,0x41,0x10,0x94,0x56,0x39,0x2e,0x6b,0xb5,0x8e,0xa7,0x4f,0x9f,0xe,0x97,0x85,
0xbb,0x73,0xe7,0x4e,0xee,0xeb,0xb3,0xf3,0x67,0x5a,0xd7,0xae,0x5d,0x4b,0x3d,0x3f,
0x6b,0xb9,0xb6,0xbc,0xcb,0xb9,0x4d,0x63,0x91,0x96,0xbf,0xc3,0xe2,0x23,0xfc,0x1,
0x33,0xf2,0xe0,0xc1,0x3,0x35,0x9b,0xcd,0x42,0x7f,0x90,0xab,0xd5,0xaa,0x6e,0xdd,
0xba,0x35,0x51,0xe5,0x10,0xcb,0x6d,0x7b,0x7b,0x3b,0x33,0xe0,0x5c,0xd4,0x1a,0xbd,
0x79,0x97,0x67,0xb3,0xe2,0x5d,0x27,0x26,0xe9,0x46,0x51,0x44,0x19,0xcb,0xc2,0x11,
0xfe,0x30,0x4f,0x8,0x7f,0xc0,0x8c,0x74,0xbb,0x5d,0x3d,0x7a,0xf4,0xa8,0xd0,0xba,
0xa9,0xdd,0x6e,0x97,0xaa,0x1f,0x26,0x72,0x51,0xc1,0x2e,0x8f,0xeb,0xd7,0xaf,0x17,
0x3a,0xbf,0xd5,0x6a,0xcd,0xe8,0x4a,0xfc,0x82,0x20,0x98,0x79,0xc0,0x4,0x2e,0x13,
0xc2,0x1f,0x30,0x43,0xad,0x56,0x4b,0x37,0x6e,0xdc,0x48,0xac,0x7a,0x1c,0x1e,0x1e,
0xaa,0xdb,0xed,0xea,0xe0,0xe0,0x60,0xb8,0xd,0x2c,0x9a,0x66,0xb3,0x99,0xfb,0xdc,
0xa3,0xa3,0x23,0xfe,0x7b,0x0,0xcc,0x18,0xe1,0xf,0x98,0x21,0x3b,0xf5,0xcb,0xe6,
0xe6,0xa6,0xba,0xdd,0xae,0xe,0xf,0xf,0x9,0x7a,0x58,0x2a,0xb5,0x5a,0xad,0x50,
0x93,0x6a,0xbb,0xdd,0x9e,0xe1,0xd5,0x0,0x90,0x8,0x7f,0x98,0x73,0xb5,0x5a,0x4d,
0xaf,0xbe,0xfa,0x6a,0xe6,0x79,0x41,0x10,0xe8,0xe8,0xe8,0x28,0xf3,0xbc,0xac,0x4e,
0xec,0x7,0x7,0x7,0xa9,0xef,0xf7,0x35,0xbd,0xb5,0xdb,0x6d,0x1d,0x1d,0x1d,0xe5,
0xfa,0xfe,0x34,0x79,0x3b,0xad,0xd7,0x6a,0x35,0x7d,0xdf,0xf7,0x7d,0x5f,0xea,0x39,
0x79,0xfa,0x38,0x35,0x1a,0x8d,0x91,0xd7,0x41,0x10,0xe8,0xee,0xdd,0xbb,0x53,0xdf,
0x7,0x96,0x4b,0xd1,0x26,0xdf,0xfd,0xfd,0xfd,0x19,0x5d,0x9,0x0,0x8b,0xf0,0x87,
0xb9,0x96,0x77,0x4,0x5f,0xb5,0x5a,0x1d,0xb,0x33,0x3e,0x59,0xe7,0x14,0xe9,0xbf,
0xb7,0x68,0xaa,0xd5,0xaa,0xae,0x5f,0xbf,0x4e,0xf8,0x43,0x21,0x37,0x6e,0xdc,0xc8,
0x7d,0x2e,0x4d,0xbe,0xc0,0xf9,0x60,0x9e,0x3f,0x0,0xc0,0x4c,0xd4,0xeb,0xf5,0x42,
0x53,0xac,0xd0,0xe4,0xb,0x9c,0xf,0xc2,0x1f,0x0,0x60,0x26,0x8a,0x4e,0x5a,0x9e,
0xd5,0xad,0x2,0x40,0x39,0x8,0x7f,0x0,0x80,0xd2,0xd5,0x6a,0xb5,0x42,0x93,0x9c,
0x97,0xd1,0x2f,0x16,0x40,0x3e,0x84,0x3f,0x0,0x40,0xe9,0x6e,0xdd,0xba,0x55,0xe8,
0x7c,0x9a,0x7c,0x81,0xf3,0x43,0xf8,0x3,0x0,0x94,0xaa,0x68,0xd5,0x4f,0x92,0x1e,
0x3f,0x7e,0x3c,0xa3,0xab,0x1,0x10,0xc7,0x68,0x5f,0x0,0x58,0x52,0xd5,0x6a,0x75,
0xa4,0x5f,0x9e,0xbb,0x16,0xaf,0x94,0x6f,0xfd,0x5e,0x9f,0x8d,0x8d,0x8d,0x42,0xe7,
0x77,0x3a,0x9d,0x73,0x5d,0xd9,0x26,0xbe,0xdc,0x9c,0x3b,0x3d,0x52,0x10,0x4,0xe7,
0xbe,0xc2,0x8,0x70,0xde,0x8,0x7f,0x0,0xb0,0xa4,0xd6,0xd7,0xd7,0x2f,0xc5,0xf4,
0x45,0xcd,0x66,0x53,0xaf,0xbd,0xf6,0xda,0x45,0x5f,0xc6,0x50,0xa3,0xd1,0xd0,0xbd,
0x7b,0xf7,0x2e,0xfa,0x32,0x80,0x99,0xa1,0xd9,0x17,0x0,0x0,0x47,0xd2,0x72,0x8c,
0xc0,0xa2,0xa0,0xf2,0x7,0xe4,0xe4,0x5b,0xbd,0x23,0x4b,0x9e,0x89,0xa5,0x5d,0x69,
0xcd,0x6c,0x79,0x57,0xf8,0x0,0x0,0x20,0xd,0xe1,0xf,0x73,0xed,0xf0,0xf0,0x50,
0x9d,0x4e,0x67,0xe4,0xff,0xa9,0x4f,0xb3,0x44,0xdb,0x24,0x1,0x2f,0x4d,0xd1,0xa6,
0xac,0xdd,0xdd,0x5d,0x1d,0x1e,0x1e,0x4e,0xfc,0x7d,0xf1,0xbe,0x4c,0xae,0x6a,0xb5,
0xaa,0xab,0x57,0xaf,0xa6,0xbe,0x3f,0x6d,0xd9,0xb7,0x20,0x8,0x98,0x87,0xd,0x0,
0x16,0x0,0xe1,0xf,0x73,0x8f,0xbe,0x39,0x67,0xb2,0xe6,0x49,0xeb,0x74,0x3a,0xe7,
0x74,0x25,0x0,0x80,0xcb,0x8a,0x3e,0x7f,0x0,0x0,0x0,0x4b,0x84,0xf0,0x7,0x0,
0x0,0xb0,0x44,0x8,0x7f,0x0,0x0,0x0,0x4b,0x84,0xf0,0x7,0x0,0x0,0xb0,0x44,
0x8,0x7f,0x0,0x0,0x0,0x4b,0x84,0xd1,0xbe,0x0,0x80,0x5c,0xf6,0xf6,0xf6,0xf4,
0xe4,0xc9,0x93,0x8b,0xbe,0x8c,0x89,0x6c,0x6c,0x6c,0x24,0x4e,0x63,0x4,0x2c,0x1b,
0xc2,0x1f,0x0,0x20,0x97,0x27,0x4f,0x9e,0x4c,0x35,0xf,0xe5,0x45,0x3a,0xcf,0xb5,
0x83,0x81,0xcb,0x8e,0x66,0x5f,0x0,0x0,0x80,0x25,0x42,0xf8,0x3,0x0,0x0,0x58,
0x22,0x34,0xfb,0x2,0x0,0x2e,0xc4,0xfa,0xfa,0xba,0xaa,0xd5,0xaa,0x9e,0x3e,0x7d,
0xaa,0xa3,0xa3,0xa3,0xcc,0x15,0x6a,0x0,0x94,0x83,0xf0,0x7,0x0,0x38,0x77,0xcd,
0x66,0x53,0xb7,0x6f,0xdf,0x1e,0xd9,0x17,0x4,0x81,0x3a,0x9d,0x8e,0xe,0xe,0xe,
0xd4,0xe9,0x74,0xe8,0xa7,0x7,0xcc,0x8,0xe1,0xf,0x0,0x70,0xee,0xae,0x5e,0xbd,
0x3a,0xb6,0xaf,0x5a,0xad,0x6a,0x6d,0x6d,0x4d,0x6b,0x6b,0x6b,0x92,0xfa,0x6b,0x51,
0xef,0xef,0xef,0xab,0xdd,0x6e,0x9f,0xf7,0xe5,0x1,0xb,0x8d,0x3e,0x7f,0x0,0x80,
0x73,0x77,0x70,0x70,0x90,0x79,0x4e,0xb3,0xd9,0xd4,0xe6,0xe6,0xa6,0x3e,0xf2,0x91,
0x8f,0xe8,0xd6,0xad,0x5b,0xe7,0x70,0x55,0xc0,0x72,0x20,0xfc,0x1,0x0,0x2e,0xb5,
0x6a,0xb5,0xaa,0x9b,0x37,0x6f,0x6a,0x7d,0x7d,0xfd,0xa2,0x2f,0x5,0x58,0x8,0x84,
0x3f,0x0,0xc0,0x5c,0xd8,0xdf,0xdf,0xbf,0xe8,0x4b,0x0,0x16,0x2,0xe1,0xf,0x0,
0x70,0xe9,0xb5,0xdb,0x6d,0x75,0xbb,0xdd,0x8b,0xbe,0xc,0x60,0x21,0x10,0xfe,0x0,
0x0,0x97,0x5a,0x10,0x4,0x7a,0xf0,0xe0,0xc1,0x45,0x5f,0x6,0xb0,0x30,0x8,0x7f,
0x0,0x80,0x4b,0xed,0xd1,0xa3,0x47,0x54,0xfd,0x80,0x12,0x11,0xfe,0x0,0x0,0xe7,
0xae,0x5a,0xad,0xe6,0x3e,0xf7,0xf1,0xe3,0xc7,0x33,0xbc,0x12,0x60,0xf9,0x10,0xfe,
0x0,0x0,0xe7,0xce,0x37,0xcf,0x5f,0x12,0xaa,0x7e,0x40,0xb9,0x8,0x7f,0x0,0x80,
0x73,0x57,0xab,0xd5,0x72,0x9d,0x77,0x78,0x78,0x38,0xe3,0x2b,0x1,0x96,0xf,0xe1,
0xf,0x0,0x70,0xee,0xf2,0x86,0x3f,0xd6,0xfb,0x5,0xca,0xc7,0xf2,0x6e,0x58,0x48,
0xf5,0x7a,0x5d,0x5b,0x5b,0x5b,0xc3,0x7e,0x45,0xdd,0x6e,0x37,0xb5,0xe9,0x28,0x8,
0x82,0xc4,0x3f,0x32,0x4f,0x9e,0x3c,0x49,0x5c,0x63,0x34,0xeb,0x73,0xcb,0x54,0xaf,
0xd7,0x13,0xfb,0x49,0x5d,0xbd,0x7a,0xd5,0x7b,0xac,0x56,0xab,0x65,0xfe,0x91,0x6d,
0x34,0x1a,0x23,0xaf,0x1f,0x3e,0x7c,0xc8,0xc8,0x4a,0xcc,0x5c,0xfc,0x3f,0x77,0x49,
0x9e,0x3c,0x79,0x32,0xe3,0x2b,0x1,0x96,0xf,0xe1,0xf,0xb,0xe9,0xfa,0xf5,0xeb,
0x23,0x61,0x28,0x4f,0x8,0x6a,0x36,0x9b,0xb3,0xbe,0xac,0x4c,0x5b,0x5b,0x5b,0x17,
0x7d,0x9,0xb9,0xff,0x28,0x3,0x93,0x2a,0xf2,0x9f,0x31,0x9a,0x7d,0x81,0xf2,0xd1,
0xec,0xb,0x0,0x38,0x57,0x79,0x7,0x7b,0x4,0x41,0xc0,0x60,0xf,0x60,0x6,0x8,
0x7f,0x0,0x80,0x73,0x95,0xb7,0xf2,0x47,0xd5,0xf,0x98,0xd,0xc2,0x1f,0x0,0xe0,
0x5c,0x11,0xfe,0x80,0x8b,0x45,0xf8,0x3,0x0,0x9c,0x9b,0x46,0xa3,0x91,0x7b,0x82,
0xe7,0x83,0x83,0x83,0x19,0x5f,0x8d,0x5f,0xde,0x91,0xc8,0xc0,0xbc,0x22,0xfc,0x1,
0x0,0xce,0xcd,0xf5,0xeb,0xd7,0x73,0x9d,0x97,0x36,0x2,0x7f,0xd6,0x8,0x7f,0x58,
0x74,0x84,0x3f,0x0,0xc0,0xb9,0xc9,0x3b,0xaa,0xbe,0xd3,0xe9,0xcc,0xf8,0x4a,0x80,
0xe5,0x45,0xf8,0x3,0x0,0x9c,0x8b,0x7a,0xbd,0x9e,0xbb,0xaa,0x76,0x51,0x4d,0xbe,
0xc0,0x32,0x20,0xfc,0x1,0xc0,0x92,0xaa,0xd7,0xeb,0xe7,0xfa,0x7d,0x2f,0xbd,0xf4,
0x52,0xee,0x73,0xa9,0xfc,0x1,0xb3,0xc3,0x24,0xcf,0x40,0x49,0x7c,0x7d,0x94,0x8a,
0x4e,0x98,0x7c,0x74,0x74,0x34,0xb2,0x9a,0x48,0xda,0xaa,0x1e,0xc0,0xb4,0xce,0xfb,
0x3f,0x5b,0x6b,0x6b,0x6b,0xb9,0xce,0x8b,0xff,0xf7,0x0,0x40,0xb9,0x8,0x7f,0x58,
0x48,0xad,0x56,0xab,0xd0,0xf9,0x69,0x4b,0xb8,0x49,0x93,0x4f,0x39,0xf1,0xda,0x6b,
0xaf,0x15,0x3a,0x7f,0x77,0x77,0xb7,0xf0,0x77,0x65,0xad,0x5e,0x72,0xed,0xda,0xb5,
0x42,0x9f,0xb7,0xbf,0xbf,0x5f,0xe8,0x7c,0x20,0x8f,0x66,0xb3,0x99,0x3b,0x6c,0xb6,
0xdb,0xed,0x19,0x5f,0xd,0xb0,0xdc,0x8,0x7f,0x58,0x48,0x41,0x10,0x2c,0xcd,0xfa,
0xb4,0x59,0xeb,0xb,0x33,0x57,0x1a,0x2e,0x83,0x22,0x4d,0xbe,0xfc,0x1f,0x10,0x60,
0xb6,0xe8,0xf3,0x7,0x0,0x98,0xa9,0x5a,0xad,0x96,0x7b,0x94,0xef,0xd1,0xd1,0x11,
0x4b,0xba,0x1,0x33,0x46,0xf8,0x3,0x0,0xcc,0x54,0x91,0xaa,0x1f,0x4d,0xbe,0xc0,
0xec,0x11,0xfe,0x0,0x0,0x33,0x95,0x77,0xa0,0x87,0x44,0x93,0x2f,0x70,0x1e,0x8,
0x7f,0x0,0x80,0x99,0x59,0x5b,0x5b,0xcb,0x3d,0xb7,0x1f,0x4d,0xbe,0xc0,0xf9,0x20,
0xfc,0x1,0x0,0x66,0xe6,0xd6,0xad,0x5b,0xb9,0xcf,0x2d,0x3a,0x4a,0x1f,0xc0,0x64,
0x8,0x7f,0x0,0x80,0x99,0x28,0x52,0xf5,0x93,0x98,0xd8,0x19,0x38,0x2f,0x84,0x3f,
0x0,0xc0,0x4c,0x14,0xa9,0xfa,0xb5,0xdb,0xed,0x4b,0x35,0xb1,0x33,0x93,0xab,0x63,
0x91,0x11,0xfe,0x0,0x0,0xa5,0x5b,0x5f,0x5f,0x2f,0x54,0xf5,0xbb,0x6c,0x4d,0xbe,
0xe7,0xbd,0xf4,0x1d,0x70,0x9e,0x8,0x7f,0x0,0xb0,0xa4,0x8a,0x84,0xb3,0x22,0xaa,
0xd5,0xaa,0x6e,0xde,0xbc,0x99,0xfb,0xfc,0xc3,0xc3,0xc3,0xb1,0xa5,0x11,0x1,0xcc,
0xe,0x2b,0x7c,0x0,0xc0,0x92,0x9a,0x55,0xf8,0xdb,0xdc,0xdc,0x2c,0xd4,0x6c,0xfa,
0xf8,0xf1,0xe3,0xb1,0x7d,0x77,0xee,0xdc,0x51,0xad,0x56,0x53,0xb7,0xdb,0xd5,0xfe,
0xfe,0xbe,0x3a,0x9d,0xce,0xa5,0x6a,0x16,0x6,0xe6,0x19,0xe1,0xf,0x0,0x96,0xd0,
0xac,0xfa,0xb4,0xad,0xad,0xad,0xe5,0x5e,0xcd,0x43,0xea,0x2f,0x4f,0x18,0x9f,0xd8,
0xd9,0xfd,0x8c,0x7a,0xbd,0x3e,0xdc,0xee,0x74,0x3a,0xda,0xdf,0xdf,0x67,0x22,0x68,
0x60,0x4a,0x84,0x3f,0x0,0x58,0x42,0xb3,0xe8,0xd3,0x56,0xaf,0xd7,0xb5,0xb1,0xb1,
0x51,0xe8,0x3d,0xf1,0x35,0xb8,0xab,0xd5,0x6a,0xe2,0x40,0x91,0x66,0xb3,0xa9,0x66,
0xb3,0xa9,0x8d,0x8d,0xd,0xb5,0xdb,0x6d,0xb5,0x5a,0x2d,0xe6,0x5,0x4,0x26,0x40,
0xf8,0x3,0x80,0x25,0xd4,0xed,0x76,0x15,0x4,0x41,0x69,0x15,0xc0,0x6a,0xb5,0x5a,
0xb8,0xb9,0xd7,0x57,0xf5,0xcb,0x33,0x50,0xa4,0x5a,0xad,0xea,0xc6,0x8d,0x1b,0xba,
0x71,0xe3,0x86,0xe,0xf,0xf,0xd5,0x6a,0xb5,0x32,0xa7,0x89,0x69,0xb5,0x5a,0x6a,
0x34,0x1a,0xb9,0xae,0xab,0xdd,0x6e,0xeb,0xf0,0xf0,0x30,0xd7,0xb9,0xc0,0x3c,0x22,
0xfc,0x1,0xc0,0x12,0xea,0x76,0xbb,0xda,0xde,0xde,0xce,0xdd,0xef,0xaf,0xdb,0xed,
0x26,0x56,0xd9,0xaa,0xd5,0xaa,0xb6,0xb6,0xb6,0xa,0x57,0x13,0xe3,0x55,0xbf,0x5a,
0xad,0x56,0x68,0xa0,0x88,0x24,0x35,0x1a,0xd,0x35,0x1a,0xd,0x75,0xbb,0x5d,0x3d,
0x78,0xf0,0x20,0xb1,0x49,0xb8,0xd3,0xe9,0xe8,0xde,0xbd,0x7b,0xba,0x7a,0xf5,0x6a,
0xea,0xe7,0x5,0x41,0x70,0xe9,0x46,0x1e,0x3,0x65,0x23,0xfc,0x1,0xc0,0x92,0x4a,
0xb,0x74,0x79,0x4d,0x1a,0xfc,0x7c,0x55,0xbf,0xcd,0xcd,0xcd,0x89,0xaf,0xa3,0x56,
0xab,0x69,0x73,0x73,0x53,0x1b,0x1b,0x1b,0x7a,0xf4,0xe8,0x91,0x5a,0xad,0xd6,0xd8,
0x0,0x91,0x4e,0xa7,0xc3,0x44,0xd2,0x80,0x8,0x7f,0x0,0x80,0x9,0x4d,0x1a,0xfc,
0x24,0x69,0x67,0x67,0x67,0xe4,0x75,0xb3,0xd9,0xcc,0xdd,0x2c,0x9b,0x75,0x4d,0x37,
0x6f,0xde,0xd4,0x8d,0x1b,0x37,0x12,0x43,0x20,0xb0,0xec,0x8,0x7f,0x0,0x80,0xc2,
0xea,0xf5,0xba,0xb6,0xb6,0xb6,0x26,0xea,0x33,0xd8,0xe9,0x74,0xc6,0xfa,0xd4,0x15,
0x1d,0x28,0x92,0x85,0x10,0x8,0x24,0x23,0xfc,0x1,0x0,0xa,0x59,0x5b,0x5b,0x9b,
0xb8,0x89,0x36,0x8,0x2,0xed,0xee,0xee,0x8e,0xec,0x2b,0xba,0x1a,0x48,0x11,0x84,
0x40,0x60,0x1c,0xe1,0xf,0x0,0x90,0x8b,0x1d,0xd1,0x5b,0x64,0x1e,0xbf,0xb8,0x87,
0xf,0x1f,0x8e,0xf5,0x33,0x6c,0xb5,0x5a,0xda,0xdf,0xdf,0xd7,0xf5,0xeb,0xd7,0xd5,
0x68,0x34,0xa6,0xfa,0xfc,0x24,0x6e,0x8,0xdc,0xdd,0xdd,0x65,0xae,0x40,0x2c,0x35,
0xc2,0x1f,0x0,0x20,0x53,0xa3,0xd1,0xd0,0xe6,0xe6,0xe6,0x54,0x15,0xba,0x4e,0xa7,
0x93,0x38,0x92,0xb6,0xdb,0xed,0xaa,0xd5,0x6a,0xd,0x8f,0x37,0x9b,0x4d,0x5d,0xbf,
0x7e,0x5d,0xcd,0x66,0xb3,0xd4,0x9,0xa9,0x6d,0x80,0xbd,0x75,0xeb,0x96,0x76,0x76,
0x76,0x98,0xd2,0x5,0x4b,0x89,0xf0,0x7,0x0,0x48,0x54,0x46,0xb5,0x4f,0xea,0x87,
0xbb,0xf8,0x20,0x8f,0x34,0xee,0xc8,0xdc,0x66,0xb3,0xa9,0x97,0x5e,0x7a,0xa9,0xd4,
0x8a,0x60,0xad,0x56,0xd3,0xd6,0xd6,0x96,0xe,0xf,0xf,0xb5,0xb3,0xb3,0xc3,0x64,
0xd1,0x58,0x2a,0x84,0x3f,0x0,0xc0,0x98,0x6a,0xb5,0xaa,0xf5,0xf5,0x75,0xdd,0xb8,
0x71,0x63,0xea,0xca,0x5b,0x10,0x4,0xba,0x77,0xef,0xde,0xc4,0x7d,0xed,0x6c,0x10,
0xac,0xd5,0x6a,0x7a,0xe9,0xa5,0x97,0x4a,0xb9,0x26,0xab,0xd1,0x68,0xe8,0xd5,0x57,
0x5f,0xd5,0xc3,0x87,0xf,0xe9,0xf,0x88,0xa5,0x41,0xf8,0x3,0x0,0x8c,0x58,0x5b,
0x5b,0xd3,0xad,0x5b,0xb7,0x4a,0x1b,0x84,0xb1,0xb3,0xb3,0xa3,0xa3,0xa3,0xa3,0xa9,
0x3f,0xc7,0x4e,0xe4,0xdc,0x6a,0xb5,0xd4,0x6c,0x36,0x4b,0xbd,0xc6,0x9b,0x37,0x6f,
0x6a,0x6d,0x6d,0x4d,0xbb,0xbb,0xbb,0xcc,0x5,0x88,0x85,0x47,0xf8,0x3,0x0,0xc,
0x2b,0x7d,0x6b,0x6b,0x6b,0xa5,0x8e,0xbc,0xdd,0xd9,0xd9,0x29,0x3d,0x4c,0x5,0x41,
0xa0,0x76,0xbb,0xad,0x76,0xbb,0x5d,0x6a,0x50,0xad,0xd5,0x6a,0xba,0x73,0xe7,0x8e,
0x3a,0x9d,0x8e,0x76,0x77,0x77,0x69,0xa,0xc6,0xc2,0x22,0xfc,0x61,0x6e,0xd4,0xeb,
0x75,0x5d,0xbf,0x7e,0x7d,0x64,0xdf,0xc1,0xc1,0x41,0xae,0xf7,0x96,0xb1,0x92,0xc1,
0xa2,0xcb,0x33,0xc1,0xee,0xb5,0x6b,0xd7,0x46,0x5e,0xb3,0x14,0xd6,0xfc,0xab,0xd7,
0xeb,0x5a,0x5f,0x5f,0x2f,0x7d,0x60,0x85,0xd4,0xf,0x7e,0xb3,0x1e,0x55,0x3b,0x8b,
0x10,0x68,0x27,0x9c,0xb6,0x4d,0xc1,0xc0,0xa2,0x21,0xfc,0x61,0x2e,0x34,0x9b,0x4d,
0xdd,0xb9,0x73,0x67,0x6c,0x7f,0xd1,0x75,0x40,0xf3,0xc8,0x3b,0xfa,0x6f,0x16,0x81,
0xf2,0xa5,0x97,0x5e,0x1a,0xb,0x58,0x79,0xd4,0x6a,0xb5,0xd4,0x3f,0x7a,0xd5,0x6a,
0x75,0xa2,0x55,0x18,0xf2,0xe2,0xf,0xe4,0x7c,0xb1,0xff,0x47,0xaa,0xec,0x2a,0x9f,
0x15,0x4,0xc1,0x4c,0x2a,0x7e,0x69,0x6c,0x8,0xbc,0x75,0xeb,0x56,0x29,0x7d,0x2,
0xab,0xd5,0xaa,0x6e,0xdf,0xbe,0xad,0x66,0xb3,0xc9,0x80,0x10,0x2c,0x1c,0xc2,0x1f,
0xe6,0x42,0xd6,0x62,0xec,0x65,0x2a,0x63,0x89,0xa9,0x49,0xad,0xad,0xad,0x5d,0xd8,
0x77,0x4f,0xaa,0xec,0x6a,0x11,0xca,0x57,0xad,0x56,0xd5,0x68,0x34,0x74,0xed,0xda,
0x35,0x35,0x9b,0xcd,0x99,0x4d,0xa8,0x2c,0xf5,0x83,0xdf,0xdd,0xbb,0x77,0x4b,0xe9,
0xe3,0x37,0x89,0x7,0xf,0x1e,0xe8,0xf1,0xe3,0xc7,0xda,0xd8,0xd8,0x28,0x65,0x74,
0x70,0xa3,0xd1,0xd0,0x2b,0xaf,0xbc,0xc2,0xdc,0x80,0x58,0x28,0x84,0x3f,0x0,0x58,
0x20,0xf5,0x7a,0x5d,0xd5,0x6a,0x55,0xd7,0xae,0x5d,0x53,0xad,0x56,0x53,0xbd,0x5e,
0x9f,0x69,0xd5,0xd7,0x75,0x78,0x78,0x38,0xd5,0xa8,0xde,0xb2,0x74,0xbb,0x5d,0xdd,
0xbb,0x77,0x4f,0xcd,0x66,0x53,0x9b,0x9b,0x9b,0xa5,0x54,0x1,0x37,0x37,0x37,0x75,
0xed,0xda,0x35,0xed,0xee,0xee,0x5e,0xf8,0xfd,0x1,0xd3,0x22,0xfc,0x1,0xc0,0x1c,
0xb3,0xc1,0xa4,0xd1,0x68,0x5c,0x68,0x15,0xf6,0xe1,0xc3,0x87,0x7a,0xf0,0xe0,0xc1,
0x85,0x7d,0xbf,0x4f,0xa7,0xd3,0xd1,0x9b,0x6f,0xbe,0x59,0xca,0x3c,0x85,0x52,0xbf,
0x32,0x5f,0xaf,0xd7,0x4b,0x1b,0xbd,0xc,0x5c,0x94,0x95,0x8b,0xbe,0x0,0x0,0xc0,
0xe4,0xec,0xe4,0xc7,0x17,0x15,0xfc,0xba,0xdd,0xae,0xee,0xde,0xbd,0x7b,0xe9,0x82,
0x9f,0x65,0xe7,0x18,0xdc,0xd9,0xd9,0x29,0xa5,0x62,0x57,0xaf,0xd7,0xb5,0xb5,0xb5,
0x35,0x97,0x5d,0x34,0x0,0x8b,0xf0,0x7,0x0,0x73,0x6c,0x7f,0x7f,0xff,0xc2,0xbe,
0xfb,0xe1,0xc3,0x87,0xda,0xde,0xde,0x9e,0x8b,0x25,0xd2,0xda,0xed,0xb6,0xb6,0xb7,
0xb7,0x4b,0xa9,0xd8,0xb9,0x4b,0xc4,0x1,0xf3,0x88,0xf0,0x7,0x0,0x73,0xac,0xdb,
0xed,0x6a,0x6f,0x6f,0xef,0x5c,0xbf,0xf3,0xf0,0xf0,0x50,0x6f,0xbe,0xf9,0xa6,0x1e,
0x3c,0x78,0x30,0x57,0xfd,0xdf,0xba,0xdd,0xae,0xb6,0xb7,0xb7,0x4b,0x1b,0xb8,0x31,
0xcb,0x81,0x33,0xc0,0x2c,0xd1,0xe7,0xf,0x0,0xe6,0x5c,0xab,0xd5,0x52,0xa3,0xd1,
0x28,0x75,0xed,0x5b,0x1f,0xbb,0x3e,0xef,0x3c,0x54,0xfa,0xd2,0xec,0xec,0xec,0xe8,
0xe0,0xe0,0x40,0x1b,0x1b,0x1b,0x13,0x37,0x97,0x1f,0x1d,0x1d,0x69,0x77,0x77,0xb7,
0xe4,0x2b,0x3,0xce,0x7,0xe1,0xf,0x0,0x16,0xc0,0xce,0xce,0x8e,0xb6,0xb6,0xb6,
0x66,0x32,0xb2,0xd7,0x2e,0xab,0xb6,0x48,0x53,0x9d,0xb4,0xdb,0x6d,0x1d,0x1d,0x1d,
0xe9,0xce,0x9d,0x3b,0x85,0x2b,0x78,0x97,0x65,0x54,0x33,0x30,0x29,0x9a,0x7d,0x1,
0x60,0x1,0xd8,0x89,0x95,0xcb,0xc,0x24,0x87,0x87,0x87,0xda,0xd9,0xd9,0xd1,0x9b,
0x6f,0xbe,0xb9,0x50,0xc1,0xcf,0x3a,0x3a,0x3a,0x2a,0xdc,0xf,0xb0,0xdd,0x6e,0xeb,
0xee,0xdd,0xbb,0x4,0x3f,0xcc,0x35,0x2a,0x7f,0x98,0xb,0x7,0x7,0x7,0x53,0xad,
0xe6,0x11,0x4,0x41,0xae,0xff,0x81,0x3f,0x3a,0x3a,0xca,0xfc,0x1f,0xf5,0x20,0x8,
0xf4,0xe4,0xc9,0x93,0x89,0xaf,0x25,0xcd,0xd5,0xab,0x57,0x73,0x37,0x43,0xe5,0x99,
0x8c,0x7a,0xd6,0x2b,0x7b,0xe0,0x72,0xb1,0x4d,0x91,0x9b,0x9b,0x9b,0x13,0x7f,0x46,
0x10,0x4,0xea,0x74,0x3a,0x6a,0xb5,0x5a,0x4b,0x31,0x9d,0x49,0x10,0x4,0xda,0xde,
0xde,0xd6,0xe6,0xe6,0x66,0xe6,0x8,0xde,0xcb,0x38,0x9d,0xd,0x30,0x9,0xc2,0x1f,
0xe6,0xc2,0xe1,0xe1,0xa1,0xb6,0xb7,0xb7,0xbd,0xc1,0x68,0xde,0xfb,0x1f,0xb9,0x2e,
0xc3,0xbd,0xd8,0x49,0x82,0xf3,0xc8,0x1b,0xaa,0x71,0x7e,0xda,0xed,0xb6,0xae,0x5f,
0xbf,0x5e,0xb8,0xff,0x5f,0xa7,0xd3,0xd1,0xfe,0xfe,0xbe,0x3a,0x9d,0xce,0x52,0x56,
0xb5,0xec,0xdc,0x7d,0xb7,0x6f,0xdf,0x4e,0x3c,0xbe,0x88,0xd5,0x4f,0x2c,0x27,0xc2,
0x1f,0xe6,0x6,0x21,0xe3,0x7c,0xf0,0x3b,0xcf,0xbf,0xdd,0xdd,0xdd,0xcc,0x49,0x9f,
0x6d,0x85,0xef,0xe0,0xe0,0x60,0x69,0x3,0x5f,0x5c,0xab,0xd5,0xd2,0xd3,0xa7,0x4f,
0x47,0x56,0x5,0x9,0x82,0x80,0xa5,0xdd,0xb0,0x70,0x8,0x7f,0x0,0xb0,0x60,0xba,
0xdd,0xae,0x1e,0x3d,0x7a,0x34,0xd2,0x55,0x22,0x8,0x2,0x1d,0x1e,0x1e,0xea,0xf0,
0xf0,0x50,0x7,0x7,0x7,0x84,0xfc,0x4,0x9d,0x4e,0x67,0xd8,0xc,0x5c,0xaf,0xd7,
0x2f,0x74,0x9d,0x62,0x60,0x56,0x8,0x7f,0x0,0xb0,0x80,0x5a,0xad,0x96,0xe,0xe,
0xe,0x24,0xf5,0xc3,0x60,0xb7,0xdb,0xbd,0xe0,0x2b,0x9a,0x1f,0x76,0xd5,0x12,0x60,
0x51,0x11,0xfe,0x0,0x60,0x1,0xd9,0x4a,0x1f,0x0,0xc4,0x31,0xd5,0xb,0x0,0x0,
0xc0,0x12,0x21,0xfc,0x1,0x0,0x0,0x2c,0x11,0xc2,0x1f,0x0,0x0,0xc0,0x12,0x21,
0xfc,0x1,0x0,0x0,0x2c,0x11,0xc2,0x1f,0x0,0x0,0xc0,0x12,0x29,0x35,0xfc,0x19,
0x63,0xca,0xfc,0x38,0x0,0x0,0x0,0x94,0x8c,0xca,0x1f,0x0,0x0,0xc0,0x12,0x29,
0x35,0xfc,0x55,0x2a,0x95,0x32,0x3f,0xe,0x0,0x0,0x0,0x25,0xa3,0xf2,0x7,0x0,
0x0,0xb0,0x44,0xe8,0xf3,0x7,0x0,0x0,0x30,0x27,0xca,0xc8,0x5a,0x54,0xfe,0x0,
0x0,0x0,0x96,0x8,0xe1,0xf,0x0,0x0,0x60,0x89,0x10,0xfe,0x0,0x0,0x0,0x2e,
0x29,0x63,0x8c,0xca,0xee,0x54,0x37,0x12,0xfe,0x6c,0x3b,0xb2,0xdb,0x9e,0x9c,0xd6,
0xb6,0x4c,0x1f,0x3f,0x0,0x0,0x80,0xf9,0x42,0xe5,0xf,0x0,0x0,0xe0,0xb2,0x2b,
0xb1,0x2,0x48,0xf8,0x3,0x0,0x0,0xb8,0x20,0x17,0xd1,0x8a,0x4a,0xf8,0x3,0x0,
0x0,0xb8,0x48,0xc6,0xf4,0x1f,0x9,0xaf,0xf3,0x76,0xc7,0xcb,0x2b,0x57,0xf8,0x2b,
0x33,0x95,0xb2,0xa,0x8,0x0,0x0,0x40,0xe,0x6e,0xe8,0x2b,0xf1,0x63,0x4b,0xaf,
0xfc,0x31,0x8,0x4,0x0,0x0,0x60,0x72,0x46,0xe3,0x79,0xca,0xc4,0xab,0x83,0x53,
0x18,0x86,0x3f,0xef,0x97,0xa4,0xbc,0x9e,0x4,0x55,0x3f,0x0,0x0,0x80,0x51,0x36,
0xec,0xd9,0xc7,0x70,0xbf,0xdd,0xf6,0xcc,0xc6,0x32,0x8d,0xb1,0xca,0x5f,0xde,0xa9,
0x5d,0xa8,0xf0,0x1,0x0,0x0,0x94,0x6b,0x18,0x2,0x9d,0xed,0xb2,0x95,0xd2,0xec,
0x4b,0x10,0x4,0x0,0x0,0x98,0x8c,0x1b,0xf6,0x92,0x8e,0x29,0xe5,0x9c,0xa2,0x56,
0xec,0x7,0x27,0x5d,0x8c,0xf7,0x22,0x8,0x7b,0x0,0x0,0x0,0xd3,0xf3,0x65,0x2a,
0xcf,0x68,0x5f,0xdb,0xe7,0xaf,0x94,0xf0,0xe7,0x6b,0xca,0x25,0xdc,0x1,0x0,0x0,
0xcc,0x9e,0x2f,0x71,0x8d,0xf5,0x1,0x2c,0xb1,0xea,0x27,0xe5,0x68,0xf6,0xcd,0xfa,
0xa2,0x3c,0x17,0xc2,0x40,0xf,0x0,0x0,0x80,0xbe,0xb1,0x62,0x9b,0x53,0xd5,0x8b,
0xa2,0x68,0xac,0xcf,0x9f,0xdb,0xec,0x5b,0x86,0xb1,0xd1,0xbe,0x45,0xd7,0xf7,0x5,
0x0,0x0,0xc0,0x64,0x6c,0xb8,0x8b,0xe2,0x4d,0xba,0xb1,0x1c,0x16,0x95,0x3d,0xd5,
0x4b,0x9e,0x70,0x97,0xd4,0xff,0x2f,0xed,0x38,0x0,0x0,0x0,0xfc,0xbc,0xfd,0xf8,
0x9c,0xe6,0xde,0x28,0x8a,0x86,0x95,0x40,0x77,0xff,0xb4,0x52,0xfb,0xfc,0xe5,0x9d,
0xf6,0xa5,0x28,0x9a,0x81,0x1,0x0,0xc0,0x32,0x1a,0xcb,0x5a,0xfd,0x17,0x32,0x83,
0x90,0x67,0x2b,0x80,0xe6,0xec,0xd,0x23,0xfb,0xcb,0x90,0x38,0xc9,0xb3,0x6f,0xbf,
0x6f,0x2,0x42,0x0,0x0,0x0,0x14,0xe3,0x66,0xaa,0xc8,0x1d,0xd0,0x31,0x8,0x82,
0xb6,0xea,0x17,0xd9,0x7e,0x80,0xb6,0x2f,0xe0,0x2c,0xa6,0x7a,0x99,0xa6,0xcf,0x1f,
0xa1,0x10,0x0,0x0,0xc0,0x2f,0x75,0xc9,0x36,0xdb,0xcc,0xeb,0xe,0xf0,0xf0,0x3c,
0xca,0x30,0x71,0xb3,0xef,0xd8,0xc5,0xa7,0xbc,0x6,0x0,0x0,0x40,0x9f,0x3b,0xca,
0x37,0x72,0x42,0x9f,0x3d,0x36,0xc,0x81,0xb6,0x39,0xd8,0xa9,0x0,0x96,0x21,0x73,
0xb4,0xaf,0xfb,0xec,0xb,0x79,0x4,0x3d,0x0,0x0,0x80,0x74,0xbe,0x6e,0x74,0xc3,
0x11,0xbc,0x4e,0x53,0xef,0x30,0xec,0x85,0xe1,0x59,0xb3,0x6f,0x89,0xc1,0x4f,0x92,
0x56,0x8b,0x56,0xfe,0xb2,0x4a,0x8f,0x4c,0x14,0xd,0x0,0x0,0x90,0xce,0x36,0xf9,
0xda,0x70,0xe7,0x56,0xfc,0x22,0xb7,0xcf,0x9f,0x1b,0xa,0x67,0x35,0xe0,0x63,0xd2,
0x25,0xdd,0xb2,0x8e,0x33,0xc2,0x17,0x0,0x0,0x2c,0xa3,0xa4,0x42,0x5b,0x3c,0xe8,
0x99,0x84,0xe0,0x17,0x95,0x38,0xd8,0x43,0x1a,0xf4,0xf9,0x4b,0x6b,0xe2,0xf5,0x95,
0x29,0xd3,0x6e,0x2a,0x6b,0xbf,0xd,0x81,0x84,0x41,0x0,0x0,0xb0,0x6c,0x46,0x56,
0xf1,0x88,0xcd,0xe7,0xe7,0x7d,0x84,0xe1,0xb0,0x9,0xb8,0x24,0x47,0x84,0x0,0xcc,
0xa6,0x0,0x0,0xc,0xe0,0x49,0x44,0x41,0x54,0xa9,0x95,0xbf,0xa4,0xfe,0x7e,0x49,
0x23,0x4f,0x8a,0x4,0x43,0x0,0x0,0x80,0x45,0xe7,0xe6,0x20,0x37,0xc0,0x45,0xf1,
0xbe,0x7d,0x51,0xa4,0x70,0x10,0xf4,0x42,0x27,0xf8,0x85,0x83,0x47,0x99,0x7d,0xfe,
0x56,0x8c,0x31,0xef,0xe6,0xd,0x7e,0xd3,0x96,0x1c,0xa9,0xf6,0x1,0x0,0x80,0x65,
0xe1,0xcb,0x55,0x59,0x4d,0xbc,0xc3,0x0,0x18,0x86,0xea,0x39,0x41,0xb0,0xc4,0x62,
0xda,0x3b,0x2b,0x92,0xe,0x7c,0x1,0x2f,0x5e,0xd9,0x4b,0xab,0xf0,0x15,0xd,0x85,
0x34,0xfd,0x2,0x0,0x80,0x45,0x96,0x96,0x95,0xdc,0xe0,0x17,0xe,0x2a,0x7c,0xbd,
0x5e,0x6f,0x58,0xf5,0x1b,0x56,0xfb,0xc2,0x50,0x61,0xaf,0xa7,0x30,0xc,0xcb,0xd,
0x7f,0xc6,0x98,0x77,0x7c,0x17,0x95,0xf4,0xec,0xb,0x89,0x59,0x37,0xc,0x0,0x0,
0xb0,0xac,0x7c,0xa1,0xcf,0xd8,0xe0,0x67,0xab,0x7d,0x51,0xd4,0xaf,0xf4,0xd,0xc2,
0x5e,0xbc,0xf2,0x57,0xa2,0x83,0x15,0x63,0x4c,0x2b,0xad,0xea,0x97,0x54,0x5,0x24,
0xf4,0x1,0x0,0x0,0x8c,0xf3,0xce,0xe9,0xe7,0x34,0xf5,0xda,0xe0,0x17,0x3a,0x61,
0xaf,0xd7,0xeb,0xf5,0xb7,0xa3,0x68,0xb8,0x6d,0x9f,0x4b,0xce,0x57,0xed,0x55,0x49,
0xed,0xac,0x3e,0x7f,0xbe,0x67,0xf7,0x86,0xd2,0xaa,0x86,0x0,0x0,0x0,0xcb,0x22,
0x29,0x27,0x49,0x1a,0x59,0xb3,0xd7,0x1d,0xdc,0x11,0x3a,0x3,0x3b,0x7a,0x41,0x30,
0x1a,0x6,0xcb,0x6d,0xf2,0x95,0xa4,0xd6,0xaa,0x31,0xe6,0xed,0xbc,0x13,0x3d,0xe7,
0x69,0xf2,0x2d,0xaa,0x52,0xa9,0x10,0x14,0x1,0x0,0xc0,0xdc,0xf3,0xf5,0xf3,0xb3,
0xcf,0x23,0x83,0x3a,0x6c,0x3f,0xbf,0x41,0xd8,0x73,0x2b,0x7d,0xbd,0x5e,0x4f,0xc1,
0x60,0x5f,0xaf,0xd7,0x2b,0xbb,0xc9,0x57,0x92,0xde,0x5e,0x35,0xc6,0xdc,0x8f,0x5f,
0x60,0xfc,0x6,0x8a,0xf4,0xfd,0x4b,0x1a,0x24,0x2,0x0,0x0,0xb0,0xa8,0xe2,0x99,
0xc7,0x86,0xb6,0xa4,0x11,0xbd,0xbd,0x41,0x75,0xcf,0xd,0x7c,0x6e,0xe8,0xb,0x6,
0x15,0xc0,0x92,0xc3,0xdf,0x77,0xef,0xef,0xed,0xbd,0xb3,0x6a,0x8c,0xf9,0x96,0xa4,
0xd0,0x18,0x73,0x25,0x7e,0xf1,0x79,0x7,0x80,0x14,0x9,0x7b,0xb6,0xd2,0x47,0xc5,
0xf,0x0,0x0,0x2c,0x82,0xb4,0xe0,0xe7,0xf6,0xf9,0x1b,0xce,0xdd,0x67,0x2b,0x7d,
0x83,0xb0,0x17,0x4,0x81,0x82,0xc1,0xf3,0xe9,0xe9,0xe9,0xf0,0x75,0xaf,0xd7,0x2b,
0xfb,0x52,0x77,0xa4,0xfe,0x3c,0x7f,0xc7,0xc6,0x98,0x9d,0xb4,0xe9,0x5e,0xdc,0x1b,
0xcb,0x1a,0x4,0xe2,0x6b,0x12,0x8e,0xff,0x28,0x4c,0xf1,0x2,0x0,0x0,0x16,0x41,
0x56,0xf0,0x73,0x2b,0x7e,0x3d,0x3b,0x82,0x37,0xc,0x87,0xe1,0xae,0x17,0x4,0x67,
0x8f,0xc1,0xeb,0x60,0xf0,0x7a,0x6,0x45,0xb2,0xb7,0xa4,0xb3,0xe5,0xdd,0xbe,0x61,
0x6f,0x60,0x92,0x11,0xbf,0xd3,0x5e,0x1c,0x61,0x10,0x0,0x0,0xcc,0x13,0xdf,0xd8,
0x87,0xb1,0x8a,0x5f,0x6c,0x70,0x87,0xad,0xfa,0xb9,0x21,0xef,0xd4,0x3e,0x4e,0x4f,
0x75,0x7a,0x72,0xd2,0x7f,0x3e,0x3d,0x55,0xaf,0xfc,0x51,0xbe,0x92,0xf4,0xd,0x49,
0x5a,0x19,0xdc,0xc0,0x76,0xde,0xe0,0x57,0xa4,0x22,0x58,0xd6,0xa0,0x10,0x0,0x0,
0x80,0xcb,0xc2,0x37,0xb0,0xc3,0x57,0xf1,0xb,0x9d,0xe0,0xd7,0x73,0xfa,0xf9,0x9d,
0xe,0x82,0x5f,0x30,0x8,0x7a,0xf1,0x47,0x2f,0x8,0x66,0x31,0xd0,0xe3,0x58,0x83,
0xca,0xdf,0xea,0x20,0xa0,0x6d,0x4b,0x3a,0x36,0xc6,0x3c,0xef,0xde,0x54,0xde,0xc1,
0x1f,0xf6,0x39,0x2d,0xec,0xa5,0x55,0x9,0x9,0x88,0x0,0x0,0xe0,0xb2,0x4b,0xca,
0x30,0x76,0x7f,0x7c,0xe9,0x36,0x77,0xf2,0xe6,0xe1,0x40,0xe,0xb7,0xea,0x67,0x3,
0xdf,0xc9,0x89,0x4e,0x4e,0x4e,0xf4,0x6c,0x50,0xf9,0x9b,0x41,0x5f,0x3f,0x49,0xda,
0xbe,0xbf,0xb7,0x77,0x2c,0x9d,0x35,0xfb,0x1e,0x4f,0x5a,0xfd,0x2b,0xda,0xff,0x2f,
0xe9,0xc7,0x8b,0xa3,0x92,0x8,0x0,0x0,0x2e,0xb,0x5f,0xfe,0xf0,0xe,0xe8,0x88,
0x35,0xf5,0x8e,0x8c,0xe8,0x3d,0x3d,0x1d,0x56,0xfb,0x4e,0x6,0x81,0xef,0xe4,0xd9,
0x33,0x3d,0x7b,0xf6,0x4c,0x27,0xcf,0x9e,0xd,0x9b,0x7d,0x67,0x50,0xf5,0x93,0xa4,
0x37,0xec,0xc6,0x8a,0x13,0xaa,0xfe,0x77,0xd1,0x40,0x97,0x27,0x8,0xba,0x3f,0x5a,
0xda,0x20,0x90,0xa4,0xf3,0xd2,0xce,0x21,0x8,0x2,0x0,0x80,0x59,0x4a,0xca,0x34,
0x69,0x3,0x3b,0xdc,0xe5,0xd9,0x46,0x82,0xdf,0xa0,0xda,0x67,0x83,0xdf,0xb3,0x41,
0xf0,0x7b,0xf6,0xec,0xd9,0xb0,0xea,0x37,0xa3,0xe0,0x17,0x4a,0xfa,0xaa,0x7d,0xb1,
0xea,0xdc,0xd4,0x9f,0x1a,0x63,0x8e,0x25,0x3d,0x9f,0xb7,0x99,0x37,0xfe,0x9c,0xb5,
0xed,0x93,0x27,0x10,0xa6,0x71,0xdf,0xc3,0xc0,0x11,0x0,0x0,0x50,0x86,0xac,0x26,
0x5e,0xb7,0xe2,0x67,0x8c,0x33,0xb8,0xc3,0x53,0xf5,0xb3,0x73,0xf8,0xc5,0xab,0x7d,
0xcf,0x9e,0x3d,0xd3,0xf1,0xf1,0xf1,0x70,0x7b,0x86,0xe1,0xef,0x2f,0xee,0xef,0xed,
0xbd,0x63,0x5f,0xb8,0xe1,0xef,0x1d,0x63,0xcc,0x57,0x25,0xbd,0xee,0xbb,0xc1,0xa2,
0xcf,0x59,0x15,0xc3,0x3c,0x9f,0x23,0x8d,0x7,0xba,0xb4,0x80,0x47,0x10,0x4,0x0,
0x0,0x93,0xca,0xd3,0x2a,0x19,0xcf,0x33,0x63,0x93,0x38,0x7b,0x26,0x70,0x76,0x47,
0xf1,0xda,0xc0,0x77,0xdc,0xed,0xf6,0x83,0xdf,0xe0,0x71,0x7a,0x72,0x32,0xab,0xe0,
0x27,0x49,0xbf,0xeb,0xbe,0x70,0xc3,0x9f,0x24,0x7d,0xc9,0x18,0xf3,0xfa,0x34,0xa1,
0xcf,0xfd,0x61,0xdc,0xed,0xa4,0x66,0xe0,0xbc,0xcd,0xc1,0xf1,0xe3,0x36,0xdc,0x25,
0x85,0xbc,0xf8,0xe7,0x10,0x6,0x1,0x0,0x40,0x5c,0x56,0xeb,0x64,0x5a,0xe8,0xb3,
0xcf,0x76,0x60,0x87,0xd,0x7e,0xa1,0x33,0xb8,0xc3,0x36,0xf7,0xda,0x8a,0xdf,0xf1,
0xf1,0xb1,0x8e,0x7,0xcf,0xdd,0x6e,0x57,0xdd,0x41,0xe5,0x2f,0xc,0xc3,0x59,0xdd,
0xe2,0xf7,0x24,0xfd,0xb1,0xbb,0x63,0x35,0x16,0xdc,0xbe,0x61,0x8c,0x79,0xcb,0x18,
0xf3,0x43,0xce,0xbe,0x89,0xab,0x80,0x69,0xdb,0xee,0x8f,0x16,0x3f,0xc7,0x55,0xa9,
0x54,0xbc,0xc1,0xcd,0xee,0x4f,0xb,0x79,0xee,0x36,0xfd,0x3,0x1,0x0,0x40,0x12,
0x5f,0xeb,0xa3,0xb7,0xf5,0x32,0x8a,0x14,0xc5,0x2b,0x7e,0x83,0x3e,0x7e,0x23,0xfd,
0xfc,0x9c,0xd5,0x3a,0x4e,0x4e,0x4e,0x74,0x3a,0xe8,0xe3,0x77,0x7c,0x7c,0xac,0xe3,
0xe3,0x63,0xbd,0xfb,0xee,0xbb,0xea,0x3e,0x7d,0xaa,0x67,0xc7,0xc7,0xb3,0x9a,0xd3,
0xcf,0xfa,0xc2,0xfd,0xbd,0xbd,0x91,0x64,0x19,0xf,0x7f,0x32,0xc6,0x7c,0xd6,0x18,
0xf3,0x27,0xee,0x4d,0xfb,0x7e,0x94,0xac,0xb0,0xe7,0x3b,0x66,0x1f,0xf6,0x7,0x4a,
0xaa,0xfe,0xb9,0x86,0x15,0xbe,0xfe,0x8b,0x91,0xfd,0xbe,0x7d,0xee,0x73,0x92,0x3c,
0x55,0x40,0x2a,0x85,0x0,0x0,0xcc,0x97,0xbc,0x1,0x2a,0xb3,0x79,0xd7,0x18,0x19,
0x79,0xc2,0x9f,0xd,0x7b,0x36,0xfc,0xd9,0xd0,0x17,0x45,0xfd,0x25,0xdb,0x6,0xc1,
0x2f,0x88,0x4f,0xe5,0x32,0x68,0xee,0x7d,0x36,0xa8,0xf2,0x75,0xbb,0x5d,0x75,0x9f,
0x3e,0x55,0xf7,0xf8,0x78,0x96,0xfd,0xfc,0xa4,0xfe,0xdc,0x7e,0x5f,0x8a,0xef,0xf4,
0x85,0xbf,0x37,0x8c,0x31,0x7b,0x92,0x6e,0x27,0x5,0xba,0xa2,0x1,0xd0,0xad,0xf6,
0xf5,0x7a,0xbd,0x91,0xb4,0xec,0xfb,0xa1,0x5d,0x69,0xe1,0x2f,0x73,0xff,0xd9,0xce,
0xcc,0x5f,0x87,0xb0,0x7,0x0,0xc0,0xe2,0x49,0xc,0x84,0x36,0xa7,0xb8,0xe7,0xb8,
0x59,0xc4,0x18,0x45,0xce,0x73,0x14,0x45,0x67,0xe1,0xcf,0x19,0xdc,0x61,0x7,0x76,
0x84,0x9e,0x1,0x1e,0x81,0x1d,0xd9,0x7b,0x7a,0x3a,0x6c,0xf2,0x7d,0x76,0x7c,0xdc,
0x6f,0xea,0x9d,0x7d,0xf0,0x93,0xa4,0x2f,0xdd,0xdf,0xdb,0x3b,0x88,0xef,0xf4,0x85,
0x3f,0x19,0x63,0x7e,0x45,0xd2,0x1f,0xa6,0x35,0xdd,0xa6,0xed,0x73,0x8f,0xb9,0xed,
0xe1,0xee,0x2c,0xd7,0x23,0xa3,0x63,0x6c,0xf8,0x1b,0xfc,0xe8,0x69,0x6c,0x44,0x1b,
0x86,0xb5,0x84,0x1,0x21,0x45,0xc3,0x1f,0x0,0x0,0x58,0x2,0xbe,0xd0,0x37,0xd8,
0x1f,0xd9,0x63,0x51,0xd4,0x3f,0x3e,0x78,0xf6,0x6,0xbf,0x41,0x96,0x19,0x36,0xf7,
0xc6,0xe7,0xf3,0x73,0x2a,0x7f,0x23,0x53,0xba,0xc,0xaa,0x7f,0xb6,0x18,0x36,0x43,
0xef,0x4a,0xfa,0x9c,0xef,0x40,0x52,0xf8,0xfb,0x63,0x49,0xf7,0x8d,0x31,0x2f,0xe7,
0xe9,0xc3,0x97,0x74,0x7c,0x18,0xf8,0x6c,0x69,0xd4,0x19,0xfe,0x6c,0x9b,0x7d,0x6d,
0x9a,0x1e,0xb,0x7f,0xb1,0x36,0x77,0x6f,0x65,0x2e,0x21,0xd4,0x25,0x45,0x3d,0xaa,
0x7b,0x0,0x0,0x2c,0x8f,0x78,0xd5,0x6f,0xac,0xc0,0x14,0xcb,0x1e,0x36,0xec,0x8d,
0x54,0xfd,0x62,0xab,0x76,0x8c,0x4d,0xe2,0xec,0x86,0xbf,0x20,0x18,0xae,0xe0,0xe1,
0xae,0xde,0xf1,0x6c,0xd0,0xdf,0xef,0xe4,0xd9,0x33,0x9d,0x9c,0x9c,0xc,0x33,0xd0,
0x8c,0x7d,0xfe,0xfe,0xde,0xde,0xf7,0x7c,0x7,0x92,0xc2,0x5f,0x28,0xe9,0xdf,0x18,
0x63,0xfe,0xda,0x18,0x73,0xc5,0xd9,0x9f,0x19,0xfa,0xe2,0x89,0xd8,0x17,0xfa,0xc2,
0xf8,0xb0,0xe8,0x41,0xf8,0xb3,0x89,0x5b,0xb1,0xef,0x2,0x0,0x0,0x28,0x43,0xda,
0xc0,0xe,0x77,0xdb,0x6d,0xbd,0x8c,0x87,0xbf,0x91,0xaa,0x5f,0xaf,0x37,0x3a,0xb5,
0x4b,0xac,0xaf,0xdf,0xe9,0xa0,0xc9,0xf7,0x64,0xb0,0xba,0xc7,0xc,0x47,0xf5,0xba,
0x5a,0x92,0x3e,0x9b,0x74,0xd0,0x1b,0xfe,0x6,0xcf,0x6f,0x19,0x63,0xbe,0x64,0x8c,
0xf9,0x99,0x3c,0xd5,0xbf,0xd4,0xd0,0x67,0x3b,0x42,0xc6,0x3a,0x47,0xda,0xf3,0xdc,
0x1f,0x38,0xfe,0xd9,0xbe,0x6b,0x3,0x0,0x0,0x48,0xe2,0xcb,0xb,0x49,0xfb,0xc6,
0x72,0xcd,0xa0,0x18,0xe5,0x66,0x93,0xa4,0x9c,0x63,0xa7,0x75,0x89,0xf,0xf4,0x70,
0xfb,0xfb,0xd9,0x11,0xbf,0xe7,0xd0,0xcc,0xeb,0xfa,0xd9,0xfb,0x7b,0x7b,0xa7,0x49,
0x7,0x57,0xed,0xd,0xdb,0xe7,0xd8,0xf6,0x2f,0x18,0x63,0x7e,0xd2,0x18,0xf3,0x62,
0xc2,0xf1,0xf4,0xe6,0x5d,0xe7,0xc7,0xf1,0x5,0x40,0x5f,0x9a,0x96,0xe4,0xf,0x81,
0x4e,0x1b,0xbd,0x7b,0xcd,0x63,0x7c,0xff,0xb8,0x19,0xbf,0x10,0xa1,0x12,0x0,0x80,
0x5,0x96,0x94,0x21,0x62,0x3,0x3c,0x46,0x46,0xf8,0x3a,0xa3,0x7a,0xdd,0xfe,0x7e,
0xb6,0x78,0xe5,0x86,0x3e,0x37,0xfc,0xf5,0x82,0x40,0xa7,0x83,0xea,0x5f,0x6f,0x10,
0x4,0xcf,0xa9,0xda,0x67,0xbd,0x71,0x7f,0x6f,0xef,0x4f,0xd3,0x4e,0x58,0xf5,0xa6,
0xde,0xb3,0xed,0x77,0x8c,0x31,0x9f,0x36,0xc6,0x7c,0xc5,0x77,0x3c,0xde,0xd9,0x31,
0xb1,0xda,0x17,0xb,0x7e,0xf1,0x11,0xbf,0xde,0xe6,0x5f,0xe7,0x39,0x3e,0x12,0x47,
0xf2,0x74,0xd4,0x8c,0x1d,0x1b,0xdd,0x9d,0x33,0xdc,0x11,0x2,0x1,0x0,0x98,0x6b,
0xde,0xa,0xdf,0xf8,0x49,0xd9,0x7d,0xfd,0x9c,0xe0,0x37,0x36,0x78,0x35,0x61,0xa0,
0xc7,0x70,0xb0,0xc7,0xa0,0xf9,0xd7,0x2d,0x6c,0x9d,0x93,0x77,0x24,0xfd,0xdb,0xac,
0x93,0x56,0x53,0x82,0x9f,0x7d,0xfc,0xbe,0xa4,0xf,0x19,0x63,0x3e,0xe5,0xad,0xf6,
0xb9,0x95,0x3d,0xf7,0x47,0x89,0x37,0xf3,0x3a,0x8f,0xf8,0xb9,0xbe,0xf0,0xe7,0x26,
0x6f,0xfb,0xf,0x12,0x1f,0x10,0x32,0x36,0x3a,0x38,0xde,0x74,0xed,0xbb,0xe3,0x78,
0xe7,0xcf,0x84,0xc0,0x47,0xc,0x4,0x0,0x60,0x41,0x24,0xe5,0x3,0x27,0x4b,0xd8,
0x90,0x27,0x69,0xac,0x35,0x32,0x3e,0xd0,0xc3,0x7d,0xc4,0xc3,0xdf,0x5,0x85,0x3e,
0xeb,0x13,0xf7,0xf7,0xf6,0xbe,0x9b,0x75,0x52,0x66,0xf8,0x1b,0xbc,0xfe,0x59,0x63,
0xcc,0x7,0x8d,0x31,0xef,0x8f,0xdf,0xf8,0x30,0xfc,0xb9,0x7d,0xf9,0xe2,0x4d,0xbd,
0x83,0x6d,0x5b,0xf1,0xeb,0xf5,0x7a,0xc3,0x2a,0xa1,0xfd,0x3c,0x63,0xcc,0xb0,0xff,
0x9f,0x3b,0x2,0x78,0xa4,0xa,0x28,0x27,0x9d,0xf7,0x2f,0xcc,0x1b,0x8,0xed,0x3d,
0xf8,0xf8,0xfa,0x12,0x2,0x0,0x80,0xc5,0x93,0xf6,0x37,0x3f,0x6d,0x90,0x47,0x7c,
0xb0,0x87,0x6f,0xed,0x5e,0x77,0xd,0xdf,0x78,0xab,0xe6,0x5,0xf9,0xf5,0xac,0xe6,
0x5e,0x2b,0x69,0xb4,0x6f,0xfc,0xf5,0xb1,0x31,0xe6,0xa3,0x61,0x18,0xfe,0x4d,0x14,
0x45,0x2f,0xc,0x6f,0x34,0x21,0xfc,0xf9,0x9a,0x78,0x7d,0xc1,0xcf,0x86,0xc7,0xb1,
0x1f,0xd6,0x2d,0xb5,0xea,0x2c,0x8d,0xbb,0xd7,0xe5,0xfe,0xb8,0xbe,0x1,0x22,0x69,
0x9d,0x3d,0xa7,0xd,0x7d,0x84,0x46,0x0,0x0,0x2e,0xbf,0xcc,0x2c,0x10,0xeb,0xf3,
0x97,0x36,0xd0,0x63,0xa4,0x68,0x15,0x6b,0xdd,0x74,0x7,0xad,0x5e,0x90,0x6f,0x4a,
0xfa,0x85,0xbc,0x27,0x7b,0x7,0x7c,0x24,0xc,0xea,0x78,0x3b,0x8a,0xa2,0x7f,0xd5,
0xeb,0xf5,0xfe,0x28,0xc,0xc3,0x2b,0xc3,0xea,0xdf,0x60,0x88,0xb3,0xaf,0xda,0x97,
0xf9,0x70,0xfa,0x4,0xc6,0x53,0xb5,0xbb,0xfa,0x87,0x5b,0x7a,0x4d,0xa,0x80,0xc3,
0xed,0x78,0x1f,0x41,0x67,0x9f,0xe2,0xfb,0x9d,0xe3,0xc3,0xcd,0xbc,0xbf,0x1c,0x0,
0x0,0xb8,0x50,0x45,0xfb,0xf4,0xc7,0xc7,0x10,0xc4,0x83,0xdf,0x30,0x0,0xda,0xe0,
0xe7,0xab,0xfe,0xc5,0x6,0xac,0x5e,0x82,0x82,0xd0,0x77,0x25,0xfd,0x44,0xda,0xe8,
0xde,0xb8,0xb1,0x66,0x5f,0xdf,0x6b,0x7b,0x93,0xbd,0x5e,0xef,0x8d,0x30,0xc,0x3f,
0x1d,0xf6,0x7a,0xbf,0xe5,0x6,0x3e,0x1b,0xe2,0xe2,0xa1,0x2f,0x5e,0xed,0xf3,0xbd,
0xc7,0xed,0x13,0x18,0xff,0x81,0xe3,0xe9,0xdb,0x5d,0xd,0x64,0x6c,0x30,0x88,0xd3,
0x34,0x3c,0x16,0x0,0x7d,0xff,0xe8,0x56,0x8e,0xe0,0x77,0x9,0xfe,0x61,0x1,0x0,
0xc0,0x24,0x52,0xfa,0xfb,0x65,0xad,0xe8,0xe1,0x66,0xa0,0x78,0x93,0xf0,0x25,0x71,
0x20,0xe9,0x9f,0xe7,0xe9,0xe7,0xe7,0x1a,0x6b,0xf6,0xb5,0xdb,0x49,0x83,0x3b,0xc2,
0x30,0xfc,0x62,0x2f,0xc,0xeb,0x51,0x18,0xfe,0xea,0x48,0x5b,0xb7,0x33,0xd7,0xcd,
0x48,0xf8,0xb,0xcf,0x66,0xbf,0xe,0x9d,0x73,0x46,0x9a,0x8a,0x9d,0xe0,0x37,0x32,
0x5,0x4c,0xac,0x19,0x78,0x6c,0x30,0x48,0xfc,0x1f,0x22,0x1e,0x0,0x93,0xfa,0x3,
0xc6,0x7f,0x85,0x8c,0x7e,0x80,0x97,0xe6,0x9f,0x18,0x0,0x0,0x14,0xe3,0x16,0xb5,
0xdc,0xdd,0xce,0x18,0x82,0xf8,0x60,0xf,0xf7,0xf9,0x92,0x85,0x3d,0xd7,0xb1,0xa4,
0x8f,0xdc,0xdf,0xdb,0x7b,0xbb,0xe8,0x1b,0x13,0xe7,0xf9,0xb3,0xaf,0xdd,0x95,0x39,
0x7a,0x67,0x21,0xf0,0x73,0xbd,0x30,0x7c,0x6f,0xd8,0xeb,0xfd,0x3b,0xdf,0x24,0x87,
0xde,0xf0,0x37,0xa8,0xf4,0xf9,0xc2,0xa2,0xdb,0x27,0x30,0x5e,0x52,0x75,0x4b,0xae,
0x6e,0xf5,0x2f,0x9e,0xd2,0xbd,0xa3,0x82,0x3d,0x1,0xd0,0x77,0x9f,0x0,0x0,0x60,
0xfe,0xa5,0xf5,0xf1,0xf3,0xed,0xf7,0xd,0x8,0x99,0x93,0x7c,0x70,0x2a,0xe9,0xa3,
0xf7,0xf7,0xf6,0xde,0x9a,0xe4,0xcd,0xa9,0x95,0x3f,0x5f,0x1b,0xb7,0x53,0x5,0xfc,
0x74,0x18,0x45,0xef,0xf4,0xc2,0xf0,0x17,0xc7,0x82,0xdf,0xa0,0x1f,0xe0,0xc8,0xb6,
0x53,0xf1,0x73,0xcf,0x1f,0x9,0x7e,0xee,0x40,0x10,0x4f,0x5f,0x40,0xb7,0xd,0xde,
0xdd,0x96,0xd3,0x2f,0x30,0xef,0xe0,0x8f,0xf8,0x3d,0x3,0x0,0x80,0xf9,0xb7,0x4,
0x7f,0xdb,0xdf,0x55,0xbf,0xe2,0xf7,0xf5,0x49,0x3f,0x20,0x71,0xc0,0x87,0xd,0x7f,
0xbe,0xb5,0x78,0x6d,0x40,0xb,0x7b,0xbd,0x5f,0x8a,0xc2,0xf0,0x7b,0x61,0x18,0xfe,
0x46,0xaf,0xd7,0xbb,0x12,0x5f,0xe3,0xce,0xad,0x0,0x26,0x55,0x6,0x7d,0xf3,0x5,
0xc6,0x57,0x0,0xf1,0xad,0x4,0xe2,0x6b,0x7b,0x9f,0xb3,0xd4,0xe,0x0,0x0,0x50,
0xc4,0xf7,0x24,0xfd,0xa8,0xa4,0xfb,0xd3,0x7c,0x88,0x77,0x9e,0x3f,0x69,0x7c,0x52,
0xc3,0x78,0x73,0x6c,0x78,0x56,0x5,0xfc,0x62,0x18,0x86,0x7,0x51,0x14,0x7d,0x25,
0xc,0xc3,0xe7,0x7a,0x9e,0xa,0xa0,0x3b,0x7,0x4e,0x52,0xf8,0x4b,0x1c,0x1,0xec,
0x9,0x81,0xbe,0xeb,0x5,0x0,0x0,0x58,0x60,0x2d,0x49,0xff,0x42,0xd2,0x77,0xa6,
0xfd,0xa0,0x91,0xca,0x9f,0xdd,0x1e,0x1b,0x71,0xeb,0xb,0x82,0xce,0x0,0x8d,0x30,
0xc,0xbf,0x1a,0x86,0xe1,0x77,0xc2,0x30,0xfc,0xc3,0x28,0xc,0xbf,0x7f,0xa4,0x8f,
0x60,0xac,0xea,0x97,0xd6,0x34,0xec,0xab,0xfe,0xd9,0xf9,0x73,0x2e,0xc1,0x1c,0x3a,
0x0,0x0,0x0,0x17,0xe1,0xd,0x49,0x9f,0x90,0x74,0x54,0xc6,0x87,0xad,0xf8,0x9a,
0x4c,0x7d,0xd3,0xab,0xc,0x1f,0x9,0x15,0xb9,0x30,0xc,0x77,0xc2,0x30,0xdc,0xe8,
0xf5,0x83,0xa0,0x42,0x3b,0x99,0xb3,0x53,0xe5,0xf3,0x55,0x4,0xbd,0x8f,0xc1,0x42,
0xc8,0x76,0x31,0x64,0xdb,0x4,0xc,0x0,0x0,0xb0,0x44,0x4e,0x25,0xfd,0xac,0xa4,
0x1f,0x57,0x49,0xc1,0x4f,0x92,0x56,0xa4,0xf1,0xbe,0x72,0x23,0x73,0xec,0xc5,0x7,
0x7e,0xa4,0x3f,0xde,0x8d,0xa2,0xe8,0x27,0xc2,0x28,0xfa,0x74,0x18,0x45,0xc7,0xf1,
0xbe,0x7f,0x76,0x2,0xe8,0xa4,0xa6,0x61,0x1b,0xfc,0xec,0x31,0x7b,0x1d,0x0,0x0,
0x0,0x4b,0xe6,0x3b,0x92,0xfe,0x99,0xa4,0xff,0x51,0xf6,0x7,0xaf,0xc4,0x77,0xc4,
0xfb,0xd4,0xd9,0xf9,0xf3,0xe2,0xf,0xef,0x88,0xe0,0xb3,0xc7,0x17,0xa2,0x28,0xfa,
0x81,0x28,0x8a,0xde,0x70,0x47,0x8,0xf7,0xdc,0xa6,0xde,0xf8,0xe0,0x10,0xa7,0xf2,
0x47,0xa5,0xf,0x0,0x0,0x2c,0xa9,0x63,0x49,0xbf,0x22,0xe9,0x7,0x24,0xed,0xcc,
0xe2,0xb,0x56,0x7c,0x3,0x3e,0xec,0x84,0xca,0x23,0xd5,0xbf,0x58,0xd3,0xaf,0x6f,
0x35,0x90,0x58,0x0,0xfc,0x4e,0x14,0x86,0x3f,0x1e,0x45,0xd1,0x8f,0x47,0x51,0xf4,
0x9d,0x61,0x53,0xb1,0xdb,0x14,0xec,0x19,0x9,0x4c,0xb5,0xf,0x0,0x0,0x2c,0xa9,
0xaf,0x49,0xda,0x90,0xf4,0x4b,0xea,0x87,0xc0,0x99,0x18,0xab,0xfc,0x8d,0xac,0x82,
0x91,0x11,0xc2,0xe2,0x7d,0x3,0xe5,0x1f,0x1c,0xf2,0x46,0x14,0x45,0x3f,0x10,0x85,
0xe1,0xcf,0x85,0x51,0x74,0xe0,0x4c,0x13,0x33,0x12,0x6,0x6d,0xf0,0x3,0x0,0x0,
0x58,0x32,0x3b,0xea,0xf7,0xeb,0xfb,0x51,0xf5,0x47,0xf5,0xce,0xd4,0x48,0x9f,0xbf,
0x61,0xd5,0x2d,0xb6,0x4a,0xc6,0x8,0xdf,0xd4,0x30,0x83,0x73,0x23,0x77,0x65,0x8d,
0xd1,0x0,0x78,0x1c,0x45,0xd1,0xe7,0xa3,0x28,0x7a,0x29,0x8a,0xa2,0x4f,0x47,0x61,
0xf8,0xdd,0x30,0x8a,0x46,0xfa,0xfe,0x11,0xfc,0x0,0x0,0xc0,0x92,0xf9,0xa6,0xfa,
0x81,0xef,0x7,0xd5,0x1f,0xd1,0x7b,0x2e,0x86,0x95,0xbf,0x69,0x9a,0x5a,0x8d,0xfb,
0x7e,0x73,0xb6,0xfe,0xae,0xfd,0x5c,0xbb,0x4c,0x9b,0x89,0xa2,0x63,0xd3,0xef,0xf,
0xf8,0x8f,0xa3,0x28,0xfa,0x64,0x14,0x45,0x6f,0xd1,0xcc,0xb,0x0,0x0,0x96,0xc8,
0xa9,0xa4,0xaf,0x4a,0xfa,0x61,0xf5,0x7,0x74,0x7c,0xed,0xbc,0x2f,0x60,0xc5,0x17,
0xbc,0x46,0xf6,0x54,0x2a,0xa3,0x7,0x7,0xaf,0x2b,0x95,0x8a,0x2a,0x76,0x7b,0xf0,
0x7a,0xec,0x73,0xe2,0x21,0xf0,0x2c,0x18,0x9e,0xca,0x98,0xdf,0x35,0x51,0xf4,0x4f,
0x8d,0x31,0x1b,0x51,0x14,0x7d,0x56,0x52,0xbb,0x84,0xfb,0x1,0x0,0x0,0xb8,0x8c,
0xbe,0xa1,0xfe,0xb4,0x2d,0xff,0x48,0xd2,0x4f,0x48,0x9a,0x78,0x79,0xb6,0x69,0xad,
0xa6,0x1d,0xb4,0x71,0xae,0x52,0xa9,0xf4,0x3,0x9e,0xb3,0x6f,0xb8,0xbf,0x52,0x91,
0x9c,0xe3,0x76,0xdb,0x1e,0x1f,0xe3,0xc,0x22,0x19,0x84,0xc3,0x3d,0x49,0x7b,0x92,
0x7e,0x41,0xd2,0xfb,0x25,0x7d,0x58,0xd2,0x87,0x6,0x8f,0xfa,0xc4,0x77,0x6,0x0,
0x0,0x70,0x71,0xda,0x92,0xb6,0xd5,0xaf,0xec,0x7d,0x5d,0xfd,0xa5,0xd9,0x2e,0x85,
0xe1,0xa,0x1f,0xde,0xa6,0xd7,0x41,0xb8,0xab,0x48,0xaa,0xac,0xac,0xc,0x1f,0x2b,
0x57,0xae,0x68,0x25,0x8a,0x86,0xe1,0x6f,0xa5,0x52,0x39,0x3b,0x3e,0x38,0x77,0x65,
0xa5,0xdf,0xa2,0x6c,0x9f,0x47,0x82,0xa2,0x13,0x10,0x63,0xbe,0x35,0x78,0x7c,0x7e,
0xf0,0xfa,0x3,0x92,0x6e,0xab,0x1f,0xa,0xd7,0x25,0x7d,0xff,0x60,0x1b,0x0,0x0,
0xe0,0x32,0x38,0x55,0xbf,0x88,0xf5,0xb6,0xfa,0x83,0x35,0x5a,0xea,0x57,0xf9,0xa6,
0x5e,0x86,0x6d,0x56,0x86,0x95,0xbf,0x91,0x79,0xfd,0xa4,0x91,0x26,0x5d,0xb9,0xcd,
0xbb,0x3a,0x6b,0xe6,0xad,0x54,0x2a,0x5a,0x19,0x4,0x3d,0x77,0xdb,0xfb,0x88,0x9d,
0xeb,0x86,0xc8,0x94,0xc1,0x1e,0xdf,0x1c,0x3c,0xe2,0xea,0xea,0x87,0x41,0xeb,0x9a,
0xa4,0xb5,0x29,0x7e,0x7,0x0,0x0,0x80,0x2c,0x7b,0xea,0x87,0x3d,0x6b,0x26,0xf3,
0xf0,0xcd,0xda,0xff,0x7,0x88,0x86,0xc0,0x3f,0x61,0x91,0x2f,0x8a,0x0,0x0,0x0,
0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// D:/Works/Mine/IVM/Codes/IVM/VehicleManagement/VehicleManage/Resources/Images/doneline.png
0x0,0x0,0x1,0xeb,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0xc8,0x0,0x0,0x0,0xc,0x10,0x6,0x0,0x0,0x0,0x77,0xb1,0x2e,0x7f,
0x0,0x0,0x0,0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8f,0xb,0xfc,0x61,0x5,
0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0,
0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a,0x26,0x0,0x0,0x80,0x84,0x0,0x0,0xfa,
0x0,0x0,0x0,0x80,0xe8,0x0,0x0,0x75,0x30,0x0,0x0,0xea,0x60,0x0,0x0,0x3a,
0x98,0x0,0x0,0x17,0x70,0x9c,0xba,0x51,0x3c,0x0,0x0,0x0,0x6,0x62,0x4b,0x47,
0x44,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x43,0xbb,0x7f,0x0,0x0,0x0,0x9,0x70,
0x48,0x59,0x73,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x48,0x0,0x46,0xc9,0x6b,0x3e,
0x0,0x0,0x0,0x89,0x49,0x44,0x41,0x54,0x78,0xda,0xed,0xd5,0xa1,0xd,0xc2,0x50,
0x14,0x40,0xd1,0xf7,0x9,0xa2,0x75,0x6c,0x81,0x42,0x33,0x9,0x16,0xc2,0x16,0x8c,
0x80,0x63,0x0,0x4,0xa9,0x66,0x8e,0x26,0x9d,0x80,0x39,0x50,0x6d,0xdd,0x67,0x3,
0xc4,0x33,0x85,0xe4,0x9c,0x9,0xae,0xbb,0xe5,0x75,0x1c,0xbb,0xfd,0x76,0x1c,0xe3,
0x12,0x87,0xd8,0xb4,0x6d,0x0,0xc0,0x37,0xd7,0x78,0xc6,0x7b,0x9a,0x56,0x4b,0x77,
0x0,0xf0,0x9f,0xc,0x4,0x80,0x14,0x3,0x1,0x20,0xc5,0x40,0x0,0x48,0x31,0x10,
0x0,0x52,0xc,0x4,0x80,0x14,0x3,0x1,0x20,0xc5,0x40,0x0,0x48,0x31,0x10,0x0,
0x52,0xc,0x4,0x80,0x94,0x75,0xdc,0x62,0xa8,0xf7,0xbe,0x2f,0xa7,0xd8,0x95,0x73,
0xd3,0x2c,0x1d,0x4,0xc0,0x6f,0xab,0x5d,0xc,0xf5,0x31,0xcf,0x1f,0x5a,0x8,0x15,
0x9f,0xfa,0x1e,0xc6,0x75,0x0,0x0,0x0,0x25,0x74,0x45,0x58,0x74,0x64,0x61,0x74,
0x65,0x3a,0x63,0x72,0x65,0x61,0x74,0x65,0x0,0x32,0x30,0x31,0x39,0x2d,0x30,0x31,
0x2d,0x31,0x34,0x54,0x32,0x33,0x3a,0x33,0x39,0x3a,0x30,0x34,0x2b,0x30,0x38,0x3a,
0x30,0x30,0x58,0xcf,0xf3,0xc7,0x0,0x0,0x0,0x25,0x74,0x45,0x58,0x74,0x64,0x61,
0x74,0x65,0x3a,0x6d,0x6f,0x64,0x69,0x66,0x79,0x0,0x32,0x30,0x31,0x39,0x2d,0x30,
0x31,0x2d,0x31,0x34,0x54,0x32,0x33,0x3a,0x33,0x39,0x3a,0x30,0x34,0x2b,0x30,0x38,
0x3a,0x30,0x30,0x29,0x92,0x4b,0x7b,0x0,0x0,0x0,0x4b,0x74,0x45,0x58,0x74,0x73,
0x76,0x67,0x3a,0x62,0x61,0x73,0x65,0x2d,0x75,0x72,0x69,0x0,0x66,0x69,0x6c,0x65,
0x3a,0x2f,0x2f,0x2f,0x68,0x6f,0x6d,0x65,0x2f,0x61,0x64,0x6d,0x69,0x6e,0x2f,0x69,
0x63,0x6f,0x6e,0x2d,0x66,0x6f,0x6e,0x74,0x2f,0x74,0x6d,0x70,0x2f,0x69,0x63,0x6f,
0x6e,0x5f,0x72,0x6a,0x76,0x66,0x61,0x69,0x77,0x31,0x35,0x68,0x70,0x2f,0x68,0x65,
0x6e,0x67,0x78,0x69,0x61,0x6e,0x2e,0x73,0x76,0x67,0x7f,0x11,0x26,0x57,0x0,0x0,
0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// D:/Works/Mine/IVM/Codes/IVM/VehicleManagement/VehicleManage/Resources/Images/canceloff.png
0x0,0x0,0x34,0x45,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x2,0x7f,0x0,0x0,0x1,0x15,0x8,0x6,0x0,0x0,0x0,0x91,0xc9,0x83,0x5a,
0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x5c,0x46,0x0,0x0,0x5c,0x46,
0x1,0x14,0x94,0x43,0x41,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x78,0x9c,0xed,
0xdd,0x7f,0x68,0x6c,0xe9,0x7d,0xdf,0xf1,0xef,0x68,0xef,0x59,0xd8,0xd9,0x85,0xb9,
0x98,0xb9,0x60,0x5d,0x97,0x59,0xd2,0x2b,0xb0,0xe4,0x20,0xb1,0x65,0x42,0x2a,0x17,
0xb,0x7,0x95,0xf4,0x3a,0xd4,0x24,0xac,0x71,0x8,0xb8,0xac,0x49,0x49,0x70,0x49,
0xa9,0x69,0x68,0x70,0x49,0x69,0x48,0x48,0xa8,0x1b,0x93,0xb4,0x86,0x12,0x27,0x26,
0x4e,0x3,0xc5,0xc1,0x21,0x6d,0x4c,0xdc,0x2c,0x24,0xb1,0x8,0xbd,0xc4,0x91,0x89,
0x2f,0x4b,0x44,0x2e,0x12,0x89,0xb4,0x8e,0x6e,0x8c,0x6,0x7c,0x65,0xb8,0xc3,0xa2,
0x81,0xbd,0x47,0x57,0x3a,0x73,0xce,0xd3,0x3f,0x66,0x9e,0xd1,0x33,0x67,0x9e,0xf3,
0x73,0xce,0x48,0x67,0xe6,0xbc,0x5f,0x30,0xcc,0x4f,0xcd,0x9c,0x19,0x69,0x77,0x3e,
0xf7,0xfb,0x7d,0x7e,0xd4,0xbe,0xf1,0x8d,0x6f,0xc8,0xd2,0xd2,0x92,0xd4,0x6a,0x35,
0x59,0x5a,0x5a,0x1a,0x3b,0xe9,0xdb,0xcc,0xf3,0xb8,0x93,0x16,0x75,0xd9,0xa4,0x94,
0x4a,0x75,0x59,0x5f,0x1f,0x9e,0xbf,0x4f,0x29,0xb5,0x22,0x22,0xef,0x37,0x6e,0x7f,
0x45,0x44,0xde,0x9f,0xe5,0x79,0xe3,0x6e,0x3,0x0,0x0,0xf3,0x2b,0xcb,0x77,0x7b,
0xf8,0xb1,0x51,0xd7,0x8d,0xf3,0x4b,0xa5,0xd4,0x81,0xbe,0x4d,0x29,0x75,0x29,0x22,
0x7,0x4a,0xa9,0xbf,0x53,0x4a,0x9d,0x9b,0x8f,0x4f,0x7b,0x8a,0x7b,0xbc,0x79,0x5f,
0xf8,0x78,0x5e,0x7f,0xfd,0xf5,0x4c,0x9f,0x8b,0xe9,0x56,0x38,0xe8,0xd9,0xae,0xeb,
0x70,0x17,0x15,0x0,0x45,0x64,0xe2,0x3c,0x7c,0x39,0xfc,0x61,0xea,0xfb,0x6c,0x97,
0x87,0x6f,0x6e,0x5d,0x44,0x3e,0x52,0xab,0xd5,0x3e,0xa0,0x94,0x5a,0x1f,0x9e,0xbf,
0xa4,0xef,0xf,0x9f,0x67,0x75,0x5d,0x3f,0x3,0x0,0x0,0xca,0x27,0xe9,0x3b,0x3d,
0x29,0x18,0x5a,0x7c,0x4f,0x44,0x8e,0x87,0x41,0xf0,0x5b,0x4a,0xa9,0x6f,0x2a,0xa5,
0x8e,0xd3,0x1c,0x87,0x2d,0xf4,0x85,0x5f,0xd3,0x16,0x6,0xf3,0xba,0x95,0x54,0xf5,
0x8b,0xb,0x7f,0x22,0x62,0xd,0x80,0x5a,0xf8,0xba,0x3e,0xd8,0x88,0xe0,0xf7,0xde,
0x5a,0xad,0xf6,0x71,0xa5,0xd4,0x76,0xad,0x56,0xfb,0xb0,0x52,0xea,0x3d,0x79,0x83,
0x9d,0xf9,0x5a,0xe1,0xcb,0xb6,0xeb,0x69,0xef,0x3,0x0,0x0,0xf3,0x2d,0xea,0x7b,
0x3e,0xcb,0xed,0x11,0x19,0xe3,0xbd,0xc3,0xd3,0x87,0x44,0xe4,0x53,0xc3,0xdb,0xbe,
0x27,0x22,0x7f,0xae,0x94,0x7a,0x53,0x29,0xf5,0x27,0xba,0x3a,0x98,0x14,0xe0,0xe2,
0xaa,0x82,0x41,0x10,0x48,0x10,0x4,0xb1,0xef,0x31,0xc9,0x2d,0x5b,0xf0,0xcb,0xd2,
0xf2,0x15,0xb1,0x57,0xfd,0x6c,0xcc,0xfb,0x87,0xc1,0xef,0x15,0xa5,0xd4,0xeb,0x22,
0xf2,0x86,0x88,0xfc,0x70,0xdc,0xcf,0x25,0x95,0x62,0x93,0x6e,0x8b,0xba,0x1e,0x75,
0x1b,0x0,0x0,0x58,0xc,0x59,0x8b,0x3e,0xb6,0x36,0x6b,0xf8,0xb1,0xb6,0x61,0x6a,
0x96,0xe7,0x7a,0xaf,0x52,0xea,0xd,0x19,0xe4,0x9c,0x9e,0x88,0x7c,0x4d,0x44,0x7e,
0x4f,0x44,0x1e,0x84,0x7f,0x2e,0x4d,0x3b,0x58,0x7,0xbf,0xc0,0xf7,0x33,0xbd,0xff,
0xb0,0x5b,0xb6,0xe0,0x67,0xb,0x7d,0xe6,0x65,0x11,0x7b,0xc5,0x2f,0x29,0xfc,0xe9,
0x37,0x22,0x22,0xef,0xaf,0xd5,0x6a,0x3f,0xaf,0x94,0xfa,0xf8,0x30,0x0,0xc6,0xb6,
0x6f,0xaf,0xbb,0xfa,0x97,0xf6,0x39,0x1,0x0,0xc0,0x7c,0xca,0x9b,0x39,0xe2,0xb2,
0x85,0xbe,0xcd,0xd6,0xbe,0x55,0x4a,0x35,0x94,0x52,0x3f,0x39,0x3c,0x7d,0x57,0x29,
0xf5,0x5,0xa5,0xd4,0x17,0x95,0x52,0xbd,0x34,0xc1,0xcf,0xf7,0x7d,0xf1,0x7d,0xbf,
0x90,0xca,0xdf,0x52,0x9a,0xaa,0x5f,0xb8,0xf2,0x97,0x34,0xf6,0x2f,0x6a,0x22,0x88,
0x88,0xb4,0x6b,0xb5,0xda,0x1f,0x88,0xc8,0x91,0x88,0xfc,0xa4,0x88,0xbc,0x92,0xf5,
0x80,0xd3,0xf4,0xc2,0x93,0x1e,0x17,0xf7,0xb,0x4f,0x3a,0x1,0x0,0x80,0xf9,0x15,
0xf5,0x7d,0x1e,0x35,0xde,0xae,0x88,0x5c,0x61,0xf1,0x3e,0x11,0xf9,0x55,0x11,0x39,
0x51,0x4a,0xfd,0x17,0xa5,0xd4,0x7b,0xa2,0x82,0x5f,0x10,0x4,0xd2,0xef,0xf7,0xc5,
0xef,0xf7,0x47,0x1,0xd0,0x9f,0xb2,0xf2,0x37,0x11,0xfe,0xb2,0xce,0xf0,0x8d,0x9,
0x7a,0x23,0xb5,0x5a,0xed,0x3,0xb5,0x5a,0xed,0xcf,0x44,0xe4,0xaf,0x45,0xe4,0x27,
0xb2,0x54,0xa,0xb5,0x34,0x55,0x3c,0xdb,0xb9,0xed,0xb2,0xf9,0x73,0x4,0x3b,0x0,
0x0,0x16,0x4b,0xd6,0x22,0x4e,0x54,0x98,0x8b,0xb,0x80,0x49,0xaf,0x99,0xf2,0x98,
0x1a,0x22,0xf2,0x9f,0x45,0xe4,0x44,0x44,0x7e,0x4d,0x44,0x5e,0xb1,0x55,0xfb,0x7c,
0xdf,0x97,0xbe,0xef,0xf,0x2,0xe0,0xf0,0x34,0x8d,0xb1,0x31,0x7f,0x59,0x82,0x9f,
0x48,0xaa,0x99,0xbd,0xaf,0x28,0xa5,0x7e,0x51,0x44,0xfe,0xbd,0x88,0xbc,0x98,0x75,
0x2,0x47,0x54,0xa,0x37,0x2f,0xa7,0xf9,0x5,0x25,0x95,0x68,0xd3,0xdc,0x7,0x0,
0x0,0x16,0x47,0x54,0x40,0x8b,0xba,0x3f,0xae,0xc0,0x14,0xf5,0xfc,0x19,0xc2,0xe0,
0x2b,0x4a,0xa9,0xcf,0x28,0xa5,0xde,0x50,0x4a,0xfd,0x9c,0x52,0xea,0xf7,0x75,0x8b,
0xb7,0xdf,0xef,0x4b,0xe0,0xfb,0xe2,0x7,0xc1,0x55,0xdb,0xb7,0x88,0xca,0x5f,0xb8,
0x9d,0x1b,0xbe,0xcd,0xd6,0xfa,0xb5,0x8d,0xfd,0xb,0xf9,0xb8,0x88,0xfc,0x6d,0xad,
0x56,0xfb,0x8c,0x88,0xbc,0x98,0x74,0x20,0x69,0x3e,0x70,0x7d,0x39,0x6d,0xf0,0x8b,
0xab,0xfc,0xd1,0xd2,0x5,0x0,0xa0,0x1a,0x92,0xbe,0xf3,0xe3,0x5a,0xbe,0x49,0xf9,
0x20,0x4b,0x86,0xb0,0xbd,0x7e,0xe8,0xb8,0xde,0xab,0x94,0xfa,0x4a,0x10,0x4,0xff,
0x2f,0x8,0x82,0xf,0xf4,0x87,0xad,0x5e,0x5d,0xf5,0xeb,0xeb,0x53,0x51,0x13,0x3e,
0x6c,0xe3,0xf9,0xa2,0x96,0x76,0x31,0xcf,0x2d,0x5e,0x11,0x91,0xdf,0x16,0x91,0x4f,
0xe8,0x1b,0xa2,0x2a,0x7e,0x69,0x43,0x9e,0x79,0x3d,0x29,0xe0,0xd9,0x9e,0x27,0xea,
0xf5,0x92,0x8e,0x7,0x0,0x0,0x2c,0x9e,0xb4,0xed,0xdf,0xf0,0xe5,0xb4,0x43,0xc9,
0xb2,0xdc,0x6e,0x3b,0x6,0xdf,0xf7,0xb7,0xfb,0xfd,0xfe,0xdf,0x4,0xbe,0xff,0x73,
0xbe,0xef,0x7f,0x61,0xd4,0xfe,0xed,0xf7,0xc5,0x2f,0x62,0xa9,0x97,0xbc,0x6b,0xfa,
0x69,0xa1,0xeb,0xaf,0x89,0xc8,0x1f,0x88,0xb1,0x3,0x47,0x56,0x71,0x1f,0x5a,0x96,
0xe0,0x97,0x14,0xfa,0xb2,0xb6,0x9f,0x1,0x0,0xc0,0x62,0xc9,0xd2,0xfa,0x8d,0xca,
0x17,0x49,0x2d,0xdd,0xa8,0xfb,0x6c,0x8f,0x55,0x4a,0x8d,0xda,0xba,0x41,0x10,0xbc,
0xd8,0xf7,0xfd,0xdf,0xf0,0x7d,0xff,0xc3,0x7e,0xbf,0xff,0xaf,0xfb,0xbe,0xff,0x6e,
0xa0,0x43,0xe0,0xb4,0xb3,0x7d,0xd3,0x4e,0xe2,0x8,0x7,0x3f,0x4b,0x10,0xfc,0x94,
0x88,0xfc,0x95,0xc,0xb7,0x5a,0x8b,0x9b,0xcc,0x11,0x57,0xd1,0xb3,0x7d,0x10,0x71,
0xa5,0xd8,0x34,0x27,0xdb,0xe3,0xb3,0x3c,0x7,0x0,0x0,0x98,0x4f,0x69,0xbe,0xdf,
0xa3,0xf2,0x81,0xed,0xb2,0x79,0x1e,0xfe,0xf9,0x34,0xc7,0x11,0x77,0x3d,0x18,0x8e,
0xeb,0x1b,0x8d,0xef,0x1b,0x84,0xbd,0x8f,0xf7,0x7d,0xff,0x6f,0xfc,0x7e,0xbf,0xdd,
0x37,0x2a,0x80,0xd3,0x98,0x98,0xf0,0x91,0xb4,0xa6,0x9f,0xbe,0x1e,0xf2,0xdf,0x45,
0xe4,0x3f,0x64,0x79,0xe1,0xa4,0xa4,0x1c,0x17,0xd4,0xcc,0xeb,0xb6,0xcb,0xb6,0xd7,
0x48,0x53,0xe2,0x5,0x0,0x0,0x8b,0x2b,0xee,0x3b,0xdf,0x16,0xe8,0x6c,0xd7,0x93,
0x5a,0xbf,0xb6,0xe7,0x8d,0x7b,0x9c,0x79,0xbf,0x39,0xbb,0xd7,0x1c,0xeb,0x17,0xf8,
0xfe,0x8a,0x1f,0x4,0xbb,0x7e,0xbf,0xff,0x31,0xdf,0xf7,0xbf,0x3e,0xed,0x52,0x2f,
0xb7,0x92,0x96,0x6b,0x89,0x9a,0xdd,0x3b,0xbc,0xfe,0xa2,0x88,0xfc,0x4f,0x11,0x79,
0x23,0x4d,0x88,0x4a,0xdb,0x7,0xb7,0xfd,0x5c,0xda,0xf0,0x67,0xbe,0x4e,0xda,0x5f,
0xa,0x0,0x0,0xa8,0x86,0x2c,0x1,0xd0,0xbc,0x2d,0x2a,0xb0,0x25,0x75,0x2f,0xe3,
0x9e,0xcf,0xbc,0x7f,0xb4,0x7b,0x87,0x6e,0xfb,0xea,0xca,0x5f,0x10,0xe8,0x10,0xf8,
0x92,0xef,0xfb,0x7f,0xdc,0xef,0xf7,0x7f,0x3a,0x8,0x82,0xdf,0xcb,0xf8,0xb6,0xc7,
0xdc,0x4a,0xb3,0x96,0x9f,0x88,0x75,0x59,0x97,0x97,0x44,0xe4,0x8f,0x44,0xe4,0x23,
0xfa,0xb6,0x34,0x55,0xb7,0xb8,0xf,0x23,0x6f,0x1b,0x37,0xfc,0x3a,0x84,0x3f,0x0,
0x0,0x60,0x93,0xb5,0x58,0x95,0x94,0x33,0xa2,0x32,0x47,0xf8,0xf9,0xe2,0xba,0x94,
0xba,0xe5,0x6b,0x8c,0xf7,0x13,0x73,0x92,0x87,0x1e,0xeb,0xd7,0xef,0xf7,0x5f,0xf4,
0x7d,0xff,0xcb,0xbe,0xef,0xdf,0x11,0x91,0xcf,0xa7,0x7f,0xd7,0xe3,0x6a,0x6f,0xbf,
0xfd,0x76,0xec,0xce,0x1d,0x22,0xd6,0xe0,0xf7,0xa2,0x88,0xfc,0x99,0x88,0x6c,0x87,
0xdf,0x5c,0xd4,0x65,0x5b,0x68,0x9b,0xe6,0x64,0xbe,0x46,0xde,0xb6,0x2f,0xc1,0xf,
0x0,0x80,0x6a,0xca,0xd3,0x2,0x8e,0xcb,0x36,0xe6,0x6d,0x71,0xa7,0x20,0x8,0x26,
0x2e,0x7,0x41,0x20,0x9e,0xe7,0x89,0xe7,0x79,0xd2,0xf7,0x3c,0xf1,0xfa,0xfd,0xc1,
0x65,0xbd,0xb4,0xcb,0xf0,0xb2,0x7f,0x15,0x2,0x25,0xf0,0xfd,0xff,0xf4,0x5f,0x3f,
0xf7,0xb9,0xcf,0xe5,0x79,0xef,0xb5,0x6f,0x7f,0xfb,0xdb,0xb1,0x63,0xfd,0x2c,0xe7,
0x2f,0xc8,0xa0,0xe2,0xf7,0xa3,0x71,0x1f,0x56,0x9e,0xf,0xc4,0xfc,0x30,0x92,0x7e,
0x26,0xee,0x83,0x8f,0x3a,0x16,0x1b,0x2,0x20,0x0,0x0,0xd5,0x92,0xf4,0xdd,0x1f,
0xd7,0x39,0x4c,0xca,0x1d,0x79,0x82,0x9f,0xef,0xfb,0xa3,0xf0,0x37,0xa,0x81,0x46,
0xe8,0xb,0x9f,0x82,0xe1,0x78,0xc0,0xc0,0xf7,0x3f,0xf9,0xdf,0x3e,0xff,0xf9,0xcc,
0x2d,0xe0,0xda,0xb7,0xbf,0xfd,0xed,0xc4,0xbd,0x7a,0x47,0xf,0x1e,0x5c,0xfe,0x2d,
0x11,0xf9,0x99,0xb8,0xf,0xca,0x96,0x8c,0xc3,0x1f,0x8a,0xf9,0x1,0x44,0x5,0x3f,
0xdb,0x63,0xa2,0x9e,0xd3,0x76,0x6e,0x3b,0x9e,0xb8,0xdb,0x0,0x0,0xc0,0x62,0xc9,
0xfa,0x7d,0x9f,0x94,0x21,0xe2,0x8a,0x4c,0x71,0x5,0x2b,0x5b,0xf0,0xb,0x57,0xfd,
0xc6,0xc2,0x9f,0x19,0x2,0x8d,0x93,0x3f,0x5c,0xe4,0x79,0x58,0x5,0xf4,0xfd,0x7e,
0xff,0x63,0xbf,0xf1,0x9b,0xbf,0xf9,0x66,0x96,0xf7,0x58,0xfb,0xfb,0xbf,0xff,0xfb,
0xc4,0x5,0x9d,0x8d,0xcb,0xbf,0x2c,0x22,0xbf,0x98,0xf4,0x61,0x45,0x55,0xe6,0xe2,
0x12,0xb0,0x19,0xfc,0xa2,0x82,0x61,0x9a,0xca,0x5f,0xd4,0x2f,0xc6,0x76,0x3d,0xe9,
0x7d,0x0,0x0,0x80,0x6a,0x88,0xfa,0xfe,0xcf,0x5b,0x5,0x4c,0x5b,0xfd,0xb,0x82,
0x40,0x2e,0x2f,0x2f,0xa5,0xef,0x79,0x72,0xe9,0x79,0xe2,0x5d,0x5e,0x8a,0x37,0xac,
0xfa,0x79,0x11,0x1,0x30,0x54,0xfd,0x3b,0xf7,0x7d,0xff,0x87,0x7e,0xfb,0x77,0x7e,
0xe7,0xad,0xb4,0xef,0xb5,0x76,0x7c,0x7c,0x9c,0x58,0xf5,0x1b,0x9e,0x7f,0x44,0x6,
0xe3,0xfc,0x62,0x3f,0x98,0x69,0xcb,0x9f,0x71,0xe1,0x30,0x6d,0xe5,0x2f,0xee,0x72,
0xdc,0x6d,0x0,0x0,0x60,0xf1,0x4d,0x5b,0xc,0x8a,0xca,0x1d,0x71,0x39,0xc5,0x56,
0xf0,0x52,0x4a,0x49,0x7f,0x38,0xbe,0xcf,0xbb,0xbc,0x1c,0xb,0x7f,0xde,0xe5,0xe5,
0x58,0xf0,0xd3,0x97,0x47,0xdb,0xbc,0x19,0x3b,0x7e,0xf8,0xfd,0x7e,0xc7,0xf7,0xfd,
0x7f,0xf2,0xbf,0xbe,0xfc,0xe5,0x77,0xd2,0xbc,0xff,0x5b,0x22,0x92,0xd8,0xee,0x15,
0x91,0xf7,0x89,0xc8,0x97,0x93,0x3e,0x1c,0x5b,0x3a,0xce,0x1a,0xfc,0xd2,0x54,0xfd,
0xe2,0x2a,0x7f,0x59,0x2,0x60,0xd4,0xfb,0x0,0x0,0x0,0x48,0x2a,0x1e,0x25,0x75,
0x3d,0x6d,0xd7,0x6d,0x8f,0x55,0xe6,0x32,0x2f,0x96,0x53,0x78,0xed,0xbf,0x51,0xf0,
0xbb,0xaa,0xfe,0xb5,0xfa,0xfd,0xfe,0x57,0x44,0xe4,0x47,0xd2,0xbc,0xaf,0xda,0xe3,
0xc7,0x8f,0x93,0xc2,0xdf,0xb,0xb5,0x5a,0xed,0x2f,0x44,0xe4,0x43,0x59,0x3e,0x80,
0xb4,0x89,0x37,0x6a,0xf0,0x63,0xd1,0xe1,0x2f,0xa,0xa1,0xf,0x0,0x0,0xe4,0x29,
0x12,0xa5,0xe9,0x7c,0x9a,0x97,0x6d,0x59,0xc8,0xf3,0x3c,0xb9,0xbc,0xb8,0x90,0x4b,
0xcf,0x93,0xcb,0xcb,0xcb,0x51,0xe5,0xef,0xf2,0xe2,0xe2,0xaa,0x2a,0x18,0x35,0x1,
0xc4,0x8,0x81,0xc3,0xd3,0x7f,0xfc,0x3f,0x5f,0xfd,0xea,0xaf,0x27,0xbd,0xd7,0xda,
0xe3,0xc7,0x8f,0x65,0x69,0x69,0x69,0x70,0xc5,0x1e,0xfe,0x7e,0xb9,0x56,0xab,0x4d,
0x8c,0xf3,0x4b,0xa,0x7e,0xe6,0xe5,0xa4,0x90,0x17,0x17,0x4,0xb3,0x86,0xbf,0xa8,
0x5f,0x12,0x95,0x3f,0x0,0x0,0x90,0x56,0x9a,0xb6,0xaf,0xed,0x7a,0x54,0x8,0xb4,
0x75,0x40,0xf5,0x78,0x3f,0xf3,0xa4,0xdb,0xbd,0x97,0x97,0x97,0xd2,0xef,0xf7,0x47,
0xe3,0x1,0x27,0x96,0x7f,0x19,0xb6,0x80,0xf5,0xd2,0x2f,0x7a,0x2,0x48,0x10,0x4,
0x5b,0xff,0xf7,0xcd,0x37,0xbf,0x15,0xf7,0xde,0x6a,0xff,0xf0,0xf,0xff,0x60,0xdd,
0xdd,0x63,0x78,0x79,0x45,0x44,0xfe,0x76,0xb8,0x93,0x47,0xaa,0x37,0x1c,0xf7,0x66,
0xf5,0x1b,0xd,0x7,0xbe,0xb8,0x10,0x98,0x14,0xfe,0x6c,0xe7,0x49,0xc7,0x19,0x87,
0x10,0x8,0x0,0x0,0xc2,0xa2,0xf2,0x41,0x5c,0x4b,0x57,0x9f,0x47,0x9d,0x74,0xb8,
0x33,0x83,0xdf,0xa5,0x11,0xfe,0xb2,0x2e,0xff,0x32,0xdc,0x13,0xf8,0x51,0x10,0x4,
0x3f,0xf0,0xa7,0x5f,0xff,0x7a,0xe4,0x1e,0x70,0xb7,0x12,0xde,0xeb,0x6f,0x89,0xc8,
0x8b,0x69,0xde,0x70,0x54,0xdb,0x37,0xa9,0xf2,0x97,0x27,0xfc,0x99,0xaf,0x61,0xfb,
0xa0,0xe3,0x7e,0x19,0x49,0x8,0x7f,0x0,0x0,0x20,0x8d,0xb8,0x56,0x70,0x54,0x67,
0xd2,0x7c,0xdc,0xd8,0x29,0x6a,0xcc,0xdf,0xb0,0xa5,0x6b,0x5e,0x1e,0xab,0xfe,0xd,
0xb7,0x81,0x33,0x96,0x7f,0x79,0x2d,0x8,0x82,0x4f,0x89,0xc8,0x17,0xa3,0x8e,0x3b,
0xae,0xf2,0xf7,0x9,0x11,0xf9,0x4a,0x9a,0x37,0x9c,0xa6,0xb4,0x69,0xab,0xf2,0xa5,
0x9,0x7f,0xfa,0x72,0xf8,0xf9,0xcd,0xeb,0x51,0xc7,0x13,0x75,0xbc,0x0,0x0,0xa0,
0x1a,0xae,0xf3,0xfb,0x3f,0x4b,0xfb,0x37,0x8,0x82,0x41,0xe5,0xef,0xe2,0x42,0x2e,
0x2e,0x2f,0x7,0xe3,0xfe,0x8c,0xaa,0x9f,0x3e,0xe9,0x25,0x60,0x46,0xe7,0xe1,0xea,
0x9f,0xe7,0xd,0x26,0x81,0x98,0xcb,0xbf,0x4,0xc1,0x3b,0x41,0x10,0x6c,0xfc,0xc5,
0x5f,0xfe,0xe5,0x77,0x6d,0xc7,0x19,0x55,0xf9,0x7b,0x45,0x44,0x7e,0x2d,0xe9,0x8d,
0x99,0x6f,0xc6,0xf6,0xc6,0xd2,0x6,0xbf,0x2c,0xd5,0x3f,0xdb,0x6b,0x46,0x7d,0xe0,
0x51,0xd7,0xa3,0x10,0x10,0x1,0x0,0x40,0x11,0x92,0x2a,0x80,0x4a,0xa9,0xd1,0x3e,
0xbe,0xca,0xb2,0xf6,0xdf,0x68,0xa6,0xaf,0x31,0xe3,0x37,0x18,0x2c,0xeb,0x32,0x31,
0xe9,0xc3,0xdc,0xfa,0x6d,0xb8,0xfc,0xcb,0x7b,0x82,0x20,0xf8,0x55,0x11,0xf9,0xa4,
0xed,0xd8,0x6e,0x85,0x96,0x74,0xd1,0x3e,0xa5,0x94,0x7a,0x9f,0x79,0x5f,0x54,0x35,
0x2d,0x4d,0x4f,0x3b,0x2a,0xf8,0xe9,0x37,0x62,0x6b,0x1,0xe7,0x69,0xfb,0xc6,0x5d,
0x8e,0xfa,0xa5,0x0,0x0,0x0,0x24,0x89,0xc8,0x4b,0x63,0x92,0x3a,0x8f,0x13,0xd9,
0x48,0xa9,0xc1,0x29,0x61,0x99,0x17,0x3d,0x9e,0x6f,0xac,0x5,0x6c,0x2c,0x1,0x13,
0xc,0x43,0x9f,0xb9,0xf6,0x5f,0x10,0x4,0x9f,0xf8,0xc1,0x76,0xfb,0xb3,0x6f,0xed,
0xed,0xbd,0x1d,0x3e,0x26,0x5b,0xe5,0xef,0x45,0x11,0xf9,0x4c,0xd4,0x9b,0x30,0x6f,
0x4f,0xd3,0xee,0xb5,0xad,0x64,0x6d,0x1e,0xb8,0xad,0xfa,0x37,0x6d,0xe5,0x2f,0xee,
0xd8,0xd3,0xde,0xf,0x0,0x0,0xaa,0x27,0x2a,0xe4,0x4d,0x93,0x1b,0xc2,0xf9,0x65,
0x22,0xff,0xd8,0x6e,0xb,0x85,0x3c,0xdd,0x26,0xd6,0xd7,0xcd,0x6a,0xdf,0xc4,0xda,
0x7f,0x83,0xc7,0xbd,0x10,0x4,0xc1,0x67,0x44,0xe4,0xa7,0xc3,0xc7,0x73,0x2b,0x7c,
0x70,0xb5,0x5a,0xed,0xa7,0x44,0xe4,0xbd,0x69,0xde,0x80,0xf9,0x46,0xb2,0x56,0xfb,
0xc2,0x1,0x30,0x4d,0xcb,0x37,0x6b,0xbb,0x37,0xea,0x36,0x0,0x0,0x0,0x9b,0xa4,
0xdc,0x90,0xa6,0x2,0x18,0xf5,0x9c,0x91,0xe1,0x2f,0x21,0x0,0xfa,0xe6,0x65,0xb3,
0xda,0x67,0xb6,0x7a,0x43,0xcb,0xbe,0xc,0xb3,0xd4,0x1b,0xaf,0xad,0xaf,0xff,0xca,
0xa3,0x83,0x83,0x8e,0x79,0x3c,0xe1,0xca,0xdf,0xb,0x4a,0xa9,0x9f,0xb7,0xbd,0x31,
0x5b,0xd9,0xd2,0xbc,0x6c,0x1b,0xe7,0x17,0xf5,0x6,0xa3,0x2a,0x7f,0x45,0x7,0xbf,
0xb8,0xdb,0x1,0x0,0x0,0xd2,0xd2,0xd9,0x28,0x6f,0xae,0x98,0xc8,0x48,0x66,0xde,
0x89,0xa9,0xfa,0x59,0x8b,0x67,0x57,0xcb,0xba,0x8c,0xef,0xfe,0x61,0x54,0x3,0x87,
0x74,0x37,0xf7,0xd3,0xe6,0xb1,0x2c,0x85,0xde,0xc4,0x8f,0x8a,0x48,0x2b,0xa9,0xdd,
0x9a,0x26,0xf8,0x25,0x5,0xc0,0xa4,0xf6,0x6f,0x54,0x3b,0x38,0xae,0x5,0x6c,0x3b,
0x26,0x0,0x0,0x80,0x69,0x25,0x15,0xa6,0x92,0x7e,0xc6,0xbc,0x1e,0x4,0x81,0x28,
0xf3,0xfe,0xc1,0x9d,0x93,0x63,0x1,0x43,0x43,0xe6,0x7c,0xa3,0x12,0x18,0x1e,0xeb,
0x67,0x9,0x7e,0xda,0x4f,0xbd,0xb6,0xbe,0xfe,0x8a,0x79,0xc3,0x92,0x79,0x80,0x22,
0xf2,0x46,0xdc,0xc1,0x27,0xbd,0x79,0x5b,0xfb,0x36,0x2e,0xec,0xd9,0x1e,0x13,0xf7,
0xfc,0x69,0x42,0x1f,0x0,0x0,0xc0,0x75,0x4a,0x13,0xa,0xad,0x5d,0xcc,0xe1,0x49,
0xd,0x3,0x9f,0x79,0x5f,0x64,0x25,0xd0,0x68,0xfb,0xf6,0x8d,0x89,0x20,0xfa,0x7e,
0x8b,0x97,0x44,0xe4,0xe3,0xe6,0xd,0x4b,0xc6,0xe5,0xf7,0x28,0xa5,0xfe,0xe5,0x34,
0x55,0xbf,0x70,0x10,0x8c,0x1a,0xcf,0x97,0x34,0xd1,0x23,0x7c,0xdb,0xe8,0x43,0x12,
0x42,0x1f,0x0,0x0,0x98,0x2f,0x13,0x39,0x25,0x66,0xa8,0x9a,0xce,0x3f,0xa3,0x50,
0x98,0xd0,0x3d,0xf5,0xc7,0xc7,0xf8,0x45,0x1d,0xc2,0x58,0x71,0x6f,0xc9,0x38,0xa8,
0x4f,0xc8,0xa0,0x37,0x3c,0x71,0x20,0x79,0xaa,0x7e,0x51,0x41,0xd0,0x16,0x2,0xcd,
0xeb,0x51,0x81,0x2f,0xfc,0xe1,0x11,0xfa,0x0,0x0,0x40,0xd9,0xd9,0x32,0x4c,0x9a,
0x9f,0x9,0x42,0xed,0xe0,0x70,0x76,0x32,0x97,0x7e,0xd1,0xe1,0x2f,0xc6,0x87,0x5f,
0x5b,0x5f,0x6f,0xe9,0x2b,0x4b,0xc6,0x41,0xfd,0xc4,0xb4,0x55,0xbf,0xb8,0xea,0x5e,
0x54,0x55,0x2f,0xcb,0x29,0xfc,0x41,0x2,0x0,0x0,0x94,0x55,0x64,0x5e,0xd1,0x13,
0x6b,0x6b,0xb5,0xab,0xcb,0x96,0x96,0xb0,0xd9,0xe,0x56,0x96,0x4a,0x60,0x8a,0x8a,
0x9f,0xf6,0x82,0xc,0x8a,0x7c,0x22,0x72,0xd5,0xf6,0x7d,0x8f,0x88,0x7c,0xd0,0x76,
0xd0,0x59,0xaa,0x7e,0xb6,0xc7,0xd9,0x2a,0x7b,0x49,0x33,0x7c,0xcd,0xf,0xcc,0xd6,
0x33,0x7,0x0,0x0,0x98,0x67,0x13,0x2b,0xab,0x84,0x66,0x13,0xab,0x61,0xe5,0x6f,
0x2c,0xf0,0x29,0xfb,0xa2,0xd0,0x29,0xb3,0xd1,0xf,0xeb,0xb,0xba,0xed,0xfb,0x11,
0xa5,0xd4,0xb,0xd3,0x8e,0xf5,0xb,0x87,0xb8,0xa8,0x99,0xbf,0x49,0xd5,0x3d,0xda,
0xbc,0x0,0x0,0x60,0x9e,0x25,0x65,0x96,0x9a,0xc,0x2,0xa0,0x3e,0x85,0x7e,0x78,
0xac,0xe5,0xab,0x9f,0x2f,0xaa,0xb3,0x9a,0xd2,0x7,0x5f,0x5b,0x5f,0x7f,0x49,0xe4,
0xaa,0xed,0xbb,0x6d,0x3b,0x68,0x5b,0x18,0x4b,0x3a,0x45,0xb5,0x76,0xd3,0x4,0xc0,
0xf0,0x6b,0xa5,0xfd,0x0,0x1,0x0,0x0,0xe6,0x45,0x6d,0xd8,0xee,0xad,0xc9,0x20,
0x4,0x4a,0xc2,0xae,0x22,0xd6,0x4c,0x15,0x9a,0x27,0x91,0xc2,0x4b,0x22,0xf2,0x83,
0x22,0x57,0x95,0xbf,0xf,0x25,0x55,0xfd,0xd2,0x56,0xfb,0xd2,0xdc,0x1f,0x7e,0xee,
0xf0,0x9b,0x24,0xf8,0x1,0x0,0x80,0x45,0x34,0x56,0xe9,0x33,0xc6,0xfc,0xe9,0x4a,
0xa0,0x49,0xaf,0x5,0x28,0x62,0xe4,0xa6,0x61,0xf0,0x8b,0x59,0xda,0x25,0xce,0xf,
0x8b,0xc,0xc2,0x5f,0x43,0x44,0xde,0x1f,0xbe,0x37,0x6d,0xd5,0x2f,0xee,0xbe,0xa8,
0x20,0x98,0xa6,0xf2,0x17,0xbe,0xc,0x0,0x0,0x30,0xaf,0x74,0xb0,0x33,0xcf,0x47,
0x27,0xcb,0xe3,0x24,0x22,0x63,0xe9,0x59,0xc0,0x39,0x87,0xc3,0x7d,0x50,0x44,0xe4,
0x96,0x52,0xea,0xb5,0xa8,0x47,0x44,0x55,0xe9,0xd2,0x86,0xbd,0xb4,0xa7,0xf0,0xeb,
0x85,0x2f,0x3,0x0,0x0,0xcc,0x93,0x5a,0xad,0x36,0x91,0x65,0xcc,0xdb,0x6a,0x46,
0xdb,0xb7,0xb6,0xb4,0x14,0x39,0xf6,0x6f,0x70,0x66,0x64,0x26,0xa5,0xf2,0x8c,0xf7,
0xd3,0xda,0x22,0x83,0xbd,0x7d,0xd7,0xc3,0xf7,0x84,0x43,0x58,0x54,0x6b,0x76,0x9a,
0xb0,0x17,0x17,0xf4,0x8,0x7e,0x0,0x0,0x60,0xe1,0x99,0x4b,0xbd,0x44,0x8c,0xfb,
0xd3,0x46,0xc1,0x6f,0x78,0x9e,0x53,0xe3,0xb5,0xf5,0xf5,0xd6,0x2d,0xa5,0xd4,0x44,
0xcb,0x77,0xf4,0x22,0x12,0x1d,0xf6,0xcc,0xc7,0x15,0x51,0xf9,0x23,0xf0,0x1,0x0,
0x80,0x45,0x12,0xae,0xfe,0xe9,0xeb,0x63,0x2d,0xdf,0x50,0xdb,0xd7,0x14,0xce,0x5c,
0x81,0x11,0x0,0x73,0x8c,0xf7,0xd3,0x56,0x6e,0x89,0x48,0x2b,0x7c,0x6b,0xda,0xf1,
0x7e,0x59,0x5b,0xc1,0xe1,0xc7,0x85,0x5f,0x2f,0x7c,0x19,0x0,0x0,0x60,0x91,0x4c,
0x8c,0xf9,0x13,0xb1,0x6,0x40,0x6b,0x17,0x76,0xfa,0xca,0x9f,0x88,0xc8,0xf7,0x2d,
0x89,0x11,0xfe,0x6c,0x95,0xb8,0x3c,0x61,0x2f,0xcd,0x73,0x85,0xdf,0x98,0xed,0x3a,
0x0,0x0,0xc0,0x3c,0x9b,0x18,0xc7,0x37,0xf9,0x80,0xc1,0xb2,0x2f,0xb6,0x31,0x7f,
0x12,0xca,0x5b,0x83,0x1b,0xa6,0xa9,0xfa,0x89,0x88,0xb4,0x6e,0x29,0xa5,0xee,0xd8,
0x5e,0x28,0xfc,0x82,0x51,0xf7,0x9b,0xe7,0x51,0x3f,0x1f,0xbe,0x1c,0xf7,0x5c,0x0,
0x0,0x0,0x8b,0x6a,0x62,0xd2,0x87,0x31,0xe6,0xaf,0x16,0x1a,0xff,0x17,0x4e,0x46,
0x5,0xd,0x97,0x7b,0xcf,0x92,0xc,0xb6,0x76,0xb3,0x3e,0x69,0xda,0xb1,0x7d,0x51,
0xf7,0xc7,0x3d,0x6f,0x54,0x18,0x4,0x0,0x0,0x58,0x24,0xe1,0x8a,0xde,0x58,0xcb,
0x57,0x44,0x96,0x8c,0xfb,0x23,0x2b,0x85,0x3a,0x47,0xc9,0xd4,0x5,0xb3,0x3b,0xb7,
0x94,0x52,0x2f,0x8d,0x3f,0x77,0x7c,0xab,0xd6,0xf6,0xb8,0x34,0x13,0x41,0xcc,0x9f,
0x99,0x7c,0x3f,0x84,0x40,0x0,0x0,0x50,0x1d,0x7a,0x97,0x8f,0x51,0xdb,0x37,0xe1,
0xf1,0x7a,0x9f,0x5f,0x99,0xbe,0x80,0xf6,0xca,0xd2,0xd8,0x13,0x47,0x4,0x3f,0xf3,
0xfe,0xa8,0xb1,0x7c,0xe1,0xc7,0x44,0x1e,0x3c,0x41,0xf,0x0,0x0,0x54,0x4c,0x2d,
0x4d,0x75,0x2f,0xc2,0x28,0x6f,0x49,0x21,0x39,0xea,0x85,0x5b,0x49,0xe3,0xf9,0xc2,
0x97,0xf5,0xf5,0x2c,0x41,0x31,0xcd,0x64,0x10,0x0,0x0,0x80,0x2a,0x31,0xc7,0xfc,
0x85,0xcf,0xc3,0xcc,0x0,0x38,0xa5,0xf4,0x95,0xbf,0xa8,0xd6,0xae,0x79,0x1e,0xfe,
0x99,0xb8,0x83,0x7,0x0,0x0,0xa8,0x12,0xeb,0xd8,0x3f,0x31,0x5a,0xc0,0x16,0x63,
0xb9,0x4a,0xa9,0x51,0xdb,0x77,0x1a,0xa3,0xf0,0x97,0x65,0xd9,0x95,0xb8,0x31,0x80,
0xe1,0xeb,0x71,0x15,0x3e,0x82,0x20,0x0,0x0,0xa8,0xa2,0xb1,0x59,0xbe,0xe1,0xdb,
0x6c,0x12,0x56,0x4f,0xc9,0x22,0xb2,0xed,0x6b,0x5e,0x8e,0x9b,0xa1,0x9b,0x65,0x4c,
0x20,0xad,0x5e,0x0,0x0,0x80,0x50,0xd0,0x4b,0x39,0x6,0x50,0x29,0x55,0x44,0xdb,
0x57,0x62,0xdb,0xbe,0x89,0x7,0x30,0x45,0xa,0x25,0x0,0x2,0x0,0x80,0xaa,0x89,
0xaa,0xee,0xd5,0x22,0xee,0x1b,0x9b,0xec,0x51,0xd0,0x31,0x4c,0xb4,0x7d,0xe3,0x96,
0x7a,0x89,0x1b,0xf7,0x17,0x85,0x6a,0x1f,0x0,0x0,0xc0,0xa4,0xa8,0x5d,0x3d,0x46,
0x8c,0xb1,0x7e,0x45,0xe6,0xa8,0x89,0xb6,0xef,0xe0,0x35,0xf2,0xbd,0x40,0x9a,0x75,
0xfd,0x8,0x81,0x0,0x0,0x0,0xf6,0x3d,0x7d,0x13,0x15,0x90,0xa3,0xac,0x6d,0xdf,
0xa8,0xeb,0x93,0xaf,0x9f,0x2d,0xe4,0x11,0xfc,0x0,0x0,0x40,0xd5,0x45,0xed,0xf8,
0x11,0x65,0x94,0x9e,0xa,0xca,0x51,0x91,0x6d,0x5f,0xf3,0xf6,0x34,0xb7,0xc5,0x21,
0xf4,0x1,0x0,0x0,0x58,0xe4,0x5c,0xf0,0x79,0x1a,0x4b,0x51,0x4f,0x14,0x15,0xf8,
0xd2,0x2c,0xa,0x5d,0xf4,0x41,0x2,0x0,0x0,0x2c,0xaa,0xb4,0xf1,0xaf,0xa8,0x79,
0x14,0xb1,0x6d,0xdf,0xac,0xd2,0x1e,0x14,0x81,0x10,0x0,0x0,0xc0,0x10,0xd7,0xf6,
0x1d,0x2e,0xee,0x3c,0xba,0x3c,0xa5,0xa5,0x69,0x76,0xe3,0x48,0xb3,0x15,0x5c,0xda,
0xe7,0x2,0x0,0x0,0xc0,0x95,0x89,0x6e,0x6b,0x41,0xcf,0xbb,0x94,0xf4,0x80,0x69,
0x42,0x1b,0x81,0xf,0x0,0x0,0xa0,0x5c,0xac,0xdb,0xbb,0x11,0xda,0x0,0x0,0x0,
0xae,0x89,0x6d,0x71,0xe7,0x84,0xeb,0xd3,0x48,0xac,0xfc,0x89,0xe4,0x5b,0xb6,0x85,
0x0,0x9,0x0,0x0,0x50,0x3e,0x91,0xe1,0x2f,0xed,0x6c,0x5f,0x0,0x0,0x0,0xcc,
0x8f,0xc8,0xa5,0x5e,0xe2,0xd0,0x22,0x6,0x0,0x0,0x98,0x5e,0xec,0xf6,0x6e,0x86,
0x22,0xf3,0xd6,0x44,0xe5,0x6f,0x9a,0xad,0xdd,0x0,0x0,0x0,0x50,0x9c,0xb1,0x7c,
0x55,0xf4,0xe,0x1f,0x0,0x0,0x0,0x28,0xa1,0x82,0xb,0x6c,0xb1,0xeb,0xfc,0x15,
0x8d,0xea,0x20,0x0,0x0,0x40,0x3a,0xb3,0x4a,0x4d,0xb1,0x95,0xbf,0x59,0x84,0x35,
0x2,0x20,0x0,0x0,0xc0,0xcd,0xb9,0x96,0xb6,0x2f,0x81,0xf,0x0,0x0,0xa0,0x18,
0x85,0xee,0xed,0xb,0x0,0x0,0x80,0xc5,0x46,0xf8,0x3,0x0,0x0,0xa8,0x10,0xc2,
0x1f,0x0,0x0,0xc0,0x1c,0x28,0x6a,0x18,0x1d,0xe1,0xf,0x0,0x0,0xa0,0x42,0x8,
0x7f,0x0,0x0,0x0,0x15,0x42,0xf8,0x3,0x0,0x0,0xa8,0x10,0xc2,0x1f,0x0,0x0,
0x40,0x85,0x10,0xfe,0x0,0x0,0x0,0x2a,0x84,0xf0,0x7,0x0,0x0,0x50,0x21,0x84,
0x3f,0x0,0x0,0x80,0xa,0x21,0xfc,0x1,0x0,0x0,0x54,0x8,0xe1,0xf,0x0,0x0,
0xa0,0x42,0x6e,0xdd,0xf4,0x1,0x0,0x0,0x90,0xc6,0xf2,0xf2,0xb2,0xdc,0xbe,0x7d,
0xdb,0x7a,0xdf,0xd3,0xa7,0x4f,0x45,0x44,0xa4,0xd7,0xeb,0x89,0xe7,0x79,0xd7,0x79,
0x58,0xc0,0xdc,0x21,0xfc,0x1,0x0,0xe6,0xc2,0xc6,0xc6,0x86,0xd4,0xeb,0x75,0xeb,
0x7d,0xab,0xab,0xab,0xa3,0xcb,0x9e,0xe7,0x49,0xb7,0xdb,0x95,0x27,0x4f,0x9e,0xc8,
0xe9,0xe9,0x29,0x61,0x10,0x8,0xa1,0xed,0xb,0x0,0x98,0xb,0x8e,0xe3,0xa4,0x7e,
0xdc,0xf2,0xf2,0xb2,0xb4,0xdb,0x6d,0x59,0x59,0x59,0x99,0xf1,0x51,0x1,0xf3,0x87,
0xca,0x1f,0x0,0x54,0x44,0xab,0xd5,0x92,0x8d,0x8d,0xd,0x71,0x5d,0x57,0x1e,0x3e,
0x7c,0x28,0xae,0xeb,0xde,0xf4,0x21,0x65,0xd2,0xed,0x76,0x65,0x79,0x79,0xf9,0xa6,
0xf,0x3,0x98,0x7b,0x84,0x3f,0x94,0x8e,0xe3,0x38,0x63,0xff,0x5a,0x7f,0xf6,0xec,
0x99,0xf5,0x4b,0xca,0x75,0xdd,0xb9,0xf8,0xf2,0x6a,0x36,0x9b,0x13,0xb7,0xdd,0xbe,
0x7d,0x7b,0xac,0x8a,0x71,0x76,0x76,0x26,0xa7,0xa7,0xa7,0xd7,0x79,0x58,0xa8,0x10,
0xc7,0x71,0xa4,0xdd,0x6e,0x8f,0x82,0x53,0xa3,0xd1,0x90,0xed,0xed,0x6d,0xd9,0xdd,
0xdd,0x95,0x5e,0xaf,0x77,0xc3,0x47,0x97,0x5e,0xaf,0xd7,0xcb,0x1c,0xfe,0x9e,0x3c,
0x79,0x32,0xa3,0xa3,0x1,0xe6,0x17,0xe1,0xf,0xa5,0x63,0x7e,0x49,0xe5,0x95,0x34,
0xe8,0x3b,0xcf,0xa0,0x70,0xc7,0x71,0xa4,0xd1,0x68,0x44,0xde,0xdf,0x68,0x34,0x52,
0xb7,0xa5,0x6c,0xbe,0xf6,0xb5,0xaf,0xe5,0xfe,0x59,0x20,0x4a,0xb3,0xd9,0x94,0x76,
0xbb,0x3d,0x31,0x56,0xce,0x71,0x1c,0xd9,0xde,0xde,0x96,0xbd,0xbd,0x3d,0xe9,0x74,
0x3a,0x37,0x74,0x74,0xb3,0xd5,0xed,0x76,0xa7,0xa,0xb7,0xcd,0x66,0x53,0xee,0xdc,
0xb9,0x23,0x67,0x67,0x67,0xd2,0xed,0x76,0x19,0x3b,0x88,0x85,0x41,0xf8,0x43,0xe9,
0x4c,0x13,0xa0,0xb4,0xb8,0x90,0x26,0x62,0xaf,0xc6,0x1,0x8b,0x66,0x6d,0x6d,0x6d,
0x6c,0x22,0x84,0x4d,0xbb,0xdd,0x16,0x11,0x59,0xc8,0x0,0x78,0x7c,0x7c,0x9c,0xfb,
0x67,0x1b,0x8d,0x86,0x6c,0x6d,0x6d,0x8d,0xdd,0xd6,0xe9,0x74,0xe4,0xe4,0xe4,0x44,
0xba,0xdd,0xee,0xb4,0x87,0x6,0xdc,0x28,0xc2,0x1f,0x0,0x2c,0x98,0x7a,0xbd,0x2e,
0x9b,0x9b,0x9b,0x89,0xff,0x8,0xd2,0x66,0x11,0x0,0x1d,0xc7,0x91,0x7a,0xbd,0x7e,
0xa3,0x6d,0xe5,0x69,0x86,0x52,0xd8,0xfe,0x11,0xda,0x6a,0xb5,0xa4,0xd5,0x6a,0x49,
0xb7,0xdb,0x95,0x93,0x93,0x93,0x85,0xc,0xcc,0xa8,0x6,0xc2,0x1f,0x0,0x2c,0x98,
0xed,0xed,0xed,0xcc,0x15,0xf4,0xa2,0x2,0x60,0xbd,0x5e,0x97,0xb5,0xb5,0x35,0x59,
0x5e,0x5e,0x16,0xc7,0x71,0xe4,0xe0,0xe0,0x60,0xaa,0xa,0x5c,0x19,0x35,0x9b,0x4d,
0x69,0x36,0x9b,0xb2,0xb2,0xb2,0x22,0xfb,0xfb,0xfb,0x54,0x2,0x31,0x77,0x8,0x7f,
0x0,0x0,0x11,0x99,0x2e,0x0,0xea,0xd0,0xd7,0x6a,0xb5,0xc6,0x6e,0x5f,0x5d,0x5d,
0x95,0x27,0x4f,0x9e,0xcc,0xc5,0xe4,0x2c,0xd3,0x9d,0x3b,0x77,0x12,0x1f,0xa3,0x5b,
0xc3,0xdd,0x6e,0x57,0x1e,0x3e,0x7c,0xc8,0x98,0x40,0xcc,0xd,0xd6,0xf9,0x3,0x80,
0x5,0xb3,0xb3,0xb3,0x93,0xbb,0x1a,0xb5,0xb1,0xb1,0x91,0xba,0x5d,0x2c,0x32,0x8,
0x40,0xed,0x76,0x5b,0xee,0xdf,0xbf,0x3f,0x11,0xfc,0x44,0xae,0x66,0x1a,0xcf,0x9b,
0x2c,0x93,0xce,0x9a,0xcd,0xe6,0xc4,0xf8,0x40,0xa0,0xcc,0x8,0x7f,0x0,0xb0,0x60,
0x3c,0xcf,0x93,0xdd,0xdd,0xdd,0x5c,0x15,0x3c,0xc7,0x71,0x64,0x6b,0x6b,0x2b,0xb1,
0x6d,0xac,0xab,0x5e,0xdb,0xdb,0xdb,0xd6,0xd0,0x67,0xd2,0x2d,0xd2,0x79,0x51,0xaf,
0xd7,0x33,0x5,0x60,0x11,0x99,0xab,0x25,0x73,0x0,0xc2,0x1f,0x0,0x2c,0xa8,0xbc,
0xcb,0xb8,0xe8,0x0,0x18,0xa5,0x5e,0xaf,0xcb,0xf6,0xf6,0x76,0xa6,0x59,0xf3,0xab,
0xab,0xab,0x91,0x5b,0xb3,0x95,0xcd,0xdd,0xbb,0x77,0x33,0x3d,0xbe,0xdb,0xed,0xca,
0xde,0xde,0xde,0x8c,0x8e,0x6,0x28,0x1e,0x63,0xfe,0x80,0x8a,0xd2,0xeb,0x12,0xea,
0xb1,0x4d,0x4f,0x9f,0x3e,0x1d,0xdd,0xe7,0x38,0x8e,0xdc,0xbe,0x7d,0x5b,0x44,0x6,
0x55,0xa4,0x45,0x1b,0xb0,0x5f,0x25,0x3a,0x94,0x24,0x55,0xe7,0xc2,0x1a,0x8d,0x86,
0xac,0xad,0xad,0xc9,0xe1,0xe1,0xe1,0xc4,0x7d,0x9e,0xe7,0x89,0xeb,0xba,0x99,0xc2,
0x9c,0x6e,0xff,0xee,0xee,0xee,0x66,0x3a,0x8e,0x9b,0x70,0xef,0xde,0xbd,0xd4,0x8f,
0x3d,0x3d,0x3d,0x95,0x87,0xf,0x1f,0xce,0xf0,0x68,0x80,0xe2,0x11,0xfe,0x80,0x92,
0x78,0xfd,0xf5,0xd7,0x45,0x44,0x46,0x63,0xb5,0x3c,0xcf,0xb3,0xb6,0x92,0xce,0xce,
0xce,0x62,0x7,0x96,0x9b,0xc1,0xcd,0xa4,0xab,0x34,0xf5,0x7a,0xdd,0xfa,0xa5,0x1d,
0xb7,0x1e,0x9c,0xe3,0x38,0xd6,0x10,0x80,0xf9,0xb0,0xb7,0xb7,0x27,0xf5,0x7a,0x3d,
0xf3,0xfa,0x96,0x7a,0xb2,0x46,0xf8,0xef,0xd0,0xf3,0x3c,0xd9,0xdb,0xdb,0xcb,0x3c,
0xce,0xad,0xd9,0x6c,0xca,0xf2,0xf2,0x72,0xa9,0x77,0xb3,0x59,0x5e,0x5e,0xce,0x14,
0x6a,0xf7,0xf7,0xf7,0x67,0x78,0x34,0xc0,0x6c,0x10,0xfe,0x50,0x3a,0xbd,0x5e,0x2f,
0xf2,0x4b,0xca,0xdc,0x99,0x23,0x2a,0xc4,0x44,0x29,0xa2,0xe2,0xf0,0xea,0xab,0xaf,
0xa6,0xae,0xa0,0x84,0xc3,0x5b,0xda,0x2f,0x5e,0xf3,0x71,0x65,0xd9,0xc7,0x74,0x75,
0x75,0x55,0x4e,0x4e,0x4e,0xe6,0x6e,0xc6,0x26,0xae,0x3c,0x7c,0xf8,0x50,0xb6,0xb7,
0xb7,0x33,0xb7,0x5e,0xd7,0xd6,0xd6,0xac,0x95,0xad,0x6e,0xb7,0x2b,0x8f,0x1f,0x3f,
0xce,0x54,0x25,0x13,0x19,0xcc,0x28,0xde,0xd9,0xd9,0x29,0xed,0xcc,0xd8,0x2c,0x63,
0x13,0xbb,0xdd,0x2e,0xff,0x4d,0x60,0x2e,0x11,0xfe,0x50,0x3a,0xfb,0xfb,0xfb,0xa9,
0xfe,0x35,0x9d,0x66,0xf7,0x2,0x53,0x11,0x6b,0x71,0xa5,0x59,0xfe,0x41,0xeb,0xf5,
0x7a,0xb1,0x81,0x53,0x57,0xfa,0xe6,0xc5,0xbc,0xb4,0xec,0x60,0xe7,0x79,0x9e,0x3c,
0x7c,0xf8,0x30,0xd5,0x64,0xe,0x53,0x5c,0xb8,0x39,0x3c,0x3c,0xcc,0x5c,0x29,0xd3,
0xed,0xdf,0x32,0xb6,0x4a,0xf5,0xfa,0x7d,0x69,0x51,0xd,0xc7,0xbc,0x62,0xc2,0x7,
0x80,0x54,0xb2,0x7e,0x31,0xa2,0x7c,0x7a,0xbd,0x5e,0xa6,0x36,0x65,0xa7,0xd3,0x89,
0x7d,0xbc,0xe7,0x79,0xb9,0xda,0x9e,0xcb,0xcb,0xcb,0xa5,0xfc,0x5b,0xca,0xb2,0x24,
0x8d,0xeb,0xba,0x2c,0xee,0x8c,0xb9,0x45,0xf8,0x3,0x90,0xda,0xda,0xda,0xda,0x4d,
0x1f,0x2,0xa6,0xd4,0xe9,0x74,0xe4,0xf1,0xe3,0xc7,0xb1,0x8f,0xd1,0x55,0xc2,0x34,
0x33,0x58,0x4f,0x4f,0x4f,0x73,0x85,0xa0,0x76,0xbb,0x5d,0xc8,0x3e,0xde,0x45,0x59,
0x59,0x59,0xc9,0x54,0xc1,0xa4,0xea,0x87,0x79,0x46,0xf8,0xc3,0xdc,0x32,0x67,0xa7,
0x26,0x61,0x5c,0x4e,0x31,0x9a,0xcd,0xe6,0xdc,0x2c,0xd7,0x81,0x68,0x71,0x5b,0x92,
0x3d,0x7e,0xfc,0x58,0x76,0x76,0x76,0x32,0x4d,0xca,0xc8,0x53,0xfd,0xab,0xd7,0xeb,
0xa5,0x59,0xfb,0xcf,0x71,0x9c,0x4c,0x43,0x48,0x5c,0xd7,0x65,0x5f,0x5f,0xcc,0x35,
0xc2,0x1f,0x2a,0x81,0xf0,0x57,0x1c,0xc2,0xdf,0x62,0x78,0xf8,0xf0,0xe1,0xd8,0x7f,
0x17,0xbd,0x5e,0x4f,0x1e,0x3c,0x78,0x20,0xfb,0xfb,0xfb,0x99,0x27,0x63,0xf4,0x7a,
0xbd,0x5c,0x61,0x68,0x75,0x75,0x35,0xf3,0x62,0xca,0xb3,0xb0,0xb6,0xb6,0x96,0xa9,
0xa,0x49,0xd5,0xf,0xf3,0x8e,0xf0,0x7,0x0,0x15,0xa4,0x5b,0xbb,0x22,0x83,0x6a,
0xdf,0x83,0x7,0xf,0xa6,0xda,0xa5,0xe2,0xf0,0xf0,0x30,0xd7,0xc,0xde,0x8d,0x8d,
0x8d,0xdc,0xaf,0x59,0x84,0x66,0xb3,0x99,0x69,0xc6,0x32,0x55,0x3f,0x2c,0x2,0xc2,
0x1f,0x0,0x54,0x54,0xaf,0xd7,0x93,0x9d,0x9d,0x9d,0x42,0xd6,0xaa,0x73,0x5d,0x37,
0x71,0x2c,0xa1,0x4d,0xb3,0xd9,0xcc,0xbc,0x0,0x75,0x51,0xf2,0xec,0x3b,0x4c,0xd5,
0xf,0x8b,0x80,0xf0,0x7,0xcc,0x8,0x33,0x1,0x31,0xf,0x8a,0x1c,0x12,0x71,0x7c,
0x7c,0x9c,0xbb,0xfa,0x77,0x13,0x93,0x3f,0xda,0xed,0x76,0xa6,0x61,0xc,0xdd,0x6e,
0x97,0xaa,0x1f,0x16,0x2,0xeb,0xfc,0x1,0x37,0xa4,0xdb,0xed,0xe6,0x5e,0xee,0xa2,
0xd3,0xe9,0x24,0x7e,0x69,0x87,0x17,0xc1,0xd6,0xdb,0xb9,0x1,0xb3,0xe2,0x79,0x9e,
0x3c,0x7e,0xfc,0x38,0xd3,0xe4,0x9,0x91,0x41,0x5,0x6e,0x65,0x65,0xe5,0x5a,0xab,
0x6a,0x1b,0x1b,0x1b,0x99,0x17,0x51,0xa7,0xea,0x87,0x45,0x41,0xf8,0x3,0x32,0x28,
0x72,0x57,0x82,0xdd,0xdd,0x5d,0x59,0x59,0x59,0x11,0xc7,0x71,0xe4,0xec,0xec,0x4c,
0x5c,0xd7,0x95,0xed,0xed,0xed,0x54,0x3f,0x7b,0x72,0x72,0x32,0x55,0x65,0xb1,0xd9,
0x6c,0x8e,0xb6,0x81,0xab,0xd7,0xeb,0xb2,0xbc,0xbc,0x4c,0x30,0x44,0x21,0x8e,0x8f,
0x8f,0xe5,0xde,0xbd,0x7b,0x99,0xff,0x9e,0xae,0x73,0x17,0x99,0x56,0xab,0x95,0x79,
0x67,0x92,0x4e,0xa7,0x43,0x35,0x1f,0xb,0x83,0xf0,0x87,0xb9,0x95,0x65,0x70,0x7a,
0x51,0xff,0xd3,0x3e,0x3b,0x3b,0x2b,0xe4,0x79,0xb4,0xe3,0xe3,0xe3,0x42,0x9f,0x2f,
0x2d,0xfd,0x79,0xe8,0xe5,0x3c,0xb6,0xb6,0xb6,0x4a,0xb9,0xe8,0x2e,0xe6,0x4f,0xde,
0xea,0x9f,0xc8,0x60,0xd6,0x6d,0x9a,0xb5,0x5,0xa7,0xd1,0x6a,0xb5,0x32,0x8f,0xf3,
0xcb,0xbb,0x98,0x35,0x50,0x56,0x84,0x3f,0xcc,0xad,0x2c,0x55,0xb8,0xd5,0xd5,0xd5,
0x5c,0x5f,0x46,0x98,0x44,0xf5,0x3,0x49,0xf2,0x56,0xff,0x5a,0xad,0x96,0x1c,0x1e,
0x1e,0xce,0xac,0xfa,0xd7,0x68,0x34,0x72,0xcd,0x2e,0xce,0xb3,0xfc,0xd,0x50,0x66,
0x4c,0xf8,0x0,0x0,0x14,0x4a,0x57,0xff,0xf2,0x98,0xd5,0xc2,0xcf,0x8d,0x46,0x23,
0xf3,0xbe,0xc6,0x22,0x4c,0xf2,0xc0,0x62,0x22,0xfc,0x1,0x48,0xdd,0xf2,0xa5,0xfa,
0x81,0xb4,0xf2,0xce,0xfc,0x9d,0xd5,0xa2,0xcf,0x79,0x66,0x14,0x7b,0x9e,0x37,0xf3,
0x36,0x34,0x70,0x13,0x8,0x7f,0x40,0x89,0x94,0x7d,0x27,0x92,0x69,0x16,0x1,0xc6,
0xec,0xac,0xac,0xac,0xc8,0xeb,0xaf,0xbf,0x2e,0x1f,0xfd,0xe8,0x47,0x4b,0x33,0x76,
0xd3,0xf3,0xbc,0x4c,0x5b,0xc4,0x89,0xc,0x26,0x55,0xcc,0x2a,0x6c,0xed,0xee,0xee,
0xca,0xd1,0xd1,0x51,0xa6,0x40,0x7a,0x74,0x74,0x54,0xfa,0xff,0x26,0x81,0x3c,0x18,
0xf3,0x7,0x94,0x88,0xeb,0xba,0xa9,0xd6,0x1d,0xbb,0x7d,0xfb,0x76,0x61,0x63,0xef,
0xb2,0xac,0x73,0x46,0xe5,0xaf,0x5c,0x1c,0xc7,0x91,0xcd,0xcd,0xcd,0x51,0xe0,0x73,
0x1c,0x47,0xb6,0xb6,0xb6,0x64,0x6f,0x6f,0xaf,0x14,0xad,0xca,0xc3,0xc3,0xc3,0xc4,
0x99,0xe4,0x7a,0xc7,0x8c,0xbc,0x95,0xc2,0xac,0xc7,0x73,0x7c,0x7c,0x2c,0xed,0x76,
0x3b,0x71,0x99,0x97,0xd3,0xd3,0xd3,0x1b,0x9b,0x90,0x5,0xcc,0x1a,0xe1,0xf,0x98,
0x43,0x45,0x2e,0xcb,0x92,0x25,0xfc,0x51,0xf9,0x2b,0x8f,0x66,0xb3,0x29,0x9b,0x9b,
0x9b,0xd6,0xbf,0x85,0x76,0xbb,0x2d,0x77,0xee,0xdc,0xb9,0xf1,0x96,0xa5,0xeb,0xba,
0x72,0x74,0x74,0x24,0xeb,0xeb,0xeb,0x13,0xf7,0x75,0xbb,0x5d,0x39,0x39,0x39,0xb9,
0xf6,0x90,0xaa,0xb7,0xb5,0x5b,0x5e,0x5e,0x96,0x76,0xbb,0x6d,0xfd,0xfc,0x7a,0xbd,
0xde,0x8d,0x7f,0x76,0xc0,0x2c,0x11,0xfe,0x30,0xd7,0xd2,0x56,0xca,0x10,0x2d,0xcb,
0xe7,0x57,0xf4,0x52,0x37,0xc8,0x67,0x63,0x63,0x23,0x71,0x9d,0x3a,0xbd,0x65,0xda,
0x4d,0x87,0x98,0xe3,0xe3,0x63,0x69,0xb5,0x5a,0xa3,0xb1,0x7c,0x9d,0x4e,0x67,0xa6,
0x33,0x7a,0xd3,0x3a,0x3d,0x3d,0x95,0x9d,0x9d,0x1d,0xd9,0xd8,0xd8,0x18,0xdb,0x5e,
0xae,0xd7,0xeb,0xc9,0xee,0xee,0x2e,0x55,0x6e,0x2c,0x34,0xc2,0x1f,0xe6,0xda,0xa2,
0x85,0xbf,0x5e,0xaf,0x97,0x6a,0xcc,0x56,0x91,0xef,0xf9,0xe5,0x97,0x5f,0x4e,0xfd,
0x58,0xbe,0x10,0x6f,0x56,0xa3,0xd1,0x90,0x76,0xbb,0x9d,0x7a,0x52,0x44,0x59,0x2,
0xe0,0xde,0xde,0xde,0x68,0x7,0x8f,0x9b,0xe,0x7d,0x26,0x3d,0xa1,0xe3,0xe4,0xe4,
0x44,0xee,0xdc,0xb9,0x23,0x9e,0xe7,0xc9,0xc9,0xc9,0x9,0x7f,0xe7,0x58,0x78,0x84,
0x3f,0xa0,0x44,0xd2,0x7e,0xe9,0x14,0x19,0xfe,0xb2,0x4c,0x10,0x60,0x8d,0xbf,0x9b,
0x95,0x67,0xa9,0x92,0x32,0x4,0xc0,0xb2,0xb7,0x51,0xbb,0xdd,0x2e,0x7f,0xdb,0xa8,
0x14,0xc2,0x1f,0x50,0x71,0x69,0x83,0x64,0x99,0x2a,0x36,0x55,0x34,0xcd,0x38,0xcf,
0x56,0xab,0xc5,0x2e,0x15,0x39,0x39,0x8e,0x23,0x8d,0x46,0x63,0xb4,0x15,0x62,0xa3,
0xd1,0xb8,0x91,0xb1,0x8a,0x40,0x91,0x8,0x7f,0xa8,0x84,0x5e,0xaf,0x57,0x58,0x2b,
0x67,0x96,0x4b,0x69,0x3c,0x7d,0xfa,0x34,0xd5,0x4e,0x24,0x45,0xad,0x85,0xe6,0x38,
0x4e,0xea,0xf0,0xc7,0x64,0x8f,0x9b,0xe5,0x79,0x9e,0xec,0xec,0xec,0xa4,0x9a,0xa9,
0x6a,0x73,0xef,0xde,0x3d,0x39,0x3b,0x3b,0x9b,0x69,0x68,0x59,0x5e,0x5e,0x96,0x95,
0x95,0x95,0xb1,0xff,0xde,0x3c,0xcf,0x1b,0x1b,0x2b,0xea,0xba,0x6e,0x29,0xff,0x21,
0x61,0xb,0x79,0x8d,0x46,0xc3,0x1a,0xba,0x9b,0xcd,0x26,0xe1,0xf,0x73,0x8d,0xf0,
0x87,0x4a,0xd8,0xdf,0xdf,0x2f,0xac,0xad,0xf3,0xfa,0xeb,0xaf,0x17,0xf2,0x3c,0xd3,
0x28,0x6a,0xb6,0x6f,0x96,0x10,0x49,0xf8,0xbb,0x79,0x7a,0xa6,0x6a,0x9a,0x9,0x1f,
0x36,0xed,0x76,0x5b,0x7a,0xbd,0xde,0xcc,0x7e,0x97,0x7a,0xf6,0x6c,0x59,0xd6,0x1a,
0x2c,0xc3,0x7f,0xab,0x40,0x19,0xb1,0xc8,0x33,0x50,0x22,0x59,0x2a,0x22,0x45,0x8c,
0xfb,0xbb,0x73,0xe7,0x4e,0xea,0xc7,0x3e,0x7d,0xfa,0x74,0xea,0xd7,0x43,0x31,0xf6,
0xf7,0xf7,0x73,0x8f,0xa1,0xcb,0x33,0x6e,0x30,0xad,0x59,0x3d,0x6f,0x19,0x95,0x25,
0xe0,0x2,0x79,0x10,0xfe,0x80,0x12,0xb9,0xee,0xf0,0x47,0xe5,0x6f,0x7e,0x75,0x3a,
0x9d,0x5c,0xfb,0xe7,0xea,0x85,0xa1,0x1,0x54,0x17,0xe1,0xf,0x28,0x99,0xb4,0x1,
0xf0,0x3a,0xc3,0x9f,0xeb,0xba,0x2c,0x7f,0x51,0x42,0xfb,0xfb,0xfb,0xb9,0xc6,0x9e,
0x35,0x9b,0x4d,0x59,0x59,0x59,0x99,0xc1,0x11,0x1,0x98,0x7,0x84,0x3f,0x60,0x46,
0xf2,0x2e,0x88,0x9c,0x36,0xfc,0x65,0x59,0x9f,0xcf,0xa6,0x5e,0xaf,0x33,0xd9,0x63,
0x1,0xec,0xef,0xef,0xe7,0xfa,0xfd,0xe4,0x19,0x33,0x8,0x60,0x31,0x10,0xfe,0x80,
0x19,0xc9,0x5b,0x29,0x4b,0x1b,0xfe,0xa6,0x9d,0xf1,0xcb,0xfa,0x7e,0x8b,0x41,0x4f,
0x2,0xc9,0xfa,0xf7,0x46,0x25,0x77,0x3a,0xfc,0x83,0x8,0xf3,0x8c,0xf0,0x7,0x94,
0xcc,0x75,0xb5,0x7d,0xb3,0x4c,0xf6,0x60,0x5b,0xb7,0x72,0x73,0x5d,0x57,0x1e,0x3e,
0x7c,0x98,0xfa,0xf1,0xdd,0x6e,0x57,0x76,0x77,0x77,0x67,0x78,0x44,0x8b,0x8f,0xf0,
0x8c,0x79,0x46,0xf8,0x3,0x4a,0x26,0x6d,0xd0,0xa2,0xf2,0x7,0x53,0xb7,0xdb,0x95,
0x83,0x83,0x83,0xd8,0xc7,0x78,0x9e,0x27,0x7,0x7,0x7,0xec,0x5d,0xb,0x54,0x1c,
0xeb,0xfc,0x1,0x25,0x93,0x65,0xc6,0x6f,0xa3,0xd1,0xc8,0xd5,0x7e,0xca,0x32,0xde,
0x8f,0xe0,0x37,0x3f,0x8e,0x8f,0x8f,0xa5,0xd1,0x68,0x8c,0xb6,0x74,0x33,0x75,0x3a,
0x9d,0xd2,0xed,0xad,0xb,0xe0,0x66,0x10,0xfe,0x80,0x92,0xc9,0x12,0xe6,0xf2,0x86,
0xbf,0xbb,0x77,0xef,0xa6,0x7e,0x2c,0xe1,0x6f,0xbe,0xec,0xef,0xef,0x8f,0x76,0xa7,
0x10,0x19,0xfc,0x63,0x62,0x6f,0x6f,0xaf,0x94,0xbf,0xc7,0xa3,0xa3,0xa3,0x9b,0x3e,
0x84,0x91,0x7a,0xbd,0x6e,0xd,0xcd,0xc0,0x22,0x22,0xfc,0x1,0x25,0xd4,0xeb,0xf5,
0x52,0xb5,0x75,0x6f,0xdf,0xbe,0x9d,0x7b,0xa9,0x8f,0xb4,0x58,0xdc,0x79,0xbe,0xe8,
0x9,0x20,0xdb,0xdb,0xdb,0xa3,0x6a,0x5f,0x59,0x5b,0xbc,0x87,0x87,0x87,0x37,0x7d,
0x8,0x23,0xcd,0x66,0x93,0xf0,0x87,0xca,0x20,0xfc,0x61,0xae,0xa5,0x1d,0xf7,0x76,
0xfb,0xf6,0xed,0x19,0x1f,0x49,0xb1,0x5c,0xd7,0x4d,0xf5,0xde,0xf2,0x8e,0xfb,0x63,
0xbc,0xdf,0x62,0x73,0x5d,0x57,0x76,0x76,0x76,0x4a,0x1b,0xfa,0x0,0xdc,0x2c,0xc2,
0x1f,0xe6,0x5a,0xda,0xed,0xa4,0xd6,0xd7,0xd7,0x67,0x7c,0x24,0xc5,0xea,0xf5,0x7a,
0xb2,0xbc,0xbc,0x9c,0xf8,0xb8,0x3c,0x5b,0x4c,0x2d,0x2f,0x2f,0xa7,0xfe,0xdc,0x8,
0x7e,0xf3,0x8b,0xe0,0x7,0x20,0xa,0xb3,0x7d,0x81,0x12,0xca,0xb2,0xb4,0x4a,0xd6,
0xea,0x5f,0x96,0x25,0x5e,0x4e,0x4f,0x4f,0x33,0x3d,0x37,0x0,0xa0,0xfc,0x8,0x7f,
0x40,0x9,0x65,0x99,0xc4,0x91,0x25,0xcc,0x89,0x48,0xaa,0x8a,0xa2,0xc6,0x78,0x3f,
0x0,0x58,0x3c,0x84,0x3f,0xa0,0x84,0xb2,0xec,0xa5,0x9b,0xa5,0xf5,0xdb,0x68,0x34,
0x52,0x2f,0xf1,0xe2,0xba,0x2e,0xbb,0x18,0x0,0xc0,0x2,0x22,0xfc,0x1,0x25,0x95,
0x36,0x78,0x65,0x9,0x7f,0xaf,0xbe,0xfa,0x6a,0xea,0xc7,0x32,0xde,0xf,0x0,0x16,
0x13,0x13,0x3e,0x30,0xb7,0xd2,0x4e,0x5a,0x98,0x57,0xdd,0x6e,0x37,0x55,0xb0,0x73,
0x1c,0x47,0xea,0xf5,0x7a,0xaa,0xc5,0x7b,0xb3,0xb4,0x7c,0x9f,0x3c,0x79,0x92,0xfa,
0xb1,0x98,0x5f,0xed,0x76,0x5b,0x5c,0xd7,0x95,0x27,0x4f,0x9e,0x5c,0x7b,0xa5,0x77,
0x6d,0x6d,0xed,0x5a,0x5f,0x2f,0xce,0xb4,0xdb,0x25,0x2,0xf3,0x84,0xf0,0x87,0xb9,
0x35,0xed,0xf6,0x66,0x65,0x97,0x65,0xd2,0xc7,0xdd,0xbb,0x77,0xe5,0xf8,0xf8,0x38,
0xf6,0x31,0x59,0x5a,0xbe,0x9e,0xe7,0x31,0xd9,0xa3,0x2,0x1c,0xc7,0x19,0xad,0x6d,
0xb7,0xba,0xba,0x2a,0x9e,0xe7,0xc9,0xfe,0xfe,0x7e,0xae,0xb5,0x23,0xf3,0x58,0x5d,
0x5d,0xbd,0x96,0xd7,0x1,0x30,0x8e,0xb6,0x2f,0x50,0x52,0x59,0xaa,0x30,0x69,0x2a,
0x84,0x59,0x5a,0xbe,0x4,0xbf,0x6a,0x8,0xff,0xdd,0x38,0x8e,0x23,0xed,0x76,0x5b,
0xb6,0xb6,0xb6,0xa8,0x84,0xc5,0x60,0x48,0x4,0xe6,0x1d,0xe1,0xf,0x28,0x29,0xd7,
0x75,0x53,0xef,0xc3,0x9a,0x26,0xfc,0x31,0xcb,0x17,0x61,0x51,0x33,0xc5,0x9b,0xcd,
0xa6,0xdc,0xbf,0x7f,0x5f,0xda,0xed,0xf6,0xc2,0xf,0xaf,0x0,0xaa,0x88,0xf0,0x7,
0x94,0x58,0xda,0xa,0x83,0xe3,0x38,0xb1,0x6d,0xf0,0xe5,0xe5,0xe5,0x4c,0x2d,0xdf,
0xeb,0x6a,0xfb,0xe1,0x66,0x25,0xfd,0xa3,0xa1,0xd5,0x6a,0x8d,0x42,0x20,0x95,0x40,
0x60,0x71,0x30,0xe6,0xf,0x95,0xd0,0xed,0x76,0xb,0x6b,0xd5,0x5c,0xe7,0x38,0xa5,
0x2c,0xad,0xdf,0xbb,0x77,0xef,0x46,0x3e,0x9e,0x96,0x2f,0xc2,0x92,0xfe,0xc1,0x60,
0x3e,0xae,0xd5,0x6a,0x89,0xeb,0xba,0xa5,0xda,0x8b,0x17,0x40,0x7e,0x84,0x3f,0x54,
0x42,0x91,0x5f,0x5c,0xd7,0x19,0xfe,0xb2,0xb4,0x5f,0x97,0x97,0x97,0xad,0xef,0xd1,
0x71,0x1c,0x66,0xf9,0x62,0x42,0x9e,0xad,0x1,0x1,0x2c,0x6,0xda,0xbe,0x98,0x5b,
0x59,0x76,0xb6,0x98,0xd7,0x96,0x55,0xaf,0xd7,0x4b,0xbd,0xd8,0x73,0xa3,0xd1,0xb0,
0x8e,0xcf,0x5a,0x59,0x59,0x49,0xfd,0x7a,0xae,0xeb,0x52,0xf9,0xab,0x88,0xac,0x3b,
0xc3,0x30,0xe,0x14,0x58,0x1c,0x84,0x3f,0xa0,0xe4,0xb2,0xb4,0xab,0x6d,0x15,0x3e,
0xbd,0x94,0x47,0x1a,0x4,0xbf,0xea,0xc8,0x5a,0xf9,0x63,0xb7,0x17,0x60,0x71,0x10,
0xfe,0x80,0x92,0xcb,0xd2,0x86,0xd,0x57,0xf9,0xb2,0x4c,0xf4,0x10,0x91,0xc4,0xb5,
0x2,0xb1,0x18,0xd2,0x8e,0xf7,0xd3,0xb2,0x54,0xa0,0x1,0x94,0x1f,0x63,0xfe,0x80,
0x92,0xcb,0x52,0xf9,0xd3,0xb,0x39,0xeb,0x25,0x62,0xb2,0xb4,0x7c,0xbb,0xdd,0x6e,
0xea,0xa5,0x65,0x30,0xdf,0xb2,0x8c,0x1,0x15,0x99,0xdd,0xba,0x76,0xbb,0xbb,0xbb,
0xa5,0x59,0x33,0xaf,0xd9,0x6c,0xca,0xd6,0xd6,0xd6,0x4d,0x1f,0x6,0x70,0x2d,0xa8,
0xfc,0x1,0x25,0x97,0x65,0xbd,0x3f,0x91,0xab,0xc0,0xd7,0x68,0x34,0x32,0xb5,0xf6,
0xa8,0xfa,0x55,0x7,0xe3,0xfd,0x80,0x6a,0x23,0xfc,0xa1,0x12,0xe6,0x7d,0x2b,0xb8,
0x2c,0x63,0xf1,0x5a,0xad,0x96,0x38,0x8e,0xc3,0x44,0xf,0x44,0xca,0x5a,0xf9,0xe3,
0x6f,0x3,0x58,0x2c,0x84,0x3f,0xcc,0xad,0x2c,0x3b,0xf,0xcc,0xfb,0x2e,0x5,0x59,
0x2a,0x2f,0x8e,0xe3,0xc8,0xda,0xda,0x5a,0xa6,0x89,0x1e,0xac,0xdf,0x56,0x1d,0x51,
0xb3,0xc2,0xa3,0x10,0xfc,0x80,0xc5,0xc3,0x98,0x3f,0xcc,0xad,0xeb,0xae,0xe6,0x35,
0x1a,0x8d,0xcc,0xed,0xb2,0xa2,0x64,0xfd,0x2,0xbe,0x77,0xef,0x5e,0xea,0xc7,0xba,
0xae,0xcb,0x8e,0x1e,0x15,0x72,0xf7,0xee,0xdd,0x4c,0x8f,0x67,0xdd,0x47,0x60,0xf1,
0x10,0xfe,0x80,0x8,0xf5,0x7a,0x5d,0x9a,0xcd,0xa6,0xdc,0xbd,0x7b,0x57,0x9a,0xcd,
0xe6,0x8d,0x57,0xf,0x4f,0x4f,0x4f,0x33,0xb7,0xeb,0xd2,0xa0,0xea,0x57,0x2d,0x65,
0x99,0xec,0x1,0xe0,0xe6,0x10,0xfe,0x80,0xa1,0x66,0xb3,0x29,0xb7,0x6f,0xdf,0x96,
0x66,0xb3,0x59,0x8a,0xb0,0x17,0xf6,0xe4,0xc9,0x93,0xc2,0xc3,0x1f,0x55,0xbf,0x6a,
0xa9,0xd7,0xeb,0x99,0x97,0x78,0x61,0x6,0x38,0xb0,0x78,0x8,0x7f,0xa8,0x24,0x1d,
0xf4,0x1a,0x8d,0xc6,0xe8,0x54,0x76,0xb3,0x18,0x7b,0x45,0xd5,0xaf,0x5a,0xb2,0xb6,
0x7c,0xf9,0x87,0x81,0x1d,0xb,0x5e,0x63,0xde,0x11,0xfe,0x50,0x19,0x9b,0x9b,0x9b,
0x99,0x2b,0x1f,0x65,0xe2,0x79,0x9e,0x74,0x3a,0x9d,0x4c,0x13,0x39,0xe2,0x74,0xbb,
0x5d,0xbe,0xdc,0x2b,0x26,0x6b,0xe5,0x78,0xd6,0xe3,0xfd,0x36,0x36,0x36,0x4a,0xb3,
0x78,0x74,0x96,0x4a,0x7f,0x59,0x8e,0x19,0xc8,0x8b,0xf0,0x87,0xca,0x98,0xc5,0x78,
0xb9,0xeb,0x76,0x72,0x72,0x52,0x58,0xf8,0xa3,0xea,0x57,0x2d,0x8e,0xe3,0x64,0x5a,
0xf7,0xf1,0x3a,0x5a,0xbe,0xf3,0xfa,0xf,0x31,0x60,0xde,0x11,0xfe,0x50,0x5a,0x8e,
0xe3,0xc8,0xf2,0xf2,0xb2,0xbc,0xfc,0xf2,0xcb,0x22,0x32,0xb9,0x44,0x45,0x15,0xbf,
0x38,0xf4,0x2e,0x1c,0x59,0xb6,0x6c,0xb3,0xe9,0x74,0x3a,0xc,0xe4,0xaf,0x98,0xac,
0xff,0xf8,0xa1,0x2a,0xc,0x2c,0x2e,0xc2,0x1f,0x4a,0xc9,0x71,0x1c,0xb9,0x7f,0xff,
0x7e,0xe9,0x26,0x5d,0x94,0xc1,0xe3,0xc7,0x8f,0x65,0x7d,0x7d,0x7d,0xaa,0xe7,0xa0,
0xea,0x57,0x3d,0x2c,0xf1,0x2,0x40,0x63,0x91,0x67,0x94,0x52,0xbd,0x5e,0x27,0xf8,
0x45,0x38,0x39,0x39,0x99,0x6a,0xcc,0xd1,0xd1,0xd1,0x11,0x33,0x38,0x2b,0xa6,0x5e,
0xaf,0x67,0xaa,0xfc,0x31,0xcb,0x17,0x58,0x6c,0x84,0x3f,0x94,0x12,0xb3,0xe9,0xa2,
0x79,0x9e,0x27,0x8f,0x1f,0x3f,0xce,0xfd,0xb3,0xec,0xe1,0x5b,0x3d,0xcc,0xf2,0x5,
0x60,0x22,0xfc,0x1,0x73,0xe8,0xf8,0xf8,0x38,0x57,0xf5,0xaf,0xd7,0xeb,0x31,0x53,
0xb1,0x82,0xb2,0x4e,0x12,0xa2,0xe5,0xb,0x2c,0x36,0xc2,0x1f,0x4a,0x8b,0x9,0x9,
0xd1,0x3c,0xcf,0xcb,0xb5,0xee,0x5f,0xb3,0xd9,0x94,0xb5,0xb5,0xb5,0x19,0x1c,0x11,
0xca,0x2a,0xeb,0x3a,0x96,0xb4,0x7c,0x81,0xc5,0x47,0xf8,0x3,0xe6,0x50,0xa3,0xd1,
0xc8,0xbd,0xe4,0xcb,0xea,0xea,0x6a,0xa6,0x25,0x3f,0x30,0xdf,0x5e,0x7d,0xf5,0xd5,
0x4c,0x8f,0x67,0x58,0x0,0xb0,0xf8,0x98,0xed,0x8b,0xd2,0xea,0x76,0xbb,0xa5,0x8,
0x29,0xae,0xeb,0x8e,0x4e,0x22,0xe9,0x5b,0x68,0x77,0xee,0xdc,0x99,0x49,0xf5,0xd2,
0x71,0x1c,0xd9,0xda,0xda,0x9a,0xea,0x39,0x36,0x37,0x37,0xe5,0xc1,0x83,0x7,0x54,
0x78,0x2a,0x20,0xeb,0x3f,0x12,0x66,0xb1,0x93,0x4c,0x94,0x32,0xd,0x43,0x70,0x1c,
0xa7,0x92,0xcb,0x47,0xa1,0x9a,0x8,0x7f,0x80,0x5c,0x5,0x3c,0xdd,0xf2,0x3a,0x3b,
0x3b,0x13,0xcf,0xf3,0x26,0x26,0x9e,0x34,0x9b,0xcd,0xc2,0x16,0x59,0xce,0x43,0x7,
0xbf,0x69,0x67,0x42,0x3b,0x8e,0x23,0x9b,0x9b,0x9b,0xb2,0xbb,0xbb,0x5b,0x9a,0x2f,
0x5f,0x14,0xaf,0xd5,0x6a,0x65,0xfa,0x5b,0x39,0x3d,0x3d,0xbd,0xd6,0xbf,0x87,0xfd,
0xfd,0xfd,0xd2,0xc,0xef,0x68,0x36,0x9b,0x53,0xff,0xa3,0xa,0x98,0x17,0x84,0x3f,
0x94,0xd6,0xd3,0xa7,0x4f,0x65,0x75,0x75,0xb5,0xd0,0xe7,0xd4,0x81,0xae,0xd7,0xeb,
0xc9,0xd9,0xd9,0x99,0xb8,0xae,0x5b,0x9a,0x2f,0x9f,0x34,0x36,0x36,0x36,0xa,0xab,
0x4e,0x34,0x1a,0xd,0xd9,0xd8,0xd8,0x90,0xbd,0xbd,0xbd,0x42,0x9e,0xf,0xe5,0x93,
0xb5,0xe5,0xcb,0x44,0xf,0xa0,0x1a,0x8,0x7f,0x58,0x58,0x3a,0xe4,0xb9,0xae,0x2b,
0x4f,0x9f,0x3e,0x2d,0x55,0x8b,0x29,0x8f,0x8d,0x8d,0x8d,0xc2,0xab,0x8e,0xfa,0xf9,
0x8,0x80,0x8b,0xa7,0x5e,0xaf,0x67,0x1a,0x36,0xa1,0xf7,0x8e,0x6,0xb0,0xf8,0x8,
0x7f,0x58,0x18,0xdd,0x6e,0x57,0xba,0xdd,0xee,0x42,0x4,0xbd,0xb0,0x56,0xab,0x25,
0xf7,0xee,0xdd,0x9b,0xd9,0x73,0xbb,0xae,0xcb,0xae,0x1f,0xb,0x26,0xeb,0xac,0xee,
0xeb,0x1c,0xeb,0x7,0xe0,0x66,0x11,0xfe,0x50,0x5a,0x49,0xed,0xd8,0x5e,0xaf,0x27,
0xdd,0x6e,0x57,0x9e,0x3c,0x79,0x32,0x57,0xad,0xdb,0xac,0x5a,0xad,0x96,0xb4,0xdb,
0xed,0x99,0xbe,0xc6,0xea,0xea,0xaa,0x3c,0x7b,0xf6,0x8c,0xca,0xcf,0x82,0xd0,0xfb,
0x62,0x67,0xc1,0x2c,0x5f,0xa0,0x3a,0x8,0x7f,0x28,0x35,0xcf,0xf3,0x46,0x3,0xd6,
0x3d,0xcf,0x1b,0xb,0x7b,0x55,0x98,0xa9,0x7a,0x1d,0xc1,0x4f,0xd3,0xaf,0x43,0x0,
0x9c,0x7f,0x2b,0x2b,0x2b,0x99,0x26,0x7a,0xe8,0xc9,0x4e,0x0,0xaa,0x81,0xf0,0x87,
0x52,0x3b,0x3a,0x3a,0x12,0xc7,0x71,0xe4,0xc9,0x93,0x27,0x95,0xfb,0x72,0xca,0x1b,
0xfc,0xcc,0xc0,0x9c,0x55,0xbb,0xdd,0x96,0x17,0x5f,0x7c,0x91,0x2a,0xd0,0x1c,0x73,
0x1c,0x27,0xf3,0x10,0x81,0xbc,0xdb,0x5,0x2e,0x92,0xdb,0xb7,0x6f,0xdf,0xf4,0x21,
0x0,0xd7,0x86,0x45,0x9e,0x51,0x6a,0xc7,0xc7,0xc7,0x72,0x78,0x78,0x48,0xf0,0x4b,
0xa9,0xd7,0xeb,0x4d,0xbd,0x7c,0xcb,0xfa,0xfa,0xfa,0xb5,0x55,0x1b,0x48,0x4d,0xbf,
0xfd,0x0,0x0,0x13,0xeb,0x49,0x44,0x41,0x54,0x51,0xbc,0xac,0x55,0x3f,0x11,0x66,
0xf9,0x8a,0xc8,0xd4,0xcb,0x27,0x1,0xf3,0x84,0xf0,0x7,0x94,0xcc,0x34,0x15,0xbf,
0x87,0xf,0x1f,0x4a,0xaf,0xd7,0x9b,0x7a,0xf6,0xee,0x75,0xb6,0x9b,0x51,0x9c,0x3c,
0x55,0xbf,0xd3,0xd3,0xd3,0x4a,0xc,0xa1,0x0,0x70,0x85,0xf0,0x7,0x94,0x48,0xbb,
0xdd,0xce,0x1d,0xba,0xf6,0xf6,0xf6,0x46,0x5f,0xe2,0xa7,0xa7,0xa7,0x72,0x74,0x74,
0x34,0xd5,0xb1,0xb4,0x5a,0x2d,0xd9,0xde,0xde,0xa6,0x22,0x32,0x47,0xf2,0x54,0xfd,
0x4e,0x4e,0x4e,0x66,0x74,0x34,0xf3,0xa5,0x5e,0xaf,0xdf,0xf4,0x21,0x0,0xd7,0x86,
0xf0,0x7,0x94,0x80,0xe3,0x38,0xd2,0x6e,0xb7,0x73,0xaf,0xe3,0x77,0x70,0x70,0x30,
0xb1,0x54,0xc7,0xe1,0xe1,0xe1,0xd4,0x93,0x37,0x1a,0x8d,0x86,0x6c,0x6d,0x6d,0xf1,
0xc5,0x38,0x7,0xf2,0x54,0xfd,0x5c,0xd7,0x65,0x89,0x97,0x21,0xb6,0x76,0x43,0x95,
0x10,0xfe,0x80,0x19,0x49,0x1b,0x98,0xf4,0x96,0x6d,0x79,0x83,0x5f,0xa7,0xd3,0x89,
0x9c,0xa0,0xb1,0xbf,0xbf,0x3f,0xf5,0x78,0xc9,0x46,0xa3,0x21,0xdb,0xdb,0xdb,0xa5,
0xd8,0x67,0x19,0xd1,0x36,0x36,0x36,0x32,0x57,0xfd,0x98,0xd9,0x3d,0xd0,0x68,0x34,
0x8,0x7f,0xa8,0x14,0x66,0xfb,0x2,0x33,0x92,0x26,0xfc,0xe9,0xca,0x5a,0xde,0xd6,
0x6a,0xd2,0xf8,0x3e,0xcf,0xf3,0x64,0x77,0x77,0x57,0xb6,0xb7,0xb7,0xa7,0xaa,0xde,
0xe9,0x80,0x7a,0x70,0x70,0xc0,0x4c,0xe0,0x12,0xca,0xbb,0xe7,0xf4,0xa2,0xb7,0x7c,
0x1d,0xc7,0x91,0x95,0x95,0x95,0xb1,0xdb,0xf4,0xbe,0xdd,0xda,0x9d,0x3b,0x77,0x66,
0xb6,0x80,0x3a,0x50,0x56,0x84,0x3f,0x20,0x83,0x22,0xdb,0x9f,0x2b,0x2b,0x2b,0xb2,
0xbe,0xbe,0x9e,0xfb,0xe7,0xf5,0xcc,0xde,0x24,0x7a,0x22,0xc8,0x34,0x21,0x53,0x5b,
0x5f,0x5f,0x97,0xe5,0xe5,0x65,0x79,0xf8,0xf0,0xe1,0x42,0xed,0xa0,0x32,0xcf,0x1a,
0x8d,0x86,0x6c,0x6e,0x6e,0x66,0xfe,0xb9,0x2a,0x4c,0xf4,0xa8,0xd7,0xeb,0x85,0xef,
0xf,0xe,0x2c,0x2,0xda,0xbe,0x40,0x6,0x2f,0xbf,0xfc,0xf2,0xd4,0xcf,0xe1,0x38,
0x8e,0x6c,0x6e,0x6e,0x4e,0x15,0xfc,0x5c,0xd7,0xcd,0xb4,0xa4,0x4b,0x11,0x4b,0xc0,
0x68,0xcd,0x66,0x53,0xee,0xdf,0xbf,0x9f,0x79,0x7,0x9,0x14,0x4f,0x57,0x64,0xf3,
0x84,0xfa,0xa2,0xab,0x7e,0x65,0x9c,0x18,0xa4,0x77,0x1,0x2a,0xda,0xd9,0xd9,0x59,
0xe1,0xcf,0x9,0x5c,0x27,0xc2,0x1f,0x70,0x8d,0x9a,0xcd,0xa6,0x6c,0x6f,0x6f,0x4f,
0x15,0x9c,0x74,0x25,0x2f,0x6b,0x90,0x2b,0x32,0x0,0xea,0x0,0xbb,0xb5,0xb5,0xc5,
0x58,0xc0,0x1b,0x94,0x67,0x76,0xaf,0xc8,0x6c,0x26,0x7a,0x94,0x75,0xcc,0xdc,0x2c,
0x5a,0xdb,0x54,0xbd,0x31,0xef,0x8,0x7f,0xc0,0x35,0x59,0x5b,0x5b,0x9b,0x7a,0xe6,
0xac,0x1e,0xc3,0x97,0x77,0x12,0x47,0x91,0x1,0x50,0x64,0x10,0x66,0xb7,0xb6,0xb6,
0x26,0xc6,0x55,0xe1,0x7a,0xe4,0xfd,0x5b,0xaa,0xd2,0x44,0x8f,0x4e,0xa7,0x53,0x78,
0x7b,0x7b,0x91,0xf7,0x12,0x47,0x35,0x10,0xfe,0x80,0x19,0x5b,0x5b,0x5b,0x93,0xfb,
0xf7,0xef,0x4f,0x3d,0xf6,0x68,0xda,0xe0,0xa7,0x15,0x1d,0x0,0x45,0xd8,0x21,0xe2,
0xa6,0x1c,0x1e,0x1e,0xe6,0xa,0x36,0x55,0x9b,0xb4,0x73,0x78,0x78,0x58,0xd8,0x73,
0x11,0xfc,0xb0,0x8,0x8,0x7f,0xc0,0xc,0xad,0xad,0xad,0xc9,0xea,0xea,0xea,0xd4,
0x13,0x45,0x7a,0xbd,0x9e,0x3c,0x78,0xf0,0xa0,0xb0,0x6d,0xee,0x8a,0xc,0x80,0x55,
0x98,0x38,0x50,0x56,0xae,0xeb,0xca,0x83,0x7,0xf,0x32,0xed,0xcd,0xdb,0xe9,0x74,
0x2a,0xd7,0xb6,0x2c,0xb2,0xfa,0xb7,0xe8,0x33,0xa4,0x51,0xd,0x84,0x3f,0x20,0x83,
0x2c,0xe3,0xab,0x1a,0x8d,0x46,0x21,0x3,0xc3,0x75,0x50,0x2b,0x3a,0x60,0xf5,0x7a,
0x3d,0xd9,0xd9,0xd9,0x99,0x2a,0x50,0xf6,0x7a,0xbd,0x42,0xab,0x2a,0xc8,0xce,0xf3,
0x3c,0xd9,0xdf,0xdf,0x4f,0x5d,0x15,0xae,0xda,0x3e,0xd9,0x5a,0x11,0x7f,0xa7,0x9e,
0xe7,0xb1,0x28,0x36,0x16,0x2,0xe1,0xf,0xc8,0x20,0xcb,0xa0,0x76,0xc7,0x71,0xe4,
0xf4,0xf4,0x74,0xaa,0xe0,0xd6,0xe9,0x74,0xa,0x6f,0xd1,0x9a,0x74,0x2b,0x39,0x4f,
0x2b,0x4b,0x1f,0x5b,0x55,0xc3,0x44,0xd9,0x74,0xbb,0x5d,0x79,0xf0,0xe0,0x81,0x1c,
0x1c,0x1c,0xc4,0xfe,0xbd,0xcc,0x6a,0xa6,0xea,0xed,0xdb,0xb7,0x67,0xf2,0xbc,0x45,
0x39,0x3d,0x3d,0x9d,0xfa,0xbf,0xa3,0xa3,0xa3,0xa3,0xca,0x55,0x4d,0xb1,0x98,0x8,
0x7f,0xc0,0x8c,0xe9,0x2f,0xe5,0xac,0x83,0xec,0x8f,0x8e,0x8e,0x64,0x6f,0x6f,0x6f,
0xe6,0x5f,0x36,0x3a,0x0,0xa6,0x3d,0x3e,0x3d,0xdb,0xf8,0x3a,0x8e,0xd,0xd9,0x1d,
0x1f,0x1f,0xcb,0xce,0xce,0xce,0xb5,0x4f,0xea,0x28,0xe3,0x52,0x2f,0xa6,0x69,0xab,
0x76,0xa7,0xa7,0xa7,0x95,0x1b,0x2b,0x89,0xc5,0x45,0xf8,0x3,0x32,0xc8,0x3b,0x76,
0xcf,0xf3,0x3c,0xd9,0xdb,0xdb,0x4b,0xb5,0x44,0x8b,0xe,0x57,0xd7,0xdd,0x4e,0xdd,
0xdb,0xdb,0x8b,0xdd,0x2d,0x44,0x64,0xf0,0x5,0xb8,0xb3,0xb3,0x43,0xeb,0xab,0xe4,
0xf4,0xdf,0x9b,0xad,0xaa,0x5b,0xe5,0x9,0xb,0x4f,0x9f,0x3e,0xcd,0xf5,0x73,0xa7,
0xa7,0xa7,0x89,0xff,0x6d,0x0,0xf3,0x84,0x1d,0x3e,0x80,0xc,0xb2,0x86,0xbf,0x46,
0xa3,0x31,0xd6,0x16,0x3d,0x3d,0x3d,0x95,0x7,0xf,0x1e,0xc8,0xe6,0xe6,0xa6,0xb5,
0x85,0xdc,0xed,0x76,0x65,0x6f,0x6f,0xef,0xc6,0x26,0x50,0x74,0x3a,0x1d,0xe9,0xf5,
0x7a,0xb2,0xb9,0xb9,0x39,0xf6,0x5e,0x5d,0xd7,0x95,0xfd,0xfd,0x7d,0x42,0xdf,0x9c,
0xe9,0x76,0xbb,0xb2,0xbb,0xbb,0x2b,0xcd,0x66,0x33,0xf7,0x9a,0x80,0x69,0x3d,0x79,
0xf2,0x44,0x1c,0xc7,0x49,0x35,0x34,0xc2,0xf3,0x3c,0x39,0x3e,0x3e,0xbe,0xf6,0x20,
0x9a,0xf5,0xf5,0x3a,0x9d,0x8e,0x9c,0x9c,0x9c,0x54,0x3a,0x30,0x63,0x31,0x11,0xfe,
0x80,0x94,0x1c,0xc7,0x11,0xd7,0x75,0x53,0x7,0x40,0xcf,0xf3,0xac,0x55,0x3e,0xbd,
0x3b,0xc7,0xd6,0xd6,0xd6,0xe8,0x8b,0xd2,0xf3,0x3c,0x39,0x3a,0x3a,0x2a,0x45,0x5b,
0x49,0xcf,0x2c,0x5e,0x59,0x59,0x91,0x66,0xb3,0x29,0xdd,0x6e,0x57,0x8e,0x8f,0x8f,
0x69,0xf1,0xce,0xb1,0x6e,0xb7,0x3b,0xf3,0x0,0xd3,0xeb,0xf5,0x64,0x7f,0x7f,0x7f,
0xa6,0xaf,0x31,0x2d,0xd7,0x75,0xe5,0xf1,0xe3,0xc7,0xd2,0x6a,0xb5,0x26,0x82,0x70,
0xaf,0xd7,0x13,0xcf,0xf3,0xa4,0xdb,0xed,0xca,0xd9,0xd9,0x19,0xff,0xd0,0xc1,0x42,
0xab,0x1d,0x1c,0x1c,0x28,0xf3,0x6,0xa5,0xd4,0xe8,0x3c,0x7c,0xd9,0x76,0xa,0x82,
0x60,0xe2,0x3c,0x7c,0xf2,0x7d,0x7f,0xec,0x5c,0x3f,0x2f,0x30,0x6f,0xea,0xf5,0x7a,
0xea,0xf0,0xe7,0xba,0x6e,0x6c,0x5,0x4f,0x6f,0x3a,0xff,0xec,0xd9,0xb3,0x42,0x6,
0xa3,0x3,0x0,0xe6,0x87,0xce,0x4c,0x9e,0xe7,0xc9,0xf9,0xf9,0xf9,0xe0,0x3b,0xe3,
0xd9,0xb3,0xd1,0x77,0x87,0x3e,0x9d,0xf,0x4f,0xee,0xf9,0xb9,0x9c,0xbb,0xae,0x5c,
0x5c,0x5c,0xc8,0xe5,0xe5,0xe5,0x34,0x2f,0xfd,0x4d,0x2a,0x7f,0x40,0x6,0x49,0x81,
0x2e,0xb,0xcf,0xf3,0x58,0x26,0x5,0x0,0x70,0xed,0x98,0xf0,0x1,0x0,0x0,0x50,
0x21,0x84,0x3f,0x0,0x0,0x80,0xa,0x21,0xfc,0x1,0x0,0x0,0x54,0x8,0xe1,0xf,
0x0,0x0,0xa0,0x42,0xa,0xd,0x7f,0xcc,0xe2,0x5,0x0,0x0,0x28,0x37,0x2a,0x7f,
0x0,0x0,0x0,0x15,0x52,0x68,0xf8,0xab,0xd5,0x6a,0x45,0x3e,0x1d,0x0,0x0,0x0,
0xa,0x46,0xe5,0xf,0x0,0x0,0xa0,0x42,0x18,0xf3,0x7,0x0,0x0,0x30,0x27,0x8a,
0xc8,0x5a,0x54,0xfe,0x0,0x0,0x0,0x2a,0x84,0xf0,0x7,0x0,0x0,0x50,0x21,0x84,
0x3f,0x0,0x0,0x80,0x92,0x52,0x4a,0x49,0xd1,0x83,0xea,0xc6,0xc2,0x9f,0xee,0x23,
0x9b,0xfd,0xe4,0xb8,0xde,0x32,0x63,0xfc,0x0,0x0,0x0,0xe6,0xb,0x95,0x3f,0x0,
0x0,0x80,0xb2,0x2b,0xb0,0x2,0x48,0xf8,0x3,0x0,0x0,0xb8,0x21,0x37,0xd1,0x45,
0x25,0xfc,0x1,0x0,0x0,0xdc,0x24,0xa5,0x6,0xa7,0x88,0xeb,0x69,0x87,0xe3,0xa5,
0x95,0x2a,0xfc,0x15,0x99,0x4a,0xd9,0x5,0x4,0x0,0x0,0x20,0x5,0x33,0xf4,0x15,
0xf8,0xb4,0x85,0x57,0xfe,0x98,0x4,0x2,0x0,0x0,0x90,0x9f,0x92,0xc9,0x3c,0xa5,
0xc2,0xd5,0xc1,0x29,0x8c,0xc2,0x9f,0xf5,0x45,0x62,0xae,0xe7,0x41,0xd5,0xf,0x0,
0x0,0x60,0x9c,0xe,0x7b,0xfa,0x34,0xba,0x5d,0x5f,0xb6,0xac,0xc6,0x32,0x8d,0x89,
0xca,0x5f,0xda,0xa5,0x5d,0xa8,0xf0,0x1,0x0,0x0,0x14,0x6b,0x14,0x2,0x8d,0xcb,
0x45,0x2b,0xa4,0xed,0x4b,0x10,0x4,0x0,0x0,0xc8,0xc7,0xc,0x7b,0x51,0xf7,0x49,
0xcc,0x63,0xb2,0x5a,0xd2,0x4f,0x1c,0x75,0x30,0xd6,0x83,0x20,0xec,0x1,0x0,0x0,
0x4c,0xcf,0x96,0xa9,0x2c,0xb3,0x7d,0xf5,0x98,0xbf,0x42,0xc2,0x9f,0xad,0x95,0x4b,
0xb8,0x3,0x0,0x0,0x98,0x3d,0x5b,0xe2,0x9a,0x18,0x3,0x58,0x60,0xd5,0x4f,0x24,
0x45,0xdb,0x37,0xe9,0x85,0xd2,0x1c,0x8,0x13,0x3d,0x0,0x0,0x0,0x6,0x26,0x8a,
0x6d,0x46,0x55,0x2f,0x8,0x82,0x89,0x31,0x7f,0x66,0xdb,0xb7,0x8,0x13,0xb3,0x7d,
0xb3,0xee,0xef,0xb,0x0,0x0,0x80,0x7c,0x74,0xb8,0xb,0xc2,0x2d,0xdd,0x50,0xe,
0xb,0x8a,0x5e,0xea,0x25,0x4d,0xb8,0x8b,0x1a,0xff,0x17,0x77,0x3f,0x0,0x0,0x0,
0xec,0xac,0xe3,0xf8,0x8c,0x76,0x6f,0x10,0x4,0xa3,0x4a,0xa0,0x79,0xfb,0xb4,0x62,
0xc7,0xfc,0xa5,0x5d,0xf6,0x25,0x2b,0xda,0xc0,0x0,0x0,0xa0,0x8a,0x26,0xb2,0xd6,
0xe0,0x8a,0xa8,0x61,0xc8,0xd3,0x15,0x40,0x75,0xf5,0x3,0x63,0xb7,0x17,0x21,0x72,
0x91,0x67,0xdb,0xed,0xb6,0x5,0x8,0x1,0x0,0x0,0x90,0x8d,0x99,0xa9,0x2,0x73,
0x42,0xc7,0x30,0x8,0xea,0xaa,0x5f,0xa0,0xc7,0x1,0xea,0xb1,0x80,0xb3,0x58,0xea,
0x65,0x9a,0x31,0x7f,0x84,0x42,0x0,0x0,0x0,0xbb,0xd8,0x2d,0xdb,0x74,0x9b,0xd7,
0x9c,0xe0,0x61,0x39,0x15,0x21,0x77,0xdb,0x77,0xe2,0xe0,0x63,0xae,0x3,0x0,0x0,
0x60,0xc0,0x9c,0xe5,0x1b,0x18,0xa1,0x4f,0xdf,0x37,0xa,0x81,0xba,0x1d,0x6c,0x54,
0x0,0x8b,0x90,0x38,0xdb,0xd7,0x3c,0xb7,0x85,0x3c,0x82,0x1e,0x0,0x0,0x40,0x3c,
0xdb,0x30,0xba,0xd1,0xc,0x5e,0xa3,0xd5,0x3b,0xa,0x7b,0xbe,0x7f,0xd5,0xf6,0x2d,
0x30,0xf8,0x89,0x88,0xdc,0xca,0x5a,0xf9,0x4b,0x2a,0x3d,0xb2,0x50,0x34,0x0,0x0,
0x40,0x3c,0xdd,0xf2,0xd5,0xe1,0xce,0xac,0xf8,0x5,0xe6,0x98,0x3f,0x33,0x14,0xce,
0x6a,0xc2,0x47,0xde,0x2d,0xdd,0x92,0xee,0x67,0x86,0x2f,0x0,0x0,0xa8,0xa2,0xa8,
0x42,0x5b,0x38,0xe8,0xa9,0x88,0xe0,0x17,0x14,0x38,0xd9,0x43,0x64,0x38,0xe6,0x2f,
0xae,0xc5,0x6b,0x2b,0x53,0xc6,0xbd,0xa9,0xa4,0xdb,0x75,0x8,0x24,0xc,0x2,0x0,
0x80,0xaa,0x19,0xdb,0xc5,0x23,0xb4,0x9e,0x9f,0xf5,0xe4,0xfb,0xa3,0x16,0x70,0x41,
0x7a,0xb1,0x95,0xbf,0xa8,0xf1,0x7e,0x51,0x33,0x4f,0xb2,0x4,0x43,0x0,0x0,0x80,
0x45,0x67,0xe6,0x20,0x33,0xc0,0x5,0xe1,0xb1,0x7d,0x41,0x20,0xfe,0x30,0xe8,0xf9,
0x46,0xf0,0xf3,0x87,0xa7,0x22,0xc7,0xfc,0x2d,0x29,0xa5,0xde,0x4d,0x1b,0xfc,0xa6,
0x2d,0x39,0x52,0xed,0x3,0x0,0x0,0x55,0x61,0xcb,0x55,0x49,0x2d,0xde,0x51,0x0,
0xf4,0x7d,0xe9,0x1b,0x41,0xb0,0xc0,0x62,0xda,0x3b,0x4b,0x22,0xf2,0xd4,0x16,0xf0,
0xc2,0x95,0xbd,0xb8,0xa,0x5f,0xd6,0x50,0x48,0xeb,0x17,0x0,0x0,0x2c,0xb2,0xb8,
0xac,0x64,0x6,0x3f,0x7f,0x58,0xe1,0xeb,0xf7,0xfb,0xa3,0xaa,0xdf,0xa8,0xda,0xe7,
0xfb,0xe2,0xf7,0xfb,0xe2,0xfb,0x7e,0xb1,0xe1,0x4f,0x29,0xf5,0x8e,0xed,0xa0,0xa2,
0xce,0x6d,0x21,0x31,0xe9,0xd,0x3,0x0,0x0,0x54,0x95,0x2d,0xf4,0x29,0x1d,0xfc,
0x74,0xb5,0x2f,0x8,0x6,0x95,0xbe,0x61,0xd8,0xb,0x57,0xfe,0xa,0xf4,0x74,0x49,
0x29,0x75,0x1c,0x57,0xf5,0x8b,0xaa,0x2,0x12,0xfa,0x0,0x0,0x0,0x26,0x59,0xd7,
0xf4,0x33,0x5a,0xbd,0x3a,0xf8,0xf9,0x46,0xd8,0xeb,0xf7,0xfb,0x83,0xcb,0x41,0x30,
0xba,0xac,0xcf,0xb,0xce,0x57,0x9d,0x5b,0x22,0xd2,0x49,0x1a,0xf3,0x67,0x3b,0x37,
0xdf,0x50,0x5c,0xd5,0x10,0x0,0x0,0xa0,0x2a,0xa2,0x72,0x92,0x88,0x8c,0xed,0xd9,
0x6b,0x4e,0xee,0xf0,0x8d,0x89,0x1d,0x7d,0xcf,0x1b,0xf,0x83,0xc5,0xb6,0x7c,0x45,
0x44,0x8e,0x6f,0x29,0xa5,0xde,0x4e,0xbb,0xd0,0x73,0x9a,0x96,0x6f,0x56,0xb5,0x5a,
0x8d,0xa0,0x8,0x0,0x0,0xe6,0x9e,0x6d,0x9c,0x9f,0x3e,0x1f,0x9b,0xd4,0xa1,0xc7,
0xf9,0xd,0xc3,0x9e,0x59,0xe9,0xeb,0xf7,0xfb,0xe2,0xd,0x6f,0xeb,0xf7,0xfb,0x45,
0xb7,0x7c,0x45,0x44,0xde,0xbe,0xa5,0x94,0x7a,0x14,0x3e,0xc0,0xf0,0x1b,0xc8,0x32,
0xf6,0x2f,0x6a,0x92,0x8,0x0,0x0,0xc0,0xa2,0xa,0x67,0x1e,0x1d,0xda,0xa2,0x66,
0xf4,0xf6,0x87,0xd5,0x3d,0x33,0xf0,0x99,0xa1,0xcf,0x1b,0x56,0x0,0xb,0xe,0x7f,
0xdf,0x7d,0x74,0x70,0xf0,0xce,0x2d,0xa5,0xd4,0xdf,0x89,0x88,0xaf,0x94,0x7a,0x21,
0x7c,0xf0,0x69,0x27,0x80,0x64,0x9,0x7b,0xba,0xd2,0x47,0xc5,0xf,0x0,0x0,0x2c,
0x82,0xb8,0xe0,0x67,0x8e,0xf9,0x1b,0xad,0xdd,0xa7,0x2b,0x7d,0xc3,0xb0,0xe7,0x79,
0x9e,0x78,0xc3,0xf3,0xcb,0xcb,0xcb,0xd1,0xf5,0x7e,0xbf,0x5f,0xf4,0xa1,0xee,0x89,
0xc,0xd6,0xf9,0x3b,0x57,0x4a,0xed,0xc5,0x2d,0xf7,0x62,0xbe,0xb1,0xa4,0x49,0x20,
0xb6,0x96,0x70,0xf8,0x43,0x61,0x89,0x17,0x0,0x0,0xb0,0x8,0x92,0x82,0x9f,0x59,
0xf1,0xeb,0xeb,0x19,0xbc,0xbe,0x3f,0xa,0x77,0x7d,0xcf,0xbb,0x3a,0xd,0xaf,0x7b,
0xc3,0xeb,0x33,0x28,0x92,0xbd,0x25,0x72,0xb5,0xbd,0xdb,0x37,0xf5,0x1b,0xc8,0x33,
0xe3,0x77,0xda,0x83,0x23,0xc,0x2,0x0,0x80,0x79,0x62,0x9b,0xfb,0x30,0x51,0xf1,
0xb,0x4d,0xee,0xd0,0x55,0x3f,0x33,0xe4,0x5d,0xea,0xd3,0xe5,0xa5,0x5c,0x5e,0x5c,
0xc,0xce,0x2f,0x2f,0xa5,0x5f,0xfc,0x2c,0x5f,0x11,0x91,0x6f,0x8a,0x88,0x2c,0xd,
0xdf,0xc0,0x83,0xb4,0xc1,0x2f,0x4b,0x45,0xb0,0xa8,0x49,0x21,0x0,0x0,0x0,0x65,
0x61,0x9b,0xd8,0x61,0xab,0xf8,0xf9,0x46,0xf0,0xeb,0x1b,0xe3,0xfc,0x2e,0x87,0xc1,
0xcf,0x1b,0x6,0xbd,0xf0,0xa9,0xef,0x79,0xb3,0x98,0xe8,0x71,0x2e,0xc3,0xca,0xdf,
0xad,0x61,0x40,0x7b,0x20,0x22,0xe7,0x4a,0xa9,0x97,0xcc,0x37,0x95,0x76,0xf2,0x87,
0x3e,0x8f,0xb,0x7b,0x71,0x55,0x42,0x2,0x22,0x0,0x0,0x28,0xbb,0xa8,0xc,0xa3,
0x6f,0xf,0x6f,0xdd,0x66,0x2e,0xde,0x3c,0x9a,0xc8,0x61,0x56,0xfd,0x74,0xe0,0xbb,
0xb8,0x90,0x8b,0x8b,0xb,0x79,0x3e,0xac,0xfc,0xcd,0x60,0xac,0x9f,0x88,0xc8,0x83,
0x47,0x7,0x7,0xe7,0x22,0x57,0x6d,0xdf,0xf3,0xbc,0xd5,0xbf,0xac,0xe3,0xff,0xa2,
0x3e,0xbc,0x30,0x2a,0x89,0x0,0x0,0xa0,0x2c,0x6c,0xf9,0xc3,0x3a,0xa1,0x23,0xd4,
0xea,0x1d,0x9b,0xd1,0x7b,0x79,0x39,0xaa,0xf6,0x5d,0xc,0x3,0xdf,0xc5,0xf3,0xe7,
0xf2,0xfc,0xf9,0x73,0xb9,0x78,0xfe,0x7c,0xd4,0xf6,0x9d,0x41,0xd5,0x4f,0x44,0xe4,
0x4d,0x7d,0x61,0xc9,0x8,0x55,0xff,0x3b,0x6b,0xa0,0x4b,0x13,0x4,0xcd,0xf,0x2d,
0x6e,0x12,0x48,0xd4,0xe3,0xe2,0x1e,0x43,0x10,0x4,0x0,0x0,0xb3,0x14,0x95,0x69,
0xe2,0x26,0x76,0x98,0xdb,0xb3,0x8d,0x5,0xbf,0x61,0xb5,0x4f,0x7,0xbf,0xe7,0xc3,
0xe0,0xf7,0xfc,0xf9,0xf3,0x51,0xd5,0x6f,0x46,0xc1,0xcf,0x17,0x91,0xaf,0xea,0x2b,
0xb7,0x8c,0x37,0xf5,0x27,0x4a,0xa9,0x73,0x11,0x79,0x29,0x6d,0x9b,0x37,0x7c,0x9e,
0x74,0xd9,0x26,0x4d,0x20,0x8c,0x63,0xfe,0xc,0x13,0x47,0x0,0x0,0x40,0x11,0x92,
0x5a,0xbc,0x66,0xc5,0x4f,0x29,0x63,0x72,0x87,0xa5,0xea,0xa7,0xd7,0xf0,0xb,0x57,
0xfb,0x9e,0x3f,0x7f,0x2e,0xe7,0xe7,0xe7,0xa3,0xcb,0x33,0xc,0x7f,0x7f,0xfe,0xe8,
0xe0,0xe0,0x1d,0x7d,0xc5,0xc,0x7f,0xef,0x28,0xa5,0xbe,0x2a,0x22,0x6f,0xd8,0xde,
0x60,0xd6,0xf3,0xa4,0x8a,0x61,0x9a,0xe7,0x11,0x99,0xc,0x74,0x71,0x1,0x8f,0x20,
0x8,0x0,0x0,0xf2,0x4a,0xd3,0x95,0xc,0xe7,0x99,0x89,0x45,0x9c,0x2d,0xb,0x38,
0x9b,0xb3,0x78,0x75,0xe0,0x3b,0x77,0xdd,0x41,0xf0,0x1b,0x9e,0x2e,0x2f,0x2e,0x66,
0x15,0xfc,0x44,0x44,0x7e,0xd7,0xbc,0x62,0x86,0x3f,0x11,0x91,0x2f,0x29,0xa5,0xde,
0x98,0x26,0xf4,0x99,0x1f,0x8c,0x79,0x39,0xaa,0xd,0x9c,0xb6,0x1d,0x1c,0xbe,0x5f,
0x87,0xbb,0xa8,0x90,0x17,0x7e,0x1e,0xc2,0x20,0x0,0x0,0x8,0x4b,0xea,0x4e,0xc6,
0x85,0x3e,0x7d,0xae,0x27,0x76,0xe8,0xe0,0xe7,0x1b,0x93,0x3b,0x74,0xbb,0x57,0x57,
0xfc,0xce,0xcf,0xcf,0xe5,0x7c,0x78,0xee,0xba,0xae,0xb8,0xc3,0xca,0x9f,0xef,0xfb,
0xb3,0x7a,0x8b,0xdf,0x13,0x91,0xaf,0x99,0x37,0xdc,0xa,0x5,0xb7,0x6f,0x2a,0xa5,
0xde,0x52,0x4a,0xfd,0xa0,0x71,0x5b,0xee,0x2a,0x60,0xdc,0x65,0xf3,0x43,0xb,0x3f,
0xc6,0x54,0xab,0xd5,0xac,0xc1,0x4d,0xdf,0x1e,0x17,0xf2,0xcc,0xcb,0x8c,0xf,0x4,
0x0,0x0,0x51,0x6c,0xdd,0x47,0x6b,0xf7,0x32,0x8,0x24,0x8,0x57,0xfc,0x86,0x63,
0xfc,0xc6,0xc6,0xf9,0x19,0xbb,0x75,0x5c,0x5c,0x5c,0xc8,0xe5,0x70,0x8c,0xdf,0xf9,
0xf9,0xb9,0x9c,0x9f,0x9f,0xcb,0xbb,0xef,0xbe,0x2b,0xee,0xb3,0x67,0xf2,0xfc,0xfc,
0x7c,0x56,0x6b,0xfa,0x69,0x5f,0x78,0x74,0x70,0x30,0x96,0x2c,0xc3,0xe1,0x4f,0x94,
0x52,0x9f,0x55,0x4a,0xfd,0xb1,0xf9,0xa6,0x6d,0x1f,0x4a,0x52,0xd8,0xb3,0xdd,0xa7,
0x4f,0xfa,0x3,0x8a,0xaa,0xfe,0x99,0x46,0x15,0xbe,0xc1,0x95,0xb1,0xdb,0x6d,0xb7,
0x99,0xe7,0x51,0xd2,0x54,0x1,0xa9,0x14,0x2,0x0,0x30,0x5f,0xd2,0x6,0xa8,0xc4,
0xf6,0xae,0x52,0xa2,0xc4,0x12,0xfe,0x74,0xd8,0xd3,0xe1,0x4f,0x87,0xbe,0x20,0x18,
0x6c,0xd9,0x36,0xc,0x7e,0x5e,0x78,0x29,0x97,0x61,0xbb,0xf7,0xf9,0xb0,0xca,0xe7,
0xba,0xae,0xb8,0xcf,0x9e,0x89,0x7b,0x7e,0x3e,0xcb,0x71,0x7e,0x22,0x83,0xb5,0xfd,
0xbe,0x14,0xbe,0xd1,0x16,0xfe,0xde,0x54,0x4a,0x1d,0x88,0xc8,0x7a,0x54,0xa0,0xcb,
0x1a,0x0,0xcd,0x6a,0x5f,0xbf,0xdf,0x1f,0x4b,0xcb,0xb6,0xf,0xda,0x14,0x17,0xfe,
0x12,0x6f,0xbf,0xba,0x31,0xf1,0xd3,0x21,0xec,0x1,0x0,0xb0,0x78,0x22,0x3,0xa1,
0xce,0x29,0xe6,0x63,0xcc,0x2c,0xa2,0x94,0x4,0xc6,0x79,0x10,0x4,0x57,0xe1,0xcf,
0x98,0xdc,0xa1,0x27,0x76,0xf8,0x96,0x9,0x1e,0x9e,0x9e,0xd9,0x7b,0x79,0x39,0x6a,
0xf9,0x3e,0x3f,0x3f,0x1f,0xb4,0x7a,0x67,0x1f,0xfc,0x44,0x44,0xbe,0xf4,0xe8,0xe0,
0xe0,0x69,0xf8,0x46,0x5b,0xf8,0x13,0xa5,0xd4,0xaf,0x88,0xc8,0x1f,0xc6,0xb5,0x6e,
0xe3,0x6e,0x33,0xef,0x33,0xfb,0xe1,0xe6,0x2a,0xd7,0x63,0xb3,0x63,0x74,0xf8,0x1b,
0x7e,0xe8,0x71,0x74,0x44,0x1b,0x85,0xb5,0x88,0x9,0x21,0x59,0xc3,0x1f,0x0,0x0,
0xa8,0x0,0x5b,0xe8,0x1b,0xde,0x1e,0xe8,0xfb,0x82,0x60,0x70,0xff,0xf0,0xdc,0x1a,
0xfc,0x86,0x59,0x66,0xd4,0xee,0xd,0xaf,0xe7,0x67,0x54,0xfe,0xc6,0x96,0x74,0x19,
0x56,0xff,0x74,0x31,0x6c,0x86,0xde,0x15,0x91,0xcf,0xd9,0xee,0x88,0xa,0x7f,0x5f,
0x13,0x91,0x47,0x4a,0xa9,0xd7,0xd2,0x8c,0xe1,0x8b,0xba,0x7f,0x14,0xf8,0x74,0x69,
0xd4,0x98,0xfe,0xac,0xdb,0xbe,0x3a,0x4d,0x4f,0x84,0xbf,0x50,0xcf,0xdd,0x5a,0x99,
0x8b,0x8,0x75,0x51,0x51,0x8f,0xea,0x1e,0x0,0x0,0xd5,0x11,0xae,0xfa,0x4d,0x14,
0x98,0x42,0xd9,0x43,0x87,0xbd,0xb1,0xaa,0x5f,0x68,0xd7,0x8e,0x89,0x45,0x9c,0xcd,
0xf0,0xe7,0x79,0xa3,0x1d,0x3c,0xcc,0xdd,0x3b,0x9e,0xf,0xc7,0xfb,0x5d,0x3c,0x7f,
0x2e,0x17,0x17,0x17,0xa3,0xc,0x34,0x63,0x9f,0x7f,0x74,0x70,0xf0,0x3d,0xdb,0x1d,
0x51,0xe1,0xcf,0x17,0x91,0x7f,0xa3,0x94,0xfa,0x2b,0xa5,0xd4,0xb,0xc6,0xed,0x89,
0xa1,0x2f,0x9c,0x88,0x6d,0xa1,0xcf,0xf,0x4f,0x8b,0x1e,0x86,0x3f,0x9d,0xb8,0x25,
0xf4,0x5a,0x0,0x0,0x0,0x45,0x88,0x9b,0xd8,0x61,0x5e,0x36,0xbb,0x97,0xe1,0xf0,
0x37,0x56,0xf5,0xeb,0xf7,0xc7,0x97,0x76,0x9,0x8d,0xf5,0xbb,0x1c,0xb6,0x7c,0x2f,
0x86,0xbb,0x7b,0xcc,0x70,0x56,0xaf,0xe9,0x58,0x44,0x3e,0x1b,0x75,0xa7,0x35,0xfc,
0xd,0xcf,0xdf,0x52,0x4a,0x7d,0x49,0x29,0xf5,0x33,0x69,0xaa,0x7f,0xb1,0xa1,0x4f,
0xf,0x84,0xc,0xd,0x8e,0xd4,0x8f,0x33,0x3f,0xe0,0xf0,0x73,0xdb,0x8e,0xd,0x0,
0x0,0x20,0x8a,0x2d,0x2f,0x44,0xdd,0x36,0x91,0x6b,0x86,0xc5,0x28,0x33,0x9b,0x44,
0xe5,0x1c,0xbd,0xac,0x4b,0x78,0xa2,0x87,0x39,0xde,0x4f,0xcf,0xf8,0xbd,0x86,0x36,
0xaf,0xe9,0x67,0x1f,0x1d,0x1c,0x5c,0x46,0xdd,0x79,0x4b,0xbf,0x61,0x7d,0x1e,0xba,
0xfc,0xb,0x4a,0xa9,0x9f,0x50,0x4a,0xbd,0x27,0xe2,0xfe,0xf8,0xf6,0xae,0xf1,0xe1,
0xd8,0x2,0xa0,0x2d,0x4d,0x8b,0x88,0x3d,0x4,0x1a,0x3d,0x7a,0xf3,0x98,0x27,0xd8,
0x7e,0xb9,0x9,0x9f,0x10,0xa1,0x12,0x0,0x80,0x5,0x16,0x95,0x21,0x42,0x13,0x3c,
0xc6,0x66,0xf8,0x1a,0xb3,0x7a,0xcd,0xf1,0x7e,0xba,0x78,0x65,0x86,0x3e,0x33,0xfc,
0xf5,0x3d,0x4f,0x2e,0x87,0xd5,0xbf,0xfe,0x30,0x8,0x5e,0x53,0xb5,0x4f,0x7b,0xf3,
0xd1,0xc1,0xc1,0x9f,0xc4,0x3d,0xe0,0x96,0x35,0xf5,0x5e,0x5d,0x7e,0x47,0x29,0xf5,
0x69,0xa5,0xd4,0x57,0x6c,0xf7,0x87,0x7,0x3b,0x46,0x56,0xfb,0x42,0xc1,0x2f,0x3c,
0xe3,0xd7,0xda,0xfe,0x35,0xce,0xc3,0x33,0x71,0x44,0x2c,0x3,0x35,0x43,0xf7,0x8d,
0xdf,0x9c,0x32,0xdc,0x11,0x2,0x1,0x0,0x98,0x6b,0xd6,0xa,0xdf,0xe4,0x83,0x92,
0xc7,0xfa,0x19,0xc1,0x6f,0x62,0xf2,0x6a,0xc4,0x44,0x8f,0xd1,0x64,0x8f,0x61,0xfb,
0xd7,0x2c,0x6c,0x5d,0x93,0x77,0x44,0xe4,0xdf,0x26,0x3d,0xe8,0x56,0x4c,0xf0,0xd3,
0xa7,0xdf,0x17,0x91,0xf,0x2b,0xa5,0x3e,0x65,0xad,0xf6,0x99,0x95,0x3d,0xf3,0x43,
0x9,0xb7,0x79,0x8d,0x53,0xf8,0xb1,0xb6,0xf0,0x67,0x26,0x6f,0xfd,0xb,0x9,0x4f,
0x8,0x99,0x98,0x1d,0x1c,0x6e,0x5d,0xdb,0xde,0x71,0x78,0xf0,0x67,0x44,0xe0,0x23,
0x6,0x2,0x0,0xb0,0x20,0xa2,0xf2,0x81,0x91,0x25,0x74,0xc8,0x13,0x91,0x89,0x6e,
0x64,0x78,0xa2,0x87,0x79,0xa,0x87,0xbf,0x1b,0xa,0x7d,0xda,0x27,0x1f,0x1d,0x1c,
0x7c,0x37,0xe9,0x41,0x89,0xe1,0x6f,0x78,0xfd,0x67,0x95,0x52,0x1f,0x52,0x4a,0x7d,
0x20,0xfc,0xc6,0x47,0xe1,0xcf,0x1c,0xcb,0x17,0x6e,0xf5,0xe,0x2f,0xeb,0x8a,0x5f,
0xbf,0xdf,0x1f,0x55,0x9,0xf5,0xf3,0x29,0xa5,0x46,0xe3,0xff,0xcc,0x19,0xc0,0x63,
0x55,0x40,0x31,0xd2,0xf9,0xe0,0xc0,0xac,0x81,0x50,0xbf,0x7,0x1b,0xdb,0x58,0x42,
0x0,0x0,0xb0,0x78,0xe2,0xbe,0xf3,0xe3,0x26,0x79,0x84,0x27,0x7b,0xd8,0xf6,0xee,
0x35,0xf7,0xf0,0xd,0x77,0x35,0x6f,0xc8,0xaf,0x27,0xb5,0x7b,0xb5,0xa8,0xd9,0xbe,
0xe1,0xeb,0xe7,0x4a,0xa9,0x8f,0xf9,0xbe,0xff,0xd7,0x41,0x10,0xbc,0x32,0x7a,0xa3,
0x11,0xe1,0xcf,0xd6,0xe2,0xb5,0x5,0x3f,0x1d,0x1e,0x27,0x3e,0x58,0xb3,0xd4,0x2a,
0x57,0x69,0xdc,0x3c,0x2e,0xf3,0xc3,0xb5,0x4d,0x10,0x89,0x1b,0xec,0x39,0x6d,0xe8,
0x23,0x34,0x2,0x0,0x50,0x7e,0x89,0x59,0x20,0x34,0xe6,0x2f,0x6e,0xa2,0xc7,0x58,
0xd1,0x2a,0xd4,0xdd,0x34,0x27,0xad,0xde,0x90,0x6f,0x89,0xc8,0x2f,0xa4,0x7d,0xb0,
0x75,0xc2,0x47,0xc4,0xa4,0x8e,0xb7,0x83,0x20,0xf8,0x57,0xfd,0x7e,0xff,0x8f,0x7c,
0xdf,0x7f,0x61,0x54,0xfd,0x1b,0x4e,0x71,0xb6,0x55,0xfb,0x12,0x4f,0xc6,0x98,0xc0,
0x70,0xaa,0x36,0x77,0xff,0x30,0x4b,0xaf,0x51,0x1,0x70,0x74,0x39,0x3c,0x46,0xd0,
0xb8,0x4d,0xc2,0xb7,0x1b,0xf7,0x8f,0x2e,0xa6,0xfd,0xe4,0x0,0x0,0xc0,0x8d,0xca,
0x3a,0xa6,0x3f,0x3c,0x87,0x20,0x1c,0xfc,0x46,0x1,0x50,0x7,0x3f,0x5b,0xf5,0x2f,
0x34,0x61,0xb5,0x4,0x5,0xa1,0xef,0x8a,0xc8,0x8f,0xc7,0xcd,0xee,0xd,0x9b,0x68,
0xfb,0xda,0xae,0xeb,0x37,0xd9,0xef,0xf7,0xdf,0xf4,0x7d,0xff,0xd3,0x7e,0xbf,0xff,
0x5b,0x66,0xe0,0xd3,0x21,0x2e,0x1c,0xfa,0xc2,0xd5,0x3e,0xdb,0xcf,0x98,0x63,0x2,
0xc3,0x1f,0x70,0x38,0x7d,0x9b,0xbb,0x81,0x4c,0x4c,0x6,0x31,0x5a,0xc3,0x13,0x1,
0xd0,0xf6,0x4b,0xd7,0x52,0x4,0xbf,0x12,0xfc,0x62,0x1,0x0,0x40,0x1e,0x31,0xe3,
0xfd,0x92,0x76,0xf4,0x30,0x33,0x50,0xb8,0x25,0x5c,0x12,0x4f,0x45,0xe4,0x9f,0xa7,
0x19,0xe7,0x67,0x9a,0x68,0xfb,0xea,0xcb,0x51,0x93,0x3b,0x7c,0xdf,0xff,0x62,0xdf,
0xf7,0x1b,0x81,0xef,0xff,0xea,0x58,0xaf,0xdb,0x58,0xeb,0x66,0x2c,0xfc,0xf9,0x57,
0xab,0x5f,0xfb,0xc6,0x63,0xc6,0x5a,0xc5,0x46,0xf0,0x1b,0x5b,0x2,0x26,0xd4,0x6,
0x9e,0x98,0xc,0x12,0xfe,0x45,0x84,0x3,0x60,0xd4,0x78,0xc0,0xf0,0xa7,0x90,0x30,
0xe,0xb0,0x34,0xbf,0x62,0x0,0x0,0x90,0x8d,0x59,0xd4,0x32,0x6f,0x36,0xe6,0x10,
0x84,0x27,0x7b,0x98,0xe7,0x25,0xb,0x7b,0xa6,0x73,0x11,0xf9,0xe8,0xa3,0x83,0x83,
0xb7,0xb3,0xfe,0x60,0xe4,0x3a,0x7f,0xfa,0xba,0xb9,0x33,0x47,0xff,0x2a,0x4,0x7e,
0xae,0xef,0xfb,0xef,0xf3,0xfb,0xfd,0x7f,0x67,0x5b,0xe4,0xd0,0x1a,0xfe,0x86,0x95,
0x3e,0x5b,0x58,0x34,0xc7,0x4,0x86,0x4b,0xaa,0x66,0xc9,0xd5,0xac,0xfe,0x85,0x53,
0xba,0x75,0x56,0xb0,0x25,0x0,0xda,0xde,0x27,0x0,0x0,0x98,0x7f,0x71,0x63,0xfc,
0x6c,0xb7,0xdb,0x26,0x84,0xcc,0x49,0x3e,0xb8,0x14,0x91,0x8f,0x3d,0x3a,0x38,0x78,
0x2b,0xcf,0xf,0xc7,0x56,0xfe,0x6c,0x3d,0x6e,0xa3,0xa,0xf8,0x69,0x3f,0x8,0xde,
0xe9,0xfb,0xfe,0x2f,0x4e,0x4,0xbf,0xe1,0x38,0xc0,0xb1,0xcb,0x46,0xc5,0xcf,0x7c,
0xfc,0x58,0xf0,0x33,0x27,0x82,0x58,0xc6,0x2,0x9a,0x3d,0x78,0xf3,0xb2,0x18,0xe3,
0x2,0xd3,0x4e,0xfe,0x8,0xbf,0x67,0x0,0x0,0x30,0xff,0x2a,0xf0,0xdd,0xfe,0xae,
0xc,0x2a,0x7e,0xdf,0xc8,0xfb,0x4,0x91,0x13,0x3e,0x74,0xf8,0xb3,0xed,0xc5,0xab,
0x3,0x9a,0xdf,0xef,0xff,0x52,0xe0,0xfb,0xdf,0xf3,0x7d,0xff,0x37,0xfa,0xfd,0xfe,
0xb,0xe1,0x3d,0xee,0xcc,0xa,0x60,0x54,0x65,0xd0,0xb6,0x5e,0x60,0x78,0x7,0x10,
0xdb,0x4e,0x20,0xb6,0xde,0xfb,0x9c,0xa5,0x76,0x0,0x0,0x80,0x2c,0xbe,0x27,0x22,
0x3f,0x22,0x22,0x8f,0xa6,0x79,0x12,0xeb,0x3a,0x7f,0x22,0x93,0x8b,0x1a,0x86,0xdb,
0xb1,0xfe,0x55,0x15,0xf0,0x8b,0xbe,0xef,0x3f,0xd,0x82,0xe0,0x2b,0xbe,0xef,0xbf,
0xd8,0xb7,0x54,0x0,0xcd,0x35,0x70,0xa2,0xc2,0x5f,0xe4,0xc,0x60,0x4b,0x8,0xb4,
0x1d,0x2f,0x0,0x0,0xc0,0x2,0x3b,0x16,0x91,0x7f,0x21,0x22,0xdf,0x99,0xf6,0x89,
0xc6,0x2a,0x7f,0xfa,0xf2,0xc4,0x8c,0x5b,0x5b,0x10,0x34,0x26,0x68,0xf8,0xbe,0xff,
0x55,0xdf,0xf7,0xbf,0xe3,0xfb,0xfe,0x1f,0x6,0xbe,0xff,0x7d,0x63,0x63,0x4,0x43,
0x55,0xbf,0xb8,0xd6,0xb0,0xad,0xfa,0xa7,0xd7,0xcf,0x29,0xc1,0x1a,0x3a,0x0,0x0,
0x0,0x37,0xe1,0x4d,0x11,0xf9,0xa4,0x88,0xf4,0x8a,0x78,0xb2,0x25,0x5b,0xcb,0xd4,
0xb6,0xbc,0xca,0xe8,0x14,0x51,0x91,0xf3,0x7d,0x7f,0xcf,0xf7,0xfd,0x8d,0xfe,0x20,
0x8,0x8a,0xaf,0x17,0x73,0x36,0xaa,0x7c,0xb6,0x8a,0xa0,0xf5,0x34,0xdc,0x8,0x59,
0x6f,0x86,0xac,0x5b,0xc0,0x0,0x0,0x0,0x15,0x72,0x29,0x22,0x3f,0x2b,0x22,0x3f,
0x26,0x5,0x5,0x3f,0x11,0x91,0x25,0x91,0xc9,0xb1,0x72,0x63,0x6b,0xec,0x85,0x27,
0x7e,0xc4,0x9f,0xde,0xd,0x82,0xe0,0xc7,0xfd,0x20,0xf8,0xb4,0x1f,0x4,0xe7,0xe1,
0xb1,0x7f,0x7a,0x1,0xe8,0xa8,0xd6,0xb0,0xe,0x7e,0xfa,0x3e,0x7d,0x1c,0x0,0x0,
0x0,0x15,0xf3,0x1d,0x11,0xf9,0x67,0x22,0xf2,0x3f,0x8a,0x7e,0xe2,0xa5,0xf0,0xd,
0xe1,0x31,0x75,0x7a,0xfd,0xbc,0xf0,0xc9,0x3a,0x23,0xf8,0xea,0xf4,0x85,0x20,0x8,
0xbe,0x3f,0x8,0x82,0x37,0xcd,0x19,0xc2,0x7d,0xb3,0xd5,0x1b,0x9e,0x1c,0x62,0x54,
0xfe,0xa8,0xf4,0x1,0x0,0x80,0x8a,0x3a,0x17,0x91,0x5f,0x11,0x91,0xef,0x17,0x91,
0xbd,0x59,0xbc,0xc0,0x92,0x6d,0xc2,0x87,0x5e,0x50,0x79,0xac,0xfa,0x17,0x6a,0xfd,
0xda,0x76,0x3,0x9,0x5,0xc0,0xef,0x4,0xbe,0xff,0x63,0x41,0x10,0xfc,0x58,0x10,
0x4,0xdf,0x19,0xb5,0x8a,0xcd,0x56,0xb0,0x65,0x26,0x30,0xd5,0x3e,0x0,0x0,0x50,
0x51,0x5f,0x17,0x91,0xd,0x11,0xf9,0x25,0x19,0x84,0xc0,0x99,0x98,0xa8,0xfc,0x8d,
0xed,0x82,0x91,0x10,0xc2,0xc2,0x63,0x3,0xc5,0x3e,0x39,0xe4,0xcd,0x20,0x8,0xbe,
0x3f,0xf0,0xfd,0x9f,0xf3,0x83,0xe0,0xa9,0xb1,0x4c,0xcc,0x58,0x18,0xd4,0xc1,0xf,
0x0,0x0,0xa0,0x62,0xf6,0x64,0x30,0xae,0xef,0x47,0x64,0x30,0xab,0x77,0xa6,0xc6,
0xc6,0xfc,0x8d,0xaa,0x6e,0xa1,0x5d,0x32,0xc6,0xd8,0x96,0x86,0x19,0x3e,0x36,0x30,
0x77,0xd6,0x18,0xf,0x80,0xe7,0x41,0x10,0x7c,0x3e,0x8,0x82,0x57,0x83,0x20,0xf8,
0x74,0xe0,0xfb,0xdf,0xf5,0x83,0x60,0x6c,0xec,0x1f,0xc1,0xf,0x0,0x0,0x54,0xcc,
0xb7,0x64,0x10,0xf8,0x7e,0x40,0x6,0x33,0x7a,0xaf,0xc5,0xa8,0xf2,0x37,0x4d,0xab,
0x55,0x99,0x3f,0xaf,0xae,0xf6,0xdf,0xd5,0xcf,0xab,0xb7,0x69,0x53,0x41,0x70,0xae,
0x6,0xe3,0x1,0xff,0x71,0x10,0x4,0x3f,0x1d,0x4,0xc1,0x5b,0xb4,0x79,0x1,0x0,
0x40,0x85,0x5c,0x8a,0xc8,0x57,0x45,0xe4,0x87,0x64,0x30,0xa1,0xe3,0xeb,0xd7,0x7d,
0x0,0x4b,0xb6,0xe0,0x35,0x76,0x4b,0xad,0x36,0x7e,0xe7,0xf0,0x7a,0xad,0x56,0x93,
0x9a,0xbe,0x3c,0xbc,0x3e,0xf1,0x3c,0xe1,0x10,0x78,0x15,0xc,0x2f,0x45,0xa9,0xdf,
0x55,0x41,0xf0,0x4f,0x95,0x52,0x1b,0x41,0x10,0x7c,0x56,0x44,0x3a,0x5,0xbc,0x1f,
0x0,0x0,0x80,0x32,0xfa,0xa6,0xc,0x96,0x6d,0xf9,0x47,0x22,0xf2,0xe3,0x22,0x92,
0x7b,0x7b,0xb6,0x69,0xdd,0x8a,0xbb,0x53,0xc7,0xb9,0x5a,0xad,0x36,0x8,0x78,0xc6,
0x6d,0xa3,0xdb,0x6b,0x35,0x11,0xe3,0x7e,0x7d,0x59,0xdf,0x3f,0xc1,0x98,0x44,0x32,
0xc,0x87,0x7,0x22,0x72,0x20,0x22,0xbf,0x20,0x22,0x1f,0x10,0x91,0x8f,0x88,0xc8,
0x87,0x87,0xa7,0x46,0xee,0x77,0x6,0x0,0x0,0x70,0x73,0x3a,0x22,0xf2,0x40,0x6,
0x95,0xbd,0x6f,0xc8,0x60,0x6b,0xb6,0x52,0x18,0xed,0xf0,0x61,0x6d,0xbd,0xe,0xc3,
0x5d,0x4d,0x44,0x6a,0x4b,0x4b,0xa3,0xd3,0xd2,0xb,0x2f,0xc8,0x52,0x10,0x8c,0xc2,
0xdf,0x52,0xad,0x76,0x75,0xff,0xf0,0xb1,0x4b,0x4b,0x83,0x8e,0xb2,0x3e,0x1f,0xb,
0x8a,0x46,0x40,0xc,0xf9,0xbb,0xe1,0xe9,0xf3,0xc3,0xeb,0x1f,0x14,0x91,0x75,0x19,
0x84,0xc2,0x15,0x11,0xf9,0xbe,0xe1,0x65,0x0,0x0,0x80,0x32,0xb8,0x94,0x41,0x11,
0xeb,0x6d,0x19,0x4c,0xd6,0x38,0x96,0x41,0x95,0x6f,0xea,0x6d,0xd8,0x66,0x65,0x54,
0xf9,0x1b,0x5b,0xd7,0x4f,0x64,0xac,0xa5,0x2b,0x66,0x7b,0x57,0xae,0xda,0xbc,0xb5,
0x5a,0x4d,0x96,0x86,0x41,0xcf,0xbc,0x6c,0x3d,0x85,0x1e,0x6b,0x86,0xc8,0x98,0xc9,
0x1e,0xdf,0x1a,0x9e,0xc2,0x1a,0x32,0x8,0x83,0xda,0x1d,0x11,0x69,0x4d,0xf1,0x39,
0x0,0x0,0x0,0x24,0x39,0x90,0x41,0xd8,0xd3,0x66,0xb2,0xe,0xdf,0xac,0xfd,0x7f,
0xaf,0x6d,0x4c,0xf1,0xc2,0x9c,0x2c,0x37,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,
0xae,0x42,0x60,0x82,
// D:/Works/Mine/IVM/Codes/IVM/VehicleManagement/VehicleManage/Resources/Images/cancelon.png
0x0,0x0,0x3f,0xa6,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x2,0x7f,0x0,0x0,0x1,0x15,0x8,0x6,0x0,0x0,0x0,0x91,0xc9,0x83,0x5a,
0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x5c,0x46,0x0,0x0,0x5c,0x46,
0x1,0x14,0x94,0x43,0x41,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x78,0x9c,0xed,
0xdd,0x7b,0x6c,0x5c,0xd7,0x7d,0x27,0xf0,0xef,0x1d,0xd,0xd9,0x1a,0xf2,0x8a,0x54,
0x80,0x10,0x1,0x24,0xc8,0x54,0x11,0x58,0x80,0x2c,0xc9,0x94,0x5b,0x54,0x70,0x2a,
0x41,0x8c,0x16,0x59,0x5b,0xb1,0x5d,0x33,0x6d,0x8a,0x3a,0x51,0x5c,0x33,0x68,0x91,
0xa8,0xf1,0x66,0xc3,0x6c,0x37,0xf1,0x63,0x8b,0x48,0x9,0x36,0x7e,0x64,0x37,0x9,
0xb3,0x8d,0x1d,0x39,0xd8,0xc2,0x54,0x1b,0xb5,0x5e,0x34,0x68,0x68,0x4b,0x7e,0x14,
0x5d,0xc8,0x14,0xc4,0xd8,0x50,0xb0,0xb1,0xa8,0x97,0x1,0x7b,0x3,0x90,0x22,0x4c,
0x20,0x60,0x0,0x6b,0xa8,0x86,0x91,0x44,0xce,0x3d,0x67,0xff,0xb8,0x73,0xee,0x9c,
0x73,0xee,0xb9,0x33,0xf7,0xce,0x83,0xbc,0x33,0xf3,0xfd,0x8,0x93,0x79,0xf,0xef,
0xcc,0xc8,0xe1,0x57,0xbf,0x73,0x7e,0xe7,0x78,0xbb,0xff,0xcf,0xc7,0xd0,0xe5,0x75,
0xa1,0x2b,0xd7,0x85,0xee,0x5c,0x17,0xba,0x73,0xdd,0xa5,0xcb,0xdd,0xe8,0xca,0xe5,
0xd1,0x95,0xeb,0x42,0x97,0xd7,0x85,0x7c,0x2e,0x8f,0x2e,0x2f,0x8f,0x7c,0x2e,0x8f,
0x35,0xde,0x1a,0xe3,0x94,0xf3,0x72,0xc8,0x21,0x87,0x9c,0xe7,0xc1,0x83,0x87,0x9c,
0x97,0x3,0x0,0x78,0xf0,0xe0,0x95,0x6e,0x53,0x24,0x64,0x70,0x2e,0x65,0x78,0x59,
0x48,0x1,0x75,0x4d,0x48,0x61,0xdc,0xe6,0x4b,0x1f,0x12,0x32,0xb8,0x2e,0xe5,0x6,
0x1,0xf1,0x61,0x29,0xe5,0x16,0x1,0x1,0x29,0x25,0x4,0xc4,0xcd,0x52,0xca,0x2d,
0xb2,0xf4,0xda,0xea,0x79,0xfa,0x6b,0xe8,0x3f,0x4f,0x5d,0x57,0xb7,0x19,0xc7,0xa4,
0xdd,0x47,0x44,0x44,0x44,0xad,0x47,0xfd,0x6e,0x37,0x6e,0x8b,0xf9,0x3d,0x1f,0x66,
0x3,0x2d,0xf,0x48,0xed,0x76,0x95,0x23,0xb4,0xf3,0x25,0x1,0x71,0x41,0xca,0x20,
0x9f,0x8,0x88,0x25,0x21,0xc5,0x5,0x21,0xe5,0xdb,0xbe,0xf4,0xaf,0xf9,0xd2,0x87,
0x90,0x2,0xbe,0xf4,0xd5,0xfd,0xa5,0xcb,0xe5,0xdb,0x7c,0xe1,0x97,0x2f,0x6b,0xf7,
0x95,0x1f,0x5b,0x7a,0xae,0x14,0xa5,0x93,0x99,0x85,0xc2,0xfc,0xf3,0xc0,0xd5,0x9a,
0x3f,0xa3,0x7c,0x97,0xd7,0x85,0xee,0x35,0xdd,0xe8,0xf2,0xf2,0xe8,0xce,0x75,0x87,
0xa7,0x30,0xf8,0x85,0xe1,0x6f,0xd,0xf2,0x5e,0x3e,0x38,0x95,0x2,0x60,0xce,0xcb,
0x61,0x8d,0xb7,0x6,0x1e,0x50,0x3a,0x8f,0x6,0x3f,0x75,0xd9,0xe,0x5d,0xd2,0x2b,
0x7,0xb4,0x9c,0x97,0xb,0xdf,0x54,0xce,0xcb,0x41,0x48,0x1,0xcf,0xf3,0xb6,0x4b,
0x29,0xef,0xce,0x79,0xb9,0xad,0x42,0x8a,0xed,0x1e,0xbc,0xad,0xf0,0x70,0x93,0x27,
0x3d,0xc0,0x3,0xec,0x73,0xf5,0xc5,0xd9,0x3f,0x2b,0x4e,0x2d,0xc1,0xcf,0xf5,0x17,
0x8a,0x88,0x88,0x88,0xb2,0xc9,0xc8,0x1e,0x31,0xc1,0xcf,0x7c,0x7c,0x34,0x1f,0x54,
0x7b,0x2d,0x59,0xbe,0xfe,0x4b,0x0,0xbf,0x90,0x90,0x6f,0x4b,0xc8,0x37,0x25,0xe4,
0xa4,0x90,0xe2,0x17,0x42,0x4a,0x2d,0xc8,0x5,0xe1,0xad,0xfc,0x47,0x96,0x2f,0x6b,
0x8f,0x91,0x32,0x8,0xa4,0x22,0x28,0x72,0x19,0xc1,0x4f,0x48,0x81,0x7a,0x6b,0x55,
0x79,0x57,0xf0,0xeb,0x5e,0xd3,0x15,0x56,0x3,0x83,0xf0,0x17,0x4,0xbe,0xbc,0x67,
0x57,0xfd,0x72,0x41,0xd5,0xcf,0xcb,0x85,0xc1,0x4f,0x55,0xf9,0xf4,0xf0,0xa7,0x7f,
0xd0,0x0,0x20,0xbd,0x72,0xd2,0xd6,0x82,0xdf,0x87,0x72,0x5e,0xee,0x93,0x42,0x8a,
0x7d,0x39,0x2f,0xb7,0x57,0x48,0xf1,0x1,0xbd,0x62,0xe8,0x79,0x5e,0xa2,0xf0,0xa5,
0x57,0xfa,0xf4,0x9f,0xab,0x57,0xfd,0xf4,0x2f,0xdc,0xf5,0x97,0x21,0xee,0x35,0x89,
0x88,0x88,0xa8,0x75,0xb8,0x7e,0x7f,0x1b,0x55,0x3e,0x69,0x6,0x3a,0xfb,0x3e,0xbd,
0xea,0xa7,0x57,0x9,0xc3,0x3f,0xd2,0xb8,0xfe,0xa1,0xd2,0x69,0x37,0x80,0xcf,0x95,
0x5e,0xf6,0x97,0x0,0xfe,0x55,0x42,0xbe,0x24,0x21,0x5f,0x96,0x52,0x5e,0xb,0x9f,
0x63,0x9d,0xc2,0xe0,0x57,0xfa,0x99,0xbe,0x34,0x43,0xa1,0x2f,0xfd,0xe0,0xf8,0x4,
0x82,0x53,0x1d,0xf2,0xae,0xe0,0xd7,0x9d,0xeb,0xd6,0xc2,0x5f,0x10,0xfa,0xba,0x72,
0x5d,0x46,0xe8,0x33,0x87,0x7b,0x73,0x91,0x21,0x5e,0x3d,0xb8,0xa9,0xf,0x52,0x85,
0x41,0xf5,0xc6,0x3c,0xcf,0xbb,0x59,0x48,0xf1,0x9,0x0,0xf,0x7a,0xf0,0x3e,0xa6,
0x9e,0xa7,0xbe,0x2c,0x15,0xf8,0x5c,0xd5,0x3c,0xe7,0x17,0x11,0xf7,0xc5,0x38,0x82,
0x5f,0xa5,0xe1,0x5f,0xfd,0x67,0x10,0x11,0x11,0x51,0x6b,0xb3,0x43,0x9e,0x7e,0x9b,
0x3e,0xd4,0xab,0xae,0xab,0x29,0x68,0x76,0xa1,0xa8,0x52,0xb6,0xd0,0xab,0x76,0xda,
0x90,0xed,0x87,0x84,0x14,0xf,0x96,0x4e,0xb,0x2,0xe2,0x27,0x2,0xe2,0xef,0x5,
0xc4,0x49,0xa3,0xea,0xa7,0xfd,0x9,0x86,0x85,0xab,0x4,0x3f,0x51,0x5f,0x3e,0xc9,
0xbb,0x82,0x5f,0x10,0xfe,0xca,0xc3,0xbe,0x6b,0xbc,0x35,0xda,0x70,0x6f,0x39,0xf0,
0xe9,0x43,0xbd,0xae,0xf9,0x7d,0x91,0xf,0xbf,0x9c,0xaa,0xb7,0xe4,0xbc,0xdc,0xa3,
0x42,0x8a,0x4f,0x7a,0x9e,0x77,0xb3,0x94,0xd2,0xa8,0xec,0xd9,0xaf,0x10,0x57,0x9d,
0x2b,0x7f,0x19,0xb0,0xae,0x97,0xbf,0x1c,0x51,0x8a,0xc7,0xae,0x2f,0xca,0x7e,0x4e,
0x12,0x1c,0xfa,0x25,0x22,0x22,0x6a,0x1d,0xae,0x62,0x8f,0x7e,0x7b,0xa5,0xe0,0x57,
0xad,0xb8,0xa4,0xf,0xcb,0x46,0x32,0x88,0xfd,0x47,0xca,0x1e,0x29,0xe5,0xb0,0x90,
0x62,0x58,0x48,0x31,0x27,0xa4,0xf8,0xbe,0x2f,0xfd,0x1f,0xf8,0xd2,0x5f,0xd0,0xe7,
0x3,0xea,0xc3,0xc0,0x6a,0xee,0x9f,0x94,0x12,0xf0,0x11,0x9c,0x84,0x6c,0xc0,0xb0,
0xaf,0x23,0xf8,0x75,0xe7,0xba,0xc2,0x6a,0x5f,0x3e,0x1c,0xf2,0x75,0x35,0x78,0x94,
0x87,0x7b,0x81,0xf8,0x79,0x7e,0xda,0x87,0xfd,0xbb,0xf0,0xf0,0x15,0x48,0xfc,0xa9,
0x7a,0x8c,0xfd,0x58,0xe3,0xb,0xd3,0x87,0x67,0x65,0xf4,0x43,0xd7,0xcf,0xed,0x49,
0x99,0x7a,0xf0,0x73,0x35,0x7e,0xe8,0x5f,0xbc,0xfe,0xf3,0xc2,0xcb,0xac,0xfa,0x11,
0x11,0x11,0xb5,0x9c,0x6a,0x45,0x9a,0xb8,0xd0,0xa7,0x15,0xa8,0xcc,0x3c,0x1,0xab,
0x39,0x35,0xa6,0xea,0x17,0x9e,0x43,0xe5,0x12,0xab,0x1a,0x18,0xce,0xf2,0x93,0x10,
0x52,0x6e,0x10,0x52,0x3c,0x29,0xa5,0x7c,0x54,0x48,0xf1,0x7d,0x21,0xc5,0x77,0x84,
0x14,0xef,0x7,0x4d,0x1f,0x56,0xf0,0x13,0xb2,0x1c,0xfa,0x7c,0x34,0x66,0xd8,0xd7,
0x15,0xfc,0xc2,0xee,0xde,0x52,0xf8,0x53,0xc3,0xbc,0xfa,0x29,0xae,0xe2,0x67,0xcc,
0xf3,0x2b,0x7d,0xfe,0x9e,0xe7,0x6d,0x95,0x90,0xdf,0x86,0xc4,0xdd,0xc1,0xd,0xc1,
0x87,0x15,0x37,0x8f,0xcf,0xf5,0xb5,0xb9,0x4a,0xad,0xc1,0x87,0x59,0x39,0x0,0xc6,
0x95,0x68,0xd5,0x17,0xa6,0x5e,0x5b,0xbf,0x4e,0x44,0x44,0x44,0xad,0xcb,0x59,0x50,
0x52,0xe7,0xce,0xea,0x5f,0x39,0xf8,0xa9,0x6e,0x5a,0xfd,0xf6,0x70,0x14,0xd1,0xc8,
0x14,0x30,0x72,0x45,0x39,0xf4,0x9,0x23,0x4,0x9a,0x95,0xc2,0x48,0xd3,0x47,0x8f,
0x84,0xfc,0xaf,0x42,0x8a,0x2f,0x9,0x29,0x7e,0x20,0xa4,0xfc,0x86,0x90,0xe2,0xd7,
0x61,0xf0,0xf3,0x4b,0x43,0xbd,0xe1,0x39,0x1a,0x34,0xe7,0x2f,0x97,0x37,0x87,0x7a,
0xad,0xe0,0x97,0x77,0x2d,0xeb,0xa2,0x55,0xfe,0x0,0x84,0xe1,0x2f,0x32,0x5c,0xeb,
0x79,0x37,0x4b,0xc8,0xaf,0x49,0x29,0xbf,0xe4,0xc1,0xeb,0xd6,0xbb,0x72,0xe3,0xd8,
0x41,0xcd,0xe8,0x7c,0xb1,0x82,0x9c,0xa,0x7e,0xaa,0x3c,0x9a,0xba,0xf2,0x67,0x1d,
0x8b,0x11,0xc,0xeb,0xf9,0x54,0x89,0x88,0x88,0x68,0xd5,0x54,0xca,0x1a,0xf6,0xe8,
0x9f,0xab,0xfa,0xe7,0x1a,0x65,0x54,0xa1,0xd0,0xe,0x73,0xc6,0x6d,0x30,0x83,0xa5,
0x91,0x65,0xc2,0xe1,0x61,0x73,0x8e,0x60,0x29,0xe8,0xdd,0x2c,0xa4,0xfc,0x4a,0x69,
0x6e,0xe0,0x5f,0x9,0x29,0xfe,0x21,0xc,0x7e,0x45,0x47,0xf0,0xf3,0x1b,0x30,0xe7,
0xaf,0xcb,0xeb,0xa,0xe7,0xf8,0xd9,0xc1,0x4f,0x5f,0xd7,0x4f,0x5,0x3e,0xbd,0xe2,
0x97,0xb3,0x3a,0x72,0xb5,0xf,0xfe,0x93,0x1e,0xf0,0x6d,0xf,0xde,0x26,0x61,0x2d,
0xc5,0xe2,0xfa,0x22,0xec,0xe1,0xd8,0xc8,0x75,0x58,0x89,0x59,0xca,0xd8,0xe0,0xe7,
0xa,0x80,0xae,0xb5,0x7c,0x82,0xf3,0xf0,0x78,0xeb,0xfa,0x20,0x89,0x88,0x88,0x68,
0x75,0xb8,0x2a,0x7d,0x71,0xf7,0x57,0xab,0xfc,0xa9,0x1c,0x1,0xc0,0xc,0x7c,0xc6,
0xb9,0xf9,0x5c,0x73,0x79,0x16,0x2d,0xa3,0x68,0x55,0x40,0xf5,0xb3,0xf5,0x20,0xa8,
0xe7,0x9a,0xd2,0xbc,0xbf,0xf,0xf9,0xd2,0x3f,0x26,0x85,0xfc,0x73,0x8,0x7c,0x11,
0x45,0xf9,0x76,0x18,0xfa,0xf4,0x39,0x7f,0xf5,0x56,0xfe,0xf2,0xb9,0xd2,0x9c,0x3e,
0x6d,0x5d,0x3f,0x57,0xf0,0x53,0x43,0xbd,0x6b,0xbc,0x35,0x46,0xe8,0x73,0x34,0x79,
0xdc,0xc,0xe0,0x39,0x78,0xf8,0xb4,0x1e,0xf8,0x24,0xca,0x5d,0xbb,0xae,0xca,0x9b,
0xfe,0x81,0xea,0x1f,0xa6,0x3d,0x8e,0xae,0x82,0x9f,0xbe,0xde,0x8d,0xb1,0xe8,0xa1,
0x76,0xe,0xa0,0x3c,0x51,0x52,0xfd,0xc,0xc4,0x57,0xfc,0xec,0xbf,0x3c,0xc,0x84,
0x44,0x44,0x44,0xed,0x23,0xae,0xea,0xa7,0x6e,0x8b,0xab,0xfc,0xe9,0xc5,0xa5,0x70,
0xd4,0xd1,0xe,0x76,0x8e,0x3f,0xea,0x67,0x94,0x43,0x9f,0x59,0x35,0xc,0x33,0x4b,
0x38,0xa2,0x19,0x36,0x77,0xec,0x43,0x51,0x9e,0x85,0xc0,0x5f,0x41,0xe0,0xfb,0x28,
0xc2,0xac,0x2,0x36,0x64,0xce,0x9f,0x9a,0xe7,0xa7,0x16,0x71,0x2e,0x5,0xbf,0xbc,
0x97,0xf,0xbb,0x7a,0xcd,0xaa,0x9f,0x3e,0xd4,0x6b,0x4,0xbf,0x1,0x0,0x2f,0x0,
0xd8,0x2,0xc0,0x5c,0x7c,0xb9,0x34,0xbf,0x2f,0x12,0xb0,0xf4,0xf,0x48,0x4f,0xc1,
0xc6,0x7,0x5d,0x4e,0xc5,0x7a,0xf0,0x53,0xad,0xcf,0xb1,0xd5,0xbf,0x70,0xfc,0xde,
0x55,0xf1,0x93,0xce,0x70,0xe7,0xfa,0xd7,0x43,0xb5,0x7f,0x51,0x10,0x11,0x11,0x51,
0x36,0xc5,0x15,0x72,0x5c,0xc5,0x28,0x3d,0xf4,0x1,0x66,0xe5,0xcf,0x1e,0x55,0xb4,
0x47,0x25,0x5d,0xe1,0x4f,0x2f,0x5c,0x45,0x42,0x9f,0xf6,0x5a,0x7a,0xf6,0x9,0x97,
0x72,0x91,0xe8,0x86,0x8f,0xbf,0x41,0x11,0x7b,0xe1,0xcb,0xcf,0xc2,0xc7,0xaf,0x8d,
0x2a,0x60,0x1d,0xf2,0x6a,0x4e,0x9f,0xaa,0xfe,0xe9,0xcd,0x1d,0x71,0xc1,0xcf,0x58,
0xcc,0xb9,0x3c,0xd4,0xfb,0x39,0x0,0xa3,0x52,0xca,0x9b,0x80,0x98,0x5d,0x3d,0xf4,
0x14,0xac,0x7f,0x30,0x61,0x65,0xcf,0x3d,0x46,0x5e,0xde,0xe6,0xc4,0x75,0x9b,0xa3,
0xea,0xa7,0x6d,0x17,0x67,0x27,0x78,0xf5,0xe5,0x1a,0xe7,0x9,0x3b,0x83,0x88,0x88,
0x88,0xa8,0xb5,0xc4,0xd,0xf9,0xea,0xf7,0xdb,0x19,0x21,0x3e,0x0,0x6a,0x73,0xff,
0xac,0xe9,0x69,0xe5,0xa1,0x5f,0x58,0x59,0x24,0x9a,0x7d,0x8c,0xe6,0x8f,0xd2,0x6b,
0xfa,0xd2,0x37,0x87,0x77,0x8b,0x50,0xf3,0xfc,0x3e,0x9,0x1f,0x3,0x28,0xe2,0x1,
0x8,0xfc,0x3c,0x1c,0xfa,0xad,0x43,0x3e,0x32,0xd4,0x6b,0xed,0xdf,0x5b,0x5e,0xd3,
0x2f,0x67,0x54,0xfb,0xf4,0x25,0x5d,0x0,0x7c,0x1b,0xc0,0x7f,0x96,0x88,0xef,0xe0,
0x8d,0x7c,0xd0,0xd6,0x4,0x49,0x3d,0x3d,0x9b,0x7b,0xde,0xa9,0x7d,0xf2,0xb4,0x89,
0x91,0x5a,0xf8,0x93,0x90,0xe5,0xa,0x60,0x58,0xf5,0x8b,0x76,0xec,0xe8,0x73,0xff,
0xd4,0x31,0x18,0xe7,0x1c,0xe2,0x25,0x22,0x22,0x6a,0x1b,0x95,0x46,0xf2,0x5c,0xd3,
0xbf,0xe2,0x2,0xa0,0x5e,0x4c,0xd2,0x8b,0x4c,0x7a,0xc5,0xce,0x55,0xf5,0xb,0x5f,
0xdb,0x35,0xe4,0x6b,0x55,0xe,0xc3,0x20,0xe9,0xa3,0xdc,0xd9,0xab,0x82,0x60,0x51,
0x2,0x3e,0x3e,0xc,0x81,0xd3,0xf0,0xf1,0x47,0xf0,0xe5,0x6b,0x75,0x57,0xfe,0xd4,
0x2,0xce,0x46,0x47,0xaf,0xfe,0x47,0xb,0x7e,0x39,0xd8,0xdd,0xbd,0x5e,0x37,0x80,
0xff,0x5,0xe0,0x41,0x9,0xf7,0x4e,0x1c,0xc6,0x87,0xeb,0x48,0xc9,0x46,0xf2,0x95,
0xc2,0x79,0xa,0x37,0x3d,0x8e,0xb,0x7f,0x42,0x6d,0x78,0x5c,0xfe,0x20,0x1,0x47,
0xbb,0xb6,0xf6,0xc5,0xea,0xb7,0xe9,0xc7,0x47,0x44,0x44,0x44,0xed,0xc3,0xce,0x25,
0xe9,0x2,0x20,0xb4,0xaa,0x5f,0xb9,0x97,0x40,0x9f,0x6e,0x66,0x8e,0x62,0x46,0xb,
0x5a,0x76,0xf5,0x4f,0xef,0x49,0xd0,0xe7,0xfa,0x85,0x81,0x4f,0xa2,0x5c,0xfd,0xd3,
0x97,0x78,0xf1,0x71,0x13,0x8a,0xf2,0x45,0xf8,0xf8,0xb,0xf8,0xf8,0xfb,0x7a,0x3e,
0x93,0xbc,0xa,0x7e,0xf9,0x9c,0xb5,0x94,0x8b,0xbe,0x6f,0xaf,0x16,0xfc,0xb4,0x21,
0xdf,0x9b,0x0,0xfc,0x33,0x10,0xac,0xdd,0x17,0x19,0xe6,0x45,0x34,0x64,0xb9,0x3e,
0x8c,0xe0,0x4d,0x97,0x4b,0x9e,0xd1,0x93,0x88,0x54,0x1,0x23,0xc3,0xbe,0x8e,0x9,
0x99,0xd5,0xca,0xb8,0x76,0xe5,0xcf,0xf5,0x17,0x81,0x88,0x88,0x88,0x5a,0x5b,0x5c,
0xf8,0x3,0xe2,0x3a,0x7f,0x61,0x8c,0x1a,0x86,0x97,0xed,0xb0,0x7,0x19,0x16,0xa5,
0xaa,0xe5,0x1c,0xbd,0x5a,0x18,0xbe,0x96,0x9e,0x5d,0xa4,0x2c,0xcf,0xf5,0xb,0xe7,
0xf5,0x49,0x2d,0x4,0x42,0x55,0x0,0xbb,0xe1,0xe3,0xef,0xe0,0xe3,0x83,0x0,0xbe,
0x53,0xeb,0x67,0x92,0x57,0x7b,0xf5,0xe6,0x10,0x5d,0xc8,0x39,0x9c,0xe3,0x17,0xd,
0x7e,0xdd,0x0,0x4e,0x0,0xd8,0x57,0xe9,0xc5,0xc3,0x76,0xe8,0x98,0xb1,0x71,0xb3,
0xba,0xe7,0x47,0x2,0x60,0xd1,0x39,0xfc,0xeb,0x43,0xaf,0x8,0x86,0xaf,0x65,0xcd,
0xfb,0xd3,0x53,0x3a,0xab,0x7e,0x44,0x44,0x44,0x9d,0xc5,0x3d,0xec,0xab,0x5d,0xae,
0xb0,0xf2,0x87,0x51,0x38,0xb2,0xaa,0x79,0x40,0x39,0x8,0xaa,0xe0,0xa7,0x4f,0x4f,
0xd3,0x33,0x87,0x9e,0x7f,0xd4,0xeb,0xbb,0x42,0x64,0x18,0xfe,0x24,0x1c,0x6b,0xfa,
0xc1,0x15,0x4,0xbf,0xed,0xfd,0x97,0x9b,0xba,0xe5,0xff,0xb8,0xf6,0x54,0x2d,0x9f,
0x4d,0xde,0xb9,0x80,0x73,0x38,0xbf,0xf,0xe1,0x42,0xce,0x5a,0xf0,0x5b,0x3,0xe0,
0x9f,0x10,0x13,0xfc,0x9c,0x5d,0xb5,0xda,0x9b,0xd4,0x43,0x5c,0xa4,0xb2,0x27,0x54,
0xe8,0x2b,0x46,0x2a,0x7e,0xe6,0xbe,0x77,0xe6,0xfc,0xc0,0x4a,0x55,0xbf,0xf8,0x8a,
0x9f,0xfb,0xcb,0x8f,0xbc,0x1f,0xc7,0x5f,0x1e,0x22,0x22,0x22,0x6a,0x1d,0x91,0xea,
0x5f,0x5c,0xe3,0x47,0xcc,0xca,0x20,0x76,0xae,0x88,0xae,0x30,0x12,0xad,0xfc,0xe9,
0x7f,0xc2,0x39,0x83,0x7a,0xc7,0xb0,0x5e,0xa8,0x52,0x55,0xbf,0x30,0xf8,0x49,0xb3,
0xf9,0xc3,0xae,0x0,0xa,0x0,0x45,0x3c,0xe9,0xfd,0xa7,0x9b,0xe6,0xe4,0xff,0xbc,
0x96,0x7a,0x8,0x38,0xbf,0xc6,0xb3,0x16,0x6e,0x2e,0xfd,0xc9,0x69,0xdb,0xb6,0x19,
0x5b,0xb6,0x1,0x7f,0xe3,0x79,0xde,0x1f,0xda,0x1f,0x9e,0x9e,0x6a,0xcb,0x1f,0x90,
0xb9,0x8a,0x75,0x79,0x98,0xd7,0x9c,0xcb,0xa7,0x42,0x5d,0x51,0x16,0x8d,0xe0,0x57,
0x14,0x45,0xe7,0x30,0xb0,0x5e,0x29,0x94,0xd2,0x4c,0xde,0x80,0xb5,0x28,0x23,0xcc,
0x40,0x1a,0x1e,0x63,0x4c,0xe2,0xf,0xaf,0xb3,0x12,0x48,0x44,0x44,0xd4,0xf2,0xaa,
0x15,0x71,0xec,0x5c,0xe0,0xa,0x7e,0xf6,0x75,0x57,0xf0,0xd3,0xb,0x5c,0x46,0xd5,
0xcf,0xaa,0xfe,0xd9,0xaf,0x9,0xa0,0x5c,0xe5,0xd3,0x4f,0x61,0xf5,0x4f,0x6f,0x0,
0x9,0x83,0x9f,0xa,0x83,0xcf,0x7b,0x9f,0xff,0xed,0x5,0xf9,0xdc,0xf5,0x97,0xd2,
0x7c,0x26,0x79,0x7d,0xab,0x36,0xbd,0xfa,0x7,0x4,0xc3,0xbd,0xd6,0x7a,0x7e,0x5f,
0x7,0xf0,0x97,0xb1,0x1f,0xa0,0xf5,0xc1,0x45,0x42,0x9f,0xd1,0xcd,0x5b,0xe,0x7e,
0x45,0x51,0x34,0x82,0x9f,0x79,0x5d,0x55,0x4,0xcb,0x8f,0x77,0x2d,0xee,0x5c,0x1e,
0x73,0x8f,0x4e,0xce,0xb4,0x3f,0x6c,0xd7,0x97,0x6d,0xdf,0x4e,0x44,0x44,0x44,0xed,
0xc7,0xc8,0x2,0x8e,0x39,0x7f,0xfa,0xe5,0xca,0xe1,0x2f,0x5a,0x5,0x34,0x36,0xa4,
0xd0,0xea,0x7e,0xfa,0xba,0x7e,0x61,0xe5,0x4f,0x5b,0x32,0xc6,0x18,0xf2,0xd5,0xc3,
0x9e,0x9a,0x3,0x68,0x54,0xfe,0x4a,0xa7,0x20,0xc,0xae,0x81,0x8f,0x17,0xbc,0xcf,
0xfe,0xf6,0xa0,0x7c,0xfe,0xfa,0xcf,0x92,0x7e,0x6,0xf9,0x30,0xf0,0x41,0xaf,0xfc,
0x95,0x87,0x7b,0x81,0x70,0x39,0x97,0xbb,0x1,0x7c,0x4d,0x55,0x1,0xe3,0xaa,0x7e,
0xe5,0xb9,0x77,0xd1,0xe1,0x5e,0xd7,0x50,0xaf,0x1e,0xf4,0x8a,0x46,0xf5,0x4f,0xdd,
0x17,0x9d,0xf7,0xa7,0x57,0xfe,0x5c,0xd,0x1f,0x95,0x12,0xb6,0x1d,0x50,0x2b,0xfd,
0xa5,0x20,0x22,0x22,0xa2,0xd6,0x53,0xeb,0x94,0x2e,0x57,0xe8,0x53,0xb7,0x4b,0x69,
0x56,0x5,0xed,0xcc,0x61,0xc,0xf7,0x3a,0xaa,0x7f,0xae,0x26,0x10,0x9,0x15,0xfc,
0x64,0x95,0xea,0x1f,0xca,0xf3,0xfe,0xf4,0xeb,0x41,0x8,0xbc,0x9,0x45,0xfc,0x93,
0x77,0xe0,0xb7,0x76,0xca,0x63,0x37,0xde,0x4f,0xf2,0xf9,0xe4,0x3d,0x78,0x66,0x57,
0x6f,0x29,0xf4,0x85,0x8b,0x38,0x7,0xe7,0x1b,0x0,0xfc,0x9d,0xeb,0x3,0xb5,0xdf,
0x84,0x6b,0xb8,0xd7,0xb5,0x7e,0x5f,0x18,0xf0,0x4a,0x61,0x6f,0x59,0x85,0x40,0xed,
0xdc,0x97,0xa2,0x5c,0xfd,0xb3,0x9b,0x3e,0x60,0xbe,0xbe,0xf1,0x45,0x54,0x8,0x80,
0xf6,0x97,0x5b,0xed,0x2f,0x2,0x11,0x11,0x11,0xb5,0xf,0xfb,0xf7,0xbd,0x1e,0x6b,
0x22,0xf7,0x39,0x8a,0x46,0x71,0x19,0xc3,0xae,0x0,0xea,0x55,0x3f,0x7d,0x5d,0xbf,
0xc8,0x7c,0x3f,0x9,0xad,0xea,0x7,0xb3,0xea,0xe7,0x6a,0xf8,0x28,0xa2,0x1c,0xfc,
0xca,0x4b,0xc2,0x6c,0x82,0x8f,0x63,0x0,0xf6,0x27,0xf9,0xc,0xf2,0xc6,0x6e,0x1d,
0xa5,0x4b,0xe1,0x2,0xce,0x5e,0xd8,0xe0,0xf1,0x2,0x80,0xf,0xba,0x3e,0xc0,0xe8,
0x1b,0x87,0x19,0xfa,0x50,0x5e,0x9a,0x45,0x55,0xfd,0xd4,0x5c,0xbe,0x65,0xb1,0x6c,
0x4,0x3f,0x75,0xbd,0x28,0x82,0xdb,0x2a,0x2d,0xfd,0xe2,0xea,0xb4,0xb1,0x87,0x7a,
0xcd,0x61,0xdf,0xf8,0x2f,0xb6,0xfc,0x17,0x80,0x1,0x90,0x88,0x88,0xa8,0x95,0xd5,
0x5a,0xcc,0x71,0xe5,0x81,0xaa,0x43,0xc1,0xd6,0xba,0x7d,0x7a,0x1e,0x9,0xbb,0x7f,
0xad,0xea,0x9f,0xbd,0x12,0x49,0x18,0xfc,0x82,0x0,0x65,0x75,0xf9,0x22,0x5a,0x1,
0xb4,0x87,0x82,0x8b,0x61,0x48,0xbc,0xdb,0xfb,0xc4,0x6f,0x7d,0x45,0xfe,0xe4,0xc6,
0x7f,0xaf,0xf6,0x5e,0xc3,0xca,0x9f,0x63,0xd7,0xe,0xe5,0x6b,0x0,0x76,0xbb,0x3e,
0xa4,0x8a,0xc1,0x2f,0x12,0xfa,0xfc,0xb0,0x92,0xa7,0x7,0xbd,0x25,0xb1,0x1c,0x84,
0x3d,0xb9,0x1c,0xdc,0xa6,0xd,0xfd,0x9a,0xd,0x1f,0xd1,0xf5,0xfe,0x5c,0xe1,0x4f,
0x95,0x65,0xd3,0xe,0xf9,0x26,0xfd,0xcb,0xc2,0x80,0x48,0x44,0x44,0xd4,0xfa,0xaa,
0xfd,0xde,0x77,0xaf,0x1,0x18,0x6d,0xe,0xb1,0x2b,0x81,0x71,0x79,0xc8,0xd8,0xd5,
0x43,0xad,0x1f,0x68,0x4,0x3f,0xed,0xb2,0x3d,0xbc,0x6b,0xee,0xf6,0x61,0xaf,0xfd,
0xa7,0x57,0x0,0x9f,0xf4,0xee,0xe9,0x9e,0x94,0x2f,0x2f,0xbd,0x59,0xe9,0xbd,0xe5,
0xf5,0xe0,0x67,0x85,0x3e,0x0,0xf8,0x30,0x80,0x47,0x5d,0x1f,0x56,0xa4,0xec,0x69,
0xbf,0xd1,0xc8,0x70,0xaf,0x28,0x57,0xfb,0x4a,0x95,0xbe,0x25,0x11,0x4,0xbe,0xf0,
0xa4,0xaa,0x7e,0x72,0x39,0xc,0x7e,0x95,0xd6,0xfa,0x53,0xc9,0xda,0xc,0x7f,0xee,
0xe1,0x5e,0x67,0x77,0x4d,0x95,0x2f,0x9b,0x88,0x88,0x88,0xda,0x47,0xd5,0xc0,0x97,
0x20,0x1f,0xb8,0x82,0xa0,0x3e,0xb9,0x2c,0x5a,0x1,0xf4,0xcd,0x11,0x51,0x55,0x5,
0x84,0xb5,0xc4,0x8b,0x6b,0xc8,0xd7,0xae,0x2,0x4a,0xe8,0x41,0x2f,0x3a,0x14,0x2c,
0xb0,0x6,0x3e,0x9e,0xf5,0x3e,0xd6,0xfd,0x7b,0xf2,0x5f,0x97,0x62,0x37,0x81,0xcb,
0xab,0xb,0x8e,0xe0,0x7,0x0,0xcf,0x2,0xe8,0xae,0x54,0xf6,0xd4,0x13,0xae,0x9e,
0x7a,0xf5,0xb9,0x7d,0xaa,0x9a,0xb7,0xac,0x55,0xf9,0x96,0xc4,0x32,0x96,0xc4,0x92,
0x16,0xfe,0x8a,0x58,0x12,0x4b,0xe1,0xe3,0xc2,0x2a,0xa1,0x56,0xfd,0x2b,0xef,0xec,
0x61,0x56,0xfc,0x8c,0x75,0x73,0x50,0xde,0xc3,0x57,0x5d,0xd6,0x8f,0x37,0xe9,0x97,
0x4b,0x44,0x44,0x44,0xed,0x2b,0xc9,0x88,0x5f,0xdc,0x23,0xaa,0x7,0x41,0xc7,0x1c,
0x40,0x35,0x4,0x6c,0x57,0xfe,0x9c,0x5d,0xbe,0xd6,0x6d,0x6a,0xed,0x3f,0x57,0xf0,
0x8b,0x5e,0x1f,0x80,0xc0,0xe7,0x0,0xfc,0x20,0xee,0x7d,0xe5,0xb5,0x65,0x5c,0x0,
0x40,0x5f,0xd3,0xef,0xd3,0x52,0xca,0x8f,0xd9,0x99,0x50,0x7f,0xc3,0x76,0xf0,0x8b,
0x76,0xf5,0x9a,0x43,0xbd,0x45,0x69,0x6,0xbf,0x25,0xb1,0x84,0x25,0x7f,0x39,0x1c,
0xf2,0xd5,0xab,0x7f,0x7a,0xf3,0x87,0x3d,0xd7,0xcf,0xae,0x2c,0x9a,0xeb,0xfa,0xc9,
0x48,0xa,0xaf,0x16,0xfc,0x18,0xf8,0x88,0x88,0x88,0xda,0x53,0xad,0x73,0x0,0xd3,
0xbc,0x56,0xf5,0x61,0x60,0x6b,0x17,0x10,0xb5,0xc4,0x8b,0xdd,0xec,0x61,0x37,0x7e,
0xf8,0x31,0xd7,0x5d,0x43,0xbf,0x61,0x3,0x88,0x4,0x4,0xfe,0x9b,0xf7,0x7,0x5d,
0x2f,0xc9,0x9f,0x2e,0xcf,0xb9,0x8e,0x37,0x6f,0xdf,0x20,0xa5,0x84,0xe7,0x79,0x37,
0x3,0xf8,0x96,0xfe,0x86,0xf4,0x37,0x5e,0x7e,0x63,0xe6,0x5a,0x7e,0x76,0xf0,0x2b,
0x1a,0x4d,0x1d,0x2a,0xf0,0x99,0xc1,0x2f,0xbc,0x2c,0x96,0xca,0xc3,0xbe,0xa5,0xe7,
0x44,0x86,0x7d,0x85,0x5e,0xfd,0xd3,0xcb,0xaa,0x80,0x6b,0xd8,0x57,0x1d,0xbf,0x19,
0x5,0xcd,0x2f,0x2a,0xc9,0x97,0x4a,0x44,0x44,0x44,0x14,0xc7,0x95,0x31,0xec,0x7d,
0x7c,0x7d,0x6b,0xfe,0x1f,0xf4,0x6,0x8f,0x4a,0x15,0x40,0xbd,0xea,0x27,0x60,0xcd,
0xf3,0x73,0x4,0xbf,0xe0,0xbe,0xf,0x40,0xe0,0x49,0x0,0x7f,0xe6,0x3a,0xde,0xbc,
0xb5,0x7b,0x87,0x7a,0x13,0x9f,0x3,0xb0,0x41,0xaf,0x8,0x46,0xe7,0xfa,0x45,0xe7,
0xf8,0xd9,0xc1,0x4f,0xef,0xea,0xb5,0x83,0xdf,0xd,0x7f,0x9,0x37,0xc4,0x8d,0xf0,
0x76,0x55,0xf9,0x53,0x43,0xbf,0x6a,0xa8,0xd8,0xe,0x94,0x6a,0xbc,0x3c,0x5c,0x47,
0x7,0xe6,0x7c,0x3f,0x7d,0xd8,0xd7,0xe,0x7d,0x95,0x96,0x76,0x61,0xf5,0x8f,0x88,
0x88,0xa8,0xb3,0xb9,0x32,0x51,0x78,0x9f,0x7b,0x7a,0x9c,0x21,0xbe,0x21,0x4,0xc6,
0xfa,0x7f,0xe5,0x2d,0xdd,0x10,0xed,0xf2,0x75,0xe,0xf9,0x22,0x66,0xcf,0x5f,0x98,
0x41,0x50,0x5f,0xfe,0x45,0xe0,0xd3,0xde,0xce,0xfc,0x37,0xe5,0xd9,0xe2,0x3b,0xf6,
0x71,0x46,0x2a,0x7f,0x0,0xba,0xa5,0x94,0x5f,0xd1,0xdf,0xa3,0xfd,0x66,0x84,0xa,
0x5a,0x55,0x82,0x5f,0xd0,0xd4,0xb1,0x64,0xcc,0xe9,0x5b,0x12,0x4b,0xb8,0xee,0xdf,
0xc0,0xd,0x3f,0x8,0x7e,0x37,0x54,0xd5,0x2f,0x9c,0x3,0xe8,0x1a,0xf2,0x75,0xf,
0xfb,0xda,0xe5,0x54,0xd7,0x87,0x6d,0x1c,0x7f,0x4c,0x10,0x24,0x22,0x22,0x22,0x2,
0xdc,0x1,0xd0,0xe,0x7e,0x49,0x82,0x20,0x60,0x8e,0x96,0xea,0x3b,0x92,0x45,0x86,
0x79,0xed,0xe1,0x5e,0xe3,0xba,0x56,0xf5,0xd3,0x3b,0x7f,0x7d,0x19,0x1f,0xfc,0x8a,
0xa5,0xe6,0xf,0x89,0xaf,0x0,0xf8,0xb,0xfb,0xb8,0x8c,0xf0,0x27,0x21,0xe1,0xc1,
0xfb,0x73,0x0,0x1f,0xb2,0x17,0x46,0x86,0x3a,0x16,0x47,0xe8,0xaa,0x16,0xfc,0xf4,
0x8a,0x9f,0xa,0x7e,0xd7,0xc5,0x75,0xdc,0xf0,0x97,0xb4,0x61,0xdf,0x65,0x63,0x88,
0x58,0xdf,0xe3,0xd7,0xb9,0xc4,0x8b,0x50,0xd,0x1f,0x2a,0x90,0x46,0xc3,0x1f,0xe0,
0x1e,0xb6,0x76,0x7d,0x39,0x44,0x44,0x44,0xd4,0x59,0x9c,0x21,0x4e,0x56,0xe,0x77,
0x7a,0x38,0x4c,0x5a,0xd,0x34,0x9a,0x64,0xc3,0xdd,0x3c,0xa4,0x23,0xf0,0x39,0x2a,
0x80,0x2a,0x8,0x1a,0xf3,0xfd,0xec,0x86,0xf,0x20,0x32,0x7,0x30,0x18,0x8,0x7d,
0xd0,0xbb,0x2d,0xff,0xd,0x79,0xa9,0x38,0xab,0x1f,0x53,0x5e,0x1d,0x18,0x0,0x48,
0x29,0xd7,0x8,0xf,0x8f,0xea,0x2d,0x20,0x61,0xd3,0x84,0x75,0xf0,0xae,0xaa,0x9f,
0x1e,0xfc,0xc2,0xce,0xde,0xd2,0x1c,0xbe,0x1b,0xe2,0x46,0x30,0xd4,0xab,0x5,0xbf,
0xe0,0xb6,0x1b,0x41,0xf0,0xd3,0x9a,0x3e,0xd4,0x3c,0xbf,0xa2,0x28,0x1a,0x6b,0x5,
0x1a,0x6d,0xd2,0x70,0x2f,0xe8,0x1c,0x1e,0x6b,0x4c,0xf8,0xab,0x5,0xc3,0x21,0x11,
0x11,0x51,0x6b,0x49,0x33,0x4c,0x9b,0xe8,0xf5,0x54,0xe8,0x93,0xd1,0xd7,0x8f,0xfb,
0x59,0x91,0x29,0x73,0xfa,0x3e,0xbe,0x76,0xb5,0xcf,0xb8,0xdd,0x11,0x2,0xed,0xc0,
0xe7,0xdc,0xfd,0xc3,0x8,0x7e,0x80,0x44,0x37,0x80,0xaf,0x0,0xf8,0xa2,0x7e,0x5c,
0xf9,0x52,0x83,0x87,0xaa,0xfa,0xfd,0xa1,0x94,0x72,0x13,0x3c,0x2d,0xf4,0x49,0xeb,
0xc0,0x61,0x2e,0xb3,0xe2,0xa,0x7e,0x61,0x0,0xc,0xbb,0x7b,0xcd,0xe6,0xe,0x15,
0xfc,0xae,0xfb,0xd7,0x8d,0x25,0x5f,0xf4,0xdd,0x3e,0x5c,0xfb,0xf9,0x46,0xf6,0xf0,
0x2d,0x1d,0x53,0x78,0x7c,0xda,0xf5,0xb8,0x2f,0x80,0x88,0x88,0x88,0xda,0x5f,0xbd,
0xbf,0xf7,0xed,0x40,0x57,0x69,0x24,0x31,0x6e,0xae,0x60,0xa4,0xd7,0x40,0xf,0x7d,
0xf6,0xe1,0x39,0x3,0x61,0xc2,0xe5,0x5f,0x8a,0x30,0x83,0x9f,0xf9,0xda,0x7f,0xee,
0xdd,0x96,0x7f,0x4c,0x5e,0x2a,0xfe,0x5a,0xdd,0x90,0xb3,0xba,0x62,0x1f,0xc,0x2f,
0x4b,0xe9,0xac,0xf4,0xe9,0xb,0x2d,0x47,0xbb,0x7b,0x8b,0x91,0x75,0xfc,0xf4,0xd3,
0xd,0x71,0x23,0x9c,0xe3,0xa7,0x2a,0x7e,0x4b,0xc6,0x9c,0xbf,0xf2,0xf6,0x6e,0xe1,
0xfa,0x7e,0xa2,0xc2,0x9c,0x3f,0x6d,0xbd,0x1c,0x7d,0xce,0x9f,0xfe,0x41,0xbb,0x3a,
0x7d,0x89,0x88,0x88,0x88,0x2a,0x49,0x93,0x21,0x8c,0xdc,0xa4,0x9d,0xf4,0xd7,0xa,
0xc3,0x9d,0xfe,0x72,0x12,0x80,0x5d,0xd,0x54,0xb7,0x1b,0x73,0xff,0xb4,0x10,0xa8,
0x57,0xfe,0x8a,0xda,0x65,0xbd,0x7a,0x68,0xba,0x9,0xc0,0x27,0xf5,0x1b,0x72,0xda,
0x1b,0xfc,0x80,0x94,0xf2,0x1e,0x73,0x15,0x6a,0xf7,0x8e,0x1d,0xf6,0xb6,0x6d,0x7a,
0x67,0xaf,0x1e,0xde,0xd4,0xb2,0x2d,0xe5,0x66,0x8f,0x65,0x63,0x8e,0x9f,0x1e,0xfc,
0xec,0x65,0x5e,0xca,0xb,0x3c,0x6b,0xeb,0xe2,0xa8,0xaa,0x63,0xc2,0xd0,0x47,0x44,
0x44,0x44,0x54,0x2f,0x69,0xfd,0x49,0xfb,0xbc,0xe8,0x53,0x62,0x5e,0xc3,0xae,0xa,
0x46,0xaa,0x7e,0xda,0xc9,0x6e,0xfe,0x10,0xd1,0x97,0xd3,0x3c,0xa8,0x5f,0x9,0xc2,
0x5f,0x10,0xa6,0x3e,0x2d,0x21,0xbb,0xf5,0x37,0x67,0x84,0x3e,0x44,0xf7,0xd6,0xad,
0x36,0xdc,0x1b,0xcc,0xe3,0x2b,0x35,0x7e,0xc8,0xe5,0xc8,0x92,0x2f,0xe5,0xad,0xde,
0x7c,0x23,0xf4,0xd9,0x4b,0xba,0xa8,0x2e,0x99,0xb0,0xc9,0x84,0xa1,0x8f,0x88,0x88,
0x88,0x56,0x49,0xb5,0x20,0x68,0xdc,0xa7,0x57,0xf3,0x92,0xff,0x0,0x7d,0xde,0x9e,
0xbb,0x21,0xc4,0xee,0x0,0xb6,0xab,0x8a,0xa6,0xbd,0xde,0x6d,0xf9,0x4d,0xea,0x4a,
0x4e,0xeb,0xda,0xfd,0x53,0x57,0xd5,0xcf,0x18,0xf6,0x8d,0x34,0x79,0x98,0x81,0x50,
0x85,0xbd,0x72,0xd5,0xaf,0x54,0xf9,0x2b,0xdd,0x1e,0x59,0xcb,0xaf,0x14,0x14,0xf5,
0xaa,0xa1,0x6b,0x98,0x57,0xaf,0xf6,0xb9,0xe6,0xf5,0x31,0xf4,0x11,0x11,0x11,0xd1,
0x6a,0xb0,0xab,0x82,0x46,0x1e,0x89,0x8d,0x26,0x5e,0xf9,0x4c,0x6f,0x24,0xb1,0x83,
0x62,0x6c,0x15,0xd0,0xb1,0x6,0x60,0xe5,0x18,0xb4,0x6,0xc0,0xa7,0xd5,0x95,0x9c,
0x1a,0xf2,0x5,0x70,0xa7,0xab,0xea,0xa7,0xef,0xa9,0xeb,0xdc,0xb6,0x4d,0x98,0x43,
0xb4,0x6a,0xb,0x37,0x7d,0x1f,0x5f,0x3d,0xf4,0x2d,0x85,0x5d,0xc0,0x5a,0x50,0x54,
0x15,0xbf,0xd2,0xe,0x1e,0x42,0x9a,0x4b,0xc9,0x18,0x1f,0x6e,0x82,0xa5,0x5b,0x88,
0x88,0x88,0x88,0x5a,0x4a,0xb8,0xcc,0x8a,0x34,0xcf,0xed,0x5d,0x40,0x5c,0x6b,0x2,
0x26,0xf3,0x31,0x75,0x21,0x57,0xa,0x58,0x77,0xb,0x29,0xd6,0x24,0xaf,0xfa,0x45,
0xc3,0xa0,0x3e,0xef,0x2f,0xdc,0xda,0x4d,0x9a,0xcb,0xbd,0xe8,0xfb,0xfb,0x16,0xa5,
0xb9,0x83,0x47,0xf9,0xf5,0xad,0x85,0x9b,0x63,0x86,0x79,0x59,0xed,0x23,0x22,0x22,
0xa2,0xcc,0xaa,0x16,0x51,0xbc,0x98,0xcb,0xfa,0xf3,0xa5,0x75,0x39,0xae,0xf3,0x37,
0x59,0x1c,0xba,0xd3,0xbb,0x2d,0x7f,0x13,0x0,0xe4,0x4a,0xc3,0xa9,0xfb,0xaa,0x55,
0xfd,0x9c,0xc1,0x4f,0x58,0x9d,0xbe,0xb2,0x3c,0xdc,0x5b,0xee,0xfc,0x2d,0xf,0xe9,
0xea,0x43,0xc2,0x7a,0x50,0x2c,0x7,0xc0,0x68,0xf0,0x63,0xb5,0x8f,0x88,0x88,0x88,
0xda,0x8a,0xa7,0x9d,0x7b,0x70,0x87,0x3f,0xc0,0xac,0xf6,0x49,0xc7,0x52,0x31,0xe9,
0xe2,0xd0,0x4d,0x0,0x7e,0x1f,0x28,0x57,0xfe,0x76,0x57,0xab,0xfa,0xf9,0xb1,0x15,
0xbf,0x60,0x1f,0x5e,0x3b,0x0,0xda,0x4d,0x20,0xfa,0xe3,0xed,0xd7,0x9,0xaa,0x7a,
0xd1,0xdd,0x43,0x18,0xfc,0x88,0x88,0x88,0xa8,0xad,0xe8,0x61,0x2f,0xee,0xb2,0xce,
0xae,0xfe,0xa9,0x10,0x98,0x6e,0xc8,0x57,0xf9,0x18,0x0,0xe4,0x25,0x64,0x8f,0x7,
0x6f,0x4b,0xb8,0xde,0x5f,0xe9,0x5c,0xcd,0xb5,0xb,0x86,0x63,0xa3,0xdb,0xb8,0xd9,
0x7b,0xee,0x86,0xe1,0x4e,0x44,0x1f,0xa3,0x3a,0x7a,0x8d,0xc6,0xe,0x63,0x1,0x67,
0x73,0xe1,0x68,0x6,0x3f,0x22,0x22,0x22,0x6a,0x2b,0x1e,0x82,0xb0,0xa6,0x9f,0x3b,
0x1f,0xa7,0x1e,0xa0,0xb1,0xe7,0xfb,0xd9,0xeb,0x3,0x26,0x77,0x27,0x0,0xe4,0x85,
0x14,0x3,0xfa,0x2a,0xd6,0x7a,0x8,0xc,0x82,0x18,0x8c,0xe0,0x17,0x1f,0x2,0xcd,
0x61,0x60,0x35,0xef,0xaf,0x52,0x58,0x54,0x15,0xc5,0x20,0x5e,0x5a,0xcd,0x1d,0xc,
0x7e,0x44,0x44,0x44,0xd4,0xaa,0x1c,0x19,0xce,0xb8,0xcd,0xf3,0x0,0x4f,0x6,0xb7,
0xe5,0x62,0x5e,0x23,0x52,0xf5,0x2b,0x5d,0x57,0x73,0xfe,0xd2,0xfb,0x5d,0x20,0xa8,
0xfc,0x6d,0x37,0x7f,0x8e,0xd4,0x76,0xf6,0x8,0xce,0xf5,0x2d,0xd6,0xcc,0x0,0x68,
0x7,0x41,0x11,0x13,0x6,0xa3,0xc3,0xbc,0xfa,0xba,0x7d,0xea,0xe7,0x5,0xef,0xc7,
0xbd,0x7e,0x1f,0x11,0x11,0x11,0x51,0x5b,0xa9,0x65,0xd8,0xb7,0xb6,0xd0,0xa7,0xf4,
0x78,0xb7,0xe5,0x37,0xe5,0x85,0x14,0x5b,0x54,0xe5,0xaf,0x5c,0xf5,0x43,0x74,0xde,
0x1f,0x84,0x11,0x0,0x7d,0x29,0x8c,0xc6,0x10,0xbb,0xea,0x17,0x1f,0x4,0xcb,0xd7,
0x55,0x83,0x87,0xa,0x7c,0xae,0x90,0xc7,0xe0,0x47,0x44,0x44,0x44,0x2d,0xc9,0xae,
0xfe,0xe9,0x43,0xbe,0x71,0xc3,0xbe,0x3a,0xbb,0xe2,0xe7,0x5a,0xff,0x2f,0xbd,0xf,
0xe7,0x25,0xb0,0x9,0x5a,0xe8,0xd3,0x17,0x53,0x8e,0x4,0x3f,0xb8,0x42,0xa0,0xea,
0x8,0x2e,0xdf,0x6f,0xde,0xae,0x55,0xfc,0x54,0x15,0x51,0xfb,0xa3,0x57,0xfe,0xec,
0xe1,0x5e,0x6,0x3f,0x22,0x22,0x22,0x6a,0x2b,0xae,0x4e,0x5f,0x57,0x18,0xb4,0x23,
0x90,0x1e,0xfc,0xe2,0x1e,0x93,0xcc,0xe6,0xbc,0x94,0x72,0x53,0x39,0x50,0x96,0x9b,
0x3d,0xc2,0xf0,0x7,0x11,0x99,0xe7,0xa7,0x37,0x80,0x8,0x29,0xc2,0xc5,0x99,0x23,
0x21,0x4f,0xdb,0xa2,0x2d,0x5c,0x32,0x46,0x75,0x13,0x4b,0x18,0xd5,0x3e,0x6,0x3f,
0x22,0x22,0x22,0x6a,0x3b,0xae,0xb9,0x7f,0xf6,0xfd,0x7a,0x20,0x74,0x89,0xcc,0xf9,
0x73,0xed,0x17,0x9c,0xd8,0xa6,0xbc,0x84,0xfc,0x60,0xf9,0xb5,0xf5,0xf9,0x7e,0x66,
0xf0,0x2b,0x2f,0xfb,0xa2,0x55,0xef,0x64,0xb9,0x7e,0x57,0xe,0x75,0xd2,0xa8,0xc,
0x1a,0xfb,0x3,0x5b,0xa1,0xd2,0xa8,0xfa,0x31,0xf8,0x11,0x11,0x11,0x51,0xbb,0x33,
0x9a,0x3e,0xac,0xdb,0xab,0x91,0x32,0x3a,0x4,0x9c,0xde,0x7,0xf2,0x42,0x8a,0xf,
0x84,0xaf,0xa9,0xd,0xbd,0xea,0xa1,0x4d,0xf,0x74,0x91,0xc6,0xf,0xe1,0x3b,0x6f,
0xb7,0x43,0x9f,0xa,0x7e,0x6a,0x31,0x67,0x29,0xcd,0x65,0x5d,0x88,0x88,0x88,0x88,
0xda,0x92,0x6b,0xee,0x5f,0xdc,0x90,0x6f,0xa5,0xea,0x9f,0x3a,0xaf,0x2f,0x36,0x7d,
0x30,0x2f,0x21,0x6f,0x2a,0xbf,0xae,0xb5,0xc3,0x86,0xaa,0x2,0x6a,0x33,0xf4,0xf4,
0x65,0x59,0xec,0xcb,0x91,0x2a,0xa0,0x31,0x6f,0xb0,0xfc,0x9a,0xea,0x67,0xa9,0x73,
0x56,0xfd,0x88,0x88,0x88,0xa8,0xa3,0x78,0xa5,0xff,0xf1,0xa4,0xb9,0xec,0x8b,0x8b,
0x5d,0xed,0xab,0x2f,0x2a,0xdd,0x9c,0xf,0x43,0x98,0xd5,0xe8,0xa1,0xaa,0x7f,0xc6,
0xdc,0x3d,0xad,0xba,0x17,0x56,0x8,0xb5,0x2a,0xa1,0x94,0x66,0xf3,0x86,0xaf,0xed,
0xcd,0x6b,0xf,0x27,0xbb,0x2a,0x7e,0xc,0x7e,0x44,0x44,0x44,0xd4,0x96,0xec,0xe1,
0xde,0xa4,0x91,0x47,0x5a,0x97,0xeb,0x8f,0x4a,0x6b,0xf2,0x6a,0x61,0xe5,0xe0,0x35,
0xcd,0xe0,0xa7,0x57,0xff,0x8c,0x3f,0xd2,0xec,0x4,0xe,0xaf,0x5b,0xdd,0xc0,0xae,
0xd7,0x3,0x60,0x86,0x44,0xc9,0xc0,0x47,0x44,0x44,0x44,0x1d,0xc8,0x55,0xe9,0x4b,
0x5a,0xfd,0xab,0xdd,0xcd,0xf9,0xe0,0x75,0xcc,0x30,0x66,0x54,0xea,0x60,0x56,0xfd,
0x8c,0xe1,0x5e,0xfd,0xf1,0xea,0x35,0xac,0x65,0x5b,0xec,0xcb,0xac,0xfa,0x11,0x11,
0x11,0x51,0x47,0x8a,0x9b,0xfb,0x7,0x54,0xe9,0xf4,0x75,0x6c,0xf7,0x56,0x87,0xb0,
0xf2,0xe7,0xa,0x80,0xd5,0x2a,0x7f,0xc6,0xe3,0xb5,0x79,0x7d,0x91,0xca,0x9f,0x1e,
0x0,0xa5,0x36,0xdf,0x8f,0x55,0x3f,0x22,0x22,0x22,0xea,0x44,0xae,0x9d,0x3d,0x2a,
0x75,0xfc,0x36,0xae,0xf2,0x7,0xe7,0x9c,0x3f,0xb3,0x52,0x17,0xed,0xf4,0xb5,0xe7,
0xf0,0xb9,0x5e,0x23,0x38,0xbe,0x68,0x5,0x50,0x7f,0x5c,0xf9,0xfd,0x30,0x4,0x12,
0x11,0x11,0x51,0x7,0x49,0xbb,0xcc,0xb,0xd0,0xa8,0x39,0x7f,0xc1,0x56,0xc2,0x91,
0x66,0xf,0x2d,0xb4,0x5,0x3f,0xcb,0xfc,0xa3,0x6e,0x73,0xae,0xdb,0x17,0xbe,0x8e,
0x84,0xb3,0xaa,0xc8,0xaa,0x1f,0x11,0x11,0x11,0x75,0xaa,0xa4,0x41,0xcf,0xc5,0x6e,
0xfe,0xa8,0x51,0xec,0xb0,0xaf,0x5e,0xf5,0xb,0xe7,0xf2,0x69,0xeb,0xf3,0x9,0x7b,
0xc9,0x16,0xfd,0xb9,0x52,0x5a,0xb7,0x9b,0x4b,0xbb,0x98,0xef,0x83,0x21,0x90,0x88,
0x88,0x88,0x3a,0x50,0xb5,0x20,0x18,0xb7,0xb6,0x5f,0xbd,0x73,0xfe,0x5c,0x43,0xb1,
0x6a,0x58,0x37,0x78,0x7d,0xf7,0x9c,0xbf,0xf0,0xbe,0x48,0xd0,0x8b,0xe,0xfb,0x1a,
0x8f,0xb5,0x86,0x7c,0x89,0x88,0x88,0x88,0x3a,0x92,0x6b,0x4f,0xdf,0x15,0xe0,0x1c,
0xf6,0x5,0x54,0x73,0x49,0xe5,0x61,0x5f,0xd7,0x65,0xc5,0xae,0x24,0xaa,0xdb,0x5c,
0xe7,0x44,0x44,0x44,0x44,0x1d,0x23,0x6e,0x89,0x97,0x15,0xa,0x82,0x39,0xe7,0xd2,
0x2c,0xf6,0x6d,0xd2,0x11,0xec,0x22,0x8f,0xb7,0x42,0xa2,0x5e,0x11,0xe4,0x3c,0x3f,
0x22,0x22,0x22,0xa2,0xfa,0x35,0xa2,0xe1,0xc3,0xae,0xe0,0xa9,0xd7,0x75,0x76,0xff,
0x4a,0x2d,0xe8,0xb9,0xe6,0xfc,0x69,0xa7,0xf0,0x18,0x63,0xaa,0x7f,0x44,0x44,0x44,
0x44,0x84,0x74,0xdd,0xbe,0xfa,0x79,0x8d,0x72,0xe1,0xeb,0xc9,0x68,0xc5,0x2e,0x78,
0x7d,0xc7,0xd0,0x6f,0xdc,0x9c,0xbf,0xa,0xc3,0xc0,0xc6,0xb1,0x73,0xde,0x1f,0x11,
0x11,0x11,0x51,0x59,0xb5,0x35,0xfe,0xc2,0xe0,0x57,0x7f,0x7e,0xca,0xb9,0xaa,0x7e,
0xea,0xba,0x73,0xce,0x9f,0x74,0x7,0x43,0xfb,0xb6,0x4a,0x8f,0x21,0x22,0x22,0x22,
0xa2,0x2a,0xec,0xe8,0xd4,0xa0,0x28,0x15,0x36,0x7c,0x44,0x7f,0x5e,0x34,0xec,0xd9,
0xf7,0x57,0xba,0x5e,0xe9,0x75,0x89,0x88,0x88,0x88,0x28,0x81,0x26,0xc4,0xa6,0xf2,
0xb0,0xaf,0xa3,0x3b,0x37,0xfe,0x38,0xa2,0x6b,0xfb,0x55,0x7b,0xac,0x7d,0x99,0x88,
0x88,0x88,0x88,0xb0,0xe2,0xcb,0xbd,0xe4,0x5c,0xf3,0xef,0x22,0xf3,0xfc,0x12,0x54,
0xf0,0xec,0x79,0x7e,0x46,0x23,0x9,0xe7,0xf8,0x11,0x11,0x11,0x11,0x65,0x42,0x4e,
0xbf,0x62,0x2c,0x1e,0x6d,0x2f,0xef,0x92,0x70,0x81,0xe6,0x6a,0xcd,0x1e,0x44,0x44,
0x44,0x44,0xb4,0x7a,0x72,0xae,0xea,0x5e,0x5c,0x5,0xcf,0xb8,0x8d,0x4b,0xb7,0x10,
0x11,0x11,0x11,0xd5,0x27,0xed,0x32,0x2f,0xd,0x60,0x55,0xfe,0xaa,0x37,0x78,0xc4,
0xfd,0x6c,0xd7,0x62,0xd0,0x44,0x44,0x44,0x44,0x94,0x2d,0xb9,0xb8,0x3b,0x9c,0xdd,
0xbb,0x29,0x62,0x27,0x83,0x20,0x11,0x11,0x11,0x51,0x3,0x34,0x38,0x52,0xe5,0x92,
0x4,0xba,0xc8,0xb0,0x6f,0xc2,0x21,0xdf,0x24,0xcb,0xc1,0x10,0x11,0x11,0x11,0xd1,
0xca,0xd1,0x96,0x7a,0x89,0x4a,0x5a,0xbd,0x33,0xe6,0x8,0x4a,0x59,0x71,0xf1,0x69,
0x56,0x4,0x89,0x88,0x88,0x88,0x56,0x4f,0x64,0xd8,0x37,0x6d,0x75,0x2e,0x49,0x98,
0x63,0xc5,0x8f,0x88,0x88,0x88,0x28,0x1b,0x62,0xe7,0xfc,0x11,0x11,0x11,0x11,0x51,
0xfb,0x49,0x1c,0xfe,0x58,0xbd,0x23,0x22,0x22,0x22,0x6a,0x7d,0xa9,0x2b,0x7f,0x9c,
0xb3,0x47,0x44,0x44,0x44,0xb4,0xa,0x1a,0x14,0xc1,0x72,0x0,0x3,0x1d,0x11,0x11,
0x11,0x51,0xa7,0xe0,0x9c,0x3f,0x22,0x22,0x22,0xa2,0xe,0xc2,0xf0,0x47,0x44,0x44,
0x44,0xd4,0x41,0x18,0xfe,0x88,0x88,0x88,0x88,0x3a,0x48,0xaa,0xed,0xdd,0x88,0x88,
0x88,0x88,0xa8,0xb5,0xb1,0xf2,0x47,0x44,0x44,0x44,0xd4,0x41,0x18,0xfe,0x88,0x88,
0x88,0x88,0x3a,0x8,0xc3,0x1f,0x11,0x11,0x11,0x51,0x7,0x61,0xf8,0x23,0x22,0x22,
0x22,0xea,0x20,0xf9,0xd5,0x3e,0x0,0x22,0x22,0xa2,0x24,0x86,0x36,0xde,0x8b,0x81,
0xde,0x1d,0xce,0xfb,0x26,0xe6,0x4f,0x3,0x0,0xa6,0xa,0xe7,0x51,0x58,0x5a,0x58,
0xc9,0xc3,0x22,0x6a,0x39,0xc,0x7f,0x44,0x44,0xd4,0x12,0x46,0x77,0x3e,0x8d,0x5b,
0xd6,0x6e,0x72,0xde,0x77,0x8,0x8f,0x85,0x97,0x17,0x96,0xaf,0x62,0x62,0xfe,0x34,
0xc6,0xdf,0x3b,0x8e,0xf1,0xb9,0x13,0xc,0x83,0x44,0x16,0xe,0xfb,0x12,0x11,0x51,
0x4b,0xe8,0xed,0xee,0x4d,0xf4,0xb8,0x9e,0xae,0x75,0xb8,0x7f,0xc3,0x3d,0x78,0x7e,
0xd7,0x11,0x8c,0xdc,0xfa,0x70,0x93,0x8f,0x8a,0xa8,0xf5,0x30,0xfc,0x11,0x11,0x75,
0x88,0xe1,0xcd,0x7,0x50,0xf8,0xe3,0x39,0x4c,0xdd,0xfd,0x6,0xfa,0x63,0x2a,0x68,
0x59,0xa6,0x86,0x76,0x89,0xa8,0x3e,0x1c,0xf6,0xa5,0xcc,0xe9,0xed,0xee,0x31,0xfe,
0xb5,0x3e,0xb3,0x78,0x19,0x33,0x8b,0xb3,0x91,0xc7,0xc5,0xdd,0x9e,0x35,0x83,0x7d,
0x7b,0x22,0xb7,0xd,0xac,0xdf,0x81,0xde,0xae,0x9e,0xf0,0xfa,0x54,0xe1,0x3c,0xc6,
0xdf,0x3b,0xb1,0x92,0x87,0x45,0x1d,0xa4,0xb7,0xbb,0x7,0x63,0xbb,0x9e,0xc3,0xfd,
0x1b,0xee,0x1,0x0,0xdc,0xde,0xbb,0x1d,0x53,0x77,0xbf,0x89,0xc1,0x93,0xfb,0x31,
0x75,0xe5,0xfc,0x2a,0x1f,0x5d,0x72,0x53,0x57,0xce,0x87,0xef,0x21,0xa9,0xf1,0x39,
0xfe,0x77,0x45,0x64,0x63,0xf8,0xa3,0xcc,0xd1,0x7f,0x49,0xd5,0xea,0x5c,0xe1,0x42,
0xc5,0x79,0x3e,0xb5,0x4c,0xa,0xef,0xed,0xee,0x89,0x9d,0x6c,0xe,0x4,0x81,0xae,
0xa7,0x6b,0x5d,0xaa,0xd7,0xd4,0x79,0x2f,0xfc,0xbb,0x9a,0x9f,0x4b,0x14,0x67,0xb0,
0x6f,0xf,0xc6,0x76,0x1d,0x89,0xcc,0x95,0xeb,0xe9,0x5a,0x87,0xb3,0x77,0xfd,0x14,
0x9f,0x3d,0x73,0x10,0x63,0xd3,0xc7,0x56,0xe9,0xe8,0x9a,0xeb,0xd4,0xfc,0x64,0x5d,
0xe1,0x76,0xb0,0x6f,0xf,0x6,0xfb,0xf6,0x60,0xaa,0x70,0x1e,0x13,0xf3,0xa7,0x39,
0x77,0x90,0xda,0x6,0xc3,0x1f,0x65,0x8e,0x5e,0x11,0xab,0xd5,0xed,0xbd,0xdb,0x2b,
0xde,0xbf,0xb7,0x6f,0x77,0xdd,0x3f,0x83,0x28,0xeb,0xe,0x6f,0x7b,0x1c,0x87,0xb6,
0x3d,0x56,0xf1,0x31,0xcf,0xef,0x3a,0x2,0x0,0x6d,0x19,0x0,0x47,0xdf,0x7d,0xa6,
0xe6,0xe7,0xe,0xac,0xdf,0x81,0xd7,0xf7,0xbd,0x62,0xdc,0x76,0x74,0xfa,0x18,0xc6,
0xa6,0x8f,0x71,0xf8,0x99,0x5a,0x1e,0xe7,0xfc,0x11,0x11,0xb5,0x99,0xfe,0xb5,0x9b,
0x30,0x75,0xf7,0x1b,0x55,0x83,0x9f,0xf2,0xfc,0xae,0x23,0x18,0xde,0x7c,0xa0,0xa1,
0xc7,0xd0,0xdb,0xdd,0x83,0x81,0xf5,0xf1,0x95,0xf2,0x95,0x50,0xcf,0x54,0xa,0xd7,
0x3f,0x42,0x1f,0xda,0x7c,0x0,0xaf,0xef,0x7b,0x5,0x13,0xfb,0x5e,0x6d,0xf8,0xe7,
0x45,0xb4,0x92,0x18,0xfe,0x88,0x88,0xda,0xcc,0xd4,0xdd,0x6f,0x56,0xad,0x7e,0xdb,
0x1a,0x15,0x0,0xfb,0xd7,0x6e,0xc2,0xd8,0xae,0x23,0x98,0xb9,0xef,0x6d,0x9c,0xbd,
0xeb,0xa7,0x18,0xd9,0xd2,0x7e,0xdd,0xb6,0x7b,0xfb,0x76,0xe3,0xf9,0x5d,0x47,0x30,
0x75,0xf7,0x1b,0xce,0x39,0xbd,0x44,0x59,0xc7,0xf0,0x47,0x44,0x44,0x0,0xea,0xb,
0x80,0x2a,0xf4,0x4d,0xdf,0x77,0x9,0xf,0x6d,0x3e,0x10,0xce,0x7f,0x3d,0xbc,0xed,
0xf1,0x96,0xec,0x2c,0x4e,0x12,0xea,0x6e,0xef,0xdd,0x1e,0x56,0x2,0x7b,0xbb,0xeb,
0x9f,0xae,0x42,0xb4,0x52,0x18,0xfe,0x88,0x88,0xda,0x4c,0xff,0xf1,0xad,0x38,0x35,
0x3f,0x59,0xd3,0x73,0x47,0xef,0xf8,0x56,0xaa,0xe1,0xda,0x81,0xf5,0x3b,0x8c,0xd0,
0x67,0xeb,0xe9,0x5a,0x87,0xb1,0x5d,0xcf,0xd5,0x74,0x2c,0xab,0x69,0x68,0xe3,0xbd,
0x89,0x1f,0xbb,0xb7,0x6f,0x37,0x26,0xf6,0xbd,0xda,0xc4,0xa3,0x21,0x6a,0x2c,0x86,
0x3f,0x22,0xa2,0x36,0x53,0x58,0x5a,0xc0,0xe0,0xc9,0xfd,0x38,0x5a,0x43,0x13,0x47,
0x4f,0xd7,0xba,0x44,0x95,0xac,0x81,0xf5,0x3b,0x30,0xb1,0xef,0x55,0x9c,0xbd,0xeb,
0xa7,0xce,0xd0,0xa7,0xdb,0xdb,0xb7,0xbb,0xa5,0x86,0x7f,0xfb,0xd7,0x6e,0x4a,0x3d,
0x6c,0xde,0x4a,0x4b,0xe6,0x10,0x31,0xfc,0x11,0x11,0xb5,0xa9,0xe1,0x33,0x7,0xeb,
0xa,0x80,0x71,0xfa,0xd7,0x6e,0xc2,0xd9,0xbb,0x7e,0x9a,0xaa,0x6b,0xbe,0x95,0x86,
0x7f,0x87,0x36,0xde,0x97,0xea,0xf1,0xa7,0xe6,0x27,0x31,0x7c,0xe6,0x60,0x93,0x8e,
0x86,0xa8,0xf1,0xb8,0xd4,0xb,0x51,0x87,0x52,0xb,0x4d,0xab,0xb9,0x4d,0xfa,0xf2,
0x15,0xfa,0x9a,0x86,0x85,0xe5,0x5,0x8c,0xbe,0x53,0xfb,0x92,0x19,0xb4,0xba,0x54,
0x28,0xa9,0x56,0x9d,0xb3,0xdd,0xde,0xbb,0x1d,0x87,0xb7,0x3d,0x8e,0xc3,0x17,0x9f,
0x88,0xdc,0x57,0x58,0x5e,0xc0,0xe5,0xc5,0xd9,0xd8,0x7d,0x76,0x5d,0xd4,0xf0,0xef,
0xe0,0xc9,0xfd,0xa9,0x8e,0x63,0x35,0x8c,0xdc,0xfa,0x85,0xc4,0x8f,0x7d,0x71,0xee,
0x65,0xc,0x9d,0x7e,0xa0,0x89,0x47,0x43,0xd4,0x78,0xc,0x7f,0x44,0x19,0x21,0x1f,
0xf8,0x37,0x0,0x8,0xe7,0x6a,0x15,0x96,0x17,0x9c,0x43,0x49,0xd5,0x16,0xa8,0x8e,
0x5b,0x8c,0x5a,0x85,0xbc,0xfe,0xb5,0x9b,0x9c,0xbf,0xb4,0xf,0x21,0x7e,0x59,0x90,
0xde,0xae,0x1e,0x67,0x8,0xa0,0xd6,0x30,0x7c,0xe6,0x20,0xfa,0xd7,0xde,0x92,0x7a,
0x7d,0xcb,0x43,0xdb,0x1e,0xc3,0xf8,0xdc,0x89,0xc8,0xdf,0xc3,0xc2,0xd2,0x2,0x86,
0xcf,0x1c,0x8c,0xac,0x83,0x57,0xcd,0xde,0xbe,0xdd,0x18,0xda,0x78,0x6f,0xa6,0x77,
0xb3,0x19,0xda,0x78,0x6f,0xaa,0x50,0x3b,0xf2,0xd6,0x57,0x9b,0x78,0x34,0x44,0xcd,
0xc1,0xf0,0x47,0x99,0x33,0x55,0x38,0x1f,0xfb,0x4b,0x4a,0xdf,0xb9,0x23,0x2e,0xc4,
0xc4,0xf9,0xe8,0xc9,0x8f,0xd7,0x7d,0x6c,0xc3,0x9b,0xf,0x24,0xae,0xa0,0x2c,0x2c,
0x5f,0x35,0x7e,0x69,0x26,0xfd,0xc5,0xab,0x3f,0xae,0xde,0x9d,0x4e,0x1a,0xe5,0xd0,
0xb6,0xc7,0x30,0x36,0xfd,0xa3,0x96,0xd8,0x4e,0x8f,0xdc,0x86,0x26,0x1f,0xc0,0xd4,
0x5d,0x6f,0xa4,0xfa,0x6f,0x6,0x8,0x86,0x6b,0x5d,0x95,0xad,0x89,0xf9,0xd3,0xf8,
0xde,0xbb,0xcf,0xe2,0x4b,0x29,0xaa,0x64,0x40,0xb0,0x83,0x4f,0xff,0xfc,0xd6,0xcc,
0xee,0x96,0xa1,0x6f,0x2d,0x59,0xcd,0xa9,0xf9,0x49,0xfe,0x37,0x41,0x2d,0x89,0xe1,
0x8f,0x32,0x67,0xe4,0xad,0x47,0x30,0xf2,0xd6,0x23,0x55,0x1f,0x97,0x64,0xf7,0x2,
0x5d,0x23,0x56,0xe5,0x4f,0xb3,0xa6,0xd7,0xd4,0x95,0xf3,0x15,0x87,0xb8,0x54,0xa5,
0xaf,0x55,0xb4,0xca,0x90,0x1d,0xb9,0x15,0x96,0x16,0x30,0x34,0xf9,0x29,0x4c,0xec,
0x7b,0x35,0xd5,0x36,0x84,0x33,0x8b,0x97,0x63,0xef,0x3b,0x7c,0xf1,0x9,0xc,0x6d,
0x48,0x57,0x29,0x53,0xc3,0xbf,0x59,0x1c,0x2a,0x1d,0xec,0xdb,0x93,0x6e,0x1e,0x23,
0xab,0xe1,0xd4,0xa2,0xd8,0xf0,0x41,0x44,0x89,0xec,0xed,0xdb,0xcd,0x5,0x6d,0x5b,
0xdc,0xd4,0x95,0xf3,0xa9,0x86,0x29,0x8f,0x4e,0x1f,0xab,0xf8,0xf,0xb1,0xc2,0xd2,
0x2,0x46,0xce,0x56,0xff,0x87,0x9a,0xed,0xfe,0xd,0xf7,0x64,0xf2,0xef,0xd2,0x58,
0x69,0xab,0xbb,0x24,0x2e,0x2f,0xce,0x72,0x9b,0x37,0x6a,0x59,0xc,0x7f,0x44,0x94,
0xd8,0xe1,0x6d,0x8f,0xaf,0xf6,0x21,0x50,0x9d,0xc6,0xa6,0x8f,0xe1,0x7b,0xef,0x3e,
0x5b,0xf1,0x31,0xb,0xcb,0x57,0xf1,0x89,0xc9,0x4f,0x25,0xea,0x60,0x1d,0x7f,0xef,
0x44,0x4d,0x6b,0xa,0x8e,0xed,0x3a,0x92,0xa9,0x85,0x91,0x47,0xb6,0x3c,0x9c,0xaa,
0x82,0xc9,0xaa,0x1f,0xb5,0x32,0x86,0x3f,0x6a,0x59,0x69,0xfe,0xd5,0x7d,0x99,0xf3,
0x72,0x1a,0x62,0x6f,0xdf,0xee,0x96,0x59,0xae,0x83,0xe2,0x8d,0xbc,0xf5,0x48,0x6c,
0x60,0xfb,0xde,0xbb,0xcf,0xa2,0xff,0xf8,0xd6,0x54,0x4d,0x19,0xb5,0x54,0xff,0x6e,
0x59,0xbb,0x29,0xd5,0xfc,0xba,0x66,0xea,0xed,0xee,0x49,0xf5,0xf,0x9b,0xcb,0x8b,
0xb3,0x18,0xab,0x61,0x9,0x1d,0xa2,0xac,0x60,0xf8,0xa3,0x8e,0xc0,0x49,0xd9,0x8d,
0xd3,0xbf,0xf6,0x96,0xd5,0x3e,0x4,0x6a,0x80,0xa1,0xc9,0x7,0x8c,0x7f,0x14,0x9d,
0x2b,0x5c,0xc0,0xce,0x7f,0xf9,0x3,0x8c,0xbc,0xf5,0x48,0xea,0x66,0x8c,0xa9,0x2b,
0xe7,0x6b,0x5a,0x4f,0xf0,0xd0,0xb6,0xc7,0x52,0xed,0x26,0xd2,0x2c,0x87,0xb7,0x3d,
0x9e,0x6a,0x1e,0x24,0xab,0x7e,0xd4,0xea,0x18,0xfe,0x88,0x88,0x3a,0x90,0x6a,0x0,
0x1,0x82,0x6a,0xdf,0xc0,0x6b,0x1f,0xa9,0x6b,0x97,0x8a,0xc3,0x17,0x9f,0xc0,0xc2,
0xf2,0xd5,0xd4,0xcf,0x1b,0xdd,0xf9,0x74,0xcd,0x3f,0xb3,0x11,0x6,0xfb,0xf6,0xa4,
0xea,0x58,0x66,0xd5,0x8f,0xda,0x1,0xc3,0x1f,0x11,0x51,0x87,0x9a,0xba,0x72,0x1e,
0x9b,0x8f,0xdf,0x96,0xa8,0xbb,0xbe,0x9a,0x99,0xc5,0xd9,0x9a,0x16,0x3,0xdf,0xdb,
0xb7,0x1b,0xc3,0x29,0x17,0xa0,0x6e,0x94,0xde,0xee,0x9e,0x54,0x4d,0x1e,0x0,0xab,
0x7e,0xd4,0x1e,0x18,0xfe,0x88,0x9a,0x84,0x9d,0x80,0xd4,0xa,0x1a,0x39,0x25,0x62,
0xf4,0xdd,0x67,0x6a,0xab,0xfe,0xdd,0xf1,0xad,0x55,0x69,0xfe,0x18,0xdb,0xf5,0x5c,
0xaa,0x26,0x8f,0x53,0xf3,0x93,0xac,0xfa,0x51,0x5b,0xe0,0x3a,0x7f,0x44,0xab,0xe4,
0xd4,0xfc,0x64,0xea,0x1d,0x17,0x94,0xa3,0xd3,0xc7,0xaa,0xfe,0xd2,0xee,0x5f,0xbb,
0xc9,0x98,0x9f,0x37,0xb0,0x7e,0x47,0xaa,0x79,0x4d,0x44,0x69,0x15,0x96,0x82,0xad,
0x0,0xd3,0xac,0xbf,0x9,0x4,0x6b,0xff,0x8d,0xdc,0xfa,0xf0,0x8a,0x56,0xd5,0x46,
0xef,0x78,0x3a,0xf5,0x22,0xea,0xac,0xfa,0x51,0xbb,0x60,0xf8,0x23,0x4a,0xa1,0xb0,
0xdc,0xb8,0x5d,0x9,0x6,0x4f,0xee,0xc7,0xc8,0x96,0x87,0xd1,0xdb,0xd5,0x83,0xa9,
0xc2,0x79,0xcc,0x2c,0xce,0xe2,0xec,0x5d,0x3f,0x4d,0xf4,0xdc,0xb1,0xe9,0x63,0x75,
0x55,0x16,0x7,0xfb,0xf6,0x84,0xdb,0xc0,0xf5,0xaf,0xdd,0x84,0xa1,0x8d,0xf7,0x31,
0x18,0x52,0x43,0x8c,0xbe,0xfb,0xc,0x46,0xb6,0x3c,0x9c,0xfa,0xef,0xd3,0x4a,0xee,
0x22,0x33,0xbc,0xf9,0x40,0xea,0x9d,0x49,0x8e,0xd6,0xf9,0xdf,0x1c,0x51,0x96,0x30,
0xfc,0x51,0xcb,0x9a,0x2a,0x24,0x9f,0x9c,0xde,0xa8,0xff,0xd3,0xae,0x67,0x42,0xbc,
0x4b,0x2d,0x73,0xa4,0x1a,0x41,0x7d,0x1e,0x6a,0x39,0x8f,0x89,0x1a,0xf6,0x7d,0x25,
0x72,0xa9,0xb5,0xfa,0x7,0x4,0x5d,0xb7,0x49,0xd6,0x16,0xac,0xc7,0xf0,0xe6,0x3,
0x78,0x3e,0xe5,0x3c,0xbf,0x85,0xe5,0xab,0x35,0x2d,0x67,0x43,0x94,0x55,0xc,0x7f,
0xd4,0xb2,0xd2,0x2c,0x47,0x71,0x68,0xdb,0x63,0x35,0xfd,0x32,0xa2,0x28,0x56,0x3f,
0xa8,0x9a,0x5a,0xab,0x7f,0xf,0x6d,0x3e,0x80,0xc3,0x17,0x9f,0x68,0x5a,0xf5,0x6f,
0x60,0xfd,0xe,0x8c,0xde,0xf1,0xad,0xd4,0xcf,0x1b,0x79,0xeb,0xab,0x99,0xdd,0x8b,
0x98,0xa8,0x16,0x6c,0xf8,0x20,0x22,0xa2,0x86,0x52,0xd5,0xbf,0x5a,0x8c,0x6c,0x69,
0xce,0xc2,0xcf,0x3,0xeb,0x77,0xa4,0xde,0xd7,0x18,0x60,0x93,0x7,0xb5,0x27,0x86,
0x3f,0x22,0x4a,0x3c,0xe4,0x5b,0x4b,0x27,0x27,0x75,0xa6,0x5a,0x3b,0x7f,0x7,0x7a,
0x9b,0xb3,0xe8,0xf3,0xe8,0xce,0xa7,0x53,0x7,0xbf,0x85,0xe5,0xab,0x18,0x3e,0xf3,
0xf9,0xa6,0x1c,0xf,0xd1,0x6a,0x62,0xf8,0x23,0xca,0x90,0xac,0x6f,0x43,0xd7,0xe8,
0x39,0x8f,0xd4,0x18,0x23,0x5b,0x1e,0x86,0x7c,0xe0,0xdf,0x50,0xf8,0xe3,0x39,0xc,
0xf6,0xed,0x59,0xed,0xc3,0x1,0x10,0x54,0xff,0xc6,0xdf,0x3b,0x9e,0xea,0x39,0x47,
0xa7,0x8f,0x35,0x2d,0x6c,0xd,0x9e,0xdc,0x8f,0xaf,0x5f,0x7c,0x32,0x55,0x20,0x6d,
0xe6,0x10,0x34,0xd1,0x6a,0x62,0xf8,0x23,0xca,0x90,0xa4,0xbf,0x68,0x1a,0xb9,0x25,
0x56,0x9a,0xbd,0x7a,0x1b,0xd9,0xed,0x4c,0xf5,0xeb,0xed,0xee,0xc1,0xc4,0xbe,0x57,
0xf1,0xdd,0x9d,0x4f,0x1,0x8,0x96,0x4c,0x79,0x7d,0xdf,0x2b,0xab,0xb6,0x68,0xb2,
0x2d,0xc9,0xae,0x1f,0x97,0x17,0x67,0xf1,0xf5,0x8b,0x4f,0x62,0xfd,0x3f,0x6f,0xc4,
0xf0,0x99,0x83,0x4d,0xd,0x5b,0x87,0x2f,0x3e,0x81,0xfe,0xe3,0x5b,0xf1,0xe2,0xdc,
0xcb,0x55,0x1f,0xfb,0xe2,0xdc,0xcb,0xab,0xd6,0x90,0x45,0xd4,0x6c,0xc,0x7f,0x44,
0x2d,0xa8,0xb7,0xab,0x71,0xb,0xe2,0xa6,0xd9,0xab,0x97,0x95,0xbf,0xec,0x18,0xec,
0xdb,0x83,0x99,0xfb,0xde,0x76,0xe,0xd9,0x3f,0xbf,0xeb,0x48,0xea,0x9d,0x2b,0x9a,
0x61,0x66,0x71,0x36,0x76,0x6d,0xbc,0x53,0xf3,0x93,0xf8,0xec,0x99,0x83,0xe8,0x3f,
0x7e,0x1b,0xe,0x5f,0x7c,0x62,0xc5,0x1a,0x2a,0xa,0x4b,0xb,0x18,0x3a,0xfd,0x0,
0x3e,0x31,0xf9,0xa9,0xd8,0x60,0x7a,0xae,0x70,0x81,0xc3,0xbd,0xd4,0xd6,0x18,0xfe,
0xa8,0xa5,0x65,0x7d,0x98,0xb4,0x15,0xa4,0xa9,0xfc,0xa5,0x59,0x5e,0x87,0x9a,0x67,
0xf4,0x8e,0xa7,0xf1,0xfa,0xbe,0x57,0x2a,0xce,0x61,0x7b,0x68,0xf3,0x81,0x4c,0x4,
0xc0,0xd1,0x77,0x9e,0xc1,0xb9,0xc2,0x85,0xf0,0xfa,0xd1,0xe9,0x63,0xd8,0x7c,0xfc,
0x36,0xc,0x9e,0xdc,0xbf,0xaa,0x8d,0x14,0xe3,0xef,0x9d,0x40,0xff,0xf1,0xad,0x38,
0x6a,0x1d,0xc3,0xb9,0xc2,0x5,0xc,0x9e,0xdc,0xcf,0xee,0x5e,0x6a,0x6b,0x5c,0xea,
0x85,0x5a,0xda,0xcc,0xe2,0x6c,0xaa,0xed,0x99,0xb2,0x6e,0xaa,0x70,0x3e,0x51,0xf3,
0x45,0x9a,0xc0,0x56,0xfd,0xb5,0x92,0x57,0xfe,0xf8,0xb,0x71,0x75,0xd,0xac,0xdf,
0x81,0xb1,0x5d,0x47,0x70,0x7b,0xef,0xf6,0x44,0x8f,0x7f,0xa8,0x34,0xfc,0xdb,0xec,
0xb5,0xf3,0xaa,0x19,0x3e,0x73,0x10,0x23,0xb7,0x7e,0x21,0x73,0x73,0xe8,0xa,0x4b,
0xb,0x18,0x3e,0x73,0x10,0x63,0xd3,0xc7,0x30,0xd8,0xb7,0x7,0x85,0xe5,0x5,0x8c,
0x4d,0xff,0x88,0x7f,0xcf,0xa9,0xed,0x31,0xfc,0x11,0x65,0x48,0xd2,0x5f,0x3a,0x69,
0x2,0x5b,0x35,0x69,0x1a,0x4,0xb8,0xc6,0xdf,0xea,0xaa,0x65,0xa9,0x92,0x2c,0x4,
0xc0,0xa9,0x2b,0xe7,0x57,0x3d,0x80,0x56,0x32,0x31,0x7f,0x9a,0x7f,0xb7,0xa9,0xa3,
0x30,0xfc,0x11,0x75,0xb8,0xa4,0x55,0x44,0xe,0xb1,0xaf,0xae,0xde,0xee,0xda,0xe7,
0x79,0x3e,0xb4,0xf9,0x0,0xa,0xcb,0xb,0x18,0x79,0x8b,0xbb,0x54,0x8d,0x56,0x46,
0xef,0x0,0x0,0x1f,0x4c,0x49,0x44,0x41,0x54,0xa4,0xa5,0xb6,0x41,0x1c,0x58,0x1f,
0x6c,0x85,0x38,0xd0,0xbb,0x3,0x63,0xd3,0x3f,0xe2,0xda,0x7f,0xd4,0xd2,0x18,0xfe,
0xa8,0x23,0x9c,0x2b,0x5c,0x68,0xd8,0x50,0x4e,0x33,0xb7,0x41,0x9b,0x98,0x3f,0x8d,
0x43,0xa8,0xbe,0x13,0x49,0xa3,0xba,0x7d,0x7b,0xbb,0x7b,0x12,0xf,0x9b,0x4f,0x69,
0xf3,0xb6,0x68,0xe5,0x15,0x96,0x16,0xd0,0x7f,0x7c,0x2b,0xc6,0x76,0x3d,0x87,0xfb,
0x37,0xdc,0x93,0xfa,0xf9,0x5f,0xba,0xf5,0xb,0x98,0xba,0x72,0xbe,0xa9,0xa1,0x65,
0x68,0xe3,0xbd,0x18,0xb9,0xf5,0x61,0x4c,0x15,0xce,0x87,0xff,0xbd,0x15,0x96,0x17,
0x8c,0x46,0xa1,0x99,0xc5,0xcb,0x99,0x1a,0xfa,0x55,0x5c,0x21,0x6f,0x60,0xfd,0xe,
0x67,0xa5,0x75,0x6f,0xdf,0x6e,0x86,0x3f,0x6a,0x69,0xc,0x7f,0xd4,0x11,0x46,0xde,
0x7a,0xa4,0x61,0xc3,0x3a,0xf2,0x81,0x7f,0x6b,0xc8,0xeb,0xd4,0x23,0xed,0xd0,0x5f,
0x9c,0x34,0xb,0xea,0xb2,0xd3,0x77,0xf5,0xa9,0x4e,0xd5,0xd1,0x3b,0x9e,0xc6,0x97,
0x6e,0xfd,0x42,0xea,0xe7,0x3f,0xbf,0xeb,0x8,0xa6,0xa,0x17,0x9a,0xf6,0x5d,0x8e,
0xed,0x7a,0xe,0x3d,0x5d,0xeb,0x32,0xb3,0x4f,0x74,0x16,0xfe,0x5b,0x25,0xca,0x22,
0x76,0xfb,0x12,0x65,0xc8,0xcc,0xe2,0xe5,0xc4,0x8f,0x6d,0x44,0xd3,0x7,0xe7,0xfb,
0xb5,0xa6,0x91,0xb7,0x1e,0xc1,0x67,0x6b,0x9c,0x43,0x37,0xb1,0xef,0xd5,0xba,0x86,
0x90,0x2b,0x69,0xd4,0x3f,0x4a,0x5a,0x41,0x56,0x16,0xd3,0x26,0xaa,0x5,0xc3,0x1f,
0x51,0x86,0xa4,0x19,0xe,0x6b,0x44,0xd3,0x47,0x9a,0xe1,0x63,0x2e,0xf3,0x92,0x2d,
0x63,0xd3,0xc7,0xf0,0xbd,0x77,0x9f,0x4d,0xfd,0xbc,0x9e,0xae,0x75,0x18,0xdf,0xfd,
0x42,0x13,0x8e,0x88,0x88,0x5a,0x5,0xc3,0x1f,0x51,0xc6,0x24,0x6d,0xac,0x68,0x44,
0xe5,0x6f,0x20,0xe1,0x92,0x21,0x97,0x17,0x67,0xb9,0xfc,0x45,0x6,0x8d,0xbc,0xf5,
0x48,0x64,0x9d,0xba,0x24,0xf6,0xf6,0xed,0xc6,0xc8,0x96,0x87,0x9b,0x70,0x44,0x44,
0xd4,0xa,0x18,0xfe,0x88,0x9a,0xa4,0xd6,0x4a,0x59,0xd2,0xea,0x5f,0xbd,0x95,0xbf,
0xfe,0xb5,0x9b,0xd8,0xec,0xd1,0x6,0x46,0xce,0x3e,0x62,0x2c,0xa2,0x9c,0xf8,0x79,
0x35,0xcc,0x19,0x24,0xa2,0xf6,0xc0,0xf0,0x47,0xd4,0x24,0xb5,0x56,0xca,0x92,0xce,
0xfb,0xab,0xb7,0xe3,0x97,0xf3,0xfd,0xda,0x83,0x6a,0x2,0xa9,0xb6,0x87,0x6e,0xe4,
0x79,0xdc,0xa7,0xb9,0x2e,0x9c,0x6,0x41,0xad,0x8c,0xe1,0x8f,0x28,0x63,0x92,0x57,
0xfe,0xea,0x1b,0xf6,0x4d,0x13,0xfe,0xd8,0xe9,0x9b,0x6d,0x33,0x8b,0xb3,0x18,0x3a,
0xfd,0x40,0xe2,0xc7,0x9f,0x9a,0x9f,0xc4,0xe0,0xc9,0xfd,0x4d,0x3c,0xa2,0xf6,0xc7,
0x69,0x10,0xd4,0xca,0x18,0xfe,0x88,0x32,0x26,0x69,0x45,0x21,0xe9,0x16,0x5f,0x71,
0x58,0xf9,0x6b,0x2f,0x13,0xf3,0xa7,0xf1,0xe5,0xb3,0x8f,0x56,0x7c,0xcc,0xc2,0xf2,
0x55,0x7c,0xf9,0xec,0xa3,0xdc,0xbb,0x96,0xa8,0xc3,0x31,0xfc,0x11,0x65,0x4c,0x9a,
0x8e,0xdf,0x5a,0x87,0x7e,0xd3,0xcc,0xf7,0x3b,0x35,0x3f,0x59,0xd3,0xcf,0xa0,0x95,
0x37,0xfa,0xce,0x33,0xb1,0xd,0x20,0x47,0xa7,0x8f,0x61,0xe0,0xb5,0x3b,0x31,0xfa,
0xce,0x33,0x2b,0x7c,0x54,0x44,0x94,0x35,0x5c,0xe4,0x99,0x28,0x63,0xd2,0xc,0xb1,
0xe,0xf4,0x6e,0xaf,0x69,0x48,0x76,0x68,0xe3,0x7d,0x89,0x1f,0xcb,0xaa,0x5f,0x6b,
0x19,0x39,0xfb,0x8,0x6,0xd6,0xef,0x8,0x2b,0xc3,0x97,0x17,0x67,0x31,0x7c,0xe6,
0x60,0x26,0xbf,0xc7,0xaf,0x5f,0x7c,0x72,0xb5,0xf,0x21,0xd4,0xbf,0x76,0x53,0xb8,
0xf,0x32,0x51,0xbb,0x63,0xf8,0x23,0xca,0xa0,0x73,0x85,0xb,0x89,0x86,0x75,0x7,
0xd6,0xef,0x0,0x6a,0x58,0xea,0x83,0x43,0xbe,0xed,0x4b,0x35,0x80,0x4c,0xdd,0xfd,
0x26,0xc6,0xa6,0x7f,0x84,0xc3,0x17,0x9f,0xc8,0xec,0x10,0xef,0xe1,0x8b,0x4f,0xac,
0xf6,0x21,0x84,0x6,0xfb,0xf6,0x30,0xfc,0x51,0xc7,0x60,0xf8,0xa3,0x96,0x96,0x74,
0xd8,0xb3,0x51,0x7b,0xe1,0xae,0x94,0x99,0xc5,0xd9,0x64,0xe1,0x2f,0xc5,0xf6,0x6c,
0x3a,0x86,0xbf,0xf6,0x36,0xb3,0x38,0x8b,0xfe,0xe3,0x5b,0x33,0x1b,0xfa,0x88,0x68,
0x75,0x31,0xfc,0x51,0x4b,0x4b,0xba,0x9d,0xd4,0x77,0x77,0x3e,0xd5,0xe4,0x23,0x69,
0xac,0xa9,0x2b,0xe7,0x71,0xff,0x86,0x7b,0xaa,0x3e,0xae,0x96,0x3d,0x54,0x87,0x36,
0xde,0x9b,0xf8,0x73,0xe3,0x7c,0xbf,0xd6,0xc5,0xe0,0x47,0x44,0x71,0xd8,0xf0,0x41,
0x94,0x41,0x69,0xd6,0x10,0x4b,0x5b,0xd5,0x4c,0x53,0xf5,0x1b,0x9f,0x3b,0x91,0xea,
0xb5,0x89,0x88,0x28,0xfb,0x18,0xfe,0x88,0x32,0x28,0x4d,0x13,0x47,0xda,0xd,0xe6,
0x87,0x36,0xdc,0x9b,0xf8,0xb1,0x1c,0xf2,0x25,0x22,0x6a,0x3f,0xc,0x7f,0x44,0x19,
0x34,0xb3,0x38,0x9b,0x78,0xc7,0x86,0x34,0xe1,0x6f,0x60,0xfd,0x8e,0xc4,0x4b,0xbc,
0x5c,0x5e,0x9c,0xe5,0xe2,0xce,0x44,0x44,0x6d,0x88,0xe1,0x8f,0x28,0xa3,0x92,0x6,
0xaf,0x34,0xe1,0x6f,0x38,0x45,0x37,0x23,0xab,0x7e,0x44,0x44,0xed,0x89,0xd,0x1f,
0xd4,0xb2,0x7a,0xbb,0x7b,0x56,0xfb,0x10,0x9a,0x6a,0x62,0xfe,0x74,0xa2,0x86,0x8e,
0x9e,0xae,0x75,0xe8,0x5f,0xbb,0x29,0xd1,0xe2,0xd0,0x69,0x86,0x7c,0x39,0xdf,0xaf,
0x33,0x8c,0xed,0x3a,0x82,0x99,0xc5,0x59,0x8c,0xcf,0x9d,0x58,0xf1,0x4a,0xef,0xe1,
0x6d,0x8f,0xaf,0xe8,0xcf,0xab,0xa4,0xde,0xed,0x12,0x89,0x5a,0x9,0xc3,0x1f,0xb5,
0xac,0x5a,0x97,0x39,0x69,0x15,0x69,0x9a,0x3e,0x86,0x36,0xde,0x57,0x75,0xe7,0x86,
0x34,0x43,0xbe,0xb,0xcb,0x57,0x31,0xfe,0x1e,0xc3,0x5f,0xbb,0xeb,0xed,0xee,0x9,
0xd7,0xb6,0x3b,0xb4,0xed,0x31,0x2c,0x2c,0x5f,0xc5,0xc8,0x5b,0x5f,0xc5,0x58,0xd,
0x6b,0x47,0xd6,0xe2,0xd0,0xb6,0xc7,0x56,0xe4,0xe7,0x10,0x91,0x89,0xc3,0xbe,0x44,
0x19,0xd5,0xe8,0xa6,0x8f,0x34,0x43,0xbe,0xe3,0xef,0x1d,0x4f,0xfc,0x58,0x6a,0x5d,
0xf6,0xdf,0x9b,0x9e,0xae,0x75,0x78,0x7e,0xd7,0x11,0x4c,0xec,0x7b,0x95,0x95,0xb0,
0xa,0xb8,0x4,0x12,0xb5,0x3a,0x86,0x3f,0xa2,0x8c,0x9a,0x59,0x9c,0xc5,0xe5,0x84,
0xfb,0xfc,0x26,0x9,0x7f,0xec,0xf2,0x25,0x5b,0xdc,0xdf,0x9b,0xbd,0x7d,0xbb,0x31,
0x7d,0xdf,0x25,0x8c,0xed,0x3a,0xd2,0xf6,0xd3,0x2b,0x88,0x3a,0x11,0xc3,0x1f,0x51,
0x86,0x25,0xd,0x61,0x3d,0x5d,0xeb,0x2a,0xae,0xf7,0x37,0xb4,0xf1,0xde,0x54,0x43,
0xbe,0x2b,0x35,0xec,0x47,0xab,0xab,0xda,0x3f,0x1a,0x1e,0xda,0x7c,0x0,0x33,0xf7,
0xbd,0x8d,0xb1,0x5d,0x47,0x58,0x9,0x24,0x6a,0x23,0x9c,0xf3,0x47,0x1d,0xe1,0xd4,
0xfc,0x64,0xc3,0xaa,0x59,0x2b,0x39,0x4f,0x69,0xaa,0x70,0x1,0xf,0x25,0x7c,0xec,
0xd0,0x86,0x7b,0x63,0x87,0x8a,0x87,0x37,0x7f,0x26,0xf1,0xcf,0xe4,0x90,0x6f,0x67,
0xe8,0xed,0xee,0x49,0xb4,0x85,0x60,0x4f,0xd7,0xba,0x20,0x4,0x2e,0xce,0x66,0x6a,
0x2f,0x5e,0x22,0xaa,0x1d,0xc3,0x1f,0x75,0x84,0x99,0xc5,0xcb,0xd,0xfb,0xc5,0xb5,
0x92,0xe1,0x2f,0x4d,0x60,0x1d,0xda,0x78,0xaf,0xf3,0x3d,0xf6,0x76,0xf7,0x24,0xda,
0x2a,0x4e,0x61,0x97,0x6f,0x67,0x48,0xbb,0x38,0x38,0x11,0xb5,0xf,0xe,0xfb,0x52,
0xcb,0x4a,0xf3,0xcb,0xab,0x7f,0xed,0x2d,0x4d,0x3c,0x92,0xe6,0x99,0xba,0x72,0x3e,
0xf1,0x62,0xcf,0xb7,0xf7,0x6e,0x77,0xce,0xcf,0x1a,0xb9,0xf5,0xe1,0xc4,0x3f,0xef,
0xf2,0xe2,0x2c,0xbb,0x7c,0x3b,0x44,0xda,0xf0,0xc7,0x79,0xa0,0x44,0xed,0x83,0xe1,
0x8f,0x28,0xe3,0x52,0x55,0xff,0x1c,0x4d,0x1d,0xa9,0xba,0x7c,0x59,0xf5,0xeb,0x18,
0x69,0xc3,0x5f,0x9a,0xa5,0x87,0x88,0x28,0xdb,0x18,0xfe,0x88,0x32,0x2e,0xcd,0x1c,
0xbc,0x91,0x2d,0x66,0x95,0x2f,0x4d,0xa3,0x7,0x80,0xaa,0x6b,0x5,0x52,0x7b,0x48,
0x3a,0xdf,0x4f,0x39,0x57,0xb8,0x80,0xc2,0xd2,0x42,0x13,0x8f,0x88,0x88,0x56,0x12,
0xe7,0xfc,0x11,0x65,0x5c,0x9a,0xca,0xdf,0xed,0xbd,0xdb,0x8d,0xdd,0x3e,0xd2,0xc,
0xf9,0x9e,0x9a,0x9f,0x4c,0xb4,0x4b,0x8,0xb5,0xbe,0x34,0xcb,0xfe,0x0,0xcd,0x1b,
0xf2,0xfd,0xe8,0xc9,0x8f,0x67,0x66,0x38,0x79,0xb0,0x6f,0xf,0x5e,0xdf,0xf7,0xca,
0x6a,0x1f,0x6,0xd1,0x8a,0x60,0xe5,0x8f,0x28,0xe3,0xd2,0xac,0xf7,0x7,0x94,0xab,
0x7f,0x3,0xeb,0x77,0x24,0xda,0x1e,0x4e,0x19,0x7d,0x97,0x55,0xbf,0x4e,0xc1,0xf9,
0x7e,0x44,0x9d,0x8d,0xe1,0x8f,0x3a,0x42,0xa5,0x35,0xf0,0x5a,0x41,0x9a,0xb9,0x78,
0xc3,0x9b,0x3f,0x83,0xde,0xee,0x1e,0x8c,0xdc,0xfa,0x85,0xc4,0xcf,0x61,0xa3,0x47,
0x67,0x19,0xda,0x78,0x5f,0xaa,0xc7,0xf3,0xef,0x6,0x51,0x7b,0x61,0xf8,0xa3,0x96,
0x95,0x66,0xe7,0x81,0x9e,0xae,0x75,0x4d,0x3c,0x92,0xe6,0x4b,0x53,0x79,0xe9,0xe9,
0x5a,0x87,0xc3,0xdb,0x1e,0xf,0xf7,0x6c,0x4d,0x82,0xeb,0xb7,0x75,0x8e,0x81,0xf5,
0x3b,0x52,0xfd,0xf7,0xf0,0xe2,0xdc,0xcb,0x4d,0x3c,0x1a,0x22,0x5a,0xd,0x9c,0xf3,
0x47,0x2d,0x6b,0xa0,0x77,0x65,0xab,0x79,0x3,0xeb,0x77,0xac,0xda,0xda,0x68,0x69,
0x2b,0x2f,0x5f,0x4a,0x59,0xf5,0xe3,0x8e,0x1e,0x9d,0x23,0xed,0x7c,0x3f,0x2e,0xfa,
0x4d,0xd4,0x7e,0x18,0xfe,0x88,0x62,0xf4,0xaf,0xdd,0x84,0xc1,0xbe,0x3d,0x18,0xda,
0x78,0x1f,0x6,0xfb,0xf6,0xac,0x7a,0xf5,0xf0,0xc5,0xb9,0x97,0x53,0x2d,0xd6,0x9c,
0x14,0xab,0x7e,0x9d,0x65,0x68,0x63,0x36,0x9a,0x3d,0x88,0x68,0xf5,0x30,0xfc,0x11,
0x95,0xc,0xf6,0xed,0x9,0xab,0x7b,0x59,0x8,0x7b,0xb6,0xf1,0xf7,0x8e,0x37,0x3c,
0xfc,0xb1,0xea,0xd7,0x59,0xfa,0xd7,0x6e,0x4a,0xbd,0xc4,0xb,0x3b,0xc0,0x89,0xda,
0xf,0xc3,0x1f,0x75,0x24,0x15,0xf4,0x6,0x7a,0xb7,0x63,0x60,0xfd,0x8e,0x54,0xbf,
0x10,0x57,0xcb,0xf8,0xdc,0x9,0x3c,0xdf,0xe0,0xd7,0x64,0xd5,0xaf,0xb3,0xa4,0x6d,
0xf4,0xe0,0x3f,0xc,0xdc,0xb8,0xe0,0x35,0xb5,0x3a,0x86,0x3f,0xea,0x18,0xe3,0x7b,
0x5e,0x48,0x5d,0xf9,0xc8,0x92,0xc2,0xd2,0x2,0x8e,0x4e,0x1f,0x4b,0xd5,0xc8,0x51,
0xc9,0xa9,0xf9,0x49,0xfe,0x72,0xef,0x30,0x59,0x9b,0xef,0x37,0x7a,0xc7,0xd3,0x99,
0x59,0x3c,0x3a,0x4d,0x3,0x59,0x56,0x8e,0x99,0xa8,0x56,0xc,0x7f,0xd4,0x31,0x9a,
0x31,0x5f,0x6e,0xa5,0x8d,0x35,0x30,0xfc,0xb1,0xea,0xd7,0x59,0x7a,0xbb,0x7b,0x52,
0xad,0xfb,0xb8,0x12,0x43,0xbe,0xad,0xfa,0xf,0x31,0xa2,0x56,0xc7,0xf0,0x47,0x99,
0xd5,0xdb,0xdd,0x83,0xa1,0xd,0xf7,0xa2,0x7f,0xed,0x2d,0x0,0x82,0x6e,0xdb,0xde,
0xae,0xf2,0xbf,0xce,0x5b,0x7d,0xed,0xbe,0x5a,0x4c,0xcc,0x9f,0xc6,0xe5,0xc5,0xd9,
0x54,0x5b,0xb6,0xb9,0x1c,0x9d,0x3e,0xc6,0x89,0xfc,0x1d,0x26,0x6d,0xd5,0x8f,0x55,
0x61,0xa2,0xf6,0xc5,0xf0,0x47,0x99,0xd4,0xdb,0xdd,0x83,0x99,0xfb,0xde,0xce,0x5c,
0xd3,0x45,0x16,0x8c,0xbe,0xfb,0x2c,0xbe,0xbb,0xf3,0xa9,0xba,0x5e,0x83,0x55,0xbf,
0xce,0x93,0x7e,0x61,0x67,0x2e,0xf1,0x42,0xd4,0xae,0xb8,0xc8,0x33,0x65,0x52,0xff,
0xda,0x5b,0x18,0xfc,0x62,0x8c,0x4d,0xff,0x8,0xb,0xcb,0x57,0x6b,0x7e,0xfe,0xd7,
0x2f,0x3e,0xc9,0xe,0xce,0xe,0xd3,0xbf,0x76,0x53,0xaa,0x69,0xf,0xec,0xf2,0x25,
0x6a,0x6f,0xc,0x7f,0x94,0x49,0x53,0x57,0xd8,0x4d,0x17,0xa7,0xb0,0xb4,0x80,0xd1,
0x77,0x6a,0xdb,0x87,0x77,0x61,0xf9,0x2a,0xf7,0xf0,0xed,0x40,0xec,0xf2,0x25,0x22,
0x1d,0xc3,0x1f,0x51,0xb,0x1a,0x7d,0xf7,0x99,0x9a,0xaa,0x7f,0x53,0x57,0xce,0xb3,
0x53,0xb1,0x3,0xd,0xa7,0x6c,0x12,0xe2,0x90,0x2f,0x51,0x7b,0x63,0xf8,0xa3,0xcc,
0x3a,0x35,0x3f,0xb9,0xda,0x87,0x90,0x59,0x85,0xa5,0x85,0x9a,0x7e,0x41,0xef,0xed,
0xdb,0x8d,0xc3,0xdb,0x1e,0x6f,0xc2,0x11,0x51,0x56,0xa5,0x5d,0xc7,0x92,0x43,0xbe,
0x44,0xed,0x8f,0xe1,0x8f,0xa8,0x5,0xd,0xac,0xdf,0x51,0xf3,0x92,0x2f,0x87,0xb6,
0x3d,0xb6,0x6a,0x7b,0x14,0xd3,0xca,0x4b,0x5b,0xf5,0xab,0x75,0x4a,0x1,0x11,0xb5,
0xe,0x76,0xfb,0x52,0x66,0x4d,0xcc,0x9f,0x4e,0xb5,0x2e,0x59,0xb3,0x5c,0x5e,0x9c,
0xc5,0xcc,0xe2,0x2c,0x66,0x16,0x2f,0x3,0x40,0xe2,0xd0,0x35,0xd8,0xb7,0xa7,0x29,
0xcb,0xa9,0xf4,0x76,0xf7,0x60,0x62,0xdf,0xab,0x75,0xbd,0xc6,0xf8,0x9e,0x17,0x30,
0xf0,0xda,0x9d,0xac,0xf0,0x74,0x80,0xe1,0xcd,0x9f,0x49,0xf5,0xf8,0xf1,0xb9,0x13,
0x4d,0x3a,0x92,0xa8,0x73,0x85,0xb,0x99,0x99,0x86,0xd0,0xdb,0xdd,0xc3,0x75,0x7,
0xa9,0x63,0x30,0xfc,0x11,0xa1,0x1c,0xf0,0xa6,0xa,0xe7,0x83,0xf3,0x2b,0xe7,0x51,
0x58,0x5e,0x88,0x34,0x9e,0xc,0xf6,0xed,0x69,0xd8,0x22,0xcb,0xb5,0x50,0xc1,0xaf,
0xde,0x4e,0xe8,0x9e,0xae,0x75,0x18,0xdf,0xf3,0x2,0x6,0x4f,0xee,0xcf,0xcc,0x2f,
0x5f,0x6a,0xbc,0xe1,0xcd,0x7,0x52,0xfd,0x5d,0x79,0x71,0xee,0xe5,0x15,0xfd,0xfb,
0x30,0xf2,0xd6,0x23,0x99,0x59,0x6f,0x72,0xb0,0x6f,0xf,0x5e,0xdf,0xf7,0xca,0x6a,
0x1f,0x6,0xd1,0x8a,0x60,0xf8,0xa3,0xcc,0x9a,0x98,0x3f,0x8d,0x43,0x78,0xac,0xa1,
0xaf,0xb9,0xb0,0x7c,0x15,0x53,0x57,0xce,0x63,0xaa,0x70,0x1e,0x53,0x57,0x82,0xa0,
0x97,0x95,0x5f,0x3e,0x49,0x8c,0xee,0x7c,0xba,0x61,0xd5,0x89,0xdb,0x7b,0xb7,0x63,
0x74,0xe7,0xd3,0x18,0x3e,0x73,0xb0,0x21,0xaf,0x47,0xd9,0x93,0xba,0xea,0xc7,0x46,
0xf,0xa2,0x8e,0xc0,0xf0,0x47,0x6d,0xeb,0x5c,0xe1,0x82,0x11,0xf0,0xa6,0xa,0xad,
0xdd,0xe9,0x3a,0x7a,0xc7,0xd3,0xd,0xaf,0x3a,0xaa,0xd7,0x63,0x0,0x6c,0x3f,0xfd,
0x6b,0x37,0xa5,0x9a,0x36,0xb1,0xb0,0x7c,0x95,0x4b,0xbc,0x10,0x75,0x8,0x86,0x3f,
0x6a,0x1b,0xa7,0xe6,0x27,0x31,0x31,0x7f,0xba,0x2d,0x82,0x9e,0x6d,0x78,0xf3,0x1,
0x7c,0xe9,0xd6,0x2f,0x34,0xe5,0xb5,0x1f,0xda,0x7c,0x0,0x33,0x8b,0xb3,0xdc,0xf5,
0xa3,0xcd,0xa4,0xed,0xea,0x66,0xd5,0x8f,0xa8,0x73,0x30,0xfc,0x51,0x66,0x55,0x1b,
0x8e,0x3d,0x57,0xb8,0x80,0x89,0xf9,0xd3,0x18,0x7f,0xef,0x44,0x4b,0xd,0xdd,0xa6,
0x35,0xbc,0xf9,0x0,0x9e,0xdf,0x75,0xa4,0xa9,0x3f,0xe3,0xd0,0xb6,0xc7,0x30,0xb3,
0x78,0x99,0x95,0x9f,0x36,0xd1,0xdb,0xdd,0x93,0x7a,0x61,0xe7,0xd1,0x77,0x9f,0x6d,
0xd2,0xd1,0x10,0x51,0xd6,0x30,0xfc,0x51,0xa6,0x2d,0x2c,0x5f,0xd,0x27,0xac,0x2f,
0x2c,0x5f,0x2d,0x85,0xbd,0xe3,0x98,0x98,0x3f,0xdd,0x11,0x9d,0xaa,0x2b,0x11,0xfc,
0x14,0xf5,0x73,0x18,0x0,0x5b,0xdf,0xc8,0xad,0xf,0xa7,0x6a,0xf4,0xb8,0x5c,0x6a,
0x72,0x22,0xa2,0xce,0xc0,0xf0,0x47,0x99,0x76,0xf8,0xe2,0x13,0xe8,0xed,0xea,0xc1,
0xf8,0xdc,0x89,0x8e,0xfb,0xe5,0x54,0x6b,0xf0,0xd3,0x3,0x73,0x5a,0xcf,0xef,0x3a,
0x82,0xde,0xee,0x5e,0xae,0xf5,0xd6,0xc2,0x7a,0xbb,0x7b,0x30,0xb2,0xe5,0xe1,0x54,
0xcf,0x61,0xd5,0x2f,0x58,0x3b,0x93,0xa8,0x53,0x30,0xfc,0x51,0xa6,0x75,0x6a,0x8,
0xa9,0x35,0xf8,0x9d,0x2b,0x5c,0xc0,0xf0,0x99,0x83,0x75,0x2d,0x7,0xf3,0xdd,0x9d,
0x4f,0x61,0xa0,0x77,0x3b,0x9b,0x40,0x5a,0x54,0xda,0xaa,0x1f,0xc0,0xf9,0x7e,0x0,
0xd0,0xdb,0xd5,0xb3,0xda,0x87,0x40,0xb4,0x62,0xb8,0xc3,0x7,0x51,0xc6,0xd4,0x53,
0xf1,0x1b,0x3a,0xfd,0x0,0xa6,0xae,0x9c,0xc7,0xf0,0x99,0xcf,0xd7,0x75,0xc,0xf,
0x6d,0x3e,0x80,0xb1,0x15,0x1a,0x6e,0xa6,0xc6,0xa9,0xa5,0xea,0xf7,0xe2,0xdc,0xcb,
0x1d,0x31,0x85,0x82,0x88,0xca,0x18,0xfe,0x88,0x32,0x64,0x6c,0xd7,0x91,0x9a,0xe7,
0xf8,0xd,0x9f,0xf9,0x7c,0xf8,0x4b,0x7c,0xfc,0xbd,0x13,0xf8,0xfa,0xc5,0x27,0xeb,
0x3a,0x96,0x87,0x36,0x1f,0xc0,0xd4,0xdd,0x6f,0xa0,0xb7,0x9b,0x15,0x91,0x56,0x51,
0x4b,0xd5,0x6f,0x6c,0xfa,0x47,0x4d,0x3a,0x9a,0xd6,0xd2,0xbf,0x76,0xd3,0x6a,0x1f,
0x2,0xd1,0x8a,0x61,0xf8,0x23,0xca,0x80,0xde,0xee,0x1e,0x8c,0xed,0x3a,0x52,0xf3,
0x3a,0x7e,0x5f,0x3e,0xfb,0x28,0xc6,0xdf,0x33,0xb7,0xe5,0x3a,0x7c,0xf1,0x9,0x1c,
0xad,0xb3,0x79,0xe3,0xf6,0xde,0xed,0x98,0xd8,0xf7,0x2a,0x7f,0x31,0xb6,0x80,0x5a,
0xaa,0x7e,0x97,0x17,0x67,0x23,0x7f,0x6f,0x3a,0x15,0xe7,0xfc,0x51,0x27,0x61,0xf8,
0x23,0x6a,0x92,0xa4,0x81,0x49,0x6d,0xd9,0x56,0x6b,0xf0,0x3b,0x3a,0x7d,0x2c,0x76,
0x6e,0xe4,0xc8,0xd9,0x47,0x70,0xae,0x70,0xa1,0xa6,0xd7,0x55,0x6e,0xef,0xdd,0x8e,
0xa9,0xbb,0xdf,0xc4,0x60,0xdf,0x9e,0xba,0x5e,0x87,0x9a,0x6b,0x74,0xe7,0xd3,0x35,
0x54,0xfd,0xd8,0xd9,0xd,0x4,0xc1,0x8f,0xfb,0xfa,0x52,0x27,0x61,0xc3,0x7,0x51,
0x93,0xf4,0xaf,0xbd,0xa5,0xea,0x63,0x6,0xd6,0xef,0xa8,0xab,0x39,0x43,0x35,0x78,
0xc4,0x29,0x2c,0x2d,0x60,0xf0,0xe4,0x7e,0x4c,0xdd,0xf5,0x6,0x6e,0xa9,0xa3,0x7a,
0xd7,0xd3,0xb5,0xe,0xaf,0xef,0x7b,0x5,0x5f,0x3e,0xfb,0x68,0xc7,0x36,0xe1,0x64,
0x59,0xad,0x7b,0x4e,0xb7,0xfb,0x90,0x6f,0x6f,0x77,0xf,0x46,0x6e,0x35,0xab,0xa1,
0xf6,0x2,0xf0,0x83,0x7d,0x7b,0x52,0x57,0x4c,0x89,0x5a,0x1d,0xc3,0x1f,0x51,0xa,
0x8d,0x1c,0xfe,0x1c,0xd9,0xf2,0x30,0xbe,0xbb,0xf3,0xa9,0x9a,0x9f,0x7f,0xae,0x70,
0x1,0x83,0x27,0xf7,0x57,0x7d,0x5c,0x61,0x69,0x1,0x43,0x93,0x9f,0xaa,0x2b,0x64,
0x2a,0xdf,0xdd,0xf9,0x14,0x86,0x36,0xdc,0x8b,0xa1,0xc9,0x7,0xda,0x6a,0x7,0x95,
0x56,0x36,0xb0,0x7e,0x7,0xc6,0xf7,0xbc,0x90,0xfa,0x79,0x9d,0xd0,0xe8,0xd1,0xbf,
0xf6,0x16,0x1c,0xda,0xd6,0xd8,0xfd,0xc1,0x89,0xda,0x1,0x87,0x7d,0x89,0x52,0x48,
0x52,0xcd,0xab,0xa6,0xb7,0xbb,0x7,0xe3,0x7b,0x5e,0xa8,0x2b,0xf8,0x5d,0x5e,0x9c,
0xc5,0xe0,0xc9,0xfd,0x89,0x3,0xd8,0xd4,0x95,0xf3,0x18,0x3c,0xb9,0x1f,0xb,0xcb,
0x57,0x6b,0xfe,0x99,0xca,0xde,0xbe,0xdd,0x98,0xb9,0xef,0x6d,0xc,0x6d,0xbc,0xb7,
0xee,0xd7,0xa2,0xfa,0xa8,0x29,0x3,0xb5,0x84,0xfa,0x46,0x57,0xfd,0xb2,0xd8,0x18,
0x34,0x75,0xe5,0x3c,0x4e,0xcd,0x4f,0x36,0xfe,0x75,0xb,0x9d,0xb5,0xe6,0x28,0xb5,
0x1f,0x86,0x3f,0xa2,0x15,0x34,0xd8,0xb7,0x7,0x53,0x77,0xbd,0x81,0xfb,0x37,0xdc,
0x53,0xf3,0x6b,0x2c,0x2c,0x5f,0xc5,0xd0,0xe4,0xa7,0x52,0x57,0xde,0x1a,0x19,0x0,
0x7b,0xba,0xd6,0xe1,0x27,0xbb,0xff,0x11,0x13,0xfb,0x5e,0xe5,0x5c,0xc0,0x55,0x54,
0x4b,0x77,0x2f,0xd0,0x9c,0x46,0x8f,0x81,0xde,0x6c,0x36,0x4c,0x34,0x63,0x68,0x9b,
0x55,0x6f,0x6a,0x75,0xc,0x7f,0x44,0x2b,0xe4,0xf0,0xb6,0xc7,0xf1,0xfa,0xbe,0x57,
0xea,0x9a,0x7b,0xb7,0xb0,0x7c,0x35,0x98,0xc3,0x57,0xe3,0x6e,0x27,0x8d,0xc,0x80,
0x40,0x50,0x5,0x7c,0x7d,0xdf,0x2b,0x9c,0x33,0xb5,0x4a,0x6a,0x9d,0x86,0xd0,0x49,
0x8d,0x1e,0x63,0xd3,0xc7,0x70,0xb9,0xc1,0xc3,0xdb,0xed,0xbc,0x97,0x38,0x75,0x6,
0x86,0x3f,0xa2,0x26,0x3b,0xbc,0xed,0x71,0xcc,0xdc,0x77,0xa9,0xee,0xb9,0x47,0xf5,
0x6,0x3f,0xa5,0xd1,0x1,0x10,0xe0,0xe,0x11,0xab,0xe5,0xf0,0xc5,0x27,0x6a,0xa,
0x36,0xa3,0xef,0x76,0x56,0xd3,0xce,0xe1,0x8b,0x4f,0x34,0xec,0xb5,0x9a,0x31,0x8c,
0x4c,0xb4,0xd2,0x18,0xfe,0x88,0x9a,0xe8,0xf0,0xb6,0xc7,0x71,0x68,0xdb,0x63,0x75,
0x55,0xfb,0x80,0xa0,0xb9,0x63,0xe0,0xb5,0x3b,0x1b,0xb6,0xbf,0x71,0x23,0x3,0x60,
0x27,0x34,0xe,0x64,0xd5,0xcc,0xe2,0x2c,0x6,0xfe,0xe5,0x23,0xf8,0x5e,0x8a,0xbd,
0x79,0x8f,0x4e,0x1f,0xeb,0xb8,0x61,0xcb,0x46,0x56,0xff,0xda,0xbd,0x43,0x9a,0x3a,
0x3,0xc3,0x1f,0x51,0xa,0x69,0x26,0xb5,0xf,0xac,0xdf,0xd1,0x90,0x89,0xe1,0xaa,
0xab,0xb7,0xd1,0x1,0x6b,0xea,0xca,0x79,0xf4,0x1f,0xdf,0x5a,0xd7,0x3a,0x80,0xe7,
0xa,0x17,0x1a,0x5a,0x55,0xa1,0xf4,0xa,0x4b,0xb,0x18,0x79,0xeb,0x11,0x7c,0xf4,
0xe4,0xc7,0x13,0x7d,0x97,0x53,0x75,0xae,0xfb,0xd8,0xaa,0x1a,0xf1,0xf7,0x74,0x61,
0xf9,0x2a,0xc6,0xe7,0xb8,0x28,0x36,0xb5,0x3e,0x86,0x3f,0xa2,0x14,0xd2,0x4c,0x6a,
0xef,0xe9,0x5a,0x87,0xf1,0xf7,0x4e,0xe0,0xa3,0x27,0x3f,0x5e,0x73,0xd5,0xe1,0xe8,
0xf4,0xb1,0x54,0x5d,0xbd,0x69,0xa9,0x75,0x0,0x6b,0x19,0xca,0x52,0xc7,0xd6,0xa8,
0x6a,0x24,0xd5,0x67,0x62,0xfe,0x34,0x6,0x5e,0xfb,0x8,0xbe,0x7c,0xf6,0xd1,0x8a,
0x15,0xdd,0x66,0x7d,0x5f,0x59,0xdf,0x21,0x63,0x7c,0xee,0x44,0xdd,0x95,0xee,0xc3,
0x17,0x9f,0xe8,0xb8,0xaa,0x29,0xb5,0x27,0x86,0x3f,0xa2,0x26,0x9b,0x98,0x3f,0x8d,
0x81,0x7f,0xf9,0x48,0xea,0xad,0xd6,0xbe,0x7e,0xf1,0x49,0xc,0x9f,0x39,0xd8,0xf4,
0x5f,0x36,0x2a,0x0,0x26,0x3d,0xbe,0x85,0xe5,0xab,0xf8,0xc4,0xe4,0xa7,0x56,0xe4,
0xd8,0x28,0xbd,0xd1,0x77,0x9e,0x41,0xff,0xf1,0xad,0x75,0x6f,0xed,0x97,0x56,0x6f,
0x57,0xf6,0x96,0x7a,0xd1,0x15,0x96,0x16,0xea,0x9a,0x9b,0xfa,0xe2,0xdc,0xcb,0x5c,
0xe0,0x9c,0xda,0x6,0xc3,0x1f,0x51,0xa,0xb5,0x76,0x57,0x16,0x96,0x16,0x30,0x7c,
0xe6,0x20,0x3e,0x31,0xf9,0xa9,0xaa,0xd5,0x7,0x15,0xae,0x56,0x7a,0x38,0x75,0xf8,
0xcc,0x41,0x7c,0xb6,0xc2,0x6e,0x21,0x40,0xf0,0xb,0xb0,0xff,0xf8,0x56,0xee,0x7,
0x9b,0x71,0xea,0xef,0xdb,0x47,0x4f,0x7e,0x3c,0x52,0xd5,0xed,0xe4,0x4e,0xd5,0x5a,
0xdf,0xfb,0x8b,0x73,0x2f,0x63,0xf8,0xcc,0xe7,0x1b,0x7c,0x34,0x44,0xab,0x87,0x3b,
0x7c,0x10,0xa5,0x90,0xb6,0x71,0x63,0x60,0xfd,0xe,0x63,0x98,0x6d,0xfc,0xbd,0x13,
0x18,0xb8,0x72,0x27,0xc6,0xf7,0xbc,0xe0,0xdc,0x4b,0xf4,0xd4,0xfc,0x24,0x86,0xcf,
0x7c,0x7e,0xd5,0x1a,0x28,0xc6,0xa6,0x8f,0x61,0xaa,0x70,0x1,0xe3,0xbb,0xff,0xd1,
0x78,0xaf,0x97,0x17,0x67,0x31,0x72,0xf6,0x11,0x86,0xbe,0x16,0x33,0x31,0x7f,0x1a,
0x83,0x27,0xf7,0x87,0x5b,0x98,0x35,0xb3,0x3a,0x37,0x3e,0x77,0x2,0xbd,0xdd,0x3d,
0x89,0xa6,0x46,0x14,0x96,0x17,0x30,0xfa,0xce,0x33,0x2b,0x1e,0x44,0xd3,0xfe,0xbc,
0xa3,0xd3,0xc7,0x30,0x36,0x7d,0xac,0xa3,0x3,0x33,0xb5,0x27,0xef,0xab,0x53,0x7f,
0x2d,0xa5,0x94,0x90,0x0,0x24,0x24,0x84,0x14,0x90,0x90,0xf0,0xa5,0xf,0x29,0x25,
0x4,0x4,0x7c,0xe9,0xc3,0x97,0x3e,0x84,0x14,0x28,0xa,0x3f,0xbc,0x5e,0x94,0x45,
0x2c,0x8b,0xe5,0xd2,0x79,0x70,0x79,0x49,0x2c,0x61,0xa9,0x74,0x7e,0x43,0xdc,0xc0,
0x92,0x58,0xc2,0x75,0xff,0x6,0x6e,0x88,0x1b,0xb8,0xee,0x5f,0xc7,0xd,0x7f,0x29,
0x78,0x6d,0xc8,0xd5,0x7e,0xef,0x44,0xa9,0xf4,0x76,0xf7,0xa4,0xda,0x23,0x77,0x61,
0xf9,0x2a,0x6,0x5e,0xbb,0xd3,0x19,0xe4,0xd4,0xce,0xc,0x2a,0x0,0x2e,0x2c,0x5f,
0xc5,0xe1,0x8b,0x4f,0x64,0x66,0x58,0x49,0xed,0x89,0x3a,0xd8,0xb7,0x7,0x13,0xf3,
0xa7,0x31,0xfa,0xee,0x33,0x1c,0xe2,0xa5,0xb6,0x30,0x7a,0xc7,0xd3,0x18,0xde,0xfc,
0x99,0xc8,0xe2,0xd8,0xe7,0xa,0x17,0x50,0x58,0x5a,0xc0,0xc4,0xfc,0x69,0x4c,0x15,
0xce,0xf3,0x1f,0x3a,0xd4,0x7c,0x12,0x80,0x0,0xb0,0x2c,0x81,0xeb,0x0,0x7e,0x23,
0x4b,0xa7,0xd2,0xe5,0x6b,0xa5,0xcb,0xd7,0x4a,0xb7,0x5f,0x2b,0x5d,0xbe,0x21,0x81,
0xe5,0xd2,0xf3,0x6b,0x33,0xc9,0xf0,0x47,0x94,0x42,0xff,0xda,0x4d,0x89,0xb7,0x78,
0x9b,0x59,0xbc,0x5c,0xb1,0x82,0xa7,0x2,0xd6,0xcc,0xe2,0x65,0x8c,0xcf,0x9d,0x60,
0xb8,0x22,0x22,0xea,0x24,0xab,0x18,0xfe,0x38,0xec,0x4b,0x94,0xc2,0xcc,0xe2,0x6c,
0xc3,0x86,0x64,0xb,0x4b,0xb,0x5c,0x26,0x85,0x88,0x88,0x56,0x1c,0x1b,0x3e,0x88,
0x88,0x88,0x88,0x3a,0x8,0xc3,0x1f,0x11,0x11,0x11,0x51,0x7,0x61,0xf8,0x23,0x22,
0x22,0x22,0xea,0x20,0xc,0x7f,0x44,0x44,0x44,0x44,0x1d,0x24,0x55,0xf8,0x93,0xb2,
0x72,0x6b,0x9,0x3b,0x78,0x89,0x88,0x88,0x88,0xb2,0x8d,0x95,0x3f,0x22,0x22,0x22,
0xa2,0xe,0x92,0x2a,0xfc,0x79,0x9e,0x57,0xf9,0x7e,0x54,0xbe,0x9f,0x88,0x88,0x88,
0x88,0x56,0x57,0x43,0x87,0x7d,0x89,0x88,0x88,0x88,0x28,0xdb,0x1a,0x3a,0xec,0xcb,
0x39,0x7f,0x44,0x44,0x44,0x44,0x4d,0xd4,0x80,0xa8,0xc5,0x39,0x7f,0x44,0x44,0x44,
0x44,0x1d,0x84,0xe1,0x8f,0x88,0x88,0x88,0xa8,0x83,0x84,0xe1,0xcf,0x35,0x64,0xcb,
0x61,0x5c,0x22,0x22,0x22,0xa2,0x55,0xd4,0x84,0x28,0x66,0x54,0xfe,0x54,0x43,0x87,
0xde,0xd8,0x51,0xa9,0xc9,0x83,0xe1,0x90,0x88,0x88,0x88,0xa8,0xb5,0x44,0x86,0x7d,
0x19,0xe8,0x88,0x88,0x88,0x88,0x32,0xa8,0x41,0x11,0x2d,0x57,0xeb,0x6b,0x31,0x24,
0x12,0x11,0x11,0x11,0xd5,0x69,0x15,0xe2,0x54,0xae,0x11,0x6b,0xf7,0x31,0x6,0x12,
0x11,0x11,0x11,0xd5,0x48,0x6a,0x27,0xfd,0xb6,0x6a,0x97,0x6b,0x64,0xce,0xf9,0x2b,
0xbd,0x62,0xe4,0xbc,0x81,0x8b,0x3b,0x57,0xdb,0x25,0x84,0x88,0x88,0x88,0x88,0xd0,
0xf0,0xd0,0xa7,0xe4,0x82,0xa0,0xd9,0xb8,0xa6,0xe,0x3b,0x38,0x12,0x11,0x11,0x11,
0x51,0xa,0x7a,0x15,0x30,0x3c,0x6f,0x5c,0xae,0x2a,0x2f,0xf5,0x62,0xbd,0x68,0xa5,
0xeb,0xae,0x8a,0x60,0x92,0xb0,0xc7,0xbd,0x7f,0x89,0x88,0x88,0x88,0x2c,0xae,0xb0,
0x7,0x94,0x3,0x9f,0xeb,0xbe,0x3a,0xe4,0xf4,0xd0,0x26,0x21,0x21,0xa5,0x44,0xe4,
0x36,0xad,0x9a,0x97,0xa4,0xb2,0xc7,0xaa,0x1f,0x11,0x11,0x11,0x51,0xd,0xec,0xb9,
0x7f,0x4d,0x10,0xbb,0xc8,0x73,0xb5,0xeb,0xfa,0xed,0x8d,0x9c,0x13,0x48,0x44,0x44,
0x44,0xd4,0x91,0x5c,0x71,0xca,0x9e,0xf7,0xd7,0xa8,0x86,0xf,0xbd,0xda,0x67,0x54,
0xfd,0xa4,0x79,0x9b,0x9a,0x1f,0xc8,0xc0,0x47,0x44,0x44,0x44,0xd4,0x44,0xf6,0x50,
0x70,0x43,0x1b,0x3e,0xf4,0xe0,0x27,0xcb,0xc1,0x4e,0x1f,0xe2,0x55,0xf7,0x55,0x3c,
0x46,0x86,0x41,0x22,0x22,0x22,0xa2,0x74,0x5c,0x1d,0xbd,0xb2,0xc2,0xc9,0x7e,0x4e,
0xd,0x72,0xae,0x79,0x7c,0x71,0xa1,0x4f,0x4a,0x19,0x9e,0xd4,0xe3,0xec,0xf9,0x81,
0x2e,0x6c,0xf4,0x20,0x22,0x22,0x22,0x2a,0x89,0x74,0xf2,0x6a,0x97,0x85,0xac,0xbc,
0xc6,0x5f,0x23,0x86,0x7d,0x63,0xab,0x7e,0x5a,0xf5,0xaf,0xa1,0xeb,0xfc,0x31,0x8,
0x12,0x11,0x11,0x11,0x95,0xc5,0x2d,0xf2,0xac,0x9f,0x44,0xe3,0x7e,0x5c,0xec,0x9c,
0x3f,0xbb,0xc3,0xd7,0xd5,0x0,0x12,0x37,0x44,0x1c,0x47,0xf,0x7e,0xc,0x81,0x44,
0x44,0x44,0xd4,0xd1,0xe2,0x76,0xf5,0x30,0x82,0x9f,0x74,0x57,0x8,0xeb,0x90,0xb3,
0x2b,0x7c,0xf6,0x39,0xa0,0xc2,0xa1,0x19,0x4,0x5d,0x61,0x2f,0x69,0x85,0x90,0xbb,
0x7c,0x10,0x11,0x11,0x51,0x47,0x72,0xe,0xf9,0x6a,0x1,0x4f,0xd8,0xf7,0xa1,0x5c,
0xf9,0x6b,0xd0,0x48,0x6c,0xce,0xe,0x7e,0xc1,0xcf,0xd2,0xaa,0x7e,0x46,0x0,0x34,
0x83,0x9f,0xdd,0xd,0x6c,0x5f,0xd6,0xb1,0xd2,0x47,0x44,0x44,0x44,0x54,0xe2,0xea,
0xe6,0xd5,0x77,0xf3,0x10,0xb0,0x82,0x1f,0x1a,0x52,0xf5,0x3,0x54,0xf8,0xd3,0x82,
0x9d,0x90,0xc2,0x38,0xb7,0xc3,0x9e,0xab,0xe9,0xa3,0xfc,0x3e,0x38,0xf4,0x4b,0x44,
0x44,0x44,0xe4,0x64,0xc7,0x24,0x3b,0x0,0xa,0x98,0x41,0x2f,0xae,0xdb,0xb7,0x4e,
0x55,0x87,0x7d,0xed,0x21,0x5f,0xf3,0x98,0x4b,0xf7,0x39,0x96,0x8b,0xa9,0x84,0xa1,
0x8f,0x88,0x88,0x88,0x3a,0x96,0xd4,0x2e,0xd8,0x95,0x3d,0x7b,0xa8,0x57,0xd,0xf7,
0xea,0xc3,0xc1,0x75,0xca,0x8b,0x52,0xfb,0x48,0x58,0xe9,0x93,0x12,0x2,0x22,0x38,
0xd7,0x6f,0xb3,0x2a,0x81,0x76,0x27,0x30,0xd7,0xf9,0x23,0x22,0x22,0x22,0x8a,0xe1,
0xea,0xe4,0x35,0x42,0x9f,0xb4,0x42,0x9f,0x7d,0xdd,0xf1,0x3a,0x35,0xca,0xdb,0x95,
0x3f,0x15,0xfc,0xca,0xc3,0xc0,0x66,0x55,0xcf,0x8,0x81,0x15,0x86,0x7e,0x93,0xc,
0x1,0x3,0x41,0x15,0x30,0xe9,0x63,0x89,0x88,0x88,0x88,0xda,0x82,0x3d,0xdf,0x4f,
0x54,0x39,0x35,0x70,0xb9,0x17,0x77,0xe5,0x4f,0xa,0xed,0x78,0x82,0xeb,0x2,0x22,
0x32,0xf7,0xf,0x28,0x37,0x85,0xb8,0x1a,0x41,0x74,0x1e,0xbc,0xb0,0xcb,0x97,0xc3,
0xbe,0x44,0x44,0x44,0xd4,0x31,0x2a,0x2d,0xe7,0x62,0x4,0x3c,0x69,0x85,0x3e,0x69,
0xde,0xd7,0x20,0xd1,0xca,0x5f,0xd8,0xf0,0x61,0x36,0x80,0xa8,0xfb,0x54,0x8,0x74,
0x2d,0xfb,0x62,0x87,0x3e,0x67,0x8,0xf4,0x3c,0x40,0x6,0xe7,0x1c,0x2a,0x26,0x22,
0x22,0xa2,0x8e,0xa2,0xf,0xf7,0xba,0x2a,0x7b,0x95,0x4e,0x8d,0xb1,0x60,0x56,0xfe,
0xc2,0xc0,0x17,0xed,0xfc,0xd,0x43,0x9f,0xa,0x81,0x52,0x4,0x8f,0xb3,0xb6,0x7a,
0xab,0x65,0x2e,0x20,0x87,0x7e,0x89,0x88,0x88,0xa8,0x2d,0xe9,0xf1,0x46,0xf,0x70,
0x6a,0x4e,0x9f,0xaa,0xee,0xf9,0xa5,0x93,0x5e,0xed,0xf3,0x1,0xf8,0x32,0x38,0x6f,
0x64,0xb7,0xaf,0x90,0xe2,0xd7,0xbe,0xf0,0x4b,0xf3,0xfd,0x2a,0x4,0x3f,0x47,0xe5,
0x2f,0x78,0x4f,0x66,0xd8,0x73,0xd1,0x87,0x7b,0xd5,0x90,0x2f,0x87,0x7e,0x89,0x88,
0x88,0xa8,0xad,0xb9,0x86,0x7b,0xab,0x55,0xfa,0x54,0x0,0x54,0x61,0xd0,0x47,0xa3,
0x2b,0x7f,0xef,0xe7,0xa4,0x94,0xbf,0x12,0x90,0xf0,0x55,0x35,0xf,0xd1,0xf3,0xb0,
0x11,0xc4,0x18,0x1a,0x46,0xb4,0x2b,0x18,0x32,0x1c,0x92,0xb6,0x97,0x86,0x31,0x2,
0xa0,0xba,0xec,0x71,0xcd,0x3f,0x22,0x22,0x22,0x6a,0x43,0x15,0xd7,0xf4,0x73,0xcc,
0xed,0xd3,0x43,0x5e,0x11,0xe5,0x8a,0x9f,0xaa,0xfe,0x35,0xce,0xfb,0x39,0x5f,0x8a,
0xf7,0x55,0xb8,0x53,0xc3,0xb9,0xbe,0xf4,0x9d,0xe7,0xf6,0xf0,0xaf,0xbd,0x2b,0x48,
0xb5,0x7d,0x7e,0xd9,0xf0,0x41,0x44,0x44,0x44,0x1d,0x27,0x6e,0x21,0x67,0x15,0xf8,
0x54,0xb5,0xaf,0x88,0xe0,0xd4,0xc4,0x21,0x5f,0x0,0xbf,0xca,0x9,0x88,0x5f,0x44,
0x42,0x9e,0xa3,0xfa,0x67,0x9c,0x4b,0x69,0x6,0x42,0x6d,0xbe,0x20,0x90,0x7c,0x9e,
0x5f,0x92,0xdb,0x88,0x88,0x88,0x88,0x5a,0x4a,0xa5,0x35,0xfd,0xd4,0x5c,0x3f,0x7b,
0x78,0x57,0x55,0xfb,0x54,0xe5,0x4f,0x9d,0x54,0x40,0x6c,0x9c,0xd9,0xbc,0x90,0x62,
0xd6,0xb5,0xc6,0x9f,0xbd,0xcd,0x9b,0xde,0x5,0x1c,0xd7,0xf1,0x6b,0x77,0x7,0xc7,
0xcd,0x7,0xd4,0xe7,0xfd,0xb1,0xd1,0x83,0x88,0x88,0x88,0xda,0x86,0x2b,0xf8,0xe9,
0xc3,0xbd,0x7a,0xf5,0xcf,0x77,0x9c,0x8a,0x52,0xb,0x83,0x68,0xf4,0x90,0x2f,0x0,
0xfc,0x22,0x2f,0xa4,0x78,0xc7,0xe,0x7d,0x80,0x36,0x9f,0x2f,0x3c,0x2f,0x7,0x44,
0x7b,0x78,0xb8,0x5c,0xfd,0xab,0xbe,0xc8,0xb3,0xe7,0xc1,0xf8,0x60,0xec,0x25,0x5f,
0x18,0x8,0x89,0x88,0x88,0xa8,0x25,0xb9,0xe6,0xf9,0xa9,0x73,0xbb,0xa9,0x43,0xd,
0xe9,0x16,0xa5,0x19,0xf8,0x8a,0x0,0x96,0x65,0x70,0x7f,0x11,0x8d,0x1e,0xf2,0x5,
0x80,0x77,0xf2,0xbe,0xf4,0xa7,0x2a,0x85,0xbe,0xb8,0xa5,0x5f,0xf4,0x21,0xe2,0xca,
0xd5,0x3f,0x22,0x22,0x22,0xa2,0x36,0x67,0x7,0x1e,0xa1,0x9d,0xdb,0xb,0x36,0xab,
0x0,0xa8,0xf,0xef,0x2e,0xcb,0xd2,0x49,0x5d,0x47,0x79,0x18,0xb8,0x71,0xe6,0xe4,
0xa5,0xe2,0xfb,0x79,0x5f,0xfa,0x6f,0x4b,0x48,0x5f,0x42,0xae,0x49,0x12,0xfa,0xc2,
0xe5,0x5f,0xb4,0x39,0x80,0x41,0x10,0x2c,0xdf,0x5e,0xa9,0xfa,0x17,0xe,0xf9,0x96,
0x16,0x7b,0x66,0x3c,0x24,0x22,0x22,0xa2,0x96,0x56,0x29,0xf8,0xe9,0xfb,0xf6,0x86,
0xa1,0x4f,0x35,0x77,0xc8,0x72,0xd0,0x33,0x42,0x60,0xe9,0x36,0xbf,0xe1,0x47,0xfa,
0x73,0x0,0xc8,0xf9,0xd2,0xbf,0x26,0xa4,0xf8,0xb9,0x2f,0x7d,0xad,0xbb,0x57,0x9d,
0xfc,0xc8,0xd0,0x6e,0x18,0xf6,0xec,0xe0,0x87,0xe8,0x42,0xd0,0x71,0x21,0x90,0x4b,
0xbc,0x10,0x11,0x11,0x51,0x5b,0xa8,0x16,0xfc,0x22,0x8b,0x36,0xc3,0xaa,0xfa,0x69,
0x1,0x30,0x3c,0x95,0x86,0x82,0x85,0xe3,0xf5,0xeb,0xf3,0x33,0x20,0x8,0x7f,0xf0,
0xa5,0x3f,0xe9,0x3b,0x42,0x9f,0xde,0x5,0x1c,0x77,0x9b,0xb0,0xe6,0x1,0x3a,0xf7,
0x1,0x76,0x34,0x7d,0xe8,0xf4,0x30,0x48,0x44,0x44,0x44,0x94,0x79,0xae,0xb9,0x78,
0xae,0x8a,0x9f,0x1d,0xfc,0xf4,0xaa,0xdf,0x32,0x80,0x25,0x94,0x87,0x7c,0x97,0xb4,
0xdb,0x1a,0x5f,0xf5,0x3,0x80,0x49,0x0,0xc8,0x95,0x16,0x78,0x3e,0xe9,0xa,0x79,
0xbe,0xf4,0x51,0x94,0x45,0xe7,0xed,0xaa,0x42,0x68,0x56,0x0,0xb5,0x65,0x5f,0xb4,
0x1d,0x41,0x5c,0x58,0xf1,0x23,0x22,0x22,0xa2,0x96,0xe4,0x6a,0xec,0x70,0x55,0xfc,
0xf4,0x75,0xfc,0x54,0x93,0x87,0x51,0xe5,0x93,0x41,0xd0,0x5b,0x2,0x70,0xa3,0x74,
0xbe,0xd4,0xb4,0xaa,0xdf,0x35,0x94,0x2a,0x7f,0x79,0x5f,0xfa,0x90,0x52,0x9e,0x94,
0x90,0xd7,0x84,0x14,0x37,0x55,0x5a,0xe6,0x45,0x9f,0xb,0xa8,0x42,0x9f,0x31,0x7,
0x50,0x9f,0xb,0x8,0xa1,0x75,0x36,0xcb,0xd8,0x21,0x60,0x75,0x7f,0xf9,0xf3,0xe3,
0x1c,0x40,0x22,0x22,0x22,0xca,0x20,0x57,0x44,0xd1,0x2b,0x80,0xe1,0x2,0xce,0xae,
0xe6,0xe,0x19,0x9d,0xd7,0xa7,0xaa,0x7e,0x37,0x4a,0x55,0xbf,0x1b,0xb2,0x99,0x55,
0xbf,0x93,0xf2,0x52,0xf1,0x1a,0x0,0xe4,0x7d,0xe1,0x43,0x42,0x5e,0x93,0x90,0x27,
0x85,0x14,0xf7,0x54,0x5b,0xe3,0xaf,0x62,0x3,0x48,0x29,0xf8,0x5,0xd5,0x41,0x6d,
0x68,0x58,0x9b,0xb,0x8,0x54,0xf,0x83,0xe1,0x87,0x19,0x87,0x45,0x43,0x22,0x22,
0x22,0x5a,0x49,0xae,0x5c,0x22,0xb4,0xfb,0xc2,0xe5,0x5c,0xac,0xe6,0xe,0x3d,0xf8,
0xe9,0xd5,0xbe,0x1b,0xa5,0xb0,0x77,0x1d,0x41,0xd5,0xef,0x3a,0xca,0x95,0xbf,0xc6,
0x57,0xfd,0x0,0xe0,0x25,0x75,0x21,0xa8,0xfc,0x5,0x7f,0xfe,0xb7,0x90,0xe2,0x9e,
0x6a,0x81,0xcf,0x15,0xfa,0xec,0xe,0x60,0xdf,0x1a,0xfe,0x35,0xf6,0xff,0x2d,0xbd,
0x19,0x3d,0x0,0x2a,0x12,0x32,0xd9,0x9b,0xd5,0x1f,0xc3,0x20,0x48,0x44,0x44,0x44,
0xcd,0x92,0xa4,0xda,0xa7,0xce,0xf5,0xe0,0xa7,0xb6,0x69,0xd3,0x83,0xdf,0x92,0x2c,
0x7,0x3c,0x15,0xf8,0xae,0xcb,0xe0,0xa4,0xaa,0x7e,0xcd,0x9,0x7e,0x3e,0x80,0x1f,
0xab,0x2b,0x61,0xf8,0x13,0x52,0xbc,0x6c,0xe,0xfd,0x56,0xdb,0xe9,0xc3,0x3c,0x2f,
0xd,0x1f,0x43,0xc0,0xda,0xfa,0xcd,0xea,0x2,0x56,0x7f,0x82,0xcf,0x4e,0xab,0x6,
0x26,0xd,0x7e,0x36,0x6,0x41,0x22,0x22,0x22,0x6a,0xb4,0x6a,0xa1,0x4f,0xaf,0xf6,
0xd9,0x4b,0xb9,0xb8,0x86,0x7a,0x55,0xf0,0xbb,0x51,0xa,0x7e,0x37,0x64,0x39,0xf8,
0x5d,0x47,0x70,0x5a,0xae,0x31,0xb,0x55,0xf7,0xaf,0xf2,0x52,0xf1,0x7d,0x75,0x45,
0xf,0x7f,0xef,0x4b,0xc8,0x1f,0xb,0x29,0x1f,0xc,0xc3,0x9c,0x1d,0xf2,0x8c,0x1d,
0x3f,0xa2,0x3b,0x80,0xe8,0x41,0x30,0x32,0xc,0x2c,0xfc,0xb0,0x22,0x68,0xcf,0x21,
0x34,0x3e,0x48,0xfd,0x1c,0x88,0x6,0xba,0x4a,0x1,0x8f,0x41,0x90,0x88,0x88,0x88,
0x6a,0x15,0x17,0xbc,0x5c,0xa1,0x2f,0xc,0x7f,0x5a,0xf0,0x73,0x76,0xf5,0xc2,0xac,
0xf8,0x5d,0x7,0x70,0x4d,0x2,0xbf,0x51,0x97,0x11,0x4,0xc0,0xe6,0xd,0xf7,0x2,
0xc0,0xdf,0xea,0x57,0xb4,0xf0,0x27,0x21,0x21,0x7f,0x28,0xa4,0x78,0xd0,0xd5,0xcc,
0x11,0x5f,0xf5,0x83,0xb9,0xc4,0x8b,0xbd,0xf4,0xb,0x44,0x39,0xf8,0x69,0x55,0x40,
0x15,0x26,0x8d,0xf,0x14,0xa8,0xfe,0xa6,0xd5,0xfd,0x9e,0x75,0x1e,0xf7,0x38,0x85,
0x61,0x90,0x88,0x88,0x88,0x6c,0x95,0x72,0x47,0x9a,0xd0,0xa7,0x6f,0xdb,0xa6,0xf6,
0xe5,0x35,0x3a,0x7a,0x4b,0x15,0xbf,0x6b,0x5a,0xe8,0xfb,0x8d,0x2c,0x5d,0x2f,0x75,
0x6,0x37,0x27,0xf8,0xfd,0x12,0xc0,0x4f,0xf4,0x1b,0xf2,0xbe,0x19,0xe8,0x26,0x7d,
0xe9,0xff,0x4c,0x42,0xfe,0xbe,0x1e,0xfa,0xca,0x43,0xba,0xd1,0x2a,0x5f,0xfc,0xf0,
0xaf,0xde,0x1,0x2c,0xc3,0xc6,0xf,0x55,0x15,0x2c,0xb7,0x42,0x3b,0x3e,0x60,0x9d,
0x7,0x77,0x70,0x53,0xb7,0x57,0xa,0x79,0xfa,0x65,0x36,0x11,0x13,0x11,0x11,0x51,
0x1c,0xd7,0xe8,0xa3,0x1d,0xf8,0xf4,0xa2,0x55,0xdc,0x5e,0xbd,0x6a,0x1,0x67,0x7d,
0xa7,0xe,0x35,0x9f,0xef,0x7a,0x29,0xec,0x5d,0x3,0xb0,0xa8,0x55,0xff,0x8a,0x68,
0x66,0x4e,0xf9,0xbe,0xbc,0x54,0x34,0xfa,0x87,0xf3,0xf6,0xf0,0xae,0x2f,0xfd,0x6f,
0x4a,0x29,0x5f,0xb4,0xab,0x77,0x95,0xaa,0x7c,0xd2,0x5a,0xfa,0xa5,0xd4,0x41,0x1c,
0x59,0x0,0x5a,0x5,0xc3,0xf0,0xc3,0x71,0x55,0xfe,0xe2,0xb8,0x86,0x7f,0x3d,0xeb,
0x8e,0x6a,0xd5,0xc0,0xb8,0xd7,0xaa,0xf5,0x31,0x44,0x44,0x44,0x94,0x1d,0x49,0x3,
0x54,0xd5,0xe1,0x5d,0x69,0x86,0x3e,0xc0,0x2c,0x5a,0x85,0xf3,0xfb,0xa4,0x35,0xc7,
0xf,0x55,0x1a,0x3c,0x4a,0xc1,0x4f,0xd,0xfb,0xfe,0x6,0xcd,0x9c,0xe7,0x7,0x4,
0x3f,0xed,0x87,0xf6,0x8d,0xae,0xf0,0xf7,0x92,0x90,0xe2,0x82,0x84,0xdc,0x6e,0x37,
0x71,0xd8,0x21,0x2f,0x12,0x4,0xc3,0xcb,0x28,0x2f,0xf1,0x22,0xcb,0xcf,0x2d,0x77,
0xbf,0x58,0xa5,0x52,0xa0,0x7a,0x8,0x8c,0xad,0x0,0xca,0xf8,0xca,0xa0,0xeb,0x32,
0x11,0x11,0x11,0x51,0xa5,0x4a,0x9f,0x7e,0xd9,0xa8,0xf4,0x49,0xb3,0xe2,0x67,0x57,
0xfd,0x5c,0xfb,0xf3,0xea,0x55,0x3f,0x3d,0xfc,0xa9,0x6,0x8f,0xe6,0xcd,0xf3,0x3,
0x80,0x1f,0xca,0x4b,0xc5,0x5f,0xd9,0x37,0xba,0xc2,0x1f,0x84,0x14,0xdf,0x90,0x90,
0xff,0xa4,0x37,0x68,0x18,0x95,0x3d,0x3b,0x8,0x4a,0x9,0x7d,0xf8,0x58,0xaf,0xf6,
0x85,0xa1,0x4f,0x7d,0x38,0x7a,0x27,0x4c,0xb8,0xfd,0x9,0xca,0x55,0xc0,0xa4,0xc2,
0x2a,0x5f,0x4c,0xb2,0x63,0xf8,0x23,0x22,0x22,0x22,0x9b,0x2b,0xf4,0x1,0x66,0xe,
0x11,0x8e,0x73,0x63,0xa8,0xd7,0xaa,0xf8,0x55,0x5a,0xc4,0x59,0xaf,0xfa,0xe9,0x4b,
0xbb,0xa8,0xa1,0xde,0xe6,0x5,0xbf,0x5f,0x3,0x78,0xca,0x75,0x47,0x5c,0xf8,0xfb,
0x89,0x90,0x72,0x4a,0x40,0xc,0xd8,0xe1,0x2f,0x72,0x59,0x1b,0xfa,0x35,0x5e,0x4b,
0x1f,0xde,0x15,0x56,0xe8,0x53,0x41,0x50,0x4f,0xd3,0x69,0x1b,0x3f,0x80,0x52,0xa8,
0x4b,0xf1,0xa9,0x31,0x4,0x12,0x11,0x11,0x75,0x8e,0xa4,0x4d,0xa4,0x71,0xd5,0x3e,
0x55,0x9c,0x8a,0x84,0x3f,0x94,0xf3,0x8d,0x6a,0xee,0xb0,0x87,0x7c,0x8d,0xc5,0x9c,
0x51,0x5a,0xcb,0xaf,0x74,0xdd,0xb7,0x7e,0x6e,0x73,0x7c,0x47,0x5e,0x2a,0xfe,0xd2,
0x75,0x47,0xde,0x9e,0xbf,0x57,0xaa,0xf6,0xf9,0x42,0x8a,0xcf,0xb,0x88,0x37,0x84,
0x14,0x6b,0xf4,0x25,0x5b,0xec,0xd0,0x67,0xf,0xfd,0x4a,0x23,0xe8,0xc5,0x84,0x3e,
0xbb,0x64,0x6a,0x87,0x3f,0x7d,0xbc,0x9d,0x88,0x88,0x88,0xa8,0x5e,0x91,0x4a,0x5f,
0x85,0x73,0xbb,0x38,0x65,0x6f,0xd9,0x66,0xe7,0x1a,0xd7,0x90,0x6f,0x38,0xdf,0xf,
0xe5,0x0,0xd8,0xfc,0x61,0x5e,0xe5,0x17,0x0,0xbe,0x19,0x77,0x67,0x5e,0x9f,0x9b,
0xa7,0xcf,0xed,0xf3,0xa5,0xff,0x33,0x1,0xf1,0x43,0x5f,0xfa,0x7f,0x19,0xd9,0xb7,
0xb7,0x34,0xbf,0x4f,0x7f,0x6e,0xc5,0xd0,0xa7,0x56,0xb8,0xb6,0x3f,0x30,0x7b,0x35,
0xec,0x48,0x0,0x4,0x52,0x57,0x3,0x93,0x62,0xb0,0x24,0x22,0x22,0xea,0x1c,0xae,
0xdf,0xfb,0x46,0xee,0xb0,0x86,0x7d,0x5d,0x1,0x50,0x35,0x79,0x48,0x98,0x9d,0xbd,
0x6a,0x79,0x17,0xd7,0x90,0xaf,0xda,0xbf,0xd7,0xc7,0x4a,0x5,0x3f,0x0,0x18,0x91,
0x97,0x8a,0x4b,0x71,0x77,0x7a,0xbf,0x73,0x7c,0x5b,0x6c,0x25,0xcf,0x97,0xfe,0x7,
0x7c,0xe9,0xff,0x3f,0x21,0xc5,0x7,0xec,0x25,0x5b,0x8c,0x39,0x7d,0x71,0xc3,0xbb,
0xae,0x4e,0x18,0xfb,0xb1,0x7a,0xe5,0xcf,0x1e,0x63,0x77,0xcd,0x3,0x8c,0x1b,0xab,
0xaf,0x24,0x69,0xd9,0x97,0x88,0x88,0x88,0xda,0x57,0xea,0x26,0xf,0x69,0x6,0x3f,
0xfd,0xa4,0x8a,0x5a,0xe1,0xb0,0xaf,0xd6,0xe4,0xa1,0x86,0x7c,0x55,0x18,0x5c,0xb9,
0xd0,0x7,0x0,0x2f,0xc9,0x4b,0xc5,0xfb,0x2b,0x3d,0x20,0x1f,0xee,0xc3,0xb,0xe7,
0xce,0x1c,0xef,0xb,0x29,0xbe,0xe8,0x4b,0xff,0x98,0x5d,0xed,0x13,0x52,0x68,0xa1,
0x4e,0x9a,0xe1,0xce,0xfe,0x60,0x8c,0xe0,0x67,0x85,0xc1,0xf0,0x43,0x95,0xee,0x9,
0x96,0x80,0x7b,0x42,0x64,0xa5,0x49,0x92,0x71,0x81,0x91,0x88,0x88,0x88,0xda,0x9b,
0x74,0xfc,0xd2,0x8f,0xab,0xfa,0x29,0x76,0xde,0xd0,0xab,0x7e,0x61,0x81,0x4a,0x5a,
0xc5,0x2d,0x98,0x15,0x3f,0x35,0xe7,0x4f,0x5,0xc0,0xa2,0x16,0xfa,0x56,0x2e,0x87,
0xbc,0xf,0xe0,0xb,0xd5,0x1e,0x94,0x77,0x2e,0xca,0x8c,0xf2,0x96,0x6c,0x2,0xe2,
0x1f,0x7c,0x29,0xf6,0xa,0x29,0x3e,0xe7,0x5c,0xab,0x4f,0xff,0x30,0xd4,0x26,0xc6,
0x6a,0x2,0xa4,0x31,0xcc,0x2b,0xad,0xca,0x1f,0xdc,0xf3,0xff,0x80,0xf8,0x2e,0xe0,
0xb8,0xa4,0xe,0xeb,0xfe,0x4a,0x1f,0x32,0x83,0x21,0x11,0x11,0x51,0x67,0x89,0xcb,
0x7,0x7a,0x96,0x10,0xd2,0xbc,0xcd,0x5e,0xd7,0x4f,0x9f,0xae,0xa6,0xe7,0x99,0xa2,
0x23,0x0,0xea,0xcf,0x5b,0x59,0x7f,0x26,0x2f,0x15,0xe7,0xaa,0x3d,0x28,0x1f,0x5b,
0xf5,0x13,0x6a,0x47,0xe,0x1,0x21,0xc5,0x88,0x2f,0xfd,0xdd,0x42,0x8a,0xad,0x32,
0x7c,0xd3,0x56,0xb5,0xcf,0x75,0x5b,0x5c,0xe8,0x73,0xcd,0xff,0xd3,0xcb,0xab,0xf6,
0x1c,0x40,0xe3,0xcb,0xd1,0x8e,0xde,0xe,0x80,0x2a,0x2c,0xba,0xd4,0x32,0x5c,0x4c,
0x44,0x44,0x44,0xd9,0x97,0x74,0x24,0x50,0xbf,0xdd,0x55,0x50,0xb2,0xab,0x7e,0x7a,
0x93,0x87,0x5d,0xf1,0x53,0x45,0x2f,0x55,0xec,0x5a,0xdd,0xd0,0x7,0x0,0xff,0x5d,
0x5e,0x2a,0xbe,0x9c,0xe4,0x81,0xc6,0x52,0x2f,0x31,0xc1,0xf,0xbe,0xf4,0xaf,0x9,
0x29,0xfe,0x48,0xfa,0xf2,0xff,0x42,0xe0,0x66,0x23,0xbc,0xc5,0xd,0xe7,0xda,0x5b,
0x9d,0xb8,0x82,0x9f,0x9e,0xa2,0x5d,0xf3,0xff,0xc2,0x4a,0x60,0xe9,0x53,0x74,0xd,
0x3,0xbb,0xbe,0x40,0xc4,0xdc,0x16,0x77,0xbd,0xda,0xed,0x44,0x44,0x44,0xd4,0x7a,
0x2a,0xfd,0xfe,0xb7,0x47,0x16,0x9d,0xe1,0xf,0x5a,0x3e,0x71,0xe4,0x1c,0x75,0x9b,
0x5d,0xa8,0x5a,0x79,0x6f,0x2,0xf8,0xeb,0xa4,0xf,0x8e,0x2e,0xf5,0x22,0xd4,0x9c,
0x3e,0x6d,0x8e,0x9f,0x14,0x90,0xbe,0x7c,0x7,0x2,0x7,0x50,0x94,0xff,0xc,0x1f,
0x6b,0xca,0x93,0x1c,0x63,0x86,0x73,0x8d,0x60,0x58,0xe1,0x36,0xd7,0x24,0x4a,0x3d,
0xc,0xba,0xbe,0x10,0xfb,0x43,0xd6,0x2b,0x7e,0xd5,0xc2,0x5f,0xb5,0x71,0x7f,0x22,
0x22,0x22,0x6a,0xd,0x49,0x7f,0x7f,0x57,0x2a,0x12,0x45,0x46,0x18,0xad,0x51,0xc8,
0xb8,0x8c,0xa2,0xee,0x4f,0x73,0x1c,0xcd,0x31,0x7,0xe0,0x4f,0x2a,0x75,0xf7,0xda,
0xf2,0x95,0x82,0x5f,0xd8,0xd1,0xab,0xde,0x68,0x51,0xbe,0x4,0x1f,0x5f,0x84,0x8f,
0x67,0x23,0x6b,0xdb,0xb8,0xd6,0xbb,0xb1,0xab,0x7d,0x7a,0x69,0xd4,0x95,0x9e,0x5d,
0x6b,0xff,0x19,0xed,0xd6,0xb2,0x42,0xf8,0x83,0xfb,0xb,0xd5,0xcf,0xed,0xcb,0xb6,
0xd8,0x8a,0x20,0xd3,0x21,0x11,0x11,0x51,0x4b,0x73,0x65,0x82,0x4a,0x8d,0x1e,0x7a,
0xf6,0xb0,0x8b,0x51,0xf6,0xeb,0xac,0x9e,0x5f,0x1,0xf8,0xf7,0x49,0xe6,0xf9,0xe9,
0xca,0x73,0xfe,0x44,0x30,0xfc,0x2b,0x25,0xc2,0x8a,0x9f,0xd9,0xdc,0x11,0x86,0xb3,
0x1f,0xc0,0x47,0xf,0x7c,0xf9,0xa4,0x11,0xf2,0x5c,0xd5,0x3d,0xbb,0xd,0xda,0x59,
0x1,0xd4,0x86,0x81,0xab,0xa5,0xeb,0x8a,0x55,0x40,0x6b,0x68,0x18,0x30,0xbf,0x24,
0x20,0xd9,0x17,0xc6,0xca,0x20,0x11,0x11,0x51,0xfb,0x71,0x65,0x2,0xd7,0x8,0xa2,
0x2b,0x10,0xea,0xcf,0xc9,0x8e,0x6b,0x0,0xee,0x95,0x97,0x8a,0xef,0xa4,0x7d,0x62,
0x5e,0x68,0x4b,0xbd,0x18,0xeb,0xf8,0x41,0x5b,0xc3,0x4f,0x5f,0xbf,0x2f,0x18,0xea,
0x7d,0xa,0x3e,0x36,0xa0,0x88,0xff,0x68,0x84,0x38,0x3b,0xe4,0x85,0x95,0x3e,0x98,
0x93,0x23,0xed,0x70,0x68,0xcf,0xff,0xb3,0xf7,0xfe,0x35,0x86,0x80,0x1d,0x9,0x3c,
0xae,0x12,0x68,0x5f,0x86,0x7e,0x5b,0xb6,0xbe,0x41,0x22,0x22,0x22,0xaa,0x53,0x9a,
0x2,0x4e,0x5c,0x10,0x4c,0xf2,0xdc,0xd5,0xb7,0x4,0xe0,0x8f,0xe4,0xa5,0xe2,0xcf,
0x6a,0x79,0x72,0x5e,0xf,0x7e,0x2a,0xf4,0x85,0x8b,0x37,0xdb,0xdd,0x2d,0xe6,0x9a,
0x7d,0x5f,0x84,0xc0,0xfb,0xf0,0xf1,0xb5,0xd8,0xe0,0xa7,0x87,0xbc,0x6a,0x15,0x41,
0x7b,0x22,0x65,0xa5,0xf9,0x7f,0xf6,0x65,0x20,0xda,0xa2,0xad,0xb8,0x82,0x5f,0xdc,
0x7d,0x44,0x44,0x44,0xd4,0x59,0x5a,0x2f,0xb,0xfc,0x1a,0x41,0xc5,0xef,0x54,0xad,
0x2f,0x90,0x37,0x82,0x5f,0x29,0xf4,0x19,0xe1,0x4f,0xef,0xe2,0xb5,0xc3,0x98,0x8f,
0x43,0xf0,0xe5,0x2f,0xe1,0xe3,0x6f,0xe0,0x63,0x4d,0x64,0xc1,0x43,0xd7,0x1c,0xc0,
0x48,0x50,0xd4,0x1e,0x63,0xef,0xc,0x12,0x37,0x7,0xd0,0x9e,0xfb,0x7,0xc4,0xa7,
0x76,0x5d,0xeb,0x7d,0xc1,0x44,0x44,0x44,0x44,0xca,0x2f,0x1,0xec,0x7,0x30,0x55,
0xcf,0x8b,0xe4,0x55,0xf0,0x53,0xa1,0x4f,0x20,0xa8,0x4,0x3a,0x87,0x5d,0x7d,0x69,
0x55,0xff,0xa4,0x9a,0x3,0xf8,0x2b,0x8,0x1c,0x83,0x2f,0xbb,0x13,0x7,0x3f,0x57,
0xa7,0xb0,0xbd,0x64,0x4c,0xdc,0xfc,0xbf,0xb8,0xa1,0x5c,0x22,0x22,0x22,0xa2,0xf6,
0xf4,0xb,0x0,0xff,0x1,0xc0,0x74,0xbd,0x2f,0x94,0xb,0x9a,0x3c,0x64,0x18,0xfa,
0xcc,0xe1,0x5e,0x19,0xd,0x80,0xce,0xc5,0xe,0xf1,0x63,0xf8,0xf2,0x23,0xf0,0x31,
0x6d,0x4,0x45,0x15,0xf2,0xd4,0x8a,0xd7,0xf6,0xa,0xd8,0xe1,0x26,0xc8,0x8,0xf6,
0xbe,0x53,0xdb,0xa2,0xe8,0xb7,0x2f,0xc9,0xd2,0x7d,0x88,0xce,0x5,0x8c,0xb,0x82,
0x44,0x44,0x44,0x44,0xed,0xe3,0x25,0x0,0xbf,0x87,0x6,0x4,0x3f,0x0,0xc8,0xa9,
0x39,0x7f,0x52,0xca,0x72,0xf8,0xab,0xd4,0x5d,0xeb,0x1a,0xfe,0xd,0x42,0xe0,0xcf,
0xe1,0x63,0x7,0x8a,0xf8,0x71,0x74,0xed,0x3f,0xab,0x2,0x58,0xb4,0x82,0x61,0x64,
0x6f,0x3c,0x94,0xc3,0xa0,0xef,0x38,0x16,0x22,0x22,0x22,0xa2,0xf6,0xb7,0x4,0x60,
0x4,0xc0,0xfd,0x0,0x16,0x1a,0xf5,0xa2,0x39,0xb5,0xbb,0x47,0x18,0xfc,0x80,0x52,
0xd8,0xd2,0x1a,0x28,0x5c,0x61,0xcf,0xbd,0x28,0xf3,0xaf,0x21,0xf0,0x27,0x10,0xf8,
0x22,0x4,0xae,0x55,0x6c,0xfe,0xb0,0x87,0x82,0x8d,0x8a,0x20,0x43,0x1f,0x11,0x11,
0x11,0x75,0xb4,0x69,0x0,0x1f,0x1,0xf0,0xbd,0x46,0xbf,0x70,0x4e,0x96,0x52,0x55,
0xa9,0xee,0x67,0xae,0x6f,0x93,0x64,0x97,0xd,0x77,0x10,0xfc,0x3e,0x4,0x6e,0x83,
0xc0,0x4b,0x91,0x39,0x82,0xf6,0xfc,0x3e,0x7d,0x8e,0xa0,0xde,0x15,0xcc,0xc0,0x47,
0x44,0x44,0x44,0x9d,0xe7,0x1a,0x80,0x6f,0x0,0xb8,0xd,0xc0,0xcf,0x9b,0xf1,0x3,
0x72,0x91,0xe1,0x5e,0xc0,0x5c,0x28,0x19,0x70,0x2f,0xa8,0xac,0x2f,0xb3,0x62,0x2f,
0xc1,0x12,0x4,0xbe,0x69,0x8,0x79,0x3f,0x7c,0xdc,0xf,0x1f,0xd3,0xce,0xc6,0xe,
0x57,0x73,0x88,0x1e,0x36,0x89,0x88,0x88,0x88,0x3a,0xc7,0x6b,0x0,0x76,0x0,0x38,
0x84,0x20,0x4,0x36,0x45,0xe,0x8,0xaa,0x7e,0xa1,0x24,0x4b,0xa7,0xe8,0xf7,0xe9,
0xcb,0xae,0x0,0xae,0x61,0xe1,0x97,0x82,0x2a,0xa0,0xfc,0x2b,0x8,0xfc,0x2a,0xba,
0xa8,0x33,0xa2,0xc1,0x8f,0x88,0x88,0x88,0xa8,0x73,0xfc,0x1c,0xc1,0xbc,0xbe,0xfd,
0x8,0xba,0x7a,0x9b,0x2a,0xa7,0x37,0x7b,0x94,0xc3,0x57,0xcc,0x82,0xc9,0xb0,0xae,
0xdb,0x97,0xf5,0x85,0x96,0xcd,0x4e,0xe1,0x6b,0x10,0xf8,0xe,0x4,0x6e,0x9,0xe6,
0x3,0xca,0xb9,0x72,0xc3,0x7,0x83,0x1f,0x11,0x11,0x11,0x75,0xa4,0x37,0x11,0x4,
0xbe,0xdf,0x43,0xd0,0xd1,0xbb,0x22,0xc2,0x39,0x7f,0x75,0x5,0xaf,0xb8,0xc5,0x96,
0xa3,0xc3,0xc4,0xd7,0x20,0xf1,0x7d,0x8,0xfc,0xe,0x4,0xfe,0x2,0x2,0x3f,0x63,
0xe8,0x23,0x22,0x22,0xa2,0xe,0xb2,0x4,0xe0,0xc7,0x0,0x6,0x11,0x34,0x74,0xbc,
0xb6,0xd2,0x7,0x90,0x93,0xae,0x3d,0x6e,0xf5,0x9b,0x3c,0xeb,0x3e,0x4f,0xbb,0xcd,
0x73,0xdc,0x66,0xbf,0x8e,0x1d,0x4,0x83,0x61,0xe2,0x25,0x0,0x7f,0xb,0x89,0x5d,
0x90,0xd8,0x1,0x89,0x6f,0x42,0x62,0xb6,0xb6,0xb7,0x40,0x44,0x44,0x44,0x94,0x79,
0x93,0x8,0x96,0x6d,0xd9,0x8,0xe0,0x4f,0x0,0xd4,0xbc,0x3d,0x5b,0xbd,0xf2,0x80,
0x35,0xe7,0x4f,0xe7,0xa,0x74,0xae,0xe0,0xa7,0xce,0xed,0x10,0xe8,0x7a,0x7e,0xf0,
0x3,0xf5,0xe5,0x64,0x2e,0x94,0x4e,0x7f,0xd,0x60,0x2b,0x80,0xbb,0x1,0xec,0x2d,
0x9d,0x7a,0xaa,0xbe,0x3,0x22,0x22,0x22,0xa2,0xec,0x99,0x5,0x70,0x12,0x41,0x65,
0xef,0x14,0x82,0xad,0xd9,0x32,0x21,0xf,0x20,0xbe,0xb9,0x43,0xf,0x76,0xb9,0xd2,
0x49,0x0,0xc8,0x79,0x80,0x27,0x83,0xeb,0x9e,0x7,0xe4,0x64,0x29,0xf8,0x79,0xc1,
0xb,0xa9,0xdb,0x3d,0xe9,0xae,0xe,0xc6,0x55,0xa,0x81,0xb7,0x4b,0xa7,0xef,0x94,
0xae,0xdf,0x9,0x60,0x3b,0x82,0x50,0xf8,0x61,0x0,0x9b,0x4b,0x97,0x89,0x88,0x88,
0x88,0xb2,0x60,0x9,0x41,0x11,0xeb,0x1d,0x4,0xcd,0x1a,0xbf,0x40,0x50,0xe5,0x6b,
0xc8,0x6e,0x1c,0xcd,0x90,0x37,0xe6,0xfc,0xb9,0x42,0xa0,0xab,0x9a,0xa7,0xc2,0xa0,
0x1e,0xa,0xf5,0xcb,0x91,0x93,0x16,0x16,0x73,0x5a,0x28,0xcc,0x79,0xe5,0x26,0x11,
0xb7,0x37,0x4b,0x27,0x5b,0xf,0x82,0x30,0xa8,0x7c,0x10,0xc0,0xa6,0x2a,0xef,0x95,
0x88,0x88,0x88,0xa8,0x1e,0x17,0x10,0x84,0x3d,0xa5,0x29,0xeb,0xf0,0x35,0xdb,0xff,
0x7,0xac,0xb3,0xf7,0x9f,0x68,0x13,0x2e,0xb0,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,
0x44,0xae,0x42,0x60,0x82,
// D:/Works/Mine/IVM/Codes/IVM/VehicleManagement/VehicleManage/Resources/Images/nextoff.png
0x0,0x0,0x2d,0xee,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x2,0x7f,0x0,0x0,0x1,0x15,0x8,0x6,0x0,0x0,0x0,0x91,0xc9,0x83,0x5a,
0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x5c,0x46,0x0,0x0,0x5c,0x46,
0x1,0x14,0x94,0x43,0x41,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x78,0x9c,0xed,
0xdd,0x7f,0x68,0x6c,0xe9,0x7d,0xdf,0xf1,0xef,0xe8,0x6a,0x16,0x76,0xee,0xc2,0x5c,
0x16,0x9,0xac,0xeb,0x32,0x8b,0x2b,0x81,0xaf,0x6c,0x24,0xb6,0x28,0xb8,0x72,0xf1,
0xc5,0xe1,0x16,0xd7,0x36,0x2d,0x31,0x6b,0x6c,0x2,0x2e,0x6b,0x52,0x62,0x5c,0x52,
0xba,0xd4,0xd4,0xb8,0xa4,0xd4,0x38,0xc4,0xd4,0xb5,0x49,0xda,0x85,0x62,0xc7,0x26,
0x4e,0x3,0xc5,0xc1,0x21,0x6d,0x4c,0xdc,0x2c,0x76,0xe3,0x25,0x74,0x89,0x23,0x13,
0x5f,0x96,0x88,0x5c,0x24,0x62,0xdd,0x5d,0xeb,0xda,0x68,0x60,0xad,0x5,0xd,0xcb,
0x1d,0xd8,0x1d,0x5d,0xcd,0xf9,0xf1,0xf4,0x8f,0x39,0xcf,0xe8,0x99,0x67,0x9e,0xf3,
0x73,0xce,0x68,0x7e,0xbd,0x5f,0x30,0xcc,0x99,0x33,0x67,0x66,0xce,0x19,0x5d,0xad,
0x3e,0xfb,0x7d,0x7e,0x55,0x7e,0xf8,0xc3,0x1f,0xca,0xd2,0xd2,0x92,0x54,0x2a,0x15,
0x59,0x5a,0x5a,0x1a,0xb8,0xe9,0x7d,0xe6,0x7d,0xd2,0x4d,0x8b,0xdb,0x36,0x29,0xa5,
0x32,0x6d,0xeb,0xc7,0xd1,0xfd,0xdb,0x95,0x52,0x1b,0x22,0xf2,0x4e,0x63,0xff,0x13,
0x22,0xf2,0xce,0x3c,0xef,0x9b,0xb4,0xf,0x0,0x0,0xcc,0xae,0x3c,0x7f,0xdb,0xed,
0x63,0xe3,0x1e,0x1b,0xf7,0x5d,0xa5,0xd4,0xa1,0xde,0xa7,0x94,0xea,0x8a,0xc8,0xa1,
0x52,0xea,0x27,0x4a,0xa9,0x73,0xf3,0xf8,0xac,0xb7,0xa4,0xe3,0xcd,0xe7,0xec,0xf3,
0x79,0xe6,0x99,0x67,0x72,0x7d,0x2f,0xa6,0x65,0x3b,0xe8,0xb9,0x1e,0xeb,0x70,0x17,
0x17,0x0,0x45,0x64,0xe8,0xde,0xde,0xb6,0xbf,0x4c,0xfd,0x9c,0x6b,0x3b,0xba,0xb8,
0x2d,0x11,0xf9,0x50,0xa5,0x52,0x79,0x97,0x52,0x6a,0x2b,0xba,0x7f,0x5c,0x3f,0x6f,
0xdf,0xe7,0x75,0x55,0xaf,0x1,0x0,0x0,0xd3,0x27,0xed,0x6f,0x7a,0x5a,0x30,0x74,
0x78,0x5d,0x44,0x8e,0xa3,0x20,0xf8,0x63,0xa5,0xd4,0x8f,0x94,0x52,0xc7,0x59,0xce,
0xc3,0x15,0xfa,0xec,0xcf,0x74,0x85,0xc1,0xa2,0x96,0xd3,0xaa,0x7e,0x49,0xe1,0x4f,
0x44,0x9c,0x1,0x50,0xb3,0x1f,0xeb,0x93,0x8d,0x9,0x7e,0x6f,0xab,0x54,0x2a,0x1f,
0x53,0x4a,0xdd,0xa9,0x54,0x2a,0xef,0x57,0x4a,0x3d,0x59,0x34,0xd8,0x99,0x9f,0x65,
0x6f,0xbb,0x1e,0x67,0x7d,0xe,0x0,0x0,0xcc,0xb6,0xb8,0xbf,0xf3,0x79,0xf6,0xc7,
0x64,0x8c,0xb7,0x45,0xb7,0xf7,0x89,0xc8,0xa7,0xa3,0x7d,0xaf,0x8b,0xc8,0x5f,0x2a,
0xa5,0x5e,0x50,0x4a,0x7d,0x5f,0x57,0x7,0xd3,0x2,0x5c,0x52,0x55,0x30,0xc,0x43,
0x9,0xc3,0x30,0xf1,0x1a,0xd3,0x2c,0xbb,0x82,0x5f,0x9e,0x26,0x5f,0x11,0x77,0xd5,
0xcf,0xc5,0x7c,0x3e,0xa,0x7e,0x4f,0x28,0xa5,0x9e,0x11,0x91,0x67,0x45,0xe4,0x3,
0x49,0xaf,0x4b,0x2b,0xc5,0xa6,0xed,0x8b,0x7b,0x1c,0xb7,0xf,0x0,0x0,0xcc,0x87,
0xbc,0x45,0x1f,0x57,0x33,0xab,0x7d,0xac,0xab,0x9b,0x9a,0xe3,0xbd,0xde,0xa6,0x94,
0x7a,0x56,0x7a,0x39,0xa7,0x2d,0x22,0xdf,0x15,0x91,0x3f,0x12,0x91,0x97,0xec,0xd7,
0x65,0x69,0xe,0xd6,0xc1,0x2f,0xc,0x82,0x5c,0xd7,0x6f,0x5b,0x76,0x5,0x3f,0x57,
0xe8,0x33,0xb7,0x45,0xdc,0x15,0xbf,0xb4,0xf0,0xa7,0x2f,0x44,0x44,0xde,0x59,0xa9,
0x54,0x7e,0x53,0x29,0xf5,0xb1,0x28,0x0,0x26,0x36,0xdf,0x5e,0x75,0xf5,0x2f,0xeb,
0x7b,0x2,0x0,0x80,0xd9,0x54,0x34,0x73,0x24,0x65,0xb,0xbd,0xcf,0xd5,0x7c,0xab,
0x94,0xaa,0x2b,0xa5,0x7e,0x2d,0xba,0xbd,0xa6,0x94,0xfa,0x9a,0x52,0xea,0x1b,0x4a,
0xa9,0x76,0x96,0xe0,0x17,0x4,0x81,0x4,0x41,0x50,0x4a,0xe5,0x6f,0x29,0x4b,0xd5,
0xcf,0xae,0xfc,0xa5,0xf5,0xfd,0x8b,0x1b,0x8,0x22,0x22,0x3b,0x95,0x4a,0xe5,0x4f,
0x44,0xe4,0xbe,0x88,0xfc,0x9a,0x88,0x3c,0x91,0xf7,0x84,0xb3,0xb4,0x85,0xa7,0x1d,
0x97,0xf4,0x3,0x4f,0xbb,0x1,0x0,0x80,0xd9,0x15,0xf7,0xf7,0x3c,0xae,0xbf,0x5d,
0x19,0xb9,0xc2,0xe1,0xed,0x22,0xf2,0x65,0x11,0x39,0x51,0x4a,0xfd,0x67,0xa5,0xd4,
0x93,0x71,0xc1,0x2f,0xc,0x43,0xf1,0x7d,0x5f,0x2,0xdf,0xef,0x7,0xc0,0x60,0xc4,
0xca,0xdf,0x50,0xf8,0xcb,0x3b,0xc2,0x37,0x21,0xe8,0xf5,0x55,0x2a,0x95,0x77,0x55,
0x2a,0x95,0xbf,0x10,0x91,0xbf,0x15,0x91,0x5f,0xcd,0x53,0x29,0xd4,0xb2,0x54,0xf1,
0x5c,0xf7,0xae,0x6d,0xf3,0x75,0x4,0x3b,0x0,0x0,0xe6,0x4b,0xde,0x22,0x4e,0x5c,
0x98,0x4b,0xa,0x80,0x69,0x9f,0x99,0xf1,0x9c,0xea,0x22,0xf2,0x9f,0x44,0xe4,0x44,
0x44,0x7e,0x47,0x44,0x9e,0x70,0x55,0xfb,0x82,0x20,0x10,0x3f,0x8,0x7a,0x1,0x30,
0xba,0x8d,0x62,0xa0,0xcf,0x5f,0x9e,0xe0,0x27,0x92,0x69,0x64,0xef,0x13,0x4a,0xa9,
0x2f,0x88,0xc8,0xbf,0x13,0x91,0xc7,0xf2,0xe,0xe0,0x88,0x4b,0xe1,0xe6,0x76,0x96,
0x1f,0x50,0x5a,0x89,0x36,0xcb,0x73,0x0,0x0,0x60,0x7e,0xc4,0x5,0xb4,0xb8,0xe7,
0x93,0xa,0x4c,0x71,0xef,0x9f,0x23,0xc,0x3e,0xa1,0x94,0xfa,0x9c,0x52,0xea,0x59,
0xa5,0xd4,0x67,0x95,0x52,0x7f,0xac,0x9b,0x78,0x7d,0xdf,0x97,0x30,0x8,0x24,0x8,
0xc3,0xcb,0x66,0xdf,0x32,0x2a,0x7f,0x76,0x73,0xae,0xbd,0xcf,0xd5,0xf4,0xeb,0xea,
0xfb,0x67,0xf9,0x98,0x88,0xfc,0x7d,0xa5,0x52,0xf9,0x9c,0x88,0x3c,0x96,0x76,0x22,
0x59,0xbe,0x70,0xbd,0x9d,0x35,0xf8,0x25,0x55,0xfe,0x68,0xd2,0x5,0x0,0x60,0x31,
0xa4,0xfd,0xcd,0x4f,0x6a,0xf2,0x4d,0xcb,0x7,0x79,0x32,0x84,0xeb,0xf3,0xad,0xf3,
0x7a,0x9b,0x52,0xea,0xdb,0x61,0x18,0xfe,0xbf,0x30,0xc,0xdf,0xe5,0x47,0x4d,0xbd,
0xba,0xea,0xe7,0xeb,0x5b,0x59,0x3,0x3e,0x5c,0xfd,0xf9,0xe2,0xa6,0x76,0x31,0xef,
0x1d,0x9e,0x10,0x91,0xdf,0x17,0x91,0x4f,0xe8,0x1d,0x71,0x15,0xbf,0xac,0x21,0xcf,
0x7c,0x9c,0x16,0xf0,0x5c,0xef,0x13,0xf7,0x79,0x69,0xe7,0x3,0x0,0x0,0xe6,0x4f,
0xd6,0xe6,0x5f,0x7b,0x3b,0x6b,0x57,0xb2,0x3c,0xfb,0x5d,0xe7,0x10,0x4,0xc1,0x1d,
0xdf,0xf7,0xff,0x2e,0xc,0x82,0xcf,0x6,0x41,0xf0,0xb5,0x7e,0xf3,0xaf,0xef,0x4b,
0x50,0xc6,0x54,0x2f,0x45,0xe7,0xf4,0xd3,0xac,0xc7,0x4f,0x8b,0xc8,0x9f,0x88,0xb1,
0x2,0x47,0x5e,0x49,0x5f,0x5a,0x9e,0xe0,0x97,0x16,0xfa,0xf2,0x36,0x3f,0x3,0x0,
0x80,0xf9,0x92,0xa7,0xe9,0x37,0x2e,0x5f,0xa4,0x35,0xe9,0xc6,0x3d,0xe7,0x3a,0x56,
0x29,0xd5,0x6f,0xd6,0xd,0xc3,0xf0,0x31,0x3f,0x8,0xbe,0x1a,0x4,0xc1,0xfb,0x3,
0xdf,0xff,0x57,0x7e,0x10,0xbc,0x19,0xea,0x10,0x38,0xea,0x68,0xdf,0xac,0x83,0x38,
0xec,0xe0,0xe7,0x8,0x82,0x9f,0x16,0x91,0xbf,0x91,0x68,0xa9,0xb5,0xa4,0xc1,0x1c,
0x49,0x15,0x3d,0xd7,0x17,0x91,0x54,0x8a,0xcd,0x72,0x73,0x1d,0x9f,0xe7,0x3d,0x0,
0x0,0xc0,0x6c,0xca,0xf2,0xf7,0x3d,0x2e,0x1f,0xb8,0xb6,0xcd,0x7b,0xfb,0xf5,0x59,
0xce,0x23,0xe9,0x71,0x18,0xf5,0xeb,0xeb,0xf7,0xef,0xeb,0x85,0xbd,0x8f,0xf9,0x41,
0xf0,0x77,0x81,0xef,0xef,0xf8,0x46,0x5,0x70,0x14,0x43,0x3,0x3e,0xd2,0xe6,0xf4,
0xd3,0x8f,0x2d,0xff,0x4d,0x44,0xfe,0x7d,0x9e,0xf,0x4e,0x4b,0xca,0x49,0x41,0xcd,
0x7c,0xec,0xda,0x76,0x7d,0x46,0x96,0x12,0x2f,0x0,0x0,0x98,0x5f,0x49,0x7f,0xf3,
0x5d,0x81,0xce,0xf5,0x38,0xad,0xe9,0xd7,0xf5,0xbe,0x49,0xc7,0x99,0xcf,0x9b,0xa3,
0x7b,0xcd,0xbe,0x7e,0x61,0x10,0x6c,0x4,0x61,0xb8,0x17,0xf8,0xfe,0x47,0x83,0x20,
0xf8,0xc1,0xa8,0x53,0xbd,0x2c,0xa7,0x4d,0xd7,0x12,0x37,0xba,0x37,0x7a,0xfc,0x98,
0x88,0xfc,0xf,0x11,0x79,0x36,0x4b,0x88,0xca,0xda,0xe,0xee,0x7a,0x5d,0xd6,0xf0,
0x67,0x7e,0x4e,0xd6,0x1f,0xa,0x0,0x0,0x58,0xc,0x79,0x2,0xa0,0xb9,0x2f,0x2e,
0xb0,0xa5,0xb5,0x5e,0x26,0xbd,0x9f,0xf9,0x7c,0x7f,0xf5,0xe,0xdd,0xec,0xab,0x2b,
0x7f,0x61,0xa8,0x43,0xe0,0xe3,0x41,0x10,0xfc,0xb9,0xef,0xfb,0x9f,0xa,0xc3,0xf0,
0x8f,0x72,0x5e,0xf6,0x80,0xe5,0x2c,0x73,0xf9,0x89,0x38,0xa7,0x75,0x79,0x5c,0x44,
0xfe,0x4c,0x44,0x3e,0xa4,0xf7,0x65,0xa9,0xba,0x25,0x7d,0x19,0x45,0x9b,0x71,0xed,
0xcf,0x21,0xfc,0x1,0x0,0x0,0x97,0xbc,0xc5,0xaa,0xb4,0x9c,0x11,0x97,0x39,0xec,
0xf7,0x4b,0x6a,0xa5,0xd4,0x4d,0xbe,0x46,0x7f,0x3f,0x31,0x7,0x79,0xe8,0xbe,0x7e,
0xbe,0xef,0x3f,0x16,0x4,0xc1,0xb7,0x82,0x20,0x58,0x15,0x91,0xe7,0xb3,0x5f,0xf5,
0xa0,0xca,0x2b,0xaf,0xbc,0x92,0xb8,0x72,0x87,0x88,0x33,0xf8,0x3d,0x26,0x22,0x7f,
0x21,0x22,0x77,0xec,0x8b,0x8b,0xdb,0x76,0x85,0xb6,0x51,0x6e,0xe6,0x67,0x14,0x6d,
0xf6,0x25,0xf8,0x1,0x0,0xb0,0x98,0x8a,0x34,0x1,0x27,0x65,0x1b,0x73,0x5f,0xd2,
0x2d,0xc,0xc3,0xa1,0xed,0x30,0xc,0xc5,0xf3,0x3c,0xf1,0x3c,0x4f,0x7c,0xcf,0x13,
0xcf,0xf7,0x7b,0xdb,0x7a,0x6a,0x97,0x68,0x3b,0xb8,0xc,0x81,0x12,0x6,0xc1,0x7f,
0xfc,0x2f,0x5f,0xf9,0xca,0x57,0x8a,0x5c,0x7b,0xe5,0xd5,0x57,0x5f,0x4d,0xec,0xeb,
0xe7,0xb8,0xbf,0x26,0xbd,0x8a,0xdf,0xaf,0x24,0x7d,0x59,0x45,0xbe,0x10,0xf3,0xcb,
0x48,0x7b,0x4d,0xd2,0x17,0x1f,0x77,0x2e,0x2e,0x4,0x40,0x0,0x0,0x16,0x4b,0xda,
0xdf,0xfe,0xa4,0x96,0xc3,0xb4,0xdc,0x51,0x24,0xf8,0x5,0x41,0xd0,0xf,0x7f,0xfd,
0x10,0x68,0x84,0x3e,0xfb,0x16,0x46,0xfd,0x1,0xc3,0x20,0xf8,0xe4,0x7f,0x7d,0xfe,
0xf9,0xdc,0x4d,0xc0,0x95,0x57,0x5f,0x7d,0x35,0x75,0xad,0xde,0xfe,0xc1,0xbd,0xed,
0xaf,0x8b,0xc8,0x6f,0x24,0x7d,0x51,0xae,0x64,0x6c,0x7f,0x29,0xe6,0x17,0x10,0x17,
0xfc,0x5c,0xc7,0xc4,0xbd,0xa7,0xeb,0xde,0x75,0x3e,0x49,0xfb,0x0,0x0,0xc0,0x7c,
0xc9,0xfb,0xf7,0x3e,0x2d,0x43,0x24,0x15,0x99,0x92,0xa,0x56,0xae,0xe0,0x67,0x57,
0xfd,0x6,0xc2,0x9f,0x19,0x2,0x8d,0x5b,0x10,0x4d,0xf2,0x1c,0x55,0x1,0x83,0xc0,
0xf7,0x3f,0xfa,0xd5,0xdf,0xfb,0xbd,0x17,0xf2,0x5c,0x63,0xe5,0xa7,0x3f,0xfd,0x69,
0xea,0x84,0xce,0xc6,0xf6,0x6f,0x8b,0xc8,0x17,0xd2,0xbe,0xac,0xb8,0xca,0x5c,0x52,
0x2,0x36,0x83,0x5f,0x5c,0x30,0xcc,0x52,0xf9,0x8b,0xfb,0xc1,0xb8,0x1e,0xa7,0x5d,
0x7,0x0,0x0,0x58,0xc,0x71,0x7f,0xff,0x8b,0x56,0x1,0xb3,0x56,0xff,0xc2,0x30,
0x94,0x6e,0xb7,0x2b,0xbe,0xe7,0x49,0xd7,0xf3,0xc4,0xeb,0x76,0xc5,0x8b,0xaa,0x7e,
0x5e,0x4c,0x0,0xb4,0xaa,0x7f,0xe7,0x41,0x10,0xfc,0xf2,0xef,0xff,0xc1,0x1f,0xbc,
0x9c,0xf5,0x5a,0x2b,0xc7,0xc7,0xc7,0xa9,0x55,0xbf,0xe8,0xfe,0x43,0xd2,0xeb,0xe7,
0x97,0xf8,0xc5,0x8c,0x5a,0xfe,0x4c,0xa,0x87,0x59,0x2b,0x7f,0x49,0xdb,0x49,0xfb,
0x0,0x0,0xc0,0xfc,0x1b,0xb5,0x18,0x14,0x97,0x3b,0x92,0x72,0x8a,0xab,0xe0,0xa5,
0x94,0x12,0x3f,0xea,0xdf,0xe7,0x75,0xbb,0x3,0xe1,0xcf,0xeb,0x76,0x7,0x82,0x9f,
0xde,0xee,0x2f,0xf3,0x66,0xac,0xf8,0x11,0xf8,0x7e,0x33,0x8,0x82,0x7f,0xf4,0x3f,
0xbf,0xf5,0xad,0x37,0xb2,0x5c,0xff,0xb2,0x88,0xa4,0x36,0xf7,0x8a,0xc8,0xdb,0x45,
0xe4,0x5b,0x69,0x5f,0x8e,0x2b,0x1d,0xe7,0xd,0x7e,0x59,0xaa,0x7e,0x49,0x95,0xbf,
0x3c,0x1,0x30,0xee,0x3a,0x0,0x0,0x0,0xd2,0x8a,0x47,0x69,0xad,0x9e,0xae,0xc7,
0xae,0x63,0x95,0x39,0xcd,0x8b,0xe3,0x66,0xcf,0xfd,0xd7,0xf,0x7e,0x97,0xd5,0xbf,
0x86,0xef,0xfb,0xdf,0x16,0x91,0xf,0x67,0xb9,0xae,0xca,0x83,0x7,0xf,0xd2,0xc2,
0xdf,0xb5,0x4a,0xa5,0xf2,0x57,0x22,0xf2,0xbe,0x3c,0x5f,0x40,0xd6,0xc4,0x1b,0xd7,
0xf9,0xb1,0xec,0xf0,0x17,0x87,0xd0,0x7,0x0,0x0,0x8a,0x14,0x89,0xb2,0xb4,0x7c,
0x9a,0xdb,0xae,0x2c,0xe4,0x79,0x9e,0x74,0x2f,0x2e,0xa4,0xeb,0x79,0xd2,0xed,0x76,
0xfb,0x95,0xbf,0xee,0xc5,0xc5,0x65,0x55,0x30,0x6e,0x0,0x88,0x11,0x2,0xa3,0xdb,
0x7f,0xf8,0xdf,0xdf,0xf9,0xce,0xef,0xa6,0x5d,0x6b,0xe5,0xc1,0x83,0x7,0xb2,0xb4,
0xb4,0xd4,0x7b,0xe0,0xe,0x7f,0xbf,0x5d,0xa9,0x54,0x86,0xfa,0xf9,0xa5,0x5,0x3f,
0x73,0x3b,0x2d,0xe4,0x25,0x5,0xc1,0xbc,0xe1,0x2f,0xee,0x87,0x44,0xe5,0xf,0x0,
0x0,0x64,0x95,0xa5,0xd9,0xd7,0xf5,0x38,0x2e,0x4,0xba,0x5a,0x40,0x75,0x7f,0x3f,
0xf3,0xa6,0x9b,0x7b,0xbb,0xdd,0xae,0xf8,0xbe,0xdf,0xef,0xf,0x38,0x34,0xfd,0x4b,
0xd4,0x4,0xac,0xa7,0x7e,0xd1,0x3,0x40,0xc2,0x30,0xbc,0xfd,0x7f,0x5e,0x78,0xe1,
0xc7,0x49,0xd7,0x56,0xf9,0xd9,0xcf,0x7e,0xe6,0x5c,0xdd,0x23,0xda,0xde,0x10,0x91,
0xbf,0x8f,0x56,0xf2,0xc8,0x74,0xc1,0x49,0x17,0xab,0x2f,0xd4,0xe,0x7c,0x49,0x21,
0x30,0x2d,0xfc,0xb9,0xee,0xd3,0xce,0x33,0x9,0x21,0x10,0x0,0x0,0xd8,0xe2,0xf2,
0x41,0x52,0x93,0xae,0xbe,0x8f,0xbb,0xe9,0x70,0x67,0x6,0xbf,0xae,0x11,0xfe,0xf2,
0x4e,0xff,0x12,0xad,0x9,0x7c,0x2f,0xc,0xc3,0x5f,0xfa,0xbf,0x3f,0xf8,0x41,0xec,
0x1a,0x70,0xcb,0x29,0xd7,0xfa,0x75,0x11,0x79,0x2c,0xcb,0x5,0xc7,0x35,0xfb,0xa6,
0x55,0xfe,0x8a,0x84,0x3f,0xf3,0x33,0x5c,0x5f,0x74,0xd2,0xf,0x23,0xd,0xe1,0xf,
0x0,0x0,0x64,0x91,0xd4,0x14,0x1c,0xd7,0x32,0x69,0x1e,0x37,0x70,0x8b,0xeb,0xf3,
0x17,0x35,0xe9,0x9a,0xdb,0x3,0xd5,0xbf,0x68,0x19,0x38,0x63,0xfa,0x97,0xa7,0xc3,
0x30,0xfc,0xb4,0x88,0x7c,0x23,0xee,0xbc,0x93,0x2a,0x7f,0x9f,0x10,0x91,0x6f,0x67,
0xb9,0xe0,0x2c,0xa5,0x4d,0x57,0x95,0x2f,0x4b,0xf8,0xd3,0xdb,0xf6,0xfb,0x9b,0x8f,
0xe3,0xce,0x27,0xee,0x7c,0x1,0x0,0xc0,0x62,0xb8,0xca,0xbf,0xff,0x79,0x9a,0x7f,
0xc3,0x30,0xec,0x55,0xfe,0x2e,0x2e,0xe4,0xa2,0xdb,0xed,0xf5,0xfb,0x33,0xaa,0x7e,
0xfa,0xa6,0xa7,0x80,0xe9,0xdf,0xdb,0xd5,0x3f,0xcf,0xeb,0xd,0x2,0x31,0xa7,0x7f,
0x9,0xc3,0x37,0xc2,0x30,0xdc,0xfe,0xab,0xbf,0xfe,0xeb,0xd7,0x5c,0xe7,0x19,0x57,
0xf9,0x7b,0x42,0x44,0x7e,0x27,0xed,0xc2,0xcc,0x8b,0x71,0x5d,0x58,0xd6,0xe0,0x97,
0xa7,0xfa,0xe7,0xfa,0xcc,0xb8,0x2f,0x3c,0xee,0x71,0x1c,0x2,0x22,0x0,0x0,0x28,
0x43,0x5a,0x5,0x50,0x29,0xd5,0x5f,0xc7,0x57,0x39,0xe6,0xfe,0xeb,0x8f,0xf4,0x35,
0x46,0xfc,0x86,0xbd,0x69,0x5d,0x86,0x6,0x7d,0x98,0x4b,0xbf,0x45,0xd3,0xbf,0x3c,
0x19,0x86,0xe1,0x97,0x45,0xe4,0x93,0xae,0x73,0x5b,0xb6,0xa6,0x74,0xd1,0x3e,0xad,
0x94,0x7a,0xbb,0xf9,0x5c,0x5c,0x35,0x2d,0x4b,0x9b,0x76,0x5c,0xf0,0xd3,0x17,0xe2,
0x6a,0x2,0x2e,0xd2,0xec,0x9b,0xb4,0x1d,0xf7,0x43,0x1,0x0,0x0,0x48,0x13,0x93,
0x97,0x6,0xa4,0xb5,0x3c,0xe,0x65,0x23,0xa5,0x7a,0xb7,0x94,0x69,0x5e,0x74,0x7f,
0xbe,0x81,0x26,0x60,0x63,0xa,0x98,0x30,0xa,0x7d,0xe6,0xdc,0x7f,0x61,0x18,0x7e,
0xe2,0x3d,0x3b,0x3b,0x5f,0x7a,0x79,0x7f,0xff,0x15,0xfb,0x9c,0x5c,0x95,0xbf,0xc7,
0x44,0xe4,0x73,0x71,0x17,0x61,0xee,0xcf,0xd2,0xdc,0xeb,0x9a,0xc9,0xda,0x3c,0x71,
0x57,0xf5,0x6f,0xd4,0xca,0x5f,0xd2,0xb9,0x67,0x7d,0x1e,0x0,0x0,0x2c,0x9e,0xb8,
0x90,0x37,0x4a,0x6e,0xb0,0xf3,0xcb,0x50,0xfe,0x71,0xed,0xb3,0x42,0x9e,0x6e,0x26,
0xd6,0x8f,0xcd,0x6a,0xdf,0xd0,0xdc,0x7f,0xbd,0xe3,0xae,0x85,0x61,0xf8,0x39,0x11,
0xf9,0x94,0x7d,0x3e,0xcb,0xf6,0xc9,0x55,0x2a,0x95,0x5f,0x17,0x91,0xb7,0x65,0xb9,
0x0,0xf3,0x42,0xf2,0x56,0xfb,0xec,0x0,0x98,0xa5,0xc9,0x37,0x6f,0x73,0x6f,0xdc,
0x3e,0x0,0x0,0x0,0x97,0xb4,0xdc,0x90,0xa5,0x2,0x18,0xf7,0x9e,0xb1,0xe1,0x2f,
0x25,0x0,0x6,0xe6,0xb6,0x59,0xed,0x33,0x9b,0x7a,0xad,0x69,0x5f,0xa2,0x2c,0xf5,
0xec,0xd3,0x5b,0x5b,0x5f,0xbc,0x77,0x78,0xd8,0x34,0xcf,0xc7,0xae,0xfc,0x5d,0x53,
0x4a,0xfd,0xa6,0xeb,0xc2,0x5c,0x65,0x4b,0x73,0xdb,0xd5,0xcf,0x2f,0xee,0x2,0xe3,
0x2a,0x7f,0x65,0x7,0xbf,0xa4,0xfd,0x0,0x0,0x0,0x59,0xe9,0x6c,0x54,0x34,0x57,
0xc,0x65,0x24,0x33,0xef,0x24,0x54,0xfd,0x9c,0xc5,0xb3,0xcb,0x69,0x5d,0x6,0x57,
0xff,0x30,0xaa,0x81,0x11,0xdd,0x9a,0xfb,0x9c,0x79,0x2e,0x4b,0xd6,0x45,0xfc,0x8a,
0x88,0x34,0xd2,0x9a,0x5b,0xb3,0x4,0xbf,0xb4,0x0,0x98,0xd6,0xfc,0x1b,0xd7,0x1c,
0x9c,0xd4,0x4,0xec,0x3a,0x27,0x0,0x0,0x80,0x51,0xa5,0x15,0xa6,0xd2,0x5e,0x63,
0x3e,0xe,0xc3,0x50,0x94,0xf9,0x7c,0xef,0xc9,0xe1,0xbe,0x80,0x56,0x97,0xb9,0xc0,
0xa8,0x4,0xda,0x7d,0xfd,0x1c,0xc1,0x4f,0xfb,0xf5,0xa7,0xb7,0xb6,0x9e,0x30,0x77,
0x2c,0x99,0x27,0x28,0x22,0xcf,0x26,0x9d,0x7c,0xda,0xc5,0xbb,0x9a,0x6f,0x93,0xc2,
0x9e,0xeb,0x98,0xa4,0xf7,0xcf,0x12,0xfa,0x0,0x0,0x0,0xae,0x52,0x96,0x50,0xe8,
0x6c,0xc5,0x8c,0x6e,0x2a,0xa,0x7c,0xe6,0x73,0xb1,0x95,0x40,0xa3,0xd9,0xd7,0x37,
0x6,0x82,0xe8,0xe7,0x1d,0x1e,0x17,0x91,0x8f,0x99,0x3b,0x96,0x8c,0xed,0x27,0x95,
0x52,0xff,0x7c,0x94,0xaa,0x9f,0x1d,0x4,0xe3,0xfa,0xf3,0xa5,0xd,0xf4,0xb0,0xf7,
0xf5,0xbf,0x24,0x21,0xf4,0x1,0x0,0x80,0xd9,0x32,0x94,0x53,0x12,0xba,0xaa,0xe9,
0xfc,0xd3,0xf,0x85,0x29,0xad,0xa7,0xc1,0x60,0x1f,0xbf,0xb8,0x53,0x18,0x28,0xee,
0x2d,0x19,0x27,0xf5,0x9,0xe9,0xb5,0xd,0xf,0x9d,0x48,0x91,0xaa,0x5f,0x5c,0x10,
0x74,0x85,0x40,0xf3,0x71,0x5c,0xe0,0xb3,0xbf,0x3c,0x42,0x1f,0x0,0x0,0x98,0x76,
0xae,0xc,0x93,0xe5,0x35,0xa1,0xd5,0x1c,0x6c,0x67,0x27,0x73,0xea,0x17,0x1d,0xfe,
0x12,0xbc,0xff,0xe9,0xad,0xad,0x86,0x7e,0xb0,0x64,0x9c,0xd4,0xaf,0x8e,0x5a,0xf5,
0x4b,0xaa,0xee,0xc5,0x55,0xf5,0xf2,0xdc,0xec,0x2f,0x12,0x0,0x0,0x60,0x5a,0xc5,
0xe6,0x15,0x3d,0xb0,0xb6,0x52,0xb9,0xdc,0x76,0x34,0x9,0x9b,0xcd,0xc1,0xca,0x51,
0x9,0xcc,0x50,0xf1,0xd3,0xae,0x49,0xaf,0xc8,0x27,0x22,0x97,0xcd,0xbe,0x4f,0x8a,
0xc8,0x7b,0x5d,0x27,0x9d,0xa7,0xea,0xe7,0x3a,0xce,0x55,0xd9,0x4b,0x1b,0xe1,0x6b,
0x7e,0x61,0xae,0x36,0x73,0x0,0x0,0x80,0x59,0x36,0x34,0xb3,0x8a,0x35,0x9a,0x58,
0x45,0x95,0xbf,0x81,0xc0,0xa7,0xdc,0x93,0x42,0x67,0xcc,0x46,0x1f,0xd0,0x1b,0xba,
0xd9,0xf7,0x43,0x4a,0xa9,0x6b,0xa3,0xf6,0xf5,0xb3,0x43,0x5c,0xdc,0xc8,0xdf,0xb4,
0xea,0x1e,0xcd,0xbc,0x0,0x0,0x60,0x96,0xa5,0x65,0x96,0x8a,0xf4,0x2,0xa0,0xbe,
0x59,0x2f,0x1e,0x68,0xf2,0xd5,0xef,0x17,0xd7,0xb2,0x9a,0xd1,0x7b,0x9f,0xde,0xda,
0x7a,0x5c,0xe4,0xb2,0xd9,0xf7,0x8e,0xeb,0xa4,0x5d,0x61,0x2c,0xed,0x16,0xd7,0xb4,
0x9b,0x25,0x0,0xda,0x9f,0x95,0xf5,0xb,0x4,0x0,0x0,0x98,0x15,0x95,0xa8,0xb9,
0xb7,0x22,0xbd,0x10,0x28,0x29,0xab,0x8a,0x38,0x33,0x95,0x35,0x4e,0x22,0x83,0xc7,
0x45,0xe4,0x3d,0x22,0x97,0x95,0xbf,0xf7,0xa5,0x55,0xfd,0xb2,0x56,0xfb,0xb2,0x3c,
0x6f,0xbf,0xb7,0x7d,0x91,0x4,0x3f,0x0,0x0,0x30,0x8f,0x6,0x2a,0x7d,0x46,0x9f,
0x3f,0x5d,0x9,0x34,0xe9,0xb9,0x0,0x45,0x8c,0xdc,0x14,0x5,0xbf,0x84,0xa9,0x5d,
0x92,0x7c,0x40,0xa4,0x17,0xfe,0xea,0x22,0xf2,0x4e,0xfb,0xd9,0xac,0x55,0xbf,0xa4,
0xe7,0xe2,0x82,0x60,0x96,0xca,0x9f,0xbd,0xd,0x0,0x0,0x30,0xab,0x74,0xb0,0x33,
0xef,0xfb,0x37,0xc7,0x71,0x12,0x93,0xb1,0xf4,0x28,0xe0,0x82,0xdd,0xe1,0xde,0x2b,
0x22,0xb2,0xac,0x94,0x7a,0x3a,0xee,0x88,0xb8,0x2a,0x5d,0xd6,0xb0,0x97,0xf5,0x66,
0x7f,0x9e,0xbd,0xd,0x0,0x0,0x30,0x4b,0x2a,0x95,0xca,0x50,0x96,0x31,0xf7,0x55,
0x8c,0x66,0xdf,0xca,0xd2,0x52,0x6c,0xdf,0xbf,0xde,0x9d,0x91,0x99,0x94,0x2a,0xd2,
0xdf,0x4f,0xdb,0x11,0xe9,0xad,0xed,0xbb,0x65,0x3f,0x63,0x87,0xb0,0xb8,0xa6,0xd9,
0x51,0xc2,0x5e,0x52,0xd0,0x23,0xf8,0x1,0x0,0x80,0xb9,0x67,0x4e,0xf5,0x12,0xd3,
0xef,0x4f,0xeb,0x7,0xbf,0xe8,0xbe,0xa0,0xfa,0xd3,0x5b,0x5b,0x8d,0x65,0xa5,0xd4,
0x50,0x93,0x6f,0xff,0x43,0x24,0x3e,0xec,0x99,0xc7,0x95,0x51,0xf9,0x23,0xf0,0x1,
0x0,0x80,0x79,0x62,0x57,0xff,0xf4,0xe3,0x81,0x26,0x5f,0xab,0xd9,0xd7,0x64,0x67,
0xae,0xd0,0x8,0x80,0x5,0xfa,0xfb,0x69,0x1b,0xcb,0x22,0xd2,0xb0,0xf7,0x66,0xed,
0xef,0x97,0xb7,0x29,0xd8,0x3e,0xce,0xfe,0x3c,0x7b,0x1b,0x0,0x0,0x60,0x9e,0xc,
0xf5,0xf9,0x13,0x71,0x6,0x40,0x67,0x2b,0xec,0xe8,0x95,0x3f,0x11,0x91,0x77,0x2c,
0x89,0x11,0xfe,0x5c,0x95,0xb8,0x22,0x61,0x2f,0xcb,0x7b,0xd9,0x17,0xe6,0x7a,0xc,
0x0,0x0,0x30,0xcb,0x86,0xfa,0xf1,0xd,0x1f,0xd0,0x9b,0xf6,0xc5,0xd5,0xe7,0x4f,
0xac,0xbc,0xd5,0xdb,0x31,0x4a,0xd5,0x4f,0x44,0xa4,0xb1,0xac,0x94,0x5a,0x75,0x7d,
0x90,0xfd,0x81,0x71,0xcf,0x9b,0xf7,0x71,0xaf,0xb7,0xb7,0x93,0xde,0xb,0x0,0x0,
0x60,0x5e,0xd,0xd,0xfa,0x30,0xfa,0xfc,0x55,0xac,0xfe,0x7f,0x76,0x32,0x2a,0xa9,
0xbb,0xdc,0x93,0x4b,0xd2,0x5b,0xda,0xcd,0xf9,0xa6,0x59,0xfb,0xf6,0xc5,0x3d,0x9f,
0xf4,0xbe,0x71,0x61,0x10,0x0,0x0,0x60,0x9e,0xd8,0x15,0xbd,0x81,0x26,0x5f,0x11,
0x59,0x32,0x9e,0x8f,0xad,0x14,0xea,0x1c,0x25,0x23,0x17,0xcc,0x56,0x97,0x95,0x52,
0x8f,0xf,0xbe,0x77,0x72,0x53,0xad,0xeb,0xb8,0x2c,0x3,0x41,0xcc,0xd7,0xc,0x5f,
0xf,0x21,0x10,0x0,0x0,0x2c,0xe,0xbd,0xca,0x47,0xbf,0xd9,0x37,0xe5,0x78,0xbd,
0xce,0xaf,0x8c,0x5e,0x40,0x7b,0x62,0x69,0xe0,0x8d,0x63,0x82,0x9f,0xf9,0x7c,0x5c,
0x5f,0x3e,0xfb,0x98,0xd8,0x93,0x27,0xe8,0x1,0x0,0x80,0x5,0x53,0xc9,0x52,0xdd,
0x8b,0xd1,0xcf,0x5b,0x52,0x4a,0x8e,0xba,0xb6,0x9c,0xd6,0x9f,0xcf,0xde,0xd6,0x8f,
0xf3,0x4,0xc5,0x2c,0x83,0x41,0x0,0x0,0x0,0x16,0x89,0xd9,0xe7,0xcf,0xbe,0xb7,
0x99,0x1,0x70,0x44,0xd9,0x2b,0x7f,0x71,0x4d,0xbb,0xe6,0xbd,0xfd,0x9a,0xa4,0x93,
0x7,0x0,0x0,0x58,0x24,0xce,0xbe,0x7f,0x62,0x34,0x1,0x3b,0xc,0xe4,0x2a,0xa5,
0xfa,0xcd,0xbe,0xa3,0xe8,0x87,0xbf,0x3c,0xd3,0xae,0x24,0xf5,0x1,0xb4,0x1f,0x27,
0x55,0xf8,0x8,0x82,0x0,0x0,0x60,0x11,0xd,0x8c,0xf2,0xb5,0xf7,0xb9,0xa4,0xcc,
0x9e,0x92,0x47,0x6c,0xb3,0xaf,0xb9,0x9d,0x34,0x42,0x37,0x4f,0x9f,0x40,0x9a,0x7a,
0x1,0x0,0x0,0xac,0xa0,0x97,0xb1,0xf,0xa0,0x52,0xaa,0x8c,0x66,0x5f,0x49,0x6c,
0xf6,0x4d,0x3d,0x81,0x11,0x52,0x28,0x1,0x10,0x0,0x0,0x2c,0x9a,0xb8,0xea,0x5e,
0x25,0xe6,0xb9,0x81,0xc1,0x1e,0x25,0x9d,0xc3,0x50,0xb3,0x6f,0xd2,0x54,0x2f,0x49,
0xfd,0xfe,0xe2,0x50,0xed,0x3,0x0,0x0,0x18,0x16,0xb7,0xaa,0x47,0x9f,0xd1,0xd7,
0xaf,0xcc,0x1c,0x35,0xd4,0xec,0xdb,0xfb,0x8c,0x62,0x1f,0x90,0x65,0x5e,0x3f,0x42,
0x20,0x0,0x0,0x80,0x7b,0x4d,0xdf,0x54,0x25,0xe4,0x28,0x67,0xb3,0x6f,0xdc,0xe3,
0xe1,0xcf,0xcf,0x17,0xf2,0x8,0x7e,0x0,0x0,0x60,0xd1,0xc5,0xad,0xf8,0x11,0xa7,
0x9f,0x9e,0x4a,0xca,0x51,0xb1,0xcd,0xbe,0xe6,0xfe,0x2c,0xfb,0x92,0x10,0xfa,0x0,
0x0,0x0,0x1c,0xa,0x4e,0xf8,0x3c,0x8a,0xa5,0xb8,0x37,0x8a,0xb,0x7c,0x59,0x26,
0x85,0x2e,0xfb,0x24,0x1,0x0,0x0,0xe6,0x55,0xd6,0xf8,0x57,0xd6,0x38,0x8a,0xc4,
0x66,0xdf,0xbc,0xb2,0x9e,0x14,0x81,0x10,0x0,0x0,0xc0,0x90,0xd4,0xec,0x1b,0x4d,
0xee,0xdc,0xdf,0x1e,0xd1,0xd2,0x28,0xab,0x71,0x64,0x59,0xa,0x2e,0xeb,0x7b,0x1,
0x0,0x0,0xe0,0xd2,0x50,0x6b,0x6b,0x49,0xef,0xbb,0x94,0x76,0xc0,0x28,0xa1,0x8d,
0xc0,0x7,0x0,0x0,0x30,0x5d,0x9c,0xcb,0xbb,0x11,0xda,0x0,0x0,0x0,0xae,0x88,
0x6b,0x72,0xe7,0x94,0xc7,0xa3,0x48,0xad,0xfc,0x89,0x14,0x9b,0xb6,0x85,0x0,0x9,
0x0,0x0,0x30,0x7d,0x62,0xc3,0x5f,0xd6,0xd1,0xbe,0x0,0x0,0x0,0x98,0x1d,0xb1,
0x53,0xbd,0x24,0xa1,0x89,0x18,0x0,0x0,0x60,0x74,0x89,0xcb,0xbb,0x19,0xca,0xcc,
0x5b,0x43,0x95,0xbf,0x51,0x96,0x76,0x3,0x0,0x0,0x40,0x79,0x6,0xf2,0x55,0xd9,
0x2b,0x7c,0x0,0x0,0x0,0x60,0xa,0x95,0x5c,0x60,0x4b,0x9c,0xe7,0xaf,0x6c,0x54,
0x7,0x1,0x0,0x0,0xb2,0x19,0x57,0x6a,0x4a,0xac,0xfc,0x8d,0x23,0xac,0x11,0x0,
0x1,0x0,0x0,0x26,0xe7,0x4a,0x9a,0x7d,0x9,0x7c,0x0,0x0,0x0,0xe5,0x28,0x75,
0x6d,0x5f,0x0,0x0,0x0,0xcc,0x37,0xc2,0x1f,0x0,0x0,0xc0,0x2,0x21,0xfc,0x1,
0x0,0x0,0xcc,0x80,0xb2,0xba,0xd1,0x11,0xfe,0x0,0x0,0x0,0x16,0x8,0xe1,0xf,
0x0,0x0,0x60,0x81,0x10,0xfe,0x0,0x0,0x0,0x16,0x8,0xe1,0xf,0x0,0x0,0x60,
0x81,0x10,0xfe,0x0,0x0,0x0,0x16,0x8,0xe1,0xf,0x0,0x0,0x60,0x81,0x10,0xfe,
0x0,0x0,0x0,0x16,0x8,0xe1,0xf,0x0,0x0,0x60,0x81,0x10,0xfe,0x0,0x0,0x0,
0x16,0xc8,0xf2,0xa4,0x4f,0x0,0x0,0x80,0x51,0xd5,0xeb,0x75,0xb9,0x7d,0xfb,0xb6,
0x54,0xab,0xd5,0x81,0xfd,0xad,0x56,0x6b,0xe0,0x71,0xa7,0xd3,0x91,0x4e,0xa7,0x23,
0xf,0x1f,0x3e,0x94,0xd3,0xd3,0xd3,0xab,0x3c,0x45,0x60,0x6a,0x10,0xfe,0x0,0x0,
0x33,0x6f,0x7b,0x7b,0x7b,0x28,0xf8,0x89,0x88,0xac,0xac,0xac,0xc4,0xbe,0xc6,0xf3,
0x3c,0xf9,0xde,0xf7,0xbe,0x37,0xce,0xd3,0x2,0xa6,0x12,0xcd,0xbe,0x0,0x80,0x85,
0xe4,0xa,0x8b,0xc0,0x22,0x20,0xfc,0x1,0x0,0x66,0x9e,0xdd,0xbc,0x3b,0xae,0xd7,
0x0,0xf3,0x80,0xf0,0x7,0x0,0x98,0x79,0x9e,0xe7,0xe5,0x7e,0xcd,0xf1,0xf1,0xf1,
0x18,0xce,0x4,0x98,0x7e,0x84,0x3f,0x0,0xc0,0xcc,0x7b,0xf8,0xf0,0x61,0xae,0xe3,
0x5b,0xad,0x16,0x3,0x3e,0xb0,0xb0,0x8,0x7f,0x0,0x0,0x0,0xb,0x84,0xf0,0x7,
0x0,0x98,0x79,0xf4,0xdf,0x3,0xb2,0x63,0xaa,0x17,0x94,0x2a,0x69,0x5a,0x85,0x2c,
0xda,0xed,0x76,0xa1,0xbe,0x3b,0xf3,0xa6,0x56,0xab,0x49,0xad,0x56,0xcb,0xfd,0xba,
0xd5,0xd5,0xd5,0xfe,0xf6,0xf1,0xf1,0x31,0xdf,0x25,0x10,0x83,0xb0,0x88,0x45,0x46,
0xf8,0x43,0x69,0xb6,0xb7,0xb7,0x65,0x7d,0x7d,0x7d,0xac,0x9f,0xa1,0x27,0x68,0x4d,
0x92,0x25,0x40,0xbe,0xf5,0xd6,0x5b,0xa9,0xef,0x13,0xa7,0x5a,0xad,0xca,0x8d,0x1b,
0x37,0x12,0x8f,0x49,0xb,0x6f,0xf5,0x7a,0x7d,0xec,0xd3,0x4c,0xd4,0xeb,0x75,0xb9,
0x7b,0xf7,0xee,0x58,0x3f,0x3,0x0,0x30,0x7b,0x8,0x7f,0x28,0x4d,0xbd,0x5e,0x1f,
0xfb,0x67,0x64,0xa9,0x88,0x8d,0x5a,0x7d,0x9c,0x17,0xcc,0x61,0x86,0x45,0xd3,0x6e,
0xb7,0xaf,0xe4,0xbf,0x43,0xc0,0xac,0xa3,0xcf,0x1f,0x0,0x60,0x2e,0xd0,0xcd,0x1,
0xc8,0x86,0xca,0x1f,0x0,0xa0,0x54,0xf5,0x7a,0x5d,0x6e,0xde,0xbc,0x19,0xfb,0xfc,
0xd9,0xd9,0x59,0x7f,0x9b,0x7e,0xbe,0xc0,0xd5,0x23,0xfc,0x1,0x0,0x4a,0x53,0xaf,
0xd7,0xe5,0xce,0x9d,0x3b,0x89,0xc7,0xdc,0xba,0x75,0x6b,0xe0,0x71,0xa7,0xd3,0x91,
0xbd,0xbd,0xbd,0xc2,0xfd,0x70,0x1,0xe4,0x43,0xf8,0x3,0x0,0x94,0xa6,0x48,0x80,
0xab,0xd5,0x6a,0xa5,0x54,0xff,0xf2,0x7c,0x76,0xad,0x56,0xeb,0xf7,0xf,0xf6,0x3c,
0x4f,0xda,0xed,0xf6,0xc8,0x9f,0x6f,0x73,0xf5,0x3f,0xbe,0x71,0xe3,0x86,0x54,0xab,
0x55,0x39,0x39,0x39,0x21,0xec,0x62,0x62,0x8,0x7f,0x0,0x80,0xd2,0x78,0x9e,0x27,
0x9d,0x4e,0x27,0xd7,0x54,0x45,0x65,0x35,0xfd,0xe6,0x9,0x53,0x8d,0x46,0x43,0x1a,
0x8d,0x46,0xa6,0x63,0x93,0xa6,0x85,0xa9,0x56,0xab,0x85,0x6,0x99,0x30,0x1a,0x1f,
0x93,0x44,0xf8,0x3,0x0,0x94,0xaa,0xd5,0x6a,0x65,0xe,0x56,0x22,0x22,0xfb,0xfb,
0xfb,0x63,0x3c,0x9b,0xd1,0x8d,0x63,0x6,0x1,0x46,0xe3,0x63,0x92,0x18,0xed,0xb,
0x0,0x28,0x55,0xde,0xe6,0xcc,0x71,0x34,0xb9,0x2,0x88,0x47,0xf8,0x3,0x0,0x94,
0xea,0xe1,0xc3,0x87,0x93,0x3e,0x5,0x0,0x9,0x8,0x7f,0x0,0x80,0x52,0x31,0x75,
0xb,0x30,0xdd,0xe8,0xf3,0x87,0xd2,0x9c,0x9c,0x9c,0x8c,0x7d,0x6d,0xdf,0xac,0xa3,
0xf2,0xb2,0x2c,0xdf,0xf6,0xd4,0x53,0x4f,0xe5,0xea,0x97,0x24,0x22,0x72,0x78,0x78,
0x98,0x58,0xd5,0xa8,0xd5,0x6a,0x72,0xfd,0xfa,0xf5,0xc4,0xf7,0xc8,0xd2,0x41,0xbc,
0x8c,0x3e,0x46,0xa7,0xa7,0xa7,0x23,0xbf,0x7,0x30,0x6e,0x4,0x45,0xe0,0xea,0x11,
0xfe,0x50,0x9a,0x66,0xb3,0x29,0xed,0x76,0x7b,0xa8,0x23,0x73,0x96,0xf5,0x78,0x27,
0x61,0x75,0x75,0x35,0xf7,0x6b,0x1e,0x3e,0x7c,0x38,0x55,0xb,0xc2,0xc7,0x5,0xc9,
0x71,0x4d,0x5d,0x1,0x64,0x91,0xe7,0xf7,0x9d,0x7f,0xa7,0xc0,0xd5,0x23,0xfc,0xa1,
0x54,0xfc,0x87,0xfc,0x6a,0x79,0x9e,0x37,0x55,0x61,0x14,0x10,0x29,0x36,0xd7,0x1f,
0x80,0xab,0x43,0x9f,0x3f,0x0,0x0,0x80,0x5,0x42,0xf8,0x3,0x72,0xa0,0xca,0x6,
0x0,0x98,0x75,0x34,0xfb,0x2,0x0,0xe6,0x42,0x9e,0x95,0x36,0x5a,0xad,0xd6,0xd0,
0xff,0xcc,0x9d,0x9d,0x9d,0x39,0x8f,0x73,0xa9,0xd5,0x6a,0xce,0x55,0x4c,0xf4,0xf2,
0x6d,0x71,0xf4,0x60,0xae,0x83,0x83,0x83,0xcc,0xe7,0xa,0x94,0x8d,0xf0,0x7,0x0,
0x98,0xb,0x79,0x56,0xcd,0x68,0xb5,0x5a,0x72,0x74,0x74,0x54,0xf8,0xb3,0xe2,0x6,
0xb2,0xd1,0x3a,0x80,0x59,0x40,0xb3,0x2f,0x0,0xa0,0x74,0xc,0xfa,0x0,0xa6,0x17,
0xe1,0xf,0x0,0x50,0xba,0x49,0x84,0xbf,0x3c,0x95,0x3f,0x57,0x93,0x2d,0xb0,0x28,
0x8,0x7f,0x0,0x80,0xb9,0x90,0xa7,0xcf,0x1f,0xe1,0xf,0x8b,0x8c,0xf0,0x7,0x0,
0x28,0x5d,0x19,0xab,0xd4,0x0,0x18,0xf,0xc2,0x1f,0x0,0x0,0xc0,0x2,0x21,0xfc,
0x1,0x0,0x66,0x1e,0xcd,0xb8,0x40,0x76,0x84,0x3f,0x0,0xc0,0xc4,0xe4,0x19,0xa4,
0x91,0x24,0x6f,0xf8,0xcb,0xd3,0x3f,0x10,0x98,0x37,0x84,0x3f,0x0,0x40,0xa9,0xf2,
0x4,0xb1,0x49,0x85,0xb0,0xb2,0x42,0x27,0x30,0x8b,0x8,0x7f,0x58,0x58,0xae,0xd9,
0xfc,0x1,0x8c,0x8e,0x26,0x58,0x60,0xba,0x11,0xfe,0x0,0x0,0x0,0x16,0x8,0xcb,
0xbb,0x1,0x0,0x44,0xa4,0xd7,0x14,0xba,0xb1,0xb1,0x91,0xf9,0xf8,0x87,0xf,0x1f,
0x8a,0xe7,0x79,0x43,0xfb,0x6f,0xde,0xbc,0x59,0xe6,0x69,0x65,0x72,0xe3,0xc6,0x8d,
0x2b,0xff,0xcc,0x24,0xd5,0x6a,0x35,0xb5,0x49,0xbb,0x56,0xab,0xc9,0xf5,0xeb,0xd7,
0x13,0x8f,0xf1,0x3c,0x4f,0x8e,0x8f,0x8f,0xcb,0x3c,0x35,0x80,0xf0,0x7,0x0,0xe8,
0xd9,0xd9,0xd9,0x91,0xb5,0xb5,0xb5,0x2b,0xff,0xdc,0x67,0x9e,0x79,0x46,0x3c,0xcf,
0x93,0x76,0xbb,0x9d,0xeb,0x75,0xe6,0xfa,0xba,0x45,0xe6,0x15,0xbc,0x73,0xe7,0x8e,
0x33,0xbc,0xa6,0xc9,0x12,0xec,0xca,0x54,0xad,0x56,0x47,0x5a,0x87,0x18,0xb0,0x11,
0xfe,0x80,0x8c,0x58,0xb0,0x1d,0xf3,0x6e,0x92,0x83,0x20,0xaa,0xd5,0xea,0x95,0x4f,
0xc,0xcd,0x88,0x5f,0x2c,0x2a,0xfa,0xfc,0x1,0x5,0x6d,0x6c,0x6c,0xb0,0x8a,0x1,
0x0,0x60,0xe6,0x50,0xf9,0x3,0xa,0x58,0x59,0x59,0x91,0xad,0xad,0x2d,0x11,0xe9,
0x35,0x3d,0x3d,0x78,0xf0,0x40,0x4e,0x4e,0x4e,0xa,0x35,0x21,0x1,0x0,0x70,0x95,
0x8,0x7f,0x40,0x1,0x3b,0x3b,0x3b,0xfd,0xed,0x5a,0xad,0x26,0x5b,0x5b,0x5b,0x72,
0xeb,0xd6,0x2d,0x79,0xf0,0xe0,0x81,0x1c,0x1f,0x1f,0xcf,0x7d,0x8,0x5c,0x59,0x59,
0x91,0xd5,0xd5,0xd5,0xc4,0x63,0xe2,0x6,0x3,0xb8,0x2c,0x5a,0x93,0x7a,0xd6,0x3e,
0x63,0xd5,0x6a,0x35,0x71,0x20,0xc3,0xc3,0x87,0xf,0xe5,0xf4,0xf4,0xb4,0xcc,0x53,
0x3,0xb0,0x0,0x8,0x7f,0x40,0x4e,0x9b,0x9b,0x9b,0xce,0x79,0xcc,0xaa,0xd5,0xaa,
0xdc,0xba,0x75,0x4b,0xd6,0xd7,0xd7,0xe7,0x3a,0x4,0xae,0xad,0xad,0xc9,0xee,0xee,
0xee,0x95,0x7e,0x66,0xda,0x60,0x80,0xb4,0xe7,0xdf,0x7a,0xeb,0xad,0xfe,0xc0,0x0,
0xdb,0x8d,0x1b,0x37,0x32,0xf7,0x75,0xcb,0x3a,0x82,0xf3,0xaa,0xe6,0xb9,0x6b,0xb5,
0x5a,0x84,0x3f,0x0,0xb9,0x11,0xfe,0x80,0x1c,0xaa,0xd5,0xaa,0xac,0xaf,0xaf,0xa7,
0x1e,0xa3,0x43,0xe0,0xc1,0xc1,0x81,0x34,0x9b,0xcd,0x2b,0x3a,0xbb,0xab,0x31,0x89,
0x29,0x35,0xb2,0xc,0x6,0x98,0xc4,0x28,0x55,0x0,0x98,0x45,0xc,0xf8,0x0,0x72,
0xd8,0xde,0xde,0xce,0x55,0x25,0xda,0xd9,0xd9,0x91,0x3b,0x77,0xee,0x30,0x30,0x4,
0x0,0x30,0x35,0x8,0x7f,0x58,0x58,0x79,0xe7,0x14,0xab,0xd5,0x6a,0xd2,0x68,0x34,
0x72,0x7f,0x4e,0xbd,0x5e,0x97,0xdb,0xb7,0x6f,0xe7,0xa,0x8e,0x0,0x0,0x8c,0xb,
0xe1,0xf,0xb,0x2b,0x6f,0x7f,0xbc,0x51,0xfb,0x71,0xad,0xaf,0xaf,0xcb,0x7,0x3f,
0xf8,0x41,0x9a,0x27,0x1,0x0,0x13,0x45,0x9f,0x3f,0xe0,0xa,0x55,0xab,0x55,0xd9,
0xdd,0xdd,0x95,0x66,0xb3,0x29,0x7,0x7,0x7,0x73,0x39,0x20,0x4,0xb3,0xab,0xdd,
0x6e,0x67,0xea,0xa2,0x90,0x75,0x74,0x76,0x96,0xe3,0xce,0xce,0xce,0x32,0xbd,0x57,
0xbb,0xdd,0xce,0xf5,0xfb,0x52,0xaf,0xd7,0x53,0x2b,0xed,0x59,0x96,0x57,0xd3,0xc7,
0xe5,0xf9,0x9f,0xbf,0x2c,0x9f,0xd,0x4c,0x12,0xe1,0xf,0x98,0x80,0x46,0xa3,0x21,
0x2b,0x2b,0x2b,0x72,0xf7,0xee,0xdd,0xdc,0xcd,0xcf,0xc0,0xb8,0x1c,0x1c,0x1c,0xc8,
0xc1,0xc1,0xc1,0xa4,0x4f,0xa3,0xb0,0x46,0xa3,0x21,0x4f,0x3d,0xf5,0x54,0xe2,0x31,
0x3a,0x90,0xea,0x69,0x72,0xf8,0x1f,0x30,0x2c,0x22,0xc2,0x1f,0x30,0x21,0xb5,0x5a,
0x4d,0xee,0xdc,0xb9,0x23,0x87,0x87,0x87,0x2c,0xdc,0xe,0x8c,0x68,0x6d,0x6d,0x6d,
0x60,0xfe,0xcd,0x38,0x76,0x65,0x93,0xdf,0x3f,0x2c,0x22,0xfa,0xfc,0x1,0x19,0x9d,
0x9e,0x9e,0x8e,0x65,0x32,0xe2,0xad,0xad,0x2d,0xd9,0xd9,0xd9,0xa1,0x99,0x8,0x18,
0x41,0xd1,0xa,0x1e,0x23,0xf1,0xb1,0x88,0xa8,0xfc,0x1,0x19,0xb5,0xdb,0x6d,0x39,
0x3a,0x3a,0x92,0x95,0x95,0x15,0xd9,0xdc,0xdc,0x2c,0xf5,0x8f,0x46,0xa3,0xd1,0x90,
0x6a,0xb5,0x2a,0x77,0xef,0xde,0x2d,0xed,0x3d,0x81,0x69,0x54,0xad,0x56,0xfb,0xeb,
0x62,0xb7,0xdb,0x6d,0x39,0x3b,0x3b,0x2b,0x65,0xa2,0xea,0xa2,0xdd,0x27,0xa8,0xfa,
0x61,0x11,0x11,0xfe,0x80,0x9c,0x5a,0xad,0x96,0xec,0xed,0xed,0x49,0xa3,0xd1,0x28,
0x75,0xfa,0x16,0xdd,0x6c,0xb5,0xbf,0xbf,0x5f,0xca,0xfb,0x1,0xd3,0x68,0x63,0x63,
0x43,0x6e,0xdd,0xba,0x25,0x22,0xbd,0xaa,0xdb,0xfa,0xfa,0xba,0x78,0x9e,0x27,0xcd,
0x66,0x53,0x4e,0x4e,0x4e,0xa,0x87,0x38,0xcf,0xf3,0xc4,0xf3,0xbc,0x5c,0xbf,0x8f,
0xf,0x1e,0x3c,0x18,0xeb,0xd2,0x82,0x9b,0x9b,0x9b,0x52,0xad,0x56,0xe5,0x17,0xbf,
0xf8,0xc5,0xc2,0x2d,0x61,0x88,0xe9,0x46,0xf8,0x3,0xa,0x6a,0x36,0x9b,0x72,0x7a,
0x7a,0x2a,0x9b,0x9b,0x9b,0xa9,0xab,0x7e,0x64,0xd5,0x68,0x34,0xa4,0xdd,0x6e,0x4f,
0x75,0x35,0xe2,0x2a,0x3b,0xc8,0xa7,0x8d,0xf0,0xcc,0x3b,0x2,0x34,0x8b,0xac,0xeb,
0xee,0xd2,0x5c,0x58,0x4c,0xdc,0xd2,0x88,0xeb,0xeb,0xeb,0xb2,0xbe,0xbe,0xde,0xff,
0xf7,0x5f,0x64,0x30,0x46,0xd6,0xd1,0xca,0xda,0x38,0x7f,0xcf,0xea,0xf5,0x7a,0x3f,
0xe4,0xae,0xaf,0xaf,0x4b,0xa7,0xd3,0x91,0xa3,0xa3,0xa3,0xb9,0x5b,0xf1,0x7,0xb3,
0x89,0xf0,0x7,0x8c,0xc0,0xf3,0x3c,0x39,0x38,0x38,0x90,0xb3,0xb3,0xb3,0xd2,0xfa,
0xed,0x6d,0x6d,0x6d,0x49,0xb7,0xdb,0x9d,0xda,0x3f,0x12,0x27,0x27,0x27,0x99,0xae,
0x33,0x69,0x3d,0x5d,0x6d,0xde,0xab,0x21,0x59,0x82,0x48,0xd6,0xe9,0x46,0x5c,0xb2,
0x4e,0x93,0x32,0x4d,0xd2,0xbe,0x93,0x7a,0xbd,0x2e,0x3b,0x3b,0x3b,0xe2,0x79,0xde,
0xd8,0xd7,0xc8,0x4e,0xfb,0xf7,0x39,0x8a,0xd5,0xd5,0xd5,0x81,0xc7,0xb5,0x5a,0x4d,
0x76,0x76,0x76,0x64,0x73,0x73,0x53,0xe,0xe,0xe,0x58,0x93,0x19,0x13,0x45,0xf8,
0x3,0x4a,0x70,0x7a,0x7a,0x2a,0x2f,0xbe,0xf8,0xa2,0xec,0xee,0xee,0x96,0x52,0x11,
0xda,0xd9,0xd9,0x91,0x4e,0xa7,0x33,0x95,0xe1,0xc8,0xf3,0x3c,0x39,0x3a,0x3a,0x9a,
0xf4,0x69,0xcc,0x84,0x69,0xfc,0xf9,0x4d,0x52,0xa3,0xd1,0xc8,0x3c,0x5f,0x9e,0x5e,
0x23,0xbb,0xd1,0x68,0x64,0x9e,0x12,0xa9,0xd5,0x6a,0x4d,0x4d,0x45,0x36,0xee,0x3c,
0x6a,0xb5,0x9a,0xec,0xee,0xee,0x4a,0xab,0xd5,0x92,0xa3,0xa3,0x23,0xfe,0x8d,0x60,
0x22,0x18,0xed,0x8b,0x85,0x56,0xe6,0x1c,0x7b,0x9e,0xe7,0xc9,0xde,0xde,0x9e,0x3c,
0x78,0xf0,0xa0,0x94,0xf7,0xdb,0xdd,0xdd,0xcd,0xd4,0xfc,0x8,0xcc,0x8a,0xcd,0xcd,
0xcd,0xdc,0xaf,0xa9,0xd5,0x6a,0x85,0x5e,0x37,0x49,0xb5,0x5a,0x2d,0x75,0x25,0x9f,
0x95,0x95,0x15,0xb9,0x7d,0xfb,0x36,0x23,0xfd,0x31,0x11,0x84,0x3f,0x2c,0xb4,0x71,
0x34,0x27,0x1d,0x1c,0x1c,0x94,0x32,0x68,0xa3,0x5a,0xad,0xca,0xed,0xdb,0xb7,0x9,
0x80,0x98,0xb,0x79,0xaa,0x7e,0xa6,0x76,0xbb,0x3d,0x73,0x83,0xa0,0x36,0x36,0x36,
0x32,0x1f,0xdb,0x68,0x34,0x58,0xf6,0x11,0x57,0x8e,0xf0,0x7,0x8c,0x41,0xb3,0xd9,
0x94,0x97,0x5e,0x7a,0x69,0xe4,0x70,0x59,0xad,0x56,0xa9,0xc,0x60,0xe6,0x55,0xab,
0x55,0xd9,0xde,0xde,0xce,0xfd,0xba,0x76,0xbb,0x2d,0x7b,0x7b,0x7b,0x99,0x7f,0x8f,
0xa6,0xa1,0xf,0x64,0xb5,0x5a,0x95,0x46,0xa3,0x91,0xfb,0x35,0xbb,0xbb,0xbb,0x99,
0x26,0xa9,0x6,0xca,0x40,0xf8,0x3,0xc6,0x24,0xef,0x1f,0xae,0x38,0xf5,0x7a,0xbd,
0xd0,0x1f,0x4e,0x60,0x5a,0x6c,0x6c,0x6c,0xe4,0xfe,0x1f,0x98,0xb2,0x7e,0x7f,0xae,
0x5a,0x91,0x6b,0xd5,0xf4,0xb2,0x8f,0xc0,0xb8,0x11,0xfe,0x80,0x31,0x6a,0xb7,0xdb,
0xf2,0xe2,0x8b,0x2f,0x8e,0xd4,0xb7,0xb0,0xdd,0x6e,0xcf,0xf4,0x7a,0xab,0x58,0x6c,
0xe6,0x94,0x27,0x59,0xe9,0xfe,0xb3,0xb3,0x16,0xfc,0xf4,0x94,0x35,0x45,0xb5,0xdb,
0x6d,0xd6,0xfa,0xc6,0x95,0x20,0xfc,0x1,0x63,0xa6,0xff,0x90,0x15,0xf9,0x8f,0xfa,
0xac,0x56,0x3f,0x0,0xad,0x48,0xd5,0xfa,0xfe,0xfd,0xfb,0x33,0xf9,0x6f,0x7e,0x94,
0x49,0xdf,0xf9,0x5d,0xc7,0x55,0x22,0xfc,0x1,0x57,0xa0,0x48,0x0,0xe4,0x8f,0x1,
0x66,0x9d,0x5e,0xc6,0x2d,0x8f,0x56,0xab,0x55,0x78,0xf2,0xe5,0x49,0x4e,0x9b,0x52,
0xaf,0xd7,0x73,0xf7,0xf5,0xd3,0xf8,0x5d,0xc7,0x55,0x23,0xfc,0x1,0x19,0x8d,0x3a,
0xe8,0x22,0x4f,0x0,0x2c,0x6b,0xc0,0x8,0x30,0x29,0x45,0x9b,0x7b,0x67,0x6d,0x64,
0xaf,0x56,0xb4,0x5f,0x2e,0xbf,0xeb,0x98,0x4,0xc2,0x1f,0x16,0x5a,0x9e,0x69,0x54,
0xca,0x98,0x72,0x45,0x7,0xc0,0xa4,0xd5,0x3b,0x9a,0xcd,0xe6,0xcc,0xfe,0x1,0x4,
0xb4,0x22,0xa3,0xd4,0xf7,0xf7,0xf7,0xc7,0xba,0xea,0x86,0xa9,0xcc,0x2a,0xe1,0xda,
0xda,0x5a,0xa1,0x81,0x1a,0xa7,0xa7,0xa7,0xfc,0xae,0x63,0x22,0x58,0xe1,0x3,0xb,
0x6d,0x12,0x53,0xa8,0x98,0xd5,0xd,0xbb,0x99,0x68,0x7f,0x7f,0x7f,0x6a,0x97,0x75,
0x3,0xb2,0xda,0xde,0xde,0xce,0xfd,0x3f,0x4b,0x7a,0xad,0xec,0x59,0xa3,0xa7,0x63,
0x2a,0x82,0x81,0x5c,0x98,0x14,0x2a,0x7f,0xc0,0x84,0xec,0xef,0xef,0xf,0xfc,0xb1,
0x23,0xf8,0x61,0x1e,0xac,0xad,0xad,0xe5,0x1e,0xf1,0x3a,0xcb,0x23,0xda,0x8b,0xce,
0xc3,0xd9,0x6c,0x36,0xaf,0xac,0xca,0x9,0xd8,0xa8,0xfc,0x1,0x13,0xb4,0xbf,0xbf,
0x2f,0x3b,0x3b,0x3b,0x72,0x74,0x74,0xc4,0x14,0xf,0x98,0x79,0xf5,0x7a,0xbd,0x50,
0x15,0x6c,0x7f,0x7f,0x7f,0x26,0xfb,0xbc,0xad,0xad,0xad,0x15,0x5a,0x99,0xc3,0xf3,
0xbc,0x99,0xd,0xbb,0x98,0xf,0x84,0x3f,0x60,0x82,0x3c,0xcf,0x93,0xbb,0x77,0xef,
0x4e,0xfa,0x34,0x80,0x91,0x15,0x5d,0x8d,0xe6,0xf0,0xf0,0x70,0x26,0xff,0xc7,0xa7,
0x56,0xab,0x15,0x6e,0xee,0x9d,0xd5,0xa9,0x6c,0x30,0x3f,0x68,0xf6,0x5,0x0,0x8c,
0xac,0xc8,0x3a,0xd4,0xa7,0xa7,0xa7,0x85,0xa7,0x75,0x99,0xb4,0xdd,0xdd,0xdd,0x42,
0xcd,0xbd,0xed,0x76,0x7b,0x66,0xaf,0x19,0xf3,0x83,0xf0,0x7,0x0,0x18,0xc9,0xce,
0xce,0x4e,0xee,0xe0,0xd7,0xe9,0x74,0x4a,0x1f,0xe9,0x9a,0x27,0x8c,0x8d,0x32,0xd8,
0xab,0xc8,0x80,0x16,0x8d,0xd1,0xbd,0x98,0x6,0x84,0x3f,0x0,0x40,0x61,0x3b,0x3b,
0x3b,0x85,0x26,0x37,0xbe,0x7b,0xf7,0x6e,0xe9,0x4d,0x9f,0x57,0x31,0x75,0x53,0xa3,
0xd1,0x28,0xbc,0x84,0xdb,0xfd,0xfb,0xf7,0x67,0xb2,0x89,0x1b,0xf3,0x87,0xf0,0x7,
0x0,0x28,0xa4,0x68,0xf0,0x9b,0xd5,0x7e,0x7e,0x45,0x7,0xb4,0x88,0xf4,0x9a,0x7b,
0x8f,0x8e,0x8e,0x4a,0x3e,0x23,0xa0,0x18,0xc2,0x1f,0x0,0x20,0xb7,0xa2,0xc1,0xaf,
0xd9,0x6c,0xce,0x64,0x9f,0xb7,0x7a,0xbd,0x2e,0xb7,0x6f,0xdf,0x2e,0xf4,0x5a,0x6,
0x76,0x61,0xda,0x30,0xda,0x17,0xb,0xab,0x56,0xab,0x4d,0xfa,0x14,0x80,0x99,0x53,
0xad,0x56,0xb,0xd,0xee,0x10,0x19,0xff,0x7c,0x7e,0xe3,0xfa,0x9d,0xae,0x56,0xab,
0x85,0x7,0x78,0x88,0xf4,0x26,0x73,0x66,0x4e,0x3f,0x4c,0x13,0x2a,0x7f,0x58,0x58,
0x84,0x3f,0x20,0x9f,0x7a,0xbd,0x2e,0x77,0xee,0xdc,0x29,0x14,0xfc,0x74,0xf5,0x6b,
0x9c,0x53,0x9c,0x5c,0xbf,0x7e,0x3d,0xd7,0xf1,0x59,0xae,0x43,0x87,0xdd,0xa2,0xff,
0xbd,0x68,0x36,0x9b,0x4c,0xde,0x8e,0xa9,0x43,0xe5,0xf,0x0,0x90,0xaa,0xd1,0x68,
0xc8,0xf6,0xf6,0x76,0xe1,0xea,0xd7,0xde,0xde,0xde,0xd4,0x55,0xbf,0xd2,0xae,0x65,
0x94,0x2a,0xa7,0xc8,0x6c,0xaf,0x5c,0x82,0xf9,0x46,0xf8,0x3,0x0,0xc4,0xaa,0x56,
0xab,0xb2,0xbd,0xbd,0x5d,0xa8,0x7f,0x9f,0xb6,0xbf,0xbf,0x7f,0x25,0x3,0x3c,0xca,
0x5c,0xab,0x7b,0xd4,0xe0,0x77,0x15,0x95,0x4e,0xa0,0x28,0xc2,0x1f,0x90,0x51,0xd1,
0x3f,0x2,0xc0,0xac,0xd2,0xa3,0x5b,0x47,0xf9,0xb7,0x7f,0x95,0x6b,0x56,0x97,0xf5,
0x3b,0x3a,0x6a,0xf0,0x13,0xe9,0x4d,0x65,0x33,0x6d,0x95,0x4e,0x40,0x23,0xfc,0x1,
0x19,0x95,0x59,0x55,0x0,0xa6,0xdd,0xc6,0xc6,0x86,0xdc,0xba,0x75,0x6b,0xa4,0x7f,
0xf7,0x57,0x19,0xfc,0x8a,0x58,0x5d,0x5d,0x95,0x56,0xab,0x35,0xb0,0xaf,0x56,0xab,
0xc9,0xee,0xee,0xee,0xc8,0x81,0xd7,0x7e,0x5f,0x60,0x9a,0x10,0xfe,0x0,0x0,0x3,
0x56,0x56,0x56,0xe6,0x3e,0xf8,0xb9,0xe8,0xe9,0x5c,0x46,0xb9,0x6e,0x6,0x78,0x60,
0x16,0x30,0xda,0x17,0x0,0x30,0xa0,0xd5,0x6a,0xc9,0x8b,0x2f,0xbe,0x28,0xf,0x1e,
0x3c,0x28,0xf4,0xfa,0x49,0x5,0xbf,0x51,0x46,0xf0,0xaf,0xad,0xad,0x95,0x12,0xfc,
0x58,0xbe,0xd,0xb3,0x80,0xca,0x1f,0x0,0x60,0x88,0xe7,0x79,0x72,0x70,0x70,0x20,
0xc7,0xc7,0xc7,0xb2,0xb9,0xb9,0x99,0x69,0xc0,0x87,0x7e,0xcd,0xa4,0x2a,0x5f,0x79,
0xc3,0x9f,0xe,0x7a,0x9b,0x9b,0x9b,0x72,0xeb,0xd6,0xad,0x91,0x3e,0xbb,0xdd,0x6e,
0x13,0xfc,0x30,0x33,0x8,0x7f,0x0,0x80,0x58,0x9d,0x4e,0x47,0xf6,0xf7,0xf7,0xe5,
0xe8,0xe8,0x48,0x76,0x76,0x76,0x64,0x65,0x65,0xc5,0x79,0x9c,0xe7,0x79,0xb2,0xb7,
0xb7,0x37,0x53,0xcb,0xb6,0xad,0xac,0xac,0xc8,0xee,0xee,0xae,0xac,0xad,0xad,0x8d,
0xf4,0x3e,0xed,0x76,0x5b,0xf6,0xf6,0xf6,0x4a,0x3a,0x2b,0x60,0xfc,0x8,0x7f,0x58,
0x58,0x37,0x6e,0xdc,0x98,0xf4,0x29,0x0,0x33,0xa3,0xd3,0xe9,0xc8,0xde,0xde,0x9e,
0xac,0xac,0xac,0xc8,0xce,0xce,0xce,0x40,0x95,0x4d,0x87,0x9f,0x59,0x9b,0xd6,0xa4,
0x5e,0xaf,0x8f,0x3c,0x42,0x78,0x56,0xaf,0x1d,0x8b,0x8d,0xf0,0x87,0x85,0xc5,0xe8,
0x5d,0x20,0x3f,0xdd,0x1f,0x70,0x73,0x73,0x53,0xd6,0xd6,0xd6,0xe4,0xf4,0xf4,0x54,
0x8e,0x8e,0x8e,0x26,0x7d,0x5a,0x22,0xd2,0x9b,0x48,0x7a,0x75,0x75,0x35,0xf5,0xb8,
0x46,0xa3,0x51,0xca,0xa,0x3f,0x4,0x3f,0xcc,0x2a,0xc2,0x1f,0x0,0x20,0xb7,0xa3,
0xa3,0xa3,0xa9,0x9,0x7d,0x5a,0xab,0xd5,0x4a,0x9c,0x62,0xa5,0x56,0xab,0xd,0x55,
0x2d,0x8b,0x22,0xf8,0x61,0x96,0x11,0xfe,0x80,0x1c,0x6a,0xb5,0x1a,0x13,0xb7,0x2,
0x33,0xa6,0x5a,0xad,0xf6,0xe7,0x2d,0x2c,0x3,0xc1,0xf,0xb3,0x8e,0xf0,0x7,0xe4,
0x40,0xf8,0x3,0x66,0x87,0xe,0x7d,0xeb,0xeb,0xeb,0xa5,0x75,0xf3,0x68,0x36,0x9b,
0x72,0x70,0x70,0x40,0xf0,0xc3,0x4c,0x23,0xfc,0x1,0x0,0xe6,0xca,0x38,0x42,0x9f,
0x8,0xf3,0xf8,0x61,0x7e,0x10,0xfe,0x0,0x0,0x73,0xa1,0x5e,0xaf,0xcb,0xc6,0xc6,
0x46,0xa6,0x39,0x9,0xf3,0x3a,0x3c,0x3c,0x94,0xe3,0xe3,0xe3,0xd2,0xdf,0x17,0x98,
0x4,0xc2,0x1f,0x0,0x60,0x66,0xd5,0x6a,0x35,0xb9,0x79,0xf3,0xa6,0xac,0xaf,0xaf,
0x97,0x32,0x90,0xc3,0x36,0xe9,0x89,0xab,0x81,0x71,0x20,0xfc,0x1,0x0,0x66,0xca,
0xca,0xca,0x8a,0xdc,0xbc,0x79,0x53,0xd6,0xd6,0xd6,0xc6,0x12,0xf8,0xb4,0x59,0x9c,
0xb8,0x1a,0xc8,0x82,0xf0,0x87,0x85,0x15,0xb7,0x52,0x1,0x80,0xe9,0x51,0xad,0x56,
0xa5,0x5e,0xaf,0xcb,0xea,0xea,0xaa,0xac,0xac,0xac,0x5c,0xd9,0xef,0x6d,0xab,0xd5,
0x92,0xbb,0x77,0xef,0x32,0xb0,0x3,0x73,0x89,0xf0,0x7,0x0,0x98,0xb8,0x5a,0xad,
0xd6,0xbf,0x5d,0xbf,0x7e,0x5d,0x56,0x56,0x56,0xfa,0x8f,0xaf,0xda,0xfd,0xfb,0xf7,
0xa7,0x6e,0xe,0x43,0xa0,0x4c,0x84,0x3f,0x20,0x87,0x1b,0x37,0x6e,0x24,0x4e,0x22,
0xb,0x2c,0x8a,0x6a,0xb5,0x2a,0x3b,0x3b,0x3b,0x52,0xad,0x56,0x73,0xff,0x4e,0x98,
0xa1,0xae,0x5e,0xaf,0x4f,0xcd,0x6a,0x3b,0xed,0x76,0x5b,0xf6,0xf7,0xf7,0x69,0xe6,
0xc5,0xdc,0x23,0xfc,0x1,0x39,0x4c,0xcb,0x1f,0x29,0x60,0xd2,0xd6,0xd6,0xd6,0x64,
0x6d,0x6d,0x4d,0x44,0xe6,0xa3,0xb,0x5,0xd5,0x3e,0x2c,0x12,0xc2,0x1f,0x0,0x20,
0xb7,0x66,0xb3,0x29,0x4f,0x3d,0xf5,0xd4,0xcc,0x7,0xbf,0x56,0xab,0x25,0xfb,0xfb,
0xfb,0x4c,0xde,0x8e,0x85,0xb2,0x34,0xe9,0x13,0x0,0x0,0xcc,0xa6,0x59,0x9e,0xf0,
0x58,0x2f,0xd1,0xb6,0xb7,0xb7,0x47,0xf0,0xc3,0xc2,0xa1,0xf2,0x7,0x0,0x28,0xa4,
0xd3,0xe9,0xc8,0xfd,0xfb,0xf7,0x4b,0x5b,0x33,0xf7,0x2a,0x74,0x3a,0x1d,0x39,0x3a,
0x3a,0x62,0xde,0x3e,0x2c,0x34,0xc2,0x1f,0x16,0x56,0xbd,0x5e,0x9f,0xf4,0x29,0x0,
0x33,0xef,0xe8,0xe8,0x48,0x1a,0x8d,0xc6,0x44,0x46,0xe5,0xe6,0xd1,0x6a,0xb5,0xe4,
0xf8,0xf8,0x58,0x4e,0x4f,0x4f,0x27,0x7d,0x2a,0xc0,0xc4,0x11,0xfe,0xb0,0xb0,0x8a,
0xc,0xde,0x60,0xc0,0x7,0x30,0x6c,0x7f,0x7f,0x5f,0x6e,0xdf,0xbe,0x3d,0xe9,0xd3,
0x70,0x6a,0x36,0x9b,0x72,0x72,0x72,0xc2,0x28,0x7d,0xc0,0x40,0xf8,0x3,0x72,0xa0,
0x5a,0x8,0xc,0x6b,0xb5,0x5a,0x72,0x7a,0x7a,0xda,0x1f,0xfd,0x3b,0x69,0xed,0x76,
0xbb,0x1f,0xfa,0x98,0xa4,0x19,0x18,0x46,0xf8,0x3,0x0,0x8c,0xec,0xe0,0xe0,0x60,
0xa2,0xe1,0xaf,0xd3,0xe9,0xc8,0xe9,0xe9,0xa9,0x9c,0x9c,0x9c,0x30,0x4f,0x1f,0x90,
0x82,0xf0,0x7,0x0,0x18,0x59,0xa7,0xd3,0x91,0x66,0xb3,0x29,0x8d,0x46,0xe3,0xca,
0x3e,0x53,0x57,0xf8,0xce,0xce,0xce,0x8,0x7c,0x40,0xe,0x84,0x3f,0x2c,0xa4,0xa2,
0xcd,0xb7,0xf4,0xf9,0x3,0xe2,0x9d,0x9c,0x9c,0x8c,0x35,0xfc,0xb5,0xdb,0x6d,0x69,
0xb5,0x5a,0x72,0x76,0x76,0x26,0xad,0x56,0x8b,0x26,0x5d,0xa0,0x20,0xc2,0x1f,0x90,
0xc3,0xb4,0x8f,0x68,0x4,0x26,0xa9,0xd5,0x6a,0x49,0xa7,0xd3,0x29,0xe5,0xf7,0xc4,
0xf3,0xbc,0x7e,0xd8,0x7b,0xf8,0xf0,0x21,0x61,0xf,0x28,0x11,0xe1,0xf,0xb,0xa9,
0xdd,0x6e,0xcb,0xfd,0xfb,0xf7,0x73,0xaf,0x4e,0x70,0x70,0x70,0x30,0xa6,0x33,0x2,
0xe6,0x43,0xb3,0xd9,0xcc,0x35,0xef,0x9f,0x1e,0x85,0xdb,0x6e,0xb7,0xa5,0xd3,0xe9,
0xc8,0xc3,0x87,0xf,0xa5,0xdd,0x6e,0x13,0xf4,0x80,0x31,0x22,0xfc,0x61,0x61,0xb1,
0x8e,0x27,0x50,0xbe,0xa3,0xa3,0x23,0x39,0x3e,0x3e,0x4e,0xec,0x5a,0x41,0xb8,0x3,
0x26,0x8b,0xf0,0x7,0x0,0x28,0x95,0xe7,0x79,0xcc,0xab,0x7,0x4c,0x31,0xd6,0xf6,
0x5,0x0,0x0,0x58,0x20,0x84,0x3f,0x0,0x0,0x80,0x5,0x42,0xf8,0x3,0x0,0x0,
0x58,0x20,0xa5,0x86,0x3f,0xa5,0x54,0x99,0x6f,0x7,0x0,0x0,0x80,0x92,0x51,0xf9,
0x3,0x0,0x0,0x58,0x20,0xa5,0x86,0xbf,0x4a,0xa5,0x52,0xe6,0xdb,0x1,0x0,0x0,
0xa0,0x64,0x54,0xfe,0x0,0x0,0x0,0x16,0x8,0x7d,0xfe,0x0,0x0,0x0,0x66,0x44,
0x19,0x59,0x8b,0xca,0x1f,0x0,0x0,0xc0,0x2,0x21,0xfc,0x1,0x0,0x0,0x2c,0x10,
0xc2,0x1f,0x0,0x0,0xc0,0x94,0x52,0x4a,0x49,0xd9,0x9d,0xea,0x6,0xc2,0x9f,0x6e,
0x47,0x36,0xdb,0x93,0x93,0xda,0x96,0xe9,0xe3,0x7,0x0,0x0,0x30,0x5b,0xa8,0xfc,
0x1,0x0,0x0,0x4c,0xbb,0x12,0x2b,0x80,0x84,0x3f,0x0,0x0,0x80,0x9,0x99,0x44,
0x2b,0x2a,0xe1,0xf,0x0,0x0,0x60,0x92,0x94,0xea,0xdd,0x62,0x1e,0x67,0xed,0x8e,
0x97,0x55,0xa6,0xf0,0x57,0x66,0x2a,0x65,0x15,0x10,0x0,0x0,0x80,0xc,0xcc,0xd0,
0x57,0xe2,0xdb,0x96,0x5e,0xf9,0x63,0x10,0x8,0x0,0x0,0x40,0x71,0x4a,0x86,0xf3,
0x94,0xb2,0xab,0x83,0x23,0xe8,0x87,0x3f,0xe7,0x87,0x24,0x3c,0x2e,0x82,0xaa,0x1f,
0x0,0x0,0xc0,0x20,0x1d,0xf6,0xf4,0xad,0xbf,0x5f,0x6f,0x3b,0x66,0x63,0x19,0xc5,
0x50,0xe5,0x2f,0xeb,0xd4,0x2e,0x54,0xf8,0x0,0x0,0x0,0xca,0xd5,0xf,0x81,0xc6,
0x76,0xd9,0x4a,0x69,0xf6,0x25,0x8,0x2,0x0,0x0,0x14,0x63,0x86,0xbd,0xb8,0xe7,
0x24,0xe1,0x98,0xbc,0x96,0xf4,0x1b,0xc7,0x9d,0x8c,0xf3,0x24,0x8,0x7b,0x0,0x0,
0x0,0xa3,0x73,0x65,0x2a,0xc7,0x68,0x5f,0xdd,0xe7,0xaf,0x94,0xf0,0xe7,0x6a,0xca,
0x25,0xdc,0x1,0x0,0x0,0x8c,0x9f,0x2b,0x71,0xd,0xf5,0x1,0x2c,0xb1,0xea,0x27,
0x92,0xa1,0xd9,0x37,0xed,0x83,0xb2,0x9c,0x8,0x3,0x3d,0x0,0x0,0x0,0x7a,0x86,
0x8a,0x6d,0x46,0x55,0x2f,0xc,0xc3,0xa1,0x3e,0x7f,0x66,0xb3,0x6f,0x19,0x86,0x46,
0xfb,0xe6,0x5d,0xdf,0x17,0x0,0x0,0x0,0xc5,0xe8,0x70,0x17,0xda,0x4d,0xba,0x56,
0xe,0xb,0xcb,0x9e,0xea,0x25,0x4b,0xb8,0x8b,0xeb,0xff,0x97,0xf4,0x3c,0x0,0x0,
0x0,0xdc,0x9c,0xfd,0xf8,0x8c,0xe6,0xde,0x30,0xc,0xfb,0x95,0x40,0x73,0xff,0xa8,
0x12,0xfb,0xfc,0x65,0x9d,0xf6,0x25,0x2f,0x9a,0x81,0x1,0x0,0xc0,0x22,0x1a,0xca,
0x5a,0xbd,0x7,0xa2,0xa2,0x90,0xa7,0x2b,0x80,0xea,0xf2,0x5,0x3,0xfb,0xcb,0x10,
0x3b,0xc9,0xb3,0x6b,0xbf,0x6b,0x2,0x42,0x0,0x0,0x0,0xe4,0x63,0x66,0xaa,0xd0,
0x1c,0xd0,0x11,0x5,0x41,0x5d,0xf5,0xb,0x75,0x3f,0x40,0xdd,0x17,0xc9,0xdc,0x9b,
0x54,0x0,0x0,0xd,0x94,0x49,0x44,0x41,0x54,0x70,0x1c,0x53,0xbd,0x8c,0xd2,0xe7,
0x8f,0x50,0x8,0x0,0x0,0xe0,0x96,0xb8,0x64,0x9b,0x6e,0xe6,0x35,0x7,0x78,0x38,
0x6e,0x65,0x28,0xdc,0xec,0x3b,0x74,0xf2,0x9,0x8f,0x1,0x0,0x0,0xd0,0x63,0x8e,
0xf2,0xd,0x8d,0xd0,0xa7,0x9f,0xeb,0x87,0x40,0xdd,0x1c,0x6c,0x54,0x0,0xcb,0x90,
0x3a,0xda,0xd7,0xbc,0x77,0x85,0x3c,0x82,0x1e,0x0,0x0,0x40,0x32,0x57,0x37,0xba,
0xfe,0x8,0x5e,0xa3,0xa9,0xb7,0x1f,0xf6,0x82,0xe0,0xb2,0xd9,0xb7,0xc4,0xe0,0x27,
0x22,0xb2,0x9c,0xb7,0xf2,0x97,0x56,0x7a,0x64,0xa2,0x68,0x0,0x0,0x80,0x64,0xba,
0xc9,0x57,0x87,0x3b,0xb3,0xe2,0x17,0x9a,0x7d,0xfe,0xcc,0x50,0x38,0xae,0x1,0x1f,
0x45,0x97,0x74,0x4b,0x7b,0x9e,0x11,0xbe,0x0,0x0,0x60,0x11,0xc5,0x15,0xda,0xec,
0xa0,0xa7,0x62,0x82,0x5f,0x58,0xe2,0x60,0xf,0x91,0xa8,0xcf,0x5f,0x52,0x13,0xaf,
0xab,0x4c,0x99,0x74,0x51,0x69,0xfb,0x75,0x8,0x24,0xc,0x2,0x0,0x80,0x45,0x33,
0xb0,0x8a,0x87,0x35,0x9f,0x9f,0xf3,0x16,0x4,0xfd,0x26,0xe0,0x92,0xb4,0x13,0x2b,
0x7f,0x71,0xfd,0xfd,0xe2,0x46,0x9e,0xe4,0x9,0x86,0x0,0x0,0x0,0xf3,0xce,0xcc,
0x41,0x66,0x80,0xb,0xed,0xbe,0x7d,0x61,0x28,0x41,0x14,0xf4,0x2,0x23,0xf8,0x5,
0xd1,0xad,0xcc,0x3e,0x7f,0x4b,0x4a,0xa9,0x37,0xb3,0x6,0xbf,0x51,0x4b,0x8e,0x54,
0xfb,0x0,0x0,0xc0,0xa2,0x70,0xe5,0xaa,0xb4,0x26,0xde,0x7e,0x0,0xc,0x2,0xf1,
0x8d,0x20,0x58,0x62,0x31,0xed,0x8d,0x25,0x11,0x39,0x73,0x5,0x3c,0xbb,0xb2,0x97,
0x54,0xe1,0xcb,0x1b,0xa,0x69,0xfa,0x5,0x0,0x0,0xf3,0x2c,0x29,0x2b,0x99,0xc1,
0x2f,0x88,0x2a,0x7c,0xbe,0xef,0xf7,0xab,0x7e,0xfd,0x6a,0x5f,0x10,0x48,0xe0,0xfb,
0x12,0x4,0x41,0xb9,0xe1,0x4f,0x29,0xf5,0x86,0xeb,0xa4,0xe2,0xee,0x5d,0x21,0x31,
0xed,0x82,0x1,0x0,0x0,0x16,0x95,0x2b,0xf4,0x29,0x1d,0xfc,0x74,0xb5,0x2f,0xc,
0x7b,0x95,0xbe,0x28,0xec,0xd9,0x95,0xbf,0x12,0x9d,0x2d,0x29,0xa5,0x8e,0x93,0xaa,
0x7e,0x71,0x55,0x40,0x42,0x1f,0x0,0x0,0xc0,0x30,0xe7,0x9c,0x7e,0x46,0x53,0xaf,
0xe,0x7e,0x81,0x11,0xf6,0x7c,0xdf,0xef,0x6d,0x87,0x61,0x7f,0x5b,0xdf,0x97,0x9c,
0xaf,0x9a,0xcb,0x22,0xd2,0x4c,0xeb,0xf3,0xe7,0xba,0x37,0x2f,0x28,0xa9,0x6a,0x8,
0x0,0x0,0xb0,0x28,0xe2,0x72,0x92,0x88,0xc,0xac,0xd9,0x6b,0xe,0xee,0x8,0x8c,
0x81,0x1d,0xbe,0xe7,0xd,0x86,0xc1,0x72,0x9b,0x7c,0x45,0x44,0x8e,0x97,0x95,0x52,
0xaf,0x64,0x9d,0xe8,0x39,0x4b,0x93,0x6f,0x5e,0x95,0x4a,0x85,0xa0,0x8,0x0,0x0,
0x66,0x9e,0xab,0x9f,0x9f,0xbe,0x1f,0x18,0xd4,0xa1,0xfb,0xf9,0x45,0x61,0xcf,0xac,
0xf4,0xf9,0xbe,0x2f,0x5e,0xb4,0xcf,0xf7,0xfd,0xb2,0x9b,0x7c,0x45,0x44,0x5e,0x59,
0x56,0x4a,0xdd,0xb3,0x4f,0xd0,0xbe,0x80,0x3c,0x7d,0xff,0xe2,0x6,0x89,0x0,0x0,
0x0,0xcc,0x2b,0x3b,0xf3,0xe8,0xd0,0x16,0x37,0xa2,0xd7,0x8f,0xaa,0x7b,0x66,0xe0,
0x33,0x43,0x9f,0x17,0x55,0x0,0x4b,0xe,0x7f,0xaf,0xdd,0x3b,0x3c,0x7c,0x63,0x59,
0x29,0xf5,0x13,0x11,0x9,0x94,0x52,0xd7,0xec,0x93,0xcf,0x3a,0x0,0x24,0x4f,0xd8,
0xd3,0x95,0x3e,0x2a,0x7e,0x0,0x0,0x60,0x1e,0x24,0x5,0x3f,0xb3,0xcf,0x5f,0x7f,
0xee,0x3e,0x5d,0xe9,0x8b,0xc2,0x9e,0xe7,0x79,0xe2,0x45,0xf7,0xdd,0x6e,0xb7,0xff,
0xd8,0xf7,0xfd,0xb2,0x4f,0x75,0x5f,0xa4,0x37,0xcf,0xdf,0xb9,0x52,0x6a,0x3f,0x69,
0xba,0x17,0xf3,0xc2,0xd2,0x6,0x81,0xb8,0x9a,0x84,0xed,0x2f,0x85,0x29,0x5e,0x0,
0x0,0xc0,0x3c,0x48,0xb,0x7e,0x66,0xc5,0xcf,0xd7,0x23,0x78,0x83,0xa0,0x1f,0xee,
0x7c,0xcf,0xbb,0xbc,0x45,0x8f,0xbd,0xe8,0xf1,0x18,0x8a,0x64,0x2f,0x8b,0x5c,0x2e,
0xef,0xf6,0x23,0x7d,0x1,0x45,0x46,0xfc,0x8e,0x7a,0x72,0x84,0x41,0x0,0x0,0x30,
0x4b,0x5c,0x63,0x1f,0x86,0x2a,0x7e,0xd6,0xe0,0xe,0x5d,0xf5,0x33,0x43,0x5e,0x57,
0xdf,0xba,0x5d,0xe9,0x5e,0x5c,0xf4,0xee,0xbb,0x5d,0xf1,0xcb,0x1f,0xe5,0x2b,0x22,
0xf2,0x23,0x11,0x91,0xa5,0xe8,0x2,0x5e,0xca,0x1a,0xfc,0xf2,0x54,0x4,0xcb,0x1a,
0x14,0x2,0x0,0x0,0x30,0x2d,0x5c,0x3,0x3b,0x5c,0x15,0xbf,0xc0,0x8,0x7e,0xbe,
0xd1,0xcf,0xaf,0x1b,0x5,0x3f,0x2f,0xa,0x7a,0xf6,0xcd,0xf7,0xbc,0x71,0xc,0xf4,
0x38,0x97,0xa8,0xf2,0xb7,0x1c,0x5,0xb4,0x97,0x44,0xe4,0x5c,0x29,0xf5,0xb8,0x79,
0x51,0x59,0x7,0x7f,0xe8,0xfb,0xa4,0xb0,0x97,0x54,0x25,0x24,0x20,0x2,0x0,0x80,
0x69,0x17,0x97,0x61,0xf4,0x7e,0x7b,0xe9,0x36,0x73,0xf2,0xe6,0xfe,0x40,0xe,0xb3,
0xea,0xa7,0x3,0xdf,0xc5,0x85,0x5c,0x5c,0x5c,0xc8,0xa3,0xa8,0xf2,0x37,0x86,0xbe,
0x7e,0x22,0x22,0x2f,0xdd,0x3b,0x3c,0x3c,0x17,0xb9,0x6c,0xf6,0x3d,0x2f,0x5a,0xfd,
0xcb,0xdb,0xff,0x2f,0xee,0xcb,0xb3,0x51,0x49,0x4,0x0,0x0,0xd3,0xc2,0x95,0x3f,
0x9c,0x3,0x3a,0xac,0xa6,0xde,0x81,0x11,0xbd,0xdd,0x6e,0xbf,0xda,0x77,0x11,0x5,
0xbe,0x8b,0x47,0x8f,0xe4,0xd1,0xa3,0x47,0x72,0xf1,0xe8,0x51,0xbf,0xd9,0x77,0xc,
0x55,0x3f,0x11,0x91,0x17,0xf4,0xc6,0x92,0x11,0xaa,0xfe,0x57,0xde,0x40,0x97,0x25,
0x8,0x9a,0x5f,0x5a,0xd2,0x20,0x90,0xb8,0xe3,0x92,0x8e,0x21,0x8,0x2,0x0,0x80,
0x71,0x8a,0xcb,0x34,0x49,0x3,0x3b,0xcc,0xe5,0xd9,0x6,0x82,0x5f,0x54,0xed,0xd3,
0xc1,0xef,0x51,0x14,0xfc,0x1e,0x3d,0x7a,0xd4,0xaf,0xfa,0x8d,0x29,0xf8,0x5,0x22,
0xf2,0x1d,0xfd,0x60,0xd9,0xb8,0xa8,0xef,0x2b,0xa5,0xce,0x45,0xe4,0xf1,0xac,0xcd,
0xbc,0xf6,0x7d,0xda,0xb6,0x4b,0x96,0x40,0x98,0xc4,0x7c,0xd,0x3,0x47,0x0,0x0,
0x40,0x19,0xd2,0x9a,0x78,0xcd,0x8a,0x9f,0x52,0xc6,0xe0,0xe,0x47,0xd5,0x4f,0xcf,
0xe1,0x67,0x57,0xfb,0x1e,0x3d,0x7a,0x24,0xe7,0xe7,0xe7,0xfd,0xed,0x31,0x86,0xbf,
0xbf,0xbc,0x77,0x78,0xf8,0x86,0x7e,0x60,0x86,0xbf,0x37,0x94,0x52,0xdf,0x11,0x91,
0x67,0x5d,0x17,0x98,0xf7,0x3e,0xad,0x62,0x98,0xe5,0x7d,0x44,0x86,0x3,0x5d,0x52,
0xc0,0x23,0x8,0x2,0x0,0x80,0xa2,0xb2,0xb4,0x4a,0xda,0x79,0x66,0x68,0x12,0x67,
0xc7,0x4,0xce,0xe6,0x28,0x5e,0x1d,0xf8,0xce,0x3b,0x9d,0x5e,0xf0,0x8b,0x6e,0xdd,
0x8b,0x8b,0x71,0x5,0x3f,0x11,0x91,0x3f,0x34,0x1f,0x98,0xe1,0x4f,0x44,0xe4,0x9b,
0x4a,0xa9,0x67,0x47,0x9,0x7d,0xe6,0x17,0x63,0x6e,0xc7,0x35,0x3,0x67,0x6d,0xe,
0xb6,0x9f,0xd7,0xe1,0x2e,0x2e,0xe4,0xd9,0xef,0x43,0x18,0x4,0x0,0x0,0xb6,0xb4,
0xd6,0xc9,0xa4,0xd0,0xa7,0xef,0xf5,0xc0,0xe,0x1d,0xfc,0x2,0x63,0x70,0x87,0x6e,
0xee,0xd5,0x15,0xbf,0xf3,0xf3,0x73,0x39,0x8f,0xee,0x3b,0x9d,0x8e,0x74,0xa2,0xca,
0x5f,0x10,0x4,0xe3,0xba,0xc4,0xd7,0x45,0xe4,0xbb,0xe6,0x8e,0x65,0x2b,0xb8,0xfd,
0x48,0x29,0xf5,0xb2,0x52,0xea,0x3d,0xc6,0xbe,0xc2,0x55,0xc0,0xa4,0x6d,0xf3,0x4b,
0xb3,0x8f,0x31,0x55,0x2a,0x15,0x67,0x70,0xd3,0xfb,0x93,0x42,0x9e,0xb9,0x4d,0xff,
0x40,0x0,0x0,0x10,0xc7,0xd5,0xfa,0xe8,0x6c,0xbd,0xc,0x43,0x9,0xed,0x8a,0x5f,
0xd4,0xc7,0x6f,0xa0,0x9f,0x9f,0xb1,0x5a,0xc7,0xc5,0xc5,0x85,0x74,0xa3,0x3e,0x7e,
0xe7,0xe7,0xe7,0x72,0x7e,0x7e,0x2e,0x6f,0xbe,0xf9,0xa6,0x74,0xde,0x7a,0x4b,0x1e,
0x9d,0x9f,0x8f,0x6b,0x4e,0x3f,0xed,0x6b,0xf7,0xe,0xf,0x7,0x92,0xa5,0x1d,0xfe,
0x44,0x29,0xf5,0x25,0xa5,0xd4,0x9f,0x9b,0x17,0xed,0xfa,0x52,0xd2,0xc2,0x9e,0xeb,
0x39,0x7d,0xd3,0x5f,0x50,0x5c,0xf5,0xcf,0xd4,0xaf,0xf0,0xf5,0x1e,0xc,0xec,0x77,
0xed,0x33,0xef,0xe3,0x64,0xa9,0x2,0x52,0x29,0x4,0x0,0x60,0xb6,0x64,0xd,0x50,
0xa9,0xcd,0xbb,0x4a,0x89,0x12,0x47,0xf8,0xd3,0x61,0x4f,0x87,0x3f,0x1d,0xfa,0xc2,
0xb0,0xb7,0x64,0x5b,0x14,0xfc,0x3c,0x7b,0x2a,0x97,0xa8,0xb9,0xf7,0x51,0x54,0xe5,
0xeb,0x74,0x3a,0xd2,0x79,0xeb,0x2d,0xe9,0x9c,0x9f,0x8f,0xb3,0x9f,0x9f,0x48,0x6f,
0x6e,0xbf,0x6f,0xda,0x3b,0x5d,0xe1,0xef,0x5,0xa5,0xd4,0xa1,0x88,0x6c,0xc5,0x5,
0xba,0xbc,0x1,0xd0,0xac,0xf6,0xf9,0xbe,0x3f,0x90,0x96,0x5d,0x5f,0xb4,0x29,0x29,
0xfc,0xa5,0xee,0xbf,0xdc,0x99,0xfa,0xed,0x10,0xf6,0x0,0x0,0x98,0x3f,0xb1,0x81,
0x50,0xe7,0x14,0xf3,0x18,0x33,0x8b,0x28,0x25,0xa1,0x71,0x1f,0x86,0xe1,0x65,0xf8,
0x33,0x6,0x77,0xe8,0x81,0x1d,0x81,0x63,0x80,0x87,0xa7,0x47,0xf6,0x76,0xbb,0xfd,
0x26,0xdf,0x47,0xe7,0xe7,0xbd,0xa6,0xde,0xf1,0x7,0x3f,0x11,0x91,0x6f,0xde,0x3b,
0x3c,0x3c,0xb3,0x77,0xba,0xc2,0x9f,0x28,0xa5,0xbe,0x28,0x22,0x7f,0x9a,0xd4,0x74,
0x9b,0xb4,0xcf,0x7c,0xce,0x6c,0xf,0x37,0x67,0xb9,0x1e,0x18,0x1d,0xa3,0xc3,0x5f,
0xf4,0xa5,0x27,0xd1,0x11,0xad,0x1f,0xd6,0x62,0x6,0x84,0xe4,0xd,0x7f,0x0,0x0,
0x60,0x1,0xb8,0x42,0x5f,0xb4,0x3f,0xd4,0xcf,0x85,0x61,0xef,0xf9,0xe8,0xde,0x19,
0xfc,0xa2,0x2c,0xd3,0x6f,0xee,0xb5,0xe7,0xf3,0x33,0x2a,0x7f,0x3,0x53,0xba,0x44,
0xd5,0x3f,0x5d,0xc,0x1b,0xa3,0x37,0x45,0xe4,0x2b,0xae,0x27,0xe2,0xc2,0xdf,0x77,
0x45,0xe4,0x9e,0x52,0xea,0xe9,0x2c,0x7d,0xf8,0xe2,0x9e,0xef,0x7,0x3e,0x5d,0x1a,
0x35,0x86,0x3f,0xeb,0x66,0x5f,0x9d,0xa6,0x87,0xc2,0x9f,0xd5,0xe6,0xee,0xac,0xcc,
0xc5,0x84,0xba,0xb8,0xa8,0x47,0x75,0xf,0x0,0x80,0xc5,0x61,0x57,0xfd,0x86,0xa,
0x4c,0x56,0xf6,0xd0,0x61,0x6f,0xa0,0xea,0x67,0xad,0xda,0x31,0x34,0x89,0xb3,0x19,
0xfe,0x3c,0xaf,0xbf,0x82,0x87,0xb9,0x7a,0xc7,0xa3,0xa8,0xbf,0xdf,0xc5,0xa3,0x47,
0x72,0x71,0x71,0xd1,0xcf,0x40,0x63,0xf6,0xfc,0xbd,0xc3,0xc3,0xd7,0x5d,0x4f,0xc4,
0x85,0xbf,0x40,0x44,0xfe,0xb5,0x52,0xea,0x6f,0x94,0x52,0xd7,0x8c,0xfd,0xa9,0xa1,
0xcf,0x4e,0xc4,0xae,0xd0,0x17,0xd8,0xc3,0xa2,0xa3,0xf0,0xa7,0x13,0xb7,0x58,0x9f,
0x5,0x0,0x0,0x50,0x86,0xa4,0x81,0x1d,0xe6,0xb6,0xd9,0x7a,0x69,0x87,0xbf,0x81,
0xaa,0x9f,0xef,0xf,0x4e,0xed,0x62,0xf5,0xf5,0xeb,0x46,0x4d,0xbe,0x17,0xd1,0xea,
0x1e,0x63,0x1c,0xd5,0x6b,0x3a,0x16,0x91,0x2f,0xc5,0x3d,0xe9,0xc,0x7f,0xd1,0xfd,
0xcb,0x4a,0xa9,0x6f,0x2a,0xa5,0x7e,0x23,0x4b,0xf5,0x2f,0x31,0xf4,0xe9,0x8e,0x90,
0x56,0xe7,0x48,0x7d,0x9c,0xf9,0x5,0xdb,0xef,0xed,0x3a,0x37,0x0,0x0,0x80,0x38,
0xae,0xbc,0x10,0xb7,0x6f,0x28,0xd7,0x44,0xc5,0x28,0x33,0x9b,0xc4,0xe5,0x1c,0x3d,
0xad,0x8b,0x3d,0xd0,0xc3,0xec,0xef,0xa7,0x47,0xfc,0x5e,0x41,0x33,0xaf,0xe9,0x33,
0xf7,0xe,0xf,0xbb,0x71,0x4f,0x2e,0xeb,0xb,0xd6,0xf7,0xd6,0xf6,0xe7,0x95,0x52,
0xbf,0xaa,0x94,0x7a,0x32,0xe6,0xf9,0xe4,0xe6,0x5d,0xe3,0xcb,0x71,0x5,0x40,0x57,
0x9a,0x16,0x11,0x77,0x8,0x34,0xda,0xe8,0xcd,0x73,0x1e,0xe2,0xfa,0xe1,0xa6,0x7c,
0x43,0x84,0x4a,0x0,0x0,0xe6,0x58,0x5c,0x86,0xb0,0x6,0x78,0xc,0x8c,0xf0,0x35,
0x46,0xf5,0x9a,0xfd,0xfd,0x74,0xf1,0xca,0xc,0x7d,0x66,0xf8,0xf3,0x3d,0x4f,0xba,
0x51,0xf5,0xcf,0x8f,0x82,0xe0,0x15,0x55,0xfb,0xb4,0x17,0xee,0x1d,0x1e,0x7e,0x3f,
0xe9,0x80,0x65,0x67,0xea,0xbd,0xdc,0x7e,0x43,0x29,0xf5,0x9c,0x52,0xea,0xdb,0xae,
0xe7,0xed,0xce,0x8e,0xb1,0xd5,0x3e,0x2b,0xf8,0xd9,0x23,0x7e,0x9d,0xcd,0xbf,0xc6,
0xbd,0x3d,0x12,0x47,0xc4,0xd1,0x51,0xd3,0x7a,0x6e,0x70,0x77,0xc6,0x70,0x47,0x8,
0x4,0x0,0x60,0xa6,0x39,0x2b,0x7c,0xc3,0x7,0xa5,0xf7,0xf5,0x33,0x82,0xdf,0xd0,
0xe0,0xd5,0x98,0x81,0x1e,0xfd,0xc1,0x1e,0x51,0xf3,0xaf,0x59,0xd8,0xba,0x22,0x6f,
0x88,0xc8,0xbf,0x49,0x3b,0x68,0x39,0x21,0xf8,0xe9,0xdb,0x1f,0x8b,0xc8,0xfb,0x95,
0x52,0x9f,0x76,0x56,0xfb,0xcc,0xca,0x9e,0xf9,0xa5,0xd8,0xcd,0xbc,0xc6,0xcd,0x3e,
0xd6,0x15,0xfe,0xcc,0xe4,0xad,0x7f,0x20,0xf6,0x80,0x90,0xa1,0xd1,0xc1,0x76,0xd3,
0xb5,0xeb,0x8a,0xed,0xce,0x9f,0x31,0x81,0x8f,0x18,0x8,0x0,0xc0,0x9c,0x88,0xcb,
0x7,0x46,0x96,0xd0,0x21,0x4f,0x44,0x86,0x5a,0x23,0xed,0x81,0x1e,0xe6,0xcd,0xe,
0x7f,0x13,0xa,0x7d,0xda,0x27,0xef,0x1d,0x1e,0xbe,0x96,0x76,0x50,0x6a,0xf8,0x8b,
0x1e,0x7f,0x46,0x29,0xf5,0x3e,0xa5,0xd4,0xbb,0xec,0xb,0xef,0x87,0x3f,0xb3,0x2f,
0x9f,0xdd,0xd4,0x1b,0x6d,0xeb,0x8a,0x9f,0xef,0xfb,0xfd,0x2a,0xa1,0x7e,0x3f,0xa5,
0x54,0xbf,0xff,0x9f,0x39,0x2,0x78,0xa0,0xa,0x28,0x46,0x3a,0xef,0x9d,0x98,0x33,
0x10,0xea,0x6b,0x70,0x71,0xf5,0x25,0x4,0x0,0x0,0xf3,0x27,0xe9,0x6f,0x7e,0xd2,
0x20,0xf,0x7b,0xb0,0x87,0x6b,0xed,0x5e,0x73,0xd,0x5f,0xbb,0x55,0x73,0x42,0x7e,
0x37,0xad,0xb9,0x57,0x8b,0x1b,0xed,0x6b,0x3f,0x3e,0x57,0x4a,0x7d,0x34,0x8,0x82,
0xbf,0xd,0xc3,0xf0,0x89,0xfe,0x85,0xc6,0x84,0x3f,0x57,0x13,0xaf,0x2b,0xf8,0xe9,
0xf0,0x38,0xf4,0xc5,0x9a,0xa5,0x56,0xb9,0x4c,0xe3,0xe6,0x79,0x99,0x5f,0xae,0x6b,
0x80,0x48,0x52,0x67,0xcf,0x51,0x43,0x1f,0xa1,0x11,0x0,0x80,0xe9,0x97,0x9a,0x5,
0xac,0x3e,0x7f,0x49,0x3,0x3d,0x6,0x8a,0x56,0x56,0xeb,0xa6,0x39,0x68,0x75,0x42,
0x7e,0x2c,0x22,0x9f,0xcf,0x7a,0xb0,0x73,0xc0,0x47,0xcc,0xa0,0x8e,0x57,0xc2,0x30,
0xfc,0x97,0xbe,0xef,0xff,0x59,0x10,0x4,0xd7,0xfa,0xd5,0xbf,0x68,0x88,0xb3,0xab,
0xda,0x97,0x7a,0x33,0xfa,0x4,0xda,0xa9,0xda,0x5c,0xfd,0xc3,0x2c,0xbd,0xc6,0x5,
0xc0,0xfe,0xb6,0xdd,0x47,0xd0,0xd8,0x27,0xf6,0x7e,0xe3,0xf9,0xfe,0x66,0xd6,0x6f,
0xe,0x0,0x0,0x4c,0x54,0xde,0x3e,0xfd,0xf6,0x18,0x2,0x3b,0xf8,0xf5,0x3,0xa0,
0xe,0x7e,0xae,0xea,0x9f,0x35,0x60,0x75,0xa,0xa,0x42,0xaf,0x89,0xc8,0xc7,0x93,
0x46,0xf7,0xda,0x86,0x9a,0x7d,0x5d,0x8f,0xf5,0x45,0xfa,0xbe,0xff,0x42,0x10,0x4,
0xcf,0x5,0xbe,0xff,0x75,0x33,0xf0,0xe9,0x10,0x67,0x87,0x3e,0xbb,0xda,0xe7,0x7a,
0x8d,0xd9,0x27,0xd0,0xfe,0x82,0xed,0xf4,0x6d,0xae,0x6,0x32,0x34,0x18,0xc4,0x68,
0x1a,0x1e,0xa,0x80,0xae,0x1f,0xba,0x96,0x21,0xf8,0x4d,0xc1,0xf,0x16,0x0,0x0,
0x14,0x91,0xd0,0xdf,0x2f,0x6d,0x45,0xf,0x33,0x3,0xd9,0x4d,0xc2,0x53,0xe2,0x4c,
0x44,0xfe,0x69,0x96,0x7e,0x7e,0xa6,0xa1,0x66,0x5f,0xbd,0x1d,0x37,0xb8,0x23,0x8,
0x82,0x6f,0xf8,0x41,0x50,0xf,0x83,0xe0,0xcb,0x3,0x6d,0xdd,0xc6,0x5c,0x37,0x3,
0xe1,0x2f,0xb8,0x9c,0xfd,0x3a,0x30,0x8e,0x19,0x68,0x2a,0x36,0x82,0xdf,0xc0,0x14,
0x30,0x56,0x33,0xf0,0xd0,0x60,0x10,0xfb,0x7,0x61,0x7,0xc0,0xb8,0xfe,0x80,0xf6,
0xb7,0x90,0xd2,0xf,0x70,0x6a,0x7e,0xc4,0x0,0x0,0x20,0x1f,0xb3,0xa8,0x65,0xee,
0x36,0xc6,0x10,0xd8,0x83,0x3d,0xcc,0xfb,0x29,0xb,0x7b,0xa6,0x73,0x11,0xf9,0x17,
0xf7,0xe,0xf,0x5f,0xc9,0xfb,0xc2,0xd8,0x79,0xfe,0xf4,0x63,0x73,0x65,0xe,0xff,
0x32,0x4,0x7e,0xc5,0xf,0x82,0xb7,0x7,0xbe,0xff,0x6f,0x5d,0x93,0x1c,0x3a,0xc3,
0x5f,0x54,0xe9,0x73,0x85,0x45,0xb3,0x4f,0xa0,0x5d,0x52,0x35,0x4b,0xae,0x66,0xf5,
0xcf,0x4e,0xe9,0xce,0x51,0xc1,0x8e,0x0,0xe8,0xba,0x4e,0x0,0x0,0x30,0xfb,0x92,
0xfa,0xf8,0xb9,0xf6,0xbb,0x6,0x84,0xcc,0x48,0x3e,0xe8,0x8a,0xc8,0x47,0xef,0x1d,
0x1e,0xbe,0x5c,0xe4,0xc5,0x89,0x95,0x3f,0x57,0x1b,0xb7,0x51,0x5,0x7c,0x2e,0x8,
0xc3,0x37,0xfc,0x20,0xf8,0xc2,0x50,0xf0,0x8b,0xfa,0x1,0xe,0x6c,0x1b,0x15,0x3f,
0xf3,0xf8,0x81,0xe0,0x67,0xe,0x4,0x71,0xf4,0x5,0x34,0xdb,0xe0,0xcd,0x6d,0x31,
0xfa,0x5,0x66,0x1d,0xfc,0x61,0x5f,0x33,0x0,0x0,0x98,0x7d,0xb,0xf0,0xb7,0xfd,
0x4d,0xe9,0x55,0xfc,0x7e,0x58,0xf4,0xd,0x62,0x7,0x7c,0xe8,0xf0,0xe7,0x5a,0x8b,
0x57,0x7,0xb4,0xc0,0xf7,0x7f,0x2b,0xc,0x82,0xd7,0x83,0x20,0xf8,0xaa,0xef,0xfb,
0xd7,0xec,0x35,0xee,0xcc,0xa,0x60,0x5c,0x65,0xd0,0x35,0x5f,0xa0,0xbd,0x2,0x88,
0x6b,0x25,0x10,0x57,0xdb,0xfb,0x8c,0xa5,0x76,0x0,0x0,0x80,0x3c,0x5e,0x17,0x91,
0xf,0x8b,0xc8,0xbd,0x51,0xde,0xc4,0x39,0xcf,0x9f,0xc8,0xf0,0xa4,0x86,0x76,0x73,
0x6c,0x70,0x59,0x5,0xfc,0x46,0x10,0x4,0x67,0x61,0x18,0x7e,0x3b,0x8,0x82,0xc7,
0x7c,0x47,0x5,0xd0,0x9c,0x3,0x27,0x2e,0xfc,0xc5,0x8e,0x0,0x76,0x84,0x40,0xd7,
0xf9,0x2,0x0,0x0,0xcc,0xb1,0x63,0x11,0xf9,0x67,0x22,0xf2,0xf3,0x51,0xdf,0x68,
0xa0,0xf2,0xa7,0xb7,0x87,0x46,0xdc,0xba,0x82,0xa0,0x31,0x40,0x23,0x8,0x82,0xef,
0x4,0x41,0xf0,0xf3,0x20,0x8,0xfe,0x34,0xc,0x82,0x77,0xc,0xf4,0x11,0xb4,0xaa,
0x7e,0x49,0x4d,0xc3,0xae,0xea,0x9f,0x9e,0x3f,0x67,0xa,0xe6,0xd0,0x1,0x0,0x0,
0x98,0x84,0x17,0x44,0xe4,0x93,0x22,0xd2,0x2e,0xe3,0xcd,0x96,0x5c,0x4d,0xa6,0xae,
0xe9,0x55,0xfa,0xb7,0x98,0x8a,0x5c,0x10,0x4,0xfb,0x41,0x10,0x6c,0xfb,0xbd,0x20,
0x28,0x81,0x9e,0xcc,0xd9,0xa8,0xf2,0xb9,0x2a,0x82,0xce,0x5b,0xb4,0x10,0xb2,0x5e,
0xc,0x59,0x37,0x1,0x3,0x0,0x0,0x2c,0x90,0xae,0x88,0x7c,0x46,0x44,0x3e,0x22,
0x25,0x5,0x3f,0x11,0x91,0x25,0x91,0xe1,0xbe,0x72,0x3,0x73,0xec,0xd9,0x3,0x3f,
0x92,0x6f,0x6f,0x86,0x61,0xf8,0xf1,0x20,0xc,0x9f,0xb,0xc2,0xf0,0xdc,0xee,0xfb,
0xa7,0x27,0x80,0x8e,0x6b,0x1a,0xd6,0xc1,0x4f,0x3f,0xa7,0xcf,0x3,0x0,0x0,0x60,
0xc1,0xfc,0x5c,0x44,0xfe,0x89,0x88,0xfc,0xf7,0xb2,0xdf,0x78,0xc9,0xde,0x61,0xf7,
0xa9,0xd3,0xf3,0xe7,0xd9,0x37,0xe7,0x88,0xe0,0xcb,0xdb,0xd7,0xc2,0x30,0x7c,0x77,
0x18,0x86,0x2f,0x98,0x23,0x84,0x7d,0xb3,0xa9,0xd7,0x1e,0x1c,0x62,0x54,0xfe,0xa8,
0xf4,0x1,0x0,0x80,0x5,0x75,0x2e,0x22,0x5f,0x14,0x91,0x77,0x8b,0xc8,0xfe,0x38,
0x3e,0x60,0xc9,0x35,0xe0,0x43,0x4f,0xa8,0x3c,0x50,0xfd,0xb3,0x9a,0x7e,0x5d,0xab,
0x81,0x58,0x1,0xf0,0xe7,0x61,0x10,0x7c,0x24,0xc,0xc3,0x8f,0x84,0x61,0xf8,0xf3,
0x7e,0x53,0xb1,0xd9,0x14,0xec,0x18,0x9,0x4c,0xb5,0xf,0x0,0x0,0x2c,0xa8,0x1f,
0x88,0xc8,0xb6,0x88,0xfc,0x96,0xf4,0x42,0xe0,0x58,0xc,0x55,0xfe,0x6,0x56,0xc1,
0x48,0x9,0x61,0x76,0xdf,0x40,0x71,0xf,0xe,0x79,0x21,0xc,0xc3,0x77,0x87,0x41,
0xf0,0xd9,0x20,0xc,0xcf,0x8c,0x69,0x62,0x6,0xc2,0xa0,0xe,0x7e,0x0,0x0,0x0,
0xb,0x66,0x5f,0x7a,0xfd,0xfa,0x3e,0x2c,0xbd,0x51,0xbd,0x63,0x35,0xd0,0xe7,0xaf,
0x5f,0x75,0xb3,0x56,0xc9,0x18,0xe0,0x9a,0x1a,0x26,0x3a,0x36,0x34,0x57,0xd6,0x18,
0xc,0x80,0xe7,0x61,0x18,0x3e,0x1f,0x86,0xe1,0x53,0x61,0x18,0x3e,0x17,0x6,0xc1,
0x6b,0x41,0x18,0xe,0xf4,0xfd,0x23,0xf8,0x1,0x0,0x80,0x5,0xf3,0x63,0xe9,0x5,
0xbe,0x5f,0x92,0xde,0x88,0xde,0x2b,0xd1,0xaf,0xfc,0x8d,0xd2,0xd4,0xaa,0xcc,0xd7,
0xab,0xcb,0xf5,0x77,0xf5,0xfb,0xea,0x65,0xda,0x54,0x18,0x9e,0xab,0x5e,0x7f,0xc0,
0x7f,0x18,0x86,0xe1,0xa7,0xc2,0x30,0x7c,0x99,0x66,0x5e,0x0,0x0,0xb0,0x40,0xba,
0x22,0xf2,0x1d,0x11,0xf9,0x65,0xe9,0xd,0xe8,0xf8,0xc1,0x55,0x9f,0xc0,0x92,0x2b,
0x78,0xd,0xec,0xa9,0x54,0x6,0x9f,0x8c,0x1e,0x57,0x2a,0x15,0xa9,0xe8,0xed,0xe8,
0xf1,0xd0,0xfb,0xd8,0x21,0xf0,0x32,0x18,0x76,0x45,0xa9,0x3f,0x54,0x61,0xf8,0x8f,
0x95,0x52,0xdb,0x61,0x18,0x7e,0x49,0x44,0x9a,0x25,0x5c,0xf,0x0,0x0,0xc0,0x34,
0xfa,0x91,0xf4,0xa6,0x6d,0xf9,0x7,0x22,0xf2,0x71,0x11,0x29,0xbc,0x3c,0xdb,0xa8,
0x96,0x93,0x9e,0xd4,0x71,0xae,0x52,0xa9,0xf4,0x2,0x9e,0xb1,0xaf,0xbf,0xbf,0x52,
0x11,0x31,0x9e,0xd7,0xdb,0xfa,0xf9,0x21,0xc6,0x20,0x92,0x28,0x1c,0x1e,0x8a,0xc8,
0xa1,0x88,0x7c,0x5e,0x44,0xde,0x25,0x22,0x1f,0x12,0x91,0xf7,0x47,0xb7,0x7a,0xe1,
0x2b,0x3,0x0,0x0,0x98,0x9c,0xa6,0x88,0xbc,0x24,0xbd,0xca,0xde,0xf,0xa5,0xb7,
0x34,0xdb,0x54,0xe8,0xaf,0xf0,0xe1,0x6c,0x7a,0x8d,0xc2,0x5d,0x45,0x44,0x2a,0x4b,
0x4b,0xfd,0xdb,0xd2,0xb5,0x6b,0xb2,0x14,0x86,0xfd,0xf0,0xb7,0x54,0xa9,0x5c,0x3e,
0x1f,0x1d,0xbb,0xb4,0xd4,0x6b,0x51,0xd6,0xf7,0x3,0x41,0xd1,0x8,0x88,0x96,0x9f,
0x44,0xb7,0xe7,0xa3,0xc7,0xef,0x15,0x91,0x2d,0xe9,0x85,0xc2,0xd,0x11,0x79,0x47,
0xb4,0xd,0x0,0x0,0x30,0xd,0xba,0xd2,0x2b,0x62,0xbd,0x22,0xbd,0xc1,0x1a,0xc7,
0xd2,0xab,0xf2,0x8d,0xbc,0xc,0xdb,0xb8,0xf4,0x2b,0x7f,0x3,0xf3,0xfa,0x89,0xc,
0x34,0xe9,0x8a,0xd9,0xbc,0x2b,0x97,0xcd,0xbc,0x95,0x4a,0x45,0x96,0xa2,0xa0,0x67,
0x6e,0x3b,0x6f,0xd6,0xb1,0x66,0x88,0x4c,0x18,0xec,0xf1,0xe3,0xe8,0x66,0xab,0x4b,
0x2f,0xc,0x6a,0xab,0x22,0xd2,0x18,0xe1,0x7b,0x0,0x0,0x0,0x48,0x73,0x28,0xbd,
0xb0,0xa7,0x8d,0x65,0x1e,0xbe,0x71,0xfb,0xff,0xd8,0x95,0x4e,0x1a,0x4b,0x47,0x67,
0x26,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// D:/Works/Mine/IVM/Codes/IVM/VehicleManagement/VehicleManage/Resources/Images/done.png
0x0,0x0,0x48,0xf1,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0xc8,0x0,0x0,0x0,0xc8,0x10,0x6,0x0,0x0,0x0,0xfd,0xc8,0x72,0xdd,
0x0,0x0,0x0,0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8f,0xb,0xfc,0x61,0x5,
0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0,
0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a,0x26,0x0,0x0,0x80,0x84,0x0,0x0,0xfa,
0x0,0x0,0x0,0x80,0xe8,0x0,0x0,0x75,0x30,0x0,0x0,0xea,0x60,0x0,0x0,0x3a,
0x98,0x0,0x0,0x17,0x70,0x9c,0xba,0x51,0x3c,0x0,0x0,0x0,0x6,0x62,0x4b,0x47,
0x44,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x43,0xbb,0x7f,0x0,0x0,0x0,0x9,0x70,
0x48,0x59,0x73,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x48,0x0,0x46,0xc9,0x6b,0x3e,
0x0,0x0,0x47,0x90,0x49,0x44,0x41,0x54,0x78,0xda,0xed,0xdd,0x67,0x5c,0x54,0xd7,
0xda,0x5,0xf0,0xf5,0x9c,0x1,0x54,0x2c,0xc,0x10,0x4b,0x8c,0xd,0x7b,0x8c,0x46,
0x5,0x6,0x6c,0x89,0xb1,0x37,0xc0,0x8e,0xbd,0xb7,0xc4,0x12,0x4d,0x62,0x89,0xa2,
0x22,0xb6,0xc4,0x1a,0x7b,0xef,0xbd,0x17,0x9a,0x1d,0x3b,0x4a,0x35,0x1a,0x35,0xc6,
0xde,0x4b,0x14,0x18,0x2c,0xa0,0xc8,0x9c,0xe7,0xfd,0x10,0x87,0xdc,0x2b,0xd7,0xd7,
0x6,0x67,0xf,0xb0,0xff,0x5f,0xf2,0x53,0x61,0xf6,0x3a,0x87,0x30,0x6b,0x4e,0xdb,
0x9b,0x20,0x49,0x19,0x10,0x33,0x33,0x40,0x14,0x9b,0x23,0xa8,0x74,0x95,0x5b,0x5,
0xb,0xd2,0x1d,0xce,0xcd,0x73,0x9c,0x9c,0x68,0x2f,0xa6,0x30,0x8a,0x17,0x87,0xb,
0x4a,0xd3,0x4d,0x7b,0x7b,0x1c,0xa1,0xd6,0xea,0xdd,0x3c,0x79,0x10,0xcb,0x49,0xb4,
0xc4,0xce,0xe,0xe7,0xd0,0x1a,0xc8,0x93,0x7,0x76,0xd8,0x8c,0xf6,0x7a,0x3d,0x12,
0xb0,0x93,0x8f,0xd8,0xd9,0x21,0x11,0x4d,0x11,0x61,0x67,0x87,0x96,0xf8,0x6,0x2e,
0x56,0x56,0x29,0x3,0x95,0xc2,0x21,0xc4,0x3d,0x7e,0x8c,0x10,0x94,0xa0,0xab,0x26,
0x53,0xaa,0x20,0x65,0xb0,0xb,0xea,0xe3,0xc7,0x74,0x89,0xba,0x73,0xd5,0x17,0x2f,
0xf0,0x2b,0xd6,0xd1,0xe1,0x87,0xf,0xf9,0x2b,0xf5,0x1,0xba,0xff,0xfd,0x37,0x25,
0x29,0xdf,0xe0,0xe0,0xbd,0x7b,0x9c,0x9b,0x1b,0xb3,0xf7,0xc3,0x87,0xaa,0x37,0x1f,
0xa6,0x4d,0xf,0x1f,0x52,0x15,0xfa,0xdb,0xd4,0xe6,0xee,0xdd,0x78,0x87,0x5c,0x51,
0xb9,0xa2,0xfe,0xfe,0xdb,0x89,0x6a,0xd1,0x61,0x7a,0xfe,0x5c,0xf4,0x7e,0x95,0xa4,
0xf7,0x41,0xa2,0x3,0x48,0x12,0x0,0xc4,0x4,0x5,0x5f,0x74,0xbb,0x94,0x27,0x8f,
0x6e,0x12,0x37,0xa3,0x86,0x2e,0x2e,0xf8,0x82,0x4b,0xa9,0x8d,0x9c,0x9d,0x51,0x14,
0xf9,0x69,0x7a,0xf1,0xe2,0x50,0xb1,0x6,0x37,0x9c,0x9c,0xa0,0xf2,0x21,0xfc,0xed,
0xe4,0xc4,0x9,0x38,0x3,0xa3,0x93,0x13,0x86,0x20,0x3f,0xfc,0xb2,0x65,0x13,0x9d,
0xff,0x83,0x5d,0xa3,0x6f,0x31,0x40,0x55,0xf1,0x82,0x7,0x21,0xfa,0xfa,0x75,0x9a,
0x8d,0xf5,0x58,0xf4,0xe7,0x9f,0xfc,0x18,0x21,0x7c,0xe8,0xfc,0x79,0xba,0x82,0x89,
0xca,0x8a,0x3f,0xff,0xa4,0xa5,0xb4,0xdd,0xb4,0xf7,0xdc,0xb9,0xe4,0x38,0x25,0x48,
0x9,0xbe,0x70,0xc1,0xb1,0x49,0xe3,0xd2,0xe1,0xa5,0x1e,0x3f,0x16,0x1d,0x5f,0xca,
0xda,0x64,0x81,0x48,0xe9,0x8a,0xd5,0xe0,0x8b,0x25,0x67,0x65,0xcb,0xf6,0xc4,0x96,
0xb7,0x38,0x36,0xac,0x54,0xc9,0xd4,0x85,0x97,0xf3,0x26,0x83,0x81,0x76,0xf2,0x2f,
0x98,0x62,0x30,0xa0,0x1d,0x8e,0xf2,0x71,0x83,0x81,0x3b,0xd1,0x16,0x3a,0x55,0xa6,
0xc,0x9c,0x78,0x1,0x66,0x2b,0x8a,0xe8,0xdc,0x96,0x8e,0x8a,0xc3,0x1e,0xbd,0x6f,
0xde,0xc4,0x42,0xcc,0x65,0xdb,0xd0,0x50,0x3e,0x40,0x91,0x74,0xf5,0xf8,0x71,0xdc,
0x51,0x8d,0x54,0xfc,0xc8,0x11,0x7d,0x40,0xd4,0xdf,0x61,0xed,0xcf,0x9e,0x25,0xf2,
0x23,0x40,0x55,0x45,0xe7,0x95,0x32,0x27,0x59,0x20,0x52,0x9a,0x88,0xf3,0xf0,0xcf,
0xeb,0xbe,0xee,0xcb,0x2f,0x69,0x8d,0xb2,0x5c,0x75,0x6a,0xd4,0x88,0xed,0xb8,0x9,
0xdd,0x6a,0xd4,0x8,0x4b,0xe1,0x82,0xc5,0xd5,0xaa,0xa1,0x25,0xfc,0x10,0x6f,0x6d,
0x2d,0x3a,0x67,0x96,0xa1,0xa2,0x26,0xfa,0x1a,0x8d,0x34,0x0,0xdf,0xa0,0xdf,0xf1,
0xe3,0xea,0x1c,0x80,0x1b,0x1f,0x3b,0x86,0xef,0xe8,0x18,0xaf,0x3c,0x72,0xc4,0x7e,
0x43,0x42,0xa0,0x53,0x97,0xb0,0x30,0x22,0x6f,0xef,0xcd,0x9b,0xff,0xc7,0xa9,0x39,
0x49,0x7a,0x7,0xb2,0x40,0xa4,0x77,0x72,0xb7,0x57,0x80,0xb3,0x8b,0x8b,0xad,0xad,
0xed,0x64,0xf2,0x23,0xbf,0x6a,0xd5,0x50,0x1e,0xdd,0x14,0x1b,0x4f,0x4f,0x24,0xf0,
0xe,0xdc,0x6c,0xd6,0x8c,0xaf,0x22,0xe,0x8b,0x8a,0x14,0x11,0x9d,0x53,0x7a,0x47,
0xe1,0xd4,0x9,0x36,0x31,0x31,0xf4,0x33,0xf2,0xf2,0xe8,0xe0,0x60,0x84,0x60,0x3a,
0xf9,0x4,0x4,0x3c,0xf,0xb7,0x19,0xf1,0xdc,0x3b,0x38,0xb8,0x40,0x83,0xfa,0x7f,
0x9c,0x19,0xf2,0xec,0x99,0xe8,0x98,0x92,0x65,0x93,0x5,0x22,0xfd,0x97,0x6b,0x7c,
0x90,0x6b,0x72,0xf6,0xec,0xe,0x85,0x9f,0x2c,0x4e,0x98,0xeb,0xe5,0xc5,0x5f,0xd3,
0x2,0x1a,0xd6,0xb9,0x33,0xd7,0x6,0x50,0xad,0x7e,0x7d,0x79,0x24,0x91,0xb9,0x51,
0x65,0x38,0xf1,0x81,0x27,0x4f,0xb8,0x10,0x92,0xe8,0x7e,0x70,0xb0,0x92,0xb,0xdb,
0xd5,0xcf,0xb6,0x6f,0x7f,0x69,0xad,0x1e,0xc8,0x56,0x38,0x38,0xf8,0x93,0x80,0xa6,
0xa1,0xc7,0x63,0x9e,0x3c,0x11,0x9d,0x53,0xb2,0xc,0xb2,0x40,0xb2,0x38,0xa3,0x31,
0x30,0xd0,0xdd,0xdd,0xc5,0x5,0x5f,0xa0,0x2b,0x8f,0xeb,0xdc,0x99,0xa7,0xf2,0x46,
0x1c,0x68,0xdf,0x1e,0xd,0x91,0x80,0x83,0x9f,0x7c,0x22,0x3a,0x9f,0x64,0x21,0xa6,
0xe0,0x1,0x7c,0x5f,0xbc,0xc0,0x53,0xcc,0xc3,0x18,0x7f,0x7f,0xf2,0x23,0x3f,0xd5,
0x77,0xd1,0x22,0x3b,0x7d,0x13,0x8f,0x48,0x8f,0x3,0x7,0x88,0x88,0x0,0x66,0xd1,
0x31,0x25,0x6d,0xc9,0x2,0xc9,0x22,0x1e,0x79,0xee,0xac,0x56,0xdd,0xb1,0x60,0x41,
0x5d,0x4e,0x3a,0xfa,0x32,0x47,0xb7,0x6e,0x28,0x4e,0x2d,0x51,0xb6,0x73,0x67,0xc,
0x41,0xf,0x3c,0x2e,0x5d,0x5a,0x74,0x3e,0x29,0x63,0xa2,0x41,0x34,0x7,0xd7,0xce,
0x9f,0x67,0x1f,0x5e,0x42,0x75,0x17,0x2d,0xa2,0x7c,0x74,0xda,0xfa,0xd6,0xaa,0x55,
0x7a,0xbd,0x87,0xc7,0xb1,0x63,0x71,0x71,0xa2,0xf3,0x49,0xe9,0x4b,0x16,0x48,0x26,
0x15,0x3b,0x39,0xb0,0xa3,0x6b,0xc7,0xf2,0xe5,0xa9,0x3,0x12,0x95,0x6e,0x3f,0xfd,
0x84,0x75,0x3c,0x1f,0x87,0xda,0xb7,0x47,0x4f,0x84,0x61,0x8f,0x8d,0x8d,0xe8,0x7c,
0x52,0x26,0x35,0x2,0x8b,0x78,0xdb,0xf3,0xe7,0x74,0x92,0x2e,0xe0,0xfc,0xe6,0xcd,
0xa6,0xf1,0x6a,0x9,0x72,0x9a,0x37,0xcf,0xb1,0x89,0xd7,0xee,0xf0,0x52,0x27,0x4f,
0x8a,0x8e,0x27,0xa5,0x2d,0x59,0x20,0x99,0x44,0x6c,0x4c,0x80,0xb3,0xfb,0xb0,0x1a,
0x35,0x14,0x6f,0x2,0xdf,0x18,0x36,0x8c,0x17,0xb3,0x2b,0x3e,0x69,0xd2,0x4,0xf6,
0xf0,0x44,0x38,0xc9,0x9f,0xb3,0x24,0x14,0xf5,0xa0,0xc9,0x58,0x7b,0xfc,0xf8,0x3f,
0xf,0x54,0x4e,0x9a,0x64,0xbf,0xd2,0x73,0x78,0xc4,0xa9,0x80,0x0,0xd1,0xb9,0xa4,
0x8f,0x23,0xdf,0x58,0x32,0x18,0xe6,0x4d,0x9b,0x5a,0xb7,0xd6,0xe9,0xe2,0xa6,0xd8,
0xfa,0xdf,0x34,0xb6,0x6e,0x4d,0x25,0x39,0x9f,0xba,0x63,0xf0,0x60,0xd4,0x42,0x2d,
0xaa,0xe5,0xe2,0x22,0x3a,0x9f,0x24,0xbd,0xb,0x6a,0x8a,0x32,0xbc,0xf4,0xd8,0x31,
0x6a,0x45,0x3,0xa8,0xf6,0xf8,0xf1,0x76,0xdf,0x7b,0xec,0x9,0x7f,0xb8,0x67,0x8f,
0xe8,0x5c,0xd2,0xfb,0x91,0x5,0x92,0x41,0xc4,0xe,0xf5,0xbf,0xe0,0xba,0xa8,0x51,
0x23,0xe5,0x28,0xed,0x52,0xd4,0xc9,0x93,0x39,0x18,0x25,0xb1,0xac,0x7c,0x79,0xd1,
0xb9,0x24,0x29,0x4d,0xcc,0x43,0x6d,0x34,0x8c,0x88,0x80,0x3d,0x4d,0x23,0xcf,0xf1,
0xe3,0xf5,0xdf,0x35,0x19,0x15,0x66,0x8,0x8,0x90,0x17,0xe7,0x2d,0x9b,0x2c,0x10,
0xb,0x15,0x13,0xb4,0xe3,0x88,0xdb,0xa5,0x72,0xe5,0x74,0x6b,0x75,0x83,0x50,0x69,
0xf2,0x64,0x9e,0xb,0x3f,0x7c,0xd1,0xa4,0x89,0xe8,0x5c,0x92,0xa4,0x9,0x3f,0xdc,
0xc0,0xb4,0xf0,0x70,0xb5,0x1e,0x7,0xa2,0xc0,0xc0,0x81,0xf2,0x1a,0x8a,0x65,0x92,
0x5,0x62,0x21,0x62,0xb2,0x7,0x96,0xaa,0x72,0xeb,0xb3,0xcf,0x94,0xea,0x7c,0xd3,
0xb4,0x7e,0xf4,0x68,0xf8,0xe0,0x4,0x3c,0x7b,0xf4,0x40,0x65,0xdc,0xa1,0x2e,0x3a,
0x9d,0xe8,0x7c,0x92,0x24,0xc4,0xab,0xb9,0xc2,0xa8,0x7,0x6c,0x39,0xff,0xda,0xb5,
0x56,0x5b,0x54,0xa3,0xf2,0x68,0xc8,0x90,0x5c,0x25,0xbc,0x1e,0x86,0xb5,0x7f,0xf0,
0x40,0x74,0xbc,0xac,0x4e,0x16,0x88,0x20,0xe6,0x7,0xf6,0xec,0x6b,0x3e,0x75,0x79,
0x5e,0x72,0xc4,0x8,0x94,0xa4,0x73,0xfc,0x62,0xf0,0x60,0x9e,0xc6,0x5b,0x50,0x30,
0x47,0xe,0xd1,0xf9,0xb2,0xa,0xaa,0x4d,0x3f,0xf2,0xf8,0xa7,0x4f,0x79,0x33,0xfb,
0x20,0xf7,0xcb,0x97,0x29,0xff,0x50,0x2,0x51,0x88,0x7b,0xfc,0x18,0x27,0x51,0x84,
0xf6,0x99,0x4c,0xd8,0x84,0x66,0x58,0x91,0x33,0x27,0xfa,0xe1,0x38,0x7,0xff,0xc7,
0x5d,0x6c,0x87,0x30,0x8b,0x46,0xe7,0xca,0x25,0x1f,0xb0,0xd4,0x88,0x79,0x8a,0x16,
0x37,0xb6,0x41,0xc8,0xd8,0xb1,0x76,0x97,0xa,0xfe,0x61,0x3a,0x3b,0x67,0xe,0x29,
0xae,0x86,0xa8,0xe8,0xff,0xf8,0xf9,0x49,0x9a,0x90,0x5,0xa2,0xb1,0xd8,0x36,0x81,
0x9,0xae,0x9,0xd5,0xaa,0x29,0x15,0xf8,0xac,0x72,0x6a,0xe9,0x52,0xee,0x87,0x7,
0xf8,0xa1,0x6c,0x59,0xd1,0xb9,0x32,0x8c,0x10,0x44,0xe1,0x42,0x72,0x32,0xf6,0xd2,
0x5a,0xc,0xbd,0x72,0x85,0x42,0x79,0x5,0x8a,0x5f,0xbc,0x8,0x5b,0x76,0x44,0xe0,
0xf5,0xeb,0x68,0x8d,0x7,0x74,0xfa,0xe6,0x4d,0x9a,0x81,0xbf,0xd4,0xef,0x6e,0xde,
0x34,0x9d,0xa6,0x5,0xca,0xad,0xbb,0x77,0xf9,0xa4,0x69,0x6,0xf7,0x8c,0x8d,0xcd,
0x56,0x56,0x69,0x49,0x11,0x31,0x31,0x39,0x9d,0xa,0x6,0x27,0x4f,0x8d,0x8d,0x4d,
0xab,0x37,0x9e,0x7f,0x9e,0xb3,0xc9,0x9d,0x5b,0x57,0xc1,0xea,0x47,0x75,0x9f,0x83,
0x3,0x5d,0x48,0x7e,0xf6,0x72,0x90,0x83,0x3,0x7d,0xa3,0x5b,0xa7,0xfc,0x99,0x2f,
0x1f,0x3f,0x50,0x4b,0xa2,0x4a,0xa1,0x42,0x58,0xad,0x7c,0xc1,0xd,0x8a,0x14,0x41,
0x12,0xe7,0x23,0x9f,0x62,0xc5,0x90,0x8c,0x9e,0x68,0x51,0xac,0x18,0xcf,0xc6,0x56,
0xe4,0x2b,0x57,0x4e,0x3e,0xc0,0xf9,0x7e,0x68,0x2e,0xf2,0xe3,0xb7,0xb,0x17,0x90,
0xc8,0x2b,0xf1,0x6b,0xbf,0x7e,0xfa,0x9,0x5e,0x73,0xc3,0x3,0x42,0x42,0x44,0xe7,
0xca,0x2a,0x64,0x81,0xa4,0xb3,0xfb,0x7b,0xf6,0x56,0xf8,0x72,0x4a,0xce,0x9c,0xd9,
0xea,0xbf,0xe8,0x9a,0x2d,0x7c,0xc2,0x4,0x9c,0xa2,0xe9,0xe4,0x35,0x60,0x80,0x9c,
0x75,0xf6,0xbf,0xd1,0x4f,0xd4,0xa,0x77,0x13,0x13,0x71,0x99,0xff,0xe0,0x5d,0x51,
0x51,0xec,0x81,0xb6,0x94,0x3d,0x2c,0x8c,0x9d,0xb9,0x4,0x22,0xa2,0xa2,0xe8,0x21,
0x7d,0x8b,0xd3,0xe7,0xcf,0xeb,0xdb,0xe8,0xa,0xc7,0x7e,0x76,0xe1,0x2,0x29,0x8d,
0x4b,0x5f,0xfe,0xfe,0xc5,0xb,0xd1,0xb9,0xd3,0xda,0xd3,0x8e,0xdb,0x26,0x57,0xfb,
0x32,0x5f,0xbe,0xe4,0xa2,0x56,0x37,0x92,0x8b,0x96,0x2f,0xcf,0x55,0xe9,0x4,0x57,
0x2d,0x5f,0x9e,0xb6,0xa1,0x19,0x15,0x72,0x73,0xe3,0x9a,0xe4,0xc7,0x25,0xdc,0xdd,
0xe1,0xc5,0x3b,0xe8,0x87,0x92,0x25,0x45,0xe7,0xb5,0x18,0x71,0x8,0x80,0x1b,0x33,
0xb5,0xe3,0x1f,0x11,0x3b,0x67,0x4e,0xc2,0x97,0xd4,0xde,0xf4,0xd7,0xcf,0x3f,0x17,
0x5c,0xec,0x19,0x1d,0x15,0x95,0x90,0x20,0x3a,0x5e,0x66,0x25,0xb,0x24,0x9d,0x18,
0x83,0x3,0xe6,0x18,0x46,0xd5,0xa9,0xc3,0x25,0xd1,0x94,0x82,0x16,0x2f,0x46,0x5e,
0xfc,0xe,0x2b,0x27,0x27,0xd1,0xb9,0x44,0xa1,0x1e,0xb0,0x46,0xd1,0x84,0x4,0xb8,
0x52,0xb,0x4c,0x3c,0x7c,0x18,0x87,0x78,0x31,0xe7,0xd8,0xbf,0x1f,0x9b,0xc8,0x4e,
0x69,0x79,0xf8,0xb0,0x5d,0x9e,0x2,0xf9,0x93,0x5f,0x9e,0x39,0x23,0x4f,0x45,0xbc,
0x9b,0x27,0xd1,0xc1,0x17,0x2b,0x1d,0xc9,0x9b,0x37,0x79,0xa6,0x69,0xab,0xf5,0xc0,
0x2a,0x55,0xb0,0x2,0x36,0x28,0x59,0xa7,0xe,0x75,0xa5,0xbd,0x74,0xa8,0x5e,0x3d,
0x9e,0xc1,0xfd,0xe1,0x54,0xae,0x9c,0xe8,0x9c,0xc2,0x4c,0xc1,0x52,0xe4,0xb9,0x78,
0x51,0xad,0xce,0xcf,0x31,0xbf,0x4b,0x17,0x79,0x11,0x3e,0x7d,0xc8,0x2,0x49,0x23,
0xe6,0xd9,0x6a,0x73,0x24,0xa1,0xb5,0x6e,0xc3,0x8c,0x19,0xf0,0xc5,0x35,0xcc,0xec,
0xd9,0x33,0xcb,0x3d,0xc8,0x67,0xa2,0x5f,0x38,0xe4,0xfa,0x75,0xec,0xe3,0x71,0x34,
0x6e,0xdb,0x36,0x9a,0xaf,0xc,0xa0,0x2d,0x81,0x81,0x76,0x87,0x68,0x47,0xcc,0xc0,
0xd0,0xd0,0xcc,0x7a,0xe4,0x60,0x69,0xcc,0x53,0xd7,0x58,0x5d,0x56,0x6a,0x24,0xb7,
0x6d,0xd0,0x0,0x31,0xb8,0xa1,0x16,0x68,0xd6,0x8c,0x5b,0x22,0x1,0xdd,0xea,0xd7,
0xc7,0x44,0xf4,0xa6,0x16,0xd9,0xb3,0x8b,0xce,0x99,0xee,0x5e,0x9d,0xf2,0xa4,0x68,
0xba,0x8c,0x9a,0x93,0x26,0xd9,0x8d,0x4b,0xf0,0x7c,0xda,0x69,0xec,0x58,0x52,0xbc,
0xdb,0x9c,0xf7,0x4e,0x4a,0x12,0x1d,0x2f,0xa3,0xcb,0x3a,0x6f,0x6c,0xe9,0xe4,0xf1,
0x84,0xa0,0xdb,0x86,0xdb,0xa5,0x4b,0xab,0x2b,0x55,0x2f,0x1c,0xdc,0xb2,0x85,0xc3,
0xe0,0x47,0xb3,0x2b,0x54,0x10,0x9d,0x2b,0xdd,0x3d,0x44,0x25,0x24,0x5f,0xbb,0x46,
0x7,0x51,0x84,0xfd,0xd7,0xaf,0x47,0xe,0x54,0xd6,0xd,0xd8,0xba,0x55,0xdf,0xd9,
0x33,0xfa,0xe4,0xf6,0xe8,0x68,0xd1,0xf1,0xa4,0xff,0xed,0xef,0x8d,0x9b,0x36,0xd6,
0xe4,0x5c,0xb9,0xb2,0xfd,0x94,0x3d,0x3e,0x61,0x6e,0xe3,0xc6,0x6a,0x3f,0xca,0x89,
0x66,0xad,0x5b,0xe3,0x9,0x12,0xe9,0xb4,0xa7,0x67,0x86,0x5f,0xe1,0xf1,0x6d,0x92,
0xb1,0x1c,0xae,0xbf,0xff,0xce,0xee,0xdc,0x90,0xcb,0x75,0xec,0xe8,0x70,0xd5,0xab,
0x77,0x44,0xff,0x73,0xe7,0x44,0xc7,0xca,0xa8,0x64,0x81,0x7c,0xa0,0xb8,0x8,0xff,
0xaa,0xee,0xf9,0x9a,0x36,0x45,0x71,0xda,0xc3,0x93,0x57,0xac,0x80,0x82,0xc3,0x98,
0xa7,0xd7,0x8b,0xce,0x95,0xe6,0x5e,0xcd,0x6d,0x4,0x6b,0xdc,0xa1,0xe6,0x1,0x1,
0x72,0x16,0xd6,0xcc,0x29,0x8e,0xb7,0x73,0x45,0xd6,0xeb,0x29,0xde,0x3a,0x28,0x7b,
0x15,0x6f,0x6f,0x74,0xc7,0x24,0x5e,0xd3,0xb9,0x33,0x2f,0xe5,0xa1,0xe8,0x50,0xbd,
0xba,0xe8,0x7c,0x69,0x8d,0x5a,0x22,0x8,0x6d,0x9f,0x3d,0xc3,0x56,0x6a,0x82,0xf5,
0xdd,0xba,0xe9,0xed,0x3d,0x3c,0xc3,0x23,0x36,0x6f,0x16,0x9d,0x2b,0xa3,0x91,0x5,
0xf2,0x8e,0x58,0x8d,0x8c,0x70,0x71,0xb6,0xb6,0x36,0xd2,0xbd,0x23,0x4a,0x89,0x29,
0x53,0x60,0x44,0x69,0xba,0x31,0x70,0xa0,0xe8,0x5c,0x69,0x6e,0x39,0x12,0x11,0x7d,
0xe9,0x12,0x4a,0xe3,0x57,0x1e,0x3b,0x67,0x8e,0x4a,0xba,0xd,0xd4,0x7a,0xc5,0xa,
0xb9,0x6,0x77,0xd6,0x14,0xc7,0x41,0xad,0xc,0xad,0x2b,0x55,0x42,0xa4,0x3a,0x1e,
0xc5,0xbf,0xff,0x1e,0xcb,0x30,0x4,0x3,0xda,0xb5,0xcb,0x34,0xa7,0xc0,0xcc,0x17,
0xdf,0x9f,0xd1,0x41,0xcc,0x9c,0x34,0xc9,0xae,0x7c,0xc2,0x84,0xa2,0x6d,0x47,0x8e,
0x94,0x2b,0x35,0xbe,0x1b,0x59,0x20,0x6f,0x11,0xdb,0x66,0xc7,0x54,0xd7,0x84,0xc2,
0x85,0x95,0x92,0xba,0x72,0x4a,0x9b,0x8d,0x1b,0x79,0x30,0x4c,0x78,0x50,0xb5,0xaa,
0xe8,0x5c,0x69,0x66,0x15,0x56,0x61,0xea,0xfe,0xfd,0x98,0xc7,0x95,0xb9,0xf8,0xcc,
0x99,0xfa,0xb,0x51,0xc3,0x23,0xa,0x5,0x7,0xcb,0xb5,0xb4,0xa5,0xff,0x25,0xe5,
0xe2,0xfd,0x16,0xd3,0x11,0xeb,0x87,0x7d,0xfa,0x10,0xe1,0x21,0xad,0xe8,0xd7,0x8f,
0x7,0xa3,0x3c,0x1e,0x14,0x28,0x20,0x3a,0xdf,0x47,0xeb,0x84,0x50,0xe4,0xda,0xb3,
0x87,0xd6,0x50,0x75,0x9b,0xa4,0x76,0xed,0xe4,0xb4,0xf4,0xff,0x3f,0x59,0x20,0x6f,
0x90,0xb2,0xc6,0x77,0x12,0xcd,0x50,0xbf,0xe,0xe,0xe6,0x8d,0xc8,0x43,0x2d,0x3e,
0xfb,0x4c,0x74,0xae,0x8f,0x95,0x32,0x2b,0xea,0x56,0x3e,0x42,0x25,0x47,0x8e,0xb4,
0x27,0x4f,0xa,0xa3,0x43,0x87,0x44,0xe7,0x92,0x32,0x26,0x56,0x83,0x2f,0x96,0x9c,
0x95,0x2d,0x5b,0xfc,0x63,0xf5,0xa2,0xe3,0xda,0x2e,0x5d,0xe0,0xcd,0xf1,0xea,0xd6,
0xd1,0xa3,0x33,0xfc,0xef,0xcb,0x71,0xf8,0x62,0xc4,0x95,0x2b,0x5c,0x55,0x77,0x41,
0x71,0x69,0xde,0xdc,0xc1,0xb1,0x71,0xc2,0xc9,0xc2,0x7f,0xfc,0x21,0x3a,0x96,0xa5,
0x91,0x5,0xf2,0x9a,0x58,0xf7,0xa0,0x56,0x86,0xd6,0xd,0x1b,0x2a,0x49,0x7c,0x1a,
0xbd,0x36,0x6f,0xe6,0x10,0x9e,0x4e,0x23,0x73,0xe5,0x12,0x9d,0xeb,0x43,0xd1,0x16,
0x74,0x40,0xdb,0xdd,0xbb,0xe9,0xb,0xca,0xaf,0xce,0xf7,0xf5,0xb5,0xab,0xe6,0x71,
0x29,0xf2,0x52,0x78,0xb8,0xe8,0x5c,0x52,0xe6,0x64,0x9e,0x61,0x41,0xff,0xdb,0xb3,
0xb,0x89,0xd6,0xbd,0x7a,0xe1,0x16,0x5b,0x21,0xb7,0x8f,0xf,0x46,0xe3,0x2,0x4a,
0xe5,0xcf,0x2f,0x3a,0xdf,0xfb,0x32,0x5f,0x2b,0xe1,0xc2,0x28,0xca,0xab,0xdb,0xb5,
0x93,0xd3,0xd0,0xff,0x37,0x59,0x20,0xaf,0xc4,0xfd,0x11,0x38,0xc5,0x70,0xbb,0x4b,
0x17,0x84,0xf1,0x7a,0xea,0xb6,0x78,0x71,0x46,0x9d,0x9a,0x82,0xc6,0x62,0x3f,0x2f,
0xfb,0xf3,0x4f,0xe,0xe6,0xfc,0xd0,0xf,0x1d,0x6a,0xff,0x97,0xd7,0x88,0x88,0x42,
0x81,0x81,0xa2,0x73,0x49,0x59,0x93,0xf9,0x41,0xda,0xec,0xee,0x49,0xbf,0x64,0xab,
0xd1,0xbf,0x3f,0x6a,0xe1,0x7,0x3c,0x19,0x39,0x32,0xc3,0x7d,0x30,0x3b,0x85,0xcf,
0x78,0xa5,0xc9,0x44,0x73,0x68,0x20,0x59,0xf5,0xee,0xad,0xdf,0xe6,0x71,0x34,0xbc,
0xd4,0xb2,0x65,0xa2,0x63,0x89,0x96,0xe5,0xb,0x24,0x6e,0x49,0x60,0x15,0x43,0xcd,
0x51,0xa3,0x50,0x9b,0xbf,0xa4,0xa,0x7e,0x7e,0x19,0xee,0xb9,0x8d,0xb1,0x28,0x8b,
0x4b,0xf,0x1e,0x90,0x2d,0xcf,0x40,0xd,0x1f,0x1f,0xbb,0xf1,0xcf,0x6b,0x16,0xcd,
0xbe,0x62,0x85,0xbc,0x8,0x28,0x59,0xa2,0x94,0x6b,0x8a,0x4f,0x74,0xa3,0x15,0x9a,
0x38,0x91,0xe7,0xa0,0x23,0x86,0x74,0xe8,0x90,0x61,0x7e,0xef,0x5e,0x5d,0x74,0xc7,
0xe,0xfa,0x1,0xb,0x6,0xe,0xb4,0xff,0xd1,0xe3,0xf3,0xf0,0xe4,0xd9,0xb3,0x45,
0xc7,0x12,0xc5,0xf2,0x7f,0x60,0x69,0xcc,0xbc,0x20,0x93,0xb1,0x6b,0x8e,0x2b,0x37,
0x26,0xce,0x9f,0x8f,0x19,0x28,0x8f,0xe,0xbd,0x7a,0x89,0xce,0xf5,0xce,0xcc,0xff,
0x3,0x2f,0xa1,0xe5,0xf8,0x64,0xe9,0x52,0x1a,0x8a,0xed,0x36,0xfb,0x87,0xe,0x95,
0x17,0xfb,0xa4,0x8c,0xc8,0xe8,0xe3,0xdf,0xcf,0xcd,0xb3,0x76,0x6d,0x66,0xba,0x83,
0xc4,0xf9,0xf3,0x31,0x4,0x3d,0xf0,0xb8,0x74,0x69,0xd1,0xb9,0xde,0x59,0x1c,0x2,
0xe0,0x36,0x66,0x8c,0x7d,0x71,0xcf,0x45,0xe1,0x73,0xfc,0xfc,0x44,0xc7,0xd1,0x5a,
0x96,0x29,0x10,0x66,0x5f,0x6,0x14,0x25,0xfe,0x53,0xd7,0xad,0x6e,0x76,0xcb,0x97,
0xf3,0x9f,0xc8,0x86,0x32,0x9d,0x3b,0x8b,0xce,0xf5,0xae,0x68,0x10,0xcd,0xc1,0xb5,
0xf3,0xe7,0xf9,0x3c,0x2a,0x60,0xf8,0xb7,0xdf,0xda,0x47,0x78,0x4c,0xd,0xff,0xf1,
0xe8,0x51,0xd1,0xb9,0x24,0x29,0x2d,0xa4,0xcc,0x4e,0x5d,0xf4,0xd9,0xfc,0x84,0xb9,
0xc3,0x87,0x73,0x47,0xb6,0x21,0xa7,0x61,0xc3,0x32,0xca,0x83,0x8d,0x54,0x9e,0xba,
0x61,0xfc,0xac,0x59,0x76,0xb7,0x9b,0x3c,0xc,0xaf,0x3f,0x68,0x50,0x56,0x79,0x3e,
0x2a,0xd3,0x17,0x8,0x33,0x33,0x40,0x64,0xf4,0x9,0xb2,0x71,0x1b,0xb3,0x68,0x11,
0x86,0xf0,0x36,0x4,0xf7,0xec,0x29,0x3a,0xd7,0x5b,0xbd,0x5a,0x7,0x1,0xfb,0x39,
0x3f,0xaa,0xfc,0xf6,0x9b,0x7e,0xb0,0x6e,0x43,0xec,0x2e,0x1f,0x1f,0x39,0x15,0x88,
0x94,0x15,0xa4,0xdc,0x5,0x79,0x91,0xa,0xab,0xa6,0x35,0x6b,0x32,0xcc,0xc,0xf,
0x7a,0xf8,0xa2,0xd2,0xca,0x95,0x7a,0x44,0x46,0x85,0x2f,0xea,0xde,0x3d,0xb3,0xdf,
0xe,0x9f,0x69,0xb,0xc4,0x5c,0x1c,0xf1,0xdf,0x7,0xde,0x36,0x2c,0x9b,0x3d,0x9b,
0xc7,0xe2,0x77,0x5a,0xd0,0xaf,0x9f,0xe8,0x5c,0x6f,0x43,0xc5,0x61,0x8f,0xde,0x37,
0x6f,0xa2,0x82,0xd2,0x9b,0x7e,0xe9,0xda,0x55,0x7f,0xa4,0xc9,0xf9,0xb0,0x2b,0x7,
0xf,0x8a,0xce,0x25,0x49,0x22,0x98,0x6f,0x13,0x36,0xea,0x93,0x9f,0x3b,0x58,0xf9,
0xf9,0xe1,0x90,0xd2,0x8,0xb9,0x87,0xc,0xb1,0xf8,0xd9,0xac,0x2f,0xa3,0x14,0xd7,
0x5a,0xbe,0x5c,0xef,0xea,0x51,0x26,0x62,0x52,0x8f,0x1e,0x99,0xf5,0x88,0x24,0xd3,
0x16,0x48,0xdc,0xfa,0x80,0x3,0x6e,0xc3,0xa6,0x4d,0xfb,0x67,0x7d,0x85,0x1f,0x7f,
0x14,0x9d,0xe7,0xad,0x16,0xe0,0x31,0x6f,0xdb,0xb2,0x85,0x7b,0x67,0xcf,0xab,0x7a,
0xf5,0xec,0xe9,0xe0,0x58,0xaf,0x7e,0x54,0x74,0x7c,0xbc,0xe8,0x58,0x92,0x64,0x49,
0x52,0xae,0x99,0x24,0xd0,0x20,0x1c,0x5b,0xb7,0xce,0xe2,0x6f,0xf,0xde,0xd,0x5b,
0xd4,0x9a,0x3e,0xdd,0xbe,0x9d,0x67,0x9d,0xf0,0x49,0x3f,0xfd,0x24,0x3a,0x4e,0x5a,
0xcb,0x74,0x5,0x62,0xf4,0x9,0xec,0xe8,0xe6,0x39,0x7e,0x3c,0xf,0xe6,0x36,0x78,
0xe0,0xe3,0x23,0x3a,0xcf,0x1b,0x99,0x67,0x9,0xad,0x43,0xae,0xbc,0x67,0xe4,0x48,
0x3b,0xbb,0x26,0x4d,0x22,0xaa,0x4e,0x9e,0x9c,0x59,0x3f,0xa9,0x48,0x52,0x5a,0x32,
0xaf,0x9b,0xf2,0xb2,0xbb,0xcd,0xe2,0x64,0x5e,0xbf,0x1e,0x95,0x79,0x3a,0x72,0xd4,
0xae,0x2d,0x3a,0xd7,0x1b,0x65,0xd2,0x8b,0xed,0x99,0xa6,0x40,0xe2,0x2e,0x6,0xdc,
0x72,0x6f,0x37,0x70,0x20,0xf2,0xe2,0x77,0xbe,0x32,0x63,0x86,0xe8,0x3c,0x6f,0x42,
0x23,0xe0,0x8b,0x96,0xf7,0xee,0xb1,0xbd,0x32,0x82,0x4b,0xb6,0x6d,0x6b,0x3f,0xb1,
0x49,0xab,0x88,0x96,0x47,0x8e,0x88,0xce,0x25,0x49,0x19,0x51,0xca,0x1c,0x75,0xb7,
0xef,0x55,0x55,0xc6,0x4e,0x9e,0x8c,0xdc,0xd8,0x4e,0x63,0x7,0xd,0x12,0x9d,0xeb,
0x8d,0x7e,0xa6,0x1f,0xe1,0x35,0x60,0x80,0xfd,0x42,0x8f,0x4b,0xe1,0x23,0xe7,0xcc,
0x11,0x1d,0xe7,0x63,0x65,0xf8,0x2,0x89,0x9f,0x15,0xd8,0xc0,0x2d,0x6f,0x83,0x6,
0xea,0x67,0x5c,0x15,0x2f,0x2,0x3,0x51,0x1b,0x2e,0x28,0x6b,0x65,0x25,0x3a,0xd7,
0xeb,0xc8,0x1d,0xbe,0x3c,0xe0,0x8f,0x3f,0xd4,0x13,0x80,0xfa,0x9b,0x87,0x87,0x83,
0xa3,0x67,0x74,0x54,0xf4,0xcd,0x9b,0xa2,0x73,0x49,0x52,0x66,0x12,0xc7,0xfe,0x1b,
0xd,0xad,0xbb,0x76,0xc5,0x54,0xaa,0x45,0x65,0x17,0x2e,0x44,0x4f,0x84,0x61,0xcf,
0x7f,0xac,0x61,0x2f,0xda,0xab,0x7,0x12,0x71,0x81,0x2,0x95,0xa7,0x2d,0x5a,0xd8,
0xf7,0xf5,0x18,0x1d,0x66,0xf0,0xf7,0x17,0x1d,0xeb,0x43,0x59,0xee,0x45,0xa8,0xb7,
0x88,0xa9,0x13,0xe4,0x50,0xa5,0xf2,0xe7,0x9f,0xab,0x3,0xf8,0x21,0x9a,0x6f,0xdc,
0x68,0xa9,0xc5,0x61,0x9e,0x9c,0xcd,0xf4,0x9b,0x6e,0x3,0x55,0xa9,0x51,0x43,0x16,
0x87,0x24,0xa5,0x1f,0x7b,0xf2,0x6a,0x13,0xb1,0x79,0xc5,0xa,0x2e,0xa0,0xbe,0x54,
0xe7,0xd4,0xae,0xfd,0xcf,0x35,0x88,0x47,0x8f,0x44,0xe7,0x4a,0x51,0x19,0x77,0xa8,
0x8b,0x4e,0x47,0x8b,0xb1,0x5a,0x8d,0x5b,0xbb,0x36,0x65,0xb6,0xe3,0xc,0x2a,0xc3,
0x1d,0x81,0xa4,0x9c,0xfb,0x9c,0x61,0xb3,0xe3,0x65,0x68,0x58,0x18,0x74,0x3c,0x9c,
0x6a,0x17,0x2b,0x26,0x3a,0xd7,0xeb,0x68,0x34,0x2a,0xf1,0xb7,0x73,0xe7,0xda,0xcd,
0x4a,0x3c,0x51,0x6c,0xd7,0xc0,0x81,0xf2,0xc9,0x70,0x49,0xd2,0xde,0xa3,0x88,0x0,
0x67,0x17,0x97,0xb2,0x65,0x75,0x76,0xd8,0xa9,0xe3,0xe0,0x60,0x4b,0x5b,0x5a,0x9a,
0xea,0x63,0x9,0x1e,0xde,0xbe,0x9d,0x5c,0x40,0x7d,0x68,0xfd,0xd8,0xdd,0xfd,0x93,
0x80,0xa6,0xa1,0xc7,0x63,0xee,0xde,0x15,0x9d,0xeb,0x9d,0xf3,0x8b,0xe,0xf0,0xae,
0x52,0x66,0xfd,0x6c,0xa5,0xf6,0x70,0x68,0x74,0xe0,0x80,0xa5,0x2e,0x74,0x43,0x4d,
0xe1,0x4b,0x31,0xe3,0xc6,0xe9,0x8f,0x78,0x46,0x87,0x5d,0x19,0x3d,0x5a,0x74,0x1e,
0x49,0x92,0xfe,0x63,0x89,0xdf,0x92,0x8a,0x21,0xe9,0xf0,0xfe,0xfd,0x3c,0x1a,0x75,
0xa9,0xfb,0xe7,0x9f,0x8b,0xce,0x95,0xc2,0xf,0x37,0x30,0x2d,0x3c,0x5c,0x3f,0x5d,
0x57,0x3f,0xf6,0xd4,0xd7,0x5f,0x67,0x94,0xe7,0xbd,0x32,0x4c,0x81,0xc4,0x71,0x80,
0xb3,0x5b,0xef,0x15,0x2b,0x60,0x84,0x1f,0x7e,0xef,0xd2,0x45,0x74,0x9e,0xd7,0xd1,
0x75,0xea,0x4,0x9b,0x61,0xc3,0xf4,0x95,0x3d,0x8c,0xe1,0xc7,0x26,0x4f,0x16,0x9d,
0x47,0x92,0xa4,0xd4,0x52,0xd6,0x33,0xc9,0xa1,0xb6,0xb1,0x79,0xb8,0x67,0xf,0xa,
0xf0,0x58,0x4c,0xaa,0x5c,0x59,0x74,0x2e,0x33,0x5a,0x48,0x1,0x38,0x36,0x6f,0x9e,
0xfe,0x67,0x8f,0x45,0xe1,0x36,0x19,0xe0,0xb9,0x35,0xd1,0x1,0xde,0x26,0x65,0x96,
0xdc,0x42,0x5c,0x96,0x5a,0xac,0x58,0x21,0x3a,0xcf,0xbf,0xc1,0x5e,0xcd,0x49,0xd5,
0xd,0x39,0x68,0xd1,0x80,0x1,0xf6,0x87,0x3d,0x67,0x86,0x25,0xcd,0x9d,0x2b,0x3a,
0x96,0x24,0x49,0x6f,0x97,0xb2,0x84,0xef,0x48,0xab,0x5d,0xd9,0xbc,0x82,0x83,0x2d,
0x6e,0xa1,0xb8,0x8a,0xd4,0x86,0xbf,0xea,0xd8,0xd1,0xfe,0xa6,0x47,0x42,0xc4,0xb4,
0xb5,0x6b,0x45,0xc7,0x79,0x13,0x8b,0xbd,0x88,0x1e,0xdf,0x39,0xf8,0xa2,0x8b,0x4b,
0x89,0x12,0xf4,0x15,0xbf,0xa0,0x86,0xb3,0x66,0x89,0xce,0xf3,0x3a,0xda,0xc6,0x1d,
0xe8,0xe0,0xd0,0xa1,0xb2,0x38,0x24,0x29,0xe3,0xb1,0xa7,0xe6,0x74,0x9a,0x8c,0x46,
0x53,0x35,0x5d,0x49,0x4c,0x6f,0xd8,0x10,0x9b,0xd1,0x5,0xba,0xc8,0x48,0xd1,0xb9,
0xcc,0xa8,0x2e,0x4c,0xb4,0x71,0xf1,0x62,0x4b,0xbf,0xc8,0x6e,0x71,0x5,0x62,0xbe,
0xaf,0x5b,0x2d,0x63,0xfa,0x4c,0xd7,0x64,0xfd,0x7a,0xbe,0x86,0x8a,0xb0,0xcd,0x93,
0x47,0x74,0xae,0x14,0xf5,0xe9,0x30,0xda,0xfa,0xf8,0xe8,0x7,0x7b,0xd5,0xc,0x3b,
0x37,0x75,0xaa,0xe8,0x38,0x92,0x24,0x7d,0x38,0xc7,0x26,0x8d,0x4b,0x87,0x97,0x7a,
0xfc,0xd8,0x6a,0x1,0x8a,0x99,0x5e,0x34,0x6a,0x44,0x9d,0x50,0x5,0xc5,0xce,0x9d,
0x13,0x9d,0x8b,0xa7,0xf1,0x16,0x14,0xcc,0x91,0x83,0xba,0xf2,0x13,0x3a,0xb4,0x76,
0xed,0xad,0x69,0x9b,0x36,0x55,0xb9,0x95,0x23,0x87,0xe8,0x5c,0xaf,0xb3,0xb8,0x2,
0x31,0x56,0xbc,0x37,0x5f,0xa7,0x8e,0x1f,0x8f,0xbe,0x8,0xc1,0x6e,0x83,0x41,0x74,
0x9e,0x14,0xe7,0x69,0xe,0xae,0xfd,0xf6,0xdb,0x3f,0xb3,0xe0,0x4e,0x9c,0x28,0x3a,
0x8e,0x24,0x49,0x69,0x27,0x77,0xb4,0x67,0x74,0x54,0xf4,0xa3,0x47,0x56,0xfa,0x97,
0xcb,0xad,0x2e,0xd4,0xae,0xfd,0xcf,0x3,0x7f,0x7f,0xfd,0x25,0x3a,0x17,0xcf,0xe0,
0xfe,0x70,0x2a,0x57,0x2e,0x57,0xeb,0x1c,0xed,0x4d,0xa7,0x2d,0xef,0x7d,0xc7,0x62,
0xae,0x81,0xc4,0x85,0xf8,0x87,0xbb,0xfe,0x51,0xb3,0x26,0x40,0x56,0x64,0x75,0xe0,
0x80,0xf9,0x7e,0x69,0xd1,0xb9,0xcc,0x93,0xa2,0xd9,0x1b,0x3c,0xcb,0x46,0x4c,0xea,
0xde,0x5d,0x74,0x1c,0x49,0x92,0xd2,0xdf,0x3f,0x73,0x6e,0x39,0x39,0x71,0xe,0xe5,
0x18,0x4f,0x3a,0x79,0x12,0xfd,0x78,0x3c,0x75,0xcd,0x97,0x4f,0x58,0xa0,0x57,0xd7,
0x5c,0xb9,0x9d,0x12,0xcb,0xf,0x1a,0x37,0x76,0x8,0x6b,0xb2,0x25,0x62,0xf3,0xee,
0xdd,0xa2,0xf7,0x93,0xf0,0x23,0x10,0xa3,0x31,0x30,0xb0,0x46,0xd,0x7b,0x7b,0x5a,
0x44,0x95,0xe8,0xdc,0xba,0x75,0x16,0x53,0x1c,0xa7,0xe8,0x47,0x24,0x86,0x84,0xe8,
0x5d,0x3e,0x7d,0xa2,0xee,0xeb,0xd3,0x47,0x74,0x1c,0x49,0x92,0xb4,0xa3,0x9f,0xe0,
0x35,0x37,0x3c,0xe0,0xda,0x35,0xfe,0x3,0x27,0xb8,0x58,0xf3,0xe6,0x18,0x81,0x45,
0xbc,0xed,0xf9,0x73,0x61,0x81,0x5e,0xad,0xd8,0xa8,0xa8,0xea,0x4b,0x8a,0x5c,0xbc,
0xd8,0x7c,0x13,0x80,0xe8,0xfd,0x24,0xbc,0x40,0xb8,0x25,0xb7,0x7c,0xe1,0xf5,0xeb,
0xaf,0x3c,0x1f,0x7b,0x68,0x7a,0xc1,0x82,0xa2,0xf3,0x98,0xd7,0x14,0x47,0xad,0x97,
0x17,0x5f,0x9c,0x69,0xd9,0x92,0x14,0x57,0x43,0x54,0xf4,0xcb,0x97,0xa2,0x73,0x49,
0x92,0xa4,0x3d,0x87,0x8d,0x1e,0xb6,0x91,0xb6,0xa1,0xa1,0xca,0x35,0x54,0x62,0x87,
0xae,0x5d,0x53,0xee,0xbe,0x14,0x84,0xf7,0xa2,0x27,0xf2,0x16,0x2a,0x84,0xbb,0xd6,
0xad,0xb2,0x85,0xfc,0xf6,0x9b,0xe8,0xfd,0x23,0xac,0x40,0x62,0xb3,0x7,0xac,0x35,
0xdc,0xae,0x5a,0x15,0x53,0xe8,0x13,0xfa,0xd4,0x2,0x16,0x78,0x8a,0x41,0xc,0xcf,
0x8c,0x8b,0x83,0x2f,0xd5,0xe3,0xeb,0x1e,0x1e,0xe6,0xbb,0x34,0x44,0xc7,0x92,0x24,
0x49,0x3c,0xbb,0xdd,0x9e,0xe3,0x22,0x6d,0x37,0x6e,0xfc,0xe7,0x4f,0x16,0x30,0x9b,
0xee,0xb,0x76,0xc4,0xf6,0x2e,0x5d,0xe2,0x38,0x80,0xdd,0xf9,0x9b,0x6f,0x44,0xc5,
0xd0,0xfc,0x1a,0x8,0xab,0x7,0xb9,0x26,0x5b,0x59,0x19,0x63,0x9e,0xb6,0x4c,0xec,
0x17,0x11,0x1,0x2b,0x74,0x43,0xa4,0xc0,0xdb,0xd4,0xcc,0x9f,0x28,0x9c,0x10,0x89,
0xa4,0x16,0x2d,0xec,0xc9,0x33,0x3a,0x7c,0xd1,0x8e,0x1d,0xc2,0xf2,0x48,0x92,0x64,
0xb1,0x52,0x96,0xc6,0xfe,0xc5,0x90,0xd3,0xed,0x52,0x60,0x20,0x7f,0xc7,0x1b,0xd1,
0xa1,0x51,0x23,0x61,0x81,0xa6,0x60,0x29,0xf2,0x5c,0xbc,0x68,0x9c,0x90,0x6b,0x7b,
0x8e,0x7d,0x15,0x2b,0x3a,0x51,0x2d,0x3a,0x4c,0xda,0x9d,0x6a,0xd3,0xfc,0x8,0x24,
0x7e,0xc7,0xd3,0x7e,0x89,0x81,0x3f,0xfc,0x20,0xbc,0x38,0x5e,0xa1,0x6f,0xa8,0x12,
0x97,0x1d,0x37,0x4e,0x16,0x87,0x24,0x49,0x6f,0x93,0xb2,0x44,0x6d,0x5f,0x6c,0xb2,
0xe9,0xd6,0xa1,0x3,0x1e,0xa2,0x12,0x92,0xaf,0x5d,0x13,0x16,0x68,0x8,0x7a,0xe0,
0x71,0xe9,0xd2,0xfa,0x83,0x4f,0x22,0x12,0x2f,0xf,0x1d,0xaa,0xf5,0xf0,0x9a,0x15,
0x48,0x6c,0x4c,0x80,0xb3,0x8b,0x73,0x91,0x22,0x98,0x3,0x15,0x97,0x7c,0x7d,0xb5,
0xde,0xd0,0x54,0x56,0x61,0x15,0xa6,0xee,0xdf,0x6f,0x77,0x23,0xe2,0xbb,0x88,0xfe,
0x16,0x70,0x48,0x2a,0x49,0x52,0x86,0xa1,0xd7,0x7b,0x78,0x1c,0x3b,0x16,0x17,0xa7,
0x74,0x55,0xdb,0xe0,0x99,0xb7,0x37,0x96,0xc0,0x1d,0xd,0x92,0x92,0x84,0x5,0xda,
0x4c,0xe3,0x38,0xc7,0xf0,0xe1,0x46,0x63,0x60,0xa0,0x6b,0x60,0xf1,0xe2,0x5a,0xd,
0xab,0x59,0x81,0x50,0x12,0xf6,0xe9,0x62,0x66,0xce,0xe4,0xad,0x68,0x82,0xd,0x39,
0x73,0x6a,0x35,0x6e,0x2a,0xe1,0xd4,0x9,0x36,0x31,0x31,0xa6,0xfd,0xea,0x1d,0xeb,
0xe6,0x5d,0xba,0x64,0xf6,0x45,0xef,0x25,0x49,0x4a,0x3f,0x76,0xa1,0x4d,0x43,0xc3,
0xff,0x8a,0x8c,0xa4,0x5e,0x14,0xce,0x8d,0x5,0x4e,0x9e,0x3a,0x11,0xbd,0xa9,0x45,
0xf6,0xec,0x3c,0x9a,0x47,0x2b,0x7e,0xbf,0xfe,0xaa,0xd5,0xb0,0xe9,0x5e,0x20,0xb1,
0xab,0x77,0xde,0x71,0xb5,0xaf,0x5e,0x1d,0xd9,0x11,0x8a,0xfc,0xcd,0x9a,0x69,0xb5,
0x61,0x6f,0xdc,0xe0,0x1e,0xea,0x64,0x6e,0xdb,0xb7,0x6f,0x46,0x9b,0x36,0x59,0x92,
0x24,0xcb,0x65,0x67,0x17,0xd1,0x24,0xa2,0xea,0x94,0x29,0x48,0xc2,0x5d,0xee,0x7d,
0xe8,0x90,0xb0,0x20,0x7e,0xf0,0x3,0xb5,0x6e,0x1d,0x1b,0x13,0xe0,0xec,0x3e,0xac,
0x46,0x8d,0xf4,0x1e,0x2e,0xdd,0xb,0x84,0x2a,0x29,0x9e,0xf4,0xc7,0xb8,0x71,0xe9,
0x3d,0xce,0x5b,0x73,0x7c,0x8e,0x17,0xf8,0x6b,0xd5,0x2a,0xbb,0xdb,0x5e,0xbd,0x23,
0xfa,0x6f,0xda,0x24,0x3a,0x8f,0x24,0x49,0x99,0x47,0xca,0x99,0x8c,0x7c,0xc9,0xbd,
0x95,0x1e,0xdd,0xba,0x91,0x13,0x4e,0x23,0xe1,0xf1,0x63,0x61,0x79,0xbe,0x7,0xd4,
0x26,0x53,0xa7,0x32,0x33,0x3,0x94,0x6e,0x37,0x4b,0xa5,0x5b,0x81,0xc4,0x97,0xf1,
0xcf,0xeb,0xbe,0xae,0x5e,0x3d,0x14,0x82,0x1f,0xb5,0xa8,0x55,0x2b,0xbd,0xc6,0x79,
0x9b,0x94,0x35,0xc8,0xef,0x25,0xb7,0x7c,0x61,0x1c,0x38,0x50,0x54,0xe,0x49,0x92,
0x32,0x3f,0x7b,0x6a,0x4e,0x61,0x74,0xfd,0x3a,0xae,0x53,0x25,0xca,0x39,0x64,0x88,
0xb0,0x20,0x73,0xe0,0x47,0x83,0xdd,0xdd,0xe3,0x8d,0x41,0x81,0x6e,0x86,0x56,0xad,
0xd2,0x6b,0x98,0x74,0x2b,0x10,0xd5,0x95,0xa,0xab,0x85,0x2c,0xe0,0xc8,0x23,0x80,
0xbf,0xe5,0x9c,0x83,0x6,0xc9,0xe7,0x3a,0x24,0x49,0xd2,0x8a,0x9d,0x5d,0x44,0x93,
0xb0,0xb0,0x25,0x4b,0xa8,0x7,0x4d,0xc6,0xda,0xe3,0xc7,0x85,0x5,0x19,0x84,0x39,
0xb8,0x3e,0x66,0x8c,0xf9,0xf6,0xe3,0xb4,0x7e,0xf9,0x34,0x7f,0x41,0x63,0xe5,0xc0,
0x52,0x86,0xbd,0xcd,0x9b,0x9b,0x1b,0x50,0x9b,0xbd,0x94,0x1a,0x6d,0x41,0x7,0xb4,
0xdd,0xbd,0x5b,0x9e,0xb2,0x92,0x24,0x49,0x6b,0xe6,0x53,0x5a,0xea,0xef,0x6a,0x27,
0xde,0xd3,0xa7,0xf,0xb6,0xc2,0x17,0x76,0xda,0xcf,0x68,0x61,0x9e,0x8c,0x31,0xde,
0x68,0x8,0x74,0x33,0xb4,0x6c,0x99,0xd6,0xaf,0x9f,0x66,0x5,0x92,0xd2,0x70,0xd9,
0xb9,0x2f,0x5d,0x1d,0x3b,0x56,0xdb,0xdd,0xf4,0x2f,0xea,0x1,0x6b,0x14,0x4d,0x48,
0xc0,0x75,0xee,0x84,0x83,0x7d,0xfb,0x8a,0xca,0x21,0x49,0x92,0xe4,0x70,0xd5,0xab,
0x77,0x44,0xff,0x73,0xe7,0xc8,0x9d,0x9e,0x60,0xf7,0xb4,0x69,0xc2,0x82,0x94,0x40,
0x7b,0xde,0x3e,0x72,0x64,0x5a,0x5f,0x13,0x49,0xb3,0x2,0x89,0xef,0xe1,0xe6,0x68,
0x70,0x68,0xd6,0x8c,0x83,0x51,0x12,0xcb,0xca,0x97,0x17,0xb3,0x97,0x0,0xd8,0x42,
0x8f,0xee,0xd3,0xa7,0x9b,0x27,0x43,0x13,0x96,0x43,0x92,0x24,0xe9,0x95,0xa4,0xf3,
0x9,0xe3,0x73,0x28,0x13,0x26,0xd0,0x54,0x9c,0x45,0xfe,0xfb,0xf7,0xb5,0x1e,0x9f,
0xaf,0xf0,0x3a,0x6a,0xf1,0xe5,0x97,0xf1,0xce,0x41,0xa5,0xd,0x7b,0xd3,0xee,0x6e,
0xd8,0xb4,0x3b,0x2,0x59,0xaa,0xc6,0xd0,0x82,0xef,0xbf,0xd7,0x7a,0xc7,0x98,0x99,
0x7f,0x30,0x49,0x9e,0x89,0x37,0x72,0x34,0x9c,0x34,0x49,0x54,0xe,0x49,0x92,0xa4,
0xd7,0xe5,0x6b,0xe3,0xdd,0xe6,0x30,0x3d,0x7d,0xa,0x2f,0x7c,0xcf,0x31,0xe2,0x9e,
0x17,0xe1,0x72,0x9c,0x1b,0xd9,0x87,0xd,0x4b,0xab,0xd7,0xfb,0xe8,0x2,0x49,0x59,
0x72,0xd1,0x88,0x40,0x4c,0xad,0x59,0x53,0xd4,0x8e,0x41,0x19,0x6c,0xe6,0x21,0xa3,
0x46,0xa5,0xfc,0xa0,0x24,0x49,0x92,0x2c,0x8c,0x9d,0x5b,0x62,0x50,0xb1,0xcf,0x96,
0x2d,0x23,0x77,0xf8,0xf2,0x80,0x3f,0xfe,0xd0,0x3c,0xc0,0xab,0x6b,0xd3,0x8f,0xb3,
0x7,0x4d,0x74,0xbf,0xf8,0xf1,0xd7,0xa8,0x3f,0xfe,0x8,0x24,0x52,0x1d,0x8f,0xe2,
0x2,0x8f,0x3c,0x5e,0x4d,0xbf,0x6e,0xd7,0x29,0xf1,0xe7,0x62,0xb3,0x97,0x2f,0x17,
0x95,0x43,0x92,0x24,0xe9,0x6d,0x88,0xbc,0xbd,0x37,0x6f,0x36,0x99,0xd4,0xa9,0xd8,
0xa9,0x4,0xff,0xfc,0xb3,0xa8,0x1c,0xea,0x14,0xbe,0xaf,0x16,0xfd,0xf8,0xc7,0x1a,
0x3e,0xb8,0x40,0x9e,0x44,0x7,0x5f,0xac,0x74,0x24,0x6f,0x5e,0x2c,0xc3,0x10,0xc,
0x68,0xd7,0x4e,0xd8,0x8e,0x68,0xc2,0x77,0xe9,0xcc,0xb8,0x71,0xe6,0x1f,0x8c,0xa8,
0x1c,0x92,0x24,0x49,0xef,0xca,0xc1,0xcb,0xb3,0x70,0xd8,0xfa,0xe0,0x60,0xf8,0xe1,
0x6,0xa6,0x85,0x87,0x6b,0x3d,0x3e,0xe7,0xe0,0x63,0xe4,0xd1,0xaa,0x55,0x4c,0x50,
0xf0,0x45,0xb7,0x4b,0x85,0xa,0x7d,0xe8,0xeb,0x7c,0x70,0x81,0x24,0x6f,0x31,0x1d,
0xb1,0x7e,0xd8,0xa7,0x8f,0x79,0xe,0x16,0xad,0x77,0x0,0xcd,0x45,0x7e,0xfc,0x76,
0xe1,0x82,0x7d,0x9d,0xe7,0xad,0x8b,0x6e,0x97,0xb7,0xe9,0x4a,0x92,0x94,0x1,0xed,
0xe2,0xc7,0xec,0x24,0xe0,0x79,0xb9,0x96,0xf0,0x43,0xbc,0xb5,0xb5,0x6e,0xbd,0x29,
0x16,0x97,0x3f,0x7c,0xc5,0xd5,0xf7,0xbe,0x9d,0x8b,0xd5,0xc8,0x8,0x17,0x67,0x6b,
0xeb,0xf8,0xf6,0xf7,0x2a,0x2a,0x43,0xaf,0x5f,0x17,0xb6,0x92,0x60,0x27,0x2a,0xa7,
0x6e,0xe8,0xd4,0xc9,0x3e,0xd0,0xa3,0x44,0x64,0xf1,0x35,0x6b,0x34,0x1f,0x5f,0x92,
0xa4,0x34,0x63,0x7e,0x5f,0x89,0x8b,0xbb,0xd7,0xc7,0xaa,0x9e,0xbb,0xbb,0x52,0x3,
0x75,0xf1,0xb4,0x54,0xa9,0x94,0x7f,0xcf,0x45,0x2a,0x97,0xb8,0x7c,0x59,0x1f,0x96,
0x60,0x78,0x5a,0x28,0x2c,0x8c,0x14,0xef,0x36,0xe7,0xbd,0x5,0xce,0x7e,0x9b,0x56,
0xdb,0xfd,0xea,0xb6,0x5a,0xe3,0xf6,0xc0,0x9f,0xc,0xcf,0x22,0x22,0x50,0xb,0xb5,
0xa8,0x96,0x8b,0x8b,0x56,0xe3,0x93,0x2b,0xf5,0x41,0xd9,0x5b,0xb7,0xec,0x2e,0x47,
0xdc,0x9,0x5f,0x55,0xac,0xd8,0xfb,0x4e,0x2e,0xfb,0xde,0x47,0x20,0x71,0x81,0xf7,
0xa,0x58,0x95,0xa9,0x57,0x4f,0x58,0x71,0x98,0xe8,0x17,0xe,0xb9,0x7e,0x5d,0x1f,
0x90,0x10,0xe5,0x34,0x6c,0xfd,0x7a,0xcd,0xc7,0x97,0x24,0xe9,0xa3,0x5d,0xe3,0x83,
0x5c,0x93,0xb3,0x67,0x8f,0xbb,0x1a,0xd0,0xdb,0xad,0xbf,0xaf,0xaf,0x71,0xdf,0xfd,
0x7a,0x3a,0xdb,0x7b,0xf7,0x48,0x81,0x1f,0x1f,0x3c,0x7a,0x94,0x43,0xf1,0x15,0x47,
0x2c,0x5b,0x66,0xfe,0x2f,0xf6,0x72,0x4d,0x6c,0x38,0x72,0xc4,0x18,0x97,0xa3,0x51,
0xae,0x84,0x7,0xf,0x8c,0x3e,0x81,0x1d,0xdd,0x3c,0xc7,0x8f,0xbf,0xdb,0x2b,0xc0,
0xd9,0xc5,0xc5,0xd6,0x56,0xf4,0xf6,0x7c,0x28,0x22,0x22,0x80,0x99,0xee,0xf0,0xf,
0xca,0x6f,0xbf,0xfc,0xa2,0xf5,0xf8,0x1c,0xc9,0xb,0x71,0xa1,0x70,0xe1,0xc7,0x65,
0x5d,0xf2,0xb9,0xaf,0xab,0x53,0xe7,0x7d,0xbf,0xff,0xbd,0xb,0x44,0x59,0x80,0x32,
0xbc,0x4c,0xdc,0x35,0xf,0x6a,0xcf,0xfd,0x60,0x9c,0x3d,0x5b,0x5e,0xf3,0x90,0xa4,
0x8c,0xe7,0xe1,0xf8,0xdd,0xcd,0x5d,0x5c,0x3e,0xfd,0x54,0xff,0xe8,0x69,0xcb,0xc4,
0x7e,0x27,0x4e,0xc0,0x1e,0x9e,0x8,0x1f,0x33,0x6,0x6e,0xbc,0x1a,0x49,0x8e,0x8e,
0x6f,0x7d,0x1,0x5,0x87,0x31,0x4f,0xaf,0xe7,0xc1,0xdc,0x6,0xf,0x7c,0x7c,0x6c,
0xef,0x61,0x8f,0xae,0x44,0x78,0x78,0x6c,0x9b,0x1d,0x53,0x5d,0x13,0xa,0x17,0x16,
0xbd,0x7d,0x1f,0xca,0xae,0xff,0xf3,0x13,0x45,0x4e,0xef,0xd8,0x21,0x6a,0x81,0x2a,
0xae,0x4e,0x3,0x38,0xb9,0x4b,0x97,0xf7,0xfd,0xbe,0x77,0x2e,0x10,0xf3,0x27,0x6,
0x84,0x62,0x4,0xc,0x5e,0x5e,0x5a,0x6f,0xa0,0xf9,0x9,0x73,0x1a,0x63,0xfd,0x95,
0x8e,0x57,0xac,0xd0,0x7a,0x7c,0x49,0x92,0x3e,0xdc,0x23,0xcf,0x9d,0xd5,0xaa,0x3b,
0xe6,0xce,0x6d,0x55,0xf3,0xa5,0x9f,0xe2,0x1b,0x18,0x98,0x56,0x2b,0x92,0xf2,0x6a,
0x9c,0xc4,0xf5,0x2f,0xbe,0x50,0xb2,0x5b,0xed,0x53,0x8a,0xee,0xde,0x7d,0x7f,0xcf,
0xde,0xa,0x5f,0x4e,0x11,0xb8,0xde,0xd0,0x7,0x32,0x7f,0x20,0x26,0x7f,0xbe,0x4a,
0x2f,0xe6,0xcd,0x13,0x90,0x60,0x2,0x46,0xb4,0x68,0x11,0xc7,0xdb,0xb9,0x22,0xeb,
0xf5,0xef,0xfa,0x5d,0xef,0x5c,0x20,0xf6,0xc6,0x67,0x81,0x89,0x6e,0x9e,0x9e,0x7c,
0xd,0x15,0x61,0x9b,0x27,0x8f,0xe6,0xdb,0xe7,0x46,0xdb,0xb0,0x76,0xc5,0xa,0xbb,
0x6a,0xd,0x8b,0x9c,0x2c,0x1c,0x1b,0xab,0xf9,0xf8,0x92,0x24,0xbd,0xb7,0x7f,0xee,
0xf2,0xc9,0x93,0xc7,0xaa,0xa0,0xf2,0xe9,0xcb,0x31,0xbb,0x77,0xa3,0x3c,0x6e,0xd0,
0x78,0x67,0xe7,0xb4,0x1e,0xc7,0x3c,0xe7,0x53,0x76,0xd3,0x8b,0x3e,0xd9,0x1e,0xfb,
0xf8,0x88,0xde,0xee,0xf,0xde,0x8e,0x9f,0x4c,0x5f,0x3f,0x3f,0xbb,0x64,0x9,0xd5,
0xa6,0x1f,0x79,0xbc,0x76,0xcf,0xb3,0xf1,0x34,0xde,0x82,0x82,0x39,0x72,0xe0,0xac,
0xf5,0x54,0x9b,0x3b,0x4d,0x9b,0xbe,0xeb,0xf7,0xbd,0x73,0x81,0xf0,0x75,0xe,0x47,
0x35,0x71,0xa7,0xae,0xb8,0x28,0xb7,0xc1,0xa8,0x45,0x8b,0x44,0x8d,0x2f,0x49,0xd2,
0xbb,0x8b,0x8d,0xd9,0xb7,0xd7,0xc5,0xd9,0xce,0x4e,0x77,0x51,0xad,0x89,0xf2,0x7b,
0xf6,0xf0,0xaf,0xe8,0x8a,0xd5,0xd5,0xaa,0xa5,0xf7,0xb8,0xdc,0x8,0xcb,0xe8,0x41,
0xdf,0xbe,0xac,0x6,0x5f,0x2c,0x39,0x2b,0x5b,0x36,0xd1,0xfb,0xe1,0x7d,0x99,0x67,
0xd,0x67,0x5f,0x76,0xc7,0x27,0xda,0xdf,0x5d,0x4a,0x75,0x38,0x12,0xcb,0x5b,0xb4,
0x78,0xd7,0xaf,0x7f,0x6b,0x81,0x98,0x3f,0x41,0xd0,0x6c,0x9a,0x8c,0xad,0xd,0x1b,
0x6a,0xbd,0x41,0x38,0x88,0x83,0x7c,0x30,0x2a,0xca,0xbe,0x9d,0x67,0x9d,0xf0,0x49,
0xa7,0x4f,0x6b,0x3e,0xbe,0x24,0x49,0xef,0xcc,0x7c,0xa,0x84,0xc6,0x3d,0xbf,0xa8,
0x9b,0xb9,0x77,0x2f,0x77,0xe5,0x45,0xa8,0x58,0xa5,0x8a,0x66,0x1,0x8c,0xf0,0xc3,
0xef,0x76,0x76,0xf1,0xdf,0x70,0x33,0xc7,0x99,0xe9,0x5f,0x58,0xe9,0x26,0x5c,0x69,
0x86,0x6b,0x2b,0x57,0x6a,0x3d,0x2c,0xf7,0x44,0x3d,0x72,0x6e,0xd0,0xc0,0xfc,0xbe,
0xff,0xb6,0xaf,0x7f,0x6b,0x81,0x28,0x8f,0x4d,0xb7,0xb0,0xa4,0x59,0xb3,0x94,0x43,
0x1c,0xad,0xed,0xa1,0x0,0xfa,0x4d,0x5e,0xf3,0x90,0x24,0x4b,0x66,0x34,0x6,0x6,
0xd6,0xa8,0x61,0x6f,0x8f,0x89,0x56,0x9,0xd9,0x7c,0xf7,0xee,0x85,0x2f,0x8a,0xe2,
0x27,0x37,0x37,0x61,0x81,0xbe,0x32,0xd5,0xe2,0x72,0xc5,0x8b,0x8b,0xde,0x2f,0x1f,
0x4a,0x3f,0xa1,0x71,0xcb,0x88,0x96,0x47,0x8f,0xc2,0x9f,0x9a,0xf1,0x6f,0x97,0x2f,
0x6b,0x36,0xf0,0x10,0xe4,0x87,0x5f,0xb6,0x6c,0x56,0xb3,0x4d,0xab,0xd5,0xcf,0x1a,
0x35,0x7a,0xdb,0x97,0xbf,0xb5,0x40,0x48,0x87,0x25,0x5c,0xf1,0xed,0x2f,0x94,0xe6,
0xa6,0xe0,0x1,0x7c,0x5f,0xbc,0xd0,0x15,0x79,0xa9,0x70,0x57,0x79,0xbb,0xae,0x24,
0x59,0xa2,0xf8,0xd0,0xdd,0x37,0xab,0xdc,0x72,0x70,0xe0,0x10,0xe,0x79,0xb1,0x67,
0xdf,0x3e,0xf4,0x45,0x8,0x76,0x1b,0xc,0xa2,0x73,0x65,0x74,0xe6,0xdb,0x7b,0xf1,
0x17,0x2f,0xc4,0x7d,0xed,0x8f,0x44,0xd4,0xa7,0x68,0xae,0xdc,0x69,0xde,0xfc,0x6d,
0x5f,0xf7,0xc6,0x2,0x31,0x3f,0xe0,0xc2,0x17,0xe9,0x3c,0x2a,0xd5,0xae,0xad,0xf5,
0x6,0x50,0x0,0x3e,0x47,0xfc,0xde,0xbd,0x79,0x7c,0x9a,0xff,0x15,0x51,0x28,0x26,
0x46,0xeb,0xf1,0x25,0x49,0x7a,0xb3,0xc7,0x13,0xb6,0x97,0x31,0xdc,0x76,0x74,0x54,
0xed,0x93,0x9b,0xaa,0xe1,0xfb,0xf7,0x6b,0xfd,0x0,0xdc,0xdb,0x70,0x1d,0x74,0x51,
0x27,0x6a,0xf8,0xc9,0x3d,0x9d,0x28,0x1e,0x6a,0x39,0x9d,0xdb,0x86,0xd,0x9a,0xf,
0xbc,0x2,0x67,0xf8,0x51,0xfd,0xfa,0xcc,0x9b,0x36,0xb5,0x6e,0xad,0xd3,0xbd,0x31,
0xdf,0x9b,0xfe,0x21,0xbe,0xa5,0xff,0x2a,0xd7,0xaf,0x2b,0x55,0x42,0x3f,0x1e,0x4f,
0x5d,0xf3,0xe5,0xd3,0x3a,0x3f,0x9f,0xe1,0xdb,0xbc,0x7d,0xdb,0x36,0xad,0xc7,0x95,
0x24,0xe9,0xcd,0x9e,0x38,0x7,0x38,0xbb,0x38,0x7f,0xf2,0x89,0x69,0x84,0xd5,0x24,
0xaa,0x73,0xe0,0x0,0xa,0xf0,0x58,0x4c,0xaa,0x5c,0x59,0x74,0xae,0x14,0x2a,0x6a,
0xa2,0xaf,0xd1,0xa8,0xff,0xc6,0x4a,0x6f,0x3c,0x78,0xf2,0xa4,0xe8,0x38,0x1f,0xcb,
0xae,0x5a,0xd3,0x6a,0x27,0xb,0x5f,0xbe,0xac,0xf9,0xec,0xbd,0x8e,0x70,0xa4,0x81,
0xf6,0xf6,0x8f,0xab,0x67,0x9b,0x71,0xe3,0xcc,0x9b,0x7f,0xbe,0x6f,0x3e,0x85,0xd5,
0x51,0x9,0x53,0x86,0xd4,0xad,0xab,0xed,0xee,0x2,0x10,0x82,0x28,0x5c,0x48,0x4e,
0xb6,0x72,0xa1,0x49,0xea,0x95,0xc0,0x40,0xcd,0xc7,0x97,0x24,0x29,0x15,0xf3,0xe4,
0xa9,0xa6,0xeb,0x74,0x49,0xf1,0x3f,0x70,0x0,0x46,0xe8,0x60,0x57,0xb1,0xa2,0xe8,
0x5c,0xaf,0xa3,0x81,0x38,0x8f,0xfc,0x73,0xe6,0x90,0xd2,0xb8,0xf4,0xe5,0xef,0x5f,
0xbc,0x10,0x9d,0x27,0xad,0xf0,0x5f,0x88,0x42,0x47,0xed,0x3f,0x50,0xab,0x17,0x94,
0x45,0x74,0xb1,0x5e,0xbd,0x37,0xfd,0xfb,0x9b,0x4f,0x61,0x5,0x63,0x38,0xd7,0x15,
0x50,0x20,0x49,0xf8,0xa,0xdf,0x1d,0x3e,0x9c,0x3b,0xda,0x33,0x3a,0x2a,0xfa,0xd1,
0x23,0xcd,0xc7,0x97,0x24,0x29,0xc5,0xd3,0x8e,0xdb,0x26,0x57,0xfb,0x32,0x5f,0x3e,
0x53,0x3f,0x53,0x90,0xcd,0xf9,0x90,0x10,0xf3,0xca,0x76,0xa2,0x73,0xbd,0xce,0xfc,
0x9,0xfd,0x49,0xe5,0xc4,0x9b,0x4a,0xf9,0x89,0x13,0x45,0xe7,0x49,0x73,0x9e,0x9c,
0x4f,0x59,0x2f,0xe0,0x8c,0xcc,0x61,0x74,0x56,0x6f,0xbd,0x47,0x81,0x98,0x9f,0x38,
0x27,0x95,0x4a,0x52,0xa9,0xaf,0xbe,0xd2,0x3a,0x2f,0x1d,0xa1,0x59,0xfc,0x6c,0xd7,
0x2e,0xad,0xc7,0x95,0x24,0xe9,0x5f,0x4f,0xaf,0xf8,0xe7,0x75,0x5f,0x97,0x3f,0x7f,
0xb2,0xce,0xe6,0x40,0xf2,0xbd,0x83,0x7,0x85,0x2f,0x55,0xfd,0x6,0x54,0x82,0xda,
0xf3,0xb6,0x33,0x67,0x4c,0x37,0xe9,0x89,0xee,0x9b,0x46,0x8d,0xa,0xff,0xe4,0xed,
0x7d,0xb2,0x70,0x62,0xa2,0xe8,0x5c,0x69,0xcd,0x3e,0xd0,0xeb,0x61,0x58,0xfb,0x33,
0x67,0xa8,0x3e,0x96,0xe0,0xe1,0xed,0xdb,0x9a,0xd,0xbc,0x1e,0x7d,0xe9,0x74,0xb5,
0x6a,0x6f,0x7a,0xae,0x26,0x55,0x81,0xd8,0x8f,0x7c,0xd2,0x3f,0xd1,0xab,0x5a,0x35,
0x51,0xb7,0xed,0xf2,0x2d,0x35,0x54,0xa9,0xb6,0x6f,0x9f,0xd6,0xe3,0x4a,0x92,0xf4,
0x1f,0xc5,0x31,0x90,0xce,0xf3,0x8e,0x3,0x7,0xcc,0x4f,0x78,0x8b,0xce,0x95,0xca,
0x59,0x14,0xe5,0x91,0xd1,0xd1,0x14,0x68,0x75,0x4e,0xc7,0xb5,0x6a,0x39,0x3e,0xf7,
0xb8,0x74,0xb2,0xf0,0x9d,0x3b,0xa2,0x63,0xa5,0x37,0xde,0x41,0x56,0x58,0xb2,0x7f,
0xbf,0x66,0x3,0xbe,0xba,0xad,0x37,0xce,0xd6,0x14,0x61,0xdf,0x22,0xf5,0xc,0x2,
0xa9,0xa,0x84,0xf7,0x2a,0x39,0x50,0x4b,0xc3,0x7,0x7f,0xcc,0xc6,0xa2,0x2c,0x2e,
0x3d,0x78,0xa0,0xf,0xf0,0xfc,0x3b,0xac,0xbd,0x80,0xa5,0x1e,0x25,0x29,0xb,0x4b,
0x29,0x8e,0xb1,0x8a,0x33,0xf,0xc,0x9,0x31,0xcf,0x31,0x25,0x3a,0x57,0x2a,0xaf,
0x8a,0x43,0xd1,0x59,0xeb,0x75,0x95,0xeb,0xd5,0xcb,0x72,0x53,0x1b,0x55,0xc5,0x2e,
0xe,0xd6,0xb0,0x40,0x5e,0xa1,0x44,0x7a,0x44,0x89,0xa9,0x97,0xc0,0x4d,0x7d,0xd,
0xa4,0x18,0xa2,0x90,0xa4,0xfd,0xc5,0x31,0x8a,0xc7,0x7a,0xcc,0xdc,0xbf,0x3f,0xe5,
0xfe,0x67,0x49,0x92,0xd2,0xdd,0xdf,0x1b,0x83,0x5a,0x19,0x5a,0x17,0x28,0x90,0x52,
0x1c,0x16,0x7e,0xc4,0x91,0x65,0x8b,0xe3,0x15,0xeb,0x83,0x6a,0x4e,0xc5,0x65,0xff,
0x7e,0xc4,0x21,0x0,0x6e,0x1a,0xbe,0x4f,0x7e,0xc5,0x5f,0x1,0xa9,0xf,0x2c,0x52,
0x17,0x48,0x29,0xb6,0xc3,0xfe,0x8f,0x9f,0x25,0xf3,0x7d,0xa9,0x53,0xe9,0x3e,0xd3,
0xf1,0xe3,0x5a,0x8f,0x2b,0x49,0x59,0x91,0x79,0xfa,0x73,0xeb,0xe7,0xbc,0x1d,0x83,
0x8e,0x1e,0x95,0xc5,0x91,0x31,0xe4,0x2a,0xe1,0xf5,0x30,0xac,0xfd,0x83,0x7,0x58,
0x82,0xbf,0x71,0xe1,0xd2,0x25,0xcd,0x6,0xde,0x41,0xfd,0xf9,0xd3,0xff,0xe7,0x8,
0xe4,0xef,0x8d,0x9b,0x36,0xd6,0xe4,0x5c,0xb9,0xd0,0x8a,0x22,0xd0,0xa5,0x64,0x49,
0xad,0x77,0xc,0xd9,0xd3,0xdf,0xf0,0x3f,0x71,0x42,0xeb,0x71,0x25,0x29,0x2b,0x31,
0x17,0x7,0x75,0xd2,0xad,0x53,0xf6,0x1e,0x3c,0x8,0x2f,0xde,0x41,0x3f,0x68,0xff,
0xfb,0xfe,0x56,0xb2,0x38,0xfe,0x5f,0xb4,0xc,0x1d,0x11,0xa1,0xe1,0x73,0x2e,0x3a,
0x1e,0x4e,0xb5,0x8b,0x15,0x33,0xcf,0x3c,0x60,0xfe,0xeb,0x94,0x2,0xb1,0x4a,0xca,
0x56,0xe3,0x99,0x43,0xc5,0x8a,0x70,0xe2,0x5,0x98,0xad,0x7c,0xf0,0x5a,0xe9,0xef,
0xbd,0x23,0x5e,0xad,0xf3,0xa1,0x67,0xdb,0xcd,0xb6,0x9b,0xce,0x9e,0xd5,0x6c,0x87,
0x48,0x52,0x16,0x12,0x1b,0x13,0xe0,0xec,0xe2,0x5c,0xa4,0x48,0x4a,0x71,0x54,0x87,
0x1f,0x26,0x96,0x28,0x21,0x3a,0x57,0x2a,0xb2,0x38,0xde,0x89,0x7a,0x9e,0x42,0x78,
0x8e,0xf6,0xf,0x4a,0x9a,0xae,0xbc,0xd0,0x25,0x7f,0xf9,0xf9,0xe7,0xe6,0x3f,0xa7,
0x14,0x5,0xd,0xa6,0xd3,0xa4,0x17,0xf0,0x60,0xd0,0x11,0xb4,0x45,0xae,0xc8,0x48,
0x52,0x6a,0xd1,0x61,0x4a,0x4e,0xd6,0x7c,0x7c,0x49,0xca,0xc4,0x52,0x8a,0xe3,0x22,
0xda,0xe9,0x6a,0xca,0xe2,0xc8,0x2c,0x94,0x9e,0x26,0x77,0x5e,0xac,0x7d,0x81,0xe8,
0x7e,0xa4,0xdc,0xca,0x92,0x7f,0x6f,0xe7,0xfe,0xf7,0x48,0xa3,0x87,0xd2,0x94,0xba,
0x8,0x98,0x92,0xa0,0x4,0x9f,0xc4,0xb,0x39,0x4d,0xbb,0x24,0xa5,0xa5,0xb8,0x11,
0x41,0x5b,0xaa,0x46,0x17,0x2d,0x4a,0x31,0xd8,0xa9,0xc3,0xa1,0x43,0x28,0x8b,0xb2,
0x38,0x6e,0x81,0xb3,0xd3,0xca,0xe2,0xf8,0x20,0x76,0x5b,0x5e,0x64,0x4f,0xe8,0x7f,
0xee,0x9c,0x79,0xe6,0xe,0xad,0xc6,0x65,0x1b,0xa5,0x38,0x72,0xff,0x7b,0xad,0xec,
0xdf,0x23,0x90,0xed,0xfc,0x3,0x16,0x95,0x29,0xa3,0xf5,0x8e,0xa0,0xab,0x28,0x88,
0x96,0xe7,0xce,0x69,0x3d,0xae,0x24,0x65,0x46,0x71,0xbc,0x9d,0xdd,0xb9,0x58,0x31,
0xfc,0xc8,0xd3,0x93,0x4b,0x1f,0x3a,0x84,0xbc,0xf8,0x1d,0x56,0x4e,0x4e,0xa2,0x73,
0xa5,0x22,0x8b,0xe3,0xa3,0x90,0xe2,0xdd,0xe6,0xbc,0x77,0x52,0x12,0xfd,0x89,0xc6,
0xd8,0xa5,0xdd,0xa4,0x91,0x3c,0x95,0x37,0xe2,0xc0,0xbf,0xb7,0x77,0xa7,0x14,0x8,
0x9f,0x47,0x22,0x2f,0x29,0x52,0x44,0xeb,0x1d,0x61,0xba,0x40,0xdf,0x50,0xb8,0x2c,
0x10,0x49,0xfa,0x18,0x8f,0xcb,0x6,0xdc,0x72,0x6f,0x57,0xaa,0x14,0xb9,0x59,0x35,
0xe3,0xe2,0x47,0x8f,0x9a,0x2f,0x7a,0x8a,0xce,0x95,0x8a,0x2c,0x8e,0x34,0xc5,0xae,
0xa8,0x8d,0x97,0xe7,0xcf,0x6b,0x36,0x60,0x31,0x44,0x23,0xe9,0xdf,0xf,0x24,0xa,
0xb3,0x2f,0x3,0x8a,0x82,0xa9,0x18,0x45,0x27,0x3e,0xfd,0x54,0xeb,0x1d,0xa0,0xe8,
0x68,0xac,0xf5,0x71,0x59,0x20,0x92,0xf4,0x21,0x1e,0x4f,0x8,0xba,0x6d,0xb8,0x5d,
0xba,0xb4,0x5a,0x4,0x47,0xd4,0x29,0x7,0xf,0xf2,0x5e,0xf4,0x44,0xde,0x42,0x85,
0x44,0xe7,0x4a,0x45,0x16,0x47,0xba,0xa0,0x89,0x28,0x4d,0x3d,0x34,0x7c,0xff,0x3c,
0x87,0xf5,0x38,0x5b,0xb8,0xb0,0xb9,0x37,0xac,0x62,0xbc,0x9c,0xab,0x57,0x77,0x2c,
0x50,0x40,0xb7,0xa,0xc3,0x5f,0xee,0xb1,0xb1,0xd1,0x2c,0xc8,0x65,0x2c,0x46,0x44,
0x6c,0xac,0xde,0xe0,0xe1,0x7f,0x8c,0xe3,0xe2,0x34,0x1b,0x37,0x83,0x49,0x99,0x3e,
0xfb,0x0,0xf9,0xe9,0x74,0xb5,0x6a,0xe1,0x3a,0x3a,0x21,0x9b,0x93,0x13,0x9c,0xb0,
0x86,0xa7,0x10,0xa9,0x8b,0xb0,0x41,0x19,0x7d,0xe3,0x86,0x75,0x5d,0x65,0xf4,0x8b,
0x51,0x7,0xe,0xe4,0x76,0x6e,0x5c,0xfa,0xf7,0xaf,0x1f,0x3e,0x14,0x9d,0x5b,0x4a,
0x5f,0x8f,0x22,0x2,0x9c,0x5d,0x5c,0xca,0x96,0x55,0x97,0xa9,0x5e,0xb4,0x36,0x24,
0x84,0x37,0xc2,0xf,0x5b,0xb5,0xff,0x0,0xf8,0x56,0xf3,0x50,0x1b,0xd,0x23,0x22,
0x30,0x22,0xd9,0x36,0xc9,0xb3,0x7e,0x7d,0x3b,0xf2,0xa4,0xd3,0x64,0x34,0x8a,0x8e,
0x95,0x59,0xf0,0x61,0x1e,0xa6,0x3a,0x5f,0xbd,0xa,0x23,0x81,0x6e,0x68,0x30,0x60,
0x4b,0xf8,0x21,0xde,0xda,0x3a,0x36,0x87,0xa1,0x74,0x95,0x5b,0x9f,0x7e,0xaa,0xd8,
0xec,0xb3,0xf2,0x48,0x3e,0x51,0xb8,0xb0,0xe6,0x5b,0x5e,0xc,0x56,0xf8,0xee,0xe6,
0x4d,0xcd,0xc7,0xb5,0x70,0xe6,0x85,0x7a,0xe2,0xba,0x4,0xfc,0xe2,0x76,0x69,0xd1,
0xa2,0xe4,0x76,0xd8,0xad,0x6b,0x72,0xe7,0xe,0x83,0x1,0xda,0xb4,0x89,0x8b,0xf1,
0x6a,0x24,0x4d,0x9a,0xc4,0xcc,0x4c,0x3,0x7f,0xfd,0x95,0x7a,0x71,0x1b,0x8e,0x5f,
0xbf,0x3e,0x39,0xda,0xd4,0xd6,0x66,0xdc,0x9d,0x3b,0x71,0x3b,0x2,0x3a,0x1a,0xa2,
0x97,0x2e,0x35,0x17,0x8f,0xe8,0xed,0x91,0xd2,0x56,0x4c,0xd0,0x8e,0x23,0x6e,0x97,
0xca,0x95,0xb3,0xda,0x81,0xd6,0xba,0x82,0x7,0xf,0xf2,0x44,0xcb,0x2f,0x8e,0x17,
0x7e,0xf5,0xeb,0xdb,0x53,0x73,0x59,0x1c,0xe9,0x80,0x6a,0xea,0xfc,0x94,0xe8,0x1b,
0x5a,0x54,0xc7,0x7f,0x8f,0xdb,0x14,0xa7,0x93,0x1d,0x8b,0x16,0x55,0xd4,0x29,0xa6,
0x4e,0xd8,0x24,0xe0,0x90,0xf7,0x13,0xb2,0xe5,0x3e,0xda,0x6f,0xb8,0xa5,0x32,0x9f,
0x8a,0x30,0xf5,0xb1,0x76,0x84,0x3e,0x32,0x12,0x33,0x50,0x1e,0x1d,0x7a,0xf5,0x42,
0x4f,0x84,0xe1,0x5d,0x8e,0xc,0x5f,0x7d,0x32,0x40,0x4d,0xb4,0xa1,0x6f,0xbb,0x77,
0x37,0xc5,0xd3,0x7d,0x5d,0xf9,0xe8,0xe8,0x98,0x3a,0x41,0xe,0x55,0x2a,0xff,0x7b,
0xdf,0xb6,0x94,0x31,0xc5,0x4e,0xe,0xec,0xe8,0xda,0xb1,0x7c,0x79,0x65,0xbf,0xee,
0x53,0xb8,0x85,0x84,0xf0,0x60,0x94,0xc7,0x83,0x2,0x5,0x44,0xe7,0x4a,0x45,0x16,
0x87,0xb6,0xfc,0x79,0xb2,0x69,0xa6,0xf6,0xef,0xa3,0xba,0x78,0xfe,0x5,0x28,0x5c,
0x58,0xe1,0xfe,0xca,0x36,0x6e,0xa3,0xfd,0x11,0x8,0x55,0x51,0x47,0xd2,0x24,0x79,
0x4,0x12,0x13,0x14,0x7c,0xd1,0xed,0x52,0x9e,0x3c,0xa6,0xda,0xea,0x7a,0x9a,0xb6,
0x6b,0x57,0x5a,0x5d,0xfc,0xe4,0x48,0x5e,0x88,0xb,0x85,0xb,0x2b,0x1b,0xb9,0xac,
0xe9,0x68,0x70,0xf0,0x23,0xcf,0x9d,0xd5,0xaa,0x3b,0x16,0x2c,0x28,0x7a,0x7b,0xa5,
0xf7,0x13,0x1b,0x13,0x6c,0x5b,0xe5,0x56,0x85,0xa,0x94,0x8b,0xf3,0x28,0x6d,0x42,
0x42,0x30,0x1a,0x17,0x50,0x2a,0x7f,0x7e,0xd1,0xb9,0x52,0x91,0xc5,0x21,0x84,0x5d,
0x9e,0x2,0xf9,0x79,0xf4,0xad,0x5b,0xb8,0x46,0xdf,0x62,0x80,0xaa,0x6a,0x35,0xae,
0x9a,0x88,0xc7,0x3a,0xfd,0x27,0x9f,0x28,0xf0,0xe4,0x2e,0x6c,0xd4,0xfe,0x8d,0x85,
0x9d,0x50,0xa,0x47,0x1e,0x3c,0xd0,0x7a,0x5c,0x4b,0xa3,0x4,0xab,0xab,0x78,0xda,
0xa8,0x51,0xe9,0x76,0x9f,0xfe,0xab,0x42,0xb2,0x72,0x57,0x66,0xbc,0xf4,0x3f,0x70,
0xc0,0x3c,0x79,0x9e,0xe8,0xed,0x96,0xfe,0x7f,0x71,0xeb,0x3,0xe,0xb8,0xd,0xab,
0x58,0x91,0xf6,0x9a,0x2,0xd4,0x39,0x21,0x21,0x68,0x87,0x46,0x18,0x97,0x37,0xaf,
0xe8,0x5c,0xa9,0xc8,0xe2,0x10,0x8a,0x14,0x57,0x43,0x54,0xf4,0xcb,0x97,0xf8,0x8b,
0x57,0xe1,0xac,0x86,0x37,0x25,0x74,0xa2,0x30,0xb5,0xaa,0x83,0x83,0x42,0xde,0xa8,
0x4d,0xa7,0x73,0xe5,0xd2,0x7a,0xc3,0xb9,0x1f,0x5,0x20,0x67,0x4c,0x8c,0xd6,0xe3,
0x5a,0xa,0xf3,0x2,0x2d,0xb4,0x96,0xb3,0xd3,0xb1,0xde,0xbd,0xd3,0x7d,0xbc,0x7e,
0x78,0x80,0x1f,0xca,0x96,0xb5,0x59,0xad,0xce,0x27,0xda,0xbf,0xdf,0xbc,0x44,0xa9,
0xe8,0xfd,0x20,0xfd,0x37,0x63,0x8b,0x9d,0x2b,0x5d,0xbf,0xae,0x5c,0x19,0xe,0xd4,
0x12,0xc7,0xf,0x1c,0x40,0x43,0x24,0xe0,0xa0,0x5,0x5e,0xcb,0x92,0xc5,0x61,0x59,
0xfe,0xc0,0x6c,0x44,0x69,0x58,0x20,0xf5,0x39,0x12,0x43,0x1c,0x1c,0x14,0xae,0x43,
0x4e,0x70,0xd2,0x7e,0xe1,0x28,0xa5,0x3c,0xe9,0x90,0x27,0xeb,0x16,0x48,0x5c,0x9c,
0xa9,0xad,0xe3,0x1d,0x83,0x81,0xaf,0xa1,0x22,0x6c,0xf3,0xe4,0xd1,0x6a,0x5c,0xf3,
0x3a,0xf,0xa6,0xba,0xaa,0x8b,0x75,0xf1,0xfd,0xfb,0xcd,0x17,0xed,0x45,0xef,0x8f,
0xac,0xce,0xb8,0x2a,0xc0,0xb9,0x4a,0x73,0x67,0x67,0x1e,0xae,0x6c,0x55,0x8e,0xee,
0xdf,0xf,0x37,0x5e,0x8d,0x24,0xb,0xfc,0xb9,0xc8,0xe2,0xb0,0x48,0x94,0x97,0xc2,
0x70,0x54,0xbb,0x2,0x21,0x37,0x6c,0xa0,0xe,0xe,0xe,0xa,0xda,0xb0,0xf,0x8a,
0x68,0x5f,0x20,0x0,0xa0,0xfa,0x66,0xdd,0xdb,0x77,0xa9,0xb,0x6d,0x36,0xf5,0x11,
0xf7,0xa0,0x97,0x79,0x6d,0x6b,0x53,0xb,0x6b,0x5b,0xa,0xdb,0xb7,0xcf,0x68,0xc,
0xc,0xac,0x51,0xc3,0xde,0x5e,0xf4,0x7e,0xc9,0x6a,0xe2,0xab,0xed,0xac,0xe6,0x56,
0xc6,0xd5,0x95,0xab,0xe1,0x7b,0xd3,0xd0,0xfd,0xfb,0x51,0x12,0xbd,0x60,0xf8,0x77,
0xb6,0x53,0x8b,0x21,0x8b,0xc3,0xb2,0x45,0xf0,0xa7,0xb0,0xd2,0xee,0x3,0x39,0xdf,
0xa3,0x1d,0x7c,0xc4,0xce,0x4e,0xa1,0x78,0x24,0x22,0xc2,0xd6,0x56,0xeb,0xed,0x35,
0x85,0xaa,0x73,0x95,0x32,0x4f,0x9f,0x6a,0x3d,0xae,0xa5,0xe0,0x41,0xea,0xcf,0xca,
0x49,0x93,0x49,0x74,0xe,0x14,0xe0,0xb1,0x98,0x54,0xb9,0x32,0xcf,0xe5,0x5a,0x49,
0xb5,0xf7,0xec,0x89,0x8d,0xd9,0xb7,0xd7,0xc5,0xd9,0xce,0x4e,0x74,0xac,0xcc,0x2e,
0x3e,0x34,0xb0,0x94,0x6b,0x29,0x37,0x37,0x35,0x40,0xd9,0x8d,0xe1,0xfb,0xf6,0xc1,
0x11,0x8e,0x34,0xd0,0x2,0xb,0x5c,0x16,0x47,0x86,0xc0,0x2f,0xc9,0xe,0xa3,0x9e,
0x3d,0xd3,0x6a,0x3c,0xfa,0x5,0xdb,0xc8,0xd6,0xc6,0x46,0xe1,0x9e,0x98,0x81,0x42,
0xda,0x1f,0x81,0xe8,0xaa,0x2b,0xfd,0xa9,0xe3,0xcb,0x97,0x5a,0x8f,0x6b,0x29,0x94,
0xbb,0x74,0x45,0xd9,0xfc,0xd7,0x5f,0xa2,0x73,0xa4,0xe8,0x8b,0x10,0xec,0x36,0x18,
0x94,0x55,0x2f,0xba,0xe8,0xce,0xed,0xde,0x6d,0xbe,0x3b,0x4c,0x74,0xac,0xcc,0x26,
0x26,0xc8,0xbf,0xa1,0xdb,0xa5,0x2a,0x55,0xd4,0xaa,0x9c,0x5b,0xa9,0xb5,0x77,0x2f,
0x14,0x1c,0xc6,0x3c,0xbd,0x5e,0x74,0xae,0x54,0x64,0x71,0x64,0x28,0xf4,0x8c,0xc3,
0x30,0x30,0x29,0x49,0xab,0xf1,0xd8,0x89,0x3,0xb0,0xc4,0xc6,0x46,0xa1,0xf3,0x50,
0x71,0x5a,0xfb,0x23,0x10,0xd5,0xa4,0x78,0xd3,0x16,0xed,0x36,0xd8,0xd2,0xd8,0x75,
0x8a,0x8c,0x3a,0xb9,0xfd,0xf7,0xdf,0xc9,0x95,0xfa,0xa0,0xec,0xad,0x5b,0xa2,0xf3,
0x98,0x71,0x57,0x5e,0x84,0x8a,0x55,0xaa,0xe8,0x96,0xaa,0x3d,0x80,0xe0,0xe0,0x94,
0x85,0xc6,0xa4,0x8f,0x12,0xdb,0x26,0x30,0xc1,0x35,0xa1,0x5a,0x35,0x5d,0x7,0xaa,
0x81,0xe6,0x7b,0xf6,0xc0,0x8,0x3f,0xfc,0x6e,0x81,0x47,0x7a,0xb2,0x38,0x32,0x24,
0xf6,0xa0,0x9f,0x51,0xe9,0xc5,0xb,0xad,0xc6,0xa3,0xb1,0xd8,0x83,0xd5,0x36,0x36,
0xa,0xf,0xa2,0xab,0x28,0xa8,0xfd,0x11,0x88,0x55,0xfc,0xcb,0x4a,0xc9,0x2b,0xb2,
0x6e,0x81,0x10,0xf9,0x11,0xa0,0xaa,0x5c,0x17,0x39,0x51,0x7a,0xf2,0x64,0xd1,0x79,
0x5e,0xc7,0x4b,0x79,0x28,0x3a,0x54,0xaf,0x6e,0xed,0x9d,0xc3,0x3b,0x71,0x73,0x60,
0xe0,0xdd,0x5e,0x1,0xce,0x2e,0x2e,0xda,0x7f,0xd0,0xc8,0xe8,0x62,0x63,0x2,0x9c,
0xdd,0x87,0xd5,0xa8,0xa1,0x84,0xf1,0x55,0x32,0xed,0xde,0xad,0xf5,0x4d,0x13,0xef,
0x4c,0x16,0x47,0x86,0x46,0xb9,0x78,0x7,0x86,0x68,0x78,0x4,0xd2,0x0,0x45,0xb0,
0x31,0x5b,0x36,0xcd,0x56,0x1e,0x94,0xfe,0x37,0xfd,0x82,0x84,0x9,0x45,0x4f,0xcf,
0x9f,0x8f,0x55,0x58,0x85,0xa9,0xfb,0xf7,0x8b,0xce,0x93,0x8a,0x11,0x81,0x98,0x5a,
0xb3,0x66,0x8e,0xda,0x98,0xa2,0xab,0xeb,0xef,0x7f,0x6b,0xda,0xa6,0x4d,0x55,0x6e,
0x89,0xb9,0xe9,0x22,0x23,0x89,0x1b,0x11,0xb4,0xc5,0xb0,0xf5,0xeb,0xaf,0x95,0xba,
0xf4,0x44,0xad,0xb3,0x6b,0x17,0x9f,0xc2,0x35,0xaa,0x93,0x3b,0xb7,0xe8,0x5c,0xa9,
0xc8,0xe2,0x90,0x3e,0xc4,0x43,0x2c,0x63,0x66,0x56,0x68,0x6,0x17,0xc7,0xdd,0xc4,
0x44,0xad,0xc7,0x4f,0xb6,0xb3,0xfe,0xdd,0xaa,0xab,0x86,0x93,0x37,0x5a,0x28,0x22,
0x6f,0xef,0xcd,0x9b,0x4d,0x26,0xd3,0x7e,0xf5,0x8e,0x75,0xf3,0x16,0x2d,0xd0,0x9,
0xa1,0xc8,0xb5,0x67,0x8f,0xe8,0x5c,0xa9,0x34,0x44,0x2,0xe,0xd6,0xa9,0x93,0xeb,
0x60,0x8e,0x53,0x6a,0x97,0xed,0xdb,0xcd,0xcf,0xb1,0x88,0x8e,0x65,0x69,0xe2,0x42,
0xfc,0xc3,0x5d,0xff,0xa8,0x59,0x93,0x4e,0xaa,0xfb,0xe9,0x46,0x70,0x30,0x87,0xf0,
0x74,0x1a,0x69,0x81,0xa7,0x0,0x65,0x71,0x64,0x2a,0x9c,0x7,0xe5,0xd8,0x59,0xbb,
0xdf,0x47,0x8a,0x46,0x5d,0x6a,0x9b,0x94,0xa4,0x70,0x39,0x28,0xa8,0x98,0x90,0xa0,
0xf5,0x6,0x2b,0x3a,0x75,0x13,0xb7,0x92,0x5,0x62,0xf6,0x49,0x40,0xd3,0xd0,0xe3,
0x31,0x4f,0x9e,0xe8,0xfd,0x3f,0x6d,0x61,0x32,0x7a,0x7a,0x22,0xc,0xed,0x30,0x79,
0xdb,0x36,0xd1,0xb9,0x52,0x59,0x8d,0x6a,0x78,0xda,0xa0,0x81,0xd1,0xcb,0xb4,0xdc,
0x61,0xc7,0xce,0x9d,0xb2,0x48,0xfe,0x61,0x3e,0xe2,0xa0,0x9f,0x94,0xe,0x74,0x2f,
0x30,0x90,0xb7,0xa2,0x9,0x36,0xe4,0xcc,0x29,0x3a,0x57,0x2a,0xe6,0x69,0xd5,0x6b,
0x59,0xc7,0x28,0xbd,0x1a,0x36,0x94,0xc5,0x91,0x39,0xd0,0x22,0x6c,0xa3,0xcf,0xb5,
0x7b,0x3f,0xe5,0xd1,0x68,0x80,0x4e,0x49,0x49,0xa,0x2d,0xc1,0x20,0xdc,0xd6,0xfe,
0x8,0x44,0x2d,0xc0,0xf1,0xea,0x56,0x59,0x20,0xaf,0x33,0x4f,0x4d,0xa0,0x6f,0x90,
0xb8,0xac,0xe8,0x5c,0x6f,0x6f,0x5a,0x43,0xfb,0xf8,0xe8,0xfa,0xf5,0xa2,0x73,0xa5,
0xf2,0xaa,0x48,0xe2,0x7f,0x55,0x2b,0x39,0x34,0xca,0xba,0x47,0x24,0x29,0xc5,0xb1,
0x8b,0x87,0x23,0x77,0x50,0x90,0xc5,0x1e,0x71,0xc8,0xf5,0x38,0x32,0x35,0x2e,0x89,
0xb2,0xf8,0x5a,0xc3,0x23,0x90,0x6b,0xe4,0x89,0x9e,0x49,0x49,0xa,0xdb,0x21,0x7,
0xc,0x2,0x8e,0x40,0xee,0x51,0x1e,0xfe,0xdd,0x2,0x3f,0xa1,0x59,0x8,0xf3,0xa9,
0x2d,0xbb,0xfe,0x9,0x35,0x8a,0x75,0xec,0xd4,0x89,0xa6,0xa2,0x3e,0xf2,0xaf,0x5b,
0x27,0x3a,0xd7,0xeb,0xf8,0x3b,0xde,0x88,0xe,0x8d,0x1a,0x19,0xf7,0x9a,0x9c,0x1d,
0xbe,0x5c,0xb7,0x8e,0xd5,0x83,0x5c,0x93,0xad,0xac,0x44,0xe7,0x4a,0x6f,0xf1,0x9d,
0x3,0x9c,0xdd,0x2e,0xd5,0xaf,0x4f,0xf7,0xb9,0x3,0xd,0xdc,0xbd,0x5b,0x16,0x87,
0x24,0x12,0x29,0x18,0xc0,0x93,0xb4,0x7b,0x3f,0xe5,0xe1,0x68,0xc1,0x9,0x49,0x49,
0xa,0x36,0xd2,0x4,0xdc,0xd4,0xfe,0x8,0x84,0x2a,0xa8,0xf7,0xe8,0xba,0x5,0x3e,
0x71,0x6b,0x61,0x52,0x8a,0x64,0x7c,0xe2,0xce,0xa2,0xd9,0x3b,0x77,0xa6,0x9f,0x70,
0xa,0xfd,0xd7,0xae,0x15,0x9d,0x2b,0x15,0x77,0xac,0xc7,0xd0,0x16,0x2d,0x8c,0x93,
0x9e,0xae,0x4b,0xb8,0xb3,0x7e,0x7d,0x66,0x2d,0x92,0xf8,0x59,0x81,0xd,0xdc,0xf2,
0x36,0x68,0xc0,0x56,0x74,0xe,0xb5,0x76,0xec,0xe0,0x69,0xbc,0x45,0xc4,0x5d,0x8c,
0x6f,0x25,0x8b,0x23,0x4b,0xe1,0x87,0x98,0xd,0x2b,0x2d,0xa7,0xbe,0xe1,0xf3,0x34,
0xd7,0x68,0x54,0x68,0x35,0x1c,0xf1,0x95,0xf6,0x47,0x20,0xa6,0x33,0xca,0xef,0xb0,
0xb3,0xc0,0xb9,0x7e,0x2c,0x54,0x4a,0x91,0x2c,0x4d,0x2c,0x5b,0x34,0xa0,0x4b,0x17,
0xea,0x80,0x36,0x38,0xbc,0x66,0x8d,0xe8,0x5c,0xa9,0x7c,0x8b,0x3c,0xd4,0xa2,0x55,
0x2b,0x63,0x9b,0x67,0xb5,0x13,0x27,0xad,0x5d,0xcb,0xbc,0x69,0x53,0xeb,0xd6,0x3a,
0x9d,0xe8,0x58,0x1f,0x2b,0xd6,0x3d,0xa8,0x95,0xa1,0x75,0xc3,0x86,0xea,0x9f,0x6c,
0xc3,0xa7,0x64,0x71,0x48,0x16,0xc6,0x5,0x3f,0x53,0x6d,0xd,0x3f,0x90,0x6f,0xc0,
0x14,0xd8,0xc7,0xc4,0x28,0xbc,0x96,0x93,0xe1,0xa6,0xfd,0x94,0x22,0xd4,0x57,0x9d,
0x4d,0xc3,0xe5,0x11,0xc8,0xfb,0x4a,0x29,0x92,0xa0,0xc4,0x15,0x45,0x3b,0x77,0xed,
0x4a,0xb5,0xe9,0x47,0x1e,0xbf,0x7a,0xb5,0xe8,0x5c,0xa9,0x2c,0xe2,0x1f,0xb1,0xcd,
0xdb,0xdb,0x78,0xd7,0x76,0xe3,0x8d,0x6f,0x97,0x2c,0x31,0xaf,0xa1,0x2c,0x3a,0xd6,
0xfb,0x8a,0x1d,0xea,0x7f,0xc1,0x75,0x51,0xa3,0x46,0xe4,0xac,0xbe,0xc0,0x6f,0xdb,
0xb7,0x63,0x22,0x7a,0x53,0x8b,0xec,0xd9,0x45,0xe7,0x4a,0x45,0x16,0x47,0xd6,0xf6,
0x29,0x1c,0xf1,0x93,0x86,0x53,0xe1,0x3c,0x23,0x1f,0x3e,0x69,0x34,0x2a,0xd8,0xa,
0x3f,0xfa,0xfc,0xee,0x5d,0xad,0xb7,0x97,0x8e,0x2a,0xf9,0xb1,0x2c,0x5f,0x3e,0xad,
0xc7,0xcd,0x2c,0x52,0x8a,0x24,0x3a,0x61,0x42,0xb1,0xc5,0xdd,0xba,0x59,0x6c,0x91,
0xd8,0x72,0x57,0xc,0xef,0xda,0xd5,0xb8,0xd3,0xb5,0x93,0x21,0x7a,0xf1,0xe2,0x8c,
0x52,0x24,0xb1,0xfe,0x1,0xb7,0xdc,0xdb,0x35,0x6e,0x4c,0x56,0x74,0x4c,0xf9,0x4c,
0x16,0x87,0x64,0x99,0x58,0x8d,0x8c,0x70,0x71,0xb6,0xb6,0x46,0x19,0xea,0x8c,0xf2,
0x1a,0x7e,0x20,0xf7,0x51,0x47,0xe3,0x66,0x4c,0x8c,0x42,0xbf,0x2a,0x15,0xd5,0x3d,
0xda,0x4f,0xa5,0xc1,0xb7,0xd1,0x90,0xf3,0x17,0x2d,0xaa,0xf5,0xb8,0x99,0x4d,0xaa,
0x22,0xf9,0x1c,0x2f,0xf0,0xd7,0xaa,0x55,0xa2,0x73,0xa5,0xf2,0x6a,0xa9,0x5d,0xa3,
0x8f,0xc1,0xc6,0x6d,0xcc,0xc2,0x85,0xcc,0xcc,0x0,0x91,0xe8,0x58,0xaf,0x8b,0x8d,
0xd,0xbc,0xe7,0xb6,0xa4,0x49,0x13,0x3a,0x89,0x3d,0xdc,0x71,0xdb,0x36,0xc,0x41,
0x7e,0xf8,0x59,0xe0,0xdd,0x65,0xb2,0x38,0x24,0x0,0xf1,0x8f,0xef,0x3f,0xa0,0xb1,
0x85,0xb,0xc3,0x89,0x17,0x60,0xb6,0x76,0x1f,0xcc,0x94,0xca,0x74,0x82,0xcf,0xc5,
0xc4,0x28,0x54,0xd4,0xb4,0x6,0x76,0x2,0xe6,0x62,0xba,0x80,0x73,0x74,0xb9,0x48,
0x11,0xcd,0xc7,0xcd,0xa4,0x52,0x8a,0xe4,0x5e,0xa2,0x5a,0xb4,0x7e,0xf7,0xee,0xd0,
0xc3,0x17,0x95,0x56,0xae,0x14,0x9d,0x2b,0x95,0x21,0xbc,0xd,0xc1,0x3d,0x7b,0xc6,
0x17,0xa,0xca,0xeb,0xb6,0x77,0xc6,0xc,0xd1,0x71,0xcc,0x8c,0xb3,0xfd,0x6f,0xb9,
0x8f,0x6f,0xd9,0x92,0xb6,0x71,0x13,0x6c,0xdc,0xbe,0x5d,0x16,0x87,0x94,0x21,0x78,
0xd1,0x50,0xdd,0x40,0xed,0x3f,0x88,0x9b,0xe,0xa1,0x2c,0xc5,0xde,0xbc,0xa9,0x24,
0xe9,0x6c,0x16,0xab,0xe,0xb7,0x6f,0x6b,0xbe,0xe1,0x4f,0xb9,0x30,0x5a,0xc9,0x23,
0x90,0xb4,0x66,0x2e,0x12,0x3d,0x22,0xa3,0xc2,0x17,0x75,0xef,0x8e,0x4,0x5a,0x81,
0x5f,0x56,0xac,0x10,0x9d,0xeb,0x75,0x7c,0x96,0x97,0x63,0xe4,0xf7,0xdf,0xc7,0x1d,
0xf,0x6c,0xe0,0x96,0x77,0xfa,0x74,0x51,0x39,0x8c,0x47,0x2,0xa2,0xdd,0x2e,0xb5,
0x6a,0xc5,0x39,0xa8,0x29,0x1f,0x5e,0xbf,0x1e,0x2d,0xe1,0x87,0x78,0x6b,0x6b,0xd1,
0xfb,0x27,0x15,0x59,0x1c,0xd2,0xff,0xc0,0x87,0x4d,0xbe,0xaa,0xb3,0xf6,0xef,0xa3,
0x6a,0x3d,0x75,0xae,0x4d,0xc5,0x1b,0x37,0x94,0x4f,0x7c,0x4e,0x6c,0x8b,0x8a,0x7a,
0xf0,0x0,0x4b,0xe0,0x8e,0x6,0x1a,0x4e,0x6e,0xf8,0x6a,0xe1,0x9c,0x38,0xde,0xce,
0x15,0xd9,0x2,0xa7,0xb3,0xce,0xe0,0xcc,0x93,0x35,0xea,0xb,0x36,0xd9,0x12,0x5e,
0xa7,0x7b,0x77,0x8a,0x2,0xc1,0x76,0xc1,0x2,0xd1,0xb9,0x52,0x29,0xc7,0xfd,0xe1,
0xf4,0xc3,0xf,0x71,0x93,0x3,0x9c,0xdd,0x2e,0x4d,0x9d,0xaa,0xd5,0xb0,0xc6,0xb8,
0xc0,0x0,0x37,0x43,0xeb,0xd6,0xfc,0x10,0xfe,0x70,0x91,0xc5,0x21,0x65,0x4c,0x54,
0x93,0x26,0x29,0xd1,0xc5,0x8b,0x6b,0x36,0xe0,0xab,0x9e,0x70,0xf4,0x8f,0x3e,0x7e,
0x3c,0xe6,0xfe,0x7d,0xc5,0xfc,0x46,0x83,0x6e,0xd4,0x8c,0x87,0x69,0x7f,0x31,0x9d,
0xdb,0x5a,0x27,0x5a,0x27,0x96,0x2b,0xa7,0xf5,0xb8,0x59,0x5,0x11,0x11,0xc0,0x6c,
0x57,0xc7,0xa3,0x49,0xf8,0xa1,0xbe,0x7d,0x29,0x0,0xbe,0xe8,0x3d,0x7f,0xbe,0xe8,
0x5c,0xa9,0xf4,0x82,0x1f,0x3a,0xfc,0xf4,0x53,0x1c,0x7,0xb0,0x81,0xc7,0x8c,0x49,
0xaf,0x61,0xe2,0xb,0xf9,0x2f,0x32,0xcc,0xf1,0xf6,0xe6,0x10,0x8e,0xc2,0x5f,0xeb,
0xd6,0xa1,0x36,0x5c,0x50,0xd6,0x2,0x9f,0x57,0x91,0xc5,0x21,0xbd,0x3,0x1e,0x81,
0x8b,0xbc,0xf4,0x8b,0x2f,0x34,0x1b,0xf0,0x73,0x34,0x84,0xcb,0xad,0x5b,0xe6,0xde,
0x48,0xb9,0xe8,0x42,0x5f,0x71,0xd,0x2a,0xad,0xfd,0xb5,0x10,0x65,0x21,0x42,0x74,
0xb5,0xca,0x97,0xd7,0x7a,0xdc,0xac,0x26,0xa5,0x48,0x3a,0x79,0x44,0x85,0xf7,0xec,
0xd7,0x8f,0x16,0x52,0x0,0x8e,0xcd,0x9b,0x27,0x3a,0x57,0x2a,0x46,0x4,0x92,0xbb,
0xaf,0x6f,0xdc,0x88,0x80,0x25,0x86,0xad,0x23,0x47,0xa6,0xd5,0xcb,0xc6,0x4e,0xe,
0xec,0xe8,0x5e,0xaf,0x6d,0x5b,0x75,0x26,0xdd,0xa5,0x11,0x6b,0xd7,0xca,0xe2,0x90,
0x32,0x3,0x8a,0x44,0x8,0xac,0x35,0xfc,0x0,0x7e,0x5,0x25,0xe0,0x70,0xed,0x9a,
0xf9,0x8f,0x29,0x5,0xc2,0x5,0x31,0x93,0x7,0xfd,0xf9,0xa7,0xe6,0x7b,0xe0,0xb,
0x74,0xe5,0x71,0x1a,0x36,0x68,0x16,0x97,0x52,0x24,0xc3,0x9a,0x2c,0xc,0xb7,0xe9,
0xdf,0x9f,0x46,0xa3,0x12,0x7f,0x3b,0x77,0xae,0xe8,0x5c,0xa9,0xc,0x41,0x7e,0x9a,
0x34,0x6e,0x5c,0x9c,0x43,0xc0,0x59,0x77,0x1a,0x3e,0xfc,0x43,0x5f,0x26,0x76,0xbf,
0x7f,0x6b,0xb7,0x75,0xed,0xda,0x51,0x9,0x2e,0xc9,0x61,0xab,0x57,0xcb,0xe2,0x90,
0x32,0x3,0xf3,0xdc,0x73,0xfc,0x39,0x82,0xd1,0xa8,0x64,0x49,0xcd,0x6,0xfe,0x1e,
0x55,0x78,0xf6,0xb9,0x73,0xe6,0x3f,0xfe,0x5b,0x20,0x9b,0xa9,0x7,0x3e,0xfd,0xfd,
0x77,0xcd,0x77,0xc4,0x6d,0x7e,0x8,0x63,0xc5,0x8a,0x5a,0x8f,0x9b,0xd5,0xa5,0x14,
0xc9,0x2c,0x8f,0x42,0x11,0xdd,0x7,0xc,0xb0,0xd8,0x22,0xb9,0x82,0x6b,0x6c,0x98,
0x38,0xd1,0x78,0x2a,0x50,0xef,0x56,0x63,0xe8,0xd0,0x77,0xfd,0x36,0x63,0x8b,0xc0,
0xaf,0xdc,0x2e,0x75,0xef,0x4e,0xe,0x4a,0x28,0x4c,0x6b,0xd6,0xc8,0xe2,0x90,0x32,
0x93,0xf8,0x56,0x2f,0x4f,0xe8,0xb7,0x94,0x2b,0xa7,0xf5,0xff,0xd7,0x14,0x4f,0x65,
0x94,0x9b,0xe7,0xcf,0x9b,0xff,0xfc,0xef,0x7d,0xc3,0x5,0xb9,0x3a,0x6a,0x69,0x5f,
0x20,0x54,0x7,0xdf,0xe1,0xb6,0xab,0x6b,0x66,0x9d,0x3b,0xc9,0xd2,0xa5,0x2a,0x92,
0x1e,0xd8,0xc2,0xa1,0x73,0xe6,0x88,0xce,0xf5,0x3a,0xb6,0x63,0x6f,0x54,0xfa,0xf5,
0xd7,0xb8,0x3e,0x81,0xa5,0xdc,0xc6,0xf7,0xef,0xff,0xa6,0xaf,0x33,0x17,0x7,0x8f,
0xc4,0x55,0x9c,0x5c,0xbc,0x58,0xeb,0xfb,0xe3,0xdf,0x99,0x2c,0xe,0xe9,0x23,0xf0,
0x71,0xca,0x4b,0xb7,0xaa,0x56,0xd5,0x7a,0x5c,0xb5,0xf,0x6a,0x9b,0xe,0x9e,0x3d,
0x6b,0xfe,0x73,0xca,0x2f,0x56,0xd2,0xce,0x6c,0xbf,0xbe,0x58,0x7f,0xe6,0xc,0xae,
0xd1,0xb7,0x18,0xa0,0xaa,0x9a,0xed,0x88,0x57,0xeb,0x26,0x18,0x29,0xa1,0x75,0x82,
0xb7,0xbc,0x16,0x22,0x4a,0x4a,0x91,0x6c,0xf5,0x58,0x11,0x61,0xf5,0xfd,0xf7,0xd4,
0x90,0x4b,0xa1,0xe4,0xec,0xd9,0xa2,0x73,0xa5,0xb0,0x87,0x27,0xc2,0x89,0x30,0x8c,
0x6b,0xe1,0xfe,0xac,0x59,0x71,0xf9,0xfd,0x83,0xd,0x4e,0x7d,0xfb,0x9a,0xff,0xd9,
0xb8,0x2a,0xc0,0xd9,0x70,0xa4,0x67,0x4f,0x59,0x1c,0x52,0x56,0x40,0x5,0x95,0x81,
0x58,0x58,0xa5,0x8a,0xd6,0xe3,0x2a,0xb,0x11,0x92,0xbd,0xfe,0xbf,0x97,0x3a,0x52,
0x7e,0xc1,0xa,0x34,0xa8,0xff,0xc7,0x99,0x21,0xcf,0x9e,0x61,0x21,0x6c,0x71,0xe3,
0xd2,0x25,0xcd,0x83,0xe5,0x33,0x2d,0xa3,0xb6,0xee,0xee,0x5a,0x8f,0x2b,0xfd,0xb7,
0x94,0x22,0x39,0xe9,0x59,0x26,0x7c,0xdd,0xc0,0x81,0x16,0x5b,0x24,0xbb,0x94,0x5e,
0x34,0x76,0xf6,0x6c,0x63,0xe3,0x0,0x5b,0xb7,0xc4,0xd5,0xab,0xb9,0x6,0x5c,0x69,
0xd3,0xa2,0x45,0x16,0x5b,0x1c,0x7e,0xb8,0x81,0x69,0xe1,0xe1,0xa8,0x91,0x5c,0x21,
0xc9,0xb3,0x4e,0x1d,0x59,0x1c,0xd2,0xc7,0xe0,0x4e,0x3c,0x81,0x1a,0x6b,0x58,0x20,
0x17,0x70,0x1,0xd5,0xaf,0x5e,0xd5,0xeb,0x3d,0x3c,0x8e,0x1d,0x8b,0x8b,0x33,0xff,
0x75,0xea,0x5f,0xb4,0x73,0xbc,0x11,0x6d,0x4,0x5c,0xb,0x29,0xa4,0xb8,0x70,0xee,
0xea,0xd5,0xb5,0x1e,0x57,0xfa,0xdf,0x5e,0x2f,0x12,0xe8,0x71,0x91,0x8b,0xce,0x9c,
0x29,0x3a,0x57,0x8a,0x57,0x45,0xc1,0x6b,0xb1,0x11,0x35,0x3b,0x76,0x4c,0x29,0x16,
0x4b,0x63,0x3e,0xe2,0xf0,0xb6,0xf6,0x52,0x8a,0x35,0x6a,0x24,0x57,0x0,0x94,0x3e,
0xc6,0xd3,0x8e,0xdb,0x26,0x57,0xfb,0x32,0x5f,0x3e,0x34,0xc3,0x7e,0x7c,0xab,0xdd,
0xc5,0x73,0x8a,0xa4,0x5b,0xfc,0x6b,0x58,0xd8,0xeb,0x7f,0x9f,0xaa,0x40,0xd8,0x1f,
0x3d,0x79,0x84,0xf6,0x5,0x82,0xc6,0xdc,0x9d,0x66,0xd7,0xab,0x67,0xa9,0x73,0x24,
0x65,0x55,0xe6,0x22,0xb1,0x27,0xcf,0x9f,0x22,0x36,0xf,0x1a,0x44,0xb7,0xe9,0x47,
0x9c,0xf8,0xf5,0x57,0xd1,0xb9,0x2c,0x9e,0x3c,0x55,0x25,0xa5,0x83,0xa4,0x59,0xd6,
0x1b,0x92,0xaf,0xd4,0xad,0xab,0xf5,0x7,0x26,0x76,0xe2,0x63,0x98,0x76,0xf2,0xe4,
0xeb,0x7f,0x9f,0xaa,0x40,0x94,0x66,0xca,0x73,0x25,0x3a,0x75,0xd3,0xa4,0x7b,0xc0,
0xc1,0x28,0x8f,0x7,0x5,0xa,0xc4,0xc5,0xee,0xca,0x59,0xe5,0x96,0xbc,0x16,0x62,
0xa9,0xf4,0x15,0x3c,0x2e,0x85,0xeb,0x86,0xf,0xa7,0x13,0xb8,0xc1,0xd,0x7e,0xf9,
0x45,0x74,0x1e,0x8b,0x23,0x8b,0x43,0x4a,0x47,0x74,0x5,0xeb,0xb8,0x7f,0xdd,0xba,
0x5a,0x8f,0xab,0x6b,0xa5,0xb4,0x52,0x5a,0xbd,0xc3,0x11,0x88,0xdd,0x21,0xda,0x11,
0x33,0x30,0x34,0x94,0x7a,0xc0,0x1a,0x45,0x5,0x2c,0x75,0xdb,0xce,0xb4,0xd8,0x44,
0xf5,0xea,0x69,0x3d,0xae,0xf4,0x7e,0xf4,0x8d,0x3d,0xfb,0x47,0x8c,0x1b,0x31,0x82,
0x36,0xc1,0x8b,0xb7,0x4d,0x9c,0x28,0x3a,0x8f,0x70,0xb2,0x38,0x24,0xd,0x50,0x5f,
0xc,0xa3,0x4d,0x1a,0xbe,0x3f,0x8e,0xc0,0x22,0xde,0xf6,0xfc,0x79,0xee,0x4,0x6a,
0x15,0xb3,0x3b,0xf5,0x99,0xa9,0x54,0x5,0x42,0x4a,0xe3,0xd2,0x97,0xbf,0x7f,0xf1,
0x82,0x93,0x70,0x18,0x31,0x47,0x8f,0x6a,0xbd,0x83,0xb8,0x9,0x76,0xd0,0xd5,0x46,
0x8d,0xb4,0x1e,0x57,0xfa,0x30,0xfa,0x3e,0x9e,0x1c,0x51,0xc8,0xc7,0x87,0xa6,0xd2,
0x46,0xe4,0x9f,0x30,0x41,0x74,0x1e,0xcd,0xc9,0xe2,0x90,0x34,0x10,0x1b,0x13,0x6c,
0x5b,0xe5,0x56,0x85,0xa,0xbc,0x17,0x3d,0x91,0xb7,0x50,0x21,0xcd,0x6,0xfe,0x1a,
0x83,0x68,0xf6,0xf1,0xe3,0xe6,0x5e,0x78,0xfd,0x9f,0xdf,0x78,0xb7,0xa,0x7d,0xc3,
0xd,0xe9,0xc1,0xfe,0xfd,0x9a,0xef,0xa9,0x42,0xf8,0x2,0x1e,0xdf,0x7c,0xf3,0xc4,
0x39,0xc0,0xd9,0xc5,0xf9,0x93,0x4f,0x34,0x1f,0x5f,0xfa,0x20,0xfa,0x9,0x1e,0x6b,
0xc2,0x3,0x46,0x8e,0xa4,0x1,0xc8,0xb,0xbf,0xf1,0xe3,0x45,0xe7,0x49,0x77,0xb2,
0x38,0x24,0xd,0x51,0xbc,0xa9,0xa3,0x3a,0xa9,0x45,0xb,0xcd,0xc7,0x6d,0x44,0x89,
0xdc,0x6c,0xdf,0xbe,0x37,0xfd,0xfb,0x1b,0xb,0x84,0x7f,0xd2,0xcd,0x56,0xcb,0x9,
0x28,0x90,0x57,0x4f,0x56,0x26,0x47,0xf1,0x30,0xa5,0x84,0x87,0x87,0xe6,0xe3,0x4b,
0x1f,0x45,0xbf,0xc6,0xb3,0x4a,0x78,0xa3,0x51,0xa3,0xa8,0x29,0x7c,0x29,0x66,0xdc,
0x38,0xd1,0x79,0xd2,0x9c,0x2c,0xe,0x49,0x0,0x72,0xa5,0xf5,0xfc,0xb3,0xf6,0x5,
0x2,0x0,0xca,0xa0,0x37,0xf7,0xc0,0x1b,0xb,0x44,0x8f,0xc6,0x9b,0x23,0x36,0x9f,
0x3e,0x4d,0x53,0x71,0x16,0xf9,0xef,0xdf,0xd7,0x3a,0x34,0x7d,0x49,0x85,0xa8,0xb9,
0x98,0x1d,0x26,0x7d,0x3c,0xfd,0x11,0xcf,0xe8,0xb0,0x2b,0xa3,0x47,0x53,0x45,0xba,
0xc5,0x9d,0xc7,0x8e,0x15,0x9d,0xe7,0xa3,0xc9,0xe2,0x90,0x4,0x88,0xf,0xdd,0x19,
0x5a,0xe5,0x56,0xc9,0x92,0x7c,0x85,0xd7,0x51,0x8b,0x2f,0xbf,0xd4,0x6c,0xe0,0x70,
0xea,0x4,0x9b,0x98,0x18,0x3b,0xbb,0x88,0x26,0x61,0x61,0xa7,0x4e,0xbd,0xe9,0xcb,
0xde,0x7c,0xa,0xeb,0xd5,0xed,0x9b,0x28,0x40,0xf7,0x78,0xcb,0xc1,0x83,0x1a,0xef,
0x37,0xb0,0x27,0xfe,0x84,0x5d,0xfd,0xfa,0x46,0x63,0x60,0x60,0x8d,0x1a,0x1a,0x2e,
0x16,0x2f,0xa5,0x29,0xfd,0x4d,0x8f,0xbe,0x11,0xfd,0x7d,0x7d,0xa1,0x87,0x7,0x87,
0xf9,0xf9,0x89,0xce,0xf3,0xde,0x64,0x71,0x48,0x2,0xa9,0x3,0x75,0xdb,0xd4,0xcd,
0xde,0xde,0x5a,0x8f,0x4b,0x17,0xd1,0x99,0xf,0xec,0xdd,0x9b,0xb2,0xdc,0xc7,0x1b,
0xbc,0xf5,0x89,0x5d,0xbe,0xa7,0x8e,0x56,0x3e,0xd9,0xb5,0x4b,0xeb,0xd,0x30,0x2f,
0x29,0xca,0x65,0x54,0xe5,0xc5,0x9d,0x76,0xed,0x34,0x1f,0x5f,0x4a,0x53,0xf6,0xe4,
0x49,0x11,0x34,0x66,0xc,0x11,0x11,0xcf,0xfc,0xf9,0x67,0xd1,0x79,0xde,0x4a,0x16,
0x87,0x24,0x50,0xca,0xf3,0x70,0xf5,0xf8,0x32,0x82,0xbb,0x74,0xd1,0x3c,0x40,0x47,
0xd4,0xa3,0x1a,0xdb,0xb7,0xbf,0xed,0xcb,0xde,0x5a,0x20,0xa6,0x3f,0xd8,0xcb,0xca,
0x66,0xc7,0xe,0xfa,0x89,0x5a,0xe1,0x6e,0x62,0xa2,0xe6,0x1b,0x32,0x8e,0x3a,0x52,
0x81,0x6e,0xdd,0x34,0x1f,0x57,0x4a,0x17,0x7a,0xbd,0x87,0x47,0x44,0xd5,0x49,0x93,
0x2c,0xb6,0x48,0x64,0x71,0x48,0x16,0x20,0x6e,0x8d,0xff,0x5d,0x57,0xfb,0x6a,0xd5,
0x30,0x4,0x3d,0xf0,0xb8,0x74,0x69,0xad,0xc6,0x35,0xbf,0xcf,0x3f,0xf,0xb7,0x19,
0xf1,0xdc,0x3b,0x38,0xf8,0x6d,0x5f,0xff,0xd6,0x2,0xf9,0x24,0xa0,0x69,0xe8,0xf1,
0x98,0x27,0x4f,0xf8,0x2b,0xe8,0xf9,0xe7,0xb7,0xbf,0x60,0x9a,0x6b,0x8d,0x95,0x30,
0xb9,0xba,0xc6,0x79,0xf8,0xe7,0x75,0x5f,0xa7,0xe1,0x39,0x40,0x29,0x5d,0xa5,0x14,
0xc9,0x75,0xea,0x4,0x9b,0x61,0xc3,0x44,0xe7,0x91,0xc5,0x21,0x59,0x12,0xfa,0x53,
0x57,0x4c,0x19,0xd8,0xb5,0xab,0xd6,0xe3,0xf2,0x0,0x1e,0x8a,0x96,0xbb,0x77,0xa7,
0xcc,0x8d,0xf8,0x16,0xef,0x3c,0xe9,0x1c,0x3d,0x55,0x23,0x15,0xe3,0xfa,0xf5,0x5a,
0x6f,0x50,0xca,0xf8,0x36,0xd4,0x58,0xf5,0xee,0xd5,0x4b,0xd4,0xf8,0x52,0xfa,0xd0,
0x57,0xf6,0x30,0x86,0x1f,0x9b,0x3c,0x99,0xe,0x62,0x17,0x46,0xbd,0xfb,0x7a,0x1f,
0x69,0x46,0x16,0x87,0x64,0x41,0x62,0x63,0xf6,0xed,0x75,0x71,0xb6,0xb3,0xa3,0x75,
0x7c,0x8a,0x7f,0x6a,0xd3,0x46,0xf3,0x0,0x9b,0x79,0x20,0x2d,0x7b,0xfb,0xa9,0x2b,
0xb3,0x77,0x2e,0x90,0xb8,0xfe,0xb9,0xb,0x65,0xf7,0x9,0xa,0x82,0x1e,0xbe,0xa8,
0x14,0x1f,0xaf,0xf9,0x86,0x5d,0xa3,0x50,0x84,0x74,0xed,0x6a,0xde,0xc1,0x9a,0x8f,
0x2f,0xa5,0x2b,0x7d,0xb,0xcf,0x79,0xe1,0x9e,0x53,0xa6,0xd0,0x52,0xce,0x43,0xcf,
0x86,0xc,0x49,0xf7,0x1,0x65,0x71,0x48,0x16,0x48,0x69,0xf7,0xfc,0xa1,0xe2,0xdf,
0xa3,0x7,0x9f,0xc2,0x35,0xaa,0x93,0x3b,0xb7,0x56,0xe3,0x9a,0x4f,0x5d,0xf1,0x4f,
0x39,0xa2,0x93,0x4b,0xf9,0xfb,0xbf,0x73,0xde,0x77,0xfd,0x42,0x27,0xaa,0x45,0x87,
0xe9,0xf9,0x73,0xfa,0x14,0x23,0xb0,0x71,0xe7,0x4e,0xad,0x36,0xcc,0x8c,0x43,0x78,
0x3a,0x8d,0xcc,0x95,0x4b,0x71,0x4b,0xfc,0x5a,0x57,0xbe,0x7b,0x77,0xad,0xc7,0x97,
0xb4,0xa1,0x1f,0xec,0x55,0x33,0xec,0xdc,0xd4,0xa9,0x28,0xcb,0x3a,0x7e,0xd8,0xaf,
0x1f,0x96,0xc0,0x1d,0xd,0x92,0x92,0xd2,0xea,0xf5,0xc9,0xf,0x8f,0xf8,0xd7,0xe0,
0x60,0x2e,0x97,0xfd,0xbe,0x3a,0xa6,0x76,0x6d,0x59,0x1c,0x92,0x25,0x60,0xde,0xb4,
0xa9,0x75,0x6b,0x9d,0x8e,0xfd,0x70,0x97,0xa6,0xf5,0xeb,0xa7,0x79,0x80,0x53,0x28,
0xc2,0xcb,0xb6,0x6c,0x71,0x70,0xac,0x57,0x3f,0x2a,0xfa,0xdd,0xf,0x10,0xde,0x7b,
0xdd,0x4,0xb5,0xa8,0xb2,0x81,0xeb,0x8b,0x3b,0x95,0xc5,0x6b,0x68,0x36,0x1c,0xfb,
0xf7,0x37,0xef,0x70,0x51,0x39,0xa4,0xf4,0x65,0xff,0xc0,0xab,0x71,0xc4,0xb5,0x79,
0xf3,0x94,0xed,0x6a,0x33,0x6c,0xaa,0x5e,0x1d,0xa7,0xe8,0x47,0x24,0x86,0x84,0xbc,
0xef,0xeb,0x50,0x1b,0x3c,0xe6,0x6d,0x77,0xee,0x30,0xd3,0x2e,0x1e,0xd0,0xb7,0xaf,
0xdd,0x6f,0x1e,0x5d,0x23,0x6a,0x7b,0x78,0xbc,0xef,0x2f,0x8a,0x24,0xa5,0xa7,0x78,
0x67,0x5b,0x9f,0xeb,0xbd,0xbc,0xbc,0x50,0x16,0x65,0x71,0xbc,0x78,0x71,0xcd,0x3,
0x84,0x60,0x3a,0x27,0xad,0x5a,0xf5,0xbe,0xdf,0xf6,0xde,0xd3,0x1,0x9b,0x97,0x9e,
0x8d,0x77,0x7f,0xda,0x2c,0xb1,0xf8,0xb5,0x6b,0x9a,0xcf,0xcd,0x62,0xce,0x11,0xc5,
0xab,0x30,0xa8,0x7d,0x7b,0x87,0xba,0x5e,0x9b,0xc3,0xdb,0x8b,0x2b,0x34,0x49,0x5b,
0x8f,0x27,0x4,0xdd,0x36,0xdc,0x2e,0x5d,0xda,0x34,0xcb,0x74,0x6,0x5f,0xd5,0xad,
0x8b,0x19,0x94,0x8d,0xbc,0x4b,0x94,0xa0,0x50,0x94,0xe6,0x32,0xd9,0xb2,0xf1,0x43,
0x2e,0x48,0xa3,0xef,0xdd,0xa3,0xbb,0xba,0xa,0x94,0x2d,0x34,0xd4,0xee,0xd0,0x33,
0xdf,0x27,0xbf,0x1c,0x3f,0x4e,0x8a,0x77,0x9b,0xf3,0xde,0x69,0x77,0x24,0x23,0x49,
0x69,0x29,0x6e,0x50,0xc0,0x1c,0xb7,0xa3,0x61,0x61,0xf0,0x45,0x51,0xfc,0xe4,0xe6,
0xa6,0xd5,0xb8,0x54,0x1c,0xf6,0xe8,0x7d,0xf3,0xa6,0x5d,0x6c,0x64,0xf5,0xf0,0x9e,
0x4e,0x4e,0x6f,0x7b,0xee,0x23,0xd5,0xf7,0x7f,0xf0,0x6,0x1b,0x2,0x7,0xbb,0x4d,
0x1f,0x31,0x2,0x7b,0xb9,0x26,0x36,0x68,0x3f,0x89,0x1e,0xd,0xa2,0x39,0xb8,0x76,
0xfe,0xbc,0xdd,0x8a,0x88,0xdd,0xe1,0xf,0x2b,0x54,0x78,0xdf,0xd,0x97,0x24,0x49,
0x12,0x2d,0xd6,0x3d,0xa8,0x95,0xa1,0x75,0xc3,0x86,0xb4,0x5b,0xed,0x42,0x37,0xb4,
0x7f,0xde,0xce,0x3c,0xe5,0x90,0x79,0xe6,0x88,0xf7,0xfd,0xfe,0xf,0x5e,0xfa,0x53,
0x99,0x69,0xf5,0xbd,0xd2,0x7a,0xc1,0x2,0x51,0xd3,0xbe,0xf3,0xc,0xee,0xf,0xa7,
0x72,0xe5,0x1e,0x17,0x76,0x59,0x6c,0x98,0xd3,0xaa,0x95,0xd6,0xe3,0x4b,0x92,0x24,
0x7d,0x2c,0x25,0x9b,0x3a,0x11,0xa3,0x7d,0x7c,0x34,0x1f,0x78,0x2b,0x7c,0x61,0xf7,
0xf2,0xa5,0x29,0x9c,0x9e,0xd0,0xa1,0x85,0xb,0x3f,0x38,0xff,0x87,0x7e,0xa3,0xf9,
0xe2,0x23,0xd7,0xa5,0x70,0x9c,0x11,0x78,0x4d,0xa4,0x30,0x3d,0x23,0xab,0x51,0xa3,
0xe4,0x35,0x11,0x49,0x92,0x32,0x8a,0xf8,0x59,0x81,0xd,0xdc,0xf2,0x36,0x68,0xc0,
0x3b,0xf1,0x17,0xf5,0xa8,0x51,0x43,0xeb,0xf1,0x29,0x14,0xcd,0xd0,0x69,0xd3,0x26,
0xc7,0xe7,0x1e,0x97,0x4e,0x16,0xbe,0x73,0xe7,0x43,0x5f,0xe7,0x83,0xb,0xc4,0x8c,
0x9f,0xe2,0xa2,0x6a,0x98,0x31,0x3,0x71,0x8,0x80,0x1b,0xb3,0xd6,0x3b,0x82,0x83,
0x51,0x12,0xcb,0xca,0x97,0x8f,0x6f,0x69,0x3b,0xfb,0xc6,0x44,0x1,0x8f,0xfc,0x4b,
0x92,0x24,0xbd,0x23,0x66,0x5f,0x6,0x14,0x45,0xad,0xcc,0x53,0x78,0xa9,0xb8,0x85,
0xd8,0xa8,0x27,0xad,0x56,0xc7,0xcd,0x9a,0xf5,0xb1,0xaf,0xf3,0xd1,0x5,0xe2,0x30,
0xd4,0x63,0x4d,0xe4,0x9a,0xb3,0x67,0x91,0x13,0x2e,0x5c,0xe9,0xf0,0x61,0x51,0x3b,
0x4,0x36,0x7c,0x80,0xa3,0xc6,0x8d,0xbb,0xbf,0x67,0x6f,0x85,0x2f,0xa7,0xe4,0xcc,
0x29,0x2c,0x87,0x24,0x49,0xd2,0x1b,0xc4,0xb7,0x34,0x7c,0xed,0x76,0xa9,0x6b,0x57,
0x94,0xc7,0xd,0x1a,0xef,0xec,0xac,0xf5,0xf8,0xf4,0x33,0x56,0xa0,0x53,0x68,0xa8,
0x5d,0x35,0x8f,0x4b,0x91,0x97,0xc2,0xc3,0x3f,0xf6,0xf5,0x3e,0xba,0x40,0x52,0xe4,
0xc3,0x42,0xa,0x9f,0x39,0x53,0xeb,0x1d,0x62,0xc6,0xf3,0xb1,0x87,0xa6,0x17,0x2c,
0x98,0xad,0xfe,0x8b,0x33,0xd9,0x6,0x6b,0xf0,0x20,0x9a,0x24,0x49,0xd2,0x3b,0x4a,
0xf9,0x60,0xfb,0xea,0x83,0xae,0xa8,0x1c,0x5c,0x91,0x2a,0x52,0x95,0x49,0x93,0xd2,
0xea,0xf5,0xd2,0xac,0x40,0xf4,0x88,0x8c,0xa,0x5f,0xe4,0xef,0x4f,0x25,0xa8,0x3d,
0x6f,0x3b,0x73,0x46,0xcc,0xee,0x1,0xa8,0xe,0xbe,0xa3,0xdf,0x6,0xf,0x8e,0x8d,
0x9,0x70,0x76,0x71,0x2e,0x52,0x44,0x54,0xe,0x49,0x92,0x24,0xb3,0xec,0x47,0x92,
0x2a,0x66,0x3f,0x32,0x7c,0xb8,0xf9,0x83,0xae,0xe6,0x1,0x92,0xb1,0x1c,0xae,0xbf,
0xff,0xae,0xff,0xae,0xc9,0xa8,0x30,0x43,0x40,0x40,0x5a,0xbd,0x6c,0x9a,0x15,0x88,
0xf9,0x36,0x5a,0x1e,0x8f,0x21,0xca,0xbd,0x51,0xa3,0x34,0xdf,0x41,0xaf,0xf0,0x56,
0x34,0xc1,0x86,0x9c,0x39,0x95,0x85,0x74,0x41,0xb7,0x71,0xc1,0x2,0x51,0x39,0x24,
0x49,0x92,0x1e,0x5f,0xdd,0x59,0xcd,0x75,0x5c,0x99,0x32,0xcc,0xfc,0xd,0xbe,0x1d,
0x3c,0x58,0x54,0xe,0x1a,0xa6,0x1c,0xe2,0xd,0xe3,0xc6,0xa5,0xac,0xf3,0x94,0x46,
0xd2,0xee,0x14,0xd6,0x2b,0xf6,0x7d,0x3d,0x46,0x87,0x19,0xfc,0xfd,0x69,0x2a,0x74,
0xc8,0x7f,0xe2,0x84,0xb6,0xbb,0xe9,0x5f,0xfc,0x1d,0x6f,0x44,0x87,0x46,0x8d,0x8c,
0xdd,0x83,0x1c,0xc,0xe,0x72,0x65,0x43,0x49,0x92,0xb4,0x63,0x5e,0xcf,0xc3,0xf4,
0x4c,0x79,0x4e,0xdd,0xe6,0xcf,0x37,0xaf,0x6f,0xa4,0x75,0xe,0xea,0x84,0x2a,0x28,
0x76,0xee,0x9c,0xdd,0xd2,0xf0,0x98,0x88,0xd8,0x1d,0x3b,0xd2,0xfa,0xf5,0xd3,0xbc,
0x40,0x52,0x54,0xc7,0x55,0xae,0x24,0xee,0x48,0x24,0xc5,0x6d,0x75,0x36,0xce,0xcc,
0x9a,0x15,0x13,0x14,0x7c,0xd1,0xed,0x52,0x9e,0x3c,0xa2,0xe3,0x48,0x92,0x94,0xf9,
0xc5,0xb7,0xc,0xfa,0xda,0xed,0x52,0xb7,0x6e,0x28,0x4,0x3f,0x6a,0x51,0xab,0x96,
0xb0,0x20,0xf9,0x94,0x32,0xbc,0x7f,0xf4,0xe8,0xf4,0x7a,0xd0,0x3a,0xdd,0xa,0x44,
0xdf,0xd8,0xb3,0x7f,0xc4,0xb8,0x3,0x7,0x3e,0x74,0xe,0xa3,0xb4,0xc2,0x1b,0x91,
0x87,0x5a,0x7c,0xf6,0x99,0xf2,0xd2,0x34,0x96,0x9f,0xfc,0xf6,0x9b,0xa8,0x1c,0x92,
0x24,0x65,0x7e,0xff,0x7c,0x50,0x2d,0x54,0x88,0x27,0x73,0xf,0x7e,0x34,0x75,0xaa,
0xa8,0x1c,0xe6,0x33,0x40,0x76,0x4b,0x1b,0xc7,0x44,0xc4,0xbe,0xfb,0xf4,0xec,0xef,
0x2b,0xfd,0x8e,0x40,0xcc,0x3,0x64,0x7,0xd4,0xe7,0xc3,0x87,0x8b,0x7a,0x4e,0x24,
0x45,0x4d,0xb4,0xa1,0x6f,0xbb,0x77,0x37,0x1e,0x9,0x88,0x76,0xbb,0x24,0x9f,0x5c,
0x97,0x24,0x29,0xed,0x98,0x9f,0xef,0x50,0x8a,0x98,0xda,0x72,0x8e,0x55,0xab,0xe0,
0x8,0x47,0x1a,0x68,0x6f,0xaf,0x79,0x90,0x57,0xef,0xb3,0xea,0x65,0xfa,0x46,0xdd,
0x38,0x78,0x70,0x5a,0x5f,0xf3,0x78,0x5d,0xba,0x17,0x48,0xca,0xfd,0xc6,0x87,0x69,
0x27,0x97,0xdd,0xb6,0x2d,0xbd,0xc7,0x7b,0x1b,0x3e,0x8b,0x25,0xb8,0x30,0x6f,0xde,
0xd3,0x2b,0xfe,0x79,0xdd,0xd7,0xe5,0xcf,0x2f,0x3a,0x8f,0x24,0x49,0x19,0x5f,0xfc,
0x34,0x97,0x23,0xee,0x5f,0xfc,0xf8,0xa3,0xe8,0x53,0x56,0x14,0x89,0x27,0x5c,0x6d,
0xe3,0x46,0x87,0x8d,0x1e,0xb6,0x91,0xb6,0xa1,0xa1,0xe9,0x3d,0x5e,0xba,0x17,0x88,
0x99,0x9a,0x4f,0x39,0x4a,0xd,0x6,0xd,0xa2,0xca,0x70,0xe2,0x3,0x4f,0x9e,0x68,
0x35,0x6e,0x2a,0xed,0xd0,0x8,0xe3,0xf2,0xe6,0x4d,0xde,0xa8,0x3c,0x63,0xc3,0xf2,
0xe5,0xe6,0x4f,0xe,0xc2,0xf2,0x48,0x92,0x94,0x61,0x19,0x57,0x5,0x38,0x57,0x69,
0xee,0xec,0xcc,0xb1,0x74,0x89,0x27,0x8f,0x1f,0x2f,0x2a,0x47,0xca,0x82,0x50,0xad,
0x93,0xd7,0x29,0xed,0x86,0xf,0xd7,0x6a,0x5c,0xcd,0xde,0x38,0x1d,0x9b,0x34,0x2e,
0x1d,0x5e,0xea,0xf6,0x6d,0x94,0xc6,0x69,0xc4,0x8f,0x19,0xa3,0xd5,0xb8,0x6f,0x92,
0x72,0x97,0xd6,0x41,0x97,0x8,0xb7,0x4b,0x23,0x47,0x8a,0xce,0x23,0x49,0x52,0xc6,
0x61,0x34,0x6,0x6,0xd6,0xa8,0x61,0x6f,0xcf,0xa5,0xd0,0x4e,0x2d,0xb6,0x79,0xb3,
0xa8,0xbb,0xac,0xcc,0xf8,0xf,0xc,0xc0,0x8f,0xe3,0xc7,0xdb,0x53,0x73,0xa,0xa3,
0xeb,0xd7,0xb5,0x1a,0x57,0xf3,0x4f,0xde,0x76,0x7b,0x12,0xad,0x8b,0xfd,0x30,0x73,
0x26,0xee,0xd3,0x68,0xc,0x3b,0x75,0x4a,0xeb,0xf1,0x53,0xd1,0x2b,0xcd,0x71,0xd2,
0xd7,0x37,0x76,0xa8,0xff,0x5,0xd7,0x45,0x8d,0x1a,0x89,0x8e,0x23,0x49,0x92,0xe5,
0x32,0xdf,0x9e,0xcb,0x89,0x5c,0x35,0xe9,0xd6,0xb2,0x65,0xc2,0x16,0x80,0x32,0xfb,
0x99,0x7e,0x84,0xd7,0x5f,0x7f,0xe9,0xc3,0x94,0xde,0xb1,0x56,0xd3,0xa6,0x69,0x3d,
0xbc,0xe6,0x5,0x42,0xe4,0xed,0xbd,0x79,0xb3,0xc9,0xa4,0x5e,0x55,0xf3,0xe3,0xcb,
0xbe,0x7d,0x71,0x8d,0xbe,0xc5,0x0,0x81,0xeb,0x78,0x38,0xf1,0x2,0xcc,0x56,0x14,
0xaa,0xa3,0x54,0x51,0x56,0xad,0x5e,0x1d,0x37,0x22,0x68,0x4b,0xd5,0xe8,0xa2,0x45,
0x85,0xe5,0x91,0x24,0xc9,0x62,0x19,0x7d,0x2,0x97,0x1a,0xb6,0xfa,0xf8,0x20,0x3b,
0x42,0x91,0xbf,0x59,0x33,0x61,0x41,0xcc,0x37,0x25,0x39,0xd2,0x2f,0xfc,0x79,0xef,
0xde,0xa4,0x34,0x2e,0x7d,0xf9,0xfb,0x17,0x2f,0xb4,0x8e,0x21,0xec,0xdc,0xbf,0x63,
0x13,0xaf,0xdd,0xe1,0xa5,0x4e,0x9e,0xa4,0x58,0x5e,0x88,0xa5,0x8b,0x16,0x89,0xca,
0x91,0xc2,0x8d,0x57,0x23,0xc9,0xd1,0x91,0xe,0xaa,0xb7,0x4c,0xe1,0x81,0x81,0xf2,
0xb9,0x11,0x49,0x92,0xcc,0x8c,0xb3,0xfd,0x6f,0xb9,0x8f,0x6f,0xd9,0x12,0xad,0xc8,
0x97,0x12,0xfc,0xfc,0x44,0xe7,0xc1,0x19,0x24,0x70,0xf7,0xe5,0xcb,0xed,0x27,0x36,
0x69,0x15,0xd1,0xf2,0xc8,0x11,0x51,0x31,0xc4,0x5f,0x3c,0x76,0x25,0xd8,0x24,0x8f,
0x18,0x61,0x5e,0xbb,0x5a,0x74,0x1c,0xf3,0xf4,0xf0,0xca,0x7c,0xd3,0x72,0xf4,0xd9,
0xb4,0xc9,0xbc,0x84,0xaf,0xe8,0x5c,0x92,0x24,0x69,0xef,0x71,0xf6,0xa0,0x89,0xee,
0x17,0xdd,0xdd,0x71,0x4a,0x29,0xc9,0xb,0x56,0xaf,0x36,0x9f,0xb1,0x10,0x95,0xc7,
0xbc,0x4,0x2d,0x9a,0x26,0xaf,0x4e,0xaa,0xfc,0xd3,0x4f,0xa2,0xf7,0x8f,0xf0,0x2,
0xd1,0xeb,0x3d,0x3c,0x8e,0x1d,0x8b,0x8b,0xe3,0x9f,0xb9,0x14,0xc7,0x75,0xe8,0x80,
0x53,0xf8,0x8c,0x57,0x9a,0x4c,0xa2,0x73,0x61,0x35,0xaa,0xe1,0x69,0x83,0x6,0xc6,
0x5,0xcf,0xc6,0x25,0x96,0x95,0x73,0x6a,0x49,0x52,0x56,0x12,0xc7,0xdb,0xd9,0x9d,
0x8b,0x15,0x33,0x7d,0xa7,0xb6,0x66,0xf7,0x9d,0x3b,0x79,0x1a,0x6f,0x41,0xc1,0x1c,
0x39,0x84,0x5,0x32,0x9f,0xea,0xef,0xcb,0xeb,0xb1,0xb3,0x5b,0x37,0x7b,0x6a,0x4e,
0xa7,0xc9,0x68,0x14,0xbd,0x9f,0x84,0x17,0x88,0x99,0x7d,0x6d,0x2f,0xb7,0xc8,0xa,
0x87,0xf,0xd3,0x73,0x84,0x62,0xdd,0xe4,0xc9,0xa2,0xf3,0xa4,0x68,0xc7,0x95,0x61,
0xd7,0xa3,0x47,0xdc,0xd5,0x80,0xde,0x6e,0xfd,0x7d,0x7d,0x45,0xc7,0x91,0x24,0x29,
0xfd,0x3c,0xed,0xb8,0x6d,0x72,0xb5,0x2f,0xf3,0xe5,0xc3,0xb7,0xd6,0xa5,0x79,0xc2,
0xee,0xdd,0x18,0x8d,0xb,0x28,0x65,0x1,0xcf,0x8b,0xfd,0xc5,0xab,0x70,0x76,0xc6,
0xc,0xfd,0x4,0xaf,0xb9,0xe1,0x1,0xe2,0x66,0xf6,0x78,0x1d,0x89,0xe,0xf0,0x3a,
0x56,0x23,0x23,0x5c,0x9c,0xad,0xad,0x8d,0x9d,0xee,0xf5,0x51,0x66,0x1c,0x3d,0x8a,
0x39,0xf0,0xa3,0xc1,0xee,0xee,0xa2,0x73,0x99,0xd1,0x8,0x5a,0xc2,0x6e,0x83,0x7,
0xeb,0xe7,0x7b,0xec,0x8c,0x98,0xa3,0xfd,0x5d,0xf,0x92,0x24,0xa5,0xbd,0x94,0xdb,
0x72,0xed,0x38,0x39,0xe9,0xe1,0xc1,0x83,0x30,0x42,0x7,0xbb,0x8a,0x15,0x45,0xe7,
0xa2,0xc6,0xb8,0x8c,0xee,0x67,0xcf,0xc6,0x85,0xe6,0x1a,0x94,0xa3,0x8f,0xc1,0xe0,
0x44,0xb5,0xe8,0x30,0x3d,0x7f,0x2e,0x3a,0x97,0x99,0xc5,0x1c,0x81,0x98,0x91,0xe2,
0x6a,0x88,0x8a,0x7e,0xf9,0x92,0xe6,0xd2,0x58,0x7e,0xdc,0xbe,0x3d,0x39,0xe1,0x34,
0x12,0x1e,0x3f,0x16,0x9d,0xcb,0x8c,0x87,0x70,0x7e,0xc2,0x94,0x29,0xb1,0x47,0x3,
0x76,0xb8,0x95,0xf9,0xf6,0x5b,0xd1,0x79,0x24,0x49,0xfa,0x70,0x77,0x7b,0x5,0x38,
0xbb,0xb8,0xd8,0xda,0xc2,0x8b,0x4b,0xbf,0x98,0xef,0xef,0x6f,0x31,0xc5,0x51,0x9b,
0x7e,0xe4,0xf1,0x4f,0x9f,0xaa,0xf,0x38,0x27,0x27,0xb7,0x6d,0x6b,0x69,0xc5,0x61,
0x66,0x71,0x5,0x62,0xa6,0xd7,0x7b,0x78,0x44,0x7a,0x5c,0xbd,0xca,0x35,0xa8,0x9d,
0xea,0xdf,0xaf,0x9f,0xe8,0x3c,0x29,0xec,0xe1,0x89,0x70,0x22,0xca,0x49,0xfd,0x30,
0x72,0xee,0x5c,0xe3,0xaa,0x0,0x67,0xc3,0x91,0x9e,0x3d,0x45,0xc7,0x92,0x24,0xe9,
0xdd,0x99,0xef,0xb2,0xb4,0xdd,0x8e,0xab,0xba,0x2f,0x77,0xed,0xe2,0x9d,0xf8,0x8b,
0x7a,0xd4,0xa8,0x21,0x3a,0x97,0x99,0x3a,0x45,0xad,0x44,0x8f,0x7a,0xf7,0x76,0xb8,
0xea,0xd5,0x3b,0xa2,0xff,0xb9,0x73,0xa2,0xf3,0xbc,0x89,0xc5,0x16,0x88,0x99,0x7d,
0xa0,0x47,0x89,0xc8,0xe2,0x6b,0xd6,0x60,0x3d,0x9d,0x42,0xfc,0xd2,0xa5,0xa2,0xf3,
0xa4,0x78,0x75,0x37,0x6,0xd7,0x80,0x2b,0x6d,0x5a,0xb4,0x28,0xee,0x62,0xc0,0x2d,
0xf7,0x76,0x3,0x7,0x8a,0x8e,0x25,0x49,0xd2,0x9b,0xc5,0x87,0xee,0xbe,0x59,0xe5,
0x96,0x83,0x83,0xf2,0xbb,0xe9,0x33,0xac,0xde,0xbf,0x9f,0x2f,0x61,0x35,0xce,0x7d,
0xfd,0xb5,0xe8,0x5c,0x66,0xd4,0x3,0x5b,0x38,0x74,0xce,0x1c,0x87,0xba,0x5e,0x9b,
0xc3,0xdb,0xaf,0x5f,0x2f,0x3a,0xcf,0xdb,0x58,0x7c,0x81,0x98,0xe9,0xbf,0x4d,0x28,
0xf3,0x74,0x5c,0xdf,0xbe,0x54,0xa,0x9d,0xf0,0x85,0xb8,0xfb,0x9e,0x53,0x79,0x75,
0x44,0x82,0xbc,0xf8,0x9d,0xaf,0xcc,0x98,0x11,0x37,0x22,0x60,0x89,0x61,0xab,0x9c,
0x1a,0x45,0x92,0x2c,0xc9,0xdf,0x1b,0x83,0x5a,0x19,0x5a,0x17,0x28,0xc0,0x5d,0x5f,
0x36,0x33,0x1d,0x3a,0x74,0x8,0x7d,0x11,0x82,0xdd,0x6,0x83,0xe8,0x5c,0x66,0xb4,
0x82,0x7a,0xe3,0xf4,0xc9,0x93,0x76,0x5b,0x12,0x1b,0x3f,0xdb,0x26,0xfe,0xf6,0xdc,
0x77,0x95,0x61,0xa,0x84,0x14,0xef,0x36,0xe7,0xbd,0x93,0x92,0x74,0x45,0x50,0xdc,
0x74,0xba,0x65,0x4b,0x1c,0x87,0x2f,0x46,0x5c,0xb9,0x22,0x3a,0x57,0x2a,0x43,0x90,
0x9f,0x26,0x8d,0x1b,0x17,0x77,0x33,0xc0,0xca,0x10,0xf8,0xdb,0x6f,0x72,0xb2,0x46,
0x49,0x12,0xe7,0x71,0xd9,0x80,0x5b,0xee,0xed,0x4a,0x95,0xb2,0x7e,0xce,0xdb,0x31,
0xe8,0xe8,0x51,0xe,0x83,0x1f,0xcd,0xae,0x50,0x41,0x74,0x2e,0x33,0xf3,0x73,0x1d,
0x2f,0x9f,0x59,0x55,0x31,0x95,0x6f,0xd1,0xc2,0xfc,0x3e,0x27,0x3a,0xd7,0xbb,0xca,
0x70,0x6f,0x6c,0xb9,0xa3,0x3d,0xa3,0xa3,0xa2,0x1f,0x3d,0x32,0xe5,0x7,0x4c,0xe3,
0x3c,0x3c,0xa0,0xa2,0x26,0xfa,0x8a,0xbf,0x1f,0x3a,0x75,0x50,0x6c,0xa7,0xb1,0x83,
0x6,0xc5,0x2f,0x71,0xb5,0x73,0x9b,0x1e,0x14,0xf4,0xc8,0x73,0x67,0xb5,0xea,0x8e,
0xb9,0x73,0x8b,0x8e,0x25,0x49,0x59,0x41,0x6c,0x9b,0xc0,0x4,0xd7,0x84,0x6a,0xd5,
0x4c,0xdf,0xe3,0x17,0x6e,0x7f,0xfc,0x38,0xbc,0x78,0x7,0xfd,0x50,0xb2,0xa4,0xe8,
0x5c,0x66,0xe6,0x59,0xc9,0x79,0x1e,0x5e,0xe0,0x92,0x97,0x57,0xde,0x91,0xd,0xb7,
0x47,0x45,0xdd,0xbb,0x27,0x3a,0xd7,0x7b,0x6f,0x87,0xe8,0x0,0x1f,0x2b,0xbe,0x73,
0x80,0xb3,0xdb,0xa5,0xfa,0xf5,0xd5,0xa6,0xf0,0x82,0x4b,0x50,0x10,0x6a,0xc3,0x5,
0x65,0x2d,0xf0,0xc9,0x71,0x3d,0x4c,0x88,0x3f,0x7d,0x5a,0xd,0xd6,0x95,0x43,0xa0,
0x87,0x47,0xca,0xec,0xc4,0x92,0x24,0xa5,0x99,0xf8,0x42,0xfe,0x8b,0xc,0x73,0xbc,
0xbd,0x55,0x4f,0xa,0x40,0xb3,0x95,0x2b,0x31,0x11,0xbd,0xa9,0x45,0xf6,0xec,0xa2,
0x73,0xa5,0x30,0x3f,0x28,0xbd,0x12,0x7b,0xd0,0xbe,0x79,0x73,0xfb,0x95,0x9e,0xc3,
0x23,0x4e,0x5,0x4,0x88,0x8e,0xf5,0xa1,0x32,0xdc,0x11,0xc8,0xeb,0xec,0x56,0x79,
0x46,0x87,0x97,0xda,0xbb,0x17,0x7b,0x69,0x2d,0x86,0xfe,0xf0,0x83,0xe8,0x3c,0x6f,
0xf4,0xea,0xf6,0x40,0xdd,0x18,0xd3,0x10,0xd4,0x3f,0x71,0x22,0x36,0x7b,0xc0,0x5a,
0xc3,0xed,0xaa,0x55,0x45,0xc7,0x92,0xa4,0x8c,0xcc,0x3c,0xd5,0x50,0x9c,0x47,0x80,
0xd1,0x10,0x31,0x79,0xb2,0x7a,0x84,0x22,0xe9,0xc2,0x86,0xd,0x16,0x57,0x1c,0xe6,
0xbc,0x95,0x68,0x9,0x22,0x7,0xc,0xc8,0xe8,0xc5,0x61,0x96,0xe1,0x8f,0x40,0x5e,
0x67,0xfc,0x3a,0xc0,0xd9,0xbd,0xc4,0xd8,0xb1,0xbc,0x13,0x7e,0xec,0x38,0x6a,0x94,
0xe8,0x3c,0x6f,0x14,0x82,0x28,0x5c,0x48,0x4e,0xa6,0x3a,0xe4,0xca,0x7b,0x46,0x8e,
0xd4,0xeb,0x3d,0x3c,0x22,0xaa,0x4e,0x9a,0x24,0x3a,0x96,0x24,0x65,0x4,0x4f,0xa2,
0x83,0x2f,0x56,0x3a,0x92,0x37,0x6f,0xf2,0x51,0x93,0x8f,0xd,0xd6,0xad,0x43,0x67,
0x74,0xc6,0xe0,0xba,0x75,0x45,0xe7,0x7a,0xa3,0xad,0x34,0x81,0x73,0x8c,0x1e,0x6d,
0xdf,0xd3,0xe3,0x64,0xc4,0xe1,0x71,0xe3,0x44,0xc7,0x49,0x2b,0x99,0xae,0x40,0xcc,
0xe2,0x2a,0x4,0x74,0x77,0xab,0x34,0x69,0x12,0x8e,0xa0,0x39,0x6c,0x86,0xe,0x15,
0x9d,0xe7,0x6d,0x68,0x1f,0xd6,0xf1,0xa0,0xd,0x1b,0x92,0x57,0xab,0x37,0x6c,0x6,
0xf4,0xee,0xfd,0x49,0x40,0xd3,0xd0,0xe3,0x31,0x2,0x57,0x6e,0x94,0x24,0xb,0x14,
0x17,0xe2,0x1f,0xee,0xfa,0x47,0xcd,0x9a,0xb4,0x99,0xbe,0x55,0x82,0xd7,0xaf,0xe7,
0x89,0xf0,0xc3,0xd6,0x4f,0x3f,0x15,0x9d,0xeb,0x8d,0x46,0x52,0x18,0x3b,0x4f,0x9d,
0x6a,0x3f,0xd7,0x63,0x7c,0xc4,0x82,0x21,0x43,0x44,0xc7,0x49,0x6b,0x99,0xb6,0x40,
0xcc,0xcc,0x87,0xb6,0x58,0x8d,0xa3,0xd4,0x2f,0x3,0xfc,0x0,0xf5,0xd8,0xcb,0x63,
0x6e,0xdc,0xc0,0x41,0xee,0xc4,0x85,0xbb,0x74,0x31,0xcf,0x11,0x26,0x3a,0x96,0x24,
0x89,0x90,0x32,0xb5,0x11,0xdd,0x73,0x55,0xa2,0x7c,0x7c,0x70,0x10,0xa7,0x70,0x61,
0xe4,0x48,0x54,0xc6,0x1d,0xea,0xa2,0xd3,0x89,0xce,0xf7,0x46,0x97,0x51,0x8a,0x6b,
0x2d,0x5f,0xae,0x77,0xf5,0x28,0x13,0x31,0xa9,0x47,0xf,0x22,0x22,0x80,0x59,0x74,
0xac,0xb4,0x96,0xe9,0xb,0xc4,0xbc,0x82,0x58,0xfc,0x81,0xc0,0x20,0xb7,0x6f,0xe6,
0xcd,0x63,0x17,0x30,0x12,0x32,0xc0,0x14,0x24,0xaf,0x2e,0xb6,0x51,0x5e,0x6a,0x43,
0xa5,0xa7,0x4c,0xb1,0xfb,0x22,0x61,0xfc,0xd3,0xad,0xbe,0xbe,0x19,0xed,0x36,0x3f,
0x49,0xfa,0x10,0xb1,0xc5,0xfd,0x17,0x19,0xe6,0x7c,0xf1,0x5,0x85,0xd1,0x6e,0x3a,
0xbf,0x66,0xd,0xac,0xd0,0xd,0x91,0x95,0x2a,0x89,0xce,0xf5,0x56,0x7a,0xf8,0xa2,
0xd2,0xca,0x95,0x7a,0x44,0x46,0x85,0x2f,0xea,0xde,0x9d,0xc8,0x8f,0x0,0x81,0xb,
0xe6,0xa5,0xb3,0x4c,0x5f,0x20,0x66,0xe6,0x22,0x31,0xee,0xc,0xec,0x64,0x88,0x5e,
0xb2,0x4,0x35,0xd1,0x86,0xbe,0xed,0xde,0x5d,0x74,0xae,0x77,0x45,0x25,0xa8,0x3d,
0x6f,0x3b,0x73,0xc6,0xb4,0x5a,0xad,0x4e,0x89,0x7d,0xfa,0x98,0x17,0xe4,0x12,0x9d,
0x4b,0x92,0xd2,0x2,0xab,0x9b,0x36,0x96,0xdb,0x64,0x63,0x63,0x1c,0x99,0xe3,0x49,
0x4e,0xdd,0xd0,0xa1,0x88,0xc3,0x4e,0xb8,0xfb,0xf8,0x58,0xea,0xc5,0xf0,0x54,0xf4,
0xb8,0xc8,0x45,0x67,0xce,0xd4,0xc3,0xe3,0xc7,0x88,0xcd,0x3f,0xfc,0x90,0x59,0x8f,
0x38,0x5e,0x97,0x65,0xa,0xc4,0xcc,0xfc,0x60,0x5f,0xfc,0x24,0x43,0x1f,0xb7,0xa4,
0xd9,0xb3,0xb9,0xf,0x7b,0xa2,0x46,0xdf,0xbe,0xa2,0x73,0xbd,0xb3,0x57,0xeb,0x2,
0xd0,0x59,0xce,0x8f,0x17,0xb,0x17,0x72,0xa7,0xe4,0xa8,0x17,0x3d,0x46,0x8c,0xb0,
0x94,0xf5,0x1,0x24,0xe9,0x7d,0xc4,0x8d,0x8,0xda,0x62,0xd8,0xfa,0xf5,0xd7,0x94,
0xa8,0x1e,0x45,0x99,0x5,0xb,0x78,0x34,0xea,0x52,0xf7,0xcf,0x3f,0x17,0x9d,0xeb,
0x9d,0x9d,0xe2,0xfc,0x58,0xeb,0xeb,0x6b,0x5f,0xdb,0xcb,0x2d,0xbc,0xd4,0xd8,0xb1,
0xa2,0xe3,0x68,0x2d,0xcb,0x15,0xc8,0xeb,0xe2,0x1c,0x2,0xce,0xba,0xd3,0xf0,0xe1,
0x88,0xc4,0x2c,0xee,0x37,0x61,0x42,0xca,0xd4,0x24,0x19,0x4,0x4d,0xc5,0x59,0xe4,
0xbf,0x7f,0x9f,0xdb,0x92,0x15,0xcf,0xff,0xf9,0x67,0x7d,0xf9,0x88,0xc1,0x11,0x85,
0x56,0xaf,0xce,0xec,0x87,0xce,0x52,0xc6,0xf4,0xcf,0x3,0xb5,0x5,0xb,0xea,0xfc,
0x95,0xe7,0x2f,0x5b,0x4e,0x9c,0x88,0x6b,0x70,0x85,0x4d,0xe7,0xce,0x19,0xe6,0xf7,
0xce,0xbc,0xb0,0xd3,0x42,0xd8,0xe2,0xc6,0xc0,0x81,0xf6,0xb,0x3d,0x2e,0x85,0x8f,
0x9c,0x33,0x47,0x74,0x2c,0x51,0x2c,0xff,0x7,0xa6,0x91,0x38,0x8f,0xc0,0x2b,0xae,
0x57,0x3b,0x76,0x44,0x4d,0xce,0xad,0x2c,0x5f,0xba,0x14,0x3d,0x11,0x86,0x3d,0x36,
0x36,0xa2,0x73,0xbd,0x2f,0x1a,0x44,0x73,0x70,0xed,0xfc,0x79,0xb5,0x25,0x2f,0xa1,
0xba,0x43,0x86,0x38,0x78,0x79,0x16,0xe,0x5b,0x1f,0x1c,0x2c,0x3a,0x97,0x94,0x35,
0x99,0xa7,0x4b,0xb7,0x9d,0x42,0x63,0x95,0x39,0x3,0x6,0xa0,0x12,0x17,0x43,0x79,
0x1f,0x1f,0x3e,0x85,0x6b,0x54,0x27,0x3,0xcd,0xcc,0x60,0xbe,0x26,0xd9,0xf,0x1b,
0x94,0x39,0xbd,0x7a,0xe9,0xff,0xf4,0x9c,0x1c,0x36,0x77,0xf9,0x72,0xd1,0xb1,0x44,
0x93,0x5,0xf2,0x9a,0xf8,0x32,0xfe,0x79,0xdd,0xd7,0xd5,0xab,0xc7,0x2f,0xe8,0xa0,
0xea,0xb9,0x75,0x6b,0x86,0xfb,0x1f,0xfd,0x35,0xd4,0x8a,0x7c,0x51,0x3c,0x30,0x10,
0x76,0xa6,0x81,0xea,0xdd,0xd1,0xa3,0xf5,0xdb,0x9a,0x76,0x89,0x3c,0x72,0xea,0x94,
0xe8,0x5c,0x52,0xe6,0xc4,0x6a,0xf0,0xc5,0x92,0xb3,0xb2,0x65,0x8b,0x33,0xaa,0x33,
0xec,0xed,0xbb,0x77,0x57,0x7c,0xf8,0x24,0xdd,0x1d,0x35,0xca,0xe2,0x6f,0xb7,0x7d,
0x83,0x94,0x75,0x39,0xe,0xe0,0x8,0xdd,0x6c,0xdb,0xd6,0xc1,0xc1,0xe3,0xd3,0xf0,
0x9e,0x41,0x41,0xa2,0x73,0x59,0xa,0x59,0x20,0x6f,0x10,0x1b,0x13,0x6c,0x5b,0xe5,
0x56,0x85,0xa,0x4a,0x43,0x53,0x3d,0xf5,0xeb,0xe0,0x60,0xde,0x8b,0x9e,0xc8,0x5b,
0xa8,0x90,0xe8,0x5c,0x1f,0x6d,0x15,0x56,0x61,0xea,0xfe,0xfd,0x8a,0x81,0x7e,0x57,
0x7b,0xf8,0xf8,0xd8,0x55,0xf3,0xb8,0x14,0x79,0x29,0x3c,0x5c,0x74,0x2c,0x29,0x63,
0x32,0x5f,0xfc,0x8e,0x7f,0x6c,0x9b,0x33,0xf7,0xb4,0xae,0x5d,0x51,0x8f,0x17,0xf3,
0xdf,0xa3,0x46,0x65,0xf8,0xdf,0x17,0x7f,0x6a,0xc6,0xbf,0x5d,0xbe,0xcc,0xf,0xd0,
0x8e,0xe7,0x37,0x6f,0xee,0x30,0xd4,0x63,0x4d,0xe4,0x9a,0xb3,0x67,0x45,0xc7,0xb2,
0x34,0xb2,0x40,0xde,0xe2,0x9f,0x85,0x67,0xa,0x15,0xd2,0x2d,0x55,0x7b,0x0,0x1b,
0x36,0xf0,0x52,0x1e,0x8a,0xe,0xd5,0xab,0x8b,0xce,0x95,0x56,0x68,0x3e,0xb5,0xc1,
0xda,0x5d,0xbb,0xe8,0x2,0x97,0x5,0x66,0xcc,0xc8,0xb3,0xd2,0x23,0x2a,0xbc,0xd4,
0xbe,0x7d,0x59,0xe5,0x2e,0x12,0xe9,0xfd,0x98,0xd7,0xd3,0xe0,0x72,0xc9,0x67,0x4c,
0xb7,0x7b,0xf5,0xc2,0xb7,0x5c,0x1f,0x37,0xbe,0xff,0x9e,0xe7,0x63,0xf,0x4d,0x2f,
0x58,0x50,0x74,0xbe,0x8f,0x45,0x7e,0x78,0xc4,0xbf,0x6,0x7,0xf3,0x6f,0xc9,0x5d,
0x93,0x6a,0x75,0xe8,0x20,0x6f,0x4e,0xf9,0xff,0xc9,0x2,0x79,0x47,0x29,0xf,0x34,
0x6d,0xbc,0xf7,0x58,0x57,0xef,0xd7,0x5f,0xe1,0x8e,0x8d,0x78,0xf6,0xc3,0xf,0x19,
0xe6,0xe2,0xdf,0x3b,0x32,0x5f,0x43,0xa1,0x60,0x75,0x33,0x16,0xcc,0x9a,0xf5,0xac,
0x19,0x7d,0x63,0x9a,0xb8,0x7a,0x75,0xc1,0xc5,0x9e,0xd1,0x51,0x51,0x9,0x9,0xa2,
0xf3,0x49,0xda,0x8a,0xa9,0x13,0xe4,0x50,0xa5,0xf2,0xe7,0x9f,0x2b,0xb7,0xb9,0x84,
0x29,0x60,0xe0,0x40,0xfa,0x82,0xc7,0xd1,0xf,0x9d,0x3a,0xf1,0x52,0xbc,0xc4,0xd,
0x5b,0x5b,0xd1,0xf9,0x3e,0x5a,0x1c,0x2,0xe0,0xc6,0x4c,0xfb,0xb0,0x98,0x7f,0xfe,
0xe5,0x17,0xbb,0xde,0x91,0x6a,0x44,0xa1,0x51,0xa3,0xe4,0x4d,0x28,0xef,0x26,0xd3,
0xbc,0xf1,0x69,0x2d,0x6e,0x5e,0xe0,0x58,0xf7,0x8,0x2f,0x2f,0xd4,0xe7,0x22,0x6a,
0xf2,0x8a,0x15,0x70,0x84,0x23,0xd,0xb4,0xb7,0x17,0x9d,0x2b,0xad,0xa5,0xac,0x49,
0xef,0x44,0x2b,0x79,0xfa,0xce,0x9d,0x8,0xc1,0x74,0x4e,0x5a,0xb5,0xca,0x4e,0xdf,
0xc4,0x23,0xd2,0xe3,0xc0,0x1,0x79,0xa4,0x92,0x39,0x98,0x97,0x78,0x55,0x1e,0x9b,
0x6e,0x61,0x49,0xb3,0x66,0xf8,0x1b,0xb,0xd0,0xa4,0x53,0x27,0x78,0xc2,0x1e,0x9b,
0xea,0xd4,0xc9,0x74,0x1f,0x94,0x5e,0x5d,0xdb,0xc0,0x4c,0xde,0x48,0x4e,0xdd,0xba,
0xe9,0xbf,0xf6,0x74,0xe,0x2f,0xb5,0x65,0x8b,0xe8,0x5c,0x19,0x4d,0xa6,0xf9,0x1f,
0x42,0x94,0xf8,0xd0,0x9d,0xa1,0x55,0x6e,0x95,0x2c,0xa9,0x96,0x52,0xa6,0xaa,0xbf,
0x6c,0xde,0x9c,0x61,0x9e,0x98,0xfd,0x58,0x53,0xb0,0x14,0x79,0x2e,0x5e,0x44,0x4f,
0xe4,0x43,0xd9,0x75,0xeb,0xd8,0x4e,0xb7,0x46,0x19,0xb6,0x6d,0x9b,0x83,0x63,0xe3,
0x84,0x93,0x85,0xff,0xf8,0x43,0x74,0x3c,0xe9,0x7f,0x4b,0xb9,0x2b,0xca,0xa4,0x5c,
0x57,0xae,0x35,0x6c,0x88,0xca,0xdc,0x11,0xf7,0x5a,0xb5,0xc2,0x29,0x2c,0xa4,0x12,
0xcd,0x9a,0xf1,0x34,0xde,0x82,0x82,0x39,0x72,0x88,0xce,0x99,0x6e,0xe,0xe2,0x20,
0x1f,0x8c,0x8a,0x52,0xe7,0x2a,0x2b,0x74,0x35,0x3a,0x75,0x72,0x3c,0xd0,0x24,0xf6,
0xe4,0xa9,0x3f,0xff,0x14,0x1d,0x2b,0xa3,0x92,0x5,0x92,0x46,0x6e,0x4d,0xdb,0xb4,
0xa9,0xca,0xad,0x1c,0x39,0x72,0xbf,0xb4,0xdd,0xaf,0xe6,0x9f,0x3a,0x95,0xbd,0x19,
0xf8,0xf1,0xbb,0xef,0x32,0xdb,0x27,0xb7,0xb7,0x5a,0x8e,0x44,0x44,0x5f,0xba,0x84,
0x31,0x5c,0x16,0xb3,0xb6,0x6d,0xe3,0x6b,0xd4,0x95,0x6e,0x4,0x6,0xda,0xdb,0xe7,
0x8a,0xca,0xfe,0xeb,0xc9,0x93,0xa4,0xd4,0xa2,0xc3,0x94,0x9c,0x2c,0x3a,0x66,0x66,
0xf7,0xb4,0xe3,0xb6,0xc9,0xd5,0xbe,0xcc,0x97,0xef,0xe5,0x11,0x9b,0x31,0x2f,0xeb,
0xd5,0xab,0x7,0x3f,0xe4,0x86,0x53,0xf3,0xe6,0x14,0xc0,0x2b,0xe9,0x70,0xa3,0x46,
0x99,0xe6,0x14,0xd4,0xdb,0x98,0x67,0xbd,0xfe,0x81,0xf2,0xf1,0xc4,0x89,0x13,0xed,
0xae,0x17,0x30,0xa8,0xcb,0xc6,0x8f,0x27,0xc5,0xd5,0x10,0x15,0xfd,0xf2,0xa5,0xe8,
0x78,0x19,0x5d,0xd6,0x79,0x63,0xd3,0x98,0x79,0xd6,0x50,0xdc,0x52,0xaa,0xd2,0xe3,
0x25,0x4b,0x2c,0x6d,0x45,0x34,0xad,0x99,0x57,0x60,0x43,0x2,0xc6,0x61,0xc6,0xc1,
0x83,0xdc,0x9c,0xa2,0x89,0xf6,0xed,0xe3,0x89,0xca,0x1d,0xa5,0xcb,0xe1,0xc3,0xf6,
0xe,0x4f,0x57,0x14,0xfe,0xf1,0xfc,0x79,0x22,0x6f,0xef,0xcd,0x9b,0x4d,0x26,0xd1,
0x79,0x2d,0x5d,0x6c,0xcc,0xbe,0xbd,0x2e,0xce,0x76,0x76,0x68,0x9c,0xb4,0x48,0x29,
0x51,0xb5,0x2a,0xb9,0x72,0x59,0x38,0xd6,0xa9,0x83,0x31,0x7c,0x9e,0x94,0xba,0x75,
0xf1,0x4,0x9f,0x40,0xa9,0x58,0x31,0xcb,0x7d,0x80,0x79,0x85,0xc6,0x62,0x3f,0x2f,
0xfb,0xf3,0x4f,0xd2,0x73,0x3,0x78,0x76,0xe9,0x62,0xe7,0xeb,0xd5,0x38,0xe2,0x5a,
0x44,0x84,0xe8,0x5c,0x99,0x4d,0x96,0xfb,0x1f,0x4b,0x6b,0xe6,0x53,0x6,0x39,0x6a,
0x63,0x8a,0xae,0xee,0xb8,0x71,0xc8,0xf,0x7b,0xee,0x3a,0x70,0xa0,0xc5,0xcf,0x26,
0xaa,0xb1,0x94,0x25,0x3e,0x97,0x51,0x73,0xaa,0x16,0x11,0x41,0x7,0xe0,0x8e,0x62,
0x27,0x4e,0xa0,0x80,0xfa,0xb,0xb9,0x9f,0x3a,0xa5,0x34,0xe1,0x36,0x26,0x3e,0x7b,
0x36,0x77,0xb1,0x3c,0xc7,0x73,0x8e,0xbc,0x72,0x25,0xb3,0x1e,0xc9,0xc4,0xf1,0x76,
0xae,0xc8,0x7a,0x3d,0xb7,0xb5,0x4e,0xb4,0x4e,0x2c,0x57,0x4e,0x59,0x88,0x10,0x5d,
0xad,0xf2,0xe5,0xf9,0x10,0x6f,0x50,0xe7,0xbb,0xbb,0xd3,0x76,0x7a,0x48,0xd,0xaa,
0x54,0xe1,0x81,0x38,0x8b,0xe9,0x65,0xcb,0xc2,0x89,0x17,0x60,0xb6,0x92,0xe1,0x17,
0x86,0xfb,0x68,0xe6,0x27,0xc4,0x13,0x51,0x1e,0x3f,0xce,0x9c,0xf9,0xf4,0x64,0x42,
0xf,0x25,0xda,0xc7,0xa7,0xf0,0x4f,0xde,0xde,0x27,0xb,0x27,0x26,0x8a,0x8e,0x97,
0x59,0xc9,0x2,0xd1,0xd8,0xe3,0xec,0x41,0x13,0xdd,0x2f,0xba,0xbb,0xab,0x75,0xd5,
0x5e,0x3c,0x72,0xe9,0x52,0x5e,0x8d,0x93,0xb8,0xfe,0xc5,0x17,0xa2,0x73,0x65,0x18,
0x4b,0xe0,0x8e,0x6,0x49,0x49,0xf4,0xb,0x95,0xe0,0x3e,0x17,0x2e,0xf0,0x34,0xd8,
0x62,0xc7,0xa5,0x4b,0x28,0x8d,0x4a,0xe4,0x77,0xf3,0x26,0xf2,0xf2,0x12,0xaa,0x7b,
0xe3,0x6,0xe2,0xd9,0x1b,0x7,0xae,0x5f,0x57,0x5e,0x2a,0x8f,0x4c,0x76,0xf7,0xee,
0x1,0xa6,0x95,0x56,0x21,0xb1,0xb1,0x5c,0x4e,0x17,0x6b,0xd5,0x2e,0x26,0x46,0xaf,
0xf7,0xf0,0x38,0x76,0x2c,0x2e,0x2e,0xad,0x62,0x99,0x1f,0xa0,0x7b,0x34,0x51,0x19,
0x66,0xb7,0xd2,0xc1,0x41,0xb7,0x2c,0xa9,0x91,0xd2,0xcd,0xc1,0x81,0xda,0xea,0x1c,
0xf0,0xa9,0xa3,0x23,0x60,0xfa,0x46,0xe9,0x5a,0xb4,0x28,0x8a,0x2b,0x1e,0xaa,0x73,
0xb1,0x62,0xb8,0x8a,0x28,0xaa,0x55,0xa4,0x8,0xf2,0x73,0x33,0xd4,0x2e,0x56,0x8c,
0x82,0xd0,0x8c,0x8b,0x7f,0xfe,0x39,0x6f,0x44,0x1e,0x6a,0xf1,0xd9,0x67,0xa2,0x77,
0x73,0x46,0x61,0xbe,0x6b,0x90,0xbb,0xa8,0xe3,0xd4,0x90,0xbe,0x7d,0xe5,0xf2,0x7,
0xda,0x92,0x5,0x22,0x88,0xf9,0xd,0xc7,0x78,0xdd,0x34,0xd5,0xe1,0xe2,0xcf,0x3f,
0xd3,0x60,0xb4,0xc0,0x83,0xa1,0x43,0xb3,0xcc,0xb9,0x69,0xd1,0xcc,0x9f,0x58,0xf3,
0xf0,0x4,0x2e,0x19,0x1f,0x9f,0xf2,0xf7,0xf,0xf1,0x90,0x36,0xbd,0xb9,0x58,0x68,
0x26,0x6,0xb2,0x7b,0xf6,0xec,0x3c,0x1e,0xeb,0x50,0x34,0x47,0xe,0xea,0x8d,0x93,
0x74,0xc2,0xc6,0x86,0xb7,0xa2,0x9,0x36,0xe4,0xcc,0x29,0x7a,0xb3,0x32,0xbd,0x18,
0xc4,0xf0,0xcc,0xb8,0x38,0x5c,0xc0,0x2c,0x1c,0x1c,0x33,0x46,0xdf,0x38,0x57,0x94,
0xed,0xf0,0x79,0xf3,0x32,0xeb,0x11,0xa9,0xa5,0x93,0x5,0x62,0x21,0x52,0x26,0x99,
0x4b,0x50,0xa2,0x92,0x86,0xf9,0xfa,0xc2,0x7,0x27,0xe0,0xd9,0xa3,0x87,0x3c,0xd5,
0x25,0x65,0x69,0xe6,0xd9,0xa7,0x7b,0xc0,0x96,0xf3,0xaf,0x5d,0x6b,0xf5,0x45,0x52,
0x2f,0xeb,0xc1,0x83,0x7,0xe7,0x5a,0xd3,0x62,0x68,0xe8,0x99,0xbf,0xff,0x16,0x1d,
0x2f,0xab,0x93,0x5,0x62,0xa1,0x52,0x1e,0xe0,0xfa,0x42,0x2d,0xa6,0x5a,0xf9,0xf9,
0xc1,0xf,0x7e,0xa0,0xd6,0xad,0x45,0xe7,0x92,0x24,0x4d,0xe8,0xe1,0x81,0xc1,0x87,
0xf,0x3,0x4a,0x6b,0xde,0x3c,0x68,0x90,0x3d,0x35,0xd9,0x12,0xb1,0xf9,0xf7,0xdf,
0x45,0xc7,0x92,0xfe,0x9b,0x2c,0x90,0xc,0x22,0xbe,0x73,0x80,0xb3,0xdb,0xa5,0xfa,
0xf5,0xd5,0x95,0x18,0xd,0x8f,0xc9,0x93,0x61,0x84,0xe,0x76,0x15,0x2b,0x8a,0xce,
0x25,0x49,0x69,0xa2,0x3f,0x7c,0x79,0x6a,0x58,0x18,0xac,0xd0,0x1a,0x3,0x27,0x4c,
0xb0,0x5f,0xe9,0x39,0x3c,0xe2,0x54,0x40,0x80,0xe8,0x58,0xd2,0xff,0x4f,0x16,0x48,
0x6,0x93,0xb2,0x20,0x96,0xd1,0x10,0xe8,0x66,0x68,0xd9,0x92,0xe7,0x71,0x6d,0x34,
0x1a,0x32,0x4,0x7d,0x11,0x82,0xdd,0x6,0x83,0xe8,0x7c,0x92,0xf4,0x4e,0x5e,0x1d,
0x61,0x28,0x65,0x39,0x1f,0x25,0x4f,0x98,0x60,0xf7,0x97,0xd7,0xc3,0xb0,0xf6,0xfb,
0xf6,0x89,0x8e,0x25,0xbd,0x1f,0x59,0x20,0x99,0x44,0x6c,0x4c,0x80,0xb3,0xfb,0xb0,
0x1a,0x35,0x14,0x6f,0x2,0xdf,0x18,0x36,0x8c,0x17,0xb3,0x2b,0x3e,0x69,0xd2,0x24,
0xab,0x3e,0x7,0x20,0x59,0x16,0xea,0x41,0x93,0xb1,0xf6,0xf8,0x71,0xf4,0xe4,0x36,
0xbc,0xca,0xd7,0x57,0xdf,0xd8,0xb3,0x7f,0xc4,0xb8,0x3,0x7,0x44,0xe7,0x92,0x3e,
0x8e,0x7c,0x63,0xc9,0xa4,0x62,0x8b,0xfb,0x2f,0x32,0xcc,0xf9,0xe2,0xb,0x3a,0xaa,
0xec,0xa1,0xcf,0x7,0xf,0xc6,0x3a,0x9e,0x8f,0x43,0xed,0xdb,0x67,0xd4,0x85,0xb2,
0xa4,0x8c,0x81,0x7a,0xc0,0x1a,0x45,0x13,0x12,0x78,0x36,0x2d,0xc6,0xb7,0x9b,0x36,
0x29,0xad,0x4d,0xf7,0xd0,0x77,0xee,0x5c,0xbb,0xd0,0xa6,0xa1,0xe1,0x7f,0x45,0x46,
0x8a,0xce,0x27,0xa5,0x2d,0x59,0x20,0x59,0x44,0xca,0x5d,0x5e,0x39,0xe9,0xe8,0xcb,
0x1c,0xdd,0xba,0xa1,0x38,0xb5,0x44,0xd9,0xce,0x9d,0x31,0x4,0x3d,0xf0,0xb8,0x74,
0x69,0xd1,0xf9,0xa4,0x8c,0x89,0x4a,0x50,0x7b,0xde,0x76,0xe6,0xc,0x57,0xe0,0xee,
0x4a,0xf1,0x45,0x8b,0x78,0x5b,0xf6,0x26,0xc9,0xe5,0xd7,0xac,0x71,0x70,0xac,0x57,
0x3f,0x2a,0xfa,0x3f,0x6e,0x8f,0x96,0x32,0x25,0x59,0x20,0x59,0x9c,0xd1,0x18,0x18,
0xe8,0xee,0xee,0xe2,0x82,0x2f,0xd0,0x95,0xc7,0x75,0xee,0xcc,0x3e,0xec,0x8d,0x17,
0xed,0xda,0xa1,0x1d,0x1a,0x61,0x5c,0xde,0xbc,0xa2,0xf3,0x49,0x16,0x62,0x4,0x16,
0xf1,0xb6,0xe7,0xcf,0x61,0x8d,0x3b,0xd4,0x3c,0x20,0x80,0xfc,0xc8,0x4f,0xf5,0x5d,
0xb4,0x48,0x6f,0xef,0xe1,0x19,0xe9,0xb1,0x7f,0xbf,0xe8,0x78,0x92,0x18,0xb2,0x40,
0xa4,0xff,0x62,0x7e,0xc0,0x31,0xfe,0x98,0xe9,0xa9,0x43,0x23,0x4f,0x4f,0xf4,0x43,
0x22,0x22,0x3a,0x77,0x66,0x4f,0xfc,0x9,0xbb,0xfa,0xf5,0x31,0x4,0xf9,0xe1,0x97,
0x2d,0x9b,0xe8,0x9c,0x52,0x3a,0xd1,0xc3,0x17,0x95,0xe2,0xe3,0x69,0x24,0x4e,0xe0,
0x5e,0x50,0x10,0x1a,0xe0,0x1c,0xa6,0x6f,0xdf,0x9e,0x74,0x2f,0xf1,0x52,0x8e,0x92,
0xbb,0x77,0xe7,0x6b,0xe3,0xdd,0xe6,0x30,0x3d,0x7d,0x2a,0x3a,0xa6,0x64,0x19,0x64,
0x81,0x48,0xef,0x24,0x65,0x1a,0xf0,0xc9,0xe4,0x47,0x7e,0xd5,0xaa,0xa1,0x3c,0xba,
0x29,0x36,0x9e,0x9e,0x7c,0x9b,0xdb,0x71,0x72,0xd3,0xa6,0x30,0xa2,0x3e,0x8d,0x29,
0x5a,0x54,0x74,0x4e,0xe9,0x1d,0xed,0x86,0x2d,0x6a,0x3d,0x7a,0x44,0x93,0xe9,0x5b,
0xae,0xb3,0x6b,0x17,0x7f,0xc9,0xdd,0x31,0x6c,0xf3,0x66,0xfd,0xf2,0xc4,0xe2,0xcf,
0x86,0xef,0xd9,0x43,0x8a,0x77,0x9b,0xf3,0xde,0x49,0x49,0xa2,0x63,0x4a,0x96,0x4d,
0x16,0x88,0x94,0x26,0xcc,0x17,0xed,0x95,0xbe,0x28,0xa3,0xcc,0x6f,0xd4,0x88,0x9d,
0x95,0x9e,0xac,0x34,0x6a,0x84,0xfd,0x3c,0xc,0xbf,0x56,0xaf,0x2e,0x8f,0x5c,0x34,
0x76,0x19,0x8b,0x11,0x11,0x1b,0x4b,0xdd,0x31,0xc,0x6b,0x8f,0x1f,0x47,0x17,0x4e,
0xa6,0x9,0x47,0x8e,0x50,0x35,0xa5,0xa7,0x29,0xe9,0xc8,0x91,0x3c,0x55,0x23,0x2e,
0x46,0x5e,0x8a,0x8c,0x94,0x2b,0xef,0x49,0x1f,0x43,0x16,0x88,0x94,0xae,0xcc,0x4b,
0x1,0x3f,0xae,0x71,0x67,0xa0,0xee,0x59,0xc5,0x8a,0xa6,0x40,0x5d,0x25,0x1e,0x69,
0x30,0xd0,0x15,0xfe,0x1e,0x67,0xd,0x6,0xfa,0x1e,0xbb,0xc8,0xc9,0x60,0xe0,0x9,
0xa8,0xc9,0x35,0x3f,0xff,0x5c,0x4e,0xdd,0xf2,0x8e,0xf4,0xd8,0xcb,0x63,0x6e,0xdc,
0xa0,0x39,0x44,0xa8,0x13,0x1a,0xca,0xe3,0xd5,0x86,0x28,0x7b,0xec,0x18,0xff,0xa4,
0xac,0xe3,0xea,0x47,0x8e,0xd8,0xf,0x89,0x58,0x1d,0xb9,0xe6,0xfc,0x79,0x59,0x10,
0x52,0x7a,0x92,0x5,0x22,0x59,0x84,0xbf,0x37,0x6e,0xda,0x58,0x93,0x73,0xe5,0xb2,
0x3e,0x9d,0x53,0x97,0xb0,0xcd,0xd9,0x19,0xd5,0xd4,0x89,0xf8,0xab,0x52,0x25,0xea,
0x43,0x37,0xc9,0xb5,0x44,0x9,0x94,0x45,0x11,0x2c,0x2b,0x5e,0x1c,0x39,0x78,0xf,
0x54,0x27,0x27,0xe4,0xa3,0x42,0x8,0x2d,0x5e,0x3c,0xc3,0xaf,0xa0,0x77,0xa,0x9f,
0xf1,0x4a,0x93,0x9,0xb7,0xc8,0x80,0xd8,0x6b,0xd7,0x68,0x8,0xb7,0x42,0xc8,0xf9,
0xf3,0xfc,0x9c,0x7d,0xc8,0xf1,0xcf,0x3f,0x71,0x5c,0xd9,0xc3,0x5e,0x7f,0xfe,0xa9,
0x6c,0x53,0xbf,0xc0,0x57,0xe7,0xcf,0xbf,0x8c,0xe4,0xf1,0x36,0x8f,0x2f,0x5c,0xf8,
0x24,0xa0,0x69,0xe8,0xf1,0x98,0x27,0x4f,0x44,0xc7,0x97,0xb2,0x36,0x59,0x20,0x52,
0x86,0xf6,0x70,0xfc,0xee,0xe6,0x2e,0x2e,0x9f,0x7e,0xaa,0xfb,0x23,0x79,0x2d,0x1d,
0x75,0x72,0xa2,0x67,0xb8,0x87,0xfb,0xc5,0x8b,0xe3,0x33,0x34,0x54,0xd6,0xe9,0xf5,
0x88,0x46,0x53,0xd8,0xe6,0xc9,0x83,0xbf,0xd4,0xce,0xc8,0x9e,0x27,0xf,0xc,0x64,
0xe0,0xa7,0xf6,0xf6,0xd4,0x7,0x2d,0x50,0x28,0x4f,0x1e,0x84,0xa2,0x3e,0xa,0xe4,
0xc9,0x83,0x68,0x54,0x47,0xde,0x3c,0x79,0x78,0x10,0x16,0xa0,0x78,0x8e,0x1c,0xd4,
0x1b,0xcb,0xa8,0xff,0xb3,0x67,0x3c,0xa,0xf5,0xd0,0x2d,0xf5,0xb5,0x0,0xba,0x86,
0xc6,0x9c,0x9c,0x94,0xc4,0x2a,0x66,0xd3,0xb0,0x67,0xcf,0xe8,0x29,0x9a,0x61,0x40,
0x52,0x12,0x8f,0xc1,0x58,0x76,0x78,0xf8,0x90,0x73,0xe1,0x4b,0xac,0x7c,0xf0,0x80,
0xec,0x79,0x18,0x70,0xff,0x3e,0xc7,0x29,0x5f,0x53,0x83,0x87,0xf,0x75,0x1e,0xa6,
0x96,0x98,0xf2,0xe0,0x41,0xb2,0x8f,0xf5,0xa,0x4,0xde,0xbf,0xef,0xd0,0x8,0x88,
0xdd,0xf5,0xf0,0x21,0x29,0x8d,0x4b,0x5f,0xfe,0xfe,0xc5,0xb,0xd1,0xfb,0x53,0x92,
0xde,0xc7,0xff,0x1,0x7f,0xe9,0x7e,0x2f,0x86,0x76,0x75,0x70,0x0,0x0,0x0,0x25,
0x74,0x45,0x58,0x74,0x64,0x61,0x74,0x65,0x3a,0x63,0x72,0x65,0x61,0x74,0x65,0x0,
0x32,0x30,0x31,0x39,0x2d,0x30,0x31,0x2d,0x31,0x34,0x54,0x32,0x32,0x3a,0x35,0x31,
0x3a,0x30,0x30,0x2b,0x30,0x38,0x3a,0x30,0x30,0x8a,0x74,0x84,0xe6,0x0,0x0,0x0,
0x25,0x74,0x45,0x58,0x74,0x64,0x61,0x74,0x65,0x3a,0x6d,0x6f,0x64,0x69,0x66,0x79,
0x0,0x32,0x30,0x31,0x39,0x2d,0x30,0x31,0x2d,0x31,0x34,0x54,0x32,0x32,0x3a,0x35,
0x31,0x3a,0x30,0x30,0x2b,0x30,0x38,0x3a,0x30,0x30,0xfb,0x29,0x3c,0x5a,0x0,0x0,
0x0,0x4a,0x74,0x45,0x58,0x74,0x73,0x76,0x67,0x3a,0x62,0x61,0x73,0x65,0x2d,0x75,
0x72,0x69,0x0,0x66,0x69,0x6c,0x65,0x3a,0x2f,0x2f,0x2f,0x68,0x6f,0x6d,0x65,0x2f,
0x61,0x64,0x6d,0x69,0x6e,0x2f,0x69,0x63,0x6f,0x6e,0x2d,0x66,0x6f,0x6e,0x74,0x2f,
0x74,0x6d,0x70,0x2f,0x69,0x63,0x6f,0x6e,0x5f,0x67,0x7a,0x70,0x36,0x64,0x32,0x30,
0x6f,0x72,0x72,0x2f,0x77,0x61,0x6e,0x63,0x68,0x65,0x6e,0x67,0x2e,0x73,0x76,0x67,
0x80,0x5f,0x85,0xbe,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// D:/Works/Mine/IVM/Codes/IVM/VehicleManagement/VehicleManage/Resources/Images/printguide.png
0x0,0x0,0xd6,0xcb,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x1,0x87,0x0,0x0,0x1,0x74,0x8,0x6,0x0,0x0,0x0,0xc8,0x18,0xf5,0xc9,
0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,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,0xc4,0x0,0x0,0xe,0xc4,0x1,0x95,0x2b,
0xe,0x1b,0x0,0x0,0xd6,0x60,0x49,0x44,0x41,0x54,0x78,0x5e,0xec,0x7d,0x7,0x80,
0x1d,0x67,0x75,0xf5,0x79,0xef,0xcd,0x6b,0xdb,0x9b,0x56,0xbd,0x59,0xb2,0x24,0x5b,
0xcd,0xbd,0x1b,0x6c,0x30,0x60,0x30,0x60,0x3a,0x3f,0x25,0x40,0x12,0x20,0x10,0x7a,
0x35,0x1d,0x42,0x27,0x40,0x48,0x1,0x2,0x24,0x21,0xb4,0x24,0xb4,0x80,0x8d,0x1d,
0xaa,0x1b,0x18,0x77,0x5b,0xb6,0x65,0xc9,0xb2,0x25,0xab,0xf7,0xb2,0xd2,0xf6,0x7d,
0x65,0x66,0xde,0x7f,0xce,0x9d,0x37,0xab,0x95,0xb4,0xb2,0x25,0xab,0xed,0xae,0xbe,
0xb3,0xfa,0x34,0xf3,0xe6,0xcd,0x9b,0xf9,0xea,0x3d,0xf7,0xde,0xaf,0x25,0x2a,0x4,
0x1c,0x1c,0x4e,0x34,0x54,0xb,0x13,0xd1,0x21,0xe4,0xff,0x61,0xf4,0x11,0x49,0x6,
0x3,0xbf,0xd0,0x67,0x7d,0xe7,0xeb,0x64,0x3f,0xa4,0x2a,0x7,0x5e,0x4c,0xc0,0xaf,
0x9e,0xed,0x45,0x92,0x57,0xf7,0xbf,0x53,0xcf,0xd4,0xdf,0x50,0xe8,0x2e,0xdd,0xbb,
0x3f,0x82,0xfd,0xee,0x13,0x52,0xf0,0xaa,0x67,0x42,0xf4,0x9b,0x2,0xef,0x4b,0x24,
0xa2,0x77,0xa5,0xaa,0x4d,0x2c,0xb9,0x5f,0x53,0x53,0x94,0x75,0x25,0xe4,0x7d,0x4a,
0xa7,0x82,0xfd,0x42,0x17,0xf,0x7c,0xb5,0x83,0xc3,0x71,0x85,0x23,0x7,0x87,0x11,
0x81,0xb8,0x12,0x4a,0x26,0x56,0xc2,0xe8,0x53,0x28,0xb1,0x9d,0xd8,0x5b,0x3d,0x63,
0x79,0x99,0x4c,0x54,0x29,0x63,0x48,0xd5,0x4d,0x4,0xc3,0x48,0xd3,0xe4,0x81,0xd7,
0x44,0x3a,0xfb,0x83,0xb2,0x79,0xf0,0xd9,0xd5,0x57,0x1f,0x14,0x83,0x64,0x75,0x30,
0xe8,0x61,0xc4,0x3e,0x8f,0xe1,0x43,0x95,0x8c,0x20,0xc9,0xf4,0xc4,0x51,0xaf,0xde,
0x91,0x20,0x43,0xa4,0xe2,0x8b,0xfa,0x69,0xf5,0xf7,0x71,0x7c,0x1c,0x1c,0x4e,0x14,
0x1c,0x39,0x38,0x8c,0x8,0xf8,0x14,0x96,0x49,0xd6,0x44,0x93,0x8d,0x14,0xa6,0xa1,
0x9,0x54,0x5e,0xe3,0x5,0x55,0xd1,0x44,0x2a,0x12,0xa0,0xd2,0xb2,0x43,0x93,0x9c,
0xb4,0x20,0x7c,0x1f,0xa9,0x64,0xca,0x24,0xe9,0x40,0x22,0x65,0xe2,0xd6,0xf7,0xcb,
0x28,0x95,0x4a,0x51,0x20,0x13,0x84,0x61,0x88,0x72,0xb9,0xcc,0x47,0xf2,0x99,0x41,
0x80,0xfe,0xc0,0xb7,0x67,0x57,0x2a,0x14,0xd4,0xd5,0xaa,0xbf,0x4f,0xb,0x18,0x22,
0x95,0xe3,0xd3,0x24,0xdf,0x91,0x4c,0x26,0x19,0x12,0xc8,0xf2,0xaa,0xe7,0x79,0x48,
0x29,0xa4,0x52,0x66,0x1d,0x34,0xf2,0xfb,0x74,0x26,0x8d,0x4c,0x3a,0xc3,0x6b,0xb4,
0x37,0x78,0x4d,0x69,0x31,0x6e,0xe2,0xbb,0xa2,0x23,0x43,0x22,0x7a,0xa7,0xd2,0x68,
0x4,0x17,0xc8,0x66,0x89,0xd2,0x64,0x56,0x6,0x6f,0xac,0xf0,0xa8,0x6b,0x4c,0x95,
0x83,0xc3,0x9,0x85,0x23,0x7,0x87,0x11,0x81,0x12,0x85,0x7a,0x32,0xe5,0x21,0xa0,
0x8a,0x5d,0xe,0x3,0x93,0xac,0x5e,0x20,0x42,0x48,0xa0,0x50,0xf6,0xf9,0x99,0xd7,
0x29,0xd0,0xb,0x14,0xb6,0xbd,0x14,0xf0,0x3d,0x3d,0x3d,0xd8,0xdd,0xd1,0x61,0x82,
0x7f,0xa0,0x50,0xc0,0x36,0x92,0x41,0x40,0xe1,0x2f,0x48,0x90,0x4b,0x70,0xfb,0xd5,
0x9a,0x2d,0xa1,0xab,0x6b,0xaa,0xea,0x41,0x55,0xec,0x8a,0x2c,0x74,0x4d,0x90,0x56,
0x3f,0x84,0x13,0xc,0xfa,0x69,0xec,0xa9,0xaa,0x90,0x60,0x24,0xd1,0x4d,0xe8,0x7,
0x25,0x23,0x13,0x3d,0x4b,0xc4,0xa3,0x67,0xd4,0xd8,0x8b,0xf8,0x6c,0xbe,0x5f,0xcf,
0xad,0xad,0xa9,0x45,0x5d,0x3a,0x85,0xda,0xda,0x1a,0xd4,0xe6,0x6b,0xd1,0x54,0x5f,
0x8f,0xba,0x9a,0x3a,0x64,0xc8,0x10,0xf9,0xb4,0x87,0xc,0x9,0xa4,0xc2,0xdf,0x78,
0x7c,0x6b,0x32,0x9d,0x44,0x39,0xc9,0x58,0x91,0x2c,0x3c,0xda,0x25,0x29,0xbd,0x83,
0x4f,0x1b,0xce,0xa5,0xe5,0xe0,0x70,0x3c,0xe1,0xc8,0xc1,0x61,0x44,0x40,0x82,0x96,
0x3a,0x3d,0x76,0xf7,0xf5,0x62,0x6b,0xe7,0x2e,0xec,0xe9,0xed,0x41,0xc7,0x40,0x9,
0x5,0x4a,0xe8,0x12,0xc9,0xa2,0x24,0x62,0x20,0x81,0x94,0x29,0x80,0x93,0x89,0xb4,
0x89,0x4e,0x55,0x5c,0x1d,0x13,0x14,0xd0,0x89,0x30,0xab,0xc7,0x98,0x0,0x17,0x54,
0xad,0x2b,0x21,0x9,0x47,0xdf,0x49,0x1b,0xe7,0x67,0x7d,0x15,0x54,0x22,0xb,0xc3,
0x24,0x7c,0x15,0xf6,0x8c,0xfd,0x5a,0x41,0xdc,0x1f,0x20,0xe8,0xf9,0x82,0xac,0x98,
0x44,0xa5,0x1c,0xfd,0x54,0xff,0xe9,0x33,0x4f,0xb,0x14,0xec,0xb2,0x2a,0xf4,0x24,
0x59,0x24,0x7a,0x1f,0xa9,0xc9,0x2c,0x15,0x8f,0xdf,0xd9,0xb3,0x79,0x7f,0x32,0x11,
0x80,0x5c,0x80,0x34,0xad,0x9c,0x1c,0x89,0x50,0xa9,0xa8,0xc9,0x67,0xd0,0x5a,0x9f,
0x43,0x53,0x6d,0x3d,0x26,0x36,0xb7,0xa2,0x26,0x99,0x8e,0x48,0xa3,0xfa,0x4e,0x7,
0x87,0x13,0x5,0x47,0xe,0xe,0x87,0xd,0xca,0xbf,0x48,0x72,0x4a,0xea,0xc9,0x8f,
0xae,0xbe,0x81,0xea,0x25,0x21,0xf0,0x29,0x14,0x25,0x94,0x29,0x30,0x13,0x45,0x6a,
0xc9,0x3c,0xfa,0x95,0x0,0x15,0x6a,0xcc,0xea,0x1a,0x28,0x94,0x8a,0xe8,0x2f,0x96,
0xd0,0x43,0x8b,0x60,0xf,0x9,0xa0,0xa3,0xab,0x1b,0x5b,0xa9,0xf9,0xf7,0xf5,0xf7,
0x9b,0xf6,0x2d,0xb7,0xcd,0xc9,0x6,0xa5,0x5b,0x21,0x97,0xcb,0xa1,0xb1,0xb1,0x11,
0x53,0xb2,0x9,0xb4,0xd6,0x35,0xa0,0x3e,0x9d,0x41,0x7d,0x26,0x8b,0xda,0x6c,0x8e,
0x16,0x47,0xd4,0x63,0x52,0x9,0x42,0xe6,0x2f,0x49,0x8e,0xf9,0x9c,0x60,0x5e,0x89,
0xf4,0xf4,0x9f,0xac,0x16,0x2b,0x96,0x84,0x8,0x4a,0x67,0xb2,0x96,0x48,0x32,0x64,
0x3a,0xdd,0x63,0xfc,0xe5,0xe0,0x70,0x88,0x70,0xe4,0xe0,0x70,0xd8,0xf0,0x4d,0x8,
0x51,0x13,0x57,0xa0,0x10,0xb2,0x63,0x48,0x1,0x14,0x44,0xfe,0x7f,0x69,0xdd,0x7e,
0x55,0x83,0xee,0xa2,0xe6,0xac,0x11,0x3e,0xdb,0x76,0xed,0xc2,0xe6,0x6d,0xdb,0xb0,
0x6d,0xe7,0x76,0xf4,0xe6,0x78,0x2d,0xac,0x30,0x24,0xe0,0x65,0x6a,0x28,0xd4,0xa4,
0x91,0x47,0xd6,0x83,0x70,0xb2,0x6a,0xcd,0x6a,0x8a,0xa,0xe9,0x74,0x1a,0x7e,0xd0,
0x6f,0xd7,0xb2,0xa9,0x34,0x42,0xdf,0x87,0x5f,0x2a,0xa3,0x3d,0x9f,0xc6,0xf8,0xd6,
0x71,0x98,0x3d,0x7d,0x6,0xf2,0xe9,0xac,0x8d,0x91,0x6a,0x60,0x3e,0x2b,0xb7,0xcc,
0xd,0x55,0x25,0xed,0x90,0x24,0x52,0x49,0x19,0x4d,0xf0,0x52,0x14,0xf4,0x7d,0x64,
0x6f,0x39,0x38,0x1c,0x1a,0x1c,0x39,0x38,0x1c,0x32,0xf6,0x56,0x15,0x1d,0x19,0xec,
0x40,0x62,0xe0,0xb1,0xcc,0x50,0xa0,0x16,0x3b,0x40,0x6d,0x76,0x47,0xe7,0x1e,0x74,
0x74,0x77,0xa1,0xb3,0xa7,0x1b,0x1d,0x3e,0xaf,0x17,0xa,0x28,0x5,0x7e,0xe4,0x9e,
0xe1,0xbf,0xa2,0x54,0x58,0xde,0xaf,0x4e,0x59,0x23,0x15,0xfd,0xe9,0x39,0xba,0x6c,
0xc7,0x93,0x53,0x88,0xc5,0xf9,0x1b,0xe7,0x81,0x59,0x2,0xb2,0xbe,0x98,0x6f,0xa1,
0x91,0x40,0xc9,0x84,0x7c,0xa2,0x14,0xa0,0x2e,0x9b,0x47,0xd,0x2d,0x8a,0xd6,0x7c,
0x12,0x2d,0x8d,0x4d,0x68,0x63,0x90,0x6b,0x4a,0x2e,0xa9,0x3c,0xef,0xf5,0xac,0x70,
0x48,0x14,0xb4,0x32,0xe2,0xfc,0x94,0x95,0xe1,0xe0,0x70,0xa8,0x70,0xe4,0xe0,0x70,
0xc8,0x88,0xab,0x8a,0x4f,0xad,0x9f,0xff,0xcc,0x45,0xd4,0xdb,0x5f,0x40,0x5f,0xb1,
0x88,0x2d,0x9d,0x5d,0x58,0xd9,0xb5,0x1b,0x5d,0x3d,0x3d,0x48,0xa6,0x3d,0x73,0x23,
0x25,0xbd,0x14,0x7f,0x53,0x1d,0x77,0x33,0xa4,0x96,0x25,0xc2,0xa4,0x38,0x62,0x10,
0x22,0x17,0x75,0x44,0x3b,0xc5,0x76,0x2f,0xd2,0xcc,0xdc,0x68,0x54,0xd6,0x5e,0x94,
0xbc,0x78,0xde,0x46,0x44,0xc8,0x22,0xd5,0x14,0xed,0x32,0x23,0x5a,0x5d,0x25,0x31,
0xb7,0x36,0x35,0x63,0xce,0xb8,0xf1,0x18,0x5f,0x57,0x87,0x86,0x5c,0x16,0x59,0xde,
0x91,0xe6,0x73,0x44,0x10,0x49,0xcf,0x65,0xb0,0xc3,0xa1,0xc3,0x91,0x83,0xc3,0x21,
0x23,0xae,0x2a,0x1b,0x68,0x11,0xac,0xdc,0xba,0x5,0xdb,0xf7,0x74,0xa2,0xd7,0xf7,
0x51,0xa0,0xa6,0x1a,0xda,0x50,0xd2,0x94,0x8d,0xba,0x9,0x69,0x25,0xd8,0x10,0x53,
0x22,0x4c,0x56,0x5d,0x45,0xd5,0x5a,0x66,0xe2,0xa9,0x4a,0x18,0x21,0x2f,0x9a,0x27,
0x24,0x41,0xad,0x98,0x84,0x21,0x61,0xe7,0x10,0x41,0xf3,0x3b,0x62,0xbe,0xac,0x66,
0x21,0x9,0xc0,0x37,0x97,0x9d,0x48,0xd9,0xd7,0x97,0xa9,0x24,0x32,0xe5,0x2c,0x6f,
0xe6,0x7d,0xb4,0x2e,0x34,0xe2,0xcb,0x4b,0xa5,0x50,0xe0,0x5f,0x86,0x46,0x42,0x6d,
0x85,0x56,0x45,0x3a,0x83,0x69,0xad,0x6d,0x98,0x3b,0x6d,0x3a,0x1a,0x52,0x2e,0x7f,
0x1d,0xe,0x1d,0x8e,0x1c,0x4e,0x52,0x68,0xac,0xbf,0xa4,0x8f,0xc4,0x45,0xe4,0x75,
0xa0,0x4,0xf2,0xe5,0xf3,0x56,0xe7,0x72,0xca,0xc6,0xde,0xfb,0xbc,0x14,0xf0,0x73,
0x7f,0xb9,0x8c,0x6d,0xdd,0x5d,0xd8,0x46,0x52,0xd8,0x4e,0xb,0x61,0x77,0xb1,0x8c,
0x30,0xe5,0x5c,0x14,0xa3,0x5,0x6a,0xe2,0x89,0x30,0x40,0x7b,0x5d,0x2d,0xa6,0xb5,
0xb5,0x61,0x52,0x6d,0xd,0xda,0xf2,0xb5,0xc8,0x79,0x1e,0x82,0x54,0x99,0xa4,0xc3,
0x12,0x27,0xb9,0xeb,0x4f,0x44,0x53,0x4e,0x55,0x22,0xf7,0x95,0xfa,0x82,0xec,0x58,
0xad,0x23,0x55,0xf7,0x94,0xc3,0xc9,0x1,0x47,0xe,0x27,0x2b,0x82,0x80,0xa5,0xcf,
0xe3,0x90,0x46,0xef,0x53,0x7b,0xd7,0x70,0x52,0x3f,0x99,0xc0,0x0,0xab,0xc5,0xc6,
0x6d,0x5b,0x71,0xef,0xda,0xb5,0xe8,0x2d,0xc,0x20,0x57,0x5b,0x87,0x7e,0x6a,0xa6,
0x15,0x5a,0x6,0x29,0x6a,0xfe,0x29,0x89,0x14,0x9,0x1d,0x27,0x30,0x46,0x34,0x54,
0x3e,0x2a,0x27,0xb9,0xed,0x42,0xf5,0x5f,0xd0,0xd2,0x4b,0x87,0x65,0xa0,0x54,0xc0,
0xa4,0xf6,0xf1,0xb8,0x68,0xda,0x6c,0x34,0xd4,0xd6,0xa2,0x96,0x56,0x45,0xd2,0x6,
0x4,0xd0,0xa,0xac,0xe,0x6b,0xd2,0xd0,0xdd,0x8,0xba,0x4e,0x65,0xc0,0x95,0xf5,
0x49,0x5,0x47,0xe,0x27,0x29,0xc2,0x72,0x91,0xd6,0x41,0xd2,0x2c,0x80,0x82,0x88,
0x22,0x95,0xc2,0xae,0xee,0x5e,0x6c,0xde,0xb1,0x3,0xdb,0xbb,0x3b,0xd1,0x31,0xd0,
0x8f,0x22,0xad,0x86,0x62,0x3a,0x27,0x1f,0x7,0x7f,0x41,0xed,0x52,0x64,0x60,0x3f,
0x8e,0x84,0x8e,0xc3,0xe8,0x81,0xc4,0xbb,0xa6,0x8,0xca,0x22,0x40,0xe8,0xdb,0xbc,
0xc,0x95,0x60,0xba,0x1c,0xa0,0x3e,0x97,0x46,0x6b,0x3e,0x87,0x69,0xe3,0x5b,0x31,
0xb1,0xb5,0x15,0xb5,0x5e,0x96,0xf7,0x45,0xb3,0xb4,0x2b,0x15,0x9f,0x42,0x22,0x44,
0x2a,0x99,0x75,0x65,0x7e,0x92,0xc1,0x91,0xc3,0x49,0x8a,0x3e,0x3f,0xa0,0xf0,0xaf,
0x60,0xcf,0x40,0x11,0x3b,0x7a,0x7b,0xf1,0xf8,0x86,0xd,0xe8,0xe6,0x31,0x91,0xf6,
0x50,0xa6,0xd8,0x8,0x78,0x94,0x6b,0x29,0x15,0x46,0xfd,0x3,0x29,0xa,0x8,0x9,
0x9,0xb9,0x20,0x2,0x5e,0xd7,0x77,0xe,0xa3,0x8,0x6c,0xe5,0x91,0xab,0x28,0xfa,
0x68,0xa5,0x47,0xd2,0xef,0xcb,0xf8,0x46,0x2,0x69,0xcd,0xf6,0xa6,0x55,0x41,0x75,
0x1,0x33,0xdb,0x27,0x62,0x72,0x7b,0x3b,0x9a,0x72,0x59,0x34,0xe7,0xb3,0xf6,0x5d,
0x2e,0x99,0x76,0xe4,0x70,0x92,0xc1,0x91,0xc3,0x49,0x8a,0x25,0xeb,0x36,0x92,0x10,
0x36,0xa1,0x33,0x8,0x31,0x90,0xa2,0x48,0xf0,0xd2,0x14,0xc,0x3e,0x2,0x9f,0x24,
0xc0,0x73,0x8d,0x8d,0x97,0xc1,0xa0,0xce,0x50,0xcd,0x63,0x90,0xee,0xa9,0x11,0xf3,
0x48,0x68,0x74,0x8c,0xc4,0xc9,0xd0,0xf1,0x46,0xe,0x23,0x1d,0x9a,0x97,0x82,0x84,
0xec,0x87,0x24,0x9,0x5f,0xd,0x3f,0x22,0x8a,0xb2,0xa7,0x6b,0x2a,0x56,0x75,0x80,
0x93,0x3e,0x78,0xad,0x90,0xf4,0x91,0xa1,0x58,0xa8,0xa7,0x32,0x30,0xb5,0xa1,0x1,
0xb,0x67,0xce,0xc2,0x84,0xc6,0x7a,0x47,0xe,0x27,0x19,0x1c,0x39,0x8c,0x56,0xa8,
0xd4,0xd8,0x56,0x75,0x50,0x17,0xb2,0x8e,0xd2,0xfa,0xcc,0x6d,0xc0,0x10,0xb0,0xb1,
0x4b,0xba,0xeb,0x1b,0xb6,0x71,0xf4,0x55,0x2,0xac,0xed,0xd8,0x8d,0xd,0xbb,0xf7,
0x58,0xa7,0x72,0x1f,0xaf,0xc7,0xfe,0x68,0xd7,0xe8,0x1d,0x86,0x43,0x5c,0x37,0x34,
0x39,0x71,0x52,0x4d,0x6,0x13,0x5a,0x5a,0x30,0xad,0xb5,0x15,0xe3,0x6a,0xf3,0xc8,
0xf3,0xbb,0x4a,0x22,0xc5,0x1a,0x97,0xb2,0x99,0xd7,0x69,0xb1,0x8a,0x2a,0x9a,0xea,
0xdf,0x49,0x3a,0x89,0x71,0xac,0xc1,0x91,0xc3,0x28,0x45,0xb5,0x19,0x5a,0xb0,0x49,
0x7,0x6,0x36,0x58,0x6b,0x97,0x9,0x73,0x19,0x69,0x54,0xbc,0x96,0xa8,0x58,0xb5,
0x79,0xb,0xd6,0x6e,0xda,0x84,0x5e,0x9e,0x27,0xb2,0x35,0x28,0x4,0x3e,0x92,0x29,
0xcd,0x41,0x88,0x7e,0xe7,0xc8,0xc1,0xe1,0x60,0x10,0x31,0xd8,0xea,0xb3,0x5a,0xfe,
0xc4,0x2f,0xd3,0xa2,0x8,0x31,0xae,0xae,0x16,0xb,0xe6,0xcc,0xc6,0x94,0x5c,0x3d,
0x6a,0x35,0x84,0xb9,0xda,0x41,0x11,0x48,0x4d,0x61,0x9d,0xca,0x24,0xdc,0x48,0xb6,
0xb1,0x0,0x47,0xe,0xa3,0x14,0xea,0x5c,0x8c,0xc9,0x21,0xf0,0xa3,0xc9,0x51,0xd2,
0xe4,0x8a,0x21,0x1b,0xb1,0x97,0xc2,0xc6,0x8e,0xe,0x3c,0xbe,0x79,0x13,0x76,0xf6,
0xf5,0xa0,0x53,0x2e,0x4,0x6a,0x73,0x1a,0xa0,0x68,0x3c,0x42,0x55,0x2f,0xad,0x7,
0x38,0x38,0x1c,0x22,0xa,0x24,0x0,0x59,0x8,0x49,0xd6,0xaf,0x34,0xeb,0x50,0x22,
0x8,0xd1,0x92,0x4d,0x61,0x4a,0x4b,0x33,0x66,0x4f,0x9e,0x8a,0xf1,0xf9,0x5a,0x78,
0xac,0x5c,0xb6,0xde,0x53,0x26,0x52,0x3c,0xdc,0xe2,0x81,0xa3,0x1b,0x8e,0x1c,0x46,
0x29,0x54,0x68,0xb2,0x1e,0x14,0xa,0x1a,0x9a,0x48,0xed,0x7f,0x77,0x6f,0x11,0x3b,
0xbb,0x7a,0xb1,0x6a,0xfd,0x7a,0xec,0x29,0x16,0xe0,0xb3,0x71,0x6a,0x58,0x6a,0x45,
0x4b,0x81,0x12,0xe6,0x62,0xaa,0x1a,0x9,0x69,0xad,0x83,0xe4,0xe0,0x70,0x88,0xf0,
0xab,0xb3,0x18,0xe3,0xbe,0xa,0x53,0x4a,0x12,0x3e,0xd4,0x3b,0x95,0x2e,0x94,0x31,
0x77,0xc2,0x64,0x9c,0xd2,0x36,0xe,0xed,0x4d,0x4d,0xa8,0x49,0x47,0xae,0xa8,0x78,
0x45,0x5c,0x87,0xd1,0x9,0x47,0xe,0xa3,0x14,0x2a,0x36,0xcd,0x94,0x25,0x2d,0x60,
0x77,0xa9,0x17,0x2b,0x56,0xaf,0xc2,0xc6,0x9d,0xfd,0xb4,0x1c,0x34,0xb1,0x49,0xa6,
0xbe,0x87,0x12,0x1b,0x28,0xef,0xa2,0x99,0x5f,0x32,0x52,0xd0,0x4c,0x64,0x2d,0xc9,
0xa0,0xd9,0xb7,0xc9,0x20,0x17,0x3d,0xc8,0xc1,0xe1,0x10,0x10,0x6f,0x75,0x5a,0xa5,
0x8,0x6,0xa,0x7e,0x59,0xa,0x54,0x4c,0x12,0xac,0x6f,0x21,0xeb,0x56,0x2a,0x9d,
0x42,0xbe,0x54,0xc0,0x55,0xa7,0xce,0x45,0x7b,0x7b,0xbb,0x11,0x83,0x23,0x87,0xd1,
0xb,0x47,0xe,0x23,0xd,0x2c,0x8e,0xb8,0x40,0xe2,0x5d,0xc1,0x74,0xcd,0x96,0x50,
0xa8,0xce,0x6a,0x2e,0x31,0x14,0x28,0xe5,0xb7,0x74,0xec,0xc6,0xe3,0x3b,0x77,0x62,
0x53,0x57,0x17,0xba,0x69,0xee,0x7b,0xa9,0xb4,0xd,0x4b,0x74,0x70,0x38,0x51,0x50,
0x7d,0xf5,0xfd,0x12,0xda,0x72,0x39,0xcc,0x6c,0x6a,0xc6,0x69,0x93,0x27,0xa3,0x29,
0x1b,0x29,0x22,0x9a,0x5b,0xa1,0xe5,0x9d,0x6,0xf9,0xc2,0xf1,0xc6,0x88,0x86,0x23,
0x87,0x11,0x6,0x6d,0x97,0x29,0xc8,0x11,0x44,0xbd,0x2b,0x6a,0x3f,0x81,0x16,0xbd,
0x4e,0xd0,0x52,0x48,0xa2,0x87,0xe7,0x1d,0x3,0x3,0x58,0xb2,0x62,0x39,0xf6,0xf4,
0xf4,0xa2,0x92,0xc9,0xd0,0x7a,0x48,0xa1,0x6c,0x44,0x52,0x19,0x5c,0xd3,0xc8,0xc1,
0xe1,0x44,0xc0,0xb6,0x77,0x65,0x3d,0xd5,0x9c,0x89,0x5c,0x18,0xd,0x89,0x9d,0x3f,
0x77,0x2e,0x66,0x8c,0x6b,0x42,0x3e,0x93,0x45,0x9e,0xf5,0x34,0x1a,0x4a,0xcb,0xff,
0x52,0xae,0x4f,0x62,0x24,0xc3,0x91,0xc3,0x8,0x43,0xc9,0x68,0x80,0x1a,0x98,0x7c,
0xb6,0x6c,0x48,0x32,0xcb,0x4b,0x25,0x1f,0x61,0xda,0xc3,0x9a,0x9d,0xbb,0xb0,0x7c,
0xfd,0x6,0x74,0x97,0xca,0xe8,0x37,0x87,0x92,0xa0,0xb1,0xe9,0xd1,0x0,0x56,0xcd,
0x44,0xd8,0xab,0x96,0x39,0x38,0x1c,0x7f,0x44,0xd2,0x44,0x4a,0x8d,0x4e,0x58,0x97,
0x75,0x81,0x96,0x6e,0x7d,0xa5,0x88,0x49,0x2d,0xad,0x58,0x34,0xeb,0x54,0xb4,0x64,
0xf3,0xd0,0xf4,0x8a,0x64,0x22,0x1a,0xdd,0xa4,0x3a,0xee,0x3a,0xaf,0x47,0x1e,0x1c,
0x39,0x8c,0x30,0xd8,0x46,0xf8,0x94,0xef,0xda,0x2c,0x47,0x7b,0x29,0x97,0x2b,0x1,
0x56,0xef,0xee,0xc1,0xaa,0x8d,0x1b,0x69,0x31,0xf4,0x21,0xd4,0xe,0x60,0xbc,0xc1,
0xa7,0xd6,0xa5,0x8e,0x41,0x35,0x29,0xdb,0xcc,0x9e,0x41,0x9e,0x27,0xb9,0xa2,0x1c,
0x1c,0x4e,0x14,0xa2,0x41,0xf,0x91,0x6b,0x74,0xb0,0x2e,0xf2,0x90,0xd6,0x28,0xa6,
0x72,0x19,0x35,0x89,0x14,0x4e,0x9d,0x34,0x19,0xd3,0x26,0x4e,0xc4,0xd4,0x7c,0xda,
0xbe,0xb6,0xa1,0xb2,0xae,0xde,0x8e,0x38,0x38,0x72,0x18,0x69,0x8,0xb4,0x40,0x1a,
0x30,0x50,0xf1,0xb1,0xbd,0x7b,0x37,0xee,0x7d,0x60,0x9,0x36,0x65,0x9a,0x48,0x6,
0xb4,0x2a,0x82,0x12,0x72,0x5e,0xa,0x9e,0x26,0xb8,0x41,0x4b,0x35,0x47,0x56,0x46,
0xd2,0x8e,0xf1,0xf2,0xd7,0x4e,0x3,0x73,0x38,0x71,0x50,0x2d,0xc,0x53,0xd1,0x38,
0xe9,0xa8,0x76,0x5a,0xd,0x65,0xf0,0x6c,0xd1,0xbf,0x2c,0x3f,0x7b,0x3e,0xef,0x29,
0xfb,0x38,0xaf,0x39,0x8f,0x5,0xb,0x16,0x20,0x93,0xc9,0x38,0xcb,0x61,0x4,0xc2,
0x91,0xc3,0x9,0x82,0x65,0x7b,0x35,0xeb,0x2b,0xa1,0x6f,0xde,0x20,0xed,0xda,0xd5,
0x97,0xcc,0x60,0x4b,0x57,0x17,0x1e,0x5c,0xb7,0x16,0x5b,0xfa,0xfb,0x50,0x64,0xa3,
0xa1,0x11,0x6e,0xf7,0x39,0x38,0x8c,0x25,0xd0,0x36,0x46,0xbd,0x97,0xc6,0xb4,0xc6,
0x46,0x9c,0x39,0x63,0x26,0x9a,0xd2,0x69,0x9b,0x2b,0x61,0x56,0x84,0xf1,0x8a,0x54,
0x1e,0xb9,0x56,0xed,0xd4,0xe1,0x38,0xc3,0x91,0xc3,0x89,0x82,0xd4,0x7c,0x6,0xcd,
0x2e,0x55,0x3f,0x43,0x91,0x1f,0xfa,0xb,0x5,0xdc,0xb3,0x8a,0xa4,0xb0,0x73,0x7,
0xca,0x5e,0x6,0x5,0xde,0x92,0xc8,0x64,0xe1,0xd9,0xb2,0x4,0xe,0xe,0x63,0xb,
0xe5,0x52,0x19,0xb9,0x54,0xa,0xa9,0x72,0xd9,0x96,0xc,0x9f,0x37,0xeb,0x14,0xcc,
0x6d,0x6f,0x45,0x3e,0x4d,0x4b,0x82,0x6d,0x42,0x1b,0x47,0xa9,0xcf,0x22,0x22,0xb,
0xc7,0xe,0xc7,0x1b,0x8e,0x1c,0x4e,0x10,0x42,0xb9,0x8f,0x98,0xf3,0xa5,0x64,0x2,
0x9d,0x34,0xb7,0x97,0x3e,0xbe,0x12,0x9b,0x77,0xed,0x44,0x5f,0x22,0x1d,0x99,0xe3,
0x6c,0xc,0x5a,0x29,0x49,0xd0,0x26,0xfe,0xe,0xe,0x63,0xd,0xc9,0x8a,0x66,0x52,
0x87,0x55,0xb9,0xcf,0x23,0x45,0xd1,0xb8,0x54,0x80,0xd9,0xd3,0x67,0x60,0xe6,0xa4,
0x49,0xb4,0x98,0x13,0xc8,0xb1,0xea,0xab,0xfe,0x6b,0x4,0x94,0xc3,0xf1,0x85,0x23,
0x87,0x13,0x4,0x6d,0xc8,0xbf,0x73,0x60,0x0,0x6b,0xb7,0x6f,0xc7,0x63,0x9b,0xb7,
0xa0,0x9b,0x4,0x11,0x78,0x29,0x24,0x35,0x14,0x55,0xd,0x82,0xf7,0x44,0x46,0xb5,
0x9a,0x8d,0x6b,0x18,0xe,0x63,0xf,0x83,0x82,0x87,0xec,0xa0,0x73,0x9b,0xbd,0xef,
0x97,0x90,0xe,0x42,0x4c,0x6c,0x68,0xc0,0xe2,0x19,0x33,0x31,0xa9,0xa9,0x41,0xbd,
0x6b,0x48,0x6b,0xed,0xe,0x87,0xe3,0xa,0x47,0xe,0x47,0x1b,0x71,0x6e,0x5a,0x5d,
0xe6,0x87,0xe8,0xdf,0x3e,0x8,0x98,0xe5,0x5b,0xbb,0x3a,0xf1,0xdb,0xfb,0xef,0x83,
0x4f,0x13,0xba,0x40,0xe1,0x1f,0x66,0xb2,0x28,0xf1,0x46,0xad,0x76,0x69,0x5a,0x54,
0xd4,0x5c,0xec,0xfe,0xa,0xa2,0x51,0x1d,0xe,0xe,0x63,0x9,0x15,0x2d,0xff,0x5e,
0x55,0x83,0x22,0xc7,0x69,0x2,0xc5,0x54,0x1a,0x1e,0xdb,0x40,0xa6,0x50,0x44,0x6d,
0xa9,0x84,0x69,0x2d,0xad,0xb8,0x60,0xc1,0x3c,0xd4,0x67,0xbd,0xa8,0x49,0xd,0x81,
0x2c,0x8e,0xbd,0x6d,0xab,0x3a,0x27,0xc8,0xe1,0xa8,0xc1,0x91,0xc3,0xd1,0x86,0x6a,
0x79,0x54,0xdf,0x59,0x73,0xf5,0x41,0xee,0xa3,0xd0,0x5c,0x48,0xb2,0x0,0xb6,0xf4,
0xf4,0xe1,0xbe,0xb5,0x8f,0x63,0x6b,0x6f,0x1f,0x82,0x64,0x86,0xdf,0x3b,0x38,0x38,
0x1c,0xc,0x12,0x4f,0xb5,0xc9,0x10,0x33,0xdb,0x5a,0xb1,0x68,0xfa,0xc,0x34,0xa5,
0x3d,0xa4,0x2a,0xd1,0x42,0x93,0x5e,0xca,0x33,0x35,0x2a,0x22,0x86,0x88,0x1a,0x1c,
0x41,0x1c,0x3d,0x38,0x72,0x38,0xca,0x88,0x33,0x53,0xdd,0x4,0x96,0xb3,0xac,0xad,
0xa5,0xa0,0x82,0x9e,0x30,0xc0,0xa3,0xdb,0xb6,0xe2,0x91,0xb5,0xeb,0x10,0x26,0x52,
0x28,0xfb,0x21,0x82,0xac,0xb3,0x8,0x1c,0x1c,0x9e,0xc,0xc9,0xa4,0x8f,0x44,0xa9,
0x80,0xb6,0x4c,0xe,0xe7,0xce,0x3b,0xd,0xe3,0x1a,0xea,0x91,0x4d,0xa6,0xa0,0xcd,
0x4c,0xd5,0x4f,0xa1,0x36,0x16,0x2f,0x35,0xe3,0x1c,0xb0,0x47,0xf,0x8e,0x1c,0x8e,
0x32,0xa,0x7e,0x11,0xda,0x7e,0x3f,0x9d,0xf4,0x50,0x24,0x29,0xf8,0x1e,0xb0,0x61,
0x47,0x37,0xee,0x5f,0xb9,0xa,0x1d,0x89,0x32,0xca,0x29,0x2d,0x97,0x9d,0x80,0x17,
0x26,0x78,0xee,0xb2,0xde,0xc1,0xe1,0xc9,0x10,0x88,0x1c,0xe0,0xdb,0x32,0xf3,0x39,
0x1a,0xe3,0x13,0x1a,0x9b,0x71,0xe6,0xdc,0xd3,0xd0,0x94,0x49,0xdb,0x9c,0x9f,0xac,
0x56,0x8c,0xd1,0x0,0xe,0x2d,0xfe,0xe7,0xe8,0xe1,0xa8,0xc1,0x91,0xc3,0x51,0x46,
0x29,0x2c,0x21,0x49,0xc1,0x5f,0x49,0xa6,0xb1,0xa5,0xaf,0x17,0xf,0x6d,0xda,0x80,
0xd,0x3b,0xf7,0x20,0x60,0xb5,0xd5,0xb0,0x55,0x69,0x38,0x61,0x75,0xf4,0x51,0x2a,
0x5e,0x3f,0xdb,0xc1,0xc1,0xe1,0x9,0x40,0x56,0x60,0x9b,0xd1,0xca,0x1,0xda,0xce,
0x34,0x59,0xe,0x51,0x97,0xcb,0xe0,0xb4,0x19,0xd3,0x70,0x6a,0xdb,0x78,0xb4,0x7a,
0x49,0xa3,0x4,0xcd,0xcc,0x4e,0x38,0x72,0x38,0x6a,0x70,0xe4,0x70,0x4,0xb0,0x45,
0x2,0xf8,0x4f,0x22,0x3e,0x5a,0x30,0x40,0x1d,0x6b,0x3e,0xca,0xac,0xcb,0x5b,0x3b,
0xbb,0x71,0xeb,0xb2,0xa5,0xe8,0xcc,0x24,0x51,0x4a,0x66,0x90,0xa,0x92,0xc8,0xb1,
0x62,0xab,0x13,0xad,0x40,0x6b,0xc2,0x67,0x1d,0xce,0xfa,0x8e,0x1c,0x1c,0x1c,0x9e,
0xc,0x29,0x2d,0x3d,0x4f,0xc1,0x5f,0xd6,0x5e,0xe7,0x14,0x57,0xb6,0x70,0x9f,0xf9,
0x6d,0x4b,0x98,0x9e,0xaf,0xc7,0x33,0x17,0x2c,0x40,0x9d,0xcd,0x8d,0x8,0x78,0x9d,
0x4a,0x98,0x7e,0x14,0x35,0x4a,0x1e,0xc4,0x28,0xba,0xe0,0x70,0xb8,0x70,0xe4,0x70,
0x4,0x28,0xb3,0xf6,0xd9,0x8c,0x4e,0x66,0x61,0x28,0x5a,0x48,0x56,0xd0,0x59,0xf2,
0x70,0xd7,0xf2,0x65,0x58,0xd7,0xd7,0x8d,0xb2,0x86,0xa6,0x86,0xd1,0xa2,0x78,0xe,
0xe,0xe,0x47,0xf,0x92,0x5a,0x6a,0x73,0x95,0x8a,0x8f,0xa6,0x54,0xa,0x8b,0x27,
0x4c,0xc6,0xc2,0x49,0xd3,0x90,0x4e,0x95,0x6c,0x7f,0x9,0x7d,0xaf,0x61,0xe1,0x8e,
0x1c,0x9e,0x3a,0x1c,0x39,0x1c,0x9,0x68,0x21,0x28,0xf3,0x64,0xee,0xe,0xb0,0xa2,
0x6e,0xd8,0xb1,0x15,0x77,0xae,0x78,0x1c,0x3,0xd4,0x70,0xfa,0xa9,0xd9,0x24,0x3d,
0x8d,0xac,0x60,0xf5,0x34,0xf7,0x91,0xab,0xa1,0xe,0xe,0x47,0xd,0x55,0xb1,0x15,
0x26,0x43,0x5b,0x41,0x20,0x57,0xf6,0x31,0xbd,0x79,0x1c,0xe6,0x9f,0x3a,0x1d,0xed,
0xf9,0x5a,0xa4,0xb5,0x39,0x62,0x92,0x96,0x7c,0x8a,0x24,0xe1,0x9a,0xde,0x53,0x82,
0x23,0x87,0x23,0x40,0x85,0x15,0xb0,0x40,0x12,0xe8,0xf4,0xcb,0xb8,0x87,0xd6,0xc2,
0xf6,0xee,0x4e,0xf4,0x67,0xf3,0xf0,0xb5,0x14,0x31,0xbf,0xd7,0xb4,0xff,0x68,0x91,
0x3c,0xf9,0x41,0x9d,0x2f,0xd4,0xc1,0xe1,0xa8,0x81,0x62,0x4b,0x2d,0x2a,0xa0,0xb5,
0x2e,0xbb,0x5d,0x63,0x3b,0x92,0x24,0x89,0xc,0xc3,0x45,0x73,0x4e,0xc7,0x9c,0x96,
0x71,0x48,0x91,0x14,0x44,0xe,0x19,0x47,0xe,0x4f,0x9,0x8e,0x1c,0x8e,0x0,0x3d,
0x14,0xfc,0xeb,0x3b,0x76,0xe1,0xa1,0x75,0xeb,0xd0,0xd1,0x37,0x80,0x44,0x3a,0x8d,
0xf2,0xa0,0x9a,0xa2,0x11,0xd8,0x72,0x8e,0x32,0x84,0x9a,0xc0,0xa3,0x21,0x15,0xe,
0xe,0xe,0x47,0x7,0x11,0x39,0x48,0x78,0x59,0xa8,0x36,0x3b,0xaf,0x14,0x98,0xa5,
0x30,0xbd,0xbd,0x15,0x67,0x9c,0x72,0xa,0x5a,0x33,0x19,0xe4,0x1d,0x39,0x3c,0x25,
0x38,0x72,0xd8,0xf,0x71,0x27,0x73,0x8c,0xbd,0xa2,0x5e,0x17,0xa3,0x4f,0x3a,0x2b,
0xfb,0x3e,0xee,0xd9,0xb0,0x11,0x2b,0xd6,0xaf,0x47,0x31,0xed,0xc1,0x4f,0x7a,0x8,
0x43,0x5a,0xa,0xb6,0xf4,0x70,0x34,0x35,0xa7,0x92,0xf0,0xad,0x23,0xd,0x95,0x14,
0x33,0xda,0x91,0x83,0x83,0xc3,0xd1,0x83,0x46,0x26,0xa9,0x6d,0x45,0xd3,0xdf,0x42,
0x9b,0xe7,0x90,0x40,0x36,0x48,0xa0,0x2f,0x59,0xa2,0xd5,0x1e,0xa0,0x85,0xa,0xd9,
0x25,0x73,0xe7,0xe3,0x94,0xd6,0x46,0x23,0x12,0xdd,0xa7,0xbb,0xad,0x79,0xf3,0x43,
0xd4,0x9a,0x1d,0xe,0x6,0x47,0xe,0xfb,0x41,0xe4,0xa0,0x1c,0x89,0x2b,0x8e,0x64,
0xbb,0x50,0xaa,0x14,0x91,0x22,0x1,0x68,0x4b,0xce,0x1d,0x3,0x5,0xdc,0xf1,0xe0,
0x83,0xd8,0x54,0xe,0x6d,0x1d,0x7a,0x65,0xa1,0x36,0x2c,0x71,0x70,0x70,0x18,0x19,
0x50,0x9b,0xc,0x82,0x0,0x69,0x5a,0xf3,0x67,0xb4,0xd6,0x63,0xd1,0xec,0x39,0xa8,
0x23,0x45,0x78,0x1a,0x2e,0x28,0x7a,0x10,0x39,0xd8,0xb9,0xc3,0xc1,0xe0,0xc8,0x61,
0x3f,0xc4,0xd9,0xa1,0xff,0xad,0xea,0x98,0x46,0x2,0x24,0xfd,0x92,0xad,0x81,0xf4,
0xe8,0xf6,0xed,0xb8,0x7b,0xf5,0x1a,0xf4,0xd9,0x4e,0x6c,0x1a,0x15,0x11,0xdd,0xef,
0x36,0x2b,0x71,0x70,0x18,0x39,0x8,0x43,0x5a,0xef,0x6c,0xbb,0x3a,0x66,0xc2,0x32,
0xa6,0xb5,0xb5,0xe1,0xac,0x19,0x33,0x30,0xb1,0xb6,0x16,0x5e,0x18,0xa8,0xc1,0x5a,
0xdb,0x76,0x38,0x38,0x1c,0x39,0xec,0x8f,0x98,0x1c,0x54,0xb1,0x78,0x2c,0x94,0x8b,
0xa8,0x24,0xd5,0xb1,0x9c,0xc2,0xed,0xf,0x3f,0x88,0xd5,0x3d,0xbd,0xe8,0xc9,0x66,
0x51,0x20,0x39,0xd4,0x6a,0x69,0x55,0x7,0x7,0x87,0x11,0x8d,0xa2,0x96,0xda,0x8,
0x7d,0x34,0x54,0x2,0x5c,0xbe,0x78,0x11,0xc6,0xd7,0xe4,0x91,0xd7,0x30,0x57,0x47,
0xe,0x4f,0x8,0x47,0xe,0xfb,0x43,0xd9,0xa1,0x7f,0x24,0x84,0x12,0x2b,0x93,0xcf,
0xf,0xdd,0x3d,0xdd,0xb8,0xed,0xd1,0xd,0xb6,0x87,0x73,0xd1,0x23,0x69,0x44,0x26,
0x5,0x92,0x9a,0xf2,0xec,0xe0,0xe0,0x30,0xa2,0x51,0xa6,0x95,0x20,0x55,0x4f,0x16,
0x43,0xba,0x50,0xc4,0xfc,0xe9,0x33,0x70,0xf1,0xcc,0x69,0x48,0xc9,0x2b,0xc0,0xf6,
0xee,0x5c,0xc2,0xc3,0xe3,0xe4,0x26,0x7,0x4b,0x39,0xff,0xa3,0xb0,0xd7,0xa9,0x64,
0x7e,0x25,0x5a,0x3e,0xd5,0xc8,0x61,0x0,0x1,0x36,0xec,0xdc,0x81,0x7b,0x68,0x31,
0x74,0xe6,0xdb,0xa3,0x61,0x73,0x24,0x8c,0x54,0x45,0x15,0xad,0x62,0x9d,0xd0,0xe,
0xe,0xe,0x23,0x1b,0x5a,0xae,0x46,0xa3,0x99,0xd4,0x9f,0x98,0xd5,0xa8,0xc1,0x92,
0x8f,0xd3,0xeb,0x32,0x38,0x73,0xde,0xe9,0x68,0xcc,0xe5,0xa3,0x51,0x4f,0x6c,0xdb,
0x26,0x1,0x4c,0xf1,0xd3,0x21,0x3a,0xa9,0x7e,0x3c,0x29,0x71,0x92,0x93,0x83,0x1c,
0x47,0x84,0x2a,0xe,0xcf,0xd5,0xbb,0xa0,0x4b,0x7e,0x90,0xa0,0xe0,0x4f,0xe1,0xde,
0x55,0xab,0xb0,0x74,0xdb,0x46,0xc,0xe4,0xd2,0x48,0x87,0xda,0x72,0xc4,0xc1,0xc1,
0x61,0x2c,0x20,0xa8,0x14,0x30,0x2e,0x99,0xc1,0xb3,0x16,0x9c,0x89,0xb6,0x5c,0x16,
0x6c,0xee,0x24,0x11,0x36,0xfe,0x6a,0xdf,0xa1,0xc8,0x41,0x67,0x22,0x87,0x93,0x95,
0x20,0x4e,0x6a,0x72,0xd0,0xe4,0x19,0xc1,0x46,0x24,0xd1,0x12,0xd0,0x50,0x38,0xf2,
0x2,0x76,0xd,0x94,0x70,0xdf,0xda,0x55,0x58,0xb5,0x6b,0x3b,0x12,0x5e,0x86,0x96,
0x42,0x92,0x56,0x83,0x5b,0x5e,0xdb,0xc1,0x61,0xcc,0x20,0xe1,0xb3,0xcd,0x7,0xc8,
0x50,0xfc,0x9d,0x37,0x6b,0xe,0x4e,0x1b,0x37,0x11,0x79,0x5a,0xf,0x83,0xdd,0x10,
0xea,0x73,0xac,0x9e,0x9f,0xac,0x4e,0xa7,0x93,0x9a,0x1c,0x7c,0xfe,0x69,0xf5,0x15,
0x31,0x82,0x88,0xa1,0xc4,0x6b,0xbb,0xb,0x5,0xdc,0xbc,0x74,0x39,0x76,0xfa,0xfd,
0xf0,0xd3,0x9e,0x2d,0xad,0xad,0x5,0xf2,0x4a,0x9a,0x6e,0xe9,0xe0,0xe0,0x30,0x26,
0x20,0x57,0x93,0xd6,0x42,0xd3,0x3c,0xa4,0x9a,0x52,0x88,0xb3,0xc7,0x4f,0xc7,0xa2,
0x19,0x13,0x91,0xf3,0xd8,0xce,0xcb,0x1,0x52,0xe9,0xb4,0x29,0x8a,0x72,0x47,0xa5,
0x4f,0x52,0xdb,0xe1,0x24,0x27,0x7,0xcd,0x5a,0x20,0x31,0x84,0x49,0x14,0xa9,0x29,
0xac,0xd9,0xbd,0x1b,0x77,0xae,0x5a,0x89,0x4e,0x2d,0x96,0x17,0x54,0xe0,0xd9,0xa6,
0xe6,0x51,0xf6,0xc4,0x33,0x30,0x1d,0x1c,0x1c,0x46,0x3f,0xca,0x55,0x9f,0x91,0x96,
0xd7,0x4f,0xb2,0xad,0xd7,0x24,0x52,0x98,0xda,0x9c,0xc3,0x5,0xa7,0x9d,0x8a,0xda,
0x4a,0xa,0x19,0x7e,0x76,0xe4,0x70,0x12,0x91,0xc3,0xde,0x84,0xca,0x4e,0xa0,0xc1,
0x10,0x68,0x13,0x11,0x11,0x43,0x12,0x8f,0x6e,0xdb,0x86,0x7b,0x57,0xaf,0x42,0x77,
0x2a,0x85,0x72,0x22,0x8d,0x1c,0xad,0xce,0xc,0x7f,0xa0,0xa,0xa2,0x4d,0x79,0xdc,
0xbe,0x3c,0xe,0x7,0x83,0x1c,0x92,0xd1,0xb1,0xa,0xd6,0x19,0xb9,0x2a,0x55,0xc7,
0xf6,0xa9,0x36,0x94,0x34,0xf6,0xb9,0x2a,0x6b,0xd4,0x7,0x6a,0xf7,0x54,0x3f,0x3b,
0x1c,0x3f,0x88,0x1c,0x52,0x24,0x6,0x8f,0x65,0x10,0x86,0xc,0x29,0xd,0x57,0xef,
0x45,0x7b,0x4d,0x6,0x97,0x9c,0xbe,0x18,0xe3,0x72,0xb5,0x6c,0xf3,0x51,0xe9,0x79,
0xa9,0xb8,0x1c,0xb5,0x88,0x66,0x74,0x8c,0xcb,0x70,0x2c,0xe3,0xa4,0x21,0x87,0x38,
0x91,0x3a,0x6a,0x58,0x9b,0x75,0x3e,0x7,0x49,0xf4,0x96,0x61,0x7b,0x3a,0xaf,0xdc,
0xb5,0x3,0xbd,0xd4,0x20,0x92,0x5e,0x6,0xb6,0x56,0xbc,0x83,0xc3,0x21,0x42,0xf5,
0x29,0xf6,0x4f,0xc7,0xb2,0x43,0xad,0x4a,0x97,0xe4,0xc3,0x8e,0x6b,0x53,0xd2,0x4f,
0xf2,0x3e,0xde,0x2d,0x17,0x25,0x6f,0x48,0x33,0xd8,0xd2,0x5b,0x51,0x1f,0xa8,0xc3,
0x9,0x46,0x98,0x8,0xf8,0x5f,0x19,0x35,0x64,0xeb,0x2b,0xce,0x3a,0xb,0xe3,0xbd,
0x1c,0xea,0x53,0x2c,0x9c,0x64,0x50,0x25,0x70,0xd,0x89,0xb5,0x13,0x16,0xec,0xd8,
0x2f,0xb4,0x93,0x86,0x1c,0xd4,0xf5,0x6c,0x8d,0xb5,0x9a,0x5a,0x1d,0x76,0x95,0x3,
0xdc,0xbb,0x72,0x25,0xd6,0xef,0xda,0x89,0x92,0xcd,0x98,0x4c,0x45,0xf7,0xb9,0xd9,
0xce,0xe,0x87,0x1,0x9,0x8e,0xfd,0xf5,0x9,0xf9,0xb3,0x55,0xdf,0xb4,0x31,0x8d,
0x5,0x7e,0x6f,0x9c,0xc0,0x1b,0xcb,0x3c,0x52,0xc,0xf1,0x7c,0x88,0x26,0xea,0x70,
0xc2,0x11,0xb2,0x54,0xc2,0x8a,0x6f,0x4b,0x80,0x37,0x50,0x16,0x9c,0x33,0x77,0x1e,
0x66,0x36,0xb7,0xa2,0x4e,0xe5,0x2b,0x89,0x41,0xb1,0xb0,0x77,0xaf,0x6a,0x47,0xe,
0x63,0x6,0x3e,0xb,0x3e,0xc9,0x56,0x9c,0xa8,0x24,0x51,0x66,0x92,0x7b,0xc3,0x0,
0xb7,0x2c,0x5b,0x8e,0xd,0x5d,0x9d,0xa8,0xa4,0x69,0x37,0x26,0x3d,0x6b,0xa8,0x32,
0xf5,0xa3,0x66,0xed,0xe0,0x70,0x20,0xb4,0x1c,0x83,0x10,0x2f,0x97,0xa2,0xf5,0x7b,
0x7c,0x55,0x1f,0x9,0xfa,0x90,0x96,0x27,0xeb,0x4f,0x3a,0xe5,0x21,0x28,0xf4,0xea,
0x4b,0x54,0x4a,0x3e,0x4a,0xbd,0xfd,0x78,0xf4,0xe1,0xe5,0xd8,0xb4,0x71,0x1d,0x6a,
0xeb,0x6a,0x70,0xf1,0x65,0x97,0xa3,0x6e,0x7c,0x9b,0xcd,0xdc,0x4d,0x66,0x33,0x8,
0x4b,0x27,0x45,0x13,0x1c,0x5,0x50,0x39,0x68,0xd7,0x39,0xa,0xc6,0xc0,0x47,0x8e,
0xb2,0xe2,0xec,0x39,0xa7,0xe2,0xb4,0xb6,0x71,0x48,0x7,0x21,0x32,0xb2,0x22,0x3c,
0x92,0x3b,0x65,0x49,0x86,0x7f,0x63,0x1d,0x27,0x8f,0xe5,0x50,0x9,0x4c,0xf8,0x57,
0xa8,0x11,0x6c,0x2b,0x14,0xf0,0xfb,0x7,0xee,0x47,0xa7,0xcf,0x8a,0x90,0x4a,0xdb,
0x4c,0x68,0xcd,0x92,0x54,0x73,0x4f,0x5a,0xdb,0x77,0xe4,0xe0,0x30,0x3c,0x62,0x72,
0xd0,0x31,0x26,0x88,0x36,0x2a,0x17,0x41,0xa9,0x8c,0x35,0xab,0x1e,0xc7,0xe3,0x2b,
0x1e,0xc3,0xca,0x65,0xcb,0xd0,0xbd,0x73,0x2b,0xa,0x85,0x1,0xf4,0xf6,0xf6,0xa2,
0xd0,0xd7,0x6f,0xf7,0x65,0x69,0x3a,0x84,0x41,0x5,0xa1,0xe7,0xe1,0xe2,0xe7,0x5f,
0x85,0x17,0xfd,0xe5,0xeb,0xd0,0x2f,0xab,0x22,0x39,0xf6,0x5,0xcd,0x68,0x80,0x26,
0xb6,0xa,0xda,0xc2,0x37,0xa0,0x58,0xd4,0xc,0x6a,0x52,0x37,0x16,0x4d,0x9d,0x8c,
0xc5,0x53,0xa6,0xa1,0x86,0x5f,0x27,0x69,0x6,0x96,0xa9,0x6a,0x66,0x30,0xf6,0xe7,
0x3d,0x8d,0x49,0x72,0x88,0x13,0x14,0xcd,0x5c,0x90,0xa8,0xe7,0x95,0x32,0xb,0x35,
0x91,0x44,0x87,0x5f,0xc2,0x2d,0x4b,0x1f,0xc6,0xf6,0x72,0x81,0xdf,0xa4,0xd9,0x58,
0x45,0x10,0xac,0xd,0x6a,0xe7,0x2a,0x7c,0x66,0x87,0xdb,0xa4,0xfc,0xc9,0xa0,0x1c,
0x66,0x3e,0x55,0x33,0x3a,0xa2,0x52,0x8d,0xb,0xdf,0x4b,0xaa,0x71,0x19,0x48,0x93,
0x16,0xec,0x17,0xd5,0xaa,0x56,0xa1,0x50,0xd5,0x5e,0xc0,0xc9,0xa4,0x2c,0xb9,0x68,
0x4f,0x60,0xf3,0xd9,0x1f,0x11,0x27,0x87,0xfb,0xc5,0x47,0xcf,0xdc,0xb7,0x1c,0xf5,
0x75,0x7c,0x8f,0x6e,0xb2,0xe8,0xd8,0x7b,0x19,0x1f,0x7e,0xab,0xcf,0x49,0xd6,0x5,
0xc5,0xd,0x54,0x18,0x10,0xfa,0x14,0xdc,0x54,0x1a,0xf8,0x31,0xc5,0x38,0xeb,0xb7,
0x3d,0x1d,0xdb,0xd1,0xb5,0x7b,0xf,0xba,0xf7,0x74,0x62,0xfb,0x96,0xad,0xd8,0xb4,
0x61,0x23,0x76,0xd0,0x2a,0xd8,0xc6,0x73,0xb0,0x2e,0xa5,0xf9,0xac,0x94,0xde,0x9b,
0x28,0x22,0xf0,0x7d,0x3e,0x90,0x69,0x94,0x2b,0x82,0xef,0xb1,0xba,0xc5,0xcf,0x15,
0x2d,0xef,0x9e,0xab,0xc1,0x7b,0xbf,0xf0,0x79,0x34,0xcd,0x9c,0xce,0xef,0x4e,0x1c,
0x39,0x68,0xae,0x4f,0x9c,0x5f,0x83,0x79,0x33,0xa4,0xfe,0x47,0xbe,0x76,0x9d,0x54,
0x8f,0x82,0xb9,0x56,0xa2,0xad,0x71,0xf5,0x45,0x92,0xe9,0xd5,0x6f,0x55,0x96,0x51,
0x67,0xb,0xcb,0x94,0xf9,0xa5,0x7c,0xe8,0xe9,0xea,0x46,0x4f,0x77,0x37,0x9a,0x1a,
0x6a,0x91,0xab,0xab,0x43,0xc0,0x6b,0x54,0xd3,0xec,0x97,0x91,0x3a,0x36,0x72,0x60,
0x5b,0xfe,0xf2,0x28,0xb7,0x9f,0xdc,0x47,0x22,0x8,0xd5,0x8c,0x54,0x30,0x80,0x33,
0xa6,0xcd,0xc4,0x99,0xd3,0x67,0xa2,0x96,0x69,0xab,0xd0,0xaa,0xf0,0xb4,0x15,0x69,
0xb5,0xbe,0x47,0x3b,0x3d,0xea,0x24,0xce,0xac,0xb1,0x81,0x31,0x4d,0xe,0x11,0xa2,
0xca,0x1f,0xb2,0xc4,0x77,0x94,0x4a,0xf8,0xc5,0x9d,0x7f,0x46,0x29,0x9f,0x63,0xc1,
0xca,0x8d,0xa4,0x6f,0xc6,0x5c,0xf2,0x8f,0x39,0xd4,0xb4,0x23,0xcf,0x6b,0x4,0x6b,
0x12,0xf6,0x31,0x9a,0x2e,0x64,0xa7,0xd5,0x76,0xa2,0xd1,0x5e,0x82,0xaa,0x59,0xbc,
0x84,0x32,0x98,0xf7,0x3e,0x85,0xaf,0xee,0xf3,0xb4,0x6a,0x26,0xe5,0x70,0x3c,0xb4,
0xf0,0xa9,0x42,0x22,0x27,0xc6,0xe0,0x63,0xaa,0x7b,0x68,0xc,0x8d,0x4f,0x69,0xc8,
0x7b,0xe2,0xaa,0x2f,0x6b,0xd1,0x2f,0x96,0xcc,0x7a,0xf4,0xa8,0xd5,0xb,0x69,0xde,
0xd3,0x56,0x93,0xc1,0x8e,0x2d,0xdb,0xf0,0xc0,0xbd,0xf7,0xe2,0xc1,0x7b,0x97,0xe0,
0x81,0x3b,0xee,0x40,0x32,0x5d,0x42,0xd6,0x4b,0xa3,0x52,0x28,0x21,0xa7,0x89,0x91,
0x4c,0x13,0xa5,0xbd,0xfd,0x66,0x5f,0x48,0xfc,0xed,0x8f,0xc0,0xfa,0x22,0x8c,0x6c,
0x2a,0x19,0x3c,0xf7,0xd,0x7f,0x85,0xf3,0x5f,0x7c,0x35,0x42,0x5a,0xaf,0x27,0xa,
0xf1,0x88,0x9c,0xa1,0x59,0xef,0x57,0x85,0xdc,0x20,0x31,0x10,0x25,0xa,0xc4,0xd8,
0x52,0xa,0x7d,0x5a,0xda,0x3c,0xcf,0xa8,0x28,0x79,0x5d,0x79,0xa0,0xa1,0x9f,0xf9,
0x4c,0xe,0x65,0x5a,0x49,0xf7,0xdf,0x73,0x17,0xf3,0xec,0x7e,0xdc,0x73,0xdb,0x9f,
0xd9,0xee,0x2,0x13,0xa4,0x7e,0xd8,0x8f,0x8b,0x9f,0xf5,0x2c,0xbc,0xe2,0x8d,0x6f,
0x2,0xea,0xea,0xd1,0x4f,0xab,0xdd,0xf2,0x6f,0x84,0x43,0x7d,0x44,0xda,0x97,0x25,
0x51,0x2c,0x60,0xe1,0xa4,0x29,0x38,0x6f,0xf6,0x3c,0xd4,0x33,0xcb,0x12,0x9,0xed,
0x43,0xaa,0x3b,0x98,0x27,0xca,0x2f,0xe5,0x23,0xf3,0x60,0x2c,0x61,0x4c,0x92,0x83,
0x9a,0xa5,0xca,0x2d,0xd6,0x84,0xf4,0x79,0x75,0xdf,0x0,0xee,0x78,0xe8,0x1,0xec,
0xa1,0xe5,0x0,0x56,0xe2,0xa,0xcd,0x7b,0xdd,0xe5,0x56,0x66,0x7c,0x2a,0x90,0x5f,
0x56,0x8d,0x26,0xca,0x5b,0x1d,0x95,0xd7,0x49,0xa,0xe3,0xd8,0x52,0x90,0x44,0x56,
0xce,0x6,0xa9,0x92,0x5d,0xd3,0x90,0xc1,0x1c,0x85,0xa0,0x5f,0x2c,0x53,0xc1,0xae,
0x20,0x9d,0xcb,0xa2,0x20,0x9f,0x3c,0xf3,0x3f,0xd2,0xd7,0x84,0xa7,0x5e,0x16,0x15,
0x8d,0x34,0x21,0x64,0x81,0x28,0x3e,0x8a,0x46,0x2a,0xd4,0x26,0x4b,0x7b,0x9f,0xaa,
0xf3,0x92,0x57,0xb2,0xcf,0x1e,0x23,0x9e,0x64,0x3c,0x6a,0x32,0x59,0x4,0xbd,0xbd,
0xd8,0xbc,0x7a,0xd,0x36,0xad,0xdf,0x80,0x75,0xab,0x56,0xa3,0xab,0x63,0xf,0x7a,
0x76,0x77,0xa0,0x7b,0xfb,0x16,0xc,0x50,0xd8,0x55,0x24,0xc,0xf9,0x2b,0x8f,0x56,
0x44,0x5f,0x8a,0xc2,0x90,0x30,0xab,0x87,0x7f,0x7a,0x4f,0x7a,0x38,0x1e,0x18,0x96,
0x1c,0xa2,0x89,0x57,0xca,0x8f,0x44,0x98,0xc6,0xec,0x8b,0x2e,0xc6,0x5f,0x7d,0xec,
0xa3,0x28,0xd,0x95,0xc2,0xc7,0x19,0xea,0x28,0x8f,0xcb,0x30,0xce,0xb7,0xa0,0xca,
0x75,0x16,0x2b,0x5d,0x20,0x52,0x21,0xf3,0xad,0x42,0x81,0xae,0xd1,0x7c,0x14,0xf8,
0x9b,0xd6,0xad,0xc7,0xd6,0x35,0x2b,0xb1,0x79,0xcd,0x6a,0xec,0xda,0xbe,0xc3,0x2c,
0xa9,0x5d,0x3b,0x76,0xa2,0xbf,0xbb,0xb,0x1e,0x5,0xbf,0xac,0x8,0x8f,0x82,0x53,
0x8f,0x52,0x5f,0x5f,0x29,0x93,0xc4,0x0,0x15,0x81,0xf3,0x9e,0x73,0x25,0x5e,0xf3,
0xce,0xb7,0xa3,0x87,0xcf,0x4a,0xf3,0x6f,0xa4,0x43,0xd6,0x51,0x89,0x69,0x4f,0xb3,
0xbc,0x3d,0x2a,0x97,0xa7,0xb6,0x4f,0xc0,0x85,0xf3,0x17,0xa0,0x89,0x69,0x89,0x4a,
0x4d,0x85,0xa9,0xbc,0x53,0x6d,0xa8,0x66,0xdc,0x18,0xc1,0x98,0x24,0x7,0x69,0xa5,
0xda,0xd8,0x5f,0x3b,0xb3,0x15,0xf9,0x79,0x67,0x6f,0xf,0xae,0x7d,0xf0,0x1,0x24,
0xa8,0xea,0x94,0xb5,0x86,0x52,0xb5,0xf3,0x39,0x2a,0xd7,0xa8,0x88,0x1d,0xe,0x1d,
0x1a,0xea,0xeb,0x7,0x65,0x1b,0xd5,0x65,0xdc,0x6a,0x2,0x5e,0x47,0xab,0x50,0xd6,
0x44,0x4a,0xd4,0xac,0x7,0x7a,0x7a,0x51,0xdb,0xdf,0x83,0x9d,0xdb,0xb6,0x63,0xe5,
0xb2,0x47,0x70,0xdf,0xdd,0xf7,0x60,0xdb,0xa6,0x2d,0x8,0xbd,0x24,0x4e,0x99,0x3b,
0xf,0xff,0xef,0xaf,0xff,0xa,0xed,0x33,0xa7,0xc3,0xa7,0x35,0x51,0x31,0xf1,0xfb,
0xd4,0xcb,0x22,0x64,0x3,0x4e,0x56,0x7,0xa4,0xcb,0x26,0x51,0xb5,0xe,0xb4,0xa,
0x27,0xaf,0xc9,0xed,0x21,0x21,0x28,0x41,0x9f,0x65,0x7c,0xca,0x85,0x2,0x2d,0x82,
0xad,0x78,0xe4,0x81,0xa5,0x78,0xf8,0xa1,0x87,0x48,0xa,0x6b,0xcd,0x52,0x48,0x53,
0xf8,0xa7,0xfc,0x78,0x4e,0xb,0xc5,0x42,0x32,0xea,0xa7,0x8a,0x63,0xa5,0x63,0x25,
0x95,0x31,0x21,0x1a,0x50,0x38,0x68,0x71,0x46,0xdd,0x9a,0xd4,0x8c,0xda,0x14,0x6d,
0x97,0x20,0xb4,0x63,0x92,0xcf,0x69,0x69,0x69,0x34,0x4d,0xbb,0xa9,0xa9,0x9,0x67,
0x9d,0x75,0x36,0xce,0x39,0xe7,0x1c,0xbc,0xff,0x3,0xef,0x43,0x99,0xcf,0x15,0x39,
0x24,0x49,0xe,0xe1,0xb8,0x76,0xfc,0xc3,0x8f,0xff,0x1b,0x3d,0x5,0x6a,0xa1,0xc7,
0x19,0x71,0x9f,0x89,0xc8,0x4a,0x6e,0x34,0x59,0x4c,0xca,0xb3,0x92,0x5f,0x46,0x9d,
0x7c,0xef,0xca,0x3f,0x92,0x62,0x89,0x79,0xe6,0x97,0xcb,0xe8,0xd9,0xbc,0x1e,0x8f,
0x2e,0x5b,0x8e,0xa5,0xf7,0x2f,0xc1,0x86,0xc7,0xd7,0xd2,0x62,0x8,0x91,0x4d,0x8b,
0xd6,0xa3,0xf4,0xc4,0x79,0xa4,0xfc,0x50,0xfe,0x58,0xfb,0x22,0xe2,0xeb,0x9a,0x6c,
0xa6,0x85,0x2a,0xfb,0x78,0xfe,0x4f,0x3f,0xfe,0x1f,0x14,0x6b,0xb2,0x7c,0xff,0xc8,
0xf7,0xdb,0xcb,0x7d,0xa6,0xf1,0xc6,0xe6,0xf6,0xa4,0x95,0x94,0xa6,0xe,0x32,0xb9,
0xbd,0x1d,0xcf,0x98,0x33,0x1b,0xb5,0x2c,0x67,0xed,0x11,0x9f,0xa4,0xe9,0x29,0x65,
0x29,0x91,0x18,0xf9,0x64,0x77,0x38,0x18,0x9b,0x6e,0x25,0xf9,0x8b,0x59,0x43,0x35,
0xc5,0x6d,0xd3,0xc0,0x0,0x6e,0x7c,0xe8,0x7e,0xc,0xb0,0x22,0x86,0xac,0xf4,0x51,
0x61,0x47,0xda,0x92,0xdc,0x9,0x8e,0x1c,0x9e,0x2,0x42,0xdf,0xf6,0xe9,0x4d,0x69,
0x66,0xa9,0x97,0x35,0xd7,0xc4,0x40,0x6f,0x37,0x1e,0x59,0xbe,0x4,0x8f,0x51,0x80,
0xac,0x7c,0xe4,0x51,0xa,0x95,0x1,0x14,0x29,0x84,0xfd,0x3d,0x1d,0x26,0x64,0x4,
0xfd,0x46,0xba,0xa4,0x76,0xd4,0xae,0xa4,0x33,0x28,0xd1,0x7a,0xf8,0xc8,0x57,0xbf,
0x8c,0xdc,0xc4,0x76,0xa,0xe2,0xec,0x11,0x95,0x45,0x52,0x43,0x10,0xf9,0x6c,0x69,
0xb5,0x39,0x2f,0x8d,0x9a,0x6c,0xe,0xbb,0x77,0xae,0xc7,0xb2,0x87,0x96,0x52,0xa0,
0x3d,0x80,0x4d,0x6b,0xd7,0x91,0xb0,0xa,0x28,0x76,0xee,0x41,0xb9,0x5c,0x8a,0x56,
0xdf,0x65,0x5d,0x10,0x71,0xc4,0xb,0x30,0xda,0xdb,0xcd,0xa2,0x24,0x28,0x10,0x2a,
0xa,0x3c,0x1d,0xda,0x40,0x92,0xb2,0x46,0x48,0x86,0xe6,0x67,0xe7,0xb1,0x4c,0xc1,
0x19,0x84,0x65,0x2c,0x58,0xb0,0x0,0x4f,0x7f,0xfa,0xd3,0xf1,0x8c,0x67,0x3c,0x3,
0x93,0x26,0x4d,0x42,0x5d,0x7d,0xd,0xea,0xea,0xea,0xd0,0xd8,0xd8,0x68,0xef,0xda,
0xb6,0x7d,0x1b,0x16,0x2f,0x5e,0x4c,0xad,0x9c,0xbf,0xe5,0x3,0x45,0xe,0xd,0xa7,
0xce,0xc5,0x87,0xbf,0xfe,0x4f,0x28,0x90,0x90,0x8e,0x27,0xd4,0xe4,0xe3,0x8e,0x75,
0xaf,0x52,0x44,0x26,0xe5,0xa1,0x21,0x57,0x83,0x8e,0x6d,0x3b,0xac,0x53,0xfd,0xb1,
0xfb,0xef,0xc6,0xca,0x15,0x8f,0xa2,0xc8,0x32,0x2c,0xf7,0x17,0x50,0x62,0x1b,0x42,
0xa5,0x84,0x52,0x49,0xbb,0x21,0x52,0x20,0x32,0x28,0xaf,0x34,0xc8,0x43,0xb9,0x33,
0x34,0xf6,0xb1,0xe5,0xb6,0x3f,0x8c,0x40,0x2a,0x1e,0xa,0x89,0x14,0x5e,0xf3,0xae,
0x77,0xe2,0xac,0x67,0x5e,0x66,0x93,0x4d,0x47,0x3a,0x4c,0xd9,0x61,0xdc,0x65,0x4d,
0x15,0x48,0xe,0xea,0xa4,0x66,0xc2,0x71,0xca,0xb8,0x6,0x3c,0xed,0xb4,0x85,0x68,
0xe2,0x3d,0x69,0x73,0x91,0x4a,0xe9,0x1c,0x5b,0x3,0xb,0x46,0x3d,0x39,0xc4,0x91,
0x57,0x15,0x55,0x41,0x1a,0xca,0xd4,0x6c,0xa9,0xc1,0xad,0xed,0xea,0xc4,0xad,0xcb,
0x96,0xa1,0xcf,0xd6,0x45,0xda,0x3b,0x9,0xde,0x28,0x82,0x1f,0x22,0xad,0x70,0x98,
0x9a,0x3c,0x4a,0x61,0x4b,0x13,0xf3,0x68,0x29,0xb2,0xb4,0x45,0x8d,0x52,0x66,0x7d,
0x8c,0xf8,0x54,0x3a,0x9f,0xb2,0x4b,0xb2,0x51,0x27,0x21,0x5,0xa4,0xb9,0x3c,0x78,
0x5d,0xd,0x40,0xc3,0x32,0x4d,0xf8,0x51,0xf0,0xa5,0xe5,0x8b,0xa7,0x40,0x40,0xd9,
0x47,0xc7,0x8e,0x5d,0xe8,0xd9,0xb1,0xd,0x3b,0x37,0x6f,0xc2,0x2e,0x5a,0x4,0x9b,
0xd7,0xae,0x37,0x77,0x4c,0x4f,0x47,0x7,0x3c,0xde,0xab,0x25,0x47,0x4c,0x10,0x50,
0xf6,0xc8,0x2f,0x5d,0x4e,0x96,0x2d,0x4e,0x16,0x19,0x3e,0x4f,0xe7,0x29,0xdb,0x4,
0x3e,0x85,0x32,0xb5,0xd5,0x89,0x67,0x2e,0xc6,0x3b,0xbf,0xf0,0x19,0x14,0x8b,0x7c,
0xa7,0xbe,0x67,0x5c,0xe2,0xa3,0x96,0x48,0x57,0xbc,0xf4,0x53,0x75,0x6e,0x6a,0xb8,
0xa8,0x3a,0x79,0xf9,0x58,0xbe,0x27,0x85,0x5c,0x26,0x43,0x52,0xea,0xb3,0xce,0xe0,
0xbe,0xad,0x9b,0xb0,0x87,0x71,0xd8,0xba,0x6e,0x23,0xb6,0x6c,0xdc,0x84,0x8d,0xeb,
0xd6,0xc1,0xef,0xda,0x63,0x71,0x50,0x9c,0x4c,0x9c,0x31,0x4d,0x41,0x46,0xa3,0xd9,
0x99,0x4f,0x4a,0xb3,0xe2,0xc5,0x73,0x4f,0x99,0xa2,0xf4,0xf2,0x5e,0x69,0xd1,0xd6,
0x59,0xce,0x4b,0x7a,0xa7,0x72,0x54,0x4,0xa0,0xfe,0x88,0xc6,0xe6,0x26,0x9c,0x32,
0x7d,0x3a,0xa6,0x4f,0x9b,0x8e,0xc9,0x24,0x80,0xb3,0xcf,0x3c,0xb,0x33,0x66,0xcc,
0xc0,0xc2,0xb3,0x16,0xd9,0xf3,0xa4,0x89,0x4b,0xe8,0xca,0x7a,0x90,0xec,0x4d,0xf0,
0xf7,0x4a,0xcb,0xae,0x5d,0xbb,0x70,0xfd,0xf5,0xd7,0xe3,0xdd,0xef,0x7b,0xf,0x12,
0xb4,0x9a,0x64,0xd5,0x26,0xc3,0xc,0xce,0xbb,0xfa,0x45,0xb8,0xea,0x4d,0x7f,0xcd,
0xf8,0xa8,0x10,0x4,0xfd,0x28,0x3a,0xab,0xf0,0xb7,0xca,0x2c,0x7d,0xac,0x5e,0xe2,
0x31,0x2a,0xdf,0x7d,0x20,0x69,0xac,0xc,0xb1,0xef,0xf8,0xc7,0x3a,0x10,0x5b,0x5,
0x2a,0x7,0xfd,0x40,0x69,0x4f,0xf2,0xba,0xc,0xab,0x80,0x69,0x91,0xf5,0xd6,0xb9,
0x6b,0x37,0x76,0xed,0xd8,0x81,0x9e,0x8d,0x6b,0xb1,0x99,0xf9,0xb5,0xee,0xb1,0x55,
0x28,0x91,0x8,0x54,0xee,0x69,0xd3,0x9a,0x58,0x1e,0xb4,0xe,0xf4,0xc,0x91,0x5b,
0x59,0x7e,0x38,0x95,0xb,0x5f,0xc7,0xa4,0x5a,0xc7,0x7d,0x85,0xdf,0xdb,0x7,0x95,
0x8b,0xa5,0x5b,0x96,0x1b,0xf3,0x91,0xd7,0x95,0x1f,0xd,0x24,0xc6,0xba,0xfa,0x3a,
0x6c,0xdf,0xbe,0xdd,0xac,0x79,0xfe,0x8a,0xd1,0x49,0xe1,0x34,0xb9,0xd3,0x3e,0xfc,
0x41,0x5a,0xf5,0xa3,0x83,0x1c,0x64,0x49,0xfa,0x4c,0x77,0xa8,0x72,0xad,0xa6,0xcd,
0x63,0xbd,0x9e,0xde,0xd8,0x82,0x4b,0x69,0x1,0xb7,0xf0,0x7a,0x8a,0xd7,0x7d,0xd,
0x89,0xd7,0x6f,0x2c,0x44,0x92,0x45,0x61,0xb4,0x62,0xec,0x90,0x83,0x2a,0x65,0x55,
0x90,0x94,0x4a,0x49,0x6c,0x29,0xf4,0xe3,0x37,0x4b,0xee,0x45,0x81,0x5a,0xa4,0x3a,
0x8a,0xd4,0x48,0x47,0x75,0x49,0x1d,0xa,0xaa,0x99,0xf1,0x44,0x95,0x32,0x26,0x87,
0x92,0x1a,0x3f,0x8f,0xda,0x9b,0xc2,0x44,0x36,0x1b,0x77,0x3a,0x4d,0x52,0x55,0xc7,
0xac,0x9e,0xe3,0x87,0xc8,0x26,0x3d,0xf4,0x76,0x76,0x60,0xc9,0x7d,0xf7,0xe3,0xbe,
0x3b,0xee,0xc2,0x63,0xf,0x2f,0x8f,0xd6,0xa1,0xd1,0xd,0x41,0xc9,0x5c,0x11,0xb1,
0x6,0xaa,0x47,0xc,0xef,0x73,0x8d,0x1a,0x93,0xf2,0x3f,0x16,0x9e,0x65,0x4a,0xde,
0xac,0xf5,0x37,0xa4,0xd0,0x99,0x49,0xe3,0x1f,0x7f,0xf1,0x53,0x6a,0x94,0x22,0x6f,
0xfe,0x51,0x10,0x69,0x14,0x8b,0xf1,0xb9,0x16,0x46,0x64,0x7b,0xd3,0x35,0xd0,0xfa,
0xd0,0xb1,0x42,0xe1,0xb6,0xf6,0xb1,0xc7,0xb0,0xfc,0x81,0xa5,0xb8,0xe3,0x96,0x3f,
0xa2,0xaf,0xb3,0xcb,0xae,0xd7,0xa6,0xa2,0xe,0x53,0x75,0x7a,0xc7,0xef,0xd1,0x9c,
0x96,0xfd,0x61,0x94,0x50,0xcd,0x83,0xb8,0xea,0x87,0xd4,0x8,0x33,0x5a,0x68,0x8d,
0xbf,0xb5,0x21,0xcd,0x26,0x6c,0x13,0x68,0x68,0xa0,0x76,0xf8,0xb4,0xa7,0xe3,0xa2,
0x8b,0x2e,0xc2,0xd5,0x57,0x5f,0x8d,0x71,0xe3,0xc6,0xf1,0xb9,0xa5,0x68,0x14,0x52,
0x15,0xba,0xb7,0x6c,0xbf,0xcf,0xa0,0xaf,0xbf,0xcf,0x9e,0xd1,0xd7,0xd7,0x87,0xdf,
0xfd,0xfe,0x26,0x3c,0xf0,0xc0,0x83,0xf8,0xe9,0x4f,0x99,0x36,0x59,0x50,0xfc,0x4d,
0x26,0xeb,0x91,0x8,0x98,0xcf,0x1,0xd3,0x59,0xc9,0xe0,0xea,0xb7,0xbf,0x3,0xb,
0x9f,0xf7,0x1c,0x13,0x38,0x36,0x8a,0x49,0x65,0x61,0x1a,0x4b,0x48,0xc2,0x3a,0xd0,
0xe5,0x22,0xb2,0x1c,0x44,0x5c,0xc0,0x24,0x6d,0xdf,0x2f,0x47,0x42,0x8c,0xd1,0x96,
0x36,0xaf,0x65,0x5f,0xc0,0x72,0xd4,0xed,0xb5,0x99,0x1c,0x56,0xaf,0x5c,0x89,0xa5,
0x4b,0x96,0xe0,0xee,0xdb,0x6f,0xc5,0x8e,0xcd,0x5b,0x90,0x26,0xa1,0x68,0x54,0x95,
0xe5,0x75,0xb5,0xaf,0x26,0x2e,0x23,0x41,0x51,0xd8,0x1f,0x9,0x3d,0x9c,0x88,0x89,
0x67,0x80,0xd6,0x44,0x3a,0xed,0x59,0x50,0x9e,0x29,0xe8,0xf7,0xca,0xab,0x67,0x5c,
0x76,0xb9,0xe5,0xd7,0x84,0x9,0x13,0x70,0xf3,0xcd,0x37,0xe3,0x55,0xaf,0x7a,0x15,
0xf3,0x88,0x29,0xe7,0xe3,0xf5,0xce,0xf1,0xb4,0x98,0xde,0xf6,0xf7,0x9f,0x7,0x32,
0xd,0xf6,0xcc,0xd1,0x8,0x5b,0xde,0xbb,0x54,0xc2,0xdc,0xf6,0xf1,0xb8,0x64,0xee,
0x1c,0xd4,0x90,0x3d,0x86,0xe,0x3a,0x53,0x5e,0x28,0x37,0xe3,0x30,0x1a,0x31,0xea,
0xc9,0x41,0xa2,0x29,0xd2,0x90,0x22,0xad,0x4a,0x15,0x70,0x45,0x67,0xf,0xee,0x7b,
0x64,0x39,0x3a,0x83,0x32,0x42,0xf5,0x2f,0xd8,0x4d,0x91,0x16,0x37,0x96,0x61,0x16,
0x2,0x43,0xf5,0x60,0x79,0x13,0x75,0x1c,0x47,0x45,0x6c,0xa9,0xe7,0xa9,0x8e,0x1a,
0x81,0xa1,0x4e,0xe2,0x3c,0xd5,0xc9,0xa,0x5,0xc9,0x9a,0x95,0xab,0xb0,0x75,0xc5,
0xc3,0x58,0xbb,0x7a,0xd,0xf6,0xec,0xea,0x40,0x6f,0x57,0xf,0x3a,0xa8,0xf1,0x26,
0x7b,0xfb,0x79,0xb3,0xb4,0xce,0xa8,0xf1,0xab,0xba,0xf8,0x14,0x62,0x49,0x6a,0xc0,
0x26,0x80,0xe3,0x3c,0xad,0x3e,0x77,0x7f,0x48,0xd8,0xc9,0x17,0x1f,0x86,0x14,0xee,
0xd2,0xe0,0xf9,0x1c,0xed,0xcc,0x65,0xe4,0xc0,0xdf,0xf4,0x90,0x60,0xde,0xfb,0xa5,
0xcf,0x63,0xdc,0xfc,0xd3,0xac,0x1c,0xb3,0xb2,0x8,0x58,0x66,0xbb,0xb7,0xef,0xc4,
0xfa,0x47,0x97,0xe1,0xf1,0x47,0x96,0x59,0xff,0x80,0x3a,0x3c,0x65,0x25,0xf4,0x74,
0x76,0x22,0x51,0xa2,0x30,0xa4,0x90,0x91,0xc6,0xaf,0x61,0xb0,0x7c,0x38,0x4a,0x59,
0x6a,0xaf,0x55,0x62,0x88,0x31,0x9c,0x90,0x8b,0xed,0x5,0x41,0xf7,0xab,0x9,0x9f,
0x71,0xc6,0x62,0xcc,0x9f,0x3f,0x1f,0x17,0x5e,0x78,0x21,0x26,0x4e,0x9c,0x88,0xc9,
0x93,0x27,0xa3,0xa5,0xb5,0xc5,0xfa,0xd,0x94,0x3e,0xc5,0xb9,0xc4,0x77,0xca,0x22,
0xa8,0xb0,0x82,0x89,0x14,0x7d,0x92,0xd5,0x8a,0x15,0x8f,0xe0,0x81,0x25,0xf,0xe0,
0x7e,0xa,0xde,0x4d,0x9b,0x36,0x62,0xe3,0xc6,0x8d,0xe8,0x64,0xfc,0x76,0x32,0xdf,
0x28,0x6a,0xf9,0x86,0x88,0x10,0x63,0x48,0x79,0x51,0x2d,0xd5,0x28,0xb9,0x30,0x4c,
0xe3,0x55,0xef,0xfd,0x0,0x26,0x9c,0xb3,0x98,0x6,0x99,0x95,0x94,0x4d,0x90,0xcb,
0xe5,0x44,0xa,0x55,0x72,0xe0,0x23,0x54,0x9f,0x15,0x84,0x84,0x4,0x79,0x35,0x9f,
0xe3,0xb4,0x89,0x6e,0xf2,0xb4,0xa0,0x76,0xef,0xd8,0x8e,0x35,0x8f,0xad,0xc4,0xda,
0x55,0x2b,0xb1,0x7b,0xfd,0x7a,0x74,0xef,0xd8,0x89,0xbe,0x9e,0x5e,0x5a,0x7a,0x3b,
0x8d,0xb2,0x75,0xbf,0xed,0x7c,0xa6,0x73,0x6,0x95,0x9d,0x46,0x8e,0xf9,0x24,0xbb,
0xfd,0xa1,0x78,0x1e,0x88,0x84,0x11,0x9c,0xe2,0x3f,0x6f,0xde,0x3c,0x9c,0x75,0xd6,
0x59,0x38,0xe7,0x9c,0xb3,0x31,0x69,0xd2,0x44,0xcb,0xb3,0xf6,0xf6,0x76,0xb4,0xb6,
0xb5,0x22,0x4b,0x32,0x8a,0xc4,0x62,0x94,0xbf,0x8f,0x91,0xc8,0x45,0x18,0x9,0xd6,
0x33,0x3d,0x35,0xcd,0xd8,0xa4,0x9b,0xdb,0xf0,0xf6,0x2f,0x7f,0x1e,0xf5,0xe3,0xa7,
0xd9,0x7d,0xa3,0x11,0x66,0x51,0xb3,0xd,0xa8,0x93,0x7a,0x46,0x4b,0x2b,0xce,0x9a,
0x7b,0x1a,0x26,0xca,0x34,0x8b,0xc1,0xbc,0xd6,0x48,0x3d,0x5d,0xa9,0x16,0xdf,0xa8,
0xc3,0xa8,0x27,0x87,0x80,0x9a,0x92,0xb6,0xeb,0xc,0xd9,0xe0,0xfa,0x58,0xe1,0x77,
0x51,0x7b,0xfb,0x3,0x1b,0x6d,0x89,0x15,0x53,0xfa,0x9d,0x4,0x92,0xb5,0x8,0xc3,
0x68,0x2d,0xa6,0x27,0x46,0x5c,0x84,0xda,0xcd,0x4a,0x82,0xc4,0x4,0x90,0x9,0x6d,
0x69,0xe1,0x5a,0x50,0x8c,0xc2,0x86,0xf9,0xd0,0xd7,0xdd,0x83,0x52,0xa1,0x88,0x1,
0x6a,0xb6,0x7b,0x36,0x6e,0xc0,0xca,0x15,0xcb,0xf1,0xd8,0x43,0xf,0x63,0xcb,0xda,
0x35,0xf6,0x7d,0x7a,0x48,0x7,0x6c,0x9c,0x53,0xfa,0x2c,0xa2,0x11,0x74,0x54,0x3,
0xb7,0x3c,0x95,0xd6,0x49,0xa1,0x29,0x21,0x23,0x61,0x29,0xd7,0x8b,0xb4,0x57,0x7d,
0xae,0xad,0xad,0x43,0x7d,0x7d,0x1d,0x5,0xc7,0x64,0xb4,0xb5,0x35,0xe3,0xfc,0xb,
0x2e,0xc0,0xf9,0xe7,0x9d,0x67,0x47,0x69,0x91,0xbf,0xbb,0xe5,0xcf,0xd4,0x6e,0x45,
0x4e,0x15,0x14,0xd9,0xa0,0xae,0xfe,0x8b,0xd7,0x61,0xfa,0xbc,0xb9,0x58,0xb1,0x7c,
0x39,0xd6,0x3d,0xba,0xa,0x2b,0x97,0x2d,0x87,0x3f,0x50,0xa4,0x60,0x95,0x56,0x1b,
0x39,0x5d,0x44,0x2,0x22,0xf,0xa5,0x4f,0xfe,0x5f,0x9d,0x9b,0xd0,0xd3,0x75,0x1e,
0xfd,0x21,0x42,0x58,0x50,0xfa,0x15,0x1f,0x9,0x28,0xa5,0xa6,0xbe,0xbe,0x1e,0x4d,
0x4d,0x8d,0x68,0x6c,0x6c,0xc0,0xd4,0x29,0x53,0x68,0x11,0x3c,0xd,0x67,0x9f,0x73,
0xe,0xce,0x3e,0xfb,0x6c,0xe6,0x9f,0x48,0x6e,0xaf,0xf2,0x10,0xe7,0x5d,0xd9,0x2f,
0xa2,0xab,0xab,0x1b,0x7b,0xf6,0xec,0x46,0x47,0x47,0x7,0xba,0x99,0x7f,0x7f,0xfa,
0xd3,0xed,0x78,0xf8,0xe1,0x87,0xf1,0xe7,0x3f,0xff,0x19,0x65,0xa,0x6,0x8f,0x2,
0xb6,0x9a,0x3d,0xfb,0xc0,0xc8,0xa1,0xfa,0xbc,0x18,0x72,0xa2,0x14,0x35,0xf4,0x93,
0xf9,0x16,0xd0,0x72,0x78,0xcd,0xfb,0xae,0x41,0xc3,0x9c,0x59,0xbc,0x53,0x71,0x67,
0xa9,0x31,0x4f,0xa6,0x4d,0x9b,0x8a,0x52,0xb9,0x44,0x4d,0x9d,0xc2,0x98,0x71,0xf7,
0x52,0xd4,0xcc,0x25,0x58,0x75,0xde,0xdf,0x8f,0x42,0xff,0x0,0xa,0xd4,0xda,0xd5,
0xd9,0xbf,0x66,0xd5,0x6a,0x6c,0x62,0x9e,0x2d,0x7f,0x78,0x29,0xa,0x3d,0x3d,0x36,
0xac,0x34,0x4b,0x4b,0x42,0xfd,0x2f,0xd1,0x7c,0x1d,0x7b,0xac,0x1d,0x35,0x7,0x45,
0xa4,0xac,0xfc,0x4b,0xea,0xfd,0xfc,0x42,0x2e,0x3b,0xcd,0xfc,0x8d,0x9,0x4c,0x65,
0x27,0x24,0xd8,0xa6,0xa2,0xfc,0x6a,0x42,0x23,0x43,0x3b,0x2d,0xa6,0x8b,0x2f,0xbe,
0x4,0x8b,0x17,0x2f,0xc2,0xa5,0x97,0x5c,0x8a,0xb4,0xc6,0xb0,0x1a,0xa2,0xfb,0xf,
0x44,0x24,0x24,0x45,0x26,0xa,0xb2,0xb8,0x3c,0xcd,0x4,0xe7,0x35,0x59,0x2d,0xe5,
0x74,0xe,0xef,0xfa,0xea,0x97,0xd0,0x36,0x6b,0x9e,0xdd,0x37,0x3a,0x21,0xcb,0x57,
0x96,0x17,0xf3,0xab,0xe4,0x63,0xc6,0xc4,0x49,0xb8,0x6c,0xfa,0x14,0x2a,0x5b,0x19,
0x68,0x14,0x5c,0xc2,0x94,0xa0,0xa8,0xcc,0x63,0xb2,0x1c,0x6d,0x18,0xf5,0xe4,0x10,
0x75,0x3e,0x27,0xcd,0x4d,0xb2,0xb9,0x30,0x80,0x1b,0x97,0x2e,0x41,0x6f,0x29,0xf2,
0x4f,0x4b,0x6b,0x8d,0x86,0x4a,0xea,0xc6,0xd1,0x5b,0x48,0x87,0x82,0xa8,0x18,0xe5,
0x4a,0x8,0x4c,0x3b,0x6b,0xac,0xa9,0x45,0x5f,0x67,0x37,0x56,0x3c,0xf4,0x10,0x1e,
0xb8,0xfb,0x4e,0xac,0x5e,0xf1,0x28,0xc9,0xa1,0xd7,0x96,0x73,0x90,0xdf,0x59,0x23,
0x2f,0xbc,0x24,0xb5,0x1b,0x9,0x38,0x8f,0xbf,0xa7,0x26,0x6c,0x93,0x1,0xf5,0x2c,
0xfb,0x9f,0x47,0x66,0x97,0x35,0xff,0x6a,0xb6,0xe9,0x20,0x41,0x22,0xcd,0x57,0x1d,
0x93,0x22,0x4,0x35,0x7e,0x5d,0xbb,0xf4,0xd2,0x4b,0x70,0xe9,0xc5,0x17,0xe3,0xd9,
0xcf,0x7e,0x36,0xc6,0x8f,0x1f,0x4f,0x82,0xa8,0xb5,0xdf,0xd4,0xd7,0xd7,0x9a,0xcb,
0xa4,0x58,0x2c,0x52,0xab,0xcc,0xe2,0x7d,0xef,0x7f,0x1f,0xfe,0xed,0xfb,0x3f,0x36,
0x72,0x48,0x85,0x14,0x94,0x5e,0x1a,0x41,0x2a,0x8d,0x42,0xb1,0x80,0xac,0xdc,0x54,
0x8c,0x87,0x8d,0x1a,0xa2,0xb0,0xee,0xaf,0x94,0x6c,0x91,0x3a,0x11,0x81,0xb9,0xbc,
0x79,0x54,0x9c,0x34,0x83,0x55,0x90,0xf0,0x17,0x41,0x55,0x24,0xd4,0x24,0x74,0x94,
0x2e,0x5d,0x67,0x99,0xeb,0xfd,0xcf,0x7d,0xce,0xb3,0x71,0x1,0x9,0xe9,0xf2,0xcb,
0x2f,0x37,0x41,0x27,0x4d,0xb9,0xb6,0x26,0x67,0xbf,0x11,0x44,0x1c,0x22,0xb6,0x24,
0x5,0xb0,0xc8,0x41,0x79,0x28,0x77,0xc9,0xef,0x7e,0xf7,0x3b,0xdc,0x75,0xd7,0x5d,
0xf8,0xcd,0x6f,0x7e,0x8b,0x7e,0xa,0xe3,0x22,0xe3,0x26,0xc1,0xd9,0xd3,0xdb,0xab,
0x87,0xdb,0xef,0x87,0x12,0x89,0xf9,0xde,0xf7,0x83,0xe5,0x61,0x35,0xdf,0xf4,0x5c,
0xdd,0x67,0xbe,0x6b,0x6a,0x9b,0x65,0x9,0x7b,0x92,0xc3,0xab,0xdf,0xf3,0x3e,0xb4,
0xcc,0x3e,0x15,0x9,0x5f,0x74,0x2e,0x21,0xd,0x6a,0xe1,0x13,0x78,0x7f,0x88,0x66,
0x9a,0x75,0x19,0x5a,0x50,0x2a,0xb7,0x15,0x24,0xf0,0x25,0xf7,0x2d,0x41,0xf7,0xae,
0x2d,0xe8,0x67,0x1c,0x12,0xb4,0x34,0xc2,0x82,0x3a,0xd5,0x49,0x6a,0xfc,0xa5,0xee,
0xf7,0xcc,0xf,0x27,0xeb,0x4c,0xef,0xd3,0x4b,0xf9,0x4d,0xf5,0xfd,0x42,0x14,0x9f,
0xbd,0x24,0x10,0xdf,0x27,0x77,0x9a,0x66,0x71,0xab,0xf3,0x5c,0x65,0x77,0xc6,0x19,
0x67,0xe0,0xb9,0x57,0x5e,0x61,0xf9,0x95,0xcf,0xe7,0x8d,0x24,0x14,0x77,0x96,0xba,
0x1d,0x95,0x67,0x19,0x5a,0x2a,0x11,0x94,0x6e,0x7b,0xf2,0x20,0x22,0x4a,0x8a,0xe6,
0x8a,0xa8,0x6e,0x28,0xcf,0x5f,0xf0,0x82,0x17,0xe0,0x4f,0x77,0xdc,0x6e,0x77,0x66,
0x59,0x4e,0xfd,0x61,0x12,0x6f,0xf8,0xf8,0x87,0x31,0xe7,0xa2,0xa7,0xd9,0x7d,0xa3,
0x11,0x19,0xb6,0x1f,0x9f,0x79,0x1e,0xb0,0x52,0x26,0x68,0xed,0x6,0x65,0x1f,0xb,
0x5b,0xb2,0x38,0xff,0xf4,0x45,0xa8,0xab,0xb0,0x4e,0x31,0xaf,0x1d,0x39,0x1c,0x47,
0x28,0xa2,0xa,0x32,0xce,0x63,0x78,0xa5,0x0,0x65,0x36,0xd6,0xcd,0x85,0x7e,0xdc,
0xf8,0xf0,0x32,0xec,0xe,0x4a,0x36,0xb5,0x3d,0x6a,0x34,0xbc,0x4f,0x8d,0x40,0x65,
0x63,0xa7,0x27,0xa6,0x90,0xd4,0xf4,0xf5,0xbf,0xde,0x6e,0x31,0x88,0xa3,0x2f,0x81,
0x54,0x3d,0x1d,0xbc,0x64,0xf1,0xd4,0x9,0xaf,0x55,0x1b,0xb1,0xaf,0xd,0x48,0x24,
0x60,0xd4,0x16,0x29,0x3c,0xa5,0xe5,0x87,0x54,0xa5,0x33,0x14,0xac,0x9a,0x7c,0xb4,
0x79,0xfd,0x6,0xec,0xd8,0xba,0xd,0x9d,0x9b,0xd6,0x62,0xd7,0xe6,0x8d,0xd6,0x51,
0xbc,0xfe,0xf1,0x35,0x66,0x29,0xa8,0x73,0xd0,0x26,0x9e,0x51,0x9b,0x31,0xd1,0xa0,
0xa1,0x77,0x7a,0x8c,0x7c,0x4a,0xd5,0x78,0xf1,0x45,0xd6,0xf0,0xf5,0xb2,0xa8,0x43,
0x96,0x9f,0x29,0xa9,0x24,0xf4,0xa5,0x5,0x59,0x87,0x2c,0xcf,0x27,0x51,0x3b,0x3a,
0x65,0xe6,0x4c,0x9c,0x7a,0xea,0x6c,0x4c,0x9d,0x36,0xd,0xb,0xe6,0xcf,0xc7,0xac,
0xd9,0xb3,0xad,0x53,0x56,0x2e,0x17,0x3d,0x2b,0x8a,0xb3,0x4,0x6d,0xa4,0x91,0x6a,
0x38,0xa9,0x12,0x23,0xb7,0x92,0x3e,0xff,0xfc,0xe7,0x3f,0xc7,0x5f,0xfd,0xcd,0x3b,
0x91,0x66,0x42,0x29,0x27,0x79,0x2d,0x85,0x92,0xfa,0x13,0xe4,0x73,0xb7,0xdf,0xea,
0x18,0x9,0x7d,0x75,0x65,0x2b,0xd7,0x4c,0x6b,0xe6,0x7d,0x46,0xe,0xbc,0x47,0x7e,
0x75,0x95,0xad,0x4,0xfb,0xa9,0x7c,0xff,0x14,0x5a,0x2,0xa7,0x9f,0x36,0x17,0x53,
0xa6,0x4e,0x35,0xf7,0xd0,0xdc,0xb9,0x73,0xd1,0xd6,0xda,0x1a,0x75,0x9a,0xf2,0xbe,
0x28,0xff,0x95,0x3c,0xe5,0x23,0x1b,0x34,0x85,0xd6,0x63,0x2b,0x57,0x62,0xdd,0xba,
0x75,0x58,0xb1,0x62,0x5,0x36,0x6d,0xdc,0x8c,0xc7,0x1e,0x5b,0x89,0xf5,0x1b,0xd6,
0x61,0x13,0xf3,0x4f,0xbd,0xd1,0x29,0xe6,0x6b,0x6,0xb9,0xa8,0x23,0x95,0xf1,0xf4,
0x49,0x64,0xd2,0xe6,0xf5,0xc1,0x96,0x62,0xb1,0xec,0xe2,0x93,0x99,0xce,0x34,0x85,
0x9d,0xf2,0x2d,0x9a,0x54,0x29,0xc5,0x24,0x89,0x2,0xcb,0xcc,0x67,0x5c,0x53,0xd9,
0x1c,0xc6,0xd3,0x82,0x6a,0x66,0x7c,0x1a,0xc7,0x4f,0x44,0xd3,0x84,0x71,0x68,0x6e,
0x1b,0x87,0x9,0xe3,0x27,0x21,0xd7,0xdc,0x66,0x96,0xc4,0xc0,0xae,0xed,0xe8,0xdc,
0xd5,0x81,0x8e,0xed,0x3b,0x30,0xd0,0xdb,0x53,0x2d,0xcb,0x35,0xd8,0xb6,0x79,0xab,
0xd,0x2,0x10,0x49,0x78,0x7c,0x61,0xa0,0xdd,0xcb,0x98,0x14,0xe5,0xb4,0x46,0x66,
0x29,0x2f,0x8a,0xea,0x93,0x51,0xb2,0x78,0x4d,0xa3,0xab,0x94,0x8f,0x2a,0xe3,0x38,
0x2f,0x55,0x8e,0xea,0x2c,0xe6,0x7f,0xd6,0x11,0x3e,0x7b,0xd6,0x2c,0x4c,0x99,0xcc,
0xfc,0x9a,0x77,0x1a,0xa6,0xb3,0xc,0x67,0xcd,0x9f,0xcd,0xf2,0x3c,0xd5,0x5c,0x69,
0x2a,0x1f,0x41,0xbf,0x55,0xbe,0x59,0xf9,0x31,0xef,0x75,0xb4,0x7e,0x28,0x3e,0x4f,
0x65,0x61,0xb,0x53,0x2a,0x5f,0x95,0x7,0x3c,0x8f,0xcb,0x4c,0x73,0x3f,0xe4,0x22,
0xeb,0xee,0xe9,0xc7,0xe3,0x8f,0x3f,0x8e,0x47,0x1e,0x79,0x4,0x9b,0x36,0x6d,0xc2,
0x75,0xd7,0x5d,0x8b,0x47,0xd7,0xac,0xe3,0x3,0x98,0x87,0x7c,0x76,0x98,0xca,0xe0,
0x8a,0x57,0xbe,0x1c,0x97,0xbf,0xfa,0x2f,0xed,0x7d,0xa3,0x11,0x9a,0xbc,0x29,0xb7,
0x91,0x2c,0x30,0x66,0x82,0x15,0x40,0xde,0xef,0xc5,0xc2,0x69,0x33,0x70,0xc6,0xd4,
0x99,0xc8,0xc9,0x8a,0x4f,0xb2,0x6e,0xf0,0xcf,0xea,0xdd,0x28,0xc4,0xa8,0x21,0x7,
0xab,0xfc,0x71,0x18,0x1a,0xe5,0x62,0x88,0x2e,0xa,0xca,0x5f,0xdf,0xbf,0x4,0x3b,
0x4a,0xd4,0x64,0xa9,0xd5,0x64,0xe3,0xe1,0x88,0x23,0x4,0x66,0xe2,0xc7,0x51,0xaa,
0xd6,0x13,0x7d,0xf4,0xd5,0x90,0x9,0x99,0xfa,0x82,0xe,0x12,0xcc,0x12,0x5e,0xe2,
0x83,0x4,0x1b,0x62,0xda,0x16,0x5,0xac,0xc0,0x2f,0x14,0x69,0x18,0xf8,0xc8,0x27,
0xd3,0x26,0x44,0x96,0xde,0x7f,0x2f,0x96,0x3e,0xf8,0x10,0x56,0x2e,0x5d,0x66,0x9a,
0xa4,0x86,0x23,0x26,0xfc,0x2,0x74,0xbb,0x34,0xc3,0x58,0x3b,0xd6,0x8b,0x22,0xb7,
0xc5,0x7e,0xe0,0x33,0x95,0x8f,0xa6,0x79,0x57,0xf3,0xd3,0xe7,0xef,0xa5,0x15,0xe6,
0x72,0x39,0x3b,0x6a,0x18,0xe6,0x55,0x57,0x3e,0xd7,0x86,0x60,0x3e,0xf7,0xb9,0xcf,
0x35,0x4d,0xd2,0x97,0x36,0x48,0xa1,0x5c,0x91,0xb0,0x1f,0xa2,0x41,0x1f,0xc,0x71,
0xb2,0x25,0x64,0xf4,0x9e,0x6d,0xdb,0xb6,0x61,0xfe,0xa2,0xb3,0xec,0xda,0x81,0x1d,
0xda,0xd5,0x53,0xde,0xa7,0xeb,0x1e,0x35,0x6c,0xbd,0x4f,0x1d,0xc3,0x7a,0x4f,0x4b,
0x4b,0x8b,0x75,0x72,0x5e,0x7e,0xf9,0x65,0x78,0xd6,0xb3,0x9e,0x85,0x33,0xcf,0x3c,
0xd3,0xee,0xd5,0x3d,0xe2,0x26,0x13,0x52,0xfc,0x1c,0xb,0xb4,0xbe,0xfe,0xaa,0xc6,
0xdf,0xd3,0x83,0xd,0x1b,0x36,0xe0,0xf,0x7f,0xf8,0x3,0xfe,0x7c,0xc7,0x9d,0x66,
0x15,0xc4,0xef,0xce,0x66,0xb3,0x26,0xc4,0xf5,0x72,0xb9,0x75,0xa4,0xc1,0x47,0x2c,
0x4c,0x21,0x1f,0x64,0xd4,0x40,0xcc,0x49,0x92,0xe4,0x3d,0xb2,0x60,0xfc,0x64,0x94,
0x6e,0x75,0x42,0x1b,0xf9,0x48,0x55,0xf1,0x6a,0x98,0x98,0x34,0x8f,0x14,0x4,0xb9,
0xc,0x26,0x4d,0x9b,0x4e,0x82,0x5a,0x84,0x59,0x73,0xe6,0x62,0xf2,0x94,0xa9,0x18,
0xf0,0xcb,0xe8,0x2f,0x15,0xc5,0x39,0x8,0x49,0xb4,0xea,0x3b,0x59,0xff,0xf8,0x6a,
0xac,0x22,0x21,0x2d,0x7f,0xe8,0x7e,0x5e,0xeb,0xb6,0x61,0xc1,0x9a,0x60,0x96,0x64,
0x59,0xaa,0x6f,0x40,0x63,0xaa,0xf6,0xc7,0x60,0x1d,0x1a,0x2,0xdf,0xfa,0x72,0xf6,
0x96,0x81,0xd2,0x2d,0xeb,0x48,0xf2,0x5b,0x69,0x53,0x7f,0xc0,0x55,0x57,0x5d,0x85,
0xb,0xcd,0xb5,0x77,0xee,0x60,0xba,0xf5,0x28,0x9b,0xff,0x11,0x7b,0x88,0xf6,0xc1,
0x81,0x17,0x7d,0x92,0x94,0xac,0x71,0x23,0xc,0xe5,0x17,0xf3,0xa5,0x4b,0x6e,0x4a,
0xb6,0x39,0x75,0xb8,0xff,0xe9,0x4f,0x7f,0xc2,0xdd,0x77,0xdf,0x8d,0x5b,0xff,0xf8,
0x47,0x12,0xec,0x16,0x8b,0x93,0x94,0x12,0x29,0x16,0x7a,0xa7,0x6f,0x33,0xeb,0xd4,
0x7,0xc8,0x3c,0x66,0xdd,0xba,0xf4,0x8a,0x67,0xe3,0xca,0xb7,0xbc,0x27,0x7a,0xf8,
0x18,0x41,0x4a,0x65,0x57,0x2e,0x61,0xf1,0x29,0xd3,0xb0,0x78,0xe6,0x54,0xd4,0x98,
0xd2,0xe5,0xc8,0xe1,0x98,0x43,0xcd,0x55,0xc1,0x34,0x98,0x21,0x51,0xde,0x5a,0x2c,
0xe2,0xf6,0xa5,0xf,0x62,0xcb,0xc0,0x0,0xca,0x9a,0xbe,0xcf,0x6b,0xf9,0x61,0x97,
0x33,0x38,0x71,0x50,0xa3,0x56,0xf5,0x10,0x9,0x28,0xe6,0xf1,0xfa,0xfd,0x3a,0x97,
0xc0,0x11,0xe2,0x86,0x9f,0x44,0x9,0x79,0x36,0xaa,0x24,0x1b,0xd5,0xe3,0xd4,0x6a,
0x57,0x3f,0xfa,0x18,0x1e,0x7d,0xf0,0x7e,0xeb,0x5c,0x2c,0x30,0xf4,0xb3,0x41,0xca,
0x1f,0x5f,0x4b,0xb5,0xcd,0xa7,0x80,0x8a,0xc0,0x46,0x4b,0x41,0x55,0xa6,0x76,0x2b,
0x6d,0x4e,0x45,0xaa,0x46,0x6c,0xa8,0xbe,0xfb,0x40,0x50,0x88,0x9a,0x56,0xf,0x2c,
0x5c,0xb0,0x0,0xe7,0x9c,0x7b,0x2e,0x2e,0xb9,0xe4,0x2,0xd3,0xc2,0xe5,0x23,0x16,
0x31,0x34,0x36,0x36,0xa1,0x42,0x41,0x1b,0x11,0x8d,0x9e,0xb2,0xd7,0x8d,0x63,0xe9,
0xe1,0x31,0xc5,0x86,0xff,0x44,0xa8,0x26,0xcb,0x10,0xb,0xed,0x53,0x4e,0x3d,0xcd,
0x4,0xb6,0x3e,0xf,0x62,0x48,0x3c,0xf5,0xee,0x2b,0xae,0xb8,0x2,0xa7,0x9f,0x3e,
0x17,0x67,0x9c,0xb9,0xc8,0xe2,0x53,0x57,0x57,0x8f,0xb6,0xb6,0x36,0xa,0xbc,0x1c,
0x89,0x40,0x6e,0xa0,0xc8,0xc5,0xa1,0xf8,0xe8,0xa8,0xcf,0xbd,0xd4,0xba,0x6f,0xbc,
0xf1,0x26,0x2c,0x95,0x2b,0xed,0xc1,0x7,0x48,0x44,0x3b,0xad,0x83,0xb8,0xab,0xab,
0x93,0x2,0xac,0xc8,0x7b,0xa9,0xe1,0xf3,0xf9,0x12,0x56,0x72,0x1f,0xc5,0xee,0x11,
0xea,0xb2,0xf6,0x6e,0x59,0x2,0xd2,0x6c,0x2d,0x6d,0xfc,0xcf,0xa7,0xf0,0xb4,0x59,
0xdf,0x2c,0x30,0xf5,0x6b,0xc9,0x32,0xe8,0xa7,0xdc,0x14,0x79,0x37,0xb6,0x4f,0xc4,
0xa9,0xa7,0xcd,0xc7,0xd4,0xe9,0xd3,0xd1,0x38,0x69,0x22,0xf2,0xb5,0x35,0x48,0xd7,
0xe4,0x91,0xad,0xab,0x43,0x26,0x97,0x45,0x6e,0xa0,0x82,0xcd,0x1b,0xd6,0x63,0xc3,
0xfa,0xb5,0x78,0x7c,0xe5,0xa3,0xe8,0xee,0xdc,0x83,0x80,0x71,0x29,0xf5,0xf6,0x5a,
0xbf,0x8f,0xca,0x5d,0x9d,0xea,0x52,0x3a,0xfd,0x84,0x66,0x6d,0x9b,0xad,0x6b,0xf1,
0x31,0xcd,0x7c,0x9f,0x9c,0x8b,0x10,0x77,0x14,0xc7,0xe5,0xab,0x4e,0xf1,0x32,0x89,
0xa7,0xb9,0xb9,0xd9,0x5c,0x67,0xb,0x17,0x2e,0xc4,0x79,0xe7,0x9e,0x87,0xc6,0xa6,
0x7a,0xb4,0x8f,0x6b,0xb3,0x4e,0xf5,0x7c,0x2e,0x6f,0xe5,0xac,0x8d,0xad,0xd2,0xd4,
0x38,0x34,0x38,0x40,0x30,0x21,0xaf,0x6b,0x6c,0x33,0x7,0xa0,0x32,0x7c,0x99,0xaa,
0x73,0xf9,0xf6,0xdb,0xef,0xc0,0x9d,0x77,0xde,0x41,0xb2,0xdd,0x68,0x43,0x54,0xbb,
0xba,0x7a,0xcc,0x2d,0x55,0x2a,0x31,0xd,0xcc,0x33,0x59,0x82,0x1a,0xd9,0xb4,0xbf,
0x58,0x49,0x49,0xcd,0xa6,0xe5,0x23,0x4d,0xbb,0xc8,0x32,0x7b,0xdb,0x7b,0xde,0x8f,
0x29,0x97,0x3f,0xab,0xfa,0xed,0xd8,0x40,0xb2,0xcc,0xbc,0x4d,0x4b,0x15,0x2b,0xe1,
0xa2,0x59,0xb3,0xb1,0xb0,0x65,0x2,0x75,0x86,0xc8,0x1d,0x37,0x1a,0x31,0x6a,0xc8,
0x41,0x95,0xca,0x1a,0x36,0xff,0xb,0xd9,0x38,0xa5,0x88,0x48,0xf3,0xfe,0xdd,0xf2,
0x15,0xd8,0xa6,0xc6,0xcf,0x2,0xd0,0xc8,0x24,0x41,0x3b,0x3c,0x8d,0x24,0x4,0xd4,
0x44,0x6d,0x84,0x8f,0x1a,0x3d,0xb3,0x5b,0x6e,0x17,0xc5,0x34,0x43,0xad,0xcb,0x46,
0xe0,0x74,0x75,0xa1,0x4f,0x1d,0x9f,0x3b,0x77,0x61,0xdd,0x8a,0x87,0xcd,0xcf,0xbc,
0x79,0xfd,0x3a,0x5b,0x14,0x58,0xfd,0x7,0x7e,0xa2,0x6c,0x2,0xcb,0x4,0xa,0x8f,
0x22,0x48,0xe5,0x85,0x88,0xc0,0x9a,0x3a,0x8f,0xd2,0x79,0xe5,0x6e,0x8a,0x96,0x5,
0xe1,0x25,0xe6,0x47,0x1c,0xe4,0x13,0x97,0x4f,0x59,0x42,0x76,0x1c,0x85,0x46,0x6b,
0x6b,0x1b,0x89,0xe0,0x42,0x2c,0x98,0xbf,0x0,0xe7,0x5f,0x70,0xbe,0x59,0xa,0x42,
0x58,0x39,0x70,0xe4,0x8a,0x70,0x40,0x6e,0xf2,0xc5,0xfa,0x3b,0x14,0xc,0x57,0xb9,
0x5e,0xfd,0x17,0x7f,0x89,0xdf,0xfc,0xe6,0x37,0x96,0x1f,0x22,0x18,0x43,0x35,0x6d,
0xc2,0x8f,0x7f,0xfc,0x63,0xb3,0xc,0xc2,0x50,0x8e,0x25,0x11,0x4a,0xd4,0x21,0x2b,
0x97,0x49,0x99,0x1a,0xec,0x76,0xa,0xfd,0x3d,0x7b,0xf6,0x98,0xcb,0x62,0xe5,0xca,
0x95,0x78,0xe0,0x81,0x7,0x70,0xcf,0xbd,0xf7,0x62,0xcb,0x96,0x2d,0xf6,0x4c,0x69,
0xc4,0x3a,0xe,0x57,0xb3,0xed,0xd2,0x90,0xa8,0x1b,0xc1,0xe9,0x2,0xa3,0xa1,0xbc,
0xd2,0xbb,0x2,0xb9,0x65,0xf8,0x9d,0x66,0xd4,0xd7,0x33,0xaf,0xbc,0x86,0x3a,0xd4,
0x34,0xd3,0x6a,0x99,0x3e,0xd,0x93,0x66,0x9d,0x66,0x1d,0xed,0x75,0xd,0xcd,0x28,
0xd0,0x92,0xeb,0xe9,0xed,0x47,0x79,0x60,0x27,0xfa,0x3b,0xbb,0xd1,0xb3,0x7d,0x27,
0xb6,0xaf,0xdd,0x80,0x2d,0x6b,0xd6,0x53,0x7b,0x7e,0xd4,0x2c,0x5,0xcd,0xbc,0x4e,
0xb2,0xec,0xa3,0x2e,0x60,0x11,0xc0,0x5e,0xd2,0x16,0xcc,0x2a,0x61,0x7e,0xea,0x8d,
0xe6,0xa2,0xe0,0x8f,0x14,0x6f,0x9,0x58,0xa5,0xc1,0x5c,0x7a,0x14,0xa6,0x8a,0xe7,
0xa4,0x9,0xed,0xa8,0xa7,0x15,0x35,0x6d,0xda,0x34,0xcc,0x99,0x33,0xc7,0x48,0xfd,
0x5c,0x92,0xfa,0xcc,0x19,0x33,0xcd,0xe2,0x8c,0x48,0x5c,0x20,0xe9,0xee,0x6f,0x66,
0x58,0x66,0x44,0x79,0x1d,0x91,0x72,0x94,0x9,0xc9,0x64,0xc6,0xc8,0x43,0xbf,0xf5,
0xd9,0xae,0x44,0xda,0xdb,0xb6,0xee,0xc2,0xee,0xdd,0x1d,0xd8,0xba,0x75,0x1b,0xee,
0xb8,0xe3,0xe,0xac,0x5a,0xb5,0xca,0x8e,0x52,0x46,0x44,0xac,0x7b,0x71,0x60,0x3d,
0xb0,0xb7,0xe,0xb9,0xa4,0x34,0x28,0x5f,0x4b,0x65,0x2a,0x16,0x9e,0xc4,0x66,0x5,
0x73,0xcf,0x3e,0x7,0x6f,0xf8,0x9b,0xbf,0x45,0xa1,0xa9,0x69,0x90,0xa0,0x75,0xcf,
0x68,0x87,0x26,0xf9,0x95,0x53,0xca,0x5b,0x1f,0x75,0xc5,0x32,0x2e,0x9e,0x35,0xf,
0xf3,0x27,0xb7,0xf3,0xf3,0x5e,0x2b,0x7d,0x34,0x61,0x74,0x92,0x3,0xff,0xba,0x2a,
0x65,0xdc,0xfb,0xd8,0x32,0xac,0xec,0x18,0x40,0x49,0xd,0x3c,0xcb,0x4a,0x46,0xed,
0xc4,0x86,0xe0,0x8f,0xb0,0x8a,0x96,0x62,0x5c,0x33,0x6c,0xf4,0x1a,0xc9,0xe0,0xf7,
0x17,0xf0,0xc0,0x3d,0xf7,0xe2,0x81,0x7b,0xef,0xc1,0x23,0x4b,0xee,0x45,0x59,0x1a,
0x2d,0xd3,0x54,0x1e,0x28,0xd8,0xd8,0x73,0xb9,0x34,0x92,0x64,0x1,0x11,0xa0,0xfc,
0xf2,0x82,0xf6,0xb7,0x56,0x8a,0xe2,0xf6,0xae,0x63,0x69,0x48,0x3d,0x93,0x6,0xa8,
0xe,0x43,0xcd,0xf,0x90,0x60,0x54,0x23,0x17,0x34,0x5b,0xf7,0xb2,0xa7,0x3f,0x1d,
0x2f,0x7b,0xe9,0x4b,0x4c,0x1b,0x97,0x9b,0x41,0x50,0x3,0xaf,0x68,0x96,0x73,0xb5,
0xe1,0xea,0x68,0xd0,0x62,0x62,0x87,0x2,0x69,0xd1,0xb1,0x90,0x7b,0x12,0xc,0x57,
0xb9,0xbe,0xfc,0xf,0xff,0x8c,0xcf,0x7c,0xe6,0x33,0x51,0x3c,0xe2,0xea,0xc7,0x43,
0x5c,0x6a,0x1a,0x26,0x79,0xe3,0x8d,0x37,0xe,0xa,0xc6,0xa5,0x4b,0x97,0xda,0x78,
0x79,0x5d,0x5b,0xb2,0xe4,0x7e,0xf4,0xf7,0xf7,0xdb,0x90,0x4f,0x69,0xab,0x72,0x5d,
0x18,0xc1,0x50,0xa8,0xeb,0x59,0x4a,0x8f,0x3e,0xeb,0x3c,0x69,0xa2,0x77,0x5f,0x44,
0x6e,0xa3,0xea,0x39,0xef,0xd1,0xef,0x8b,0x54,0x26,0xb4,0x10,0x9c,0xea,0xd7,0xf4,
0x79,0xf3,0x30,0x97,0xa4,0x79,0xda,0x82,0x45,0x68,0x9f,0x32,0x1d,0xbd,0x3d,0xdd,
0x48,0x67,0x49,0xd1,0x8c,0x47,0x96,0xc7,0x81,0xce,0x2e,0xac,0xa2,0x6,0xbd,0x82,
0x71,0x7a,0x9c,0xc7,0x22,0xad,0xb9,0xac,0x8a,0x4d,0xe4,0xaf,0xf7,0x52,0x93,0xaf,
0x90,0xd4,0x52,0x2c,0x6f,0x55,0x43,0xb9,0x62,0xb4,0x4c,0xb7,0x2c,0xf,0x3f,0xc9,
0x77,0xb0,0x6c,0x87,0xe6,0x89,0xc5,0x81,0xef,0xd7,0xbd,0x43,0xe3,0x5f,0xa4,0x55,
0x30,0x75,0xea,0x54,0xbc,0xe8,0x45,0x2f,0xc2,0x65,0x97,0x5d,0x66,0x16,0x81,0xba,
0x8e,0x94,0x67,0x71,0x79,0xe9,0xdc,0xc4,0x33,0x7f,0x53,0xa2,0x5,0x1d,0x93,0x7c,
0x45,0x7d,0x13,0x7,0xe4,0x3c,0xef,0xab,0x5a,0xd4,0x7a,0xbe,0xdc,0x41,0x4a,0x7b,
0x81,0x79,0x28,0xa2,0xbe,0x83,0x16,0xc1,0xd,0xff,0x77,0x83,0xe5,0x69,0xb1,0x40,
0x8b,0x84,0x79,0xaf,0xfb,0x54,0x97,0x4c,0x80,0x33,0x3d,0x3a,0xdf,0x47,0x88,0x93,
0xd4,0xf4,0x37,0x14,0x96,0x3a,0x59,0x60,0xbc,0x4f,0xf1,0x8c,0xad,0xc3,0xee,0x6c,
0x1d,0xb2,0xb9,0xc,0xae,0x7a,0xc9,0x4b,0x48,0xe,0xe7,0xc3,0xcf,0xe6,0x99,0x4f,
0x25,0xd4,0xd4,0xd4,0x58,0xe7,0xf7,0x58,0x80,0x66,0x7c,0x8b,0xe6,0x3d,0x59,0xf0,
0x7e,0xc9,0x26,0x69,0xfe,0x5,0x2d,0xdf,0xda,0x6a,0xb9,0xec,0x93,0x77,0xa3,0x0,
0xa3,0xc7,0xad,0xc4,0xc6,0x67,0x9d,0x9a,0x9,0xf,0xfd,0x34,0xc7,0x1f,0xd8,0xb4,
0x11,0x4b,0x37,0xac,0x46,0x39,0x99,0x37,0x2d,0x4b,0x15,0x39,0xda,0xcc,0x87,0xf7,
0x4a,0x65,0x3b,0x41,0xd0,0x2c,0x63,0x9,0x7b,0xcd,0x70,0xd,0x2a,0x3e,0xf2,0xcc,
0xde,0xde,0x35,0xab,0xf1,0xeb,0x9f,0xfe,0x4,0xab,0x1e,0x5d,0x89,0xce,0x8e,0xe,
0xfb,0x5e,0x1d,0xbc,0x9,0x12,0x81,0x34,0x62,0x69,0xae,0xfa,0xac,0xbf,0x1,0x75,
0xda,0xb1,0xd,0xab,0x19,0x4b,0x53,0xd3,0xa8,0xa0,0xc1,0xf6,0xa7,0x76,0x57,0x3d,
0xd5,0x30,0x47,0x15,0xdd,0xc4,0x9,0x13,0x70,0x1a,0x5,0xda,0xa2,0x85,0xb,0x31,
0x73,0xe6,0x4c,0xeb,0x8c,0x9d,0x3c,0x79,0x92,0x69,0x93,0xfa,0xde,0x3a,0x97,0x29,
0xf6,0x54,0x31,0x63,0xe1,0x23,0xc8,0x97,0xae,0xcf,0x83,0xc4,0x20,0xc4,0xec,0x33,
0x4,0xc3,0x57,0x8e,0xfd,0x45,0xc2,0xc1,0x31,0xa8,0x29,0xf,0xc1,0x9f,0xfe,0x7c,
0x37,0x5e,0x4a,0xc2,0x92,0x15,0x30,0x5c,0x83,0x91,0x85,0x70,0xd1,0x85,0x17,0x62,
0xfb,0xce,0xe,0xac,0x5e,0xbd,0x86,0x42,0x49,0x2,0x97,0xf9,0x24,0x97,0x5,0xbf,
0x93,0x0,0x52,0x5d,0x48,0xa5,0x94,0x26,0x59,0x16,0x52,0x1e,0x32,0x24,0x61,0xe6,
0x29,0x65,0x91,0x2c,0xc7,0x4,0x5,0x72,0x22,0x53,0xb2,0xc9,0x57,0xa0,0x76,0xec,
0x4b,0x38,0x33,0x31,0x1,0x8f,0xcd,0xe3,0xc7,0x63,0xfc,0xb4,0xa9,0x68,0x63,0x3e,
0x35,0xd2,0x32,0x68,0xa0,0x35,0xd5,0xd8,0xda,0x82,0xe6,0x96,0x66,0xe4,0xf2,0x79,
0x1b,0x39,0xb5,0x7d,0xcb,0x66,0xec,0xde,0xb0,0x11,0x3b,0xd5,0x39,0xbc,0x73,0x7,
0xba,0x58,0x6e,0x5a,0x60,0xae,0xdc,0xdd,0x6d,0xef,0x4b,0x33,0xde,0x91,0xb,0x4a,
0x79,0xcc,0x48,0x33,0x5e,0x12,0xfc,0x72,0x19,0xda,0x3a,0x3b,0x54,0x54,0x8c,0xae,
0x55,0xf,0x74,0x3,0xeb,0x66,0x2a,0xc9,0xf4,0x9a,0x56,0x2f,0x4d,0x5a,0x6e,0x98,
0xa4,0xd,0xf9,0x3d,0x63,0xf1,0x22,0xcc,0x9a,0x79,0x8a,0x59,0x3,0xea,0x30,0x9e,
0x4c,0xcb,0xe4,0x94,0x39,0xb3,0x90,0xcf,0xd7,0xe8,0x56,0x2b,0x27,0xcb,0x17,0xf1,
0x1a,0x2f,0x58,0x5d,0x67,0x24,0x54,0x77,0x54,0x10,0xba,0x16,0xcf,0x50,0xd6,0x33,
0x55,0xe6,0xf6,0x43,0xfd,0x46,0x9f,0x99,0x57,0x8f,0xb1,0xee,0xad,0x5f,0xbd,0x1,
0xf,0x3c,0xf4,0x0,0x36,0x6e,0x5a,0x8f,0xd5,0x6b,0x57,0x63,0xeb,0xb6,0xad,0xd8,
0xbc,0x71,0xcb,0x60,0xbd,0x50,0xfe,0xaa,0xf,0xc3,0x3c,0x40,0xfc,0x6c,0xd5,0x81,
0x41,0xee,0x38,0xbb,0x66,0x19,0x1d,0x9a,0xc0,0x57,0x7d,0x4d,0x5,0x24,0xaa,0x4a,
0xa,0x65,0xfe,0x46,0xe4,0xac,0x75,0xcb,0x52,0xe9,0x1c,0xc6,0x4f,0x9f,0x89,0xd6,
0xf1,0xed,0x18,0x37,0x69,0x2,0x1a,0xdb,0x98,0xaf,0xad,0xad,0xa8,0x99,0x30,0x11,
0x35,0xb5,0xb5,0x24,0x3d,0x5a,0xfd,0x5e,0x9a,0x65,0x91,0x80,0xc7,0xf6,0xa1,0xf7,
0x68,0x84,0x56,0x6c,0xd5,0x8c,0x66,0xf8,0x89,0x14,0xeb,0x9e,0x14,0x1,0xd6,0x50,
0x16,0x96,0x14,0xda,0xf1,0xcc,0x9b,0x4b,0xd8,0x36,0xa7,0xd6,0xd7,0x9a,0xaa,0xa2,
0x65,0xe4,0x25,0xaf,0xa2,0xd2,0x19,0xd9,0x18,0x35,0xe4,0x20,0x21,0x10,0x92,0x91,
0xc5,0xce,0x8f,0x6e,0xd9,0x89,0xbb,0x68,0xea,0xf6,0xa7,0x35,0x64,0x6c,0x64,0x65,
0x73,0x91,0xa6,0x4b,0x56,0xe4,0x40,0xa1,0x58,0xae,0x94,0x50,0x4b,0x21,0xf0,0xa5,
0xbf,0x7d,0x1b,0xba,0xb6,0x6e,0xb5,0xef,0xd5,0x18,0xc,0xcc,0xf5,0xe1,0x62,0x1e,
0x13,0x9d,0x10,0x1f,0xb3,0x99,0xa4,0xb9,0x85,0x34,0x3c,0x53,0x7e,0xf7,0xf3,0xce,
0x3b,0xf,0x67,0x2c,0x5a,0x8c,0xe7,0x3d,0xef,0x79,0x83,0x43,0x46,0x75,0xaf,0x26,
0xaa,0x45,0xa3,0x86,0x86,0xa2,0xda,0xc2,0x4f,0x18,0xf6,0x8f,0xf,0xb0,0xe2,0xb1,
0x35,0x36,0xbc,0x51,0xcb,0x4a,0xc4,0xf9,0x61,0x31,0xac,0x66,0x88,0xae,0x29,0x3d,
0xa1,0x4,0x20,0x3f,0xab,0xb1,0xc5,0x90,0x65,0x28,0xeb,0x51,0xbf,0xa8,0x2a,0xc2,
0x6c,0x84,0x81,0xcd,0x3a,0x66,0xe2,0x21,0x7,0x9c,0xec,0x28,0xed,0x19,0x51,0xdb,
0xd2,0x62,0xe3,0xeb,0x73,0xf9,0x3a,0xcc,0x9a,0x7b,0x1a,0x66,0x9c,0x32,0x1b,0xd3,
0x16,0x9d,0xc6,0xe7,0x93,0x28,0xa8,0x21,0x97,0xb,0x1a,0xd6,0xeb,0xf3,0xbc,0x88,
0x1d,0x5b,0xb6,0x60,0xc3,0xda,0xb5,0x58,0xfe,0xe0,0x12,0xec,0xde,0xb5,0x13,0xa9,
0xe2,0x0,0xe9,0x26,0xb2,0xa4,0x6c,0xb4,0x17,0x61,0x42,0x34,0x7e,0xe9,0x10,0x48,
0x10,0xd8,0x51,0x42,0xa1,0x1a,0x57,0xfd,0x46,0x5a,0xb8,0x20,0x8d,0xde,0x86,0x86,
0x52,0x73,0x6e,0x69,0x69,0xc2,0x69,0xa7,0x9d,0x66,0x7d,0x4,0x9a,0x1c,0xa6,0x65,
0x38,0xb4,0xb0,0x9d,0x4,0xae,0x34,0xf4,0xc1,0xfc,0x30,0xed,0x7f,0x5f,0x24,0x2a,
0x7b,0x3b,0x8a,0xe3,0x7e,0x16,0x9,0x6c,0x11,0x8d,0xc8,0x42,0xfd,0x28,0xf2,0xff,
0x77,0x75,0xf5,0x62,0x1b,0x89,0xec,0xa6,0x9b,0x6e,0xc2,0xbd,0xf7,0xde,0x6b,0x1d,
0xc5,0x36,0xfc,0x98,0xc2,0x4b,0xae,0x3a,0x59,0xa6,0xb6,0x6e,0x14,0x85,0x39,0xed,
0x16,0xcb,0x77,0xa5,0x80,0xb7,0x18,0xb2,0x1a,0x14,0x55,0x3d,0x17,0xe9,0xe9,0x86,
0x22,0x6f,0x30,0x4b,0xc0,0x48,0x28,0xc9,0xb8,0xd2,0xa,0x25,0x79,0x79,0xd4,0xfc,
0xdb,0xa8,0xa0,0xcc,0x5b,0xb8,0x8,0xd3,0x49,0x70,0xed,0x93,0xa6,0xa2,0xec,0x53,
0xf8,0x93,0x59,0xe4,0x42,0xf2,0x95,0x37,0x2c,0x17,0xf5,0x53,0xed,0xf,0x89,0x48,
0x8d,0xfc,0x9a,0x30,0x61,0x3c,0x6f,0x39,0x91,0x75,0xf4,0xd8,0x41,0xa,0xc3,0x44,
0xe6,0xfb,0xf3,0xcf,0x5c,0x8c,0x3a,0x65,0xb4,0xda,0xa7,0x91,0x78,0xf5,0x86,0x11,
0x8c,0x51,0x44,0xe,0xac,0x68,0xac,0x6c,0xeb,0xf6,0xec,0xc1,0x6d,0xcb,0x1f,0x41,
0x37,0x33,0xba,0xc4,0x4c,0xce,0xc,0xd3,0x58,0x4f,0x24,0x64,0x39,0x78,0xd4,0x5c,
0xd5,0xb8,0xb4,0xe6,0xfb,0x3d,0xbf,0xba,0x1e,0xbf,0xfa,0xf6,0xbf,0x51,0xa8,0x55,
0x5d,0x1d,0x6c,0x60,0x6,0x9e,0x4b,0xeb,0xdc,0x1f,0x32,0xe7,0x75,0xdf,0xa2,0xc5,
0x8b,0x6d,0xa2,0x96,0xc2,0x94,0x29,0x13,0x8c,0x14,0x24,0x64,0x34,0x72,0x47,0x82,
0x33,0x2d,0xed,0x8b,0xf7,0x6a,0x12,0x96,0x3a,0x48,0x55,0x8a,0x1e,0x2b,0xde,0x3e,
0x96,0x80,0x41,0xef,0x38,0x91,0x45,0x7c,0x60,0xf9,0x6c,0xdb,0xb1,0xc7,0x88,0x6d,
0xfd,0xfa,0xf5,0x83,0x4,0x68,0x31,0x1c,0xd2,0x60,0x4c,0x48,0x4a,0x0,0x56,0x7f,
0xaf,0xdc,0x8a,0x40,0x21,0x47,0xed,0x4c,0x1a,0x98,0x36,0x8e,0x9,0xd9,0xf0,0xa,
0xcc,0x87,0x5c,0x4d,0x16,0x53,0x4e,0x99,0x89,0xe9,0xa7,0xcf,0xc3,0x8c,0xd3,0xe7,
0xa2,0x9e,0x42,0xb8,0xe4,0xd7,0x52,0x20,0xa7,0x51,0x47,0x6b,0x20,0x9f,0xcf,0xa2,
0x63,0xe7,0x4e,0x3c,0xba,0x72,0x99,0xcd,0x22,0xde,0xbe,0x72,0x25,0x8a,0x14,0xa6,
0x95,0x42,0x1,0xa5,0xde,0x2,0x2a,0x3e,0xf3,0x94,0xf5,0x49,0x19,0x69,0xce,0x1a,
0x9e,0xfa,0x14,0xd0,0x71,0xfc,0x62,0xa1,0x3d,0x8c,0x71,0xc5,0xb8,0x55,0xd3,0xc0,
0xdf,0x6a,0x62,0x9c,0xee,0x3d,0xed,0xf4,0xd3,0xad,0xec,0x9e,0xce,0xa0,0xe1,0xbe,
0xcd,0x4d,0xcd,0x8c,0x43,0x86,0xf2,0x34,0x1a,0x9,0x26,0xab,0x49,0x30,0xb,0xd2,
0xce,0x22,0xe1,0x3b,0x8,0xd6,0xa3,0x3,0x30,0xb4,0xa3,0x98,0x5f,0x77,0x75,0x75,
0xe1,0xa6,0x9b,0x6f,0xc2,0xfd,0xf7,0xdf,0x8f,0x3f,0xff,0xf9,0x76,0xec,0xde,0xbd,
0xdb,0x96,0xf0,0xe8,0xe9,0xed,0xa3,0xb5,0x15,0x91,0x87,0x48,0x44,0xee,0x27,0x9f,
0x75,0x44,0xc3,0x81,0x25,0xa4,0x65,0xa9,0x46,0xb4,0xab,0x1a,0x18,0xd5,0x55,0x71,
0xab,0x8e,0x7a,0x6b,0xd6,0xf7,0xac,0x43,0x5e,0xd7,0xca,0x4c,0xb0,0x86,0xf3,0xd6,
0x34,0x4c,0xc2,0xe9,0xb,0x17,0x60,0x6,0x2d,0x9b,0x89,0xd3,0xa7,0xc0,0x63,0x7e,
0x6,0x75,0x79,0x4,0x72,0xb9,0xc9,0x3d,0xa8,0x77,0xf1,0x59,0x32,0x22,0x52,0xb4,
0x26,0x44,0x5a,0x22,0x1f,0xbd,0x83,0x8f,0xb1,0x77,0x1e,0x0,0x96,0xa3,0xfa,0x21,
0x9a,0x9b,0xe5,0xf2,0x1c,0xbe,0x13,0x7c,0xb4,0xa3,0x44,0xa9,0x95,0x63,0x19,0x4c,
0x66,0x7b,0x7d,0xf6,0xb9,0xe7,0xa1,0x4e,0xe3,0xb7,0x99,0xc9,0x36,0xe4,0x78,0x84,
0x63,0xc4,0x93,0x83,0xa2,0xa7,0x4a,0xae,0x7e,0x85,0xad,0xac,0xf8,0x7f,0x5c,0xbe,
0x14,0xbb,0x3,0x6a,0x7c,0x6a,0xbd,0x6c,0xc6,0x23,0xaf,0xf3,0x99,0xb1,0x62,0x8e,
0x6a,0x11,0xbc,0x2c,0xc9,0xe1,0x9f,0xdf,0xf7,0x7e,0x6c,0x5b,0xf1,0x18,0x73,0x3a,
0x8a,0xa7,0xd2,0x12,0x6b,0xf9,0xd2,0x24,0x27,0x4d,0x9e,0x64,0x1d,0x9c,0x53,0xa6,
0x4c,0x36,0x5f,0xfb,0x9c,0xd9,0xa7,0xda,0xf2,0xce,0xe9,0x21,0x5a,0xa4,0x46,0x79,
0xc,0x87,0x3,0x52,0xce,0xd6,0x1d,0x35,0xc5,0xa1,0x50,0xf1,0x9e,0xc8,0x22,0x3e,
0x90,0x1c,0xa,0xa5,0xa,0x9e,0xff,0xfc,0xe7,0x9b,0x56,0x3b,0x28,0x10,0x19,0x6d,
0x8b,0x29,0xcb,0x5b,0xd7,0x14,0x12,0x65,0x6a,0xb8,0xf2,0x5,0xa5,0x34,0x14,0x92,
0x5f,0x52,0x8,0xe5,0x9a,0xea,0x51,0x3b,0xb1,0x15,0x75,0xb5,0xf5,0x68,0x6a,0x1d,
0x87,0x29,0xd3,0x66,0x60,0xca,0xd4,0x69,0xa8,0x9d,0x36,0xcd,0x3a,0xf9,0x8b,0x14,
0x8c,0x5d,0x1d,0xbb,0x6d,0x99,0x8d,0x81,0xde,0xdd,0xd8,0xb6,0x79,0x33,0xb6,0x6f,
0xd9,0x88,0x75,0x8f,0xaf,0x42,0x79,0xa0,0x7,0x4d,0xa5,0xea,0x8,0xa5,0x24,0xcd,
0x7e,0xb,0x7a,0x30,0x5f,0x5f,0x55,0x32,0xd4,0x4f,0xa1,0x38,0x44,0x21,0x12,0xb0,
0x76,0x5d,0xf1,0xe1,0xb9,0x2c,0xe,0x7d,0x27,0x17,0x8e,0xac,0x1,0x4d,0xf8,0x9b,
0x3a,0x65,0x12,0x26,0x4c,0x9c,0x68,0xe5,0x37,0x77,0xce,0x1c,0x9c,0x71,0xc6,0x99,
0xe6,0x4b,0x3f,0xb0,0x80,0xe4,0x6,0xda,0xb7,0x2c,0xf8,0x28,0x1b,0x44,0x10,0xb,
0xf1,0x38,0xfd,0x1,0x5,0xab,0x8e,0xe5,0x52,0x19,0x9b,0x98,0x6,0x75,0xb6,0x6f,
0xda,0xb4,0xd,0x6b,0xd6,0xac,0xb6,0x19,0xda,0xf,0x3e,0xf0,0x20,0x36,0x6f,0xd9,
0x6c,0xcf,0x90,0xa2,0xa0,0x3a,0xa5,0x79,0x6,0x82,0x11,0x69,0x5c,0x77,0xaa,0xd0,
0x73,0x75,0xc9,0x68,0x21,0xf2,0x83,0xf1,0x3e,0xda,0xd,0x1,0x95,0xb,0x5e,0x57,
0x33,0x4a,0x92,0x48,0x1b,0xd4,0x49,0xcc,0x7c,0xad,0x6f,0x69,0x36,0xb7,0xd0,0xa4,
0x69,0x53,0x2d,0x64,0x6b,0xc7,0xd1,0x42,0x21,0x59,0x32,0x9b,0x44,0x18,0x51,0xb3,
0x13,0x1d,0x8,0x22,0x19,0xe5,0x5f,0x44,0x36,0xd2,0x96,0x5,0x1d,0xe2,0xe4,0xe,
0x6b,0x18,0x28,0x1e,0xbc,0x41,0x13,0x25,0xeb,0xeb,0xe5,0x42,0x8b,0x9e,0x36,0x96,
0xa0,0xf5,0xb0,0x64,0xf9,0x66,0x82,0x10,0xa7,0xd3,0x42,0x3a,0x77,0xe6,0x4c,0xd4,
0x48,0x89,0x1b,0x5,0x69,0x1d,0x35,0xe4,0xd0,0x55,0x2c,0xe1,0x7f,0xef,0xbd,0x13,
0x7b,0x52,0x21,0x8a,0x64,0xdf,0x4c,0x90,0x42,0xce,0xd7,0x48,0x1e,0x91,0xc4,0xc8,
0x81,0x1a,0x87,0x1a,0x82,0x84,0xcf,0x96,0xc7,0x97,0xe1,0x9f,0xde,0xf1,0x6e,0x34,
0x24,0x3d,0x36,0xa8,0xa8,0x32,0x68,0xae,0xc0,0xeb,0x5f,0xff,0x7a,0xbc,0xe5,0x2d,
0x7f,0x83,0x29,0x93,0x27,0x58,0xa3,0x96,0xa0,0x89,0xd3,0xa9,0xc6,0xa4,0x73,0x85,
0x78,0x74,0x43,0x25,0x39,0x4c,0x47,0xb1,0xda,0x55,0xf5,0x74,0x10,0x14,0x70,0x7,
0x76,0x14,0xab,0x78,0x4f,0x64,0x11,0xef,0x1f,0x1f,0xc6,0x26,0x91,0xc1,0x7,0x3e,
0xf0,0x1,0x7c,0xf7,0xbb,0xdf,0xb5,0x74,0xda,0x35,0x6,0x69,0x53,0xca,0x3,0x9,
0x4a,0x69,0xba,0x25,0x92,0x42,0xa6,0xb9,0xd,0x67,0x9d,0x7f,0x1,0xe6,0x9c,0xb6,
0x8,0x73,0xa8,0x8d,0x6b,0x8b,0xcd,0xee,0x42,0xaf,0xd,0xf7,0xd5,0xc2,0x80,0x52,
0xc4,0xd6,0xad,0x5e,0x83,0xe5,0x4b,0x97,0x58,0x47,0x7f,0x27,0xad,0x3,0x8f,0xea,
0xab,0x66,0x7f,0x67,0x28,0x74,0xa5,0x99,0x6a,0x38,0xae,0x56,0x25,0xe5,0xcb,0x6c,
0x29,0x11,0x69,0xc8,0x91,0xe5,0x21,0xad,0x99,0xc2,0x8c,0xe4,0x6b,0xae,0x21,0x6a,
0xbc,0xfc,0x85,0x62,0x12,0x35,0x5e,0x75,0x2c,0x57,0xcb,0x46,0x33,0xbc,0x75,0x7c,
0xc5,0xcb,0x5e,0x6a,0xb3,0xae,0xe3,0x85,0xf8,0x24,0xd0,0xc3,0x20,0x72,0xb,0xc5,
0xe5,0x15,0x97,0xe9,0xfe,0xc2,0xce,0x5c,0x45,0xb1,0xb4,0xac,0x42,0xca,0x75,0x58,
0xe5,0xfe,0x38,0x2f,0x76,0xec,0xd8,0x81,0x9f,0xfe,0xfc,0xe7,0xf8,0xfd,0xef,0x7f,
0x6f,0x73,0x32,0xe4,0x2e,0x92,0x5b,0x31,0xa0,0x64,0x8e,0xeb,0x85,0xde,0x31,0xb4,
0xbe,0xe8,0x3c,0xfe,0xbd,0xfd,0xbf,0x5f,0xe5,0xd0,0x47,0x2d,0x30,0xa8,0xa5,0xd2,
0xb5,0x5d,0x6e,0xd1,0xf2,0x21,0x81,0xc9,0xa7,0xcc,0xc7,0x59,0xe7,0x9d,0x83,0x79,
0x67,0x2c,0x42,0x4b,0x7b,0x1b,0x6,0x98,0x16,0x3f,0x51,0x63,0xcf,0x57,0x19,0x8,
0x7a,0xae,0xe6,0x70,0x68,0xa2,0x9f,0x10,0xa7,0x2b,0x81,0xb2,0xa8,0xc6,0xce,0xa0,
0xa5,0xcc,0xf9,0x17,0xbd,0x3b,0xba,0x2f,0x86,0x11,0xcf,0xbe,0x97,0x22,0x90,0x1c,
0x64,0x75,0x69,0x70,0xc1,0xb8,0x71,0x2d,0x7c,0x8f,0x9e,0x35,0xb6,0xa0,0xe5,0xec,
0x4b,0xac,0x8b,0x5a,0x25,0xba,0xa6,0x54,0xc0,0x85,0x33,0xa7,0x61,0xf1,0xe4,0xa9,
0xd1,0xe0,0x93,0x11,0x8e,0x11,0x49,0xe,0x72,0x1f,0xb1,0xc9,0x1a,0xe3,0x52,0xc9,
0x44,0x1f,0x1b,0xec,0x3d,0x8f,0xae,0xc4,0x63,0x1d,0x3b,0x6d,0xca,0xba,0xd6,0x89,
0xd1,0x6c,0x4f,0x1b,0xb9,0x34,0xc2,0x32,0x39,0x94,0x50,0x60,0xa3,0xca,0x50,0xb0,
0xfc,0xe2,0xbb,0xff,0x8e,0xbb,0xaf,0xbd,0x96,0x16,0x84,0x7c,0xe0,0x6c,0x21,0x4c,
0xcf,0xc2,0x45,0xb,0xf1,0xab,0x5f,0x5d,0x4b,0xcd,0x32,0x6f,0x2,0x2c,0x6e,0xd8,
0x36,0x9c,0x50,0x1d,0xae,0x7c,0x46,0x74,0x2d,0x7a,0x9e,0xa0,0x26,0x74,0x68,0x38,
0xd0,0x6e,0x38,0x72,0x1c,0xf8,0xc4,0xe1,0x63,0xc3,0x58,0x56,0x7d,0xef,0x43,0x91,
0xac,0xba,0x42,0x62,0x61,0x26,0x54,0x92,0x59,0xfc,0xe4,0xa7,0x3f,0xc1,0x9b,0xde,
0xf8,0x46,0xa,0xd7,0xaa,0x1f,0x9d,0x42,0x3c,0xdf,0xd2,0x8e,0xcb,0x9e,0xf7,0x22,
0xe4,0x1b,0x1b,0xd0,0xd2,0xda,0x80,0xe9,0xa7,0x9d,0xca,0xf3,0x7a,0x74,0xef,0xe9,
0xc1,0x96,0xd,0x9b,0xb0,0x65,0xe3,0x16,0x6c,0x5b,0xb7,0x1e,0x5d,0x9b,0x37,0xa2,
0xaf,0xa7,0xc7,0xe6,0xe,0x74,0xed,0xd9,0x63,0x23,0x84,0x72,0x55,0x19,0x15,0xf9,
0xd1,0x15,0x43,0xe5,0x61,0x24,0xd8,0x63,0x28,0x7f,0x4b,0x24,0x5a,0xe5,0x52,0x68,
0x6e,0x24,0xb9,0xe4,0x94,0xef,0xac,0x73,0xbe,0x2c,0x2,0x4d,0xdc,0xca,0xe0,0xd4,
0x39,0x73,0x71,0xda,0xbc,0x39,0x38,0xf7,0xfc,0xb3,0xad,0xc3,0x5f,0x33,0xc0,0xc7,
0x53,0xeb,0x9b,0x30,0x7e,0x2,0x85,0x61,0x6c,0x4d,0xf0,0x2d,0x7c,0xb4,0xd,0x21,
0xd5,0x76,0x97,0x4c,0x9f,0xde,0x14,0xa7,0x51,0x9f,0xa4,0xa1,0x6b,0xc2,0xa0,0xe6,
0x22,0xe8,0x7a,0x42,0xe5,0x2b,0x52,0x62,0x59,0x6b,0xc8,0xa8,0xfa,0x2,0x34,0x48,
0xe1,0x91,0x87,0x96,0xd3,0xa,0xd8,0x82,0x1d,0x3b,0x77,0x60,0x23,0xd3,0xd6,0xdb,
0xd7,0x8b,0x20,0xbd,0xd7,0xcd,0x22,0xca,0xd7,0x63,0x45,0x66,0x6c,0xb0,0x76,0xc5,
0x23,0x31,0x6a,0x56,0x72,0xae,0x14,0xbd,0x57,0xcb,0x38,0x28,0xb,0x64,0x0,0x69,
0x39,0x74,0xdd,0x53,0x24,0x61,0x5,0xb4,0x3e,0xd4,0xe9,0x3e,0xe5,0xd4,0xd9,0x68,
0xa2,0x85,0xd5,0xd2,0xd6,0x86,0x3a,0x5a,0x7,0xf5,0x9a,0xc7,0xd2,0xdc,0x8c,0xd0,
0xd3,0x2c,0xf0,0xa8,0xf3,0xd4,0x72,0x8e,0xef,0x49,0x51,0xf1,0x52,0xbe,0x89,0x20,
0x2d,0xa5,0x96,0xb0,0x6a,0xd0,0x79,0xf5,0x54,0x2b,0x93,0x2a,0xaf,0xa3,0xbb,0x4,
0xc5,0xcf,0xfe,0xb7,0x4f,0xd5,0x5b,0xab,0xbf,0x1b,0xfc,0x34,0x8,0x1b,0x8c,0xc1,
0xf6,0xec,0x31,0xad,0x6d,0x6d,0x4d,0xd1,0x3b,0xab,0x16,0xda,0x58,0x81,0x56,0x18,
0x50,0x19,0xc8,0x3a,0x4b,0x92,0x78,0xd3,0x94,0xd,0xcf,0x9d,0xbf,0x10,0xd3,0x9a,
0x9a,0x91,0x54,0xda,0x25,0xbe,0xe2,0xac,0x19,0x61,0x7c,0x31,0x22,0xc9,0x41,0x1b,
0x7b,0x9b,0xc9,0xca,0x9a,0xd6,0x43,0x6d,0xe9,0x1,0xa,0x86,0xa5,0xeb,0x36,0x22,
0xac,0x76,0xc,0x8e,0x64,0x14,0x19,0xf7,0x3c,0xb,0xb9,0x9e,0xc2,0xe2,0xe3,0x7f,
0xfb,0x56,0xf4,0xab,0x23,0x5a,0x6e,0x30,0x36,0x4,0x9,0xae,0x2f,0x7f,0xf9,0xef,
0xf1,0xba,0xd7,0xbf,0x16,0xd9,0x8c,0x66,0x30,0x8c,0xb8,0xac,0x1f,0x6,0x6a,0xa8,
0xfb,0x36,0xd6,0xe1,0x62,0x6d,0xa2,0x69,0x18,0x72,0x18,0xda,0x89,0xaa,0xaa,0x26,
0x92,0x8,0x13,0x9e,0x4d,0xa0,0x5a,0xb4,0x28,0xda,0x7,0x41,0x28,0x7,0x25,0xb4,
0x4e,0x9f,0x8d,0xd7,0xbf,0xfd,0x3,0xe8,0x1e,0xe8,0x47,0x5f,0xf7,0x2e,0xf4,0xee,
0xde,0x85,0x35,0xab,0x56,0xe1,0x91,0x25,0xf,0xa2,0x5c,0xa4,0x80,0x65,0x1e,0x6a,
0xbb,0x46,0x2d,0x10,0xa8,0xfc,0x1c,0x2a,0x44,0x9e,0xa8,0xa3,0x78,0x9f,0xfb,0x78,
0xae,0xdf,0x6a,0xcd,0x20,0x4d,0x1e,0xd3,0xac,0xeb,0xc9,0x13,0x27,0x40,0x6b,0x43,
0x9d,0x7e,0xfa,0x7c,0x5c,0x74,0xd1,0x85,0x91,0x66,0x2e,0x81,0xc9,0xc6,0x2c,0x61,
0x35,0x54,0x60,0xa9,0xbb,0xfb,0x0,0x54,0xd3,0x18,0x6b,0xdb,0xba,0x37,0x45,0x81,
0xa7,0x73,0xcd,0xcc,0xd6,0xc,0x62,0xa5,0xf7,0xe1,0x87,0x1f,0xc1,0x83,0xf,0x2d,
0xc5,0x1f,0xff,0xf8,0x47,0xb3,0xe,0xf4,0x5c,0x2d,0xaa,0x27,0x8b,0x49,0x93,0xd3,
0x6c,0x12,0x1e,0xff,0x4c,0xd3,0x96,0xff,0xa6,0x8a,0x38,0xf6,0xb6,0xea,0x2e,0x9f,
0xcd,0xd7,0x30,0xdf,0x74,0x93,0xee,0x91,0xf5,0xc3,0x53,0xd6,0xa7,0x5c,0x7d,0x1d,
0xf2,0xf5,0xb5,0xc8,0xd4,0xd6,0x61,0xc6,0xa9,0x73,0xcd,0x1d,0x34,0x73,0xce,0x3c,
0xa4,0x32,0x39,0xf4,0x33,0xcd,0x7e,0x3a,0x3b,0x98,0xfe,0x58,0x10,0x1f,0x9b,0xe6,
0x1f,0xc7,0x78,0x2f,0xe,0xb6,0xd2,0x6b,0x40,0xb3,0x29,0x93,0x11,0x39,0x50,0x58,
0xe,0xc9,0xe7,0xb1,0x8c,0x16,0x2a,0x7,0xcf,0x39,0xe7,0x2c,0xb4,0xb0,0x3c,0x6c,
0xd9,0x46,0x16,0xa3,0x8d,0x70,0x1b,0x61,0x69,0x1f,0x91,0xe4,0x20,0x8d,0x88,0xff,
0xa3,0xc0,0x46,0xb3,0xba,0xb3,0x13,0xb7,0x2f,0x7f,0x4,0xfd,0xbc,0x94,0xa0,0x50,
0x19,0xe9,0x28,0x33,0xde,0x79,0x36,0xbe,0xb5,0x4b,0x96,0xe0,0x9b,0x9f,0xfd,0xb4,
0x4d,0xa1,0x97,0x5b,0x43,0xd,0x59,0x2b,0x82,0x3e,0xfa,0xe8,0x23,0x14,0x6,0xbc,
0x91,0xd7,0x33,0x14,0xc,0x23,0x1f,0xaa,0xb0,0xfb,0x56,0xda,0xe1,0x2a,0x8c,0x69,
0xeb,0x52,0x1b,0xf7,0x47,0xd5,0x72,0x50,0x2d,0x53,0x67,0xbb,0x56,0x33,0xbd,0xe3,
0xae,0xbb,0x4d,0x40,0xe,0xed,0x73,0x48,0x50,0xe0,0xfb,0xb4,0x10,0xf3,0xd,0x6d,
0x28,0x16,0x8a,0x8,0x48,0x10,0xd2,0xb2,0xcc,0xc9,0x43,0xd5,0x5e,0x2,0xcd,0x96,
0xab,0x60,0x3,0xf2,0x49,0x44,0xfb,0x37,0xa4,0xe1,0x5e,0x2d,0x61,0x2b,0x1,0x5d,
0x66,0xc8,0xe7,0x72,0xd6,0x9,0x7e,0xd1,0xc5,0x17,0xe3,0xf2,0xcb,0x2e,0xb3,0x8e,
0x7d,0xb9,0x6a,0x34,0x74,0x55,0xab,0xbf,0x4a,0x83,0x95,0x70,0x37,0xd7,0x86,0xda,
0x2b,0xb5,0x6f,0x15,0x9b,0xde,0xb3,0xaf,0xd0,0x1a,0x46,0xc8,0xd,0xa6,0xb1,0x62,
0xfd,0x1,0x37,0xdd,0x74,0x33,0xfe,0xf0,0x87,0xdf,0x63,0xbd,0x36,0x41,0xea,0xed,
0xb1,0xc4,0xf7,0xf5,0xf5,0x53,0x10,0x92,0x1c,0x79,0x2e,0xf2,0x51,0x50,0x9a,0xa4,
0x7d,0xfb,0x9,0x59,0x2f,0x7c,0x7,0x59,0x41,0xa3,0x8a,0xf4,0xe7,0x55,0x37,0x72,
0x56,0xb2,0x24,0xfc,0xed,0x3c,0x49,0x2d,0x9f,0x71,0x2c,0x49,0x1b,0x65,0x5e,0xcc,
0x9e,0x7b,0x1a,0xa6,0x2e,0x9c,0x8f,0x39,0xa7,0xcd,0x43,0x33,0x49,0x4e,0xda,0xbf,
0x2c,0xd4,0x20,0x9b,0x25,0x5f,0xa5,0xab,0xed,0x48,0x3,0xa4,0x79,0x4d,0x79,0x49,
0xcb,0x25,0x76,0x49,0xc5,0x96,0xdc,0xf1,0x12,0x48,0xcc,0xdd,0xea,0xd9,0x5e,0x90,
0x42,0xf9,0x9f,0x56,0xf1,0xad,0xa5,0x25,0x9d,0xb1,0xb8,0xd9,0xf5,0xe3,0x14,0xa7,
0xe3,0xd,0xa5,0x4b,0xf9,0x8e,0xa4,0x8f,0x76,0x12,0xc3,0xb,0x16,0x9e,0x81,0x6,
0x5a,0x9d,0x15,0x8f,0xf5,0x22,0x29,0x87,0x66,0x54,0xe6,0x23,0x5,0x23,0xd3,0x72,
0x28,0x94,0x50,0x64,0x63,0xd9,0x52,0x2c,0xe2,0x16,0x6a,0x5a,0xdd,0xd4,0xbc,0xb5,
0x1e,0xfc,0x70,0x93,0x9a,0x46,0x1c,0x18,0xc5,0xcc,0x40,0x11,0x1f,0x7d,0xe3,0x9b,
0x10,0x52,0xf3,0x4d,0x57,0x4a,0x6c,0xdc,0x6c,0x90,0x6c,0xa,0x1f,0xfc,0xe0,0x7,
0x70,0xcd,0x35,0x1f,0x50,0xae,0xb3,0xa5,0x87,0x4c,0xcf,0x88,0xcb,0xfa,0x61,0xa0,
0x86,0xba,0x6f,0x63,0xd5,0x70,0xc6,0x58,0xb0,0xc4,0x5a,0xa8,0x8d,0x4e,0xa9,0x7e,
0xbf,0x61,0xc3,0x7a,0xac,0x5b,0xb7,0xde,0x16,0x5e,0xdb,0xbc,0x79,0x9b,0x2d,0x6a,
0xb7,0x71,0xe3,0x6,0x3b,0xaa,0xdd,0x6b,0x15,0xd4,0xfd,0x51,0x31,0x5a,0xa5,0x18,
0xab,0x50,0x80,0xf1,0x41,0x9a,0x55,0x2c,0xd,0x5a,0x41,0xc2,0xd1,0x86,0xf8,0xf2,
0x3e,0xc5,0xa4,0x52,0x8e,0xde,0xaf,0xf7,0xca,0xe7,0x2f,0xa8,0xa3,0x58,0xe7,0x5a,
0x44,0x2e,0x9e,0x41,0x3c,0x75,0xea,0x64,0xcc,0x9e,0x3d,0xdb,0x86,0x8e,0x4e,0x9a,
0x38,0xf1,0xe0,0xb9,0xad,0xc9,0x7f,0x55,0x2b,0xc3,0x4,0xaa,0xde,0xa9,0x97,0x6a,
0xd4,0x4d,0xf5,0x3d,0x83,0x2,0x95,0xe9,0xec,0xd8,0xd5,0x81,0x95,0xab,0x56,0xda,
0x72,0x12,0xda,0xc3,0x61,0xf5,0xe3,0xeb,0x6d,0x3f,0x87,0xe5,0x54,0x62,0x34,0x7c,
0xd5,0x2c,0x2,0x86,0xfd,0x61,0xef,0x57,0x6,0xd8,0x21,0x7a,0xae,0xae,0x52,0x9e,
0xab,0x3a,0x90,0x38,0xf4,0x1b,0x75,0x4a,0x6b,0x48,0x74,0x54,0xd7,0x9b,0xc7,0xb5,
0x59,0x68,0x1f,0xdf,0x8e,0xda,0x49,0x53,0x30,0xae,0x7d,0xbc,0xb9,0x89,0x5a,0x27,
0x4c,0x20,0x51,0x50,0x81,0xa2,0x16,0x6a,0xf1,0xb5,0xbb,0x9,0x8b,0xbb,0xf2,0x44,
0x2e,0x4a,0x3e,0x94,0x5f,0x98,0xbf,0x9f,0xe9,0x8b,0x49,0xe6,0x58,0x40,0x79,0xa3,
0x74,0x6b,0x4e,0x85,0xea,0xb7,0xce,0x95,0xbe,0x28,0x8d,0x40,0x96,0x96,0x94,0x86,
0xf7,0x2a,0xdd,0xfa,0x4e,0x23,0xb6,0xd2,0x5e,0xde,0xfa,0x84,0xa2,0xd8,0xf,0x3f,
0xe8,0x62,0x2c,0xa2,0xac,0x5,0xf9,0x28,0xd3,0xe6,0x37,0x8f,0xc3,0x45,0x73,0xe7,
0xc2,0x63,0xfd,0xd3,0xf0,0x60,0xcf,0x86,0x54,0x8c,0x1c,0x8c,0x48,0x72,0xd0,0xce,
0x58,0x9d,0x7e,0x88,0x3f,0x2c,0x5d,0x86,0x2d,0xfd,0xfd,0x48,0xa4,0xa5,0x55,0xa9,
0x72,0x8f,0x7c,0x72,0x8,0x2b,0x3e,0x36,0x2f,0x5b,0x8e,0x6f,0x7e,0xf4,0xe3,0xa8,
0xf1,0xcb,0xf0,0x44,0xe,0x6c,0x14,0x5e,0x36,0x8f,0xeb,0xae,0xfb,0x25,0xce,0x3e,
0xfb,0x2c,0x6b,0x3c,0xa3,0x99,0x1c,0xfc,0xaa,0x36,0xae,0xaa,0xa3,0xce,0x52,0x85,
0x9f,0xfe,0xec,0x67,0xb6,0x84,0xc5,0xad,0xb7,0xde,0x6a,0x16,0x42,0x77,0x77,0x2f,
0x35,0xc2,0x3c,0xbc,0x4c,0x8d,0xb9,0x55,0xe4,0xbf,0x96,0x66,0x28,0xc1,0x20,0x42,
0xd9,0x1f,0xba,0x42,0x71,0x69,0xfd,0x4c,0x91,0x96,0xa9,0xc1,0x6,0x11,0x39,0x8,
0x12,0x3e,0x1e,0x7f,0xab,0xac,0x53,0x5f,0x81,0x88,0x40,0x82,0x46,0x6b,0x41,0xbd,
0xf8,0xc5,0x2f,0xc6,0xb3,0xaf,0x78,0xa6,0x2d,0x37,0x1d,0x91,0x85,0x84,0x92,0xea,
0x11,0x1b,0x1d,0x3f,0x6b,0xc8,0xaf,0xe2,0x6a,0xf3,0x15,0xf4,0xc5,0x7e,0x42,0x72,
0xa8,0xd5,0xa3,0xfb,0x6c,0x96,0x39,0xe3,0xa8,0xf5,0x98,0xf4,0x5e,0xa5,0x4f,0xb3,
0xb3,0x35,0x64,0xf4,0xe7,0xff,0xfb,0xb,0xdb,0xdb,0x21,0x5e,0xf6,0x41,0x79,0xe1,
0x79,0xb9,0x28,0x7e,0x7c,0x97,0x7e,0x6f,0x82,0x9f,0x75,0x78,0x7f,0xd8,0x1b,0xaa,
0xef,0x8e,0xef,0x93,0x25,0x91,0xce,0xe5,0xa9,0x39,0xa6,0x31,0x10,0x54,0x90,0x6b,
0x68,0xc6,0xbc,0xd3,0x4f,0xc7,0xa9,0x67,0x9f,0x83,0x59,0x73,0x4e,0xb5,0x21,0xa3,
0x7d,0xc5,0x82,0x3a,0x4c,0x6c,0x2,0x9f,0x96,0xf6,0x90,0x5,0xa0,0xb6,0xa0,0xe1,
0xaa,0x49,0x5b,0xae,0x21,0x82,0x92,0xa0,0xc7,0x57,0xcc,0xcd,0x25,0xa1,0xcb,0x38,
0x90,0x14,0x64,0x9d,0xa8,0xaf,0x42,0x36,0xc4,0xb1,0x82,0x59,0x76,0x2c,0x1f,0x8d,
0x98,0xa,0x2b,0x51,0x47,0xbe,0xf2,0x48,0xa3,0xb6,0x64,0x19,0x84,0x6c,0xb,0x82,
0xd2,0x1d,0x87,0x54,0x32,0xcf,0x2b,0x6c,0xd7,0xc,0x9a,0x10,0x7a,0xb2,0x20,0x52,
0xae,0xd4,0xb7,0x53,0xc0,0x45,0xa7,0xcd,0xc1,0xbc,0xb6,0x71,0xa8,0x61,0xd9,0xa5,
0x52,0x51,0x9d,0x1a,0x29,0x38,0xf1,0xe4,0x60,0x66,0xbc,0x2a,0x6,0xa3,0xa1,0x98,
0x50,0x22,0x74,0x32,0xe7,0xee,0x5f,0xb3,0x1e,0xab,0xb6,0x6c,0x45,0xd1,0x63,0x65,
0x63,0x46,0xea,0xab,0x91,0x66,0x39,0x50,0x6f,0x8e,0x1a,0xbc,0x9a,0xa4,0xb2,0x91,
0x21,0xe7,0x17,0x71,0xc3,0x7f,0xfd,0x37,0x6e,0xfb,0xc5,0x75,0x48,0x85,0x25,0x36,
0x7a,0x2d,0x43,0xa0,0x19,0xbf,0x17,0xe3,0x7f,0x7f,0xfe,0x33,0x1b,0x6f,0x1f,0x6b,
0xa9,0x43,0xf7,0x76,0x3e,0x7c,0x1c,0xf8,0x5b,0x35,0xb2,0x78,0xd7,0xb7,0x18,0xb1,
0xc0,0x38,0x0,0x55,0x1f,0xbd,0x45,0x9b,0x7f,0x72,0x65,0x54,0x6c,0xc6,0x71,0x94,
0xe,0x1d,0xa4,0x5,0x7a,0x5e,0x34,0x4b,0x57,0xb8,0xbd,0xba,0xce,0x8e,0x8,0x40,
0x43,0x2b,0xb5,0xfe,0xce,0x76,0xed,0x43,0xdc,0xdd,0x63,0xdf,0x9b,0x50,0xe4,0x51,
0xcf,0x90,0xa0,0x10,0xf4,0x1c,0x7b,0x36,0xff,0x44,0x10,0x12,0x86,0xb6,0xd9,0x8c,
0x8,0x42,0xf7,0xab,0xa1,0x48,0xa8,0x28,0xb,0xf5,0x3e,0xa,0x41,0xcd,0x88,0x56,
0x47,0x75,0x3c,0xb,0xbc,0x8e,0xc2,0x45,0x33,0xa6,0x4f,0xa7,0xd0,0x3c,0xf3,0xcc,
0x33,0x30,0x69,0xca,0x44,0xb4,0xb6,0xb6,0xda,0x32,0xd3,0xf1,0xc4,0x31,0xab,0x46,
0x7a,0xbe,0xb9,0x52,0xec,0xd1,0xd6,0x19,0xa8,0xdf,0xeb,0xba,0x2e,0xa8,0x3,0x34,
0x49,0x82,0x50,0xe3,0xb4,0xf7,0xf2,0x9a,0x36,0xd3,0x51,0x69,0xf0,0x23,0x96,0x2d,
0x5f,0x66,0x4,0x70,0xcf,0x3d,0xf7,0x60,0xc3,0xfa,0xd,0xd8,0xb5,0x63,0x17,0x3a,
0x68,0xfd,0xed,0xea,0xd8,0xc1,0xec,0x52,0xbc,0x29,0x9c,0x4d,0xb3,0x57,0x7e,0xc9,
0x59,0xc3,0x3f,0x96,0xa1,0xca,0x38,0x3e,0xb7,0xd4,0xf2,0x98,0x29,0x51,0x28,0x2b,
0x2a,0x24,0x1a,0xed,0x3d,0x9c,0x10,0x49,0xf1,0x82,0x86,0x64,0x93,0xa5,0x30,0x8d,
0x16,0xcd,0xa4,0x69,0xd3,0x31,0x61,0xfa,0x74,0xe4,0xc6,0xb5,0x23,0xcf,0x34,0xd6,
0x35,0x34,0x22,0x9b,0xaf,0xb1,0xf8,0x90,0x3,0x6c,0x38,0x6b,0xf4,0xc8,0x28,0xdf,
0x6c,0xb8,0x2,0x2f,0x58,0x7a,0xf8,0xbd,0xf2,0x53,0x13,0x0,0x5,0xdd,0x16,0x43,
0x34,0x10,0x43,0xf9,0x6e,0x37,0x13,0x5a,0xc2,0xe3,0x40,0x44,0xdf,0xd9,0xef,0xab,
0xf,0x91,0x72,0xa6,0x73,0x91,0x90,0xde,0x1d,0x95,0x95,0x46,0x7c,0x45,0x37,0x28,
0xfd,0x96,0x7,0x2c,0x34,0x11,0x6e,0x2e,0x9b,0x35,0x32,0x10,0x39,0x2a,0x8f,0xa4,
0x5,0xab,0xfc,0xcd,0xd2,0xd2,0xf,0x2c,0xbe,0x51,0x39,0xe8,0x77,0x7b,0x11,0xc5,
0x27,0x7a,0xec,0xd0,0xeb,0x63,0x1b,0x6a,0xfe,0x1a,0xea,0xae,0x61,0xd4,0x4d,0xcc,
0x82,0x67,0x9f,0xbe,0x18,0x93,0xf2,0xb2,0xa2,0x98,0xb,0xca,0x2a,0xe6,0x4b,0x54,
0xbb,0x4e,0x2c,0x4e,0x38,0x39,0xc8,0x8c,0x97,0xbf,0x99,0x4d,0x81,0x8d,0x56,0x39,
0xe3,0x61,0xd9,0x8e,0xdd,0xf8,0x33,0xb5,0xef,0x64,0x86,0xd,0x8a,0x2,0x4b,0x9b,
0xbb,0xe8,0xab,0x54,0x38,0xb2,0xc8,0x41,0xa2,0x42,0xd,0x59,0x6d,0x4e,0x4b,0x62,
0xc8,0xba,0x69,0x27,0x99,0xfd,0xcd,0xab,0x5f,0x83,0x4a,0x67,0xf,0xbf,0x2f,0xd9,
0x7a,0x3a,0x12,0xd0,0x3f,0xff,0xc9,0xcf,0x6c,0xa9,0x69,0xf9,0xb6,0x99,0x9a,0xe8,
0xf7,0xc3,0x36,0xd6,0x43,0x85,0x9e,0xb3,0x6f,0xf5,0x9,0x6d,0x3f,0xe0,0x3,0x8b,
0x73,0xdf,0xbb,0xaa,0xa8,0x76,0xa2,0xfa,0xd4,0x7c,0x5,0x35,0x64,0x55,0xcc,0x9d,
0x3b,0x77,0x5a,0x67,0xa9,0x84,0xff,0xd6,0xad,0x5b,0x49,0x8,0xf7,0xe0,0xd1,0x47,
0x1f,0xc5,0xf2,0xe5,0xcb,0xad,0x71,0xc7,0x3e,0x6b,0x9d,0xeb,0x18,0xfb,0x89,0xf,
0x86,0xfd,0xb8,0xca,0x60,0x2,0x8f,0x90,0x0,0x89,0xab,0x9f,0xd6,0xd9,0x99,0x34,
0x69,0x92,0xcd,0x1d,0x90,0x5b,0x48,0x5b,0x51,0x9e,0x46,0x93,0x5b,0xeb,0xa,0x69,
0xc8,0xa8,0x20,0x21,0xa5,0xfe,0x1a,0xc9,0xac,0x3,0xb1,0xb7,0xe3,0x3b,0x86,0x9,
0xb9,0xea,0xf3,0x2d,0x7d,0x3c,0xdf,0xb1,0x73,0x97,0xf9,0xff,0x37,0x57,0xe7,0xe,
0x68,0xa8,0xe8,0xc3,0x4c,0xdb,0x92,0x25,0xf,0xd8,0x3d,0xb1,0x45,0x12,0x11,0x81,
0x20,0x82,0x92,0x70,0xd4,0x73,0x18,0xc2,0x68,0x3d,0x23,0x13,0x6c,0x2c,0x3f,0x35,
0xe2,0xa4,0x66,0x52,0x4b,0x93,0xe7,0xfb,0x92,0x24,0x35,0x7b,0x25,0x3f,0x6b,0x85,
0xd6,0x7c,0x5d,0x3d,0xea,0x9a,0x9b,0xd0,0x4a,0x2,0x98,0x78,0xea,0x2c,0x4c,0x98,
0x36,0xd5,0xf6,0x77,0xd0,0x3a,0xac,0x65,0xd6,0x7d,0x4d,0xe3,0x60,0x2e,0xe,0x23,
0x38,0x8f,0x32,0xf8,0xe8,0xe1,0xc5,0x4d,0x54,0x17,0x25,0xa1,0x87,0x7e,0x1b,0x97,
0xaf,0x62,0xa4,0x39,0x39,0x72,0xfb,0x69,0x9,0x75,0x91,0x71,0x6c,0x15,0x18,0x19,
0xb0,0xc,0x75,0x6f,0x6c,0x39,0xc4,0x75,0xc3,0xe1,0xe0,0xa0,0x48,0x30,0x65,0x43,
0xee,0x25,0xaf,0xe4,0x63,0x52,0xba,0x6,0xcf,0x3c,0x73,0x31,0x5a,0xb2,0xcc,0x3f,
0xd6,0x1,0x2d,0xfe,0xa8,0xf2,0x10,0x4e,0x64,0x4e,0x9e,0x78,0x72,0xe0,0xeb,0x65,
0x52,0x4a,0xeb,0x1d,0x20,0x3,0x14,0x98,0x71,0xbf,0xbe,0xfb,0x7e,0x74,0x51,0x7b,
0xd4,0x1a,0x49,0x16,0x98,0x43,0x23,0x91,0x1c,0x52,0x14,0x1a,0x31,0x71,0x25,0xcb,
0x1,0xea,0x13,0x69,0xdc,0xfa,0xcb,0x1f,0xe3,0xe7,0x3f,0xfc,0x11,0x3c,0xcd,0x5e,
0xe6,0x75,0x69,0x7,0xb,0x4e,0x3b,0x1d,0xb7,0xfd,0xf1,0x4f,0x6c,0x38,0xd2,0xc4,
0x45,0x8,0xc7,0x88,0x1c,0xf4,0xdc,0x7d,0x2f,0x1d,0x14,0xc9,0xea,0x6e,0xe8,0x12,
0x92,0xd7,0x5e,0x7b,0x9d,0xd,0xab,0xd4,0xe,0x68,0xb1,0xc0,0x8f,0x97,0x7e,0x88,
0x62,0x1a,0x9,0xae,0x7d,0x84,0x79,0xf5,0xf8,0x64,0x82,0x60,0xb8,0x51,0x2a,0x72,
0x3b,0xc9,0x25,0x22,0x2b,0xe0,0xca,0x2b,0xaf,0xc4,0x33,0x9f,0xf9,0x4c,0x9c,0x3a,
0xe7,0x14,0xd4,0x53,0x90,0x6a,0x94,0x90,0x66,0x82,0x8b,0xb4,0xb4,0x69,0xbf,0xad,
0x1f,0x44,0xc4,0xef,0xb1,0xa1,0xa3,0x96,0x87,0xfb,0xa1,0xda,0x29,0x3c,0x14,0x1a,
0x36,0xda,0xd7,0xdb,0x8b,0xeb,0x7e,0xf5,0x2b,0xeb,0x8,0xbf,0xe9,0xc6,0x1b,0xd1,
0xd9,0xd5,0x63,0x73,0x16,0xe2,0xe5,0x2d,0x4c,0xa0,0xb1,0xf6,0xe9,0xb3,0xde,0x19,
0xd5,0x47,0xa6,0x97,0x7f,0x7a,0xa5,0xce,0xe4,0x92,0xb1,0xc0,0x67,0x6,0x1a,0x42,
0x6a,0x57,0x35,0xdc,0x33,0x8a,0x53,0x99,0x59,0x21,0x41,0xdf,0x40,0x6b,0xe6,0x8c,
0xf3,0xce,0xc3,0x2c,0x6d,0x9e,0xb3,0xf0,0x74,0xde,0x93,0x44,0xa1,0xec,0xc3,0xa3,
0x20,0x95,0x15,0xa1,0xd9,0xc4,0xea,0x59,0xd1,0xa2,0x77,0x5e,0x2a,0x1d,0xf1,0xd,
0x9,0x45,0x7d,0x2c,0x4f,0x46,0xb2,0x47,0xc,0xbe,0x63,0xd8,0x92,0xaa,0x5a,0xb1,
0x31,0x79,0xa,0x8a,0x8b,0x75,0xd6,0xb3,0x1c,0x22,0x37,0x1d,0x6f,0x63,0x3d,0x8e,
0xe7,0x21,0x28,0x7f,0x44,0xbc,0x91,0xc5,0xb7,0xb7,0x4e,0x38,0x72,0x38,0x34,0xd8,
0xc,0x7f,0x12,0x83,0x16,0xcf,0x94,0x35,0x98,0xa5,0x86,0x30,0xbb,0xb9,0x5,0x97,
0x5b,0xff,0x83,0xf2,0x97,0x37,0x49,0xee,0xe9,0x5e,0xfb,0xc5,0x89,0xc1,0x89,0x27,
0x7,0x6,0x65,0x83,0xe6,0x5a,0x76,0x50,0x60,0xdc,0x7c,0xdf,0x83,0xe8,0x28,0x15,
0x6c,0x6c,0xb0,0xda,0x5e,0x4c,0xc,0xc2,0x48,0x23,0x7,0x4d,0xb6,0x2a,0x33,0x4a,
0x1a,0x63,0x9e,0xd,0xa8,0x55,0xf7,0x16,0xf0,0x91,0x37,0xfd,0x5,0x7c,0xf9,0xd8,
0xd5,0x48,0x94,0xb5,0xc,0x9f,0xfe,0xf4,0xa7,0xf0,0x96,0xbf,0x79,0x33,0x1b,0x9d,
0xcc,0x6d,0xfd,0x32,0x6a,0x64,0x47,0x8b,0x1c,0xd4,0x20,0x35,0x1a,0x25,0x99,0xf6,
0x4c,0x8,0xe9,0xb3,0x1a,0xaa,0xdc,0x0,0xea,0x1b,0xd0,0x92,0xa,0xea,0x3c,0xd5,
0x22,0x76,0xcb,0x1e,0x7e,0x18,0x1b,0x37,0x6d,0xc4,0x86,0xf5,0x5b,0xac,0xe3,0xb8,
0xb3,0xb3,0xcb,0x1a,0xb3,0x5,0x7b,0xda,0xbe,0xb0,0xca,0xf1,0x4,0x8d,0x3d,0xfe,
0xad,0x4,0x6b,0x7c,0x2e,0xe1,0xa2,0x7e,0x6,0x1d,0xdb,0x5a,0x9b,0x6,0x77,0x67,
0xd3,0xc2,0x80,0x9a,0x33,0x30,0x75,0xca,0x54,0xeb,0x30,0x96,0x46,0x2a,0xd,0x3d,
0x82,0xb4,0xf3,0xea,0x69,0xc,0x56,0x80,0x38,0x56,0xe6,0xda,0x20,0x14,0x1f,0xb9,
0x85,0xe4,0xdb,0x36,0xd,0x8b,0x57,0x24,0xa8,0x1e,0x7e,0x78,0x85,0x75,0xe,0x2f,
0x59,0xb2,0xc4,0x2c,0x2,0xeb,0x28,0x5e,0xb3,0x1a,0xdb,0xb7,0xef,0xb0,0x38,0x29,
0x3f,0x22,0x48,0xd7,0xdf,0x17,0xe6,0x7a,0xa9,0x5e,0xd4,0x7d,0x4a,0x8b,0xdc,0x4d,
0x49,0x56,0xbc,0xe8,0x7d,0x7c,0x7,0x83,0x6d,0xf2,0x53,0x5f,0x8b,0x49,0x93,0x27,
0xa3,0x7d,0xe2,0x24,0x8c,0x67,0xa8,0x6b,0x6c,0x42,0x1d,0x2d,0x81,0xa6,0x96,0x66,
0x64,0x6a,0x6a,0x51,0x60,0x3c,0x59,0xf2,0xb0,0x35,0x85,0xc,0x7c,0x2f,0xcb,0x59,
0x84,0x22,0x32,0x50,0x2c,0x74,0x8c,0x49,0xc7,0xfe,0x98,0x96,0xa3,0x89,0xa1,0x4d,
0x3a,0x2e,0x13,0x4b,0x25,0xeb,0xab,0xce,0x55,0x3f,0x24,0xf4,0xa3,0xe,0xe2,0xca,
0xa0,0x35,0xa0,0x10,0x5d,0x1b,0x2e,0x3e,0xb4,0x30,0x8d,0xcd,0x86,0xc0,0xea,0xef,
0xd1,0x8d,0xfb,0xc9,0x80,0x94,0x36,0x95,0x62,0x5e,0x96,0x4d,0xf1,0xd5,0x7c,0xad,
0x4,0x6a,0x58,0x5d,0x9e,0x36,0x6f,0xe,0xa6,0x35,0xb5,0xa0,0xc6,0xaa,0xaa,0x8,
0x44,0x2a,0xc8,0x89,0x93,0x79,0x27,0x9c,0x1c,0xa4,0x9,0x4a,0xc3,0x53,0x77,0xd5,
0x5d,0x2b,0x57,0xe1,0x91,0x8e,0x3d,0xe8,0xd7,0x94,0xd1,0x6a,0x5b,0xae,0x2a,0x67,
0xca,0xab,0x11,0x47,0xe,0x19,0x36,0xb6,0x2,0x15,0x2b,0xd,0x49,0x4f,0xf,0xf8,
0xd8,0xf4,0xc0,0xa,0xfc,0xc7,0x97,0x3e,0x66,0x9a,0xb1,0xad,0x86,0x49,0xb2,0xcb,
0x7a,0x59,0xfc,0xf1,0xd6,0x1b,0xa9,0x19,0xcf,0x3a,0x66,0xe4,0x10,0xad,0xad,0x54,
0x41,0x3f,0x35,0xe2,0xfe,0x81,0x1,0x94,0x8a,0x25,0x3c,0xbc,0xec,0x61,0xdc,0x72,
0xcb,0x2d,0xf8,0xd3,0x6d,0x7f,0xc2,0xaa,0xc7,0x57,0xdb,0x92,0xce,0xea,0x18,0xd4,
0xf7,0xa6,0xd,0x6a,0x36,0x30,0x7f,0x23,0x61,0xa8,0xa,0x60,0x4f,0x12,0xb3,0xec,
0x7,0xbb,0xb2,0x5f,0xfb,0x8f,0x7f,0x17,0x43,0xe7,0xea,0x78,0x94,0x60,0xd1,0x3b,
0xe4,0xa,0xd2,0x12,0x20,0xb2,0xa,0xc6,0xb5,0x35,0x99,0xb0,0x8d,0x5,0x92,0xdd,
0xcf,0x7,0xea,0x9a,0xad,0x44,0x5b,0x25,0x87,0x8a,0xcd,0x1e,0xb6,0xd3,0xbd,0x60,
0xc6,0xca,0x69,0x23,0xe8,0x7e,0x69,0xfc,0x22,0x9d,0x81,0x42,0x11,0x6b,0xd6,0xae,
0xc1,0x6f,0x7f,0xfb,0x5b,0xb3,0x78,0x6e,0xbf,0xfd,0x76,0x5a,0x19,0x35,0x76,0x9f,
0x96,0x25,0x17,0x91,0xe8,0x7d,0xaa,0x3b,0x8a,0x9b,0x82,0x8,0x45,0x48,0xd8,0x33,
0xf7,0x85,0xcd,0x87,0xa8,0x5e,0xd4,0x6f,0x95,0xe,0x75,0x12,0x17,0x92,0x69,0x24,
0x33,0x59,0xb4,0x4d,0x99,0x8c,0xf9,0x67,0x9c,0x89,0x53,0xe7,0xce,0x43,0xcb,0x84,
0x9,0x18,0xa0,0xe6,0x5f,0xd6,0xf3,0xb5,0x53,0x1d,0x33,0x48,0x7b,0x22,0x28,0x55,
0x21,0x5f,0x68,0x7b,0x4f,0x30,0x1f,0x69,0x3,0x47,0xf,0xb4,0x32,0xe6,0x3b,0xf5,
0x9d,0x65,0x26,0xff,0xa3,0x60,0x88,0xe6,0x60,0xa8,0xcf,0x8a,0x34,0x71,0x94,0x7,
0x5a,0x48,0xb8,0x9b,0xb,0x8e,0x47,0x85,0xa8,0xac,0x48,0x2,0xe9,0xa4,0xcd,0xd0,
0x8f,0xc9,0xc0,0xf2,0x25,0xa8,0x4e,0xd0,0x63,0x10,0x54,0xb6,0xf1,0xf9,0xbe,0x18,
0x9e,0xbc,0x95,0x36,0x87,0xc3,0x83,0x66,0x96,0xcb,0x62,0xd3,0xba,0x60,0xca,0x43,
0xc9,0x1,0xb3,0xb0,0x4b,0x7d,0x78,0xe1,0xf9,0x17,0x63,0xa,0xcb,0x48,0xf6,0xa9,
0xea,0xc8,0x89,0x1c,0xbe,0x7f,0xe2,0x2d,0x7,0x3f,0x44,0x81,0x75,0x6c,0x5b,0xa9,
0x88,0xdf,0xdc,0x7b,0x1f,0xfa,0xab,0x33,0x66,0x87,0x5b,0x8b,0x25,0xd6,0x22,0x47,
0xe,0x64,0x1a,0x32,0x4e,0x95,0x0,0x4d,0x6c,0x8c,0x3f,0xf9,0xa7,0xaf,0xe3,0xfe,
0x1b,0x7f,0xcf,0x88,0xea,0x9a,0xa,0x16,0x26,0x24,0xaf,0xbf,0xe1,0x97,0x48,0x57,
0xe7,0x34,0xec,0x6d,0x77,0xba,0xe7,0xc0,0x86,0x25,0x6d,0x32,0x6e,0x9c,0x71,0xc7,
0xa0,0xc4,0x88,0x84,0x8e,0x96,0xf0,0x56,0x83,0xb6,0x5,0xd4,0x58,0x7d,0xd6,0x53,
0xf3,0x97,0x70,0xd4,0x46,0x2c,0x8f,0x2c,0x5f,0x8e,0x1d,0x3b,0x77,0xa2,0xb7,0xaf,
0xcf,0x16,0x60,0x8b,0x35,0x6d,0xd3,0xae,0xa9,0x99,0xe8,0x99,0x12,0x90,0x12,0xc8,
0x12,0x9c,0xf2,0xdd,0x33,0x2,0xc,0x83,0x11,0xe2,0x7b,0x22,0xa1,0x6f,0xdf,0x5b,
0x1c,0x68,0x5,0xa8,0x12,0x93,0x4,0xad,0x9a,0xf0,0x9a,0xbe,0xa3,0xb8,0xc5,0x82,
0x5,0xb,0x70,0xd6,0x99,0x67,0xe1,0x82,0xb,0x2f,0x30,0x6b,0x60,0xa2,0x96,0x67,
0x6e,0xaa,0xb3,0x7d,0x23,0xf4,0x5c,0xfd,0xde,0x9e,0x41,0x8b,0xca,0x8e,0xfc,0xbd,
0xdc,0x12,0x3a,0x37,0xb1,0xa8,0xe7,0x30,0x12,0xb6,0x4,0x37,0xbf,0xb3,0xfd,0x87,
0xcb,0x3e,0x5,0xb3,0xc7,0xb8,0x47,0xf7,0x75,0x50,0x51,0xb8,0xfd,0xcf,0x77,0xe2,
0xa1,0x7,0x1e,0xc0,0xbd,0x77,0xdd,0x8d,0x6e,0x5a,0x39,0x7b,0xba,0xbb,0xb1,0xad,
0xa3,0x83,0x64,0x21,0x75,0x82,0xbf,0xe3,0x7d,0x12,0xf7,0xa5,0x24,0xc9,0x45,0xd9,
0xc5,0x67,0x59,0x47,0x2a,0xbf,0xf3,0xd5,0xf6,0x78,0x26,0xa1,0x6c,0x9d,0xe1,0xcc,
0x93,0x9a,0x20,0x5a,0x1a,0x22,0x12,0xee,0x54,0x4a,0x98,0x36,0x9f,0x75,0xae,0x6e,
0xfc,0x78,0xcc,0xa0,0x35,0x33,0x7d,0xd6,0x6c,0x8c,0x9b,0x32,0x5,0xa9,0x5c,0xe,
0xe9,0x7c,0x1d,0x6a,0xea,0x6a,0x59,0x4c,0x12,0xfc,0xd4,0xe4,0x14,0x4f,0xbe,0xcb,
0x4,0xba,0xfd,0x49,0xb0,0xeb,0xf9,0x71,0xcd,0xd4,0x31,0x3a,0xd3,0xd6,0x3d,0x11,
0xe2,0x2b,0x11,0x6,0xab,0xb5,0x8,0xc2,0x3e,0xf1,0xfb,0x61,0x95,0x84,0xea,0x9d,
0x7c,0xa7,0xa0,0xfc,0x30,0xc1,0xcd,0xb8,0x58,0x5a,0xaa,0x2e,0x1e,0x13,0xda,0x84,
0xee,0xd2,0xf7,0x22,0x60,0x75,0xea,0x6b,0x6,0xbe,0xd6,0xe7,0xd2,0xef,0x65,0xf1,
0x44,0x43,0x6b,0xa3,0x67,0x55,0x1f,0xc9,0x67,0x46,0xbf,0x89,0x61,0xe5,0x74,0x50,
0xec,0xbd,0x6f,0x5f,0x3c,0xd1,0x6f,0x1c,0x86,0x47,0x5c,0x76,0x82,0xa,0x81,0xff,
0xe4,0x9e,0x63,0xfd,0x9c,0x59,0x57,0x8f,0x67,0x2e,0x3a,0x1d,0x59,0x56,0xda,0x4a,
0x22,0x40,0xae,0xea,0xfe,0x3d,0x11,0x38,0xe1,0xe4,0xe0,0x7,0x15,0xec,0x26,0x31,
0xfc,0x7e,0xc9,0xfd,0xd8,0x45,0x8d,0xab,0xc8,0x86,0x6d,0x4b,0x63,0x3c,0x61,0x45,
0x1d,0x19,0xd0,0x10,0xc1,0x40,0xee,0xd,0x36,0xd4,0x7c,0x4f,0xf,0x3e,0xf0,0xfa,
0xd7,0x21,0x5d,0x50,0x57,0xa3,0x7d,0x6b,0xff,0xff,0xfe,0xf,0xbf,0xc5,0x19,0x67,
0x2e,0x64,0xe3,0xdc,0x3f,0x3d,0x6a,0xac,0x11,0x61,0xc,0x85,0x96,0x90,0x8e,0xb5,
0x3e,0x35,0xea,0x7e,0xa,0xfb,0x8d,0x9b,0xb6,0x54,0x17,0x5e,0xdb,0x64,0xbb,0x9e,
0x69,0xf7,0xb3,0xbb,0x49,0xa4,0x3e,0xb5,0x69,0x9,0xf3,0x58,0xa0,0xeb,0x18,0xb,
0x91,0x41,0xf0,0x54,0xe2,0xf3,0x40,0xec,0xad,0xa0,0x83,0x82,0x87,0x42,0x45,0xef,
0x8e,0x9f,0x27,0x41,0x3f,0x79,0x52,0xbb,0x9,0x7f,0xcd,0x24,0xbe,0x40,0x6b,0x1c,
0xcd,0x9d,0x63,0xfb,0xf,0x48,0xd8,0x44,0x6f,0x91,0x88,0xe4,0x1f,0xd3,0x97,0x88,
0x54,0xe3,0x7d,0x30,0x74,0x86,0x74,0x8c,0x62,0x39,0x9a,0x93,0x20,0xb,0x4b,0xef,
0x93,0xb,0x48,0xbb,0xbb,0x29,0x8d,0x4a,0xdb,0xb2,0x65,0xcb,0x2c,0x9d,0x3b,0x77,
0x75,0x58,0x3c,0x72,0x99,0x1c,0x95,0x8,0xa6,0x55,0xf1,0xe4,0xbb,0x4a,0x83,0xc4,
0x16,0xe5,0xa2,0x1d,0x79,0x9f,0x41,0x69,0xd0,0x39,0xb3,0xbb,0x4c,0xb5,0x5e,0xf1,
0xe2,0xf,0x4d,0xb0,0xdb,0xaa,0xb6,0x13,0xa7,0xa1,0xb6,0xae,0xce,0x3a,0x89,0x27,
0x4e,0x9d,0x82,0x9,0x53,0x27,0x63,0xc2,0x94,0x19,0x36,0x8b,0xb8,0xcc,0x7b,0x34,
0xee,0x48,0x7d,0x8,0x36,0x17,0x43,0x92,0xff,0x58,0xc3,0xca,0x67,0xb8,0xf7,0x44,
0xe9,0x89,0xcb,0x52,0xff,0xcb,0xd,0x17,0x59,0x40,0x5a,0x96,0x83,0xd6,0x8d,0xfa,
0x32,0xc2,0x82,0x59,0x4b,0xa,0x2a,0x37,0x59,0x4,0xfa,0x8d,0x95,0x27,0xf3,0xeb,
0x89,0x5,0xbe,0xc3,0x48,0x81,0x8a,0x59,0x4a,0x97,0x57,0x2e,0xe2,0xbc,0x39,0xb3,
0x71,0xfa,0xc4,0xf1,0xc8,0x53,0x49,0x4a,0x6a,0x53,0xf8,0x13,0x84,0x13,0x4e,0xe,
0xdd,0xc,0xf,0xac,0x5a,0x85,0x47,0xb7,0x6d,0xc5,0x0,0x89,0xa1,0x44,0x6,0xf5,
0xd8,0x28,0xa5,0xa1,0x8d,0x74,0x84,0x36,0xca,0xa,0xc8,0x31,0xbe,0x3f,0xfe,0xfa,
0x3f,0x63,0xc9,0xef,0x7f,0x87,0xb4,0xc6,0x20,0x1a,0x42,0x5c,0x7c,0xc9,0x45,0xb8,
0xf6,0xda,0x5f,0xb2,0x1,0x6b,0x2c,0xfc,0x7e,0x85,0x6c,0x82,0xe7,0x40,0x93,0x51,
0x2,0x5f,0x43,0x45,0x35,0x83,0xf8,0x87,0x3f,0xfc,0xa1,0x8d,0x1e,0x4a,0xa7,0xf7,
0xe,0x15,0x94,0x40,0xb5,0xc6,0xcf,0x9f,0x4b,0x20,0xa8,0x53,0x55,0xd7,0x25,0x44,
0x63,0xc1,0xbe,0xf,0x18,0x9d,0xe1,0x73,0x32,0x12,0x3e,0x12,0x1e,0xa6,0x49,0xf3,
0xb9,0x72,0x9,0xbd,0xf4,0xa5,0x2f,0xc5,0xc5,0x17,0x5f,0x8c,0x17,0xbe,0xf0,0x85,
0xd6,0x29,0xa9,0x31,0xeb,0xb1,0xb0,0x91,0xa6,0x2f,0x8d,0x55,0x7b,0x2,0xc8,0x12,
0xd2,0xef,0xf4,0x7b,0xbd,0x53,0xb5,0x48,0x6b,0x7,0x1d,0x80,0x2a,0x39,0xc,0x15,
0x54,0x12,0xfc,0xbf,0xfe,0xf5,0xaf,0x71,0xc3,0xd,0x37,0xd8,0x44,0x39,0x3d,0x5b,
0xeb,0x20,0x29,0x8d,0x8a,0x47,0xf4,0x3c,0x3d,0x90,0xf7,0x57,0x23,0x9f,0xae,0x4e,
0x9c,0xb3,0x25,0xa7,0xa9,0x44,0x68,0xa6,0xb4,0x32,0x41,0x3e,0x5b,0x6b,0x56,0xbc,
0x3d,0x9e,0x17,0x51,0xe6,0x87,0xa2,0xac,0x2c,0xaf,0x1,0x33,0x67,0xcf,0xc2,0x99,
0xe7,0x9d,0x8b,0xd3,0xcf,0x58,0x84,0xc6,0x96,0x66,0x6c,0xea,0xeb,0xb5,0xe1,0xac,
0xb2,0x92,0xe4,0xeb,0xf7,0x32,0x69,0x92,0x88,0x66,0x48,0x7b,0xa6,0xc1,0xdb,0x7b,
0x89,0xb0,0xcc,0x6b,0x47,0xd9,0xdd,0x33,0x2c,0xe,0x56,0x3e,0xe6,0x76,0x8a,0xa0,
0x7c,0x56,0x59,0xab,0x3c,0x62,0x97,0x90,0x60,0xf9,0xc6,0x3a,0x58,0xcd,0xd6,0xc1,
0xf2,0xb7,0xe5,0xba,0xf9,0x17,0xdf,0xe7,0x30,0xa,0x20,0x7d,0x46,0xf5,0x9f,0x16,
0x70,0x7a,0xa0,0xf,0x2f,0x3e,0xfb,0x3c,0x4c,0xcb,0xd4,0x53,0xb8,0x54,0xbf,0x3f,
0x1,0x38,0x21,0xe4,0x10,0xbf,0x52,0xc7,0x87,0xba,0xba,0x71,0xd7,0x43,0xf,0xa1,
0x94,0x66,0xa5,0xae,0x8e,0x4,0xd1,0x50,0xaf,0xd1,0x40,0xe,0x41,0xa2,0x88,0x4,
0xb5,0x53,0x7f,0x4f,0x37,0x3e,0xff,0xee,0x77,0x21,0xd1,0xb5,0xc7,0xfa,0x19,0x34,
0xf1,0x4a,0xc3,0x1f,0xbf,0xf2,0x95,0x2f,0xe3,0x75,0xaf,0xff,0xb,0xde,0x29,0xb7,
0xc9,0x5e,0x61,0xaa,0xbf,0xf5,0x1b,0x36,0x60,0xf9,0xb2,0x15,0xb6,0x84,0x84,0xd6,
0xdf,0x91,0x55,0xb0,0x65,0xcb,0x56,0x6c,0xdd,0xb6,0xc5,0x3a,0x91,0xd5,0xb0,0x75,
0x9f,0x30,0x9c,0xe6,0x4f,0xd1,0x76,0x80,0x54,0x89,0x85,0xaf,0x8e,0x12,0x14,0x7a,
0x9f,0x9e,0xa3,0x2d,0x47,0x63,0xad,0x52,0x47,0x75,0xe,0x6b,0xf3,0xfe,0x45,0x8b,
0x16,0xdb,0xb0,0x51,0xed,0x1c,0x37,0x71,0xd2,0x24,0x9b,0x45,0x2c,0xa8,0x78,0xe2,
0x91,0x29,0xe6,0xb6,0xd8,0xef,0x3d,0x72,0xcf,0xe8,0x55,0x26,0x9c,0x48,0x18,0xda,
0xa6,0x54,0xe5,0xe6,0x79,0xd1,0xda,0x3d,0x12,0xe0,0xea,0xf4,0xd6,0x8c,0xe1,0xa5,
0xf,0x3f,0x62,0x73,0x23,0x34,0x6f,0x40,0xee,0xae,0x35,0x6b,0xd6,0xd8,0xf7,0xfa,
0x5d,0x35,0xba,0x55,0xc,0x63,0xdd,0xf0,0x92,0x6a,0x8a,0x62,0x62,0x7d,0x53,0x8c,
0x3b,0x55,0x67,0xa4,0x43,0xe6,0x2f,0x7f,0x5f,0x22,0x13,0x24,0x53,0x69,0xd4,0x35,
0x34,0x60,0xf2,0xe9,0xa7,0x61,0xc2,0xa4,0x89,0x68,0x69,0x1f,0x87,0x6,0x92,0x40,
0x4d,0x3d,0x5,0x69,0xdb,0x4,0x23,0xb,0x2d,0x2c,0xa7,0x51,0x42,0xf2,0xde,0x64,
0xc5,0x20,0xc4,0xd0,0x4a,0x5f,0x56,0xd9,0x30,0xfe,0x1a,0x35,0x67,0x6e,0x3d,0x5e,
0x53,0xdf,0xeb,0x30,0x31,0x3a,0xaa,0xb0,0xf2,0xe2,0xfb,0xa2,0xdd,0xec,0x22,0xb,
0x50,0xc2,0x3f,0x22,0x80,0x88,0x74,0x55,0x66,0x4f,0x2c,0xe4,0x5d,0x47,0xf1,0x98,
0x0,0x8b,0x50,0x7d,0x97,0x5a,0x46,0x3e,0x4d,0xcb,0x7a,0x5a,0xb6,0xe,0xcf,0x3a,
0xfb,0x6c,0xd4,0x9f,0x40,0x7e,0x3f,0x61,0x96,0x83,0x84,0x97,0xb4,0xde,0xff,0xa4,
0x70,0x1c,0x50,0xc3,0x4d,0x47,0xd,0x5e,0xfe,0x5b,0x91,0x43,0x2c,0x18,0x47,0x32,
0x82,0x64,0x1,0x99,0x30,0x85,0x95,0x77,0xdf,0x8b,0xff,0xf8,0xc2,0x17,0x90,0x2d,
0xe,0x44,0x93,0x9d,0x48,0x10,0x1a,0xb2,0x7a,0xcb,0xad,0x37,0xa3,0x85,0x82,0x6a,
0xcf,0x9e,0xdd,0xe8,0xe9,0xe9,0x35,0x6b,0xe0,0xc1,0x7,0x1f,0xb4,0xd9,0xb6,0x81,
0x4f,0xdd,0x95,0x8d,0x58,0x5a,0xbf,0x84,0x84,0x2c,0x6,0x9,0x1,0x4d,0x7c,0xd2,
0x35,0xe5,0x4f,0x5c,0x30,0x43,0x17,0x61,0x8b,0x31,0xb4,0x13,0x35,0x46,0x24,0xac,
0x23,0x62,0x90,0x96,0x19,0x85,0x5a,0xcc,0x9a,0x39,0x93,0xd6,0xc0,0x45,0xc,0x97,
0xe0,0xcc,0x33,0xcf,0xe4,0xf3,0x53,0x28,0x96,0x6,0xf8,0xbe,0xe8,0x3d,0xfa,0xac,
0x5a,0xe0,0x31,0xff,0x7,0x51,0x7d,0x76,0xe5,0x20,0x1d,0xc5,0x7e,0x39,0x5a,0x64,
0xae,0xab,0xab,0x13,0x3,0x3,0x5,0x74,0xf5,0x74,0x5b,0xfa,0x34,0x89,0x4c,0x3b,
0x90,0x69,0x56,0xb1,0xd,0x19,0xcd,0xd4,0x58,0xbc,0x44,0x98,0xda,0x8,0xc7,0xd2,
0xcb,0x77,0x99,0x60,0x24,0x6,0xab,0xdf,0x30,0x7e,0xf7,0x40,0xfd,0x1d,0xca,0x5,
0xde,0x9a,0xa9,0xd1,0x24,0xa1,0x14,0xd2,0xda,0x3a,0xb3,0xb1,0x5,0xb3,0xe6,0x9e,
0x8e,0x53,0x4e,0x9d,0x87,0x19,0xb3,0xe7,0x20,0x9b,0xaf,0x45,0x47,0x29,0x9a,0x81,
0xab,0x84,0xe8,0x99,0x1a,0x6,0xdb,0xcf,0x46,0x66,0x82,0x95,0x9f,0xe3,0xfa,0xe4,
0xd,0xe9,0x74,0x8f,0x93,0xa5,0xfe,0x1b,0xf5,0xa4,0x18,0xd,0xd9,0x5c,0x11,0x75,
0x16,0x1e,0x7d,0x72,0x10,0x59,0x4b,0xe0,0xc7,0xe5,0x2b,0x12,0x50,0x1f,0x4b,0x36,
0x93,0xb2,0x8e,0x62,0x21,0x2e,0xc3,0x68,0xe7,0x43,0xd5,0x11,0xe6,0xdd,0x13,0x92,
0xc3,0x81,0xe4,0x2d,0x8b,0xea,0xd8,0x53,0x9b,0xc3,0xd1,0x84,0x29,0x40,0x2c,0x32,
0x79,0x1e,0xd2,0x94,0x1,0x95,0x72,0x11,0x73,0xe6,0xcd,0xc1,0xb3,0x26,0x4d,0x8e,
0x6e,0x38,0x1,0x38,0xae,0xe4,0xa0,0x6d,0x3,0x3d,0x25,0x9c,0x6f,0xec,0x67,0xe5,
0xbd,0x7f,0xd5,0x7a,0x3c,0xb4,0x73,0x6b,0xd5,0x35,0xb0,0x2f,0x46,0x3,0x39,0x68,
0xe9,0x82,0x6,0x12,0xc1,0xbf,0x7c,0xe2,0xe3,0x58,0x45,0xa1,0xaf,0x28,0xef,0xf5,
0x6,0x54,0x30,0x7d,0xfa,0x74,0x74,0x77,0x77,0x63,0xa0,0x7f,0xc0,0xf6,0x25,0x16,
0x22,0xa1,0x28,0xed,0x9a,0x42,0xa0,0xc2,0x46,0xaf,0xcf,0x55,0x81,0x20,0x68,0x5e,
0x84,0x8a,0x44,0x21,0xd6,0xfc,0xd5,0x7,0x13,0x9,0x8c,0x68,0x53,0x18,0x9,0x14,
0x9,0x31,0x7d,0x6f,0x81,0x79,0x5a,0x5b,0x53,0x8b,0x67,0x3f,0xeb,0x59,0x38,0xe7,
0x9c,0xb3,0x71,0xd1,0x85,0x17,0xa1,0xa5,0xb5,0xd5,0xf6,0x27,0x6e,0x68,0xa8,0x47,
0x26,0x27,0xff,0xb9,0x3d,0x3e,0xd2,0xc0,0xf9,0xac,0x4,0x49,0x4d,0x6f,0xd4,0xef,
0xa3,0x37,0xf3,0x96,0xa4,0x7c,0xfa,0x3c,0x4a,0x28,0xf1,0x28,0x21,0xc6,0xe4,0xd9,
0xfd,0x36,0x94,0x93,0xdf,0x4b,0xf8,0x3f,0x70,0xff,0xc3,0xf8,0xdd,0xef,0x6e,0xc4,
0xda,0xd,0x6b,0x48,0xa,0x9d,0x46,0x34,0x3d,0x24,0x7,0xcd,0x48,0x96,0xeb,0x49,
0x3f,0xb6,0x54,0xf2,0x77,0x45,0x5b,0xde,0x21,0xc1,0x34,0xc8,0xc2,0x50,0x27,0x34,
0xad,0x17,0xe6,0x91,0x3a,0x8d,0xcd,0x4d,0x65,0x2e,0x10,0xbd,0x5b,0x56,0x23,0xb5,
0x78,0xd6,0xb,0x2d,0x2c,0x97,0xa2,0x70,0x1f,0x37,0xff,0x74,0xcc,0x5c,0x30,0x1f,
0x33,0x4f,0x99,0x15,0x75,0xb0,0xf2,0x5a,0x96,0xc7,0x44,0x56,0x9d,0x74,0xea,0x47,
0x88,0x92,0xa5,0x10,0x9,0xc3,0xe8,0x4c,0x75,0x87,0x39,0x38,0xa8,0x50,0xc7,0xe9,
0x3b,0x38,0x86,0xde,0x51,0xfd,0x91,0xe1,0xc0,0x5f,0xaa,0xb,0x43,0x88,0x5,0xf7,
0xe0,0x50,0xdc,0xf8,0x67,0xfc,0x3e,0x9a,0x3,0xb0,0xd7,0xdd,0x23,0x12,0xc8,0xe6,
0x72,0x24,0xac,0x34,0xf3,0x50,0xd6,0x5b,0x64,0x15,0xc4,0x65,0xae,0x1f,0xef,0x6d,
0x86,0x2a,0x6b,0x5e,0x19,0xfc,0x1c,0x61,0xef,0xbd,0xfb,0x63,0xdf,0xfb,0xf6,0xe2,
0x60,0xf7,0x3b,0x8c,0x44,0xc,0x96,0x3e,0xcb,0x5d,0x25,0xa7,0xfa,0xab,0x8a,0xf0,
0xfc,0x5,0xf3,0x30,0xa9,0xbe,0x11,0x39,0x36,0x23,0x56,0x99,0xa8,0x9a,0x1f,0xb4,
0x2e,0x1c,0x5d,0x1c,0x57,0x72,0xf0,0xd5,0x98,0x74,0x64,0x58,0xbd,0xbb,0xb,0x7f,
0x7a,0x78,0x39,0x6,0xe4,0x8b,0x3f,0x4e,0x89,0x3d,0xda,0x8,0x2b,0x25,0xf4,0xae,
0x5b,0x8b,0xcf,0xbf,0xeb,0x9d,0xc8,0x32,0x6d,0xb6,0x66,0xbb,0x5c,0x1d,0x4c,0x8f,
0x1a,0x7f,0x2c,0x40,0x86,0x6d,0xd8,0x2a,0x7b,0xcb,0x8d,0x7d,0x11,0x2f,0x33,0xad,
0xdf,0x8b,0x8,0xcc,0x9a,0xa8,0x6e,0x29,0x29,0xbf,0xb3,0x3a,0x87,0xdb,0xdb,0xdb,
0x31,0x73,0xe6,0x34,0xcc,0x3e,0x75,0x96,0xcd,0x24,0x5e,0xb8,0x70,0xa1,0x5d,0xd3,
0xd3,0xf4,0x4e,0x69,0xf4,0xba,0x57,0x88,0x2a,0x99,0x4,0xf4,0xbe,0x88,0x3b,0x8a,
0x75,0xaf,0xe2,0x18,0x5b,0x2d,0x7a,0xaf,0xfa,0x39,0xe4,0xfe,0x91,0x2b,0x68,0xcb,
0xb6,0x9d,0x66,0xed,0xac,0xd5,0xfe,0xca,0xcb,0x97,0x9b,0x35,0x90,0xd4,0xfe,0x5,
0x14,0xec,0x9e,0x46,0x6a,0x59,0x7c,0x95,0x4e,0x11,0x4a,0x94,0x9e,0xa1,0xa9,0xcd,
0x30,0xd,0xaa,0xee,0x94,0x97,0xe6,0x53,0x55,0xed,0x2e,0xa4,0xb2,0x46,0x52,0xaa,
0x78,0x6d,0xed,0xe3,0x6c,0x3,0xfa,0xda,0x71,0x72,0x7,0xb5,0x61,0xdc,0x84,0x9,
0x98,0x4c,0x4b,0xa7,0x81,0xd6,0x41,0x81,0xef,0xd0,0xa6,0x34,0x82,0xf2,0xd0,0xf2,
0x52,0x2d,0xe4,0x78,0x54,0x17,0x2b,0x9f,0xe1,0x5e,0x14,0xc5,0x47,0x71,0xd7,0xb7,
0xca,0x5f,0x11,0xbd,0x3a,0x87,0x65,0x81,0x29,0x9e,0xea,0x2c,0x4e,0x79,0xe1,0xa0,
0x8b,0x48,0xf1,0x56,0xb9,0xc,0xc5,0xc1,0x85,0xbd,0x83,0xc3,0x5e,0xcc,0xac,0xc9,
0xe0,0x69,0xb,0x17,0xa3,0x81,0x6d,0xc1,0x16,0x57,0x88,0xcc,0xee,0xe8,0xcb,0x63,
0x8c,0xe3,0xeb,0x56,0x62,0x43,0xf7,0xa9,0x35,0xed,0x2e,0x97,0x71,0xc3,0xdd,0xf7,
0xa0,0x8f,0xe7,0x7e,0x75,0xe5,0xcb,0x51,0x89,0x44,0x19,0x6b,0xef,0xbd,0x17,0xdf,
0xfc,0xe4,0x27,0x50,0x23,0x61,0xce,0x64,0x50,0x2c,0x98,0x20,0x50,0x9a,0xe2,0x74,
0x29,0x8b,0x4d,0xb0,0xd,0x4d,0xa7,0x9,0x9f,0xe8,0x3b,0x5d,0x8f,0x8b,0x41,0x93,
0x92,0xa4,0xb1,0xb,0x3a,0x6a,0x2,0xd9,0xb3,0x9f,0xfd,0x6c,0x9b,0x45,0x2c,0x97,
0xd0,0xde,0x67,0x68,0xb9,0x91,0x68,0xc7,0xb4,0x98,0x88,0xb4,0xb1,0x8c,0x69,0xee,
0x7a,0x5e,0x2c,0x8c,0x78,0x3b,0x45,0x53,0x74,0x4e,0x44,0xef,0x92,0x76,0x9b,0x1c,
0x1c,0x2d,0xd4,0xd7,0xd7,0x87,0x5f,0xfc,0xe2,0x17,0xb6,0xa6,0x90,0x66,0x49,0xcb,
0xda,0xd1,0x33,0x23,0xc2,0x88,0x7e,0x23,0x21,0xa7,0x7b,0x8d,0xf0,0x18,0x47,0x1b,
0x5,0x24,0x4b,0xc1,0xd2,0x11,0x9,0x48,0xd2,0x85,0x92,0x55,0x7d,0x67,0x14,0x34,
0x24,0xb9,0x92,0xe2,0x75,0xb9,0x52,0xf8,0x1b,0x6d,0x32,0x33,0xfb,0x9c,0x4b,0x69,
0x32,0xcf,0xc5,0x4c,0x9a,0xcd,0x1a,0x4e,0x5a,0xf0,0xcb,0x28,0xca,0xb2,0x60,0xc4,
0xf4,0x5e,0x8d,0x16,0x12,0x75,0x68,0xa7,0x37,0x63,0x15,0x3d,0xb2,0x9a,0xee,0xc1,
0xbe,0x87,0xa3,0x84,0xa1,0xd5,0x3f,0x2e,0x7,0x7b,0x17,0x2f,0x2b,0x5d,0xf6,0xbf,
0x5d,0xb3,0x3b,0xf8,0xfe,0xea,0x7e,0xd,0xcc,0x1b,0xb9,0x82,0x34,0xbf,0x23,0x1e,
0x6c,0xa0,0x7e,0x14,0xdd,0xab,0x3c,0xd2,0x26,0xfe,0x51,0xe,0xec,0x8b,0x38,0x1d,
0xe,0xe,0x87,0x82,0x6c,0xb1,0x1f,0x67,0xcc,0x9a,0x85,0x33,0xa6,0x4d,0xad,0xf6,
0x4d,0xab,0x2e,0x1e,0xbd,0xfa,0xff,0x44,0x38,0xae,0xe4,0x10,0x96,0xca,0xe8,0xa3,
0x90,0x78,0x60,0xd3,0x66,0x3c,0xb4,0x7e,0x9d,0xad,0x9b,0x64,0xae,0x15,0x49,0x93,
0x51,0x89,0x32,0x5a,0x28,0xac,0x3e,0xfe,0x37,0x6f,0x46,0xe7,0xd6,0xad,0x46,0xe,
0x72,0x9f,0xc,0x4d,0xcd,0xd0,0xec,0x95,0x60,0x88,0x89,0x23,0x1a,0x77,0xaf,0xc9,
0x61,0x15,0x5b,0x53,0x48,0x4b,0x49,0x68,0xb3,0x99,0x33,0xce,0x58,0x88,0x89,0x13,
0x26,0xa2,0xad,0xad,0xcd,0x56,0x1c,0x95,0x9f,0x7d,0x78,0x1c,0xe8,0x6b,0x56,0x3f,
0x86,0xb4,0xdd,0x48,0x38,0x45,0x6e,0xb,0xb3,0x3e,0xd2,0xd1,0x8e,0x67,0x77,0xdc,
0x79,0x3b,0x1e,0x7f,0x7c,0xb5,0xf5,0xd,0x74,0xd0,0x72,0xdb,0xb6,0x6d,0x1b,0x76,
0x77,0xec,0x46,0x67,0x67,0x27,0xab,0x9c,0x84,0xfb,0x81,0xe5,0x60,0xb1,0x1f,0x22,
0xd0,0x94,0x1e,0xcd,0xd,0xd0,0xee,0x5d,0xb6,0xa9,0x3c,0xa3,0x21,0x41,0x69,0xe5,
0x58,0x62,0x1c,0x48,0x1c,0x99,0x5c,0xe,0xd3,0x67,0x9d,0x12,0x75,0x10,0xcf,0x99,
0x8d,0xda,0xfa,0x6,0x1b,0x3a,0xaa,0x75,0x86,0x3c,0x5a,0x34,0x1,0xef,0x55,0x27,
0xb1,0xfc,0xfa,0xf1,0xf2,0x28,0x69,0x3f,0x63,0x71,0x17,0x2d,0xd8,0x7b,0xf4,0xe6,
0xd8,0x2f,0x34,0x4,0x51,0x7c,0xec,0xf4,0xa8,0x40,0xe9,0x89,0xcb,0x48,0xf9,0xa5,
0xf3,0xe8,0xa8,0x39,0x21,0x9,0x23,0x0,0x4d,0x8a,0x13,0x51,0x2b,0x9d,0xea,0xb,
0x38,0xf8,0x2c,0xe2,0xa1,0xd8,0xd7,0x52,0x70,0x70,0x78,0x2a,0xa8,0x4,0x65,0xd4,
0xb2,0x4e,0x3e,0xf3,0x8c,0xc5,0x98,0xda,0x58,0x8f,0xb4,0x26,0x2d,0x1e,0xa7,0xd5,
0x5b,0x8f,0x2b,0x39,0x94,0x99,0xb0,0x2d,0xc5,0x32,0x7e,0xb3,0x64,0x9,0xfa,0xd9,
0xc2,0xe5,0xae,0xad,0x8c,0x62,0x72,0xa8,0x54,0x4a,0x68,0x67,0x22,0xde,0x74,0xf5,
0xb,0x6d,0x63,0x9a,0xe1,0xc8,0x21,0x16,0xd0,0x72,0xf3,0x68,0xe7,0x31,0xcd,0x1d,
0xd0,0x8a,0xa2,0x8b,0x17,0x2d,0xc2,0xb9,0xe7,0x9c,0x8d,0x8b,0x2f,0xb9,0x38,0x72,
0x9,0xf1,0x3e,0x75,0xd0,0x53,0x54,0x9a,0x4,0x54,0x7,0xee,0x20,0x91,0xc,0xb7,
0x96,0x90,0x8d,0x52,0xa9,0x9e,0x56,0xa1,0x89,0xe5,0xbb,0x3b,0xf6,0xa0,0xab,0xab,
0xcb,0x96,0x95,0xd6,0xbc,0x81,0xdf,0xfd,0xfe,0xf7,0x78,0xf4,0xb1,0xc7,0xf0,0xd0,
0x43,0xf,0x59,0x3c,0x54,0xdc,0x12,0x6e,0xda,0x8f,0xd8,0x46,0x55,0xf1,0x1d,0x83,
0x64,0x32,0x4c,0x4d,0x18,0x2a,0x8c,0x63,0x81,0x48,0xf1,0x69,0x6b,0x9,0xd5,0x35,
0xb5,0x20,0x99,0xcb,0x23,0xdf,0xd4,0x88,0xb6,0x89,0x93,0x31,0x63,0xce,0x3c,0x4c,
0x99,0x3e,0x1d,0xcd,0xed,0x6d,0xb4,0x4,0x2,0x94,0x68,0x99,0xc0,0xd3,0xcc,0x65,
0xe6,0x81,0x4f,0xf2,0x51,0x7f,0x43,0x52,0xc3,0xf5,0xa,0xbc,0x12,0xe9,0xe5,0x31,
0x12,0x61,0xce,0xae,0x58,0xfa,0x6d,0x62,0x97,0xce,0xed,0x1b,0xfb,0x3f,0xc6,0xd0,
0xf8,0x1c,0xd,0x28,0x3f,0x94,0xf6,0xd8,0x52,0xd2,0x51,0x65,0x95,0xcd,0x6a,0xbf,
0x81,0xc8,0xfa,0x8b,0xad,0xb3,0x98,0x1c,0xf4,0x1b,0x85,0x27,0x27,0x8,0x7,0x87,
0x23,0x83,0x3c,0x2d,0x5e,0xb1,0x80,0x85,0x13,0xdb,0x71,0xc1,0xec,0xd9,0xc8,0xb3,
0x91,0x27,0xd3,0xc7,0x67,0x7c,0xeb,0x31,0x23,0x87,0x8a,0xfc,0x11,0xe6,0x24,0x93,
0x36,0xab,0xb,0x15,0x74,0x14,0x2a,0xb8,0x6d,0xd9,0x52,0x6c,0xa4,0xa9,0x54,0x4a,
0xa5,0x6d,0x14,0x4e,0x24,0xc,0x46,0x27,0xb4,0xf6,0x49,0x3,0xc9,0xe1,0xad,0xcf,
0xbf,0x1a,0x8d,0x14,0xec,0xa5,0x54,0x99,0xd6,0x40,0x2,0x19,0x9,0x76,0x5a,0x5,
0xb,0xe6,0x9f,0x8e,0x4b,0x2e,0xbe,0x8,0x57,0x5e,0xf9,0x1c,0x1b,0x6f,0x9f,0xa7,
0x20,0x95,0x1b,0x22,0x9f,0x97,0x20,0x8c,0xf4,0x64,0xe5,0xb,0xa5,0x8c,0x49,0x3d,
0x1d,0x8c,0x10,0x74,0x39,0xfe,0x8e,0x10,0xe9,0xc4,0xc2,0x48,0x47,0xdd,0x93,0xce,
0xe4,0x79,0x31,0x81,0xfe,0x81,0x7e,0x73,0x9,0x2d,0x59,0x72,0x3f,0x6e,0xbe,0xf1,
0x8f,0x36,0x2a,0x4a,0x5b,0x6e,0xf6,0x16,0x7a,0xe0,0x8b,0x2d,0xf4,0x30,0xa,0x65,
0x7b,0x8d,0x5c,0x78,0x3a,0xd2,0x46,0x48,0x25,0x6,0x6,0x9f,0x69,0x96,0x0,0xe3,
0x5c,0x33,0x90,0x81,0x66,0x3,0x97,0x18,0xf7,0x80,0x9c,0xad,0x49,0x71,0x59,0x2f,
0x87,0xde,0x81,0x12,0x5,0x7a,0x12,0xad,0x13,0xa7,0xe0,0xb4,0xc5,0x67,0xa0,0x8d,
0xd6,0xc0,0x24,0xa6,0x47,0xbf,0x51,0xe9,0xa9,0xa3,0x98,0x92,0xdf,0xce,0xab,0x51,
0xb6,0xf7,0xea,0xd4,0x76,0x36,0xb3,0xf8,0xdb,0x25,0xfb,0x22,0xee,0x57,0x89,0x6e,
0x88,0x4e,0x87,0x9c,0x54,0xc1,0xb8,0xf1,0xb7,0x7,0x5e,0x17,0xe2,0x97,0xc,0x1,
0x5f,0x20,0x1,0x2e,0x8b,0xc3,0x36,0xec,0x21,0x92,0xa9,0x30,0x5a,0xf6,0x9b,0x9f,
0x15,0x57,0x7d,0x5f,0x2a,0x15,0x6c,0x32,0x5c,0x5e,0x1d,0xdc,0x36,0x91,0x4c,0xab,
0xa8,0x8a,0xb8,0x44,0x10,0x11,0x61,0xd,0x7d,0x63,0x94,0x9e,0xf8,0x7d,0xfa,0x26,
0x3a,0x77,0xc4,0xe0,0x70,0x3c,0x40,0xb5,0x8d,0xb5,0xce,0x47,0xc6,0x2f,0xe2,0xf2,
0x85,0xb,0x31,0xb3,0xae,0x9,0xb9,0x74,0xe4,0x3a,0x56,0x2b,0x52,0x2d,0x34,0xf,
0xa6,0x70,0x94,0xab,0xe4,0xb1,0x23,0x87,0x6a,0x3,0x15,0x62,0x1d,0xf1,0xc1,0x5d,
0xbb,0x71,0xc7,0xf2,0xa5,0x28,0xb1,0x71,0x92,0xff,0x6c,0xad,0x24,0x5b,0x53,0x64,
0x94,0xb6,0x33,0x8d,0xbe,0xcc,0x31,0xee,0xff,0xf0,0xee,0xf7,0x61,0xf7,0x8a,0x15,
0x28,0xa7,0x4a,0x4c,0x8b,0x47,0x2d,0xb8,0x82,0x65,0x4b,0x1f,0xc2,0x94,0xc9,0x93,
0xa8,0x75,0xd2,0xc,0x4c,0x52,0xe0,0x9b,0xe0,0x89,0x84,0x50,0x4,0xa,0x4d,0xb3,
0x9a,0xf6,0x45,0x5c,0x1c,0xb1,0xd5,0xa0,0xcf,0x85,0x52,0xd1,0x16,0xce,0x53,0x27,
0xb1,0x96,0xcf,0xd6,0x7e,0xc4,0x2b,0x57,0xad,0xc5,0xe3,0x8f,0x3f,0x6e,0xae,0x21,
0x69,0xb4,0x12,0x7e,0x3e,0x9f,0x49,0x3b,0xc0,0x84,0xb1,0x59,0x16,0x7c,0x9f,0xc8,
0x40,0xd6,0x8c,0x88,0x44,0x9d,0xc1,0xd1,0x52,0xd,0xea,0x1d,0xd0,0xe,0x75,0x22,
0x38,0xfe,0x86,0x47,0x9d,0x17,0xfd,0xc,0x3c,0x96,0xcd,0xb8,0x49,0x13,0x30,0x5e,
0x2e,0xa1,0x71,0x6d,0x68,0x18,0x3f,0x1,0x8d,0x2d,0x6d,0x98,0x38,0x79,0x2a,0x52,
0xd9,0x3c,0xa,0xe5,0xd0,0x86,0x1d,0x17,0xa9,0x4d,0xb,0x12,0xb8,0xc7,0x16,0x96,
0x98,0xbd,0x60,0x7e,0xc4,0xf5,0x69,0x1f,0xe8,0x36,0x5e,0x56,0x1e,0x1b,0xf1,0x32,
0x13,0xbc,0x74,0x75,0x39,0x9,0x86,0x38,0x8f,0x64,0x35,0xd9,0xed,0x4e,0xb8,0x3b,
0x8c,0xa,0x48,0xe1,0x9,0x90,0xe,0x4b,0x68,0xa5,0xd5,0xfd,0x8c,0xb3,0xcf,0x46,
0x6b,0x2e,0x1b,0xd5,0x71,0x7e,0x1b,0x87,0x63,0x81,0x63,0x47,0xe,0x7a,0xac,0x8,
0x82,0x92,0x47,0x43,0x55,0x7d,0x6a,0xa7,0xdf,0xbd,0xff,0x4e,0x14,0x94,0x54,0xcd,
0x3c,0xa5,0x34,0xd2,0x6a,0x84,0x11,0x46,0x67,0x43,0x55,0xa7,0x69,0xc5,0x2f,0xe0,
0xe6,0x1f,0xfe,0x37,0xee,0xf8,0xdf,0xff,0x65,0x3a,0xb5,0xf3,0x18,0xb,0x8e,0x69,
0xff,0xfc,0x67,0x3f,0x83,0xbf,0xfa,0xab,0x37,0x98,0xbb,0x48,0x43,0x5e,0xfd,0x30,
0x1a,0x87,0x6f,0xbb,0x78,0xf1,0x8f,0x67,0x7c,0x40,0x75,0xa3,0x9a,0x6a,0x11,0xc4,
0xbb,0xaa,0xf5,0xf6,0xf6,0xda,0xc4,0x31,0xcd,0x87,0x50,0x10,0x31,0x8,0x72,0x77,
0x48,0xb8,0xd9,0x88,0x21,0x6a,0xbd,0x22,0x90,0x18,0x7a,0x46,0x42,0x96,0x1a,0x8f,
0xa4,0x5c,0x7e,0x47,0xfa,0xb5,0xaf,0x79,0xcd,0x66,0xfa,0x8a,0x38,0x22,0xb,0x82,
0x12,0x1d,0xa9,0x7c,0x8d,0x75,0x6,0x57,0x32,0x29,0x4c,0x3f,0x75,0x16,0x66,0x9d,
0x36,0x17,0x33,0x17,0x9f,0x8f,0xc6,0xe6,0xa6,0x68,0xd2,0x18,0x85,0xbf,0xd6,0x72,
0xd2,0xba,0x43,0xea,0x0,0x2b,0x97,0xb4,0x50,0x5e,0xda,0xe2,0xcf,0x87,0xcb,0x50,
0x18,0x24,0xb0,0xa3,0x8d,0x38,0x3f,0xe2,0x67,0x5b,0xda,0x86,0xbe,0x46,0xa,0x5,
0xa1,0x6b,0xba,0x47,0xf1,0xd3,0xfa,0x4f,0x79,0xa6,0x29,0xee,0x23,0x88,0xac,0x88,
0x68,0xd9,0x71,0xfd,0x5e,0x9f,0x75,0x6f,0x48,0x8b,0x76,0xf0,0xfc,0x18,0xc5,0xdf,
0xc1,0xe1,0xa8,0x41,0xca,0x5c,0x22,0x60,0x5b,0xf6,0xe1,0x95,0x4a,0x58,0x38,0x7b,
0x36,0xce,0x9e,0x3e,0xc5,0x56,0x91,0xd0,0xb0,0x95,0xa1,0xb5,0xf7,0x68,0xd7,0xe5,
0x63,0xd7,0xe7,0xa0,0x6,0xcc,0x84,0x69,0xf7,0xab,0x5e,0xc6,0xf9,0xc1,0xc7,0x57,
0xe2,0xbe,0x8e,0x9d,0x14,0x4c,0x11,0xe7,0x49,0xa3,0x8d,0x84,0x97,0x34,0xcf,0xd1,
0xd9,0x40,0xb5,0xce,0x4d,0x22,0xe9,0x63,0xdd,0xdd,0xf7,0xe2,0x47,0x5f,0xf8,0x22,
0xca,0xe5,0x7e,0x26,0xc5,0xb3,0x14,0x5d,0x72,0xd1,0x85,0xb8,0xee,0xda,0x5f,0xf2,
0x4c,0x82,0x8d,0x74,0xc0,0x24,0xda,0xf0,0x4d,0x4d,0x72,0xc9,0x68,0xef,0x80,0x10,
0xdb,0x77,0x74,0xe0,0xee,0xbb,0xee,0xb6,0x51,0x42,0x5a,0x6a,0xba,0xb3,0xab,0x13,
0x9d,0x7b,0x3a,0xb1,0xa7,0xb3,0x73,0x70,0xc2,0x98,0x9,0x30,0x7b,0xdb,0xbe,0xb0,
0x42,0x1b,0x52,0x19,0x4c,0x0,0xf2,0x25,0xfa,0x53,0x9e,0x6a,0x44,0x8f,0x96,0x85,
0x28,0x69,0x84,0x18,0x49,0xa5,0x7d,0xe2,0x4,0x4c,0x3f,0x65,0x36,0x66,0xcf,0x9b,
0x87,0xb6,0x71,0xe3,0xe0,0xd7,0xd6,0x20,0xcb,0x90,0xa9,0xcd,0xdb,0x66,0xf5,0x1a,
0x70,0x1a,0xee,0x67,0xc9,0xe8,0x1d,0xa9,0x40,0x9b,0xdb,0x8,0x24,0x39,0x5e,0xd0,
0xb9,0xd6,0x94,0x52,0x7a,0x8e,0x15,0x94,0x96,0xa8,0x5a,0x32,0x4d,0xe6,0x9a,0xdc,
0xb,0xb9,0x7e,0x72,0xd5,0x21,0xa2,0xb1,0x35,0xa0,0x46,0xa1,0xf3,0x3,0x4,0xbe,
0xf6,0x86,0xde,0x1f,0x66,0x39,0x1d,0xc3,0xc8,0x3b,0x38,0x1c,0x45,0x58,0x3f,0xa0,
0xe4,0x87,0xda,0x67,0xa9,0xc8,0x7a,0xef,0xe1,0xea,0xb3,0x17,0xa2,0x29,0xc3,0xf6,
0x5b,0x8e,0xfa,0xf,0xa5,0x63,0x5b,0xad,0x1e,0x3d,0xe4,0xa0,0x8e,0xbb,0x24,0x2d,
0x85,0x4,0x36,0x16,0xfa,0x70,0xd3,0xd2,0x7,0x50,0xac,0xc8,0xbf,0x1b,0x48,0x4a,
0x52,0x78,0x49,0xc8,0xf0,0x38,0xb8,0xb3,0xd6,0x28,0x84,0x84,0x18,0xad,0x82,0xed,
0xcb,0x97,0xe3,0x5b,0x1f,0xf9,0x18,0xd9,0xa2,0x68,0x8b,0xbd,0x49,0x78,0xf5,0xf7,
0xf6,0xa0,0xab,0x73,0xf,0x9,0xa3,0x84,0xad,0x5b,0xb7,0xa1,0x63,0xf7,0x1e,0x6c,
0xdb,0xb6,0x1d,0xf7,0xde,0x7b,0xf,0x56,0xac,0x58,0x61,0x3b,0x8f,0xed,0xec,0xe8,
0x50,0x89,0x5a,0xea,0x25,0xe4,0x4,0x2d,0x10,0xa7,0x8e,0xe3,0x58,0xbb,0xd5,0x77,
0x56,0x41,0xf6,0x83,0x5d,0x1a,0x92,0x6d,0x12,0x8a,0x5e,0x6d,0x1d,0x72,0x8d,0x4d,
0xa8,0x6d,0x6a,0x46,0x4d,0x63,0x23,0x26,0x9d,0x32,0xb,0x53,0x66,0xcc,0xc4,0xa4,
0xe9,0x33,0x6c,0x52,0xd9,0x0,0x9f,0xab,0xd5,0x48,0x15,0x6a,0x92,0x39,0x23,0x37,
0x8d,0x38,0x52,0x39,0xe8,0x81,0xd1,0xf0,0xcb,0xea,0x63,0x79,0x1a,0x1d,0x53,0x56,
0xf9,0x74,0x41,0x7f,0xf1,0x3b,0x8f,0x75,0x99,0x29,0xfd,0x9e,0x27,0xd7,0x50,0xb4,
0xc7,0x80,0xf2,0xc7,0x82,0x3a,0x85,0x69,0x25,0x28,0xbd,0x42,0x4c,0xc,0x43,0x3f,
0xf,0x62,0x98,0xf9,0x1d,0x8e,0x1c,0x1c,0x46,0x13,0x54,0x5b,0x8d,0x18,0x14,0xa8,
0x28,0x95,0x69,0x41,0x2c,0xaa,0xf5,0x70,0xe1,0x82,0x33,0xd0,0x50,0xf1,0xcc,0x92,
0xf,0x78,0x53,0x54,0xab,0x8f,0x6e,0xbd,0x3e,0x66,0xe4,0xa0,0xd,0x52,0x10,0x96,
0x51,0x4a,0x7a,0xb8,0xfe,0x81,0x87,0xb0,0xbe,0x58,0x46,0x5a,0xaf,0x8a,0x5f,0xc7,
0x74,0xc4,0x2f,0x1e,0xad,0xe4,0x90,0xe,0x12,0x36,0x74,0xb3,0x73,0xdb,0x16,0x7c,
0xf5,0x9a,0xf7,0xc3,0xeb,0xd8,0x81,0x12,0x13,0xa5,0x51,0x40,0x72,0xf,0x9d,0x76,
0xda,0x3c,0x1b,0x2a,0xaa,0x3d,0x14,0x94,0xcd,0x12,0x60,0x43,0x85,0x98,0xae,0x91,
0x2,0x78,0x54,0xe,0xb0,0x78,0x79,0x2c,0xa5,0x59,0xd,0x78,0x8f,0x11,0x2,0xf3,
0x30,0x45,0x16,0xcd,0x49,0x80,0xf3,0xa3,0xf6,0x78,0x2e,0x93,0x5c,0x3,0x1e,0x7,
0xa,0x1a,0x8,0x54,0x8b,0x53,0x4f,0x3f,0x1d,0x73,0x16,0x2f,0xc6,0xcc,0x79,0xa7,
0x91,0x10,0x9a,0xcd,0x52,0x30,0x62,0x61,0x10,0xe2,0x3c,0x8e,0x10,0xe5,0xb3,0x2a,
0x9b,0xde,0x6b,0xe7,0x43,0x6f,0x18,0x52,0xc,0xf1,0xe9,0xbe,0xbf,0x17,0x74,0xe5,
0xc0,0xf2,0xb2,0xe8,0x46,0xaf,0xdc,0x7,0xea,0x63,0x89,0x5,0xb6,0x5c,0x3f,0x46,
0x62,0x5e,0x34,0x2f,0x23,0xde,0xef,0x59,0xfb,0x5c,0xa4,0x49,0x2,0xd9,0x6c,0xe,
0xb9,0x5c,0xb4,0xc8,0x60,0xf4,0x1b,0x86,0xea,0xab,0x74,0x88,0xe2,0x7a,0x60,0x8c,
0x86,0x62,0x1f,0x72,0x38,0xe8,0xbd,0x43,0xef,0x71,0x38,0x51,0xd8,0x5b,0xa,0x71,
0x39,0x49,0x4,0x46,0x62,0xce,0x61,0x5f,0x98,0x62,0x56,0x85,0x66,0xe5,0x3f,0x63,
0xfe,0x69,0x38,0xb5,0xae,0x16,0xb9,0x21,0x79,0xb6,0x6f,0xdd,0x3f,0x72,0x1c,0x33,
0x72,0x90,0x6,0xac,0x19,0xd1,0xeb,0x76,0xed,0xc2,0xcd,0xcb,0x56,0xa0,0x3f,0x5b,
0xc3,0x24,0x44,0x82,0x71,0xac,0xc0,0x14,0x6e,0x96,0x47,0xa2,0x58,0xc0,0xdf,0xbd,
0xe5,0x6f,0x90,0xda,0xb1,0x1d,0x25,0xa5,0x91,0x85,0x24,0x1,0x2d,0xec,0x4f,0x6,
0x71,0x1,0x2a,0xd3,0xe3,0xdc,0x88,0x88,0xa1,0x5a,0xc0,0xda,0x97,0x80,0xf7,0x50,
0x8c,0x46,0x2,0x94,0xb7,0x37,0x8c,0x9b,0x8e,0x89,0x53,0x26,0x59,0x27,0x71,0xd3,
0xb8,0x36,0x34,0x8f,0x6b,0x45,0x43,0xeb,0x14,0x34,0x34,0x35,0x21,0x60,0x4,0x94,
0xcf,0x72,0xa0,0x4,0xd4,0xfc,0x63,0x2b,0xe0,0x68,0x57,0x94,0x43,0xc1,0x60,0x45,
0xe2,0xab,0x8d,0xf8,0x94,0x66,0x7d,0xe6,0xb9,0x2e,0xda,0xda,0x48,0x36,0x7b,0x38,
0x9a,0x54,0x17,0xbb,0x84,0xcc,0x6a,0x4a,0x30,0xad,0x24,0xb6,0x88,0x3c,0x22,0x2b,
0xca,0x61,0x6c,0x83,0xad,0x41,0x55,0xa5,0x6a,0x19,0xeb,0x53,0x74,0x7e,0xfc,0x6b,
0xee,0xe8,0x82,0xec,0xe1,0xc9,0xf9,0xc,0xae,0x3c,0x53,0x33,0xa7,0xd9,0xce,0x4c,
0x8,0x59,0xee,0xd9,0xf7,0x47,0xb,0xc7,0x8c,0x1c,0x7c,0x36,0xf2,0x3e,0x1e,0x6f,
0x7e,0xe0,0x41,0x6c,0xec,0xea,0xa5,0x49,0x94,0xa6,0xaa,0x1b,0x9,0xcc,0xb1,0x82,
0x72,0x4a,0x7c,0x9e,0x40,0x2d,0xc3,0x3f,0x7d,0xf0,0x1a,0x74,0x3c,0xbc,0x8c,0x5,
0xa7,0x15,0x4a,0xa3,0x2c,0x8d,0xc9,0x40,0x44,0xa1,0x73,0x9,0xbe,0x41,0xd2,0x60,
0x90,0x39,0x18,0x29,0xcf,0x9,0xa4,0xa9,0x35,0xe7,0xf3,0xb5,0xd4,0x9a,0xf3,0xa8,
0x6b,0x6c,0xc0,0xbc,0x45,0xb,0x30,0x7d,0xce,0x2c,0xcc,0x9c,0x35,0x1b,0x3,0xc9,
0x1c,0xa,0xa5,0x92,0xcd,0x20,0xb6,0x3d,0x17,0x2a,0x21,0x4a,0x9,0xe6,0x27,0x7f,
0x9b,0x12,0xe5,0x9a,0x1b,0x8a,0x82,0x38,0x15,0x90,0xac,0x4e,0xc,0x1,0xab,0x5a,
0xc6,0x7d,0x12,0xd1,0xaa,0xb4,0xd1,0x48,0x21,0x91,0x40,0xbc,0x4b,0x9c,0xa0,0xb8,
0x86,0xb4,0x7e,0x86,0x92,0x67,0x4c,0x9c,0x31,0xe2,0xef,0x1c,0xc6,0x36,0x64,0x75,
0x4b,0xa8,0x45,0x45,0xaf,0x32,0xa7,0x2,0xc1,0xba,0x7d,0x74,0x45,0xdc,0xd8,0x43,
0x51,0x13,0xe3,0x28,0x41,0x2e,0x9c,0x7d,0x2a,0x4e,0x9f,0x30,0x1e,0x39,0x63,0xd7,
0xbd,0x16,0xfa,0xd1,0xc2,0x31,0x23,0x87,0x62,0x18,0x60,0x75,0x6f,0x2f,0x6e,0x24,
0x39,0x20,0x95,0x85,0x17,0x24,0x50,0x1a,0x63,0xa,0xa1,0xc8,0x41,0x55,0x39,0xc3,
0x1c,0xec,0x5f,0xb3,0x1e,0x9f,0x7e,0xdb,0xdb,0x99,0xce,0x1,0xa,0xc2,0x27,0x4f,
0xa8,0x3a,0xa7,0x29,0x5,0x31,0x71,0xf2,0x14,0xcc,0x5d,0x30,0xdf,0xb6,0xa5,0xd4,
0x6,0x33,0xe9,0xfc,0x78,0x78,0xb9,0xc,0xca,0xfc,0xde,0x3a,0x89,0x59,0xde,0xea,
0x2e,0x1e,0xa,0x15,0x58,0x50,0xdd,0x3e,0x50,0xe,0x27,0x16,0x62,0x74,0xb4,0x6f,
0x8e,0x49,0x71,0x3e,0x21,0x62,0x22,0xd0,0x3c,0x8e,0x38,0xed,0x9a,0xec,0xb6,0x77,
0xd9,0xef,0xfd,0x31,0xdc,0x75,0x47,0x8,0x27,0x1b,0x12,0x94,0x11,0xf5,0x2d,0x2d,
0x38,0x75,0xfe,0x2,0xc,0x68,0xc4,0x99,0xf5,0x27,0x45,0xca,0x82,0xc3,0xc1,0x61,
0x7b,0x4b,0x53,0xab,0x6c,0x4e,0xa7,0xf0,0xbc,0x33,0xcf,0x44,0x63,0x22,0x80,0x47,
0x19,0x3b,0x6a,0xc8,0xa1,0xa7,0xd4,0x8f,0x9f,0xdd,0x7d,0xf,0xf6,0x78,0x59,0x24,
0xc3,0x14,0x6a,0xca,0x21,0x6,0xd2,0x63,0xab,0xd0,0xa3,0x4d,0xc2,0x29,0xd6,0x2a,
0x49,0xd4,0x95,0x7d,0x3c,0x7c,0xf3,0x2d,0xf8,0xf9,0x77,0xbe,0x81,0x62,0x61,0xe0,
0x0,0x6d,0x78,0x7f,0xc8,0xa0,0xd6,0x3d,0x72,0x9,0x15,0xa5,0x2d,0x69,0x33,0x1b,
0x36,0x8e,0x94,0x4f,0xcb,0x83,0x5,0xaf,0xef,0xe2,0xc2,0x8e,0x73,0xcd,0x8e,0x7c,
0xa4,0x8e,0x1a,0xb0,0x2a,0x6b,0x52,0x46,0xa6,0xb6,0x13,0x54,0x5c,0x94,0xcf,0x47,
0xb6,0x2f,0xf5,0xe1,0x23,0x4e,0xa7,0x52,0x6a,0x5b,0x7f,0x92,0xf0,0xe4,0x13,0x8d,
0x5d,0x44,0xb6,0x6,0xd3,0x1,0x18,0x2e,0x5f,0x86,0xbb,0xcf,0x61,0x2c,0x23,0x4f,
0x9d,0x67,0x80,0x75,0xbf,0x65,0xd6,0x29,0x78,0xfd,0x3b,0xdf,0x89,0x9,0xb3,0x66,
0xb2,0x3d,0x69,0x51,0x47,0x57,0x17,0x9e,0x8,0x95,0x24,0xdb,0x16,0x1b,0x7f,0x96,
0xed,0xeb,0x69,0x73,0x66,0x63,0x6e,0x73,0x83,0xed,0x55,0x7f,0xb4,0xf3,0xed,0x88,
0xc9,0x61,0xe8,0x8f,0xad,0xdb,0xb4,0xa4,0xd1,0x48,0x1,0x6e,0xd9,0xb2,0x3,0x2b,
0x37,0x6d,0x42,0xbf,0xc6,0xab,0x4a,0x60,0xf0,0x46,0x9,0xb4,0xb1,0x84,0x64,0x45,
0xcb,0x4d,0x6b,0x44,0x16,0x85,0x63,0x58,0x46,0x5d,0x57,0x2f,0x3e,0xf4,0xba,0xd7,
0xd8,0x1c,0x80,0xa1,0x38,0x98,0xfe,0xec,0xe0,0x70,0xb2,0x60,0xb8,0x3d,0xe1,0xd5,
0x3f,0xa6,0x90,0xa6,0x79,0x5c,0x28,0x85,0xf8,0xea,0x8f,0xff,0x1b,0xc5,0xe6,0x36,
0x47,0xe,0x4f,0x2,0xed,0x5b,0x2f,0xf7,0xb1,0x57,0xa1,0xcc,0x19,0x28,0xe2,0x25,
0x97,0x5c,0x86,0xd6,0xea,0x8a,0xc0,0x92,0x35,0xca,0xbd,0xea,0xc0,0xc3,0xe8,0xc3,
0x53,0xc4,0x51,0x55,0x33,0x49,0x64,0x8,0x35,0x12,0x25,0x93,0xc6,0x96,0x1d,0xbb,
0x6c,0x59,0x86,0xc1,0x51,0x31,0xf6,0xff,0xd8,0x84,0xea,0xb2,0xe6,0x2e,0x68,0x59,
0x6b,0x8d,0xb4,0x89,0xae,0xed,0x2d,0x15,0x65,0xb2,0xb,0x2e,0x9c,0xcc,0xe1,0x9,
0x41,0xfd,0x54,0x9b,0x33,0xdd,0x76,0xdb,0x6d,0x47,0x24,0xcc,0x4e,0x16,0x24,0x99,
0x5f,0xea,0x66,0xd0,0xf2,0x32,0x41,0x22,0x89,0x95,0x1b,0x36,0x9a,0xe3,0x39,0x26,
0x6,0xcb,0xc2,0xc1,0x93,0xa7,0x8e,0xa3,0x60,0x39,0xf0,0xe7,0xd5,0x27,0xf8,0x3c,
0x96,0x18,0xa1,0x35,0x9b,0x37,0xe3,0x8f,0x2b,0xd7,0xd0,0xfc,0x21,0xc3,0x89,0x2c,
0x28,0x28,0xad,0x43,0x7d,0x98,0xe5,0x22,0x46,0x33,0x62,0xcb,0xa1,0xac,0x89,0x5a,
0x15,0x1f,0x6b,0xfe,0x74,0x7,0x7e,0xf0,0xa5,0xcf,0xd9,0x28,0x9d,0x18,0x36,0x67,
0x41,0x1f,0x8f,0x2c,0x9b,0x1d,0x1c,0xc6,0xc,0x4c,0xc3,0x95,0xcb,0xd1,0xf3,0x6,
0x2d,0x7,0xea,0xc1,0x38,0xef,0xc5,0x2f,0xc2,0x55,0x7f,0xfd,0xa6,0x31,0xad,0x48,
0x1e,0xd,0x28,0xcf,0x94,0x47,0xea,0x8b,0xcc,0xf8,0x21,0x1a,0x48,0xac,0xcf,0x3f,
0xf7,0x4c,0xe4,0x53,0x1e,0x32,0xcc,0x5b,0x11,0x47,0x8c,0xa1,0x4a,0xea,0xe1,0xe2,
0xc8,0xc9,0x81,0x3f,0xb7,0x6e,0xd9,0x4a,0x12,0x7d,0x41,0x5,0x9d,0x14,0x92,0xd7,
0xff,0xe9,0x16,0x94,0x73,0xf5,0x91,0x2b,0x89,0x71,0x53,0xa7,0xaa,0x4f,0xf5,0x41,
0x6b,0x29,0x8d,0x25,0xc4,0xe4,0x50,0xa2,0xf4,0xf,0xc3,0x12,0x36,0xdc,0x7e,0x37,
0x7e,0xf0,0xc5,0xcf,0x99,0x25,0x11,0xe3,0xb2,0xcb,0x2e,0xc3,0xa7,0x3f,0xf5,0x49,
0xde,0xe7,0x9c,0x4b,0xe,0x27,0x2f,0xa2,0xfe,0x31,0x75,0xab,0xa5,0x6c,0xf5,0xe1,
0x6f,0x7d,0xeb,0x5b,0xf8,0xf1,0x4f,0xb5,0xe4,0x8c,0xc8,0x1,0x28,0x53,0x40,0x5c,
0xf2,0xff,0x5e,0x81,0x2b,0xdf,0xf0,0x57,0x8e,0x1c,0x9e,0x4,0x54,0xb5,0xa3,0x13,
0xc9,0x5e,0x91,0x2c,0x3f,0x9e,0x33,0xa5,0x19,0xb,0x66,0x9c,0x8a,0xfa,0x84,0x16,
0xcf,0x89,0x94,0x71,0x61,0xa8,0xa2,0x7a,0xb8,0x38,0xa,0xe4,0x20,0xa1,0xc7,0x40,
0xab,0xa0,0x8f,0x91,0x7a,0x68,0xeb,0x66,0xdc,0xb7,0xfa,0x31,0x84,0x5e,0xe,0x1e,
0x2f,0x8b,0x20,0x44,0xc,0x27,0x2b,0x39,0xbc,0xea,0x55,0xaf,0xc2,0xd7,0xff,0xf9,
0x6b,0x4f,0x6e,0x5a,0x3b,0x38,0x8c,0x61,0x48,0x41,0x14,0x2,0xad,0xd7,0xe5,0xfb,
0xf8,0xcc,0x67,0x3e,0x83,0x6f,0x7e,0xeb,0xdf,0x1d,0x39,0x3c,0x5,0x68,0xb8,0xaf,
0x51,0x4,0x45,0x77,0x59,0xaa,0x39,0x5,0xce,0x84,0xb0,0x1b,0xcf,0x3c,0xf7,0x42,
0x8c,0xcf,0xd4,0xda,0xc4,0x59,0x4d,0x48,0x55,0x3e,0x8a,0x2a,0x9e,0x2a,0x8e,0x58,
0x66,0x55,0x18,0x11,0xeb,0x68,0x66,0x84,0x2b,0x2c,0xf4,0x55,0x1b,0xb7,0xa0,0x3f,
0xdf,0x44,0xd6,0x49,0xd9,0x2,0x7b,0x65,0x5b,0x68,0x2e,0x35,0xe6,0x88,0xe1,0x60,
0x10,0x8b,0xc7,0x41,0x93,0x18,0x6,0xfa,0xb4,0x73,0x5,0x3f,0x27,0xc8,0xf0,0x2e,
0xb8,0x70,0x92,0x86,0x64,0xc2,0x67,0xe0,0x91,0x6d,0x21,0x97,0xc9,0xc1,0x2f,0x45,
0xab,0xfa,0x3a,0x1c,0x3e,0xd4,0xcf,0x10,0x90,0x10,0xc2,0x64,0xd2,0x96,0xcf,0x48,
0xf3,0xf3,0x8e,0x6c,0x2b,0x96,0x6e,0xdb,0x8d,0x9e,0x62,0x91,0x37,0x94,0x91,0x90,
0x3b,0xfb,0x8,0x59,0xf6,0x88,0xc9,0x41,0x26,0x8e,0xb9,0x8e,0x18,0xd1,0x55,0x9b,
0x36,0xa1,0x77,0xa0,0x30,0xb8,0xe7,0xb1,0x83,0x83,0x83,0x83,0xc3,0xb1,0x87,0xac,
0xb1,0x6d,0x3b,0x76,0x21,0x91,0xcf,0xa3,0x42,0xc2,0xd0,0x10,0xf2,0x23,0xf0,0x28,
0x19,0x8e,0xdc,0xdb,0x41,0x76,0xd2,0xb8,0xfc,0x2e,0x46,0xee,0xe1,0x8d,0x1b,0x11,
0x78,0x29,0xe4,0xab,0x23,0x76,0x1c,0x1c,0x1c,0x1c,0x1c,0x8e,0x7,0x42,0x74,0xf6,
0xf7,0xe1,0xb1,0x4d,0x5b,0x51,0xa2,0xfc,0xd5,0x9c,0xa3,0x23,0x1d,0x4,0x73,0xe4,
0x96,0x3,0x23,0xa0,0xdd,0xb6,0xd6,0xef,0xe9,0x44,0xf,0x89,0x41,0x16,0x44,0x22,
0x70,0x96,0x83,0x83,0x83,0x83,0xc3,0xf1,0x42,0x5a,0xab,0xb3,0x92,0x14,0xee,0x5f,
0xb5,0xa,0x7b,0x4a,0x3e,0xc9,0x41,0xab,0x62,0xab,0x6f,0xe2,0xa9,0xe3,0x28,0x58,
0xe,0xd1,0x6c,0xde,0x35,0x5b,0x36,0xa3,0x40,0x62,0xf0,0xe5,0x7,0x3b,0x42,0xc6,
0x72,0x70,0x70,0x70,0x70,0x38,0x74,0x68,0xbd,0x32,0xad,0xb0,0xe0,0x27,0x3d,0x6c,
0xda,0xb9,0x13,0x61,0xe2,0xc8,0x45,0xfb,0xe1,0x3d,0x41,0x2e,0x24,0x1e,0x34,0xe1,
0x22,0x9e,0x74,0xa1,0xbd,0x85,0xd7,0xf6,0xf5,0x62,0x73,0x97,0xf6,0x26,0x28,0xc3,
0xa3,0x39,0x93,0xd6,0x6,0xc4,0xe,0xa3,0xe,0x5a,0xfa,0x77,0xff,0x50,0x28,0xfb,
0x18,0xa0,0x26,0xa2,0xa5,0xc0,0xcb,0xa1,0x36,0x2c,0xd4,0x92,0x1f,0x9a,0x8,0x5f,
0xb1,0xa0,0x6b,0x2e,0x1c,0xfd,0x60,0x9b,0x34,0x55,0x34,0x73,0xd8,0x47,0xd1,0xf,
0xec,0x5a,0xd1,0xf,0x11,0x54,0x92,0x76,0xae,0xd1,0x3f,0x61,0x52,0xcb,0x35,0x3b,
0x45,0xec,0xa9,0x40,0x8b,0xfe,0x29,0x68,0xd9,0x19,0xf5,0x9b,0x6a,0x62,0x99,0x42,
0x8a,0x42,0x4d,0x1d,0xb9,0xd6,0x99,0x1b,0x87,0x51,0x80,0x7c,0x90,0xb4,0x61,0xab,
0xc5,0x5c,0xa,0x6b,0x76,0xed,0x62,0xdd,0xd1,0xc2,0x9c,0x47,0x46,0x10,0x87,0x3d,
0x94,0x35,0xbe,0x59,0x47,0x91,0x43,0x91,0x64,0x70,0xc3,0x5d,0x77,0x63,0x47,0x58,
0x42,0xd1,0xf3,0x6c,0x54,0x52,0xda,0xa7,0x0,0x39,0x9,0xf8,0x61,0xb8,0xa1,0xac,
0x3f,0xfc,0xc2,0xde,0xa1,0xac,0xca,0xda,0x17,0xbd,0xe8,0x45,0xf8,0xee,0x7f,0x7c,
0xdb,0x46,0x6a,0x8c,0x74,0x88,0xc,0xf6,0x47,0x49,0x6b,0x3d,0x31,0x1d,0xf7,0xdf,
0x7f,0x3f,0x6e,0xb8,0xe1,0x6,0xdc,0x77,0xdf,0x7d,0x76,0x5d,0x93,0x98,0x84,0xc3,
0xac,0x3e,0xe,0x87,0x8,0x2d,0x64,0xa8,0x75,0xaa,0xa6,0x4c,0x99,0x82,0x17,0xbc,
0xe0,0x5,0x78,0xfa,0xd3,0x9f,0x6e,0xab,0xdb,0xda,0xda,0x55,0x56,0x4c,0xcc,0x77,
0x8d,0x4,0x22,0x4b,0xe8,0x6f,0xa4,0x23,0x5a,0x2d,0x38,0x89,0x80,0x4,0x97,0xa4,
0x76,0x7b,0xcd,0x35,0xd7,0xe0,0x3b,0xdf,0xfd,0xde,0x9,0x1b,0xca,0x9a,0xaa,0x8e,
0xad,0x8d,0xe7,0x3,0x18,0x58,0x97,0xe3,0x16,0xb0,0x8f,0x9c,0x3b,0x32,0x19,0x7b,
0x5c,0x90,0xa2,0x2c,0x92,0xa2,0xae,0x95,0x9e,0xf3,0x7d,0x3,0x78,0xc1,0xd9,0xe7,
0x62,0x4a,0xa3,0x86,0xb5,0x3e,0xf5,0xba,0x71,0x58,0xe4,0xa0,0x3d,0x1a,0xa2,0x8a,
0x48,0xd6,0xe5,0x79,0x99,0xa7,0xdb,0x7a,0x7a,0x70,0xe3,0xfd,0xf,0x61,0x20,0x9d,
0x44,0x31,0x25,0x97,0x52,0xd2,0xe6,0x37,0x68,0xec,0xed,0x58,0xc7,0x58,0x26,0x87,
0x78,0x37,0xba,0x25,0xf,0x2c,0xc5,0xa7,0x3e,0xf5,0x29,0xdc,0x7a,0xeb,0xad,0x36,
0x81,0x69,0xe8,0xae,0x6b,0xe,0xc7,0xe,0x72,0xd5,0xaa,0xfe,0xe8,0xa8,0x49,0x63,
0x33,0x66,0xcc,0xc0,0x7,0xaf,0x79,0x3f,0x5e,0xf1,0xf2,0x57,0xd8,0x7e,0x18,0x9e,
0x47,0xed,0xcb,0x91,0xc3,0x21,0x61,0xa8,0x88,0x8b,0xf3,0x55,0x8d,0xd4,0x46,0x59,
0x2a,0x8f,0x29,0xb7,0xec,0xe,0xd6,0xeb,0xc8,0x5e,0xe6,0x77,0x3a,0xd7,0x45,0xbb,
0x2f,0x69,0x75,0x5e,0xbf,0x55,0x18,0x89,0x48,0xc2,0xb7,0x69,0x3,0x92,0xbb,0xe9,
0x42,0x9,0x53,0xb2,0x79,0x5c,0x75,0xde,0x59,0xc8,0x2b,0x6d,0xd5,0x7a,0x74,0xb8,
0x38,0x2c,0x4e,0x94,0x11,0x1b,0x9d,0xd0,0x1c,0xab,0x84,0x28,0xb2,0xc0,0xd7,0xef,
0xdc,0x86,0x72,0x2a,0x6d,0xe6,0xae,0xfe,0xa2,0x61,0xad,0xd1,0x6d,0xe,0xa3,0x13,
0xaa,0x4c,0x6a,0xc,0xab,0x57,0xaf,0xc6,0x95,0x57,0x3e,0xf,0xb7,0xdd,0x76,0x3b,
0x72,0x39,0x69,0xad,0xda,0xa7,0x41,0xd,0x44,0x8b,0x7c,0xb9,0x70,0x2c,0x83,0x9a,
0x66,0x7c,0xcc,0x64,0x72,0xd8,0xb2,0x65,0x1b,0xde,0xf3,0x9e,0xf7,0xe0,0xa6,0x9b,
0x6f,0x22,0x71,0x3b,0x72,0x3e,0x1c,0xc4,0xe4,0x20,0x1,0x29,0xa5,0x47,0x28,0x4,
0xda,0x6d,0xa6,0x44,0xcd,0xba,0x8c,0x44,0xa9,0x1f,0xa9,0x62,0x3f,0x72,0x54,0xf0,
0x1a,0xd3,0x9,0xb4,0xe6,0x58,0xcf,0xbb,0x76,0xe3,0x91,0xbb,0xef,0xc0,0x3d,0xb7,
0xdc,0x8c,0x62,0xb1,0x68,0x4a,0xd1,0x48,0x25,0x6,0xc1,0x96,0xd4,0x60,0x50,0x7d,
0xd1,0xde,0x39,0x3d,0x4c,0xf3,0xce,0xae,0x6e,0x94,0xcb,0xc3,0xec,0xa3,0x7e,0x88,
0x38,0x3c,0x31,0x5e,0xcd,0x1b,0x3b,0x30,0xa3,0x8a,0x7e,0x9,0xeb,0xb7,0x6e,0xb1,
0x4e,0x68,0xed,0x45,0x1c,0x73,0x47,0x30,0xa,0xb4,0x64,0x87,0x83,0x23,0x6e,0x4c,
0xf,0x3c,0xf0,0x80,0x91,0x84,0x5c,0x1c,0xbe,0xef,0x46,0xa0,0x8d,0x4,0xfc,0xea,
0x57,0xbf,0x32,0x41,0xe5,0x70,0xe8,0x90,0x50,0x57,0x9e,0x69,0xc3,0xa9,0xda,0xda,
0x5a,0x74,0x77,0x77,0x63,0xc7,0xb2,0x47,0xf0,0xf0,0x8d,0x37,0xe1,0xf7,0xff,0xfe,
0x3d,0x5c,0xf7,0xb5,0x6f,0xe0,0x7f,0x3e,0xf5,0x5,0x7c,0xeb,0xdd,0x1f,0xc0,0x27,
0x5f,0xf5,0x5a,0xbc,0xed,0x8a,0x2b,0xf1,0xa9,0xff,0xf7,0x17,0xf8,0xd9,0xa7,0x3e,
0x8f,0x15,0x7f,0xb8,0xd9,0x7e,0xaf,0xfa,0x1f,0xb7,0x8b,0x91,0x88,0x38,0x66,0xf2,
0x96,0x89,0xfe,0x7a,0x3,0x1f,0xdb,0x3b,0x3a,0x8e,0xc8,0xd2,0x3f,0x4c,0x1d,0x5f,
0x16,0x3,0x99,0xa8,0x12,0xc0,0x67,0x2c,0x56,0x6d,0xee,0x40,0x57,0x90,0xb6,0x8,
0x69,0xaf,0xe0,0x14,0xb5,0x4a,0xf9,0xf2,0x4e,0x96,0xd9,0xd0,0x63,0xd,0x95,0x24,
0x1b,0x80,0x36,0xe5,0x67,0xad,0x48,0xa5,0x3d,0x73,0x1d,0xca,0x5a,0xd4,0xce,0x73,
0x2c,0x60,0xb3,0xa,0x15,0xa4,0xa0,0x68,0x25,0x76,0xd5,0xc8,0x90,0xe5,0x1d,0x84,
0xbc,0x37,0x64,0x3d,0xe0,0xf9,0x1,0x81,0xbf,0x3d,0x2e,0xa1,0xfa,0xbe,0xa,0xcd,
0xd6,0xa,0xad,0x58,0xb,0xd4,0xa,0x2b,0x9,0xa5,0x49,0x81,0x29,0x61,0xa8,0x2b,
0x7,0xc8,0x7,0x15,0x26,0xc7,0x43,0x99,0xa1,0x98,0x48,0x33,0x19,0xb2,0x79,0xa3,
0xc6,0x20,0x1f,0xad,0x5,0x7e,0xa,0xf9,0xbf,0x3a,0x2d,0xd3,0xd4,0xd4,0xb5,0x76,
0x58,0x4f,0x26,0x6d,0xae,0x36,0x5,0xb5,0x37,0x8d,0xd8,0x56,0x8,0x4b,0x19,0x94,
0xfd,0x34,0x8a,0xbc,0x7,0x29,0x35,0x4d,0x69,0xa5,0xda,0xaa,0xc9,0x56,0x1d,0x43,
0x90,0xcc,0xa2,0x88,0x1c,0xca,0xcc,0xa3,0x40,0xfb,0x8e,0xf,0x9,0x7e,0xc5,0x43,
0x29,0x99,0x33,0xcb,0x9b,0x4f,0xe2,0x2f,0x7c,0xde,0xaf,0x78,0x47,0x79,0x3d,0x34,
0x48,0xeb,0x15,0x51,0x6b,0xcf,0xed,0xb1,0x80,0xc1,0x3a,0xc4,0x43,0xa8,0xfa,0xc5,
0x64,0xb1,0xd4,0x6c,0x78,0x3c,0x3f,0xb1,0x5c,0x6d,0xb3,0x5c,0x96,0x25,0xef,0x60,
0x86,0xfb,0x12,0xd0,0xcc,0x7,0xab,0x93,0x49,0x6,0x2f,0x40,0x59,0x1b,0xf3,0xb2,
0x9c,0xa1,0x32,0xae,0x94,0x68,0x12,0xec,0x81,0xdf,0xb3,0x1d,0xfe,0xae,0xcd,0x28,
0x6d,0x5e,0x87,0xdd,0x8f,0x2c,0xc5,0xf2,0xeb,0xfe,0x7,0xbf,0xff,0xfa,0x97,0xf1,
0xb5,0x37,0xbe,0x16,0xef,0x7b,0xc6,0xa5,0xf8,0xfb,0x57,0xbc,0x18,0xff,0xfe,0xe1,
0x8f,0xe0,0x17,0x5f,0xfb,0x47,0xdc,0x75,0xdd,0x2f,0xf1,0xd0,0x1f,0x6f,0xc4,0xca,
0x87,0xee,0xc1,0xa6,0x35,0x2b,0xd1,0xbb,0xbb,0x83,0x71,0x8,0x90,0xf0,0xf8,0xfc,
0x74,0xc8,0xe7,0xfb,0xd5,0x3c,0x1f,0xd9,0x96,0x43,0xa2,0x92,0x86,0x17,0x24,0x91,
0xf5,0x43,0xa4,0x99,0x97,0x1,0xeb,0xe8,0x8a,0xce,0x4e,0x6c,0xe7,0x77,0xaa,0x83,
0x6c,0xa0,0x96,0xd1,0x87,0x43,0x6f,0x87,0x55,0xcb,0xe4,0x5f,0x57,0xd0,0xc,0xbc,
0x81,0xa0,0x8c,0xd,0x5b,0xb6,0xf0,0x9,0x63,0xa3,0xa2,0x3a,0x1c,0x3a,0xc2,0x64,
0x9,0x41,0xaa,0xc8,0x23,0x1b,0xa5,0x1c,0xc6,0x16,0x28,0x14,0x7,0xcf,0x87,0x4,
0x36,0xb2,0xe3,0x12,0xaa,0xef,0xb,0x3d,0x9f,0xf1,0x8a,0x42,0x54,0xbd,0xd5,0xa0,
0xf7,0xd6,0xd1,0x2d,0x35,0x21,0xf6,0x64,0x7c,0xca,0x92,0x6e,0x34,0x16,0x76,0xa3,
0x6d,0xa0,0x3,0xf5,0x7d,0x9d,0xc8,0xf7,0x76,0x5b,0x68,0x2a,0x15,0x50,0xd3,0xd7,
0x83,0xba,0xd2,0x0,0x32,0x61,0x64,0x92,0x6b,0xa9,0x2,0x36,0x37,0x64,0xa8,0x18,
0x85,0xc1,0x0,0x85,0x54,0xf,0x5,0x51,0x2f,0x5,0x55,0x14,0x6a,0xfc,0x3d,0xa8,
0xf5,0x3b,0x91,0x2b,0xf6,0x20,0x93,0xa8,0x43,0xc9,0x1f,0xcf,0x56,0xa8,0x6d,0x51,
0x45,0xa8,0xfc,0x4d,0xb2,0x9b,0xf9,0xb5,0xb,0x7e,0x7a,0x37,0x8a,0xe9,0xae,0x7d,
0x42,0x29,0xbd,0x7,0xa5,0xca,0x2e,0xa4,0xb2,0xb1,0xf9,0x9f,0x46,0x22,0xcc,0x56,
0xcf,0xc7,0x36,0x62,0x51,0x2b,0x81,0x2f,0x68,0xa4,0x50,0x81,0x7a,0x65,0xd1,0xd3,
0x28,0x48,0x7e,0xef,0x91,0xa2,0x2d,0xef,0x43,0x1e,0x3,0x64,0x49,0x8,0x5e,0xa9,
0x88,0x66,0x5e,0x6f,0xa7,0xb0,0x4e,0x6d,0xdb,0x8e,0xad,0xf7,0xdf,0x8f,0x3f,0xff,
0xf4,0x67,0xf8,0xcf,0xcf,0x7e,0xe,0x5f,0x7b,0xf7,0x7b,0xf0,0x95,0xb7,0xbf,0x1b,
0x5f,0xfe,0xdb,0x77,0xe1,0xef,0xdf,0xf6,0x4e,0x7c,0xfe,0xad,0x6f,0xc7,0xbf,0x7c,
0xe0,0x43,0xf8,0xef,0x1f,0xfc,0x10,0x7f,0xbc,0xe9,0x66,0x6c,0xd9,0xb4,0x5,0x1e,
0x7f,0x97,0xcd,0x64,0x7,0x85,0xfd,0x58,0xee,0x3f,0xeb,0x19,0x18,0xc0,0x96,0x9d,
0xac,0x77,0xf6,0x49,0x19,0x7a,0x78,0xe4,0x70,0x98,0x1d,0xd2,0xfa,0x5f,0xba,0xd,
0xb0,0x9e,0xac,0x74,0xf3,0xd2,0x87,0xd1,0x9f,0x62,0x65,0x3e,0xa,0x63,0x6a,0x47,
0x23,0xc6,0x5a,0x87,0xb4,0x86,0x46,0xaa,0xa5,0xaa,0x5f,0x41,0x35,0xe9,0xa7,0x6c,
0x74,0x6f,0xfd,0xdb,0x77,0x46,0x5f,0xe,0x81,0xb4,0xdc,0x94,0x57,0x87,0xb6,0xb6,
0x29,0xac,0xd,0xd2,0xbc,0x5,0x69,0x7b,0x27,0x3e,0x8d,0xda,0x4b,0x5b,0xe8,0xeb,
0xef,0xa7,0x16,0xb8,0x86,0x65,0x41,0xbb,0x40,0x5a,0xa9,0x19,0xdb,0x3c,0xa7,0xb6,
0x3e,0x8b,0x65,0xf6,0xc6,0x33,0xcf,0xc1,0xbc,0xbc,0x16,0x87,0x2c,0x9b,0x16,0x1a,
0xb,0x28,0x89,0x22,0x59,0x6,0xf7,0x52,0xf1,0xf9,0xda,0x63,0x2b,0xd1,0x99,0xcd,
0xd2,0x1a,0x49,0x20,0x4f,0xe1,0x94,0xcc,0x85,0xf8,0xbf,0xf,0x5e,0xc8,0x74,0x37,
0x23,0x29,0x49,0x26,0x8d,0x95,0x69,0xee,0x23,0xd9,0xc8,0xce,0x18,0xf0,0x73,0xf8,
0xb7,0x5f,0x2c,0xc7,0xff,0xde,0xb2,0x9,0xc5,0x62,0xad,0xf9,0x81,0x45,0xa2,0xe7,
0x3d,0x7d,0x3e,0x5e,0xf3,0xd7,0x2f,0xb6,0x3d,0xbe,0x13,0x7,0x28,0x53,0x9,0x14,
0x7a,0x7d,0xfc,0xf4,0xbb,0xd7,0xe1,0xc1,0xdb,0x1f,0x63,0x83,0xcc,0x31,0xff,0x79,
0xf,0x7f,0xb7,0x3f,0x2a,0xac,0x63,0xaf,0x79,0xcd,0x6b,0xf0,0x2f,0xff,0xf2,0x4f,
0x51,0x1d,0x63,0x9d,0x1a,0x6d,0x1d,0xd2,0xbe,0x1f,0x20,0x95,0x4c,0xe3,0x23,0x1f,
0xf9,0x8,0xfe,0xed,0x5b,0xff,0x41,0x22,0xa8,0x98,0xc7,0xa1,0x42,0xad,0xf7,0x19,
0x2f,0x7d,0x39,0xae,0xfa,0x9b,0xbf,0x42,0x58,0xf6,0xd1,0xdf,0xd5,0x83,0xee,0x5d,
0xbb,0xd1,0xbb,0xa7,0xb,0xdd,0x9d,0xbb,0xd0,0xb5,0xa7,0x3,0xbb,0xb7,0xef,0x44,
0xe7,0x8e,0x5d,0xd8,0x46,0x21,0xbf,0x7b,0x27,0xad,0x3,0xbf,0x9f,0xf5,0x90,0x24,
0xc1,0xa,0x28,0xcf,0x5,0x33,0x8e,0x25,0x2c,0x2b,0x8f,0xcf,0xe4,0x67,0x73,0xc1,
0xf3,0xbc,0x98,0x4e,0xf1,0xf9,0xb4,0x3,0x99,0xf7,0xfa,0x4e,0x82,0x2c,0x41,0x72,
0xd0,0x44,0x31,0x91,0x83,0x88,0x42,0x6d,0x55,0xe5,0x2e,0xc2,0x88,0x45,0xa2,0x8e,
0xd3,0x16,0x2d,0xc6,0x5f,0x7e,0xf6,0x8b,0xf6,0xdd,0xa8,0x3,0x2d,0xad,0x49,0x75,
0xb5,0x78,0xd6,0xa2,0x85,0x68,0x62,0x3e,0x59,0x76,0x30,0x53,0x48,0x8b,0xd1,0xf7,
0x4f,0x82,0xc3,0x26,0x7,0x1a,0x6f,0xb6,0xf3,0xd9,0xdd,0x2b,0x1f,0xc3,0xa3,0x3b,
0x3b,0x68,0x96,0xa7,0xe0,0x89,0x95,0x4e,0x42,0x9c,0xac,0xe4,0x50,0xf4,0x1b,0xf1,
0xba,0xd7,0xbf,0x7,0xd,0xd,0x53,0x78,0x7f,0xc6,0x2a,0x9c,0x1a,0xbf,0x8d,0xee,
0x38,0xc1,0x88,0xf3,0x3e,0x95,0xf2,0x70,0xdd,0xcf,0x3e,0x81,0xad,0x5b,0x37,0x53,
0x8,0x14,0xd9,0xb8,0x19,0x39,0xa,0xf8,0x81,0x5c,0x1a,0x17,0x78,0x39,0x7c,0x9c,
0xe4,0x30,0x8e,0x96,0x42,0x98,0xf2,0xe1,0x33,0xc8,0x32,0x18,0x8a,0xcd,0x14,0x56,
0x1f,0xbf,0x6b,0x19,0xd6,0xf3,0x5e,0xb9,0x9f,0x6a,0xcb,0x3d,0xb8,0xf4,0x82,0xf9,
0xf8,0xc6,0x1b,0x27,0xc3,0xa7,0xd5,0x9c,0xd4,0x1c,0x3,0xb9,0xe0,0xd8,0x16,0x32,
0x3e,0xb5,0x51,0x5a,0x12,0x3e,0x5,0xfb,0x8a,0xae,0x99,0x78,0xe5,0x35,0x3f,0x45,
0x51,0xae,0x22,0xe6,0x89,0x9f,0x2e,0xe0,0x2f,0xdf,0xf1,0x62,0x9c,0x79,0xc9,0x4c,
0x92,0x85,0xdc,0x22,0xfb,0xb6,0x15,0x89,0xb3,0x84,0x9f,0xc4,0xd2,0x3f,0x6f,0xc2,
0xf7,0xff,0xf9,0x67,0xcc,0xc3,0x3c,0xaf,0xca,0x3a,0x2f,0x45,0x37,0xc,0xc1,0x58,
0x20,0x87,0xc2,0x40,0x11,0x9e,0x97,0x31,0x72,0xf8,0xde,0xbf,0x7d,0xf,0xfd,0x69,
0xa6,0x9f,0x5f,0xd5,0x7a,0xb5,0x68,0x98,0x38,0x15,0x3,0x85,0x6e,0xec,0xd2,0x24,
0x2e,0x92,0x48,0x86,0xb2,0xc5,0x86,0x62,0x52,0x88,0xa7,0xd8,0xc6,0x24,0xd4,0x12,
0x14,0xf2,0x2a,0x4a,0x11,0x6f,0xc9,0x33,0x87,0x89,0x7d,0x36,0x22,0x20,0x8a,0x43,
0x3d,0xda,0xd5,0x6c,0x49,0x6b,0x7c,0x27,0x21,0x22,0x88,0x5c,0x82,0x2c,0x3b,0x5e,
0x4a,0x56,0xad,0x7,0xb9,0x8d,0x34,0x22,0x2c,0x93,0xc9,0x44,0xae,0x2b,0xb6,0xdb,
0x58,0x2c,0x4e,0x5d,0x28,0x72,0xf8,0xc2,0xa8,0x24,0x7,0x6d,0x41,0xdc,0xc0,0x34,
0x5e,0x3e,0x77,0xe,0x66,0xb6,0x34,0x5a,0x76,0xc8,0x25,0x47,0x75,0x3e,0xba,0xe1,
0x49,0x70,0x58,0x29,0x96,0xeb,0x4f,0x79,0x56,0xc,0x7c,0xac,0xd9,0xbc,0x89,0xc2,
0x44,0x7e,0xdd,0xd1,0x97,0x69,0xe,0x47,0x86,0xa,0x5b,0x63,0xeb,0xf8,0xf1,0xac,
0x68,0x1e,0xca,0x21,0x1b,0x56,0x98,0x82,0xcf,0xba,0x51,0x1e,0x36,0x44,0xf7,0x1c,
0xfb,0x10,0xbd,0x4f,0x8b,0x7d,0x2a,0x14,0xf9,0x61,0xc2,0x84,0xc9,0x8c,0xad,0xea,
0xe7,0x5e,0x89,0x11,0x96,0xa,0xc8,0xb1,0xfe,0xe6,0x8b,0x3c,0x86,0x55,0x83,0xdb,
0xe6,0xe6,0xa4,0xf7,0xb,0x49,0x78,0xe5,0x88,0x30,0x24,0x82,0xe4,0x50,0xcd,0xd2,
0x52,0x48,0x26,0xba,0x79,0xde,0x43,0x81,0x54,0x44,0x4a,0x42,0x8b,0x1a,0xd3,0x40,
0x2a,0xb,0x3f,0x19,0xa0,0xe2,0xf5,0x50,0x38,0x75,0xa1,0x3f,0x13,0xed,0xe9,0x1d,
0xb5,0xc1,0x4,0xf3,0x46,0x76,0xb,0x5,0x8e,0x39,0xd9,0xf7,0xd,0xea,0xf,0x81,
0xc7,0xf7,0xe8,0xf7,0xf6,0xbd,0xde,0x19,0xbb,0x98,0xc6,0x1e,0xd4,0x29,0xbc,0x6d,
0xdb,0x36,0xdc,0x7e,0xfb,0xed,0xac,0x48,0xd1,0x35,0x53,0x2e,0x98,0x47,0x9b,0xd7,
0x6f,0x40,0xff,0xae,0xad,0xa8,0x49,0x95,0x91,0x67,0x48,0x7a,0x45,0x94,0xe4,0xbe,
0xf3,0xca,0x24,0xf1,0x32,0xca,0x3c,0x16,0x32,0x65,0xf4,0x65,0xcb,0x96,0xc7,0xda,
0x2e,0x53,0xa1,0x58,0x3d,0x2a,0xa4,0xc2,0xb4,0x85,0x64,0x45,0xee,0x39,0x4d,0x4,
0x4b,0x23,0xa0,0xe0,0x57,0xf0,0x28,0xaf,0xe6,0xce,0x99,0x83,0x17,0xbf,0xf8,0xc5,
0xf8,0xdb,0xb7,0xbd,0xcd,0xf6,0x94,0xf8,0xd1,0x8f,0x7e,0x84,0x5f,0xff,0xfa,0xd7,
0xb8,0xeb,0xae,0xbb,0xf0,0x8f,0xff,0xf8,0x8f,0x46,0x1c,0xf1,0x88,0xa6,0x51,0x8f,
0x54,0x1a,0xfd,0x85,0x12,0x76,0xec,0xde,0x6d,0xb5,0x4d,0xd9,0x5d,0xcd,0xf2,0x43,
0xc2,0x61,0x49,0x76,0x35,0x6,0x96,0x24,0x1e,0xdb,0xb2,0x3,0xe5,0x74,0xad,0x75,
0x28,0xe5,0xc7,0x4a,0x46,0x3a,0x1c,0x3a,0x82,0x1e,0x4a,0xdf,0x3a,0x56,0x34,0xf,
0x41,0xba,0x48,0xf9,0x97,0x45,0x42,0x95,0x81,0xc7,0x3,0x3,0x5,0xf3,0x71,0x9,
0xd5,0xf7,0x25,0xa3,0x10,0x52,0x3f,0xa,0xc2,0x5a,0xc6,0xd1,0xa7,0xa0,0x90,0x86,
0x4d,0x4d,0x9e,0xf1,0xad,0x5,0xe3,0x4d,0x6b,0xa0,0xab,0xc6,0x43,0x6f,0x46,0xfb,
0xf0,0x52,0x68,0x68,0x90,0x85,0xac,0x0,0x86,0x54,0x8a,0x9a,0x2c,0x8f,0x61,0x2a,
0x49,0xe1,0x94,0x41,0x9e,0x4c,0xe3,0x5,0x14,0x2e,0x7c,0x52,0x58,0xca,0x51,0x86,
0x67,0xa8,0xe9,0xd3,0x56,0xa6,0xea,0xa9,0xe7,0xca,0x7a,0x4c,0x25,0xb7,0xf3,0xdb,
0x12,0x2d,0xeb,0x6,0xde,0x53,0x8b,0x4c,0x90,0x82,0x94,0x55,0x75,0x66,0x87,0x7c,
0x56,0xda,0x23,0x39,0x14,0x7b,0xf8,0x5c,0x7d,0xa6,0x95,0x39,0x24,0xc8,0xe1,0x45,
0xdb,0xcb,0xe2,0xe9,0xf3,0xfb,0x40,0x2e,0xb0,0x31,0xa8,0x70,0xc9,0x18,0x95,0x60,
0x4a,0x69,0x72,0x1f,0xb5,0xd9,0xfe,0xc2,0x0,0x85,0x7d,0x2,0xe9,0x30,0x89,0x74,
0x25,0x45,0x5,0xa3,0x80,0x4c,0xb2,0x60,0xb3,0xc2,0x7d,0x66,0x5e,0x25,0x21,0xfd,
0x36,0x8d,0xac,0x97,0x27,0x71,0xa8,0x9b,0x5a,0xc3,0xa8,0xa9,0xe9,0x57,0x94,0xf7,
0x1e,0xd5,0xe2,0x10,0x59,0xca,0xa3,0x34,0x89,0x5e,0xf9,0xe7,0xd1,0xfc,0x68,0xac,
0xcb,0x63,0xda,0xb4,0xf1,0x98,0x33,0x67,0x3a,0x2e,0x3c,0xff,0x4c,0xbc,0xf2,0x65,
0x2f,0xc4,0xe7,0x3e,0xf5,0x51,0xfc,0xe0,0xbf,0xfe,0xd,0x8f,0x3d,0xfe,0x10,0x76,
0xee,0xde,0x88,0x3b,0xee,0xba,0x19,0xdf,0xfd,0xcf,0x6f,0xe0,0x93,0x9f,0xf8,0x30,
0x5e,0xf8,0x82,0xe7,0xe2,0x99,0xcf,0xb8,0x14,0xb,0xe6,0xcf,0xc5,0xf4,0x69,0x93,
0x90,0xcb,0x66,0x8c,0x1c,0x46,0x72,0xc7,0xf3,0xe1,0xc0,0xb,0xfa,0x99,0xd7,0x65,
0xac,0xd9,0xb1,0x1d,0xdd,0x1,0xeb,0x9e,0x5f,0x66,0xdd,0x8c,0x14,0xa2,0x43,0xc1,
0xe1,0xd5,0x42,0x56,0x5c,0x9f,0x85,0xb0,0x5d,0x4c,0xc4,0xc,0xd4,0x28,0x8f,0xc3,
0x7d,0x84,0x83,0xc3,0x89,0x44,0x50,0xf4,0xd1,0xd1,0xd5,0x8f,0x30,0xd3,0x4,0x3f,
0xdd,0x2,0xdf,0x6b,0xa3,0xa2,0xd3,0x8c,0x52,0xa6,0xd1,0xc2,0x80,0x57,0xf,0xbf,
0xa6,0x15,0x3b,0x4a,0x21,0xc9,0xc3,0xc3,0x80,0x7c,0x16,0xe9,0x14,0x5,0x7f,0x2,
0xf7,0xdc,0xff,0x20,0x76,0x87,0x8d,0x8,0x1b,0xa7,0xa1,0x90,0x1b,0x8f,0x62,0xcd,
0x44,0xb,0x65,0xef,0x2c,0x94,0xb2,0x8b,0x51,0xce,0xce,0xc1,0x9f,0xee,0x7d,0x14,
0x15,0x6a,0xb0,0x12,0xf6,0x12,0x88,0x64,0x22,0x6c,0x5c,0xd3,0x81,0xe6,0x9a,0x53,
0x48,0x4c,0x2d,0xa8,0x4f,0xd4,0xed,0x13,0xea,0x12,0x2d,0xa8,0x4b,0x4f,0xc5,0xca,
0xe5,0x1b,0x79,0x73,0xdc,0x7f,0x73,0xf2,0x2a,0x5c,0xb1,0x44,0x19,0xc,0x94,0x33,
0xea,0x2b,0xd0,0x79,0x50,0x2e,0xa3,0xa4,0x39,0x7,0xfc,0xbc,0x60,0xfe,0x2,0xbc,
0xf6,0xb5,0xaf,0xb5,0x4d,0x83,0x64,0x85,0x2c,0x59,0xb2,0x4,0x4b,0xee,0x5f,0x82,
0x9b,0x6e,0xfe,0x1d,0x6e,0xb9,0xf5,0xf,0xb8,0xfe,0x86,0x5f,0xe2,0x1b,0xdf,0xfc,
0x27,0xbc,0xe5,0xad,0x6f,0xc4,0xf3,0x5f,0x78,0x35,0xc6,0x8d,0x9f,0x40,0xd2,0x91,
0x2,0xc3,0x42,0x11,0x29,0x93,0x80,0xe5,0x4e,0x92,0x27,0x64,0xe3,0xc6,0x8d,0xf8,
0xfb,0xbf,0xff,0x7b,0x7c,0xf0,0x9a,0xf,0x56,0xaf,0x1d,0x8e,0x7e,0x3d,0x72,0x61,
0x2e,0xb3,0x74,0x6,0x7d,0xb4,0x9a,0x36,0xd0,0x5a,0x93,0xf5,0x70,0x38,0x38,0xac,
0x3e,0x7,0xad,0xa9,0xb3,0xa5,0xb7,0xf,0x7f,0x78,0xf8,0x61,0xf4,0xf0,0x5c,0x1b,
0x5c,0xab,0x19,0x88,0x28,0x4e,0x46,0x9c,0xac,0x7d,0xe,0x85,0x72,0x2,0xef,0x7d,
0xf7,0xf,0x50,0x8,0x13,0x28,0x27,0xb5,0xb1,0x48,0x1d,0x92,0xc9,0x6e,0x3e,0x40,
0xfe,0xf2,0x91,0x83,0x7,0xee,0xf8,0x3e,0x1e,0x7a,0xe8,0x26,0x4a,0x15,0x9f,0x65,
0x92,0x81,0x9f,0x2a,0xa2,0x2f,0x9b,0x46,0x8d,0x5f,0x42,0x53,0x71,0x0,0xad,0x75,
0x39,0xa6,0x59,0xfe,0x65,0x8f,0x75,0x99,0xd6,0x7,0xa1,0x61,0x93,0x6a,0x11,0xdd,
0x3,0x3,0xac,0xe3,0x49,0x92,0x47,0x9a,0x5,0xed,0x21,0x2b,0xd,0x35,0x28,0xa3,
0x21,0x9d,0x47,0x63,0xa3,0x2c,0x12,0x69,0x98,0x51,0xd3,0x9,0x92,0x3e,0x35,0xe0,
0x12,0xca,0xfc,0x7e,0x7d,0x57,0x80,0x6e,0xaf,0x89,0x5a,0x6d,0x7f,0xa4,0x2a,0xb3,
0x32,0x68,0x88,0x70,0x7d,0x53,0x8e,0x9a,0xe9,0xf0,0x5d,0x81,0xfd,0x5,0x1f,0xdd,
0x7b,0x6,0x58,0x93,0xa8,0x2d,0xab,0x5d,0xf1,0x3f,0x59,0x26,0xfb,0x63,0x34,0xf7,
0x39,0x44,0x75,0x2b,0x1a,0xed,0xa8,0x9,0x7d,0x57,0x3d,0xff,0x2a,0xac,0x5b,0xbf,
0xd9,0xbe,0x93,0x10,0xf3,0xfd,0x48,0xa3,0xf5,0xd8,0x96,0x4e,0x39,0xe5,0x14,0x8c,
0x1b,0x37,0x8e,0x56,0xc0,0x34,0x4c,0x9e,0x3c,0x19,0xcd,0xcd,0xcd,0xb4,0x6,0xe6,
0xa0,0xa9,0xa9,0x9,0xb3,0x67,0xcf,0x66,0xfe,0x37,0x52,0x23,0x96,0x80,0x8f,0x86,
0xb7,0xea,0xf7,0xa,0xda,0xf8,0x26,0xa0,0x25,0x18,0x8b,0x34,0xfb,0x4c,0xeb,0x22,
0xa9,0xe1,0xca,0xd5,0x6b,0xea,0x3b,0x58,0xb3,0x66,0xd,0xee,0xb8,0xfd,0x1e,0xdc,
0x7b,0xef,0xbd,0xb6,0x2c,0xcc,0xf2,0xe5,0xcb,0xa3,0x4e,0x69,0xe5,0x24,0xbf,0x97,
0xf5,0x10,0x63,0xca,0x82,0x45,0xd6,0xe7,0x10,0x77,0x5a,0x1f,0x89,0x55,0x11,0xc7,
0xe1,0x48,0x9e,0x71,0x58,0xa8,0x68,0x83,0x25,0xc9,0x29,0x60,0x6a,0x63,0x3,0x2e,
0x3b,0xfd,0x74,0x2a,0x23,0x15,0xe6,0xb,0x2d,0xaf,0x43,0xc0,0x81,0x35,0xf0,0x9,
0xa0,0x2d,0xe9,0xb6,0xee,0xd9,0x8d,0x7e,0x16,0x88,0xa6,0x6a,0x6b,0x47,0x22,0x65,
0xa8,0x83,0xc3,0x68,0x41,0x5b,0x6f,0x19,0x75,0x85,0xa,0xeb,0x72,0x1e,0x1b,0x6,
0x12,0x78,0xbc,0x98,0xc4,0xda,0x42,0xa,0xeb,0x6,0xa2,0xb0,0xbe,0x90,0xc6,0x86,
0x62,0x1a,0x9d,0xc9,0x3a,0x84,0xa9,0x1c,0x1b,0x56,0xa,0x49,0x9a,0xe4,0x1,0x52,
0x28,0x24,0x33,0xd8,0x44,0x8b,0x60,0x79,0xf7,0x1e,0x3c,0xd2,0xdd,0x89,0xe5,0x5d,
0x7b,0x2c,0xac,0xe8,0x0,0x96,0xed,0xce,0xe2,0xb1,0xae,0x3a,0xf4,0x26,0x9b,0xac,
0x5d,0x18,0x33,0xb0,0x21,0x6a,0x74,0x4c,0x22,0x48,0xa3,0xb7,0x23,0xc4,0xee,0xcd,
0xfe,0x1,0xa1,0x83,0xa1,0x6f,0xb7,0x46,0xec,0x64,0x8d,0x18,0xf4,0x5f,0x24,0x42,
0x4e,0x1e,0xc8,0xc7,0x2f,0xe1,0xbb,0xec,0xe1,0x65,0xe8,0xe8,0xd8,0x89,0xfb,0xee,
0xbd,0x1b,0xff,0x77,0xc3,0xaf,0xf0,0x8d,0xaf,0xff,0x33,0x3e,0xf2,0xe1,0x6b,0xf0,
0xf6,0xb7,0xbd,0x15,0xcf,0x79,0xf6,0x15,0x38,0xff,0xbc,0x73,0xd0,0xda,0xd2,0x4,
0x4f,0xc4,0x60,0x7a,0xb0,0x26,0x68,0x26,0xf9,0x5b,0x8d,0x30,0x53,0x8e,0x8b,0x8,
0x3c,0xa,0xbf,0xb4,0x1d,0x8b,0x45,0x2a,0x2e,0x2c,0xb7,0xde,0xbe,0x1,0xac,0x5d,
0xb7,0x1,0xdf,0xfd,0xcf,0xef,0xe3,0xec,0x73,0xce,0xc3,0xa2,0xc5,0x67,0xe2,0xdd,
0xef,0x7e,0x2f,0x7e,0xf8,0xc3,0xff,0x22,0x31,0xac,0xe0,0x6f,0x65,0x2d,0x48,0x29,
0xe2,0x13,0xab,0xc4,0x20,0x1,0xae,0xf3,0x4c,0x46,0x73,0x53,0x8e,0x8e,0x25,0x17,
0x93,0x82,0x48,0xe2,0x78,0xf4,0x6d,0x88,0x88,0xa3,0xdd,0x38,0x13,0xd8,0xd5,0xd7,
0x87,0xee,0x52,0x91,0x39,0x74,0xe8,0xf2,0xfa,0xb0,0xc8,0x41,0x23,0x95,0x56,0x6f,
0xd8,0x60,0xfe,0x58,0x83,0x25,0xd6,0x91,0x83,0xc3,0xe8,0x41,0x67,0x4d,0x9,0x7b,
0xf2,0x15,0xf4,0xa5,0x3d,0x84,0x14,0xc8,0xf9,0x62,0xce,0x2c,0x2,0x2f,0xd1,0xb3,
0x4f,0x48,0xa1,0x68,0xda,0xbb,0xd6,0x9,0xd3,0x50,0x49,0x75,0x4a,0x97,0xcc,0x82,
0x48,0x21,0xeb,0xf3,0xa8,0x11,0x4a,0x3a,0xf2,0x73,0x26,0xd1,0x81,0xc,0x3a,0x91,
0xa9,0xf4,0xa1,0x36,0xe8,0x41,0x53,0x79,0x97,0x24,0x40,0xf4,0x42,0x11,0x4,0x7f,
0xad,0x67,0x24,0x6c,0xb2,0xd6,0xc0,0x3e,0x21,0x91,0x28,0x45,0xdf,0xd9,0x1b,0xaa,
0xbf,0x39,0xc9,0x20,0x6d,0xbe,0x50,0x28,0x60,0xea,0xb4,0xa9,0xe6,0x17,0xf,0x69,
0xa5,0x69,0xf8,0xb1,0xd6,0x8f,0x32,0x9a,0x55,0x5f,0xa7,0xe5,0xcd,0xde,0x60,0x79,
0x25,0x36,0xdd,0x3f,0xa8,0x3f,0x82,0xa1,0x50,0x8,0xf0,0xab,0xeb,0x7e,0x8d,0xd7,
0xbf,0xee,0xaf,0x71,0xe9,0xd3,0x9f,0x66,0xe1,0x83,0x1f,0xfa,0x10,0xd6,0x6e,0x58,
0x8f,0x4c,0x2e,0x6b,0xc2,0x59,0xc2,0xfa,0x60,0x5a,0xbc,0x4,0xb7,0x84,0xf8,0xc4,
0x89,0x93,0x8e,0x9a,0xab,0x29,0x1e,0xf1,0x24,0x6b,0x47,0x4b,0x72,0x28,0xcd,0xc7,
0x16,0x51,0xda,0xa4,0xac,0xf4,0x95,0xa,0xd8,0xd3,0xdb,0x3,0x5b,0xc9,0xe2,0x10,
0x71,0x70,0xb7,0x92,0x26,0x0,0xc9,0x32,0x20,0xf3,0x50,0x71,0x62,0x51,0x54,0xb0,
0xac,0xa7,0x1f,0x37,0x3d,0xf0,0xa0,0x65,0xa8,0x98,0xfe,0x64,0xc7,0xc9,0xea,0x56,
0x1a,0xf0,0x81,0xf7,0xbc,0xfb,0xfb,0x28,0x86,0x12,0x69,0x6c,0xb8,0x7e,0x23,0xab,
0x4a,0x27,0xbf,0xc9,0x45,0x37,0x8c,0x10,0xdc,0x7f,0xe7,0xf7,0xb1,0xf4,0xc1,0x9b,
0x98,0xb0,0xbd,0x6e,0xa5,0x72,0xb6,0x16,0xed,0x3,0x7d,0x78,0x26,0x35,0xd0,0xc9,
0xf9,0x34,0x2a,0x2c,0xbb,0x52,0x8a,0x44,0x51,0x6d,0x48,0xaa,0xe9,0xaa,0xdb,0xeb,
0xb6,0xef,0xc2,0x2d,0xfd,0xbd,0xe8,0x67,0xfd,0x6f,0x2e,0x78,0xe8,0xce,0x14,0x51,
0xcf,0x6,0xfd,0xf2,0xcb,0xe6,0xa0,0xb5,0xad,0x8e,0xe9,0x8d,0x87,0x9a,0x46,0x5a,
0xac,0xe7,0xe7,0xd0,0x5f,0xe,0xf1,0xeb,0x25,0x8f,0xe1,0xb1,0x3d,0x79,0xa4,0xfc,
0x22,0x1b,0x17,0x85,0xa,0xbf,0x6d,0x9c,0x9a,0xc5,0x59,0x97,0x9f,0x8a,0x1a,0x5a,
0x1e,0x1e,0x9,0x65,0x28,0x82,0x64,0x80,0x8e,0x9e,0x6e,0x3c,0xf4,0xe7,0xd5,0xe8,
0xd9,0xe5,0x93,0x94,0x2,0x96,0x43,0x89,0x75,0x4b,0x93,0xe8,0xf6,0xc5,0x58,0x73,
0x2b,0xad,0x5f,0x17,0xb9,0x95,0x84,0x81,0x81,0x1,0xf4,0x51,0xbb,0xd5,0xa0,0x80,
0x3,0xe5,0xd7,0x5e,0x11,0x25,0xa1,0x2d,0xf9,0xa3,0xb6,0xe5,0x97,0x99,0x5f,0x14,
0xdc,0xfa,0x7e,0x60,0xa0,0x80,0x35,0x6b,0x56,0x63,0xf9,0xb2,0x95,0xb8,0xf1,0xc6,
0x1b,0xf1,0x9b,0xdf,0xff,0xe,0x7d,0x3,0xfd,0x91,0x40,0x66,0x3b,0x55,0x39,0x49,
0x17,0x56,0x79,0xe8,0x98,0x26,0xf9,0x4b,0xf2,0x5,0xa1,0xca,0x9b,0xe5,0xaf,0x7c,
0xac,0xc9,0xa2,0x75,0xf2,0x14,0xb4,0x90,0x10,0xce,0xbe,0xf4,0xe9,0x38,0xfd,0xec,
0x73,0xe0,0xe5,0x6a,0x58,0xcf,0x23,0xa2,0xd8,0x57,0x54,0x46,0x73,0x22,0xf4,0xfc,
0xc1,0xf8,0x4,0x92,0x3,0x9a,0xad,0x1f,0x5,0xc5,0x55,0x21,0x3e,0xd7,0x70,0x59,
0x9d,0xcb,0xdd,0xa5,0x97,0x6b,0x1,0xc5,0x9,0x13,0xda,0x79,0x2d,0x72,0x8d,0x1d,
0x6d,0x68,0xfb,0x4,0xcd,0xe1,0x29,0xf1,0x75,0xc9,0x20,0xc4,0xb4,0x6c,0x23,0x9e,
0x73,0xf6,0x42,0x34,0xf0,0x55,0x71,0x4a,0x74,0x54,0x18,0x4e,0x9a,0x1f,0x9c,0x1c,
0x2a,0x94,0x0,0x22,0x7,0xa,0xa,0x79,0x3,0x25,0xda,0xfe,0xb0,0x72,0x35,0x56,
0xee,0xd8,0x39,0xc8,0x80,0x27,0x3b,0x1c,0x39,0x8c,0x3e,0x72,0x48,0x5,0xfd,0xb8,
0xa0,0xb1,0x11,0xef,0x3a,0xfb,0x6c,0xb4,0xf4,0xf6,0xb1,0xa1,0x32,0xd6,0xa5,0xc0,
0x96,0x1d,0x88,0xa1,0x86,0xba,0x91,0x82,0xfd,0x1d,0x8f,0x3c,0x82,0xd5,0x2c,0xe3,
0x1c,0x5,0x7a,0x98,0x29,0xe1,0x19,0xd3,0x4f,0xc1,0x37,0x3f,0x3c,0x1e,0xe5,0xa0,
0x97,0xe9,0xd5,0xfd,0x6a,0x3a,0xcc,0xaf,0xa0,0x11,0x19,0x3f,0xcf,0x9c,0xa8,0xc1,
0x43,0xdb,0x43,0xbc,0xf5,0x53,0xd7,0xa1,0x37,0xa9,0x7e,0x9,0x7e,0x47,0x61,0xf7,
0x86,0x77,0xbd,0xc,0xa7,0x9e,0xd3,0x86,0x9a,0x3a,0xe6,0xab,0x26,0xb,0xd,0x1,
0xdb,0x2f,0xd2,0xc9,0x46,0x3c,0x70,0xeb,0x1a,0xfc,0xc7,0xd7,0x7f,0x62,0xd6,0x8a,
0x66,0x9e,0xcb,0x9d,0xb5,0x3f,0x4e,0x5e,0x72,0xd8,0xb,0xbf,0xda,0x37,0x21,0x2,
0xf,0x29,0xf0,0x56,0x3c,0xba,0x2,0xff,0xfe,0xef,0xff,0x8e,0x5f,0xfe,0xf2,0x97,
0x55,0x8d,0x9c,0x42,0xb8,0x58,0x42,0x26,0x9d,0xb1,0x5c,0x91,0xa4,0xa,0x29,0xcb,
0x22,0x5b,0x43,0xca,0xae,0x8e,0xac,0xb7,0x69,0xb6,0x5b,0xde,0x5f,0x62,0x1,0x8c,
0x9b,0x30,0x1e,0x57,0xbf,0xe2,0x95,0x38,0xe7,0x92,0x8b,0x50,0xe2,0xf7,0x5e,0x26,
0x87,0x92,0xee,0xa7,0xa5,0x98,0x60,0x10,0x81,0xc4,0x13,0x7d,0x23,0x71,0x49,0x81,
0xab,0x7d,0x36,0xf8,0x1e,0x2d,0x6c,0x17,0x93,0x40,0xd2,0x26,0x4,0xf3,0x77,0xbc,
0x47,0xd7,0x75,0x1e,0x7f,0x16,0x62,0x2,0xb0,0xff,0x79,0xe9,0x58,0x93,0x43,0x8a,
0x69,0x53,0x9f,0x5a,0x59,0x55,0xc9,0xf,0x50,0x47,0x7d,0xe6,0x85,0x17,0x5d,0x8c,
0x89,0xb9,0xbd,0xf2,0x3b,0xae,0x8d,0xc3,0x49,0xf4,0xe1,0xae,0x45,0x50,0x5c,0x95,
0x28,0xfe,0xd3,0xda,0x3a,0x7d,0x34,0xbd,0xbb,0xfb,0x7a,0x2d,0xa1,0x71,0x62,0x1d,
0x4e,0x4e,0xa8,0x6a,0x1c,0x8b,0xca,0x7c,0xb4,0xb0,0x6f,0x1d,0x55,0x3,0xad,0x9e,
0xa,0xb4,0x4,0x92,0x7e,0x12,0xb9,0x81,0x10,0x2d,0xa5,0xa,0x5a,0x78,0x94,0xa0,
0xef,0xcf,0x57,0x2c,0xc,0xd4,0x0,0x7d,0xb9,0x10,0x7e,0xd2,0xe7,0x3d,0x45,0x92,
0x7a,0x2,0x45,0xb9,0x2b,0x48,0x83,0xcd,0x79,0x6a,0xfe,0x65,0xf,0xf9,0xb0,0x6,
0x99,0x52,0xe,0x99,0x72,0x9e,0xc7,0x3a,0x78,0xc9,0x1d,0x14,0xf0,0x5b,0xa9,0x8d,
0x6e,0x47,0x5e,0xcb,0x60,0x50,0xc0,0xed,0x7d,0x3d,0x1b,0x68,0x65,0x80,0x2,0xa7,
0xc4,0x67,0x96,0x50,0xf2,0x28,0x90,0x86,0x84,0x30,0xed,0x53,0xb0,0xc8,0xdc,0xa7,
0x26,0x2b,0xa2,0x15,0x86,0x21,0x86,0x93,0x9,0x2a,0x3b,0x69,0xd8,0x31,0x11,0x48,
0x61,0xf1,0x35,0x89,0x85,0xe4,0xb2,0xf2,0xb1,0xc7,0xf1,0xad,0x7f,0xfd,0xe,0x5e,
0xfb,0x9a,0xd7,0x61,0xe1,0xc2,0xc5,0x78,0xda,0xa5,0x97,0xe1,0x7,0xdf,0xff,0x11,
0x7a,0x7b,0xfa,0xd1,0xdf,0x57,0xb0,0xdf,0x69,0x32,0x5b,0x28,0x61,0xcd,0xb2,0x2b,
0xd3,0xba,0x8,0x69,0xb1,0x5,0xc9,0xb4,0xf5,0x93,0xe,0xf0,0x19,0x8d,0x13,0x27,
0xe3,0xa2,0xe7,0xbd,0x10,0x6f,0xfc,0xe0,0x47,0xf1,0xd9,0x6f,0x7f,0x17,0x9f,0xff,
0xee,0xf,0xb1,0xe8,0x59,0x57,0xa2,0x3b,0x57,0x8b,0x1e,0x92,0xca,0x1e,0x96,0xdd,
0x1e,0xa,0xfe,0x8e,0x9e,0x3e,0xec,0xd8,0xbd,0x7,0x7b,0xf6,0x74,0x61,0xe7,0xce,
0xe,0x6c,0xdb,0xb6,0xdd,0xc2,0xd6,0xad,0xdb,0xd1,0xd1,0xb1,0x7,0xbd,0x54,0x2e,
0x4a,0x45,0x92,0x83,0x14,0xb,0xc6,0x51,0x4,0xa1,0x38,0x1b,0x51,0x54,0x2d,0xa,
0x41,0x47,0x85,0xb8,0x4e,0x1e,0x2f,0x32,0x67,0x94,0xc,0xaa,0xbe,0x9a,0x4c,0x48,
0xc3,0x6,0x1b,0x77,0x6c,0x47,0x91,0xa,0x4f,0x99,0x32,0x5d,0x6b,0xa7,0xe9,0x16,
0xf5,0x8b,0xd,0x87,0x83,0x92,0x83,0x6e,0xd7,0x6f,0xec,0x87,0x7c,0xb0,0x36,0xf5,
0xe9,0xea,0xed,0x31,0xc6,0x1e,0xc9,0x82,0xc1,0xe1,0xd8,0x43,0x75,0x40,0x93,0x99,
0x54,0x2f,0x46,0x1a,0x6,0x1b,0x60,0xb5,0x31,0x5a,0xe5,0x1f,0xd2,0x18,0x8b,0xa9,
0x9c,0x7a,0x13,0x50,0xf1,0xb2,0x91,0xb0,0xd0,0x90,0x79,0x8d,0xa9,0xf,0xb2,0x16,
0xe0,0x53,0xe3,0xd4,0x91,0x86,0x76,0x39,0xc9,0x46,0xce,0xdf,0xa6,0x79,0x2e,0xb7,
0x6a,0xa8,0x85,0xde,0x52,0x5,0x92,0xc5,0x0,0x7c,0x8f,0x42,0xc1,0x63,0x3,0x63,
0x28,0x25,0x1a,0xf9,0x8c,0x3c,0x2d,0x13,0xbe,0x27,0x97,0xa5,0xd5,0x90,0x36,0xd,
0xd5,0xc0,0xe8,0xb0,0x1d,0x22,0xed,0x65,0x78,0xe4,0xcb,0x2,0x5a,0x57,0x43,0x42,
0x25,0xd0,0x62,0x7e,0x72,0x8d,0xc,0xcd,0xcb,0x28,0xd,0x27,0x27,0x48,0x91,0x14,
0xae,0x82,0x4,0xed,0xf6,0xed,0xdb,0xb1,0x64,0xc9,0x3,0xf8,0xda,0xd7,0xfe,0x9,
0x8b,0x16,0x9d,0x81,0x8b,0x2e,0xba,0x4,0x9f,0xfa,0xd4,0xa7,0x71,0xe3,0x8d,0x37,
0x9b,0xc0,0x8e,0x97,0x35,0x57,0x50,0x3e,0xaa,0xbc,0x54,0xee,0x95,0x74,0xa,0x7d,
0x61,0x19,0x61,0x4d,0x1a,0xa5,0x86,0x16,0xd4,0x4c,0x9d,0x81,0xb,0x5e,0xf4,0x52,
0x7c,0xe1,0x7b,0xdf,0xc7,0x27,0xbe,0xf5,0x1d,0x3c,0xf3,0x15,0xaf,0xc5,0xc4,0xf9,
0x67,0xc0,0xaf,0x6d,0xc6,0xaa,0xed,0x7b,0xb0,0x66,0x7b,0x37,0x36,0x6f,0xeb,0xc2,
0x8e,0x1d,0x3d,0xc,0x5d,0xe8,0xec,0xea,0x47,0x6f,0x7f,0x11,0x45,0x59,0x8,0x5,
0x12,0x3b,0x49,0x46,0xe5,0x28,0x89,0x2b,0xeb,0x27,0xe,0x51,0xb9,0xc5,0xe1,0x89,
0x11,0xcb,0xcd,0xe3,0x55,0xba,0x31,0x39,0x68,0xb4,0x52,0x92,0x75,0x3d,0x64,0xfd,
0xdc,0xb0,0x6b,0x1b,0x65,0xb9,0xf,0xd6,0xde,0x27,0x8d,0xc7,0x13,0x90,0x43,0x55,
0xfb,0x92,0x49,0xc5,0xbf,0xf5,0x5b,0x37,0x42,0x53,0xd6,0x1d,0x1c,0xa4,0x9d,0xf5,
0xf4,0xf4,0x54,0x3f,0x8d,0x2c,0xc,0x25,0x7,0x99,0xf6,0x56,0x8f,0xed,0x4a,0x84,
0xc,0xb5,0xf7,0x4,0x35,0xf9,0x4a,0xa2,0x1f,0x65,0xaf,0x1f,0x3,0xd9,0xfe,0xc8,
0x8d,0x43,0xcb,0x60,0x68,0x28,0x57,0x7c,0xf4,0x93,0xc,0x92,0x6c,0x61,0x19,0x2a,
0xb0,0x4a,0xf3,0xfa,0x5d,0x9b,0x91,0x4d,0xd4,0x21,0x19,0xe4,0x91,0x62,0x48,0xfa,
0x35,0x3c,0x57,0xa8,0xe7,0xe7,0xc,0x32,0x7c,0xe7,0xee,0xe,0x4d,0x88,0x33,0x29,
0x12,0xbd,0x90,0x4f,0xd3,0xea,0xab,0x95,0x30,0xb,0x2f,0x4c,0x22,0x23,0xcd,0x76,
0x48,0xf0,0x42,0xc6,0xb3,0xe4,0xa1,0x54,0x90,0xf6,0x59,0xb5,0x18,0x4e,0xe2,0x76,
0xa6,0x32,0xd3,0x92,0xda,0x9a,0xbd,0xac,0x99,0xcc,0xe7,0x9f,0x7f,0x1,0x9e,0xf7,
0xbc,0xe7,0xe1,0x4b,0x5f,0xfa,0x12,0x36,0x6c,0xd8,0x60,0x4a,0x89,0xca,0x38,0xf6,
0xdf,0xb,0x43,0x95,0x55,0x65,0x9d,0x3c,0x1d,0x34,0xe,0x71,0xc6,0x25,0x17,0xe0,
0x75,0xef,0x7c,0xb,0xde,0xf2,0xb1,0x8f,0xe3,0xaf,0x3e,0xf4,0x51,0x9c,0xfb,0xdc,
0xab,0xb0,0x91,0xc2,0x7e,0xd9,0x2e,0x5a,0x1,0x7d,0x3,0xb4,0xe,0x7c,0xf4,0x94,
0x48,0xee,0x81,0xc7,0x67,0xe4,0x90,0x63,0xc8,0x57,0xb2,0xc8,0x56,0xa8,0xe,0x54,
0x48,0x34,0xe6,0x56,0xd7,0x53,0x23,0xf2,0x79,0xf2,0x30,0x72,0x21,0x17,0x5c,0x25,
0x95,0x44,0x6f,0x71,0x20,0xda,0xdd,0x51,0x64,0xf6,0x24,0x7c,0x76,0xd0,0x3e,0x7,
0x36,0x1d,0x66,0x52,0x2,0x29,0xbf,0x82,0x2e,0xb2,0xf3,0x2f,0xef,0xbb,0x7,0x9d,
0xea,0x99,0x1e,0xe1,0x99,0x70,0x3c,0x31,0xd6,0xfa,0x1c,0xa2,0xf5,0x6f,0xa4,0x79,
0x49,0x98,0xa9,0xcf,0xe1,0xa7,0x78,0xeb,0xdb,0xd5,0xe7,0xb0,0x6f,0x2d,0xf2,0xa9,
0x59,0xb7,0x8f,0x9b,0x4a,0xb3,0xfe,0x6c,0xf8,0x14,0x6c,0x5a,0x5f,0x49,0xad,0xd2,
0x96,0x4e,0x3e,0x51,0xa8,0xa,0x54,0xeb,0xec,0x63,0x74,0x25,0x60,0x96,0x3e,0x78,
0x9d,0x5d,0x1b,0x8a,0x12,0x89,0xa0,0xbe,0x1c,0xe0,0x92,0x29,0x33,0x30,0x37,0x57,
0x8b,0x5a,0xf9,0x9d,0xf9,0xdb,0xd2,0x60,0xb5,0x26,0x39,0x50,0x28,0x2c,0xdb,0xb9,
0xb,0x7f,0xec,0xed,0x8f,0xae,0x50,0x8,0xc9,0x4d,0xe0,0xf3,0xde,0xb7,0x5c,0x31,
0x11,0x13,0x26,0xb6,0xf3,0x1d,0x1a,0xed,0xa2,0xfc,0x62,0xe0,0xd1,0x47,0x9e,0x82,
0x26,0x8f,0x5f,0xdf,0xf4,0x10,0xb6,0x75,0x94,0xd0,0xaf,0xa5,0x1b,0xf4,0x3d,0xf3,
0xa4,0xb9,0xb5,0x6,0xcf,0x7e,0xce,0x65,0xf0,0x6a,0xb4,0x82,0x53,0xd5,0x55,0x52,
0x85,0x47,0xab,0xa5,0xbf,0xb3,0x88,0xdf,0xfd,0xe6,0x16,0xf4,0xf6,0x96,0x99,0xc,
0x2d,0xf9,0xc0,0x3c,0x1d,0x63,0x6b,0x2b,0x3d,0xd1,0x3c,0x7,0x41,0x79,0xfc,0xc5,
0x2f,0x7e,0x11,0x37,0xdd,0x70,0x23,0x6e,0xfb,0xf3,0x9f,0x50,0x24,0x49,0xa4,0xd2,
0xea,0x40,0xe6,0x77,0x96,0x8f,0xca,0xeb,0xa8,0x8c,0x95,0x76,0xcd,0xb1,0xf2,0x28,
0x97,0xca,0x24,0xde,0x32,0x49,0x35,0x57,0x53,0x8f,0xf6,0xf1,0x13,0xd1,0x3c,0x6b,
0x3e,0xe6,0x2e,0x5a,0x88,0xa9,0x73,0x4e,0xa1,0x95,0xa7,0xef,0xd8,0x46,0x8f,0x5b,
0x1f,0xe9,0x30,0xef,0x21,0x51,0xc5,0xa5,0x23,0x79,0x60,0x44,0x96,0x90,0x65,0xa4,
0x3a,0x95,0xc2,0x84,0x9,0x13,0xf4,0xd,0x93,0x47,0x65,0x41,0xae,0x1e,0xd6,0xbd,
0x68,0x76,0x3d,0xdb,0xa0,0x7e,0xa4,0x1f,0xf3,0x77,0xf6,0xe4,0xea,0xb9,0x96,0x8f,
0x7f,0xaa,0x48,0xd2,0x6a,0x78,0xda,0xc2,0x79,0x98,0xd5,0xd8,0x84,0x3a,0xc6,0x41,
0x3,0x8e,0xb4,0x6c,0x24,0x5b,0xf0,0x1,0x38,0x28,0x39,0x68,0x71,0x3d,0x4d,0x4b,
0x4f,0xb2,0xf2,0x6d,0xec,0xed,0xc1,0xff,0xde,0x75,0x27,0x50,0xdb,0xc8,0x6f,0xe2,
0xa4,0x3a,0x9c,0xac,0xe4,0x60,0x8b,0xec,0xb1,0xe1,0x69,0x85,0x4d,0x36,0x51,0x5e,
0xe1,0xf7,0xfc,0xcd,0xf1,0x6a,0x82,0xc3,0xa2,0x9a,0xbf,0x6a,0x7c,0x12,0xe4,0xd2,
0x40,0x87,0x1b,0x38,0x51,0x4a,0xc8,0xb5,0xc3,0x86,0xe8,0x79,0x14,0xd4,0xd1,0x8a,
0xac,0x35,0x45,0x5a,0x14,0x7e,0x94,0xc6,0x41,0xd3,0xdf,0x4b,0xa2,0xdf,0x96,0xfd,
0xde,0xb,0xb9,0xd3,0xa,0xa8,0x21,0x39,0x96,0x6c,0x7c,0x7d,0x85,0xe5,0x2f,0xe4,
0x8a,0xf5,0x4c,0xbe,0x96,0xdc,0x28,0x63,0x20,0xe8,0x43,0x3a,0xa7,0x75,0x99,0x24,
0x14,0xd4,0xb4,0x64,0xbe,0x57,0x90,0xcb,0xa5,0x31,0xd0,0xa7,0xe7,0x29,0xbf,0x86,
0x82,0x79,0xc8,0xdf,0x79,0x5e,0xd6,0x5c,0x17,0x7b,0xdd,0x24,0x7,0x62,0x2c,0x4f,
0x82,0x13,0xd4,0x5e,0xca,0xa9,0x8a,0x4d,0x5c,0xcb,0xa6,0x33,0x8,0x94,0x1f,0xbc,
0x9e,0x61,0x79,0xa5,0xf8,0x9d,0x6f,0x82,0x53,0x4b,0x6d,0xf0,0x29,0xfc,0x7e,0x20,
0xac,0xa0,0x7d,0xe2,0x64,0x3c,0xe3,0xaa,0xab,0xb0,0xe8,0xec,0x73,0xd1,0x5f,0x2c,
0xa2,0x52,0xd3,0x60,0xa3,0x94,0x52,0xb4,0x30,0xb4,0xc8,0x1c,0xab,0xa5,0xad,0xd0,
0x7a,0xe2,0xb0,0x97,0x1c,0xf6,0xd6,0xcd,0x2,0x2d,0x20,0xf,0xf5,0xf5,0xf5,0xb6,
0x2f,0xb8,0xa0,0xb9,0x34,0x59,0xad,0x51,0xc6,0xa8,0x32,0x79,0xd1,0xd1,0xa2,0x2d,
0xd7,0x66,0x84,0x41,0x83,0x52,0x89,0x7a,0x8a,0x48,0xb0,0xce,0x4e,0xa9,0xcf,0xe3,
0x59,0x8b,0x16,0x83,0xb5,0x56,0x91,0xb2,0x37,0xec,0x5f,0x2b,0x85,0x83,0xe6,0x9a,
0xaa,0xa8,0x18,0x4a,0x11,0xdd,0xba,0x6b,0x37,0x32,0x35,0xe4,0x99,0xe1,0x79,0xc4,
0x61,0xac,0x81,0xe5,0x2c,0xbf,0x6f,0x64,0xb6,0x47,0x15,0x31,0x6e,0xc0,0x6,0x5d,
0xa6,0xc6,0xa6,0xca,0xc3,0xaa,0xce,0x50,0x20,0xf9,0x69,0x5e,0x80,0xd6,0x31,0x3a,
0xb1,0x21,0xc1,0x10,0xaa,0xf1,0x69,0xf2,0xc0,0x30,0x68,0x2a,0x97,0xd0,0xc8,0xb4,
0x65,0x48,0x1e,0x22,0x84,0x6c,0x89,0xc2,0x26,0x99,0xb6,0x8d,0x7c,0x14,0xba,0x33,
0x1e,0xba,0xd9,0x70,0x7b,0x86,0x69,0x7f,0xca,0x93,0x4c,0xb9,0x8b,0x1a,0x57,0x11,
0xe9,0x62,0x2f,0xb2,0x7c,0x8f,0x42,0x7f,0xa6,0x3,0x85,0xcc,0x6e,0xa,0x36,0xb6,
0x93,0x4c,0x2f,0x15,0x2a,0x8d,0xdc,0x92,0xe6,0x2f,0xf2,0x90,0xe8,0xf6,0x50,0xe8,
0xaf,0xb0,0x4d,0xe5,0x28,0xe4,0x32,0xfb,0x6,0x68,0x49,0xf0,0xac,0x6d,0x1a,0x14,
0x8d,0x88,0x51,0xe6,0xe,0x6f,0x81,0xa9,0xc,0x44,0x7a,0xb1,0x3b,0x65,0xac,0x60,
0x50,0xa3,0x26,0x34,0xa8,0x38,0xcb,0xf3,0x94,0xaf,0x75,0xaf,0x48,0x26,0xcc,0x46,
0xad,0xa9,0x54,0x50,0x48,0x64,0xd1,0x38,0xe5,0x14,0x3c,0xfd,0x85,0x2f,0xc3,0x2b,
0xdf,0xfe,0x1e,0xbc,0xeb,0xf3,0x7f,0x8f,0x37,0x7f,0xe2,0xef,0x30,0xf5,0xdc,0xf3,
0xb1,0x9d,0xa,0x5a,0x57,0x4d,0x1e,0x5d,0xcc,0xbb,0xb0,0x36,0x6b,0xc3,0x37,0xe5,
0x63,0xb7,0xe1,0x68,0xc7,0x10,0x43,0x75,0x6b,0xb9,0x13,0x15,0xb4,0x49,0x91,0x3e,
0xa9,0x2c,0x35,0x47,0x43,0x33,0xde,0x73,0xb9,0xc,0xea,0xea,0x6a,0xd1,0xdc,0xdc,
0x88,0x89,0x93,0x26,0x62,0xfc,0x84,0x76,0xe4,0x6b,0x72,0x2c,0x54,0x9,0x68,0x12,
0x1f,0xe3,0xdb,0x9b,0xae,0xa0,0x40,0xc3,0xb1,0x9c,0xad,0xb0,0x86,0x15,0x29,0x7b,
0x4b,0xa8,0x65,0xc5,0xa8,0x67,0xbd,0x28,0x75,0xf7,0xa0,0x22,0xb2,0xdc,0x6f,0xb4,
0xdb,0xe1,0x42,0x36,0xc8,0xf6,0x8e,0x4e,0x14,0xd4,0x89,0x3e,0x48,0x9a,0xc3,0xd7,
0xa7,0x83,0xe6,0x9c,0xa7,0xae,0x6d,0xc2,0x67,0x41,0x75,0xd0,0x44,0xf,0xc8,0x6c,
0xc3,0x69,0x62,0xe,0x63,0xf,0xaa,0xf0,0xd2,0x92,0x27,0x4e,0x9c,0x88,0x34,0x35,
0x6c,0x35,0xdc,0xa1,0x2,0xc9,0x5c,0x1f,0x81,0x47,0x21,0x98,0x63,0x65,0xcd,0x33,
0xd4,0x30,0x68,0x1f,0x2,0xda,0x9a,0x27,0x2c,0x50,0xc8,0x2a,0x84,0x32,0x90,0x73,
0x8,0x83,0xe1,0xc,0x65,0x60,0x37,0x1b,0x5e,0x47,0x3e,0x44,0x67,0xd6,0x47,0x5f,
0xda,0xa7,0x40,0x27,0xa9,0x50,0x90,0xa7,0x2b,0xd5,0x40,0xed,0x5c,0x47,0x8f,0x24,
0x33,0x1c,0xfa,0xa8,0x91,0xf6,0x30,0x6f,0xfa,0x33,0x39,0x9e,0xe7,0xd1,0xe7,0xd5,
0x50,0xb3,0xa5,0x59,0xee,0x67,0x91,0x2d,0x36,0x21,0x5b,0x98,0x88,0x6c,0xff,0x34,
0xe6,0x11,0xdf,0x6f,0xe6,0xbf,0xa9,0x59,0xcc,0x43,0xd,0xa3,0xe4,0x33,0xe5,0x2e,
0x1a,0x1a,0x78,0xcd,0xf6,0x22,0x30,0x12,0xe6,0xbd,0xfa,0x8d,0xdc,0x4a,0xc3,0x40,
0x6e,0x88,0xa9,0x53,0xa7,0x1a,0x41,0x8c,0x35,0xc,0xd6,0xaf,0x92,0xac,0xa1,0x24,
0x7c,0x69,0xd1,0x48,0xa3,0x69,0xf2,0x34,0xb4,0xcc,0x5b,0x8c,0x8b,0x5e,0xf6,0x3a,
0xbc,0xf3,0x8b,0x5f,0xc3,0x5f,0x7f,0xe2,0xd3,0x38,0xfb,0xea,0xab,0xd1,0x7a,0xda,
0x7c,0x78,0xcd,0x6d,0xe8,0x63,0xde,0x69,0x1e,0x34,0x73,0x87,0xff,0x47,0xbb,0x51,
0x4a,0xb,0xb7,0xe5,0xbd,0xf5,0x77,0x8c,0x79,0x34,0x26,0xb5,0xe8,0xc8,0xb8,0x53,
0xd0,0xcb,0xaa,0x94,0x65,0x2d,0xe1,0x3f,0x6e,0x5c,0x2b,0xc6,0x8f,0x1f,0x6f,0x4b,
0x7e,0xd4,0xd6,0xe6,0xd9,0xae,0xf8,0x9d,0xfd,0x24,0xba,0x37,0x12,0xcc,0xc,0x8c,
0x68,0x59,0x29,0x61,0xfd,0x4b,0x15,0xfb,0x90,0xd8,0xb3,0x13,0x9d,0xab,0x1e,0xc3,
0xaf,0xbe,0xf5,0xef,0x78,0xf3,0x4b,0x5e,0x86,0xfb,0x6e,0xbc,0x5,0x19,0x1b,0x56,
0xab,0xdf,0x3e,0x75,0x88,0x5b,0x2a,0xe9,0x2c,0x76,0x50,0xe1,0x37,0xfe,0xe2,0x7f,
0x51,0xa,0xe,0xc4,0x41,0xdd,0x4a,0x5a,0xa8,0x52,0x75,0x75,0x80,0x75,0xf5,0xfa,
0x3b,0xee,0xc4,0x36,0x92,0xa1,0xb6,0x9e,0x73,0xf4,0xb0,0x17,0x63,0xd9,0xad,0x54,
0x18,0x90,0xeb,0xc4,0xc3,0x7,0x3f,0xfc,0x31,0x7c,0xe7,0x3b,0xdf,0xa1,0xe6,0x43,
0x81,0x1b,0x37,0x60,0x69,0x7a,0x56,0x6b,0x62,0xa1,0x36,0xc4,0x37,0x7c,0xc2,0x70,
0xe0,0xbb,0xa3,0x46,0xb8,0x2f,0x1a,0xfa,0x6b,0xa8,0xf0,0x50,0x6,0x79,0xd4,0xf0,
0x98,0x8,0xb9,0x2b,0xcc,0x25,0xb4,0xdf,0xbd,0xb6,0x8c,0xb4,0xcd,0x65,0xd8,0x17,
0x5a,0xa2,0xdb,0xd2,0xac,0xce,0x63,0xeb,0x40,0xa6,0x36,0x9f,0x8e,0x3a,0xe7,0xd5,
0x79,0x6d,0xb0,0xbc,0xd1,0x9c,0xf,0x9d,0x30,0x58,0xbe,0x48,0xa7,0xd4,0xfd,0xfb,
0xb7,0x20,0x75,0x80,0x47,0xee,0xa9,0xf8,0x79,0x16,0xcc,0x2f,0xbd,0x2f,0x66,0xce,
0x98,0x82,0x5f,0xff,0xdf,0xaf,0xd1,0xdc,0xd2,0x68,0xcb,0x3a,0xe8,0xb9,0x63,0xa5,
0xcf,0x21,0x46,0x91,0x69,0x4a,0x66,0xf3,0xb8,0xe0,0xb2,0x67,0x60,0xd1,0x79,0xe7,
0x23,0x5d,0xd7,0x80,0x64,0x4d,0x1b,0x2,0x12,0xb1,0x8d,0xb0,0x49,0x93,0x38,0xd8,
0xee,0x34,0x4c,0x35,0x5d,0x8e,0x8e,0xf2,0xd7,0xab,0x1c,0x2d,0xaf,0x45,0xae,0xcc,
0xe,0x95,0xa7,0x5d,0x51,0x56,0xda,0x93,0x8f,0xd,0xd4,0xc6,0xd5,0x2e,0x34,0x7c,
0xb6,0xa6,0x36,0x83,0x7c,0x5e,0x4,0x10,0xed,0xdb,0x2c,0xc2,0x50,0xcb,0xd0,0x3d,
0x3a,0xd7,0x51,0x41,0x3a,0xf6,0xa0,0xd2,0x5e,0x85,0xa7,0x74,0x14,0xa,0xb8,0xed,
0x77,0xbf,0xc7,0x9f,0xff,0xef,0x6,0x14,0x3b,0x76,0x53,0x77,0x28,0xa1,0xec,0x27,
0x6d,0xd3,0xd9,0x97,0xbe,0xe9,0xaf,0x71,0xd1,0xf3,0x9f,0x8f,0x22,0x7f,0xac,0xbd,
0x2d,0x9e,0x2a,0x44,0x5,0x69,0xd6,0xe1,0xd3,0x9b,0x1b,0x70,0xd9,0xfc,0x79,0x26,
0x97,0xe4,0xf8,0xd4,0xae,0x3c,0xfb,0xe3,0xa0,0xe4,0x80,0xd2,0x0,0x8a,0xa9,0x2c,
0x36,0xc,0x14,0xf1,0x9b,0xfb,0xee,0x47,0x7f,0x3a,0xea,0x0,0xf2,0x8e,0xc0,0xdf,
0x35,0xd6,0x30,0xd6,0xc8,0x61,0x38,0xc8,0x1f,0xf9,0xfb,0xdf,0xff,0x1e,0xff,0xf3,
0x3f,0xff,0x63,0x2b,0x5f,0x6a,0xc4,0x48,0x5c,0xf1,0x1d,0x8e,0x1d,0x94,0xbf,0xa,
0x5a,0x6c,0x6e,0xfe,0xfc,0x5,0x78,0xde,0xf3,0x9e,0x8b,0x57,0xbd,0xfc,0xa5,0xf6,
0x59,0x16,0xfc,0xf1,0xeb,0x64,0x3d,0x3a,0x88,0xc9,0x41,0xfd,0x54,0xdb,0xb6,0xed,
0xc0,0xb,0x5f,0xf8,0x42,0xac,0x5d,0xbf,0xde,0x84,0x78,0x9a,0xff,0x55,0x48,0xa6,
0xe3,0xcf,0x3e,0xb,0xe7,0xbc,0xe0,0x25,0x18,0x3f,0x61,0xe2,0x89,0xf1,0x52,0x88,
0xc7,0xab,0xa7,0x31,0xf6,0xa,0x74,0xf5,0x31,0x45,0xa2,0x52,0xe7,0xe9,0x4c,0x5,
0xd9,0x6c,0xb4,0xdd,0xa8,0x8e,0xba,0xe6,0x7b,0x72,0xda,0xf0,0x19,0x4c,0x8f,0x86,
0x8f,0xea,0x69,0xe5,0x6a,0x39,0x26,0xf5,0xc,0xb6,0x1b,0x91,0x80,0xdc,0xf3,0x69,
0x2f,0x85,0x72,0x4f,0x37,0xd6,0xad,0x58,0x8e,0xb5,0xcb,0x1e,0xc6,0x9a,0x15,0x2b,
0xb0,0xf6,0xe1,0x87,0x7,0xdb,0x55,0x7c,0x34,0xe1,0x4d,0xcb,0xf4,0xca,0x37,0xbd,
0x11,0x17,0xbc,0xf8,0x6a,0xdb,0x31,0x4f,0x16,0xe4,0x53,0x85,0x16,0x96,0x14,0x31,
0xb5,0xe7,0xb2,0xb8,0x7a,0xd1,0x19,0xa8,0xe5,0x6b,0x34,0x48,0x23,0xa3,0xe5,0xee,
0xf7,0xc3,0xc1,0x2d,0x87,0x52,0x3f,0x4a,0x64,0xeb,0x9b,0x1e,0x79,0x14,0xab,0x76,
0xef,0xb6,0xd,0x35,0xb4,0xd2,0x89,0xcc,0x36,0x87,0x8,0x27,0x5,0x39,0xb0,0xbc,
0xcb,0xbe,0x6f,0xfb,0xee,0xc6,0xe8,0xe9,0xed,0x61,0x23,0x8f,0x5c,0x1b,0xc3,0xd7,
0x1e,0x87,0x23,0x45,0x6d,0x6d,0xd,0xf3,0x3c,0x27,0xbd,0xd3,0xc8,0x58,0xae,0xa4,
0x9c,0x17,0x9,0x4c,0xf5,0x7d,0x78,0x9a,0x67,0x32,0x8a,0x10,0x93,0x83,0x16,0xc3,
0xdb,0xb3,0xbb,0x13,0xcf,0xbb,0xea,0x79,0x7b,0xc9,0x81,0x75,0xac,0x52,0xc9,0x61,
0x11,0x9,0xf0,0xfc,0x17,0xbf,0x82,0x77,0x27,0x6c,0xa8,0xaa,0xcd,0xa5,0x39,0xae,
0xa0,0xe0,0xac,0x9e,0xd,0x85,0x4,0xb5,0xca,0x40,0xf1,0x51,0x27,0xb2,0xac,0x68,
0x20,0x9a,0xd5,0x1c,0xb,0x71,0x95,0x8f,0x97,0x8a,0x66,0x65,0x33,0xa1,0xf6,0xbf,
0x30,0x40,0x12,0xa9,0x68,0x45,0x5f,0x9e,0x67,0x7c,0x9e,0xb3,0xdd,0xf4,0x6c,0xd8,
0x82,0x9b,0xae,0xbd,0x1e,0xb7,0xdf,0x7a,0xb3,0xed,0x15,0x52,0xaf,0x49,0x7b,0x61,
0x80,0xc0,0x6,0x79,0x44,0xcf,0x8d,0x71,0xb4,0xc9,0x41,0x90,0x55,0x9c,0xaf,0xf8,
0x78,0xe5,0xf9,0x17,0xa0,0x89,0xa4,0x56,0xa6,0x95,0x9a,0x49,0x1c,0x98,0xd7,0x7,
0x27,0x7,0xbf,0x80,0xee,0x84,0x87,0xff,0xbe,0xf5,0x8f,0x28,0xe6,0xf2,0x2c,0x44,
0x66,0x4,0xb,0x51,0x7f,0xe,0x11,0x4e,0x6,0x72,0xd0,0x56,0x83,0x51,0x65,0x8d,
0xab,0xc9,0xbe,0xe5,0x3f,0xa4,0x1e,0x3b,0x1c,0x45,0x44,0xcd,0x32,0x72,0x45,0x44,
0xa0,0xe6,0xc9,0xd3,0x58,0x70,0xc,0x15,0x20,0xa3,0x1,0x31,0x39,0x4,0x41,0x8,
0xad,0xa3,0xf7,0x81,0xf,0x7e,0x0,0xdf,0xff,0xe1,0xf,0x8d,0x1c,0x34,0xd7,0x23,
0x8,0xd3,0x38,0xe3,0xaa,0xab,0x70,0xc1,0x4b,0x5e,0xc9,0xb6,0xb4,0xaf,0xa6,0x7e,
0x3c,0xa0,0xfc,0x64,0x2b,0xe6,0xbb,0x7d,0xbe,0x97,0x84,0x45,0x22,0x90,0x45,0x10,
0x5b,0x7,0x72,0xb1,0xda,0x5e,0xe4,0x83,0x51,0x8a,0xdc,0x7e,0x8a,0xa7,0x88,0x43,
0x71,0x2d,0xf3,0x3e,0x59,0x8,0x94,0xe0,0xb4,0x10,0x54,0x7a,0x40,0x3,0x5,0xfe,
0x9e,0xed,0x3b,0x71,0xf7,0x9f,0xfe,0x84,0x47,0xee,0x5b,0x82,0x3d,0xdb,0xb6,0xa1,
0x73,0xe7,0x76,0x4a,0xd,0xad,0xf3,0x2b,0x19,0x12,0xda,0x6f,0xcc,0xf3,0x9f,0x8e,
0xb6,0x29,0x8d,0x9f,0xab,0xc5,0xf9,0x72,0x59,0xef,0x28,0x5b,0xe,0x8a,0x79,0x88,
0x14,0x49,0xe9,0xb9,0xa7,0x2f,0xc0,0xa9,0x6d,0x2d,0xf6,0x59,0x5b,0xb2,0xee,0x8f,
0x83,0xda,0x6e,0x89,0x54,0x12,0x5d,0x34,0x7b,0x2a,0x96,0x4a,0x99,0x45,0x22,0x87,
0xea,0x97,0xe,0x27,0xd,0x58,0x47,0x59,0xfc,0x22,0x8,0xab,0x6,0xd5,0xf3,0xbd,
0x41,0x42,0xcb,0x85,0xa3,0x1f,0xe2,0xbc,0x56,0xfe,0x47,0x81,0x6d,0x90,0x27,0x26,
0xc4,0xf4,0xe5,0x28,0x85,0x3a,0xe6,0xe5,0x9f,0x57,0xd8,0xb,0xa6,0x57,0xa2,0x99,
0x42,0x56,0xd2,0x4b,0xe9,0x3b,0xd6,0xc4,0xa0,0x77,0xc8,0x2,0x8b,0x3b,0xf7,0x45,
0x0,0xa,0xb2,0xc,0xda,0xdb,0xc7,0x59,0x68,0x6a,0x6a,0xb4,0x51,0x46,0x99,0x8c,
0x88,0x41,0x77,0xed,0xad,0xf7,0x71,0x39,0x58,0x9c,0xab,0x48,0x94,0x8b,0xc8,0x90,
0x5c,0x52,0xb4,0xac,0x3b,0x56,0x3c,0x82,0x7b,0xae,0xfd,0x5,0x3e,0xfd,0xe6,0xb7,
0xe2,0x23,0x6f,0xf8,0x4b,0xfc,0xfe,0xfb,0x3f,0xc4,0xb6,0x87,0x97,0xa2,0x44,0x72,
0x48,0xdb,0xce,0x83,0x3e,0x2,0x6a,0xec,0x1a,0xba,0xab,0x7d,0xaf,0xb5,0x2b,0x9e,
0xc8,0x40,0x71,0x50,0x39,0x8b,0x8c,0x44,0x4c,0xc7,0x2,0xd6,0xcb,0xc5,0xf7,0xac,
0xdd,0xb6,0x15,0x25,0xf5,0xa1,0x1d,0xa4,0x3e,0x1d,0x94,0x1c,0x54,0x38,0xdd,0x3,
0x7d,0x66,0x31,0xc4,0x5d,0x63,0xa3,0xb7,0x4a,0x3a,0x3c,0x75,0xa8,0xf2,0xb8,0x30,
0x22,0x82,0xc3,0x51,0x83,0xe4,0x9b,0x84,0x6f,0x6b,0x6b,0xab,0x8d,0xca,0x6b,0x6b,
0x6b,0x63,0x68,0x41,0x5d,0x5d,0xd,0xaf,0x6b,0x16,0xb6,0x86,0x72,0xfb,0x46,0xca,
0xd6,0x6,0xe,0x8,0x11,0xf4,0x1c,0x5,0x75,0x44,0xef,0x79,0x74,0x15,0xbe,0xf1,
0xd1,0x4f,0xe0,0x53,0xaf,0xff,0x6b,0x7c,0xe7,0xbd,0x1f,0xc1,0x1f,0xff,0xf5,0x3f,
0xd0,0xb1,0x75,0x13,0x6f,0x2a,0x43,0x9b,0x10,0x69,0xbd,0xae,0xa2,0x86,0x7c,0x4b,
0x53,0x27,0xa7,0x68,0x39,0x78,0xcd,0x23,0x93,0x47,0xa6,0xa2,0x11,0x56,0x14,0xd8,
0x6f,0x7f,0xfb,0xdb,0xf1,0xbe,0xf7,0xbd,0xef,0xd8,0xe,0x59,0x56,0x9a,0xf8,0xae,
0x4d,0x5b,0xb7,0x99,0xdb,0x58,0x23,0x51,0x87,0xc3,0x41,0xc9,0x41,0x5e,0xb2,0x2d,
0xfd,0x5,0xf4,0x7a,0x19,0x46,0x3e,0xcd,0x44,0x68,0xf9,0xe1,0x83,0xde,0xee,0x30,
0x46,0x61,0x7b,0x25,0x87,0x2e,0x8c,0x84,0x30,0x9a,0x61,0xfc,0xa6,0x13,0xb9,0x60,
0x18,0x8c,0xeb,0x34,0xb4,0xd7,0x86,0xfc,0x52,0x75,0xa6,0xd0,0xb4,0xa1,0x45,0x47,
0x59,0x5,0x95,0x80,0x4d,0xa0,0x4c,0x79,0xe8,0x23,0x9f,0x4b,0xa1,0xa1,0x3e,0x87,
0xb6,0xd6,0x6,0x8c,0x6f,0x6f,0xc6,0xb8,0xb6,0x6,0xd4,0xe4,0xa9,0xa9,0x27,0xca,
0x48,0x51,0x70,0xdb,0x8,0x22,0x6a,0xed,0xea,0x30,0x56,0x87,0xbf,0xb9,0x8c,0x78,
0x1e,0x52,0x98,0xda,0xc8,0x7e,0xb9,0xc6,0xa8,0xed,0x57,0x34,0xe4,0x39,0x55,0xc2,
0x8e,0x75,0x8f,0xe2,0xcf,0xff,0xfb,0xdf,0xf8,0x9f,0xcf,0x7c,0x1c,0x1f,0x7f,0xc9,
0xb,0xf1,0x8d,0x6b,0xde,0x83,0x9d,0xcb,0x1f,0x0,0x8a,0x3d,0x28,0x79,0x65,0xf4,
0x31,0x69,0x29,0x5a,0x27,0xb9,0x24,0xdf,0x41,0xd,0x3d,0xf0,0x49,0x0,0x5e,0xe,
0x15,0x7e,0x1e,0x28,0x95,0x51,0x57,0x5f,0x87,0xab,0x9e,0x7b,0x25,0xbe,0xf4,0xf9,
0xcf,0xe1,0xc6,0xdf,0xfe,0x1a,0x3b,0xb6,0x6c,0xc4,0x27,0x3e,0xfa,0x61,0xd4,0xd5,
0xe4,0x2d,0xde,0x5a,0x18,0xef,0x68,0x43,0x59,0x9c,0xe6,0x73,0xb3,0x41,0x12,0x7d,
0x24,0xc7,0xd,0x3d,0x5d,0xc8,0x87,0xc3,0xbb,0xa9,0xe,0x5a,0xe3,0xb4,0xd1,0xf9,
0xee,0xee,0x6e,0x63,0x45,0xf2,0x1a,0x33,0x45,0x2c,0x76,0xf4,0x23,0xeb,0xe0,0xe0,
0xe0,0x70,0x2c,0x20,0x1,0x2b,0x8d,0xbe,0xa5,0xb5,0x19,0x53,0xa6,0x4c,0xa6,0x95,
0x10,0x59,0x6,0x1a,0x6,0xac,0x79,0x8,0x26,0xdb,0x86,0xb8,0x54,0x74,0x26,0x31,
0xa9,0xf9,0x93,0xd2,0xea,0xd3,0xa,0xfc,0x5c,0xf6,0x7,0x90,0xd6,0x70,0xe7,0x81,
0x7e,0x14,0x3a,0x76,0xe2,0xcf,0xbf,0xfe,0x35,0x3e,0xf3,0xaa,0xd7,0xe3,0x2b,0x7f,
0xf3,0xe,0xdc,0xf2,0x83,0xff,0xc6,0xe3,0x77,0xdd,0x8b,0x64,0x77,0xaf,0x91,0x89,
0x9e,0xa9,0x63,0xc,0x8d,0xe,0xd2,0x8a,0xa8,0x7a,0x76,0x96,0xef,0x6d,0x69,0x6a,
0xc2,0xf9,0xe7,0x9d,0x8f,0xef,0x7d,0xef,0x3f,0xf1,0xe8,0x8a,0x47,0xf1,0x5f,0x3f,
0xfa,0x11,0xde,0xf4,0xa6,0x37,0xe1,0x8c,0x33,0xce,0xb0,0xdf,0x2a,0x1c,0x4b,0xc4,
0xa9,0xd5,0x5b,0x52,0x5e,0xa,0xbb,0xf6,0xec,0xb6,0xe,0xea,0xe1,0x70,0x50,0x72,
0xe8,0x67,0xc6,0x74,0xf6,0xf5,0xd9,0xd4,0xf3,0x4,0x13,0xa8,0x31,0xf0,0x7,0x7b,
0x88,0x83,0x83,0x83,0xc3,0x48,0x82,0x84,0xbe,0xdc,0x34,0xd,0xd,0xd,0xc8,0xe5,
0xb2,0xf0,0x83,0x72,0x34,0x73,0x59,0xd2,0x91,0x72,0x4c,0xe2,0x3a,0xee,0xc3,0x91,
0x40,0x16,0x91,0xf8,0xd0,0x88,0x21,0x1d,0x7d,0xca,0xba,0x40,0x46,0x4,0x92,0xc5,
0x2,0x36,0xdc,0x76,0x27,0xbe,0xff,0x99,0xcf,0xe1,0xab,0xef,0x78,0x17,0x3e,0xff,
0xc6,0xb7,0xe2,0xf,0xdf,0xfe,0x2e,0xfc,0x3d,0xbb,0x50,0x2f,0x83,0xa7,0xc2,0x7b,
0x93,0x15,0x14,0x93,0x72,0x43,0x49,0x81,0x8e,0xde,0x1d,0xb,0x79,0xbf,0x54,0xc2,
0xe4,0x49,0x13,0xf1,0xbe,0xf7,0xbe,0x7,0xbf,0xf9,0xbf,0xff,0xc3,0x6d,0x7f,0xfa,
0x23,0xae,0xff,0xd5,0xb5,0x78,0xd9,0xcb,0x5e,0x8c,0x6c,0x4e,0xbb,0x11,0xca,0x69,
0xaf,0x91,0x50,0x29,0x7e,0xce,0x59,0x9c,0x7d,0xdf,0xb7,0xe3,0xb1,0x22,0x8a,0x58,
0xe8,0x97,0xc3,0x0,0x7d,0x85,0x81,0x68,0x7a,0xcd,0x30,0x38,0x28,0x39,0x6c,0xeb,
0xec,0xe4,0x8f,0xc5,0x64,0xca,0x4f,0x45,0x92,0xe7,0x8e,0x1c,0x1c,0x1c,0x1c,0x46,
0x11,0x22,0x1,0xab,0x79,0x39,0xb2,0x12,0x86,0x86,0x48,0x88,0xc7,0x96,0x83,0x3a,
0x80,0x73,0x14,0xf4,0xb9,0x42,0x1f,0x3a,0xd7,0xac,0xc2,0x3,0x7f,0xf8,0x1d,0xbe,
0xf7,0xe5,0x2f,0xe2,0xbd,0xaf,0x79,0x35,0x7e,0xf0,0x95,0xaf,0x62,0xd5,0x9d,0x77,
0xa2,0x7f,0xf3,0x66,0x64,0xf8,0x7d,0x8e,0x96,0x84,0x26,0x50,0xca,0xbb,0x52,0x4e,
0x25,0x51,0x4a,0xa7,0x51,0x4c,0x69,0xe9,0xf5,0x68,0xe4,0x92,0x66,0x43,0x5f,0x72,
0xc9,0x25,0x78,0xff,0xfb,0xdf,0x8f,0xbb,0xee,0xbc,0x1d,0x4b,0xee,0xbf,0x17,0x1f,
0xfc,0xc0,0xfb,0x70,0xce,0xd9,0x67,0x62,0xe2,0x84,0x76,0xa,0x7e,0xbd,0x53,0x16,
0x86,0xde,0x1f,0xd,0x3a,0x10,0x69,0x59,0x9c,0x78,0x2d,0x7e,0xce,0xb1,0x1c,0xca,
0x1b,0xe5,0xa,0xd0,0x5d,0xe8,0x27,0x15,0xe,0x8f,0x83,0x92,0xc3,0xd6,0x1d,0xbb,
0xf8,0xa3,0x88,0x59,0xa3,0x9b,0x22,0x56,0x74,0x70,0x70,0x70,0x18,0x4b,0xd0,0xc8,
0x29,0x8d,0x14,0xba,0xee,0xdf,0xff,0x13,0xef,0x7d,0xc9,0xcb,0xf1,0xf,0x6f,0x7f,
0x37,0x7e,0xf5,0x4f,0x5f,0xc7,0xaa,0xdf,0xde,0x84,0xa6,0x62,0xc9,0x7c,0x4c,0x15,
0x5a,0x6,0x41,0x3a,0x44,0x31,0x4d,0x6d,0x5b,0x4b,0xae,0x84,0xf2,0xa8,0x24,0xe1,
0x5,0x29,0xa4,0x18,0x82,0x81,0xd0,0x8,0xe1,0xff,0x68,0x1d,0xac,0x5e,0xbd,0x1a,
0xd7,0x5e,0x7b,0x2d,0x3e,0xf2,0x91,0x8f,0x60,0xee,0xa9,0xb3,0x6d,0x46,0xb3,0x5c,
0x4a,0xf2,0xc0,0x28,0xc8,0x72,0x39,0x20,0x98,0xb8,0x8e,0xb0,0x76,0xed,0xda,0x41,
0xb,0xe2,0x58,0x22,0x93,0xcd,0xa0,0xb3,0xbb,0xb,0x85,0xea,0x9c,0xa5,0xfd,0x51,
0x95,0xfb,0xfc,0x52,0xbd,0xf3,0x3c,0x55,0x74,0x4a,0x8c,0xe7,0x8a,0x8e,0xe,0x7e,
0x9b,0x46,0x46,0x63,0x93,0x49,0x10,0x15,0x78,0xd6,0x39,0xe9,0xe0,0xe0,0xe0,0x30,
0x12,0x20,0x79,0xa5,0x8e,0x62,0x2d,0x87,0xa2,0x55,0x4c,0xcb,0xc,0xb6,0xe4,0xb5,
0x3e,0x6b,0x8c,0xa5,0x3a,0x90,0x53,0x1,0xa,0x81,0xfa,0x2,0x28,0x9c,0xcb,0x14,
0xd2,0x7e,0xa,0x75,0xbc,0x39,0xb1,0xa7,0x13,0x4b,0xff,0xf0,0x7b,0xfc,0xec,0x2b,
0x5f,0xc1,0x17,0x5f,0xff,0x7a,0x7c,0xfc,0xf9,0x2f,0xc0,0xbd,0xd7,0x5e,0x8f,0x3c,
0x85,0x7e,0x3a,0x99,0xb2,0x67,0x57,0x72,0xb4,0x8,0x28,0xcc,0xd5,0xff,0x90,0xa2,
0xec,0xd3,0x8,0xd4,0x4c,0x22,0xc7,0xc7,0xa6,0x11,0x7a,0x15,0x2c,0x3a,0xe3,0x74,
0x5c,0xf3,0x21,0x12,0xc9,0x2f,0xfe,0xb,0xdb,0x37,0x3e,0x8a,0x1b,0xae,0xfd,0x39,
0x2e,0xbd,0xf0,0x5c,0xde,0x5b,0xb6,0x3e,0x8a,0x64,0x58,0x82,0x97,0x4b,0x19,0xb9,
0x84,0x49,0x1f,0x21,0xe3,0xa2,0xe0,0x7,0x21,0x2,0xc6,0x21,0x60,0xc4,0xb,0x3,
0x1,0xfa,0xfb,0xca,0x58,0xbb,0x7a,0x23,0xae,0xf9,0xc0,0x47,0x71,0xf6,0x59,0xe7,
0xe1,0x7,0x3f,0xf8,0x91,0xed,0xbf,0x60,0x73,0x26,0xe4,0xb1,0x19,0x42,0x1c,0x47,
0xa,0xf5,0xa7,0x28,0x5b,0xb4,0x75,0xe8,0x40,0x91,0x71,0xa,0xf2,0xd8,0x7a,0x90,
0xad,0x59,0x22,0x69,0x5f,0x35,0xad,0x34,0x8a,0x40,0x3d,0xe4,0xbd,0x5,0x9a,0x4d,
0x55,0x7f,0xd7,0xb1,0xee,0x20,0x71,0x70,0x70,0x70,0x38,0x5c,0x98,0xd8,0x94,0x1b,
0x46,0xc2,0xae,0x2a,0xf0,0x52,0xc,0x1,0x2f,0x28,0x44,0x7f,0x12,0xf1,0x40,0x23,
0xbf,0x48,0xf5,0x77,0xc3,0xef,0xd8,0x8e,0x55,0x77,0xde,0x86,0x7f,0xf9,0xe4,0x27,
0xf0,0xbe,0x57,0xbc,0x12,0xff,0xfb,0xf5,0xaf,0xe3,0xe1,0x3f,0xde,0x82,0xee,0xcd,
0x9b,0x50,0x9f,0xa6,0xb4,0xb4,0x3e,0x9,0x3e,0x6c,0x48,0xb0,0x67,0x50,0x2e,0xca,
0xd5,0x33,0xa1,0xbd,0x1d,0x33,0x66,0xcc,0xc0,0x35,0x1f,0xfc,0x0,0xee,0xbd,0xf7,
0x5e,0xdc,0x72,0xcb,0x2d,0x78,0xef,0x7b,0xdf,0x8b,0x4b,0x2f,0xbd,0x4,0x35,0x35,
0x79,0x7b,0xd7,0x1,0x90,0x42,0xbd,0x5f,0xd0,0x5a,0x13,0x95,0xb0,0x82,0x42,0xa1,
0x88,0x55,0xab,0x1e,0xa7,0x85,0xf1,0x51,0x9c,0x75,0xce,0x39,0xf8,0xce,0x7f,0xfe,
0x7,0xd6,0x6d,0x58,0x6f,0xef,0xa2,0x0,0xb6,0x15,0x29,0x98,0x2a,0x6,0x1d,0xf9,
0x53,0x86,0x28,0x45,0x4f,0x1d,0x7a,0x86,0x5c,0x58,0x82,0xde,0x53,0x61,0xd8,0xb2,
0x73,0x57,0x74,0x61,0x3f,0x44,0x6f,0xad,0xde,0x9c,0x20,0x11,0xd0,0x80,0x42,0x57,
0xa1,0x9f,0x1f,0xaa,0x17,0x1d,0x1c,0x1c,0x1c,0x46,0x18,0x62,0xf1,0xaf,0xd1,0x40,
0x19,0x4d,0xac,0xf3,0x43,0xe4,0x29,0xdb,0xb3,0x95,0x12,0x32,0xe5,0x22,0x6a,0x29,
0xc9,0x5a,0xd3,0x1e,0x3a,0xd7,0xaf,0xc3,0xcf,0xfe,0xf5,0xeb,0xf8,0xd2,0x7,0xdf,
0x8b,0xbf,0x7b,0xe7,0xdb,0xf1,0x9d,0x2f,0x7e,0x16,0x1b,0x1e,0xb8,0x17,0x75,0x59,
0x31,0x49,0x1f,0xc5,0x5c,0x89,0x3f,0xa2,0x6,0x9f,0xf6,0x51,0xa1,0x5a,0xad,0xe7,
0x29,0x68,0x39,0xb,0x1d,0xb5,0x2a,0xf1,0x4b,0x5e,0xfc,0x22,0xfc,0xf4,0xc7,0xff,
0x83,0x9b,0x6f,0xba,0x11,0x7f,0xfe,0xd3,0x1f,0xf1,0x91,0xf,0x7d,0x88,0x24,0x31,
0x95,0xdf,0x7,0xd6,0x7f,0xa0,0x7e,0x3,0x75,0x28,0xf,0x7,0x9,0x63,0x9b,0x15,
0xce,0xd7,0x69,0x3f,0x6b,0x2d,0x1f,0xa2,0x19,0xe0,0xbf,0xfe,0xf5,0x6f,0xf1,0xfc,
0xab,0x5e,0x88,0xe7,0x5e,0xf9,0x3c,0xfc,0xe0,0xfb,0x3f,0xa4,0xbc,0x4d,0xda,0xe,
0x6d,0xea,0x9e,0xf6,0x3,0x5a,0x1d,0x7c,0x9e,0x16,0xc4,0x1b,0x48,0x7a,0x28,0x7b,
0x69,0xe4,0xea,0x1b,0xcc,0xd5,0x94,0x3c,0xa,0x62,0x59,0x71,0x12,0xa1,0x7a,0xea,
0xdb,0x20,0x3,0x6c,0xed,0xea,0xb0,0x9,0x81,0xfb,0x1b,0x2,0x46,0xe,0xc6,0x46,
0xba,0xce,0x50,0xe6,0x4d,0x5d,0xc5,0x7e,0xbb,0x71,0x68,0x87,0x8d,0x83,0x83,0x83,
0xc3,0x88,0x81,0xe4,0x92,0xe4,0x93,0xfe,0xca,0x1,0x72,0xf0,0xd0,0x98,0xa6,0xf6,
0xbe,0x6d,0x2b,0xb6,0x3f,0x78,0x3f,0x6e,0xfa,0xc1,0xf7,0xf1,0x95,0x77,0xbf,0xb,
0xff,0xfc,0xbe,0xf7,0xe3,0xfe,0xdf,0xde,0x84,0x3d,0x6b,0xd6,0x23,0xd5,0xd7,0x87,
0xc,0xe5,0x5a,0x8a,0x42,0xdd,0x6,0xd9,0xf0,0x11,0x52,0x86,0x7d,0xad,0xe7,0x51,
0xd1,0x3c,0x2e,0xf5,0x3f,0x78,0x38,0xf3,0xcc,0xc5,0x78,0xc7,0x3b,0xde,0x86,0x1f,
0xfe,0xf0,0xfb,0x58,0xbb,0xf6,0x71,0x7c,0xe7,0xdb,0xff,0x8a,0xa7,0x5d,0x7a,0x31,
0x26,0x4f,0x9a,0x80,0x5c,0x36,0xcd,0x9f,0xa9,0x83,0x5b,0xaf,0x1f,0xda,0xb9,0x1d,
0x45,0x6b,0x7f,0x68,0x82,0x99,0x36,0x70,0x92,0xdc,0xd5,0x82,0x83,0xff,0xf9,0x9f,
0xdf,0xc3,0x15,0xcf,0x7c,0x36,0x5e,0xff,0xfa,0xbf,0xc4,0xc3,0xf,0x2f,0xc7,0xc0,
0x40,0xd1,0xbe,0xd7,0xa,0x14,0x59,0x4d,0xb4,0x20,0x71,0x64,0x6b,0xf3,0x18,0x60,
0x1c,0xeb,0x27,0xb4,0xe1,0xb2,0xff,0xf7,0x32,0x7c,0xee,0x5b,0xdf,0xc4,0x85,0x57,
0x5c,0x6e,0xab,0xd1,0xa6,0xf,0xf6,0xa2,0x43,0x84,0xd2,0x28,0xc8,0x30,0xaa,0x68,
0xfd,0x6f,0x2f,0x85,0x1d,0x3d,0x9d,0x83,0xc4,0x30,0x94,0x20,0x8c,0x1c,0x74,0xc1,
0x2e,0x92,0xde,0xc4,0x4e,0x5d,0xcc,0x44,0xb1,0xb2,0x83,0x83,0x83,0xc3,0x31,0x83,
0xfc,0x42,0x83,0x90,0x84,0xad,0x9e,0x56,0x45,0x8f,0x59,0x6,0x43,0xfe,0xec,0x9a,
0xe4,0x14,0x83,0xbc,0x1c,0xd1,0x64,0x3a,0x6d,0xa,0x54,0xc1,0x43,0xf7,0xdd,0x8b,
0x4f,0x7e,0xf0,0x1a,0xfc,0xd3,0xc7,0x3f,0x82,0x9f,0x7f,0xfb,0xdb,0x58,0xf9,0xe7,
0xdb,0x90,0xda,0xdd,0x81,0x9a,0xfe,0x1e,0xa4,0xb,0x1,0xf2,0x95,0x14,0xc2,0x92,
0xf4,0x72,0x8a,0x39,0xaa,0xdf,0x9a,0xc3,0xa0,0xbd,0xc1,0x73,0x41,0x12,0xf5,0xc8,
0x60,0x72,0xc3,0x38,0x7c,0xe5,0xb,0x5f,0xc4,0xc6,0x4d,0xeb,0xf1,0xfb,0x3f,0xfc,
0x16,0x9f,0xfa,0xd4,0xc7,0xf1,0x9c,0x2b,0x9f,0x85,0x7c,0x3e,0x4b,0x21,0xa9,0xe9,
0xbf,0xc,0x22,0x2,0x11,0x83,0xd4,0x69,0x49,0xd7,0xfd,0x42,0x2c,0x47,0x7,0x3,
0xff,0xd4,0xa9,0xbc,0x63,0xc7,0xe,0x7c,0xee,0x73,0x9f,0xc3,0xc2,0x85,0xb,0xf9,
0xdc,0x4f,0xe2,0xe1,0x65,0xf,0x9b,0x9c,0x95,0x6b,0xc9,0x92,0xc5,0x7b,0xcd,0xd9,
0x54,0x49,0xf2,0x1d,0x7c,0x3a,0x5,0xf6,0x9b,0x68,0xe5,0xfc,0xeb,0xf,0xbe,0x87,
0x67,0xbd,0xea,0xe5,0xc8,0x91,0x24,0x6,0xf4,0x34,0xde,0xa7,0x74,0x1f,0x11,0x98,
0xc7,0xe6,0x8e,0xe3,0xa9,0xf6,0x11,0xd1,0x7e,0xdb,0x34,0x8f,0xb0,0xbb,0x33,0x22,
0x8,0x8d,0x92,0xb2,0x98,0x5b,0x9c,0x74,0x7f,0xc2,0xb3,0x5d,0x93,0x12,0x8c,0xb0,
0x36,0xf9,0xd9,0xd9,0xab,0x6e,0xe9,0xb8,0xa4,0x1c,0x1c,0x1c,0x1c,0x8e,0x3e,0x6c,
0x43,0xa4,0x84,0xe6,0x14,0x54,0x6c,0xfb,0xd6,0xb2,0x3a,0x6e,0x25,0x7a,0x25,0x20,
0xf9,0x7d,0x25,0x72,0xb2,0x50,0x98,0x53,0xd3,0x4f,0x49,0x30,0x96,0x91,0x63,0x68,
0xe2,0xf9,0xf6,0x65,0x4b,0xf1,0xa7,0xef,0xfe,0x7,0x7e,0xfc,0xb9,0x4f,0xe3,0xcb,
0xef,0x7a,0x23,0x7e,0xfb,0xdd,0x7f,0x44,0xa6,0x73,0x35,0xb4,0xe9,0x66,0x96,0xbf,
0xd6,0xfc,0x81,0x12,0x9f,0xe0,0x53,0xf0,0x55,0x32,0x14,0x7a,0xea,0x77,0xc8,0x7a,
0x48,0x7a,0x69,0xdb,0x30,0x27,0xd7,0xd4,0x80,0xd7,0xbe,0xf1,0x2f,0xf1,0xa3,0x9f,
0xfe,0x37,0xfe,0x7c,0xcf,0x6d,0x58,0xb6,0xf2,0x1,0xbc,0xf1,0x4d,0xaf,0x47,0xd6,
0x53,0x87,0xb4,0x5c,0x2e,0x24,0xf,0xca,0xc4,0x14,0xe3,0x26,0x85,0xde,0x33,0xb7,
0x91,0x49,0xf2,0x6a,0x38,0x10,0x45,0xbf,0x6c,0xb,0x55,0x16,0x49,0x8,0x3e,0x5,
0xff,0x4d,0xb7,0xdc,0x82,0x57,0xbe,0xf2,0x75,0xb8,0xf8,0xa2,0xcb,0xf0,0xd5,0x2f,
0xff,0x83,0xb9,0x71,0x82,0x52,0xc9,0x84,0xae,0x64,0xbc,0x84,0xb0,0xf6,0x3c,0x4f,
0xc9,0xb2,0x60,0xbc,0xe6,0x5f,0x76,0x19,0xde,0xf6,0xd9,0xcf,0xe1,0xb3,0x3f,0xf8,
0x11,0x66,0x3f,0xfb,0x4a,0x3c,0xa6,0x99,0xf1,0x95,0x5a,0xe6,0x4d,0xce,0xf2,0xca,
0xb,0x33,0xf0,0x87,0x59,0x20,0xef,0x70,0x31,0x34,0xf6,0x15,0x59,0x22,0xa9,0x24,
0x36,0x7,0x1,0x42,0xca,0x7e,0x3d,0x5d,0x43,0x93,0x14,0x37,0x23,0x87,0x18,0xba,
0xcf,0xe7,0x2f,0xbb,0x7a,0x7b,0xf6,0x25,0x75,0x7,0x7,0x7,0x87,0x63,0x4,0x29,
0xde,0x36,0x8a,0x86,0x41,0xdb,0x65,0x6a,0xe,0x81,0x46,0xea,0xa4,0x83,0xa,0xb2,
0xd4,0x53,0x1b,0xca,0x3e,0xca,0x5b,0x37,0xa3,0x7b,0xd5,0x63,0xf8,0xd3,0x4f,0x7e,
0x8c,0x2f,0xbd,0xe3,0x1d,0xf8,0xf9,0xbf,0xfc,0xb,0x1e,0xbd,0xfb,0x1e,0xec,0xde,
0xb8,0x11,0x49,0xa,0x36,0xed,0x6,0xea,0x4b,0xb,0x36,0xd1,0xb7,0x6f,0xd0,0x3a,
0x45,0x9a,0xc,0x77,0xca,0x29,0xa7,0xe0,0xa5,0x2f,0x7d,0x9,0xae,0xbf,0xfe,0x7a,
0xac,0x5d,0xb3,0x16,0x5f,0xfe,0xfb,0xbf,0xc7,0xd3,0x9f,0xfe,0x74,0xeb,0x64,0x36,
0xe8,0xf6,0x43,0xc5,0x7e,0x9d,0xcc,0xa,0xa9,0x24,0x35,0xf0,0xdd,0x7b,0x70,0xd3,
0x8d,0x37,0xd1,0xea,0x78,0xe,0x5e,0xfa,0x92,0x97,0xe1,0xee,0x7b,0xee,0xc6,0xee,
0x3d,0xbb,0x6d,0x1d,0xa7,0x78,0x29,0x1a,0x8f,0xec,0x24,0xd2,0xf1,0xd5,0xf1,0xdc,
0xda,0x8c,0xe9,0x4f,0xbb,0x18,0xef,0xf9,0xc7,0xaf,0xe1,0xb5,0xef,0x7f,0xf,0x26,
0xcc,0x3f,0xd,0x41,0x36,0x83,0x32,0xe3,0x62,0x1d,0xd3,0xc7,0x9,0xfd,0xc5,0x92,
0xd,0x46,0xd2,0x5f,0x8c,0xe8,0xed,0xa2,0xb1,0xe8,0xc4,0x96,0xd0,0xed,0x2b,0x17,
0xab,0x9f,0x1d,0x1c,0x1c,0x1c,0x8e,0xd,0x86,0x2a,0xa0,0xda,0x2,0x53,0xbb,0x21,
0xc8,0x32,0xc8,0x84,0x25,0x34,0x90,0x2d,0xb2,0x85,0x1,0x3c,0x7c,0xeb,0x2d,0xf8,
0xe6,0xa7,0x3e,0x81,0xff,0xf8,0xd2,0xe7,0xf1,0xc3,0xaf,0x7d,0x15,0x4b,0x6f,0xfe,
0x3,0xb2,0xbd,0x5d,0xa8,0xf7,0x4b,0xbc,0xb7,0xc4,0xdf,0xf8,0xc8,0x53,0xd5,0xaf,
0xa8,0x13,0x37,0x49,0x8b,0x23,0xd4,0x4c,0xe5,0xe8,0xbc,0x5c,0x2e,0x61,0xf1,0xe2,
0x45,0xf8,0xfa,0xd7,0xff,0x19,0xb7,0xdf,0x7e,0x1b,0x6e,0xbd,0xf5,0x66,0x7c,0xf3,
0x9b,0xdf,0xc0,0xc5,0x17,0x5f,0x48,0x46,0xa2,0x8d,0x42,0x36,0xd2,0x96,0x9e,0x51,
0xbf,0x81,0xfa,0x11,0xe,0x9d,0x1d,0xd4,0xa9,0xec,0xfb,0x51,0x47,0x73,0x51,0x82,
0x95,0x2,0xff,0x9b,0xdf,0xfc,0x16,0xad,0x84,0x4b,0xf0,0x86,0x37,0xfc,0x15,0x96,
0xdc,0xff,0x20,0xe3,0xe0,0x61,0xa0,0x38,0x60,0xe9,0xd4,0xda,0x76,0x81,0x3a,0x97,
0x13,0x69,0x94,0x3c,0xc6,0x3a,0x97,0xc7,0xcb,0xdf,0xfc,0x66,0x7c,0xe2,0x1b,0x5f,
0xc7,0x5f,0x7c,0xf0,0x83,0xc8,0xcf,0x3e,0x5,0x7b,0x68,0xe5,0x14,0x32,0x59,0x5a,
0x3c,0x64,0x48,0x9a,0x2b,0xda,0xe1,0xee,0x78,0x41,0x8b,0xac,0x6a,0x9d,0xf1,0x98,
0xa,0x94,0x15,0xb6,0x9f,0x83,0x7c,0x77,0x21,0x33,0x4a,0xcc,0xbd,0xae,0xa3,0x1b,
0xd7,0x3e,0xf2,0x10,0xa9,0x9c,0xa6,0x8c,0x73,0x2d,0x3d,0x21,0x4e,0x86,0xfd,0x1c,
0x1c,0x1c,0x8e,0x6,0xa2,0x2d,0x68,0x35,0xb6,0x5f,0xc3,0x42,0x3d,0x5c,0x73,0xcd,
0x35,0xf8,0xf6,0x77,0xbf,0xc7,0xeb,0x24,0x1,0x6a,0xd3,0x1,0xc3,0xfc,0x2b,0x9e,
0x89,0xd9,0xf3,0x4f,0xc7,0x46,0x6a,0xf5,0x6b,0x56,0x3c,0x8a,0xed,0xeb,0xd6,0xc3,
0xa3,0x4c,0xb2,0xdf,0x4a,0x78,0x53,0x4e,0xed,0xdd,0xff,0x40,0x32,0x2b,0x6a,0x68,
0xf2,0xdd,0xa7,0x3c,0x2d,0x45,0x11,0x62,0xd6,0x8c,0xe9,0x14,0xfe,0x17,0xe3,0x9c,
0x73,0xce,0xc1,0xd3,0x9e,0xf6,0x34,0x5b,0x71,0x55,0xf0,0x52,0xd1,0xf7,0x9a,0x9,
0x1d,0xe1,0xc0,0x9,0x66,0x26,0x10,0xf,0x51,0xe6,0x95,0x28,0xed,0xf5,0xcc,0xfb,
0x97,0xdc,0x8f,0x5f,0xfe,0xf2,0x97,0xf8,0xc5,0x2f,0x7e,0x81,0x1d,0xdb,0x77,0xdb,
0x77,0x6a,0xf7,0x7b,0xc1,0x78,0x5a,0x3f,0x42,0xda,0x76,0x85,0x9b,0x3e,0x7b,0x16,
0x2e,0x7a,0xce,0x73,0x70,0xc6,0x5,0x17,0x22,0x53,0x57,0x8b,0x22,0x93,0x16,0xca,
0xdd,0xa4,0xf7,0x26,0x32,0xcc,0x21,0xa6,0x93,0x72,0x45,0x69,0x54,0x3f,0x7,0x6d,
0x8c,0xea,0x73,0x8e,0x2d,0x26,0xd4,0x78,0x78,0xc1,0xe2,0xb3,0x50,0xc3,0x7c,0xd6,
0x3c,0x91,0x14,0xad,0x84,0x41,0xbb,0x45,0xe9,0x9,0x49,0x71,0xdb,0x69,0x2,0x69,
0xcd,0x75,0x7,0x7,0x7,0x87,0xa3,0x5,0x89,0xcb,0xa1,0x22,0x73,0x70,0x14,0x24,
0x2f,0x6a,0xc8,0xa8,0x3a,0x64,0xef,0xb8,0xe5,0x16,0xfc,0xe4,0x5f,0xfe,0x5,0x77,
0xfd,0xdf,0xd,0xe8,0x5e,0xbf,0x16,0xd9,0x72,0x81,0xa1,0x1f,0xa9,0x80,0x82,0x9c,
0x42,0x54,0xfe,0xf1,0x12,0x35,0xd8,0x22,0xe5,0x7b,0x29,0x25,0x81,0x5b,0x41,0x26,
0x9f,0x41,0x4b,0x5b,0x33,0x5e,0xfb,0xea,0x57,0xe3,0xd1,0x65,0x8f,0xe0,0xee,0xbb,
0xef,0xc2,0x57,0xbe,0xf2,0x65,0xbc,0xfa,0xd5,0xaf,0xc2,0xf8,0xf6,0x71,0x24,0x3,
0xed,0xd3,0xa0,0xcd,0x84,0xca,0x24,0x25,0xbd,0x4f,0xf,0x12,0x51,0xc5,0x31,0x1a,
0x1a,0xf4,0xff,0x30,0x7f,0x22,0xa3,0xc1,0x0,0xc,0xc,0xc,0x60,0xe9,0xd2,0x87,
0x71,0x35,0x15,0xbf,0x67,0x3d,0xeb,0xd9,0xb4,0x18,0xfe,0x15,0x5b,0xb7,0x6d,0xe3,
0x3b,0x28,0xe2,0x19,0x47,0xdd,0xc3,0x9f,0x59,0xb0,0x1,0x41,0xd9,0x1c,0x26,0xce,
0x9c,0x81,0x4f,0x7d,0xf5,0x2b,0xf8,0xe4,0x3f,0x7d,0xd,0xb,0x9e,0xf9,0x4c,0x94,
0x5b,0x5a,0xd0,0xc3,0xef,0x45,0x70,0x52,0x32,0xb5,0x84,0x77,0x5a,0x3e,0xff,0x20,
0x9,0x8f,0x44,0x29,0xe1,0x7c,0x18,0x86,0xcc,0x11,0xa3,0xbf,0x58,0x10,0x33,0x9a,
0x45,0xa4,0x78,0xeb,0xd5,0x11,0xb,0x30,0x41,0xea,0x88,0x1e,0x60,0xee,0xad,0xa5,
0xc9,0x96,0x4b,0xd4,0x30,0x62,0x87,0xc6,0xa0,0xe,0xe,0xe,0xe,0x4f,0x8a,0x98,
0xb,0x78,0xec,0x1b,0xe8,0xc7,0xe6,0xad,0x5b,0x8c,0x10,0x34,0xd1,0x2b,0x90,0xe6,
0x9c,0xa,0xd0,0x40,0x6d,0x5e,0x9d,0xc9,0x19,0x69,0xdb,0x41,0x99,0xea,0x6b,0xb4,
0x76,0x91,0x74,0x55,0xf5,0x7,0xa7,0x28,0xd4,0xd3,0xf2,0xed,0x53,0x56,0x3d,0xf7,
0x99,0xcf,0xc6,0xf7,0xbe,0xf9,0x1d,0xfc,0xf1,0xf7,0x37,0x62,0xd9,0x3,0xf,0xe2,
0x6b,0x5f,0xfd,0x32,0xda,0xdb,0x5b,0x91,0xa6,0xb0,0xcd,0x92,0x10,0x74,0xac,0xc9,
0x65,0x6d,0x47,0xb6,0x34,0x9f,0x9f,0xa5,0xc5,0xa0,0xfd,0x9b,0x7,0x47,0x1e,0x55,
0x34,0x7c,0x54,0xab,0x3e,0xec,0xd,0x8a,0x9b,0x16,0xd1,0x1b,0x1a,0xe4,0x66,0x2f,
0xfa,0x1,0x43,0x68,0x7e,0xf9,0x6f,0xff,0xfb,0x7f,0xe0,0x8a,0xe7,0x3c,0x17,0x2f,
0x7c,0xc1,0x8b,0x71,0xcb,0xad,0xb7,0xf1,0x37,0xd5,0xf8,0x6b,0x77,0x36,0xbe,0xd7,
0xec,0x11,0x59,0x9,0x4c,0x59,0x2a,0x57,0x8b,0x17,0xbc,0xfe,0x6f,0xf1,0x81,0xbf,
0xff,0x3a,0x3e,0xfc,0xf,0xdf,0x40,0xc3,0x29,0x73,0xb0,0x85,0xcf,0xd1,0x0,0x20,
0x8f,0x26,0x43,0x6,0x69,0x7b,0x2f,0x78,0xa6,0xe7,0x20,0x11,0x6d,0x2,0x14,0xaf,
0xdb,0x14,0x1c,0x85,0xce,0xe7,0x43,0x45,0xdf,0x40,0x19,0xfd,0x55,0x32,0xd2,0x2a,
0xb2,0x25,0x46,0xc7,0xc8,0x41,0x3c,0x6a,0x20,0xe5,0x75,0xf7,0xf6,0xc2,0x3f,0x8e,
0xbe,0x2e,0x7,0x7,0x87,0x93,0x7,0xd2,0xbe,0x3b,0x3a,0x3a,0xb0,0x6c,0xd9,0xb2,
0xea,0x95,0xfd,0x21,0x9,0x15,0x7,0xa,0x28,0x69,0xd6,0x14,0xd0,0xb3,0x4f,0x39,
0x85,0x5a,0xfa,0x15,0xf8,0xe6,0x37,0xbe,0x81,0x35,0x8f,0x3f,0x8e,0xff,0xf9,0xaf,
0xff,0xc2,0xd5,0x57,0x5f,0x8d,0x39,0x73,0xe7,0xa2,0xa6,0x86,0xca,0xac,0x34,0xf6,
0x23,0x95,0x5b,0x11,0x3b,0xec,0x13,0x42,0xbf,0x82,0x35,0xab,0xd7,0xda,0xfc,0x84,
0xf3,0xce,0x3d,0x1f,0x1f,0xfa,0xd0,0x87,0xf1,0xd8,0x63,0x2b,0xd1,0x5f,0xe8,0xb1,
0x89,0x6f,0x7c,0x2d,0x5,0x7c,0x14,0xb4,0x8e,0x7,0xed,0x13,0x34,0xcf,0x9c,0x8e,
0xcb,0x5e,0xf3,0xa,0x7c,0xfc,0x7b,0xdf,0xc6,0x25,0x2f,0xb9,0xa,0x4d,0x33,0x26,
0xa1,0xab,0x34,0x80,0x62,0xe8,0x53,0xf6,0x33,0x8e,0x51,0xd2,0x46,0x14,0x64,0xc1,
0xec,0xec,0xd0,0x4c,0x69,0x26,0xa8,0xa,0x23,0x7,0x2b,0xa,0x9e,0x95,0x68,0xbe,
0x69,0x42,0x88,0x66,0xe6,0x39,0x38,0x38,0x38,0x1c,0x6d,0x78,0xd4,0xaa,0xd3,0xc,
0x43,0x27,0xd7,0x6a,0x6c,0xbd,0x46,0xe6,0xf8,0xbe,0x6f,0x44,0x20,0x89,0x14,0x50,
0x16,0x35,0x36,0xd6,0xe3,0xad,0x6f,0x7d,0xb,0xee,0xbf,0xff,0x3e,0xdc,0x7a,0xcb,
0xcd,0x46,0x8,0xaf,0x7a,0xe5,0x2b,0xd0,0xdc,0xd4,0x88,0x14,0xef,0xd7,0x6f,0x34,
0x2f,0x40,0xd0,0xf3,0x8e,0x74,0x74,0x8f,0x26,0xa3,0x95,0x4a,0xd4,0xdc,0x29,0xbf,
0x75,0x5c,0xbf,0x7e,0x23,0xde,0xf8,0xa6,0x37,0xe3,0xd2,0x4b,0x9f,0x8e,0x8f,0x7c,
0xf8,0xa3,0xd8,0xb2,0x65,0x1b,0x45,0x27,0xad,0x4,0xa,0x78,0xda,0x15,0x94,0x99,
0x24,0x3,0x8a,0xca,0x1,0x86,0x72,0x2a,0x83,0xfa,0x89,0x53,0xf0,0xa1,0xcf,0x7d,
0x1,0x1f,0xfb,0x87,0x7f,0xc0,0x15,0xaf,0xfd,0x7f,0x18,0x68,0x69,0xc0,0x40,0x36,
0x81,0x1,0xcd,0xbc,0xce,0xd2,0x42,0x50,0x1c,0x15,0xaa,0xef,0x3b,0x11,0x18,0xda,
0x1f,0x12,0x2f,0x31,0xae,0x63,0x48,0x13,0x6b,0x57,0xe7,0x1e,0x92,0x84,0x5d,0x62,
0x1c,0xab,0xf1,0x8c,0x6e,0x49,0xd0,0xb4,0x18,0x40,0x2a,0xad,0x44,0xd8,0x5,0x7,
0x7,0x7,0x87,0xa3,0x8a,0xe1,0x44,0x8b,0x84,0xba,0x96,0x6f,0x68,0x69,0x69,0xc1,
0xf3,0xae,0x7a,0x2e,0x3e,0xfb,0xb9,0x4f,0xdb,0x44,0xb4,0xa5,0xf,0x3f,0x88,0xbf,
0xfb,0xf4,0x27,0x31,0x79,0xf2,0x44,0xe4,0x73,0x19,0x1b,0xae,0xaa,0x19,0x10,0x36,
0x19,0x4d,0x1d,0xd4,0x14,0xb4,0xfb,0x87,0x23,0x81,0x9,0x4b,0x5a,0xf,0xbf,0xfa,
0xd5,0xf5,0x78,0xdd,0xeb,0x5e,0x8f,0xa7,0x3f,0xfd,0x32,0x5c,0x77,0xed,0xaf,0xf8,
0x4d,0x92,0x42,0x55,0xcf,0x96,0xb8,0x8c,0x42,0x22,0x4c,0xa3,0xac,0x15,0xff,0x6a,
0x1a,0x70,0xe9,0xf3,0xae,0xc6,0x3b,0x3f,0xfd,0x59,0x7c,0xec,0x3b,0x5f,0x47,0xdb,
0x82,0x79,0xe8,0x63,0x7a,0xc2,0x4a,0x1a,0x5e,0xa0,0x95,0x58,0xf5,0xbb,0x28,0x28,
0x7e,0xb4,0x35,0x78,0x3e,0x32,0xa0,0x7c,0x17,0x59,0x28,0xdd,0x9a,0xa3,0xd1,0xd5,
0xd7,0x5b,0xfd,0x66,0x6f,0x4a,0x19,0x69,0xe3,0x41,0x5b,0x3a,0x43,0xfd,0x11,0x96,
0x98,0x91,0x93,0x6,0x7,0x7,0x87,0xb1,0x8,0xc9,0x1a,0x6,0x8a,0x4d,0x1b,0x71,
0xb4,0x6e,0xed,0x3a,0xfc,0xe7,0x77,0xff,0x1d,0x6f,0x7e,0xd3,0x1b,0x71,0xce,0x39,
0x67,0xdb,0x52,0x16,0x5a,0xe6,0x22,0x26,0x85,0xa1,0x61,0xf0,0xc7,0x7,0x84,0x3,
0x11,0x49,0xb7,0x21,0x7f,0x14,0x88,0x12,0xf6,0xea,0x7c,0xb5,0xc0,0x9f,0x75,0xec,
0xde,0x8d,0xeb,0xae,0xbb,0x1e,0x8b,0xce,0x38,0x3,0xaf,0x7f,0xc3,0x5f,0xe2,0xe6,
0x5b,0x6e,0x45,0x57,0x77,0xf,0x92,0xa9,0x14,0xbf,0x57,0x47,0x73,0xf4,0x24,0xfb,
0x9f,0x3f,0xa8,0x69,0x19,0x8f,0xf3,0x9f,0xf1,0x6c,0x7c,0xf5,0x3b,0xff,0x81,0x57,
0xbe,0xf9,0xad,0x98,0x74,0xda,0x2,0xf4,0x30,0xbe,0x3d,0x94,0xa5,0x9a,0xa8,0xa6,
0x4e,0xe5,0xac,0xaf,0x8e,0x65,0xf5,0x95,0x50,0xd0,0x32,0xa8,0x83,0x39,0x56,0xc4,
0x8f,0xc,0x8a,0xc7,0x70,0x21,0x42,0x94,0x3e,0x5,0x9d,0xc7,0xd7,0xe2,0x3b,0x94,
0x6e,0xad,0xf3,0x14,0xa0,0xab,0xab,0x7,0x3b,0x76,0xee,0xc2,0xb6,0x6d,0xdb,0xad,
0x3f,0x65,0xeb,0xae,0x9d,0x36,0xb2,0x2a,0x7e,0x9c,0x91,0x83,0x96,0x78,0xd2,0x8f,
0xd4,0xf1,0x52,0x49,0x66,0xa2,0x87,0x44,0x4f,0x72,0x70,0x70,0x70,0x38,0x26,0x90,
0x88,0x8c,0x64,0x6e,0x5,0xa5,0x62,0xd1,0xfa,0xc,0x34,0x8b,0x38,0x4d,0x36,0x50,
0x47,0x72,0x2e,0x9d,0x56,0x9f,0xf4,0xa0,0xab,0x69,0x68,0x10,0x69,0xc,0x17,0xf6,
0xea,0xbc,0x7b,0x43,0xdc,0xb9,0x2c,0x87,0xb9,0x5f,0xf1,0x11,0x24,0x2,0xf4,0xf6,
0x17,0x51,0xf2,0x81,0xae,0x9e,0x1,0xbc,0xef,0xfd,0x1f,0xc2,0x45,0x17,0x5f,0x86,
0xbf,0x7e,0xe3,0x5b,0xb0,0x73,0x67,0x17,0xc9,0x28,0x7,0xbf,0xac,0x4e,0x6b,0x92,
0x93,0x46,0xd,0x5,0x1a,0x52,0xa,0x4,0x99,0x34,0x6a,0x27,0x4f,0xa2,0x95,0xf0,
0x49,0xbc,0xed,0x5b,0xdf,0xc4,0x55,0xef,0x7a,0x27,0xfa,0xeb,0xeb,0xd1,0xef,0xf1,
0x1d,0x69,0xf,0x69,0x92,0x41,0x16,0x19,0xfe,0x8e,0x2,0x98,0x71,0xe,0xf8,0xce,
0x90,0x44,0xa1,0xe1,0xa8,0x5a,0x63,0x55,0x41,0xd2,0xf6,0x88,0xc9,0xa1,0x3a,0xb4,
0x77,0x9f,0x30,0x4,0xb2,0x4,0x64,0xa5,0xc8,0x68,0xd1,0x8,0xaf,0x98,0x4e,0x7b,
0x7a,0xfb,0xb0,0x73,0xd7,0x6e,0x12,0xc2,0x1e,0x1e,0x3b,0xd1,0xdb,0x57,0x84,0x4f,
0xeb,0x27,0x91,0xcc,0x22,0x55,0xf6,0x30,0x90,0xc9,0xa0,0x97,0xc4,0x27,0x6b,0x47,
0x31,0x34,0x72,0x10,0x73,0xea,0x53,0xc9,0xf,0x6d,0x65,0x40,0xda,0x1b,0xba,0xec,
0xe0,0xe0,0xe0,0x30,0xfa,0x51,0xed,0x5c,0xb6,0xc5,0x21,0x78,0x2c,0x16,0xca,0x58,
0xba,0x74,0x29,0x3e,0xf6,0xb1,0x8f,0x61,0xce,0x9c,0x39,0xf8,0xfe,0xf7,0xbf,0x6f,
0xeb,0x1f,0x25,0x42,0x1f,0xc9,0xa0,0x8,0x8f,0x4,0xe2,0x51,0xc0,0x6a,0x74,0x54,
0x85,0xc4,0x90,0xca,0x37,0xe2,0x94,0x33,0xcf,0xc1,0x2b,0xdf,0xf3,0x1e,0x7c,0xe8,
0xdb,0xdf,0x44,0xe3,0xf9,0x67,0x21,0x97,0xcb,0x45,0x7d,0x1e,0x23,0x46,0x56,0x46,
0x44,0xa8,0xa0,0x79,0x24,0x9a,0xa0,0x27,0xeb,0xa0,0xbf,0xbf,0x80,0x8e,0x8e,0x3d,
0xb6,0xe8,0x5f,0x4f,0x4f,0x1f,0xca,0x34,0x0,0x86,0x5b,0x81,0x55,0x9f,0x45,0x28,
0xda,0xf4,0x28,0x86,0xa5,0xac,0xcc,0x4c,0x11,0x29,0x74,0xf5,0xf4,0xd8,0x42,0x4c,
0xea,0x90,0xde,0xf7,0xa7,0xe,0xe,0xe,0xe,0xa3,0x7,0xb2,0x42,0xca,0xa5,0x12,
0x2d,0x80,0xb2,0xad,0x7c,0xaa,0x20,0x81,0xb9,0x64,0xc9,0x83,0xb8,0xf2,0xca,0xe7,
0xe1,0xf9,0x2f,0x78,0x1,0xbe,0xfb,0xdd,0xef,0x9a,0xa0,0x14,0xa2,0xfe,0xa,0xea,
0xd7,0x34,0x55,0x7c,0x6a,0xfc,0x5a,0x93,0xa9,0x8f,0x26,0xcb,0xf4,0xb,0xce,0xc3,
0x27,0x7f,0xfa,0x3,0xbc,0xf9,0xb3,0x9f,0xc6,0xa2,0x4b,0x9e,0x4e,0xd9,0x48,0x6b,
0x26,0xa4,0xa6,0x9d,0xd2,0x48,0xa5,0x23,0xb4,0x0,0x9e,0x22,0xe4,0x16,0x52,0x90,
0x6b,0x2c,0xe,0x12,0xe5,0x3a,0x2a,0x9d,0x3b,0x77,0x76,0x18,0x19,0xec,0xda,0xb9,
0x1b,0x5d,0x9d,0x3d,0xb4,0xca,0xa8,0xf0,0x57,0x9,0xd2,0xcc,0x89,0x61,0xa0,0x2d,
0x49,0x95,0x9e,0x12,0xf3,0x2c,0x86,0x91,0x83,0xec,0xb6,0xa4,0x97,0xa2,0xa9,0xd5,
0xc7,0x73,0xcd,0xd1,0x73,0xd4,0xe0,0xe0,0xe0,0x30,0x7a,0x21,0x4d,0x38,0x16,0xe0,
0x7d,0x7d,0xfd,0xf8,0xf6,0xb7,0xbf,0x83,0x2b,0xae,0x78,0x16,0xae,0xba,0xea,0xf9,
0x58,0xb6,0x6c,0x79,0xf5,0xae,0x7d,0x11,0x26,0x53,0xe8,0xe7,0x31,0x3b,0x71,0x22,
0x9e,0xf9,0x97,0x7f,0x81,0xf,0x7e,0xe7,0x9b,0xf8,0xab,0xbf,0xfb,0x18,0x6,0xd2,
0x14,0xba,0x89,0xd0,0x76,0x9b,0xb3,0xf9,0x8,0x27,0x5a,0x3c,0x8a,0x10,0x44,0x10,
0xb4,0x6a,0x8a,0x85,0x12,0x9,0xa0,0x1b,0xdb,0xb7,0xef,0xc4,0x76,0x23,0x84,0xe,
0x92,0xa2,0x4f,0x2b,0x29,0x26,0x82,0xfd,0xc3,0xf0,0x88,0x49,0x32,0x3e,0xa,0x11,
0x39,0x30,0xb1,0x25,0x52,0x51,0x91,0x5f,0x68,0x5c,0xb1,0x5d,0x38,0xf8,0x73,0x1c,
0x1c,0x1c,0x1c,0x8e,0x1b,0x24,0x8b,0x9f,0x28,0x68,0xd7,0x4a,0x79,0x49,0x2,0xca,
0xb0,0xa0,0xda,0xc1,0xac,0xb5,0x8c,0x1e,0x7d,0x6c,0x25,0xbe,0xfc,0x95,0xaf,0x62,
0xe1,0xe2,0x33,0xf1,0xe9,0xcf,0x7e,0xe,0xf,0x8b,0x14,0x24,0x30,0xf9,0x5d,0x8a,
0x37,0x45,0xdb,0x70,0xf2,0x5e,0xa,0xbb,0x30,0xe5,0xa1,0x6d,0xe6,0x29,0x78,0xc5,
0x9b,0xdf,0x8a,0xcf,0x7c,0xe3,0x5f,0x71,0xe9,0xd5,0x2f,0x46,0x7e,0xea,0x54,0x14,
0x93,0x69,0xd4,0x99,0xb5,0xa0,0x9f,0x26,0x50,0xa6,0x55,0x51,0x88,0x57,0xe0,0x78,
0xca,0xd0,0x7b,0xf7,0xd,0xf6,0x57,0x8d,0x4f,0xd4,0x99,0x1c,0x9f,0xef,0xbd,0x4b,
0x9d,0xe7,0xd2,0xec,0x8b,0xb4,0x4,0xf6,0xec,0xe9,0xc6,0x96,0x2d,0xdb,0xd1,0xd1,
0xd1,0x49,0xf2,0x2b,0xd8,0xf0,0x5a,0xad,0xef,0x94,0x4e,0x67,0x78,0x27,0xd3,0x78,
0x50,0xab,0xe6,0xe0,0xd7,0x93,0xcc,0x83,0xfe,0x62,0xb1,0x6a,0x1c,0x68,0xd6,0x3a,
0x91,0xe1,0x79,0x89,0x16,0xc3,0x9e,0x52,0x91,0xb7,0xf0,0x4f,0xdd,0xeb,0x76,0x83,
0x83,0x83,0x83,0xc3,0xf1,0x84,0x44,0xd2,0x93,0x7,0x9b,0xe7,0x4c,0x2d,0x5e,0x81,
0x72,0x11,0x65,0xa,0xce,0x4a,0x22,0xc5,0xf3,0x24,0x96,0xad,0x58,0x89,0xab,0x5e,
0xf8,0x62,0x5c,0x76,0xc5,0x73,0xf0,0x85,0x2f,0xff,0x3,0xfa,0xb,0x9a,0xbb,0x40,
0x89,0x5e,0x49,0x51,0x88,0x6a,0xf4,0x90,0x87,0xba,0xda,0x1a,0x5b,0x5e,0xbb,0x40,
0xb9,0x37,0xf3,0xec,0xb3,0xf1,0xb1,0xaf,0x7f,0x3,0x6f,0xff,0xf2,0xd7,0x70,0xd6,
0xb,0x5e,0x82,0x3e,0xaf,0x86,0xb2,0x32,0x87,0x5c,0x90,0x81,0x47,0x73,0xa1,0x18,
0xaa,0x33,0x39,0x8d,0x24,0x8f,0xe9,0x20,0x89,0x9c,0x86,0xb0,0x1e,0x11,0x28,0x5b,
0xf,0xe8,0x50,0x56,0x88,0x20,0x62,0x90,0x6,0xef,0x6b,0xde,0x87,0xe7,0xa1,0x50,
0x2c,0xd9,0xa8,0xa2,0xcd,0x5b,0xb7,0x62,0xc7,0xae,0xe,0xec,0x26,0x31,0x14,0x4b,
0x54,0xe4,0x53,0x5a,0xf2,0x5c,0x53,0xf,0xa2,0xd9,0xdd,0xf2,0x0,0xd9,0xfe,0xc,
0x52,0xf0,0x45,0xe,0x16,0xcd,0x58,0x96,0xf,0xd,0x7,0x42,0xef,0x2c,0x86,0x9,
0xf4,0xf3,0x68,0xcb,0x78,0x6b,0x7d,0xa7,0xf8,0xb,0xfd,0x15,0xb4,0xbe,0x86,0x83,
0x83,0x83,0xc3,0x68,0x40,0xd5,0x8f,0x2e,0xf7,0x4a,0x67,0x67,0x17,0x7e,0xf0,0x83,
0x1f,0xe2,0xea,0x17,0x5d,0x8d,0x4b,0x2e,0xb9,0x4,0x77,0xdd,0x75,0x97,0x75,0xae,
0xaa,0xc3,0x38,0x47,0x41,0x9b,0xa1,0x55,0x61,0xd6,0x82,0x96,0xbb,0xe0,0x4f,0x77,
0xd7,0xd4,0xe1,0x82,0x97,0xbd,0x1c,0xef,0xfb,0xea,0x3f,0xe0,0x6f,0x3f,0xf5,0x69,
0x24,0xdb,0xc7,0x23,0x91,0xcd,0xd9,0x48,0x9f,0xe3,0x3,0x49,0xee,0xbd,0x41,0x6e,
0x20,0x75,0x24,0xab,0xdf,0x40,0x5b,0x89,0xaa,0xef,0x40,0x43,0x4d,0x37,0x6f,0xde,
0x8a,0xdd,0xbb,0x3b,0xad,0x73,0x59,0x93,0xf4,0x14,0x8e,0x15,0xe4,0x82,0x53,0xbf,
0x8c,0xd1,0x7,0xcf,0x8d,0x1c,0x94,0x61,0x8a,0xde,0x50,0x7f,0x93,0x83,0x83,0x83,
0xc3,0x48,0x83,0xdc,0x2a,0xa,0xda,0x8f,0xd9,0xf7,0x3,0x74,0x77,0xf7,0xe0,0xc7,
0x3f,0xfe,0x9,0xce,0x3d,0xe7,0x3c,0x7c,0xe0,0xfd,0x1f,0x34,0x52,0x10,0x21,0xd8,
0x7e,0xcb,0x3c,0xa,0x5a,0x50,0x54,0x96,0x45,0x39,0x9d,0x45,0x7f,0x3a,0x83,0x67,
0xff,0xbf,0x57,0xe3,0x2b,0x3f,0xfa,0x1f,0x5c,0xf5,0x86,0xbf,0x46,0xeb,0xac,0x39,
0xe8,0xa1,0x20,0xc,0x73,0x39,0x5b,0x8d,0x54,0x2,0xf2,0x58,0x75,0x34,0x4b,0x9,
0x37,0xf2,0xb1,0xe7,0xab,0x23,0x19,0x96,0x6,0xb9,0x8b,0xe4,0xe,0xdb,0xb5,0x6b,
0x37,0xb6,0x6e,0xdd,0x8e,0x3d,0x7b,0xba,0x6c,0x64,0x91,0x48,0xa2,0xa2,0x31,0xb1,
0x24,0xc0,0x68,0xfa,0x5c,0x34,0xda,0xea,0x68,0x41,0x71,0xd9,0xeb,0xbe,0x8a,0xe2,
0xd6,0xdb,0xdb,0x6b,0xee,0xb9,0x50,0x5d,0xc,0xf6,0xd,0x33,0x51,0x56,0x83,0x48,
0xc2,0xc1,0xc1,0xc1,0x61,0xa4,0x22,0x56,0x60,0x1f,0x7b,0xf4,0x31,0xbc,0xeb,0x5d,
0xef,0xa1,0x95,0xf0,0x34,0xbc,0x9f,0xa4,0xd0,0xdb,0xdb,0x4f,0xe1,0x66,0x5f,0x19,
0xcc,0x1b,0x52,0xd,0xfd,0x99,0xc,0x26,0x2e,0x5c,0x84,0x37,0x5c,0x73,0xd,0xfe,
0xee,0x3f,0xff,0x13,0x17,0xbd,0xf6,0xb5,0x28,0x68,0x48,0xa7,0xc9,0x69,0x8a,0x5c,
0xca,0x47,0xd,0x5d,0x8d,0xfb,0x20,0x8e,0x15,0xec,0x5d,0x24,0x2d,0xf9,0x80,0xe2,
0x8e,0xe4,0xdd,0x1d,0x7b,0xb0,0x75,0xcb,0x36,0x6c,0xdc,0xb0,0x9,0x7d,0x7d,0x3,
0xf6,0xdd,0x3e,0x81,0x94,0x70,0x60,0x38,0x3a,0x50,0x5c,0x2c,0x3e,0x43,0xce,0xcb,
0x7e,0xd9,0xe2,0x69,0xc3,0x74,0xf5,0x85,0xcc,0xb2,0xde,0xfe,0x1,0x9b,0x1d,0xa7,
0xf8,0x1c,0xf1,0x3e,0xa5,0xe,0xe,0xe,0xe,0x4f,0x5,0x94,0x3f,0x92,0x3e,0xa,
0xd2,0x60,0xfd,0x40,0xfd,0x5,0xfa,0x94,0x34,0x6d,0xfa,0x8e,0x3b,0xef,0xb2,0x19,
0xcc,0x97,0x5c,0xfa,0x34,0xfc,0xe8,0x47,0xff,0x85,0xad,0xdb,0xb6,0xdb,0xd2,0xf,
0xda,0xda,0xd2,0x4f,0x68,0x6e,0x82,0x1e,0xa0,0x15,0x4d,0x29,0xdc,0x6a,0xeb,0x30,
0xe7,0xac,0xb3,0x6c,0x69,0x8b,0xf,0x7e,0xe9,0x4b,0x98,0x73,0xc1,0x85,0x48,0xb7,
0xb6,0xa1,0x3f,0xe9,0x59,0xe7,0xad,0x4,0xa0,0xdc,0xfd,0xb6,0x77,0x2,0x5f,0xa1,
0x19,0xcc,0x47,0x82,0x98,0x8c,0x86,0x6a,0xe4,0x8a,0xb7,0x48,0x4b,0x6e,0x21,0xb9,
0x8a,0xe4,0x22,0xda,0xba,0x75,0x7,0x76,0x75,0x74,0xf2,0x73,0xc9,0xfa,0xe,0x2a,
0xb4,0x6,0xd2,0xe9,0x1c,0x85,0xb3,0xc7,0x74,0x53,0x6,0xf,0x9,0x47,0x4,0x45,
0x61,0x30,0xf0,0xbf,0xf8,0xa8,0x2e,0x67,0xdb,0x8b,0xa6,0x82,0x6c,0xc6,0xc3,0xb8,
0x71,0xad,0xa8,0x6f,0xa8,0xb3,0x78,0x97,0x98,0x2f,0xb6,0xff,0x84,0xc8,0x92,0x77,
0xb2,0x14,0x12,0x18,0x28,0xf9,0x28,0x33,0xb3,0xf4,0x85,0x98,0xf4,0xe8,0xf1,0x93,
0x83,0x83,0x83,0xc3,0xa1,0x41,0xb3,0x79,0x63,0xa5,0x59,0xab,0x43,0x97,0xa8,0xe1,
0x6b,0xe5,0x86,0x1f,0xfd,0xcf,0x4f,0x70,0xee,0x5,0x17,0xe1,0x35,0x7f,0xf1,0x6,
0xfc,0xee,0xf,0x37,0xa3,0xa2,0xcd,0x7d,0x32,0x29,0x94,0x42,0x1f,0x69,0x9e,0x57,
0x7c,0x12,0x3,0x8d,0xa,0xd,0xe9,0xf,0x32,0x79,0x9c,0x75,0xc5,0x95,0x78,0xd7,
0xdf,0x7f,0x19,0xaf,0xfe,0xc8,0x47,0x30,0x61,0xd1,0x42,0x74,0x53,0xb6,0x69,0x5b,
0xce,0x4,0x2d,0x8f,0x7c,0x85,0x6f,0xd1,0x7e,0x10,0x64,0x3,0x2d,0x34,0x67,0xc2,
0xd0,0x14,0xe3,0x23,0x93,0x7a,0xb1,0x3b,0x4a,0x47,0xcd,0x1b,0xf0,0x7d,0xdf,0x48,
0x60,0xeb,0xb6,0x5d,0xd8,0xbe,0x63,0x37,0x3a,0x76,0x77,0xa3,0xaf,0xbf,0x84,0xd0,
0x5c,0x43,0x5a,0x96,0x43,0xfd,0xc,0x69,0x24,0x18,0x6c,0x5d,0x72,0xfd,0x7c,0xff,
0xb0,0xaf,0x84,0xaf,0x86,0x43,0xc7,0xd0,0xc7,0x68,0xee,0x87,0xfa,0xaa,0x53,0xc9,
0x10,0xe3,0xda,0x9a,0x30,0x61,0x42,0x2b,0x1a,0x1a,0x6a,0xe0,0x51,0xe0,0x87,0xbc,
0x26,0xe7,0x55,0x81,0xe4,0xa1,0x9e,0xe7,0x94,0xc8,0x55,0xbf,0x4b,0xd0,0x9c,0x28,
0x14,0xa,0x83,0x89,0x73,0x70,0x70,0x70,0x38,0x31,0xa0,0xc,0x92,0xf0,0x64,0x78,
0x7c,0xd5,0x6a,0x7c,0xf9,0xcb,0x5f,0xc1,0xc5,0x17,0x5f,0x82,0xb7,0xbd,0xed,0x6d,
0xd8,0xbe,0x7d,0xfb,0xa0,0x9c,0x4a,0x50,0xc0,0x27,0x51,0xe6,0xdd,0xd4,0x74,0x4d,
0xd8,0x66,0x31,0x79,0xf2,0x1c,0x3c,0xfb,0x8d,0x7f,0x83,0xbf,0xf9,0xcc,0x67,0xf1,
0xb4,0x97,0xbf,0x1c,0x7d,0xd9,0x2c,0x7a,0x24,0x78,0x9,0x69,0xf2,0x47,0xb7,0x4f,
0x55,0xef,0xdc,0x37,0x68,0x25,0x57,0xb9,0x86,0x3a,0x3b,0xbb,0xb1,0x69,0xd3,0x16,
0xec,0xd8,0xb1,0xb,0xfd,0xfd,0x3,0xf6,0x5e,0x5,0x8b,0xf7,0xf1,0x94,0xb1,0x43,
0x46,0x43,0x69,0x4b,0xd4,0xda,0xba,0x3c,0x9a,0x9a,0x1b,0xd0,0xde,0xde,0x8e,0x4c,
0x26,0x63,0x71,0x89,0xdd,0x4a,0x31,0xd4,0x89,0xaf,0x2e,0x69,0xe5,0x97,0x52,0xa5,
0x9c,0xb3,0x1b,0xf7,0x9a,0x42,0xe,0xe,0xe,0xe,0xc7,0x7,0x92,0x3d,0xf9,0x7c,
0xde,0x4,0x68,0x61,0xa0,0x80,0xc7,0x1f,0x5f,0x8d,0xf7,0xbf,0xff,0x3,0xb8,0xe8,
0xa2,0x8b,0xf1,0x4f,0xff,0xf8,0xcf,0x58,0xbb,0x66,0xed,0x60,0xe7,0xb2,0x8e,0x92,
0x53,0x9a,0x77,0x90,0x2f,0x53,0x43,0xf7,0xf2,0x48,0xb7,0x4f,0xc0,0xb,0xde,0xf9,
0x4e,0xbc,0xea,0xb3,0x9f,0xc2,0x2c,0xfe,0x6,0x2d,0x6d,0xe8,0x4b,0x7a,0x28,0x25,
0xd2,0xa8,0xa4,0xa2,0x99,0xbf,0xc3,0x9,0xc2,0xc3,0x81,0xde,0xa9,0x20,0x77,0x8b,
0x10,0x4,0x22,0x9b,0x8a,0xb9,0x8b,0xba,0xbb,0x7b,0x6d,0x39,0x6f,0x75,0x28,0xeb,
0x5c,0xee,0xa3,0xe8,0x36,0x75,0x8c,0x47,0x9d,0xe3,0x7b,0xb7,0x27,0x3d,0xf6,0xd0,
0xfb,0x14,0x4f,0x26,0x99,0x71,0xe,0x90,0xcb,0x65,0x30,0x69,0xd2,0x4,0x34,0x37,
0x37,0x32,0x9f,0xa3,0x65,0x3f,0x94,0x1f,0x82,0x8e,0x71,0xde,0xa,0xea,0x7b,0x56,
0xd7,0xb7,0xbe,0x1d,0xbc,0xaa,0xad,0xef,0x86,0xde,0xe4,0xe0,0xe0,0xe0,0x70,0xbc,
0x20,0x37,0xcc,0x1f,0xff,0xf8,0x47,0xbc,0xf0,0x85,0x2f,0xc2,0x15,0x57,0x3c,0x1b,
0xdf,0xfe,0xf6,0xbf,0x51,0x1e,0xa9,0x6f,0x20,0x52,0x5c,0x63,0x88,0x40,0x24,0xf8,
0xfc,0x74,0x16,0xd3,0x2f,0x7d,0x6,0x5e,0xf5,0xc1,0xf,0xe1,0xaf,0x3e,0xf2,0x51,
0x4c,0x3a,0xeb,0x4c,0xec,0x4c,0x24,0x6d,0xf7,0x34,0x2d,0x74,0xa7,0xbe,0x87,0x4c,
0x10,0x22,0xa7,0xb5,0xe2,0x8e,0x10,0x22,0x85,0xa1,0x71,0xe8,0xea,0xea,0xc2,0x9e,
0xdd,0x9d,0xb6,0x4c,0xc5,0xce,0x1d,0x1d,0x66,0x29,0xd8,0x12,0x16,0xc3,0x86,0xea,
0x8f,0x8e,0x23,0xca,0xe5,0xb2,0x59,0x6,0x6d,0xad,0xad,0x98,0x30,0x61,0x3c,0x5a,
0x5a,0x9a,0x79,0x55,0x6c,0xa5,0xf0,0xc4,0x11,0xd2,0x8a,0xb3,0xf1,0x1d,0xc6,0x6,
0xea,0xf8,0xe8,0x2f,0x97,0x44,0xcb,0x48,0xf2,0xf7,0x47,0xda,0x31,0x73,0xb2,0x40,
0x65,0x1f,0x23,0x3e,0x8d,0xeb,0x83,0x65,0xa1,0x2e,0xb2,0x52,0xd9,0x77,0xf1,0x45,
0x17,0x5c,0x38,0x9,0x43,0xb4,0x6,0x50,0xf4,0x31,0xbe,0x18,0x8b,0x2b,0xcd,0x70,
0x96,0xc6,0xfa,0xf2,0x97,0xbf,0x1c,0xf,0x3c,0xf8,0x10,0xba,0xba,0xbb,0x91,0x4d,
0x67,0x34,0x70,0x13,0xd2,0xb7,0x13,0x14,0xf2,0x5a,0x29,0xd4,0xf,0x13,0x68,0x98,
0x30,0x5,0x67,0x3d,0xe3,0xd9,0x78,0xeb,0xa7,0x3e,0x83,0x2b,0xde,0xf4,0x26,0x64,
0xa7,0x4e,0x87,0x9f,0xab,0x85,0x5f,0xa,0x91,0x26,0xf,0x48,0x76,0x69,0xc1,0xbc,
0x28,0xd0,0xc2,0xb0,0x17,0xe,0xbe,0x69,0x48,0x88,0x62,0x22,0xc4,0x56,0x81,0xc5,
0x8a,0xff,0x59,0xff,0x37,0x5b,0xad,0xe4,0xa2,0x16,0xaa,0x2b,0x14,0xcb,0xe8,0xe9,
0xe9,0x27,0x19,0xec,0xc6,0x96,0xad,0xdb,0xd1,0xdb,0x37,0xc0,0xeb,0x51,0x47,0xb9,
0xe2,0x1e,0x5b,0x5,0xba,0x7f,0xff,0x10,0x9,0x81,0xa3,0xc,0x8b,0x28,0xff,0x49,
0x90,0x93,0x28,0xa3,0xf8,0x7,0xb6,0xb4,0x79,0x3e,0x9f,0xc5,0xf8,0xf6,0x36,0xb4,
0x33,0x78,0x5e,0x64,0xb9,0x68,0x8f,0xee,0x27,0x83,0x52,0x2f,0xd9,0xa5,0x21,0xb5,
0x51,0x3e,0x54,0xe7,0x39,0xe8,0x43,0x81,0x19,0xa6,0x63,0xd4,0xdb,0xaf,0xcb,0xc7,
0x20,0x51,0x63,0xc,0x36,0x4,0xb9,0x7a,0xae,0x93,0x41,0x52,0x55,0xd6,0x59,0x50,
0x5,0x51,0x23,0x20,0x41,0x78,0x35,0x8,0x98,0xb7,0x2e,0xb8,0x70,0x32,0x86,0x4a,
0x28,0x21,0xc5,0x23,0xdb,0x88,0x4,0xaa,0xc6,0xf7,0xf3,0x63,0xa4,0x60,0x31,0x68,
0xdf,0x4,0x6b,0x2f,0xb4,0xc,0xe4,0xd6,0x10,0xe4,0xf5,0xf6,0x32,0x79,0x5a,0x3,
0x59,0x24,0xf2,0x4d,0x78,0xc5,0x9b,0xdf,0x8e,0x77,0x7f,0xf1,0x1f,0x70,0xc1,0xcb,
0x5e,0x83,0xd4,0xc4,0x19,0xf0,0xcb,0x72,0x89,0x64,0x78,0x17,0x85,0xa0,0x5c,0x25,
0x6c,0x69,0x91,0xef,0x23,0x3a,0xd3,0xde,0xce,0xea,0x84,0xb6,0x86,0xb9,0x7f,0x18,
0x2,0x9,0x57,0x41,0xa3,0xa3,0xd4,0xff,0x9a,0xe0,0x6f,0xb4,0xf1,0xd9,0x96,0xad,
0x5b,0xb1,0x6d,0xfb,0xe,0xec,0xde,0xdd,0x8d,0x6e,0x92,0x43,0xa9,0x2c,0x57,0x8d,
0xfa,0x30,0x3c,0x4b,0x83,0xfe,0x12,0x49,0xb5,0x71,0x42,0x96,0x45,0x35,0x2d,0x7,
0x84,0xa3,0xc,0x3d,0x52,0xf3,0x10,0x2c,0x33,0xf9,0x4f,0x29,0x6f,0x6b,0x55,0x7,
0x73,0x1b,0x9a,0x1a,0x6b,0x69,0x35,0xe8,0x8a,0xcf,0xbc,0x89,0x5e,0x3e,0xd4,0xea,
0x39,0x18,0xac,0x1c,0xf8,0x2b,0x11,0x9a,0xe4,0x15,0x99,0x80,0xd9,0x44,0x94,0x4a,
0x1,0xae,0x5b,0xfe,0x20,0x36,0x15,0x4a,0xb4,0x1c,0x98,0x99,0x7a,0xe7,0x93,0x3f,
0xef,0xa4,0x47,0x25,0xc1,0x8a,0xcc,0xfc,0x2a,0xab,0x82,0x4,0x25,0x6c,0xb8,0xfd,
0x6e,0x7c,0xff,0x4b,0x9f,0xb3,0x7a,0x22,0xa8,0x50,0x5e,0xf0,0x82,0x17,0xe0,0x87,
0xdf,0xff,0x41,0x74,0x81,0xe8,0xef,0xdf,0xbb,0xdb,0x92,0x83,0xc3,0xc9,0x86,0x20,
0xc,0xb0,0x73,0xc7,0xe,0xbc,0xe8,0x45,0x2f,0xc2,0xfa,0xd,0x9b,0xa3,0x8b,0x6c,
0x2f,0xb1,0x6e,0x9b,0xf3,0x2b,0xe6,0x1a,0xd2,0x72,0x3e,0xe5,0x4c,0x16,0x73,0x16,
0x2d,0xc2,0x19,0x17,0x5f,0x8e,0x89,0x33,0x66,0xc2,0xa3,0x56,0x6c,0xdd,0xa5,0xda,
0x3f,0x81,0x32,0x2a,0x65,0x4a,0xec,0xfe,0xd0,0x35,0x9,0x71,0x1e,0x12,0x21,0x5a,
0x5b,0x5b,0x90,0xa5,0xb0,0x3c,0x0,0x15,0xd9,0x25,0x51,0x43,0x95,0xab,0xaa,0xbf,
0x5f,0xc2,0xdf,0x87,0xcf,0x73,0x9f,0x56,0x81,0x8,0x23,0x12,0xaa,0x6c,0xdb,0x43,
0x14,0xef,0x43,0x11,0xb4,0xc7,0x1a,0x61,0x50,0xb6,0x2e,0x0,0xed,0x9d,0xad,0x10,
0x59,0x2e,0xbe,0xc5,0x4d,0xfd,0xd,0x31,0xd9,0x1d,0xe,0xfc,0x14,0x2d,0x2d,0x6a,
0xbb,0xa9,0xfe,0x2,0x5e,0x75,0xf9,0xd3,0xd1,0x2a,0x9a,0x10,0x39,0x94,0x49,0x42,
0xbf,0x78,0xf0,0x5e,0x23,0x7,0x4f,0x86,0x9c,0x23,0x87,0x43,0x42,0x4c,0xe,0x25,
0xe5,0x55,0x58,0xc6,0xc6,0x3b,0xef,0xc1,0xf7,0xbe,0xf8,0xd9,0x6a,0x95,0x8b,0x60,
0x23,0x15,0x58,0xd9,0x6,0xfa,0x7,0xac,0x33,0xc8,0xc1,0xe1,0x64,0x46,0x24,0x5c,
0x2b,0xb6,0x40,0x9c,0x34,0x7e,0x89,0x31,0xd,0x29,0xd5,0xb0,0xd5,0x84,0x3a,0x6f,
0x13,0xbc,0x9e,0xaf,0x45,0xfb,0xcc,0x53,0x70,0xd5,0xab,0x5e,0x85,0xfa,0xf6,0x76,
0xf4,0x86,0x29,0x84,0x49,0xca,0x25,0x8d,0xbc,0x91,0xe0,0x63,0xbb,0x93,0xf2,0xff,
0x44,0xe4,0x60,0xf6,0x3a,0x5f,0xd5,0xd2,0xd2,0x44,0x72,0x20,0x11,0xe8,0x45,0xd6,
0x30,0x29,0xec,0x25,0xed,0x2b,0x69,0x1b,0x99,0xa3,0xa0,0xfe,0x56,0xe1,0x98,0xb9,
0x81,0x8e,0x0,0x31,0x49,0xe9,0x28,0x42,0x50,0xc8,0x65,0x53,0xa8,0xaf,0xaf,0xb7,
0x7e,0x9a,0xb8,0x83,0x5c,0x69,0x3e,0x12,0xc4,0xe4,0x90,0x2e,0x14,0xf1,0xc2,0xf3,
0xce,0xc3,0xe4,0x9a,0x9c,0x23,0x87,0x23,0x41,0x4c,0xe,0xbe,0xcc,0xb7,0x8a,0x8f,
0x75,0x7f,0xbe,0x93,0x96,0xc3,0xe7,0x55,0xfd,0xec,0xfb,0xb8,0x50,0x1d,0x1c,0x4e,
0x76,0xc,0xf5,0xe4,0xc4,0xda,0x77,0x32,0xa0,0x8,0xd7,0x29,0x49,0x21,0x4c,0xc9,
0xf5,0x9a,0xc2,0x5,0x2f,0x7a,0x35,0x16,0x9c,0x75,0x16,0x6a,0x1a,0x1b,0x50,0xa8,
0x4,0x8,0x79,0xcd,0xa7,0x7c,0x4a,0x24,0x3c,0x9b,0xa8,0x26,0x44,0xfb,0x32,0xdb,
0x49,0x74,0xdc,0x7,0x11,0x39,0x68,0x6b,0xcf,0x14,0x9f,0xd9,0xd4,0xd4,0x88,0x5c,
0x26,0x1a,0xce,0xaa,0x61,0xb0,0x7d,0x7d,0x7d,0x55,0xcb,0x20,0xba,0xa6,0x73,0x4f,
0x2e,0x2d,0xc2,0xc8,0xa1,0x1a,0xb7,0x7d,0x71,0xe2,0xda,0x70,0x2c,0x3f,0xb2,0xd9,
0xac,0x11,0x82,0xac,0x84,0xb4,0x17,0xf7,0x33,0xc4,0xd6,0xcd,0x91,0xe3,0xe0,0xe4,
0x40,0xd2,0xf9,0xf9,0x92,0x7b,0xb0,0xa5,0x54,0x26,0x1b,0xef,0x25,0x87,0xa3,0xf3,
0xda,0xb1,0xb,0x69,0x27,0xb6,0x25,0xa0,0xdc,0x4a,0x34,0x97,0x3b,0xd7,0x6f,0xc0,
0x3f,0x7e,0xf0,0x3d,0x48,0xb2,0x12,0xa6,0x68,0xa2,0x86,0x64,0xf9,0x84,0x97,0x61,
0x5,0x2c,0xbb,0xcc,0x74,0x38,0xa9,0x11,0xb,0x76,0x9,0xdf,0xd8,0x7a,0xb0,0x9d,
0xd6,0x78,0x3d,0xa0,0x55,0x50,0x4c,0xa7,0xf0,0x37,0xef,0x7b,0xf,0x32,0x33,0xe6,
0xdb,0x6a,0xa9,0xf2,0xe5,0xeb,0x36,0xad,0x32,0x4a,0x5a,0xa8,0xf2,0x80,0x7e,0xa7,
0x73,0xb6,0x37,0x5e,0x90,0x8c,0x3a,0x10,0xd1,0xb3,0x65,0x1d,0x98,0x96,0x9d,0xcf,
0x22,0x24,0xbb,0x68,0x3d,0xa6,0x50,0xd7,0x12,0xd1,0x50,0xd8,0x88,0x44,0x14,0x1d,
0x29,0x70,0x76,0x1a,0xe1,0x0,0x61,0x3b,0xf4,0xcb,0x63,0xb,0x29,0x95,0xd6,0x8f,
0xa1,0x38,0x85,0xcc,0x1f,0x12,0x63,0x8e,0xa4,0xa0,0x61,0xbe,0x99,0x6c,0x66,0x48,
0x54,0xf6,0x8e,0xc0,0x3a,0x5a,0xe4,0x10,0x6a,0x2e,0x4,0xff,0xd2,0xcc,0xa7,0xe7,
0x9e,0x79,0x26,0x66,0xd4,0xd5,0xee,0x25,0x87,0x9f,0x92,0x1c,0xb6,0x52,0xa0,0xa5,
0x68,0xc2,0xc5,0x38,0x3a,0xaf,0x1d,0xfb,0x90,0x69,0xa7,0x20,0x76,0xff,0xd3,0xd,
0x3f,0xc1,0x6f,0xff,0xe3,0xfb,0xa8,0x61,0x26,0x7,0x64,0xf9,0x42,0x81,0x85,0xcc,
0x8a,0xac,0x49,0x28,0xfb,0x80,0x1f,0x5d,0xfe,0x3a,0x9c,0x2c,0x88,0x5,0xb9,0x4,
0xb3,0x82,0xdc,0xad,0xb9,0xba,0x3c,0xc2,0x52,0xc5,0xe6,0x23,0x5c,0xfa,0xa2,0xab,
0x71,0xee,0x73,0x9f,0x83,0x42,0x28,0x8d,0x7e,0xac,0xb7,0x8c,0x3,0xd3,0xa7,0xd1,
0x46,0xa8,0x94,0xaa,0x64,0x55,0x41,0x6b,0x6b,0xab,0xf5,0x27,0x28,0x9f,0x7c,0x5a,
0x37,0xf1,0x4e,0x6d,0xc7,0xe,0x24,0x6a,0x3e,0x3f,0xcd,0x77,0x5d,0x31,0xff,0x74,
0xcc,0x6e,0x6c,0x74,0xe4,0x70,0x34,0x10,0x57,0x78,0x85,0xa4,0x57,0x40,0xd7,0xea,
0xf5,0x78,0xf8,0xf6,0x3b,0xd0,0xb9,0xa7,0x13,0xf7,0xdf,0x72,0x3b,0x50,0x2a,0xc,
0x51,0x9d,0xaa,0xe0,0xbd,0xd2,0x14,0x1c,0x1c,0x4e,0x6,0xd8,0xe,0x6a,0x55,0x48,
0xc8,0xa9,0xe3,0x74,0xe6,0xf9,0x17,0xa3,0x36,0xdf,0x80,0x79,0x8b,0x16,0x63,0xfc,
0xa9,0x5a,0x1d,0x95,0xed,0x87,0xf7,0x49,0x83,0x3d,0xd9,0x90,0x60,0xda,0xeb,0xea,
0x32,0x54,0x30,0x73,0x83,0x44,0x10,0xf5,0x8d,0xc4,0x96,0x56,0x94,0x6f,0xc7,0xe,
0x7,0x21,0x87,0xa2,0x1f,0xe2,0xe7,0xf,0xdd,0x87,0xad,0x25,0x47,0xe,0x47,0xa,
0x3f,0x55,0x42,0x96,0x56,0x9f,0xba,0xda,0xea,0x68,0x16,0xbe,0xf9,0x79,0x57,0xa3,
0x96,0x44,0x20,0xb3,0x4d,0x50,0xa3,0x98,0x3e,0x7d,0x3a,0x9a,0x98,0xf9,0x81,0xbf,
0x77,0xbf,0x56,0x97,0xdb,0xe,0x63,0xf,0x7b,0x95,0x9f,0xa5,0xcb,0x1e,0x89,0x94,
0xa7,0x64,0xd2,0x34,0x61,0xf9,0xcf,0xdf,0xfe,0x8f,0xff,0x86,0x62,0xa9,0xc,0xea,
0xcb,0x28,0xb1,0x5d,0x94,0x53,0x49,0xa4,0x43,0x2d,0x8,0x37,0x36,0xa1,0xf4,0xdb,
0xec,0x65,0x59,0x9,0xd5,0xbc,0x31,0xd7,0x57,0x2e,0x87,0xfa,0xba,0x5a,0x78,0xde,
0x30,0xca,0xe2,0xb0,0x9d,0xee,0xc7,0x2,0x11,0x39,0x78,0xe5,0x32,0xc9,0x61,0x3e,
0xc9,0xa1,0xc1,0x91,0xc3,0xd1,0x86,0x46,0x9,0x6b,0x7c,0xb6,0x86,0xb7,0xd6,0xd2,
0x42,0x7e,0xfb,0x95,0xcf,0x47,0x23,0x4d,0xc3,0x4a,0x95,0x1c,0x64,0x2e,0xfe,0xec,
0xa7,0x3f,0xc3,0x9c,0xb9,0xa7,0x22,0xed,0x45,0x39,0xac,0x4a,0xe3,0xe0,0x30,0x16,
0x11,0x6b,0xbb,0xa7,0xce,0x39,0x1d,0xbb,0x77,0xef,0xb6,0x99,0xbb,0x31,0x39,0xbc,
0xe9,0x5f,0xbe,0x87,0x42,0xb9,0x44,0x72,0x90,0x60,0x4a,0x49,0x49,0xb6,0xa5,0xb3,
0xc7,0x32,0x39,0x44,0x47,0x1f,0x99,0x6c,0x1a,0x2d,0x2d,0x2d,0xd5,0x11,0x48,0xda,
0x7b,0x82,0xd7,0xc3,0xa1,0xca,0x62,0x15,0x36,0xe4,0xf6,0x78,0xe0,0x20,0xe4,0x50,
0xa,0x2a,0xd6,0x21,0xbd,0xb5,0x1c,0x20,0xa5,0xc8,0x30,0xd,0x2a,0xa8,0xb1,0x5a,
0x48,0xc7,0x12,0xcc,0x50,0xfe,0x9f,0xa4,0x26,0x24,0x72,0xa8,0x90,0x1c,0xae,0x42,
0x13,0xc9,0x41,0x94,0xa1,0x8c,0xad,0xa3,0x86,0x70,0xfd,0xf5,0xd7,0x63,0xc1,0x82,
0xd3,0x68,0x42,0xef,0x25,0x85,0x93,0xd1,0x94,0x76,0x18,0x7b,0x88,0x6a,0x74,0x5c,
0x97,0xf7,0xd6,0xef,0x53,0x66,0xcd,0x43,0x77,0x4f,0x8f,0x9d,0x6b,0x2e,0x41,0x7d,
0x43,0x3d,0xfe,0x9a,0xe4,0x50,0x24,0x39,0xf8,0x15,0xd,0x3b,0xad,0x76,0x10,0xb3,
0xfd,0x8c,0xda,0x96,0x30,0x98,0xdc,0xf8,0x44,0x42,0x54,0x69,0xe3,0x91,0xe9,0x12,
0x11,0xe4,0x6b,0x6a,0x6c,0xad,0xa3,0x4c,0x26,0xcd,0x4b,0x91,0xc2,0x68,0xad,0x5f,
0xfd,0x92,0x43,0xf2,0x6b,0x2f,0x8e,0xaf,0xe5,0x90,0x16,0x39,0x2c,0x20,0x39,0x34,
0x34,0x44,0x6f,0x36,0xc1,0xa4,0xc8,0xdb,0xf9,0xde,0xe0,0x70,0xf8,0x50,0x6,0xab,
0x90,0x3d,0x16,0xbc,0x17,0xb2,0xc0,0xab,0xda,0x42,0x94,0xa7,0x71,0x5,0x8,0x4c,
0x53,0x48,0xf1,0xde,0x38,0x68,0x34,0xac,0xb,0x2e,0x8c,0x8d,0xa0,0xfa,0xac,0x40,
0xad,0xb8,0x1a,0x34,0xfa,0x6,0x6a,0xf,0xbc,0xae,0x16,0x60,0x81,0xf7,0xa,0xea,
0x8e,0x8b,0xf6,0x54,0x18,0xc5,0xc4,0x40,0xc,0xb6,0x6f,0xfd,0xa3,0x5,0xa4,0x11,
0x8c,0x49,0xcd,0xc9,0x80,0x8f,0xc6,0xc6,0x5a,0x8c,0x1f,0xdf,0x8a,0xfa,0xba,0x1c,
0x72,0xb4,0x1a,0x74,0xdf,0xde,0x7c,0xd2,0x6f,0x95,0x72,0x49,0xe0,0xfd,0xc3,0x71,
0x6,0xe3,0x63,0xd2,0x4a,0xf1,0x8a,0xae,0x38,0x38,0x38,0x38,0x38,0x1c,0x11,0xe4,
0x9,0xb0,0x40,0x6b,0x81,0x92,0xb5,0xae,0xbe,0x16,0xad,0x6d,0x2d,0x68,0x1f,0x3f,
0x8e,0x16,0x83,0x26,0xc0,0x46,0xdf,0x1f,0xca,0x5a,0x47,0x23,0x1,0x83,0xe4,0x10,
0x75,0x94,0x30,0xf2,0xe,0xe,0xe,0xe,0xe,0x87,0xc,0x59,0x43,0x51,0xdf,0x4a,
0x68,0x13,0xef,0xea,0x49,0xa,0x93,0x27,0x4f,0xa4,0xb5,0x50,0x8f,0x4c,0x3a,0xcd,
0x6b,0xea,0x57,0xe0,0x3d,0x94,0xb6,0xf1,0x7a,0x47,0x23,0x15,0xea,0x17,0xf1,0xbc,
0x94,0x59,0x33,0xce,0x72,0x70,0x70,0x70,0x70,0x78,0x8a,0x50,0x3f,0x82,0x4,0xaa,
0x94,0xeb,0x36,0x59,0x9,0xed,0x6d,0xa8,0xa1,0x95,0x20,0xb7,0xb1,0x2c,0x5,0xfd,
0x99,0xc5,0x70,0x40,0x18,0xb9,0xd0,0x2c,0x6c,0xd9,0x9,0x11,0x39,0x84,0x21,0xd2,
0x29,0x9b,0x87,0x18,0x59,0x45,0x76,0xd1,0xc1,0xc1,0xc1,0xc1,0xc1,0x24,0x65,0x55,
0xa6,0xab,0xef,0xc4,0x7a,0x15,0x2b,0x65,0xa4,0x92,0x15,0x12,0x81,0xf6,0x4d,0x68,
0x42,0xfb,0xb8,0x16,0x9b,0x9f,0x20,0x88,0x28,0x34,0x79,0x4d,0xc6,0x84,0xf5,0x25,
0xa8,0x73,0x65,0x68,0x18,0x81,0x12,0x36,0xea,0xff,0x61,0xda,0xc2,0x0,0xd9,0xb4,
0xc7,0x18,0xc6,0x2b,0xdc,0x32,0xf1,0x69,0xaf,0xba,0x63,0x92,0xc8,0x41,0x19,0xe1,
0xe0,0xe0,0xe0,0x70,0xb2,0x83,0xb2,0x31,0x1e,0x6d,0x64,0x4b,0x72,0x48,0x88,0xf2,
0xbc,0xad,0xb5,0x19,0x93,0x26,0x8d,0x47,0x63,0x43,0x1d,0xb2,0x59,0xa,0xd3,0xea,
0xa8,0xa4,0xa1,0x21,0x82,0x44,0xec,0xfe,0x61,0x24,0x92,0x43,0x55,0xf6,0x6b,0xa5,
0x7,0x92,0x83,0x5c,0x64,0x8a,0xa9,0x61,0xa4,0xfb,0xc2,0x1c,0x1c,0x1c,0x1c,0x8e,
0x3b,0x4c,0x2c,0x6a,0x20,0x7a,0x80,0x6,0x12,0x81,0x3a,0x97,0x27,0x4c,0x6c,0xb7,
0x89,0x6b,0x72,0x27,0x29,0x8c,0x29,0x90,0x24,0x64,0x37,0x8,0x46,0xe,0xda,0xdc,
0x22,0x25,0xb7,0x92,0x7a,0x4c,0x1c,0x1c,0x1c,0x1c,0x4e,0x42,0xec,0x2f,0xec,0xa5,
0xfd,0xa7,0xa9,0x45,0xd7,0xd5,0xd5,0x60,0xc2,0x84,0x76,0x23,0x7,0xed,0xae,0x16,
0xf5,0x27,0x44,0xf7,0xef,0xb5,0x10,0xc6,0x6,0xd4,0x79,0x5e,0xc,0xa2,0x85,0xfd,
0x22,0x72,0x60,0xa8,0xa9,0xc9,0xc3,0xaf,0x5e,0x74,0x70,0x70,0x70,0x38,0xd9,0xa0,
0xce,0xe5,0x78,0x5d,0x23,0x2d,0xa2,0xd9,0xd6,0xd6,0x86,0x71,0xe3,0xc6,0xd9,0xe8,
0x23,0x91,0x82,0x2d,0x8e,0x47,0x2b,0x22,0xa,0x63,0x13,0x9,0xfe,0x29,0x1f,0x64,
0x41,0x44,0x1c,0x98,0xa8,0x20,0xc7,0xd3,0x54,0x10,0x22,0x48,0xc6,0xeb,0x0,0xb9,
0x8e,0x7,0x7,0x7,0x87,0xb1,0x0,0xa9,0xbf,0xfb,0x86,0x90,0xb2,0x8e,0xd2,0xde,
0x26,0xab,0x49,0x20,0x6a,0x82,0x9e,0x56,0x2c,0xc8,0xe7,0x3c,0xb4,0x8f,0x6b,0x46,
0x6b,0x4b,0x23,0x32,0x69,0x5e,0x37,0x42,0x18,0x9b,0x56,0xc2,0x50,0x24,0xb4,0x8d,
0x2b,0x93,0x57,0x4b,0x4b,0x29,0xcf,0x13,0x5b,0xde,0xdc,0xbe,0x60,0xc8,0xa5,0x52,
0xb6,0xa1,0xf7,0x60,0x87,0xba,0x83,0x83,0x83,0xc3,0x18,0x45,0x4a,0x7d,0xac,0x14,
0xf8,0x1a,0x88,0x93,0xa1,0x40,0xd4,0xa6,0x40,0xed,0xe3,0xa2,0x61,0xa8,0x9a,0xab,
0xa0,0xe,0x66,0x59,0x8,0xb6,0xac,0x5,0x49,0x61,0x2c,0x13,0x83,0x10,0x6f,0xa0,
0x94,0x67,0x7e,0xa8,0x3b,0x5a,0x5d,0xd,0xb1,0xf7,0xc,0x5e,0x4a,0x97,0x1c,0x1c,
0x1c,0x1c,0xc6,0x1a,0xe4,0x5,0xd9,0x37,0x68,0xa3,0xae,0xda,0xba,0x1a,0xb4,0xb4,
0x36,0xa1,0x6d,0x5c,0xab,0x9d,0xab,0xcb,0x55,0xc3,0x50,0xcd,0xad,0x72,0x92,0x42,
0x69,0xd7,0xde,0x34,0xb2,0x94,0xaa,0x6e,0xa5,0x4,0x6a,0x6a,0x6b,0xec,0xd4,0xc1,
0xc1,0xc1,0x61,0x4c,0x81,0x56,0x80,0x46,0x1b,0x85,0xb6,0x1a,0xaa,0x87,0xc6,0xa6,
0x7a,0x8c,0x1f,0x3f,0xce,0x66,0x30,0x47,0x3c,0x10,0x5b,0x9,0x12,0x85,0x9a,0xc3,
0x70,0xf2,0xb9,0xd4,0xcd,0x3a,0x62,0x66,0x78,0xb4,0xa2,0xbc,0x54,0x44,0xb,0xf6,
0xbf,0xf2,0x22,0x97,0xcb,0x9f,0x94,0x99,0xe2,0xe0,0xe0,0x30,0xd6,0x11,0x5a,0x87,
0xb2,0x46,0x1c,0xb5,0xb6,0x36,0xf,0xba,0x8e,0xc2,0xd0,0xa7,0x50,0x94,0xcc,0x8b,
0xc8,0xe1,0xa4,0x7,0xe5,0x7f,0x9e,0x3c,0xe0,0xab,0x1f,0x86,0x64,0x11,0xf1,0x66,
0x25,0x40,0x8e,0x67,0xa9,0x64,0x80,0x72,0x32,0x5a,0xba,0xd5,0x75,0x3c,0x38,0x38,
0x38,0x8c,0x16,0xc4,0x7d,0x2,0x5a,0x5,0x55,0x41,0x7b,0x23,0xd8,0x6a,0xa8,0xd,
0x35,0xd6,0x97,0x30,0xa1,0xbd,0xdd,0x34,0xe2,0xc1,0x95,0x53,0x75,0x2f,0x35,0xe5,
0xb1,0xde,0x97,0x70,0xa8,0x30,0xcb,0x2a,0x2c,0xa3,0x2e,0x9f,0x83,0x27,0xff,0x5a,
0x4c,0xe,0x15,0xb2,0xa8,0x3a,0xa3,0x6b,0x73,0x19,0x72,0x82,0xfc,0x71,0x2e,0xc3,
0x1c,0x1c,0x1c,0x46,0x7,0x24,0xe0,0xe5,0x27,0xd7,0x6,0x42,0xcd,0xcd,0x8d,0x16,
0xb4,0xce,0xd1,0xb8,0x71,0xda,0x87,0x39,0x87,0xb4,0xa7,0xfe,0xd4,0x48,0xaa,0xd,
0x6,0xfe,0x26,0xe,0xe,0xca,0x1d,0x2d,0x31,0x1e,0x22,0x93,0x4a,0xc1,0x8b,0xa6,
0x81,0x57,0xfb,0x1c,0x48,0xa4,0x22,0x87,0x9a,0x74,0xd6,0xd6,0x56,0x77,0xce,0x25,
0x7,0x7,0x87,0xd1,0x2,0x11,0x43,0x4c,0x10,0x9a,0x9f,0x10,0x7,0x2d,0x20,0x77,
0x32,0x77,0x2e,0x1f,0xe,0xa2,0x7c,0x8a,0x16,0x10,0xc,0xb4,0xf7,0x6,0xff,0x59,
0xce,0xa9,0xbb,0xc6,0xc8,0x21,0x95,0x41,0x8a,0x17,0x8d,0x4d,0x1d,0xa1,0x3a,0x38,
0x38,0x8c,0x2,0xc,0xd5,0xfe,0x63,0x6b,0x20,0xe,0xe,0x87,0x6,0x2d,0x14,0xa8,
0x9,0x80,0xe9,0x8c,0x96,0x18,0x67,0xde,0xd1,0x7a,0x88,0x68,0x55,0x99,0x58,0x49,
0xa0,0xbe,0xa6,0x56,0x1d,0xfb,0x66,0x39,0x38,0xeb,0xc1,0xc1,0xc1,0xc1,0xe1,0xe4,
0x80,0x2c,0x87,0x20,0x8,0x6d,0x8f,0xef,0x18,0x46,0xe,0x1e,0x6d,0x87,0x14,0xe9,
0xa0,0xa1,0xae,0x16,0xda,0xfc,0x3a,0x55,0x71,0xbd,0xe,0xe,0xe,0xe,0xe,0x27,
0xb,0xca,0x94,0xfb,0x35,0xe5,0x32,0x6a,0x69,0x28,0x68,0xd0,0xaa,0x7c,0x49,0x46,
0xe,0x22,0x2,0xed,0x65,0xaa,0x45,0x97,0xb4,0xaf,0x83,0x3a,0x26,0xec,0xe,0x7,
0x7,0x7,0x7,0x87,0x31,0xf,0xd,0x4e,0xcd,0x90,0x3,0xea,0xb2,0x59,0xf3,0x24,
0xc9,0xa9,0x64,0xe4,0x20,0x1a,0xd0,0x70,0xdf,0x1a,0x2f,0x83,0x74,0x42,0xbd,0xf,
0xce,0xad,0xe4,0xe0,0xe0,0xe0,0x70,0xb2,0x20,0x49,0x63,0xa0,0x58,0x28,0x22,0xa5,
0xe1,0xbd,0x14,0xfe,0x66,0x30,0xd8,0x37,0xc6,0x14,0x40,0xad,0x97,0x46,0x85,0xa6,
0x85,0x16,0x5d,0x72,0x70,0x70,0x70,0x70,0x38,0x39,0xa0,0xed,0x1a,0x26,0x8e,0x1f,
0x8f,0x74,0x32,0x32,0xe,0x44,0x10,0x83,0x96,0x83,0xfe,0xcb,0xa7,0x33,0x48,0xf1,
0x26,0x1b,0xd6,0x44,0xc2,0x70,0x70,0x70,0x70,0x70,0x18,0xfb,0xd0,0x14,0x86,0x9a,
0x5c,0x9e,0x3c,0xc0,0x13,0x23,0x84,0x2a,0x39,0x24,0x2b,0x49,0x54,0x92,0xea,0xa9,
0x4e,0x20,0x1d,0x94,0x10,0x26,0xb4,0xaf,0x43,0xf5,0xe,0x7,0x7,0x7,0x7,0x87,
0x31,0xd,0x2d,0x25,0x32,0xa3,0x75,0x9c,0xd,0x4c,0xb2,0x21,0xab,0x3c,0x46,0x6e,
0x25,0x39,0x95,0xf8,0x4f,0x5b,0x85,0x36,0xe4,0x73,0xe6,0x7f,0x72,0x70,0x70,0x70,
0x70,0x38,0x49,0xe0,0x7,0x68,0x6f,0x69,0x31,0x77,0x92,0xf5,0x31,0x10,0x91,0x5b,
0x89,0x1f,0x74,0x4d,0x1f,0x5a,0x9b,0x9a,0x91,0xd0,0x46,0x18,0xe,0xe,0xe,0xe,
0xe,0x27,0x5,0x1a,0x6a,0x6a,0x91,0x34,0x83,0x21,0xda,0x2a,0x35,0xe6,0x3,0x22,
0x9a,0x4d,0xa8,0x65,0xa9,0xda,0x5b,0xda,0x90,0xa,0x78,0xc5,0x19,0xf,0xe,0xe,
0xe,0xe,0x27,0x5,0x6a,0x33,0x5a,0x70,0x8f,0x72,0x3f,0x8c,0x88,0x41,0xff,0x57,
0xc9,0x61,0x2f,0xc6,0xb5,0xb4,0x6a,0x2e,0x75,0xf5,0x93,0x83,0x83,0x83,0x83,0xc3,
0x58,0x47,0x5d,0xbe,0xc6,0x96,0x4e,0x32,0x66,0xa8,0xc2,0xc8,0x41,0x7d,0xc,0x3e,
0xaf,0x26,0x78,0xcc,0xf3,0x73,0x63,0xad,0xfe,0x77,0x70,0x70,0x70,0x70,0x38,0x19,
0xd0,0x9a,0x27,0x7,0x78,0x34,0xa,0x6c,0x59,0xf3,0x24,0x64,0x1e,0xec,0x6b,0x39,
0x90,0x35,0x92,0x41,0x88,0x9a,0xbc,0x23,0x7,0x7,0x7,0x7,0x87,0x93,0x5,0x75,
0x99,0xac,0xcd,0x6f,0x8b,0x7a,0x9b,0xa3,0x1e,0xe9,0xfd,0xc8,0x41,0x2b,0x6a,0x24,
0xd0,0xde,0xd4,0x52,0xbd,0xe0,0xe0,0xe0,0xe0,0xe0,0x30,0x56,0x61,0x9d,0xcf,0xc,
0xd,0xd9,0x1a,0xeb,0x67,0x8e,0x7a,0x1c,0x22,0x62,0x30,0x72,0x88,0x37,0x7d,0xd3,
0x41,0xe4,0x50,0x9f,0xcf,0x45,0x17,0x1c,0x1c,0x1c,0x1c,0x1c,0xc6,0x24,0x34,0x8,
0x49,0xc4,0x50,0x2e,0x97,0xd1,0x56,0xdf,0x80,0x4c,0xd2,0xd3,0x45,0x9b,0xff,0xac,
0x19,0xd3,0x46,0xe,0xf1,0xc0,0x55,0x5b,0x44,0x23,0xac,0xa0,0x26,0x9d,0xb1,0x85,
0xf8,0x1c,0x1c,0x1c,0x1c,0x1c,0xc6,0x26,0x44,0xc,0x5a,0xd,0xa3,0xa6,0xa6,0x6,
0x79,0x2f,0x1d,0xc9,0xff,0x64,0xb4,0x89,0xea,0xe0,0xf2,0x19,0x1e,0x2f,0x7a,0x3c,
0xad,0x68,0xd9,0x8c,0x54,0x88,0x9,0x5e,0x8a,0x16,0x44,0x80,0x4a,0x50,0x42,0x4a,
0x3b,0xec,0xf1,0x3c,0x61,0x5d,0x14,0x6e,0xfe,0x83,0x83,0x83,0x83,0xc3,0x68,0x85,
0xb6,0x3,0x4d,0xc2,0x87,0x47,0x23,0xc0,0x6,0x21,0xf9,0x25,0xcc,0x6f,0x6b,0xe3,
0xb5,0x68,0xab,0x68,0x1d,0x63,0x18,0x39,0x88,0x31,0x8c,0x35,0x8,0x6d,0x13,0x57,
0x57,0x5b,0xb,0xda,0xe,0xb6,0x7c,0xb7,0x1f,0x92,0x24,0xf8,0x95,0xb3,0x23,0x1c,
0x1c,0x1c,0x1c,0xc6,0x0,0x28,0xd0,0xad,0x67,0x81,0x42,0xbd,0x12,0xfa,0x98,0xda,
0x3e,0xce,0x5c,0x4c,0x16,0xa2,0xcb,0xf6,0x9f,0x91,0x43,0x8c,0x78,0x5b,0x3d,0x99,
0x1a,0x93,0x9a,0xdb,0xc8,0x2a,0x81,0x9d,0x5b,0x9f,0x4,0x9f,0xe6,0x26,0xc6,0x39,
0x38,0x38,0x38,0x8c,0x5e,0x44,0xe2,0x9f,0x32,0x9d,0x47,0x2d,0x97,0x94,0x49,0x25,
0xd1,0x72,0x90,0xd1,0xa9,0xfb,0x90,0x83,0x10,0x33,0xc8,0xcc,0x49,0x53,0x51,0x21,
0x39,0x94,0x3,0x7f,0x48,0x9f,0x84,0x83,0x83,0x83,0x83,0xc3,0xa8,0x5,0x35,0xfd,
0x84,0x16,0x5a,0x4d,0x24,0xcd,0x2b,0xd4,0x40,0x62,0x38,0xd8,0xf0,0xa3,0x3,0xc8,
0x21,0x46,0x4b,0x5d,0x16,0x9e,0xf9,0x93,0x14,0x1c,0x31,0x38,0x38,0x38,0x38,0x8c,
0xd,0x44,0x96,0x43,0x18,0x46,0x5b,0x43,0x7b,0x95,0xe1,0x5d,0x42,0x7,0x25,0x87,
0x5c,0xb2,0x8c,0xf6,0x86,0x2c,0x52,0xa5,0x0,0xa9,0x30,0x45,0xc6,0x89,0xba,0x2b,
0x1c,0x1c,0x1c,0x1c,0x1c,0x46,0x2b,0x2a,0x8,0x92,0x3e,0x82,0x54,0x19,0x79,0xbf,
0x80,0x89,0x79,0x1a,0x1,0xc9,0x52,0xf5,0xbb,0x7d,0x71,0x50,0x69,0x9f,0xa2,0xd5,
0xd0,0xdc,0xd4,0x64,0xe3,0x5d,0x5,0x19,0x11,0xae,0xcb,0xc1,0xc1,0xc1,0xc1,0x61,
0xf4,0x43,0x9b,0xfb,0x64,0x52,0x29,0x34,0xd5,0x35,0x1c,0xd4,0x2b,0x74,0x50,0x72,
0xd0,0xa8,0xd7,0xa6,0xda,0xfa,0x3,0x16,0x63,0x72,0x70,0x70,0x70,0x70,0x18,0x9d,
0x30,0x25,0x9f,0x52,0x5f,0x82,0xbf,0x52,0xf4,0xa3,0x85,0x56,0xf,0x82,0x83,0x92,
0x83,0xfa,0x1b,0x9a,0xeb,0xea,0x5c,0x5f,0x83,0x83,0x83,0x83,0xc3,0x18,0x81,0xc8,
0x21,0x60,0xd0,0x4a,0x18,0x53,0xdb,0x27,0x20,0x23,0xcf,0xd0,0x41,0x94,0xff,0x83,
0x93,0x3,0x7f,0x54,0xaf,0xd,0x20,0xf8,0x43,0x11,0x84,0x9b,0xfe,0xe6,0xe0,0xe0,
0xe0,0x30,0xba,0x21,0x1e,0x8,0xc3,0x10,0x15,0x3f,0xc4,0xf4,0x49,0x53,0x90,0xa,
0x79,0xe5,0x20,0x9b,0xbb,0x25,0x2a,0x9a,0x43,0x3d,0xc,0xca,0x41,0x81,0x5f,0x7a,
0xb8,0xf3,0xb1,0xc7,0xf0,0xe0,0x9e,0x5d,0x28,0x27,0x32,0x48,0xd9,0x10,0xa8,0xea,
0xd,0xe,0x7,0x85,0x8,0x35,0x20,0xed,0xd6,0x7a,0xc0,0x5b,0x9f,0x7b,0x15,0x1a,
0x55,0x18,0x51,0xb1,0xa0,0xae,0xae,0x16,0xbf,0xba,0xfe,0x3a,0x2c,0x5a,0xb4,0xc0,
0x66,0x24,0x3e,0x55,0x84,0xa2,0x6c,0x63,0xfd,0x24,0xca,0x65,0x1f,0x9,0x9e,0x7,
0x41,0x10,0x15,0xfc,0x41,0x46,0x1f,0x38,0x38,0x1c,0xc,0x1a,0xbe,0xae,0x9,0xb0,
0xb6,0xa4,0x42,0x2a,0xaa,0x43,0x9e,0x97,0xb4,0xb1,0xf0,0xda,0x53,0x38,0x11,0x6a,
0x84,0xfc,0x93,0x37,0xfe,0xa8,0xe6,0x1d,0xa8,0x73,0x4e,0x9f,0x71,0x2a,0x7a,0x7a,
0x7a,0x90,0x48,0x25,0x51,0xf2,0x7d,0xd4,0x37,0xd4,0xe3,0xaf,0xbf,0xfe,0x3d,0x94,
0x4a,0x25,0xab,0xb3,0xf1,0x1c,0xab,0x23,0x41,0x6d,0x6d,0x2d,0x9a,0x1a,0xdd,0x8a,
0xd2,0x4f,0x4,0x4d,0x4c,0x28,0x97,0x7,0x30,0x91,0x65,0xfb,0x92,0xb,0x2e,0x44,
0x43,0x2a,0xab,0x8b,0xea,0x47,0x38,0x0,0x7,0x25,0x87,0xa0,0x52,0xa2,0x4,0x4a,
0x62,0x5b,0xb1,0x84,0x6b,0xef,0xbf,0x17,0xc5,0x44,0x9a,0x45,0x4e,0x71,0xe6,0xc8,
0xe1,0x49,0x71,0xbc,0xc9,0x61,0xe3,0xc6,0x4d,0xf8,0xca,0x57,0xbe,0x8a,0x3b,0xee,
0xb8,0x3,0xdd,0xdd,0xdd,0xd6,0xd8,0x34,0x79,0xd1,0xc1,0xe1,0x50,0xe1,0x79,0x1e,
0x72,0xb9,0x1c,0xe6,0xcd,0x9b,0x87,0xf7,0xbd,0xff,0x5d,0x38,0xe3,0x8c,0x33,0x58,
0x8f,0x7c,0x5e,0x57,0x9b,0x77,0xe4,0x30,0x56,0x10,0x24,0x2a,0x8,0xa9,0xf8,0x4f,
0x67,0x59,0x3f,0xff,0xac,0xb3,0x51,0x93,0x24,0x2b,0x68,0x65,0x24,0x5b,0x26,0x69,
0x5f,0x1c,0x94,0x1c,0x4a,0x24,0x87,0xa4,0x9f,0x40,0x39,0x9d,0xc6,0x7f,0xdd,0x71,
0x27,0xfa,0x28,0x88,0x2a,0x1,0x6f,0x3d,0xa,0x85,0x38,0xd6,0x71,0x5c,0xc8,0xc1,
0x2c,0x85,0x10,0xfd,0x7d,0x5,0x3c,0xef,0x79,0x57,0x61,0xc5,0x8a,0x47,0xed,0xba,
0x48,0x41,0x8d,0x4d,0x2b,0x2d,0x3a,0x38,0x3c,0x19,0x86,0xa,0x65,0x11,0x84,0xc4,
0x41,0x53,0x73,0x1d,0x7e,0xf6,0xd3,0x9f,0x61,0xd1,0xe2,0x85,0x66,0x3d,0x38,0x72,
0x18,0x3b,0x8,0xb5,0xcc,0x85,0x5f,0xc4,0x82,0x96,0x16,0x5c,0x3e,0x7f,0x3e,0xd,
0x6,0xca,0xb,0x5e,0x1a,0x4e,0x97,0x1c,0xe6,0x52,0x4,0x15,0x96,0x47,0x33,0xd3,
0xe3,0xf,0x5b,0xea,0x1b,0xac,0x0,0xa3,0x82,0x77,0x18,0x9,0x50,0x23,0x56,0xf8,
0xca,0x57,0xbe,0x82,0xe5,0xcb,0x97,0xdb,0xb5,0xd8,0x2d,0xa0,0xb2,0xd3,0xb9,0xb,
0x2e,0x3c,0x59,0x90,0x32,0xa1,0x10,0x13,0x83,0xd0,0xd5,0xd5,0x85,0x77,0xbd,0xfb,
0x5d,0xbc,0xee,0x14,0xc1,0xb1,0x6,0x93,0xd,0x54,0x2c,0x27,0xb4,0xb4,0xd9,0x82,
0xab,0x42,0x78,0x10,0x16,0x38,0xb8,0xe5,0x80,0x32,0x32,0x41,0xca,0x34,0xd4,0x3f,
0x6e,0xdc,0x80,0x7b,0xd6,0xac,0x45,0x26,0x9d,0x3d,0x2a,0xc,0x3f,0xd6,0x71,0x3c,
0x2c,0x7,0x9f,0x8f,0xd3,0xc,0xc7,0xc9,0x93,0xa6,0x9a,0x5,0xa1,0x73,0x95,0xcd,
0xb9,0xe7,0x9e,0x8b,0xa6,0xa6,0x26,0xeb,0x7f,0x70,0x70,0x38,0x54,0x48,0x83,0x97,
0x5b,0xd2,0xb4,0xf8,0x64,0x60,0x44,0xb1,0x76,0xed,0x6a,0x34,0x50,0xc3,0x77,0x96,
0xc3,0xd8,0x41,0x40,0x19,0xe4,0x5,0x65,0xbc,0xe2,0xfc,0xb,0x30,0x41,0x4b,0x6e,
0xb3,0x3c,0x8a,0xcc,0xfa,0xe1,0x96,0xd0,0x38,0x28,0x39,0x68,0x69,0x57,0xf5,0x61,
0x6b,0x32,0xdc,0xd6,0x1d,0x5d,0xb8,0xe1,0x91,0x87,0xd1,0x93,0x91,0x11,0xe2,0xc8,
0xe1,0xc9,0x70,0x3c,0xc8,0x41,0x6b,0xa3,0x4,0x24,0x84,0xfa,0xba,0x46,0xe4,0x72,
0x6a,0x10,0x9,0x73,0x25,0xdd,0x76,0xdb,0x6d,0xc8,0xe7,0xf3,0x83,0x5a,0xa0,0x83,
0xc3,0xa1,0x20,0x93,0xc9,0x60,0xf1,0xe2,0xc5,0x66,0x41,0x8,0x12,0xda,0x9b,0x36,
0x6d,0xa0,0xa2,0xd1,0x20,0x29,0xc1,0x7f,0x14,0xe0,0xf6,0xcd,0x13,0xc3,0x91,0xc3,
0xc8,0x46,0x32,0xc,0x30,0xab,0xb9,0x9,0x97,0x9e,0x7e,0x3a,0xea,0xa9,0x3f,0x26,
0x92,0x94,0xf2,0x29,0x49,0xfa,0xa8,0xdc,0x87,0xe2,0x20,0x6,0x45,0x84,0xa8,0xb8,
0x2a,0xcc,0xf0,0x6,0x64,0xbd,0x14,0xb5,0x7,0x37,0xa0,0xd5,0xc1,0xc1,0xc1,0x61,
0xb4,0x22,0x49,0xa5,0x71,0xca,0xf8,0xf1,0x91,0xe0,0x97,0x80,0x37,0x21,0x3f,0x3c,
0xd,0x1c,0x9c,0x1c,0x68,0x46,0xa,0xb2,0x20,0x3c,0xaf,0x82,0x99,0x53,0x26,0x9a,
0xf6,0x20,0x8d,0xd4,0x69,0xa5,0xe,0xe,0xe,0xe,0xa3,0xb,0xb2,0xd0,0xb2,0xb4,
0xc,0xc7,0xd5,0xd5,0x50,0xf0,0x53,0x8e,0x53,0xfa,0x57,0x68,0xb1,0x1d,0x4c,0x9a,
0x1f,0x94,0x1c,0xe4,0x63,0x14,0xad,0x98,0x73,0x29,0xf4,0x31,0x7b,0xca,0x64,0x78,
0x11,0x5f,0x38,0x38,0x38,0x38,0x38,0x8c,0x22,0x88,0x18,0x84,0xfa,0x7c,0xe,0x4d,
0xd9,0x34,0x15,0x7d,0x3f,0x1a,0xb9,0x64,0xee,0xbc,0xc3,0xb5,0x1c,0x88,0xc8,0x4f,
0xce,0x7,0x57,0x2,0x64,0x53,0x49,0x5b,0xde,0x55,0xbe,0x41,0xd7,0x29,0xed,0xe0,
0xe0,0xe0,0x30,0x7a,0xa0,0x11,0x69,0x1a,0x9d,0xd6,0xd6,0xd2,0x8c,0x84,0x5f,0x46,
0x8a,0x22,0x5c,0xf2,0x3d,0xd0,0xff,0x7,0x31,0x1d,0xe,0x4e,0xe,0xea,0xc8,0xe6,
0xd7,0xa9,0x44,0x6,0xd9,0x6c,0xd,0x5a,0x92,0x1e,0x4e,0xc9,0xd7,0x21,0x15,0xf8,
0x28,0xf1,0x69,0x5e,0x90,0x42,0x26,0xd0,0xaa,0xe0,0x6e,0x54,0x8c,0x83,0x83,0x83,
0xc3,0x48,0x43,0x39,0x59,0x81,0xcf,0x50,0x4e,0x26,0x30,0x90,0xf0,0x91,0x1e,0xe8,
0xc5,0x99,0xed,0x13,0x90,0xcf,0xe4,0x91,0x49,0xa6,0x91,0x4e,0x24,0x6d,0x38,0xeb,
0xc1,0x46,0x2c,0x3f,0xa1,0xe5,0xb0,0x3f,0x26,0x69,0xaf,0xd1,0x30,0x40,0x9a,0xc,
0x54,0xd1,0x4c,0x3b,0x7b,0xe8,0x61,0x3d,0xc2,0xc1,0xc1,0xc1,0xc1,0xe1,0x38,0x40,
0xe2,0x59,0x9e,0x23,0x75,0x42,0x6b,0x95,0xed,0x71,0x4d,0x4d,0xa8,0xc9,0x64,0xa2,
0x2f,0xf,0x1,0x87,0x25,0xd9,0x27,0xf0,0xe1,0x8d,0x19,0xf,0x61,0x58,0xb6,0x69,
0xd8,0xb2,0x1b,0xe,0xd6,0x99,0xe1,0xe0,0x30,0x14,0xf1,0x40,0x6,0x85,0xd8,0x35,
0x39,0xf4,0x7c,0x2c,0x86,0x18,0xf1,0x0,0x8e,0xf8,0xe8,0xe0,0x70,0x3c,0x20,0x62,
0xd0,0x54,0x4,0x6d,0xbb,0x90,0xa,0xca,0x98,0x35,0x75,0x12,0xad,0x85,0x43,0xaf,
0x83,0x87,0x45,0xe,0x99,0xb0,0x82,0x59,0x93,0x27,0x92,0x10,0x7c,0x84,0x34,0x57,
0xa2,0x45,0xf8,0xe,0x62,0x93,0x38,0x38,0xc,0x81,0x4,0x63,0xdc,0x29,0x26,0xe8,
0x73,0x3a,0x4d,0x7d,0x66,0x18,0xa1,0x3a,0x16,0x82,0x10,0x1f,0x63,0x52,0x88,0x3f,
0x3b,0x38,0x1c,0xf,0xb0,0x26,0xda,0x9c,0x2b,0xad,0xbc,0x5a,0x9f,0xc9,0xa2,0xad,
0xae,0x96,0xe7,0x87,0xde,0xd,0x70,0xd0,0x49,0x70,0xc3,0x21,0x2c,0xfb,0x58,0x5f,
0x2a,0xe0,0x57,0xcb,0x1e,0x82,0x1f,0x7a,0xf0,0x2,0x6a,0x7f,0x87,0xc1,0x44,0x27,
0xb,0xdc,0x24,0xb8,0x3,0x11,0x4f,0x74,0x52,0xa7,0x58,0x67,0x67,0x27,0x1e,0x7a,
0x88,0x75,0xc8,0xa7,0x92,0x31,0x84,0x30,0xc6,0x12,0x94,0x56,0x75,0x2,0x4e,0x9e,
0x3c,0x19,0x73,0xe7,0xce,0xb5,0xb4,0xea,0xf3,0x48,0x85,0x9b,0x4,0x37,0xf6,0x20,
0xcf,0x8e,0xc7,0xe6,0x95,0xa4,0xdc,0x69,0xa9,0xcf,0xe2,0xca,0x45,0xa7,0xa3,0xc9,
0x67,0x71,0x92,0x28,0xe,0x5,0x87,0x45,0xe,0x7e,0xc5,0xc7,0x40,0xa9,0x82,0x9b,
0x1f,0x5c,0x8e,0xb5,0x61,0x19,0xa5,0x44,0x88,0xb4,0x75,0x4a,0x3b,0x8d,0x68,0x28,
0x1c,0x39,0xc,0xf,0xc5,0xe9,0x77,0xbf,0xfb,0x1d,0x3e,0xfe,0xc9,0x4f,0x18,0x49,
0xec,0x23,0x10,0x18,0xdd,0xb1,0x54,0x8b,0x2,0xa,0x53,0x91,0x81,0x84,0xdf,0x4b,
0x5f,0xfa,0x52,0x5c,0x73,0xcd,0x35,0x96,0xbe,0x78,0xdb,0xdd,0x91,0x6,0x47,0xe,
0x63,0xf,0x7e,0x2a,0x40,0x25,0x8,0x51,0x53,0x4e,0xe0,0x2,0x2a,0x28,0xa7,0x4f,
0x68,0xa5,0xbc,0x2e,0xb1,0x8c,0xf,0x8d,0x1c,0xe,0xbb,0xa6,0x66,0xd9,0xa8,0x27,
0xb7,0xb7,0x22,0xe9,0x97,0xa3,0x1f,0x8f,0x3c,0x19,0xe4,0x30,0x2,0x21,0x62,0xe8,
0xe8,0xe8,0xc0,0x57,0xbf,0xfa,0xd5,0x41,0x1,0x74,0x34,0x4,0xc2,0x48,0x45,0x6c,
0x25,0x64,0xb3,0x59,0x5c,0x7b,0xed,0xb5,0xf8,0xfa,0xd7,0xbf,0xce,0x74,0xf,0xb3,
0x68,0xbe,0x83,0xc3,0x31,0x82,0x88,0x21,0xcd,0x7a,0x98,0x66,0x55,0x9c,0x46,0x62,
0x50,0x8d,0x4c,0x69,0x3d,0xa5,0x43,0xc4,0x61,0x91,0x83,0x94,0xd1,0x74,0x32,0x81,
0x53,0x26,0x4d,0x80,0xa7,0xb1,0xb2,0xb4,0x1a,0x92,0x51,0xc7,0x83,0x83,0xc3,0x13,
0x42,0x84,0x20,0x21,0xd9,0xdb,0xdb,0x6b,0x9f,0xa5,0x2d,0xe,0xd,0xaa,0x5c,0x22,
0x90,0x31,0x13,0x68,0xd5,0x89,0xfc,0x94,0x36,0x11,0x85,0xd2,0x3e,0x30,0x30,0x60,
0x69,0x77,0x70,0x38,0x1e,0x90,0x95,0x9a,0x24,0x41,0x9c,0x3a,0x65,0x32,0xf2,0xb4,
0xfb,0x6c,0xd7,0xb7,0xea,0xca,0x17,0x87,0x82,0xc3,0x72,0x2b,0xe9,0xd6,0x44,0xa0,
0xf1,0xb3,0xc0,0x1f,0x56,0xae,0xc0,0xaa,0x1d,0x7b,0x90,0x48,0x66,0xf9,0x3e,0x37,
0xd7,0x61,0x28,0x9c,0x5b,0xe9,0x40,0x48,0x50,0x7e,0xfa,0xd3,0x9f,0xc6,0x6f,0x7f,
0xfb,0x5b,0x1b,0xc8,0x20,0x81,0xa9,0x15,0x64,0x27,0x4c,0x98,0x10,0xdd,0xa0,0x8a,
0x3b,0x86,0x50,0xc3,0x72,0x16,0x21,0x68,0xf9,0x6b,0xb9,0x6c,0x54,0x1e,0xd7,0xfd,
0xf2,0x5a,0xb4,0xb7,0xb7,0x57,0xef,0x18,0x59,0x70,0x6e,0xa5,0xb1,0x7,0xcd,0x80,
0xce,0x5,0x3e,0xae,0x58,0xb8,0x10,0xa7,0x34,0x36,0x58,0xff,0x83,0xe4,0xc4,0xa1,
0xa,0x9e,0xc3,0x24,0x7,0xfe,0x40,0xcb,0x43,0xb3,0xec,0x57,0xf4,0x74,0xe2,0xd6,
0x87,0x1f,0xa3,0x80,0xf2,0x10,0xda,0xaa,0x7e,0xe,0x31,0x1c,0x39,0x1c,0x8,0xf5,
0x31,0x7c,0xf8,0xc3,0x1f,0xc6,0x4d,0x37,0xdd,0x84,0xa4,0x97,0xb2,0x25,0xc5,0xff,
0xf6,0x6f,0xff,0x16,0x67,0x9e,0x79,0xa6,0x7d,0x2f,0x13,0x78,0x2c,0x41,0xe4,0xa0,
0xf4,0xf5,0xf5,0xf5,0x99,0xf0,0x53,0xfa,0x7f,0xfe,0xb3,0x9f,0x61,0xc2,0xf8,0x2a,
0x19,0x8e,0x30,0x38,0x72,0x18,0x7b,0x90,0xd4,0x19,0x97,0x4b,0xe3,0xb9,0x67,0x2c,
0x46,0x2b,0xf3,0xd7,0x96,0x44,0x52,0x9f,0xd7,0x21,0xa,0x9e,0x3,0x4b,0xf1,0x9,
0x50,0xa6,0x85,0x10,0x58,0xdd,0xa9,0x60,0x62,0x4d,0x3d,0xea,0xd3,0x29,0x54,0xd2,
0x8e,0x18,0x1c,0xe,0xd,0x22,0x2c,0x73,0xb5,0xf8,0x1,0xb2,0xe9,0xc,0xba,0x3b,
0xbb,0xb0,0x63,0xdb,0x76,0xb,0x3b,0x77,0xee,0x1c,0x5b,0x61,0xfb,0xe,0xc9,0x54,
0x4b,0xab,0x8e,0x5e,0x92,0x2d,0x72,0x64,0xf1,0xb5,0xc3,0x18,0x42,0xc5,0xbc,0x37,
0x1,0x5,0x7a,0x14,0xb4,0x72,0x45,0x4d,0xa9,0x1f,0xb,0x26,0x8c,0x47,0x3,0xd9,
0x80,0x56,0x0,0x2a,0xa9,0x32,0x15,0xf9,0x52,0xf4,0x83,0x43,0xc0,0x61,0x59,0xe,
0x65,0x7b,0xb1,0x18,0x28,0x44,0x21,0x91,0xc2,0xdd,0x6b,0xd7,0x63,0xd9,0xa6,0xcd,
0x8,0xe,0xa3,0x93,0xe3,0x64,0x80,0xb3,0x1c,0xe,0x84,0xdc,0x48,0xea,0x8c,0xfe,
0xc9,0x4f,0x7e,0x62,0xda,0xa9,0x34,0x46,0xc5,0x53,0x43,0x3c,0xc7,0x22,0xa4,0x89,
0x17,0xa,0x5,0x3b,0x17,0x21,0xca,0x72,0xb8,0xfe,0xfa,0xeb,0xa9,0x89,0x37,0xd9,
0xb5,0x91,0x6,0x67,0x39,0x8c,0x76,0x44,0xae,0xfd,0x38,0xe7,0xa5,0x90,0x34,0x26,
0x42,0x3c,0xff,0xa2,0x8b,0x51,0x4b,0x39,0x91,0xe5,0xb9,0x56,0xd8,0xae,0x24,0x13,
0xbc,0xe7,0xd0,0x6,0x46,0x1c,0x96,0xe5,0x90,0xb4,0x3f,0x55,0x76,0x86,0xd0,0xc7,
0xbc,0x29,0x93,0x51,0x53,0x15,0x42,0x6e,0xe7,0x31,0x87,0x27,0x82,0xc8,0x4a,0x7d,
0xc,0x22,0x9,0x11,0x82,0x84,0x50,0xb1,0x58,0xb4,0xeb,0x63,0x31,0x28,0x6d,0x43,
0x5,0xde,0x29,0xa7,0x9c,0x82,0xe6,0xe6,0xe6,0xea,0x27,0x7,0x87,0xa3,0x8b,0xb8,
0xa6,0x5,0x92,0xcd,0xac,0x7f,0x9a,0x62,0x30,0x6b,0xc2,0x24,0xd2,0x40,0x85,0x6d,
0x4e,0xa4,0x4d,0xb5,0x9e,0xa,0xa5,0xa8,0xe1,0x50,0x71,0x98,0xe4,0xa0,0x19,0xd,
0xfc,0x63,0x4,0x3c,0x46,0xa0,0x91,0x5a,0xc0,0xcc,0xf1,0xe3,0xad,0xb1,0xab,0x21,
0xa8,0x51,0x38,0x38,0x1c,0xc,0x67,0x9d,0x75,0x16,0x2e,0xb8,0xe0,0x2,0x3b,0x97,
0x26,0x2d,0x48,0x6b,0x1c,0x8b,0x41,0x6d,0x41,0x47,0x29,0x4d,0x2d,0x2d,0x2d,0xb6,
0xd7,0xb7,0x6b,0x1f,0xe,0xc7,0xa,0xb2,0x14,0x4,0xd,0xf6,0xd0,0x48,0x39,0x79,
0xfb,0xa7,0xb4,0x8d,0x43,0x46,0xac,0x61,0xda,0xbc,0x4e,0x3c,0xde,0x77,0xe8,0xfe,
0x8a,0xc3,0x72,0x2b,0x19,0x74,0xbb,0xfa,0x1e,0x7c,0x6,0xa4,0xb0,0xb1,0x77,0x0,
0xbf,0x7e,0xf4,0x31,0xd3,0x94,0xd4,0xe0,0x8f,0x86,0x79,0x38,0xda,0xe1,0xdc,0x4a,
0x7,0x42,0x16,0x83,0x4,0xa5,0x5c,0x2d,0xb7,0xde,0x7a,0x2b,0xee,0xb9,0xe7,0x9e,
0x3,0xb4,0xeb,0xb1,0x4,0xa5,0x4b,0xe4,0x30,0x7b,0xf6,0x6c,0x5c,0x75,0xd5,0x55,
0x36,0x2a,0x6b,0x24,0x93,0x83,0x73,0x2b,0x8d,0x6e,0xa4,0x2a,0x94,0xc7,0xcc,0xc2,
0x80,0x42,0x25,0x53,0xae,0x60,0x5c,0x2a,0x87,0xe7,0x5d,0x70,0x26,0xf2,0x12,0x46,
0x2c,0x39,0x4f,0xaa,0xbd,0xba,0x87,0xf5,0xf1,0x10,0x5,0xcf,0xe1,0x93,0xc3,0x7e,
0x18,0x8,0x42,0xfc,0xfa,0xee,0xfb,0xb0,0x99,0x82,0xa9,0x98,0xd1,0xda,0x7f,0x21,
0x32,0x8c,0xc4,0xa1,0x55,0xa5,0xb1,0x9,0x47,0xe,0x4f,0xe,0x91,0x85,0xc2,0x58,
0x25,0x7,0x59,0xd3,0xb1,0xb,0x6d,0x34,0xa4,0xd1,0x91,0xc3,0x68,0x47,0x80,0xd0,
0xdc,0x46,0x40,0x7e,0x60,0x0,0xcf,0x3e,0x6b,0x31,0xa6,0x35,0x35,0xc1,0xe3,0xb5,
0xa7,0x8a,0xa7,0xfe,0xcb,0x2a,0x3c,0x36,0x80,0xf9,0x73,0x4e,0x65,0x6b,0x28,0x1b,
0x31,0x24,0x68,0xd7,0xc4,0x26,0x8e,0x83,0xc3,0xc1,0x10,0xbb,0x5c,0x24,0x3c,0xc7,
0x62,0x10,0x39,0xeb,0x38,0x56,0xc9,0xcf,0x61,0xa4,0x21,0x22,0x6,0x8f,0x24,0xde,
0xd6,0x58,0x8f,0x71,0x8d,0x4d,0x47,0x2c,0x87,0x8f,0x98,0x1c,0xb4,0xa8,0xd3,0xc4,
0x96,0x46,0xb4,0x33,0x42,0x9a,0x64,0xe1,0x31,0x42,0xea,0x97,0x70,0x70,0x78,0x32,
0x48,0x80,0x8e,0xd5,0x20,0x38,0x62,0x70,0x38,0x5e,0x90,0xc7,0x28,0x49,0x62,0x48,
0xfb,0x25,0xcc,0x9a,0x30,0x81,0x72,0x58,0x9b,0xf8,0x1c,0x59,0xfd,0x3b,0x72,0x72,
0x60,0x3b,0xc8,0xb1,0x31,0xcc,0x9a,0x32,0xd9,0x36,0x94,0x48,0x84,0x15,0x24,0x15,
0x53,0x7,0x7,0x7,0x7,0x87,0xe3,0x2,0xa9,0x23,0x89,0xc0,0x87,0x57,0x2a,0x60,
0x46,0xfb,0x38,0xa4,0xe5,0xaa,0x23,0x41,0x1c,0x9,0x8e,0x98,0x1c,0x34,0x6c,0xca,
0x4b,0x84,0x18,0xd7,0xdc,0x82,0xb0,0x5c,0x26,0x5b,0xa5,0x48,0x11,0x47,0xfc,0x58,
0x7,0x7,0x7,0x7,0x87,0x43,0x44,0x85,0x52,0x37,0x24,0x39,0xcc,0x9f,0x37,0x7,
0xb9,0xb4,0x7,0x4f,0x3d,0x9a,0x27,0xda,0xad,0x14,0xa6,0x92,0x48,0x24,0x3d,0x4c,
0xcd,0xa6,0x71,0xd1,0xf4,0xa9,0x24,0x88,0x2,0xba,0xf2,0x6e,0xf5,0xc9,0x63,0xd,
0xf9,0x13,0x63,0x9f,0xa2,0xe,0xd1,0xcc,0xf8,0xa8,0x93,0x57,0xfe,0xfc,0xe1,0x5c,
0x1d,0x2e,0xb8,0x70,0xb0,0xa0,0x8e,0xe8,0x78,0x80,0x40,0x1c,0x1c,0x46,0xf,0xb4,
0xa4,0x51,0x63,0xb6,0x16,0x8b,0xa7,0x9e,0x82,0x9c,0x3e,0xd8,0xf6,0x6f,0xd5,0x2f,
0x9f,0x22,0x8e,0xdc,0x72,0xb0,0xfe,0x5,0xfd,0x9f,0xc0,0xac,0x69,0xd3,0x50,0x97,
0x49,0x23,0x59,0x8c,0x66,0x86,0x3a,0x1c,0x5f,0x24,0x35,0x12,0xa4,0x54,0xb2,0x8e,
0x50,0x8d,0x5c,0x72,0xc1,0x85,0x43,0xd,0x52,0x28,0x8e,0xd6,0xa8,0x21,0x87,0xe3,
0x8f,0x5c,0x39,0xc0,0xc4,0xd6,0x66,0xf3,0xe4,0xa8,0x7,0x82,0x94,0x7f,0xa4,0x86,
0x83,0x9e,0x65,0x4f,0x7b,0xca,0x88,0xbb,0x17,0xa4,0xc5,0x16,0xf9,0xa8,0x25,0x9b,
0xb6,0xe0,0xbe,0xb5,0xeb,0x10,0x52,0x13,0x89,0x1f,0x7d,0xb2,0x55,0xb8,0xe3,0x31,
0x94,0xb5,0x50,0x28,0x21,0x9d,0xcd,0x61,0xfa,0xf4,0x99,0xe8,0x1f,0x28,0xa0,0xc2,
0x3c,0xd6,0xdc,0x93,0x69,0x53,0xa6,0xd8,0xb0,0xc4,0x78,0x48,0xa2,0x83,0xc3,0xa1,
0x40,0x23,0xc7,0x56,0xaf,0x5e,0x6d,0xe7,0xaa,0x3b,0x22,0x8a,0xcd,0x9b,0x37,0x22,
0x9b,0x4d,0x5b,0xe3,0x76,0x43,0x59,0x47,0x1e,0x62,0xab,0x4f,0x79,0xd7,0x58,0xec,
0xc7,0x33,0xce,0x3b,0x17,0x13,0x6b,0xb2,0xc8,0x28,0x2f,0x35,0x84,0xd5,0x86,0xb6,
0x3e,0xf5,0x7c,0x3d,0x6a,0xe4,0xa0,0x4e,0xe8,0x12,0x85,0xd3,0xae,0x4a,0x80,0x1b,
0x6e,0xbf,0x13,0xfd,0x14,0x5c,0x8e,0x1c,0x8e,0x1d,0x39,0x84,0x41,0x5,0xfc,0x87,
0x6f,0x7f,0xe7,0xdf,0xf1,0x99,0xcf,0x7e,0xe,0x1,0xdf,0x61,0xda,0x9f,0x16,0x7a,
0x63,0x7e,0xeb,0xdc,0xc1,0xe1,0x50,0xa1,0x3a,0x13,0xb7,0x53,0xd5,0x9d,0x2b,0xaf,
0xbc,0x12,0xff,0xfd,0xdf,0x3f,0xe2,0x35,0x56,0x32,0x47,0xe,0x23,0x12,0x71,0xbe,
0x89,0xd8,0x9f,0x36,0xbe,0xd,0xb,0xe7,0xcc,0x42,0x3a,0x2c,0xc3,0x4b,0xa5,0x28,
0x69,0x34,0x21,0xf9,0xc8,0xc8,0xe1,0xc0,0x52,0x7c,0xa,0x30,0xe,0x60,0xe5,0xf1,
0x58,0x89,0x6a,0xa8,0x75,0x9c,0x36,0x7b,0x96,0x45,0x7c,0x2c,0x4f,0x72,0x3a,0xd1,
0x10,0xf1,0x2a,0x7f,0xdf,0xf2,0x96,0xb7,0xe0,0xfc,0xf3,0xcf,0x47,0x92,0x15,0x42,
0xe5,0xe0,0xf2,0xdb,0xe1,0x48,0xa1,0x7d,0xaf,0xb5,0xf7,0x86,0xc3,0xc8,0x86,0x56,
0xa4,0x10,0x31,0x88,0x14,0x4f,0x9b,0x39,0x1d,0x19,0x2a,0xe6,0x9a,0xc,0x17,0x51,
0xb4,0x94,0xc3,0x88,0xaa,0x9f,0x2a,0x8e,0xd8,0x72,0x38,0x18,0x7e,0x70,0xd7,0x9d,
0xe8,0x26,0xf7,0xf4,0xf3,0xe9,0xe9,0x50,0x9b,0x4e,0x0,0xc5,0xd4,0xc9,0x21,0xb8,
0x8e,0x8b,0xe5,0x20,0x5e,0xaf,0x12,0xc1,0xb6,0x6d,0xdb,0x70,0xdd,0x75,0xd7,0xe1,
0xf,0x7f,0xb8,0x19,0x3b,0xb6,0xef,0xa2,0x36,0xa6,0x5,0xed,0xec,0x2b,0x7,0x87,
0x43,0x42,0x8a,0x1a,0xfd,0xb8,0x71,0xed,0x38,0xfb,0xec,0xb3,0xf0,0x17,0xaf,0x7d,
0x25,0xa6,0x4e,0x9d,0x6a,0xc2,0x47,0xa,0x48,0x4,0x67,0x39,0x8c,0x14,0x24,0x12,
0x45,0x94,0xab,0x4b,0xc0,0xd7,0x14,0x8a,0x38,0x6b,0xd2,0x54,0x9c,0x37,0x67,0xf6,
0x11,0xcf,0x6b,0xd8,0x1f,0xc7,0x8c,0x1c,0x6e,0x5f,0xb7,0xe,0xf7,0x33,0x94,0x73,
0x79,0x24,0x49,0xc,0x99,0xa0,0x82,0xb2,0x23,0x87,0x63,0x42,0xe,0x5a,0xa3,0x48,
0x9d,0x8a,0x35,0x35,0x35,0xd6,0xc8,0x6c,0x13,0x7b,0xb9,0x3,0x1c,0x1c,0xe,0x15,
0x15,0xb9,0x95,0x60,0xf5,0xc8,0x67,0x48,0xa7,0xd3,0x26,0xb4,0x75,0x8c,0xe0,0xc8,
0x61,0xa4,0x20,0x91,0x60,0x19,0x31,0xbf,0xb4,0xed,0x67,0x6d,0xb1,0x8c,0x17,0x5d,
0x7c,0x11,0xda,0xb2,0xd9,0x23,0x70,0x20,0xd,0x8f,0x3,0x4b,0xf1,0x28,0xe1,0xd4,
0xf1,0xed,0xa8,0x67,0x6c,0xbd,0x40,0x5,0xcf,0x4a,0x93,0x3c,0xda,0x51,0x77,0x88,
0x21,0x7e,0xb7,0xa1,0x88,0xcc,0xe8,0x20,0xf0,0x51,0x2a,0x17,0xad,0xc1,0xb9,0xe0,
0xc2,0xa1,0x86,0x20,0xf4,0xe1,0xb3,0xee,0xc8,0x52,0x50,0x10,0x49,0x38,0x8c,0x4c,
0x84,0x24,0xf2,0x54,0x98,0x80,0x57,0xf6,0x71,0xd6,0xbc,0x39,0xa8,0xf1,0x24,0x60,
0x8f,0xbe,0x32,0x78,0xcc,0x2c,0x7,0x69,0xb3,0xab,0x7b,0x7b,0x71,0xd3,0xb2,0x15,
0xf0,0x29,0xb8,0x68,0xa0,0x52,0xf7,0x38,0x39,0xb4,0xd9,0xe3,0x6d,0x39,0x6c,0xd9,
0xb2,0xc5,0x36,0xd1,0xb9,0xfe,0xfa,0x1b,0xb0,0x62,0xc5,0xa3,0x46,0x16,0x65,0x6a,
0x64,0xe,0xe,0x87,0x8a,0x74,0x26,0x83,0x53,0x4f,0x3d,0x15,0x97,0x5f,0x7e,0x39,
0x5e,0xf1,0xb2,0x97,0xd8,0xb9,0x46,0xbd,0x39,0xb7,0xd2,0xc8,0x43,0x10,0x94,0x6c,
0x99,0xa2,0x56,0x96,0xcf,0x73,0xce,0x39,0x13,0x2d,0x94,0x33,0xda,0xc0,0xe7,0x68,
0xf7,0x37,0x1e,0x33,0x72,0x28,0xf7,0xf5,0x61,0x4f,0x26,0x8b,0x3f,0x2c,0x7f,0x14,
0xdb,0x7a,0x7b,0x90,0x4a,0x32,0x5,0x95,0x93,0x63,0x4,0xcd,0xf1,0x26,0x87,0xcb,
0x2f,0x7f,0x26,0x1e,0x79,0x64,0x19,0xb3,0x57,0x4f,0x64,0xe3,0x63,0x83,0x73,0x43,
0x59,0x1d,0xe,0x7,0xb2,0x14,0xb2,0xd9,0xac,0xcd,0x91,0xa9,0xaf,0x4b,0x5b,0x1f,
0xd6,0xa2,0x45,0x8b,0x6,0xf7,0xdd,0x70,0xe4,0x30,0x72,0x50,0x81,0x8f,0x4c,0x0,
0x9c,0x31,0x73,0x6,0xce,0x9a,0x3a,0x19,0xa9,0x62,0x37,0xc9,0xbd,0xfe,0xa8,0x93,
0xc3,0x81,0xa5,0x78,0x94,0x90,0xae,0xa9,0x45,0x4b,0xda,0xc3,0x19,0x93,0xb4,0xce,
0x87,0x8f,0x3e,0x56,0xa,0x87,0xa3,0x87,0x62,0x29,0xea,0x67,0xf8,0xc2,0xe7,0xbf,
0x84,0x87,0x1e,0x5c,0x4a,0x4b,0x81,0xd6,0x2,0x3f,0x7,0x41,0x99,0xd,0x5a,0x95,
0x44,0x44,0xec,0x82,0xb,0x87,0x16,0x3c,0x4f,0xcb,0x8b,0x4b,0x50,0xfb,0xe8,0xed,
0x2b,0xe1,0x63,0x1f,0xff,0x34,0x12,0x49,0xed,0x23,0x96,0xb0,0xd,0x64,0x1c,0x46,
0xe,0xc2,0xb0,0x82,0xf6,0x5c,0x6,0x67,0x4d,0x9e,0x80,0x5c,0x18,0xc0,0xcb,0xd6,
0x52,0x51,0xac,0x7e,0x79,0x14,0x71,0xcc,0x2c,0x7,0x69,0xca,0xaa,0x58,0x3d,0x7c,
0xfc,0x6f,0x1e,0x7c,0x8,0x5b,0x6,0x8a,0xa6,0x51,0x9f,0xc,0x38,0x1e,0x96,0x43,
0xa1,0xac,0x65,0xa1,0x81,0x59,0xa7,0x9c,0x8a,0x42,0x21,0x1a,0x9d,0x24,0xcd,0xa1,
0xbd,0xbd,0xdd,0xb4,0xbd,0x63,0x54,0xac,0xe,0x63,0x14,0xd2,0xde,0x77,0xee,0xdc,
0x39,0x78,0x2e,0x45,0x63,0xd7,0xae,0x1d,0xc8,0x64,0x58,0x89,0xdd,0x3c,0x87,0x11,
0x85,0x1c,0x15,0xc0,0xa7,0x2d,0x98,0x8f,0x53,0x9a,0xea,0x91,0x65,0xbe,0x29,0xcf,
0xb5,0x9e,0xdd,0xa8,0x71,0x2b,0x45,0xc2,0x90,0x42,0x8c,0x87,0x4d,0x3d,0xfd,0xb8,
0x6d,0xe9,0x32,0x74,0x55,0xaf,0x1d,0xed,0x44,0x8c,0x34,0x1c,0x17,0xb7,0x52,0x42,
0x3b,0xab,0x85,0x68,0xa8,0x6f,0x42,0x36,0x9b,0xb7,0x3c,0x95,0x4b,0xe0,0x77,0xbf,
0xfb,0x9d,0x35,0x12,0x35,0x38,0x7,0x87,0x43,0x85,0x46,0x25,0x69,0xb,0x57,0xb9,
0x23,0x55,0x97,0xd4,0x67,0xa8,0x19,0xd2,0x8d,0x8d,0xf5,0x8e,0x1c,0x46,0x8,0x34,
0xa7,0x41,0x7d,0x40,0xf3,0x6a,0xf3,0xb8,0x90,0xf2,0xa3,0x81,0x82,0x46,0x93,0xdc,
0xa2,0xff,0x35,0xda,0x6c,0x94,0x90,0x83,0x44,0x53,0x92,0xe6,0x8f,0xcf,0xd0,0xc7,
0x37,0xdc,0xbf,0xf2,0x71,0x2c,0xed,0xdc,0x63,0xdf,0xe9,0x95,0x63,0x99,0x20,0x8e,
0x7,0x39,0x8c,0xf6,0x9d,0xe0,0x1c,0x46,0x16,0xdc,0x4e,0x70,0x23,0x1f,0x71,0x3e,
0xbd,0x7a,0xfe,0x7c,0xb4,0x34,0xe4,0x91,0x36,0x1,0x92,0xb0,0xed,0x9a,0x95,0xe3,
0x47,0x5b,0xa2,0x1e,0x58,0x8a,0x47,0x9,0xb1,0x68,0xf2,0x78,0xa6,0xb5,0x3e,0x16,
0xcc,0x9a,0x85,0x94,0x55,0x0,0x7e,0xc3,0x83,0x9,0x4b,0x9,0x30,0x27,0xc4,0x1c,
0x1c,0x1c,0x1c,0x86,0x87,0x44,0x24,0xf,0x5a,0x1e,0x47,0xb2,0x72,0xf6,0xcc,0x99,
0x18,0x57,0x5f,0x4f,0xb9,0x4a,0x8b,0xc1,0x8f,0x67,0x43,0x1f,0x1b,0x1c,0x33,0x72,
0x30,0x52,0xd3,0xdc,0x6,0x2f,0x85,0xbc,0x97,0x40,0x7b,0x2e,0x85,0x8b,0xa7,0x4d,
0x43,0x2e,0x28,0xa2,0x94,0x2c,0xc3,0x4f,0x69,0xf5,0xf,0x7,0x7,0x7,0x7,0x87,
0x83,0x21,0x23,0xef,0x4b,0x32,0x89,0x90,0x66,0x42,0x73,0x32,0xc4,0xf9,0x4d,0xb5,
0xd0,0xc0,0xcf,0x44,0x2a,0x85,0x84,0x97,0xe5,0x1d,0xb6,0x73,0xc3,0x51,0xb7,0x1a,
0x84,0x63,0x46,0xe,0xc3,0x61,0x72,0x7b,0x1b,0xda,0x6a,0xeb,0x50,0x13,0x54,0xe0,
0x31,0xd1,0x11,0xe7,0x1d,0x8b,0x64,0x39,0x38,0x38,0x38,0x8c,0x7e,0x94,0x28,0xf9,
0x93,0x95,0x0,0xd9,0x72,0x9,0x67,0xcc,0x9a,0x8d,0xfa,0xb4,0x8,0xe1,0xf8,0xe0,
0xb8,0x92,0x43,0x43,0xc6,0xc3,0xb9,0x73,0xe7,0xa0,0xa6,0x1c,0xc0,0xd3,0x72,0x1a,
0x34,0x93,0x62,0x8a,0x70,0x38,0xf9,0xa0,0x7e,0x91,0xb1,0x1c,0x1c,0x1c,0x8e,0x14,
0x3e,0x2,0xa4,0xfd,0x2,0x66,0x36,0xd6,0x61,0xf6,0xf8,0x76,0x64,0x8e,0xa3,0xc8,
0x3e,0xae,0xe4,0x90,0xf4,0xcb,0x68,0xcf,0xd7,0xe2,0xb4,0xc9,0xd3,0x91,0x2a,0x87,
0xb6,0x7,0x1,0x8e,0x42,0x47,0x94,0xc3,0xe8,0x84,0x3a,0xd7,0xe2,0xe5,0x1a,0xc6,
0x5a,0x18,0xcb,0x3,0x2e,0x1c,0x8e,0x1f,0xe4,0x32,0xaa,0xd,0x2b,0x38,0x7b,0xc6,
0x4c,0xe4,0x10,0xda,0xce,0x9b,0xc7,0xb,0xc7,0x95,0x1c,0xd2,0x89,0x10,0xa9,0x30,
0xc4,0xbc,0x69,0x53,0x90,0x4f,0x69,0xc8,0x9c,0xae,0x4a,0xc3,0x8a,0xc2,0xd0,0x3f,
0x87,0xb1,0x85,0xa1,0x9a,0xb4,0x46,0x5d,0xf4,0xf5,0xf7,0x31,0xf4,0xa3,0x7f,0x60,
0x6c,0x86,0xde,0xde,0x5e,0xf4,0xf5,0xf5,0xd9,0x8,0xb2,0x18,0xce,0x9a,0x70,0x38,
0x38,0xaa,0x72,0x50,0x75,0xa4,0x1a,0xec,0xa,0xeb,0xcf,0xec,0xa9,0x53,0xd0,0x52,
0x93,0x53,0xc3,0x39,0xae,0x12,0xfb,0x98,0xd,0x65,0x1d,0x16,0xb6,0xde,0x78,0x12,
0x7e,0x25,0x81,0x95,0x9d,0x7b,0xf0,0x87,0x87,0xee,0x47,0x22,0x13,0xd,0xc3,0x14,
0x2,0x1e,0x34,0x4,0x34,0x19,0x52,0xa3,0xac,0x1c,0x57,0xde,0x3a,0xaa,0x70,0x43,
0x59,0x87,0x47,0x34,0xb1,0x6a,0x17,0x3e,0xfc,0xd1,0x8f,0xd8,0xb0,0xc6,0x93,0x41,
0x58,0x36,0x37,0x37,0xe3,0xd5,0xaf,0x7e,0x35,0x9e,0xf9,0xcc,0x67,0x56,0x1b,0x7d,
0xf5,0x8b,0x11,0x6,0x37,0x94,0xf5,0x44,0x43,0xb3,0x15,0x94,0xcf,0xd1,0xe6,0x3d,
0x48,0x69,0xc3,0x1e,0x60,0x46,0x53,0x6,0x97,0x9e,0xbe,0x8,0x2d,0xfc,0xd6,0x43,
0xc0,0x76,0xaf,0xbc,0x22,0x51,0x1c,0x7,0x1c,0x67,0x72,0x50,0x72,0x13,0x24,0x7,
0x60,0xf,0x5f,0xfb,0xc0,0x9a,0x55,0x78,0x6c,0xfb,0x2e,0x73,0x2f,0x69,0x83,0xfc,
0xbd,0xd,0x47,0x1f,0x1c,0x39,0x3c,0x11,0x46,0x23,0x39,0x74,0x75,0x75,0xe1,0x1d,
0xef,0x78,0x7,0xd6,0xac,0x5b,0x6b,0x42,0x41,0xee,0x97,0xb1,0x8a,0x38,0x6d,0x9a,
0x98,0x98,0xcb,0xe5,0xf0,0xcf,0xff,0xfc,0xcf,0x58,0xbc,0x68,0xb1,0xd5,0xec,0x91,
0x8,0x47,0xe,0x27,0x18,0x6c,0xaf,0xca,0x35,0xc9,0x8d,0x50,0x4a,0x34,0x3f,0x2b,
0x5f,0x5e,0xbc,0x70,0x1,0xa6,0x35,0x35,0xc3,0xb3,0x3c,0xa2,0xfc,0x54,0x59,0x24,
0x32,0xd1,0x6f,0x8e,0x31,0x8e,0x6b,0xeb,0x14,0x37,0x54,0x28,0xd0,0x34,0xc2,0x35,
0xcf,0x44,0x2e,0x9c,0x32,0x15,0x19,0xf1,0x85,0x8d,0xd7,0x8d,0x28,0x41,0xab,0xd,
0x4a,0xb8,0x3a,0x8c,0x3d,0xdc,0x7a,0xeb,0xad,0x58,0xb3,0x66,0x8d,0x9,0x4c,0xcd,
0xc8,0x15,0x81,0x8d,0xe5,0x20,0x82,0xd0,0x51,0xa4,0xfd,0x81,0xf,0x7c,0x80,0x9f,
0x47,0x2a,0x35,0x38,0x8c,0x1c,0xb0,0xee,0x84,0x65,0xa4,0xfd,0x32,0x16,0x4f,0x9b,
0x4e,0xcb,0xa1,0x19,0x69,0xca,0x43,0x6d,0xf9,0x19,0xed,0xb,0x7d,0x24,0x2a,0xe5,
0xe1,0xe1,0xb8,0x5a,0xe,0x95,0x80,0x9,0x27,0x29,0x88,0x5,0xac,0x1,0xf1,0x6f,
0xc5,0xce,0x1e,0xdc,0xb5,0xe2,0x11,0xf4,0xa5,0xf8,0x89,0x5a,0x85,0x47,0xb2,0x90,
0x8e,0x22,0xcd,0x78,0xb4,0xc2,0x59,0xe,0x7,0x42,0x82,0xf2,0xb3,0x9f,0xfd,0x2c,
0x6e,0xb8,0xe1,0x6,0xe6,0x42,0x14,0x37,0xb9,0x5c,0xa4,0xed,0x8d,0x45,0xc8,0x5a,
0xd0,0x86,0xfd,0x2a,0x87,0x58,0x2b,0xbe,0xe1,0xfa,0xeb,0xd1,0xda,0xd2,0x6a,0xe7,
0x23,0xd,0xce,0x72,0x38,0xf1,0xb0,0xbc,0x4b,0x4,0xc8,0x90,0x18,0x26,0x66,0x6b,
0x70,0xf9,0x19,0x67,0xa3,0x31,0xa3,0xab,0xda,0xb,0x5a,0x2d,0x5c,0x82,0xd3,0x3e,
0x1e,0x17,0x1c,0x5f,0x72,0xa0,0x30,0xfb,0xff,0xed,0x7d,0x59,0x8c,0x64,0xd7,0x79,
0xde,0x77,0xd7,0xaa,0xea,0x65,0x7a,0x7a,0x99,0x9e,0x5e,0x66,0xe9,0x9e,0x85,0xd3,
0xcd,0xd9,0xb8,0x98,0x9b,0x68,0x52,0xe2,0x22,0x93,0x94,0x13,0x4,0x91,0xf2,0x60,
0x20,0x8,0x10,0x5,0x10,0x62,0x38,0x4f,0x81,0x5e,0x14,0x20,0x1,0x12,0x29,0xa1,
0xd,0x48,0xb2,0x1f,0x82,0x3c,0x28,0xb,0x14,0xb,0x79,0x89,0x65,0xc7,0x91,0x65,
0x3d,0xd8,0x26,0xcd,0xc0,0x89,0x19,0x47,0xb4,0x6c,0x51,0x24,0x47,0x24,0x35,0x33,
0x1c,0x52,0x9c,0x7d,0x7a,0x7a,0x99,0xde,0xaa,0xee,0x96,0xef,0x3b,0xb7,0xaa,0x7b,
0x38,0x9b,0x7a,0xa9,0xee,0xae,0xaa,0x3e,0x5f,0xcf,0x99,0x7b,0xeb,0xd6,0xad,0xaa,
0x7b,0xcf,0xfd,0xff,0xff,0xfb,0xff,0xf3,0x9f,0x45,0x7f,0x46,0xe,0x24,0x10,0x2c,
0xd3,0x8e,0x8f,0x1f,0x9d,0xfe,0x10,0x6f,0x5d,0xf9,0x18,0x71,0xe0,0x99,0xd5,0x8d,
0x9c,0x8c,0x1e,0x97,0x25,0x87,0x7b,0xa2,0xd9,0xc8,0x41,0x46,0xe7,0x2b,0x5f,0xf9,
0xa,0x5e,0x7b,0xed,0x35,0x5e,0x6a,0x3e,0xf,0xcc,0x6f,0xfc,0xb3,0xdf,0xc0,0x43,
0xf,0x3d,0x54,0x3d,0xa3,0xb5,0xd0,0xd1,0xd1,0x81,0x2f,0x7d,0xe9,0x4b,0x98,0x9c,
0x9c,0x34,0xcf,0x42,0xc6,0xf7,0xbb,0xff,0xfd,0xf7,0x30,0x30,0x30,0x50,0x3d,0xa3,
0xb1,0x60,0xc9,0x61,0x6b,0xa1,0x7a,0x53,0xf1,0x10,0xa3,0x58,0x2e,0xe3,0xb9,0xf1,
0xe3,0x38,0x44,0x47,0x22,0x2e,0xe4,0x96,0x43,0x13,0xeb,0xf9,0xd9,0xe6,0x92,0xc3,
0xa6,0x5a,0x60,0x87,0x61,0x75,0xde,0xcd,0x8f,0xc5,0xa3,0x10,0x6,0x21,0xda,0xb3,
0x8,0x47,0x47,0x6,0x51,0x50,0x9b,0x53,0x94,0x18,0xc3,0xa1,0x3a,0xb0,0x68,0x2d,
0x48,0xf9,0x65,0x4,0x8c,0x21,0xe0,0x6b,0xad,0x5a,0x97,0xc6,0x9,0xe2,0x4a,0xd4,
0x92,0x45,0xf9,0x15,0x41,0xf7,0xdb,0xca,0xb9,0x15,0x8b,0xfa,0x20,0x35,0xce,0x5c,
0x6,0x2f,0x8a,0xf1,0xc0,0xe1,0x3,0xd8,0xd3,0xdf,0x4d,0xfb,0x98,0x98,0xf1,0xcf,
0x1,0x8b,0xa6,0xcb,0xc8,0x15,0xc7,0x9c,0xbe,0x29,0xd8,0xdc,0x84,0xf4,0x9d,0xc0,
0xca,0x98,0xa5,0xa1,0x38,0x37,0x3b,0x8b,0xbf,0x78,0xfb,0x6d,0xdc,0x88,0x2a,0x28,
0x14,0x8a,0xac,0xa7,0xe6,0x55,0x28,0x1b,0x39,0xdc,0xe,0x19,0xc8,0xaf,0x7d,0xed,
0x6b,0xf8,0xc1,0xf,0x7e,0xb0,0xe4,0x25,0x8e,0x8f,0x8f,0x9b,0xa6,0xa5,0x56,0x44,
0x10,0x6,0xf8,0xcb,0xd7,0x5f,0xc7,0xfc,0xfc,0xbc,0xf1,0xc6,0xb5,0x90,0xce,0xef,
0x7f,0xf7,0xbb,0xe8,0xeb,0xed,0xab,0x9e,0xd1,0x58,0xb0,0x91,0xc3,0xd6,0x42,0xf6,
0x21,0x4d,0x22,0xec,0x65,0xc4,0xf9,0xd9,0x7,0x4e,0xa2,0x3d,0x49,0x10,0x2a,0x31,
0x1d,0x6e,0x4e,0xcf,0xa4,0x3b,0x61,0xeb,0xc9,0x21,0x61,0xa5,0x50,0x2e,0x16,0x18,
0x55,0xbc,0xfe,0xb3,0xd3,0xf8,0xe9,0xa5,0x8b,0x34,0xac,0xe2,0x49,0x4b,0xe,0xf7,
0x42,0xb3,0x91,0x83,0xf0,0xed,0x6f,0x7f,0x1b,0xdf,0xfa,0xd6,0xb7,0xaa,0xd1,0x23,
0x23,0xc4,0x6,0xbc,0xc6,0x7a,0x21,0x91,0x31,0xe5,0x3d,0x6a,0x6d,0xd,0x6d,0x65,
0x74,0x5f,0xfd,0xb3,0x57,0x6e,0x5a,0x59,0xad,0xb1,0x60,0xc9,0x61,0x6b,0x20,0x1d,
0x50,0xd1,0x22,0xca,0x41,0x79,0x11,0x2f,0x3e,0xfe,0x4,0xf6,0xb6,0xb7,0x21,0xe0,
0x31,0xc6,0xd6,0xac,0xca,0xad,0x93,0x97,0x2d,0xb7,0xc0,0x31,0x49,0x41,0xcd,0x48,
0x45,0x56,0xc6,0x89,0xfd,0xfb,0xd1,0x57,0x68,0x87,0x9b,0x77,0x5e,0xb2,0x68,0x31,
0xbc,0xf4,0xd2,0x4b,0x66,0x31,0xa2,0x56,0x27,0x6,0xa1,0x46,0x80,0xea,0xb3,0xae,
0xb5,0x11,0xbe,0xfc,0xe5,0x2f,0x1b,0x3,0x6c,0x61,0x71,0x33,0x44,0x8c,0x82,0x9f,
0xa4,0x78,0xfa,0xe8,0x31,0xf4,0x87,0x5,0x4,0x74,0xfa,0xe4,0x30,0x57,0xb6,0xb8,
0x77,0xdb,0x96,0x47,0xe,0x5a,0x6,0xdf,0xa3,0x57,0xe2,0xd1,0xe7,0x98,0x63,0x8d,
0x4c,0x54,0x52,0xfc,0xe9,0x9b,0x7f,0x8b,0x59,0x7a,0x17,0x79,0xd5,0x68,0xc,0x4,
0x8d,0x9,0xf7,0x9a,0x25,0x96,0xb0,0x91,0xc3,0xed,0x90,0xb1,0x94,0xa1,0x7c,0xe3,
0x8d,0x37,0xf0,0xcd,0x6f,0x7e,0x13,0x33,0x33,0x33,0xf9,0x60,0x9f,0x56,0x85,0x14,
0x9b,0xcf,0xa0,0xbd,0xbd,0x3,0x5f,0xf8,0xc2,0xe7,0xf1,0xc5,0x2f,0x7e,0x91,0x24,
0x51,0x31,0xb9,0x96,0x46,0x84,0x8d,0x1c,0x36,0x11,0xd2,0x4d,0x89,0x87,0x6a,0x8b,
0xfb,0xe,0x89,0x61,0xb4,0xb7,0x17,0xcf,0x1e,0x39,0x82,0x12,0xdf,0x60,0x15,0x19,
0xfb,0x11,0xf1,0x1c,0xbd,0xde,0x2a,0x6c,0x7d,0xb3,0xd2,0x4d,0xa8,0x19,0x8b,0xbf,
0xb9,0x74,0x11,0x7f,0xfd,0xb3,0x33,0x14,0xa4,0x0,0x15,0x1a,0xc1,0x48,0xd1,0x5,
0x2b,0xc9,0x6f,0x30,0x83,0x77,0x37,0x58,0x72,0xb8,0x1d,0x32,0x0,0x32,0x3c,0x7a,
0xc6,0xba,0x4e,0x8d,0x75,0x10,0xea,0x61,0x14,0x1a,0x15,0xba,0x47,0xdd,0x73,0x5b,
0x5b,0x9b,0x31,0x82,0x32,0xc0,0x8d,0xf6,0x5c,0x6a,0xb0,0xe4,0xb0,0x79,0x50,0x5d,
0x66,0x6e,0x4a,0xa7,0x37,0x31,0x53,0x72,0xf7,0x38,0x1,0x5e,0x7a,0xf4,0x31,0x74,
0xfb,0x8d,0xd5,0xe4,0x78,0xfb,0x53,0xdc,0x42,0x48,0x40,0x54,0x8e,0xf6,0xf,0xe1,
0xe8,0xee,0x21,0x44,0x69,0x19,0x65,0xd,0x7c,0x20,0x82,0x7c,0x63,0xd1,0xa4,0x50,
0xe4,0x20,0x23,0xa0,0xad,0x92,0xb3,0x32,0x98,0x22,0x31,0x8d,0x7,0x68,0xd5,0xa2,
0xee,0xac,0xba,0x57,0xa1,0x91,0x89,0xc1,0x62,0x73,0x61,0x5a,0x42,0xc8,0x85,0x32,
0x6d,0x6d,0xdc,0x79,0x74,0x7c,0x1c,0x25,0x3a,0x7b,0x8d,0x86,0x86,0xba,0x22,0x19,
0xe,0x15,0x55,0xd8,0x3,0x7,0x46,0xd0,0xdb,0xb1,0x83,0xde,0xb5,0x52,0xd3,0xac,
0x4c,0x4b,0xe,0x2d,0x1,0x19,0xc8,0x9a,0x91,0xac,0x39,0x3,0xad,0x5c,0x24,0xcf,
0x37,0xdf,0xb3,0x85,0x85,0x4c,0x99,0x93,0x38,0xf0,0x2a,0x9,0x8e,0xc,0xd,0x63,
0xa0,0xb3,0x13,0x21,0xa3,0xb3,0x46,0x43,0xe3,0xd1,0x95,0xc0,0xc8,0x36,0x64,0xf8,
0xf9,0xe4,0xd8,0x38,0xba,0x22,0x56,0x64,0xcc,0x30,0x4c,0xd,0x71,0x16,0x16,0x16,
0x16,0x4d,0xe,0xd,0x66,0xb,0xe2,0xc,0x87,0x6,0xf6,0x60,0x6c,0x64,0x4,0xbe,
0x7a,0xe0,0x38,0x8d,0x97,0x7f,0x6b,0x48,0x8b,0x1b,0xb1,0xa2,0x7c,0xcf,0x41,0x7f,
0xa9,0xd,0x8f,0x1c,0x19,0x47,0xc0,0x10,0x2c,0x75,0x48,0x10,0x35,0xf,0xcc,0x78,
0x61,0xb5,0x62,0x61,0x61,0x61,0xd1,0x98,0x30,0xb9,0x9a,0xaa,0xbd,0xd2,0x9f,0xb2,
0x8f,0x5e,0x16,0xa1,0xaf,0xbd,0x88,0xa3,0xa3,0xfb,0x51,0x62,0x74,0xe9,0x39,0x9a,
0x81,0xb5,0xf1,0x72,0x6f,0xd,0x49,0xe,0x1,0x2f,0x4b,0x69,0x31,0xd,0xff,0xd8,
0xdf,0xd7,0x85,0x43,0x83,0xbd,0x70,0xa2,0x39,0x53,0xb1,0x99,0x92,0x57,0xdc,0xea,
0xc2,0xf3,0x3e,0x4c,0x16,0x16,0x16,0x16,0x8d,0x9,0x7,0x9,0x6d,0x55,0x6a,0x8a,
0xd2,0xa,0xb1,0x9b,0xa1,0xe0,0x46,0x78,0xfa,0x81,0x23,0xe8,0xa3,0xd7,0x5b,0x62,
0x14,0x41,0x7a,0x40,0xb6,0x89,0x13,0xea,0xad,0x14,0x8d,0xd9,0x56,0x63,0x48,0x94,
0x95,0x46,0xdb,0x5f,0x64,0xb4,0xf5,0xe8,0xe8,0x41,0x8c,0xf5,0xed,0xe6,0x91,0x58,
0xfd,0x5e,0x91,0xf2,0xaa,0x4d,0xbb,0x9d,0xb2,0x3a,0x16,0x16,0x16,0x16,0xd,0x8a,
0xc4,0x75,0x11,0xd1,0xee,0x27,0x9a,0x6e,0x3b,0x8e,0xe0,0x2f,0x2c,0xe0,0xc9,0xb1,
0x63,0xe8,0x76,0xb,0x8,0x1b,0x7c,0x16,0x88,0x86,0xbc,0xba,0x3c,0x2e,0xc8,0xf7,
0xa,0xae,0x83,0x9d,0xa4,0xdc,0xc7,0xf,0x1f,0x46,0x17,0xe9,0x21,0x34,0x7c,0xc0,
0x8a,0xae,0x12,0x88,0xc5,0x32,0x94,0xfc,0xd4,0x8,0xdc,0xda,0xc0,0x1a,0xb,0x8b,
0x5f,0x84,0x5a,0xe2,0x5c,0x5d,0x58,0x6b,0xfb,0xb5,0xe3,0x9a,0x56,0xdd,0x62,0x7d,
0x50,0x97,0x73,0x8d,0x79,0x51,0xad,0x86,0x69,0x8c,0x87,0xf7,0x8f,0x62,0xb4,0xbb,
0xf,0x5,0x87,0xf5,0x4d,0x7d,0x65,0x45,0x9b,0xba,0x56,0xa7,0x9b,0x46,0x43,0x43,
0x92,0x43,0x9e,0xb8,0x67,0x65,0xe9,0xea,0x18,0x86,0x69,0x91,0x8b,0x1d,0xbe,0x87,
0x17,0x4e,0x3c,0x84,0x9d,0xae,0xcf,0x43,0x6a,0xbd,0xcb,0xbb,0x84,0x59,0x2c,0xc3,
0x8,0x19,0x5,0x4e,0x4a,0x2d,0x65,0xb7,0xc5,0x96,0x95,0x96,0x9b,0xa7,0xf5,0xd0,
0x6b,0xe5,0xf6,0xe2,0xea,0x58,0x14,0x8b,0x75,0x20,0xd5,0x20,0x37,0x9a,0xb1,0x34,
0xc1,0x7d,0x3,0x43,0xf8,0xa5,0xbd,0x23,0x66,0x7d,0x6,0xb3,0xea,0x25,0x8b,0x46,
0x42,0xcb,0x8a,0x35,0xa2,0x25,0x6b,0xa8,0x41,0x70,0x4b,0xd0,0x15,0x89,0x0,0xc,
0xe3,0xe6,0x5e,0xb0,0xd6,0x82,0x88,0x59,0x93,0x67,0xa6,0x27,0xf1,0xda,0x3b,0x3f,
0x41,0xd9,0xf,0x18,0xb2,0x51,0xb0,0x79,0xbc,0x6,0xb5,0x32,0xe9,0xd5,0x56,0xcf,
0xcb,0xb4,0x19,0x83,0xe0,0x12,0xde,0xa5,0x9e,0xdc,0xfe,0x7d,0x23,0x98,0x9b,0x5f,
0x30,0x37,0xaf,0x47,0x79,0xe4,0xc8,0x11,0x74,0x75,0x75,0x55,0xcf,0xb2,0xb0,0xb8,
0x37,0x6a,0xea,0xaf,0xc1,0x68,0x6f,0xbe,0xf9,0xa6,0x21,0x86,0x38,0x89,0xc,0x59,
0x9c,0x3b,0x77,0x16,0x1d,0xed,0x6d,0x54,0x28,0x25,0x55,0x57,0x66,0xc0,0xf2,0x6f,
0xbb,0x5d,0xff,0xb6,0xc3,0x20,0x38,0xe9,0xf8,0xf2,0x5d,0x54,0x33,0xa2,0x2e,0xef,
0x4d,0xeb,0x33,0xb4,0xb5,0xe1,0xb9,0x93,0x27,0xd1,0x6d,0xf2,0xb,0x3c,0xd7,0xcb,
0xcf,0x54,0xc4,0xa0,0xda,0x5a,0xff,0xdd,0xd7,0x1f,0x8d,0x49,0xe,0x77,0x82,0xc8,
0x22,0x4b,0x50,0x66,0x98,0xf6,0xde,0xd5,0xcb,0xf8,0x8b,0x77,0x4f,0x61,0xde,0x57,
0x42,0x67,0x79,0xd6,0x42,0xdd,0x88,0x49,0x43,0x64,0x5b,0x9b,0xdc,0xd9,0xc,0x72,
0x98,0x5b,0x5c,0x60,0x84,0x50,0xc0,0x6f,0xff,0xf6,0xef,0xe0,0x37,0x7f,0xf3,0xb7,
0xe0,0x91,0x28,0x13,0x12,0xa5,0x22,0x7,0xb,0x8b,0xf5,0x20,0x43,0x84,0xc7,0x1e,
0x7b,0xc,0x7f,0xfc,0xc7,0xdf,0x27,0x49,0x50,0xa1,0x44,0xe,0x74,0xcc,0xf2,0xc6,
0x91,0x7b,0x23,0x37,0x26,0xdb,0x93,0x1c,0xaa,0x4d,0x1e,0x6,0x46,0xdb,0x75,0x4f,
0xd9,0x3c,0xfa,0xbc,0x22,0x5e,0x7a,0xf8,0x11,0x33,0x2,0xda,0x24,0xa6,0xd,0x21,
0x34,0xbe,0x9e,0x36,0x8d,0x25,0x31,0xc6,0x95,0xc4,0xa0,0xb,0xde,0xd3,0xd7,0x8f,
0xfb,0xf7,0xee,0x43,0x1b,0x85,0x2c,0xe2,0x81,0x5a,0x51,0x88,0x26,0xc3,0xbc,0x1d,
0x10,0x86,0x6a,0x23,0xce,0xf0,0xeb,0xbf,0xfe,0x4f,0xf1,0xc8,0x23,0xf,0x9b,0x75,
0x67,0x1d,0x73,0xf3,0x8a,0xb4,0x6c,0xb1,0x65,0xed,0xa5,0xaf,0xaf,0xf,0x5f,0xfd,
0xea,0x57,0xb9,0xbf,0x4d,0x94,0xa9,0x4e,0xa8,0x69,0x5f,0x4c,0xbd,0x54,0x2,0x5a,
0x1d,0x68,0xba,0x2a,0x29,0x9e,0x18,0xbb,0x1f,0x25,0x1a,0xa7,0x7c,0x9,0x64,0x52,
0x83,0xf1,0x60,0x1b,0x1f,0xcd,0x13,0x39,0x54,0xa1,0x45,0x31,0xca,0xac,0xdb,0xd9,
0x2c,0xc6,0xff,0xfb,0xc9,0x8f,0x71,0x76,0x36,0x42,0x45,0x8c,0xed,0x3a,0xf0,0xf8,
0x64,0x34,0x24,0x3d,0xd9,0xe2,0x6e,0x61,0x9b,0x11,0x39,0x68,0x5e,0x16,0xe3,0xc8,
0x65,0x2e,0xae,0x5d,0x9b,0xc4,0xd7,0xbf,0xfe,0xd,0xfc,0xc9,0x9f,0xfc,0x29,0x16,
0xe6,0x17,0x18,0x41,0xd4,0xc7,0x13,0xb3,0xd8,0x3e,0x90,0x7c,0x16,0xc2,0x10,0xc7,
0x8f,0x9f,0xc0,0xcb,0x2f,0xff,0x5b,0x1c,0x38,0x78,0x0,0x51,0x54,0x61,0x74,0x4a,
0x29,0xb5,0x91,0xc3,0x8a,0x90,0xd2,0xe,0xc9,0x41,0xcd,0xb4,0x9a,0x1b,0xeb,0x2a,
0x8c,0x13,0xbc,0xc4,0xfa,0xdc,0xd5,0xd5,0x85,0x2,0x5f,0x2b,0x57,0x6a,0xa0,0x5b,
0x6d,0x2,0xfd,0x6c,0x1a,0x72,0x58,0xba,0xc8,0x94,0xac,0x9c,0x26,0x88,0xbc,0xc,
0x15,0x6e,0x5f,0x7d,0xeb,0x2c,0x2e,0xce,0x4e,0x61,0x91,0xaf,0xc5,0xca,0xdb,0x87,
0x1c,0xe2,0x5c,0xc8,0xa8,0x88,0xe5,0xc5,0x98,0xe1,0xbf,0x6f,0x96,0xa4,0x8c,0xa2,
0xd8,0x28,0x9a,0x6d,0x5e,0xb2,0x58,0xd,0x64,0xa4,0x35,0x1f,0x54,0x67,0x67,0x27,
0x4a,0xc5,0x12,0xca,0x95,0xb2,0x69,0x52,0xf2,0x34,0x33,0x81,0x25,0x87,0x15,0x41,
0x13,0x84,0xaa,0xae,0x34,0xc8,0x2d,0x98,0x99,0xc3,0x33,0xc7,0x4f,0xe2,0xc8,0xae,
0x5e,0xea,0xa2,0xf2,0x81,0xaa,0x4b,0xb3,0x9e,0x5b,0x8e,0xf5,0xdf,0xee,0x86,0xa3,
0xe9,0xc8,0x81,0x17,0xcc,0xff,0x49,0x10,0x2c,0x62,0xea,0x89,0xd9,0x14,0xaf,0xbe,
0xfd,0x63,0x5c,0x49,0x22,0x1e,0x77,0x11,0x24,0x1e,0x62,0x12,0xc5,0x56,0xe2,0x4e,
0xe4,0x20,0x7a,0xd0,0x75,0x8b,0x1c,0xbe,0xff,0xfd,0x3f,0x22,0x39,0x1c,0xe5,0xd5,
0x2a,0x8,0x5d,0x1b,0x32,0xa,0x21,0x2b,0x83,0x7b,0x9a,0xd0,0x8e,0xd4,0xa3,0x7a,
0xa1,0x0,0x8a,0x84,0xbc,0x2d,0x5c,0x20,0xc4,0xa2,0x79,0x11,0xd3,0x68,0xcb,0xa3,
0x35,0x5d,0xa2,0x59,0x34,0x83,0x6e,0x4e,0xe,0x99,0x21,0x87,0x95,0x20,0xd7,0xbc,
0xe5,0x73,0x6b,0x7b,0xfb,0x46,0x8e,0x18,0x72,0x70,0xf9,0x7d,0x51,0x95,0x1c,0xfe,
0x49,0x53,0x93,0x43,0x55,0xa3,0xab,0x97,0xad,0xfd,0x44,0xfa,0x48,0xbd,0x2c,0xf1,
0xfe,0x9e,0xd8,0x77,0x0,0xc7,0xfa,0x87,0x19,0x8d,0xf1,0xd,0xde,0x9b,0x71,0xe,
0xe9,0xb4,0xd6,0xee,0x72,0xfd,0x77,0xbb,0xf1,0x68,0x1a,0xf7,0x52,0x95,0x69,0x2a,
0x54,0x42,0xe4,0x50,0x78,0x59,0xd1,0x1,0x7c,0x74,0xd3,0x0,0xbf,0xf8,0xc8,0xc3,
0xd8,0xc1,0x5b,0x9,0xbd,0x70,0xcb,0xa3,0x86,0xbb,0xc2,0xdc,0x40,0x7e,0xed,0x1a,
0xc7,0x61,0xa,0x85,0x69,0xad,0xc5,0x7c,0xa1,0x6,0xd1,0x70,0x57,0x6b,0x4,0x48,
0x99,0xe5,0xe9,0xf9,0x54,0x3e,0xe5,0x22,0x6c,0xb1,0x65,0xb5,0x45,0x4d,0x48,0x81,
0x2f,0x62,0x90,0xc0,0xd2,0x3,0x36,0x3d,0x6a,0x28,0x60,0xfa,0xc7,0xf7,0x57,0x52,
0x8c,0xc3,0x62,0x1c,0x97,0xaa,0xf3,0x22,0x4f,0x49,0xc5,0xc8,0xbf,0xbe,0xb7,0xba,
0xcb,0x43,0xcd,0xc,0x73,0xaf,0xbc,0x2f,0x6d,0xe5,0xa4,0x9a,0xfb,0x47,0x5,0x5,
0x12,0xc3,0xd1,0x81,0x21,0x1c,0xdf,0xbb,0x17,0xa1,0xb9,0x6f,0xe9,0xa3,0x4b,0x1d,
0x55,0x32,0xfa,0x13,0xd5,0xd0,0xf0,0x68,0x1a,0x72,0xb8,0x1b,0xfc,0xd0,0x33,0xc4,
0xf0,0xfc,0xb1,0x13,0x8,0x2b,0x8b,0x88,0x3c,0x2d,0x1f,0xd4,0xc,0x90,0x88,0xa8,
0xfa,0x6d,0xb1,0xa5,0x55,0xcb,0xcd,0x32,0xde,0x5a,0x30,0x11,0x3,0x6d,0xbf,0xf2,
0x9c,0x5a,0x4e,0x20,0x54,0xe1,0x81,0x63,0x83,0xc3,0x78,0x64,0xef,0x41,0xd3,0xc5,
0x3e,0x26,0xd1,0x36,0x33,0x9a,0x2e,0x21,0x7d,0x2b,0x94,0xfc,0x71,0x52,0xf,0xe5,
0x34,0xc3,0x47,0x8b,0xf3,0x78,0xed,0x9d,0x37,0x71,0xa3,0x9c,0x87,0xc6,0xa,0x57,
0xb7,0x62,0xcd,0xde,0x3b,0x36,0x2b,0x55,0x5d,0x25,0xad,0x61,0xf0,0x9d,0xdf,0xfd,
0xe,0xe,0x1c,0x1c,0xa5,0x97,0xdf,0xd4,0x55,0x6f,0x61,0xb1,0x62,0xfc,0xf2,0x53,
0xcf,0x62,0x6e,0x6e,0xce,0x34,0x7f,0xaa,0xb9,0x4a,0xb9,0x8d,0x2f,0xfe,0x87,0xe6,
0x6d,0x56,0x8a,0xbd,0x64,0x89,0x18,0x34,0x6b,0xb4,0x9a,0xbb,0xf7,0xec,0x6a,0xc7,
0x53,0x63,0xc7,0xd1,0x99,0x78,0xf0,0x49,0xc,0x15,0xda,0x0,0x4d,0x1a,0xba,0xfe,
0x3b,0xdb,0x1a,0x34,0x3d,0x39,0x20,0x8b,0x48,0x10,0xe,0x2a,0x24,0x7,0xad,0x1a,
0x77,0x65,0x7a,0xa,0xff,0xf3,0xad,0xf7,0xcc,0x5b,0x22,0x88,0x7a,0x8,0xdd,0x6a,
0x71,0x2f,0x72,0x10,0x59,0xe5,0x23,0x52,0x15,0xbe,0x5b,0x72,0xb0,0x68,0x5d,0xdc,
0xac,0x7b,0x53,0xd3,0x73,0xe6,0xb5,0x74,0xb2,0x15,0xc8,0x21,0x22,0x39,0xa8,0xf3,
0x8b,0x1f,0x25,0x28,0xa6,0x2e,0x6,0x77,0xf5,0xe3,0xb3,0x63,0x23,0x26,0xdf,0xa7,
0xae,0xaa,0x4b,0xcb,0xc1,0x72,0xb3,0x5,0x26,0xa8,0x2e,0x68,0x1,0x72,0x48,0x18,
0xe2,0x69,0xee,0x43,0x98,0xc4,0xac,0x7a,0x2c,0x9d,0xba,0x31,0x8b,0xbf,0x7e,0xfb,
0x14,0xe6,0xf8,0xf0,0x12,0x1a,0xe1,0x4,0x9a,0x15,0x71,0x25,0x7d,0x2d,0xd6,0xf,
0xfe,0x24,0x85,0x41,0x6d,0x90,0x29,0x3a,0xf9,0x83,0xff,0xe2,0x1f,0xfd,0x63,0xa4,
0x13,0xd7,0x78,0x9d,0xa9,0xf1,0x9a,0xcc,0xf2,0x9e,0xa2,0x33,0xbe,0xe7,0xae,0x63,
0x5,0x23,0xd,0xbd,0xbf,0x15,0xa6,0x89,0xb3,0xba,0x6f,0x61,0xb1,0x56,0x98,0xf6,
0x74,0xea,0x51,0x2e,0x4b,0xf9,0x1c,0x5,0x4a,0xa9,0xae,0x56,0xb6,0x34,0x77,0x50,
0xed,0x33,0x29,0xbd,0xe9,0xfc,0x3b,0xd4,0x99,0xc4,0xc1,0xc0,0xf0,0x1e,0x7c,0xe1,
0xdf,0x7d,0xc3,0x2c,0x19,0x2b,0xbd,0x68,0x54,0x72,0x50,0x55,0x48,0xaf,0x94,0x8f,
0xaf,0x15,0x35,0x29,0x79,0x9,0xf5,0x99,0x6f,0x78,0x71,0x8c,0xd1,0x1d,0xbd,0x78,
0xfc,0xc8,0x11,0xf4,0xfb,0xac,0x2b,0x57,0x85,0x9f,0xd1,0x9f,0x2c,0xab,0x6e,0x4b,
0xa5,0x9,0xd1,0xfc,0xe4,0x70,0x7,0xc4,0x69,0x8c,0xf,0xa7,0x6e,0xe0,0xd5,0x37,
0x4f,0xa1,0x5c,0x28,0x60,0x91,0xd1,0x85,0x3a,0x91,0x6d,0x6,0x3d,0x24,0x14,0x72,
0x11,0x83,0x19,0x0,0x43,0xad,0xfa,0x5f,0xbf,0xff,0x87,0xf8,0xde,0x7f,0xfd,0x2f,
0x8,0x29,0x30,0xa6,0x57,0x51,0xf5,0x1c,0x5d,0xc9,0xb2,0xea,0xac,0x1e,0x77,0xa2,
0x15,0x97,0x7,0xf9,0x33,0x16,0x16,0xeb,0x82,0x56,0x1d,0x90,0x84,0xd6,0xe8,0xc0,
0x6c,0x65,0x25,0xd7,0xa1,0x3e,0xe,0x2d,0xa6,0x71,0x8b,0x1c,0xf,0xe5,0xcc,0xc5,
0x93,0xcf,0x7d,0x16,0x27,0x7f,0xed,0x1f,0x1a,0x62,0x50,0x34,0x51,0xf,0x33,0xb4,
0x51,0xe4,0xa0,0xc1,0x6b,0xd2,0xb7,0x98,0xca,0xa5,0xa2,0x7a,0x8,0x22,0x39,0x9c,
0x19,0x6,0xbb,0x3a,0xf1,0xdc,0xb1,0x63,0xd8,0x41,0xd6,0xf0,0x7d,0xf3,0x91,0x96,
0x41,0x4b,0xda,0x12,0x27,0x5e,0xc4,0xd0,0xce,0xe,0x3c,0x71,0x62,0x1c,0x5e,0x65,
0x11,0xc5,0x2a,0x35,0x6c,0x6,0x6a,0x2a,0x25,0x55,0xa8,0x50,0xa8,0x9e,0xfe,0xdc,
0xe7,0xb0,0xf7,0xe8,0xfd,0x98,0xa5,0x94,0x2d,0x78,0x40,0x45,0x29,0x10,0x27,0x9f,
0xe3,0x7d,0x7d,0xd0,0xaf,0x7c,0xb2,0x28,0x82,0x92,0x5a,0xdb,0x62,0xcb,0x7a,0x8a,
0x97,0x6,0x64,0x4,0x59,0xba,0xdc,0x12,0x7a,0x75,0x30,0xdc,0x89,0x1b,0xa3,0x42,
0x57,0x5a,0x3a,0xd0,0x36,0x3c,0x8c,0x87,0x9f,0x7f,0xd1,0x34,0x27,0x89,0x14,0xb4,
0x6d,0x54,0xe8,0xce,0x6b,0x13,0xe4,0x9,0x4a,0x13,0x2a,0xd7,0x90,0x3a,0x65,0xc,
0xb5,0x17,0xf1,0xcc,0x7d,0x63,0xe8,0xe0,0x71,0x45,0xb,0xad,0x86,0x96,0x8c,0x1c,
0x90,0x96,0xf9,0xf0,0x1c,0x2c,0xc2,0xc3,0x99,0x89,0x29,0xfc,0xf0,0x9d,0xf7,0x30,
0xe3,0xe5,0x9,0x6a,0x61,0x63,0x93,0xd4,0x6a,0x3a,0xaa,0x9a,0xeb,0x34,0x41,0xc0,
0xbd,0x80,0x4,0xf5,0xbd,0x3f,0xf8,0x3d,0x7c,0x78,0xee,0x3,0x24,0x73,0xb3,0xb8,
0x76,0xee,0x23,0x54,0xa6,0x6f,0xf0,0x84,0xaa,0xc4,0xad,0x2,0x7a,0x5c,0x1a,0xac,
0xd4,0x3d,0x7a,0x18,0xae,0xee,0x83,0x4f,0x2f,0xcd,0x52,0xd3,0x8e,0xab,0xd1,0xe3,
0x16,0x16,0xeb,0x85,0x9b,0xf8,0x26,0xfa,0x55,0x4e,0x2c,0x88,0x13,0x5c,0x3e,0xf7,
0x21,0xa2,0x74,0x31,0x17,0xea,0x55,0x40,0x7a,0x16,0xc7,0x31,0xa,0x8c,0xde,0x3b,
0x46,0x46,0x35,0x89,0x1,0x86,0xe,0x1e,0xc6,0xb3,0x7f,0xe7,0xf3,0x24,0x8a,0x2,
0x22,0xb9,0xe5,0x75,0xc4,0x46,0x44,0xe,0xba,0x42,0xe9,0xb3,0x76,0x34,0xc2,0x59,
0x89,0x67,0x35,0x81,0xd,0xed,0xf4,0xf0,0x99,0xf1,0x7,0xd1,0x9d,0x79,0xac,0x27,
0xc7,0x10,0x48,0x75,0x2e,0xbd,0x96,0x41,0x8b,0x92,0x83,0x48,0x40,0x99,0x86,0x14,
0xb3,0x34,0x9a,0x57,0x6e,0xcc,0xe3,0x7b,0x3f,0x79,0x17,0x2e,0xe3,0x3e,0x11,0xc4,
0x46,0x92,0x83,0x22,0x87,0x1a,0x4c,0x1b,0x25,0xb7,0x6a,0x7b,0x74,0xa9,0x8,0x49,
0x5c,0x46,0xa9,0x12,0xe1,0xdb,0xdf,0xf8,0x1d,0xbc,0xf3,0x7f,0xff,0xa,0xc1,0x2a,
0x7b,0x2b,0xe9,0x51,0x49,0x30,0xf7,0xee,0xdd,0x8b,0x2f,0x7d,0xf3,0xdf,0xc3,0xf1,
0xf2,0xa9,0x95,0x95,0xd4,0xbb,0x76,0xed,0x5a,0xbe,0xce,0xb6,0x34,0xd0,0xc2,0x62,
0x1d,0xc8,0xb2,0x50,0x96,0x1,0x21,0x62,0xec,0x4c,0x32,0xfc,0xa7,0x97,0xbf,0x8e,
0xcb,0x17,0xde,0xd7,0x3b,0xf9,0x9,0x2b,0x84,0x9a,0x8b,0x94,0x53,0x18,0x19,0x19,
0xc1,0xdf,0xfb,0x57,0x2f,0x73,0x7f,0x91,0x3a,0xe8,0xa1,0xcc,0x48,0x3e,0xf5,0xa,
0x8,0xcc,0xc0,0xd5,0xfa,0x61,0x23,0xc8,0xc1,0x58,0x12,0x9a,0xb,0xa3,0xc3,0x51,
0x62,0x7a,0x26,0x75,0x77,0x77,0xe3,0xef,0x9f,0x38,0x88,0x82,0x4b,0x62,0x50,0x73,
0x92,0x93,0xeb,0xa1,0xd3,0x62,0xec,0xd0,0x92,0xe4,0x90,0xdf,0x11,0x1f,0xeb,0x52,
0xb2,0xda,0xc5,0x3b,0xd3,0x33,0xf8,0xdb,0x9f,0xbe,0x4b,0xb2,0x70,0xe8,0xb1,0xf0,
0x18,0x5,0xd3,0x27,0x49,0xd4,0xbf,0xb9,0x49,0xe2,0x94,0x7f,0xa7,0xf6,0xf4,0xfb,
0xba,0x1e,0x6e,0xf4,0xa,0x45,0x4a,0xd9,0xef,0xbe,0xfc,0x5b,0x78,0xef,0x7f,0xff,
0x25,0x8f,0xad,0x6c,0x51,0xf1,0x25,0x82,0xe1,0x56,0x1e,0x4a,0xf7,0x40,0x3f,0xfe,
0xf9,0x7f,0xfc,0x8e,0x49,0xec,0x89,0x2c,0xe6,0xe7,0x17,0x31,0x35,0x39,0x65,0xa2,
0x25,0xe3,0xe5,0x58,0x58,0xac,0x3,0xa9,0x16,0xa2,0x91,0xbc,0x31,0x7a,0xe8,0xa2,
0xf4,0xfd,0xe7,0x7f,0xf9,0x6f,0x30,0x7d,0xe9,0x74,0x55,0x86,0x57,0xe,0x39,0x62,
0xea,0x99,0x37,0x3c,0x3c,0x8c,0x5f,0xfd,0xd7,0xdf,0x24,0x39,0x94,0xf3,0xef,0x20,
0x69,0xa8,0xc5,0xde,0x63,0x64,0x5d,0x4f,0xac,0x97,0x1c,0x94,0x6b,0x91,0xea,0x4a,
0xdf,0xb4,0x95,0x19,0x71,0x32,0x17,0x4e,0xc2,0xeb,0xf5,0x79,0x2f,0x71,0x5,0x87,
0x7b,0xfa,0xf0,0xd8,0x91,0x31,0xf4,0x38,0x31,0xf5,0x4f,0xb7,0xc2,0xfb,0x90,0x66,
0xea,0xe4,0x16,0x73,0xcc,0x5a,0xb0,0xa5,0x2c,0x37,0xc4,0x1a,0x95,0xe8,0xb8,0x1,
0x9f,0x97,0x8f,0x80,0xfb,0x7,0xbb,0xda,0xf0,0xd4,0xb1,0x71,0x14,0x29,0x90,0x19,
0xbd,0x77,0x57,0x53,0x4c,0xe8,0x81,0xd6,0x1d,0xaa,0x52,0x9,0x89,0xc3,0x3d,0xb5,
0xd7,0x32,0xdc,0xe4,0xab,0x3c,0x48,0x70,0xcc,0x8c,0x8d,0xea,0xd,0xa2,0x26,0xa7,
0x95,0x22,0x17,0xd2,0xbc,0x24,0x54,0xb8,0x58,0x97,0xae,0x59,0x58,0x29,0xc6,0xf9,
0x2f,0xe5,0xbf,0xa6,0x9e,0x5a,0x9e,0x2d,0xb6,0xac,0xb7,0xa4,0x99,0xe9,0xa6,0x29,
0xb9,0x8b,0x69,0xf0,0x9c,0x75,0x18,0xbd,0x5a,0x5e,0x41,0x91,0xb3,0xbc,0x24,0x39,
0x63,0xe,0xbf,0xbf,0xde,0xc4,0x50,0x17,0xf0,0x36,0x53,0xe3,0x85,0xe5,0x3a,0x9a,
0x8f,0x7a,0x26,0x29,0xd0,0x7e,0x14,0xe2,0x4,0x87,0x76,0xed,0x22,0x31,0x1c,0x42,
0x37,0x75,0xcf,0xf5,0x2,0x46,0xfe,0x81,0x99,0xa9,0xc1,0x18,0x9c,0x16,0x8c,0xd8,
0x5b,0x92,0x1c,0xee,0x4,0x9f,0x21,0xed,0x60,0x7b,0x11,0x2f,0x3e,0xfe,0x4b,0xe8,
0x29,0x6,0x28,0xe8,0xd6,0x25,0xfd,0x16,0x16,0x16,0x16,0x84,0x89,0x18,0x8,0xf1,
0x98,0x92,0xce,0x21,0xf9,0xcb,0xa3,0x91,0x48,0x92,0x79,0x1c,0x1f,0x1c,0xc2,0x67,
0xe,0x1f,0xc1,0xe,0x92,0x41,0xa4,0x6e,0x81,0xdb,0x0,0xdb,0x86,0x1c,0x4a,0x7e,
0x1,0x25,0x32,0xfc,0xae,0xd0,0xc3,0xa7,0x8f,0xdf,0x8f,0x1e,0xcd,0x43,0x54,0x1d,
0x7b,0xd0,0xc8,0xbd,0x25,0x2c,0x2c,0x2c,0x36,0x7,0xc,0x9a,0x96,0xa2,0x74,0x5f,
0xd1,0x4d,0x25,0x41,0x29,0x4a,0x70,0x62,0xdf,0x30,0x1e,0x3e,0x38,0x82,0x76,0xda,
0x8f,0x80,0x16,0x33,0x68,0xb5,0xcc,0xf3,0x5d,0xb0,0x6d,0xc8,0x1,0x8a,0x15,0x32,
0x17,0x45,0x86,0x84,0xbb,0x8b,0x2e,0x5e,0x7c,0xec,0x1,0x74,0xb7,0x97,0xec,0x3a,
0xb9,0x16,0x16,0x16,0x6,0x37,0x93,0x3,0x48,0xc,0x4e,0x25,0xc6,0x83,0x7,0xe,
0xe3,0x53,0x23,0xa3,0xf0,0x93,0x98,0xef,0xf3,0x18,0xcb,0x76,0x99,0xf5,0x66,0x1b,
0x91,0x3,0x61,0x66,0x6c,0xf5,0x50,0xf2,0x42,0x74,0x3a,0x24,0x88,0xe3,0xc7,0x70,
0xbc,0xbf,0x97,0x47,0x22,0xfe,0x25,0xc8,0x34,0x50,0x87,0x45,0x6d,0xf9,0xa,0x32,
0xd5,0x9d,0x2f,0xad,0x96,0x75,0x83,0x92,0x97,0x27,0xc7,0xd5,0xed,0x2d,0x9f,0x95,
0xd5,0x74,0x8e,0x5e,0x41,0xf1,0x58,0x44,0x6c,0x9a,0x85,0x55,0x9,0x32,0x2f,0xd5,
0x7d,0x6c,0xf,0xef,0xc5,0x62,0xf3,0xe1,0x64,0x6a,0x4c,0xa1,0x16,0x48,0x5e,0x69,
0xc,0x35,0x46,0xc1,0x48,0x9b,0x8c,0xe2,0x2a,0xcb,0xd2,0xe7,0x1a,0xc,0xa9,0x1b,
0x51,0x1f,0x75,0x5f,0x2a,0xf9,0x5,0xaa,0xe7,0x91,0x19,0xc7,0x4d,0x7d,0x6f,0x63,
0x88,0xf0,0xcc,0x89,0xe3,0x38,0x39,0xb0,0x9b,0xe,0x65,0x86,0xd0,0x4c,0x55,0xab,
0xce,0x25,0x4a,0xf8,0x49,0xff,0x5a,0x1f,0xba,0xe3,0xed,0x1,0xf3,0x6c,0x29,0xaa,
0x9a,0x3a,0xd7,0x24,0xa9,0x3d,0xec,0xf4,0x5d,0x3c,0x71,0xdf,0x61,0x8c,0xed,0xee,
0x47,0x91,0x61,0x64,0x42,0xef,0x40,0x73,0xb2,0x9b,0x79,0x90,0x58,0x24,0x34,0x32,
0xe3,0x35,0xe1,0x59,0x3b,0xaa,0xdf,0x47,0x82,0xd0,0xe0,0x38,0x63,0xe8,0xf9,0xad,
0x89,0xcb,0xdf,0x5c,0x41,0x51,0x62,0xac,0xb6,0x6f,0x12,0x66,0xf5,0x20,0x2b,0xb,
0x8b,0xbb,0x40,0xd2,0x6e,0x12,0xc7,0xdc,0x91,0xb8,0xa9,0x7f,0xbf,0x96,0xbd,0x4c,
0xdc,0x35,0x94,0xea,0xe7,0x1a,0xd,0xc6,0x1,0xe4,0xb5,0xe5,0x4,0x98,0xeb,0xbc,
0xc6,0x30,0x78,0x51,0x8c,0x2e,0xea,0xe8,0x93,0xc7,0x8e,0x61,0x94,0x8e,0x63,0x28,
0x93,0xa1,0x1e,0x49,0x74,0xe8,0x5c,0x16,0x75,0x74,0x51,0x6f,0xab,0xed,0x80,0xed,
0x43,0xe,0x77,0x80,0xfa,0x22,0x14,0x58,0x9e,0xdc,0x7f,0x18,0x4f,0xec,0x1f,0x45,
0xa8,0xf8,0x81,0x5e,0x12,0x25,0xc7,0xa0,0xa6,0x1c,0xea,0xb9,0xb1,0x1e,0xd4,0xe6,
0x7b,0xf7,0xb2,0x14,0x41,0xe2,0x30,0x44,0xcd,0x7b,0x85,0x68,0x3a,0x81,0x95,0x16,
0x2f,0xcb,0x8b,0x89,0x3d,0xb8,0x6d,0x48,0x77,0xcc,0xa2,0x25,0x90,0x1a,0x63,0x9e,
0xc2,0xa7,0xb1,0xc,0xe8,0x4d,0x2b,0x9a,0xce,0x49,0x62,0xed,0xa5,0xd1,0x20,0x7,
0x2d,0x63,0xd1,0x4,0x99,0xb9,0x7e,0xf2,0x7e,0xa9,0x5b,0xfd,0x85,0x2,0x3e,0x77,
0xe2,0x21,0x1c,0xe8,0x20,0x45,0xf0,0xba,0xd5,0x33,0x70,0xbb,0x62,0x5b,0x93,0x83,
0xf2,0x4a,0x5,0xd7,0x41,0x7,0x23,0x88,0xa3,0x43,0x83,0xf8,0xf4,0xb1,0x71,0xec,
0xa4,0xd1,0xf5,0x63,0x46,0xc,0x8c,0x24,0x6a,0x95,0x53,0x1b,0x3a,0xbf,0x56,0x48,
0xf0,0x34,0x28,0xcf,0x78,0x60,0x69,0x8a,0xce,0x5d,0x7d,0x66,0x6,0x59,0xbe,0x61,
0x8a,0x96,0x10,0xbc,0x67,0xe1,0x5,0x98,0xc2,0xfd,0x42,0x58,0x42,0x5b,0x5b,0x7,
0x3d,0x98,0xfc,0xa2,0x5a,0x70,0x98,0x8a,0xc5,0x16,0x43,0xf2,0x4a,0x69,0x93,0xc8,
0x22,0xa2,0x1e,0x94,0xba,0xbb,0x91,0x26,0x3e,0xd2,0x78,0x75,0xc5,0x73,0x4a,0xfc,
0xb2,0x10,0x3,0xfd,0xfb,0x4c,0x6e,0x4f,0x32,0xdb,0x30,0xf2,0xba,0x34,0x3d,0x8,
0xff,0xa7,0x4e,0xb6,0x45,0x29,0xe,0x74,0x75,0xe1,0xf9,0x7,0x1e,0x40,0x6f,0xa9,
0x88,0x80,0x76,0xc1,0xa7,0x81,0x58,0x9a,0x5d,0x75,0x1b,0xa2,0x35,0x47,0x48,0xaf,
0x14,0x29,0xa3,0x4,0xf5,0x58,0xa2,0xa1,0xd6,0xa0,0x1c,0x4d,0xfb,0x3d,0xb1,0x50,
0xc1,0x1f,0xfd,0xf0,0xd,0x64,0x81,0x67,0x26,0xd9,0x4a,0x28,0x24,0xf2,0x2e,0xb4,
0xfc,0xe8,0x5a,0x11,0x7b,0x51,0x1e,0x7d,0x50,0x20,0xb5,0xee,0x75,0xb1,0x1c,0xe3,
0xb5,0x3f,0xfc,0x1f,0xb8,0x72,0xfd,0x82,0x79,0xff,0x17,0xf5,0x96,0x92,0x7,0xa3,
0x24,0x98,0x79,0x50,0xc5,0x0,0xbf,0xfc,0xec,0x33,0xd8,0x7d,0xf8,0x64,0x35,0x76,
0x70,0xb1,0xb0,0x50,0xc6,0xd4,0xe4,0x4c,0xfe,0x7a,0xfb,0xca,0xb2,0x45,0x9d,0xa0,
0xae,0x9a,0x21,0x5d,0x66,0x35,0x63,0x7a,0x5e,0x8a,0xf2,0xcf,0xcf,0xe3,0xff,0xfc,
0xf9,0x9f,0x19,0xc7,0x66,0x35,0x8,0x82,0xc0,0x4c,0xf5,0xf2,0xc2,0xb,0x2f,0x60,
0xaa,0xd4,0x55,0x3d,0x4a,0x11,0xdd,0x20,0x83,0xbb,0xda,0x41,0x70,0xb5,0x88,0x41,
0xfa,0x38,0xba,0xa3,0x1b,0x4f,0x9f,0x38,0x8a,0x2,0xd5,0xbc,0x22,0x7,0x91,0x36,
0x21,0xa0,0x33,0x66,0x82,0xa8,0x6d,0x1a,0x3d,0x6c,0x6f,0x72,0xa8,0x4e,0x99,0xad,
0xa,0x50,0x2d,0xa8,0x9d,0x35,0xe1,0xb1,0x89,0x38,0xc2,0x8f,0xde,0x7f,0xf,0x1f,
0x4c,0x4e,0xa0,0x4c,0x63,0x5c,0x26,0x39,0x14,0xcb,0xa1,0x31,0xd2,0xf2,0xa8,0x28,
0x33,0xfa,0x9f,0x9f,0xca,0x3d,0x8f,0x5f,0x4,0xd,0xa4,0xc9,0xd5,0x21,0x4f,0x75,
0xcb,0xd0,0x6b,0xba,0x6e,0x67,0xa5,0x2b,0x45,0x99,0xdf,0xad,0xee,0x92,0xac,0x2a,
0xbc,0x3e,0xfa,0x35,0xd5,0x23,0x96,0x1c,0x2c,0xea,0xb,0x75,0xc0,0x70,0x15,0xa9,
0xca,0x88,0xd3,0x80,0xfa,0x24,0x5,0xb5,0xbb,0xaf,0x16,0x35,0xd3,0x22,0x32,0x88,
0x15,0x1,0xdf,0xf4,0x7a,0x23,0x70,0x77,0x72,0x90,0xfe,0xe5,0x39,0x94,0x3c,0xd1,
0x4e,0xa7,0xcf,0x4f,0xe0,0x53,0x8f,0x44,0xc,0x9f,0x3a,0x7c,0x4,0x47,0x86,0x7,
0x49,0x6,0xbc,0x36,0xea,0x97,0xfa,0x2f,0xea,0x1a,0xd5,0xf4,0x6b,0xae,0x74,0x9b,
0xea,0xd4,0xf6,0x26,0x87,0x3b,0x20,0xa3,0xd1,0x2e,0xa7,0x11,0x66,0x19,0x45,0xbc,
0x71,0xee,0xc,0x4e,0x5f,0xbe,0x6c,0xc8,0xc1,0x43,0x9b,0x31,0xd2,0x35,0x15,0x91,
0xbc,0xd4,0x4c,0xfe,0xd6,0xc2,0xad,0x4e,0x9f,0x61,0xc9,0xc1,0x62,0x7b,0xe3,0x6e,
0xe4,0xa0,0x4e,0x25,0x35,0x23,0x67,0xdc,0x41,0xea,0x88,0x97,0x2e,0x60,0x87,0x1b,
0xe0,0xa9,0xfb,0x8f,0x62,0xa8,0x73,0x7,0xa,0x64,0xe,0x25,0x9c,0xc9,0xe,0xe6,
0x3c,0x8b,0x65,0x5b,0x67,0x51,0x3,0xa5,0x28,0xc8,0x3c,0x74,0xfa,0x5,0x3c,0x7a,
0x70,0xc,0x4f,0xdd,0x37,0x8e,0x9e,0x5,0x25,0x83,0x95,0xa8,0xce,0x57,0x74,0x33,
0x82,0x56,0x93,0x36,0xb,0xb,0x8b,0xc6,0x6,0x75,0x55,0xea,0x2a,0xdd,0x95,0xe,
0x4b,0x97,0x7,0x33,0x1f,0x2f,0x3e,0xf4,0x8,0xfa,0x4b,0x9d,0x8,0xc9,0x16,0x6a,
0x31,0xb3,0xb3,0x1a,0x7f,0x12,0x36,0x72,0xb8,0x5,0x4b,0xd5,0xc1,0xb0,0x32,0xa2,
0xc4,0xa8,0x9,0x69,0x7a,0xe6,0x6,0xfe,0xfc,0xd4,0xbb,0x98,0x8c,0xcb,0x58,0x54,
0x78,0xed,0xfa,0xa6,0x4f,0x74,0xde,0x28,0xb5,0xd5,0xb0,0x91,0x83,0x85,0x85,0x70,
0xd7,0x66,0x25,0xea,0xb1,0x86,0xc,0xa9,0xa7,0x9f,0x57,0x2e,0xe3,0xd8,0xfe,0x51,
0x3c,0x3e,0xba,0x9f,0xd1,0x82,0x26,0xcd,0xa3,0xc2,0x50,0xe7,0xb5,0x82,0x9b,0x60,
0xbd,0xe5,0x65,0xd8,0xba,0xb8,0x5,0x66,0xa0,0x5a,0xb5,0x4d,0x54,0x6b,0x31,0x14,
0xe2,0x18,0x3d,0x41,0x80,0x17,0x4e,0x3e,0x84,0x3d,0xed,0x5d,0xa6,0xfd,0x55,0x56,
0x58,0x9d,0x4a,0x2d,0x2c,0x2c,0x1a,0x1f,0xd2,0x55,0xc5,0xfb,0x45,0xcf,0xc5,0xd3,
0x27,0x1e,0xc2,0xc3,0xc3,0x23,0xf0,0x4c,0x8f,0x2c,0xb9,0x77,0xb9,0x33,0x28,0x6d,
0xb6,0x1a,0xfd,0x49,0xd8,0xc8,0xe1,0x16,0xa8,0x32,0x54,0x8c,0xa0,0x28,0x11,0xa7,
0xad,0x3c,0xb,0x1e,0x8d,0xc8,0xa5,0xef,0x9c,0x3f,0x8f,0xd7,0x4f,0xbf,0x8f,0x4a,
0x29,0xc4,0xa2,0xd7,0x86,0x30,0x4a,0x51,0x32,0xdd,0x4c,0x35,0x5b,0x6a,0xde,0xe4,
0xb4,0xd9,0x42,0xb6,0xb0,0xb0,0x88,0xc9,0xeb,0x93,0xbc,0x46,0xf5,0xdd,0xce,0x7f,
0x5d,0x53,0x9,0xaf,0x16,0x1a,0xe0,0x93,0x8b,0x3,0x8b,0x42,0x70,0x6e,0x35,0x22,
0xdb,0xc2,0x62,0x23,0x60,0x24,0x8c,0xf2,0xb6,0xb6,0x4,0xb5,0x63,0x66,0x44,0xd5,
0x22,0x57,0x9e,0xcf,0x6d,0x1c,0xa1,0xa3,0xb3,0x3,0x3b,0xba,0x8a,0x26,0x91,0xac,
0x2f,0xaf,0x50,0x27,0xb3,0xc0,0x47,0xa9,0x72,0x3,0x7d,0xc5,0x12,0x9e,0x1c,0x3f,
0x86,0xfe,0x8e,0xe,0x46,0xb,0xd4,0x14,0xfe,0xa6,0xf9,0xd3,0x4f,0xf3,0x5c,0x93,
0x7c,0x37,0xdf,0x6a,0x51,0x83,0x25,0x87,0x15,0x42,0x53,0x64,0x6b,0xfa,0x8a,0x32,
0xc5,0xe7,0xa3,0xd9,0x1b,0xf8,0xe1,0xe9,0x77,0x71,0x7e,0x2e,0x46,0xa0,0xd1,0x93,
0x12,0xa9,0x6a,0x35,0x9a,0xff,0x37,0x59,0xc2,0xb4,0xa0,0x8a,0x16,0xfb,0x89,0x13,
0x91,0x94,0x4,0xde,0x59,0x13,0x39,0xb8,0x6e,0xbe,0x68,0x49,0x92,0x54,0xa0,0x19,
0xcd,0x75,0x37,0x8e,0x99,0xaa,0xc3,0xc2,0xa2,0xfe,0xa8,0x19,0xe4,0xb5,0x81,0x72,
0x4e,0x7d,0xd4,0x57,0xa4,0x9a,0xfe,0x9b,0x91,0x40,0x77,0xf7,0x4e,0xb4,0xb5,0xf9,
0xa6,0x37,0x92,0xa6,0x5,0xd7,0x58,0x25,0x35,0xff,0x8e,0xd,0x74,0xe1,0xc4,0xe8,
0x21,0x74,0xd2,0x79,0x2a,0x92,0x2c,0x34,0x62,0x5b,0x6b,0x30,0x88,0x1c,0x2c,0xee,
0xe,0x4b,0xe,0x2b,0x84,0xd6,0x95,0x33,0x79,0x6,0x96,0x88,0xf6,0x72,0x2e,0xc9,
0xf0,0x57,0x3f,0xfd,0x19,0x3e,0xb8,0x7e,0x9,0x8b,0x45,0x19,0x55,0xa0,0x18,0xb9,
0x88,0x25,0x6f,0xeb,0x12,0xfa,0xd5,0x43,0xe3,0x24,0x44,0x8,0x95,0x28,0x33,0xdd,
0x5a,0xe7,0xe6,0xe6,0xaa,0xef,0xac,0xe,0xf2,0xc2,0x44,0x2a,0xbd,0x7d,0xdd,0x8,
0x2,0x91,0x82,0x9a,0xd0,0x36,0x62,0x41,0x24,0xb,0xb,0xca,0x1b,0xc5,0x6b,0x66,
0x66,0xc6,0xac,0x64,0xb8,0x6a,0x33,0xc4,0xd3,0x3d,0xe5,0xfe,0x3c,0xd7,0x90,0x82,
0xd6,0x65,0xf7,0x19,0x41,0xb8,0x59,0x84,0x8a,0xcf,0xc8,0x80,0x51,0x43,0xfb,0x42,
0x82,0xa7,0xc6,0x4e,0xe2,0xd0,0x60,0xb7,0xe9,0x3e,0x4e,0x2f,0xa,0x6e,0x10,0x80,
0x6a,0x8a,0x80,0x2f,0xad,0x5c,0xdf,0x1b,0x96,0x1c,0x56,0x8,0xb5,0x4e,0x9a,0x69,
0x0,0x58,0x5d,0x66,0xc3,0xb2,0x48,0xcf,0xe4,0xcc,0xf5,0x6b,0x8c,0x22,0xde,0xc7,
0x1c,0x85,0x51,0x59,0x2f,0xad,0xa2,0xb5,0xd9,0xe4,0x50,0x43,0x4a,0x43,0x6e,0x92,
0xd3,0x53,0x53,0x86,0x2c,0x56,0xd,0x27,0x23,0xd1,0xc4,0x18,0x1e,0x1e,0xac,0xde,
0x2,0xef,0x52,0xde,0x99,0x55,0x22,0x8b,0xd,0x80,0xe4,0xf5,0xea,0xd5,0xab,0x6b,
0x9b,0x19,0x99,0x7a,0xa8,0x9,0x68,0xe4,0xc4,0xf4,0xed,0xea,0xa1,0xbc,0xe6,0x5a,
0x19,0x24,0x8b,0x48,0xe3,0x8,0xa3,0xbb,0xfb,0xf1,0xd0,0xc8,0x21,0xf4,0x14,0x8a,
0x28,0xba,0x9a,0x6e,0x46,0xef,0xba,0x4b,0x39,0x45,0x8d,0x12,0xb2,0x72,0x7d,0x6f,
0x58,0x72,0x58,0x21,0x6a,0x84,0xa0,0xff,0x1d,0x11,0x1,0xb7,0x71,0x85,0x1e,0xbb,
0xef,0xe3,0x7a,0x25,0xc2,0xab,0x6f,0xbd,0x89,0x4b,0xd1,0x2,0x8f,0x17,0xb6,0x4c,
0xe8,0xd6,0x4f,0xe,0x8c,0x8f,0x18,0xa2,0x2f,0x91,0x83,0x14,0x8e,0x91,0x92,0x55,
0x22,0x8b,0x8d,0x40,0x9a,0x5,0xeb,0x24,0x7,0x7,0x41,0xe8,0xa2,0xaf,0xaf,0x77,
0x89,0x1c,0xba,0x9c,0x14,0xf7,0xef,0x1a,0xc4,0xc9,0xfd,0x23,0xf0,0x5d,0xe5,0x1,
0x53,0x6a,0xa4,0xc8,0x41,0x83,0xdf,0x34,0xe2,0x81,0x11,0x31,0x1d,0x1e,0xc5,0xc5,
0x6b,0x51,0x91,0xed,0x4,0x4b,0xe,0x2b,0xc4,0x72,0x25,0x71,0xaf,0xf6,0xc2,0x54,
0x9d,0x7a,0x42,0x30,0x8a,0x48,0x12,0x7c,0x78,0xe1,0x63,0xbc,0xf2,0xc1,0x79,0x24,
0x1e,0xbd,0x13,0x5,0x10,0x7c,0x5f,0x8b,0x86,0xa8,0x9b,0x5c,0xad,0x7,0x54,0xd,
0x66,0x86,0xd6,0x3a,0x27,0x7b,0x53,0x7e,0xe7,0xfc,0xc2,0x2,0xc9,0x61,0x86,0x57,
0xa5,0xef,0xae,0xfd,0xe6,0xf2,0xd5,0xdf,0xb,0x3a,0x3b,0x8f,0x1c,0x86,0xf8,0x22,
0x27,0xc0,0xfc,0xb8,0xd5,0x22,0x8b,0xfa,0x43,0xf2,0x7a,0xed,0xea,0x4,0xa2,0x48,
0xe4,0x50,0x93,0x57,0xca,0xdc,0x2d,0xe2,0x66,0xba,0x85,0x48,0x5f,0xf4,0xc2,0xe8,
0x8c,0x91,0x54,0x7e,0xbe,0x82,0xa0,0x2d,0x40,0x5f,0xef,0x4e,0xf8,0x49,0x5,0x5d,
0xa5,0x12,0xfe,0xee,0xd8,0x38,0xb7,0x6d,0xf0,0xa5,0x6f,0x2c,0x66,0x49,0xde,0xa5,
0xef,0xab,0xee,0xf0,0xbb,0x4,0x4b,0xe,0xf7,0x86,0x25,0x87,0x3a,0x40,0x55,0xa8,
0xa2,0xb6,0xff,0x73,0x95,0x4,0x6f,0x9d,0x3d,0x8d,0x8f,0x26,0xae,0x0,0x7e,0xc8,
0x77,0x25,0xa0,0xd5,0xf3,0x58,0x94,0x2c,0x33,0x32,0xca,0x17,0xf9,0xba,0xc,0xf5,
0x83,0xcc,0x79,0x1e,0x39,0x4c,0xf3,0x27,0x8c,0x6f,0x64,0x8e,0xe7,0xbf,0xfc,0x8b,
0x61,0x2,0x85,0xac,0x16,0x39,0xe8,0xdb,0x2c,0x2c,0x36,0xe,0xea,0x3c,0x71,0x95,
0xe4,0x10,0x2f,0x91,0x83,0x3c,0x7b,0xca,0xdd,0x2d,0x46,0x5b,0x31,0x82,0x4a,0xd,
0x79,0xcc,0x40,0xf5,0xa2,0xc0,0x16,0x43,0x7,0x3,0xdd,0x1d,0x18,0xdb,0x3b,0x84,
0xb1,0x7d,0xfb,0x30,0x60,0xd6,0x6c,0xe1,0x57,0x58,0xcb,0xbf,0x6e,0x18,0x32,0xb6,
0xa8,0x1f,0xf6,0x14,0x7c,0x3c,0x7b,0xff,0x38,0x9e,0x1a,0x3b,0x8a,0x92,0x8c,0x32,
0x49,0x43,0x93,0x77,0x69,0xd1,0xf6,0x7c,0x4e,0x25,0x9e,0xb4,0x32,0x5b,0x6d,0x61,
0x61,0x41,0xc8,0x69,0x11,0x3d,0x98,0x85,0xb7,0x94,0x3f,0x70,0x22,0x78,0x4e,0x8c,
0x42,0x9a,0xa0,0xd7,0xf7,0xf0,0xf9,0x4f,0x3d,0x81,0xc7,0xf7,0xef,0x43,0x5f,0x1a,
0x19,0x27,0x4d,0xb0,0x3e,0xef,0xfa,0x61,0xc9,0xa1,0xe,0xa8,0x75,0x1d,0xf5,0x7d,
0xdf,0xcc,0xd1,0xd2,0xe9,0x3a,0x18,0xdf,0xdd,0x8f,0x5f,0x79,0xf0,0x41,0x1c,0xee,
0xeb,0x41,0x48,0xcf,0x48,0xd3,0x80,0x3b,0x91,0xa6,0xe1,0xa8,0x12,0x84,0x85,0x85,
0xc5,0x8a,0x61,0xba,0x81,0x68,0x89,0x4e,0xc4,0x68,0x4b,0x2a,0xd8,0x49,0x22,0x78,
0xfa,0xd8,0x7d,0xf8,0x7,0xcf,0x3c,0x85,0x5e,0xd7,0x43,0x91,0x11,0x87,0x9a,0x92,
0xa4,0x87,0xd2,0x47,0x1b,0x39,0xac,0x1f,0x96,0x1c,0xea,0x8c,0xc8,0xc9,0x7b,0xf7,
0x14,0x92,0x14,0x43,0x85,0x12,0x3e,0x75,0xf8,0x20,0x1e,0x64,0x29,0x78,0x81,0x99,
0x6,0x58,0x5e,0x90,0x85,0x85,0xc5,0x2a,0x40,0x3b,0x6f,0x72,0x7,0x24,0x88,0x30,
0x4e,0xb0,0xaf,0xb3,0xb,0xbf,0xf6,0xdc,0x67,0xf0,0xd8,0x7d,0x7b,0xb1,0x2b,0xf4,
0x48,0x18,0x9,0xb4,0xf4,0xee,0xa2,0x59,0xca,0xd3,0xa2,0x5e,0xb0,0x39,0x87,0x3a,
0xa3,0x56,0x99,0x4a,0x46,0xd7,0xf6,0x35,0x46,0x67,0xae,0x1c,0xe3,0x6f,0xce,0x9e,
0xc6,0xfb,0x57,0xaf,0xa0,0x5c,0x28,0x80,0x1,0x30,0x99,0xd9,0x47,0x9a,0xc5,0x66,
0x9a,0xe0,0x5a,0xb,0xbf,0x19,0xdd,0xb9,0x46,0xa4,0x29,0x15,0x64,0xa1,0x82,0xc9,
0xc9,0x49,0x85,0x33,0xd5,0xa3,0xab,0x41,0xc4,0x92,0x61,0x48,0x39,0x87,0xa5,0x2b,
0x92,0xc2,0x59,0x2f,0xcc,0xa2,0xfe,0xc8,0x52,0x1f,0x57,0xaf,0x5e,0x43,0x1c,0x4b,
0xee,0x72,0x19,0xd3,0x4a,0x8c,0x86,0x6,0x28,0xbf,0x89,0x9a,0x64,0x3d,0x9f,0x1,
0x43,0x82,0x20,0x8a,0xd0,0xeb,0x79,0xf8,0xdc,0xe3,0x8f,0xe2,0xd0,0xee,0x3e,0x90,
0x13,0xf8,0x5e,0x2d,0x67,0xc7,0xcf,0xf2,0x9f,0xf4,0x4d,0xae,0x99,0x45,0x7d,0x60,
0xc9,0x61,0x13,0x90,0x51,0xb8,0xb5,0x56,0xed,0x2,0xe5,0xf6,0xe7,0x93,0xd3,0x38,
0x75,0xee,0x1c,0xae,0xcc,0xdc,0x40,0xe2,0x17,0x11,0x93,0x39,0x32,0x4f,0xdd,0xec,
0x78,0x22,0x8b,0x6,0xda,0xad,0x15,0x1a,0xa0,0xb7,0xb8,0x98,0x93,0xc3,0x5a,0x7a,
0x18,0x69,0x82,0x10,0x71,0x8a,0xc8,0x21,0x4f,0x6f,0xeb,0xa0,0x25,0x7,0x8b,0x8d,
0x81,0x21,0x87,0x6b,0x57,0xab,0x9,0xe9,0x1c,0x15,0x33,0x5a,0x2d,0x6f,0x7a,0xad,
0xad,0xa7,0xd0,0xe6,0xc4,0x78,0xe0,0xf0,0x1,0x3c,0x7c,0xe8,0x30,0xfa,0xdb,0x8a,
0x26,0x7f,0xa7,0xd4,0xf5,0x32,0x39,0x58,0x6c,0x4,0x2c,0x39,0x6c,0x2,0x52,0x25,
0xca,0x68,0x63,0x13,0xd6,0xb4,0x6,0xee,0x57,0x58,0xe5,0x1f,0x5e,0xbc,0x8a,0x1f,
0x9d,0xfd,0x8,0x11,0xf7,0xb5,0xf2,0x54,0xc4,0xe8,0x41,0xb,0xf9,0x28,0xe2,0x58,
0x2b,0x44,0xe,0xe5,0xb2,0xc8,0xe1,0xba,0xf2,0xe0,0xab,0x86,0xa6,0x8,0xf1,0x48,
0x54,0x83,0x43,0x3,0x7c,0x65,0xc9,0xc1,0x62,0x63,0xa1,0x48,0xf7,0xfa,0xf5,0x89,
0xea,0x8,0xe9,0xfc,0x58,0x85,0xf6,0xde,0xe7,0x7e,0x98,0xa4,0x28,0x52,0x9e,0x7b,
0xda,0xda,0xf1,0xab,0xcf,0x3c,0x82,0x81,0xce,0x36,0xb3,0x9a,0xa2,0x3a,0xd1,0x29,
0xb2,0x30,0x39,0x3e,0xdb,0x8c,0xb4,0xa1,0xb0,0xe4,0xb0,0x9,0xc8,0xc0,0xe8,0xc0,
0x88,0xb4,0x8c,0x6c,0x6e,0x68,0x63,0xd6,0xfa,0x54,0x25,0xc6,0x99,0xb,0x97,0xf0,
0xf6,0x99,0xb3,0xa8,0x68,0xf2,0x30,0xa,0x7c,0xc2,0x30,0x7a,0xad,0xd0,0x93,0x4c,
0xe9,0x55,0x69,0xae,0xa5,0xb5,0xcc,0xad,0x24,0xe8,0x63,0xe,0x8b,0x48,0xc2,0xc0,
0x92,0x83,0xc5,0x6,0x41,0x13,0x1c,0xab,0xfb,0x77,0x5c,0x5d,0x5f,0x5a,0xfb,0x1,
0x75,0x25,0xa4,0x1c,0x77,0x5,0x21,0x1e,0x64,0xa4,0x70,0x60,0xa0,0xf,0x45,0xcd,
0x85,0x44,0x56,0xc8,0x87,0xde,0xb8,0x48,0x49,0xa,0x5a,0xda,0xd7,0xc6,0xd,0x1b,
0xb,0x4b,0xe,0x9b,0x80,0xe5,0x1a,0xd6,0x1c,0x48,0xf9,0x5e,0x46,0xcf,0x28,0xa3,
0x21,0x5f,0x64,0xb4,0x70,0x79,0x7e,0x1,0x6f,0x9d,0x3d,0x8b,0x4b,0x53,0x93,0x98,
0xf7,0x57,0xbe,0x6,0xee,0xbd,0xb0,0x96,0xde,0x1a,0x22,0x16,0x8d,0x90,0x16,0x39,
0x2c,0x71,0x8b,0x25,0x7,0x8b,0xd,0x82,0xc8,0x40,0xe6,0x47,0x8e,0x8c,0x8a,0xf6,
0x7,0xa9,0xf,0x7b,0x77,0xf7,0x63,0x7c,0xff,0x7e,0xb4,0x31,0x92,0xd,0x12,0xca,
0xa3,0x2f,0x87,0x49,0x9d,0x39,0xc,0x3b,0x68,0xba,0x2f,0x43,0xe,0xfa,0xb3,0xd8,
0x38,0x58,0x72,0xd8,0x4,0x2c,0xd7,0x30,0xa3,0x87,0x9a,0x9d,0xad,0x1e,0xd3,0x46,
0x2b,0x50,0x69,0x2b,0xf,0xea,0x7,0x6f,0xfc,0x18,0x13,0xf3,0xf3,0x28,0x7,0x1,
0xca,0x54,0x8a,0x44,0xbd,0x9c,0x32,0x25,0xec,0xa4,0x1e,0xb5,0x2f,0x52,0x6c,0x9d,
0xf7,0x8a,0xba,0x13,0xf4,0x48,0xd7,0x42,0xe,0x37,0x8b,0xc2,0x27,0x3f,0x6e,0xc9,
0xc1,0x62,0x7d,0xf0,0xaa,0x32,0x2c,0xa3,0x9e,0x3b,0x1c,0xc0,0x74,0xc1,0x37,0x63,
0x15,0x4a,0x8c,0xa0,0xb,0xb,0x65,0x43,0x8,0x8f,0x1d,0xd2,0xb4,0x17,0xcb,0x69,
0x65,0x6d,0x73,0xa9,0x94,0xb4,0xe7,0x7b,0xe6,0x7f,0xbe,0x71,0x37,0xf9,0xb7,0xa8,
0xf,0x2c,0x39,0x34,0x0,0x6e,0x7e,0x4,0x33,0x71,0x8a,0xf3,0x93,0x93,0x38,0xf5,
0xf1,0xc7,0xf8,0x78,0x66,0xa,0x89,0xbc,0x26,0x2f,0x34,0x1a,0x61,0x54,0xaa,0x7a,
0xae,0x55,0xb,0x8b,0x66,0x82,0xa6,0xc9,0x16,0x34,0x6d,0x4c,0x4d,0x76,0x93,0xb8,
0x8c,0x12,0xc9,0xe2,0xf0,0xee,0x1,0x8c,0xd,0xe,0xa2,0xa7,0x54,0x42,0xbb,0x47,
0x62,0x58,0x83,0x63,0x63,0x51,0x7f,0x58,0x72,0x68,0x0,0xdc,0xfc,0x8,0xd4,0xdc,
0x14,0x51,0x41,0xe6,0xc8,0x6,0x67,0x2e,0x5f,0xc4,0x4f,0x3f,0x38,0x83,0xe9,0x24,
0xac,0x9e,0x23,0xdf,0x29,0x6f,0xe6,0xc9,0xd4,0x0,0x6b,0x75,0xc8,0xa2,0x49,0x50,
0xf6,0xe8,0xdc,0x50,0x86,0x3d,0x95,0x34,0x43,0x40,0x19,0x3f,0xd8,0x1e,0xe2,0xd8,
0x7d,0xe3,0xe8,0xc,0x43,0x14,0x6b,0xef,0x29,0xe7,0x66,0xc9,0xa1,0x21,0x60,0xc9,
0xa1,0xd1,0x40,0xc5,0x51,0xaf,0xa5,0x28,0x4b,0x51,0x41,0x8a,0x72,0x54,0xc1,0xf9,
0xe9,0x45,0x9c,0x7a,0xff,0x7d,0xcc,0xc6,0x89,0x29,0x59,0x10,0x50,0xd3,0xe8,0x81,
0x59,0x25,0xb2,0x68,0x12,0x64,0x69,0x82,0x82,0x9a,0x8b,0xca,0x8b,0x38,0x38,0x3c,
0x88,0x83,0x7b,0xf6,0x60,0x5f,0x7b,0xd1,0xf8,0x37,0xea,0xb6,0xaa,0x6d,0x2e,0xcd,
0x74,0x7e,0xac,0x5c,0x37,0x4,0x2c,0x39,0x34,0x18,0x6a,0xc3,0x81,0xb4,0x8a,0x55,
0x96,0xa6,0x66,0x5b,0xa1,0xb2,0xcc,0x93,0x2c,0x4e,0x5d,0x38,0x8f,0x33,0xd7,0x27,
0x70,0x6d,0x6e,0x8e,0xfa,0x13,0x5a,0x72,0xb0,0x68,0x1a,0x74,0x25,0x31,0xfa,0x3a,
0x3b,0x70,0xff,0xfe,0xfd,0xd8,0xdd,0xd9,0x8e,0x2,0x65,0xd7,0x37,0x63,0x1a,0xaa,
0x99,0x34,0x23,0xcb,0x79,0xae,0xc1,0x4a,0x75,0x63,0xc0,0x92,0x43,0x13,0x41,0xbd,
0x3b,0x54,0xa6,0xa7,0xa7,0xf1,0xdf,0xde,0x3d,0x85,0x4a,0xac,0xf9,0x64,0x34,0x82,
0xd4,0xf8,0x5b,0xf9,0x2c,0xb0,0x9a,0x66,0xa0,0x1a,0xa2,0xeb,0x98,0x5a,0x7a,0x2b,
0xb5,0x6e,0xa9,0x16,0x16,0x75,0x84,0xe4,0xcc,0xc8,0x1d,0xa1,0x8e,0xda,0x32,0xeb,
0x31,0x23,0x5a,0x35,0x21,0x85,0x4a,0x34,0xb3,0x4,0xe5,0x32,0x76,0xf7,0xf4,0xe0,
0x57,0xc6,0xc6,0x10,0x30,0xe2,0x95,0x43,0xb3,0xd6,0x6e,0xd6,0x16,0x9b,0xb,0x4b,
0xe,0x4d,0x86,0xda,0xe3,0x9a,0x8d,0x81,0x4b,0x93,0x93,0x38,0x73,0xe5,0x12,0x4e,
0x5f,0xbb,0x8c,0xb8,0xe0,0x23,0xc9,0x7c,0x86,0xe8,0xb9,0xe2,0xe5,0x74,0x50,0x7b,
0xb4,0x96,0x1c,0x2c,0xea,0x8f,0x94,0x8e,0x88,0x99,0xed,0xa5,0x9a,0x64,0xd6,0xbc,
0x61,0xca,0x2b,0x84,0x69,0x8c,0x36,0x12,0xc0,0x7d,0x7b,0x87,0xb1,0xb7,0xaf,0xf,
0x9d,0xc5,0x2,0x76,0xe4,0x8b,0x92,0x1b,0xd8,0x88,0xb7,0x39,0x60,0xc9,0xa1,0x9,
0x61,0xfa,0x87,0x2f,0x44,0x74,0xcf,0x7c,0x44,0x81,0x87,0x8b,0xb3,0x33,0x78,0xe7,
0xcc,0x69,0x5c,0x9e,0x2b,0x63,0x2e,0x62,0x18,0xe1,0x79,0x66,0xc4,0xb5,0x56,0xbe,
0x92,0x1a,0x6a,0xc1,0x21,0xb,0x8b,0x7a,0x43,0x6b,0x31,0xcb,0xf1,0xf0,0x32,0x35,
0x7f,0x32,0x8a,0xa5,0x98,0xf5,0x16,0x8b,0x38,0xd2,0xd3,0x85,0x43,0xfb,0xf6,0x23,
0xa4,0xf0,0x15,0xd4,0xfb,0x88,0x11,0x44,0xea,0x78,0x4b,0xa4,0x60,0xc9,0xa1,0x39,
0x60,0xc9,0xa1,0x49,0x51,0xce,0x2a,0x70,0xa9,0x70,0xfa,0xcb,0xe2,0xd4,0x78,0x6d,
0x93,0x71,0x64,0x22,0x89,0x53,0x1f,0x9c,0xc5,0xac,0xda,0x93,0xa8,0xa8,0xe5,0x84,
0x4a,0xeb,0x69,0x39,0xf5,0xe5,0xa8,0xc3,0xc2,0x62,0x3d,0x90,0x71,0x97,0x2c,0x65,
0x9,0x1d,0x94,0x28,0x46,0x1,0x29,0x6,0xba,0xba,0x30,0x36,0x3a,0x82,0xc1,0x9d,
0x5d,0xe8,0x12,0x21,0xd4,0xce,0x95,0xcc,0xc9,0x39,0x59,0xc7,0xc8,0x7f,0x8b,0xad,
0x81,0x25,0x87,0x66,0x5,0xbd,0x31,0x3e,0x3e,0xfe,0x73,0xcd,0xfc,0x4c,0x31,0x15,
0x30,0x60,0x38,0xaf,0xc7,0xb9,0x80,0xc,0x67,0x27,0x26,0x70,0xee,0xda,0x4,0x2e,
0x4e,0x4f,0xf3,0x75,0xae,0x98,0x52,0x6a,0xeb,0xb5,0x59,0xd4,0x3,0x8a,0x5e,0xfb,
0x18,0xb9,0x8e,0xf4,0xf6,0x62,0x5f,0xff,0x2e,0x33,0x21,0x5e,0x48,0x19,0x74,0xb5,
0x5e,0x73,0x18,0x56,0x73,0x10,0x42,0x3e,0x74,0xcd,0x5f,0x7a,0x6d,0xd1,0x2c,0xb0,
0xe4,0xd0,0xe2,0x98,0xae,0x54,0xf0,0xfa,0xfb,0xef,0xe2,0xe3,0xeb,0xd7,0x31,0xcf,
0x28,0x43,0x73,0xde,0xc7,0xf4,0xe2,0xfc,0x74,0xde,0xf4,0xd,0x71,0xdd,0x80,0x42,
0x20,0xc5,0x75,0x51,0x64,0x4,0x22,0x24,0x55,0x3d,0xd6,0xe1,0xd4,0xa4,0x1c,0xad,
0x62,0xb7,0x2a,0xd4,0x24,0x94,0x8f,0x58,0x66,0x4,0x6a,0x9e,0xb5,0xcb,0x97,0x8b,
0xc6,0xb8,0xc7,0x74,0x24,0xb4,0x4e,0x82,0xba,0x4d,0xa7,0x69,0x19,0x5,0xca,0x47,
0x47,0x1c,0x63,0x77,0x10,0xe2,0xe8,0x9e,0x7d,0x18,0xdd,0x3b,0x4,0x8f,0xf2,0x64,
0xd1,0x9a,0xb0,0xe4,0xd0,0xe2,0x88,0xa9,0xfc,0x8a,0x24,0xe6,0x18,0xfe,0x5f,0x9a,
0xb9,0x81,0x33,0x17,0x2e,0xe0,0x12,0xa3,0xa,0xf8,0xbe,0x99,0x26,0x5c,0xca,0x9f,
0xba,0x9e,0xe9,0xd5,0xc4,0x3d,0xf3,0x19,0x35,0x51,0xa9,0xe4,0xb0,0xe4,0xd0,0xca,
0x70,0x33,0x45,0xa0,0x7c,0xf2,0x55,0x22,0x30,0x1e,0xbf,0x26,0xb9,0xa3,0x59,0x50,
0x1e,0xc1,0x4b,0x62,0xd1,0x5,0x3a,0x7c,0x17,0xfb,0x7,0x87,0x31,0xdc,0xd3,0x8d,
0xdd,0x1d,0xed,0x66,0x24,0xb3,0x4b,0xef,0xc1,0xf6,0x3c,0x6a,0x5d,0x58,0x72,0x68,
0x71,0x68,0xf0,0x51,0x5c,0x5e,0x0,0xe8,0xed,0x99,0x59,0x5f,0x69,0x4,0x2a,0x54,
0xfa,0xb7,0xcf,0x9d,0xc7,0xf9,0x2b,0x57,0x19,0x59,0x94,0x4d,0x57,0x57,0xbd,0x17,
0xb9,0x19,0x32,0x25,0x17,0x15,0x51,0x88,0x20,0xf4,0x67,0x27,0xde,0x6b,0x69,0x38,
0x59,0x4c,0x97,0x20,0xa3,0x83,0xa0,0x51,0xf7,0x22,0x6,0x1e,0x24,0x5f,0xf8,0x94,
0x9b,0x9d,0x81,0x8f,0x5d,0x85,0x2,0xf6,0xed,0xde,0x85,0x43,0x3,0xc3,0xf0,0xf4,
0x3e,0xc9,0xc4,0xe7,0xf9,0x14,0x2c,0x38,0xae,0xf,0xa7,0xba,0xa0,0xbf,0x45,0xeb,
0xc1,0x92,0x43,0xab,0x43,0xcd,0x6,0x69,0xcc,0x27,0x2d,0xc5,0x97,0x1,0xc8,0xf,
0x97,0x13,0x1f,0x8b,0x7c,0x6f,0x2e,0x89,0x70,0x9a,0xd1,0xc4,0xd9,0x8f,0x3e,0xc4,
0xd,0x12,0x81,0xc,0x84,0x43,0xa2,0xd0,0x79,0xca,0x4f,0xd8,0x66,0xa5,0xd6,0x86,
0x93,0x46,0x26,0x7f,0xa5,0xf5,0x97,0x15,0x3f,0x46,0xe5,0xa,0xfa,0x77,0xec,0xc0,
0xf8,0xe1,0xc3,0x18,0xdc,0xd1,0x5,0xcd,0x11,0x5c,0xa0,0x9c,0xf8,0x9e,0x7a,0x1b,
0xe5,0x9f,0xa1,0x50,0x89,0x4e,0xb8,0x15,0x39,0xd8,0xc8,0xa1,0x55,0x61,0xc9,0xa1,
0xc5,0xa1,0xc7,0x6b,0x14,0xd9,0x28,0xb6,0x1a,0xd,0xaa,0x8f,0x9b,0x7c,0x21,0x2,
0x88,0x15,0x31,0x50,0xeb,0xb5,0x10,0xd1,0x47,0xd7,0x67,0x31,0x31,0x73,0x3,0x17,
0xaf,0x5d,0xc3,0xf5,0x85,0x59,0xc4,0x7c,0x5f,0x5d,0x10,0x6f,0xb2,0xa,0x16,0xad,
0x86,0x78,0x11,0x45,0xca,0xc0,0xbe,0x9e,0x5e,0xc,0xed,0xdc,0x69,0x6,0xac,0x75,
0x7a,0x24,0x3,0x46,0x5,0x1a,0x9d,0xef,0x93,0x32,0x4c,0x4,0xa9,0xe,0x6f,0x94,
0x3,0x23,0x41,0xc6,0x64,0xe8,0xa8,0xe,0x59,0xd9,0x68,0x55,0x58,0x72,0xb0,0x58,
0x86,0xba,0x1c,0x52,0xd9,0x35,0xa7,0xd3,0xd4,0xfc,0xd,0x9c,0x3d,0xf7,0x1,0xde,
0xbd,0x3a,0x83,0x84,0x5e,0xe3,0x8d,0x24,0x46,0x52,0x8,0x50,0xa1,0x2d,0xf0,0x48,
0x2c,0x2a,0x2e,0xbd,0x46,0x4d,0xaf,0x2c,0x48,0x88,0x22,0x2f,0x27,0x1f,0x63,0x34,
0x8c,0x58,0xa9,0xd8,0x66,0x87,0x8d,0x44,0xe4,0x29,0x67,0xa0,0xfa,0xae,0x66,0x87,
0xb4,0x4d,0xe9,0xd1,0xab,0x39,0x90,0x2f,0xd4,0x4c,0xa8,0x6e,0x5,0x7a,0x99,0x4,
0x2e,0x1c,0x4d,0x8f,0x4d,0x4f,0x20,0xe4,0xf3,0xe9,0x2c,0x15,0xf1,0xe4,0xd0,0x0,
0x86,0x87,0x87,0xcd,0x77,0xd8,0xfc,0x81,0xc5,0xcd,0xb0,0xe4,0x60,0xb1,0x8c,0x2a,
0x39,0x68,0x89,0xf7,0x88,0x6,0x45,0x6d,0xd1,0xe5,0xd4,0xc5,0x8d,0x85,0x5,0x92,
0xc5,0x3c,0xce,0x5c,0x3c,0x8f,0xb,0x5a,0xf3,0xd7,0x2f,0x98,0x1,0x76,0x1a,0x21,
0xeb,0xf8,0x5e,0xde,0x4,0x45,0xeb,0x13,0x24,0xcb,0xc6,0xa5,0xe6,0x4f,0x26,0xcb,
0x99,0x6d,0x8b,0xd,0x80,0x48,0x58,0x75,0xad,0x67,0x60,0x6a,0x9a,0x5b,0xd,0x4e,
0xd3,0xbe,0x46,0x2b,0x23,0x8a,0x10,0x68,0x92,0xc6,0x38,0x45,0x4f,0x5b,0x11,0x83,
0xbd,0x7d,0x18,0x62,0x94,0xd0,0x59,0x28,0x60,0x47,0x5b,0x9,0x6d,0xd5,0x55,0xd8,
0x54,0x2c,0x39,0x58,0xdc,0xc,0x4b,0xe,0x16,0x4b,0xd0,0xca,0x74,0x32,0x2e,0xa6,
0xb9,0x49,0xa3,0xb0,0x79,0x2c,0x64,0x91,0xef,0xc9,0x40,0x1,0x11,0xdf,0x97,0x9f,
0xfa,0xf3,0x89,0xeb,0xb8,0x30,0x31,0x81,0xa9,0xb9,0x59,0xcc,0x56,0x16,0xb1,0x98,
0x90,0x4a,0x3c,0x9f,0x84,0x62,0xda,0x1e,0xe8,0xa5,0xba,0x26,0xd5,0x61,0x96,0x72,
0x54,0xbe,0xa3,0xa,0xdb,0x4,0x51,0x1f,0x48,0x65,0x6b,0x6a,0xeb,0xaa,0x13,0x1,
0xb7,0xe,0xa3,0xbb,0x38,0x4d,0xcc,0xf1,0x80,0x95,0xaf,0xc8,0xa0,0x23,0xc,0xd1,
0x55,0x6a,0x43,0xdf,0x8e,0x2e,0xc,0xf4,0xec,0xc4,0xae,0xce,0x1d,0x66,0xc4,0x8b,
0xcb,0x28,0x30,0x10,0x19,0xe8,0x59,0x55,0x89,0xc1,0x3e,0x1b,0x8b,0x5b,0x61,0xc9,
0xc1,0xe2,0x13,0xb8,0x5d,0x1c,0x22,0xa,0x89,0xb6,0x32,0x1e,0x6a,0x22,0x52,0xc3,
0x11,0x23,0x82,0xd4,0x31,0x2b,0x63,0x47,0x24,0x91,0xd9,0xc5,0x79,0xbc,0x75,0xf6,
0x34,0xde,0x99,0xb8,0x4c,0xcb,0xe3,0x33,0x9a,0x28,0xd0,0xe8,0x68,0x35,0xe0,0xc,
0x71,0x25,0x42,0xb1,0x58,0x34,0x83,0xa6,0xac,0x1,0xaa,0xf,0x54,0x97,0x82,0xf1,
0xf4,0xb3,0x45,0x13,0x3d,0xf0,0xc1,0x99,0x1e,0x66,0x85,0x20,0xc4,0xb1,0xc1,0x61,
0x8c,0xd,0xe,0xa1,0x40,0xc2,0x28,0xfa,0xa4,0x0,0x93,0x72,0x72,0x48,0xe0,0xfc,
0xc,0x9f,0x89,0x9e,0x9c,0xce,0x37,0xf,0xd2,0xcd,0x47,0xcf,0x5b,0x58,0xdc,0xa,
0x4b,0xe,0x16,0xb7,0x41,0x53,0x85,0x1b,0xc3,0x41,0x24,0x2e,0xd,0x9,0x6d,0xba,
0x9a,0x8d,0xe4,0x69,0x3a,0x86,0x14,0x18,0x55,0x88,0x31,0x28,0x3a,0x32,0xf7,0x69,
0xc2,0xf3,0x69,0x88,0xca,0x7c,0x71,0x63,0x7e,0x11,0x93,0xb3,0xb,0x98,0x99,0x5f,
0xc0,0x95,0x6b,0x53,0x38,0x53,0x99,0x47,0x14,0x45,0xf0,0x7d,0xdf,0x36,0x5b,0xd4,
0x9,0x22,0x87,0x38,0x8e,0xd1,0xd1,0xd1,0x81,0x83,0x6d,0x3e,0xfa,0x76,0xee,0x44,
0x67,0x58,0x34,0x91,0x41,0xc9,0xf,0x4d,0xee,0xc1,0x3c,0x1b,0xb2,0x85,0x19,0xa3,
0xc6,0x48,0x42,0x11,0x42,0xac,0x19,0x7c,0xf9,0x60,0x35,0xdc,0x4d,0xfd,0xd0,0xf4,
0xec,0x1c,0x13,0x4b,0x58,0x58,0xdc,0xe,0x4b,0xe,0x16,0x1b,0x8a,0x72,0x1a,0x61,
0x6a,0x6e,0xe,0xe7,0x2e,0x5d,0xc6,0xc5,0xc9,0xeb,0x58,0x8c,0x13,0x4c,0x21,0x34,
0x51,0x45,0x25,0x25,0xcd,0x78,0x79,0x8e,0xc3,0x4f,0xe4,0xdb,0xd2,0x5c,0x19,0xc2,
0xa1,0x1,0x73,0x34,0x11,0x83,0xf2,0x1e,0xf2,0x76,0x1d,0xb8,0x8a,0x3a,0x28,0xa9,
0x26,0x6e,0xb9,0x43,0x1e,0x23,0xd5,0xaa,0xf3,0xb7,0xe2,0xe,0xe7,0xd5,0x96,0xab,
0xfc,0x4,0xcc,0x67,0x6f,0x25,0x2e,0xb9,0xdb,0x79,0xb2,0xf7,0x66,0x78,0xe9,0xed,
0x4,0xa7,0xc1,0x60,0xb7,0x42,0xa4,0xaa,0x9f,0x37,0x6,0xb8,0xba,0xd5,0xef,0x68,
0xb0,0x99,0x90,0x88,0x80,0xb9,0xaf,0x97,0x32,0xd6,0x89,0xc,0xb8,0x4e,0x61,0xf1,
0xcc,0x0,0xc5,0x58,0xca,0x9,0x27,0x4a,0x50,0xa,0x18,0x89,0xb1,0xde,0xba,0x83,
0x5,0x74,0x77,0x76,0xa1,0x7f,0x47,0x37,0x46,0x7,0x86,0x49,0x4,0x1,0x2,0xd5,
0x4e,0xf5,0x3b,0x2d,0x2c,0xea,0x9,0x4b,0xe,0x16,0x1b,0x8a,0x72,0x26,0xd3,0x4f,
0x2,0xa0,0x94,0xa9,0xc8,0x28,0x2e,0x32,0xd2,0x28,0xd3,0xf3,0x9d,0x5b,0xac,0xe0,
0xc2,0xd5,0xcb,0x98,0x99,0x9b,0xc5,0xf9,0xe9,0x19,0x5a,0x59,0x17,0x51,0x92,0x20,
0x2c,0x86,0xb4,0xa3,0x2e,0x3d,0x64,0x7d,0x83,0x48,0x82,0x1f,0xe4,0xeb,0x9a,0xa0,
0xaa,0xf9,0xe4,0x56,0x14,0xd4,0xef,0xf6,0x16,0x98,0x41,0x5d,0xb7,0xc0,0x4c,0x17,
0x71,0xb,0xe4,0x43,0xdf,0x6a,0xdf,0x65,0xd0,0x97,0x7f,0x71,0x19,0x66,0x3a,0x89,
0xdb,0x70,0xfb,0x79,0x8b,0x9a,0xa2,0x94,0xd0,0xd7,0x9a,0xeb,0x65,0x49,0x95,0x1f,
0xe0,0x17,0x1b,0xce,0x62,0x1d,0x98,0x4e,0xa2,0x3c,0xc1,0xc,0x3c,0xe4,0x31,0x2d,
0x11,0xab,0x6d,0x18,0x4,0x18,0xee,0x6c,0xc3,0xee,0xbe,0x5d,0xe8,0x61,0x34,0x10,
0xba,0x1e,0x7c,0x96,0xb6,0x10,0xe8,0xf6,0xa,0xfa,0x5a,0xb,0x8b,0xd,0x87,0x25,
0x7,0x8b,0x4d,0x47,0x1c,0xd1,0x8,0x9a,0x11,0xb9,0xc6,0x3f,0xa7,0x9d,0xcc,0xcc,
0x58,0x8b,0x5,0x7a,0xc7,0xd3,0xf3,0xb3,0x2c,0x73,0x98,0x24,0x61,0xc4,0xe5,0x14,
0x73,0x73,0xb,0xa6,0xe7,0xd4,0x9c,0x46,0x72,0x67,0x9,0x2a,0xb4,0xb2,0xea,0x5a,
0x6b,0x92,0xa8,0xfc,0x6c,0x4d,0x78,0xe5,0xbd,0x6b,0x40,0x56,0x9e,0x9e,0xcd,0x11,
0xd7,0xc,0x39,0x4f,0xd4,0xb9,0x82,0xc7,0xdf,0x36,0xfb,0xe6,0xf3,0xf9,0x51,0x79,
0xf9,0xea,0x79,0x75,0x33,0x34,0xdf,0x54,0x2d,0x4a,0x90,0x8a,0xe4,0xbf,0xe7,0xa0,
0x52,0xd,0x50,0xf2,0x2e,0xa2,0x3c,0xc2,0xfb,0xc8,0xef,0x62,0x19,0xe6,0x7c,0x5e,
0x87,0xa2,0x1d,0x93,0xf4,0x95,0xd1,0xd7,0x1b,0x69,0xc5,0x4c,0x63,0x5d,0xa,0x42,
0x14,0xdd,0x0,0x6d,0xdc,0x96,0x8a,0x45,0x84,0x85,0x10,0x9f,0x3e,0x70,0xc0,0x7c,
0xd6,0xc2,0xa2,0x51,0x60,0xc9,0xc1,0xa2,0x29,0xf0,0xca,0x2b,0xaf,0x54,0xf7,0x9a,
0x1b,0xcf,0x3f,0xff,0x7c,0x75,0xcf,0xc2,0xa2,0xb1,0x61,0xc9,0xc1,0xc2,0xc2,0xc2,
0xc2,0xe2,0x16,0x0,0xff,0x1f,0x38,0x74,0x95,0x28,0x95,0x4a,0xdb,0xd3,0x0,0x0,
0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
};
static const unsigned char qt_resource_name[] = {
// Resources
0x0,0x9,
0xa,0x6c,0x38,0x43,
0x0,0x52,
0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x75,0x0,0x72,0x0,0x63,0x0,0x65,0x0,0x73,
// Images
0x0,0x6,
0x5,0x3,0x7d,0xc3,
0x0,0x49,
0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,
// doing.png
0x0,0x9,
0x0,0x4a,0x81,0x87,
0x0,0x64,
0x0,0x6f,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// undoneline.png
0x0,0xe,
0x9,0x2c,0xd8,0x7,
0x0,0x75,
0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// prepared.png
0x0,0xc,
0x6,0x46,0xda,0x47,
0x0,0x70,
0x0,0x72,0x0,0x65,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// homepageon.png
0x0,0xe,
0x8,0x59,0x83,0x27,
0x0,0x68,
0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x70,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6f,0x0,0x6e,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// nexton.png
0x0,0xa,
0xb,0x6f,0xce,0xa7,
0x0,0x6e,
0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// homepageoff.png
0x0,0xf,
0x2,0x44,0x10,0x47,
0x0,0x68,
0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x70,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6f,0x0,0x66,0x0,0x66,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// doneline.png
0x0,0xc,
0x5,0x2c,0xcf,0x7,
0x0,0x64,
0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// canceloff.png
0x0,0xd,
0x6,0xc0,0x6e,0x87,
0x0,0x63,
0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x66,0x0,0x66,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// cancelon.png
0x0,0xc,
0xe,0x91,0xc4,0xc7,
0x0,0x63,
0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// nextoff.png
0x0,0xb,
0x5,0x20,0xc8,0x27,
0x0,0x6e,
0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x6f,0x0,0x66,0x0,0x66,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// done.png
0x0,0x8,
0x6,0x48,0x5a,0x27,
0x0,0x64,
0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// printguide.png
0x0,0xe,
0xd,0xaf,0x17,0xc7,
0x0,0x70,
0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x67,0x0,0x75,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
};
static const unsigned char qt_resource_struct[] = {
// :
0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,
// :/Resources
0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,
// :/Resources/Images
0x0,0x0,0x0,0x18,0x0,0x2,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x3,
// :/Resources/Images/doing.png
0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,
// :/Resources/Images/homepageoff.png
0x0,0x0,0x0,0xbe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xe9,0xf3,
// :/Resources/Images/nextoff.png
0x0,0x0,0x1,0x3e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x8d,0x13,
// :/Resources/Images/doneline.png
0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x17,0x31,
// :/Resources/Images/prepared.png
0x0,0x0,0x0,0x64,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x3f,0x4e,
// :/Resources/Images/done.png
0x0,0x0,0x1,0x5a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xbb,0x5,
// :/Resources/Images/canceloff.png
0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x19,0x20,
// :/Resources/Images/homepageon.png
0x0,0x0,0x0,0x82,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x7a,0x8a,
// :/Resources/Images/undoneline.png
0x0,0x0,0x0,0x42,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x3d,0x62,
// :/Resources/Images/nexton.png
0x0,0x0,0x0,0xa4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xb1,0xb2,
// :/Resources/Images/printguide.png
0x0,0x0,0x1,0x70,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x3,0xfa,
// :/Resources/Images/cancelon.png
0x0,0x0,0x1,0x20,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x4d,0x69,
};
#ifdef QT_NAMESPACE
# define QT_RCC_PREPEND_NAMESPACE(name) ::QT_NAMESPACE::name
# define QT_RCC_MANGLE_NAMESPACE0(x) x
# define QT_RCC_MANGLE_NAMESPACE1(a, b) a##_##b
# define QT_RCC_MANGLE_NAMESPACE2(a, b) QT_RCC_MANGLE_NAMESPACE1(a,b)
# define QT_RCC_MANGLE_NAMESPACE(name) QT_RCC_MANGLE_NAMESPACE2( \
QT_RCC_MANGLE_NAMESPACE0(name), QT_RCC_MANGLE_NAMESPACE0(QT_NAMESPACE))
#else
# define QT_RCC_PREPEND_NAMESPACE(name) name
# define QT_RCC_MANGLE_NAMESPACE(name) name
#endif
#ifdef QT_NAMESPACE
namespace QT_NAMESPACE {
#endif
bool qRegisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *);
bool qUnregisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *);
#ifdef QT_NAMESPACE
}
#endif
int QT_RCC_MANGLE_NAMESPACE(qInitResources_checkreceiptdialog)();
int QT_RCC_MANGLE_NAMESPACE(qInitResources_checkreceiptdialog)()
{
QT_RCC_PREPEND_NAMESPACE(qRegisterResourceData)
(0x01, qt_resource_struct, qt_resource_name, qt_resource_data);
return 1;
}
int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_checkreceiptdialog)();
int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_checkreceiptdialog)()
{
QT_RCC_PREPEND_NAMESPACE(qUnregisterResourceData)
(0x01, qt_resource_struct, qt_resource_name, qt_resource_data);
return 1;
}
namespace {
struct initializer {
initializer() { QT_RCC_MANGLE_NAMESPACE(qInitResources_checkreceiptdialog)(); }
~initializer() { QT_RCC_MANGLE_NAMESPACE(qCleanupResources_checkreceiptdialog)(); }
} dummy;
}
| 81.033787 | 128 | 0.767507 | maanjun |
bcaa8201cc02612c8acaffd0313851be2353dc8e | 1,117 | cc | C++ | test/tcp_test.cc | bzEq/kl | 92de2c1db5ca4bb6c38a632cda7a80d2c9823841 | [
"BSD-3-Clause"
] | null | null | null | test/tcp_test.cc | bzEq/kl | 92de2c1db5ca4bb6c38a632cda7a80d2c9823841 | [
"BSD-3-Clause"
] | null | null | null | test/tcp_test.cc | bzEq/kl | 92de2c1db5ca4bb6c38a632cda7a80d2c9823841 | [
"BSD-3-Clause"
] | null | null | null | // Copyright (c) 2017 Kai Luo <[email protected]>. All rights reserved.
// Use of this source code is governed by the BSD license that can be found in
// the LICENSE file.
#include "kl/tcp.h"
#include "kl/env.h"
#include "kl/inet.h"
#include "kl/testkit.h"
namespace {
class T {};
TEST(T, ListenAndSetNonBlocking) {
auto listen = kl::tcp::Listen("127.0.0.1", 4000);
ASSERT(listen);
DEFER([fd = *listen]() { ::close(fd); });
ASSERT(kl::env::SetNonBlocking(*listen));
}
TEST(T, Rebind) {
auto sock0 = kl::tcp::Socket();
ASSERT(sock0);
DEFER([fd = *sock0]() { ::close(fd); });
auto bind0 = kl::inet::Bind(*sock0, "127.0.0.1", 4000);
ASSERT(bind0);
auto sock1 = kl::tcp::Socket();
ASSERT(sock1);
DEFER([fd = *sock1]() { ::close(fd); });
auto bind1 = kl::inet::Bind(*sock1, "127.0.0.1", 4000);
ASSERT(!bind1);
}
TEST(T, Connect) {
auto listen = kl::tcp::Listen("127.0.0.1", 4000);
ASSERT(listen);
DEFER([fd = *listen]() { ::close(fd); });
auto connect = kl::tcp::BlockingConnect("127.0.0.1", 4000);
ASSERT(connect);
DEFER([fd = *connect]() { ::close(fd); });
}
} // namespace
| 26.595238 | 78 | 0.608774 | bzEq |
bcab8d785b9dd65a49671c34619864efbfc673af | 5,689 | cpp | C++ | sources/HybridDetector/Segment.cpp | onderkalaci/dyndatarace | 8e916b11d2d4f6d812d4b0c5a2616387be4d6572 | [
"Intel"
] | 6 | 2018-01-11T01:47:01.000Z | 2022-03-08T16:22:59.000Z | sources/HybridDetector/Segment.cpp | chakku000/dyndatarace | 8e916b11d2d4f6d812d4b0c5a2616387be4d6572 | [
"Intel"
] | 1 | 2018-01-11T02:36:09.000Z | 2018-01-12T03:32:41.000Z | sources/HybridDetector/Segment.cpp | chakku000/dyndatarace | 8e916b11d2d4f6d812d4b0c5a2616387be4d6572 | [
"Intel"
] | 2 | 2018-01-15T02:37:50.000Z | 2021-03-21T14:53:44.000Z |
#
# +--------------------------------------------------------------------------+
# |Copyright (C) 2014 Bogazici University |
# | [email protected] |
# | |
# | This is free software: you can redistribute it and/or modify |
# | it under the terms of the GNU Lesser General Public License as published |
# | by the Free Software Foundation, either version 2.1 of the License, or |
# | (at your option) any later version. |
# | |
# | This is distributed in the hope that it will be useful, |
# | but WITHOUT ANY WARRANTY; without even the implied warranty of |
# | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
# | GNU Lesser General Public License for more details. |
# | |
# | You should have received a copy of the GNU Lesser General Public License |
# | along with this program. If not, see <http://www.gnu.org/licenses/>. |
# +--------------------------------------------------------------------------+
/*
* Segment.cpp
*
* Created on: Apr 19, 2013
* Author: onder
*/
#include "Segment.h"
/*
*
*
* ADDRINT insPtr; instruction pointer of enterence of segment, it is utilzed for extracting line number information of segment.
* if this segment is included in any race
*
UINT32 segmentId; //it is mostly used for debug purposes
VectorClock* clock;//vector clock of a segment
THREADID ownerThreadId;
LockSet writerLockSet, readerLockSet; Lockset IDs of a segment
*
* */
/*
* This method is only used in isRace for performance reasons
* Shallow copy is enough since only read from segment is applied, no updates
* */
Segment& Segment::operator=(Segment *segmentIn)
{
//cout << "SEGMENT operator= CALLED****************************************" << endl;
insPtr = segmentIn->insPtr;
//segmentId = segmentIn->segmentId;
clock = segmentIn->clock;
ownerThreadId = segmentIn->ownerThreadId;
writerLockSetId = segmentIn->writerLockSetId;
readerLockSetId = segmentIn->readerLockSetId;
segmentId = segmentIn->segmentId;
return *this;
}
int Segment::deletedSegmentCount = 0;
Segment::~Segment()
{
//cout << "Destructor called:" << this << endl;
//delete clock yapabiliriz!!!
++deletedSegmentCount;
//cout << "readSize:" << readMemoryAddresses.size() << " writeSize:" << writeMemoryAddresses.size() << endl;
//writeMemoryAddresses.clear();
//readMemoryAddresses.clear();
delete clock;
}
Segment::Segment()
{
//owner_thread = NULL;
clock = NULL;
//cout << "SEGMENT CREATED WITH NULL CLOCK_1:" << endl;
InitLock(&segmentLock);
segmentIsActive = true;
referenceCount = 0;
inAvaliableQueue = true;
++totalSegmentCount;
segmentId = totalSegmentCount;
}
/* When a race happens, this function is called to get line information of the instruction
* pointer of the segment's first instruction
* */
void Segment::fillLineAndFileInfo(ADDRINT insPtrIn, const char* imageNameIn)
{
//return;
insPtr = insPtrIn;
//return;
//cout << "::::::::fillLineAndFileInfo:::::" << insPtr << endl;
if (segmentInfoFilled)
return; //already filled
imageName = string(imageNameIn);
segmentInfoFilled = true;
INT32 col = 0,line =0;
string file = "";
PIN_LockClient();
PIN_GetSourceLocation(insPtr, &col, &line, &file);
PIN_UnlockClient();
// cout << "::::::::fillLineAndFileInfo_end:::::" << file <<" line:" << line << endl;
}
void Segment::setWriterLockSetId(UINT32 threadsWriterLockSetId)
{
writerLockSetId = threadsWriterLockSetId;
}
void Segment::setReaderLockSetId(UINT32 threadsReaderLockSetId)
{
readerLockSetId = threadsReaderLockSetId;
}
void Segment::deactivateSegment()
{
segmentIsActive = false;
//readMemoryAddresses.clear();
//writeMemoryAddresses.clear();
}
Segment::Segment(UINT32 threadsWriterLockSetId, UINT32 threadsReaderLockSetId, VectorClock* currentThreadsClock, THREADID tid, ADDRINT insPtrIn)
{
clock = new VectorClock(currentThreadsClock, tid);
ownerThreadId = tid;
insPtr = insPtrIn;
//cout << "Segment Created thread:" << tid << " , with lock count write:" << threadsWriterLockSetId << " read:" << threadsReaderLockSetId << endl;
setWriterLockSetId(threadsWriterLockSetId);
setReaderLockSetId(threadsReaderLockSetId);
//readMemoryAddresses.reserve(1000);
//writeMemoryAddresses.reserve(1000);
InitLock(&segmentLock);
segmentIsActive = true;
segmentInfoFilled = false;
++totalSegmentCount;
segmentId = totalSegmentCount;
referenceCount = 0;
inAvaliableQueue = true;
}
int Segment::totalSegmentCount = 0;
Segment::Segment(UINT32 threadsWriterLockSetId, UINT32 threadsReaderLockSetId, VectorClock* currentThreadsClock,
THREADID threadId, string fileNameIn, UINT32 lineIn, ADDRINT insPtrIn)
{
clock = new VectorClock(currentThreadsClock, threadId);
ownerThreadId = threadId;
//insPtr = insPtrIn;
//output_stream << "Segment Created thread:" << threadId << " , with lock count write:" << threadsWriterLockSet.locks.size() << " read:" << threadsReaderLockSet.locks.size() << endl;
setWriterLockSetId(threadsWriterLockSetId);
setReaderLockSetId(threadsReaderLockSetId);
file = fileNameIn;
line = lineIn;
insPtr = insPtrIn;
InitLock(&segmentLock);
referenceCount = 0;
segmentIsActive = true;
segmentInfoFilled = false;
inAvaliableQueue = true;
++totalSegmentCount;
segmentId = totalSegmentCount;
}
| 32.884393 | 186 | 0.646687 | onderkalaci |
bcb1f4160b4082a97e019d9c494c0ef26b428d3a | 522 | cpp | C++ | examples/mbedos5/mbed-os-example-blinky/main.cpp | winneymj/nrf52832-mdk | c733ecf72512824151e20bdadaefaaa38769e80e | [
"MIT"
] | 189 | 2017-04-01T03:05:01.000Z | 2022-03-29T10:36:48.000Z | examples/mbedos5/mbed-os-example-blinky/main.cpp | winneymj/nrf52832-mdk | c733ecf72512824151e20bdadaefaaa38769e80e | [
"MIT"
] | 47 | 2018-09-10T13:55:32.000Z | 2022-02-28T14:15:42.000Z | examples/mbedos5/mbed-os-example-blinky/main.cpp | winneymj/nrf52832-mdk | c733ecf72512824151e20bdadaefaaa38769e80e | [
"MIT"
] | 56 | 2017-05-04T03:51:13.000Z | 2022-01-10T06:23:29.000Z | /* mbed Microcontroller Library
* Copyright (c) 2018 ARM Limited
* SPDX-License-Identifier: Apache-2.0
*/
#include "mbed.h"
#include "stats_report.h"
DigitalOut led1(LED1);
// main() runs in its own thread in the OS
int main()
{
SystemReport sys_state(500 /* Loop delay time in ms */);
while (true) {
// Blink LED and wait 0.5 seconds
led1 = !led1;
wait(0.5f);
// Following the main thread wait, report on the current system status
sys_state.report_state();
}
}
| 20.88 | 78 | 0.6341 | winneymj |
bcb90b7371ff101a3913029125e27268f85ff097 | 6,933 | cpp | C++ | pybind/spam.cpp | maxime-tournier/cpp | 303def38a523f0e5699ef389182974f4f50d10fb | [
"MIT"
] | null | null | null | pybind/spam.cpp | maxime-tournier/cpp | 303def38a523f0e5699ef389182974f4f50d10fb | [
"MIT"
] | null | null | null | pybind/spam.cpp | maxime-tournier/cpp | 303def38a523f0e5699ef389182974f4f50d10fb | [
"MIT"
] | null | null | null |
#include <Python.h>
#include <memory>
#include <vector>
#include <iostream>
template<class T>
using ptr = std::shared_ptr<T>;
// a base class for a c++ object that has a python counterpart: the two objects
// will live exactly for the same duration, with python detecting and collecting
// garbage.
struct base {
PyObject* self = nullptr;
base(PyObject* self) : self(self) {
// the c++ object keeps the python object alive, which in turn keeps the c++
// object alive. only the python gc can detect/break the cycle (see
// tp_traverse/tp_clear).
Py_XINCREF(self);
// precondition: self is a 'freshly' instantiated python object
std::clog << "base()" << std::endl;
}
virtual ~base() {
// the c++ object is expected to live as long as the python object, with
// python controlling the release. the only legal way this object can be
// destroyed is after tp_clear is called on the python object, which clears
// 'self' for this object. henceforth, 'self' must be null.
assert( !self && "python object outliving its c++ counterpart");
std::clog << "~base()" << std::endl;
}
// python object
struct object {
PyObject_HEAD;
ptr<base> obj;
};
// python methods
static int tp_traverse(PyObject *self, visitproc visit, void *arg) {
// std::clog << "tp_traverse" << std::endl;
// Py_VISIT notifies python gc about the c++/python/c++ cycle: to python,
// this object acts like a container containing itself. when python detects
// this object is unreachable, tp_clear will be called and the python object
// will be collected.
// note: we only allow python gc to collect this object when it becomes
// unreachable from the c++ side too
object* cast = reinterpret_cast<object*>(self);
if(cast->obj.unique()) {
Py_VISIT(self);
}
return 0;
}
static int tp_clear(PyObject *self) {
// std::clog << "tp_clear" << std::endl;
object* cast = reinterpret_cast<object*>(self);
// the python object became unreachable: it will be collected. we notify the
// c++ object accordingly.
cast->obj->self = nullptr;
// c++ object must be released after this point, otherwise it will outlive
// its python counterpart.
assert( cast->obj.unique() && "c++ object outliving its python counterpart");
cast->obj.reset();
return 0;
}
// python type object
static PyTypeObject pto;
// convenience
template<class Derived>
static Derived* as(PyObject* self) {
// TODO check python types
object* cast = reinterpret_cast<object*>(self);
return static_cast<Derived*>(cast->obj.get());
}
};
PyTypeObject base::pto = {
PyVarObject_HEAD_INIT(NULL, 0)
"base", /* tp_name */
sizeof(object), /* tp_basicsize */
0, /* tp_itemsize */
0, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_compare */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
0, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC | Py_TPFLAGS_BASETYPE, /* tp_flags */
"base class for collectable objects", /* tp_doc */
tp_traverse,
tp_clear,
};
// a user class
struct spam : base {
using base::base;
std::string bacon() const {
PyObject* obj = PyObject_CallMethod(self, (char*) "bacon", NULL);
std::string res = PyString_AsString(obj);
Py_XDECREF(obj);
return res;
}
static PyObject* tp_new(PyTypeObject* cls, PyObject* args, PyObject* kwargs) {
std::clog << "tp_new" << std::endl;
PyObject* self = PyType_GenericAlloc(cls, 1);
// allocate c++ object
base::object* cast = reinterpret_cast<base::object*>(self);
cast->obj = std::make_shared<spam>(self);
// keep a handle on c++ objects
static std::vector<ptr<base> > instances;
return self;
}
static PyObject* py_bacon(PyObject* self, PyObject* args, PyObject* kwargs) {
return PyString_FromString("default bacon");
}
static PyMethodDef tp_methods[];
};
PyMethodDef spam::tp_methods[] = {
{"bacon", (PyCFunction)py_bacon, METH_KEYWORDS, "give the user some bacon"},
{NULL}
};
static const struct sentinel {
sentinel() { std::clog << "sentinel" << std::endl; }
~sentinel() { std::clog << "~sentinel" << std::endl; }
} instance;
static PyMethodDef module_methods[] = {
{NULL}
};
static PyTypeObject spam_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"spam", /* tp_name */
sizeof(base::object), /* tp_basicsize */
0, /* tp_itemsize */
0, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_compare */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
0, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */
"spam bacon and spam", /* tp_doc */
};
#define AS_GC(o) ((PyGC_Head *)(o)-1)
static long& gc_refs(PyObject* self) {
PyGC_Head *gc = AS_GC(self);
return gc->gc.gc_refs;
}
// static std::size_t force_gc(PyObject* self) {
// PyGC_Head *gc = AS_GC(self);
// _PyGCHead_SET_REFS(gc, _PyGC_REFS_TENTATIVELY_UNREACHABLE);
// }
PyMODINIT_FUNC initspam(void) {
if (PyType_Ready(&base::pto) < 0) return;
Py_INCREF(&base::pto);
// spam_type.tp_traverse = (traverseproc) py_spam::tp_traverse;
// spam_type.tp_clear = (inquiry) py_spam::tp_clear;
spam_type.tp_new = spam::tp_new;
spam_type.tp_methods = spam::tp_methods;
spam_type.tp_base = &base::pto;
// noddy_NoddyType.tp_new = PyType_GenericNew;
if (PyType_Ready(&spam_type) < 0) return;
PyObject* module = Py_InitModule3("spam", module_methods,
"Example module that creates an extension type.");
Py_INCREF(&spam_type);
PyModule_AddObject(module, "spam", (PyObject *)&spam_type);
}
| 29.883621 | 86 | 0.560796 | maxime-tournier |
bcbf647c2d6f6d6cb5434dc7c5518d228f7a9363 | 237 | cpp | C++ | tests/test_Base.cpp | jonathanbuchanan/Sunglasses | ab82b66f32650a813234cee8963f9b598ef5c1c8 | [
"MIT"
] | 1 | 2016-04-01T02:21:27.000Z | 2016-04-01T02:21:27.000Z | tests/test_Base.cpp | jonathanbuchanan/Sunglasses | ab82b66f32650a813234cee8963f9b598ef5c1c8 | [
"MIT"
] | 49 | 2015-07-08T13:48:06.000Z | 2017-06-27T01:40:51.000Z | tests/test_Base.cpp | jonathanbuchanan/Sunglasses | ab82b66f32650a813234cee8963f9b598ef5c1c8 | [
"MIT"
] | null | null | null | // Copyright 2016 Jonathan Buchanan.
// This file is part of Sunglasses, which is licensed under the MIT License.
// See LICENSE.md for details.
#include <gtest/gtest.h>
#include <sunglasses/Sunglasses.hpp>
using namespace sunglasses;
| 26.333333 | 76 | 0.767932 | jonathanbuchanan |
bcc4373122f130e7f1599e0d0d502f849dc510e4 | 336 | hpp | C++ | Game Engine 2D/UtilConstants.hpp | LaPeste/ComposeEngine | 8ae80ec7c49af896978d06371dee96a4d2315372 | [
"Apache-2.0"
] | 1 | 2017-03-13T11:19:40.000Z | 2017-03-13T11:19:40.000Z | Game Engine 2D/UtilConstants.hpp | LaPeste/ComposeEngine | 8ae80ec7c49af896978d06371dee96a4d2315372 | [
"Apache-2.0"
] | null | null | null | Game Engine 2D/UtilConstants.hpp | LaPeste/ComposeEngine | 8ae80ec7c49af896978d06371dee96a4d2315372 | [
"Apache-2.0"
] | null | null | null | //
// UtilConstants.hpp
// GameEngine2D
//
// Created by Andrea Catalini on 11/12/16.
// Copyright © 2016 Andrea Catalini. All rights reserved.
//
#ifndef _UTIL_CONSTANTS_HPP_
#define _UTIL_CONSTANTS_HPP_
#include "stdafx.h"
class UtilConstants
{
public:
static const int NO_COMPONENTS;
};
#endif /* _UTIL_CONSTANTS_HPP_ */
| 16 | 58 | 0.729167 | LaPeste |
bcc46357d09df76e866398c35ad19d0bf3832ad1 | 2,576 | cc | C++ | src/RouteChoice/patSampleChoiceSetWithRandomWalk.cc | godosou/smaroute | e2ccc9492dff54c8ef5c74d5309d2b06758ba342 | [
"MIT"
] | 4 | 2015-02-23T16:02:52.000Z | 2021-03-26T17:58:53.000Z | src/RouteChoice/patSampleChoiceSetWithRandomWalk.cc | godosou/smaroute | e2ccc9492dff54c8ef5c74d5309d2b06758ba342 | [
"MIT"
] | null | null | null | src/RouteChoice/patSampleChoiceSetWithRandomWalk.cc | godosou/smaroute | e2ccc9492dff54c8ef5c74d5309d2b06758ba342 | [
"MIT"
] | 5 | 2015-02-23T16:05:59.000Z | 2017-05-04T16:13:16.000Z | /*
* patSampleChoiceSetWithRandomWalk.cc
*
* Created on: Jun 26, 2012
* Author: jchen
*/
#include "patSampleChoiceSetWithRandomWalk.h"
#include "patNBParameters.h"
#include "patDisplay.h"
#include "patOd.h"
#include <boost/lexical_cast.hpp>
#include <set>
#include <unistd.h>
patSampleChoiceSetWithRandomWalk::patSampleChoiceSetWithRandomWalk() {
// TODO Auto-generated constructor stub
}
patSampleChoiceSetWithRandomWalk::~patSampleChoiceSetWithRandomWalk() {
// TODO Auto-generated destructor stub
}
void patSampleChoiceSetWithRandomWalk::sampleChoiceSet(
RWPathGenerator* path_generator, string folder) {
const string choice_set_folder = folder + "/"
+ patNBParameters::the()->choiceSetFolder + "/";
int num_threads = patNBParameters::the()->nbrOfThreads;
if (m_observations.size() <= num_threads) {
num_threads = m_observations.size();
}
const int num_blocks = ceil((double) m_observations.size() / num_threads);
DEBUG_MESSAGE(
"threads: " << num_threads << ", " << "blocks: " << num_blocks << ", obs:" << m_observations.size());
DEBUG_MESSAGE("path generators and networks cloned");
#pragma omp parallel num_threads( num_threads)
{
#pragma omp for
for (int j = 0; j < m_observations.size(); ++j) {
patNetworkBase* cloned_network =
path_generator->getNetwork()->clone();
RWPathGenerator* generator_clone = path_generator->clone();
generator_clone->setNetwork(cloned_network);
m_observations.at(j).sampleChoiceSet(path_generator,
choice_set_folder);
delete generator_clone;
generator_clone = NULL;
delete cloned_network;
cloned_network = NULL;
}
}
}
void patSampleChoiceSetWithRandomWalk::addObservation(patObservation& obs) {
/**
* Get relevant OD first.
*/
if (obs.getId() == string("")) {
obs.setId(boost::lexical_cast<string>(m_observations.size()));
}
map<const patMultiModalPath, double> path_probas =
obs.getNormalizedPathProbas();
set<patOd> od_set;
unsigned long obs_id = 1;
for (map<const patMultiModalPath, double>::const_iterator path_iter =
path_probas.begin(); path_iter != path_probas.end(); ++path_iter) {
patOd the_od(path_iter->first.getUpNode(),
path_iter->first.getDownNode());
pair<set<patOd>::const_iterator, bool> insert_result = od_set.insert(
the_od);
if (insert_result.second == true) {
patObservation new_obs;
new_obs.setId(
obs.getId() + string("_")
+ boost::lexical_cast<string>(obs_id));
new_obs.addPath(path_iter->first, path_iter->second);
m_observations.push_back(new_obs);
++obs_id;
}
}
}
| 28.307692 | 104 | 0.719332 | godosou |
344a19dc0a0650d0fc2995726ab04cd29eddb250 | 1,525 | cpp | C++ | source/Vector.cpp | Wroyk-UniProjects/Robo_Steuerung_BS_A2a | 0bf7fcf2c455b3fb9564452bf5c316a3502e5d4b | [
"MIT"
] | null | null | null | source/Vector.cpp | Wroyk-UniProjects/Robo_Steuerung_BS_A2a | 0bf7fcf2c455b3fb9564452bf5c316a3502e5d4b | [
"MIT"
] | null | null | null | source/Vector.cpp | Wroyk-UniProjects/Robo_Steuerung_BS_A2a | 0bf7fcf2c455b3fb9564452bf5c316a3502e5d4b | [
"MIT"
] | null | null | null | /*
* Betribssicherheit
* Aufgabe 2 Teil a
* Robotorsteuerung in C++
*
*
* File: Vector.cpp
* Author: Rudolf
*
* Created on 22. Mai 2017, 23:35
*/
#include "../header/Vector.h"
Vector::Vector() {
this->x = 0.0;
this->y = 0.0;
this->z = 0.0;
}
Vector::Vector(double x, double y, double z) {
this->x = x;
this->y = y;
this->z = z;
}
Vector::Vector(const Vector& orig) {
this->x = orig.getX();
this->y = orig.getY();
this->z = orig.getZ();
}
Vector::~Vector() {
}
std::vector<Vector> Vector::linear(const Vector& end, int steps) {
std::vector<Vector> v_V;
double dX = (end.getX()-(this->x))/(steps-1);
double dY = (end.getY()-(this->y))/(steps-1);
double dZ = (end.getZ()-(this->z))/(steps-1);
Vector v (this->x,this->y,this->z);
v_V.push_back(v);
for(int i = 0; i < steps-1; i++) {
v.setCoord(v_V[i].getX()+dX, v_V[i].getY()+dY, v_V[i].getZ()+dZ);
v_V.push_back(v);
}
return v_V;
}
void Vector::printCoord() const{
std::cout << "x: " << x << "\n" << "y: " << y << "\n" << "z: " << z << std::endl;
}
void Vector::setCoord(double x, double y, double z) {
this->x = x;
this->y = y;
this->z = z;
}
void Vector::setCoord(const Vector& orig) {
this->x = orig.x;
this->y = orig.y;
this->z = orig.z;
}
double Vector::getX() const{
return this->x;
}
double Vector::getY() const{
return this->y;
}
double Vector::getZ() const{
return this->z;
} | 18.373494 | 85 | 0.523279 | Wroyk-UniProjects |
344e85ecf0634becfb5e6c55169a2b82b6dc0c92 | 955 | cpp | C++ | pico_dsp-arduino-esp32/arduino-esp32_pico_dsp_mics_omnidirectional/src/main.cpp | ohmic-net/pico_dsp | e3a66666fbcfd8d8ed30dfd6ac2c01b7fa23c3b2 | [
"MIT"
] | 23 | 2021-08-06T22:44:27.000Z | 2022-03-24T06:20:44.000Z | pico_dsp-arduino-esp32/arduino-esp32_pico_dsp_mics_omnidirectional/src/main.cpp | ohmic-net/pico_dsp | e3a66666fbcfd8d8ed30dfd6ac2c01b7fa23c3b2 | [
"MIT"
] | null | null | null | pico_dsp-arduino-esp32/arduino-esp32_pico_dsp_mics_omnidirectional/src/main.cpp | ohmic-net/pico_dsp | e3a66666fbcfd8d8ed30dfd6ac2c01b7fa23c3b2 | [
"MIT"
] | 1 | 2021-08-19T10:37:36.000Z | 2021-08-19T10:37:36.000Z | // example microphone omnidirectional configuration using Faust DSP for PICO_DSP development board
#include <Arduino.h>
#include <stdio.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "esp_system.h"
#include "esp_spi_flash.h"
#include "WM8978.h"
#include "picodsp_mics_omnidirectional.h"
WM8978 wm8978;
void setup() {
Serial.begin(115200);
wm8978.init();
wm8978.addaCfg(1,1);
wm8978.inputCfg(1,0,0);
wm8978.outputCfg(1,0);
wm8978.sampleRate(0);
wm8978.micGain(55); // 16 = 0dB (0.75 per dB)
wm8978.auxGain(0);
wm8978.lineinGain(0);
wm8978.spkVolSet(0);
wm8978.hpVolSet(50,50);
wm8978.i2sCfg(2,0); // format MSB, 16Bit
vTaskDelay(500 / portTICK_PERIOD_MS);
int SR = 48000;
int BS = 8;
picodsp_mics_omnidirectional* DSP = new picodsp_mics_omnidirectional(SR, BS);
DSP->start();
vTaskDelay(500 / portTICK_PERIOD_MS);
}
void loop() {
//vTaskDelay(pdMS_TO_TICKS(10));
} | 22.738095 | 99 | 0.697382 | ohmic-net |
3459f19a9560647698d7e2c21f83248f6e952567 | 2,011 | cpp | C++ | Classes/Layer/GameLayer.cpp | Pythians/MyGame | 78cf7727b5ccdae5cd011aa093343e954cce8651 | [
"MIT"
] | null | null | null | Classes/Layer/GameLayer.cpp | Pythians/MyGame | 78cf7727b5ccdae5cd011aa093343e954cce8651 | [
"MIT"
] | null | null | null | Classes/Layer/GameLayer.cpp | Pythians/MyGame | 78cf7727b5ccdae5cd011aa093343e954cce8651 | [
"MIT"
] | null | null | null | #include "GameLayer.h"
#include "Resource/ResourcesManage.h"
#include "Layer/bg/BgLayer.h"
USING_NS_CC;
GameLayer::GameLayer( )
{
}
GameLayer::~GameLayer( )
{
}
bool GameLayer::init( )
{
if( !Node::init( ) )
{
return false;
}
this->addChild( LayerColor::create( Color4B( 182, 228, 254, 255 ) ) );
auto size = _director->getVisibleSize( );
auto cloud = createCloud( );
cloud->setScale( 0.6 );
cloud->setPosition( size.width * 0.81, size.height * 0.90 );
this->addChild( cloud );
auto cloud1 = createCloud( );
cloud1->setScale( 0.5 );
cloud1->setPosition( size.width * 0.5, size.height * 0.92 );
this->addChild( cloud1 );
auto cloud2 = createCloud( );
cloud2->setScale( 0.4 );
cloud2->setPosition( size.width * 0.162, size.height * 0.84 );
this->addChild( cloud2 );
auto res = new ResourcesManage( );
auto data = res->getBgLayerDataFromFile( "lines" );
auto li = data->getLineLayer( );
for( auto l : *li )
{
this->addChild( BgLayer::create( l ) );
}
/*for( int i = 0; i < li->size( ); i++ )
{
auto bg = BgLayer::create( li->at( i ) );
this->addChild( bg );
}*/
res->release( );
return true;
}
Node * GameLayer::createCloud( )
{
Color4F color = Color4F( 0.929f, 0.972f, 1.0f, 1.0f );
auto circle = DrawNode::create( );
circle->drawSolidCircle( Vec2::ZERO, 60.0f, 0.0f, 24, color );
circle->setPosition( 0, 0 );
auto circle1 = DrawNode::create( );
circle1->drawSolidCircle( Vec2::ZERO, 35.0f, 0.0f, 24, color );
circle1->setPosition( 50, -15 );
auto circle2 = DrawNode::create( );
circle2->drawSolidCircle( Vec2::ZERO, 40.0f, 0.0f, 24, color );
circle2->setPosition( -50, -10 );
auto circle3 = DrawNode::create( );
circle3->drawSolidCircle( Vec2::ZERO, 25.0f, 0.0f, 24, color );
circle3->setPosition( -80, -22 );
auto cloud = Node::create( );
cloud->addChild( circle3 );
cloud->addChild( circle2 );
cloud->addChild( circle1 );
cloud->addChild( circle );
return cloud;
}
| 25.455696 | 72 | 0.617603 | Pythians |
3459fcd4c781afa1ef86909af207aac5c21bf411 | 2,415 | cpp | C++ | src/Base/TaskProcessors/ThreadedTaskProcessor/WorkerThread.cpp | PhilipVinc/PincoSimulator | 562192cf3b09d0e67be7e6fee67ff9b59fbc3fd3 | [
"MIT"
] | 1 | 2017-10-23T13:22:01.000Z | 2017-10-23T13:22:01.000Z | src/Base/TaskProcessors/ThreadedTaskProcessor/WorkerThread.cpp | PhilipVinc/PincoSimulator | 562192cf3b09d0e67be7e6fee67ff9b59fbc3fd3 | [
"MIT"
] | null | null | null | src/Base/TaskProcessors/ThreadedTaskProcessor/WorkerThread.cpp | PhilipVinc/PincoSimulator | 562192cf3b09d0e67be7e6fee67ff9b59fbc3fd3 | [
"MIT"
] | null | null | null | //
// WorkerThread.cpp
// DataElaborator
//
// Created by Filippo Vicentini on 24/03/14.
// Copyright (c) 2014 Filippo Vicentini. All rights reserved.
//
#include "WorkerThread.hpp"
#include "ThreadedTaskProcessor.hpp"
#include "Base/Solver.hpp"
#include "Base/TaskData.hpp"
#include "Base/TaskResults.hpp"
#include <iostream>
#include <memory>
WorkerThread::WorkerThread(size_t id, ThreadedTaskProcessor* manager, Solver* solver)
{
_id = id;
_manager = manager;
_solver = solver;
computing = false;
}
WorkerThread::~WorkerThread()
{
delete _solver;
}
void WorkerThread::WorkerLoop()
{
while (!terminate.load(std::memory_order_acquire))
{
_currentTasks = _manager->GetDispatchedTasks(_id, _solver->nTasksToRequest);
if (_currentTasks.size() != 0)
{
// Profiler
if (profileEnabled)
{
startTime = std::chrono::high_resolution_clock::now();
monitoringTime = true;
}
size_t tmp = _currentTasks.size();
computing = true;
std::vector<unique_ptr<TaskResults>> results = _solver->Compute(_currentTasks);
completedTasks += tmp;
_manager->GiveResults(_id, std::move(results));
computing = false;
if (profileEnabled)
{
auto t = chrono::high_resolution_clock::now();
std::chrono::duration<float> dT = t - startTime;
float dt_ms = std::chrono::duration_cast<std::chrono::milliseconds>(dT).count();
speed = 1.0/dt_ms;
monitoringTime = false;
_manager->ReportAverageSpeed(speed);
}
} else if (terminateWhenDone.load(std::memory_order_acquire)) {
terminate.store(terminate, std::memory_order_release);
}
}
_manager->ReportThreadTermination(_id);
}
// Optimizer
float WorkerThread::GetSimulationSpeed()
{
if (_currentTasks.size() != 0 && monitoringTime)
{
auto t = chrono::high_resolution_clock::now();
std::chrono::duration<float> dT = t - startTime;
float dt_ms = std::chrono::duration_cast<std::chrono::milliseconds>(dT).count();
return _solver->ApproximateComputationProgress()/dt_ms;
}
else
{
return speed;
}
return 0;
}
float WorkerThread::GetSimulationProgress()
{
if (computing) {
return _solver->ApproximateComputationProgress();
}
return 0;
}
| 24.896907 | 96 | 0.633954 | PhilipVinc |
346466210c1d3661a11296962286e65adea5697f | 3,053 | cpp | C++ | Source/Engine/src/video/texture.cpp | DatZach/Swift | b0c6f9c87e8c8dfe8a19dedc4dd57081fa5cdef7 | [
"MIT"
] | null | null | null | Source/Engine/src/video/texture.cpp | DatZach/Swift | b0c6f9c87e8c8dfe8a19dedc4dd57081fa5cdef7 | [
"MIT"
] | null | null | null | Source/Engine/src/video/texture.cpp | DatZach/Swift | b0c6f9c87e8c8dfe8a19dedc4dd57081fa5cdef7 | [
"MIT"
] | 1 | 2021-10-30T20:43:01.000Z | 2021-10-30T20:43:01.000Z | /*
* texture.cpp
* Texture
*/
#include <Video/Texture.hpp>
#include <Util/Logger.hpp>
#include <SOIL.h>
namespace Video
{
Texture::Texture()
: textureIndex(0),
size(),
linearFiltering(false)
{
glGenTextures(1, &textureIndex);
}
Texture::~Texture()
{
glDeleteTextures(1, &textureIndex);
}
bool Texture::LoadFilename(const std::string& filename)
{
unsigned char* imageData = SOIL_load_image(filename.c_str(), &size.x, &size.y, NULL, SOIL_LOAD_RGBA);
if (imageData == nullptr)
return false;
bool result = LoadMemory(imageData, size);
SOIL_free_image_data(imageData);
return result;
}
bool Texture::LoadStream(Util::Stream* stream)
{
const unsigned char* buffer = stream->GetRawMemoryBuffer();
int length = stream->GetLength();
unsigned char* imageData = SOIL_load_image_from_memory(buffer, length, &size.x, &size.y, NULL, SOIL_LOAD_RGBA);
if (imageData == nullptr)
return false;
bool result = LoadMemory(imageData, size);
SOIL_free_image_data(imageData);
return result;
}
bool Texture::LoadMemory(const unsigned char* buffer, const Vector2i& imageSize)
{
if (buffer == nullptr)
return false;
if (size.x > GetMaximumSize() || size.y > GetMaximumSize())
{
Error << "Texture::LoadMemory: Texture exceeds maximum size of "
<< GetMaximumSize()
<< " supported by this GPU."
<< lendl;
return false;
}
// Set defaults
size = imageSize;
// Bind the texture
Bind();
// Generate texture image and set texture parameters
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA8, size.x, size.y, 0, GL_RGBA, GL_UNSIGNED_BYTE, buffer);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
// TODO Mipmaps
GlCheckError();
return true;
}
void Texture::SetLinear(bool value)
{
if (linearFiltering == value)
return;
linearFiltering = value;
// Preserve texture binding
GLint bindingIndex;
glGetIntegerv(GL_TEXTURE_BINDING_2D, &bindingIndex);
// Bind this texture and update linear filtering
Bind();
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, linearFiltering ? GL_LINEAR : GL_NEAREST);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, linearFiltering ? GL_LINEAR : GL_NEAREST);
// Restore preserved binding
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, bindingIndex);
}
void Texture::Bind()
{
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, textureIndex);
}
const Vector2i& Texture::GetSize() const
{
return size;
}
int Texture::GetMaximumSize() const
{
GLint size;
glGetIntegerv(GL_MAX_TEXTURE_SIZE, &size);
return size;
}
int Texture::ClampToValidSize(int value)
{
if (GLEW_ARB_texture_non_power_of_two)
return value;
int valuePower = 1;
while(valuePower < value)
valuePower <<= 1;
return valuePower;
}
}
| 21.652482 | 113 | 0.718637 | DatZach |
34725a23647d21aa01629b3766ae67cb271de3e7 | 21,737 | cpp | C++ | src/program/kss2-program.cpp | Dragon987/mbed-xml | a5130f319fd6b8c7585635e5366c28ba9379bb7f | [
"Apache-2.0"
] | null | null | null | src/program/kss2-program.cpp | Dragon987/mbed-xml | a5130f319fd6b8c7585635e5366c28ba9379bb7f | [
"Apache-2.0"
] | null | null | null | src/program/kss2-program.cpp | Dragon987/mbed-xml | a5130f319fd6b8c7585635e5366c28ba9379bb7f | [
"Apache-2.0"
] | null | null | null | #include "kss2-program.h"
#include "string.h"
#include "../common.h"
#define GET_TXT_VALUE_FROM_CHILD(parent, child) atoi(dxml_child(parent, child)->txt)
bool ellement_in_array(int el, int *arr, int n)
{
for(int i = 0; i < n; i++)
if (el == arr[i])
return true;
return false;
}
namespace kss2_program
{
int load_plan(ssplan_t *splan, dxml_t signal_plan)
{
splan->broj_plana = atoi(dxml_attr(signal_plan, "NO"));
splan->RBC = atoi(dxml_child(signal_plan, "RBC")->txt);
splan->TPP = atoi(dxml_child(signal_plan, "TPP")->txt);
splan->REF = atoi(dxml_child(signal_plan, "REF")->txt);
dxml_t sigr; // Variable which keeps tracks of all SIGR elements in document
char startString[10];
char stopString[10];
int readSIGR[NOSIGGR]; // Array that keeps track of SIGR "NO" attributes
for (int i = 0; i < NOSIGGR; i++)
readSIGR[i] = -1;
int nsgr = 0;
// citanje nodova signalnih grupa
for (sigr = dxml_child(signal_plan, "SIGR"); sigr; sigr = sigr->next)
{
if (ellement_in_array(atoi(dxml_attr(sigr, "NO")) - 1, readSIGR, NOSIGGR))
return SIGR_NUMBER_ERROR; // Two SIGR with same NUMBER
else
readSIGR[nsgr] = atoi(dxml_attr(sigr, "NO")) - 1;
dxml_t start1 = dxml_child(sigr, "start1");
dxml_t stop1 = dxml_child(sigr, "stop1");
// provera postojanja starta1 i stopa1
if (!start1 || !stop1)
return SIGR_START_STOP; // No start1 or stop1
sspar_t sp1 = {(uchar)atoi(start1->txt),
(uchar)atoi(stop1->txt)};
for (int i = 1; i < NOSIGPAR; i++)
{
sprintf(startString, "start%d", i + 1);
sprintf(stopString, "stop%d", i + 1);
dxml_t start = dxml_child(sigr, startString);
dxml_t stop = dxml_child(sigr, stopString);
sspar_t sp;
if (start && stop)
sp = (sspar_t){(uchar)atoi(start->txt),
(uchar)atoi(stop->txt)};
else if (start)
sp = (sspar_t){(uchar)atoi(start->txt),
0};
else if (stop)
sp = (sspar_t){0,
(uchar)atoi(stop->txt)};
else
sp = (sspar_t){0, 0};
splan->Sgrupe[atoi(dxml_attr(sigr, "NO")) - 1].Spar[i] = sp;
}
splan->Sgrupe[atoi(dxml_attr(sigr, "NO")) - 1].Spar[0] = sp1;
nsgr++;
}
for (int i = nsgr + 1; i < NOSIGGR; i++)
{
for (int j = 0; j < NOSIGPAR; j++)
{
splan->Sgrupe[i].Spar[j] = (sspar_t){0, 0}; // Filling the rest with 0s
}
}
int zbirSIGR = 0; // The sum of all SIGR "NO"s
for (int i = 0; i < NOSIGGR; i++)
zbirSIGR += (readSIGR[i] == -1) ? 0 : readSIGR[i]; // readSigr[i] was -1 by default which means it wasn't changed, so it has no effect on the sum
if (zbirSIGR != nsgr * (nsgr - 1) / 2) // The sum of all numbers from 1 to n = (n*(n+1))/2, so nsgr * (nsgr - 1) / 2 represents the sum of all numbers between 1 and nsgr-1 and if our tracked sum doesn't equal that we know a SIGR "NO" attribute value was skipped.
return SIGR_NUMBER_ERROR;
dxml_t stop_points = dxml_child(signal_plan, "STOP_POINTS");
if (stop_points)
{
dxml_t nofsp = dxml_child(stop_points, "NUMBER_OF_STOP_POINTS");
if (nofsp)
splan->no_stop_tacaka = atoi(nofsp->txt);
else
splan->no_stop_tacaka = NOSTOPTACAKA;
dxml_t stop_p;
int nstop_p = 0;
for (stop_p = dxml_child(stop_points, "STOP_POINT"); stop_p; stop_p = stop_p->next)
{
uchar start = (dxml_child(stop_p, "start")) ? atoi(dxml_child(stop_p, "start")->txt) : 0;
uchar max = (dxml_child(stop_p, "max")) ? atoi(dxml_child(stop_p, "max")->txt) : 0;
uchar skok = (dxml_child(stop_p, "stop")) ? atoi(dxml_child(stop_p, "stop")->txt) : 0;
splan->stop_tacke[atoi(dxml_attr(stop_p, "NO")) - 1].start = start;
splan->stop_tacke[atoi(dxml_attr(stop_p, "NO")) - 1].max = max;
splan->stop_tacke[atoi(dxml_attr(stop_p, "NO")) - 1].skok = skok;
nstop_p++;
}
for (int i = nstop_p + 1; i < NOSTOPTACAKA; i++) // Filling the rest of stop points with 0s if their number in xml is smaller than NOSTOPTACAKA.
{
splan->stop_tacke[i].start = 0;
splan->stop_tacke[i].max = 0;
splan->stop_tacke[i].skok = 0;
}
}
if (dxml_child(signal_plan, "SIGNAL_PLAN_CRC"))
splan->CRC_plana = atoi(dxml_child(signal_plan, "SIGNAL_PLAN_CRC")->txt);
else
return NO_CRC; // No CRC
return SIGR_NO_ERROR;
}
void load_plan_with_0s(ssplan_t *plan)
{
plan->broj_plana = 0;
plan->CRC_plana = 0;
plan->RBC = 0;
plan->REF = 0;
plan->TPP = 0;
plan->no_stop_tacaka = 0;
for (int i = 0; i < NOSTOPTACAKA; i++)
{
plan->stop_tacke[i].max = 0;
plan->stop_tacke[i].start = 0;
plan->stop_tacke[i].skok = 0;
}
for (int i = 0; i < NOSIGGR; i++)
for (int j = 0; j < NOSIGPAR; j++)
{
plan->Sgrupe[i].Spar[j].start = 0;
plan->Sgrupe[i].Spar[j].stop = 0;
}
}
int load_plans(ssplan_t *planovi, dxml_t xml)
{
dxml_t root = dxml_child(xml, "SIGNAL_PLANS");
//int nsigplans = atoi(dxml_child(root, "NUMBER_OF_SIGNAL_PLANS")->txt);
bool filled[NOPLANS];
for (int i = 0; i < NOPLANS; i++)
filled[i] = false;
for (dxml_t sp = dxml_child(root, "SIGNAL_PLAN"); sp; sp = sp->next)
{
int indSP;
indSP = atoi(dxml_attr(sp, "NO")) - 1;
if (indSP >= NOPLANS)
continue;
filled[indSP] = true;
int error = load_plan(&(planovi[indSP]), sp);
if (error != SIGR_NO_ERROR)
{
printf("Error occured at signal plan %d\n", ++indSP);
return error;
}
}
for (int i = 0; i < NOPLANS; i++)
if (!filled[i])
load_plan_with_0s(&(planovi[i]));
return SIGR_NO_ERROR;
}
static int load_days(dxml_t timeTable, stdan_t *dani)
{
if (timeTable == NULL)
{
printf("Cannot retreive time table object from file!\n");
return TimeTableErrorInvalidFile;
}
dxml_t timeTableDay = dxml_child(timeTable, "TIME_TABLE_DAY");
if (timeTableDay == NULL)
{
printf("Cannot retreive time table day object from file!\n");
return TimeTableErrorInvalidFile;
}
int noDays = 0, sumDay = 0;
for (dxml_t day = dxml_child(timeTableDay, "DAY"); day; day = day->next) // Loop through all of the days
{
int dayIdx = atoi(dxml_attr(day, "NO")) - 1;
sumDay += dayIdx + 1;
dani[dayIdx].dan = dayIdx + 1;
dani[dayIdx].broj_planova = atoi(dxml_child(day, "NUMBER_OF_PLANS_PER_DAY")->txt);
int noPlans = 0;
for (dxml_t plan = dxml_child(day, "PLAN"); plan; plan = plan->next)
{
int planIdx = atoi(dxml_attr(plan, "NO")) - 1;
if (planIdx < 0 || planIdx > 18)
{
printf("Plan %d in day %d has invalid number!\n", planIdx + 1, dayIdx + 1);
return TimeTableErrorInvalidPlanNumber;
}
uchar sat = atoi(dxml_child(plan, "hour")->txt);
if ((int)sat > 23 || (int)sat < 0)
{
printf("Plan %d in day %d has invalid hour number %d!\n", planIdx + 1, dayIdx + 1, sat);
return TimeTableErrorInvalidValue;
}
dani[dayIdx].trojka[planIdx].sat = sat;
uchar min = atoi(dxml_child(plan, "minut")->txt);
if ((int)min > 59 || (int)min < 0)
{
printf("Plan %d in day %d has invalid minut number %d!\n", planIdx + 1, dayIdx + 1, min);
return TimeTableErrorInvalidValue;
}
dani[dayIdx].trojka[planIdx].minut = min;
uchar planNumber = atoi(dxml_child(plan, "plan_number")->txt);
if ((int)planNumber > 16 || (int)planNumber < 0)
{
printf("Plan %d in day %d has invalid plan_number number %d!\n", planIdx + 1, dayIdx + 1, planNumber);
return TimeTableErrorInvalidValue;
}
dani[dayIdx].trojka[planIdx].broj_plana = planNumber;
noPlans++;
}
if (noPlans > dani[dayIdx].broj_planova)
{
printf("Number of plans is too large for day %d\n", dayIdx + 1);
return TimeTableErrorInvalidValue;
}
else if (noPlans < dani[dayIdx].broj_planova)
{
printf("Number of plans is too small for day %d\n", dayIdx + 1);
return TimeTableErrorInvalidValue;
}
noDays++;
}
if (noDays != 7)
{
printf("Wrong number of days.\n");
return TimeTableErrorInvalidDays;
}
if (! (sumDay == 7 * 8 / 2.f)) // Checks
{
printf("Some day numbers are invalid or repeated.\n");
return TimeTableErrorInvalidDays;
}
return TimeTableNoErrors;
}
static int load_hollydays(dxml_t timeTable, stpraznik_t *praznik)
{
if (praznik == NULL)
{
printf("No hollydays loaded(no error).\n");
return TimeTableNoErrors;
}
dxml_t timeTableHol = dxml_child(timeTable, "TIME_TABLE_HOLLYDAY");
int noHol = 0;
praznik->broj_praznika = atoi(dxml_child(timeTableHol, "NUMBER_OF_HOLDAYS") ->txt);
if (praznik->broj_praznika > 19 || praznik->broj_praznika < 0)
{
printf("Invalid number of hollydays.\n");
return TimeTableErrorInvalidValue;
}
for (dxml_t holDate = dxml_child(timeTableHol, "DATE_OF_HOLIDAY"); holDate; holDate = holDate->next)
{
int holDateIdx = atoi(dxml_attr(holDate, "NO")) - 1;
if (holDateIdx < 0 || holDateIdx > 18)
{
printf ("Error at hollyday date number %d, invalid index!\n", holDateIdx + 1);
return TimeTableErrorInvalidValue;
}
int datum = atoi(dxml_child(holDate, "datum")->txt);
int mesec = atoi(dxml_child(holDate, "mesec")->txt);
if (mesec <= 0 || mesec > 12)
{
printf("Error at holyday day %d, value of mesec is %d\n", holDateIdx + 1, mesec);
return TimeTableErrorInvalidValue;
}
if ((mesec <= 7 && mesec % 2 == 1) || (mesec >= 8 && mesec % 2 == 0))
{
if (datum <= 0 || datum > 31)
{
printf("Error at holyday day %d, value of mesec is %d and value of datum is %d\n", holDateIdx + 1, mesec, datum);
return TimeTableErrorInvalidValue;
}
}
else if ((mesec <= 7 && mesec % 2 == 0) || (mesec >= 8 && mesec % 2 == 1))
{
if (mesec != 2)
{
if (datum <= 0 || datum > 30)
{
printf("Error at holyday day %d, value of mesec is %d and value of datum is %d\n", holDateIdx + 1, mesec, datum);
return TimeTableErrorInvalidValue;
}
}
else
{
if (datum <= 0 || datum > 28)
{
printf("Error at holyday day %d, value of mesec is %d and value of datum is %d\n", holDateIdx + 1, mesec, datum);
return TimeTableErrorInvalidValue;
}
}
}
praznik->datum[holDateIdx].datum = datum;
praznik->datum[holDateIdx].mesec = mesec;
noHol++;
}
if (noHol > praznik->broj_praznika || noHol < praznik->broj_praznika)
{
printf("Invalid number of hollydays.\n");
return TimeTableErrorInvalidValue;
}
int noPlans = atoi(dxml_child(timeTableHol, "NUMBER_OF_PLANS_PER_HOLIDAY")->txt);
if (noPlans > 16 || noPlans < 0)
{
printf("Invalid number of plans %d", noPlans);
return TimeTableErrorInvalidValue;
}
int cPlans = 0;
for (dxml_t plan = dxml_child(timeTableHol, "PLAN"); plan; plan = plan->next)
{
int planIdx = atoi(dxml_attr(plan, "NO")) - 1;
if (planIdx < 0 || planIdx > 18)
{
printf("Invalid plan index %d\n", planIdx);
return TimeTableErrorInvalidValue;
}
praznik->planovi[planIdx].broj_plana = atoi(dxml_child(plan, "plan_number")->txt);
praznik->planovi[planIdx].minut = atoi(dxml_child(plan, "minut")->txt);
praznik->planovi[planIdx].sat = atoi(dxml_child(plan, "hour")->txt);
cPlans++;
}
if (cPlans != noPlans)
{
printf("Invalid number of plans!\n");
return TimeTableErrorInvalidValue;
}
return TimeTableNoErrors;
}
static int load_dates(dxml_t timeTable, stdatum_t *datumi)
{
if (datumi == NULL)
{
printf("No dates loaded(no error).\n");
return TimeTableNoErrors;
}
dxml_t ttd = dxml_child(timeTable, "TIME_TABLE_DATE");
for (dxml_t date = dxml_child(ttd, "DATE_NUMBER"); date; date = date->next)
{
int dateIdx = atoi(dxml_attr(date, "NO")) - 9;
if (dateIdx < 0 || dateIdx > 7)
{
printf("Error at special date %d, invalid value", dateIdx + 9);
return TimeTableErrorInvalidValue;
}
datumi[dateIdx].broj_planova = GET_TXT_VALUE_FROM_CHILD(date, "NUMBER_OF_PLANS_PER_DATE");
datumi[dateIdx].godina = GET_TXT_VALUE_FROM_CHILD(date, "YEAR");
datumi[dateIdx].mesec = GET_TXT_VALUE_FROM_CHILD(date, "MONTH");
datumi[dateIdx].datum = GET_TXT_VALUE_FROM_CHILD(date, "DATE");
int nPlans = 0;
for (dxml_t plan = dxml_child(date, "PLAN"); plan; plan = plan->next)
{
nPlans++;
datumi[dateIdx].dan = dateIdx + 9;
int planIdx = atoi(dxml_attr(plan, "NO")) - 1;
if (planIdx < 0 || planIdx > 18)
{
printf("Error plan %d", planIdx + 1);
return TimeTableErrorInvalidValue;
}
datumi[dateIdx].trojka[planIdx].broj_plana = GET_TXT_VALUE_FROM_CHILD(plan, "plan_number");
datumi[dateIdx].trojka[planIdx].sat = GET_TXT_VALUE_FROM_CHILD(plan, "hour");
datumi[dateIdx].trojka[planIdx].minut = GET_TXT_VALUE_FROM_CHILD(plan, "minut");
}
if (nPlans != datumi[dateIdx].broj_planova)
{
printf("Error on date %d invalid amount of plans.\n", dateIdx + 9);
return TimeTableErrorInvalidValue;
}
}
return TimeTableNoErrors;
}
int load_time_table(dxml_t file, stdan_t *dani, stpraznik_t *praznik, stdatum_t *datumi)
{
dxml_t timeTable = dxml_child(file, "TIME_TABLE"); // Representation of time table in xml
if (timeTable == NULL)
{
printf("Failed to load time table object from file!\n");
return TimeTableErrorInvalidFile;
}
if (dani == NULL)
{
printf("You must provide pointer for dani!\n");
return TimeTableErrorInvalidDays;
}
printf("Loading days... ");
int err = load_days(timeTable, dani);
if (err != TimeTableNoErrors)
{
printf("Error occured while loading Days.\n");
return err;
}
printf("Done.\n");
printf("Loading hollydays... ");
err = load_hollydays(timeTable, praznik);
if (err != TimeTableNoErrors)
{
printf("Error occured while loading Hollydays.\n");
return err;
}
printf("Done.\n");
printf("Loading dates... ");
err = load_dates(timeTable, datumi);
if (err != TimeTableNoErrors)
{
printf("Error occured while loading dates.\n");
return err;
}
printf("Done!\n");
return TimeTableNoErrors;
}
int load(ssplan_t* planovi, stdan_t *dani, stpraznik_t *praznik, stdatum_t *datumi, const char* filename)
{
auto fp = fopen(filename, "r");
auto xml = dxml_parse_fp(fp);
auto err = load_plans(planovi, xml);
if (err) {
printf("Failed to load plans: %d\n\r", err);
// return err;
}
err = load_time_table(xml, dani, praznik, datumi);
if (err) {
printf("Failed to load time table: %d\n\r", err);
return err;
}
return 0;
}
static void save_sigr(dxml_t xml, const ssplan_t& plan, int current)
{
auto sigr = create_tag_with_attr(xml, "SIGR", "NO", current + 1);
create_tag_with_txt(sigr, "name1", strdup("somename1"));
create_tag_with_txt(sigr, "name2", strdup("somename2"));
create_tag_with_txt(sigr, "enable", 0);
for (int i = 0; i < NOSIGPAR; ++i)
{
char *start = new char[7];
start[6] = 0;
char *stop = new char[6];
stop[5] = 0;
snprintf(start, 7, "start%d", i + 1);
snprintf(stop, 6, "stop%d", i + 1);
create_tag_with_txt(sigr, start, plan.Sgrupe[current].Spar[i].start);
create_tag_with_txt(sigr, stop, plan.Sgrupe[current].Spar[i].stop);
}
}
static void save_stop_point(dxml_t xml, const ssplan_t &plan, uchar current)
{
auto stop_point = create_tag_with_attr(xml, "STOP_POINT", "NO", current + 1);
create_tag_with_txt(stop_point, "start", plan.stop_tacke[current].start);
create_tag_with_txt(stop_point, "max", plan.stop_tacke[current].max);
create_tag_with_txt(stop_point, "skok", plan.stop_tacke[current].skok);
}
static void save_signal_plans(dxml_t xml, const ssplan_t planovi[NOPLANS], int current)
{
if (current == NOPLANS)
return;
auto& plan = planovi[current];
auto sig_plan = create_tag_with_attr(xml, "SIGNAL_PLAN", "NO", current + 1);
create_tag_with_txt(sig_plan, "RBC", plan.RBC);
create_tag_with_txt(sig_plan, "TPP", plan.TPP);
create_tag_with_txt(sig_plan, "REF", plan.REF);
for (int i = 0; i < NOSIGGR; ++i)
save_sigr(sig_plan, plan, i);
auto stop_points = dxml_add_child(sig_plan, "STOP_POINTS", 0);
create_tag_with_txt(stop_points, "NUMBER_OF_STOP_POINTS", plan.no_stop_tacaka);
for (uchar i = 0; i < plan.no_stop_tacaka; ++i)
save_stop_point(stop_points, plan, i);
// </STOP_POINTS>
create_tag_with_txt(sig_plan, "SIGNAL_PLAN_CRC", plan.CRC_plana);
// </SIGNAL_PLAN>
save_signal_plans(xml, planovi, current + 1);
}
void save_day(dxml_t xml, const stdan_t& dan, uchar current)
{
dxml_t day = create_tag_with_attr(xml, "DAY", "NO", current);
create_tag_with_txt(day, "NUMBER_OF_PLANS_PER_DAY", dan.broj_planova);
for (int i = 0; i < dan.broj_planova; ++i)
{
dxml_t plan = create_tag_with_attr(day, "PLAN", "NO", i + 1);
const auto& info = dan.trojka[i];
create_tag_with_txt(plan, "hour", info.sat);
create_tag_with_txt(plan, "minut", info.minut);
create_tag_with_txt(plan, "plan_number", info.broj_plana);
}
}
void save_date_number(dxml_t xml, const stdatum_t &datum, int current)
{
auto date_number = create_tag_with_attr(xml, "DATE_NUMBER", "NO", current);
create_tag_with_txt(date_number, "NUMBER_OF_PLANS_PER_DATE", datum.broj_planova);
create_tag_with_txt(date_number, "DATE", datum.datum);
create_tag_with_txt(date_number, "MONTH", datum.mesec);
create_tag_with_txt(date_number, "YEAR", datum.godina);
for (int i = 0; i < datum.broj_planova; ++i)
{
dxml_t plan = create_tag_with_attr(date_number, "PLAN", "NO", i + 1);
create_tag_with_txt(plan, "hour", datum.trojka[i].sat);
create_tag_with_txt(plan, "minut", datum.trojka[i].minut);
create_tag_with_txt(plan, "plan_number", datum.trojka[i].broj_plana);
}
}
void save(const ssplan_t planovi[NOPLANS], const stdan_t *dani,
const stpraznik_t *praznik, stdatum_t *datumi, const char* filename)
{
auto xml = dxml_new("PROGRAM_DATA");
auto sig_plans = dxml_add_child(xml, "SIGNAL_PLANS", 0);
create_tag_with_txt(sig_plans, "NUMBER_OF_SIGNAL_PLANS", NOPLANS);
save_signal_plans(sig_plans, planovi, 0);
// </SIGNAL_PLANS>
auto time_table = dxml_add_child(xml, "TIME_TABLE", 0);
auto tt_day = dxml_add_child(time_table, "TIME_TABLE_DAY", 0);
for (int i = 0; i < 7; ++i)
save_day(tt_day, dani[i], dani[i].dan);
// </TIME_TABLE_DAY>
auto tt_hollyday = dxml_add_child(time_table, "TIME_TABLE_HOLLYDAY", 0);
create_tag_with_txt(tt_hollyday, "NUMBER_OF_HOLDAYS", praznik->broj_praznika);
for (int i = 0; i < praznik->broj_praznika; ++i)
{
auto doh = create_tag_with_attr(tt_hollyday, "DATE_OF_HOLIDAY", "NO", i + 1);
create_tag_with_txt(doh, "datum", praznik->datum[i].datum);
create_tag_with_txt(doh, "mesec", praznik->datum[i].mesec);
}
create_tag_with_txt(tt_hollyday, "NUMBER_OF_PLANS_PER_HOLIDAY", BROJ_PLANOVA_NA_PRAZNIKU);
for (int i = 0; i < BROJ_PLANOVA_NA_PRAZNIKU; ++i)
{
dxml_t plan = create_tag_with_attr(tt_hollyday, "PLAN", "NO", i + 1);
create_tag_with_txt(plan, "hour", praznik->planovi[i].sat);
create_tag_with_txt(plan, "minut", praznik->planovi[i].minut);
create_tag_with_txt(plan, "plan_number", praznik->planovi[i].broj_plana);
}
// </TIME_TABLE_HOLLYDAY>
dxml_t tt_date = dxml_add_child(time_table, "TIME_TABLE_DATE", 0);
for (int i = 9; i < 16; ++i)
save_date_number(tt_date, datumi[i - 9], i);
// </TIME_TABLE_DATE>
// </TIME_TABLE>
auto fp = fopen(filename, "w");
auto buff = dxml_toxml(xml);
fwrite(buff, sizeof (char), strlen(buff), fp);
free(buff);
fclose(fp);
}
} // namespace kss2_program
| 32.443284 | 266 | 0.582969 | Dragon987 |
347a33b9a8cc5b8581d4094543dd9a5abb969da8 | 38,090 | inl | C++ | src/fonts/stb_font_consolas_32_usascii.inl | stetre/moonfonts | 5c8010c02ea62edcf42902e09478b0cd14af56ea | [
"MIT"
] | 3 | 2018-03-13T12:51:57.000Z | 2021-10-11T11:32:17.000Z | src/fonts/stb_font_consolas_32_usascii.inl | stetre/moonfonts | 5c8010c02ea62edcf42902e09478b0cd14af56ea | [
"MIT"
] | null | null | null | src/fonts/stb_font_consolas_32_usascii.inl | stetre/moonfonts | 5c8010c02ea62edcf42902e09478b0cd14af56ea | [
"MIT"
] | null | null | null | // Font generated by stb_font_inl_generator.c (4/1 bpp)
//
// Following instructions show how to use the only included font, whatever it is, in
// a generic way so you can replace it with any other font by changing the include.
// To use multiple fonts, replace STB_SOMEFONT_* below with STB_FONT_consolas_32_usascii_*,
// and separately install each font. Note that the CREATE function call has a
// totally different name; it's just 'stb_font_consolas_32_usascii'.
//
/* // Example usage:
static stb_fontchar fontdata[STB_SOMEFONT_NUM_CHARS];
static void init(void)
{
// optionally replace both STB_SOMEFONT_BITMAP_HEIGHT with STB_SOMEFONT_BITMAP_HEIGHT_POW2
static unsigned char fontpixels[STB_SOMEFONT_BITMAP_HEIGHT][STB_SOMEFONT_BITMAP_WIDTH];
STB_SOMEFONT_CREATE(fontdata, fontpixels, STB_SOMEFONT_BITMAP_HEIGHT);
... create texture ...
// for best results rendering 1:1 pixels texels, use nearest-neighbor sampling
// if allowed to scale up, use bilerp
}
// This function positions characters on integer coordinates, and assumes 1:1 texels to pixels
// Appropriate if nearest-neighbor sampling is used
static void draw_string_integer(int x, int y, char *str) // draw with top-left point x,y
{
... use texture ...
... turn on alpha blending and gamma-correct alpha blending ...
glBegin(GL_QUADS);
while (*str) {
int char_codepoint = *str++;
stb_fontchar *cd = &fontdata[char_codepoint - STB_SOMEFONT_FIRST_CHAR];
glTexCoord2f(cd->s0, cd->t0); glVertex2i(x + cd->x0, y + cd->y0);
glTexCoord2f(cd->s1, cd->t0); glVertex2i(x + cd->x1, y + cd->y0);
glTexCoord2f(cd->s1, cd->t1); glVertex2i(x + cd->x1, y + cd->y1);
glTexCoord2f(cd->s0, cd->t1); glVertex2i(x + cd->x0, y + cd->y1);
// if bilerping, in D3D9 you'll need a half-pixel offset here for 1:1 to behave correct
x += cd->advance_int;
}
glEnd();
}
// This function positions characters on float coordinates, and doesn't require 1:1 texels to pixels
// Appropriate if bilinear filtering is used
static void draw_string_float(float x, float y, char *str) // draw with top-left point x,y
{
... use texture ...
... turn on alpha blending and gamma-correct alpha blending ...
glBegin(GL_QUADS);
while (*str) {
int char_codepoint = *str++;
stb_fontchar *cd = &fontdata[char_codepoint - STB_SOMEFONT_FIRST_CHAR];
glTexCoord2f(cd->s0f, cd->t0f); glVertex2f(x + cd->x0f, y + cd->y0f);
glTexCoord2f(cd->s1f, cd->t0f); glVertex2f(x + cd->x1f, y + cd->y0f);
glTexCoord2f(cd->s1f, cd->t1f); glVertex2f(x + cd->x1f, y + cd->y1f);
glTexCoord2f(cd->s0f, cd->t1f); glVertex2f(x + cd->x0f, y + cd->y1f);
// if bilerping, in D3D9 you'll need a half-pixel offset here for 1:1 to behave correct
x += cd->advance;
}
glEnd();
}
*/
#ifndef STB_FONTCHAR__TYPEDEF
#define STB_FONTCHAR__TYPEDEF
typedef struct
{
// coordinates if using integer positioning
float s0,t0,s1,t1;
signed short x0,y0,x1,y1;
int advance_int;
// coordinates if using floating positioning
float s0f,t0f,s1f,t1f;
float x0f,y0f,x1f,y1f;
float advance;
} stb_fontchar;
#endif
#define STB_FONT_consolas_32_usascii_BITMAP_WIDTH 256
#define STB_FONT_consolas_32_usascii_BITMAP_HEIGHT 138
#define STB_FONT_consolas_32_usascii_BITMAP_HEIGHT_POW2 256
#define STB_FONT_consolas_32_usascii_FIRST_CHAR 32
#define STB_FONT_consolas_32_usascii_NUM_CHARS 95
#define STB_FONT_consolas_32_usascii_LINE_SPACING 21
static unsigned int stb__consolas_32_usascii_pixels[]={
0x04000993,0x2654c000,0x00015793,0x99930620,0x40019999,0xccca8008,
0x26004ccc,0x654c001a,0x000000ac,0x06600000,0x00000000,0x00000000,
0x401fee00,0x000ba25d,0x53ffff4c,0x0019ffff,0xb877fc40,0x1fffffff,
0x7fff6440,0xffff902d,0x3a001fff,0xffb1002f,0x001dffff,0x7ccdfb00,
0xff70002f,0x37ec05ff,0x2e7fd800,0xfe8001ff,0x39dff32f,0xfffffd80,
0x00ff704f,0x3ff63ff9,0x7ffc4002,0x3fb264df,0x320004ff,0x99933fff,
0x5403ffb9,0xfffddfff,0xcccffc82,0x07fe004c,0x3bfffe60,0x001effff,
0xfd0ffe20,0xbff7000b,0xff503fff,0x9ff60003,0xe8001ffb,0xffff32ff,
0x3ff603df,0xf704ffff,0x23ffc80f,0x2001ffe8,0x4c00bffc,0x70001ffe,
0x7d407fff,0x19ff701f,0x7e42ffb8,0xff510007,0x7ffc4015,0x1fff660b,
0xa87fc800,0x3e2000ff,0x889fd12f,0x360004fe,0x007fee7f,0x544bffa0,
0x82ffffcb,0x4ffa9998,0x7d40ff70,0x0fff884f,0x400ffd00,0x10003ffb,
0xffa80bfb,0x202ff981,0x03fe46fc,0xfffff910,0xff903fff,0x01ffec07,
0xff04ff80,0x23fcc009,0x037e46fc,0xfb9ff600,0xffe8001f,0x3fff9102,
0x704ff880,0x1bfe20ff,0xf005ff98,0x7fc4009f,0xa8000004,0x04fe81ff,
0x1ff21fe8,0x7ffffd40,0x441fffff,0x7fc406ff,0x0ffa8006,0x5400ff90,
0xf337d47f,0xfd80003f,0x0007fee7,0xf7007ff6,0x4ff880bf,0x3f20ff70,
0x0ffec01f,0x000ffe20,0x00000bfd,0xfb83ff50,0x649f9006,0xfff9807f,
0xb98dfb9c,0x401ffdc0,0x74001ffe,0x0bfe205f,0xf707fcc0,0x00027f4b,
0x3ff73fec,0x03ffb000,0x4401fff0,0x0ff704ff,0xf1009ff3,0x3ff880df,
0x102ff400,0x99999999,0x7fd40199,0xa8017f41,0x201ff27f,0x13f22ffd,
0x7001ff90,0x7cc005ff,0x037ec02f,0xf88cff88,0x001ff93f,0x76776dd4,
0x4c7fee7f,0xfb03dfdb,0x5ffb003f,0xb827fc40,0x00ffd87f,0x4405ff70,
0x7f4003ff,0x3fffe605,0x00ffffff,0x7fa87fea,0x8898aa88,0x201ff27f,
0x01fec7ff,0x7d401ff6,0x1bf2003f,0x4007fea0,0x36fffffb,0x3a2005ff,
0xffffffff,0x3ea3fee7,0xd85fffff,0xffc801ff,0x413fe201,0x2ffc47fb,
0x40bff100,0x74003ff8,0x3332205f,0x0ffecccc,0xfd87fea0,0x3ffff624,
0x3f21ff1f,0x20fff807,0x37f402ff,0x004ff980,0x3a007ff1,0x3faa005f,
0x4017fa4e,0xbabdfff9,0x3fee7ffd,0xfecbdffc,0x00ffec4f,0xf1007ff4,
0x51fee09f,0xfe8005ff,0x03ff100f,0x0005fd80,0xfa803ff2,0xfe87fe1f,
0xff0fffcf,0x3601ff23,0x007fe4ff,0x3e600dff,0x1ff7005f,0x003fee00,
0x001ff700,0x7ec07bfa,0x0bfffee7,0x7e41ffd1,0x3ff2600f,0x827fc405,
0x03fec7fb,0xb817fdc0,0xffa8007f,0x1ff90000,0xf88ffd40,0x2e1ff50f,
0x7e4bfa7f,0xefff9807,0x7fc00ffb,0x09ff3006,0x88013fa0,0x260003ff,
0xff7002ff,0xf73fec05,0x3fee03ff,0xfb03ff23,0x801fffff,0xff704ff8,
0x98005ff8,0x3ee624ff,0xff88004f,0x7e4001ae,0x47fea00f,0xc93f66fa,
0x7e4bfa6f,0xffff5007,0x7ff801ff,0x007ff300,0xc8003ff5,0x3fa0007f,
0x01bfa005,0x17fdcffb,0x7e49ff10,0x77ffec0f,0x4ff8800c,0x7fc4ff70,
0x4ff88005,0x005dfff7,0x3fffe440,0x401ff900,0x2bf71ffa,0x97f62ff8,
0x00ff91fe,0x7ffffec4,0x00ffd00c,0x3600bfea,0xff98006f,0x0ffb8002,
0xb017fe00,0x00ffdcff,0x0ffc97fe,0x44003fe4,0x4ff704ff,0xf0004ff8,
0x3bffeebf,0x7fdc0002,0x3ff2007f,0x647fea00,0x741ff54f,0x7e43fe3f,
0xffd88007,0xffd83fff,0x01ffc801,0x80017fc4,0x7c4005fe,0x3dffd33f,
0x6c04ff88,0x007fee7f,0x07fdcdff,0x22001bf2,0x4ff704ff,0xf0003ff9,
0x7fe4c4df,0xeff88005,0x3f20009a,0x47fea00f,0xf8ff73fd,0x7e43fe2f,
0xdbfb0007,0xffb87fff,0x807ff804,0x2a0007fc,0x3f6001ff,0xffffff56,
0x201ffcc1,0x07fee7fd,0x3fdcdff0,0x440037e4,0x4ff704ff,0xf0004ff9,
0x01fee0df,0x0003fea0,0xf5007fe4,0x7e4ff63f,0x7c47fe66,0x4001ff27,
0x3fff52fe,0x2e037fc4,0x4ff803ff,0x027fc000,0x9fd0ffa8,0xff897fa2,
0xf73fec04,0x27fc403f,0x0df90ff7,0x209ff100,0x13fe27fb,0x982ffc00,
0x7e4001ff,0x3ff20005,0x747fea00,0x7d4df92f,0x7e4bf50f,0x43ff0007,
0x7fec3ffb,0x01fff305,0x0000ffb8,0x22007fdc,0x41ff13ff,0x13fe26fb,
0x7fdcffd0,0x00ffe601,0x3fe20000,0xff8ff704,0x4ff88005,0x8007ff10,
0x320005fe,0x3fea00ff,0x9fee7fb1,0xc8bf67fd,0xff88007f,0xf113fea0,
0xf9537dff,0xbfd005ff,0x7ff10000,0x3ea6fd80,0x3fe3fd47,0xb9fff607,
0x3ff201ff,0x88000001,0x8ff704ff,0xfa8007fe,0x07ff102f,0x0005fe80,
0xfa803ff2,0x3ea7f91f,0xa9fffa9f,0x01ff20ff,0xffb1fe60,0xfffff305,
0x3005ffff,0x200003ff,0x3fea06fd,0xfa83fe61,0x6417fe46,0x3fee7fff,
0xa8bff301,0x0275c0cd,0xb827fc40,0x00ffe47f,0x4403ff20,0x7f4003ff,
0x3ff20005,0x647fea00,0x37fffe4f,0x642ffffb,0x7d40807f,0x403ffea6,
0xcffffeb8,0x00dfb001,0x417fcc00,0x7fc44ff8,0xff313fa4,0x9dfd515f,
0x4e7fdcff,0x41fff730,0x3e64fff8,0x4ccc03ff,0x999dffa9,0xff98ff71,
0x037fc004,0xe8007ff1,0x3f20005f,0x47fea00f,0x33f225fb,0xc82dfc88,
0x677cc07f,0xfffdefdc,0x1ff9003f,0x01ffc400,0x217fa000,0xdff906fc,
0xff701fff,0xf71dffff,0x7ffffdcf,0x4c1effff,0x3fea5fff,0x3ffe604f,
0xffffffff,0xfe87fb9f,0x0ffea007,0x4003ff88,0x320005fe,0x3fea00ff,
0x0000ff51,0xff980ff9,0xffffffff,0x3fea002f,0x03fee003,0x1ff70000,
0xf700ffd4,0x75c01dff,0xff70ceff,0x7fffed44,0x3ff603ef,0x807ffa22,
0xfffffff9,0xfb9fffff,0x003ffb87,0xff880ffd,0x02ff4003,0xa80ffb00,
0x03ff11ff,0x407fc800,0xfffeecb8,0xf88003ce,0x20ea0aff,0x000004ff,
0x4c0009ff,0x00022000,0x02600088,0x8000004c,0x1ffd07fb,0x802ffb80,
0x3e2005ff,0x3fa0004f,0xb0ffd406,0xfc80009f,0x02ff8007,0xffffb800,
0x3ea1fffe,0x9000001f,0x000000ff,0x00000000,0x70000000,0x17fe60ff,
0xd006ff88,0x3ee001ff,0xff30003f,0x21ffa809,0x20001ff9,0xff8007fc,
0xff700001,0x741bffff,0x2000005f,0x00002ff8,0x00000000,0x00000000,
0xff903fdc,0x007ff607,0x1016ffdc,0x6401ffd7,0x07ffdc41,0xfd07fea0,
0xc805403f,0x7fcc007f,0x2a200000,0x1aa81acb,0x55400000,0x00000001,
0x00000000,0x7dc00000,0x0bffa207,0xe8005ff9,0x3aa6ffff,0x7c04ffff,
0xffffeeff,0x77777543,0xeffd81ff,0x01ffdcbc,0xdddddff9,0x00132601,
0x00000000,0x00000000,0x00000000,0x00000000,0x3a203fdc,0x07ff71ff,
0xffff9100,0x017fffd4,0x7ffffff4,0xffffb81e,0xff901fff,0x019dffff,
0x3ffffff2,0x0000000f,0x00000000,0x00000000,0x00000000,0x70000000,
0x1df100ff,0x100013ea,0x04d44553,0x2aeea600,0x2aaaa601,0x54400aaa,
0xaa9801aa,0x0002aaaa,0x00000000,0x00000000,0x00000000,0x00000000,
0x401fee00,0x00000c09,0x00000000,0x00000000,0x00000000,0x00000000,
0x00000000,0x00000000,0x5c000000,0x0000007f,0x00000000,0x00000000,
0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x0000154c,
0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,
0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,
0x00000000,0x00000000,0x00000000,0x59751000,0x20000001,0xca800ccb,
0x0004c00c,0xfd930000,0x199999bd,0x01331000,0x59ddb750,0x73264cd9,
0x4c007bfb,0x654c0003,0x555400ac,0x2aaaaaaa,0x0acca880,0x5554c000,
0x332ea200,0x077ae02b,0x7fffffd4,0x027fc403,0x804ffb80,0x7fec07ff,
0x007fee02,0xfffffc80,0x01ffffff,0xfffff910,0xfffd105f,0x5cffffff,
0xfffff57f,0x1ff900bf,0xfffb1000,0x3a01dfff,0xffffffff,0xffb100ff,
0x8009ffff,0x2fffffeb,0xffffff70,0xfffa87ff,0xedfffa86,0x3e203fff,
0xff10004f,0x04ff980f,0xb81bffe6,0xf90001ff,0xffb313bf,0xf300199f,
0x5fffffff,0xabcfff98,0x3ee7ffdb,0xecbdffbf,0x7fe404ff,0x7ffcc000,
0x1efffeef,0xffffffe8,0xe880ffff,0xfffddfff,0x7ffd400d,0xb82fffff,
0xffdcefff,0x3ffee2ff,0x30fff40f,0x7fc40fff,0x3ff60004,0x807ff202,
0x2e05fff9,0xf88001ff,0x03ff906f,0x45efff40,0x77f40a98,0x7dcffb01,
0x7f442fff,0x03ff200f,0x0bfff880,0x3a1fff62,0xffd0005f,0x03ffd887,
0x06b7ffea,0x701dff30,0x7ffccfff,0x6c27fc46,0x9ff100ff,0x2ffcc000,
0xf700dff0,0x0ffdc03d,0x817fd400,0xf3004ff9,0x3fee00df,0xfb9ff602,
0x7ff701ff,0x0007fe40,0x7ec07ff9,0x002ff43f,0xe8827fcc,0x3dff107f,
0x01ffdc00,0x66d41ffd,0x641ffcc0,0x9ff100ff,0x0ffe8000,0x0003ffa8,
0x0007fee0,0x7c407fee,0x7ff7004f,0xb01bfa00,0x017fdcff,0x66649ff1,
0xccccffec,0x3fe20ccc,0x237fc406,0xfd8005fe,0x0bfee00f,0x90003ff6,
0x7fe401ff,0x0bff1000,0x7fc40dfd,0x7fdc0004,0x000ffd83,0x007fee00,
0x4c0bfee0,0xff9003ff,0x017fe001,0x0ffdcffb,0xfff97fe0,0xffffffff,
0x3fee0fff,0x21ffe803,0x7c4005fe,0x2ffe405f,0x2000ffe2,0x3fe03ffa,
0x07ffc006,0x7c407ff9,0x0f32e04f,0x3e237fc4,0x9999705f,0x7fdc0599,
0x07bfdb31,0x7ec1bfe2,0x0ffb001f,0xb013fe20,0x00ffdcff,0xcccc9bfe,
0xcccccffe,0x03ff20cc,0xfe8bfee0,0x17fcc005,0x46fffd88,0xf0000ffb,
0x7ff905ff,0x8dffb800,0x7c405ffd,0x1dff904f,0xf50ffec0,0x3fff605f,
0x3ee04fff,0xfffffc8f,0x5dff905f,0x009ffb53,0xf9803fec,0x73fec03f,
0x6ff803ff,0x4003ff20,0xff5007fd,0x4d577f47,0x417fd400,0x47fffffa,
0x2f2a67fd,0x3ffee009,0x0dffe98c,0xffffe800,0x4ff8803f,0x400effb8,
0x1ff64ffa,0xffccccb8,0x3f7fee04,0x2fffdadf,0xffffffd8,0x2aa604ff,
0xaabffeaa,0x3fe22aaa,0xf73fec04,0x04ff803f,0x74003ff2,0x9ff3006f,
0x7ffffff4,0x1ffb81cf,0x7e5fffe4,0x7fe77f47,0x203fffff,0xfffffff9,
0x3ff20003,0xff1001ef,0x00effb89,0x3fe2ffd0,0x13fe2004,0x41ffffb8,
0x7fd46ff9,0x01cdedba,0x7fffffec,0x7fffffff,0xfd013fe2,0x300ffdcf,
0x7fe407ff,0x00dff000,0xffe97fe6,0x2fffffff,0xfe887fe4,0x41ff71ef,
0xcdefffff,0x2604fffe,0x00efffff,0xfffffb00,0x7c44cb83,0x03bfee4f,
0xfbaffb80,0x3fe2001f,0x07ffee04,0x17f63ffc,0xeeeec800,0xeeeeefff,
0xb03ffc5e,0x0ffdcfff,0x6403ff90,0xdff000ff,0x013fe600,0x45fffb53,
0xfffa8ffb,0xff07fe45,0xffd3019f,0xfdffd303,0x57105fff,0xff99ffb0,
0x2237f41d,0x1dff74ff,0xedff8800,0x7fc4006f,0x80bfee04,0x3ffa0ffd,
0x3f600000,0x0bff2007,0xfb9ffff2,0x0bff301f,0xf000ffc8,0x3fe600ff,
0x97fee003,0x2fffdffb,0x2ffc7fc8,0xf713fea0,0x3ff665df,0x93ffe23f,
0x3ff65ffa,0xff117fe5,0x001dff79,0x0fffff60,0x409ff100,0x3f201ffb,
0x3bfff20f,0x00acccde,0x9801ff60,0xfea8afff,0x3fee7fde,0xfff7309c,
0x00ffc801,0x2a00ffd0,0x7fc002ff,0x3bfffea7,0xff8ffb01,0x266ff806,
0xffb80eff,0x1ffff70f,0xfe883ff6,0x444ff9cf,0x00fffeff,0x3fffea00,
0x27fc4000,0x6403ff70,0x3ff620ff,0xffffffff,0x00ffb004,0xffffffb8,
0x3ee7fc8e,0xffffffff,0x0ffc801e,0x003ffb00,0xd8003ff9,0x9fff30ff,
0x7f46fe80,0x327fe807,0x3ff201ff,0x21ffff73,0xfff986ff,0x7fc42ffd,
0x0005ffcc,0x40027ffc,0x3ee04ff8,0x83ff201f,0xdcccffe8,0x804ffffe,
0xeb8007fd,0xff90ceff,0x7fffffdc,0x3f2003ef,0x7ff7000f,0x000fff00,
0x37fc4ffd,0xfb13fe60,0x26ff801f,0x7fcc06fe,0xff8fffa4,0xfffff505,
0xfb4ff881,0x7fc0009f,0xff88000f,0x807fee04,0x3ffa0ffc,0x01ffea00,
0x88001ff6,0x3ee7fd80,0x0000989f,0x22005ff7,0x7fd406ff,0x2ffc4003,
0xfc807ff2,0x01ffdc0f,0x3fe29ff1,0x227fcc06,0x903ffc09,0xff109fff,
0x00fffa29,0x0013fee0,0xf7027fc4,0x87fe403f,0xfd803ff9,0x03fec00f,
0x73fec000,0x500003ff,0x7e400bff,0x0fff305f,0x42ffe880,0xff506ff9,
0x40dff10b,0x3ffa1ffd,0x00bff601,0x7cc0fff6,0x4ff885ff,0x800fffa2,
0x0000fff9,0x7dc09ff1,0x43ff201f,0xfe803ffb,0x007fd807,0x2e7fd800,
0x880001ff,0x998bdfff,0x77ffcc0b,0x2fffca9b,0x4cc4cd44,0xfb03fffc,
0xff7313df,0x3bff203f,0x713ff661,0x31137fff,0x3001dffb,0x73339fff,
0x889fffff,0x7ffcc4ff,0x1fffb802,0x13fe2000,0x3201ffb8,0x3fff30ff,
0x013ff220,0x00001ff6,0x1ffb9ff6,0xfff50000,0x101fffff,0xfffffffd,
0xffff305f,0x807fffff,0xfffffffd,0x7ffec01e,0xb05fffff,0xffffffff,
0x7dc001df,0xefffffff,0x3e22fffb,0x2fffa84f,0x3ffffff8,0x54cccc00,
0x21999dff,0x3f201ffb,0x3ffff60f,0x6fffedce,0x000ffb00,0x7dcffb00,
0x2600001f,0x0efffffd,0xdfffd910,0x3ffe601b,0x000cefff,0x19dfffd7,
0x3fffae00,0x7f4c02df,0x003effff,0xdffffb30,0x88fffd47,0xfff704ff,
0x1effff83,0x7fffcc00,0xffffffff,0x6403ff71,0x7ffe40ff,0x03efffff,
0x0001ff60,0xffb9ff60,0x31000001,0x00980013,0x00133310,0x80001300,
0x33100009,0x00880000,0x9027fc40,0x55543fff,0xfff30000,0xffffffff,
0x807fee3f,0x75300ffc,0xb0003559,0x300000ff,0x00554c55,0x00000000,
0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,
0x00000000,0x00000000,0x00000000,0x00000000,0x3bd70000,0x79973100,
0x99953005,0x55550359,0x23555555,0xaa801aa8,0x665cc402,0xccb980ac,
0x555402bc,0xaaaaaaaa,0x02aaa1aa,0xaa86aa60,0x2aa6001a,0xaccb9881,
0x00155500,0xaa88554c,0x00aa6000,0xaaa80997,0xa88d5401,0xaaaaaaaa,
0x7d41aaaa,0x3f6206ff,0x2fffffff,0xfffffea8,0x7ff41fff,0x5fffffff,
0xfd007ff3,0x3fff620d,0x3a4fffff,0xefffffff,0xffffff02,0x9fffffff,
0x2202ffe4,0x3fee0fff,0x1fff1006,0xffffffc8,0x03ffc82f,0x7cc7ff60,
0x1bf2002f,0x103fff54,0xfe80dfff,0xffffff15,0x9fffffff,0x80ffffb8,
0xeeffffe9,0x7fdc3fff,0xffeeeeef,0x7fffff41,0xff35ffff,0x50dfd007,
0xfddfffff,0x777f4bff,0x82ffffed,0xffffffff,0x744fffff,0x3ff201ff,
0x802ffe83,0x3fa23ffc,0xffffeeff,0x0037fcc2,0x17fc4dff,0xea8bfb00,
0x2207ffff,0x3a02ffff,0xfffff15f,0xffffffff,0x86fff989,0x981dfff9,
0x07ffe63c,0x3e200098,0x007ff35f,0xfffb8dfd,0x2a4c981c,0x87ffc880,
0x99999999,0x540fff99,0xdff306ff,0x101bfea0,0xbff98dff,0x207ffdc0,
0xfa800fff,0x00ffe23f,0xffd35fd8,0x440fffdf,0x3a06ffff,0x2666665f,
0xffb99999,0xd80cda83,0x7ec004ff,0x4400003f,0x07ff35ff,0x7fc4dfd0,
0x2200002f,0xd8001fff,0x7ffb03ff,0x6c03ffd0,0x3ff203ff,0x3f601a82,
0x01ffe42f,0x3fe0ffec,0x653fa003,0x0fff2eff,0x0fff7fc4,0xe8005fe8,
0xffa8007f,0x07ff8005,0x5ff88000,0xfd007ff3,0x001ffe4d,0x00ffe400,
0x881bfea0,0x3fee0fff,0x07ffcc04,0x80037fcc,0x7fcc3ffa,0xf86ff805,
0x53fa004f,0x03ffc3f9,0x0bff7ff1,0xf50017fa,0xffd0007f,0x1ffd0003,
0xff880000,0xd007ff35,0x01bfe6df,0x03fe4000,0x003ffe20,0x3fe2bff7,
0x09ff9006,0x20003ffb,0xfff84ff9,0x20ffea00,0x3fa004fe,0x103ffc03,
0x03ff97ff,0xfe800bfd,0x0dff0007,0x037ff200,0x5ff88000,0xfd007ff3,
0x000ffead,0x002ff400,0x7400fff2,0x01ffdaff,0x4c1fff10,0x2a0005ff,
0x2ffc83ff,0x3a07ff20,0x7c1e445f,0x03ffc03f,0xbff17ff1,0x4c00bfd0,
0xf98003ff,0xff30005f,0x200005df,0x7ff35ff8,0x3f2dfd00,0x4400001f,
0x2a001ffd,0x3e6006ff,0x4004ffff,0x3ff64ffb,0x3ff20000,0x205ff981,
0x8bfb06ff,0x17fc0ffb,0xf881ffe0,0xe81ffb3f,0x3ff6005f,0x4ffa8000,
0x3ffea000,0x20000bef,0x7ff35ff8,0x3f6dfd00,0xaaaaa80f,0xfeccc82a,
0x3e2000df,0x7e4000ff,0xf8000fff,0x04ff98ff,0x81bfe200,0x7ff307ff,
0xffd1bf60,0x2017fc47,0x3fe207ff,0xfe89ff33,0x09ff3005,0x00ffee00,
0xffffb100,0xf100019f,0x00ffe6bf,0x43ff5bfa,0x6ffffff8,0xdffffff8,
0x0fff2001,0x13ffe200,0x6e7fd400,0x3a0000ff,0x3ff201ff,0x900ffc82,
0x2fffc4df,0xff803ff1,0xd8ffe207,0x017fa0ff,0x32007fec,0x0ffee1ef,
0x7fe44000,0x44003fff,0x07ff35ff,0x1ffadfd0,0x3fffffe2,0xfedccc86,
0xff9804ff,0xfff70006,0x3fa0001f,0x20003fff,0x7cc04ffd,0x206fe84f,
0x3fbee6fb,0x803ff10f,0x3fe207ff,0xfe8ffea3,0x04ff9805,0xf537ffd4,
0x7000009f,0x4007fffd,0x7ff35ff8,0x3f6dfd00,0x06ff800f,0x409ffb30,
0x8001ffe8,0x05fffff9,0x0dfff300,0x02ffe400,0x7fcc7ff8,0xfe9fee03,
0x1ff33ffa,0x2207ff80,0x87ff43ff,0xffd805fe,0x7fffd400,0x000bff31,
0x07ffe400,0xf35ff880,0x2dfd007f,0xff801ffc,0x07ff4006,0x0003ffc8,
0x5ffd3ffd,0x0bff6000,0x02ffe400,0x7dc3ff90,0x45fea00f,0xf36fd8ff,
0x40fff00f,0x7fd43ff8,0xf980bfd3,0xfffd004f,0x001bfe25,0x05ffb000,
0x7cd7fe20,0x76ff803f,0xdff007ff,0x81ffc800,0x70006ff9,0x3ffe6bff,
0x1ffc8000,0x05ffc800,0xfd27fd40,0xb8ffa80d,0xf51ff55f,0x40fff00f,
0x6fe83ff8,0xffd80bfd,0x3fff3000,0x00017ff4,0x007ff500,0x7fc53fea,
0xf34ff804,0x0dff00df,0xe81ffc80,0xf88001ff,0x13ff20ff,0x007ff200,
0x000bff90,0x1ffcdffe,0x3f63fe60,0x1feaffe2,0xf881ffe0,0xeaffb83f,
0x17fe605f,0x541fff00,0x000006ff,0x6400bfee,0x01bfe2ff,0x7fec7ff5,
0x0037fc02,0x3ff21ffa,0x7ffb0003,0x002fff88,0x9000ffe4,0x64000bff,
0x00ffb9ff,0x07fd7fcc,0x00df5df9,0x7fc40fff,0xbfdbff03,0x000ffec0,
0xffd0bff3,0x4000801d,0x0510fff8,0xfd83ffe2,0x83ffa02f,0x3e03fff9,
0x3fee006f,0x0037fcc4,0xf506ffa8,0xffc800df,0x0bff9001,0xecffa800,
0xdff8806f,0x7effd45f,0x207ff806,0xff703ff8,0x3fe60bff,0x3ffea005,
0xcffffa80,0x33fcaa9b,0x5333559d,0x7c47fff9,0xfffc9abe,0x4e7ffcc4,
0x83ffea88,0x9abdfffc,0x3516ffb9,0x3ffae663,0xccdffe86,0x3ccccccc,
0xe807ffe2,0x3f2004ff,0xfffb801f,0xcccccccc,0x7fffc03c,0xfff8803f,
0x5ffff83f,0x3f333322,0x12ccccff,0x3fe207ff,0x3ffb05ff,0xffffe880,
0x3fffa601,0x33ffffff,0xffffffff,0xff889fff,0x0dffffff,0xffffffb8,
0x3ea04fff,0xffffffff,0xfffff76f,0x981bffff,0xffffffff,0x366fffff,
0x7fcc04ff,0x3ff9001f,0xfffffb00,0xbfffffff,0x0ffffc80,0x01ffff00,
0x7ccbfff9,0xffffffff,0x7ff14fff,0x42fffe40,0xf8805ff9,0x36e004ef,
0x0bceffff,0xffffffb1,0x3aa039ff,0x403effff,0xdfffffd8,0xffec8801,
0xf70befff,0x3bdfffff,0x3ffffe60,0xffffffff,0x001fff56,0x3200dff9,
0xffd801ff,0xffffffff,0x7fd405ff,0x3ffe006f,0x49fff305,0xfffffff9,
0xf14fffff,0x7ffc407f,0x002ffd85,0x18800013,0x03333100,0x20003300,
0x4c000098,0x26662019,0x00000001,0x00000000,0x00000000,0x00000000,
0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,
0x00000000,0x00000000,0x00000000,0x4c02aa88,0x02aa62aa,0x2a62aa98,
0xaaaaaaaa,0x510aaaaa,0x55555555,0x06aa2555,0x5544aaa0,0x4009aaaa,
0xaaaaaaaa,0x55551aaa,0x35555555,0x2aaaaaa2,0x06a60001,0x55530551,
0x00133555,0x00055550,0x202aaa60,0x9aaaaaa9,0x002aa201,0xabcba880,
0x05fff300,0xff937ff4,0x87ffe203,0xfffffffc,0x1fffffff,0xfffffff3,
0x3e6dffff,0x56fe803f,0xffffffff,0x3fff605d,0x5fffffff,0xfffffffd,
0x3fe6bfff,0x4effffff,0x262fe400,0xffffb87f,0x00cfffff,0x01ffff50,
0xffff9800,0xfffffb81,0x540befff,0xf50003ff,0x05ffffff,0x260bfff5,
0x3ff27fff,0xc85ffb01,0xffffffff,0x31ffffff,0xffffffff,0x3fe6dfff,
0xf56fe803,0xffffffff,0xffffb09f,0x2bffffff,0xfffffffe,0xfff35fff,
0xdfffffff,0x513f6005,0xffff70df,0x1dffffff,0x5ffffb00,0xfffe8000,
0xeeffb81f,0x0efffffe,0x2000ffea,0xfdcdfffc,0x7ffd44ff,0x7fffc80f,
0x3f207ff2,0x3ff2004f,0x1ffc8001,0xd007ff30,0x50ffeadf,0xfd83fff9,
0x01ffa007,0x4c43ff98,0xd802fffd,0x5c37dc3f,0x7f5441ff,0xfdff805f,
0x3ee0005f,0xfb81ffdf,0x6ffea81f,0x3000ffea,0xfe881bff,0x3fb7ea0f,
0x27fcff83,0x7fd41ffc,0x0ffe4005,0x80ffe400,0xfe803ff9,0x3607ff56,
0x03fec4ff,0x4c00ffd0,0x3fee03ff,0x642fe806,0x01ffb85f,0xfa80fff1,
0x0007fe9f,0x3ff79ff1,0x7403ff70,0x07ff52ff,0x100ffe80,0x66fdcbff,
0x7d77d46f,0xf987ff27,0x7e4000ef,0xffc8001f,0x007ff301,0x0ffeadfd,
0x3f62ffd4,0x01ffa007,0x6c03ff98,0x4ccc43ff,0xfd999bff,0x3ff7199d,
0xb007ff40,0x00bfeeff,0x3ee3ff60,0x01ffb81f,0x7fd53fe6,0x13fe2003,
0x3ee1ffb0,0x3f60ff9d,0xff90ffab,0x003ffa23,0x0007ff20,0x7cc07ff2,
0x56fe803f,0x3fe207ff,0xd003fec5,0x7fcc00ff,0x237fc403,0xfffffffb,
0x7fffffff,0x7f403ff7,0xf9affc06,0x7fd4005f,0xf703ff72,0xaffc403f,
0x2a003ffa,0x7fdc03ff,0x4ffabf91,0x0ffa8ff8,0x3ff63ff9,0x3ff90001,
0x03ff9000,0x3a00ffe6,0x207ff56f,0x3fec4ffa,0x400ffd00,0xfe803ff9,
0x7ff77547,0xeeffeeee,0x203ff75e,0x3ea04ff8,0x801ffa2f,0x3fee5ff8,
0x201ffb81,0x7ff55ff8,0x01ffd400,0xafe4bfea,0x26bf76fb,0x73ff90ff,
0x640005ff,0xfc8001ff,0x07ff301f,0x3feadfd0,0x41ffe883,0x3fa007fd,
0x0ffe6007,0x4c03ff60,0xb81ff87f,0xefe981ff,0xc83ff601,0xffb002ff,
0x5c0ffdc1,0x3fe601ff,0x4007ff54,0x7cc04ff9,0x3e2bf93f,0xff32fe9f,
0x3fefff23,0x7fe40004,0x1ffc8001,0xddddff30,0xdffddddd,0x2aab3fea,
0xfd83fffc,0xaaaaaaaf,0xdddffd0a,0x265ddddd,0xffc803ff,0xf88df501,
0xcdffb80f,0x00cffedc,0x3fe62ffc,0x42ffa804,0xffb81ffb,0x547ffa01,
0x7fc003ff,0x53fea00f,0x3f7f65fd,0x7e47fe67,0x0000ffff,0x4000ffe4,
0xff301ffc,0xffffffff,0x3feadfff,0x2effffff,0xffffffb0,0x3fa3ffff,
0xffffffff,0x007ff32f,0x3ee05ff7,0x5c07fcc5,0xffffffff,0x3fea01cf,
0x4407ff82,0x1ffb85fe,0xd981ffb8,0x0ffea4ff,0x35fff700,0x4ffff6a6,
0x3ffea4fd,0x7e4bfe64,0x0006ffcf,0x4000ffe4,0xff301ffc,0x9999999d,
0x3feadff9,0x00efffff,0x3ffffff6,0xffd1ffff,0x99999999,0x200ffe63,
0xbf902ffc,0xff707f98,0xfffd999b,0x03ff605f,0xfc80bff2,0x81ffb80f,
0xeeeeeffb,0x7fd45fff,0xfffd8003,0xffffffff,0x7fc49fd2,0x64bfe21f,
0x04ffc9ff,0x007ff200,0x4c07ff20,0x6fe803ff,0x7fd47ff5,0x00ffb00f,
0xf3003ff4,0x3ffb007f,0xdf513f60,0x2207fee0,0xff81fffb,0x209ff506,
0xff703ff9,0xfffff703,0xf505ffff,0x36a0007f,0xf9adffff,0xfd89fd1f,
0xfc97fc46,0x007ffd1f,0x0007ff20,0x7cc07ff2,0x56fe803f,0x5ffa87ff,
0x7400ffb0,0x3fe6007f,0x30ffe803,0xdddffddd,0x1dddffdd,0xfb807fee,
0x01ffd44f,0x1bfa0fff,0xfb81ffb8,0x01acccdf,0x0000ffea,0x743fee02,
0x220d444f,0x23ff93ff,0x8001fff8,0xc8001ffc,0x7ff301ff,0x3eadfd00,
0x81ffd83f,0x3fa007fd,0x0ffe6007,0x7d4dff10,0xffffffff,0x70ffffff,
0x7fcc03ff,0x7ffffec5,0x1fffffff,0x7fffffd4,0xffffffff,0x003ff75f,
0x0003ffa8,0x7fcffb00,0x27ff1004,0x3fea1ffc,0x7fe4000e,0x1ffc8001,
0xd007ff30,0x20ffeadf,0x7fd85ff9,0x801ffa00,0x7e403ff9,0x3e66624f,
0xcfd999af,0x07fee199,0x7fc5ff88,0xffffffff,0x7fd44fff,0xffffffff,
0xf75fffff,0xffa8003f,0xf9800003,0x800ffe3f,0x83ff93ff,0x64005ffc,
0xfc8001ff,0x07ff301f,0x3feadfd0,0xd83ffd03,0x1ffa007f,0x203ff980,
0xf100fff9,0x703fe81f,0x7fd403ff,0x3337fea3,0xffcccccc,0x55555447,
0xcffdaaaa,0x03ff72aa,0x003ffa80,0x237f4400,0x3fe003ff,0xfb03ff94,
0x7fe4009f,0x1ffc8001,0xd007ff30,0x40ffeadf,0x3fec5ffa,0x400ffd00,
0xff703ff9,0x07fcc07f,0x7fdc0bfe,0x43fff101,0xfd800ffd,0xffb8001f,
0x001ffb81,0x0001ffd4,0x443ffd50,0x3fe003ff,0xf103ff94,0x3f2005ff,
0x5554401f,0xaaabffda,0xd007ff32,0x80ffeadf,0x1ff61ffe,0xaaaffe80,
0xf31aaaaa,0xfdb955bf,0x7fa809ff,0xff701ff8,0xffb75557,0x006ff87f,
0x70009ff5,0x3ff703ff,0xadffa800,0x0aaaaaaa,0x3b72eaa2,0x7fc43fff,
0x653fe003,0xfff301ff,0x03ff9001,0xffffff98,0xf36fffff,0x2dfd007f,
0x3ea03ffa,0x801ff65f,0xfffffffe,0xfff35fff,0x5dffffff,0xf88df500,
0xffff700f,0x87ffffff,0xf1003ffa,0xff7000ff,0x003ff703,0xffffffa8,
0x222fffff,0xcfffffff,0x003ff980,0x0ffe57fe,0x900dff70,0xff9803ff,
0xffffffff,0x007ff36f,0x0ffeadfd,0x3f61fff0,0x3fffa007,0x5fffffff,
0xddfffff3,0x2fdc0039,0x7dc03fe6,0x2cefffff,0x4003ff90,0x5c001ffd,
0x1ffb81ff,0x7fffd400,0x2fffffff,0x2f37bfe2,0x00000001,0x00000000,
0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,
0x80000000,0x7765c400,0x372a00bd,0x000ceefe,0x17bddb95,0x37bb6e20,
0x2000000b,0x32a00cc9,0xffdb7104,0x666447bd,0xcccccccc,0x6f5472a2,
0x930bbaa2,0x66440199,0x5cc5970c,0x4c982ded,0x20f7fb66,0xca800ccb,
0x0019930c,0x1bb02654,0x2fa80000,0xfffffd30,0xfff905ff,0x07ffffff,
0x7fffff4c,0xfffb85ff,0x002fffff,0xf7003fee,0x07fe403f,0x3fffffea,
0x3ffe66ff,0xffffffff,0x3feaff25,0xffff98ff,0xb027fec3,0xaa7f47ff,
0x44ffffff,0xffff97fb,0x4ffb8bff,0x3e67ff80,0x1bf6002f,0x000f7fdc,
0x40fffb80,0xca9bfff9,0x77e41fff,0xfffecabc,0xcefffa81,0x7e45fcca,
0xffdbacff,0x1ff7003f,0x201ffb80,0x3fe60ffc,0x5cbaaabf,0x33333322,
0x324ffecc,0xafeaefcf,0x445fdafe,0xffa82fff,0x7fdeff45,0x21fffdad,
0xacffcffb,0x3e22fffd,0x27fd406f,0x74007ff1,0x3ffee05f,0x7fe40002,
0x80efe80e,0x004c6ff9,0xff88bff7,0xff98603f,0x0fffa80e,0x400ffb80,
0x3f201ffb,0x003ff60f,0x237fcc00,0xff70fffc,0x261fea5f,0x3fe20fff,
0x7ffff40e,0xf72ffd41,0xff983fff,0xb00ffec6,0x04ff83ff,0xf5013fe0,
0xb10007ff,0xff501bff,0x00ffe405,0xfc8dff10,0x3ff6003f,0x013fee00,
0xf7003fee,0x07fe403f,0x20000dfd,0x7e40fff8,0xa97fee4f,0x5ffb80ff,
0x3fa07ff6,0x6ff880ff,0x7c07ffee,0x827fd47f,0x5fe86ff8,0x3fe22f4c,
0x4ffe9803,0x13ffa600,0x7cc07fd8,0x3fec003f,0xf8801bfe,0x2ffc404f,
0x2007fdc0,0x3f201ffb,0x00bff60f,0x20bff600,0x3fee0ffc,0x6c03fe61,
0x03ffbaff,0x7f403ffd,0xd80bfee7,0x507ff87f,0x8dfb05ff,0x3fe60ffc,
0xbffb1001,0x3fffa801,0x2202ff40,0x4ccc04ff,0x3fe67fd9,0x0bfe6004,
0x2e01ffa0,0x7fdc00ff,0xa83ff201,0x000adfff,0xf903ffc8,0x7cc7fb8d,
0xffff100f,0x037f40bf,0x1ffb8662,0xf903ff20,0x20ffb05f,0x1fffc7fb,
0xc8001ff5,0xff700eff,0xffff003f,0xffffffff,0xfffc88bf,0x2a7fffff,
0x3ee002ff,0x27fd801f,0xfeeeeeec,0x1eeeeeef,0x7e403ff7,0x7fffdc0f,
0xff5002df,0x2e37e40b,0x007fcc7f,0x401ffff5,0xfb8006fe,0x03ff201f,
0xff88bff1,0x261ff504,0x1fee6fff,0x0fffdc00,0x2003bff2,0xfffffff8,
0x25ffffff,0xeeeffffb,0x3fee7ffe,0x07fee002,0x7ec3ff20,0xffffffff,
0xf71fffff,0x07fe403f,0x7ffffe44,0x3bfe201e,0xf71bf200,0x200ff98f,
0x7405fff8,0xffb8006f,0x203ff201,0x3fee0ffd,0x323ff301,0xdf91ffcf,
0x7ffdc000,0x001fff90,0x4c002ffc,0xffb02eff,0x5001ffd4,0xffb005ff,
0x76666654,0xccccccff,0x6403ff70,0x7ed400ff,0xffd01fff,0x5c6fc803,
0x007fcc7f,0x407ffffd,0xfb8006fe,0x03ff201f,0x6fe8ffea,0x7f4bfe20,
0x0bfb4fd9,0x07ffea00,0x2003dff9,0xfc8006fe,0x99ff601f,0x3e6004ff,
0x05ff803f,0x5c00ffb8,0x3ff201ff,0xbffb1000,0x9007ff90,0x4c7fb8df,
0x7ff900ff,0x3fa03ffd,0x1ffb8006,0x7c03ff20,0x807ff36f,0xf76f9bff,
0x20013f6f,0xf700effc,0xffb005ff,0x07fe8003,0x3ffe3fec,0x0dff1000,
0xb803ffa8,0x7fd400ff,0x01fff303,0x7dc6ff80,0x8df9005f,0x07fcc7fb,
0xff8affd4,0x006fe80f,0x3201ffb8,0x3ff900ff,0xfe801ff9,0x3ff14fcc,
0x6c4007ff,0x7cc00dff,0x7fcc03ff,0x07ff4006,0x323ffec4,0xf9000dff,
0x3ffa207f,0x00ffb800,0x7cc2ffcc,0x26000fff,0x1bfe65ff,0x7dc6fc80,
0x2607fcc7,0x3fee0fff,0x8006fe86,0x3f201ffb,0xf9ff300f,0xdbfb00bf,
0x7fe7ec3f,0x9ffd1001,0x27ff4400,0x06bfff60,0x6ffe4753,0xfffff731,
0x337fffd0,0x7fc49b53,0xfea889df,0x1ff7003f,0x13bfff00,0x21ffdff7,
0x2a619bd8,0xffd13ffe,0x33333335,0x3ee37e43,0xd107fcc7,0x9ffb05ff,
0xb8006fe8,0x3ff201ff,0x3ffffa00,0x6fffb801,0x007fffd4,0x001fffcc,
0x806ffec4,0xffffffd8,0x3fe26fff,0xbcffffff,0xfffe987f,0x4c5fffff,
0xffffffff,0x3fee003f,0xffffb800,0x0ffabfff,0xfffffff1,0x7fdc9fff,
0xffffffff,0xb8df91ff,0xb07fcc7f,0x3fe209ff,0x001bfa2f,0xfc807fee,
0x3ffea00f,0x9fff5006,0x807fff88,0x0001fffb,0x500f7fe4,0xdffffffd,
0xffffd889,0x5c0ff71d,0x2dfffffe,0xfffffc88,0x7fdc001d,0xffff5000,
0x443fea5d,0xfffffffe,0x7fffdc2d,0xffffffff,0x7fb8df91,0xffb87fcc,
0x3ffea00e,0x7000dfd1,0x7fe403ff,0x01fffc00,0xd81fff98,0x7fdc06ff,
0xf700000e,0x331001ff,0x00066003,0x88002620,0x00000009,0x88001310,
0x00001999,0x00000000,0x00000000,0x00000000,0x001bb000,0x002f9800,
0x00000000,0x00000000,0x00000000,0x00000000,0x00005530,0x55555554,
0x01aaaaaa,0xcdc98000,0x06f64001,0xddddddd9,0x0000005d,0x00000001,
0x00000000,0x00000000,0xf3000000,0x6fec400d,0x02ffe800,0xffe8fffe,
0xfffffff3,0x27ffffff,0xffb84fff,0xffff701f,0x5cfba07f,0x3ffa6fff,
0x02ffffff,0x00000000,0x00000000,0x00000000,0x00000000,0x400df300,
0x5c05fffb,0xfd00efff,0xf9ffec5f,0xffffffff,0xffd3ffff,0x07ffe607,
0xfffbfff3,0xfd2ff889,0x37721fff,0x01dddddd,0x00000000,0x00000000,
0x00000000,0x00000000,0x22fc4150,0xffff700a,0x3a7fe201,0x45ffd04f,
0x80002ffd,0x36203ffe,0x43ff21ff,0xf90dffe8,0x3ffff63f,0x00000000,
0x00000000,0x00000000,0x00000000,0x7c400000,0x7ec53e3f,0x3ffff104,
0x7fd53f20,0x361ffd81,0xd80002ff,0xdeb802ff,0xfe88bfd0,0x225fffff,
0x00002ffe,0x00000000,0x00000000,0x00000000,0x00000000,0xf8dffc88,
0x203fffac,0xf980fffb,0x3617f60f,0x07ff21ff,0x0bff6000,0xc81ee400,
0x980effff,0x00000000,0x00000000,0x00000000,0x00000000,0x44000000,
0x3ffffffc,0xb07ff980,0x42ff989f,0x3ff20ffc,0xfffffff1,0x27ffffff,
0x00001ffc,0x000aee60,0x00000000,0x00000000,0x00000000,0x00000000,
0x7cc00000,0x3ee005ff,0x80ffa84f,0x3ff20ffc,0x7fc3fee0,0xffffffff,
0x3ff93fff,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,
0x22000000,0x2efffffb,0xe837fdc0,0x49ff103f,0x50cc4198,0x55555555,
0x26235555,0x00000001,0x00000000,0x00000000,0x00000000,0x00000000,
0x88000000,0xbcf9effc,0x3fa62eff,0x6fb81eff,0x000ffdc0,0x00000000,
0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x27ff1000,
0x49fb14f8,0x3203eff9,0x02cc801c,0x00000000,0x00000000,0x00000000,
0x00000000,0x00000000,0x00000000,0x10540000,0x0620b8bf,0x00000000,
0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,
0x05f98000,0xddddd000,0xdddddddd,0x0007dddd,0x00000000,0x00000000,
0x00000000,0x00000000,0x00000000,0x00000000,0x00df3000,0x3ffffe00,
0xffffffff,0x0004ffff,0x00000000,0x00000000,0x00000000,0x00000000,
0x00000000,0x00000000,0x00013000,0x2aaaaaa0,0xaaaaaaaa,0x00001aaa,
0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,
0x00000000,0x00000000,0x00000000,0x00000000,
};
static signed short stb__consolas_32_usascii_x[95]={ 0,6,4,0,1,0,0,7,4,4,2,1,3,4,
6,1,1,2,2,2,0,2,1,1,1,1,6,3,2,2,3,4,0,0,2,1,1,3,3,1,1,2,2,2,
3,0,1,0,2,0,2,1,1,1,0,0,0,0,1,5,2,4,1,0,0,2,2,2,1,1,0,1,2,2,
2,2,2,1,2,1,2,1,3,2,0,2,1,0,1,0,2,2,7,3,1, };
static signed short stb__consolas_32_usascii_y[95]={ 23,0,0,2,-1,0,1,0,-1,-1,0,6,17,13,
18,0,2,2,2,2,2,2,2,2,2,2,7,7,5,10,5,0,0,2,2,2,2,2,2,2,2,2,2,2,
2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,2,27,0,7,0,7,0,7,0,7,0,0,
0,0,0,7,7,7,7,7,7,7,2,7,7,7,7,7,7,0,-3,0,11, };
static unsigned short stb__consolas_32_usascii_w[95]={ 0,5,10,17,15,18,18,4,10,9,14,16,9,10,
6,15,16,14,14,14,17,14,15,15,15,15,6,9,13,14,13,11,18,18,14,15,16,12,12,15,15,13,12,15,
13,17,15,17,14,18,15,15,16,15,18,17,18,18,15,9,14,9,15,18,11,14,14,13,15,15,17,16,14,14,
12,15,14,16,14,16,14,15,14,13,16,14,16,18,16,17,14,13,4,13,16, };
static unsigned short stb__consolas_32_usascii_h[95]={ 0,24,9,21,28,24,23,9,31,31,15,17,12,3,
6,27,22,21,21,22,21,22,22,21,22,21,17,22,19,9,19,24,30,21,21,22,21,21,21,22,21,21,22,21,
21,21,21,22,21,27,21,22,21,22,21,21,21,21,21,30,27,30,11,3,8,17,24,17,24,17,23,23,23,23,
30,23,23,16,16,17,23,23,16,17,22,17,16,16,16,23,16,30,33,30,7, };
static unsigned short stb__consolas_32_usascii_s[95]={ 241,223,178,141,107,173,1,204,6,17,137,
91,152,245,238,142,200,209,157,88,193,185,217,240,233,240,249,1,15,189,1,
229,78,174,159,11,124,111,98,72,66,52,43,19,226,1,224,167,211,123,82,
27,35,56,172,191,119,138,103,97,158,68,162,162,209,45,208,60,192,29,101,
84,69,54,55,20,241,152,201,74,135,119,186,123,150,108,216,233,169,36,137,
27,1,41,221, };
static unsigned short stb__consolas_32_usascii_t[95]={ 25,1,121,82,1,1,35,121,1,1,121,
104,121,121,121,1,35,59,59,59,82,35,35,59,35,82,35,59,104,121,104,
1,1,82,82,59,82,82,82,59,82,82,59,82,82,82,59,35,82,1,82,
59,82,59,59,59,59,59,59,1,1,1,121,133,121,104,1,104,1,104,35,
35,35,35,1,35,1,104,104,104,35,35,104,104,35,104,104,104,104,35,104,
1,1,1,121, };
static unsigned short stb__consolas_32_usascii_a[95]={ 282,282,282,282,282,282,282,282,
282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,
282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,
282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,
282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,
282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,
282,282,282,282,282,282,282, };
// Call this function with
// font: NULL or array length
// data: NULL or specified size
// height: STB_FONT_consolas_32_usascii_BITMAP_HEIGHT or STB_FONT_consolas_32_usascii_BITMAP_HEIGHT_POW2
// return value: spacing between lines
static void stb_font_consolas_32_usascii(stb_fontchar font[STB_FONT_consolas_32_usascii_NUM_CHARS],
unsigned char data[STB_FONT_consolas_32_usascii_BITMAP_HEIGHT][STB_FONT_consolas_32_usascii_BITMAP_WIDTH],
int height)
{
int i,j;
if (data != 0) {
unsigned int *bits = stb__consolas_32_usascii_pixels;
unsigned int bitpack = *bits++, numbits = 32;
for (i=0; i < STB_FONT_consolas_32_usascii_BITMAP_WIDTH*height; ++i)
data[0][i] = 0; // zero entire bitmap
for (j=1; j < STB_FONT_consolas_32_usascii_BITMAP_HEIGHT-1; ++j) {
for (i=1; i < STB_FONT_consolas_32_usascii_BITMAP_WIDTH-1; ++i) {
unsigned int value;
if (numbits==0) bitpack = *bits++, numbits=32;
value = bitpack & 1;
bitpack >>= 1, --numbits;
if (value) {
if (numbits < 3) bitpack = *bits++, numbits = 32;
data[j][i] = (bitpack & 7) * 0x20 + 0x1f;
bitpack >>= 3, numbits -= 3;
} else {
data[j][i] = 0;
}
}
}
}
// build font description
if (font != 0) {
float recip_width = 1.0f / STB_FONT_consolas_32_usascii_BITMAP_WIDTH;
float recip_height = 1.0f / height;
for (i=0; i < STB_FONT_consolas_32_usascii_NUM_CHARS; ++i) {
// pad characters so they bilerp from empty space around each character
font[i].s0 = (stb__consolas_32_usascii_s[i]) * recip_width;
font[i].t0 = (stb__consolas_32_usascii_t[i]) * recip_height;
font[i].s1 = (stb__consolas_32_usascii_s[i] + stb__consolas_32_usascii_w[i]) * recip_width;
font[i].t1 = (stb__consolas_32_usascii_t[i] + stb__consolas_32_usascii_h[i]) * recip_height;
font[i].x0 = stb__consolas_32_usascii_x[i];
font[i].y0 = stb__consolas_32_usascii_y[i];
font[i].x1 = stb__consolas_32_usascii_x[i] + stb__consolas_32_usascii_w[i];
font[i].y1 = stb__consolas_32_usascii_y[i] + stb__consolas_32_usascii_h[i];
font[i].advance_int = (stb__consolas_32_usascii_a[i]+8)>>4;
font[i].s0f = (stb__consolas_32_usascii_s[i] - 0.5f) * recip_width;
font[i].t0f = (stb__consolas_32_usascii_t[i] - 0.5f) * recip_height;
font[i].s1f = (stb__consolas_32_usascii_s[i] + stb__consolas_32_usascii_w[i] + 0.5f) * recip_width;
font[i].t1f = (stb__consolas_32_usascii_t[i] + stb__consolas_32_usascii_h[i] + 0.5f) * recip_height;
font[i].x0f = stb__consolas_32_usascii_x[i] - 0.5f;
font[i].y0f = stb__consolas_32_usascii_y[i] - 0.5f;
font[i].x1f = stb__consolas_32_usascii_x[i] + stb__consolas_32_usascii_w[i] + 0.5f;
font[i].y1f = stb__consolas_32_usascii_y[i] + stb__consolas_32_usascii_h[i] + 0.5f;
font[i].advance = stb__consolas_32_usascii_a[i]/16.0f;
}
}
}
#ifndef STB_SOMEFONT_CREATE
#define STB_SOMEFONT_CREATE stb_font_consolas_32_usascii
#define STB_SOMEFONT_BITMAP_WIDTH STB_FONT_consolas_32_usascii_BITMAP_WIDTH
#define STB_SOMEFONT_BITMAP_HEIGHT STB_FONT_consolas_32_usascii_BITMAP_HEIGHT
#define STB_SOMEFONT_BITMAP_HEIGHT_POW2 STB_FONT_consolas_32_usascii_BITMAP_HEIGHT_POW2
#define STB_SOMEFONT_FIRST_CHAR STB_FONT_consolas_32_usascii_FIRST_CHAR
#define STB_SOMEFONT_NUM_CHARS STB_FONT_consolas_32_usascii_NUM_CHARS
#define STB_SOMEFONT_LINE_SPACING STB_FONT_consolas_32_usascii_LINE_SPACING
#endif
| 65 | 123 | 0.787792 | stetre |
348159ff209f445fb25dd54f0c7f876f36c2bb02 | 623 | cpp | C++ | QEdit/src/CFGReader.cpp | JannikNickel/QEdit | 8d09bcdc6fd4a8e2ecf969edb852de8a1c43dd7e | [
"MIT"
] | null | null | null | QEdit/src/CFGReader.cpp | JannikNickel/QEdit | 8d09bcdc6fd4a8e2ecf969edb852de8a1c43dd7e | [
"MIT"
] | null | null | null | QEdit/src/CFGReader.cpp | JannikNickel/QEdit | 8d09bcdc6fd4a8e2ecf969edb852de8a1c43dd7e | [
"MIT"
] | null | null | null | #include "CFGReader.h"
CFGReader::CFGReader(std::ifstream* file)
{
if(file == nullptr)
{
return;
}
std::string line;
while(getline(*file, line))
{
long index = line.find('=');
if(index != std::string::npos)
{
std::string attribute = line.substr(0, index);
std::string value = line.substr(index + 1, line.length() - (index + 1));
if(!pairs.contains(attribute))
{
pairs.insert(std::pair<std::string, std::string>(attribute, value));
}
}
}
file->close();
}
std::string CFGReader::Read(std::string attribute)
{
if(pairs.contains(attribute))
{
return pairs[attribute];
}
return "";
} | 18.878788 | 75 | 0.629213 | JannikNickel |
34851f8db2d45beda90ff00a004978998bc317ea | 2,863 | hpp | C++ | include/codegen/include/System/Threading/AbandonedMutexException.hpp | Futuremappermydud/Naluluna-Modifier-Quest | bfda34370764b275d90324b3879f1a429a10a873 | [
"MIT"
] | 1 | 2021-11-12T09:29:31.000Z | 2021-11-12T09:29:31.000Z | include/codegen/include/System/Threading/AbandonedMutexException.hpp | Futuremappermydud/Naluluna-Modifier-Quest | bfda34370764b275d90324b3879f1a429a10a873 | [
"MIT"
] | null | null | null | include/codegen/include/System/Threading/AbandonedMutexException.hpp | Futuremappermydud/Naluluna-Modifier-Quest | bfda34370764b275d90324b3879f1a429a10a873 | [
"MIT"
] | 2 | 2021-10-03T02:14:20.000Z | 2021-11-12T09:29:36.000Z | // Autogenerated from CppHeaderCreator on 7/27/2020 3:09:45 PM
// Created by Sc2ad
// =========================================================================
#pragma once
#pragma pack(push, 8)
// Begin includes
// Including type: System.SystemException
#include "System/SystemException.hpp"
#include "utils/il2cpp-utils.hpp"
// Completed includes
// Begin forward declares
// Forward declaring namespace: System::Threading
namespace System::Threading {
// Forward declaring type: Mutex
class Mutex;
// Forward declaring type: WaitHandle
class WaitHandle;
}
// Forward declaring namespace: System::Runtime::Serialization
namespace System::Runtime::Serialization {
// Forward declaring type: SerializationInfo
class SerializationInfo;
// Forward declaring type: StreamingContext
struct StreamingContext;
}
// Completed forward declares
// Type namespace: System.Threading
namespace System::Threading {
// Autogenerated type: System.Threading.AbandonedMutexException
class AbandonedMutexException : public System::SystemException {
public:
// private System.Int32 m_MutexIndex
// Offset: 0x88
int m_MutexIndex;
// private System.Threading.Mutex m_Mutex
// Offset: 0x90
System::Threading::Mutex* m_Mutex;
// public System.Void .ctor(System.Int32 location, System.Threading.WaitHandle handle)
// Offset: 0x13C0370
static AbandonedMutexException* New_ctor(int location, System::Threading::WaitHandle* handle);
// private System.Void SetupException(System.Int32 location, System.Threading.WaitHandle handle)
// Offset: 0x13C040C
void SetupException(int location, System::Threading::WaitHandle* handle);
// public System.Void .ctor()
// Offset: 0x13C02F4
// Implemented from: System.SystemException
// Base method: System.Void SystemException::.ctor()
// Base method: System.Void Exception::.ctor()
// Base method: System.Void Object::.ctor()
static AbandonedMutexException* New_ctor();
// protected System.Void .ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
// Offset: 0x13C0494
// Implemented from: System.SystemException
// Base method: System.Void SystemException::.ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
// Base method: System.Void Exception::.ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
static AbandonedMutexException* New_ctor(System::Runtime::Serialization::SerializationInfo* info, System::Runtime::Serialization::StreamingContext context);
}; // System.Threading.AbandonedMutexException
}
DEFINE_IL2CPP_ARG_TYPE(System::Threading::AbandonedMutexException*, "System.Threading", "AbandonedMutexException");
#pragma pack(pop)
| 46.934426 | 162 | 0.747468 | Futuremappermydud |
348607e6739ad68f3ca92c3db60ded07b791a985 | 2,734 | cpp | C++ | src/scexpressionparser.cpp | BryanMorfe/SciCalc | 1602c159c48013beb8dee09ff648923f37c69e09 | [
"Apache-2.0"
] | 1 | 2020-12-13T16:56:32.000Z | 2020-12-13T16:56:32.000Z | src/scexpressionparser.cpp | BryanMorfe/SciCalc | 1602c159c48013beb8dee09ff648923f37c69e09 | [
"Apache-2.0"
] | null | null | null | src/scexpressionparser.cpp | BryanMorfe/SciCalc | 1602c159c48013beb8dee09ff648923f37c69e09 | [
"Apache-2.0"
] | null | null | null | #include "include/scexpressionparser.h"
#include <QStack>
#include <QDebug>
#include "include/sctokenoperations.h"
const SCExpressionParser SCExpressionParser::shared;
SCExpressionParser::SCExpressionParser() {}
SCParsedExpression SCExpressionParser::parse(const SCInExpression &exp)
{
QStack<SCToken> opStack;
SCParsedExpression parsedExp;
QList<SCToken> tokens = exp.getTokens();
QString partialToken = exp.getPartialToken();
if (!partialToken.isEmpty())
{
SCToken *tokenFromPartial = SCTokenOperations::token(exp.getPartialToken());
tokens.append(*tokenFromPartial);
delete tokenFromPartial;
}
for (auto token : tokens)
{
SCTokenTypes::TokenType type = token.getType();
if (type == SCTokenTypes::operand)
parsedExp.addToken(token);
else if (type == SCTokenTypes::lParenthesis)
opStack.push(token);
else if (type == SCTokenTypes::rParenthesis)
{
SCToken topOp(opStack.pop());
while (topOp.getType() != SCTokenTypes::lParenthesis)
{
parsedExp.addToken(topOp);
topOp = opStack.pop();
}
}
else if (type == SCTokenTypes::lBracket)
opStack.push(token);
else if (type == SCTokenTypes::rBracket)
{
SCToken topOp(opStack.pop());
while (topOp.getType() != SCTokenTypes::lBracket)
{
parsedExp.addToken(topOp);
topOp = opStack.pop();
}
}
else if (type == SCTokenTypes::unaryOperator || type == SCTokenTypes::binaryOperator)
{
SCOperator *newOp = static_cast<SCOperator *>(SCTokenOperations::token(token.getToken()));
bool shouldLook = true;
while (shouldLook && !opStack.isEmpty())
{
SCOperator *topOp = static_cast<SCOperator *>(SCTokenOperations::token(opStack.top().getToken()));
if ((topOp->getType() == binaryOperator || topOp->getType() == unaryOperator) &&
newOp->getPrecedence() <= topOp->getPrecedence())
{
opStack.pop();
parsedExp.addToken(*topOp);
delete topOp;
if (!opStack.isEmpty())
topOp = static_cast<SCOperator *>(SCTokenOperations::token(opStack.top().getToken()));
}
else
shouldLook = false;
}
opStack.push(*newOp);
delete newOp;
}
}
while (!opStack.isEmpty())
parsedExp.addToken(opStack.pop());
return parsedExp;
}
| 30.719101 | 114 | 0.557059 | BryanMorfe |
348bafc7e3314b9fc89b277c6e4b7730831638be | 1,001 | cpp | C++ | Server/Server/src/core/item/item.cpp | vahmoh26/Messenger | 3413b2eedbb5ed867928c2dfe17ad2c118712f6e | [
"MIT"
] | null | null | null | Server/Server/src/core/item/item.cpp | vahmoh26/Messenger | 3413b2eedbb5ed867928c2dfe17ad2c118712f6e | [
"MIT"
] | null | null | null | Server/Server/src/core/item/item.cpp | vahmoh26/Messenger | 3413b2eedbb5ed867928c2dfe17ad2c118712f6e | [
"MIT"
] | null | null | null | #include "item.h"
#include <sstream>
#include <boost/iostreams/stream.hpp>
#include <boost/archive/text_iarchive.hpp>
#include <boost/archive/text_oarchive.hpp>
namespace server::core
{
using namespace boost;
item::item()
{
_type = type::unknown;
}
item::item(type type) : item()
{
set_type(type);
}
item::item(const protocol::package& package)
{
iostreams::array_source array_source(package.get_buffer().data(), package.get_buffer().size());
iostreams::stream<boost::iostreams::array_source> stream(array_source);
archive::text_iarchive text_iarchive(stream);
text_iarchive >> _type;
}
item::~item()
{
}
void item::set_type(type type)
{
_type = type;
}
void item::set_ip(const string& ip)
{
_ip = ip;
}
item::type item::get_type()
{
return _type;
}
const string& item::get_ip() const
{
return _ip;
}
bool item::valid()
{
return _type > type::unknown && _type <= type::logout;
}
protocol::package item::to_package()
{
return {};
}
} | 15.4 | 97 | 0.669331 | vahmoh26 |
3492168940e6c054403efb893ccd2ae5e67eee86 | 271 | cpp | C++ | Olamundo/02/freq03/main.cpp | tosantos1/LIP | 7dbc045afa02729f4e2f2f1d3b29baebf5be72ad | [
"MIT"
] | null | null | null | Olamundo/02/freq03/main.cpp | tosantos1/LIP | 7dbc045afa02729f4e2f2f1d3b29baebf5be72ad | [
"MIT"
] | null | null | null | Olamundo/02/freq03/main.cpp | tosantos1/LIP | 7dbc045afa02729f4e2f2f1d3b29baebf5be72ad | [
"MIT"
] | null | null | null | #include <iostream>
using namespace std;
int opa(int a);
int main()
{
int n;
cin >> n;
cout << opa(n);
return 0;
}
int opa(int n){
if(n == 1 || n == 0){
return n;
}else{
return opa(n - 1) + opa (n-2);
}
return 0;
}
| 10.037037 | 38 | 0.450185 | tosantos1 |
349ba7372ae75faf9748c31dd57c25d3c5bad952 | 11,795 | hh | C++ | BdbTime/BdbTime.hh | brownd1978/FastSim | 05f590d72d8e7f71856fd833114a38b84fc7fd48 | [
"Apache-2.0"
] | null | null | null | BdbTime/BdbTime.hh | brownd1978/FastSim | 05f590d72d8e7f71856fd833114a38b84fc7fd48 | [
"Apache-2.0"
] | null | null | null | BdbTime/BdbTime.hh | brownd1978/FastSim | 05f590d72d8e7f71856fd833114a38b84fc7fd48 | [
"Apache-2.0"
] | null | null | null | #ifndef BDBTIME_HH
#define BDBTIME_HH
//-----------------------------------------------------------------------------
//
// File and Version Information:
// $Id: BdbTime.hh 496 2010-01-13 17:10:44Z stroili $
//
// Description:
// Class BdbTime.
// This is a persistent time class.
//
// Environment:
// Software developed for the BaBar Detector at the SLAC B-Factory.
//
// Author List:
// J. Ohnemus Original Author
// Gregory Dubois-Felsmann Rogue Wave migration, 2002/2003
//
// Copyright Information:
// Copyright (C) 1994, 1995 Lawrence Berkeley Laboratory
// Copyright (c) 2002, 2003 California Institute of Technology
//
//-----------------------------------------------------------------------------
//-----------------
// BaBar Headers --
//-----------------
#include "BaBar/BaBarODMGTypes.h"
//-----------------
// C/C++ Headers --
//-----------------
#include <time.h>
#include <iostream>
#include <string>
//-------------------------------
// Collaborating Class Headers --
//-------------------------------
#include "BdbTime/BdbDuration.hh"
#include "BdbTime/BdbTimeConst.hh"
//------------------------------------
// Collaborating Class Declarations --
//------------------------------------
// ---------------------
// -- Class Interface --
// ---------------------
class BdbTime {
public:
enum Zone { Local, UTC };
// Constructors
/**
* (Deprecated)
* Constructs with the current time, to the nearest second. This
* constructor is deprecated and may be removed in a future release.
* The static function BdbTime::now() should be used in preference
* to this in all new code, if the current time is really required.
*
* For some reason, the original implementation did not set the _gmtNsec
* member, perhaps because it was not easy to get it synchronized with
* the Rogue Wave "now()" function's return value. Now that we use
* clock_gettime() directly, this could be fixed.
*
* However, we have decided not to do this at this time, in order not
* to change the behavior of existing programs.
*
* BdbTime::now() preserves the full significance available from
* clock_gettime().
*
* Please note that this constructor involves a system call and is
* expensive! Do not default-construct BdbTimes unless you really need
* the current time value. If you are just declaring a time variable
* to fill in later, BdbTime(0) is a more performant choice.
*/
BdbTime( );
/** Copy constructor. */
BdbTime( const BdbTime& t );
/**
* Constructs a time from an unsigned number of seconds since the
* BdbTime epoch of 1901. NB: this is not the Unix epoch of 1970!
*/
explicit BdbTime( d_ULong sec_since_1901, d_ULong nsec = 0 );
/**
* Constructs a time from a broken-down list of components of a date
* and time.
*
* This uses definitions inherited from the old RogueWave implementation
* of BdbTime. Thus "year" is the calendar year C.E. (e.g., 2003), and
* "month" is the month in the range {1..12}. Note that these differ
* from the POSIX broken-down time (struct tm) definitions, where
* 2003 C.E. is represented as 103, and the month is in the range {0..11}.
*/
BdbTime( d_ULong year,
d_ULong month,
d_ULong day,
d_ULong hour,
d_ULong minute,
d_ULong second,
d_ULong nanosecond = 0,
Zone zone = UTC );
/**
* (Deprecated - use parseTime())
* Constructs a BdbTime from a string date and a string time.
*
* The use of this constructor is strongly discouraged, as it does not
* have a means of reliably reporting parsing errors (BaBar does not
* use C++ exceptions). Use BdbTime::parseTime() instead (which this
* is implemented over).
*/
BdbTime( const std::string& date, const std::string& time, Zone zone = UTC );
/**
* (Deprecated - use parseTime())
* Constructs a BdbTime from a single date-time string, in which the
* date and time must be given separated by whitespace. Otherwise
* identical to the above constructor.
*
* The use of this constructor is strongly discouraged, as it does not
* have a means of reliably reporting parsing errors (BaBar does not
* use C++ exceptions). Use BdbTime::parseTime() instead (which this
* is implemented over).
*/
explicit BdbTime( const std::string&, Zone zone = UTC );
/**
* Constructs from POSIX high-resolution time, as might be
* obtained from clock_gettime.
*/
BdbTime( const struct timespec& ts );
/**
* Constructs from POSIX "broken-down time".
* @param stm Cannot be const because it is internally provided to
* POSIX mktime(), which normalizes it -- see man mktime.
*/
BdbTime( struct tm& stm, Zone zone = UTC );
/**
* The destructor is non-virtual in order to keep this representational
* class small and suitable for processing with value semantics.
* Classes with non-empty destructors should not be constructed with
* non-private inheritance from BdbTime.
*/
~BdbTime( ) { }
// Assignment operator
BdbTime& operator=( const BdbTime& t );
// Calculational operators
/**
* Calculates the absolute value of the difference between two times.
* NB: BdbDuration is an inherently unsigned quantity! This is
* in essence because reasonably foreseeable time differences are
* larger in seconds than 2^31 and so can't be represented as a
* signed 32 bit integer.
*/
BdbDuration operator-( const BdbTime& t ) const;
BdbTime& operator+=( const BdbDuration& d );
BdbTime operator+( const BdbDuration& d ) const;
BdbTime& operator-=( const BdbDuration& d );
BdbTime operator-( const BdbDuration& d ) const;
// Comparison operators
bool operator==( const BdbTime& t ) const
{
return ( _gmtSec == t._gmtSec && _gmtNsec == t._gmtNsec );
}
bool operator!=( const BdbTime& t ) const
{
return !( *this == t );
}
bool operator<( const BdbTime& t ) const
{
return ( _gmtSec < t._gmtSec ) ||
( _gmtSec == t._gmtSec && _gmtNsec < t._gmtNsec );
}
bool operator<=( const BdbTime& t ) const
{
return ( _gmtSec < t._gmtSec ) ||
( _gmtSec == t._gmtSec && _gmtNsec <= t._gmtNsec );
}
bool operator>( const BdbTime& t ) const
{
return !( *this <= t );
}
bool operator>=( const BdbTime& t ) const
{
return !( *this < t );
}
// Selectors
d_ULong getGmtSec( ) const { return _gmtSec; }
d_ULong getGmtNsec( ) const { return _gmtNsec; }
/**
* Extracts the value of the BdbTime as a POSIX.1b "struct timespec".
* Returns 0 on success in analogy with POSIX.1b clock_gettime().
* WARNING: Must and will fail for valid BdbTime values that are more
* than 2^31-1 seconds before the beginning of the POSIX 1970 epoch,
* i.e., before around 1901.12.13 20:45:53 UTC.
*
* There are such times in the conditions database from early
* SP production, before all times were renormalized into 1997+ space.
*/
int timeSpec( struct timespec* ts ) const;
/**
* Extracts the value of the BdbTime as a POSIX "struct tm" broken-down
* time. This requires the use of a time zone. In analogy with the
* POSIX.1b gmtime_r() function, a pointer to a "struct tm" to receive
* the data must be supplied -- so this function is thread-safe(*).
* Following this analogy, the function returns the supplied pointer
* on success, and 0 on failure.
*
* This function should work for all times in the BdbTime range.
*/
struct tm* tm( struct tm* stm, Zone zone ) const;
/**
* Creates a string from the value of the BdbTime, based on a
* specified format specification, as for POSIX strftime(), and on
* a time zone. Note that this function does not provide a way
* to embed the "nanoseconds" part of the BdbTime, since this is
* not possible to express in a form recognized by strftime.
*
* The "%N" format specified does not appear to be used in the POSIX
* definition of strftime. It's possible it could be hijacked in a
* future upgrade. FIXME
*
* This function should work for all times in the BdbTime range.
*/
std::string asString( const char* fmt, Zone zone ) const;
// Friends
friend BdbTime operator+( const BdbDuration& d, const BdbTime& t );
friend std::ostream& operator<<( std::ostream& os, const BdbTime& t );
private:
void renormalizeNanoseconds( );
// Data members
d_ULong _gmtSec; // number of seconds since 00:00:00 Jan. 1, 1901 UTC
d_ULong _gmtNsec; // number of nanoseconds
public:
// static interfaces:
/**
* Constructs and returns a BdbTime representing the current time.
* This interface, unlike the deprecated default constructor, returns
* a BdbTime set to the full resolution available from clock_gettime().
* Note that this may vary between platforms and even operating
* system versions.
*/
static BdbTime now();
/**
* Determines whether a string representing a date and a string
* representing a time can be converted successfully to a date/time
* in BdbTime format, i.e., in the unsigned 1901 epoch.
*
* Note that 1901.01.01 00:00:00 UTC is not a valid time; 00:00:01
* is the first valid time.
*
* Date is parsed using strptime formats "%D" and "%d%b%Y", controlled
* by BdbTimeInput, with the first one that succeeds taking precedence.
* Time is parsed with formats "%T" and "%R". These are quite a
* restricted set compared to those originally accepted by the
* Rogue Wave implementation first used here.
*
* By default times are interpreted as UTC (a logical alternative might
* be the local time zone. If an invalid date or time string is supplied,
* the BdbTime time will be set to -Infinity. If the date string is set to
* "+Infinity" or "-Infinity", the time string will be ignored and the
* BdbTime will be set to the corresponding value.
*
* @param time Returned time value; modified only if parsing is successful.
* @return Flag indicating whether parsing was successful.
*/
static bool parseTime( const std::string& sdate, const std::string& stime,
Zone zone,
BdbTime& time );
/**
* Determines whether a string representing a date and time can be
* converted successfully to a date/time in BdbTime format, i.e., in
* the unsigned 1901 epoch.
*
* Equivalent to a call to parseTime( const std::string& sdate,
* const std::string& stime, Zone zone, BdbTime& time )
* with the date and time set from the first and second whitespace-
* delimited tokens in the sdatetime string and subsequent text ignored.
*
* This is a less precise parsing method than the above.
*
* @param time Returned time value; modified only if parsing is successful.
* @return Flag indicating whether parsing was successful.
*/
static bool parseTime( const std::string& sdatetime,
Zone zone,
BdbTime& time );
// Static members
static const BdbTime minusInfinity;
static const BdbTime plusInfinity;
};
inline void
BdbTime::renormalizeNanoseconds( )
{
if ( _gmtNsec >= BdbTimeConst::nsecInASec ) {
// carry nanoseconds over into seconds
d_ULong extraSec = _gmtNsec / BdbTimeConst::nsecInASec;
d_ULong remainNsec = _gmtNsec % BdbTimeConst::nsecInASec;
_gmtSec += extraSec;
_gmtNsec = remainNsec;
}
}
#endif
| 34.188406 | 79 | 0.635693 | brownd1978 |
34af9fbebdb458197455883fd2889c4ad5b4a65f | 1,788 | cpp | C++ | src/main/utils.cpp | qzerrty/graphics-editor | af76f1466bac3b3ba7363272af74ab04e6ee44ae | [
"MIT"
] | null | null | null | src/main/utils.cpp | qzerrty/graphics-editor | af76f1466bac3b3ba7363272af74ab04e6ee44ae | [
"MIT"
] | null | null | null | src/main/utils.cpp | qzerrty/graphics-editor | af76f1466bac3b3ba7363272af74ab04e6ee44ae | [
"MIT"
] | null | null | null | #include <SDL/SDL.h>
#include <SDL/SDL_ttf.h>
#include "graphicsEditor.hpp"
#include "utils.hpp"
SDL_Color translate_color(Uint32 int_color) {
#if SDL_BYTEORDER != SDL_BIG_ENDIAN
SDL_Color color={
(Uint8) ((int_color & 0x00ff0000)/0x10000),
(Uint8) ((int_color & 0x0000ff00)/0x100),
(Uint8) (int_color & 0x000000ff), 0};
#else
SDL_Color color={
(Uint8) (int_color & 0x000000ff),
(Uint8) ((int_color & 0x0000ff00)/0x100),
(Uint8) ((int_color & 0x00ff0000)/0x10000), 0};
#endif
return color;
}
void renderText(SDL_Surface* screen, SDL_Rect dst, const char* message, int fontSize, Uint32 color) {
SDL_Surface* textSurface;
TTF_Font* fnt;
if (!(fnt = TTF_OpenFont("../public/Ubuntu.ttf", fontSize))) {
return;
}
if ((textSurface = TTF_RenderUTF8_Blended(fnt, message, translate_color(color)))) {
SDL_BlitSurface(textSurface, NULL, screen, &dst);
SDL_FreeSurface(textSurface);
textSurface = NULL;
}
TTF_CloseFont(fnt);
}
char* IntToHexChars(int value) {
char* result = new char[7];
sprintf(result, "#%06X", value);
return result;
}
char* IntToChars(int value) {
char* result = new char[3];
sprintf(result, "%d", value);
return result;
}
Uint32 createRGB(int r, int g, int b) {
return ((r & 0xff) << 16) + ((g & 0xff) << 8) + (b & 0xff);
}
Uint32 getpixel(SDL_Surface * surface, int x, int y) {
int bpp = surface->format->BytesPerPixel;
Uint8 * p = (Uint8 *) surface->pixels + y * surface->pitch + x * bpp;
switch (bpp) {
case 1:
return *p;
case 2:
return *(Uint16 *) p;
case 3:
if (SDL_BYTEORDER == SDL_BIG_ENDIAN)
return p[0] << 16 | p[1] << 8 | p[2];
else
return p[0] | p[1] << 8 | p[2] << 16;
case 4:
return *(Uint32 *) p;
default:
return 0;
}
} | 24.833333 | 101 | 0.630313 | qzerrty |
34b072586a0bd73e7f7ce8ab30fc9e1f3d7410ee | 7,245 | cpp | C++ | Tests/GuiTests/DFNs/DisparityImage/DisparityImageEdres.cpp | H2020-InFuse/cdff | e55fd48f9a909d0c274c3dfa4fe2704bc5071542 | [
"BSD-2-Clause"
] | 7 | 2019-02-26T15:09:50.000Z | 2021-09-30T07:39:01.000Z | Tests/GuiTests/DFNs/DisparityImage/DisparityImageEdres.cpp | H2020-InFuse/cdff | e55fd48f9a909d0c274c3dfa4fe2704bc5071542 | [
"BSD-2-Clause"
] | null | null | null | Tests/GuiTests/DFNs/DisparityImage/DisparityImageEdres.cpp | H2020-InFuse/cdff | e55fd48f9a909d0c274c3dfa4fe2704bc5071542 | [
"BSD-2-Clause"
] | 1 | 2020-12-06T12:09:05.000Z | 2020-12-06T12:09:05.000Z | /**
* @author Clément Bazerque
*/
/**
* Test application for the DFN DisparityImageEdres
*/
/**
* @addtogroup DFNsTest
* @{
*/
#include <DisparityImage/DisparityImageEdres.hpp>
#include <GuiTests/ParametersInterface.hpp>
#include <GuiTests/MainInterface.hpp>
#include <GuiTests/DFNs/DFNTestInterface.hpp>
#include <Visualizers/OpenCVVisualizer.hpp>
#include <Errors/Assert.hpp>
#include <opencv2/core/core.hpp>
#include <opencv2/imgcodecs/imgcodecs.hpp>
#include <opencv2/highgui/highgui.hpp>
using namespace CDFF::DFN::DisparityImage;
using namespace FrameWrapper;
class DisparityImageEdresTestInterface : public DFNTestInterface
{
public:
DisparityImageEdresTestInterface(const std::string& dfnName, int buttonWidth, int buttonHeight);
~DisparityImageEdresTestInterface();
private:
DisparityImageEdres disparityImageEdres;
cv::Mat cvLeftImage;
cv::Mat cvRightImage;
std::string outputWindowName;
void SetupParameters() override;
void DisplayResult() override;
};
DisparityImageEdresTestInterface::DisparityImageEdresTestInterface(const std::string& dfnName, int buttonWidth, int buttonHeight) :
DFNTestInterface(dfnName, buttonWidth, buttonHeight),
disparityImageEdres()
{
SetDFN(&disparityImageEdres);
// Loads two grayscaled rectified images
cvLeftImage = cv::imread("../../tests/Data/Images/MinnieStereo/MinnieRectDeg3Left.png", cv::IMREAD_GRAYSCALE);
cvRightImage = cv::imread("../../tests/Data/Images/MinnieStereo/MinnieRectDeg3Right.png", cv::IMREAD_GRAYSCALE);
// Initialise a frame pair and set its metadata
asn1SccFramePair *framePair = new asn1SccFramePair();
asn1SccFramePair_Initialize(framePair);
framePair->msgVersion = frame_Version;
framePair->baseline = 0.270268442641143;
// Fill the left image data
{
framePair->left.msgVersion = frame_Version;
framePair->left.metadata.msgVersion = frame_Version;
framePair->left.metadata.status = asn1Sccstatus_VALID;
framePair->left.metadata.pixelModel = asn1Sccpix_UNDEF;
framePair->left.metadata.mode = asn1Sccmode_GRAY;
framePair->left.intrinsic.msgVersion = frame_Version;
framePair->left.intrinsic.cameraModel = asn1Scccam_PINHOLE;
framePair->left.intrinsic.cameraMatrix.arr[0].arr[0] = 1069.23438117834;
framePair->left.intrinsic.cameraMatrix.arr[0].arr[1] = 0;
framePair->left.intrinsic.cameraMatrix.arr[0].arr[2] = 956.907250034732;
framePair->left.intrinsic.cameraMatrix.arr[1].arr[0] = 0;
framePair->left.intrinsic.cameraMatrix.arr[1].arr[1] = 1071.73940921359;
framePair->left.intrinsic.cameraMatrix.arr[1].arr[2] = 621.662860111553;
framePair->left.intrinsic.cameraMatrix.arr[2].arr[0] = 0;
framePair->left.intrinsic.cameraMatrix.arr[2].arr[1] = 0;
framePair->left.intrinsic.cameraMatrix.arr[2].arr[2] = 1;
asn1SccArray3D &imageOnly = framePair->left.data;
imageOnly.msgVersion = array3D_Version;
imageOnly.rows = static_cast<asn1SccT_UInt32>(cvLeftImage.rows);
imageOnly.cols = static_cast<asn1SccT_UInt32>(cvLeftImage.cols);
imageOnly.channels = static_cast<asn1SccT_UInt32>(cvLeftImage.channels());
imageOnly.depth = static_cast<asn1SccArray3D_depth_t>(cvLeftImage.depth());
imageOnly.rowSize = cvLeftImage.step[0];
imageOnly.data.nCount = static_cast<int>(imageOnly.rows * imageOnly.rowSize);
memcpy(imageOnly.data.arr, cvLeftImage.data, static_cast<size_t>(imageOnly.data.nCount));
}
// Fill the right image data
{
framePair->right.msgVersion = frame_Version;
framePair->right.metadata.msgVersion = frame_Version;
framePair->right.metadata.status = asn1Sccstatus_VALID;
framePair->right.metadata.pixelModel = asn1Sccpix_UNDEF;
framePair->right.metadata.mode = asn1Sccmode_GRAY;
framePair->right.intrinsic.msgVersion = frame_Version;
framePair->right.intrinsic.cameraModel = asn1Scccam_PINHOLE;
framePair->right.intrinsic.cameraMatrix.arr[0].arr[0] = 1066.44771376037;
framePair->right.intrinsic.cameraMatrix.arr[0].arr[1] = 0;
framePair->right.intrinsic.cameraMatrix.arr[0].arr[2] = 943.937535155249;
framePair->right.intrinsic.cameraMatrix.arr[1].arr[0] = 0;
framePair->right.intrinsic.cameraMatrix.arr[1].arr[1] = 1069.28469804725;
framePair->right.intrinsic.cameraMatrix.arr[1].arr[2] = 617.141031157546;
framePair->right.intrinsic.cameraMatrix.arr[2].arr[0] = 0;
framePair->right.intrinsic.cameraMatrix.arr[2].arr[1] = 0;
framePair->right.intrinsic.cameraMatrix.arr[2].arr[2] = 1;
asn1SccArray3D &imageOnly = framePair->right.data;
imageOnly.msgVersion = array3D_Version;
imageOnly.rows = static_cast<asn1SccT_UInt32>(cvRightImage.rows);
imageOnly.cols = static_cast<asn1SccT_UInt32>(cvRightImage.cols);
imageOnly.channels = static_cast<asn1SccT_UInt32>(cvRightImage.channels());
imageOnly.depth = static_cast<asn1SccArray3D_depth_t>(cvRightImage.depth());
imageOnly.rowSize = cvRightImage.step[0];
imageOnly.data.nCount = static_cast<int>(imageOnly.rows * imageOnly.rowSize);
memcpy(imageOnly.data.arr, cvRightImage.data, static_cast<size_t>(imageOnly.data.nCount));
}
// Set the DFN input with this image pair
disparityImageEdres.framePairInput(*framePair);
outputWindowName = "Disparity Image Result";
delete(framePair);
}
DisparityImageEdresTestInterface::~DisparityImageEdresTestInterface()
{
}
void DisparityImageEdresTestInterface::SetupParameters()
{
AddParameter("DisparityParams", "minDistance", 1.0, 100.0);
AddParameter("DisparityParams", "maxDistance", 40.0, 100.0);
AddParameter("DisparityParams", "method", 1, 4);
AddParameter("DisparityParams", "grad", 2, 5);
AddParameter("DisparityParams", "gradType", 5, 8);
AddParameter("DisparityParams", "dispType", 8, 8);
AddParameter("FilterParams", "filter", 1, 1);
AddParameter("FilterParams", "trimWidth", 3, 100, 1);
AddParameter("FilterParams", "connexityThresh", 2, 10, 0.1);
AddParameter("FilterParams", "surfMin", 20, 1000, 10);
AddParameter("FilterParams", "surfMax", 1000, 5000, 10);
}
void DisparityImageEdresTestInterface::DisplayResult()
{
// Fetch the resulting disparity image
asn1SccFrame* res = new asn1SccFrame();
*res = disparityImageEdres.disparityOutput();
PRINT_TO_LOG("Processing time (seconds): ", GetLastProcessingTimeSeconds());
PRINT_TO_LOG("Virtual memory used (kB): ", GetTotalVirtualMemoryUsedKB());
// Convert the disparity image as a cv::Mat for display
cv::Mat disparity = cv::Mat(res->data.rows, res->data.cols, CV_MAKETYPE((int)(res->data.depth), res->data.channels), res->data.data.arr, res->data.rowSize);
// Apply a colormap
cv::Mat dispColor;
double min, max;
cv::minMaxLoc(disparity, &min, &max);
disparity.convertTo(disparity, CV_8U, 255 / (max - min), -255.0 * min / (max - min));
cv::Mat mask = disparity > 0;
cv::applyColorMap(disparity, disparity, 2);
disparity.copyTo(dispColor, mask);
// Display the disparity
cv::namedWindow(outputWindowName, CV_WINDOW_NORMAL);
cv::imshow(outputWindowName, dispColor);
cv::resizeWindow(outputWindowName, dispColor.cols, dispColor.rows);
cv::waitKey(500);
delete(res);
}
int main(int argc, char** argv)
{
DisparityImageEdresTestInterface* interface = new DisparityImageEdresTestInterface("DisparityImageEdres", 100, 40);
interface->Run();
delete(interface);
};
/** @} */
| 38.333333 | 157 | 0.757902 | H2020-InFuse |
34b0b7cb584507f7860dc717ae0d4d5746ee8dc8 | 3,093 | cpp | C++ | src/Solver/NumericalJacobian.cpp | chalmersplasmatheory/DREAM | 715637ada94f5e35db16f23c2fd49bb7401f4a27 | [
"MIT"
] | 12 | 2020-09-07T11:19:10.000Z | 2022-02-17T17:40:19.000Z | src/Solver/NumericalJacobian.cpp | chalmersplasmatheory/DREAM | 715637ada94f5e35db16f23c2fd49bb7401f4a27 | [
"MIT"
] | 110 | 2020-09-02T15:29:24.000Z | 2022-03-09T09:50:01.000Z | src/Solver/NumericalJacobian.cpp | chalmersplasmatheory/DREAM | 715637ada94f5e35db16f23c2fd49bb7401f4a27 | [
"MIT"
] | 3 | 2021-05-21T13:24:31.000Z | 2022-02-11T14:43:12.000Z | /**
* Routines for numerically evaluating the jacobian numerically
* in the non-linear solver.
*/
#include <iostream>
#include "DREAM/Solver/SolverNonLinear.hpp"
#include "FVM/BlockMatrix.hpp"
#include "FVM/UnknownQuantity.hpp"
using namespace DREAM;
/**
* Evaluate jacobian numerically using finite difference
* of the residual function.
*
* jac: Jacobian matrix.
*/
void SolverNonLinear::_EvaluateJacobianNumerically(
FVM::BlockMatrix *jac
) {
printf("Evaluating Jacobian numerically... 0.00%%");
len_t nSize = this->unknowns->GetLongVectorSize(this->nontrivial_unknowns);
const real_t *iniVec = this->unknowns->GetLongVector(this->nontrivial_unknowns);
real_t *dFVec = new real_t[nSize];
real_t *FVec = new real_t[nSize];
real_t *iniFVec = new real_t[nSize];
real_t *xhVec = new real_t[nSize];
// Copy initial vector to shifted solution vector
for (len_t i = 0; i < nSize; i++)
xhVec[i] = iniVec[i];
jac->SetOffset(0, 0);
jac->Zero();
this->_EvaluateF(iniVec, iniFVec, jac);
const real_t h = 1e-6, hDefault = 10;
len_t index = 0;
for (auto uid : this->nontrivial_unknowns) {
FVM::UnknownQuantity *uqn = this->unknowns->GetUnknown(uid);
const len_t N = uqn->NumberOfElements();
// Differentiate w.r.t. index...
for (len_t _i = 0; _i < N; _i++, index++) {
// Restore previous element
if (index > 0)
xhVec[index-1] = iniVec[index-1];
// Determine derivative step length
real_t hStep;
if (iniVec[index] == 0)
hStep = hDefault;
else
hStep = h*iniVec[index];
xhVec[index] += hStep;
// Evaluate F(x+h)
this->_EvaluateF(xhVec, FVec, jac);
// Evaluate dF/dx_index
for (len_t j = 0; j < nSize; j++)
dFVec[j] = (FVec[j]-iniFVec[j]) / hStep;
// Set Jacobian column
for (len_t j = 0; j < nSize; j++) {
if (dFVec[j] != 0)
jac->SetElement(j, index, dFVec[j], INSERT_VALUES);
}
printf("\b\b\b\b\b\b\b%6.2f%%", double(index)/double(nSize-1)*100);
std::cout << std::flush;
}
}
printf("\n");
jac->Assemble();
delete [] xhVec;
delete [] iniFVec;
delete [] FVec;
delete [] dFVec;
}
/**
* Evaluate the non-linear function 'F'.
*
* xVec: Point in which to evaluate the function.
* FVec: Contains function value on return.
* jac: Associated jacobian (for obtaining vector/matrix structure).
*/
void SolverNonLinear::_EvaluateF(const real_t *xVec, real_t *FVec, FVM::BlockMatrix *jac) {
len_t offset = 0;
for (auto uqnid : this->nontrivial_unknowns) {
unknowns->Store(uqnid, xVec, offset);
offset += unknowns->GetUnknown(uqnid)->NumberOfElements();
}
this->RebuildTerms(this->CurrentTime(), this->CurrentTimeStep());
this->BuildVector(this->CurrentTime(), this->CurrentTimeStep(), FVec, jac);
}
| 28.118182 | 91 | 0.589395 | chalmersplasmatheory |
34b7758ac1a85618e9b620de9522e93938a1edfa | 2,223 | cpp | C++ | App/src/UI/Windows/UIMatrixWindow.cpp | Shorakie/GraphDelta | f930ccd7c3bffc7a12fa864d6dca72375623cbcf | [
"MIT"
] | 1 | 2021-07-08T22:51:59.000Z | 2021-07-08T22:51:59.000Z | App/src/UI/Windows/UIMatrixWindow.cpp | Shorakie/GraphDelta | f930ccd7c3bffc7a12fa864d6dca72375623cbcf | [
"MIT"
] | null | null | null | App/src/UI/Windows/UIMatrixWindow.cpp | Shorakie/GraphDelta | f930ccd7c3bffc7a12fa864d6dca72375623cbcf | [
"MIT"
] | null | null | null | #include "UIMatrixWindow.h"
#include <IconsFontAwesome5.h>
#include <spdlog/fmt/fmt.h>
#include <Core/Application.h>
#include <Core/Utils.h>
#include "Components/Components.h"
using namespace entt::literals;
namespace Project {
UIMatrixWindow::UIMatrixWindow(GraphSystem& graphSystem, std::string name)
: Engine::UIWindow(name), graphSystem(graphSystem), mode(MatrixMode::ADJ) {}
void UIMatrixWindow::init() { show = true; }
void UIMatrixWindow::deinit() {}
void UIMatrixWindow::render() {
if (show) {
if (ImGui::Begin(getName(), &show, ImGuiWindowFlags_NoFocusOnAppearing)) renderImGui();
ImGui::End();
}
}
void UIMatrixWindow::update() {}
void UIMatrixWindow::renderImGui() {
auto& reg = Engine::Application::get().reg;
ImGui::PushFont(ImGui::GetIO().Fonts->Fonts[1]);
if (ImGui::Button(ICON_FA_HOME, {28, 28})) mode = MatrixMode::ADJ;
ImGui::PopFont();
if (ImGui::IsItemHovered()) ImGui::SetTooltip("Adjacency matrix");
ImGui::SameLine();
ImGui::PushFont(ImGui::GetIO().Fonts->Fonts[1]);
if (ImGui::Button(ICON_FA_DOLLAR_SIGN, {28, 28})) mode = MatrixMode::COST;
ImGui::PopFont();
if (ImGui::IsItemHovered()) ImGui::SetTooltip("Cost matrix");
ImGui::Separator();
auto nodes = reg.view<Component::Node>(entt::exclude<entt::tag<"PREVIEW"_hs>>);
Engine::Util::NMatrix<double_t> matrix;
if (mode == MatrixMode::ADJ)
matrix = graphSystem.getAdjacencyMatrix();
else if (mode == MatrixMode::COST)
matrix = graphSystem.getCostMatrix();
if (ImGui::BeginTable("Matrix", matrix.size() + 1,
ImGuiTableFlags_NoHostExtendY | ImGuiTableFlags_Borders | ImGuiTableFlags_ScrollY |
ImGuiTableFlags_ScrollX)) {
ImGui::TableSetupScrollFreeze(1, 1);
ImGui::TableSetupColumn("##Nodes");
for (auto& [nodeId, node] : nodes.each())
ImGui::TableSetupColumn(node.name.c_str());
ImGui::TableHeadersRow();
for (auto& [startId, startNode] : nodes.each()) {
ImGui::TableNextColumn();
ImGui::Text(startNode.name.c_str());
for (auto& [endId, endNode] : nodes.each()) {
ImGui::TableNextColumn();
ImGui::Text(fmt::to_string(matrix[startId][endId]).c_str());
}
}
ImGui::EndTable();
}
}
} // namespace Project
| 29.64 | 92 | 0.682861 | Shorakie |
34c3c0adf0797ceeb3c51c7caa3a1ab2eecde196 | 213 | cc | C++ | build/ARM/python/m5/internal/param_RubyPort.i_init.cc | Jakgn/gem5_test | 0ba7cc5213cf513cf205af7fc995cf679ebc1a3f | [
"BSD-3-Clause"
] | null | null | null | build/ARM/python/m5/internal/param_RubyPort.i_init.cc | Jakgn/gem5_test | 0ba7cc5213cf513cf205af7fc995cf679ebc1a3f | [
"BSD-3-Clause"
] | null | null | null | build/ARM/python/m5/internal/param_RubyPort.i_init.cc | Jakgn/gem5_test | 0ba7cc5213cf513cf205af7fc995cf679ebc1a3f | [
"BSD-3-Clause"
] | null | null | null | #include "sim/init.hh"
extern "C" {
void init_param_RubyPort();
}
EmbeddedSwig embed_swig_param_RubyPort(init_param_RubyPort, "m5.internal._param_RubyPort");
| 23.666667 | 99 | 0.596244 | Jakgn |
34c3fc0f23e5ac1ba2efe95219cd74ae93d99036 | 1,816 | cpp | C++ | evias/network/connection.cpp | evias/evias | 5b5d4c16404f855c3234afa05b11c339a3ebb4cb | [
"BSD-3-Clause"
] | 1 | 2015-10-31T03:18:02.000Z | 2015-10-31T03:18:02.000Z | evias/network/connection.cpp | evias/evias | 5b5d4c16404f855c3234afa05b11c339a3ebb4cb | [
"BSD-3-Clause"
] | null | null | null | evias/network/connection.cpp | evias/evias | 5b5d4c16404f855c3234afa05b11c339a3ebb4cb | [
"BSD-3-Clause"
] | null | null | null | #include "connection.hpp"
using namespace evias::network;
/**
* searchQueue
*
* pop the queue's first element or the first with identification reqId.
*
* \note returned object has to be free'd
* \return netPacket*
*/
netPacket *evias::network::netConnection::searchQueue(__netRequest_t reqId)
{
// execute this algorithm safely in creating a specific thread and locking
// the mutex
Lock l(_mutex);
if (_queue.empty()) {
return NULL;
}
netPacket *p = NULL;
// either get the first message available
// or get a specific packet by its message ID
if (reqId == EVIAS_MSG_NONE) {
p = _queue.front();
_queue.pop_front();
}
else {
for (std::list<netPacket*>::iterator i = _queue.begin() ; i != _queue.end() ; i++) {
// packet is current iterator's value
p = *i;
if ( ((__packetHeader_t *) p->m_dataPointer)->requestId == reqId ) {
_queue.erase(i);
break;
}
p = NULL;
}
if (p == NULL) {
return NULL;
}
}
return p;
}
/**
* addPacketToQueue
*
* adds the specified packet to the current queue. If the queue's length
* is greater than allowed, pop the first element.
*
* \return void
**/
void evias::network::netConnection::pushQueue(netPacket* packetAdded)
{
if (! packetAdded)
return ;
Lock l(_mutex);
// add the specified packet
_queue.push_back(packetAdded);
while (_queue.size() > QUEUE_MAX) {
// get the instance for free-ing memory
netPacket* frontPacket = _queue.front();
_queue.pop_front();
releaseMemory(frontPacket);
}
}
| 21.364706 | 93 | 0.556718 | evias |
34c7dc7488185dc25907f14567154347348f23d1 | 1,048 | cpp | C++ | apr.2020after/20200507/20200507/n_11328/n_11328.cpp | lis0517/BOJ_ | 8aafb2db9c3c08afd145db911144c28a7cec3279 | [
"MIT"
] | null | null | null | apr.2020after/20200507/20200507/n_11328/n_11328.cpp | lis0517/BOJ_ | 8aafb2db9c3c08afd145db911144c28a7cec3279 | [
"MIT"
] | null | null | null | apr.2020after/20200507/20200507/n_11328/n_11328.cpp | lis0517/BOJ_ | 8aafb2db9c3c08afd145db911144c28a7cec3279 | [
"MIT"
] | null | null | null | // n_11328.cpp : 이 파일에는 'main' 함수가 포함됩니다. 거기서 프로그램 실행이 시작되고 종료됩니다.
//
#include <iostream>
#include <string>
using namespace std;
int arr1[26];
int arr2[26];
int main()
{
int lp = 0;
cin >> lp;
for (int i = 0; i < lp; ++i)
{
fill(arr1 + 0, arr1 + 26, 0);
fill(arr2 + 0, arr2 + 26, 0);
string s1, s2;
cin >> s1 >> s2;
for (auto c : s1)
{
arr1[c - 'a']++;
}
for (auto c : s2)
{
arr2[c - 'a']++;
}
bool flag = true;
for (int i = 0; i < 26; ++i)
{
if (arr1[i] != arr2[i])
{
flag = false;
break;
}
}
cout << ((flag) ? "Possible" : "Impossible") << "\n";
}
}
// 프로그램 실행: <Ctrl+F5> 또는 [디버그] > [디버깅하지 않고 시작] 메뉴
// 프로그램 디버그: <F5> 키 또는 [디버그] > [디버깅 시작] 메뉴
// 시작을 위한 팁:
// 1. [솔루션 탐색기] 창을 사용하여 파일을 추가/관리합니다.
// 2. [팀 탐색기] 창을 사용하여 소스 제어에 연결합니다.
// 3. [출력] 창을 사용하여 빌드 출력 및 기타 메시지를 확인합니다.
// 4. [오류 목록] 창을 사용하여 오류를 봅니다.
// 5. [프로젝트] > [새 항목 추가]로 이동하여 새 코드 파일을 만들거나, [프로젝트] > [기존 항목 추가]로 이동하여 기존 코드 파일을 프로젝트에 추가합니다.
// 6. 나중에 이 프로젝트를 다시 열려면 [파일] > [열기] > [프로젝트]로 이동하고 .sln 파일을 선택합니다.
| 19.407407 | 96 | 0.510496 | lis0517 |
34cddbfed49e6957150bde6c006b2a22752bfed9 | 1,241 | hpp | C++ | core/include/storm/core/Singleton.hpp | Arthapz/StormKit | 7c8dead874734d04b97776287b25bf2ebe9be617 | [
"MIT"
] | 17 | 2019-02-12T14:40:06.000Z | 2021-12-21T12:54:17.000Z | core/include/storm/core/Singleton.hpp | Arthapz/StormKit | 7c8dead874734d04b97776287b25bf2ebe9be617 | [
"MIT"
] | null | null | null | core/include/storm/core/Singleton.hpp | Arthapz/StormKit | 7c8dead874734d04b97776287b25bf2ebe9be617 | [
"MIT"
] | 2 | 2019-02-21T10:07:42.000Z | 2020-05-08T19:49:10.000Z | // Copyright (C) 2021 Arthur LAURENT <[email protected]>
// This file is subject to the license terms in the LICENSE file
// found in the top-level of this distribution
#pragma once
#include <functional>
#include <memory>
#include <mutex>
#include <storm/core/Memory.hpp>
#include <storm/core/NonCopyable.hpp>
#include <storm/core/NonMovable.hpp>
#include <utility>
namespace storm::core {
template<class T>
class Singleton: public NonMovable, public NonCopyable {
public:
template<typename... Args>
static T &instance(Args &&...args) {
auto lambdas = [](Args &&...args) mutable {
m_instance = std::make_unique<T>(std::forward<Args>(args)...);
};
std::call_once(onceFlag(), lambdas, std::forward<Args>(args)...);
return *m_instance;
}
protected:
explicit Singleton() = default;
~Singleton() = default;
private:
static std::once_flag &onceFlag() {
static auto once_flag = std::once_flag {};
return once_flag;
}
static inline std::unique_ptr<T> m_instance = nullptr;
};
} // namespace storm::core
| 29.547619 | 79 | 0.589847 | Arthapz |
34d0bb63038a190ded7209dd6ecf81a9cc83c18d | 2,177 | cpp | C++ | DataProcessingList.cpp | AlanRace/imzMLParser | 1b9bc7f0b09bdeca9c8427448baed53483ce64e7 | [
"Apache-2.0"
] | 1 | 2021-03-18T09:51:10.000Z | 2021-03-18T09:51:10.000Z | DataProcessingList.cpp | AlanRace/imzMLParser | 1b9bc7f0b09bdeca9c8427448baed53483ce64e7 | [
"Apache-2.0"
] | null | null | null | DataProcessingList.cpp | AlanRace/imzMLParser | 1b9bc7f0b09bdeca9c8427448baed53483ce64e7 | [
"Apache-2.0"
] | 1 | 2018-06-08T09:11:55.000Z | 2018-06-08T09:11:55.000Z | /*
*
* Copyright 2013 Alan Race
*
* 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.
*
*
*/
/*
* DataProcessingList.cpp
*
* Created on: 18 May 2012
* Author: alan
*/
#include "DataProcessingList.h"
namespace ImzML {
DataProcessingList::DataProcessingList(int count) {
dataProcessingList.reserve(count);
}
DataProcessingList::~DataProcessingList()
{
// TODO Auto-generated destructor stub
}
void DataProcessingList::addDataProcessing(boost::shared_ptr<ImzML::DataProcessing> dataProcessing) {
dataProcessingList.push_back(dataProcessing);
}
boost::shared_ptr<ImzML::DataProcessing> DataProcessingList::getDataProcessing(int index) {
return dataProcessingList[index];
}
boost::shared_ptr<ImzML::DataProcessing> DataProcessingList::getDataProcessing(std::string id) {
for(std::vector< boost::shared_ptr<ImzML::DataProcessing> >::iterator iter = dataProcessingList.begin(); iter < dataProcessingList.end(); iter++)
if(id.compare((*iter)->getID()) == 0)
return *iter;
return boost::shared_ptr<ImzML::DataProcessing>();
}
std::ostream& operator<<(std::ostream& os, const ImzML::DataProcessingList& dpl) {
for(int i = 0; i < dpl.indent; i++)
os << dpl.indentString;
os << "<dataProcessingList count=\"" << dpl.dataProcessingList.size() << "\">" << std::endl;
dpl.indent++;
for(ImzML::DataProcessingList::dataProcessingList_type::size_type i = 0; i < dpl.dataProcessingList.size(); i++)
os << *dpl.dataProcessingList[i] << std::endl;
dpl.indent--;
for(int i = 0; i < dpl.indent; i++)
os << dpl.indentString;
os << "</dataProcessingList>";
return os;
}
} /* namespace ImzML */
| 29.418919 | 147 | 0.702802 | AlanRace |
34e068bf48a74368721b09af4684c7e0457d20c8 | 769 | cpp | C++ | plugins/Nephilim/AngelScriptEXT/ASXRuntime.cpp | GrimshawA/Nephilim | 1e69df544078b55fdaf58a04db963e20094f27a9 | [
"Zlib"
] | 19 | 2015-12-19T11:15:57.000Z | 2022-03-09T11:22:11.000Z | plugins/Nephilim/AngelScriptEXT/ASXRuntime.cpp | DevilWithin/Nephilim | 1e69df544078b55fdaf58a04db963e20094f27a9 | [
"Zlib"
] | 1 | 2017-05-17T09:31:10.000Z | 2017-05-19T17:01:31.000Z | plugins/Nephilim/AngelScriptEXT/ASXRuntime.cpp | GrimshawA/Nephilim | 1e69df544078b55fdaf58a04db963e20094f27a9 | [
"Zlib"
] | 3 | 2015-12-14T17:40:26.000Z | 2021-02-25T00:42:42.000Z | #include <Nephilim/AngelScriptEXT/ASXRuntime.h>
#include <Nephilim/AngelScriptEXT/ASXEngine.h>
#include <angelscript.h>
NEPHILIM_NS_BEGIN
ASXRuntime::ASXRuntime()
: m_context(NULL)
{
}
ASXRuntime::ASXRuntime(ASXEngine& engine)
{
m_context = engine.get()->CreateContext();
}
ASXRuntime::~ASXRuntime()
{
if(m_context) m_context->Release();
}
asIScriptContext* ASXRuntime::get()
{
return m_context;
}
void ASXRuntime::pushState()
{
if(m_context) m_context->PushState();
}
void ASXRuntime::popState()
{
if(m_context) m_context->PopState();
}
void ASXRuntime::set(ASXEngine& engine)
{
m_context = engine.get()->CreateContext();
}
void ASXRuntime::reset(ASXModule& module)
{
if(m_context)
{
module.get()->ResetGlobalVars(m_context);
}
}
NEPHILIM_NS_END | 14.788462 | 47 | 0.73212 | GrimshawA |
34e4275045040f9b3400d0cdefb85c2055a8dee0 | 21,640 | cpp | C++ | Tests/FileMgrTest.cpp | igalink/omniscidb | 94e878916991e7cf76bcd85b4091119b1ec66012 | [
"Apache-2.0"
] | null | null | null | Tests/FileMgrTest.cpp | igalink/omniscidb | 94e878916991e7cf76bcd85b4091119b1ec66012 | [
"Apache-2.0"
] | 1 | 2021-02-24T03:22:29.000Z | 2021-02-24T03:22:29.000Z | Tests/FileMgrTest.cpp | isabella232/omniscidb | bf83d84833710679debdf7a0484b6fbfc421cc96 | [
"Apache-2.0"
] | null | null | null | /*
* Copyright 2020 OmniSci, 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.
*/
/**
* @file FileMgrTest.cpp
* @brief Unit tests for FileMgr class.
*/
#include <gtest/gtest.h>
#include "DBHandlerTestHelpers.h"
#include "DataMgr/FileMgr/FileMgr.h"
#include "DataMgr/FileMgr/GlobalFileMgr.h"
#include "TestHelpers.h"
class FileMgrTest : public DBHandlerTestFixture {
protected:
std::string table_name;
Data_Namespace::DataMgr* dm;
ChunkKey chunk_key;
std::pair<int, int> file_mgr_key;
File_Namespace::GlobalFileMgr* gfm;
Catalog_Namespace::Catalog* cat;
void SetUp() override {
DBHandlerTestFixture::SetUp();
cat = &getCatalog();
dm = &cat->getDataMgr();
gfm = dm->getGlobalFileMgr();
table_name = "test_table";
sql("DROP TABLE IF EXISTS " + table_name + ";");
sql("CREATE TABLE " + table_name + " (col1 INT)");
sql("INSERT INTO " + table_name + " VALUES(1)");
const TableDescriptor* td = cat->getMetadataForTable(table_name);
const auto col_descs =
cat->getAllColumnMetadataForTable(td->tableId, false, false, false);
const ColumnDescriptor* cd = *(col_descs.begin());
int db_id = cat->getCurrentDB().dbId;
int tb_id = td->tableId;
chunk_key = {db_id, tb_id, cd->columnId, 0};
file_mgr_key = std::make_pair(db_id, tb_id);
}
void TearDown() override {
sql("DROP TABLE " + table_name);
DBHandlerTestFixture::TearDown();
}
ChunkKey setUpCappedRollbackTable(const int32_t max_rollback_epochs) {
Catalog_Namespace::Catalog* cat = &getCatalog();
const std::string capped_table_name("capped_table");
sql("DROP TABLE IF EXISTS " + capped_table_name + ";");
std::stringstream capped_ddl;
capped_ddl << "CREATE TABLE " << capped_table_name << " "
<< "(col1 INT) WITH (max_rollback_epochs=" << max_rollback_epochs << ")";
sql(capped_ddl.str());
sql("INSERT INTO " + capped_table_name + " VALUES(1)");
const TableDescriptor* td = cat->getMetadataForTable(capped_table_name);
const auto col_descs =
cat->getAllColumnMetadataForTable(td->tableId, false, false, false);
const ColumnDescriptor* cd = *(col_descs.begin());
const int db_id = cat->getCurrentDB().dbId;
const int tb_id = td->tableId;
const ChunkKey capped_chunk_key = {db_id, tb_id, cd->columnId, 0};
return capped_chunk_key;
}
void compareBuffers(AbstractBuffer* left_buffer,
AbstractBuffer* right_buffer,
size_t num_bytes) {
int8_t left_array[num_bytes];
int8_t right_array[num_bytes];
left_buffer->read(left_array, num_bytes);
right_buffer->read(right_array, num_bytes);
ASSERT_EQ(std::memcmp(left_array, right_array, num_bytes), 0);
ASSERT_EQ(left_buffer->hasEncoder(), right_buffer->hasEncoder());
}
void compareMetadata(const std::shared_ptr<ChunkMetadata> lhs_metadata,
const std::shared_ptr<ChunkMetadata> rhs_metadata) {
SQLTypeInfo lhs_sqltypeinfo = lhs_metadata->sqlType;
SQLTypeInfo rhs_sqltypeinfo = rhs_metadata->sqlType;
ASSERT_EQ(lhs_sqltypeinfo.get_type(), rhs_sqltypeinfo.get_type());
ASSERT_EQ(lhs_sqltypeinfo.get_subtype(), rhs_sqltypeinfo.get_subtype());
ASSERT_EQ(lhs_sqltypeinfo.get_dimension(), rhs_sqltypeinfo.get_dimension());
ASSERT_EQ(lhs_sqltypeinfo.get_scale(), rhs_sqltypeinfo.get_scale());
ASSERT_EQ(lhs_sqltypeinfo.get_notnull(), rhs_sqltypeinfo.get_notnull());
ASSERT_EQ(lhs_sqltypeinfo.get_comp_param(), rhs_sqltypeinfo.get_comp_param());
ASSERT_EQ(lhs_sqltypeinfo.get_size(), rhs_sqltypeinfo.get_size());
ASSERT_EQ(lhs_metadata->numBytes, rhs_metadata->numBytes);
ASSERT_EQ(lhs_metadata->numElements, rhs_metadata->numElements);
ChunkStats lhs_chunk_stats = lhs_metadata->chunkStats;
ChunkStats rhs_chunk_stats = rhs_metadata->chunkStats;
ASSERT_EQ(lhs_chunk_stats.min.intval, rhs_chunk_stats.min.intval);
ASSERT_EQ(lhs_chunk_stats.max.intval, rhs_chunk_stats.max.intval);
ASSERT_EQ(lhs_chunk_stats.has_nulls, rhs_chunk_stats.has_nulls);
}
std::shared_ptr<ChunkMetadata> getMetadataForBuffer(AbstractBuffer* buffer) {
const std::shared_ptr<ChunkMetadata> metadata = std::make_shared<ChunkMetadata>();
buffer->getEncoder()->getMetadata(metadata);
return metadata;
}
void compareBuffersAndMetadata(AbstractBuffer* left_buffer,
AbstractBuffer* right_buffer) {
ASSERT_TRUE(left_buffer->hasEncoder());
ASSERT_TRUE(right_buffer->hasEncoder());
ASSERT_TRUE(left_buffer->getEncoder());
ASSERT_TRUE(right_buffer->getEncoder());
ASSERT_EQ(left_buffer->size(), getMetadataForBuffer(left_buffer)->numBytes);
ASSERT_EQ(right_buffer->size(), getMetadataForBuffer(right_buffer)->numBytes);
compareMetadata(getMetadataForBuffer(left_buffer),
getMetadataForBuffer(right_buffer));
compareBuffers(left_buffer, right_buffer, left_buffer->size());
}
int8_t* getDataPtr(std::vector<int32_t>& data_vector) {
return reinterpret_cast<int8_t*>(data_vector.data());
}
void appendData(AbstractBuffer* data_buffer, std::vector<int32_t>& append_data) {
CHECK(data_buffer->hasEncoder());
SQLTypeInfo sql_type_info = getMetadataForBuffer(data_buffer)->sqlType;
int8_t* append_ptr = getDataPtr(append_data);
data_buffer->getEncoder()->appendData(append_ptr, append_data.size(), sql_type_info);
}
void writeData(AbstractBuffer* data_buffer,
std::vector<int32_t>& write_data,
const size_t offset) {
CHECK(data_buffer->hasEncoder());
SQLTypeInfo sql_type_info = getMetadataForBuffer(data_buffer)->sqlType;
int8_t* write_ptr = getDataPtr(write_data);
// appendData is a misnomer, with the offset we are overwriting part of the buffer
data_buffer->getEncoder()->appendData(
write_ptr, write_data.size(), sql_type_info, false /*replicating*/, offset);
}
};
TEST_F(FileMgrTest, putBuffer_update) {
AbstractBuffer* source_buffer =
dm->getChunkBuffer(chunk_key, Data_Namespace::MemoryLevel::CPU_LEVEL);
source_buffer->setUpdated();
auto file_mgr =
File_Namespace::FileMgr(0, gfm, file_mgr_key, -1, 0, -1, gfm->getDefaultPageSize());
AbstractBuffer* file_buffer = file_mgr.putBuffer(chunk_key, source_buffer, 4);
compareBuffersAndMetadata(source_buffer, file_buffer);
ASSERT_FALSE(source_buffer->isAppended());
ASSERT_FALSE(source_buffer->isUpdated());
ASSERT_FALSE(source_buffer->isDirty());
}
TEST_F(FileMgrTest, putBuffer_subwrite) {
AbstractBuffer* source_buffer =
dm->getChunkBuffer(chunk_key, Data_Namespace::MemoryLevel::CPU_LEVEL);
int8_t temp_array[8] = {1, 2, 3, 4, 5, 6, 7, 8};
source_buffer->write(temp_array, 8);
auto file_mgr =
File_Namespace::FileMgr(0, gfm, file_mgr_key, -1, 0, -1, gfm->getDefaultPageSize());
AbstractBuffer* file_buffer = file_mgr.putBuffer(chunk_key, source_buffer, 4);
compareBuffers(source_buffer, file_buffer, 4);
}
TEST_F(FileMgrTest, putBuffer_exists) {
AbstractBuffer* source_buffer =
dm->getChunkBuffer(chunk_key, Data_Namespace::MemoryLevel::CPU_LEVEL);
int8_t temp_array[4] = {1, 2, 3, 4};
source_buffer->write(temp_array, 4);
auto file_mgr =
File_Namespace::FileMgr(0, gfm, file_mgr_key, -1, 0, -1, gfm->getDefaultPageSize());
file_mgr.putBuffer(chunk_key, source_buffer, 4);
file_mgr.checkpoint();
source_buffer->write(temp_array, 4);
AbstractBuffer* file_buffer = file_mgr.putBuffer(chunk_key, source_buffer, 4);
compareBuffersAndMetadata(source_buffer, file_buffer);
}
TEST_F(FileMgrTest, putBuffer_append) {
AbstractBuffer* source_buffer =
dm->getChunkBuffer(chunk_key, Data_Namespace::MemoryLevel::CPU_LEVEL);
int8_t temp_array[4] = {1, 2, 3, 4};
source_buffer->append(temp_array, 4);
auto file_mgr =
File_Namespace::FileMgr(0, gfm, file_mgr_key, -1, 0, -1, gfm->getDefaultPageSize());
AbstractBuffer* file_buffer = file_mgr.putBuffer(chunk_key, source_buffer, 8);
compareBuffersAndMetadata(source_buffer, file_buffer);
}
TEST_F(FileMgrTest, put_checkpoint_get) {
AbstractBuffer* source_buffer =
dm->getChunkBuffer(chunk_key, Data_Namespace::MemoryLevel::CPU_LEVEL);
std::vector<int32_t> data_v1 = {1, 2, 3, 5, 7};
appendData(source_buffer, data_v1);
File_Namespace::FileMgr* file_mgr = dynamic_cast<File_Namespace::FileMgr*>(
dm->getGlobalFileMgr()->getFileMgr(file_mgr_key.first, file_mgr_key.second));
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 1);
AbstractBuffer* file_buffer_put = file_mgr->putBuffer(chunk_key, source_buffer, 24);
ASSERT_TRUE(file_buffer_put->isDirty());
ASSERT_FALSE(file_buffer_put->isUpdated());
ASSERT_TRUE(file_buffer_put->isAppended());
ASSERT_EQ(file_buffer_put->size(), static_cast<size_t>(24));
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 1);
file_mgr->checkpoint();
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 2);
AbstractBuffer* file_buffer_get = file_mgr->getBuffer(chunk_key, 24);
ASSERT_EQ(file_buffer_put, file_buffer_get);
CHECK(!(file_buffer_get->isDirty()));
CHECK(!(file_buffer_get->isUpdated()));
CHECK(!(file_buffer_get->isAppended()));
ASSERT_EQ(file_buffer_get->size(), static_cast<size_t>(24));
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 2);
compareBuffersAndMetadata(source_buffer, file_buffer_get);
}
TEST_F(FileMgrTest, put_checkpoint_get_double_write) {
AbstractBuffer* source_buffer =
dm->getChunkBuffer(chunk_key, Data_Namespace::MemoryLevel::CPU_LEVEL);
std::vector<int32_t> data_v1 = {1, 2, 3, 5, 7};
std::vector<int32_t> data_v2 = {11, 13, 17, 19};
appendData(source_buffer, data_v1);
File_Namespace::FileMgr* file_mgr = dynamic_cast<File_Namespace::FileMgr*>(
dm->getGlobalFileMgr()->getFileMgr(file_mgr_key.first, file_mgr_key.second));
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 1);
file_mgr->putBuffer(chunk_key, source_buffer, 24);
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 1);
file_mgr->checkpoint();
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 2);
AbstractBuffer* file_buffer = file_mgr->getBuffer(chunk_key, 24);
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 2);
ASSERT_FALSE(file_buffer->isDirty());
ASSERT_EQ(file_buffer->size(), static_cast<size_t>(24));
compareBuffersAndMetadata(source_buffer, file_buffer);
appendData(file_buffer, data_v2);
ASSERT_TRUE(file_buffer->isDirty());
ASSERT_EQ(file_buffer->size(), static_cast<size_t>(40));
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 2);
appendData(file_buffer, data_v2);
CHECK(file_buffer->isDirty());
ASSERT_EQ(file_buffer->size(), static_cast<size_t>(56));
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 2);
file_mgr->checkpoint();
CHECK(!(file_buffer->isDirty()));
ASSERT_EQ(file_buffer->size(), static_cast<size_t>(56));
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 3);
appendData(source_buffer, data_v2);
appendData(source_buffer, data_v2);
compareBuffersAndMetadata(source_buffer, file_buffer);
}
TEST_F(FileMgrTest, buffer_append_and_recovery) {
AbstractBuffer* source_buffer =
dm->getChunkBuffer(chunk_key, Data_Namespace::MemoryLevel::CPU_LEVEL);
ASSERT_EQ(getMetadataForBuffer(source_buffer)->numElements, static_cast<size_t>(1));
std::vector<int32_t> data_v1 = {1, 2, 3, 5, 7};
std::vector<int32_t> data_v2 = {11, 13, 17, 19};
appendData(source_buffer, data_v1);
{
File_Namespace::FileMgr* file_mgr = dynamic_cast<File_Namespace::FileMgr*>(
dm->getGlobalFileMgr()->getFileMgr(file_mgr_key.first, file_mgr_key.second));
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 1);
AbstractBuffer* file_buffer = file_mgr->putBuffer(chunk_key, source_buffer, 24);
file_mgr->checkpoint();
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 2);
ASSERT_EQ(getMetadataForBuffer(source_buffer)->numElements, static_cast<size_t>(6));
ASSERT_EQ(getMetadataForBuffer(file_buffer)->numElements, static_cast<size_t>(6));
SCOPED_TRACE("Buffer Append and Recovery - Compare #1");
compareBuffersAndMetadata(source_buffer, file_buffer);
// Now write data we will not checkpoint
appendData(file_buffer, data_v1);
ASSERT_EQ(file_buffer->size(), static_cast<size_t>(44));
// Now close filemgr to test recovery
cat->removeFragmenterForTable(file_mgr_key.second);
dm->getGlobalFileMgr()->closeFileMgr(file_mgr_key.first, file_mgr_key.second);
}
{
File_Namespace::FileMgr* file_mgr = dynamic_cast<File_Namespace::FileMgr*>(
dm->getGlobalFileMgr()->getFileMgr(file_mgr_key.first, file_mgr_key.second));
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 2);
ChunkMetadataVector chunkMetadataVector;
file_mgr->getChunkMetadataVecForKeyPrefix(chunkMetadataVector, chunk_key);
ASSERT_EQ(chunkMetadataVector.size(), static_cast<size_t>(1));
ASSERT_EQ(std::memcmp(chunkMetadataVector[0].first.data(), chunk_key.data(), 16), 0);
ASSERT_EQ(chunkMetadataVector[0].first, chunk_key);
std::shared_ptr<ChunkMetadata> chunk_metadata = chunkMetadataVector[0].second;
ASSERT_EQ(chunk_metadata->numBytes, static_cast<size_t>(24));
ASSERT_EQ(chunk_metadata->numElements, static_cast<size_t>(6));
AbstractBuffer* file_buffer =
file_mgr->getBuffer(chunk_key, chunk_metadata->numBytes);
{
SCOPED_TRACE("Buffer Append and Recovery - Compare #2");
compareBuffersAndMetadata(source_buffer, file_buffer);
}
appendData(source_buffer, data_v2);
appendData(file_buffer, data_v2);
file_mgr->checkpoint();
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 3);
{
SCOPED_TRACE("Buffer Append and Recovery - Compare #3");
compareBuffersAndMetadata(source_buffer, file_buffer);
}
}
}
TEST_F(FileMgrTest, buffer_update_and_recovery) {
std::vector<int32_t> data_v1 = {
2,
3,
5,
7,
11}; // Make first element different than 1 stored in col1 at t0 so that we can
// ensure updates and rollbacks show a change in col[0]
std::vector<int32_t> data_v2 = {13, 17, 19, 23};
{
EXPECT_EQ(dm->getTableEpoch(file_mgr_key.first, file_mgr_key.second), std::size_t(1));
AbstractBuffer* cpu_buffer =
dm->getChunkBuffer(chunk_key, Data_Namespace::MemoryLevel::CPU_LEVEL);
AbstractBuffer* file_buffer =
dm->getChunkBuffer(chunk_key, Data_Namespace::MemoryLevel::DISK_LEVEL);
ASSERT_FALSE(cpu_buffer->isDirty());
ASSERT_FALSE(cpu_buffer->isUpdated());
ASSERT_FALSE(cpu_buffer->isAppended());
ASSERT_FALSE(file_buffer->isDirty());
ASSERT_FALSE(file_buffer->isUpdated());
ASSERT_FALSE(file_buffer->isAppended());
ASSERT_EQ(file_buffer->size(), static_cast<size_t>(4));
{
SCOPED_TRACE("Buffer Update and Recovery - Compare #1");
compareBuffersAndMetadata(file_buffer, cpu_buffer);
}
writeData(file_buffer, data_v1, 0);
ASSERT_TRUE(file_buffer->isDirty());
ASSERT_TRUE(file_buffer->isUpdated());
ASSERT_TRUE(file_buffer->isAppended());
ASSERT_EQ(file_buffer->size(), static_cast<size_t>(20));
{
std::vector<int32_t> file_buffer_data(file_buffer->size() / sizeof(int32_t));
file_buffer->read(reinterpret_cast<int8_t*>(file_buffer_data.data()),
file_buffer->size());
ASSERT_EQ(file_buffer_data[0], 2);
ASSERT_EQ(file_buffer_data[1], 3);
ASSERT_EQ(file_buffer_data[2], 5);
ASSERT_EQ(file_buffer_data[3], 7);
ASSERT_EQ(file_buffer_data[4], 11);
std::shared_ptr<ChunkMetadata> file_chunk_metadata =
getMetadataForBuffer(file_buffer);
ASSERT_EQ(file_chunk_metadata->numElements, static_cast<size_t>(5));
ASSERT_EQ(file_chunk_metadata->numBytes, static_cast<size_t>(20));
ASSERT_EQ(file_chunk_metadata->chunkStats.min.intval,
1); // We don't currently narrow the metadata on a full rewrite
ASSERT_EQ(file_chunk_metadata->chunkStats.max.intval, 11);
ASSERT_EQ(file_chunk_metadata->chunkStats.has_nulls, false);
}
dm->checkpoint(file_mgr_key.first, file_mgr_key.second);
EXPECT_EQ(dm->getTableEpoch(file_mgr_key.first, file_mgr_key.second), std::size_t(2));
ASSERT_FALSE(file_buffer->isDirty());
ASSERT_FALSE(file_buffer->isUpdated());
ASSERT_FALSE(file_buffer->isAppended());
cpu_buffer->unPin(); // Neccessary as we just have a raw_ptr, so there is no way to
// auto un-pin the pin that getBuffer sets, normally this is
// handled by the Chunk class wrapper
dm->clearMemory(Data_Namespace::MemoryLevel::CPU_LEVEL);
cpu_buffer = dm->getChunkBuffer(
chunk_key,
Data_Namespace::MemoryLevel::CPU_LEVEL,
0,
20); // Dragons here: if we didn't unpin andy flush the data, the first value
// will be 1, and not 2, as we only fetch the portion of data we don't have
// from FileMgr (there's no DataMgr versioning currently, so for example,
// for updates we just flush the in-memory buffers to get a clean start)
ASSERT_FALSE(cpu_buffer->isDirty());
ASSERT_FALSE(cpu_buffer->isUpdated());
ASSERT_FALSE(cpu_buffer->isAppended());
ASSERT_EQ(file_buffer->size(), static_cast<size_t>(20));
{
std::vector<int32_t> cpu_buffer_data(cpu_buffer->size() / sizeof(int32_t));
cpu_buffer->read(reinterpret_cast<int8_t*>(cpu_buffer_data.data()),
cpu_buffer->size());
ASSERT_EQ(cpu_buffer_data[0], 2);
ASSERT_EQ(cpu_buffer_data[1], 3);
ASSERT_EQ(cpu_buffer_data[2], 5);
ASSERT_EQ(cpu_buffer_data[3], 7);
ASSERT_EQ(cpu_buffer_data[4], 11);
std::shared_ptr<ChunkMetadata> cpu_chunk_metadata =
getMetadataForBuffer(cpu_buffer);
ASSERT_EQ(cpu_chunk_metadata->numElements, static_cast<size_t>(5));
ASSERT_EQ(cpu_chunk_metadata->numBytes, static_cast<size_t>(20));
ASSERT_EQ(cpu_chunk_metadata->chunkStats.min.intval,
1); // We don't currently narrow the metadata on a full rewrite
ASSERT_EQ(cpu_chunk_metadata->chunkStats.max.intval, 11);
ASSERT_EQ(cpu_chunk_metadata->chunkStats.has_nulls, false);
}
{
SCOPED_TRACE("Buffer Update and Recovery - Compare #2");
compareBuffersAndMetadata(file_buffer, cpu_buffer);
}
// Now roll back to epoch 1
cat->setTableEpoch(file_mgr_key.first, file_mgr_key.second, 1);
file_buffer = dm->getChunkBuffer(chunk_key, Data_Namespace::MemoryLevel::DISK_LEVEL);
ASSERT_FALSE(file_buffer->isDirty());
ASSERT_FALSE(file_buffer->isUpdated());
ASSERT_FALSE(file_buffer->isAppended());
ASSERT_EQ(file_buffer->size(), static_cast<size_t>(4));
{
std::vector<int32_t> file_buffer_data(file_buffer->size() / sizeof(int32_t));
file_buffer->read(reinterpret_cast<int8_t*>(file_buffer_data.data()),
file_buffer->size());
ASSERT_EQ(file_buffer_data[0], 1);
std::shared_ptr<ChunkMetadata> file_chunk_metadata =
getMetadataForBuffer(file_buffer);
ASSERT_EQ(file_chunk_metadata->numElements, static_cast<size_t>(1));
ASSERT_EQ(file_chunk_metadata->numBytes, static_cast<size_t>(4));
ASSERT_EQ(file_chunk_metadata->chunkStats.min.intval, 1);
ASSERT_EQ(file_chunk_metadata->chunkStats.max.intval, 1);
ASSERT_EQ(file_chunk_metadata->chunkStats.has_nulls, false);
}
}
}
TEST_F(FileMgrTest, capped_metadata) {
const int rollback_ceiling = 10;
const int num_data_writes = rollback_ceiling * 2;
for (int max_rollback_epochs = 0; max_rollback_epochs != rollback_ceiling;
++max_rollback_epochs) {
const ChunkKey capped_chunk_key = setUpCappedRollbackTable(max_rollback_epochs);
// Have one element already written to key -- epoch should be 2
ASSERT_EQ(dm->getTableEpoch(capped_chunk_key[0], capped_chunk_key[1]),
static_cast<size_t>(1));
File_Namespace::FileMgr* file_mgr = dynamic_cast<File_Namespace::FileMgr*>(
dm->getGlobalFileMgr()->getFileMgr(capped_chunk_key[0], capped_chunk_key[1]));
// buffer inside loop
for (int data_write = 1; data_write <= num_data_writes; ++data_write) {
std::vector<int32_t> data;
data.emplace_back(data_write);
AbstractBuffer* file_buffer =
dm->getChunkBuffer(capped_chunk_key, Data_Namespace::MemoryLevel::DISK_LEVEL);
appendData(file_buffer, data);
dm->checkpoint(capped_chunk_key[0], capped_chunk_key[1]);
ASSERT_EQ(dm->getTableEpoch(capped_chunk_key[0], capped_chunk_key[1]),
static_cast<size_t>(data_write + 1));
const size_t num_metadata_pages_expected =
std::min(data_write + 1, max_rollback_epochs + 1);
ASSERT_EQ(file_mgr->getNumUsedMetadataPagesForChunkKey(capped_chunk_key),
num_metadata_pages_expected);
}
}
}
int main(int argc, char** argv) {
TestHelpers::init_logger_stderr_only(argc, argv);
testing::InitGoogleTest(&argc, argv);
int err{0};
try {
err = RUN_ALL_TESTS();
} catch (const std::exception& e) {
LOG(ERROR) << e.what();
}
return err;
}
| 44.989605 | 90 | 0.717976 | igalink |
34e5824156bb4489ce6a05a52d37e029521986e1 | 17,532 | cpp | C++ | examples/example-rtc.cpp | kirchnerlab/libpipe | 28f08b9399945bd13329937a9dd0691211826886 | [
"MIT"
] | 1 | 2018-11-08T13:41:18.000Z | 2018-11-08T13:41:18.000Z | examples/example-rtc.cpp | kirchnerlab/libpipe | 28f08b9399945bd13329937a9dd0691211826886 | [
"MIT"
] | null | null | null | examples/example-rtc.cpp | kirchnerlab/libpipe | 28f08b9399945bd13329937a9dd0691211826886 | [
"MIT"
] | null | null | null | /*
* example-rtc.cpp
*
* Copyright (c) 2010 Marc Kirchner
* 2011 David Sichau
*
*/
#include <libpipe/config.hpp>
#include <stdlib.h>
#include <exception>
#include <iostream>
#include <set>
#include <boost/pointer_cast.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/make_shared.hpp>
#include <libpipe/rtc/Algorithm.hpp>
#include <libpipe/rtc/Filter.hpp>
#include <libpipe/rtc/Manager.hpp>
#include <libpipe/rtc/ManagerFactory.hpp>
#include <libpipe/rtc/AlgorithmFactory.hpp>
#include <libpipe/utilities/Exception.hpp>
#include <libpipe/Request.hpp>
#include <libpipe/rtc/SharedData.hpp>
#include <libpipe/rtc/PipelineLoader.hpp>
/** Converts std::string input to uppercase.
* Although not exceedingly useful, this is a good example of how to write
* an LIBPIPE algorithm. Basically, there are only two requirements (and one
* additional option):
* \li derive from \c libpipe::Algorithm.
* \li implement the \c update() function.
* \li optionally, override the \c processRequest() function (if your
* implementation does not call the \c update function, you do not
* need to implement it).
*
* Contrary to other approaches to pipelining (most notably probably the VTK
* way), LIBPIPE attempts to minimize hard constraints on the implementations.
* There is a diverse collection of datatypes and a set of software suites
* that are being used to process mass spectrometry data. Minimizing the
* structural imprint that LIBPIPE leaves on applications allows easy cross-suite
* interfacing and allows for a more rapid algorithmic development cycle.
*/
class UppercaseAlgorithm : public libpipe::rtc::Algorithm
{
public:
// use convenience typedefs to avoid cluttering up the code
typedef std::string String;
typedef libpipe::rtc::SharedData<String> SharedString;
static Algorithm* create()
{
return new UppercaseAlgorithm;
}
/** Destructor.
*/
virtual ~UppercaseAlgorithm()
{
}
/** Runs the algorithm and updates the output data.
* This is where all the algorithm implementation goes.
* @param[in,out] req The request object, forwarded from \c process request.
* @return The request
*/
void update(libpipe::Request& req)
{
LIBPIPE_PREPARE_READ_ACCESS(input_, dataIn_, String, "StringInput");
LIBPIPE_PREPARE_WRITE_ACCESS(output_, dataOut_, String,
"StringOutput");
LIBPIPE_PIPELINE_TRACE("UppercaseAlgorithm::update: start.");
dataOut_.clear();
LIBPIPE_PIPELINE_TRACE(
"UppercaseAlgorithm::update: transforming to uppercase.");
std::transform(dataIn_.begin(), dataIn_.end(),
std::back_inserter(dataOut_), toupper);
LIBPIPE_PIPELINE_TRACE("UppercaseAlgorithm::update: end.");
#ifdef ENABLE_THREADING
output_->unlock();
input_->unlock();
#endif
}
protected:
/** Constructor.
* Make sure to call the \c libpipe::rtc::Algorithm constructor.
*/
UppercaseAlgorithm() :
libpipe::rtc::Algorithm()
{
ports_["StringInput"] = boost::make_shared<
SharedString>();
ports_["StringOutput"] = boost::make_shared<
SharedString >(new std::string);
}
private:
/** registers the Algorithm in the factory
* @return true is registration was successful
*/
static const bool registerLoader()
{
std::string ids = "UppercaseAlgorithm";
return libpipe::rtc::AlgorithmFactory::instance().registerType(ids,
UppercaseAlgorithm::create);
}
/// true is class is registered in Algorithm Factory
static const bool registered_;
};
const bool UppercaseAlgorithm::registered_ = registerLoader();
/** Converts std::string input to lowercase.
* Although not exceedingly useful, this is a good example of how to write
* an LIBPIPE algorithm. Basically, there are only two requirements (and one
* additional option):
* \li derive from \c libpipe::Algorithm.
* \li implement the \c update() function.
* \li optionally, override the \c processRequest() function (if your
* implementation does not call the \c update function, you do not
* need to implement it).
*
* Contrary to other approaches to pipelining (most notably probably the VTK
* way), LIBPIPE attempts to minimize hard constraints on the implementations.
* There is a diverse collection of datatypes and a set of software suites
* that are being used to process mass spectrometry data. Minimizing the
* structural imprint that LIBPIPE leaves on applications allows easy cross-suite
* interfacing and allows for a more rapid algorithmic development cycle.
*/
class LowercaseAlgorithm : public libpipe::rtc::Algorithm
{
public:
// use convenience typedefs to avoid cluttering up the code
typedef std::string String;
typedef libpipe::rtc::SharedData<String> SharedString;
static Algorithm* create()
{
return new LowercaseAlgorithm;
}
/** Destructor.
*/
virtual ~LowercaseAlgorithm()
{
}
/** Runs the algorithm and updates the output data.
* This is where all the algorithm implementation goes.
* @param[in,out] req The request object, forwarded from \c process request.
* @return The request
*/
void update(libpipe::Request& req)
{
LIBPIPE_PREPARE_READ_ACCESS(input_, dataIn_, String, "StringInput");
LIBPIPE_PREPARE_WRITE_ACCESS(output_, dataOut_, String,
"StringOutput");
LIBPIPE_PIPELINE_TRACE("LowercaseAlgorithm::update: start.");
dataOut_.clear();
LIBPIPE_PIPELINE_TRACE(
"LowercaseAlgorithm::update: transforming to uppercase.");
std::transform(dataIn_.begin(), dataIn_.end(),
std::back_inserter(dataOut_), tolower);
LIBPIPE_PIPELINE_TRACE("LowercaseAlgorithm::update: end.");
#ifdef ENABLE_THREADING
output_->unlock();
input_->unlock();
#endif
}
protected:
private:
/** Constructor.
* Make sure to call the \c libpipe::Algorithm constructor.
*/
LowercaseAlgorithm() :
libpipe::rtc::Algorithm()
{
ports_["StringInput"] = boost::make_shared<
SharedString >();
ports_["StringOutput"] = boost::make_shared<
SharedString >(new std::string);
}
/** registers the Algorithm in the factory
* @return true is registration was successful
*/
static const bool registerLoader()
{
std::string ids = "LowercaseAlgorithm";
return libpipe::rtc::AlgorithmFactory::instance().registerType(ids,
LowercaseAlgorithm::create);
}
/// true is class is registered in Algorithm Factory
static const bool registered_;
};
const bool LowercaseAlgorithm::registered_ = registerLoader();
/** Combines the input strings to one string.
*
*/
class CombineAlgorithm : public libpipe::rtc::Algorithm
{
public:
// use convenience typedefs to avoid cluttering up the code
typedef std::string String;
typedef libpipe::rtc::SharedData<String> SharedString;
static Algorithm* create()
{
return new CombineAlgorithm;
}
/** Destructor.
*/
virtual ~CombineAlgorithm()
{
LIBPIPE_PREPARE_READ_ACCESS(input1_, dataIn1_, String,
"StringInput1");
LIBPIPE_PREPARE_READ_ACCESS(input2_, dataIn2_, String,
"StringInput2");
LIBPIPE_PREPARE_WRITE_ACCESS(output_, dataOut_, String,
"StringOutput");
std::cout << "\033[22;32m Combine Algorithm destroyed with input: "
<< dataIn1_ << " and " << dataIn2_
<< "\t and output: " << dataOut_ << "\e[m"
<< std::endl;
#ifdef ENABLE_THREADING
output_->unlock();
input1_->unlock();
input2_->unlock();
#endif
}
/** Runs the algorithm and updates the output data.
* This is where all the algorithm implementation goes.
* @param[in,out] req The request object, forwarded from \c process request.
* @return The request
*/
void update(libpipe::Request& req)
{
LIBPIPE_PREPARE_READ_ACCESS(input1_, dataIn1_, String,
"StringInput1");
LIBPIPE_PREPARE_READ_ACCESS(input2_, dataIn2_, String,
"StringInput2");
LIBPIPE_PREPARE_WRITE_ACCESS(output_, dataOut_, String,
"StringOutput");
LIBPIPE_PIPELINE_TRACE("CombineAlgorithm::update: start.");
dataOut_.clear();
LIBPIPE_PIPELINE_TRACE(
"CombineAlgorithm::update: combining inputs");
combine(dataOut_, dataIn1_, dataIn2_);
LIBPIPE_PIPELINE_TRACE("CombineAlgorithm::update: end.");
#ifdef ENABLE_THREADING
output_->unlock();
input1_->unlock();
input2_->unlock();
#endif
}
protected:
private:
/** Combines two inputs
* @param result The result
*/
void combine(String& result,
const String& input1_,
const String& input2_)
{
result.append(input1_);
result.append(input2_);
}
/** Constructor.
* Make sure to call the \c libpipe::Algorithm constructor.
*/
CombineAlgorithm() :
libpipe::rtc::Algorithm()
{
ports_["StringInput1"] = boost::make_shared<
SharedString >();
ports_["StringInput2"] = boost::make_shared<
SharedString >();
ports_["StringOutput"] = boost::make_shared<
SharedString >(new std::string);
}
/** registers the Algorithm in the factory
* @return true is registration was successful
*/
static const bool registerLoader()
{
std::string ids = "CombineAlgorithm";
return libpipe::rtc::AlgorithmFactory::instance().registerType(ids,
CombineAlgorithm::create);
}
/// true is class is registered in Algorithm Factory
static const bool registered_;
};
const bool CombineAlgorithm::registered_ = registerLoader();
/** cipher the string with ROT13
*
*/
class ROT13Algorithm : public libpipe::rtc::Algorithm
{
public:
// use convenience typedefs to avoid cluttering up the code
typedef std::string String;
typedef libpipe::rtc::SharedData<String> SharedString;
static Algorithm* create()
{
return new ROT13Algorithm;
}
/** virtual Destructor
*/
virtual ~ROT13Algorithm()
{
}
/** Runs the algorithm and updates the output data.
* If the request type is DELETE the input gets deleted.
* This is where all the algorithm implementation goes.
* @param[in,out] req The request object, forwarded from \c process request.
* @return The request
*/
void update(libpipe::Request& req)
{
LIBPIPE_PREPARE_READ_ACCESS(input_, dataIn_, String,
"StringInput");
LIBPIPE_PREPARE_WRITE_ACCESS(output_, dataOut_, String,
"StringOutput");
if (req.is(libpipe::Request::UPDATE) && this->needUpdate()) {
LIBPIPE_PIPELINE_TRACE("ROT13Algorithm::update: start.");
dataOut_.clear();
LIBPIPE_PIPELINE_TRACE(
"ROT13Algorithm::update: transforming with ROT13.");
rot13(dataIn_, dataOut_);
LIBPIPE_PIPELINE_TRACE("ROT13Algorithm::update: end.");
} else if (req.is(libpipe::Request::DELETE)) {
input_.reset();
LIBPIPE_PIPELINE_TRACE(
"ROT13Algorithm::update: deleted the input");
}
#ifdef ENABLE_THREADING
output_->unlock();
input_->unlock();
#endif
}
protected:
private:
/**
* Function to calculate the ROT13 cipher
* @param[in] str A handle to the input string
* @param[out] result A handle to the ciphered input
*/
void rot13(const String& str, String& result)
{
static std::string const lcalph = "abcdefghijklmnopqrstuvwxyz",
ucalph = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
std::string::size_type pos;
result.reserve(str.length());
for (std::string::const_iterator it = str.begin(); it != str.end();
++it) {
if ((pos = lcalph.find(*it)) != std::string::npos)
result.push_back(lcalph[(pos + 13) % 26]);
else if ((pos = ucalph.find(*it)) != std::string::npos)
result.push_back(ucalph[(pos + 13) % 26]);
else
result.push_back(*it);
}
}
/** Constructor.
* Make sure to call the \c libpipe::Algorithm constructor.
*/
ROT13Algorithm() :
libpipe::rtc::Algorithm()
{
ports_["StringInput"] = boost::make_shared<SharedString>();
ports_["StringOutput"] = boost::make_shared<SharedString>(
new std::string);
}
/** registers the Algorithm in the factory
* @return true is registration was successful
*/
static const bool registerLoader()
{
std::string ids = "ROT13Algorithm";
return libpipe::rtc::AlgorithmFactory::instance().registerType(ids,
ROT13Algorithm::create);
}
/// true is class is registered in Algorithm Factory
static const bool registered_;
};
const bool ROT13Algorithm::registered_ = registerLoader();
/** Provides a constant string as output.
* This is an example of a 'source'. The \c Source algorithm does not require
* any input and will always provide a predefined string as its output.
*/
class Source : public libpipe::rtc::Algorithm
{
public:
// use convenience typedefs to avoid cluttering up the code
typedef std::string String;
typedef libpipe::rtc::SharedData<String> SharedString;
static Algorithm* create()
{
return new Source;
}
/** Destructor.
*/
virtual ~Source()
{
}
/** Updates the output data (i.e. does nothing).
* The output is provided as a constant, hence there is nothing to do.
* @param[in] req The request object.
* @return The request object.
*/
void update(libpipe::Request& req)
{
LIBPIPE_PREPARE_WRITE_ACCESS(output_, tempOut, String,
"StringOutput");
String temp = parameters_.get<String>("SourceString")
+ parameters_.get<String>("SourceString2");
tempOut = temp;
#ifdef ENABLE_THREADING
output_->unlock();
#endif
}
protected:
private:
/** Constructor.
*/
Source() :
libpipe::rtc::Algorithm()
{
ports_["StringOutput"] = boost::make_shared<SharedString>(
new std::string(""));
}
/** registers the Algorithm in the factory
* @return true is registration was successful
*/
static const bool registerLoader()
{
std::string ids = "Source";
return libpipe::rtc::AlgorithmFactory::instance().registerType(ids,
Source::create);
}
/// true is class is registered in Algorithm Factory
static const bool registered_;
};
const bool Source::registered_ = registerLoader();
int main(int argc, char *argv[])
{
using namespace libpipe::rtc;
std::map<std::string, std::string> inputFiles;
inputFiles["FilterInput"] = "inputFileFilterJSON.txt";
inputFiles["ConnectionInput"] = "inputFileConnectionJSON.txt";
inputFiles["PipelineInput"] = "inputFilePipelineJSON.txt";
inputFiles["ParameterInput"] = "inputFileParametersJSON.txt";
Pipeline pipeline;
try {
PipelineLoader loader(inputFiles);
pipeline = loader.getPipeline();
} catch (libpipe::utilities::Exception& e) {
std::cerr << e.what() << std::endl;
}
try {
pipeline.run();
} catch (libpipe::utilities::Exception& e) {
std::cerr << e.what() << std::endl;
}
std::vector<std::string> trace;
trace = pipeline.getTrace();
for (std::vector<std::string>::const_iterator i = trace.begin();
i != trace.end(); ++i) {
std::cout << *i << '\n';
}
std::cout
<< "All output after this is due to automatically called destructors."
<< std::endl;
return EXIT_SUCCESS;
}
| 32.346863 | 84 | 0.592745 | kirchnerlab |
34e5fb3069618dfe4b629d3f544a01ef8e570dde | 2,942 | cpp | C++ | core/CODeMDistribution.cpp | shaulsal/CODeM | 8cc85972cbb21ec55f323e6a049429b9ab2e2c74 | [
"MIT"
] | null | null | null | core/CODeMDistribution.cpp | shaulsal/CODeM | 8cc85972cbb21ec55f323e6a049429b9ab2e2c74 | [
"MIT"
] | null | null | null | core/CODeMDistribution.cpp | shaulsal/CODeM | 8cc85972cbb21ec55f323e6a049429b9ab2e2c74 | [
"MIT"
] | null | null | null | /****************************************************************************
**
** Copyright (C) 2012-2015 The University of Sheffield (www.sheffield.ac.uk)
**
** This file is part of Liger.
**
** GNU Lesser General Public License Usage
** This file may be used under the terms of the GNU Lesser General
** Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
****************************************************************************/
#include <core/CODeMDistribution.h>
#include <core/CODeMOperators.h>
#include <core/Distributions/IDistribution.h>
#include <tigon/Utils/NormalisationUtils.h>
namespace CODeM {
CODeMDistribution::CODeMDistribution(IDistribution* d,
const vector<double> oVec,
double lowerBound,
double upperBound,
const vector<double> ideal,
const vector<double> antiIdeal,
double dirPertRad,
double dirPertNorm)
: m_lb(lowerBound),
m_ub(upperBound),
m_pNorm(1)
{
defineDistribution(d);
defineIdealAndAntiIdeal(ideal, antiIdeal);
defineDirection(oVec);
defineDirectionPertRadius(dirPertRad);
definePerturbationNorm(dirPertNorm);
}
CODeMDistribution::~CODeMDistribution()
{
}
vector<double> CODeMDistribution::sampleDistribution()
{
if(m_distribution.isNull()) {
return vector<double>(0);
}
double sFactor = m_distribution->sample();
// scale to the interval [lb ub]
sFactor = m_lb + sFactor*(m_ub-m_lb);
// scale the 2-norm direction vector
vector<double> samp = m_direction;
scale(samp,sFactor);
samp = directionPerturbation(samp, m_directionPertRadius, m_pNorm);
scaleBackFromUnitBox(samp, m_ideal, m_antiIdeal);
return samp;
}
void CODeMDistribution::defineDirectionPertRadius(double r)
{
if(r >= 0.0) {
m_directionPertRadius = r;
}
}
void CODeMDistribution::definePerturbationNorm(double p)
{
if(p > 0.0) {
m_pNorm = p;
}
}
void CODeMDistribution::defineDirection(const vector<double> oVec)
{
m_direction = oVec;
normaliseToUnitBox(m_direction, m_ideal, m_antiIdeal);
toUnitVec(m_direction);
}
void CODeMDistribution::defineIdealAndAntiIdeal(const vector<double> ideal,
const vector<double> antiIdeal)
{
m_ideal = ideal;
m_antiIdeal = antiIdeal;
}
void CODeMDistribution::defineDistribution(IDistribution* d)
{
m_distribution = d;
}
} // namespace CODeM
| 29.128713 | 79 | 0.615228 | shaulsal |
34ec9e7f840721668c5b529c756e4cf5d515b7b4 | 753 | hpp | C++ | test/framework/test_logger.hpp | akshatkarani/iroha | 5acef9dd74720c6185360d951e9b11be4ef73260 | [
"Apache-2.0"
] | 1,467 | 2016-10-25T12:27:19.000Z | 2022-03-28T04:32:05.000Z | test/framework/test_logger.hpp | akshatkarani/iroha | 5acef9dd74720c6185360d951e9b11be4ef73260 | [
"Apache-2.0"
] | 2,366 | 2016-10-25T10:07:57.000Z | 2022-03-31T22:03:24.000Z | test/framework/test_logger.hpp | akshatkarani/iroha | 5acef9dd74720c6185360d951e9b11be4ef73260 | [
"Apache-2.0"
] | 662 | 2016-10-26T04:41:22.000Z | 2022-03-31T04:15:02.000Z | /**
* Copyright Soramitsu Co., Ltd. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef TEST_FRAMEWORK_TEST_LOGGER_HPP
#define TEST_FRAMEWORK_TEST_LOGGER_HPP
#include "logger/logger.hpp"
#include "logger/logger_manager_fwd.hpp"
/// Allows to log objects, which have toString() method without calling it, e.g.
/// log.info("{}", myObject)
template <typename StreamType, typename T>
auto operator<<(StreamType &os, const T &object)
-> decltype(os << object.toString()) {
return os << object.toString();
}
logger::LoggerManagerTreePtr getTestLoggerManager(
const logger::LogLevel &log_level = logger::LogLevel::kDebug);
logger::LoggerPtr getTestLogger(const std::string &tag);
#endif // TEST_FRAMEWORK_TEST_LOGGER_HPP
| 28.961538 | 80 | 0.746348 | akshatkarani |
34ef50181b03004b1772f96aee5628700062067b | 2,797 | cpp | C++ | CardReaderLibrary/ImageEditHelper.cpp | klanderfri/CardReaderLibrary | 71fc4b7fc6052a9ec3fb477fccd9b3fcfa0b9c60 | [
"MIT"
] | 4 | 2019-03-18T14:06:59.000Z | 2021-07-17T18:36:12.000Z | CardReaderLibrary/ImageEditHelper.cpp | klanderfri/ReadMagicCard | 71fc4b7fc6052a9ec3fb477fccd9b3fcfa0b9c60 | [
"MIT"
] | 17 | 2018-04-12T18:03:16.000Z | 2018-05-09T18:33:07.000Z | CardReaderLibrary/ImageEditHelper.cpp | klanderfri/ReadMagicCard | 71fc4b7fc6052a9ec3fb477fccd9b3fcfa0b9c60 | [
"MIT"
] | 1 | 2019-03-25T18:31:17.000Z | 2019-03-25T18:31:17.000Z | #include "stdafx.h"
#include "ImageEditHelper.h"
#include <opencv2\imgproc.hpp>
using namespace cv;
using namespace std;
ImageEditHelper::ImageEditHelper()
{
this->converter = new ConversionHelper();
this->rectangleMethods = new RectangleHelper();
this->imageInfo = new ImageInformationHelper();
this->transformations = new TransformHelper();
}
ImageEditHelper::~ImageEditHelper()
{
delete converter;
delete rectangleMethods;
delete imageInfo;
delete transformations;
}
void ImageEditHelper::RotateImage(const Mat rawImage, Mat& outImage, const double angleToRotate, const Point2f centerPoint)
{
//Implemented as suggested at:
//http://opencvexamples.blogspot.com/2014/01/rotate-image.html
Mat r = getRotationMatrix2D(centerPoint, angleToRotate, 1.0);
//Seems like INTER_LANCZOS4 causes the least blur.
//See https://stackoverflow.com/questions/24953935/opencv-image-getting-blurred-when-rotating-with-warpaffine
warpAffine(rawImage, outImage, r, Size(rawImage.cols, rawImage.rows), INTER_LANCZOS4);
}
void ImageEditHelper::StraightenUpImage(const Mat rawImage, Mat& outImage, const RotatedRect rawCardArea, Rect2f& outCardArea, bool enforcePortraitMode) {
//Rotate the image to straighten up the card.
double angleToRotate = rectangleMethods->GetAnglesToStrightenUp(rawCardArea, enforcePortraitMode);
RotateImage(rawImage, outImage, angleToRotate, rawCardArea.center);
//Rotate the card area rectangle.
outCardArea = converter->ToStraightRectangle(rawCardArea, enforcePortraitMode);
}
void ImageEditHelper::CropImage(const Mat rawImage, Mat& outImage, const Rect cropArea) {
float centerX = (float)cropArea.x + cropArea.size().width / 2;
float centerY = (float)cropArea.y + cropArea.size().height / 2;
Point2f center(centerX, centerY);
getRectSubPix(rawImage, cropArea.size(), center, outImage);
}
void ImageEditHelper::CropImageWithSolidBorder(const Mat rawImage, Mat& outImage, const Rect cropArea, int borderThickness) {
//Crop the image.
CropImage(rawImage, outImage, cropArea);
//Add the border.
copyMakeBorder(
outImage, outImage,
borderThickness, borderThickness, borderThickness, borderThickness,
BORDER_ISOLATED, converter->ToScalarColour(White));
}
void ImageEditHelper::ResizeImage(const Mat rawImage, Mat& outImage, int height) {
float ratio = (float)rawImage.size().height / rawImage.size().width;
int width = (int)round(height / ratio);
Size newSize(width, height);
resize(rawImage, outImage, newSize);
}
void ImageEditHelper::SetBackgroundByInverting(Mat& blackAndWhiteimage, bool setblackBackground) {
bool isblackOnWhite = imageInfo->IsBlackTextWhiteBackground(blackAndWhiteimage);
if (setblackBackground && isblackOnWhite ||
!setblackBackground && !isblackOnWhite) {
blackAndWhiteimage = ~blackAndWhiteimage;
}
}
| 32.905882 | 154 | 0.782267 | klanderfri |
34f211ffa6f801582b60db6fe75a22298c813dd3 | 1,331 | cpp | C++ | src/library/sorry.cpp | leodemoura/lean_clone | cc077554b584d39bab55c360bc12a6fe7957afe6 | [
"Apache-2.0"
] | 130 | 2016-12-02T22:46:10.000Z | 2022-03-22T01:09:48.000Z | src/library/sorry.cpp | soonhokong/lean | 38607e3eb57f57f77c0ac114ad169e9e4262e24f | [
"Apache-2.0"
] | 8 | 2017-05-03T01:21:08.000Z | 2020-02-25T11:38:05.000Z | src/library/sorry.cpp | soonhokong/lean | 38607e3eb57f57f77c0ac114ad169e9e4262e24f | [
"Apache-2.0"
] | 28 | 2016-12-02T22:46:20.000Z | 2022-03-18T21:28:20.000Z | /*
Copyright (c) 2014 Microsoft Corporation. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
Author: Leonardo de Moura
*/
#include "kernel/type_checker.h"
#include "kernel/environment.h"
#include "library/module.h"
#include "library/constants.h"
namespace lean {
static name * g_l = nullptr;
static expr * g_sorry_type = nullptr;
void initialize_sorry() {
g_l = new name("l");
g_sorry_type = new expr(mk_pi("A", mk_sort(mk_param_univ(*g_l)), mk_var(0), binder_info(true)));
}
void finalize_sorry() {
delete g_sorry_type;
delete g_l;
}
bool has_sorry(environment const & env) {
auto decl = env.find(get_sorry_name());
return decl && decl->get_type() == *g_sorry_type;
}
environment declare_sorry(environment const & env) {
if (auto decl = env.find(get_sorry_name())) {
if (decl->get_type() != *g_sorry_type)
throw exception("failed to declare 'sorry', environment already has an object named 'sorry'");
return env;
} else {
return module::add(env, check(env, mk_constant_assumption(get_sorry_name(), list<name>(*g_l), *g_sorry_type)));
}
}
expr mk_sorry() { return mk_constant(get_sorry_name()); }
bool is_sorry(expr const & e) { return is_constant(e) && const_name(e) == get_sorry_name(); }
}
| 30.25 | 119 | 0.67994 | leodemoura |
5a560a47e4c98284c4949d131cbe6cd6b3f1822b | 2,056 | hpp | C++ | types/containers/ColumnVectorUtil.hpp | Hacker0912/quickstep-datalog | 1de22e7ab787b5efa619861a167a097ff6a4f549 | [
"Apache-2.0"
] | 82 | 2016-04-18T03:59:06.000Z | 2019-02-04T11:46:08.000Z | types/containers/ColumnVectorUtil.hpp | Hacker0912/quickstep-datalog | 1de22e7ab787b5efa619861a167a097ff6a4f549 | [
"Apache-2.0"
] | 265 | 2016-04-19T17:52:43.000Z | 2018-10-11T17:55:08.000Z | types/containers/ColumnVectorUtil.hpp | Hacker0912/quickstep-datalog | 1de22e7ab787b5efa619861a167a097ff6a4f549 | [
"Apache-2.0"
] | 68 | 2016-04-18T05:00:34.000Z | 2018-10-30T12:41:02.000Z | /**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
**/
#ifndef QUICKSTEP_TYPES_CONTAINERS_COLUMN_VECTOR_UTIL_HPP_
#define QUICKSTEP_TYPES_CONTAINERS_COLUMN_VECTOR_UTIL_HPP_
#include "types/containers/ColumnVector.hpp"
namespace quickstep {
/** \addtogroup Types
* @{
*/
/**
* @brief Invoke a generic functor (or lambda) on a ColumnVector that is
* downcast to its actual concrete type.
*
* @param column_vector A ColumnVector that will be downcast to its concrete
* type so that inline methods can be used.
* @param functor A generic functor or lambda that has a templated call
* operator taking a single argument. The call operator will be invoked
* with the downcast column_vector as its argument.
* @return The return value of functor's call operator applied to the downcast
* column_vector.
**/
template <typename FunctorT>
auto InvokeOnColumnVector(const ColumnVector &column_vector,
const FunctorT &functor) {
if (column_vector.isNative()) {
return functor(static_cast<const NativeColumnVector&>(column_vector));
} else {
return functor(static_cast<const IndirectColumnVector&>(column_vector));
}
}
/** @} */
} // namespace quickstep
#endif // QUICKSTEP_TYPES_CONTAINERS_COLUMN_VECTOR_UTIL_HPP_
| 35.448276 | 78 | 0.738327 | Hacker0912 |
5a6056593fed418eec1850f6ec3aad256a72945f | 9,432 | cpp | C++ | KeePass.1.39.a/LibraryMB/Date.cpp | rrvt/KeePassLastPass | 217b627d906cf0af21ac69643a2d2e24e88f934b | [
"MIT"
] | null | null | null | KeePass.1.39.a/LibraryMB/Date.cpp | rrvt/KeePassLastPass | 217b627d906cf0af21ac69643a2d2e24e88f934b | [
"MIT"
] | 1 | 2020-05-01T00:37:31.000Z | 2020-05-01T00:37:31.000Z | KeePass.1.39.a/LibraryMB/Date.cpp | rrvt/KeePassLastPass | 217b627d906cf0af21ac69643a2d2e24e88f934b | [
"MIT"
] | 1 | 2020-02-25T09:11:37.000Z | 2020-02-25T09:11:37.000Z | // Date & Time using CTime
#include "stdafx.h"
#include "Date.h"
#include "MessageBox.h"
#include "StringInput.h"
// Helper functions for dealing with Edit boxes
static bool vrfyMnth( int cnt, TCchar ch, int& v);
static bool vrfyDay( int cnt, TCchar ch, int& v);
static bool vrfyYr( int cnt, TCchar ch, int& v);
static void replDtSel(int i, TCchar ch, CEdit& ctrl);
static bool vrfyHr( int cnt, TCchar ch, int& v);
static bool vrfyMin( int cnt, TCchar ch, int& v);
static void replTmSel(int i, TCchar ch, CEdit& ctrl);
const int Date::MinDate = 30000;
typedef struct tm Tm;
const double Date::SecondsPerDay = 86400;
static TCchar* msg = _T("Date format accepted:\n"
"mm/dd - defaults to current year\n"
"mm/dd/yr\n"
"where:\n"
" mm is 1 - 12\n"
" dd is 1 - 31\n"
" yr is 0 - 69 translates to 2000 - 2069\n"
" 70 - 99 translates to 1970 - 1999\n"
" >100 - exact year\n"
" Date only good from 1/1/1970 to year 3000\n"
"At least one slash ('/') must be present to accept a date.\n"
"Time Formats include the following where\n"
" H is either one or two hour digits:\n"
" Hmm -- Hours and minutes\n"
" hh:mm:ss -- Hour, minutes and seconds\n"
" <time>a -- am\n"
" <time>p -- pm\n"
" hhmm -- Hour and minutes in the 24-hour system\n"
"Notes:\n"
" ':' -- may separate hours and minutes in any of the above except the latter\n"
" H > 12 -- 24 hour clock always interpreted correctly");
typedef LexT<StringInput, LexTOut, false, false, false> Lex;
static int utcOffset = 0;
Date::Date() : dt(0) {
Tm utcTime;
Tm lclTime;
int noDays;
dt.GetGmtTm(&utcTime);
dt.GetLocalTm(&lclTime);
noDays = lclTime.tm_yday ? 365 - lclTime.tm_yday : 0;
utcOffset = ((noDays * 24 - lclTime.tm_hour) * 60 + lclTime.tm_min) * 60 + lclTime.tm_sec;
}
Date Date::operator= (String& s) {
Lex lex;
__time64_t tm = 0;
int nDigits;
int mm = 0; // Date may not be ealier than 1/1/1970 at UTC
int dd = 0;
int yr = 0;
int hr = 0; // Time w/o date based on 1/1/70 date. Sorry no zero date!
int mn = 0;
int ss = 0;
Token* t;
Token* t1;
Tm today;
getToday(); dt.GetLocalTm(&today);
lex.initialize(); lex.input.set(s);
lex.get_token(); t = lex.token; t1 = lex.token1;
if (t1->code == SlashToken) {
if (t->code == IntLitToken) {
mm = t->value.integer;
if (mm < 1 || 12 < mm) {messageBox(msg); goto finDate;}
lex.accept_two_tokens();
if (lex.get_token() == IntLitToken) {
t = lex.token; t1 = lex.token1;
dd = t->value.integer;
if (dd < 1 || 31 < dd) {messageBox(msg); goto finDate;}
lex.accept_token();
if (t1->code == SlashToken) {
lex.accept_two_tokens();
if (lex.get_token() == IntLitToken) {
yr = lex.token->value.integer;
if ( 0 <= yr && yr < 70) yr += 2000;
else if (70 <= yr && yr < 100) yr += 1900;
lex.accept_token();
}
}
else yr = today.tm_year + 1900;
}
}
}
if (lex.get_token() == SlashToken) lex.accept_token();
if (lex.get_token() == EolToken || lex.token->code == EOFToken) goto finDate;
if (lex.get_token() == IntLitToken) {
t = lex.token; hr = t->value.integer; nDigits = t->noDigits;
if (hr > 60 || nDigits > 2) {mn = hr % 100; hr = hr / 100;}
if (hr < 0 || 24 <= hr || mn < 0 || 60 <= mn) {messageBox(msg); goto finDate;}
if (nDigits == 4) goto finDate;
lex.accept_token();
if (lex.get_token() == ColonToken) {
lex.accept_token();
if (lex.get_token() == IntLitToken) {
mn = lex.token->value.integer; lex.accept_token();
if (mn < 0 || 60 <= mn) {messageBox(msg); goto finDate;}
lex.accept_token();
if (lex.get_token() == ColonToken) {
lex.accept_token();
if (lex.get_token() == IntLitToken) {ss = lex.token->value.integer;}
lex.accept_token();
if (ss < 0 || 60 <= ss) {messageBox(msg); goto finDate;}
}
}
}
if (lex.get_token() == IdentToken) {
if (!amPM(hr, lex.token->name)) messageBox(msg); goto finDate;
}
if (lex.get_token() == EolToken || lex.token->code == EOFToken) goto finDate;
}
messageBox(msg);
finDate:
if (!yr) {int t = (hr * 60 + mn) * 60 + ss + utcOffset; CTime x((__time64_t) t); dt = x;}
else {CTime x(yr, mm, dd, hr, mn, ss); dt = x; }
return *this;
}
bool Date::amPM(int& h, String& txt) {
if ((txt == _T("a") || txt == _T("A")) && h <= 12) return true;
if ((txt == _T("p") || txt == _T("P")) && h <= 12) {h += 12; return true;}
return false;
}
static const double secPerDay = 86400; // 60 * 60 * 24
Date::operator variant_t() {
double t = double(dt.GetTime());
variant_t v;
v.date = t / secPerDay; v.vt = VT_DATE; return v;
}
String Date::getTime() {CString s; s = dt.Format(_T("%X")); return s;}
String Date::getHHMM() {CString s; s = dt.Format(_T("%R")); return s;}
String Date::getHHMMSS() {CString s; s = dt.Format(_T("%T")); return s;}
String Date::getDate() {CString s = dt.Format(_T("%x")); return s;}
String Date::dayOfWeek() {CString s = dt.Format("%a"); return s;}
static bool updateDate = false;
void Date::onChangeDate(CEdit& ctrl) {
CString date;
int i;
int n;
String s;
int count = 0;
int slCnt = 0;
bool legal;
int mon = 0;
int day = 0;
int yr = 0;
if (!updateDate) { // To avoid infinite recursion
updateDate = true;
ctrl.GetWindowText(date); s = date;
for (i = 0, n = s.length(); i < n; i++) {
Tchar ch = s[i]; legal = false;
if (_T('0') <= ch && ch <= _T('9')) {
legal = true;
if (count || ch != _T('0')) {
if (slCnt == 0 && !vrfyMnth(count, ch, mon)) {replDtSel(i, 0, ctrl); break;}
if (slCnt == 1 && !vrfyDay( count, ch, day)) {replDtSel(i, 0, ctrl); break;}
if (slCnt == 2 && !vrfyYr( count, ch, yr)) {replDtSel(i, 0, ctrl); break;}
}
if (count > 1) {replDtSel(i, slCnt < 2 ? ch : 0, ctrl); break;}
count++;
}
if (ch == _T('/')) {
if (slCnt >= 2) {replDtSel(i, 0, ctrl); break;}
count = 0; slCnt++; legal = true;
}
if (!legal) {replDtSel(i, 0, ctrl); break;}
}
updateDate = false;
}
}
bool vrfyMnth(int cnt, TCchar ch, int& v) {v = v * cnt * 10 + ch - _T('0'); return 1 <= v && v <= 12;}
bool vrfyDay( int cnt, TCchar ch, int& v) {v = v * cnt * 10 + ch - _T('0'); return 1 <= v && v <= 31;}
bool vrfyYr( int cnt, TCchar ch, int& v) {v = v * cnt * 10 + ch - _T('0'); return 0 <= v && v <= 40;}
void replDtSel(int i, TCchar ch, CEdit& ctrl) {
bool aCh = ch != 0;
String s;
if (aCh) {s = _T('/'); s += ch;}
else {Beep(1500, 120);}
ctrl.SetSel(i, i+1); ctrl.ReplaceSel(s);
}
static bool updateTime = false;
void Date::onChangeTime(CEdit& ctrl) {
CString time;
int i;
int n;
String s;
int count = 0;
int clnCnt = 0;
bool legal;
int hr = 0;
int min = 0;
if (!updateTime) { // To avoid infinite recursion
updateTime = true;
ctrl.GetWindowText(time); s = time;
for (i = 0, n = s.length(); i < n; i++) {
Tchar ch = s[i]; legal = false;
if (_T('0') <= ch && ch <= _T('9')) {
legal = true;
if (count || ch != _T('0')) {
if (i > 4) {replTmSel(i, 0, ctrl); break;}
if (count > 1) {replTmSel(i, ch, ctrl); clnCnt++; count = 1; break; }
if ( !clnCnt && !vrfyHr( count, ch, hr)) {replTmSel(i, 0, ctrl); break;}
else if (clnCnt && !vrfyMin(count, ch, min)) {replTmSel(i, 0, ctrl); break;}
}
count++;
}
if (ch == _T(':')) {
if (clnCnt >= 1) {replTmSel(i, 0, ctrl); break;}
count = 0; clnCnt++; legal = true;
}
if (!legal) {replTmSel(i, 0, ctrl); break;}
}
updateTime = false;
}
}
bool vrfyHr( int cnt, TCchar ch, int& v) {v = v * cnt * 10 + ch - _T('0'); return v < 24;}
bool vrfyMin(int cnt, TCchar ch, int& v) {v = v * cnt * 10 + ch - _T('0'); return v < 60;}
void replTmSel(int i, TCchar ch, CEdit& ctrl) {
bool aCh = ch != 0;
String s;
if (aCh) {s = _T(':'); s += ch;}
else {Beep(1500, 120);}
ctrl.SetSel(i, i+1); ctrl.ReplaceSel(s);
}
void ToDate::convert() {
if (stg.length() < 14) return;
year = next(4);
month = next(2);
day = next(2);
hour = next(2);
min = next(2);
sec = next(2);
Date d(year, month, day, hour, min, sec); date = d;
}
int ToDate::next(int noChar) {
String s = stg.substr(pos, noChar);
uint x;
pos += noChar; return s.stoi(x);
}
| 24.886544 | 105 | 0.502969 | rrvt |
5a669cb970f23e3dc4e79c2350eaf2177bf271a6 | 36 | cpp | C++ | src/lib/universal_include.cpp | abainbridge/trex-warrior | fac95802ce7efd8dc9c50f915ce8d5891f545640 | [
"BSD-2-Clause"
] | null | null | null | src/lib/universal_include.cpp | abainbridge/trex-warrior | fac95802ce7efd8dc9c50f915ce8d5891f545640 | [
"BSD-2-Clause"
] | null | null | null | src/lib/universal_include.cpp | abainbridge/trex-warrior | fac95802ce7efd8dc9c50f915ce8d5891f545640 | [
"BSD-2-Clause"
] | null | null | null | #include "lib/universal_include.h"
| 18 | 35 | 0.777778 | abainbridge |
5a6a1c2975c6531dff0687018ae8062dd9ace258 | 1,354 | hpp | C++ | include/utility/container/helper/in_place_t.hpp | SakuraLife/utility | b9bf26198917b6dc415520f74eb3eebf8aa8195e | [
"Unlicense"
] | 2 | 2017-12-10T10:59:48.000Z | 2017-12-13T04:11:14.000Z | include/utility/container/helper/in_place_t.hpp | SakuraLife/utility | b9bf26198917b6dc415520f74eb3eebf8aa8195e | [
"Unlicense"
] | null | null | null | include/utility/container/helper/in_place_t.hpp | SakuraLife/utility | b9bf26198917b6dc415520f74eb3eebf8aa8195e | [
"Unlicense"
] | null | null | null |
#ifndef __UTILITY_CONTAINER_HELPER_IN_PLACE_T__
#define __UTILITY_CONTAINER_HELPER_IN_PLACE_T__
/**
* \file ignore_t.hpp
* \author Inochi Amaoto
*
*/
#include<utility/config/utility_config.hpp>
#include<utility/trait/trait_helper.hpp>
namespace utility
{
namespace container
{
namespace helper
{
struct in_place_t
{ explicit in_place_t() = default;};
__UTILITY_CPP17_INLINE__
constexpr in_place_t in_place{};
template<typename _T>
struct in_place_type_t
{ explicit in_place_type_t() = default;};
#ifndef __UTILITY_NO_CPP14__
template<typename _T>
__UTILITY_CPP17_INLINE__
constexpr in_place_type_t<_T> in_place_type{};
#endif // ! __UTILITY_NO_CPP14__
template<size_t _I>
struct in_place_index_t
{ explicit in_place_index_t() = default;};
#ifndef __UTILITY_NO_CPP14__
template<size_t _I>
__UTILITY_CPP17_INLINE__
constexpr in_place_index_t<_I> in_place_index{};
#endif // ! __UTILITY_NO_CPP14__
} // helper
namespace helper_traits
{
template<typename _T>
struct is_in_place_type: public trait::false_type
{ };
template<typename _T>
struct is_in_place_type<helper::in_place_type_t<_T>>: public trait::true_type
{ };
}
}
}
#endif // ! __UTILITY_CONTAINER_HELPER_IN_PLACE_T__
| 21.492063 | 84 | 0.70384 | SakuraLife |
5a6f5388a2fccc8bc1c1b26effb8ed7388b6643e | 8,267 | cpp | C++ | Source/Platform/String.cpp | Hork-Engine/Hork-Source | 1670e7b04dcfd28d6efdcae06a30c00e303be28f | [
"MIT"
] | 17 | 2022-01-31T07:43:06.000Z | 2022-03-29T10:30:25.000Z | Source/Platform/String.cpp | Hork-Engine/Hork-Source | 1670e7b04dcfd28d6efdcae06a30c00e303be28f | [
"MIT"
] | 2 | 2022-02-06T14:46:40.000Z | 2022-02-08T09:46:54.000Z | Source/Platform/String.cpp | Hork-Engine/Hork-Source | 1670e7b04dcfd28d6efdcae06a30c00e303be28f | [
"MIT"
] | 1 | 2022-02-15T08:23:23.000Z | 2022-02-15T08:23:23.000Z | /*
Hork Engine Source Code
MIT License
Copyright (C) 2017-2022 Alexander Samusev.
This file is part of the Hork Engine Source Code.
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 <Platform/String.h>
#include <Platform/Memory/Memory.h>
#define STB_SPRINTF_IMPLEMENTATION
#define STB_SPRINTF_STATIC
#include "stb_sprintf.h"
namespace Platform
{
int Stricmp(const char* _S1, const char* _S2)
{
char c1, c2;
HK_ASSERT(_S1 && _S2);
do {
c1 = *_S1++;
c2 = *_S2++;
if (c1 != c2)
{
if (c1 >= 'a' && c1 <= 'z')
{
c1 -= ('a' - 'A');
}
if (c2 >= 'a' && c2 <= 'z')
{
c2 -= ('a' - 'A');
}
if (c1 != c2)
{
return (int)((uint8_t)c1 - (uint8_t)c2);
}
}
} while (c1);
return 0;
}
int StricmpN(const char* _S1, const char* _S2, int _Num)
{
char c1, c2;
HK_ASSERT(_S1 && _S2 && _Num >= 0);
do {
if (!_Num--)
{
return 0;
}
c1 = *_S1++;
c2 = *_S2++;
if (c1 != c2)
{
if (c1 >= 'a' && c1 <= 'z')
{
c1 -= ('a' - 'A');
}
if (c2 >= 'a' && c2 <= 'z')
{
c2 -= ('a' - 'A');
}
if (c1 != c2)
{
return (int)((uint8_t)c1 - (uint8_t)c2);
}
}
} while (c1);
return 0;
}
int Strcmp(const char* _S1, const char* _S2)
{
HK_ASSERT(_S1 && _S2);
while (*_S1 == *_S2)
{
if (!*_S1)
{
return 0;
}
_S1++;
_S2++;
}
return (int)((uint8_t)*_S1 - (uint8_t)*_S2);
}
int StrcmpN(const char* _S1, const char* _S2, int _Num)
{
char c1, c2;
HK_ASSERT(_S1 && _S2 && _Num >= 0);
do {
if (!_Num--)
{
return 0;
}
c1 = *_S1++;
c2 = *_S2++;
if (c1 != c2)
{
return (int)((uint8_t)c1 - (uint8_t)c2);
}
} while (c1);
return 0;
}
int Sprintf(char* _Buffer, size_t _Size, const char* _Format, ...)
{
int result;
va_list va;
va_start(va, _Format);
result = stbsp_vsnprintf(_Buffer, _Size, _Format, va);
va_end(va);
return result;
}
int VSprintf(char* _Buffer, size_t _Size, const char* _Format, va_list _VaList)
{
HK_ASSERT(_Buffer && _Format);
return stbsp_vsnprintf(_Buffer, _Size, _Format, _VaList);
}
char* Fmt(const char* _Format, ...)
{
HK_ASSERT(_Format);
thread_local static char String[4][16384];
thread_local static int Index = 0;
va_list VaList;
Index = (Index + 1) & 3; // for nested calls
va_start(VaList, _Format);
stbsp_vsnprintf(String[Index], sizeof(String[0]), _Format, VaList);
va_end(VaList);
return String[Index];
}
void Strcat(char* _Dest, size_t _Size, const char* _Src)
{
if (!_Dest || !_Src)
{
return;
}
//#ifdef HK_COMPILER_MSVC
// strcat_s( _Dest, _Size, _Src );
//#else
size_t destLength = Strlen(_Dest);
if (destLength >= _Size)
{
return;
}
Strcpy(_Dest + destLength, _Size - destLength, _Src);
//#endif
}
void StrcatN(char* _Dest, size_t _Size, const char* _Src, int _Num)
{
if (!_Dest || !_Src)
{
return;
}
size_t destLength = Strlen(_Dest);
if (destLength >= _Size)
{
return;
}
int len = Strlen(_Src);
if (len > _Num)
{
len = _Num;
}
StrcpyN(_Dest + destLength, _Size - destLength, _Src, _Num);
}
void Strcpy(char* _Dest, size_t _Size, const char* _Src)
{
if (!_Dest)
{
return;
}
if (!_Src)
{
_Src = "";
}
//#ifdef HK_COMPILER_MSVC
// strcpy_s( _Dest, _Size, _Src );
//#else
if (_Size > 0)
{
while (*_Src && --_Size != 0)
{
*_Dest++ = *_Src++;
}
*_Dest = 0;
}
//#endif
}
void StrcpyN(char* _Dest, size_t _Size, const char* _Src, int _Num)
{
if (!_Dest)
{
return;
}
if (!_Src)
{
_Src = "";
}
//#ifdef HK_COMPILER_MSVC
// strncpy_s( _Dest, _Size, _Src, _Num );
//#else
if (_Size > 0 && _Num > 0)
{
while (*_Src && --_Size != 0 && --_Num != -1)
{
*_Dest++ = *_Src++;
}
*_Dest = 0;
}
//#endif
}
char* ToLower(char* _Str)
{
char* p = _Str;
if (p)
{
while (*p)
{
*p = ::tolower(*p);
p++;
}
}
return _Str;
}
char ToLower(char Ch)
{
return ::tolower(Ch);
}
char* ToUpper(char* _Str)
{
char* p = _Str;
if (p)
{
while (*p)
{
*p = ::toupper(*p);
p++;
}
}
return _Str;
}
char ToUpper(char Ch)
{
return ::toupper(Ch);
}
int Strlen(const char* _Str)
{
if (!_Str)
{
return 0;
}
const char* p = _Str;
while (*p)
{
p++;
}
return p - _Str;
//return (int)strlen( _Str );
}
int StrContains(const char* _String, char _Ch)
{
if (_String)
{
for (const char* s = _String; *s; s++)
{
if (*s == _Ch)
{
return s - _String;
}
}
}
return -1;
}
int Substring(const char* _Str, const char* _SubStr)
{
if (!_Str || !_SubStr)
{
return -1;
}
const char* s = strstr(_Str, _SubStr);
if (!s)
{
return -1;
}
return (int)(s - _Str);
}
int SubstringIcmp(const char* _Str, const char* _SubStr)
{
if (!_Str || !_SubStr)
{
return -1;
}
const char* s = _Str;
int length = Strlen(_SubStr);
while (*s)
{
if (StricmpN(s, _SubStr, length) == 0)
{
return (int)(s - _Str);
}
++s;
}
return -1;
}
uint32_t HexToUInt32(const char* _Str, int _Len)
{
uint32_t value = 0;
if (!_Str)
{
return 0;
}
for (int i = std::max(0, _Len - 8); i < _Len; i++)
{
uint32_t ch = _Str[i];
if (ch >= 'A' && ch <= 'F')
{
value = (value << 4) + ch - 'A' + 10;
}
else if (ch >= 'a' && ch <= 'f')
{
value = (value << 4) + ch - 'a' + 10;
}
else if (ch >= '0' && ch <= '9')
{
value = (value << 4) + ch - '0';
}
else
{
return value;
}
}
return value;
}
uint64_t HexToUInt64(const char* _Str, int _Len)
{
uint64_t value = 0;
if (!_Str)
{
return 0;
}
for (int i = std::max(0, _Len - 16); i < _Len; i++)
{
uint64_t ch = _Str[i];
if (ch >= 'A' && ch <= 'F')
{
value = (value << 4) + ch - 'A' + 10;
}
else if (ch >= 'a' && ch <= 'f')
{
value = (value << 4) + ch - 'a' + 10;
}
else if (ch >= '0' && ch <= '9')
{
value = (value << 4) + ch - '0';
}
else
{
return value;
}
}
return value;
}
} // namespace Platform
| 18.961009 | 79 | 0.477803 | Hork-Engine |
5a72682a7ae8be6fabc274a1d8efa6a2371a9390 | 96 | cpp | C++ | src/examples/06_module/02_shapes/circle.cpp | acc-cosc-1337-spring-2021/acc-cosc-1337-spring-2021-willcastl3 | 47a99259ea78662bd61a7f3390c8d59e004179e3 | [
"MIT"
] | null | null | null | src/examples/06_module/02_shapes/circle.cpp | acc-cosc-1337-spring-2021/acc-cosc-1337-spring-2021-willcastl3 | 47a99259ea78662bd61a7f3390c8d59e004179e3 | [
"MIT"
] | null | null | null | src/examples/06_module/02_shapes/circle.cpp | acc-cosc-1337-spring-2021/acc-cosc-1337-spring-2021-willcastl3 | 47a99259ea78662bd61a7f3390c8d59e004179e3 | [
"MIT"
] | 1 | 2021-05-25T20:20:15.000Z | 2021-05-25T20:20:15.000Z | //circle.cpp
#include "circle.h"
using std::cout;
void Circle::draw()
{
cout<<"Circle\n";
} | 12 | 21 | 0.625 | acc-cosc-1337-spring-2021 |
5a77c92d07cdc42e7f340155d5922230aa50d47a | 4,199 | cpp | C++ | ofxTweener/src/ofxTweener.cpp | itsukichang/vacuuuum | 9bb8605270d3da1acc6901287f9d08fc31119d87 | [
"MIT"
] | null | null | null | ofxTweener/src/ofxTweener.cpp | itsukichang/vacuuuum | 9bb8605270d3da1acc6901287f9d08fc31119d87 | [
"MIT"
] | null | null | null | ofxTweener/src/ofxTweener.cpp | itsukichang/vacuuuum | 9bb8605270d3da1acc6901287f9d08fc31119d87 | [
"MIT"
] | null | null | null | /*
* ofxTweener.cpp
* openFrameworks
*
* Created by Sander ter Braak on 26-08-10.
*
*/
#include "ofxTweener.h"
ofxTweener Tweener;
ofxTweener::ofxTweener(){
_scale = 1;
setMode(TWEENMODE_OVERRIDE);
}
void ofxTweener::addTween(float &var, float to, float time, void (^callback)(float * arg)){
addTween(var,to,time, &ofxTransitions::easeOutExpo ,0,0,false, callback);
}
void ofxTweener::addTween(float &var, float to, float time, float (ofxTransitions::*ease) (float,float,float,float), void (^callback)(float * arg)){
addTween(var,to,time,ease,0,0,false, callback);
}
void ofxTweener::addTween(float &var, float to, float time, float (ofxTransitions::*ease) (float,float,float,float), float delay, void (^callback)(float * arg)){
addTween(var,to,time,ease,delay,0,false, callback);
}
void ofxTweener::addTween(float &var, float to, float time, float (ofxTransitions::*ease) (float,float,float,float), float delay, float bezierPoint, void (^callback)(float * arg)){
addTween(var,to,time,ease,delay, bezierPoint, true, callback);
}
void ofxTweener::addTween(float &var, float to, float time, float (ofxTransitions::*ease) (float,float,float,float), float delay, float bezierPoint, bool useBezier, void (^callback)(float * arg)){
float from = var;
float _delay = delay;
Poco::Timestamp latest = 0;
for(int i = 0; i < tweens.size(); ++i){
if(tweens[i]._var == &var) {
// object already tweening, just kill the old one
if(_override){
tweens[i]._from = from;
tweens[i]._to = to;
tweens[i]._by = bezierPoint;
tweens[i]._useBezier = useBezier;
tweens[i]._easeFunction = ease;
tweens[i]._timestamp = Poco::Timestamp() + ((delay / _scale) * 1000000.0f) ;
tweens[i]._duration = (time / _scale) * 1000000.0f;
return;
}
else {
//sequence mode
if((tweens[i]._timestamp + tweens[i]._duration) > latest){
latest = (tweens[i]._timestamp + tweens[i]._duration);
delay = _delay + ((tweens[i]._duration - tweens[i]._timestamp.elapsed())/1000000.0f);
from = tweens[i]._to;
}
}
}
}
Tween t;
t._var = &var;
t._from = from;
t._to = to;
t._by = bezierPoint;
t._useBezier = useBezier;
t._easeFunction = ease;
t._timestamp = Poco::Timestamp() + ((delay / _scale) * 1000000.0f) ;
t._duration = (time / _scale) * 1000000.0f;
tweens.push_back(t);
if (callback!=NULL) callbacks[t._var] = callback;
}
void ofxTweener::update(){
for(int i = tweens.size() -1; i >= 0; --i){
if(float(tweens[i]._timestamp.elapsed()) >= float(tweens[i]._duration)){
//tween is done
bool found = false;
if(!_override){
//if not found anymore, place on exact place
for(int j = 0; j < tweens.size(); ++j){
if(tweens[j]._var == tweens[i]._var) {
found = true;
break;
}
}
}
if(!found) tweens[i]._var[0] = tweens[i]._to;
map<float *,void (^)(float * arg)>::iterator it = callbacks.find(tweens[i]._var);
if(it != callbacks.end()) {
it->second(tweens[i]._var);
callbacks.erase(it);
}
tweens.erase(tweens.begin() + i);
}
else if(float(tweens[i]._timestamp.elapsed()) > 0){
//smaller than 0 would be delayed
if(tweens[i]._useBezier) tweens[i]._var[0] = bezier(tweens[i]._from, tweens[i]._to ,(a.*tweens[i]._easeFunction )(float(tweens[i]._timestamp.elapsed()), 0, 1, float(tweens[i]._duration)), tweens[i]._by);
else tweens[i]._var[0] = (a.*tweens[i]._easeFunction )(float(tweens[i]._timestamp.elapsed()), tweens[i]._from, tweens[i]._to - tweens[i]._from, float(tweens[i]._duration));
}
}
}
void ofxTweener::removeTween(float &var){
for(int i = 0; i < tweens.size(); i++){
if(tweens[i]._var == &var) {
// tween found, erase it
tweens.erase(tweens.begin() + i);
return;
}
}
}
float ofxTweener::bezier(float b, float e, float t, float p){
return b + t*(2*(1-t)*(p-b) + t*(e - b));
}
void ofxTweener::removeAllTweens(){
tweens.clear();
}
void ofxTweener::setMode(int mode){
_override = (mode == TWEENMODE_OVERRIDE);
}
int ofxTweener::getTweenCount(){
return int(tweens.size());
}
void ofxTweener::setTimeScale(float scale){
_scale = scale;
}
| 30.208633 | 206 | 0.637056 | itsukichang |
5a7821bce812b57e30493eaad57b046a6b4320a8 | 319 | cpp | C++ | test/io.cpp | victorrseloy/JSCPP-LIVE-REPL | 941b5fd787b05e7ff18327a982b0a225ebfba70f | [
"MIT"
] | 773 | 2015-05-26T23:51:00.000Z | 2022-03-12T13:39:09.000Z | test/io.cpp | victorrseloy/JSCPP-LIVE-REPL | 941b5fd787b05e7ff18327a982b0a225ebfba70f | [
"MIT"
] | 128 | 2015-03-28T09:11:26.000Z | 2022-03-11T09:14:28.000Z | test/io.cpp | victorrseloy/JSCPP-LIVE-REPL | 941b5fd787b05e7ff18327a982b0a225ebfba70f | [
"MIT"
] | 74 | 2015-06-16T08:44:49.000Z | 2022-02-22T18:48:58.000Z | #include "iostream"
#include "iomanip"
using namespace std;
int main() {
double f = 3.14159;
cout << setprecision(5) << f << '\n';
cout << setprecision(9) << f << '\n';
cout << fixed;
cout << setprecision(5) << f << '\n';
cout << setprecision(9) << f << '\n';
cout << setw(15) << f << '\n';
return 0;
} | 22.785714 | 39 | 0.532915 | victorrseloy |
5a7bd61fb13f1c2a6333018f5dd33db02ad43053 | 345 | cpp | C++ | C++/queue/queueTest2.cpp | faber222/Aulas-Prog | 989843c5e0ede5b7a5e8fffbd4c2da80e924ffdb | [
"MIT"
] | null | null | null | C++/queue/queueTest2.cpp | faber222/Aulas-Prog | 989843c5e0ede5b7a5e8fffbd4c2da80e924ffdb | [
"MIT"
] | null | null | null | C++/queue/queueTest2.cpp | faber222/Aulas-Prog | 989843c5e0ede5b7a5e8fffbd4c2da80e924ffdb | [
"MIT"
] | null | null | null | #include <iostream>
#include <queue>
using namespace std;
int main() {
queue<int> q;
q.push(11);
while (!q.empty()) {
int x = q.front();
q.pop();
cout << x << endl;
int y = x / 2;
if (y > 1) {
if ((x % 2)) {
q.push(y - 1);
q.push(y + 1);
} else {
q.push(y);
}
}
}
} | 12.777778 | 22 | 0.402899 | faber222 |
5a7e22263a30f08d591916b4d9b50b99e85f836b | 11,581 | cpp | C++ | source/de/hackcraft/world/sub/computer/rController.cpp | DMJC/linwarrior | 50cd46660c11e58cc6fbc431a150cf55ce0dd682 | [
"Apache-2.0"
] | 23 | 2015-12-08T19:29:10.000Z | 2021-09-22T04:13:31.000Z | source/de/hackcraft/world/sub/computer/rController.cpp | DMJC/linwarrior | 50cd46660c11e58cc6fbc431a150cf55ce0dd682 | [
"Apache-2.0"
] | 7 | 2018-04-30T13:05:57.000Z | 2021-08-25T03:58:07.000Z | source/de/hackcraft/world/sub/computer/rController.cpp | DMJC/linwarrior | 50cd46660c11e58cc6fbc431a150cf55ce0dd682 | [
"Apache-2.0"
] | 4 | 2018-01-25T03:05:19.000Z | 2021-08-25T03:30:15.000Z | #include "rController.h"
#include "de/hackcraft/log/Logger.h"
#include "de/hackcraft/world/Entity.h"
#include "de/hackcraft/world/World.h"
#include "de/hackcraft/world/object/cMech.h"
#include "de/hackcraft/world/sub/weapon/rTarcom.h"
#include <cstdlib>
#include <cassert>
#include <sstream>
using std::string;
Logger* rController::logger = Logger::getLogger("de.hackcraft.world.sub.computer.rController");
std::string rController::cname = "CONTROLLER";
unsigned int rController::cid = 3637;
rController::rController(Entity* entity, bool enable) {
object = entity;
enabled = enable;
lastDisturbedBy = 0;
disturbedBy = 0;
enemyNearby = 0;
aimtarget = 0;
firetarget = false;
walktargetdist = 0.0f;
vector_zero(walktarget);
idling = false;
aimrange = 0;
walkrange = 0;
nearToDistance = 23;
debugState = !true;
debugTransitions = !true;
debugStep = !true;
}
rController::~rController() {
while (!commandStack.empty()) commandStack.pop_back();
}
void rController::doit(OID aim, float* go, bool fire, float distance) {
aimtarget = aim;
firetarget = fire;
if (go != NULL) {
vector_cpy(walktarget, go);
} else if (aimtarget == 0) {
vector_set(walktarget, float_NAN, float_NAN, float_NAN);
} else {
Entity* tgt = World::getInstance()->getObject(aimtarget);
if (tgt != NULL) {
vector_cpy(walktarget, tgt->pos0);
} else {
vector_set(walktarget, float_NAN, float_NAN, float_NAN);
}
}
walktargetdist = distance;
idling = !firetarget && (aimtarget == 0) && (go == NULL);
/*
if (!true) {
//object->do_moveFor(go);
//object->do_aimFor(aim);
object->do_aimAt();
if (go) {
object->do_moveTowards();
} else if (aim) {
object->do_moveNear();
}
if (fire) object->do_fireAt();
if (idling) object->do_idle();
}
*/
}
void rController::printState() {
int framesize = getFrameSize();
string framename = getFrameName();
logger->debug() << "CtrlSt of " << object->name.c_str() << "#" << object->oid << " Frame: " << framename << " Framesize:" << framesize << " Stack: " << commandStack.size() << "\n";
}
string rController::getFrameName() {
//cout << "getFrameName()\n";
const char* names[] = {
"WAIT", "ATTACK", "FOLLOW", "GOTO", "REPEAT",
"NOSTATENAME"
};
unsigned int i = commandStack.back();
i = (i < OPCODE_MAX) ? i : OPCODE_MAX - 1;
string s = string(names[i]);
return s;
};
unsigned int rController::getFrameSizeOf(int opcode) {
switch (opcode) {
case WAIT: return 3;
case ATTACK: return 2;
case FOLLOW: return 3;
case GOTO: return 5;
case REPEAT: return 2;
default: return 2;
}
}
unsigned int rController::getFrameSize() {
return getFrameSizeOf(commandStack.back());
}
OID rController::getParameter(int offset) {
return commandStack[commandStack.size() - offset - 1];
}
void rController::setParameter(int offset, OID value) {
commandStack[commandStack.size() - offset - 1] = value;
}
void rController::push(OID value) {
commandStack.push_back(value);
}
void rController::pop(std::string reason) {
if (debugTransitions) {
logger->debug() << object->name.c_str() << "#" << object->oid << ".pop(" << reason << ")\n";
}
int size = getFrameSize(); // Important: eval outside loop-condition!
for (int i = 0; i < size; i++) {
commandStack.pop_back();
}
if (debugTransitions) {
printState();
}
}
void rController::animate(float spf) {
if (debugState) logger->debug() << "cController::process()\n";
if (!active || !enabled || object == NULL) return;
if (commandStack.empty()) pushWaitEvent();
if (debugStep) printState();
switch (commandStack.back()) {
case WAIT: waitEvent();
break;
case ATTACK: attackEnemy();
break;
case FOLLOW: followLeader();
break;
case GOTO: gotoDestination();
break;
case REPEAT: repeatInstructions();
break;
default: logger->error() << "Invalid Instruction Request!\n";
break;
}
if (debugStep) {
logger->debug() << "=> ";
printState();
}
}
// -------------------------------------------------------------
void rController::pushWaitEvent(long mseconds, bool patrol) {
push(patrol);
push(mseconds);
push(WAIT);
}
void rController::waitEvent() {
//OID opcode = getParameter(0);
long mseconds = getParameter(1);
bool patrol = getParameter(2);
{
this->doit(0, NULL, false);
}
if (patrol) {
OID enemy = 0;
if (enemy == 0 && lastDisturbedBy != disturbedBy) {
// Ignore next time - probably destroyed.
// FIXME: Find better solution to prevent jumpy/locked behavior.
lastDisturbedBy = disturbedBy;
enemy = disturbedBy;
//cout << "DISTURBER !!!!!!!!!!!!!\n";
}
if (enemy == 0) {
enemy = enemyNearby;
if (enemy != 0) {
//cout << "INTRUDER !!!!!!!!!!!!!\n";
}
}
if (enemy) {
{
OID self = object->oid;
std::stringstream s;
s << self << ": Intruder!\n";
//World::getInstance()->sendMessage(0, self, 0, "DEBUG", s.str());
}
this->doit(enemy, NULL, false, nearToDistance);
pushAttackEnemy(enemy);
}
}
if (mseconds > 0) {
mseconds -= 1000 / 40;
setParameter(1, mseconds);
if (mseconds <= 0) {
pop("Timeout for wait was reached.");
return;
}
}
}
// -------------------------------------------------------------
void rController::pushAttackEnemy(OID entity) {
if (debugTransitions) {
logger->debug() << object->name.c_str() << "#" << object->oid << ".pushAttackEnemy( " << entity << " )\n";
}
{
//OID self = mDevice->mSerial;
//World::getInstance()->sendMessage("@%llu: All ur base belongs to us.\n", entity);
}
push(entity);
push(ATTACK);
}
void rController::attackEnemy() {
//OID opcode = getParameter(0);
OID entity = getParameter(1);
{
//((cMech*)mDevice)->Pattern(tf, "nrnlln");
this->doit(entity, NULL, aimrange < 50.0f, nearToDistance);
}
// FIXME: Depends on Mech/tarcom.
//cMech* mech = (cMech*) object;
if (disturbedBy != 0 && disturbedBy != entity) {
pop("Changing target (disturbed by another)");
pushAttackEnemy(disturbedBy);
return;
}
//Entity* target = World::getInstance()->getObject(entity);
rTarget* target = WeaponSystem::getInstance()->findTargetByEntity(entity);
rTarcom* tarcom = WeaponSystem::getInstance()->findTarcomByEntity(this->object->oid);
if (target == NULL) {
this->doit(0, NULL, false);
pop("Target disappeared (removed from world: fragged).");
return;
} else if (tarcom == NULL) {
this->doit(0, NULL, false);
pop("Tarcom disappeared (removed from world: fragged).");
return;
//} else if (!mech->tarcom->isEnemy(&target->tags)) { // TODO: Change dependency.
} else if (!target->isEnemy(tarcom)) {
this->doit(0, NULL, false);
pop("Not an enemy anymore (maybe dead or not interesting anymore).");
return;
} else if (aimrange > 60.0f && disturbedBy == 0) {
this->doit(0, NULL, false);
pop("Target is out of targeting range.");
return;
}
}
// -------------------------------------------------------------
void rController::pushFollowLeader(OID entity, bool patrol) {
if (debugTransitions) {
logger->debug() << object->name.c_str() << "#" << object->oid << ".pushFollowLeader( " << entity << ", " << patrol << " )\n";
}
push(patrol ? 1 : 0);
push(entity);
push(FOLLOW);
}
void rController::followLeader() {
//OID opcode = getParameter(0);
OID entity = getParameter(1);
OID patrol = getParameter(2);
{
this->doit(entity, NULL, false, nearToDistance);
}
if (patrol) {
OID nearby = enemyNearby; //controlledDevice->enemyNearby();
if (nearby) {
this->doit(nearby, NULL, false, nearToDistance);
pushAttackEnemy(nearby);
return;
}
}
}
// -------------------------------------------------------------
void rController::pushGotoDestination(float* v, bool patrol) {
if (v == NULL) return;
if (debugTransitions) {
logger->debug() << object->name.c_str() << "#" << object->oid << ".pushGotoDestination( <" << v[0] << "," << v[1] << "," << v[2] << ">, " << patrol << " )\n";
}
unsigned long *p = (unsigned long*) v;
push(patrol ? !0 : 0);
push(p[2]);
push(p[1]);
push(p[0]);
push(GOTO);
}
void rController::gotoDestination() {
//OID opcode = getParameter(0);
OID v0 = getParameter(1);
OID v1 = getParameter(2);
OID v2 = getParameter(3);
OID patrol = getParameter(4);
// Store data in integer array that really holds binary float data.
unsigned long p[] = {
(unsigned long) v0, (unsigned long) v1, (unsigned long) v2
};
// Now re-interprete as a float array.
float* v = (float*) ((void*) p);
{
if (debugState) logger->debug() << "going " << ((patrol > 0) ? "patrolling" : "directly") << " to <" << v[0] << "," << v[1] << "," << v[2] << " >\n";
float* u = new float[3];
vector_set(u, v[0], v[1], v[2]);
this->doit(0, u, false);
delete[] u;
}
float range = walkrange;
if (debugState) logger->debug() << "DestinationRange " << range << "\n";
if (range < 8.0f) {
this->doit(0, NULL, false);
pop("Destination was reached (within destination range).");
return;
}
if (patrol) {
OID nearby = enemyNearby;
if (nearby) {
this->doit(nearby, NULL, false, nearToDistance);
pushAttackEnemy(nearby);
return;
}
}
}
// -------------------------------------------------------------
void rController::pushRepeatInstructions(int n) {
if (debugTransitions) {
logger->debug() << object->name.c_str() << "#" << object->oid << ".pushRepeatInstructions( " << n << " )\n";
}
push(n);
push(REPEAT);
}
void rController::repeatInstructions() {
OID opcode = getParameter(0);
OID n = getParameter(1);
if (debugState) {
printState();
}
unsigned int first = getFrameSize();
if (debugState) logger->debug() << "first " << first << " -> opcode " << opcode << "\n";
unsigned int last = first;
for (int i = 0; i < (int) n; i++) {
int opcode = getParameter(last);
last += getFrameSizeOf(opcode);
if (debugState) logger->debug() << "last " << last << " -> opcode " << opcode << "\n";
}
int size = last - first;
if (debugState) logger->debug() << size << " = " << last << " - " << first << "\n";
for (int i = 0; i < size; i++) {
push(getParameter(last - 1));
}
}
| 24.640426 | 187 | 0.528711 | DMJC |
5a8379011405bdc4d048a92c93eb0001eb3e44e7 | 1,756 | cpp | C++ | Logger.cpp | alonf/UniversalACRemote | 6d4bb6e475a5f71e264a4b48a757ae182df796aa | [
"MIT"
] | 1 | 2019-12-26T01:11:30.000Z | 2019-12-26T01:11:30.000Z | Logger.cpp | alonf/UniversalACRemote | 6d4bb6e475a5f71e264a4b48a757ae182df796aa | [
"MIT"
] | 1 | 2020-12-06T12:55:01.000Z | 2020-12-06T12:55:01.000Z | Logger.cpp | alonf/UniversalACRemote | 6d4bb6e475a5f71e264a4b48a757ae182df796aa | [
"MIT"
] | null | null | null | #include "Logger.h"
using namespace std;
Logger::Logger(int redLedPin, int greenLedPin, int baudRate /*= 115200*/): _ledsLogger(LedsLogger::Create(redLedPin, greenLedPin))
{
Serial.begin(baudRate);
Serial.setDebugOutput(true);
}
void Logger::OnCommand(const String &commandName, int commandId) const
{
Serial.println(commandName + " command recieved");
_ledsLogger->BlinkGreen(commandId, 250);
}
void Logger::WriteErrorMessage(const String& message, int blinks) const
{
Serial.println(message.c_str());
_ledsLogger->BlinkRed(blinks, 500);
}
void Logger::OnWiFiStatusChanged(const ConnectionStatus& status) const
{
if (status.IsAccessPointModeOn())
{
if (status.IsJustConnected())
{
_ledsLogger->SetRed(1);
_ledsLogger->SetGreen(1);
}
if (status.IsJustDissconnected())
{
_ledsLogger->BlinkGreen(1000000, 150);
_ledsLogger->BlinkRed(1000000, 150);
}
return;
}
if (status.IsJustConnected())
{
Serial.println(status.Message().c_str());
Serial.print("IP address: ");
Serial.println(status.LocalIP());
}
_ledsLogger->SetGreen(status.IsConnected() ? HIGH : LOW);
_ledsLogger->SetRed(status.IsConnected() ? LOW : HIGH);
if (status.IsConnected())
{
_ledsLogger->BlinkIpAddress(status.LocalIP());
}
else
{
_ledsLogger->BlinkRed(3 + status.WifiCode(), 250);
}
}
void Logger::OnLongButtonPressDetection() const
{
_ledsLogger->BlinkGreen(1000, 40);
_ledsLogger->BlinkRed(1000, 40);
}
void Logger::OnVeryLongButtonPressDetection() const
{
_ledsLogger->BlinkGreen(10000, 20);
_ledsLogger->BlinkRed(10000, 20);
}
void Logger::WriteMessage(const String& message)
{
Serial.println(message.c_str());
}
void Logger::TestLeds() const
{
_ledsLogger->BlinkGreen(3, 100);
_ledsLogger->BlinkRed(3, 100);
}
| 21.679012 | 130 | 0.723235 | alonf |
5a870fd79cf4d1010645b3db87f9e3820b60be81 | 392 | cpp | C++ | 1451/a.cpp | vladshablinsky/algo | 815392708d00dc8d3159b4866599de64fa9d34fa | [
"MIT"
] | 1 | 2021-10-24T00:46:37.000Z | 2021-10-24T00:46:37.000Z | 1451/a.cpp | vladshablinsky/algo | 815392708d00dc8d3159b4866599de64fa9d34fa | [
"MIT"
] | null | null | null | 1451/a.cpp | vladshablinsky/algo | 815392708d00dc8d3159b4866599de64fa9d34fa | [
"MIT"
] | null | null | null | #include <iostream>
#include <cstdio>
using namespace std;
int solve_x(int x) {
if (x == 1) {
return 0;
} else if (x == 2) {
return 1;
} else if (x & 1) {
return 1 + solve_x(x - 1);
} else {
return 2;
}
}
int solve() {
int n;
scanf("%d", &n);
return solve_x(n);
}
int main() {
int t;
scanf("%d", &t);
while (t--) {
printf("%d\n", solve());
}
}
| 12.645161 | 30 | 0.484694 | vladshablinsky |
5a9035c976299f8f74d6b077936d00b2cef53368 | 7,932 | hpp | C++ | shared/dumps/UnityEngine_GameObject.hpp | zoller27osu/beatsaber-hook | 83a4bb55ed8b2f9e4c977877bc1b0601fed36f39 | [
"MIT"
] | 1 | 2020-04-22T07:37:13.000Z | 2020-04-22T07:37:13.000Z | shared/dumps/UnityEngine_GameObject.hpp | zoller27osu/beatsaber-hook | 83a4bb55ed8b2f9e4c977877bc1b0601fed36f39 | [
"MIT"
] | null | null | null | shared/dumps/UnityEngine_GameObject.hpp | zoller27osu/beatsaber-hook | 83a4bb55ed8b2f9e4c977877bc1b0601fed36f39 | [
"MIT"
] | null | null | null | #ifndef UnityEngine_GameObject_DEFINED
#define UnityEngine_GameObject_DEFINED
// This .hpp file was compiled via beatsaber-hook/shared/helper.py's Parse Mode.
// Created by Sc2ad.
// Methods may not be valid!
#include <dlfcn.h>
#include <string_view>
#include "../utils/typedefs.h"
#include "../utils/il2cpp-functions.hpp"
#include "../utils/il2cpp-utils.hpp"
// Contains MethodInfo/Il2CppClass data for: UnityEngine.GameObject
namespace UnityEngine_GameObject {
// UnityEngine.GameObject
typedef struct Class : Il2CppObject {
} Class;
static bool __cached = false;
static Il2CppClass* klass;
static const MethodInfo* CreatePrimitive_PrimitiveType;
static const MethodInfo* GetComponent_generic;
static const MethodInfo* GetComponent_Type;
static const MethodInfo* GetComponentFastPath_Type_IntPtr;
static const MethodInfo* GetComponentByName_string;
static const MethodInfo* GetComponent_string;
static const MethodInfo* GetComponentInChildren_Type_bool;
static const MethodInfo* GetComponentInChildren_Type;
static const MethodInfo* GetComponentInChildren_generic;
static const MethodInfo* GetComponentInChildren_bool_generic;
static const MethodInfo* GetComponentInParent_Type;
static const MethodInfo* GetComponentsInternal_Type_bool_bool_bool_bool_object;
static const MethodInfo* GetComponents_Type;
static const MethodInfo* GetComponents;
static const MethodInfo* GetComponents_List1;
static const MethodInfo* GetComponentsInChildren_Type_bool;
static const MethodInfo* GetComponentsInChildren_bool;
static const MethodInfo* GetComponentsInChildren_bool_List1;
static const MethodInfo* GetComponentsInChildren;
static const MethodInfo* GetComponentsInParent_Type_bool;
static const MethodInfo* GetComponentsInParent_bool_List1;
static const MethodInfo* GetComponentsInParent_bool;
static const MethodInfo* Internal_AddComponentWithType_Type;
static const MethodInfo* AddComponent_Type;
static const MethodInfo* AddComponent_generic;
static const MethodInfo* get_transform;
static const MethodInfo* get_layer;
static const MethodInfo* set_layer;
static const MethodInfo* SetActive_bool;
static const MethodInfo* get_activeSelf;
static const MethodInfo* get_activeInHierarchy;
static const MethodInfo* get_tag;
static const MethodInfo* set_tag;
static const MethodInfo* FindGameObjectsWithTag_string;
static const MethodInfo* SendMessage_string_object_SendMessageOptions;
static const MethodInfo* BroadcastMessage_string_object_SendMessageOptions;
static const MethodInfo* Internal_CreateGameObject_GameObject_string;
static const MethodInfo* Find_string;
static const MethodInfo* get_scene;
static const MethodInfo* get_gameObject;
static const MethodInfo* get_scene_Injected_out_Scene;
// The Initialization function that must be called before using any of these definitions
static void Init() {
if (!__cached) {
klass = il2cpp_utils::GetClassFromName("UnityEngine", "GameObject");
CreatePrimitive_PrimitiveType = il2cpp_functions::class_get_method_from_name(klass, "CreatePrimitive", 1);
GetComponent_generic = il2cpp_functions::class_get_method_from_name(klass, "GetComponent", 0);
GetComponent_Type = il2cpp_functions::class_get_method_from_name(klass, "GetComponent", 1);
GetComponentFastPath_Type_IntPtr = il2cpp_functions::class_get_method_from_name(klass, "GetComponentFastPath", 2);
GetComponentByName_string = il2cpp_functions::class_get_method_from_name(klass, "GetComponentByName", 1);
GetComponent_string = il2cpp_functions::class_get_method_from_name(klass, "GetComponent", 1);
GetComponentInChildren_Type_bool = il2cpp_functions::class_get_method_from_name(klass, "GetComponentInChildren", 2);
GetComponentInChildren_Type = il2cpp_functions::class_get_method_from_name(klass, "GetComponentInChildren", 1);
GetComponentInChildren_generic = il2cpp_functions::class_get_method_from_name(klass, "GetComponentInChildren", 0);
GetComponentInChildren_bool_generic = il2cpp_functions::class_get_method_from_name(klass, "GetComponentInChildren", 1);
GetComponentInParent_Type = il2cpp_functions::class_get_method_from_name(klass, "GetComponentInParent", 1);
GetComponentsInternal_Type_bool_bool_bool_bool_object = il2cpp_functions::class_get_method_from_name(klass, "GetComponentsInternal", 6);
GetComponents_Type = il2cpp_functions::class_get_method_from_name(klass, "GetComponents", 1);
GetComponents = il2cpp_functions::class_get_method_from_name(klass, "GetComponents", 0);
GetComponents_List1 = il2cpp_functions::class_get_method_from_name(klass, "GetComponents", 1);
GetComponentsInChildren_Type_bool = il2cpp_functions::class_get_method_from_name(klass, "GetComponentsInChildren", 2);
GetComponentsInChildren_bool = il2cpp_functions::class_get_method_from_name(klass, "GetComponentsInChildren", 1);
GetComponentsInChildren_bool_List1 = il2cpp_functions::class_get_method_from_name(klass, "GetComponentsInChildren", 2);
GetComponentsInChildren = il2cpp_functions::class_get_method_from_name(klass, "GetComponentsInChildren", 0);
GetComponentsInParent_Type_bool = il2cpp_functions::class_get_method_from_name(klass, "GetComponentsInParent", 2);
GetComponentsInParent_bool_List1 = il2cpp_functions::class_get_method_from_name(klass, "GetComponentsInParent", 2);
GetComponentsInParent_bool = il2cpp_functions::class_get_method_from_name(klass, "GetComponentsInParent", 1);
Internal_AddComponentWithType_Type = il2cpp_functions::class_get_method_from_name(klass, "Internal_AddComponentWithType", 1);
AddComponent_Type = il2cpp_functions::class_get_method_from_name(klass, "AddComponent", 1);
AddComponent_generic = il2cpp_functions::class_get_method_from_name(klass, "AddComponent", 0);
get_transform = il2cpp_functions::class_get_method_from_name(klass, "get_transform", 0);
get_layer = il2cpp_functions::class_get_method_from_name(klass, "get_layer", 0);
set_layer = il2cpp_functions::class_get_method_from_name(klass, "set_layer", 1);
SetActive_bool = il2cpp_functions::class_get_method_from_name(klass, "SetActive", 1);
get_activeSelf = il2cpp_functions::class_get_method_from_name(klass, "get_activeSelf", 0);
get_activeInHierarchy = il2cpp_functions::class_get_method_from_name(klass, "get_activeInHierarchy", 0);
get_tag = il2cpp_functions::class_get_method_from_name(klass, "get_tag", 0);
set_tag = il2cpp_functions::class_get_method_from_name(klass, "set_tag", 1);
FindGameObjectsWithTag_string = il2cpp_functions::class_get_method_from_name(klass, "FindGameObjectsWithTag", 1);
SendMessage_string_object_SendMessageOptions = il2cpp_functions::class_get_method_from_name(klass, "SendMessage", 3);
BroadcastMessage_string_object_SendMessageOptions = il2cpp_functions::class_get_method_from_name(klass, "BroadcastMessage", 3);
Internal_CreateGameObject_GameObject_string = il2cpp_functions::class_get_method_from_name(klass, "Internal_CreateGameObject", 2);
Find_string = il2cpp_functions::class_get_method_from_name(klass, "Find", 1);
get_scene = il2cpp_functions::class_get_method_from_name(klass, "get_scene", 0);
get_gameObject = il2cpp_functions::class_get_method_from_name(klass, "get_gameObject", 0);
get_scene_Injected_out_Scene = il2cpp_functions::class_get_method_from_name(klass, "get_scene_Injected", 1);
__cached = true;
}
}
}
#endif /* UnityEngine_GameObject_DEFINED */ | 73.444444 | 148 | 0.775466 | zoller27osu |
5aa0f5a538f4ade6671944c5a38053e19c403cf2 | 12,382 | tpp | C++ | src/sdm/core/joint.tpp | SDMStudio/sdms | 43a86973081ffd86c091aed69b332f0087f59361 | [
"MIT"
] | null | null | null | src/sdm/core/joint.tpp | SDMStudio/sdms | 43a86973081ffd86c091aed69b332f0087f59361 | [
"MIT"
] | null | null | null | src/sdm/core/joint.tpp | SDMStudio/sdms | 43a86973081ffd86c091aed69b332f0087f59361 | [
"MIT"
] | null | null | null |
#define DEFINE_JOINT(CLASS) \
/* This macro allow to define a specific joint on std::shared_ptr<CLASS> that inherites from CLASS. */ \
template <> \
class Joint<std::shared_ptr<CLASS>> : public CLASS, public std::vector<std::shared_ptr<CLASS>>, public Function<number, std::shared_ptr<CLASS>> \
{ \
public: \
using value_type = std::shared_ptr<CLASS>; \
\
Joint() {} \
Joint(std::size_t size) : std::vector<std::shared_ptr<CLASS>>(size) {} \
Joint(std::size_t size, std::shared_ptr<CLASS> default_value) : std::vector<std::shared_ptr<CLASS>>(size, default_value) {} \
Joint(const std::vector<std::shared_ptr<CLASS>> &joint_item) : std::vector<std::shared_ptr<CLASS>>(joint_item) {} \
Joint(const std::vector<number> &, const std::vector<std::shared_ptr<CLASS>> &joint_item) : std::vector<std::shared_ptr<CLASS>>(joint_item) {} \
Joint(std::initializer_list<std::shared_ptr<CLASS>> list_values) : std::vector<std::shared_ptr<CLASS>>(list_values) {} \
\
const std::shared_ptr<CLASS> &get(const number &index) const \
{ \
return this->at(index); \
} \
\
number getNumAgents() const \
{ \
return this->size(); \
} \
\
template <typename TOutput> \
std::shared_ptr<Joint<std::shared_ptr<TOutput>>> toJoint() \
{ \
auto joint_output = std::make_shared<Joint<std::shared_ptr<TOutput>>>(); \
\
for (const auto &item : *this) \
{ \
joint_output->push_back(std::static_pointer_cast<TOutput>(item)); \
} \
\
return joint_output; \
} \
\
std::shared_ptr<CLASS> operator()(const number &i) \
{ \
return (*this)[i]; \
} \
\
std::string str() const \
{ \
std::ostringstream res; \
res << "[" << this->getNumAgents() << "]("; \
if (this->getNumAgents() > 0) \
{ \
number ag; \
for (ag = 0; ag < this->getNumAgents() - 1; ++ag) \
{ \
res << this->get(ag)->str() << ", "; \
} \
res << this->get(ag)->str(); \
} \
res << ")"; \
return res.str(); \
} \
friend std::ostream &operator<<(std::ostream &os, const Joint<std::shared_ptr<CLASS>> &joint_action) \
{ \
os << joint_action.str(); \
return os; \
} \
};
namespace sdm
{
// Specialisation for the Joint Action
DEFINE_JOINT(Item);
// Specialisation for the Joint Action
DEFINE_JOINT(Action);
// Specialisation for the Joint State
DEFINE_JOINT(State);
// Specialisation for the Joint Observation
DEFINE_JOINT(Observation);
template <typename T>
Joint<T>::Joint() {}
template <typename T>
Joint<T>::Joint(std::size_t size) : std::vector<T>(size) {}
template <typename T>
Joint<T>::Joint(std::size_t size, T default_value) : std::vector<T>(size, default_value) {}
template <typename T>
Joint<T>::Joint(const std::vector<T> &joint_item) : std::vector<T>(joint_item) {}
template <typename T>
Joint<T>::Joint(const std::vector<number> &, const std::vector<T> &joint_item) : std::vector<T>(joint_item) {}
template <typename T>
Joint<T>::Joint(std::initializer_list<T> list_values) : std::vector<T>(list_values) {}
template <typename T>
Joint<T>::~Joint() {}
template <typename T>
const T &Joint<T>::get(const number &index) const
{
return this->at(index);
}
template <typename T>
number Joint<T>::getNumAgents() const
{
return this->size();
}
template <typename T>
template <typename TOutput>
std::shared_ptr<Joint<std::shared_ptr<TOutput>>> Joint<T>::toJoint()
{
auto joint_output = std::make_shared<Joint<std::shared_ptr<TOutput>>>();
for (const auto &item : *this)
{
joint_output->push_back(std::static_pointer_cast<TOutput>(item));
}
return joint_output;
}
template <typename T>
T Joint<T>::operator()(const number &i)
{
return (*this)[i];
}
template <typename T>
std::string Joint<T>::str() const
{
std::ostringstream res;
res << "[" << this->getNumAgents() << "](";
if (this->getNumAgents() > 0)
{
number ag;
for (ag = 0; ag < this->getNumAgents() - 1; ++ag)
{
res << this->get(ag) << ", ";
}
res << this->get(ag);
}
res << ")";
return res.str();
}
} // namespace sdm
namespace std
{
template <typename T>
struct hash<sdm::Joint<T>>
{
typedef sdm::Joint<T> argument_type;
typedef std::size_t result_type;
result_type operator()(argument_type const &in) const
{
return std::hash<std::vector<T>>()(in);
}
};
} | 73.702381 | 194 | 0.220966 | SDMStudio |
5aa87fe1c04f1ac8be1528f7d60a790f841cc03d | 1,330 | cpp | C++ | xenon/src/xenon/core/asset.cpp | Neathan/Xenon | d376337dd086ac8ccb84cbaf97b6537ad6dda8a4 | [
"MIT"
] | 1 | 2021-09-21T23:37:22.000Z | 2021-09-21T23:37:22.000Z | xenon/src/xenon/core/asset.cpp | Neathan/Xenon | d376337dd086ac8ccb84cbaf97b6537ad6dda8a4 | [
"MIT"
] | null | null | null | xenon/src/xenon/core/asset.cpp | Neathan/Xenon | d376337dd086ac8ccb84cbaf97b6537ad6dda8a4 | [
"MIT"
] | null | null | null | #include "asset.h"
#include "xenon/core/log.h"
namespace xe {
void copyAssetMetaRuntimeData(const Asset* source, Asset* target) {
target->metadata.handle = source->metadata.handle;
target->metadata.type = source->metadata.type;
target->metadata.path = source->metadata.path;
target->runtimeData.loaded = source->runtimeData.loaded;
target->runtimeData.parent = source->runtimeData.parent;
target->runtimeData.filename = source->runtimeData.filename;
target->runtimeData.extension = source->runtimeData.extension;
}
AssetType getAssetTypeFromPath(const std::string& path) {
auto index = path.find_last_of('.');
if (index != std::string::npos) {
std::string extension = path.substr(index + 1);
// Images
if (extension == "png") return AssetType::Texture;
if (extension == "jpg") return AssetType::Texture;
if (extension == "jpeg") return AssetType::Texture;
if (extension == "tga") return AssetType::Texture;
if (extension == "bmp") return AssetType::Texture;
if (extension == "psd") return AssetType::Texture;
if (extension == "ktx") return AssetType::Texture;
// Models
if (extension == "glb") return AssetType::Model;
if (extension == "gltf") return AssetType::Model;
}
XE_LOG_TRACE_F("ASSET: No extension match for: {}", path);
return AssetType::None;
}
}
| 32.439024 | 68 | 0.696241 | Neathan |
5aab948085ff5abeee86e7106a25b873fbf0d801 | 5,641 | cc | C++ | src/outlinerdebug.cc | jariarkko/cave-outliner | 2077a24627881f45a27aec3eb4e5b4855f6b7fec | [
"BSD-3-Clause"
] | 4 | 2021-09-02T16:52:23.000Z | 2022-02-07T16:39:50.000Z | src/outlinerdebug.cc | jariarkko/cave-outliner | 2077a24627881f45a27aec3eb4e5b4855f6b7fec | [
"BSD-3-Clause"
] | 87 | 2021-09-12T06:09:57.000Z | 2022-02-15T00:05:43.000Z | src/outlinerdebug.cc | jariarkko/cave-outliner | 2077a24627881f45a27aec3eb4e5b4855f6b7fec | [
"BSD-3-Clause"
] | 1 | 2021-09-28T21:38:30.000Z | 2021-09-28T21:38:30.000Z | ///////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
//
// CCC AAA V V EEEEE OOO UU UU TTTTTT LL II NN NN EEEEE RRRRR
// CC CC AA AA V V EE OO OO UU UU TT LL II NNN NN EE RR RR
// CC AA AA V V EEE OO OO UU UU TT LL II NN N NN EEE RRRRR
// CC CC AAAAAA V V EE OO OO UU UU TT LL II NN NNN EE RR R
// CCc AA AA V EEEEE OOO UUUUU TT LLLLL II NN NN EEEEE RR R
//
// CAVE OUTLINER -- Cave 3D model processing software
//
// Copyright (C) 2021 by Jari Arkko -- See LICENSE.txt for license information.
//
///////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
// Includes ///////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
#include <stdarg.h>
#include <cassert>
#include <string.h>
#include <stdlib.h>
#include <iostream>
#include "outlinertypes.hh"
#include "outlinerconstants.hh"
#include "outlinerdebug.hh"
///////////////////////////////////////////////////////////////////////////////////////////////
// Local variables ////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
static bool info = 0;
static bool debug = 0;
static bool deepdebug = 0;
static bool deepdeepdebug = 0;
///////////////////////////////////////////////////////////////////////////////////////////////
// Initialization /////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
void
debuginit(bool infoSet,
bool debugSet,
bool deepdebugSet,
bool deepdeepdebugSet) {
info = infoSet;
debug = debugSet;
deepdebug = deepdebugSet;
deepdeepdebug = deepdeepdebugSet;
}
///////////////////////////////////////////////////////////////////////////////////////////////
// Debug and output functions /////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
__attribute__((__format__ (__printf__, 1, 0)))
void
debugf(const char* format, ...) {
assert(format != 0);
if (debug) {
va_list args;
char buf[500];
memset(buf,0,sizeof(buf));
va_start (args, format);
vsnprintf(buf,sizeof(buf)-1,format,args);
va_end (args);
std::cerr << OUTLINER_DEBUGPREFIX;
std::cerr << buf;
std::cerr << "\n";
std::cerr.flush();
}
}
__attribute__((__format__ (__printf__, 1, 0)))
void
deepdebugf(const char* format, ...) {
assert(format != 0);
if (deepdebug) {
va_list args;
char buf[500];
memset(buf,0,sizeof(buf));
va_start (args, format);
vsnprintf(buf,sizeof(buf)-1,format,args);
va_end (args);
std::cerr << OUTLINER_DEBUGPREFIX;
std::cerr << buf;
std::cerr << "\n";
std::cerr.flush();
}
}
__attribute__((__format__ (__printf__, 1, 0)))
void
deepdeepdebugf(const char* format, ...) {
assert(format != 0);
if (deepdeepdebug) {
va_list args;
char buf[500];
memset(buf,0,sizeof(buf));
va_start (args, format);
vsnprintf(buf,sizeof(buf)-1,format,args);
va_end (args);
std::cerr << OUTLINER_DEBUGPREFIX;
std::cerr << buf;
std::cerr << "\n";
std::cerr.flush();
}
}
__attribute__((__format__ (__printf__, 1, 0)))
void
warnf(const char* format, ...) {
assert(format != 0);
va_list args;
char buf[500];
memset(buf,0,sizeof(buf));
va_start (args, format);
vsnprintf(buf,sizeof(buf)-1,format,args);
va_end (args);
std::cerr << OUTLINER_WARNPREFIX;
std::cerr << buf;
std::cerr << " -- exit\n";
std::cerr.flush();
}
__attribute__((__format__ (__printf__, 1, 0)))
void
errf(const char* format, ...) {
assert(format != 0);
va_list args;
char buf[500];
memset(buf,0,sizeof(buf));
va_start (args, format);
vsnprintf(buf,sizeof(buf)-1,format,args);
va_end (args);
std::cerr << OUTLINER_ERRPREFIX;
std::cerr << buf;
std::cerr << " -- exit\n";
std::cerr.flush();
}
__attribute__((__format__ (__printf__, 1, 0)))
void
fatalf(const char* format, ...) {
assert(format != 0);
va_list args;
char buf[500];
memset(buf,0,sizeof(buf));
va_start (args, format);
vsnprintf(buf,sizeof(buf)-1,format,args);
va_end (args);
std::cerr << OUTLINER_ERRPREFIX;
std::cerr << buf;
std::cerr << " -- exit\n";
std::cerr.flush();
exit(1);
}
__attribute__((__format__ (__printf__, 1, 0)))
void
infof(const char* format, ...) {
assert(format != 0);
if (info) {
va_list args;
char buf[500];
memset(buf,0,sizeof(buf));
va_start (args, format);
vsnprintf(buf,sizeof(buf)-1,format,args);
va_end (args);
std::cout << OUTLINER_INFOPREFIX;
std::cout << buf;
std::cout << "\n";
std::cout.flush();
}
}
| 27.120192 | 95 | 0.423329 | jariarkko |
5aad100adabbe634edb18b10d83f62667ad7bed0 | 478 | cpp | C++ | tests/memory_resource/memory_resource_mini.cpp | olegpublicprofile/stdfwd | 19671bcc8e53bd4c008f07656eaf25a22495e093 | [
"MIT"
] | 11 | 2021-03-15T07:06:21.000Z | 2021-09-27T13:54:25.000Z | tests/memory_resource/memory_resource_mini.cpp | olegpublicprofile/stdfwd | 19671bcc8e53bd4c008f07656eaf25a22495e093 | [
"MIT"
] | null | null | null | tests/memory_resource/memory_resource_mini.cpp | olegpublicprofile/stdfwd | 19671bcc8e53bd4c008f07656eaf25a22495e093 | [
"MIT"
] | 1 | 2021-06-24T10:46:46.000Z | 2021-06-24T10:46:46.000Z | #include "tests/memory_resource/memory_resource_mini.hpp"
#include "tests/memory_resource/memory_resource_fwd.hpp"
//------------------------------------------------------------------------------
namespace memory_resource_tests {
//------------------------------------------------------------------------------
void run_mini()
{
TestClass testObj;
int i = testObj.getInt();
(void)i;
}
//------------------------------------------------------------------------------
}
| 22.761905 | 80 | 0.374477 | olegpublicprofile |
5ab002f951bce3ed0377049fe0cc750d48f79d99 | 4,303 | ipp | C++ | src/lib/diagrams/bdd_manager_creator.ipp | MichalMrena/DecisionDiagrams | e2e9b949405bd2c1c93ba32c151b60a78620afec | [
"MIT"
] | 1 | 2022-03-17T12:55:30.000Z | 2022-03-17T12:55:30.000Z | src/lib/diagrams/bdd_manager_creator.ipp | MichalMrena/DecisionDiagrams | e2e9b949405bd2c1c93ba32c151b60a78620afec | [
"MIT"
] | null | null | null | src/lib/diagrams/bdd_manager_creator.ipp | MichalMrena/DecisionDiagrams | e2e9b949405bd2c1c93ba32c151b60a78620afec | [
"MIT"
] | null | null | null | #ifndef MIX_DD_bdd_manager_HPP
#include "../bdd_manager.hpp"
#endif
namespace teddy
{
template<class VertexData, class ArcData>
auto bdd_manager<VertexData, ArcData>::variable_not
(index_t const i) -> bdd_t
{
return this->negate(this->variable(i));
}
template<class VertexData, class ArcData>
auto bdd_manager<VertexData, ArcData>::operator()
(index_t const i, NOT) -> bdd_t
{
return this->variable_not(i);
}
template<class VertexData, class ArcData>
auto bdd_manager<VertexData, ArcData>::variables
(std::vector<bool_var> const& vars) -> std::vector<bdd_t>
{
return utils::fmap(vars, [this](auto const var)
{
return var.complemented ? this->variable_not(var.index)
: this->variable(var.index);
});
}
template<class VertexData, class ArcData>
auto bdd_manager<VertexData, ArcData>::product
(std::vector<bool_var> const& vars) -> bdd_t
{
return this->product(std::begin(vars), std::end(vars));
}
template<class VertexData, class ArcData>
auto bdd_manager<VertexData, ArcData>::product
(bool_cube const& cube) -> bdd_t
{
auto const varCount = cube.size();
auto const falseLeaf = base::manager_.terminal_vertex(0);
auto const trueLeaf = base::manager_.terminal_vertex(1);
auto index = static_cast<index_t>(varCount - 1);
while (index != static_cast<index_t>(-1) && cube.get(index) > 1)
{
--index;
}
if (index == static_cast<index_t>(-1))
{
return this->constant(0);
}
auto prevVertex = 0 == cube.get(index)
? base::manager_.internal_vertex(index, {trueLeaf, falseLeaf})
: base::manager_.internal_vertex(index, {falseLeaf, trueLeaf});
while (index > 0)
{
--index;
auto const val = cube.get(index);
if (val > 1)
{
continue;
}
prevVertex = 0 == val
? base::manager_.internal_vertex(index, {prevVertex, falseLeaf})
: base::manager_.internal_vertex(index, {falseLeaf, prevVertex});
}
return bdd_t {prevVertex};
}
template<class VertexData, class ArcData>
auto bdd_manager<VertexData, ArcData>::from_pla
(pla_file const& file, fold_e const mm) -> std::vector<bdd_t>
{
auto const& plaLines = file.get_lines();
auto const lineCount = file.line_count();
auto const functionCount = file.function_count();
// Create a diagram for each function.
auto functionDiagrams = utils::vector<bdd_t>(functionCount);
for (auto fi = 0u; fi < functionCount; ++fi)
{
// First create a diagram for each product.
auto productDiagrams = utils::vector<bdd_t>(lineCount);
for (auto li = 0u; li < lineCount; ++li)
{
// We are doing SOP so we are only interested in functions with value 1.
if (plaLines[li].fVals.get(fi) == 1)
{
productDiagrams.emplace_back(this->product(plaLines[li].cube));
}
}
// In this case we just have a constant function.
if (productDiagrams.empty())
{
productDiagrams.emplace_back(this->constant(0));
}
// Then merge products using OR.
functionDiagrams.emplace_back(this->or_merge(productDiagrams, mm));
}
return functionDiagrams;
}
template<class VertexData, class ArcData>
auto bdd_manager<VertexData, ArcData>::or_merge
(std::vector<bdd_t>& diagrams, fold_e mm) -> bdd_t
{
switch (mm)
{
case fold_e::tree:
return this->template tree_fold<OR>(std::begin(diagrams), std::end(diagrams));
case fold_e::left:
return this->template left_fold<OR>(std::begin(diagrams), std::end(diagrams));
default:
throw std::runtime_error("Non-exhaustive enum switch.");
}
}
} | 33.617188 | 94 | 0.558912 | MichalMrena |
5ab5452484bd28924f5702f898a4fabeb8873687 | 1,590 | cpp | C++ | graph-source-code/350-E/4644199.cpp | AmrARaouf/algorithm-detection | 59f3028d2298804870b32729415d71eec6116557 | [
"MIT"
] | null | null | null | graph-source-code/350-E/4644199.cpp | AmrARaouf/algorithm-detection | 59f3028d2298804870b32729415d71eec6116557 | [
"MIT"
] | null | null | null | graph-source-code/350-E/4644199.cpp | AmrARaouf/algorithm-detection | 59f3028d2298804870b32729415d71eec6116557 | [
"MIT"
] | null | null | null | //Language: GNU C++
#include <stdio.h>
#include <iostream>
#include <string.h>
#include <stdlib.h>
#include <time.h>
#define abs(a) (((a)>0)?(a):(-(a)))
#define max(a, b) (((a)>(b))?(a):(b))
#define min(a, b) (((a)<(b))?(a):(b))
#define N 303
#define oo int(1e9)
#define eps 1e-8
using namespace std;
bool g[N][N], cl[N];
int main()
{
// freopen("input.txt", "r", stdin);
int n, m, k, i, j, c, u, v, v1, v2;
cin >> n >> m >> k;
for(i=0; i<N; ++i)
cl[i] = 0;
for(i=0; i<N; ++i)
for(j=0; j<N; ++j)
g[i][j] = 0;
v1 = v2 = -1;
for(i=0; i<k; ++i)
{
cin >> c;
cl[--c] = 1;
if(v1 == -1)
v1 = c;
else if(v2 == -1)
v2 = c;
}
v = 0;
while(v<n && cl[v])
++v;
if(v == n)
{
cout << -1 << endl;
return 0;
}
g[v][v2] = g[v2][v] = 1;
--m;
for(i=0; i<n; ++i)
{
if((i == v1) || (i == v2)) continue;
g[v1][i] = g[i][v1] = 1;
--m;
}
if(m<0)
{
cout << -1 << endl;
return 0;
}
for(i=0; (i<n) && m; ++i)
for(j=i+1; (j<n) && m; ++j)
{
if(cl[i] && cl[j] && ( (v2 == i) || (v2 == j)))
continue;
if(g[i][j])
continue;
g[i][j] = 1;
--m;
}
if(m)
{
cout << -1 << endl;
return 0;
}
for(i=0; i<n; ++i)
for(j=i+1; j<n; ++j)
if(g[i][j])
cout << i+1 << " " << j+1 << endl;
return 0;
}
| 15.588235 | 59 | 0.330189 | AmrARaouf |
5ab7c41752f47e96c7046a5f0bef21e0a5476634 | 3,475 | cpp | C++ | source/AnimationPlayer.cpp | sindney/nest3d-cpp | 033575364c14a48499ddbb0cbf489b7e72b0d9b7 | [
"MIT"
] | 2 | 2018-01-11T13:00:14.000Z | 2018-01-12T02:02:16.000Z | source/AnimationPlayer.cpp | sindney/nest3d-cpp | 033575364c14a48499ddbb0cbf489b7e72b0d9b7 | [
"MIT"
] | null | null | null | source/AnimationPlayer.cpp | sindney/nest3d-cpp | 033575364c14a48499ddbb0cbf489b7e72b0d9b7 | [
"MIT"
] | null | null | null | #include <iterator>
#include "AnimationPlayer.h"
namespace nest
{
using namespace std;
void AnimationPlayer::advanceTime(float dt)
{
time += dt;
int i, j = poses.size();
PoseData *pose = NULL;
AnimationChannel *channel = NULL;
vector<QuatKeyFrame>::iterator k;
QuatKeyFrame *quatFirst = NULL, *quatSecond = NULL;
vector<Vec3KeyFrame>::iterator l;
Vec3KeyFrame *vec3First = NULL, *vec3Second = NULL;
Quaternion q0, q1;
Vector4 v0, v1;
float current = 0.0f, ratio = 0.0f, size = 0.0f;
current = time * clip->ticksPerSecond * speed;
size = clip->duration;
if(clip->loop || current <= size)
{
// calculate the right time.
while(current > size) current -= size;
// trigger events
AnimationEvent event(current);
dispatch(&event);
// traverse the clip.
for(i = 0; i < j; i++)
{
pose = &poses[i];
channel = clip->channels[i];
// position keyframes
if(channel->positionKeys.size() == 1)
{
vec3First = &channel->positionKeys[channel->positionKeys.size() - 1];
pose->position.x = vec3First->x;
pose->position.y = vec3First->y;
pose->position.z = vec3First->z;
}
else
{
l = channel->positionKeys.begin();
while(true)
{
if(l == channel->positionKeys.end()) break;
vec3First = &*l++;
vec3Second = &*l;
if(vec3First-> t <= current && vec3Second->t >= current)
{
ratio = (current - vec3First->t) / (vec3Second->t - vec3First->t);
v0.x = vec3First->x; v0.y = vec3First->y; v0.z = vec3First->z;
v1.x = vec3Second->x; v1.y = vec3Second->y; v1.z = vec3Second->z;
v0 = v0 + (v1 - v0) * ratio;
pose->position = v0;
break;
}
}
}
// rotation keyframes
if(channel->rotationKeys.size() == 1)
{
quatFirst = &channel->rotationKeys[channel->rotationKeys.size() - 1];
pose->rotation.x = quatFirst->x;
pose->rotation.y = quatFirst->y;
pose->rotation.z = quatFirst->z;
pose->rotation.w = quatFirst->w;
}
else
{
k = channel->rotationKeys.begin();
while(true)
{
if(k == channel->rotationKeys.end()) break;
quatFirst = &*k++;
quatSecond = &*k;
if(quatFirst->t <= current && quatSecond->t >= current)
{
ratio = (current - quatFirst->t) / (quatSecond->t - quatFirst->t);
q0.x = quatFirst->x; q0.y = quatFirst->y; q0.z = quatFirst->z; q0.w = quatFirst->w;
q1.x = quatSecond->x; q1.y = quatSecond->y; q1.z = quatSecond->z; q1.w = quatSecond->w;
pose->rotation = Quaternion::slerp(q0, q1, ratio);
break;
}
}
}
// scaling keyframes
if(channel->scalingKeys.size() == 1)
{
vec3First = &channel->scalingKeys[channel->scalingKeys.size() - 1];
pose->scaling.x = vec3First->x;
pose->scaling.y = vec3First->y;
pose->scaling.z = vec3First->z;
}
else
{
l = channel->scalingKeys.begin();
while(true)
{
if(l == channel->scalingKeys.end()) break;
vec3First = &*l++;
vec3Second = &*l;
if(vec3First-> t <= current && vec3Second->t >= current)
{
ratio = (current - vec3First->t) / (vec3Second->t - vec3First->t);
v0.x = vec3First->x; v0.y = vec3First->y; v0.z = vec3First->z;
v1.x = vec3Second->x; v1.y = vec3Second->y; v1.z = vec3Second->z;
v0 = v0 + (v1 - v0) * ratio;
pose->scaling = v0;
break;
}
}
}
}
}
}
} | 27.579365 | 94 | 0.565755 | sindney |
5ac1a14ceb5b36616b777529e204a4532891459e | 13,823 | cpp | C++ | src/graphics/bloomFFT.cpp | liuhongyi0101/SaturnRender | c6ec7ee39ef14749b09be4ae47f76613c71533cf | [
"MIT"
] | 2 | 2019-12-24T04:00:36.000Z | 2022-01-26T02:44:04.000Z | src/graphics/bloomFFT.cpp | liuhongyi0101/SaturnRender | c6ec7ee39ef14749b09be4ae47f76613c71533cf | [
"MIT"
] | null | null | null | src/graphics/bloomFFT.cpp | liuhongyi0101/SaturnRender | c6ec7ee39ef14749b09be4ae47f76613c71533cf | [
"MIT"
] | 2 | 2020-09-26T04:19:40.000Z | 2021-02-19T07:24:57.000Z | #include "graphics/bloomFFT.h"
#include "utils/loadshader.h"
BloomFFT::BloomFFT(vks::VulkanDevice * vulkanDevice)
{
this->vulkanDevice = vulkanDevice;
this->device = vulkanDevice->logicalDevice;
}
BloomFFT::~BloomFFT()
{
}
// Find and create a compute capable device queue
void BloomFFT::getComputeQueue()
{
uint32_t queueFamilyCount;
vkGetPhysicalDeviceQueueFamilyProperties(vulkanDevice->physicalDevice, &queueFamilyCount, NULL);
assert(queueFamilyCount >= 1);
std::vector<VkQueueFamilyProperties> queueFamilyProperties;
queueFamilyProperties.resize(queueFamilyCount);
vkGetPhysicalDeviceQueueFamilyProperties(vulkanDevice->physicalDevice, &queueFamilyCount, queueFamilyProperties.data());
// Some devices have dedicated compute queues, so we first try to find a queue that supports compute and not graphics
bool computeQueueFound = false;
for (uint32_t i = 0; i < static_cast<uint32_t>(queueFamilyProperties.size()); i++)
{
if ((queueFamilyProperties[i].queueFlags & VK_QUEUE_COMPUTE_BIT) && ((queueFamilyProperties[i].queueFlags & VK_QUEUE_GRAPHICS_BIT) == 0))
{
compute.queueFamilyIndex = i;
computeQueueFound = true;
break;
}
}
// If there is no dedicated compute queue, just find the first queue family that supports compute
if (!computeQueueFound)
{
for (uint32_t i = 0; i < static_cast<uint32_t>(queueFamilyProperties.size()); i++)
{
if (queueFamilyProperties[i].queueFlags & VK_QUEUE_COMPUTE_BIT)
{
compute.queueFamilyIndex = i;
computeQueueFound = true;
break;
}
}
}
// Compute is mandatory in Vulkan, so there must be at least one queue family that supports compute
assert(computeQueueFound);
// Get a compute queue from the device
vkGetDeviceQueue(device, compute.queueFamilyIndex, 0, &compute.queue);
}
// Prepare a texture target that is used to store compute shader calculations
void BloomFFT::prepareTextureTarget( uint32_t width, uint32_t height, VkCommandPool &cmdPool,VkQueue queue)
{
createUniformBuffers(queue);
// Prepare blit target texture
textureComputeTarget.width = width;
textureComputeTarget.height = height;
VkImageCreateInfo imageCreateInfo = vks::initializers::imageCreateInfo();
imageCreateInfo.imageType = VK_IMAGE_TYPE_2D;
imageCreateInfo.format = VK_FORMAT_R8G8B8A8_UNORM;
imageCreateInfo.extent = { width, height, 1 };
imageCreateInfo.mipLevels = 1;
imageCreateInfo.arrayLayers = 1;
imageCreateInfo.samples = VK_SAMPLE_COUNT_1_BIT;
imageCreateInfo.tiling = VK_IMAGE_TILING_OPTIMAL;
// Image will be sampled in the fragment shader and used as storage target in the compute shader
imageCreateInfo.usage = VK_IMAGE_USAGE_SAMPLED_BIT | VK_IMAGE_USAGE_STORAGE_BIT;
imageCreateInfo.flags = 0;
// Sharing mode exclusive means that ownership of the image does not need to be explicitly transferred between the compute and graphics queue
imageCreateInfo.sharingMode = VK_SHARING_MODE_EXCLUSIVE;
VkMemoryAllocateInfo memAllocInfo = vks::initializers::memoryAllocateInfo();
VkMemoryRequirements memReqs;
VK_CHECK_RESULT(vkCreateImage(device, &imageCreateInfo, nullptr, &textureComputeTarget.image));
vkGetImageMemoryRequirements(device, textureComputeTarget.image, &memReqs);
memAllocInfo.allocationSize = memReqs.size;
memAllocInfo.memoryTypeIndex = vulkanDevice->getMemoryType(memReqs.memoryTypeBits, VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT);
VK_CHECK_RESULT(vkAllocateMemory(device, &memAllocInfo, nullptr, &textureComputeTarget.deviceMemory));
VK_CHECK_RESULT(vkBindImageMemory(device, textureComputeTarget.image, textureComputeTarget.deviceMemory, 0));
VkCommandBuffer layoutCmd = createCommandBuffer(VK_COMMAND_BUFFER_LEVEL_PRIMARY, true, cmdPool);
textureComputeTarget.imageLayout = VK_IMAGE_LAYOUT_GENERAL;
vks::tools::setImageLayout(
layoutCmd, textureComputeTarget.image,
VK_IMAGE_ASPECT_COLOR_BIT,
VK_IMAGE_LAYOUT_UNDEFINED,
textureComputeTarget.imageLayout);
flushCommandBuffer(layoutCmd, queue, true, cmdPool);
// Create sampler
VkSamplerCreateInfo sampler = vks::initializers::samplerCreateInfo();
sampler.magFilter = VK_FILTER_LINEAR;
sampler.minFilter = VK_FILTER_LINEAR;
sampler.mipmapMode = VK_SAMPLER_MIPMAP_MODE_LINEAR;
sampler.addressModeU = VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_BORDER;
sampler.addressModeV = sampler.addressModeU;
sampler.addressModeW = sampler.addressModeU;
sampler.mipLodBias = 0.0f;
sampler.maxAnisotropy = 1.0f;
sampler.compareOp = VK_COMPARE_OP_NEVER;
sampler.minLod = 0.0f;
sampler.maxLod =static_cast<float>(textureComputeTarget.mipLevels);
sampler.borderColor = VK_BORDER_COLOR_FLOAT_OPAQUE_WHITE;
VK_CHECK_RESULT(vkCreateSampler(device, &sampler, nullptr, &textureComputeTarget.sampler));
// Create image view
VkImageViewCreateInfo view = vks::initializers::imageViewCreateInfo();
view.image = VK_NULL_HANDLE;
view.viewType = VK_IMAGE_VIEW_TYPE_2D;
view.format = VK_FORMAT_R8G8B8A8_UNORM;
view.components = { VK_COMPONENT_SWIZZLE_R, VK_COMPONENT_SWIZZLE_G, VK_COMPONENT_SWIZZLE_B, VK_COMPONENT_SWIZZLE_A };
view.subresourceRange = { VK_IMAGE_ASPECT_COLOR_BIT, 0, 1, 0, 1 };
view.image = textureComputeTarget.image;
VK_CHECK_RESULT(vkCreateImageView(device, &view, nullptr, &textureComputeTarget.view));
// Initialize a descriptor for later use
textureComputeTarget.descriptor.imageLayout = textureComputeTarget.imageLayout;
textureComputeTarget.descriptor.imageView = textureComputeTarget.view;
textureComputeTarget.descriptor.sampler = textureComputeTarget.sampler;
textureComputeTarget.device = vulkanDevice;
// Prepare blit target texture
textureComputeTargetOut.width = width;
textureComputeTargetOut.height = height;
VK_CHECK_RESULT(vkCreateImage(device, &imageCreateInfo, nullptr, &textureComputeTargetOut.image));
vkGetImageMemoryRequirements(device, textureComputeTargetOut.image, &memReqs);
memAllocInfo.allocationSize = memReqs.size;
memAllocInfo.memoryTypeIndex = vulkanDevice->getMemoryType(memReqs.memoryTypeBits, VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT);
VK_CHECK_RESULT(vkAllocateMemory(device, &memAllocInfo, nullptr, &textureComputeTargetOut.deviceMemory));
VK_CHECK_RESULT(vkBindImageMemory(device, textureComputeTargetOut.image, textureComputeTargetOut.deviceMemory, 0));
layoutCmd = createCommandBuffer(VK_COMMAND_BUFFER_LEVEL_PRIMARY, true, cmdPool);
textureComputeTargetOut.imageLayout = VK_IMAGE_LAYOUT_GENERAL;
vks::tools::setImageLayout(
layoutCmd, textureComputeTargetOut.image,
VK_IMAGE_ASPECT_COLOR_BIT,
VK_IMAGE_LAYOUT_UNDEFINED,
textureComputeTargetOut.imageLayout);
flushCommandBuffer(layoutCmd, queue, true, cmdPool);
sampler.maxLod = static_cast<float>(textureComputeTargetOut.mipLevels);
VK_CHECK_RESULT(vkCreateSampler(device, &sampler, nullptr, &textureComputeTargetOut.sampler));
view.image = textureComputeTargetOut.image;
VK_CHECK_RESULT(vkCreateImageView(device, &view, nullptr, &textureComputeTargetOut.view));
// Initialize a descriptor for later use
textureComputeTargetOut.descriptor.imageLayout = textureComputeTargetOut.imageLayout;
textureComputeTargetOut.descriptor.imageView = textureComputeTargetOut.view;
textureComputeTargetOut.descriptor.sampler = textureComputeTargetOut.sampler;
textureComputeTarget.device = vulkanDevice;
}
void BloomFFT::createUniformBuffers(VkQueue queue)
{
// Scene matrices
vulkanDevice->createBuffer(
VK_BUFFER_USAGE_UNIFORM_BUFFER_BIT,
VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT,
&uniformBuffers,
sizeof(uboParams));
updateUniformBuffer(1);
}void BloomFFT::updateUniformBuffer(int direction)
{
uboParams.direction = 1;
uboParams.scale = 2.5;
uboParams.strength = 1.0;
VK_CHECK_RESULT(uniformBuffers.map());
uniformBuffers.copyTo(&uboParams, sizeof(uboParams));
uniformBuffers.unmap();
}
void BloomFFT::prepareCompute(VkDescriptorPool &descriptorPool, VkDescriptorImageInfo &texDescriptor)
{
getComputeQueue();
// Create compute pipeline
// Compute pipelines are created separate from graphics pipelines even if they use the same queue
std::vector<VkDescriptorSetLayoutBinding> setLayoutBindings = {
// Binding 0: Input image (read-only)
vks::initializers::descriptorSetLayoutBinding(VK_DESCRIPTOR_TYPE_STORAGE_IMAGE, VK_SHADER_STAGE_COMPUTE_BIT, 0),
// Binding 1: Output image (write)
vks::initializers::descriptorSetLayoutBinding(VK_DESCRIPTOR_TYPE_STORAGE_IMAGE, VK_SHADER_STAGE_COMPUTE_BIT, 1),
vks::initializers::descriptorSetLayoutBinding(VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER, VK_SHADER_STAGE_COMPUTE_BIT, 2),
};
VkDescriptorSetLayoutCreateInfo descriptorLayout = vks::initializers::descriptorSetLayoutCreateInfo(setLayoutBindings);
VK_CHECK_RESULT(vkCreateDescriptorSetLayout(device, &descriptorLayout, nullptr, &compute.descriptorSetLayout));
VkPipelineLayoutCreateInfo pPipelineLayoutCreateInfo =
vks::initializers::pipelineLayoutCreateInfo(&compute.descriptorSetLayout, 1);
VkPushConstantRange pushConstantRange =
vks::initializers::pushConstantRange(
VK_SHADER_STAGE_VERTEX_BIT,
sizeof(uboParams),
0);
pPipelineLayoutCreateInfo.pushConstantRangeCount = 1;
pPipelineLayoutCreateInfo.pPushConstantRanges = &pushConstantRange;
VK_CHECK_RESULT(vkCreatePipelineLayout(device, &pPipelineLayoutCreateInfo, nullptr, &compute.pipelineLayout));
VkDescriptorSetAllocateInfo allocInfo =
vks::initializers::descriptorSetAllocateInfo(descriptorPool, &compute.descriptorSetLayout, 1);
VK_CHECK_RESULT(vkAllocateDescriptorSets(device, &allocInfo, &compute.descriptorSet));
std::vector<VkWriteDescriptorSet> computeWriteDescriptorSets = {
vks::initializers::writeDescriptorSet(compute.descriptorSet, VK_DESCRIPTOR_TYPE_STORAGE_IMAGE, 0, &texDescriptor),
vks::initializers::writeDescriptorSet(compute.descriptorSet, VK_DESCRIPTOR_TYPE_STORAGE_IMAGE, 1, &textureComputeTarget.descriptor),
vks::initializers::writeDescriptorSet(compute.descriptorSet, VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER, 2, &uniformBuffers.descriptor)
};
vkUpdateDescriptorSets(device, static_cast<uint32_t>(computeWriteDescriptorSets.size()), computeWriteDescriptorSets.data(), 0, NULL);
VK_CHECK_RESULT(vkAllocateDescriptorSets(device, &allocInfo, &compute.descriptorSetOut));
std::vector<VkWriteDescriptorSet> computeWriteDescriptorSetsOut = {
vks::initializers::writeDescriptorSet(compute.descriptorSetOut, VK_DESCRIPTOR_TYPE_STORAGE_IMAGE, 0, &textureComputeTarget.descriptor),
vks::initializers::writeDescriptorSet(compute.descriptorSetOut, VK_DESCRIPTOR_TYPE_STORAGE_IMAGE, 1, &textureComputeTargetOut.descriptor),
vks::initializers::writeDescriptorSet(compute.descriptorSetOut, VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER, 2, &uniformBuffers.descriptor)
};
vkUpdateDescriptorSets(device, static_cast<uint32_t>(computeWriteDescriptorSetsOut.size()), computeWriteDescriptorSetsOut.data(), 0, NULL);
// Create compute shader pipelines
VkComputePipelineCreateInfo computePipelineCreateInfo =
vks::initializers::computePipelineCreateInfo(compute.pipelineLayout, 0);
std::string fileName = getAssetPath + "computeshader/gaussianBlur.comp.spv";
computePipelineCreateInfo.stage = loadShader(fileName, VK_SHADER_STAGE_COMPUTE_BIT, device, shaderModules);
VkPipeline pipeline;
VK_CHECK_RESULT(vkCreateComputePipelines(device, 0, 1, &computePipelineCreateInfo, nullptr, &pipeline));
compute.pipelines.push_back(pipeline);
// Separate command pool as queue family for compute may be different than graphics
VkCommandPoolCreateInfo cmdPoolInfo = {};
cmdPoolInfo.sType = VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO;
cmdPoolInfo.queueFamilyIndex = compute.queueFamilyIndex;
cmdPoolInfo.flags = VK_COMMAND_POOL_CREATE_RESET_COMMAND_BUFFER_BIT;
VK_CHECK_RESULT(vkCreateCommandPool(device, &cmdPoolInfo, nullptr, &compute.commandPool));
// Create a command buffer for compute operations
VkCommandBufferAllocateInfo cmdBufAllocateInfo =
vks::initializers::commandBufferAllocateInfo(
compute.commandPool,
VK_COMMAND_BUFFER_LEVEL_PRIMARY,
1);
VK_CHECK_RESULT(vkAllocateCommandBuffers(device, &cmdBufAllocateInfo, &compute.commandBuffer));
// Fence for compute CB sync
VkFenceCreateInfo fenceCreateInfo = vks::initializers::fenceCreateInfo(VK_FENCE_CREATE_SIGNALED_BIT);
VK_CHECK_RESULT(vkCreateFence(device, &fenceCreateInfo, nullptr, &compute.fence));
// Build a single command buffer containing the compute dispatch commands
//buildComputeCommandBuffer();
}
void BloomFFT::buildComputeCommandBuffer()
{
// Flush the queue if we're rebuilding the command buffer after a pipeline change to ensure it's not currently in use
vkQueueWaitIdle(compute.queue);
VkCommandBufferBeginInfo cmdBufInfo = vks::initializers::commandBufferBeginInfo();
VK_CHECK_RESULT(vkBeginCommandBuffer(compute.commandBuffer, &cmdBufInfo));
uboParams.direction = 1;
uboParams.scale = 4.5;
uboParams.strength = 1.0;
vkCmdPushConstants(
compute.commandBuffer,
compute.pipelineLayout,
VK_SHADER_STAGE_COMPUTE_BIT,
0,
sizeof(uboParams),
&uboParams);
vkCmdBindPipeline(compute.commandBuffer, VK_PIPELINE_BIND_POINT_COMPUTE, compute.pipelines[compute.pipelineIndex]);
vkCmdBindDescriptorSets(compute.commandBuffer, VK_PIPELINE_BIND_POINT_COMPUTE, compute.pipelineLayout, 0, 1, &compute.descriptorSet, 0, 0);
vkCmdDispatch(compute.commandBuffer, textureComputeTarget.width / 16, textureComputeTarget.height / 16, 1);
uboParams.direction = 0;
vkCmdPushConstants(
compute.commandBuffer,
compute.pipelineLayout,
VK_SHADER_STAGE_COMPUTE_BIT,
0,
sizeof(uboParams),
&uboParams);
vkCmdBindDescriptorSets(compute.commandBuffer, VK_PIPELINE_BIND_POINT_COMPUTE, compute.pipelineLayout, 0, 1, &compute.descriptorSetOut, 0, 0);
vkCmdDispatch(compute.commandBuffer, textureComputeTarget.width / 16, textureComputeTarget.height / 16, 1);
vkEndCommandBuffer(compute.commandBuffer);
} | 43.196875 | 143 | 0.818419 | liuhongyi0101 |
5ac3f2e8ad5d7b8f0836af365f2c48061ba84948 | 604 | cpp | C++ | InterviewBit/Tree Data Structure/TwoSumBinaryTree.cpp | Code-With-Aagam/competitive-programming | 610520cc396fb13a03c606b5fb6739cfd68cc444 | [
"MIT"
] | 2 | 2022-02-08T12:37:41.000Z | 2022-03-09T03:48:56.000Z | InterviewBit/Tree Data Structure/TwoSumBinaryTree.cpp | ShubhamJagtap2000/competitive-programming-1 | 3a9a2e3dd08f8fa8ab823f295cd020d08d3bff84 | [
"MIT"
] | null | null | null | InterviewBit/Tree Data Structure/TwoSumBinaryTree.cpp | ShubhamJagtap2000/competitive-programming-1 | 3a9a2e3dd08f8fa8ab823f295cd020d08d3bff84 | [
"MIT"
] | 2 | 2021-01-23T14:35:48.000Z | 2021-03-15T05:04:24.000Z | /**
* Definition for binary tree
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
void inorder(TreeNode *root, vector<int> &arr) {
if (root == NULL) {
return;
}
inorder(root->left, arr);
arr.push_back(root->val);
inorder(root->right, arr);
}
int Solution::t2Sum(TreeNode *root, int k) {
vector<int> arr;
inorder(root, arr);
int lo = 0, hi = arr.size() - 1;
while (lo < hi) {
int curr = arr[lo] + arr[hi];
if (curr == k) {
return 1;
}
curr < k ? lo++ : hi--;
}
return 0;
}
| 18.30303 | 59 | 0.559603 | Code-With-Aagam |
5ac525f8af8438fdc1a9aa2dfa5bfd4d703a8344 | 4,474 | cpp | C++ | src/Jogo/Fases/FaseMontanha.cpp | MatheusKunnen/Jogo-TecProg | 66f4320e51e42d12da74e487cc8552377ce865bb | [
"MIT"
] | null | null | null | src/Jogo/Fases/FaseMontanha.cpp | MatheusKunnen/Jogo-TecProg | 66f4320e51e42d12da74e487cc8552377ce865bb | [
"MIT"
] | null | null | null | src/Jogo/Fases/FaseMontanha.cpp | MatheusKunnen/Jogo-TecProg | 66f4320e51e42d12da74e487cc8552377ce865bb | [
"MIT"
] | null | null | null | //
// FaseMontanha.cpp
// Jogo-SFML
//
// Created by Matheus Kunnen Ledesma on 11/10/19.
// Copyright © 2019 Matheus Kunnen Ledesma. All rights reserved.
//
#include "FaseMontanha.hpp"
namespace Game { namespace Fases {
// Const
const string FaseMontanha::CONFIG_FILE("Resources/config/fase_b_config.json");
// Constructor && Destructor
FaseMontanha::FaseMontanha(Jogador* jogador_a, Jogador* jogador_b):
Fase(ID::fase_montanha, FaseMontanha::CONFIG_FILE, jogador_a, jogador_b)
{
}
FaseMontanha::~FaseMontanha(){
this->l_entidades.clear();
}
// Init Methods
void FaseMontanha::initInimigos() {
Inimigo* desmatador = nullptr;
const vector<Vector2f>& lista = this->parametros.getListaPosInimigos();
for (Vector2f pos : lista){
if (rand() % 10 > 3){
desmatador = new Narcotraficante(pos, &this->textures.get(Resources::Textures::narcotraficante), this->jogador_a, this->jogador_b, this);
this->l_entidades += desmatador;
this->g_colisoes += desmatador;
}
}
}
void FaseMontanha::initObstaculos() {
Obstaculo* obstaculo = nullptr;
const vector<Vector2f>& lista = this->parametros.getListaPosObstaculos();
for (Vector2f pos : lista){
if (rand() % 10 > 3) {
if (rand() % 2 == 1)
obstaculo = new Pedra(pos, &this->textures.get(Resources::Textures::pedra));
else
obstaculo = new Espinho(pos, &this->textures.get(Resources::Textures::espinhos));
Vector2f ppos = obstaculo->getPosition();
ppos.y -= obstaculo->getGlobalBounds().height;
obstaculo->setPosition(ppos);
this->l_entidades+= obstaculo;
this->g_colisoes += obstaculo;
}
}
}
void FaseMontanha::initBoss(){
Inimigo* inimigo = new NarcotraficanteDesmatador(this->parametros.getPosBoss(), &this->textures.get(Resources::Textures::narcotraficante_desmatador), this->jogador_a, this->jogador_b, this);
this->l_entidades+= inimigo;
this->g_colisoes += inimigo;
}
void FaseMontanha::onSavedFase() {
// Inicia posicao jogadores
vector<Vector2f> l_pos = this->salvadora.getPositions(Entidades::ID::jogador);
this->jogador_a->setPosition(l_pos[0]);
this->jogador_a->setNumVidas(this->salvadora.getVidaJogador(1));
if (this->jogador_b && l_pos.size() > 1){
this->jogador_b->setPosition(l_pos[1]);
this->jogador_b->setNumVidas(this->salvadora.getVidaJogador(2));
}
l_pos = this->salvadora.getPositions(Entidades::ID::boss);
for(Vector2f pos : l_pos)
this->addEntidade(new NarcotraficanteDesmatador(pos, &this->textures.get(Resources::Textures::narcotraficante), this->jogador_a, this->jogador_b, this));
l_pos = this->salvadora.getPositions(Entidades::ID::narcotraficante);
for(Vector2f pos : l_pos)
this->addEntidade(new Narcotraficante(pos, &this->textures.get(Resources::Textures::narcotraficante), this->jogador_a, this->jogador_b, this));
l_pos = this->salvadora.getPositions(Entidades::ID::espinhos);
for(Vector2f pos : l_pos)
this->addEntidade(new Espinho(pos, &this->textures.get(Resources::Textures::espinhos)));
l_pos = this->salvadora.getPositions(Entidades::ID::pedra);
for(Vector2f pos : l_pos)
this->addEntidade(new Pedra(pos, &this->textures.get(Resources::Textures::planta_venenosa)));
}
// Methods
void FaseMontanha::onInitFase(Jogador* jogador_a, Jogador* jogador_b, FaseEventHandler* event_handler){
// Agrega mapa
this->l_entidades.add(&mapa);
// Atualiza ponteiros de jogadores
this->jogador_a = jogador_a;
this->jogador_b = jogador_b;
// Inicia jogadores
this->initJogadores();
// Carrega salvadora
this->salvadora.load();
if (!this->salvadora.isSavedFase()){
// Inicia boss
this->initBoss();
// Inicia Obstaculos
this->initObstaculos();
// Inicia Inimigos
this->initInimigos();
// Muda estado
this->salvadora.setSavedFase(true);
} else {
this->onSavedFase();
}
// Retorna o mapa a sua posicao inicial
this->mapa.reset();
// Atualiza EventHandler
this->setEventHandler(event_handler);
// Adapta View para resolucoes maiores
GerenciadorGrafico::getInstance()->moveView(0, - (GerenciadorGrafico::getInstance()->getView()->getSize().y - this->mapa.getHeight()));
}
}}
| 35.507937 | 194 | 0.660483 | MatheusKunnen |
5ac62f82592e415ee827d5189293c7f3233b15a7 | 165 | cpp | C++ | codeforces/617A.cpp | cosmicray001/Online_judge_Solutions- | 5dc6f90d3848eb192e6edea8e8c731f41a1761dd | [
"MIT"
] | 3 | 2018-01-08T02:52:51.000Z | 2021-03-03T01:08:44.000Z | codeforces/617A.cpp | cosmicray001/Online_judge_Solutions- | 5dc6f90d3848eb192e6edea8e8c731f41a1761dd | [
"MIT"
] | null | null | null | codeforces/617A.cpp | cosmicray001/Online_judge_Solutions- | 5dc6f90d3848eb192e6edea8e8c731f41a1761dd | [
"MIT"
] | 1 | 2020-08-13T18:07:35.000Z | 2020-08-13T18:07:35.000Z | #include <bits/stdc++.h>
using namespace std;
int main(){
int n;
cin >> n;
int ans = 0;
if(n % 5 != 0) ans++;
printf("%d\n", (n / 5) + ans);
return 0;
}
| 15 | 32 | 0.50303 | cosmicray001 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.