Added custom missing texture

This commit is contained in:
KiritoDev 2021-05-09 10:53:27 -05:00
parent 6c39fc0fbc
commit 0a571a0318
3 changed files with 671 additions and 20 deletions

View File

@ -22,6 +22,7 @@
#include "text/text-loader.h"
#include <string.h>
#include "moon/utils/moon-gfx.h"
#include "gfx_dimensions.h"
/**
* @file file_select.c
@ -1544,7 +1545,7 @@ void print_main_menu_strings(void) {
gSPDisplayList(gDisplayListHead++, dl_rgba16_text_begin);
gDPSetEnvColor(gDisplayListHead++, 255, 255, 255, sTextBaseAlpha);
// Print "SELECT FILE" text
// Print "SELECT FILE" text
u8* txt = get_key_string("TEXT_SELECT_FILE");
float x = moon_get_text_width(txt, 1.0, TRUE) / 2;
print_hud_lut_string(HUD_LUT_GLOBAL, SCREEN_WIDTH / 2 - x, 35, txt);
@ -1557,7 +1558,7 @@ void print_main_menu_strings(void) {
gSPDisplayList(gDisplayListHead++, dl_rgba16_text_end);
// Print menu names
gSPDisplayList(gDisplayListHead++, dl_ia_text_begin);
gDPSetEnvColor(gDisplayListHead++, 255, 255, 255, sTextBaseAlpha);
gDPSetEnvColor(gDisplayListHead++, 255, 255, 255, sTextBaseAlpha);
//Change Copy X
txt = get_key_string("TEXT_SCORE");
@ -1571,7 +1572,7 @@ void print_main_menu_strings(void) {
txt = get_key_string("TEXT_ERASE");
x = moon_get_text_width(txt, 1.0, FALSE) / 2;
moon_draw_text(ERASE_X - x, 39, txt, 1.0);
txt = textSoundModes[sSoundMode];
x = moon_get_text_width(txt, 1.0, FALSE) / 2 + 0.5;
moon_draw_text(SOUNDMODE_X1 - x, 39, txt, 1.0);
@ -2047,13 +2048,13 @@ void print_score_file_course_coin_score(s8 fileIndex, s16 courseIndex, s16 x, s1
unsigned char coinScoreText[20];
unsigned char * fileNames[8] = {
get_key_string("TEXT_4DASHES"),
get_key_string("TEXT_SCORE_MARIO_A"),
get_key_string("TEXT_SCORE_MARIO_B"),
get_key_string("TEXT_SCORE_MARIO_C"),
get_key_string("TEXT_SCORE_MARIO_A"),
get_key_string("TEXT_SCORE_MARIO_B"),
get_key_string("TEXT_SCORE_MARIO_C"),
get_key_string("TEXT_SCORE_MARIO_D")
};
u8 stars = save_file_get_star_flags(fileIndex, courseIndex);
// MYSCORE
if (sScoreFileCoinScoreMode == 0) {
// Print "[coin] x"
@ -2224,6 +2225,17 @@ static void print_file_select_strings(void) {
if (sMainMenuTimer < 1000) {
sMainMenuTimer += 1;
}
gSPDisplayList(gDisplayListHead++, dl_menu_ia8_text_begin);
u8 *txt = getTranslatedText("Moon64 - (x) loaded addons");
float scale = 0.5f;
gDPSetEnvColor(gDisplayListHead++, 0, 0, 0, sTextBaseAlpha);
moon_draw_text(GFX_DIMENSIONS_FROM_LEFT_EDGE(2), 15 * scale, txt, scale);
gDPSetEnvColor(gDisplayListHead++, 255, 255, 255, sTextBaseAlpha);
moon_draw_text(GFX_DIMENSIONS_FROM_LEFT_EDGE(2), 16 * scale, txt, scale);
gDPSetEnvColor(gDisplayListHead++, 255, 255, 255, sTextBaseAlpha);
gSPDisplayList(gDisplayListHead++, dl_menu_ia8_text_end);
}
/**
@ -2278,7 +2290,7 @@ s32 lvl_init_menu_values_and_cursor_pos(UNUSED s32 arg, UNUSED s32 unused) {
sMainMenuTimer = 0;
sEraseYesNoHoverState = MENU_ERASE_HOVER_NONE;
sSoundMode = save_file_get_sound_mode();
return 0;
}

View File

@ -16,6 +16,7 @@ using json = nlohmann::json;
#include <dirent.h>
#include <map>
#include <chrono>
#include "missing.h"
#define STB_IMAGE_IMPLEMENTATION
#include <stb/stb_image.h>
@ -180,14 +181,7 @@ void Moon_LoadTexture(int tile, const char *fullpath, struct GfxRenderingAPI *gf
cout << "Failed to load texture" << endl;
}
int missingW = 2;
int missingH = 2;
vector<uint8_t> missingTexture = {
0x00, 0x00, 0xFF, 0xFF,
0xFF, 0xFF, 0x00, 0x00,
};
gfx_rapi->upload_texture(missingTexture.data(), missingW, missingH);
gfx_rapi->upload_texture(missing_image.pixel_data, missing_image.width, missing_image.height);
}
void Moon_ScanAddonsDirectory( char *exePath, char *gamedir ){
@ -242,10 +236,10 @@ using namespace std::chrono;
void Moon_InitModEngine( char *exePath, char *gamedir ){
milliseconds start_ms = duration_cast< milliseconds >( system_clock::now().time_since_epoch() );
Moon_LoadAddon("/home/alex/Music/Moon64-Packs/converted/minecraft.bit");
Moon_LoadAddon("/home/alex/Music/Moon64-Packs/converted/beta-hud.bit");
Moon_LoadAddon("/home/alex/disks/uwu/Projects/UnderVolt/Moon64-Packs/converted/owo.bit");
Moon_BakeTextureCache({1, 0, 2, 3});
// Moon_LoadAddon("/home/alex/Music/Moon64-Packs/converted/beta-hud.bit");
// Moon_LoadAddon("/home/alex/disks/uwu/Projects/UnderVolt/Moon64-Packs/converted/owo.bit");
// Moon_LoadAddon("/home/alex/Music/Moon64-Packs/converted/minecraft.bit");
// Moon_BakeTextureCache({1, 0, 2, 3});
milliseconds end_ms = duration_cast< milliseconds >( system_clock::now().time_since_epoch() );
std::cout << "Finised loading in " << ((end_ms.count() - start_ms.count()) / 1000) << " seconds" << std::endl;

View File

@ -0,0 +1,645 @@
#ifndef MissingTexture
#define MissingTexture
static const struct {
unsigned int width;
unsigned int height;
unsigned int bytes_per_pixel; /* 2:RGB16, 3:RGB, 4:RGBA */
unsigned char pixel_data[64 * 64 * 4 + 1];
} missing_image = {
64, 64, 4,
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377*\031\071\377*\031\071\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"*\031\071\377*\031\071\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\"\032,\377\"\032,\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\""
"\032,\377\"\032,\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\"\032,\377"
"\"\032,\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030."
"\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\"\032,\377\"\032,\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377^\250\245\377^\250\245\377,Yi\377,Yi\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377^\250\245\377"
"^\250\245\377,Yi\377,Yi\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377,Yi\377,Yi\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\016\020\040\377\016\020\040\377"
"\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377,Yi\377,Yi\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\016\020\040\377\016\020\040\377\016\020\040\377"
"\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\016\020\040\377\016\020\040\377\016\020\040\377\024\030.\377\024\030.\377\024\030."
"\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\016\020\040\377\016\020\040\377\016\020\040\377\016"
"\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377"
"\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\016\020\040\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\016\020\040\377\016\020\040\377\016\020\040\377"
"\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016"
"\020\040\377\016\020\040\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377*\031\071\377*\031\071\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\016\020\040\377"
"\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016"
"\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377*\031\071\377*\031\071\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\016\020\040"
"\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016"
"\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377"
"\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020"
"\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377"
"\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377M,;\377M,;\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377*\071O\377*\071O\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377"
"\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377M,;\377M,;\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377*\071O\377*\071O\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377*\031\071\377*\031\071\377[.L\377[.L\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\016\020"
"\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377"
"\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016"
"\020\040\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030."
"\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377*\031\071\377*\031\071\377[.L\377[.L\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\016"
"\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377"
"\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016"
"\020\040\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030."
"\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377*\031\071\377*\031\071\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020"
"\040\377\016\020\040\377\016\020\040\377\200\201\203\377\200\201\203\377\200\201"
"\203\377\200\201\203\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\016\020\040\377\016\020\040\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377*\031\071"
"\377*\031\071\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\016\020\040\377\016\020\040\377\016"
"\020\040\377\016\020\040\377\016\020\040\377\200\201\203\377\200\201\203\377\200"
"\201\203\377\200\201\203\377\200\201\203\377\200\201\203\377\016\020\040\377"
"\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\016\020"
"\040\377\016\020\040\377\016\020\040\377\016\020\040\377\200\201\203\377\200\201\203"
"\377\200\201\203\377\016\020\040\377\016\020\040\377\200\201\203\377\200\201\203"
"\377\200\201\203\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377"
"\016\020\040\377\016\020\040\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\200"
"\201\203\377\200\201\203\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020"
"\040\377\200\201\203\377\200\201\203\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\016\020\040\377\016\020\040\377\016\020\040\377\024\030.\377\024\030.\377\024\030."
"\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016"
"\020\040\377\016\020\040\377\200\201\203\377\200\201\203\377\016\020\040\377\016\020"
"\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\016\020\040\377\016\020\040"
"\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016"
"\020\040\377\016\020\040\377\200\201\203\377\200\201\203\377\200\201\203\377\016"
"\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\016\020\040\377\016\020\040\377\016"
"\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377"
"\016\020\040\377\016\020\040\377\200\201\203\377\200\201\203\377\200\201\203\377"
"\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\016\020\040\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\016\020\040"
"\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016"
"\020\040\377\016\020\040\377\016\020\040\377\200\201\203\377\200\201\203\377\200"
"\201\203\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\016\020\040\377\016\020\040\377\016\020\040\377\024\030.\377\024\030.\377\024\030."
"\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\016\020\040\377\016\020\040\377\016"
"\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377"
"\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\200\201"
"\203\377\200\201\203\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\016"
"\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377"
"\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\016\020\040\377\200\201\203\377\200\201\203\377\016\020\040\377\016\020\040\377"
"\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\016\020\040\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020"
"\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377"
"\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016"
"\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377"
"\016\020\040\377\016\020\040\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\016\020\040\377\016\020"
"\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377"
"\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016"
"\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377"
"\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377*\071O\377*\071O\377\024\030.\377\024\030"
".\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016"
"\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377"
"\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\016\020\040\377\016\020\040\377\200\201\203\377\200\201\203\377\016\020\040\377"
"\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377*\071O\377"
"*\071O\377\024\030.\377\024\030.\377\016\020\040\377\016\020\040\377\016\020\040\377\016"
"\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377"
"\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\200\201\203\377"
"\200\201\203\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020"
"\040\377\016\020\040\377\016\020\040\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016"
"\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377"
"\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\016\020\040\377\016\020\040\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\016\020\040\377\016\020\040\377\016\020\040\377\016"
"\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377"
"\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016"
"\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\016"
"\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377"
"\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016"
"\020\040\377\016\020\040\377\016\020\040\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377"
"\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016"
"\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\016\020\040\377\016\020\040\377\016\020"
"\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377"
"\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\016\020\040\377\016\020\040\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\016\020\040\377\016\020\040\377\016"
"\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377"
"\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\016\020\040\377\016\020\040\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020"
"\040\377\016\020\040\377\016\020\040\377\016\020\040\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040\377\016\020\040"
"\377\016\020\040\377\016\020\040\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377M,;\377M,;\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377M,;\377"
"M,;\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377*\031\071\377*\031\071\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377*\031\071\377*"
"\031\071\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030."
"\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024"
"\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377"
"\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030.\377\024\030"
".\377\024\030.\377\024\030.\377",
};
#endif