diff --git a/graphics/unused graphics/japanese_normal.png b/graphics/unused graphics/japanese_normal.png new file mode 100644 index 0000000..07bb453 Binary files /dev/null and b/graphics/unused graphics/japanese_normal.png differ diff --git a/include/debug_mode.h b/include/debug_mode.h index 5678739..84331d2 100644 --- a/include/debug_mode.h +++ b/include/debug_mode.h @@ -4,12 +4,12 @@ #define VERSION "v1.2.0b" #define PTGB_BUILD_LANGUAGE ENG_ID -#define DEBUG_MODE false +#define DEBUG_MODE true #define PRINT_LINK_DATA (false && DEBUG_MODE) // This is currently broken... not sure why #define INSTANT_TEXT_SPEED (false && DEBUG_MODE) #define IGNORE_GAME_PAK (true && DEBUG_MODE) -#define IGNORE_LINK_CABLE (true && DEBUG_MODE) +#define IGNORE_LINK_CABLE (false && DEBUG_MODE) #define IGNORE_MG_E4_FLAGS (true && DEBUG_MODE) #define IGNORE_UNRECEIVED_PKMN (true && DEBUG_MODE) #define FORCE_TUTORIAL (false && DEBUG_MODE) diff --git a/source/main.cpp b/source/main.cpp index 23b6902..8745d33 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -102,8 +102,7 @@ void load_graphics() tte_erase_rect(0, 0, H_MAX, V_MAX); // Load opening background first so it hides everything else load_flex_background(BG_OPENING, 1); - load_background(); - load_textbox_background(); + load_background(); load_textbox_background(); load_eternal_sprites(); // Set up global yes no button @@ -225,6 +224,7 @@ int credits() bool update = true; + global_next_frame(); while (true) { if (update) @@ -344,7 +344,7 @@ int main_menu_loop() for (int i = 0; i < NUM_MENU_OPTIONS; i++) { int size = get_string_length(menu_options[i]); - int char_width = (curr_rom.language == JPN_ID ? 8 : 6); + int char_width = (PTGB_BUILD_LANGUAGE == JPN_ID ? 8 : 6); int x = ((240 - (size * char_width)) / 2); tte_set_pos(x, ((i * 17) + 80)); if (i == curr_selection) @@ -388,7 +388,6 @@ int main(void) { initalization_script(); - //wow // Set colors based on current ROM set_background_pal(0, false, false); @@ -437,8 +436,8 @@ int main(void) bool start_pressed = false; REG_BLDCNT = BLD_BUILD(BLD_BG3, BLD_BG0, 1); - int char_width = (curr_rom.language == JPN_ID ? 8 : 6); int size = get_string_length(press_start); + int char_width = (PTGB_BUILD_LANGUAGE == JPN_ID ? 8 : 6); int x = ((240 - (size * char_width)) / 2); tte_set_pos(x, 12 * 8); @@ -460,6 +459,7 @@ int main(void) while (!curr_rom.load_rom()) { obj_hide_multi(ptgb_logo_l, 2); + global_next_frame(); game_load_error(); // initalization_script(); } @@ -501,16 +501,20 @@ int main(void) case (BTN_TRANSFER): tte_set_ink(INK_DARK_GREY); obj_hide_multi(ptgb_logo_l, 2); - load_flex_background(BG_FENNEL, 2); + load_flex_background(BG_FENNEL, 3); text_loop(BTN_TRANSFER); break; case (BTN_POKEDEX): - load_flex_background(BG_DEX, 2); - set_background_pal(curr_rom.gamecode, true, false); - obj_hide_multi(ptgb_logo_l, 2); - pokedex_loop(); - load_flex_background(BG_DEX, 3); - set_background_pal(curr_rom.gamecode, false, false); + if (get_tutorial_flag()) + { + obj_hide_multi(ptgb_logo_l, 2); + global_next_frame(); + load_flex_background(BG_DEX, 2); + set_background_pal(curr_rom.gamecode, true, false); + pokedex_loop(); + load_flex_background(BG_DEX, 3); + set_background_pal(curr_rom.gamecode, false, false); + } break; case (BTN_CREDITS): tte_set_ink(INK_DARK_GREY); diff --git a/source/sprite_data.cpp b/source/sprite_data.cpp index 8400192..85671d1 100644 --- a/source/sprite_data.cpp +++ b/source/sprite_data.cpp @@ -118,8 +118,13 @@ void set_background_pal(int curr_rom_id, bool dark, bool fade) #include "dexBG.h" #include "menu_bars.h" #include "boxBG.h" + void load_flex_background(int background_id, int layer) { + // This prevents screen tearing on this frame + global_next_frame(); + REG_BG1CNT = (REG_BG1CNT && !BG_PRIO_MASK) | BG_PRIO(3); + int CBB = 3; // CBB is the tiles that make up the sprite int SBB = 31; // SSB is the array of which tile goes where switch (background_id) @@ -129,6 +134,8 @@ void load_flex_background(int background_id, int layer) tonccpy(pal_bg_mem + 32, openingBGPal, openingBGPalLen); // Load tiles into CBB 0 LZ77UnCompVram(openingBGTiles, &tile_mem[CBB][0]); + // Give it a frame to uncompress the data + global_next_frame(); // Load map into SBB 0 LZ77UnCompVram(openingBGMap, &se_mem[SBB][0]); REG_BG1VOFS = 96; @@ -138,6 +145,8 @@ void load_flex_background(int background_id, int layer) tonccpy(pal_bg_mem + 32, fennelBGPal, fennelBGPalLen); // Load tiles into CBB 0 LZ77UnCompVram(fennelBGTiles, &tile_mem[CBB][0]); + // Give it a frame to uncompress the data + global_next_frame(); // Load map into SBB 0 LZ77UnCompVram(fennelBGMap, &se_mem[SBB][0]); REG_BG1VOFS = FENNEL_SHIFT; @@ -147,6 +156,8 @@ void load_flex_background(int background_id, int layer) tonccpy(pal_bg_mem + 32, dexBGPal, dexBGPalLen); // Load tiles into CBB 0 LZ77UnCompVram(dexBGTiles, &tile_mem[CBB][0]); + // Give it a frame to uncompress the data + global_next_frame(); // Load map into SBB 0 LZ77UnCompVram(dexBGMap, &se_mem[SBB][0]); REG_BG1VOFS = 0; @@ -156,6 +167,8 @@ void load_flex_background(int background_id, int layer) tonccpy(pal_bg_mem + 32, pal_bg_mem, backgroundPalLen); // Load tiles into CBB 0 LZ77UnCompVram(menu_barsTiles, &tile_mem[CBB][0]); + // Give it a frame to uncompress the data + global_next_frame(); // Load map into SBB 0 LZ77UnCompVram(menu_barsMap, &se_mem[SBB][0]); REG_BG1VOFS = 0; @@ -165,6 +178,8 @@ void load_flex_background(int background_id, int layer) tonccpy(pal_bg_mem + 32, boxBGPal, boxBGPalLen); // Load tiles into CBB 0 LZ77UnCompVram(boxBGTiles, &tile_mem[CBB][0]); + // Give it a frame to uncompress the data + global_next_frame(); // Load map into SBB 0 LZ77UnCompVram(boxBGMap, &se_mem[SBB][0]); REG_BG1VOFS = 0; @@ -243,7 +258,7 @@ static int TILE_SW_L_ARR[4] = {TILE_CLEAR, TILE_CLEAR, TILE_SW_4L, TILE_SW_6L}; void add_menu_box(int options, int startTileX, int startTileY) { - add_menu_box(startTileX, startTileY, (MENU_WIDTH) * 8, options * 10); + add_menu_box(startTileX, startTileY, (MENU_WIDTH) * 8, (options * 10) + 16); } void add_menu_box(int startTileX, int startTileY, int full_width, int full_height) @@ -255,7 +270,7 @@ void add_menu_box(int startTileX, int startTileY, int full_width, int full_heigh int SBB = 20; int start = (32 * startTileY) + startTileX; - int tiles = (full_height / 8) - 2; + int tiles = (full_height / 8) - 2; // For the extra 2 tiles int rem = full_height % 8; full_width /= 8; diff --git a/source/text_engine.cpp b/source/text_engine.cpp index e5d8c1b..726479d 100644 --- a/source/text_engine.cpp +++ b/source/text_engine.cpp @@ -68,6 +68,7 @@ int text_loop(int script) } curr_text = curr_line.get_text(); + REG_BG1CNT = (REG_BG1CNT && !BG_PRIO_MASK) | BG_PRIO(2); // Show Fennel show_text_box(); // tte_set_margins(LEFT, TOP, RIGHT, BOTTOM); while (true) // This loops through all the connected script objects diff --git a/source/translated_text.cpp b/source/translated_text.cpp index f32bcc5..0bd8827 100644 --- a/source/translated_text.cpp +++ b/source/translated_text.cpp @@ -3,42 +3,42 @@ #include "pokemon_data.h" #if PTGB_BUILD_LANGUAGE == 1 -const byte dialogueLine0[] = {0xc2, 0xd9, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0x0, 0xc3, 0x0, 0xe1, 0x0, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xd9, 0xe2, 0xe2, 0xd9, 0xe0, 0xb8, 0x0, 0xbb, 0xe7, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xd9, 0x0, 0x0, 0xc3, 0x0, 0xe1, 0x0, 0xd5, 0x0, 0xe7, 0xd7, 0xdd, 0xd9, 0xe2, 0xe8, 0xdd, 0xe7, 0xe8, 0xb8, 0x0, 0xc3, 0xe2, 0xfe, 0xda, 0xd5, 0xd7, 0xe8, 0x0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xe9, 0xd6, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xc3, 0x0, 0xe1, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe7, 0xfe, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0x0, 0xfb, 0xc7, 0xed, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe0, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xea, 0xd5, 0xe6, 0xdd, 0xe3, 0xe9, 0xe7, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0x0, 0xe8, 0x0, 0xdc, 0xd5, 0xd8, 0xfe, 0xd5, 0xe2, 0xed, 0x0, 0xd6, 0xe6, 0xd9, 0xd5, 0xdf, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0xe7, 0x0, 0xed, 0xd9, 0xe8, 0xb8, 0xb8, 0xb8, 0xfb, 0xcd, 0xe3, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0x0, 0x0, 0xc3, 0x0, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xdd, 0xe2, 0xdb, 0xfe, 0xe3, 0xe2, 0x0, 0xd5, 0x0, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0xfe, 0xe3, 0xe0, 0xd8, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xfb, 0xc3, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xdc, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe7, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xdd, 0xe2, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xb8, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd9, 0xed, 0x0, 0xe1, 0xd9, 0xd9, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0x0, 0xfb, 0xce, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0x0, 0xda, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe1, 0xed, 0x0, 0xdb, 0xe3, 0xd5, 0xe0, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xd8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xd5, 0xe1, 0xd9, 0x0, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0xe7, 0xfe, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0x0, 0x0, 0xce, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xdc, 0xd9, 0xe0, 0xe4, 0x0, 0xfb, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xe2, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe9, 0xe8, 0xfe, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xe7, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0x0, 0xfb, 0xce, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xa3, 0xa6, 0xa1, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xd7, 0xd5, 0xe8, 0xd5, 0xe0, 0xe3, 0xdb, 0xe9, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xbe, 0xd9, 0xec, 0x0, 0x0, 0xe3, 0xe6, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe6, 0xe8, 0xb8, 0xfb, 0xbc, 0xe9, 0xe8, 0x0, 0xc3, 0x0, 0xe0, 0xe0, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xfe, 0xe8, 0xdc, 0xd9, 0xed, 0x0, 0xe6, 0xd9, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xfb, 0xc9, 0xe2, 0xd9, 0x0, 0xe0, 0xd5, 0xe7, 0xe8, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdb, 0xe3, 0xd9, 0xe7, 0x0, 0xeb, 0xe6, 0xe3, 0xe2, 0xdb, 0x0, 0xfe, 0xc3, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdf, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xb8, 0xb8, 0xb8, 0xfb, 0xeb, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0x0, 0xff}; -const byte dialogueLine1[] = {0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xc3, 0x0, 0xe1, 0x0, 0xe8, 0xdc, 0xe6, 0xdd, 0xe0, 0xe0, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xea, 0xd9, 0xfe, 0xd8, 0xd9, 0xd7, 0xdd, 0xd8, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe9, 0xe6, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xd9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0x0, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd5, 0xe8, 0xd9, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbf, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xc0, 0xe3, 0xe9, 0xe6, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xdc, 0xd5, 0xe1, 0xe4, 0xdd, 0xe3, 0xe2, 0x0, 0xff}; -const byte dialogueLine2[] = {0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0xfe, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0x0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xc1, 0xc3, 0xc0, 0xce, 0x0, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe2, 0xd9, 0xd5, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0x0, 0xc7, 0xd5, 0xe6, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xda, 0xdd, 0xe0, 0xe0, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe2, 0xd5, 0xdd, 0xe6, 0xd9, 0x0, 0xd5, 0xe7, 0xfe, 0xda, 0xe3, 0xe0, 0xe0, 0xe3, 0xeb, 0xe7, 0xf0, 0x0, 0xc6, 0xc3, 0xc8, 0xc5, 0x0, 0xce, 0xc9, 0xc1, 0xbf, 0xce, 0xc2, 0xbf, 0xcc, 0x0, 0xd1, 0xc3, 0xce, 0xc2, 0x0, 0xbb, 0xc6, 0xc6, 0xb8, 0xfb, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xdb, 0xe3, 0x0, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0x0, 0xff}; -const byte dialogueLine3[] = {0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0xfe, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0x0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0x0, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbf, 0xce, 0xbb, 0xc6, 0xbc, 0xcf, 0xcc, 0xc1, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xbd, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xe2, 0x0, 0xe2, 0xd9, 0xec, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0xf0, 0xfe, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0x0, 0xc3, 0xcd, 0x0, 0xbf, 0xd2, 0xbd, 0xc3, 0xce, 0xc3, 0xc8, 0xc1, 0xb8, 0x0, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdb, 0xe3, 0x0, 0xfb, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0x0, 0xff}; -const byte dialogueLine4[] = {0xca, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0x0, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xc3, 0xfe, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0x0, 0xc6, 0xd9, 0xe8, 0x0, 0xe7, 0x0, 0xdb, 0xd9, 0xe8, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0xd9, 0xd8, 0x0, 0xff}; -const byte dialogueLine5[] = {0xc9, 0xe2, 0x0, 0xd5, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xfe, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xdd, 0xe7, 0xdc, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xb8, 0xfb, 0xc3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xb8, 0xfb, 0xce, 0xdc, 0xd9, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xfe, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0x0, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0xb8, 0xfb, 0xc9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0x0, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xbd, 0xe0, 0xe9, 0xd6, 0xfe, 0xd5, 0xe8, 0xe8, 0xd9, 0xe2, 0xd8, 0xd5, 0xe2, 0xe8, 0x0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0x0, 0xdd, 0xe2, 0xdd, 0xe8, 0xdd, 0xd5, 0xe8, 0xd9, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xd9, 0xb8, 0xff}; -const byte dialogueLine6[] = {0xbb, 0xe1, 0xd5, 0xee, 0xdd, 0xe2, 0xdb, 0x0, 0x0, 0xc0, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0x0, 0x0, 0xbf, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0xfe, 0xe4, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0x0, 0xff}; -const byte dialogueLine7[] = {0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xdd, 0xe7, 0xe2, 0x0, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0x0, 0x0, 0xc3, 0x0, 0xe0, 0xe0, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xd9, 0xec, 0xe8, 0xe6, 0xd5, 0x0, 0xe7, 0xeb, 0xd9, 0xd9, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xe6, 0xd9, 0xeb, 0xd5, 0xe6, 0xd8, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0xb8, 0xff}; -const byte dialogueLine8[] = {0xc3, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0x0, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0x0, 0xd5, 0xe2, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0xfe, 0xe3, 0xdf, 0xd5, 0xed, 0x0, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0x0, 0xdd, 0xe1, 0xe4, 0xe3, 0xe6, 0xe8, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0xfe, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe9, 0xe0, 0xe8, 0xe7, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe1, 0xe9, 0xe0, 0xe8, 0xdd, 0xe4, 0xe0, 0xd9, 0x0, 0xe8, 0xd9, 0xe7, 0xe8, 0xe7, 0x0, 0xff}; -const byte dialogueLine9[] = {0xc3, 0x0, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0x0, 0x0, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0x0, 0xe3, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xe3, 0xe2, 0x0, 0xcd, 0xd9, 0xea, 0xd9, 0xe2, 0x0, 0xc3, 0xe7, 0xe0, 0xd5, 0xe2, 0xd8, 0x0, 0xff}; -const byte dialogueLine10[] = {0xc3, 0x0, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0x0, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xc7, 0xe3, 0xe7, 0xe7, 0xd8, 0xd9, 0xd9, 0xe4, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0x0, 0xff}; -const byte dialogueLine11[] = {0xc3, 0x0, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0x0, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xcd, 0xe3, 0xe3, 0xe8, 0xe3, 0xe4, 0xe3, 0xe0, 0xdd, 0xe7, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0x0, 0xff}; -const byte dialogueLine12[] = {0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0x0, 0xfe, 0xd1, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0x0, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0x0, 0xff}; +const byte dialogueLine0[] = {0xc2, 0xd9, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0x0, 0xc3, 0x0, 0xe1, 0x0, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0xfe, 0xc0, 0xd9, 0xe2, 0xe2, 0xd9, 0xe0, 0xb8, 0x0, 0xbb, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xd9, 0x0, 0x0, 0xc3, 0x0, 0xe1, 0xfe, 0xd5, 0x0, 0xe7, 0xd7, 0xdd, 0xd9, 0xe2, 0xe8, 0xdd, 0xe7, 0xe8, 0xb8, 0xfb, 0xc3, 0xe2, 0x0, 0xda, 0xd5, 0xd7, 0xe8, 0x0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xe9, 0xd6, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xc3, 0x0, 0xe1, 0xfe, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe7, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0x0, 0xfb, 0xc7, 0xed, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe0, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xea, 0xd5, 0xe6, 0xdd, 0xe3, 0xe9, 0xe7, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0x0, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0x0, 0xe8, 0x0, 0xdc, 0xd5, 0xd8, 0x0, 0xd5, 0xe2, 0xed, 0xfe, 0xd6, 0xe6, 0xd9, 0xd5, 0xdf, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0xe7, 0x0, 0xed, 0xd9, 0xe8, 0xb8, 0xb8, 0xb8, 0xfb, 0xcd, 0xe3, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0x0, 0x0, 0xc3, 0x0, 0xea, 0xd9, 0xfe, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xdd, 0xe2, 0xdb, 0x0, 0xe3, 0xe2, 0x0, 0xd5, 0x0, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0xfe, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xe3, 0xe0, 0xd8, 0xfe, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xfb, 0xc3, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xdc, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0x0, 0xd5, 0xfe, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe7, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xdd, 0xe2, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xb8, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0x0, 0xe1, 0xd9, 0xd9, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xe0, 0x0, 0xfb, 0xce, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0x0, 0xda, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe1, 0xed, 0xfe, 0xdb, 0xe3, 0xd5, 0xe0, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xd8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xd5, 0xe1, 0xd9, 0x0, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0xe7, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xfe, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0x0, 0xfb, 0xce, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0x0, 0xfe, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xe2, 0xed, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0xfe, 0xd5, 0xe7, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0x0, 0xfb, 0xce, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xa3, 0xa6, 0xa1, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xd5, 0xe8, 0xd5, 0xe0, 0xe3, 0xdb, 0xe9, 0xd9, 0xfe, 0xdd, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xbe, 0xd9, 0xec, 0x0, 0x0, 0xe3, 0xe6, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe6, 0xe8, 0xb8, 0xfb, 0xbc, 0xe9, 0xe8, 0x0, 0xc3, 0x0, 0xe0, 0xe0, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xd5, 0xe2, 0xed, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0x0, 0xe6, 0xd9, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xfb, 0xc9, 0xe2, 0xd9, 0x0, 0xe0, 0xd5, 0xe7, 0xe8, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0xfe, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xfe, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdb, 0xe3, 0xd9, 0xe7, 0x0, 0xeb, 0xe6, 0xe3, 0xe2, 0xdb, 0x0, 0xfb, 0xc3, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdf, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xb8, 0xb8, 0xb8, 0xfe, 0xeb, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0xfe, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0x0, 0xff}; +const byte dialogueLine1[] = {0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xc3, 0x0, 0xe1, 0x0, 0xe8, 0xdc, 0xe6, 0xdd, 0xe0, 0xe0, 0xd9, 0xd8, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xea, 0xd9, 0x0, 0xd8, 0xd9, 0xd7, 0xdd, 0xd8, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0xfe, 0xe3, 0xe9, 0xe6, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xd9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0x0, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xea, 0xd9, 0xfe, 0xd6, 0xd9, 0xd5, 0xe8, 0xd9, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbf, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xc0, 0xe3, 0xe9, 0xe6, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xdc, 0xd5, 0xe1, 0xe4, 0xdd, 0xe3, 0xe2, 0x0, 0xff}; +const byte dialogueLine2[] = {0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0xfe, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0x0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xc1, 0xc3, 0xc0, 0xce, 0x0, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe2, 0xd9, 0xd5, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xfe, 0xc7, 0xd5, 0xe6, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xda, 0xdd, 0xe0, 0xe0, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe2, 0xd5, 0xdd, 0xe6, 0xd9, 0x0, 0xd5, 0xe7, 0x0, 0xda, 0xe3, 0xe0, 0xe0, 0xe3, 0xeb, 0xe7, 0xf0, 0xfe, 0xc6, 0xc3, 0xc8, 0xc5, 0x0, 0xce, 0xc9, 0xc1, 0xbf, 0xce, 0xc2, 0xbf, 0xcc, 0x0, 0xd1, 0xc3, 0xce, 0xc2, 0x0, 0xbb, 0xc6, 0xc6, 0xb8, 0xfb, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdb, 0xe3, 0x0, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0x0, 0xff}; +const byte dialogueLine3[] = {0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0xfe, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0x0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0x0, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbf, 0xce, 0xbb, 0xc6, 0xbc, 0xcf, 0xcc, 0xc1, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xbd, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe1, 0xd5, 0xe2, 0x0, 0xe2, 0xd9, 0xec, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0xf0, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0xfe, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0x0, 0xc3, 0xcd, 0x0, 0xbf, 0xd2, 0xbd, 0xc3, 0xce, 0xc3, 0xc8, 0xc1, 0xb8, 0xfb, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdb, 0xe3, 0x0, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0x0, 0xff}; +const byte dialogueLine4[] = {0xca, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0x0, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0x0, 0xc6, 0xd9, 0xe8, 0x0, 0xe7, 0xfe, 0xdb, 0xd9, 0xe8, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0xd9, 0xd8, 0x0, 0xff}; +const byte dialogueLine5[] = {0xc9, 0xe2, 0x0, 0xd5, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0xfe, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xfe, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xdd, 0xe7, 0xdc, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xb8, 0xfb, 0xc3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0xb8, 0xfb, 0xce, 0xdc, 0xd9, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xfe, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0x0, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0xb8, 0xfb, 0xc9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0xfe, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0x0, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xbd, 0xe0, 0xe9, 0xd6, 0x0, 0xd5, 0xe8, 0xe8, 0xd9, 0xe2, 0xd8, 0xd5, 0xe2, 0xe8, 0x0, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe2, 0x0, 0xdd, 0xe2, 0xdd, 0xe8, 0xdd, 0xd5, 0xe8, 0xd9, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xd9, 0xb8, 0xff}; +const byte dialogueLine6[] = {0xbb, 0xe1, 0xd5, 0xee, 0xdd, 0xe2, 0xdb, 0x0, 0x0, 0xc0, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0x0, 0xfe, 0xbf, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0x0, 0xe4, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0x0, 0xff}; +const byte dialogueLine7[] = {0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0x0, 0xd5, 0xe8, 0xfe, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xdd, 0xe7, 0xe2, 0x0, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0x0, 0xfb, 0xc3, 0x0, 0xe0, 0xe0, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xd9, 0xec, 0xe8, 0xe6, 0xd5, 0x0, 0xe7, 0xeb, 0xd9, 0xd9, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xe6, 0xd9, 0xeb, 0xd5, 0xe6, 0xd8, 0x0, 0xda, 0xe3, 0xe6, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0xb8, 0xff}; +const byte dialogueLine8[] = {0xc3, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0x0, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0xfe, 0xd5, 0xe2, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0xfe, 0xbe, 0xd9, 0xec, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0x0, 0xe3, 0xdf, 0xd5, 0xed, 0x0, 0xfb, 0xc3, 0xe8, 0x0, 0xe7, 0x0, 0xdd, 0xe1, 0xe4, 0xe3, 0xe6, 0xe8, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0xfe, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe9, 0xe0, 0xe8, 0xe7, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0xfe, 0xe1, 0xe9, 0xe0, 0xe8, 0xdd, 0xe4, 0xe0, 0xd9, 0x0, 0xe8, 0xd9, 0xe7, 0xe8, 0xe7, 0x0, 0xff}; +const byte dialogueLine9[] = {0xc3, 0x0, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0xfe, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xfe, 0xe9, 0xe4, 0x0, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xe3, 0xe2, 0x0, 0xcd, 0xd9, 0xea, 0xd9, 0xe2, 0xfe, 0xc3, 0xe7, 0xe0, 0xd5, 0xe2, 0xd8, 0x0, 0xff}; +const byte dialogueLine10[] = {0xc3, 0x0, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0xfe, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xfe, 0xe9, 0xe4, 0x0, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0xfe, 0xc7, 0xe3, 0xe7, 0xe7, 0xd8, 0xd9, 0xd9, 0xe4, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0x0, 0xff}; +const byte dialogueLine11[] = {0xc3, 0x0, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0xfe, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xfe, 0xe9, 0xe4, 0x0, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0xfe, 0xcd, 0xe3, 0xe3, 0xe8, 0xe3, 0xe4, 0xe3, 0xe0, 0xdd, 0xe7, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0x0, 0xff}; +const byte dialogueLine12[] = {0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xdc, 0xd9, 0xe0, 0xe4, 0x0, 0x0, 0xd1, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0x0, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0x0, 0xff}; const byte dialogueLine13[] = {0xe9, 0xe2, 0xe9, 0xe7, 0xd9, 0xd8, 0x0, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xff}; -const byte dialogueLine14[] = {0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xfe, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xb8, 0xfe, 0xce, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xd6, 0xe0, 0xd9, 0xe1, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe3, 0xea, 0xd9, 0xe6, 0xeb, 0xe6, 0xdd, 0xe8, 0xe8, 0xd9, 0xe2, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xb8, 0xfb, 0xce, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xe2, 0xe3, 0xeb, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xec, 0xe4, 0xd9, 0xe6, 0xdd, 0xd9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0x0, 0xff}; -const byte dialogueLine15[] = {0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe9, 0xe4, 0xb8, 0xb8, 0xb8, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe8, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe9, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0xfe, 0xe8, 0xdc, 0xe3, 0xe7, 0xd9, 0x0, 0xe9, 0xe4, 0xb8, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xea, 0xd9, 0x0, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xff}; -const byte dialogueLine16[] = {0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xdd, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0x0, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xea, 0xd5, 0xe0, 0xdd, 0xd8, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xe2, 0xe3, 0xeb, 0xb8, 0xfb, 0xc1, 0xe3, 0x0, 0xd8, 0xe3, 0xe9, 0xd6, 0xe0, 0xd9, 0x0, 0xd7, 0xdc, 0xd9, 0xd7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xdd, 0xe8, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe8, 0x0, 0xff}; -const byte dialogueLine17[] = {0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xbc, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0x0, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd5, 0xe7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0x0, 0xda, 0xd9, 0xeb, 0x0, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xb8, 0xff}; -const byte dialogueLine18[] = {0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xff}; -const byte dialogueLine19[] = {0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xff}; -const byte dialogueLine20[] = {0xc3, 0x0, 0xe1, 0x0, 0xe7, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xea, 0xd9, 0xe6, 0xe7, 0xdd, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0xb8, 0xff}; -const byte dialogueLine21[] = {0xbb, 0xe0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0x0, 0xc6, 0xd9, 0xe8, 0x0, 0xe7, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0xb8, 0xfb, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xd9, 0xe1, 0xd6, 0xd9, 0xe6, 0x0, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xd5, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe7, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0x0, 0x0, 0xdd, 0xe8, 0x0, 0xbd, 0xbb, 0xc8, 0xc8, 0xc9, 0xce, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xb8, 0xfb, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0x0, 0xe3, 0xe6, 0xfe, 0xe7, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xb8, 0xff}; -const byte dialogueLine22[] = {0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0x0, 0xe6, 0xd5, 0xe6, 0xd9, 0xfe, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0x0, 0xbe, 0xe9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xe6, 0xd5, 0xe6, 0xdd, 0xe8, 0xed, 0x0, 0x0, 0xdd, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0x0, 0xea, 0xd9, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xb8, 0xfb, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd8, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe0, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xd9, 0xe8, 0xfe, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0x0, 0xc9, 0xce, 0x0, 0x0, 0xce, 0xc3, 0xbe, 0x0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xcd, 0xdc, 0xdd, 0xe2, 0xdd, 0xe2, 0xd9, 0xe7, 0xe7, 0xb8, 0xfb, 0xc9, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe0, 0xd9, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xdb, 0xe9, 0xd5, 0xe6, 0xd9, 0xe2, 0xe8, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xda, 0xe9, 0xe8, 0xe9, 0xe6, 0xd9, 0xb8, 0x0, 0xbe, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd5, 0xe4, 0xe4, 0xe0, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd6, 0xe3, 0xec, 0xb8, 0xff}; -const byte dialogueLine23[] = {0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0x0, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xdd, 0xda, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0x0, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0x0, 0xff}; -const byte dialogueLine24[] = {0xc3, 0x0, 0xe7, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0xb8, 0xfb, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xe3, 0xe0, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe8, 0xd9, 0xe1, 0xe7, 0x0, 0xe3, 0xe6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xdd, 0xd9, 0xd8, 0xfe, 0xdd, 0xe2, 0xd7, 0xe3, 0xe6, 0xe6, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0x0, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0x0, 0xe9, 0xe2, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0xfe, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0xb8, 0xfb, 0xce, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xda, 0xdd, 0xe2, 0xd9, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0x0, 0xff}; -const byte dialogueLine25[] = {0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0x0, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xfe, 0xd5, 0xe2, 0xed, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0x0, 0xff}; -const byte dialogueLine26[] = {0xb8, 0xb8, 0xb8, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0xfe, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xb8, 0xb8, 0xb8, 0x0, 0xc3, 0xe8, 0xfe, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0x0, 0xd6, 0xd9, 0x0, 0xdb, 0xe6, 0xd5, 0xe4, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0x0, 0x0, 0xe7, 0xe3, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0x0, 0xff}; -const byte dialogueLine27[] = {0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd7, 0xe3, 0xe0, 0xe3, 0xe7, 0xe7, 0xd9, 0xe9, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0xfe, 0xe6, 0xe3, 0xe3, 0xe1, 0x0, 0x0, 0xc6, 0xd9, 0xe8, 0x0, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xff}; -const byte dialogueLine28[] = {0xbd, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0xfe, 0xeb, 0xd5, 0xe7, 0x0, 0xe8, 0xd9, 0xe6, 0xe1, 0xdd, 0xe2, 0xd5, 0xe8, 0xd9, 0xd8, 0xb8, 0x0, 0xc6, 0xd9, 0xe8, 0x0, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xff}; -const byte dialogueLine29[] = {0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xfe, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xd8, 0xdd, 0xe7, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xd9, 0xd8, 0xb8, 0xb8, 0xb8, 0x0, 0xc6, 0xd9, 0xe8, 0x0, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xff}; -const byte dialogueLine30[] = {0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0xfe, 0xe3, 0xe9, 0xe8, 0xb8, 0xb8, 0xb8, 0x0, 0xc6, 0xd9, 0xe8, 0x0, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xff}; -const byte dialogueLine31[] = {0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0xfe, 0xe3, 0xe9, 0xe8, 0xb8, 0xb8, 0xb8, 0x0, 0xc6, 0xd9, 0xe8, 0x0, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xff}; -const byte dialogueLine32[] = {0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xff}; -const byte dialogueLine33[] = {0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd8, 0xe3, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xff}; -const byte dialogueLine34[] = {0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0x0, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xa2, 0xa6, 0xa1, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xb8, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xeb, 0xd9, 0x0, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xff}; -const byte dialogueLine35[] = {0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0x0, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xaa, 0xaa, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc4, 0xe3, 0xdc, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xb8, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xeb, 0xd9, 0x0, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xff}; +const byte dialogueLine14[] = {0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0x0, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xb8, 0xfb, 0xce, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xd6, 0xe0, 0xd9, 0xe1, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0xfe, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xeb, 0xe6, 0xdd, 0xe8, 0xe8, 0xd9, 0xe2, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xb8, 0xfb, 0xce, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xe2, 0xe3, 0xeb, 0x0, 0xdd, 0xda, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd9, 0xec, 0xe4, 0xd9, 0xe6, 0xdd, 0xd9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0x0, 0xff}; +const byte dialogueLine15[] = {0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe9, 0xe4, 0xb8, 0xb8, 0xb8, 0xfb, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe8, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe2, 0xd9, 0xeb, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe9, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xe3, 0xe7, 0xd9, 0xfe, 0xe9, 0xe4, 0xb8, 0x0, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xea, 0xd9, 0xfe, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xff}; +const byte dialogueLine16[] = {0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xdd, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0x0, 0xe8, 0xfe, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xea, 0xd5, 0xe0, 0xdd, 0xd8, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0xfe, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xe2, 0xe3, 0xeb, 0xb8, 0xfb, 0xc1, 0xe3, 0x0, 0xd8, 0xe3, 0xe9, 0xd6, 0xe0, 0xd9, 0x0, 0xd7, 0xdc, 0xd9, 0xd7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xfe, 0xd6, 0xe3, 0xec, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xdd, 0xe8, 0xfe, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe8, 0x0, 0xff}; +const byte dialogueLine17[] = {0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xbc, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0x0, 0xfe, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0x0, 0xda, 0xd9, 0xeb, 0xfe, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xb8, 0xff}; +const byte dialogueLine18[] = {0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xff}; +const byte dialogueLine19[] = {0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xfe, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe6, 0xd9, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xff}; +const byte dialogueLine20[] = {0xc3, 0x0, 0xe1, 0x0, 0xe7, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xea, 0xd9, 0xe6, 0xe7, 0xdd, 0xe3, 0xe2, 0xfe, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0xb8, 0xff}; +const byte dialogueLine21[] = {0xbb, 0xe0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0x0, 0xc6, 0xd9, 0xe8, 0x0, 0xe7, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xfe, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0xb8, 0xfb, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xd9, 0xe1, 0xd6, 0xd9, 0xe6, 0x0, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xd5, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0x0, 0x0, 0xdd, 0xe8, 0xfe, 0xbd, 0xbb, 0xc8, 0xc8, 0xc9, 0xce, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xb8, 0xfb, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe6, 0xd9, 0xfe, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0x0, 0xe3, 0xe6, 0x0, 0xe7, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0x0, 0xdd, 0xda, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0xfe, 0xe3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xb8, 0xff}; +const byte dialogueLine22[] = {0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xfe, 0xe6, 0xd5, 0xe6, 0xd9, 0x0, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xfb, 0xbe, 0xe9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xe6, 0xd5, 0xe6, 0xdd, 0xe8, 0xed, 0x0, 0x0, 0xdd, 0xe8, 0xfe, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0x0, 0xea, 0xd9, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xb8, 0xfb, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd8, 0xfe, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe0, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xfe, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xd9, 0xe8, 0x0, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xfe, 0xc9, 0xce, 0x0, 0x0, 0xce, 0xc3, 0xbe, 0x0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xcd, 0xdc, 0xdd, 0xe2, 0xdd, 0xe2, 0xd9, 0xe7, 0xe7, 0xb8, 0xfb, 0xc9, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe0, 0xd9, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xfe, 0xd5, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0x0, 0xe2, 0xe3, 0xfe, 0xdb, 0xe9, 0xd5, 0xe6, 0xd9, 0xe2, 0xe8, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xda, 0xe9, 0xe8, 0xe9, 0xe6, 0xd9, 0xb8, 0xfb, 0xbe, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0xfe, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0x0, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd5, 0xe4, 0xe4, 0xe0, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe0, 0xe0, 0xfe, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd6, 0xe3, 0xec, 0xb8, 0xff}; +const byte dialogueLine23[] = {0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0x0, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0xfe, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xe1, 0xdd, 0xe2, 0xd8, 0x0, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0x0, 0xff}; +const byte dialogueLine24[] = {0xc3, 0x0, 0xe7, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0xb8, 0xfb, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xe3, 0xe0, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe8, 0xd9, 0xe1, 0xe7, 0x0, 0xe3, 0xe6, 0xfe, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xdd, 0xd9, 0xd8, 0x0, 0xdd, 0xe2, 0xd7, 0xe3, 0xe6, 0xe6, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0x0, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0xfe, 0xe9, 0xe2, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0x0, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0xb8, 0xfb, 0xce, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xda, 0xdd, 0xe2, 0xd9, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0x0, 0xff}; +const byte dialogueLine25[] = {0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0x0, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0xfe, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0x0, 0xff}; +const byte dialogueLine26[] = {0xb8, 0xb8, 0xb8, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0xfe, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xb8, 0xb8, 0xb8, 0xfb, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0x0, 0xd6, 0xd9, 0xfe, 0xdb, 0xe6, 0xd5, 0xe4, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0x0, 0x0, 0xe7, 0xe3, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0x0, 0xff}; +const byte dialogueLine27[] = {0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe0, 0xe3, 0xe7, 0xe7, 0xd9, 0xe9, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe8, 0xe6, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0x0, 0x0, 0xc6, 0xd9, 0xe8, 0x0, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xff}; +const byte dialogueLine28[] = {0xbd, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0xfe, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xe8, 0xd9, 0xe6, 0xe1, 0xdd, 0xe2, 0xd5, 0xe8, 0xd9, 0xd8, 0xb8, 0x0, 0xc6, 0xd9, 0xe8, 0x0, 0xe7, 0xfe, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xff}; +const byte dialogueLine29[] = {0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0xfe, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0x0, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xd8, 0xdd, 0xe7, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xd9, 0xd8, 0xb8, 0xb8, 0xb8, 0x0, 0xc6, 0xd9, 0xe8, 0x0, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xff}; +const byte dialogueLine30[] = {0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0x0, 0xe3, 0xe9, 0xe8, 0xb8, 0xb8, 0xb8, 0x0, 0xc6, 0xd9, 0xe8, 0x0, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xff}; +const byte dialogueLine31[] = {0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0x0, 0xe3, 0xe9, 0xe8, 0xb8, 0xb8, 0xb8, 0x0, 0xc6, 0xd9, 0xe8, 0x0, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xff}; +const byte dialogueLine32[] = {0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xfe, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xff}; +const byte dialogueLine33[] = {0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd8, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0xfe, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xff}; +const byte dialogueLine34[] = {0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0x0, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xa2, 0xa6, 0xa1, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xb8, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0x0, 0xeb, 0xd9, 0x0, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xff}; +const byte dialogueLine35[] = {0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0x0, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xaa, 0xaa, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc4, 0xe3, 0xdc, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xb8, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0x0, 0xeb, 0xd9, 0x0, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xff}; const byte *dialogue[DIA_SIZE] = { @@ -80,25 +80,25 @@ dialogueLine34, dialogueLine35, }; -const byte dia_textGreet_rse[] = {0xd1, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0x0, 0x0, 0xc3, 0x0, 0xe8, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xe0, 0xd8, 0xfe, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xca, 0xc9, 0xc5, 0x0, 0xc7, 0xc9, 0xc8, 0x0, 0xce, 0xcc, 0xbb, 0xc3, 0xc8, 0xbf, 0xcc, 0xb8, 0xff}; -const byte dia_textGreet_frlg[] = {0xc3, 0x0, 0xe1, 0xd5, 0xed, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xe2, 0xe3, 0xeb, 0x0, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xff}; -const byte dia_textMoveBox_rs[] = {0xfc, 0x0, 0x0, 0xc9, 0xdc, 0x0, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0x0, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe9, 0xe2, 0xe0, 0xe3, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd8, 0xe3, 0xe3, 0xe6, 0x0, 0xff}; -const byte dia_textMoveBox_frlg[] = {0xfc, 0x0, 0x0, 0xc9, 0xdc, 0x0, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0x0, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd6, 0xe3, 0xec, 0xd9, 0xe7, 0x0, 0xff}; -const byte dia_textMoveBox_e[] = {0xfc, 0x0, 0x0, 0xc9, 0xdc, 0x0, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0x0, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe0, 0xd5, 0xe2, 0xe8, 0xe7, 0x0, 0xff}; -const byte dia_textWeHere_r[] = {0xfc, 0x0, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xc7, 0xbb, 0xd2, 0xc3, 0xbf, 0xb8, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0x0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xb8, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0x0, 0xe2, 0xe3, 0x0, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0x0, 0xff}; -const byte dia_textWeHere_s[] = {0xfc, 0x0, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xbb, 0xcc, 0xbd, 0xc2, 0xc3, 0xbf, 0xb8, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0x0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xb8, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0x0, 0xe2, 0xe3, 0x0, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0x0, 0xff}; -const byte dia_textWeHere_frlg[] = {0xfc, 0x0, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xc1, 0xc3, 0xc9, 0xd0, 0xbb, 0xc8, 0xc8, 0xc3, 0xb8, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0x0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xb8, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0x0, 0xe2, 0xe3, 0x0, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0x0, 0xff}; -const byte dia_textWeHere_e[] = {0xfc, 0x0, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0xe7, 0x0, 0xc7, 0xbb, 0xd2, 0xc3, 0xbf, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xcc, 0xbd, 0xc2, 0xc3, 0xbf, 0xb8, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0x0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xb8, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0x0, 0xe2, 0xe3, 0x0, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0x0, 0xff}; -const byte dia_textRecieved[] = {0xfc, 0x0, 0x0, 0xfd, 0x0, 0x0, 0xcd, 0x0, 0xca, 0xc9, 0xc5, 0x0, 0xc7, 0xc9, 0xc8, 0x0, 0xeb, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0x0, 0xff}; -const byte dia_textYouMustBe_first[] = {0xbb, 0xdc, 0x0, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xfd, 0x0, 0x0, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe8, 0xe3, 0xe0, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd7, 0xe3, 0xe1, 0xdd, 0xe2, 0xdb, 0xb8, 0xfb, 0xc9, 0xdc, 0x0, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0x0, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0x0, 0xfe, 0xc9, 0xe6, 0x0, 0x0, 0xe6, 0xd5, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdd, 0xe2, 0xe8, 0xe6, 0xe3, 0xd8, 0xe9, 0xd7, 0xd9, 0x0, 0xe1, 0xed, 0xe7, 0xd9, 0xe0, 0xda, 0xb8, 0xff}; -const byte dia_textYouMustBe_second[] = {0xbb, 0xdc, 0x0, 0x0, 0xfd, 0x0, 0x0, 0x0, 0xd1, 0xd9, 0xe0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0x0, 0xc1, 0xe3, 0xe3, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xe7, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xfb, 0xc9, 0xdc, 0x0, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0x0, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0x0, 0xff}; -const byte dia_textIAm_first[] = {0xfc, 0x0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xd5, 0x0, 0xdb, 0xe0, 0xe3, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xe3, 0xe8, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd9, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc3, 0xe2, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xe0, 0xdd, 0xd7, 0xd9, 0xb8, 0xfb, 0xc7, 0xed, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0x0, 0x0, 0xfa, 0xbb, 0xdc, 0x0, 0x0, 0xe2, 0xe3, 0x0, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0x0, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0xfe, 0xe2, 0xd5, 0xe1, 0xd9, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0xb8, 0xfb, 0xc7, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0x0, 0x0, 0xdd, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0x0, 0xff}; -const byte dia_textIAm_second[] = {0xfc, 0x0, 0x0, 0xc3, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc3, 0x0, 0x0, 0xdb, 0xe0, 0xe3, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xe3, 0xe8, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd9, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc3, 0xe2, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xe0, 0xdd, 0xd7, 0xd9, 0xb8, 0xfb, 0xc7, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0x0, 0x0, 0xdd, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0x0, 0xff}; -const byte dia_textPCConvo[] = {0xfc, 0x0, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbb, 0xdc, 0x0, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0x0, 0x0, 0xc3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xdd, 0xe8, 0xfe, 0xfd, 0x0, 0x0, 0xdc, 0xd5, 0xe7, 0x0, 0xd5, 0xe6, 0xe6, 0xdd, 0xea, 0xd9, 0xd8, 0x0, 0xfb, 0xfc, 0x0, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0xe2, 0xd8, 0xd9, 0xd9, 0xd8, 0x0, 0x0, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x0, 0xc7, 0xc9, 0xc8, 0x0, 0xfb, 0xfc, 0x0, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbf, 0xec, 0xd7, 0xd9, 0xe0, 0xe0, 0xd9, 0xe2, 0xe8, 0x0, 0x0, 0xc3, 0x0, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xfe, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe1, 0xd9, 0xe2, 0xe8, 0xd5, 0xe6, 0xdd, 0xe0, 0xed, 0x0, 0x0, 0xe7, 0xe8, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xff}; -const byte dia_textPCThanks[] = {0xfc, 0x0, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xbd, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0x0, 0xfb, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0x0, 0xff}; -const byte dia_textThank[] = {0xfc, 0x0, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xe8, 0xe3, 0xe4, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xd6, 0xed, 0x0, 0x0, 0xfd, 0x0, 0x0, 0xfb, 0xc3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe0, 0xe0, 0x0, 0xd9, 0xec, 0xd7, 0xe9, 0xe7, 0xd9, 0x0, 0xe1, 0xd9, 0x0, 0x0, 0xc3, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xb8, 0x0, 0xfa, 0xcf, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xe3, 0xe9, 0xe6, 0x0, 0xe4, 0xd5, 0xe8, 0xdc, 0xe7, 0x0, 0xd7, 0xe6, 0xe3, 0xe7, 0xe7, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xff}; -const byte dia_textPCFull[] = {0xfc, 0x0, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0x0, 0xdd, 0xe7, 0x0, 0xda, 0xe9, 0xe0, 0xe0, 0x0, 0xfb, 0xc1, 0xe3, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0x0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x0, 0xc7, 0xc9, 0xc8, 0xb8, 0xff}; -const byte dia_textLookerFull[] = {0xfc, 0x0, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xcd, 0xe4, 0xd9, 0xd5, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xea, 0xd9, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0x0, 0x0, 0xfd, 0x0, 0x0, 0xfb, 0xc3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0x0, 0x0, 0xc3, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xed, 0xfe, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xb8, 0xff};const byte option_english[] = {0xbf, 0xe2, 0xdb, 0xe0, 0xdd, 0xe7, 0xdc, 0xff}; +const byte dia_textGreet_rse[] = {0xd1, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0x0, 0x0, 0xc3, 0xfe, 0xe8, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xe0, 0xd8, 0xfb, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xca, 0xc9, 0xc5, 0x0, 0xc7, 0xc9, 0xc8, 0x0, 0xce, 0xcc, 0xbb, 0xc3, 0xc8, 0xbf, 0xcc, 0xb8, 0xff}; +const byte dia_textGreet_frlg[] = {0xc3, 0x0, 0xe1, 0xd5, 0xed, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0xfe, 0xe2, 0xe3, 0xeb, 0x0, 0xfb, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xff}; +const byte dia_textMoveBox_rs[] = {0xfc, 0x0, 0x0, 0xc9, 0xdc, 0x0, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0x0, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0xfe, 0xe9, 0xe2, 0xe0, 0xe3, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd8, 0xe3, 0xe3, 0xe6, 0x0, 0xff}; +const byte dia_textMoveBox_frlg[] = {0xfc, 0x0, 0x0, 0xc9, 0xdc, 0x0, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0x0, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0xfe, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xe3, 0xec, 0xd9, 0xe7, 0x0, 0xff}; +const byte dia_textMoveBox_e[] = {0xfc, 0x0, 0x0, 0xc9, 0xdc, 0x0, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0x0, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0xfe, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe4, 0xe0, 0xd5, 0xe2, 0xe8, 0xe7, 0x0, 0xff}; +const byte dia_textWeHere_r[] = {0xfb, 0xff}; +const byte dia_textWeHere_s[] = {0xfb, 0xff}; +const byte dia_textWeHere_frlg[] = {0xfb, 0xff}; +const byte dia_textWeHere_e[] = {0xfb, 0xff}; +const byte dia_textRecieved[] = {0xfc, 0x0, 0x0, 0xfd, 0x0, 0x0, 0xcd, 0x0, 0xca, 0xc9, 0xc5, 0x0, 0xc7, 0xc9, 0xc8, 0x0, 0xeb, 0xd9, 0xe6, 0xd9, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0x0, 0xff}; +const byte dia_textYouMustBe_first[] = {0xbb, 0xdc, 0x0, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xfd, 0x0, 0x0, 0x0, 0xc3, 0xfe, 0xeb, 0xd5, 0xe7, 0x0, 0xe8, 0xe3, 0xe0, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd7, 0xe3, 0xe1, 0xdd, 0xe2, 0xdb, 0xb8, 0xfb, 0xc9, 0xdc, 0x0, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0xfe, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0x0, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0x0, 0xfb, 0xc9, 0xe6, 0x0, 0x0, 0xe6, 0xd5, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0xfe, 0xdd, 0xe2, 0xe8, 0xe6, 0xe3, 0xd8, 0xe9, 0xd7, 0xd9, 0x0, 0xe1, 0xed, 0xe7, 0xd9, 0xe0, 0xda, 0xb8, 0xff}; +const byte dia_textYouMustBe_second[] = {0xbb, 0xdc, 0x0, 0x0, 0xfd, 0x0, 0x0, 0x0, 0xd1, 0xd9, 0xe0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xfe, 0xc1, 0xe3, 0xe3, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xfb, 0xc9, 0xdc, 0x0, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0xfe, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0x0, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0x0, 0xff}; +const byte dia_textIAm_first[] = {0xfb, 0xff}; +const byte dia_textIAm_second[] = {0xfb, 0xff}; +const byte dia_textPCConvo[] = {0xfc, 0x0, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbb, 0xdc, 0x0, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0x0, 0xfb, 0xc3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xdd, 0xe8, 0x0, 0xfd, 0x0, 0x0, 0xdc, 0xd5, 0xe7, 0xfe, 0xd5, 0xe6, 0xe6, 0xdd, 0xea, 0xd9, 0xd8, 0x0, 0xfb, 0xfc, 0x0, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0xe2, 0xd8, 0xd9, 0xd9, 0xd8, 0x0, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0xfe, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x0, 0xc7, 0xc9, 0xc8, 0x0, 0xfb, 0xfc, 0x0, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbf, 0xec, 0xd7, 0xd9, 0xe0, 0xe0, 0xd9, 0xe2, 0xe8, 0x0, 0xfb, 0xc3, 0x0, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xfe, 0xe1, 0xe3, 0xe1, 0xd9, 0xe2, 0xe8, 0xd5, 0xe6, 0xdd, 0xe0, 0xed, 0x0, 0x0, 0xe7, 0xe8, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xff}; +const byte dia_textPCThanks[] = {0xfb, 0xff}; +const byte dia_textThank[] = {0xfc, 0x0, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xe8, 0xe3, 0xe4, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xd6, 0xed, 0x0, 0xfe, 0xfd, 0x0, 0x0, 0xfb, 0xff}; +const byte dia_textPCFull[] = {0xfc, 0x0, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0x0, 0xdd, 0xe7, 0x0, 0xda, 0xe9, 0xe0, 0xe0, 0x0, 0xfb, 0xff}; +const byte dia_textLookerFull[] = {0xfb, 0xff};const byte option_english[] = {0xbf, 0xe2, 0xdb, 0xe0, 0xdd, 0xe7, 0xdc, 0xff}; const byte option_japanese[] = {0xc4, 0xd5, 0xe4, 0xd5, 0xe2, 0xd9, 0xe7, 0xd9, 0xff}; const byte option_spanish[] = {0xcd, 0xe4, 0xd5, 0xe2, 0xdd, 0xe7, 0xdc, 0xff}; const byte option_french[] = {0xc0, 0xe6, 0xd9, 0xe2, 0xd7, 0xdc, 0xff}; @@ -117,86 +117,86 @@ const byte press_start[] = {0xca, 0xe9, 0xe7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, const byte option_transfer[] = {0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0xff}; const byte option_dreamdex[] = {0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xff}; const byte option_credits[] = {0xbd, 0xe6, 0xd9, 0xd8, 0xdd, 0xe8, 0xe7, 0xff}; -const byte intro_first[] = {0xc2, 0xd9, 0xe0, 0xe0, 0xe3, 0x0, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xfe, 0xfe, 0xc4, 0xe9, 0xe7, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xeb, 0xe3, 0xe6, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xd5, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xd1, 0xc3, 0xc6, 0xc6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xed, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0xb8, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe0, 0xe3, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xd6, 0xd9, 0xe8, 0xd5, 0x0, 0xfe, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xb8, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xdd, 0xd8, 0x0, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd9, 0xe2, 0xde, 0xe3, 0xed, 0x0, 0xfe, 0xfe, 0x0, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xff}; -const byte intro_legal[] = {0xca, 0xe3, 0xdf, 0x0, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe3, 0xda, 0xfe, 0xe0, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd5, 0xe4, 0xe4, 0xe6, 0xd9, 0xd7, 0xdd, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xd5, 0xe2, 0xd7, 0xdc, 0xdd, 0xe7, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xda, 0xdd, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xb8, 0x0, 0xc3, 0xe8, 0xfe, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xbb, 0xc6, 0xd1, 0xbb, 0xd3, 0xcd, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0xb8, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0xfe, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xb8, 0xfe, 0xfe, 0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0x0, 0x0, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0x0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe1, 0xe9, 0xe7, 0xdd, 0xd7, 0xfe, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xeb, 0xe2, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0x0, 0x0, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0x0, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0x0, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0xb8, 0xfe, 0xfe, 0xfe, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xff}; -const byte cart_load_error[] = {0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xb8, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xdd, 0xe2, 0xe7, 0xd9, 0xe6, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0x0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xb8, 0xfe, 0xfe, 0xbb, 0xe0, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xea, 0xd9, 0xe0, 0xed, 0x0, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xb8, 0xff}; -const byte pulled_cart_error[] = {0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xb8, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xb8, 0xff}; -const byte send_multiboot_instructions[] = {0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xfe, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xdd, 0xe2, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0x0, 0xe1, 0xe3, 0xd8, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xc6, 0xdd, 0xe2, 0xdf, 0xfe, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0xb8, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0xe2, 0x0, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xfe, 0xe8, 0xe3, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xb8, 0xff}; -const byte send_multiboot_wait[] = {0xcd, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0xfe, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xb8, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0xfe, 0xeb, 0xd5, 0xdd, 0xe8, 0xb8, 0xfe, 0xfe, 0xc2, 0xe3, 0xe0, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbc, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xb8, 0xff}; -const byte send_multiboot_success[] = {0xfe, 0xca, 0xe3, 0xdf, 0x0, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0x0, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xd5, 0xed, 0xfe, 0xe2, 0xe3, 0xeb, 0x0, 0xe4, 0xe3, 0xeb, 0xd9, 0xe6, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xb8, 0xff}; -const byte send_multiboot_failure[] = {0xfe, 0xbb, 0xe2, 0x0, 0xd9, 0xe6, 0xe6, 0xe3, 0xe6, 0x0, 0xe3, 0xd7, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0xfe, 0xc1, 0xbc, 0xb8, 0x0, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xe6, 0xe9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xfe, 0xe7, 0xd7, 0xe6, 0xd9, 0xd9, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xb8, 0xff}; +const byte intro_first[] = {0xc2, 0xd9, 0xe0, 0xe0, 0xe3, 0x0, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xfe, 0xfe, 0xc4, 0xe9, 0xe7, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xeb, 0xe3, 0xe6, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xd5, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xd1, 0xc3, 0xc6, 0xc6, 0xfe, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xed, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0xb8, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe0, 0xe3, 0xe2, 0xdb, 0xd9, 0xe6, 0xfe, 0xdd, 0xe2, 0x0, 0xd6, 0xd9, 0xe8, 0xd5, 0x0, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0xfe, 0xd5, 0xe6, 0xd9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0xfe, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xb8, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xdd, 0xe2, 0xdb, 0xfe, 0xe7, 0xd5, 0xdd, 0xd8, 0x0, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd9, 0xe2, 0xde, 0xe3, 0xed, 0x0, 0x0, 0xfb, 0x0, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff}; +const byte intro_legal[] = {0xca, 0xe3, 0xdf, 0x0, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0xfe, 0xe3, 0xe9, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe0, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd5, 0xe4, 0xe4, 0xe6, 0xd9, 0xd7, 0xdd, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0x0, 0xda, 0xe6, 0xd5, 0xe2, 0xd7, 0xdc, 0xdd, 0xe7, 0xd9, 0xfe, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xda, 0xdd, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xb8, 0x0, 0xc3, 0xe8, 0xfe, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xbb, 0xc6, 0xd1, 0xbb, 0xd3, 0xcd, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0xb8, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0xfe, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xb8, 0xfe, 0xfe, 0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0x0, 0x0, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0x0, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xe1, 0xe9, 0xe7, 0xdd, 0xd7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xeb, 0xe2, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0x0, 0x0, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0x0, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xc1, 0xbb, 0xc7, 0xbf, 0x0, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0xb8, 0x0, 0xfb, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xff}; +const byte cart_load_error[] = {0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xfe, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xb8, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0xfe, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xdd, 0xe2, 0xe7, 0xd9, 0xe6, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0x0, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe2, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0xfe, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xb8, 0xfb, 0xbb, 0xe0, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xea, 0xd9, 0xe0, 0xed, 0x0, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0x0, 0xe8, 0xe3, 0xfe, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xb8, 0xff}; +const byte pulled_cart_error[] = {0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xb8, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe8, 0xe9, 0xe6, 0xe2, 0xfe, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xe6, 0xd9, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xb8, 0xff}; +const byte send_multiboot_instructions[] = {0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xdd, 0xe2, 0xfe, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0x0, 0xe1, 0xe3, 0xd8, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0xfe, 0xd5, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xc6, 0xdd, 0xe2, 0xdf, 0x0, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0xb8, 0xfb, 0xce, 0xdc, 0xd9, 0xe2, 0x0, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0xfe, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xb8, 0xff}; +const byte send_multiboot_wait[] = {0xcd, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0xfe, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xb8, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xeb, 0xd5, 0xdd, 0xe8, 0xb8, 0xfb, 0xc2, 0xe3, 0xe0, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbc, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xb8, 0xff}; +const byte send_multiboot_success[] = {0xfe, 0xca, 0xe3, 0xdf, 0x0, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0xfe, 0xeb, 0xd5, 0xe7, 0x0, 0xe7, 0xd9, 0xe2, 0xe8, 0xfe, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0x0, 0x0, 0xd3, 0xe3, 0xe9, 0xfe, 0xe1, 0xd5, 0xed, 0x0, 0xe2, 0xe3, 0xeb, 0x0, 0xe4, 0xe3, 0xeb, 0xd9, 0xe6, 0x0, 0xe3, 0xda, 0xda, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xb8, 0xff}; +const byte send_multiboot_failure[] = {0xfe, 0xbb, 0xe2, 0x0, 0xd9, 0xe6, 0xe6, 0xe3, 0xe6, 0x0, 0xe3, 0xd7, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xd8, 0xfe, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0xb8, 0xfb, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xfe, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xdd, 0xe2, 0xe7, 0xe8, 0xe6, 0xe9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0x0, 0xe7, 0xd7, 0xe6, 0xd9, 0xd9, 0xe2, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xb8, 0xff}; const byte kanto_name[] = {0xc5, 0xbb, 0xc8, 0xce, 0xc9, 0xf0, 0xff}; const byte johto_name[] = {0xc4, 0xc9, 0xc2, 0xce, 0xc9, 0xf0, 0xff}; -const byte credits_page_1[] = {0xc6, 0xd9, 0xd5, 0xd8, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xf0, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff}; +const byte credits_page_1[] = {0xc6, 0xd9, 0xd5, 0xd8, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xf0, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff}; const byte credits_page_2[] = {0xc6, 0xe3, 0xdb, 0xe3, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xe3, 0x0, 0xdd, 0xd8, 0xd9, 0xd5, 0xe8, 0xe3, 0xe6, 0xf0, 0xfe, 0xfe, 0x0, 0xc4, 0xe3, 0xe1, 0xd9, 0xfe, 0xfe, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xeb, 0xe3, 0xe6, 0xdf, 0xf0, 0xfe, 0xfe, 0x0, 0xc6, 0xc4, 0x0, 0xbc, 0xdd, 0xe6, 0xd8, 0xe1, 0xd5, 0xe2, 0xff}; -const byte credits_page_3[] = {0xc3, 0xd7, 0xe3, 0xe2, 0x0, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0x0, 0xc6, 0xe9, 0xdd, 0xdb, 0xdd, 0xce, 0xc5, 0xc9, 0xfe, 0x0, 0xc1, 0xe9, 0xdd, 0xbb, 0xd6, 0xd9, 0xe0, 0xfe, 0x0, 0xcd, 0xe3, 0xe9, 0xe6, 0xbb, 0xe4, 0xe4, 0xe0, 0xd9, 0xfe, 0x0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd5, 0xe6, 0xe8, 0xdd, 0xe7, 0xe8, 0xe7, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0xfe, 0xcd, 0xdc, 0xe3, 0xeb, 0xd8, 0xe3, 0xeb, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0x0, 0xbd, 0xe0, 0xd9, 0xd5, 0xe6, 0xff}; -const byte credits_page_4[] = {0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xe6, 0xd6, 0xdd, 0xe8, 0xe6, 0xd5, 0xe6, 0xed, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0xfe, 0xbf, 0xec, 0xd9, 0xd7, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0x0, 0xce, 0xdd, 0xe1, 0xe3, 0xd0, 0xc7, 0xfe, 0xfe, 0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0xfe, 0xda, 0xe9, 0xe2, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xf0, 0x0, 0xfb, 0xe6, 0xdd, 0xe7, 0xdd, 0xe2, 0xdb, 0xca, 0xdc, 0xdd, 0xe0, 0xff}; -const byte credits_page_5[] = {0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0x0, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0x0, 0xe6, 0xdd, 0xe0, 0xd9, 0xed, 0xdf, 0xa7, 0xa5, 0xfe, 0x0, 0xcd, 0xdc, 0xd5, 0xe3, 0xff}; -const byte credits_page_6[] = {0xcd, 0xe4, 0xd5, 0xd7, 0xd9, 0x0, 0xc9, 0xe4, 0xe8, 0xdd, 0xe1, 0xdd, 0xee, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xf0, 0xfe, 0xfe, 0x0, 0xd9, 0xd5, 0xe7, 0xed, 0xd5, 0xe7, 0xe4, 0xdd, 0xa4, 0xa2, 0xa5, 0xff}; +const byte credits_page_3[] = {0xc3, 0xd7, 0xe3, 0xe2, 0x0, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0x0, 0xc6, 0xe9, 0xdd, 0xdb, 0xdd, 0xce, 0xc5, 0xc9, 0xfe, 0x0, 0xc1, 0xe9, 0xdd, 0xbb, 0xd6, 0xd9, 0xe0, 0xfe, 0x0, 0xcd, 0xe3, 0xe9, 0xe6, 0xbb, 0xe4, 0xe4, 0xe0, 0xd9, 0xfe, 0x0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd5, 0xe6, 0xe8, 0xdd, 0xe7, 0xe8, 0xe7, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xcd, 0xdc, 0xe3, 0xeb, 0xd8, 0xe3, 0xeb, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0x0, 0xbd, 0xe0, 0xd9, 0xd5, 0xe6, 0xff}; +const byte credits_page_4[] = {0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xe6, 0xd6, 0xdd, 0xe8, 0xe6, 0xd5, 0xe6, 0xed, 0xfe, 0xbd, 0xe3, 0xd8, 0xd9, 0x0, 0xbf, 0xec, 0xd9, 0xd7, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0x0, 0xce, 0xdd, 0xe1, 0xe3, 0xd0, 0xc7, 0xff}; +const byte credits_page_5[] = {0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0x0, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0x0, 0xe6, 0xdd, 0xe0, 0xd9, 0xed, 0xdf, 0xa7, 0xa5, 0xfe, 0x0, 0xcd, 0xdc, 0xd5, 0xe3, 0xff}; +const byte credits_page_6[] = {0xcd, 0xe4, 0xd5, 0xd7, 0xd9, 0x0, 0xc9, 0xe4, 0xe8, 0xdd, 0xe1, 0xdd, 0xee, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xf0, 0xfe, 0xfe, 0x0, 0xd9, 0xd5, 0xe7, 0xed, 0xd5, 0xe7, 0xe4, 0xdd, 0xa4, 0xa2, 0xa5, 0xfe, 0xfe, 0xc6, 0xe3, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xcc, 0xc9, 0xc7, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0xfe, 0xda, 0xe9, 0xe2, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xf0, 0x0, 0xfb, 0x0, 0xe6, 0xdd, 0xe7, 0xdd, 0xe2, 0xdb, 0xca, 0xdc, 0xdd, 0xe0, 0xff}; const byte credits_page_7[] = {0xbc, 0xe9, 0xdd, 0xe0, 0xe8, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xf0, 0xfe, 0xfe, 0xfe, 0x0, 0xbe, 0xd9, 0xea, 0xdf, 0xdd, 0xe8, 0xca, 0xe6, 0xe3, 0xfe, 0x0, 0xc6, 0xdd, 0xd6, 0xce, 0xe3, 0xe2, 0xd7, 0xfe, 0x0, 0xc6, 0xdd, 0xd6, 0xc1, 0xbc, 0xbb, 0xff}; -const byte credits_page_8[] = {0xc3, 0xe2, 0xe7, 0xe4, 0xdd, 0xe6, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xe7, 0x0, 0xe3, 0xda, 0xf0, 0xfe, 0xfe, 0x0, 0xc1, 0xe3, 0xe4, 0xe4, 0xdd, 0xd9, 0xe6, 0xfe, 0x0, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0xfe, 0x0, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0x0, 0xcc, 0xbf, 0xce, 0xc3, 0xcc, 0xbf, 0xff}; +const byte credits_page_8[] = {0xc3, 0xe2, 0xe7, 0xe4, 0xdd, 0xe6, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xeb, 0xe3, 0xe6, 0xdf, 0xe7, 0x0, 0xe3, 0xda, 0xf0, 0xfe, 0xfe, 0x0, 0xc1, 0xe3, 0xe4, 0xe4, 0xdd, 0xd9, 0xe6, 0xfe, 0x0, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0xfe, 0x0, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0x0, 0xcc, 0xbf, 0xce, 0xc3, 0xcc, 0xbf, 0xff}; const byte credits_page_9[] = {0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xe7, 0x0, 0xe9, 0xe7, 0xd9, 0xd8, 0xf0, 0xfe, 0xfe, 0xfe, 0x0, 0xc2, 0xd9, 0xec, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0x0, 0xca, 0xc5, 0xc2, 0xd9, 0xd2, 0xfe, 0x0, 0xd1, 0xbd, 0xa4, 0xce, 0xe3, 0xe3, 0xe0, 0xfe, 0x0, 0xcf, 0xe7, 0xd9, 0xe2, 0xe8, 0xdd, 0xfe, 0x0, 0xcd, 0xd5, 0xe4, 0xe4, 0xed, 0xc7, 0xdd, 0xd8, 0xce, 0xe3, 0xbb, 0xc1, 0xbc, 0xff}; const byte credits_page_10[] = {0xc9, 0xe4, 0xd9, 0xe2, 0x0, 0xcd, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xc6, 0xdd, 0xd6, 0xe6, 0xd5, 0xe6, 0xdd, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0x0, 0xe0, 0xdd, 0xd6, 0xe8, 0xe3, 0xe2, 0xd7, 0x0, 0xd9, 0xec, 0xd5, 0xe1, 0xe4, 0xe0, 0xd9, 0xe7, 0xfe, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0x0, 0xdb, 0xd6, 0xd5, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0x0, 0xd5, 0xeb, 0xd9, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0x0, 0xd5, 0xe6, 0xd8, 0xe9, 0xdd, 0xe2, 0xe3, 0x0, 0xe4, 0xe3, 0xdf, 0xd9, 0x0, 0xdb, 0xd9, 0xe2, 0xa3, 0xff}; -const byte credits_page_11[] = {0xcc, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0x0, 0xd5, 0xe6, 0xe1, 0x0, 0xd8, 0xe3, 0xd7, 0xe7, 0xfe, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0xfe, 0xc0, 0xe9, 0xe0, 0xe0, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xe7, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe3, 0xe9, 0xe2, 0xd8, 0x0, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0x0, 0xe7, 0x0, 0xc1, 0xdd, 0xe8, 0xc2, 0xe9, 0xd6, 0xff}; -const byte credits_page_12[] = {0xcc, 0xc9, 0xc7, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xd8, 0xd9, 0xd7, 0xe3, 0xe1, 0xe4, 0xdd, 0xe0, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0x0, 0xd7, 0xe6, 0xd9, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xcc, 0xbf, 0xce, 0x0, 0xe8, 0xd9, 0xd5, 0xe1, 0xff}; -const byte credits_page_13[] = {0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0xf0, 0xfe, 0xfe, 0x0, 0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe4, 0xd9, 0xd8, 0xdd, 0xd5, 0xfe, 0x0, 0xcd, 0xd9, 0xe6, 0xd9, 0xd6, 0xdd, 0xdd, 0xfe, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xbb, 0xca, 0xc3, 0xb8, 0xd7, 0xe3, 0xe1, 0xff}; +const byte credits_page_11[] = {0xcc, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0x0, 0xd5, 0xe6, 0xe1, 0x0, 0xd8, 0xe3, 0xd7, 0xe7, 0xfe, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0xfe, 0xc0, 0xe9, 0xe0, 0xe0, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xe7, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xfe, 0xda, 0xe3, 0xe9, 0xe2, 0xd8, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0x0, 0xe7, 0x0, 0xc1, 0xdd, 0xe8, 0xc2, 0xe9, 0xd6, 0xff}; +const byte credits_page_12[] = {0xcc, 0xc9, 0xc7, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xd8, 0xd9, 0xd7, 0xe3, 0xe1, 0xe4, 0xdd, 0xe0, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xfe, 0xd7, 0xe6, 0xd9, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xcc, 0xbf, 0xce, 0xfe, 0xe8, 0xd9, 0xd5, 0xe1, 0xff}; +const byte credits_page_13[] = {0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0xfe, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xf0, 0xfe, 0xfe, 0x0, 0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe4, 0xd9, 0xd8, 0xdd, 0xd5, 0xfe, 0x0, 0xcd, 0xd9, 0xe6, 0xd9, 0xd6, 0xdd, 0xdd, 0xfe, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xbb, 0xca, 0xc3, 0xb8, 0xd7, 0xe3, 0xe1, 0xff}; const byte credits_page_14[] = {0xbe, 0xdd, 0xe7, 0xd7, 0xe3, 0xe6, 0xd8, 0x0, 0xd7, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xe8, 0xed, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0x0, 0xc2, 0xd9, 0xec, 0x0, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0xfe, 0x0, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0x0, 0xe4, 0xe6, 0xd9, 0xe8, 0xff}; const byte credits_page_15[] = {0xd1, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xfe, 0x0, 0xc7, 0xd5, 0xd8, 0xff}; -const byte credits_page_16[] = {0xbb, 0xe2, 0x0, 0xdd, 0xe1, 0xe1, 0xd9, 0xe2, 0xe7, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0x0, 0xfe, 0xeb, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0xb8, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xe3, 0xe9, 0xe0, 0xd8, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0xb8, 0xff}; -const byte credits_page_17[] = {0xcd, 0xe4, 0xd9, 0xd7, 0xdd, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xbf, 0xe2, 0xe2, 0x0, 0xfe, 0xe6, 0xe3, 0xdf, 0xe9, 0x0, 0x0, 0xcd, 0xe0, 0xd9, 0xd9, 0xe4, 0xed, 0x0, 0x0, 0xbf, 0xee, 0xd5, 0x0, 0xfe, 0xe7, 0xd5, 0xe6, 0xd5, 0xdc, 0xe8, 0xe3, 0xe2, 0xdd, 0xe2, 0x0, 0x0, 0xbc, 0xd5, 0xe7, 0xd5, 0xd6, 0xdd, 0x0, 0x0, 0xc7, 0xd5, 0xd8, 0x0, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe3, 0xe2, 0xd9, 0x0, 0xeb, 0xdc, 0xe3, 0x0, 0xdc, 0xd5, 0xe7, 0xfe, 0xe0, 0xdd, 0xe7, 0xe8, 0xd9, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xd5, 0xd6, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe1, 0xe3, 0xe2, 0xe8, 0xdc, 0xe7, 0x0, 0xff}; -const byte credits_page_18[] = {0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0x0, 0xfe, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0x0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xe6, 0xd9, 0xe0, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xd7, 0xe3, 0xe4, 0xed, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0x0, 0xfe, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xb8, 0x0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0xfe, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0x0, 0xc3, 0xe2, 0xd7, 0xb8, 0xff}; -const byte credits_page_19[] = {0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0xfe, 0xd9, 0xe2, 0xd8, 0xe3, 0xe6, 0xe7, 0xd9, 0xd8, 0x0, 0xe3, 0xe6, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xc0, 0xe6, 0xd9, 0xd5, 0xdf, 0xba, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xb8, 0xff}; +const byte credits_page_16[] = {0xbb, 0xe2, 0x0, 0xdd, 0xe1, 0xe1, 0xd9, 0xe2, 0xe7, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0x0, 0xda, 0xe3, 0xe6, 0xfe, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xdd, 0xe2, 0xfe, 0xe6, 0xd9, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0x0, 0x0, 0xeb, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0xfe, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0xb8, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0xfe, 0xeb, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0xfe, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0xb8, 0xff}; +const byte credits_page_17[] = {0xcd, 0xe4, 0xd9, 0xd7, 0xdd, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xbf, 0xe2, 0xe2, 0x0, 0x0, 0xe6, 0xe3, 0xdf, 0xe9, 0x0, 0x0, 0xcd, 0xe0, 0xd9, 0xd9, 0xe4, 0xed, 0x0, 0xfe, 0xbf, 0xee, 0xd5, 0x0, 0x0, 0xe7, 0xd5, 0xe6, 0xd5, 0xdc, 0xe8, 0xe3, 0xe2, 0xdd, 0xe2, 0x0, 0xfe, 0xbc, 0xd5, 0xe7, 0xd5, 0xd6, 0xdd, 0x0, 0x0, 0xc7, 0xd5, 0xd8, 0x0, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe3, 0xe2, 0xd9, 0x0, 0xeb, 0xdc, 0xe3, 0x0, 0xdc, 0xd5, 0xe7, 0xfe, 0xe0, 0xdd, 0xe7, 0xe8, 0xd9, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0xfe, 0xd5, 0xd6, 0xe3, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0xfe, 0xe1, 0xe3, 0xe2, 0xe8, 0xdc, 0xe7, 0x0, 0xff}; +const byte credits_page_18[] = {0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0x0, 0xfe, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0x0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xfe, 0xe3, 0xda, 0x0, 0xe6, 0xd9, 0xe0, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0xfe, 0xd5, 0xe6, 0xd9, 0x0, 0xd7, 0xe3, 0xe4, 0xed, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0xfe, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0x0, 0x0, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0xfe, 0xc3, 0xe2, 0xd7, 0xb8, 0x0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0x0, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0xfe, 0xc3, 0xe2, 0xd7, 0xb8, 0xff}; +const byte credits_page_19[] = {0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0xfe, 0xd9, 0xe2, 0xd8, 0xe3, 0xe6, 0xe7, 0xd9, 0xd8, 0x0, 0xe3, 0xe6, 0xfe, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xc0, 0xe6, 0xd9, 0xd5, 0xdf, 0xba, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xb8, 0xff}; -const byte PKMN_NAMES0[] = {0xc7, 0xdd, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0xc8, 0xe3, 0xff}; -const byte PKMN_NAMES1[] = {0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe7, 0xd5, 0xe9, 0xe6, 0xff}; +const byte PKMN_NAMES0[] = {0xff}; +const byte PKMN_NAMES1[] = {0xff}; const byte PKMN_NAMES2[] = {0xc3, 0xea, 0xed, 0xe7, 0xd5, 0xe9, 0xe6, 0xff}; -const byte PKMN_NAMES3[] = {0xd0, 0xd9, 0xe2, 0xe9, 0xe7, 0xd5, 0xe9, 0xe6, 0xff}; -const byte PKMN_NAMES4[] = {0xbd, 0xdc, 0xd5, 0xe6, 0xe1, 0xd5, 0xe2, 0xd8, 0xd9, 0xe6, 0xff}; -const byte PKMN_NAMES5[] = {0xbd, 0xdc, 0xd5, 0xe6, 0xe1, 0xd9, 0xe0, 0xd9, 0xe3, 0xe2, 0xff}; -const byte PKMN_NAMES6[] = {0xbd, 0xdc, 0xd5, 0xe6, 0xdd, 0xee, 0xd5, 0xe6, 0xd8, 0xff}; -const byte PKMN_NAMES7[] = {0xcd, 0xe5, 0xe9, 0xdd, 0xe6, 0xe8, 0xe0, 0xd9, 0xff}; -const byte PKMN_NAMES8[] = {0xd1, 0xd5, 0xe6, 0xe8, 0xe3, 0xe6, 0xe8, 0xe0, 0xd9, 0xff}; -const byte PKMN_NAMES9[] = {0xbc, 0xe0, 0xd5, 0xe7, 0xe8, 0xe3, 0xdd, 0xe7, 0xd9, 0xff}; -const byte PKMN_NAMES10[] = {0xbd, 0xd5, 0xe8, 0xd9, 0xe6, 0xe4, 0xdd, 0xd9, 0xff}; +const byte PKMN_NAMES3[] = {0xff}; +const byte PKMN_NAMES4[] = {0xff}; +const byte PKMN_NAMES5[] = {0xff}; +const byte PKMN_NAMES6[] = {0xff}; +const byte PKMN_NAMES7[] = {0xff}; +const byte PKMN_NAMES8[] = {0xff}; +const byte PKMN_NAMES9[] = {0xff}; +const byte PKMN_NAMES10[] = {0xff}; const byte PKMN_NAMES11[] = {0xc7, 0xd9, 0xe8, 0xd5, 0xe4, 0xe3, 0xd8, 0xff}; -const byte PKMN_NAMES12[] = {0xbc, 0xe9, 0xe8, 0xe8, 0xd9, 0xe6, 0xda, 0xe6, 0xd9, 0xd9, 0xff}; +const byte PKMN_NAMES12[] = {0xff}; const byte PKMN_NAMES13[] = {0xd1, 0xd9, 0xd9, 0xd8, 0xe0, 0xd9, 0xff}; const byte PKMN_NAMES14[] = {0xc5, 0xd5, 0xdf, 0xe9, 0xe2, 0xd5, 0xff}; -const byte PKMN_NAMES15[] = {0xbc, 0xd9, 0xd9, 0xd8, 0xe6, 0xdd, 0xe0, 0xe0, 0xff}; +const byte PKMN_NAMES15[] = {0xff}; const byte PKMN_NAMES16[] = {0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xed, 0xff}; -const byte PKMN_NAMES17[] = {0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xe3, 0xe8, 0xe8, 0xe3, 0xff}; +const byte PKMN_NAMES17[] = {0xff}; const byte PKMN_NAMES18[] = {0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xe3, 0xe8, 0xff}; const byte PKMN_NAMES19[] = {0xcc, 0xd5, 0xe8, 0xe8, 0xd5, 0xe8, 0xd5, 0xff}; -const byte PKMN_NAMES20[] = {0xcc, 0xd5, 0xe8, 0xdd, 0xd7, 0xd5, 0xe8, 0xd9, 0xff}; +const byte PKMN_NAMES20[] = {0xff}; const byte PKMN_NAMES21[] = {0xcd, 0xe4, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff}; const byte PKMN_NAMES22[] = {0xc0, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff}; const byte PKMN_NAMES23[] = {0xbf, 0xdf, 0xd5, 0xe2, 0xe7, 0xff}; const byte PKMN_NAMES24[] = {0xbb, 0xe6, 0xd6, 0xe3, 0xdf, 0xff}; const byte PKMN_NAMES25[] = {0xca, 0xdd, 0xdf, 0xd5, 0xd7, 0xdc, 0xe9, 0xff}; const byte PKMN_NAMES26[] = {0xcc, 0xd5, 0xdd, 0xd7, 0xdc, 0xe9, 0xff}; -const byte PKMN_NAMES27[] = {0xcd, 0xd5, 0xe2, 0xd8, 0xe7, 0xdc, 0xe6, 0xd9, 0xeb, 0xff}; -const byte PKMN_NAMES28[] = {0xcd, 0xd5, 0xe2, 0xd8, 0xe7, 0xe0, 0xd5, 0xe7, 0xdc, 0xff}; -const byte PKMN_NAMES29[] = {0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xd5, 0xe2, 0xb6, 0xff}; -const byte PKMN_NAMES30[] = {0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xdd, 0xe2, 0xd5, 0xff}; -const byte PKMN_NAMES31[] = {0xc8, 0xdd, 0xd8, 0xe3, 0xe5, 0xe9, 0xd9, 0xd9, 0xe2, 0xff}; -const byte PKMN_NAMES32[] = {0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xd5, 0xe2, 0xb5, 0xff}; -const byte PKMN_NAMES33[] = {0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xdd, 0xe2, 0xe3, 0xff}; -const byte PKMN_NAMES34[] = {0xc8, 0xdd, 0xd8, 0xe3, 0xdf, 0xdd, 0xe2, 0xdb, 0xff}; -const byte PKMN_NAMES35[] = {0xbd, 0xe0, 0xd9, 0xda, 0xd5, 0xdd, 0xe6, 0xed, 0xff}; -const byte PKMN_NAMES36[] = {0xbd, 0xe0, 0xd9, 0xda, 0xd5, 0xd6, 0xe0, 0xd9, 0xff}; +const byte PKMN_NAMES27[] = {0xff}; +const byte PKMN_NAMES28[] = {0xff}; +const byte PKMN_NAMES29[] = {0xff}; +const byte PKMN_NAMES30[] = {0xff}; +const byte PKMN_NAMES31[] = {0xff}; +const byte PKMN_NAMES32[] = {0xff}; +const byte PKMN_NAMES33[] = {0xff}; +const byte PKMN_NAMES34[] = {0xff}; +const byte PKMN_NAMES35[] = {0xff}; +const byte PKMN_NAMES36[] = {0xff}; const byte PKMN_NAMES37[] = {0xd0, 0xe9, 0xe0, 0xe4, 0xdd, 0xec, 0xff}; -const byte PKMN_NAMES38[] = {0xc8, 0xdd, 0xe2, 0xd9, 0xe8, 0xd5, 0xe0, 0xd9, 0xe7, 0xff}; -const byte PKMN_NAMES39[] = {0xc4, 0xdd, 0xdb, 0xdb, 0xe0, 0xed, 0xe4, 0xe9, 0xda, 0xda, 0xff}; -const byte PKMN_NAMES40[] = {0xd1, 0xdd, 0xdb, 0xdb, 0xe0, 0xed, 0xe8, 0xe9, 0xda, 0xda, 0xff}; +const byte PKMN_NAMES38[] = {0xff}; +const byte PKMN_NAMES39[] = {0xff}; +const byte PKMN_NAMES40[] = {0xff}; const byte PKMN_NAMES41[] = {0xd4, 0xe9, 0xd6, 0xd5, 0xe8, 0xff}; const byte PKMN_NAMES42[] = {0xc1, 0xe3, 0xe0, 0xd6, 0xd5, 0xe8, 0xff}; const byte PKMN_NAMES43[] = {0xc9, 0xd8, 0xd8, 0xdd, 0xe7, 0xdc, 0xff}; const byte PKMN_NAMES44[] = {0xc1, 0xe0, 0xe3, 0xe3, 0xe1, 0xff}; -const byte PKMN_NAMES45[] = {0xd0, 0xdd, 0xe0, 0xd9, 0xe4, 0xe0, 0xe9, 0xe1, 0xd9, 0xff}; +const byte PKMN_NAMES45[] = {0xff}; const byte PKMN_NAMES46[] = {0xca, 0xd5, 0xe6, 0xd5, 0xe7, 0xff}; -const byte PKMN_NAMES47[] = {0xca, 0xd5, 0xe6, 0xd5, 0xe7, 0xd9, 0xd7, 0xe8, 0xff}; +const byte PKMN_NAMES47[] = {0xff}; const byte PKMN_NAMES48[] = {0xd0, 0xd9, 0xe2, 0xe3, 0xe2, 0xd5, 0xe8, 0xff}; -const byte PKMN_NAMES49[] = {0xd0, 0xd9, 0xe2, 0xe3, 0xe1, 0xe3, 0xe8, 0xdc, 0xff}; +const byte PKMN_NAMES49[] = {0xff}; const byte PKMN_NAMES50[] = {0xbe, 0xdd, 0xdb, 0xe0, 0xd9, 0xe8, 0xe8, 0xff}; const byte PKMN_NAMES51[] = {0xbe, 0xe9, 0xdb, 0xe8, 0xe6, 0xdd, 0xe3, 0xff}; const byte PKMN_NAMES52[] = {0xc7, 0xd9, 0xe3, 0xeb, 0xe8, 0xdc, 0xff}; @@ -204,41 +204,41 @@ const byte PKMN_NAMES53[] = {0xca, 0xd9, 0xe6, 0xe7, 0xdd, 0xd5, 0xe2, 0xff}; const byte PKMN_NAMES54[] = {0xca, 0xe7, 0xed, 0xd8, 0xe9, 0xd7, 0xdf, 0xff}; const byte PKMN_NAMES55[] = {0xc1, 0xe3, 0xe0, 0xd8, 0xe9, 0xd7, 0xdf, 0xff}; const byte PKMN_NAMES56[] = {0xc7, 0xd5, 0xe2, 0xdf, 0xd9, 0xed, 0xff}; -const byte PKMN_NAMES57[] = {0xca, 0xe6, 0xdd, 0xe1, 0xd9, 0xd5, 0xe4, 0xd9, 0xff}; -const byte PKMN_NAMES58[] = {0xc1, 0xe6, 0xe3, 0xeb, 0xe0, 0xdd, 0xe8, 0xdc, 0xd9, 0xff}; -const byte PKMN_NAMES59[] = {0xbb, 0xe6, 0xd7, 0xd5, 0xe2, 0xdd, 0xe2, 0xd9, 0xff}; +const byte PKMN_NAMES57[] = {0xff}; +const byte PKMN_NAMES58[] = {0xff}; +const byte PKMN_NAMES59[] = {0xff}; const byte PKMN_NAMES60[] = {0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xd5, 0xdb, 0xff}; -const byte PKMN_NAMES61[] = {0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xdc, 0xdd, 0xe6, 0xe0, 0xff}; -const byte PKMN_NAMES62[] = {0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xe6, 0xd5, 0xe8, 0xdc, 0xff}; +const byte PKMN_NAMES61[] = {0xff}; +const byte PKMN_NAMES62[] = {0xff}; const byte PKMN_NAMES63[] = {0xbb, 0xd6, 0xe6, 0xd5, 0xff}; const byte PKMN_NAMES64[] = {0xc5, 0xd5, 0xd8, 0xd5, 0xd6, 0xe6, 0xd5, 0xff}; -const byte PKMN_NAMES65[] = {0xbb, 0xe0, 0xd5, 0xdf, 0xd5, 0xee, 0xd5, 0xe1, 0xff}; +const byte PKMN_NAMES65[] = {0xff}; const byte PKMN_NAMES66[] = {0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xe4, 0xff}; const byte PKMN_NAMES67[] = {0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xdf, 0xd9, 0xff}; const byte PKMN_NAMES68[] = {0xc7, 0xd5, 0xd7, 0xdc, 0xd5, 0xe1, 0xe4, 0xff}; -const byte PKMN_NAMES69[] = {0xbc, 0xd9, 0xe0, 0xe0, 0xe7, 0xe4, 0xe6, 0xe3, 0xe9, 0xe8, 0xff}; -const byte PKMN_NAMES70[] = {0xd1, 0xd9, 0xd9, 0xe4, 0xdd, 0xe2, 0xd6, 0xd9, 0xe0, 0xe0, 0xff}; -const byte PKMN_NAMES71[] = {0xd0, 0xdd, 0xd7, 0xe8, 0xe6, 0xd9, 0xd9, 0xd6, 0xd9, 0xe0, 0xff}; -const byte PKMN_NAMES72[] = {0xce, 0xd9, 0xe2, 0xe8, 0xd5, 0xd7, 0xe3, 0xe3, 0xe0, 0xff}; -const byte PKMN_NAMES73[] = {0xce, 0xd9, 0xe2, 0xe8, 0xd5, 0xd7, 0xe6, 0xe9, 0xd9, 0xe0, 0xff}; +const byte PKMN_NAMES69[] = {0xff}; +const byte PKMN_NAMES70[] = {0xff}; +const byte PKMN_NAMES71[] = {0xff}; +const byte PKMN_NAMES72[] = {0xff}; +const byte PKMN_NAMES73[] = {0xff}; const byte PKMN_NAMES74[] = {0xc1, 0xd9, 0xe3, 0xd8, 0xe9, 0xd8, 0xd9, 0xff}; -const byte PKMN_NAMES75[] = {0xc1, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xe6, 0xff}; +const byte PKMN_NAMES75[] = {0xff}; const byte PKMN_NAMES76[] = {0xc1, 0xe3, 0xe0, 0xd9, 0xe1, 0xff}; const byte PKMN_NAMES77[] = {0xca, 0xe3, 0xe2, 0xed, 0xe8, 0xd5, 0xff}; -const byte PKMN_NAMES78[] = {0xcc, 0xd5, 0xe4, 0xdd, 0xd8, 0xd5, 0xe7, 0xdc, 0xff}; -const byte PKMN_NAMES79[] = {0xcd, 0xe0, 0xe3, 0xeb, 0xe4, 0xe3, 0xdf, 0xd9, 0xff}; +const byte PKMN_NAMES78[] = {0xff}; +const byte PKMN_NAMES79[] = {0xff}; const byte PKMN_NAMES80[] = {0xcd, 0xe0, 0xe3, 0xeb, 0xd6, 0xe6, 0xe3, 0xff}; -const byte PKMN_NAMES81[] = {0xc7, 0xd5, 0xdb, 0xe2, 0xd9, 0xe1, 0xdd, 0xe8, 0xd9, 0xff}; -const byte PKMN_NAMES82[] = {0xc7, 0xd5, 0xdb, 0xe2, 0xd9, 0xe8, 0xe3, 0xe2, 0xff}; -const byte PKMN_NAMES83[] = {0xc0, 0xd5, 0xe6, 0xda, 0xd9, 0xe8, 0xd7, 0xdc, 0x0, 0xd8, 0xff}; +const byte PKMN_NAMES81[] = {0xff}; +const byte PKMN_NAMES82[] = {0xff}; +const byte PKMN_NAMES83[] = {0xff}; const byte PKMN_NAMES84[] = {0xbe, 0xe3, 0xd8, 0xe9, 0xe3, 0xff}; const byte PKMN_NAMES85[] = {0xbe, 0xe3, 0xd8, 0xe6, 0xdd, 0xe3, 0xff}; const byte PKMN_NAMES86[] = {0xcd, 0xd9, 0xd9, 0xe0, 0xff}; const byte PKMN_NAMES87[] = {0xbe, 0xd9, 0xeb, 0xdb, 0xe3, 0xe2, 0xdb, 0xff}; const byte PKMN_NAMES88[] = {0xc1, 0xe6, 0xdd, 0xe1, 0xd9, 0xe6, 0xff}; const byte PKMN_NAMES89[] = {0xc7, 0xe9, 0xdf, 0xff}; -const byte PKMN_NAMES90[] = {0xcd, 0xdc, 0xd9, 0xe0, 0xe0, 0xd8, 0xd9, 0xe6, 0xff}; -const byte PKMN_NAMES91[] = {0xbd, 0xe0, 0xe3, 0xed, 0xe7, 0xe8, 0xd9, 0xe6, 0xff}; +const byte PKMN_NAMES90[] = {0xff}; +const byte PKMN_NAMES91[] = {0xff}; const byte PKMN_NAMES92[] = {0xc1, 0xd5, 0xe7, 0xe8, 0xe0, 0xed, 0xff}; const byte PKMN_NAMES93[] = {0xc2, 0xd5, 0xe9, 0xe2, 0xe8, 0xd9, 0xe6, 0xff}; const byte PKMN_NAMES94[] = {0xc1, 0xd9, 0xe2, 0xdb, 0xd5, 0xe6, 0xff}; @@ -248,144 +248,144 @@ const byte PKMN_NAMES97[] = {0xc2, 0xed, 0xe4, 0xe2, 0xe3, 0xff}; const byte PKMN_NAMES98[] = {0xc5, 0xe6, 0xd5, 0xd6, 0xd6, 0xed, 0xff}; const byte PKMN_NAMES99[] = {0xc5, 0xdd, 0xe2, 0xdb, 0xe0, 0xd9, 0xe6, 0xff}; const byte PKMN_NAMES100[] = {0xd0, 0xe3, 0xe0, 0xe8, 0xe3, 0xe6, 0xd6, 0xff}; -const byte PKMN_NAMES101[] = {0xbf, 0xe0, 0xd9, 0xd7, 0xe8, 0xe6, 0xe3, 0xd8, 0xd9, 0xff}; -const byte PKMN_NAMES102[] = {0xbf, 0xec, 0xd9, 0xdb, 0xdb, 0xd7, 0xe9, 0xe8, 0xd9, 0xff}; -const byte PKMN_NAMES103[] = {0xbf, 0xec, 0xd9, 0xdb, 0xdb, 0xe9, 0xe8, 0xe3, 0xe6, 0xff}; +const byte PKMN_NAMES101[] = {0xff}; +const byte PKMN_NAMES102[] = {0xff}; +const byte PKMN_NAMES103[] = {0xff}; const byte PKMN_NAMES104[] = {0xbd, 0xe9, 0xd6, 0xe3, 0xe2, 0xd9, 0xff}; const byte PKMN_NAMES105[] = {0xc7, 0xd5, 0xe6, 0xe3, 0xeb, 0xd5, 0xdf, 0xff}; -const byte PKMN_NAMES106[] = {0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xe0, 0xd9, 0xd9, 0xff}; -const byte PKMN_NAMES107[] = {0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xd7, 0xdc, 0xd5, 0xe2, 0xff}; -const byte PKMN_NAMES108[] = {0xc6, 0xdd, 0xd7, 0xdf, 0xdd, 0xe8, 0xe9, 0xe2, 0xdb, 0xff}; +const byte PKMN_NAMES106[] = {0xff}; +const byte PKMN_NAMES107[] = {0xff}; +const byte PKMN_NAMES108[] = {0xff}; const byte PKMN_NAMES109[] = {0xc5, 0xe3, 0xda, 0xda, 0xdd, 0xe2, 0xdb, 0xff}; const byte PKMN_NAMES110[] = {0xd1, 0xd9, 0xd9, 0xee, 0xdd, 0xe2, 0xdb, 0xff}; const byte PKMN_NAMES111[] = {0xcc, 0xdc, 0xed, 0xdc, 0xe3, 0xe6, 0xe2, 0xff}; const byte PKMN_NAMES112[] = {0xcc, 0xdc, 0xed, 0xd8, 0xe3, 0xe2, 0xff}; const byte PKMN_NAMES113[] = {0xbd, 0xdc, 0xd5, 0xe2, 0xe7, 0xd9, 0xed, 0xff}; const byte PKMN_NAMES114[] = {0xce, 0xd5, 0xe2, 0xdb, 0xd9, 0xe0, 0xd5, 0xff}; -const byte PKMN_NAMES115[] = {0xc5, 0xd5, 0xe2, 0xdb, 0xd5, 0xe7, 0xdf, 0xdc, 0xd5, 0xe2, 0xff}; +const byte PKMN_NAMES115[] = {0xff}; const byte PKMN_NAMES116[] = {0xc2, 0xe3, 0xe6, 0xe7, 0xd9, 0xd5, 0xff}; const byte PKMN_NAMES117[] = {0xcd, 0xd9, 0xd5, 0xd8, 0xe6, 0xd5, 0xff}; const byte PKMN_NAMES118[] = {0xc1, 0xe3, 0xe0, 0xd8, 0xd9, 0xd9, 0xe2, 0xff}; const byte PKMN_NAMES119[] = {0xcd, 0xd9, 0xd5, 0xdf, 0xdd, 0xe2, 0xdb, 0xff}; const byte PKMN_NAMES120[] = {0xcd, 0xe8, 0xd5, 0xe6, 0xed, 0xe9, 0xff}; const byte PKMN_NAMES121[] = {0xcd, 0xe8, 0xd5, 0xe6, 0xe1, 0xdd, 0xd9, 0xff}; -const byte PKMN_NAMES122[] = {0xc7, 0xe6, 0xb8, 0x0, 0xc7, 0xdd, 0xe1, 0xd9, 0xff}; +const byte PKMN_NAMES122[] = {0xfb, 0xff}; const byte PKMN_NAMES123[] = {0xcd, 0xd7, 0xed, 0xe8, 0xdc, 0xd9, 0xe6, 0xff}; const byte PKMN_NAMES124[] = {0xc4, 0xed, 0xe2, 0xec, 0xff}; -const byte PKMN_NAMES125[] = {0xbf, 0xe0, 0xd9, 0xd7, 0xe8, 0xd5, 0xd6, 0xe9, 0xee, 0xee, 0xff}; +const byte PKMN_NAMES125[] = {0xff}; const byte PKMN_NAMES126[] = {0xc7, 0xd5, 0xdb, 0xe1, 0xd5, 0xe6, 0xff}; const byte PKMN_NAMES127[] = {0xca, 0xdd, 0xe2, 0xe7, 0xdd, 0xe6, 0xff}; const byte PKMN_NAMES128[] = {0xce, 0xd5, 0xe9, 0xe6, 0xe3, 0xe7, 0xff}; -const byte PKMN_NAMES129[] = {0xc7, 0xd5, 0xdb, 0xdd, 0xdf, 0xd5, 0xe6, 0xe4, 0xff}; -const byte PKMN_NAMES130[] = {0xc1, 0xed, 0xd5, 0xe6, 0xd5, 0xd8, 0xe3, 0xe7, 0xff}; +const byte PKMN_NAMES129[] = {0xff}; +const byte PKMN_NAMES130[] = {0xff}; const byte PKMN_NAMES131[] = {0xc6, 0xd5, 0xe4, 0xe6, 0xd5, 0xe7, 0xff}; const byte PKMN_NAMES132[] = {0xbe, 0xdd, 0xe8, 0xe8, 0xe3, 0xff}; const byte PKMN_NAMES133[] = {0xbf, 0xd9, 0xea, 0xd9, 0xd9, 0xff}; -const byte PKMN_NAMES134[] = {0xd0, 0xd5, 0xe4, 0xe3, 0xe6, 0xd9, 0xe3, 0xe2, 0xff}; +const byte PKMN_NAMES134[] = {0xff}; const byte PKMN_NAMES135[] = {0xc4, 0xe3, 0xe0, 0xe8, 0xd9, 0xe3, 0xe2, 0xff}; const byte PKMN_NAMES136[] = {0xc0, 0xe0, 0xd5, 0xe6, 0xd9, 0xe3, 0xe2, 0xff}; const byte PKMN_NAMES137[] = {0xca, 0xe3, 0xe6, 0xed, 0xdb, 0xe3, 0xe2, 0xff}; const byte PKMN_NAMES138[] = {0xc9, 0xe1, 0xd5, 0xe2, 0xed, 0xe8, 0xd9, 0xff}; const byte PKMN_NAMES139[] = {0xc9, 0xe1, 0xd5, 0xe7, 0xe8, 0xd5, 0xe6, 0xff}; const byte PKMN_NAMES140[] = {0xc5, 0xd5, 0xd6, 0xe9, 0xe8, 0xe3, 0xff}; -const byte PKMN_NAMES141[] = {0xc5, 0xd5, 0xd6, 0xe9, 0xe8, 0xe3, 0xe4, 0xe7, 0xff}; -const byte PKMN_NAMES142[] = {0xbb, 0xd9, 0xe6, 0xe3, 0xd8, 0xd5, 0xd7, 0xe8, 0xed, 0xe0, 0xff}; +const byte PKMN_NAMES141[] = {0xff}; +const byte PKMN_NAMES142[] = {0xff}; const byte PKMN_NAMES143[] = {0xcd, 0xe2, 0xe3, 0xe6, 0xe0, 0xd5, 0xec, 0xff}; -const byte PKMN_NAMES144[] = {0xbb, 0xe6, 0xe8, 0xdd, 0xd7, 0xe9, 0xe2, 0xe3, 0xff}; +const byte PKMN_NAMES144[] = {0xff}; const byte PKMN_NAMES145[] = {0xd4, 0xd5, 0xe4, 0xd8, 0xe3, 0xe7, 0xff}; const byte PKMN_NAMES146[] = {0xc7, 0xe3, 0xe0, 0xe8, 0xe6, 0xd9, 0xe7, 0xff}; const byte PKMN_NAMES147[] = {0xbe, 0xe6, 0xd5, 0xe8, 0xdd, 0xe2, 0xdd, 0xff}; -const byte PKMN_NAMES148[] = {0xbe, 0xe6, 0xd5, 0xdb, 0xe3, 0xe2, 0xd5, 0xdd, 0xe6, 0xff}; -const byte PKMN_NAMES149[] = {0xbe, 0xe6, 0xd5, 0xdb, 0xe3, 0xe2, 0xdd, 0xe8, 0xd9, 0xff}; +const byte PKMN_NAMES148[] = {0xff}; +const byte PKMN_NAMES149[] = {0xff}; const byte PKMN_NAMES150[] = {0xc7, 0xd9, 0xeb, 0xe8, 0xeb, 0xe3, 0xff}; const byte PKMN_NAMES151[] = {0xc7, 0xd9, 0xeb, 0xff}; -const byte PKMN_NAMES152[] = {0xbd, 0xdc, 0xdd, 0xdf, 0xe3, 0xe6, 0xdd, 0xe8, 0xd5, 0xff}; +const byte PKMN_NAMES152[] = {0xff}; const byte PKMN_NAMES153[] = {0xbc, 0xd5, 0xed, 0xe0, 0xd9, 0xd9, 0xda, 0xff}; -const byte PKMN_NAMES154[] = {0xc7, 0xd9, 0xdb, 0xd5, 0xe2, 0xdd, 0xe9, 0xe1, 0xff}; -const byte PKMN_NAMES155[] = {0xbd, 0xed, 0xe2, 0xd8, 0xd5, 0xe5, 0xe9, 0xdd, 0xe0, 0xff}; +const byte PKMN_NAMES154[] = {0xff}; +const byte PKMN_NAMES155[] = {0xff}; const byte PKMN_NAMES156[] = {0xcb, 0xe9, 0xdd, 0xe0, 0xd5, 0xea, 0xd5, 0xff}; -const byte PKMN_NAMES157[] = {0xce, 0xed, 0xe4, 0xdc, 0xe0, 0xe3, 0xe7, 0xdd, 0xe3, 0xe2, 0xff}; -const byte PKMN_NAMES158[] = {0xce, 0xe3, 0xe8, 0xe3, 0xd8, 0xdd, 0xe0, 0xd9, 0xff}; -const byte PKMN_NAMES159[] = {0xbd, 0xe6, 0xe3, 0xd7, 0xe3, 0xe2, 0xd5, 0xeb, 0xff}; -const byte PKMN_NAMES160[] = {0xc0, 0xd9, 0xe6, 0xd5, 0xe0, 0xdd, 0xdb, 0xd5, 0xe8, 0xe6, 0xff}; +const byte PKMN_NAMES157[] = {0xff}; +const byte PKMN_NAMES158[] = {0xff}; +const byte PKMN_NAMES159[] = {0xff}; +const byte PKMN_NAMES160[] = {0xff}; const byte PKMN_NAMES161[] = {0xcd, 0xd9, 0xe2, 0xe8, 0xe6, 0xd9, 0xe8, 0xff}; const byte PKMN_NAMES162[] = {0xc0, 0xe9, 0xe6, 0xe6, 0xd9, 0xe8, 0xff}; -const byte PKMN_NAMES163[] = {0xc2, 0xe3, 0xe3, 0xe8, 0xdc, 0xe3, 0xe3, 0xe8, 0xff}; +const byte PKMN_NAMES163[] = {0xff}; const byte PKMN_NAMES164[] = {0xc8, 0xe3, 0xd7, 0xe8, 0xe3, 0xeb, 0xe0, 0xff}; const byte PKMN_NAMES165[] = {0xc6, 0xd9, 0xd8, 0xed, 0xd6, 0xd5, 0xff}; const byte PKMN_NAMES166[] = {0xc6, 0xd9, 0xd8, 0xdd, 0xd5, 0xe2, 0xff}; -const byte PKMN_NAMES167[] = {0xcd, 0xe4, 0xdd, 0xe2, 0xd5, 0xe6, 0xd5, 0xdf, 0xff}; +const byte PKMN_NAMES167[] = {0xff}; const byte PKMN_NAMES168[] = {0xbb, 0xe6, 0xdd, 0xd5, 0xd8, 0xe3, 0xe7, 0xff}; const byte PKMN_NAMES169[] = {0xbd, 0xe6, 0xe3, 0xd6, 0xd5, 0xe8, 0xff}; -const byte PKMN_NAMES170[] = {0xbd, 0xdc, 0xdd, 0xe2, 0xd7, 0xdc, 0xe3, 0xe9, 0xff}; +const byte PKMN_NAMES170[] = {0xff}; const byte PKMN_NAMES171[] = {0xc6, 0xd5, 0xe2, 0xe8, 0xe9, 0xe6, 0xe2, 0xff}; const byte PKMN_NAMES172[] = {0xca, 0xdd, 0xd7, 0xdc, 0xe9, 0xff}; const byte PKMN_NAMES173[] = {0xbd, 0xe0, 0xd9, 0xda, 0xda, 0xd5, 0xff}; -const byte PKMN_NAMES174[] = {0xc3, 0xdb, 0xdb, 0xe0, 0xed, 0xd6, 0xe9, 0xda, 0xda, 0xff}; +const byte PKMN_NAMES174[] = {0xff}; const byte PKMN_NAMES175[] = {0xce, 0xe3, 0xdb, 0xd9, 0xe4, 0xdd, 0xff}; const byte PKMN_NAMES176[] = {0xce, 0xe3, 0xdb, 0xd9, 0xe8, 0xdd, 0xd7, 0xff}; const byte PKMN_NAMES177[] = {0xc8, 0xd5, 0xe8, 0xe9, 0xff}; const byte PKMN_NAMES178[] = {0xd2, 0xd5, 0xe8, 0xe9, 0xff}; const byte PKMN_NAMES179[] = {0xc7, 0xd5, 0xe6, 0xd9, 0xd9, 0xe4, 0xff}; const byte PKMN_NAMES180[] = {0xc0, 0xe0, 0xd5, 0xd5, 0xda, 0xda, 0xed, 0xff}; -const byte PKMN_NAMES181[] = {0xbb, 0xe1, 0xe4, 0xdc, 0xd5, 0xe6, 0xe3, 0xe7, 0xff}; -const byte PKMN_NAMES182[] = {0xbc, 0xd9, 0xe0, 0xe0, 0xe3, 0xe7, 0xe7, 0xe3, 0xe1, 0xff}; +const byte PKMN_NAMES181[] = {0xff}; +const byte PKMN_NAMES182[] = {0xff}; const byte PKMN_NAMES183[] = {0xc7, 0xd5, 0xe6, 0xdd, 0xe0, 0xe0, 0xff}; -const byte PKMN_NAMES184[] = {0xbb, 0xee, 0xe9, 0xe1, 0xd5, 0xe6, 0xdd, 0xe0, 0xe0, 0xff}; -const byte PKMN_NAMES185[] = {0xcd, 0xe9, 0xd8, 0xe3, 0xeb, 0xe3, 0xe3, 0xd8, 0xe3, 0xff}; -const byte PKMN_NAMES186[] = {0xca, 0xe3, 0xe0, 0xdd, 0xe8, 0xe3, 0xd9, 0xd8, 0xff}; +const byte PKMN_NAMES184[] = {0xff}; +const byte PKMN_NAMES185[] = {0xff}; +const byte PKMN_NAMES186[] = {0xff}; const byte PKMN_NAMES187[] = {0xc2, 0xe3, 0xe4, 0xe4, 0xdd, 0xe4, 0xff}; -const byte PKMN_NAMES188[] = {0xcd, 0xdf, 0xdd, 0xe4, 0xe0, 0xe3, 0xe3, 0xe1, 0xff}; -const byte PKMN_NAMES189[] = {0xc4, 0xe9, 0xe1, 0xe4, 0xe0, 0xe9, 0xda, 0xda, 0xff}; +const byte PKMN_NAMES188[] = {0xff}; +const byte PKMN_NAMES189[] = {0xff}; const byte PKMN_NAMES190[] = {0xbb, 0xdd, 0xe4, 0xe3, 0xe1, 0xff}; const byte PKMN_NAMES191[] = {0xcd, 0xe9, 0xe2, 0xdf, 0xd9, 0xe6, 0xe2, 0xff}; -const byte PKMN_NAMES192[] = {0xcd, 0xe9, 0xe2, 0xda, 0xe0, 0xe3, 0xe6, 0xd5, 0xff}; +const byte PKMN_NAMES192[] = {0xff}; const byte PKMN_NAMES193[] = {0xd3, 0xd5, 0xe2, 0xe1, 0xd5, 0xff}; const byte PKMN_NAMES194[] = {0xd1, 0xe3, 0xe3, 0xe4, 0xd9, 0xe6, 0xff}; -const byte PKMN_NAMES195[] = {0xcb, 0xe9, 0xd5, 0xdb, 0xe7, 0xdd, 0xe6, 0xd9, 0xff}; +const byte PKMN_NAMES195[] = {0xff}; const byte PKMN_NAMES196[] = {0xbf, 0xe7, 0xe4, 0xd9, 0xe3, 0xe2, 0xff}; const byte PKMN_NAMES197[] = {0xcf, 0xe1, 0xd6, 0xe6, 0xd9, 0xe3, 0xe2, 0xff}; const byte PKMN_NAMES198[] = {0xc7, 0xe9, 0xe6, 0xdf, 0xe6, 0xe3, 0xeb, 0xff}; -const byte PKMN_NAMES199[] = {0xcd, 0xe0, 0xe3, 0xeb, 0xdf, 0xdd, 0xe2, 0xdb, 0xff}; -const byte PKMN_NAMES200[] = {0xc7, 0xdd, 0xe7, 0xd8, 0xe6, 0xd9, 0xd5, 0xea, 0xe9, 0xe7, 0xff}; +const byte PKMN_NAMES199[] = {0xff}; +const byte PKMN_NAMES200[] = {0xff}; const byte PKMN_NAMES201[] = {0xcf, 0xe2, 0xe3, 0xeb, 0xe2, 0xff}; -const byte PKMN_NAMES202[] = {0xd1, 0xe3, 0xd6, 0xd6, 0xe9, 0xda, 0xda, 0xd9, 0xe8, 0xff}; -const byte PKMN_NAMES203[] = {0xc1, 0xdd, 0xe6, 0xd5, 0xda, 0xd5, 0xe6, 0xdd, 0xdb, 0xff}; +const byte PKMN_NAMES202[] = {0xff}; +const byte PKMN_NAMES203[] = {0xff}; const byte PKMN_NAMES204[] = {0xca, 0xdd, 0xe2, 0xd9, 0xd7, 0xe3, 0xff}; -const byte PKMN_NAMES205[] = {0xc0, 0xe3, 0xe6, 0xe6, 0xd9, 0xe8, 0xe6, 0xd9, 0xe7, 0xe7, 0xff}; -const byte PKMN_NAMES206[] = {0xbe, 0xe9, 0xe2, 0xe7, 0xe4, 0xd5, 0xe6, 0xd7, 0xd9, 0xff}; +const byte PKMN_NAMES205[] = {0xff}; +const byte PKMN_NAMES206[] = {0xff}; const byte PKMN_NAMES207[] = {0xc1, 0xe0, 0xdd, 0xdb, 0xd5, 0xe6, 0xff}; const byte PKMN_NAMES208[] = {0xcd, 0xe8, 0xd9, 0xd9, 0xe0, 0xdd, 0xec, 0xff}; -const byte PKMN_NAMES209[] = {0xcd, 0xe2, 0xe9, 0xd6, 0xd6, 0xe9, 0xe0, 0xe0, 0xff}; -const byte PKMN_NAMES210[] = {0xc1, 0xe6, 0xd5, 0xe2, 0xd6, 0xe9, 0xe0, 0xe0, 0xff}; -const byte PKMN_NAMES211[] = {0xcb, 0xeb, 0xdd, 0xe0, 0xda, 0xdd, 0xe7, 0xdc, 0xff}; +const byte PKMN_NAMES209[] = {0xff}; +const byte PKMN_NAMES210[] = {0xff}; +const byte PKMN_NAMES211[] = {0xff}; const byte PKMN_NAMES212[] = {0xcd, 0xd7, 0xdd, 0xee, 0xe3, 0xe6, 0xff}; const byte PKMN_NAMES213[] = {0xcd, 0xdc, 0xe9, 0xd7, 0xdf, 0xe0, 0xd9, 0xff}; -const byte PKMN_NAMES214[] = {0xc2, 0xd9, 0xe6, 0xd5, 0xd7, 0xe6, 0xe3, 0xe7, 0xe7, 0xff}; +const byte PKMN_NAMES214[] = {0xff}; const byte PKMN_NAMES215[] = {0xcd, 0xe2, 0xd9, 0xd5, 0xe7, 0xd9, 0xe0, 0xff}; -const byte PKMN_NAMES216[] = {0xce, 0xd9, 0xd8, 0xd8, 0xdd, 0xe9, 0xe6, 0xe7, 0xd5, 0xff}; -const byte PKMN_NAMES217[] = {0xcf, 0xe6, 0xe7, 0xd5, 0xe6, 0xdd, 0xe2, 0xdb, 0xff}; +const byte PKMN_NAMES216[] = {0xff}; +const byte PKMN_NAMES217[] = {0xff}; const byte PKMN_NAMES218[] = {0xcd, 0xe0, 0xe9, 0xdb, 0xe1, 0xd5, 0xff}; -const byte PKMN_NAMES219[] = {0xc7, 0xd5, 0xdb, 0xd7, 0xd5, 0xe6, 0xdb, 0xe3, 0xff}; +const byte PKMN_NAMES219[] = {0xff}; const byte PKMN_NAMES220[] = {0xcd, 0xeb, 0xdd, 0xe2, 0xe9, 0xd6, 0xff}; -const byte PKMN_NAMES221[] = {0xca, 0xdd, 0xe0, 0xe3, 0xe7, 0xeb, 0xdd, 0xe2, 0xd9, 0xff}; +const byte PKMN_NAMES221[] = {0xff}; const byte PKMN_NAMES222[] = {0xbd, 0xe3, 0xe6, 0xe7, 0xe3, 0xe0, 0xd5, 0xff}; -const byte PKMN_NAMES223[] = {0xcc, 0xd9, 0xe1, 0xe3, 0xe6, 0xd5, 0xdd, 0xd8, 0xff}; -const byte PKMN_NAMES224[] = {0xc9, 0xd7, 0xe8, 0xdd, 0xe0, 0xe0, 0xd9, 0xe6, 0xed, 0xff}; -const byte PKMN_NAMES225[] = {0xbe, 0xd9, 0xe0, 0xdd, 0xd6, 0xdd, 0xe6, 0xd8, 0xff}; +const byte PKMN_NAMES223[] = {0xff}; +const byte PKMN_NAMES224[] = {0xff}; +const byte PKMN_NAMES225[] = {0xff}; const byte PKMN_NAMES226[] = {0xc7, 0xd5, 0xe2, 0xe8, 0xdd, 0xe2, 0xd9, 0xff}; -const byte PKMN_NAMES227[] = {0xcd, 0xdf, 0xd5, 0xe6, 0xe1, 0xe3, 0xe6, 0xed, 0xff}; -const byte PKMN_NAMES228[] = {0xc2, 0xe3, 0xe9, 0xe2, 0xd8, 0xe3, 0xe9, 0xe6, 0xff}; -const byte PKMN_NAMES229[] = {0xc2, 0xe3, 0xe9, 0xe2, 0xd8, 0xe3, 0xe3, 0xe1, 0xff}; +const byte PKMN_NAMES227[] = {0xff}; +const byte PKMN_NAMES228[] = {0xff}; +const byte PKMN_NAMES229[] = {0xff}; const byte PKMN_NAMES230[] = {0xc5, 0xdd, 0xe2, 0xdb, 0xd8, 0xe6, 0xd5, 0xff}; const byte PKMN_NAMES231[] = {0xca, 0xdc, 0xd5, 0xe2, 0xe4, 0xed, 0xff}; const byte PKMN_NAMES232[] = {0xbe, 0xe3, 0xe2, 0xe4, 0xdc, 0xd5, 0xe2, 0xff}; -const byte PKMN_NAMES233[] = {0xca, 0xe3, 0xe6, 0xed, 0xdb, 0xe3, 0xe2, 0xa3, 0xff}; -const byte PKMN_NAMES234[] = {0xcd, 0xe8, 0xd5, 0xe2, 0xe8, 0xe0, 0xd9, 0xe6, 0xff}; -const byte PKMN_NAMES235[] = {0xcd, 0xe1, 0xd9, 0xd5, 0xe6, 0xdb, 0xe0, 0xd9, 0xff}; +const byte PKMN_NAMES233[] = {0xff}; +const byte PKMN_NAMES234[] = {0xff}; +const byte PKMN_NAMES235[] = {0xff}; const byte PKMN_NAMES236[] = {0xce, 0xed, 0xe6, 0xe3, 0xdb, 0xe9, 0xd9, 0xff}; -const byte PKMN_NAMES237[] = {0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xe8, 0xe3, 0xe4, 0xff}; -const byte PKMN_NAMES238[] = {0xcd, 0xe1, 0xe3, 0xe3, 0xd7, 0xdc, 0xe9, 0xe1, 0xff}; +const byte PKMN_NAMES237[] = {0xff}; +const byte PKMN_NAMES238[] = {0xff}; const byte PKMN_NAMES239[] = {0xbf, 0xe0, 0xd9, 0xdf, 0xdd, 0xd8, 0xff}; const byte PKMN_NAMES240[] = {0xc7, 0xd5, 0xdb, 0xd6, 0xed, 0xff}; const byte PKMN_NAMES241[] = {0xc7, 0xdd, 0xe0, 0xe8, 0xd5, 0xe2, 0xdf, 0xff}; @@ -393,9 +393,9 @@ const byte PKMN_NAMES242[] = {0xbc, 0xe0, 0xdd, 0xe7, 0xe7, 0xd9, 0xed, 0xff}; const byte PKMN_NAMES243[] = {0xcc, 0xd5, 0xdd, 0xdf, 0xe3, 0xe9, 0xff}; const byte PKMN_NAMES244[] = {0xbf, 0xe2, 0xe8, 0xd9, 0xdd, 0xff}; const byte PKMN_NAMES245[] = {0xcd, 0xe9, 0xdd, 0xd7, 0xe9, 0xe2, 0xd9, 0xff}; -const byte PKMN_NAMES246[] = {0xc6, 0xd5, 0xe6, 0xea, 0xdd, 0xe8, 0xd5, 0xe6, 0xff}; +const byte PKMN_NAMES246[] = {0xff}; const byte PKMN_NAMES247[] = {0xca, 0xe9, 0xe4, 0xdd, 0xe8, 0xd5, 0xe6, 0xff}; -const byte PKMN_NAMES248[] = {0xce, 0xed, 0xe6, 0xd5, 0xe2, 0xdd, 0xe8, 0xd5, 0xe6, 0xff}; +const byte PKMN_NAMES248[] = {0xff}; const byte PKMN_NAMES249[] = {0xc6, 0xe9, 0xdb, 0xdd, 0xd5, 0xff}; const byte PKMN_NAMES250[] = {0xc2, 0xe3, 0x0, 0xc9, 0xdc, 0xff}; const byte PKMN_NAMES251[] = {0xbd, 0xd9, 0xe0, 0xd9, 0xd6, 0xdd, 0xff}; @@ -776,7 +776,7 @@ const byte press_start[] = {0xca, 0xe9, 0xe7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, const byte option_transfer[] = {0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xff}; const byte option_dreamdex[] = {0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xff}; const byte option_credits[] = {0xbd, 0xe6, 0xd9, 0xd8, 0xdd, 0xe8, 0xe7, 0xff}; -const byte intro_first[] = {0xc2, 0xd9, 0xe0, 0xe0, 0xe3, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0xab, 0xfe, 0xfe, 0xc4, 0xe9, 0xe7, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xeb, 0xe3, 0xe6, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xd5, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0xae, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xd1, 0xc3, 0xc6, 0xc6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xed, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe0, 0xe3, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xd6, 0xd9, 0xe8, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xdd, 0xd8, 0xb8, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd9, 0xe2, 0xde, 0xe3, 0xed, 0xab, 0xfe, 0xfe, 0xae, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xff}; +const byte intro_first[] = {0xc2, 0xd9, 0xe0, 0xe0, 0xe3, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0xab, 0xfe, 0xfe, 0xc4, 0xe9, 0xe7, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xeb, 0xe3, 0xe6, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xd5, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0xae, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xd1, 0xc3, 0xc6, 0xc6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xed, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe0, 0xe3, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xd6, 0xd9, 0xe8, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xdd, 0xd8, 0xb8, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd9, 0xe2, 0xde, 0xe3, 0xed, 0xab, 0xfe, 0xfe, 0xae, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff}; const byte intro_legal[] = {0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe3, 0xda, 0xfe, 0xe0, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd5, 0xe4, 0xe4, 0xe6, 0xd9, 0xd7, 0xdd, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xd5, 0xe2, 0xd7, 0xdc, 0xdd, 0xe7, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xda, 0xdd, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xbb, 0xc6, 0xd1, 0xbb, 0xd3, 0xcd, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0xfe, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0x0, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe1, 0xe9, 0xe7, 0xdd, 0xd7, 0xfe, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xeb, 0xe2, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0x0, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0x0, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0xad, 0xfe, 0xfe, 0xfe, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xff}; const byte cart_load_error[] = {0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xad, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xdd, 0xe2, 0xe7, 0xd9, 0xe6, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xea, 0xd9, 0xe0, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff}; const byte pulled_cart_error[] = {0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xad, 0xff}; @@ -789,9 +789,9 @@ const byte johto_name[] = {0xc4, 0xc9, 0xc2, 0xce, 0xc9, 0xf0, 0xff}; const byte credits_page_1[] = {0xc6, 0xd9, 0xd5, 0xd8, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xf0, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff}; const byte credits_page_2[] = {0xc6, 0xe3, 0xdb, 0xe3, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xe3, 0xae, 0xdd, 0xd8, 0xd9, 0xd5, 0xe8, 0xe3, 0xe6, 0xf0, 0xfe, 0xfe, 0xae, 0xc4, 0xe3, 0xe1, 0xd9, 0xfe, 0xfe, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xeb, 0xe3, 0xe6, 0xdf, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xc4, 0x0, 0xbc, 0xdd, 0xe6, 0xd8, 0xe1, 0xd5, 0xe2, 0xff}; const byte credits_page_3[] = {0xc3, 0xd7, 0xe3, 0xe2, 0x0, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xe9, 0xdd, 0xdb, 0xdd, 0xce, 0xc5, 0xc9, 0xfe, 0xae, 0xc1, 0xe9, 0xdd, 0xbb, 0xd6, 0xd9, 0xe0, 0xfe, 0xae, 0xcd, 0xe3, 0xe9, 0xe6, 0xbb, 0xe4, 0xe4, 0xe0, 0xd9, 0xfe, 0x2d, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd5, 0xe6, 0xe8, 0xdd, 0xe7, 0xe8, 0xe7, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xcd, 0xdc, 0xe3, 0xeb, 0xd8, 0xe3, 0xeb, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0x0, 0xbd, 0xe0, 0xd9, 0xd5, 0xe6, 0xff}; -const byte credits_page_4[] = {0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xe6, 0xd6, 0xdd, 0xe8, 0xe6, 0xd5, 0xe6, 0xed, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0xfe, 0xbf, 0xec, 0xd9, 0xd7, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xce, 0xdd, 0xe1, 0xe3, 0xd0, 0xc7, 0xfe, 0xfe, 0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0xfe, 0xda, 0xe9, 0xe2, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xf0, 0x0, 0xfb, 0xe6, 0xdd, 0xe7, 0xdd, 0xe2, 0xdb, 0xca, 0xdc, 0xdd, 0xe0, 0xff}; +const byte credits_page_4[] = {0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xe6, 0xd6, 0xdd, 0xe8, 0xe6, 0xd5, 0xe6, 0xed, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0xfe, 0xbf, 0xec, 0xd9, 0xd7, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xce, 0xdd, 0xe1, 0xe3, 0xd0, 0xc7, 0xff}; const byte credits_page_5[] = {0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xe6, 0xdd, 0xe0, 0xd9, 0xed, 0xdf, 0xa7, 0xa5, 0xfe, 0xae, 0xcd, 0xdc, 0xd5, 0xe3, 0xff}; -const byte credits_page_6[] = {0xcd, 0xe4, 0xd5, 0xd7, 0xd9, 0x0, 0xc9, 0xe4, 0xe8, 0xdd, 0xe1, 0xdd, 0xee, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xf0, 0xfe, 0xfe, 0xae, 0xd9, 0xd5, 0xe7, 0xed, 0xd5, 0xe7, 0xe4, 0xdd, 0xa4, 0xa2, 0xa5, 0xff}; +const byte credits_page_6[] = {0xcd, 0xe4, 0xd5, 0xd7, 0xd9, 0x0, 0xc9, 0xe4, 0xe8, 0xdd, 0xe1, 0xdd, 0xee, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xf0, 0xfe, 0xfe, 0xae, 0xd9, 0xd5, 0xe7, 0xed, 0xd5, 0xe7, 0xe4, 0xdd, 0xa4, 0xa2, 0xa5, 0xfe, 0xfe, 0xc6, 0xe3, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xcc, 0xc9, 0xc7, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0xfe, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0x0, 0xda, 0xe9, 0xe2, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xf0, 0xfe, 0xfe, 0xae, 0xe6, 0xdd, 0xe7, 0xdd, 0xe2, 0xdb, 0xca, 0xdc, 0xdd, 0xe0, 0xff}; const byte credits_page_7[] = {0xbc, 0xe9, 0xdd, 0xe0, 0xe8, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xbe, 0xd9, 0xea, 0xdf, 0xdd, 0xe8, 0xca, 0xe6, 0xe3, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xce, 0xe3, 0xe2, 0xd7, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xc1, 0xbc, 0xbb, 0xff}; const byte credits_page_8[] = {0xc3, 0xe2, 0xe7, 0xe4, 0xdd, 0xe6, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xe7, 0x0, 0xe3, 0xda, 0xf0, 0xfe, 0xfe, 0xae, 0xc1, 0xe3, 0xe4, 0xe4, 0xdd, 0xd9, 0xe6, 0xfe, 0xae, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xcc, 0xbf, 0xce, 0xc3, 0xcc, 0xbf, 0xff}; const byte credits_page_9[] = {0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xe7, 0x0, 0xe9, 0xe7, 0xd9, 0xd8, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xae, 0xca, 0xc5, 0xc2, 0xd9, 0xd2, 0xfe, 0xae, 0xd1, 0xbd, 0xa4, 0xce, 0xe3, 0xe3, 0xe0, 0xfe, 0xae, 0xcf, 0xe7, 0xd9, 0xe2, 0xe8, 0xdd, 0xfe, 0xae, 0xcd, 0xd5, 0xe4, 0xe4, 0xed, 0xc7, 0xdd, 0xd8, 0xce, 0xe3, 0xbb, 0xc1, 0xbc, 0xff}; @@ -1435,7 +1435,7 @@ const byte press_start[] = {0xca, 0xe9, 0xe7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, const byte option_transfer[] = {0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xff}; const byte option_dreamdex[] = {0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xff}; const byte option_credits[] = {0xbd, 0xe6, 0xd9, 0xd8, 0xdd, 0xe8, 0xe7, 0xff}; -const byte intro_first[] = {0xc2, 0xd9, 0xe0, 0xe0, 0xe3, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0xab, 0xfe, 0xfe, 0xc4, 0xe9, 0xe7, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xeb, 0xe3, 0xe6, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xd5, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0xae, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xd1, 0xc3, 0xc6, 0xc6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xed, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe0, 0xe3, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xd6, 0xd9, 0xe8, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xdd, 0xd8, 0xb8, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd9, 0xe2, 0xde, 0xe3, 0xed, 0xab, 0xfe, 0xfe, 0xae, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xff}; +const byte intro_first[] = {0xc2, 0xd9, 0xe0, 0xe0, 0xe3, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0xab, 0xfe, 0xfe, 0xc4, 0xe9, 0xe7, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xeb, 0xe3, 0xe6, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xd5, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0xae, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xd1, 0xc3, 0xc6, 0xc6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xed, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe0, 0xe3, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xd6, 0xd9, 0xe8, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xdd, 0xd8, 0xb8, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd9, 0xe2, 0xde, 0xe3, 0xed, 0xab, 0xfe, 0xfe, 0xae, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff}; const byte intro_legal[] = {0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe3, 0xda, 0xfe, 0xe0, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd5, 0xe4, 0xe4, 0xe6, 0xd9, 0xd7, 0xdd, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xd5, 0xe2, 0xd7, 0xdc, 0xdd, 0xe7, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xda, 0xdd, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xbb, 0xc6, 0xd1, 0xbb, 0xd3, 0xcd, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0xfe, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0x0, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe1, 0xe9, 0xe7, 0xdd, 0xd7, 0xfe, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xeb, 0xe2, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0x0, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0x0, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0xad, 0xfe, 0xfe, 0xfe, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xff}; const byte cart_load_error[] = {0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xad, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xdd, 0xe2, 0xe7, 0xd9, 0xe6, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xea, 0xd9, 0xe0, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff}; const byte pulled_cart_error[] = {0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xad, 0xff}; @@ -1448,9 +1448,9 @@ const byte johto_name[] = {0xc4, 0xc9, 0xc2, 0xce, 0xc9, 0xf0, 0xff}; const byte credits_page_1[] = {0xc6, 0xd9, 0xd5, 0xd8, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xf0, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff}; const byte credits_page_2[] = {0xc6, 0xe3, 0xdb, 0xe3, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xe3, 0xae, 0xdd, 0xd8, 0xd9, 0xd5, 0xe8, 0xe3, 0xe6, 0xf0, 0xfe, 0xfe, 0xae, 0xc4, 0xe3, 0xe1, 0xd9, 0xfe, 0xfe, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xeb, 0xe3, 0xe6, 0xdf, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xc4, 0x0, 0xbc, 0xdd, 0xe6, 0xd8, 0xe1, 0xd5, 0xe2, 0xff}; const byte credits_page_3[] = {0xc3, 0xd7, 0xe3, 0xe2, 0x0, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xe9, 0xdd, 0xdb, 0xdd, 0xce, 0xc5, 0xc9, 0xfe, 0xae, 0xc1, 0xe9, 0xdd, 0xbb, 0xd6, 0xd9, 0xe0, 0xfe, 0xae, 0xcd, 0xe3, 0xe9, 0xe6, 0xbb, 0xe4, 0xe4, 0xe0, 0xd9, 0xfe, 0x2d, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd5, 0xe6, 0xe8, 0xdd, 0xe7, 0xe8, 0xe7, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xcd, 0xdc, 0xe3, 0xeb, 0xd8, 0xe3, 0xeb, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0x0, 0xbd, 0xe0, 0xd9, 0xd5, 0xe6, 0xff}; -const byte credits_page_4[] = {0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xe6, 0xd6, 0xdd, 0xe8, 0xe6, 0xd5, 0xe6, 0xed, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0xfe, 0xbf, 0xec, 0xd9, 0xd7, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xce, 0xdd, 0xe1, 0xe3, 0xd0, 0xc7, 0xfe, 0xfe, 0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0xfe, 0xda, 0xe9, 0xe2, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xf0, 0x0, 0xfb, 0xe6, 0xdd, 0xe7, 0xdd, 0xe2, 0xdb, 0xca, 0xdc, 0xdd, 0xe0, 0xff}; +const byte credits_page_4[] = {0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xe6, 0xd6, 0xdd, 0xe8, 0xe6, 0xd5, 0xe6, 0xed, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0xfe, 0xbf, 0xec, 0xd9, 0xd7, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xce, 0xdd, 0xe1, 0xe3, 0xd0, 0xc7, 0xff}; const byte credits_page_5[] = {0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xe6, 0xdd, 0xe0, 0xd9, 0xed, 0xdf, 0xa7, 0xa5, 0xfe, 0xae, 0xcd, 0xdc, 0xd5, 0xe3, 0xff}; -const byte credits_page_6[] = {0xcd, 0xe4, 0xd5, 0xd7, 0xd9, 0x0, 0xc9, 0xe4, 0xe8, 0xdd, 0xe1, 0xdd, 0xee, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xf0, 0xfe, 0xfe, 0xae, 0xd9, 0xd5, 0xe7, 0xed, 0xd5, 0xe7, 0xe4, 0xdd, 0xa4, 0xa2, 0xa5, 0xff}; +const byte credits_page_6[] = {0xcd, 0xe4, 0xd5, 0xd7, 0xd9, 0x0, 0xc9, 0xe4, 0xe8, 0xdd, 0xe1, 0xdd, 0xee, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xf0, 0xfe, 0xfe, 0xae, 0xd9, 0xd5, 0xe7, 0xed, 0xd5, 0xe7, 0xe4, 0xdd, 0xa4, 0xa2, 0xa5, 0xfe, 0xfe, 0xc6, 0xe3, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xcc, 0xc9, 0xc7, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0xfe, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0x0, 0xda, 0xe9, 0xe2, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xf0, 0xfe, 0xfe, 0xae, 0xe6, 0xdd, 0xe7, 0xdd, 0xe2, 0xdb, 0xca, 0xdc, 0xdd, 0xe0, 0xff}; const byte credits_page_7[] = {0xbc, 0xe9, 0xdd, 0xe0, 0xe8, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xbe, 0xd9, 0xea, 0xdf, 0xdd, 0xe8, 0xca, 0xe6, 0xe3, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xce, 0xe3, 0xe2, 0xd7, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xc1, 0xbc, 0xbb, 0xff}; const byte credits_page_8[] = {0xc3, 0xe2, 0xe7, 0xe4, 0xdd, 0xe6, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xe7, 0x0, 0xe3, 0xda, 0xf0, 0xfe, 0xfe, 0xae, 0xc1, 0xe3, 0xe4, 0xe4, 0xdd, 0xd9, 0xe6, 0xfe, 0xae, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xcc, 0xbf, 0xce, 0xc3, 0xcc, 0xbf, 0xff}; const byte credits_page_9[] = {0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xe7, 0x0, 0xe9, 0xe7, 0xd9, 0xd8, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xae, 0xca, 0xc5, 0xc2, 0xd9, 0xd2, 0xfe, 0xae, 0xd1, 0xbd, 0xa4, 0xce, 0xe3, 0xe3, 0xe0, 0xfe, 0xae, 0xcf, 0xe7, 0xd9, 0xe2, 0xe8, 0xdd, 0xfe, 0xae, 0xcd, 0xd5, 0xe4, 0xe4, 0xed, 0xc7, 0xdd, 0xd8, 0xce, 0xe3, 0xbb, 0xc1, 0xbc, 0xff}; @@ -2094,7 +2094,7 @@ const byte press_start[] = {0xca, 0xe9, 0xe7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, const byte option_transfer[] = {0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xff}; const byte option_dreamdex[] = {0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xff}; const byte option_credits[] = {0xbd, 0xe6, 0xd9, 0xd8, 0xdd, 0xe8, 0xe7, 0xff}; -const byte intro_first[] = {0xc2, 0xd9, 0xe0, 0xe0, 0xe3, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0xab, 0xfe, 0xfe, 0xc4, 0xe9, 0xe7, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xeb, 0xe3, 0xe6, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xd5, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0xae, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xd1, 0xc3, 0xc6, 0xc6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xed, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe0, 0xe3, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xd6, 0xd9, 0xe8, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xdd, 0xd8, 0xb8, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd9, 0xe2, 0xde, 0xe3, 0xed, 0xab, 0xfe, 0xfe, 0xae, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xff}; +const byte intro_first[] = {0xc2, 0xd9, 0xe0, 0xe0, 0xe3, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0xab, 0xfe, 0xfe, 0xc4, 0xe9, 0xe7, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xeb, 0xe3, 0xe6, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xd5, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0xae, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xd1, 0xc3, 0xc6, 0xc6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xed, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe0, 0xe3, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xd6, 0xd9, 0xe8, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xdd, 0xd8, 0xb8, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd9, 0xe2, 0xde, 0xe3, 0xed, 0xab, 0xfe, 0xfe, 0xae, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff}; const byte intro_legal[] = {0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe3, 0xda, 0xfe, 0xe0, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd5, 0xe4, 0xe4, 0xe6, 0xd9, 0xd7, 0xdd, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xd5, 0xe2, 0xd7, 0xdc, 0xdd, 0xe7, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xda, 0xdd, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xbb, 0xc6, 0xd1, 0xbb, 0xd3, 0xcd, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0xfe, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0x0, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe1, 0xe9, 0xe7, 0xdd, 0xd7, 0xfe, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xeb, 0xe2, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0x0, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0x0, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0xad, 0xfe, 0xfe, 0xfe, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xff}; const byte cart_load_error[] = {0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xad, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xdd, 0xe2, 0xe7, 0xd9, 0xe6, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xea, 0xd9, 0xe0, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff}; const byte pulled_cart_error[] = {0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xad, 0xff}; @@ -2107,9 +2107,9 @@ const byte johto_name[] = {0xc4, 0xc9, 0xc2, 0xce, 0xc9, 0xf0, 0xff}; const byte credits_page_1[] = {0xc6, 0xd9, 0xd5, 0xd8, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xf0, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff}; const byte credits_page_2[] = {0xc6, 0xe3, 0xdb, 0xe3, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xe3, 0xae, 0xdd, 0xd8, 0xd9, 0xd5, 0xe8, 0xe3, 0xe6, 0xf0, 0xfe, 0xfe, 0xae, 0xc4, 0xe3, 0xe1, 0xd9, 0xfe, 0xfe, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xeb, 0xe3, 0xe6, 0xdf, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xc4, 0x0, 0xbc, 0xdd, 0xe6, 0xd8, 0xe1, 0xd5, 0xe2, 0xff}; const byte credits_page_3[] = {0xc3, 0xd7, 0xe3, 0xe2, 0x0, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xe9, 0xdd, 0xdb, 0xdd, 0xce, 0xc5, 0xc9, 0xfe, 0xae, 0xc1, 0xe9, 0xdd, 0xbb, 0xd6, 0xd9, 0xe0, 0xfe, 0xae, 0xcd, 0xe3, 0xe9, 0xe6, 0xbb, 0xe4, 0xe4, 0xe0, 0xd9, 0xfe, 0x2d, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd5, 0xe6, 0xe8, 0xdd, 0xe7, 0xe8, 0xe7, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xcd, 0xdc, 0xe3, 0xeb, 0xd8, 0xe3, 0xeb, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0x0, 0xbd, 0xe0, 0xd9, 0xd5, 0xe6, 0xff}; -const byte credits_page_4[] = {0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xe6, 0xd6, 0xdd, 0xe8, 0xe6, 0xd5, 0xe6, 0xed, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0xfe, 0xbf, 0xec, 0xd9, 0xd7, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xce, 0xdd, 0xe1, 0xe3, 0xd0, 0xc7, 0xfe, 0xfe, 0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0xfe, 0xda, 0xe9, 0xe2, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xf0, 0x0, 0xfb, 0xe6, 0xdd, 0xe7, 0xdd, 0xe2, 0xdb, 0xca, 0xdc, 0xdd, 0xe0, 0xff}; +const byte credits_page_4[] = {0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xe6, 0xd6, 0xdd, 0xe8, 0xe6, 0xd5, 0xe6, 0xed, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0xfe, 0xbf, 0xec, 0xd9, 0xd7, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xce, 0xdd, 0xe1, 0xe3, 0xd0, 0xc7, 0xff}; const byte credits_page_5[] = {0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xe6, 0xdd, 0xe0, 0xd9, 0xed, 0xdf, 0xa7, 0xa5, 0xfe, 0xae, 0xcd, 0xdc, 0xd5, 0xe3, 0xff}; -const byte credits_page_6[] = {0xcd, 0xe4, 0xd5, 0xd7, 0xd9, 0x0, 0xc9, 0xe4, 0xe8, 0xdd, 0xe1, 0xdd, 0xee, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xf0, 0xfe, 0xfe, 0xae, 0xd9, 0xd5, 0xe7, 0xed, 0xd5, 0xe7, 0xe4, 0xdd, 0xa4, 0xa2, 0xa5, 0xff}; +const byte credits_page_6[] = {0xcd, 0xe4, 0xd5, 0xd7, 0xd9, 0x0, 0xc9, 0xe4, 0xe8, 0xdd, 0xe1, 0xdd, 0xee, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xf0, 0xfe, 0xfe, 0xae, 0xd9, 0xd5, 0xe7, 0xed, 0xd5, 0xe7, 0xe4, 0xdd, 0xa4, 0xa2, 0xa5, 0xfe, 0xfe, 0xc6, 0xe3, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xcc, 0xc9, 0xc7, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0xfe, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0x0, 0xda, 0xe9, 0xe2, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xf0, 0xfe, 0xfe, 0xae, 0xe6, 0xdd, 0xe7, 0xdd, 0xe2, 0xdb, 0xca, 0xdc, 0xdd, 0xe0, 0xff}; const byte credits_page_7[] = {0xbc, 0xe9, 0xdd, 0xe0, 0xe8, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xbe, 0xd9, 0xea, 0xdf, 0xdd, 0xe8, 0xca, 0xe6, 0xe3, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xce, 0xe3, 0xe2, 0xd7, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xc1, 0xbc, 0xbb, 0xff}; const byte credits_page_8[] = {0xc3, 0xe2, 0xe7, 0xe4, 0xdd, 0xe6, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xe7, 0x0, 0xe3, 0xda, 0xf0, 0xfe, 0xfe, 0xae, 0xc1, 0xe3, 0xe4, 0xe4, 0xdd, 0xd9, 0xe6, 0xfe, 0xae, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xcc, 0xbf, 0xce, 0xc3, 0xcc, 0xbf, 0xff}; const byte credits_page_9[] = {0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xe7, 0x0, 0xe9, 0xe7, 0xd9, 0xd8, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xae, 0xca, 0xc5, 0xc2, 0xd9, 0xd2, 0xfe, 0xae, 0xd1, 0xbd, 0xa4, 0xce, 0xe3, 0xe3, 0xe0, 0xfe, 0xae, 0xcf, 0xe7, 0xd9, 0xe2, 0xe8, 0xdd, 0xfe, 0xae, 0xcd, 0xd5, 0xe4, 0xe4, 0xed, 0xc7, 0xdd, 0xd8, 0xce, 0xe3, 0xbb, 0xc1, 0xbc, 0xff}; @@ -2753,7 +2753,7 @@ const byte press_start[] = {0xca, 0xe9, 0xe7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, const byte option_transfer[] = {0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xff}; const byte option_dreamdex[] = {0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xff}; const byte option_credits[] = {0xbd, 0xe6, 0xd9, 0xd8, 0xdd, 0xe8, 0xe7, 0xff}; -const byte intro_first[] = {0xc2, 0xd9, 0xe0, 0xe0, 0xe3, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0xab, 0xfe, 0xfe, 0xc4, 0xe9, 0xe7, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xeb, 0xe3, 0xe6, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xd5, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0xae, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xd1, 0xc3, 0xc6, 0xc6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xed, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe0, 0xe3, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xd6, 0xd9, 0xe8, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xdd, 0xd8, 0xb8, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd9, 0xe2, 0xde, 0xe3, 0xed, 0xab, 0xfe, 0xfe, 0xae, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xff}; +const byte intro_first[] = {0xc2, 0xd9, 0xe0, 0xe0, 0xe3, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0xab, 0xfe, 0xfe, 0xc4, 0xe9, 0xe7, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xeb, 0xe3, 0xe6, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xd5, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0xae, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xd1, 0xc3, 0xc6, 0xc6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xed, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe0, 0xe3, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xd6, 0xd9, 0xe8, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xdd, 0xd8, 0xb8, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd9, 0xe2, 0xde, 0xe3, 0xed, 0xab, 0xfe, 0xfe, 0xae, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff}; const byte intro_legal[] = {0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe3, 0xda, 0xfe, 0xe0, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd5, 0xe4, 0xe4, 0xe6, 0xd9, 0xd7, 0xdd, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xd5, 0xe2, 0xd7, 0xdc, 0xdd, 0xe7, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xda, 0xdd, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xbb, 0xc6, 0xd1, 0xbb, 0xd3, 0xcd, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0xfe, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0x0, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe1, 0xe9, 0xe7, 0xdd, 0xd7, 0xfe, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xeb, 0xe2, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0x0, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0x0, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0xad, 0xfe, 0xfe, 0xfe, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xff}; const byte cart_load_error[] = {0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xad, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xdd, 0xe2, 0xe7, 0xd9, 0xe6, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xea, 0xd9, 0xe0, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff}; const byte pulled_cart_error[] = {0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xad, 0xff}; @@ -2766,9 +2766,9 @@ const byte johto_name[] = {0xc4, 0xc9, 0xc2, 0xce, 0xc9, 0xf0, 0xff}; const byte credits_page_1[] = {0xc6, 0xd9, 0xd5, 0xd8, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xf0, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff}; const byte credits_page_2[] = {0xc6, 0xe3, 0xdb, 0xe3, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xe3, 0xae, 0xdd, 0xd8, 0xd9, 0xd5, 0xe8, 0xe3, 0xe6, 0xf0, 0xfe, 0xfe, 0xae, 0xc4, 0xe3, 0xe1, 0xd9, 0xfe, 0xfe, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xeb, 0xe3, 0xe6, 0xdf, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xc4, 0x0, 0xbc, 0xdd, 0xe6, 0xd8, 0xe1, 0xd5, 0xe2, 0xff}; const byte credits_page_3[] = {0xc3, 0xd7, 0xe3, 0xe2, 0x0, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xe9, 0xdd, 0xdb, 0xdd, 0xce, 0xc5, 0xc9, 0xfe, 0xae, 0xc1, 0xe9, 0xdd, 0xbb, 0xd6, 0xd9, 0xe0, 0xfe, 0xae, 0xcd, 0xe3, 0xe9, 0xe6, 0xbb, 0xe4, 0xe4, 0xe0, 0xd9, 0xfe, 0x2d, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd5, 0xe6, 0xe8, 0xdd, 0xe7, 0xe8, 0xe7, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xcd, 0xdc, 0xe3, 0xeb, 0xd8, 0xe3, 0xeb, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0x0, 0xbd, 0xe0, 0xd9, 0xd5, 0xe6, 0xff}; -const byte credits_page_4[] = {0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xe6, 0xd6, 0xdd, 0xe8, 0xe6, 0xd5, 0xe6, 0xed, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0xfe, 0xbf, 0xec, 0xd9, 0xd7, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xce, 0xdd, 0xe1, 0xe3, 0xd0, 0xc7, 0xfe, 0xfe, 0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0xfe, 0xda, 0xe9, 0xe2, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xf0, 0x0, 0xfb, 0xe6, 0xdd, 0xe7, 0xdd, 0xe2, 0xdb, 0xca, 0xdc, 0xdd, 0xe0, 0xff}; +const byte credits_page_4[] = {0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xe6, 0xd6, 0xdd, 0xe8, 0xe6, 0xd5, 0xe6, 0xed, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0xfe, 0xbf, 0xec, 0xd9, 0xd7, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xce, 0xdd, 0xe1, 0xe3, 0xd0, 0xc7, 0xff}; const byte credits_page_5[] = {0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xe6, 0xdd, 0xe0, 0xd9, 0xed, 0xdf, 0xa7, 0xa5, 0xfe, 0xae, 0xcd, 0xdc, 0xd5, 0xe3, 0xff}; -const byte credits_page_6[] = {0xcd, 0xe4, 0xd5, 0xd7, 0xd9, 0x0, 0xc9, 0xe4, 0xe8, 0xdd, 0xe1, 0xdd, 0xee, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xf0, 0xfe, 0xfe, 0xae, 0xd9, 0xd5, 0xe7, 0xed, 0xd5, 0xe7, 0xe4, 0xdd, 0xa4, 0xa2, 0xa5, 0xff}; +const byte credits_page_6[] = {0xcd, 0xe4, 0xd5, 0xd7, 0xd9, 0x0, 0xc9, 0xe4, 0xe8, 0xdd, 0xe1, 0xdd, 0xee, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xf0, 0xfe, 0xfe, 0xae, 0xd9, 0xd5, 0xe7, 0xed, 0xd5, 0xe7, 0xe4, 0xdd, 0xa4, 0xa2, 0xa5, 0xfe, 0xfe, 0xc6, 0xe3, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xcc, 0xc9, 0xc7, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0xfe, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0x0, 0xda, 0xe9, 0xe2, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xf0, 0xfe, 0xfe, 0xae, 0xe6, 0xdd, 0xe7, 0xdd, 0xe2, 0xdb, 0xca, 0xdc, 0xdd, 0xe0, 0xff}; const byte credits_page_7[] = {0xbc, 0xe9, 0xdd, 0xe0, 0xe8, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xbe, 0xd9, 0xea, 0xdf, 0xdd, 0xe8, 0xca, 0xe6, 0xe3, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xce, 0xe3, 0xe2, 0xd7, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xc1, 0xbc, 0xbb, 0xff}; const byte credits_page_8[] = {0xc3, 0xe2, 0xe7, 0xe4, 0xdd, 0xe6, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xe7, 0x0, 0xe3, 0xda, 0xf0, 0xfe, 0xfe, 0xae, 0xc1, 0xe3, 0xe4, 0xe4, 0xdd, 0xd9, 0xe6, 0xfe, 0xae, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xcc, 0xbf, 0xce, 0xc3, 0xcc, 0xbf, 0xff}; const byte credits_page_9[] = {0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xe7, 0x0, 0xe9, 0xe7, 0xd9, 0xd8, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xae, 0xca, 0xc5, 0xc2, 0xd9, 0xd2, 0xfe, 0xae, 0xd1, 0xbd, 0xa4, 0xce, 0xe3, 0xe3, 0xe0, 0xfe, 0xae, 0xcf, 0xe7, 0xd9, 0xe2, 0xe8, 0xdd, 0xfe, 0xae, 0xcd, 0xd5, 0xe4, 0xe4, 0xed, 0xc7, 0xdd, 0xd8, 0xce, 0xe3, 0xbb, 0xc1, 0xbc, 0xff}; @@ -3412,7 +3412,7 @@ const byte press_start[] = {0xca, 0xe9, 0xe7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, const byte option_transfer[] = {0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xff}; const byte option_dreamdex[] = {0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xff}; const byte option_credits[] = {0xbd, 0xe6, 0xd9, 0xd8, 0xdd, 0xe8, 0xe7, 0xff}; -const byte intro_first[] = {0xc2, 0xd9, 0xe0, 0xe0, 0xe3, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0xab, 0xfe, 0xfe, 0xc4, 0xe9, 0xe7, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xeb, 0xe3, 0xe6, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xd5, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0xae, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xd1, 0xc3, 0xc6, 0xc6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xed, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe0, 0xe3, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xd6, 0xd9, 0xe8, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xdd, 0xd8, 0xb8, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd9, 0xe2, 0xde, 0xe3, 0xed, 0xab, 0xfe, 0xfe, 0xae, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xff}; +const byte intro_first[] = {0xc2, 0xd9, 0xe0, 0xe0, 0xe3, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0xab, 0xfe, 0xfe, 0xc4, 0xe9, 0xe7, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xeb, 0xe3, 0xe6, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xd5, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0xae, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xd1, 0xc3, 0xc6, 0xc6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xed, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe0, 0xe3, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xd6, 0xd9, 0xe8, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xdd, 0xd8, 0xb8, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd9, 0xe2, 0xde, 0xe3, 0xed, 0xab, 0xfe, 0xfe, 0xae, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff}; const byte intro_legal[] = {0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe3, 0xda, 0xfe, 0xe0, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd5, 0xe4, 0xe4, 0xe6, 0xd9, 0xd7, 0xdd, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xd5, 0xe2, 0xd7, 0xdc, 0xdd, 0xe7, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xda, 0xdd, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xbb, 0xc6, 0xd1, 0xbb, 0xd3, 0xcd, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0xfe, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0x0, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe1, 0xe9, 0xe7, 0xdd, 0xd7, 0xfe, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xeb, 0xe2, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0x0, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0x0, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0xad, 0xfe, 0xfe, 0xfe, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xff}; const byte cart_load_error[] = {0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xad, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xdd, 0xe2, 0xe7, 0xd9, 0xe6, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xea, 0xd9, 0xe0, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff}; const byte pulled_cart_error[] = {0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xad, 0xff}; @@ -3425,9 +3425,9 @@ const byte johto_name[] = {0xc4, 0xc9, 0xc2, 0xce, 0xc9, 0xf0, 0xff}; const byte credits_page_1[] = {0xc6, 0xd9, 0xd5, 0xd8, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xf0, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff}; const byte credits_page_2[] = {0xc6, 0xe3, 0xdb, 0xe3, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xe3, 0xae, 0xdd, 0xd8, 0xd9, 0xd5, 0xe8, 0xe3, 0xe6, 0xf0, 0xfe, 0xfe, 0xae, 0xc4, 0xe3, 0xe1, 0xd9, 0xfe, 0xfe, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xeb, 0xe3, 0xe6, 0xdf, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xc4, 0x0, 0xbc, 0xdd, 0xe6, 0xd8, 0xe1, 0xd5, 0xe2, 0xff}; const byte credits_page_3[] = {0xc3, 0xd7, 0xe3, 0xe2, 0x0, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xe9, 0xdd, 0xdb, 0xdd, 0xce, 0xc5, 0xc9, 0xfe, 0xae, 0xc1, 0xe9, 0xdd, 0xbb, 0xd6, 0xd9, 0xe0, 0xfe, 0xae, 0xcd, 0xe3, 0xe9, 0xe6, 0xbb, 0xe4, 0xe4, 0xe0, 0xd9, 0xfe, 0x2d, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd5, 0xe6, 0xe8, 0xdd, 0xe7, 0xe8, 0xe7, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xcd, 0xdc, 0xe3, 0xeb, 0xd8, 0xe3, 0xeb, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0x0, 0xbd, 0xe0, 0xd9, 0xd5, 0xe6, 0xff}; -const byte credits_page_4[] = {0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xe6, 0xd6, 0xdd, 0xe8, 0xe6, 0xd5, 0xe6, 0xed, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0xfe, 0xbf, 0xec, 0xd9, 0xd7, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xce, 0xdd, 0xe1, 0xe3, 0xd0, 0xc7, 0xfe, 0xfe, 0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0xfe, 0xda, 0xe9, 0xe2, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xf0, 0x0, 0xfb, 0xe6, 0xdd, 0xe7, 0xdd, 0xe2, 0xdb, 0xca, 0xdc, 0xdd, 0xe0, 0xff}; +const byte credits_page_4[] = {0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xe6, 0xd6, 0xdd, 0xe8, 0xe6, 0xd5, 0xe6, 0xed, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0xfe, 0xbf, 0xec, 0xd9, 0xd7, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xce, 0xdd, 0xe1, 0xe3, 0xd0, 0xc7, 0xff}; const byte credits_page_5[] = {0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xe6, 0xdd, 0xe0, 0xd9, 0xed, 0xdf, 0xa7, 0xa5, 0xfe, 0xae, 0xcd, 0xdc, 0xd5, 0xe3, 0xff}; -const byte credits_page_6[] = {0xcd, 0xe4, 0xd5, 0xd7, 0xd9, 0x0, 0xc9, 0xe4, 0xe8, 0xdd, 0xe1, 0xdd, 0xee, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xf0, 0xfe, 0xfe, 0xae, 0xd9, 0xd5, 0xe7, 0xed, 0xd5, 0xe7, 0xe4, 0xdd, 0xa4, 0xa2, 0xa5, 0xff}; +const byte credits_page_6[] = {0xcd, 0xe4, 0xd5, 0xd7, 0xd9, 0x0, 0xc9, 0xe4, 0xe8, 0xdd, 0xe1, 0xdd, 0xee, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xf0, 0xfe, 0xfe, 0xae, 0xd9, 0xd5, 0xe7, 0xed, 0xd5, 0xe7, 0xe4, 0xdd, 0xa4, 0xa2, 0xa5, 0xfe, 0xfe, 0xc6, 0xe3, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xcc, 0xc9, 0xc7, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0xfe, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0x0, 0xda, 0xe9, 0xe2, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xf0, 0xfe, 0xfe, 0xae, 0xe6, 0xdd, 0xe7, 0xdd, 0xe2, 0xdb, 0xca, 0xdc, 0xdd, 0xe0, 0xff}; const byte credits_page_7[] = {0xbc, 0xe9, 0xdd, 0xe0, 0xe8, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xbe, 0xd9, 0xea, 0xdf, 0xdd, 0xe8, 0xca, 0xe6, 0xe3, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xce, 0xe3, 0xe2, 0xd7, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xc1, 0xbc, 0xbb, 0xff}; const byte credits_page_8[] = {0xc3, 0xe2, 0xe7, 0xe4, 0xdd, 0xe6, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xe7, 0x0, 0xe3, 0xda, 0xf0, 0xfe, 0xfe, 0xae, 0xc1, 0xe3, 0xe4, 0xe4, 0xdd, 0xd9, 0xe6, 0xfe, 0xae, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xcc, 0xbf, 0xce, 0xc3, 0xcc, 0xbf, 0xff}; const byte credits_page_9[] = {0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xe7, 0x0, 0xe9, 0xe7, 0xd9, 0xd8, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xae, 0xca, 0xc5, 0xc2, 0xd9, 0xd2, 0xfe, 0xae, 0xd1, 0xbd, 0xa4, 0xce, 0xe3, 0xe3, 0xe0, 0xfe, 0xae, 0xcf, 0xe7, 0xd9, 0xe2, 0xe8, 0xdd, 0xfe, 0xae, 0xcd, 0xd5, 0xe4, 0xe4, 0xed, 0xc7, 0xdd, 0xd8, 0xce, 0xe3, 0xbb, 0xc1, 0xbc, 0xff}; @@ -4071,7 +4071,7 @@ const byte press_start[] = {0xca, 0xe9, 0xe7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, const byte option_transfer[] = {0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xff}; const byte option_dreamdex[] = {0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xff}; const byte option_credits[] = {0xbd, 0xe6, 0xd9, 0xd8, 0xdd, 0xe8, 0xe7, 0xff}; -const byte intro_first[] = {0xc2, 0xd9, 0xe0, 0xe0, 0xe3, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0xab, 0xfe, 0xfe, 0xc4, 0xe9, 0xe7, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xeb, 0xe3, 0xe6, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xd5, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0xae, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xd1, 0xc3, 0xc6, 0xc6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xed, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe0, 0xe3, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xd6, 0xd9, 0xe8, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xdd, 0xd8, 0xb8, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd9, 0xe2, 0xde, 0xe3, 0xed, 0xab, 0xfe, 0xfe, 0xae, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xff}; +const byte intro_first[] = {0xc2, 0xd9, 0xe0, 0xe0, 0xe3, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0xab, 0xfe, 0xfe, 0xc4, 0xe9, 0xe7, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xeb, 0xe3, 0xe6, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xd5, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0xae, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xd1, 0xc3, 0xc6, 0xc6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xed, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe0, 0xe3, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xd6, 0xd9, 0xe8, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xdd, 0xd8, 0xb8, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd9, 0xe2, 0xde, 0xe3, 0xed, 0xab, 0xfe, 0xfe, 0xae, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff}; const byte intro_legal[] = {0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe3, 0xda, 0xfe, 0xe0, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd5, 0xe4, 0xe4, 0xe6, 0xd9, 0xd7, 0xdd, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xd5, 0xe2, 0xd7, 0xdc, 0xdd, 0xe7, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xda, 0xdd, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xbb, 0xc6, 0xd1, 0xbb, 0xd3, 0xcd, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0xfe, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0x0, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe1, 0xe9, 0xe7, 0xdd, 0xd7, 0xfe, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xeb, 0xe2, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0x0, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0x0, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0xad, 0xfe, 0xfe, 0xfe, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xff}; const byte cart_load_error[] = {0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xad, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xdd, 0xe2, 0xe7, 0xd9, 0xe6, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xea, 0xd9, 0xe0, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff}; const byte pulled_cart_error[] = {0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xad, 0xff}; @@ -4084,9 +4084,9 @@ const byte johto_name[] = {0xc4, 0xc9, 0xc2, 0xce, 0xc9, 0xf0, 0xff}; const byte credits_page_1[] = {0xc6, 0xd9, 0xd5, 0xd8, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xf0, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff}; const byte credits_page_2[] = {0xc6, 0xe3, 0xdb, 0xe3, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xe3, 0xae, 0xdd, 0xd8, 0xd9, 0xd5, 0xe8, 0xe3, 0xe6, 0xf0, 0xfe, 0xfe, 0xae, 0xc4, 0xe3, 0xe1, 0xd9, 0xfe, 0xfe, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xeb, 0xe3, 0xe6, 0xdf, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xc4, 0x0, 0xbc, 0xdd, 0xe6, 0xd8, 0xe1, 0xd5, 0xe2, 0xff}; const byte credits_page_3[] = {0xc3, 0xd7, 0xe3, 0xe2, 0x0, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xe9, 0xdd, 0xdb, 0xdd, 0xce, 0xc5, 0xc9, 0xfe, 0xae, 0xc1, 0xe9, 0xdd, 0xbb, 0xd6, 0xd9, 0xe0, 0xfe, 0xae, 0xcd, 0xe3, 0xe9, 0xe6, 0xbb, 0xe4, 0xe4, 0xe0, 0xd9, 0xfe, 0x2d, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd5, 0xe6, 0xe8, 0xdd, 0xe7, 0xe8, 0xe7, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xcd, 0xdc, 0xe3, 0xeb, 0xd8, 0xe3, 0xeb, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0x0, 0xbd, 0xe0, 0xd9, 0xd5, 0xe6, 0xff}; -const byte credits_page_4[] = {0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xe6, 0xd6, 0xdd, 0xe8, 0xe6, 0xd5, 0xe6, 0xed, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0xfe, 0xbf, 0xec, 0xd9, 0xd7, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xce, 0xdd, 0xe1, 0xe3, 0xd0, 0xc7, 0xfe, 0xfe, 0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0xfe, 0xda, 0xe9, 0xe2, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xf0, 0x0, 0xfb, 0xe6, 0xdd, 0xe7, 0xdd, 0xe2, 0xdb, 0xca, 0xdc, 0xdd, 0xe0, 0xff}; +const byte credits_page_4[] = {0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xe6, 0xd6, 0xdd, 0xe8, 0xe6, 0xd5, 0xe6, 0xed, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0xfe, 0xbf, 0xec, 0xd9, 0xd7, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xce, 0xdd, 0xe1, 0xe3, 0xd0, 0xc7, 0xff}; const byte credits_page_5[] = {0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xe6, 0xdd, 0xe0, 0xd9, 0xed, 0xdf, 0xa7, 0xa5, 0xfe, 0xae, 0xcd, 0xdc, 0xd5, 0xe3, 0xff}; -const byte credits_page_6[] = {0xcd, 0xe4, 0xd5, 0xd7, 0xd9, 0x0, 0xc9, 0xe4, 0xe8, 0xdd, 0xe1, 0xdd, 0xee, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xf0, 0xfe, 0xfe, 0xae, 0xd9, 0xd5, 0xe7, 0xed, 0xd5, 0xe7, 0xe4, 0xdd, 0xa4, 0xa2, 0xa5, 0xff}; +const byte credits_page_6[] = {0xcd, 0xe4, 0xd5, 0xd7, 0xd9, 0x0, 0xc9, 0xe4, 0xe8, 0xdd, 0xe1, 0xdd, 0xee, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xf0, 0xfe, 0xfe, 0xae, 0xd9, 0xd5, 0xe7, 0xed, 0xd5, 0xe7, 0xe4, 0xdd, 0xa4, 0xa2, 0xa5, 0xfe, 0xfe, 0xc6, 0xe3, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xcc, 0xc9, 0xc7, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0xfe, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0x0, 0xda, 0xe9, 0xe2, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xf0, 0xfe, 0xfe, 0xae, 0xe6, 0xdd, 0xe7, 0xdd, 0xe2, 0xdb, 0xca, 0xdc, 0xdd, 0xe0, 0xff}; const byte credits_page_7[] = {0xbc, 0xe9, 0xdd, 0xe0, 0xe8, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xbe, 0xd9, 0xea, 0xdf, 0xdd, 0xe8, 0xca, 0xe6, 0xe3, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xce, 0xe3, 0xe2, 0xd7, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xc1, 0xbc, 0xbb, 0xff}; const byte credits_page_8[] = {0xc3, 0xe2, 0xe7, 0xe4, 0xdd, 0xe6, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xe7, 0x0, 0xe3, 0xda, 0xf0, 0xfe, 0xfe, 0xae, 0xc1, 0xe3, 0xe4, 0xe4, 0xdd, 0xd9, 0xe6, 0xfe, 0xae, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xcc, 0xbf, 0xce, 0xc3, 0xcc, 0xbf, 0xff}; const byte credits_page_9[] = {0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xe7, 0x0, 0xe9, 0xe7, 0xd9, 0xd8, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xae, 0xca, 0xc5, 0xc2, 0xd9, 0xd2, 0xfe, 0xae, 0xd1, 0xbd, 0xa4, 0xce, 0xe3, 0xe3, 0xe0, 0xfe, 0xae, 0xcf, 0xe7, 0xd9, 0xe2, 0xe8, 0xdd, 0xfe, 0xae, 0xcd, 0xd5, 0xe4, 0xe4, 0xed, 0xc7, 0xdd, 0xd8, 0xce, 0xe3, 0xbb, 0xc1, 0xbc, 0xff}; diff --git a/text_helper/main.py b/text_helper/main.py index 63fab77..5ffe141 100644 --- a/text_helper/main.py +++ b/text_helper/main.py @@ -82,6 +82,24 @@ jpnCharArray = [ 0x3A, 0xC4, 0xD6, 0xDC, 0xE4, 0xF6, 0xFC, 0x2A, 0x20, 0x20, 0x15E, 0x23C, 0x206, 0x1B2, 0x147, 0x19E, ] +jpnCharWidthArray = [ + 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, +0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, +0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, +0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, +0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, +0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, +0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, +0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, +0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, +0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, +0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, +0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, +0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, +0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, +0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, +0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, 0x0, 0x0, ] + charConversionList = [ # replaces the first char in the list with the latter ["'", "’"], @@ -124,12 +142,22 @@ def SplitSentenceIntoLines(sentence, offset, pixelsPerChar, pixelsInLine): # Figure out the length of the word in pixels for char in word: - if (pixelsPerChar == "Variable Latin Font"): - wordLength += engCharWidthArray[convertByte(ord(char), engCharArray)] - spaceLength = engCharWidthArray[convertByte(ord(' '), engCharArray)] - else: - wordLength += pixelsPerChar - spaceLength = pixelsPerChar + if (pixelsPerChar == "Variable"): + if(lang == Languages.Japanese): + wordLength += jpnCharWidthArray[convertByte(ord(char), engCharArray)] + spaceLength = jpnCharWidthArray[convertByte(ord(' '), engCharArray)] + else: + wordLength += engCharWidthArray[convertByte(ord(char), engCharArray)] + spaceLength = engCharWidthArray[convertByte(ord(' '), engCharArray)] + + elif (pixelsPerChar == "Default"): + if (lang == Languages.Japanese): + wordLength += 8 + spaceLength = 8 + + else: + wordLength += 6 + spaceLength = 6 # See if the whole sentence is a newline if (sentence == "Ň"): @@ -330,7 +358,7 @@ def convert_item(ogDict): arr = engCharArray for char in outStr[:-1]: byteStr += hex(convertByte(ord(char), arr)) + ", " - if outStr[-1] != ' ': # Check if the last char is a space + if (len(outStr) > 0 and outStr[-1] != ' '): # Check if the last char is a space byteStr += hex(convertByte(ord(outStr[-1]), arr)) + ", " byteStr += "0xff" diff --git a/text_helper/output.json b/text_helper/output.json index 29edab3..6f94fd3 100644 --- a/text_helper/output.json +++ b/text_helper/output.json @@ -1 +1 @@ -{"Japanese": {"PTGB": {"DIA_OPEN": {"bytes": "0xc2, 0xd9, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0x0, 0xc3, 0x0, 0xe1, 0x0, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xd9, 0xe2, 0xe2, 0xd9, 0xe0, 0xb8, 0x0, 0xbb, 0xe7, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xd9, 0x0, 0x0, 0xc3, 0x0, 0xe1, 0x0, 0xd5, 0x0, 0xe7, 0xd7, 0xdd, 0xd9, 0xe2, 0xe8, 0xdd, 0xe7, 0xe8, 0xb8, 0x0, 0xc3, 0xe2, 0xfe, 0xda, 0xd5, 0xd7, 0xe8, 0x0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xe9, 0xd6, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xc3, 0x0, 0xe1, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe7, 0xfe, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0x0, 0xfb, 0xc7, 0xed, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe0, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xea, 0xd5, 0xe6, 0xdd, 0xe3, 0xe9, 0xe7, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0x0, 0xe8, 0x0, 0xdc, 0xd5, 0xd8, 0xfe, 0xd5, 0xe2, 0xed, 0x0, 0xd6, 0xe6, 0xd9, 0xd5, 0xdf, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0xe7, 0x0, 0xed, 0xd9, 0xe8, 0xb8, 0xb8, 0xb8, 0xfb, 0xcd, 0xe3, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0x0, 0x0, 0xc3, 0x0, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xdd, 0xe2, 0xdb, 0xfe, 0xe3, 0xe2, 0x0, 0xd5, 0x0, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0xfe, 0xe3, 0xe0, 0xd8, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xfb, 0xc3, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xdc, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe7, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xdd, 0xe2, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xb8, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd9, 0xed, 0x0, 0xe1, 0xd9, 0xd9, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0x0, 0xfb, 0xce, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0x0, 0xda, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe1, 0xed, 0x0, 0xdb, 0xe3, 0xd5, 0xe0, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xd8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xd5, 0xe1, 0xd9, 0x0, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0xe7, 0xfe, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0x0, 0x0, 0xce, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xdc, 0xd9, 0xe0, 0xe4, 0x0, 0xfb, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xe2, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe9, 0xe8, 0xfe, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xe7, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0x0, 0xfb, 0xce, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xa3, 0xa6, 0xa1, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xd7, 0xd5, 0xe8, 0xd5, 0xe0, 0xe3, 0xdb, 0xe9, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xbe, 0xd9, 0xec, 0x0, 0x0, 0xe3, 0xe6, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe6, 0xe8, 0xb8, 0xfb, 0xbc, 0xe9, 0xe8, 0x0, 0xc3, 0x0, 0xe0, 0xe0, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xfe, 0xe8, 0xdc, 0xd9, 0xed, 0x0, 0xe6, 0xd9, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xfb, 0xc9, 0xe2, 0xd9, 0x0, 0xe0, 0xd5, 0xe7, 0xe8, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdb, 0xe3, 0xd9, 0xe7, 0x0, 0xeb, 0xe6, 0xe3, 0xe2, 0xdb, 0x0, 0xfe, 0xc3, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdf, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xb8, 0xb8, 0xb8, 0xfb, 0xeb, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0x0, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hey there I m Professor Fennel, As\u0147you can see I m a scientist, In\u0147fact the subject I m researching is\u0147Trainers \u023cMy dream is to collect save files of\u0147various trainers but I haven t had\u0147any breakthroughs yet,,,\u023cSo in the meantime I ve been working\u0147on a different project with one of my\u0147old friends \u023cIn my home region there s a location\u0147that can make a Pok mon s dreams into\u0147reality,\u023cThis means that any other Pok mon\u0147they meet in their dreams become\u0147real \u023cThat s fantastic but my goal is to\u0147do the same just with a trainer s\u0147dream instead That s why I need your\u0147help \u023cI want to bring as many Pok mon out\u0147of your dreams as possible \u023cThere s just over 250 Pok mon I want\u0147to catalogue in my Dream Pok Dex or\u0147Dream Dex for short,\u023cBut I ll let you keep any Pok mon \u0147they re from your dreams after all \u023cOne last note save data backups are\u0147recommended just on the off chance\u0147that something goes wrong \u0147I think that s everything,,,\u023cwhenever you re ready to start just\u0147let me know \u019e"}, "DIA_E4": {"bytes": "0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xc3, 0x0, 0xe1, 0x0, 0xe8, 0xdc, 0xe6, 0xdd, 0xe0, 0xe0, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xea, 0xd9, 0xfe, 0xd8, 0xd9, 0xd7, 0xdd, 0xd8, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe9, 0xe6, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xd9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0x0, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd5, 0xe8, 0xd9, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbf, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xc0, 0xe3, 0xe9, 0xe6, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xdc, 0xd5, 0xe1, 0xe4, 0xdd, 0xe3, 0xe2, 0x0, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi trainer I m thrilled you ve\u0147decided to help with our research \u0147but we need the best of the best \u023cCome back after you ve beaten the\u0147Elite Four and become the Champion \u019e"}, "DIA_MG_FRLGE": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0xfe, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0x0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xc1, 0xc3, 0xc0, 0xce, 0x0, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe2, 0xd9, 0xd5, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0x0, 0xc7, 0xd5, 0xe6, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xda, 0xdd, 0xe0, 0xe0, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe2, 0xd5, 0xdd, 0xe6, 0xd9, 0x0, 0xd5, 0xe7, 0xfe, 0xda, 0xe3, 0xe0, 0xe0, 0xe3, 0xeb, 0xe7, 0xf0, 0x0, 0xc6, 0xc3, 0xc8, 0xc5, 0x0, 0xce, 0xc9, 0xc1, 0xbf, 0xce, 0xc2, 0xbf, 0xcc, 0x0, 0xd1, 0xc3, 0xce, 0xc2, 0x0, 0xbb, 0xc6, 0xc6, 0xb8, 0xfb, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xdb, 0xe3, 0x0, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0x0, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer one more thing to take\u0147care of before we can begin you need\u0147to enable MYSTERY GIFT \u023cHead to the nearest Pok Mart and\u0147fill out the questionnaire as\u0147follows: LINK TOGETHER WITH ALL,\u023cAfter that you should be all set to\u0147go See you soon \u019e"}, "DIA_MG_RS": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0xfe, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0x0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0x0, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbf, 0xce, 0xbb, 0xc6, 0xbc, 0xcf, 0xcc, 0xc1, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xbd, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xe2, 0x0, 0xe2, 0xd9, 0xec, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0xf0, 0xfe, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0x0, 0xc3, 0xcd, 0x0, 0xbf, 0xd2, 0xbd, 0xc3, 0xce, 0xc3, 0xc8, 0xc1, 0xb8, 0x0, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdb, 0xe3, 0x0, 0xfb, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0x0, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer one more thing to take\u0147care of before we can begin you need\u0147to enable MYSTERY EVENT \u023cHead to the PETALBURG Pok mon Center\u0147and tell the man next to the PC:\u0147MYSTERY EVENT IS EXCITING, After\u0147that you should be all set to go \u023cSee you soon \u019e"}, "DIA_LETS_START": {"bytes": "0xca, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0x0, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xc3, 0xfe, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0x0, 0xc6, 0xd9, 0xe8, 0x0, 0xe7, 0x0, 0xdb, 0xd9, 0xe8, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0xd9, 0xd8, 0x0, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Perfect that s all the information I\u0147need Let s get started \u019e"}, "DIA_START": {"bytes": "0xc9, 0xe2, 0x0, 0xd5, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xfe, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xdd, 0xe7, 0xdc, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xb8, 0xfb, 0xc3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xb8, 0xfb, 0xce, 0xdc, 0xd9, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xfe, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0x0, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0xb8, 0xfb, 0xc9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0x0, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xbd, 0xe0, 0xe9, 0xd6, 0xfe, 0xd5, 0xe8, 0xe8, 0xd9, 0xe2, 0xd8, 0xd5, 0xe2, 0xe8, 0x0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0x0, 0xdd, 0xe2, 0xdd, 0xe8, 0xdd, 0xd5, 0xe8, 0xd9, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xd9, 0xb8, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "On a second Game Boy family system \u0147please load the Game Boy Pok mon game\u0147you wish to transfer from,\u023cIn your Game Boy Pok mon game make\u0147your current box the one you want to\u0147transfer from,\u023cThen connect this Game Boy Advance to\u0147the other Game Boy family system\u0147using a Game Boy Color link cable,\u023cOnce you re ready press A on this\u0147device talk to the Cable Club\u0147attendant and then initiate a trade,\u019e"}, "DIA_TRANS_GOOD": {"bytes": "0xbb, 0xe1, 0xd5, 0xee, 0xdd, 0xe2, 0xdb, 0x0, 0x0, 0xc0, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0x0, 0x0, 0xbf, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0xfe, 0xe4, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0x0, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Amazing Fantastic Everything went\u0147perfectly \u019e"}, "DIA_NEW_DEX": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xdd, 0xe7, 0xe2, 0x0, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0x0, 0x0, 0xc3, 0x0, 0xe0, 0xe0, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xd9, 0xec, 0xe8, 0xe6, 0xd5, 0x0, 0xe7, 0xeb, 0xd9, 0xd9, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xe6, 0xd9, 0xeb, 0xd5, 0xe6, 0xd8, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0xb8, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like there s at least one\u0147new Pok mon here that isn t in the\u0147Dream Dex I ll give them something\u0147extra sweet as a reward for you both,\u019e"}, "DIA_NO_NEW_DEX": {"bytes": "0xc3, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0x0, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0x0, 0xd5, 0xe2, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0xfe, 0xe3, 0xdf, 0xd5, 0xed, 0x0, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0x0, 0xdd, 0xe1, 0xe4, 0xe3, 0xe6, 0xe8, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0xfe, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe9, 0xe0, 0xe8, 0xe7, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe1, 0xe9, 0xe0, 0xe8, 0xdd, 0xe4, 0xe0, 0xd9, 0x0, 0xe8, 0xd9, 0xe7, 0xe8, 0xe7, 0x0, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It doesn t look like there s anything\u0147new for your Dream Dex but that s\u0147okay It s important to confirm\u0147research results with multiple tests \u019e"}, "DIA_SEND_FRIEND_KANTO": {"bytes": "0xc3, 0x0, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0x0, 0x0, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0x0, 0xe3, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xe3, 0xe2, 0x0, 0xcd, 0xd9, 0xea, 0xd9, 0xe2, 0x0, 0xc3, 0xe7, 0xe0, 0xd5, 0xe2, 0xd8, 0x0, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I m going to send these Pok mon to\u0147one of my friends so that you can\u0147pick them up They live just south of\u0147the Pok mon center on Seven Island \u019e"}, "DIA_SEND_FRIEND_HOENN_RS": {"bytes": "0xc3, 0x0, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0x0, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xc7, 0xe3, 0xe7, 0xe7, 0xd8, 0xd9, 0xd9, 0xe4, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0x0, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I m going to send these Pok mon to\u0147one of my friends so that you can\u0147pick them up \u023cThey live just southeast of the\u0147Pok mon center in Mossdeep City \u019e"}, "DIA_SEND_FRIEND_HOENN_E": {"bytes": "0xc3, 0x0, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0x0, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xcd, 0xe3, 0xe3, 0xe8, 0xe3, 0xe4, 0xe3, 0xe0, 0xdd, 0xe7, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0x0, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I m going to send these Pok mon to\u0147one of my friends so that you can\u0147pick them up \u023cThey live just southeast of the\u0147Pok mon center in Sootopolis City \u019e"}, "DIA_THANK": {"bytes": "0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0x0, 0xfe, 0xd1, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0x0, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0x0, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Thank you so much for your help \u0147Whenever you want to transfer more\u0147Pok mon just let me know See you\u0147around \u019e"}, "DIA_GET_MON": {"bytes": "0xe9, 0xe2, 0xe9, 0xe7, 0xd9, 0xd8, 0x0, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "unused will be removed\u019e"}, "DIA_MG_OTHER_EVENT": {"bytes": "0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xfe, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xb8, 0xfe, 0xce, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xd6, 0xe0, 0xd9, 0xe1, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe3, 0xea, 0xd9, 0xe6, 0xeb, 0xe6, 0xdd, 0xe8, 0xe8, 0xd9, 0xe2, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xb8, 0xfb, 0xce, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xe2, 0xe3, 0xeb, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xec, 0xe4, 0xd9, 0xe6, 0xdd, 0xd9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0x0, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi Trainer It looks like you have a\u0147different event currently loaded,\u0147That s no problem but it will be\u0147overwritten if you continue,\u023cTurn off the system now if you want\u0147to experience your current event but\u0147otherwise \u019e"}, "DIA_PKMN_TO_COLLECT": {"bytes": "0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe9, 0xe4, 0xb8, 0xb8, 0xb8, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe8, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe9, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0xfe, 0xe8, 0xdc, 0xe3, 0xe7, 0xd9, 0x0, 0xe9, 0xe4, 0xb8, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xea, 0xd9, 0x0, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi Trainer It looks like you still\u0147have Pok mon to pick up,,, I can t\u0147send over new Pok mon until you pick\u0147those up,\u023cCome back after you ve received them \u019e"}, "DIA_NO_VALID_PKMN": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xdd, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0x0, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xea, 0xd5, 0xe0, 0xdd, 0xd8, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xe2, 0xe3, 0xeb, 0xb8, 0xfb, 0xc1, 0xe3, 0x0, 0xd8, 0xe3, 0xe9, 0xd6, 0xe0, 0xd9, 0x0, 0xd7, 0xdc, 0xd9, 0xd7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xdd, 0xe8, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe8, 0x0, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry Trainer it doesn t look like\u0147you have any valid Pok mon in your\u0147current box right now,\u023cGo double check your current box and\u0147we can give it another shot \u019e"}, "DIA_ASK_QUEST": {"bytes": "0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xbc, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0x0, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd5, 0xe7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0x0, 0xda, 0xd9, 0xeb, 0x0, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xb8, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi trainer Before we begin I need\u0147to ask you a few questions,\u019e"}, "DIA_WHAT_GAME_TRANS": {"bytes": "0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "And which Game Boy Pok mon game are\u0147you transferring from \u019e"}, "DIA_WHAT_LANG_TRANS": {"bytes": "0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "What language is the Game Boy Pok mon\u0147game that you re transferring from \u019e"}, "DIA_NO_GB_ROM": {"bytes": "0xc3, 0x0, 0xe1, 0x0, 0xe7, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xea, 0xd9, 0xe6, 0xe7, 0xdd, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0xb8, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I m sorry but that version in that\u0147language is not currently supported,\u019e"}, "DIA_IN_BOX": {"bytes": "0xbb, 0xe0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0x0, 0xc6, 0xd9, 0xe8, 0x0, 0xe7, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0xb8, 0xfb, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xd9, 0xe1, 0xd6, 0xd9, 0xe6, 0x0, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xd5, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe7, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0x0, 0x0, 0xdd, 0xe8, 0x0, 0xbd, 0xbb, 0xc8, 0xc8, 0xc9, 0xce, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xb8, 0xfb, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0x0, 0xe3, 0xe6, 0xfe, 0xe7, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xb8, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Alright Let s take a look at the\u0147Pok mon that will be transfered,\u023cPlease remember once a Pok mon is\u0147transfered it CANNOT be returned to\u0147the Game Boy Game Pak,\u023cSelect confirm once you re ready or\u0147select cancel if you want to keep the\u0147Pok mon on your Game Boy Game Pak,\u019e"}, "DIA_MYTHIC_CONVERT": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0x0, 0xe6, 0xd5, 0xe6, 0xd9, 0xfe, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0x0, 0xbe, 0xe9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xe6, 0xd5, 0xe6, 0xdd, 0xe8, 0xed, 0x0, 0x0, 0xdd, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0x0, 0xea, 0xd9, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xb8, 0xfb, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd8, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe0, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xd9, 0xe8, 0xfe, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0x0, 0xc9, 0xce, 0x0, 0x0, 0xce, 0xc3, 0xbe, 0x0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xcd, 0xdc, 0xdd, 0xe2, 0xdd, 0xe2, 0xd9, 0xe7, 0xe7, 0xb8, 0xfb, 0xc9, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe0, 0xd9, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xdb, 0xe9, 0xd5, 0xe6, 0xd9, 0xe2, 0xe8, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xda, 0xe9, 0xe8, 0xe9, 0xe6, 0xd9, 0xb8, 0x0, 0xbe, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd5, 0xe4, 0xe4, 0xe0, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd6, 0xe3, 0xec, 0xb8, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like you have a rare\u0147Mythical Pok mon Due to their\u0147rarity it seems they ve overloaded\u0147the machine,\u023cI can stablize them if you d like \u0147but it ll change some things like met\u0147location OT TID and Shininess,\u023cOtherwise I can leave them as is but\u0147there s no guarentee that they ll be\u0147transferrable in the future, Do you\u0147want me to stablize them \u023cThis will apply to all of the\u0147Mythical Pok mon currently in your\u0147box,\u019e"}, "DIA_CANCEL": {"bytes": "0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0x0, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xdd, 0xda, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0x0, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0x0, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "No worries Feel free to come back if\u0147you change your mind See you around \u019e"}, "DIA_SOME_INVALID_PKMN": {"bytes": "0xc3, 0x0, 0xe7, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0xb8, 0xfb, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xe3, 0xe0, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe8, 0xd9, 0xe1, 0xe7, 0x0, 0xe3, 0xe6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xdd, 0xd9, 0xd8, 0xfe, 0xdd, 0xe2, 0xd7, 0xe3, 0xe6, 0xe6, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0x0, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0x0, 0xe9, 0xe2, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0xfe, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0xb8, 0xfb, 0xce, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xda, 0xdd, 0xe2, 0xd9, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0x0, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I see there is at least one Pok mon\u0147that cannot be transferred from your\u0147current box,\u023cPok mon holding items or modified\u0147incorrectly through unintended means\u0147cannot be transferred,\u023cThe other Pok mon will transfer just\u0147fine though \u019e"}, "DIA_MENU_BACK": {"bytes": "0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0x0, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xfe, 0xd5, 0xe2, 0xed, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0x0, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "No worries Feel free to come back\u0147any time \u019e"}, "DIA_IS_MISSINGNO": {"bytes": "0xb8, 0xb8, 0xb8, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0xfe, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xb8, 0xb8, 0xb8, 0x0, 0xc3, 0xe8, 0xfe, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0x0, 0xd6, 0xd9, 0x0, 0xdb, 0xe6, 0xd5, 0xe4, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0x0, 0x0, 0xe7, 0xe3, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0x0, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": ",,, It seems like one of your Pok mon\u0147is messing with the machine,,, It\u0147looks to only be graphical though so\u0147we can continue \u019e"}, "DIA_ERROR_COLOSSEUM": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd7, 0xe3, 0xe0, 0xe3, 0xe7, 0xe7, 0xd9, 0xe9, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0xfe, 0xe6, 0xe3, 0xe3, 0xe1, 0x0, 0x0, 0xc6, 0xd9, 0xe8, 0x0, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like you went to the\u0147colosseum instead of the trading\u0147room Let s try that again \u019e"}, "DIA_ERROR_COM_ENDED": {"bytes": "0xbd, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0xfe, 0xeb, 0xd5, 0xe7, 0x0, 0xe8, 0xd9, 0xe6, 0xe1, 0xdd, 0xe2, 0xd5, 0xe8, 0xd9, 0xd8, 0xb8, 0x0, 0xc6, 0xd9, 0xe8, 0x0, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Communication with the other device\u0147was terminated, Let s try that again \u019e"}, "DIA_ERROR_DISCONNECT": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xfe, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xd8, 0xdd, 0xe7, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xd9, 0xd8, 0xb8, 0xb8, 0xb8, 0x0, 0xc6, 0xd9, 0xe8, 0x0, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like the Game Boy Color link\u0147cable was disconnected,,, Let s try\u0147that again \u019e"}, "DIA_ERROR_TIME_ONE": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0xfe, 0xe3, 0xe9, 0xe8, 0xb8, 0xb8, 0xb8, 0x0, 0xc6, 0xd9, 0xe8, 0x0, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like the connection timed\u0147out,,, Let s try that again \u019e"}, "DIA_ERROR_TIME_TWO": {"bytes": "0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0xfe, 0xe3, 0xe9, 0xe8, 0xb8, 0xb8, 0xb8, 0x0, 0xc6, 0xd9, 0xe8, 0x0, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It seems like the connection timed\u0147out,,, Let s try that again \u019e"}, "DIA_WHAT_LANG_EVENT": {"bytes": "0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "What language is the Game Boy Pok mon\u0147game that you want to send an event\u0147to \u019e"}, "DIA_WHAT_GAME_EVENT": {"bytes": "0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd8, 0xe3, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "And which Game Boy Pok mon game do\u0147you want to send an event to \u019e"}, "DIA_K_DEX_NOT_FULL": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0x0, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xa2, 0xa6, 0xa1, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xb8, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xeb, 0xd9, 0x0, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer it looks like you\u0147haven t caught all 150 Pok mon from\u0147the Kanto region yet,\u023cGo out and catch them all and then\u0147we ll be able to send over the event \u019e"}, "DIA_J_DEX_NOT_FULL": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0x0, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xaa, 0xaa, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc4, 0xe3, 0xdc, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xb8, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xeb, 0xd9, 0x0, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer it looks like you\u0147haven t caught all 99 new Pok mon\u0147from the Johto region yet,\u023cGo out and catch them all and then\u0147we ll be able to send over the event \u019e"}}, "RSEFRLG": {"dia_textGreet_rse": {"bytes": "0xd1, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0x0, 0x0, 0xc3, 0x0, 0xe8, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xe0, 0xd8, 0xfe, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xca, 0xc9, 0xc5, 0x0, 0xc7, 0xc9, 0xc8, 0x0, 0xce, 0xcc, 0xbb, 0xc3, 0xc8, 0xbf, 0xcc, 0xb8, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "When I was young I traveled the world\u0147as a POK MON TRAINER,\u019e"}, "dia_textGreet_frlg": {"bytes": "0xc3, 0x0, 0xe1, 0xd5, 0xed, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xe2, 0xe3, 0xeb, 0x0, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "I may not look like much now \u0147but when I was younger \u019e"}, "dia_textMoveBox_rs": {"bytes": "0xfc, 0x0, 0x0, 0xc9, 0xdc, 0x0, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0x0, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe9, 0xe2, 0xe0, 0xe3, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd8, 0xe3, 0xe3, 0xe6, 0x0, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206 Oh of course I have to unlock the\u0147door \u019e"}, "dia_textMoveBox_frlg": {"bytes": "0xfc, 0x0, 0x0, 0xc9, 0xdc, 0x0, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0x0, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd6, 0xe3, 0xec, 0xd9, 0xe7, 0x0, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206 Oh of course I have to move the\u0147boxes \u019e"}, "dia_textMoveBox_e": {"bytes": "0xfc, 0x0, 0x0, 0xc9, 0xdc, 0x0, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0x0, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe0, 0xd5, 0xe2, 0xe8, 0xe7, 0x0, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206 Oh of course I have to move the\u0147plants \u019e"}, "dia_textWeHere_r": {"bytes": "0xfc, 0x0, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xc7, 0xbb, 0xd2, 0xc3, 0xbf, 0xb8, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0x0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xb8, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0x0, 0xe2, 0xe3, 0x0, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0x0, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206 LOOKER: I am here in Hoenn to find\u0147the leader MAXIE,\u023cAs well I am helping my friend\u0147Professor FENNEL,\u023cThis is why you are here no I shall\u0147tell her you are ready, \u015eCome Allons y \u019e"}, "dia_textWeHere_s": {"bytes": "0xfc, 0x0, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xbb, 0xcc, 0xbd, 0xc2, 0xc3, 0xbf, 0xb8, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0x0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xb8, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0x0, 0xe2, 0xe3, 0x0, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0x0, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206 LOOKER: I am here in Hoenn to find\u0147the leader ARCHIE,\u023cAs well I am helping my friend\u0147Professor FENNEL,\u023cThis is why you are here no I shall\u0147tell her you are ready, \u015eCome Allons y \u019e"}, "dia_textWeHere_frlg": {"bytes": "0xfc, 0x0, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xc1, 0xc3, 0xc9, 0xd0, 0xbb, 0xc8, 0xc8, 0xc3, 0xb8, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0x0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xb8, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0x0, 0xe2, 0xe3, 0x0, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0x0, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206 LOOKER: I am here in Kanto to find\u0147the leader GIOVANNI,\u023cAs well I am helping my friend\u0147Professor FENNEL,\u023cThis is why you are here no I shall\u0147tell her you are ready, \u015eCome Allons y \u019e"}, "dia_textWeHere_e": {"bytes": "0xfc, 0x0, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0xe7, 0x0, 0xc7, 0xbb, 0xd2, 0xc3, 0xbf, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xcc, 0xbd, 0xc2, 0xc3, 0xbf, 0xb8, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0x0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xb8, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0x0, 0xe2, 0xe3, 0x0, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0x0, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206 LOOKER: I am here in Hoenn to find\u0147the leaders MAXIE and ARCHIE,\u023cAs well I am helping my friend\u0147Professor FENNEL,\u023cThis is why you are here no I shall\u0147tell her you are ready, \u015eCome Allons y \u019e"}, "dia_textRecieved": {"bytes": "0xfc, 0x0, 0x0, 0xfd, 0x0, 0x0, 0xcd, 0x0, 0xca, 0xc9, 0xc5, 0x0, 0xc7, 0xc9, 0xc8, 0x0, 0xeb, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0x0, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206 \u01b2 S POK MON were sent to\u0147the PC \u019e"}, "dia_textYouMustBe_first": {"bytes": "0xbb, 0xdc, 0x0, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xfd, 0x0, 0x0, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe8, 0xe3, 0xe0, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd7, 0xe3, 0xe1, 0xdd, 0xe2, 0xdb, 0xb8, 0xfb, 0xc9, 0xdc, 0x0, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0x0, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0x0, 0xfe, 0xc9, 0xe6, 0x0, 0x0, 0xe6, 0xd5, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdd, 0xe2, 0xe8, 0xe6, 0xe3, 0xd8, 0xe9, 0xd7, 0xd9, 0x0, 0xe1, 0xed, 0xe7, 0xd9, 0xe0, 0xda, 0xb8, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "Ah You must be \u01b2 I was\u0147told you d be coming,\u023cOh I still wear my disguise Pardon \u0147Or rather let me introduce myself,\u019e"}, "dia_textYouMustBe_second": {"bytes": "0xbb, 0xdc, 0x0, 0x0, 0xfd, 0x0, 0x0, 0x0, 0xd1, 0xd9, 0xe0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0x0, 0xc1, 0xe3, 0xe3, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xe7, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xfb, 0xc9, 0xdc, 0x0, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0x0, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0x0, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "Ah \u01b2 Welcome back Good to\u0147see you again \u023cOh I still wear my disguise Pardon \u019e"}, "dia_textIAm_first": {"bytes": "0xfc, 0x0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xd5, 0x0, 0xdb, 0xe0, 0xe3, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xe3, 0xe8, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd9, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc3, 0xe2, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xe0, 0xdd, 0xd7, 0xd9, 0xb8, 0xfb, 0xc7, 0xed, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0x0, 0x0, 0xfa, 0xbb, 0xdc, 0x0, 0x0, 0xe2, 0xe3, 0x0, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0x0, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0xfe, 0xe2, 0xd5, 0xe1, 0xd9, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0xb8, 0xfb, 0xc7, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0x0, 0x0, 0xdd, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0x0, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206 I am a globe trotting elite of the\u0147International Police,\u023cMy name \u015eAh no I shall inform you of my code\u0147name only,\u023cMy code name it is LOOKER \u019e"}, "dia_textIAm_second": {"bytes": "0xfc, 0x0, 0x0, 0xc3, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc3, 0x0, 0x0, 0xdb, 0xe0, 0xe3, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xe3, 0xe8, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd9, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc3, 0xe2, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xe0, 0xdd, 0xd7, 0xd9, 0xb8, 0xfb, 0xc7, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0x0, 0x0, 0xdd, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0x0, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206 It is I globe trotting elite of the\u0147International Police,\u023cMy code name it is LOOKER \u019e"}, "dia_textPCConvo": {"bytes": "0xfc, 0x0, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbb, 0xdc, 0x0, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0x0, 0x0, 0xc3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xdd, 0xe8, 0xfe, 0xfd, 0x0, 0x0, 0xdc, 0xd5, 0xe7, 0x0, 0xd5, 0xe6, 0xe6, 0xdd, 0xea, 0xd9, 0xd8, 0x0, 0xfb, 0xfc, 0x0, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0xe2, 0xd8, 0xd9, 0xd9, 0xd8, 0x0, 0x0, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x0, 0xc7, 0xc9, 0xc8, 0x0, 0xfb, 0xfc, 0x0, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbf, 0xec, 0xd7, 0xd9, 0xe0, 0xe0, 0xd9, 0xe2, 0xe8, 0x0, 0x0, 0xc3, 0x0, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xfe, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe1, 0xd9, 0xe2, 0xe8, 0xd5, 0xe6, 0xdd, 0xe0, 0xed, 0x0, 0x0, 0xe7, 0xe8, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206 FENNEL: Ah LOOKER I take it\u0147\u01b2 has arrived \u023c\u0206 LOOKER: Indeed They re ready to\u0147receive their POK MON \u023c\u0206 FENNEL: Excellent I ll send them\u0147over momentarily stand by \u019e"}, "dia_textPCThanks": {"bytes": "0xfc, 0x0, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xbd, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0x0, 0xfb, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0x0, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206 FENNEL: It looks like everything was\u0147sent to your PC successfully \u023cThank you both for your help \u019e"}, "dia_textThank": {"bytes": "0xfc, 0x0, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xe8, 0xe3, 0xe4, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xd6, 0xed, 0x0, 0x0, 0xfd, 0x0, 0x0, 0xfb, 0xc3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe0, 0xe0, 0x0, 0xd9, 0xec, 0xd7, 0xe9, 0xe7, 0xd9, 0x0, 0xe1, 0xd9, 0x0, 0x0, 0xc3, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xb8, 0x0, 0xfa, 0xcf, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xe3, 0xe9, 0xe6, 0x0, 0xe4, 0xd5, 0xe8, 0xdc, 0xe7, 0x0, 0xd7, 0xe6, 0xe3, 0xe7, 0xe7, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206 Thanks for stopping by \u01b2 \u023cIf you ll excuse me I must return to\u0147my disguise, \u015eUntil our paths cross again \u019e"}, "dia_textPCFull": {"bytes": "0xfc, 0x0, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0x0, 0xdd, 0xe7, 0x0, 0xda, 0xe9, 0xe0, 0xe0, 0x0, 0xfb, 0xc1, 0xe3, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0x0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x0, 0xc7, 0xc9, 0xc8, 0xb8, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206 FENNEL: It seems like the PC is full \u023cGo make some room and I can send over\u0147the rest of your POK MON,\u019e"}, "dia_textLookerFull": {"bytes": "0xfc, 0x0, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xcd, 0xe4, 0xd9, 0xd5, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xea, 0xd9, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0x0, 0x0, 0xfd, 0x0, 0x0, 0xfb, 0xc3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0x0, 0x0, 0xc3, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xed, 0xfe, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xb8, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206 LOOKER: Speak to me again after\u0147you ve made room \u01b2 \u023cIn the meantime I will return to my\u0147disguise,\u019e"}}, "GB": {"sending_text": {"bytes": "SENDING DATA", "numLines": 0, "pixelsPerChar": 0, "pixelsInLine": 0, "includeBoxBreaks": false}, "prof_name": {"bytes": "FENNEL", "numLines": 0, "pixelsPerChar": 0, "pixelsInLine": 0, "includeBoxBreaks": false}}, "GENERAL": {"option_english": {"bytes": "0xbf, 0xe2, 0xdb, 0xe0, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "English\u019e"}, "option_japanese": {"bytes": "0xc4, 0xd5, 0xe4, 0xd5, 0xe2, 0xd9, 0xe7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Japanese\u019e"}, "option_spanish": {"bytes": "0xcd, 0xe4, 0xd5, 0xe2, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Spanish\u019e"}, "option_french": {"bytes": "0xc0, 0xe6, 0xd9, 0xe2, 0xd7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "French\u019e"}, "option_german": {"bytes": "0xc1, 0xd9, 0xe6, 0xe1, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "German\u019e"}, "option_italian": {"bytes": "0xc3, 0xe8, 0xd5, 0xe0, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Italian\u019e"}, "option_korean": {"bytes": "0xc5, 0xe3, 0xe6, 0xd9, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Korean\u019e"}, "option_green": {"bytes": "0xc1, 0xe6, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Green\u019e"}, "option_red": {"bytes": "0xcc, 0xd9, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Red\u019e"}, "option_blue": {"bytes": "0xbc, 0xe0, 0xe9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Blue\u019e"}, "option_yellow": {"bytes": "0xd3, 0xd9, 0xe0, 0xe0, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Yellow\u019e"}, "option_gold": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Gold\u019e"}, "option_silver": {"bytes": "0xcd, 0xdd, 0xe0, 0xea, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Silver\u019e"}, "option_crystal": {"bytes": "0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Crystal\u019e"}, "option_cancel": {"bytes": "0xbd, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Cancel\u019e"}, "press_start": {"bytes": "0xca, 0xe9, 0xe7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xcd, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Push the Start Button \u019e"}, "option_transfer": {"bytes": "0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Transfer Pok mon\u019e"}, "option_dreamdex": {"bytes": "0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Dream Dex\u019e"}, "option_credits": {"bytes": "0xbd, 0xe6, 0xd9, 0xd8, 0xdd, 0xe8, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Credits\u019e"}, "intro_first": {"bytes": "0xc2, 0xd9, 0xe0, 0xe0, 0xe3, 0x0, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xfe, 0xfe, 0xc4, 0xe9, 0xe7, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xeb, 0xe3, 0xe6, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xd5, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xd1, 0xc3, 0xc6, 0xc6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xed, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0xb8, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe0, 0xe3, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xd6, 0xd9, 0xe8, 0xd5, 0x0, 0xfe, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xb8, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xdd, 0xd8, 0x0, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd9, 0xe2, 0xde, 0xe3, 0xed, 0x0, 0xfe, 0xfe, 0x0, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xff", "numLines": 15, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": false, "text": "Hello Thank you for using Pok \u0147Transporter GB \u0147\u0147Just as a word of caution Pok \u0147Transporter GB WILL modify both the\u0147GameBoy and GameBoy Advance save\u0147files,\u0147\u0147Please note that while Pok \u0147Transporter GB is no longer in beta \u0147save file backups are still\u0147recommended before using, With that\u0147all being said please enjoy \u0147\u0147 The Gears of Progress \u019e"}, "intro_legal": {"bytes": "0xca, 0xe3, 0xdf, 0x0, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe3, 0xda, 0xfe, 0xe0, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd5, 0xe4, 0xe4, 0xe6, 0xd9, 0xd7, 0xdd, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xd5, 0xe2, 0xd7, 0xdc, 0xdd, 0xe7, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xda, 0xdd, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xb8, 0x0, 0xc3, 0xe8, 0xfe, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xbb, 0xc6, 0xd1, 0xbb, 0xd3, 0xcd, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0xb8, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0xfe, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xb8, 0xfe, 0xfe, 0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0x0, 0x0, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0x0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe1, 0xe9, 0xe7, 0xdd, 0xd7, 0xfe, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xeb, 0xe2, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0x0, 0x0, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0x0, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0x0, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0xb8, 0xfe, 0xfe, 0xfe, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xff", "numLines": 14, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": false, "text": "Pok Transporter GB was made out of\u0147love and appreciation for the Pokemon\u0147franchise with no profit in mind, It\u0147will ALWAYS be free,\u0147\u0147Please support the original\u0147developers,\u0147\u0147All Pokemon names sprites and music\u0147are owned by Nintendo Creatures Inc \u0147and GAME FREAK,\u0147\u0147\u0147Press A to continue\u019e"}, "cart_load_error": {"bytes": "0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xb8, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xdd, 0xe2, 0xe7, 0xd9, 0xe6, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0x0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xb8, 0xfe, 0xfe, 0xbb, 0xe0, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xea, 0xd9, 0xe0, 0xed, 0x0, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xb8, 0xff", "numLines": 10, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "The Pok mon save file was\u0147not loaded successfully,\u0147Please remove and reinsert\u0147the Game Pak and then\u0147press the A button,\u0147\u0147Alternatively press the\u0147Select button to send this\u0147program to another GameBoy\u0147Advance,\u019e"}, "pulled_cart_error": {"bytes": "0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xb8, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xb8, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "The Pok mon game was\u0147removed, Please turn off\u0147the system and restart the\u0147program,\u019e"}, "send_multiboot_instructions": {"bytes": "0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xfe, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xdd, 0xe2, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0x0, 0xe1, 0xe3, 0xd8, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xc6, 0xdd, 0xe2, 0xdf, 0xfe, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0xb8, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0xe2, 0x0, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xfe, 0xe8, 0xe3, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xb8, 0xff", "numLines": 10, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Please connect this system\u0147to another GameBoy Advance\u0147in Multiboot mode with a\u0147GameBoy Advance Link\u0147Cable,\u0147\u0147Then press the A button\u0147to begin sending Pok \u0147Transporter GB to the\u0147second GameBoy Advance,\u019e"}, "send_multiboot_wait": {"bytes": "0xcd, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0xfe, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xb8, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0xfe, 0xeb, 0xd5, 0xdd, 0xe8, 0xb8, 0xfe, 0xfe, 0xc2, 0xe3, 0xe0, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbc, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xb8, 0xff", "numLines": 7, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Sending Pok Transporter\u0147GB to second GameBoy\u0147Advance system, Please\u0147wait,\u0147\u0147Hold the B Button to\u0147cancel,\u019e"}, "send_multiboot_success": {"bytes": "0xfe, 0xca, 0xe3, 0xdf, 0x0, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0x0, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xd5, 0xed, 0xfe, 0xe2, 0xe3, 0xeb, 0x0, 0xe4, 0xe3, 0xeb, 0xd9, 0xe6, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xb8, 0xff", "numLines": 7, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "\u0147Pok Transporter GB was\u0147sent successfully You may\u0147now power off this GameBoy\u0147Advance system,\u019e"}, "send_multiboot_failure": {"bytes": "0xfe, 0xbb, 0xe2, 0x0, 0xd9, 0xe6, 0xe6, 0xe3, 0xe6, 0x0, 0xe3, 0xd7, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0xfe, 0xc1, 0xbc, 0xb8, 0x0, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xe6, 0xe9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xfe, 0xe7, 0xd7, 0xe6, 0xd9, 0xd9, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xb8, 0xff", "numLines": 7, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "\u0147An error occurred while\u0147sending Pok Transporter\u0147GB, Press the A button to\u0147return to the instructions\u0147screen and try again,\u019e"}, "kanto_name": {"bytes": "0xc5, 0xbb, 0xc8, 0xce, 0xc9, 0xf0, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "KANTO:\u019e"}, "johto_name": {"bytes": "0xc4, 0xc9, 0xc2, 0xce, 0xc9, 0xf0, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "JOHTO:\u019e"}}, "CREDITS": {"credits_page_1": {"bytes": "0xc6, 0xd9, 0xd5, 0xd8, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xf0, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Lead developer:\u0147\u0147The Gears of Progress\u019e"}, "credits_page_2": {"bytes": "0xc6, 0xe3, 0xdb, 0xe3, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xe3, 0x0, 0xdd, 0xd8, 0xd9, 0xd5, 0xe8, 0xe3, 0xe6, 0xf0, 0xfe, 0xfe, 0x0, 0xc4, 0xe3, 0xe1, 0xd9, 0xfe, 0xfe, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xeb, 0xe3, 0xe6, 0xdf, 0xf0, 0xfe, 0xfe, 0x0, 0xc6, 0xc4, 0x0, 0xbc, 0xdd, 0xe6, 0xd8, 0xe1, 0xd5, 0xe2, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Logo and co ideator:\u0147\u0147 Jome\u0147\u0147Spritework:\u0147\u0147 LJ Birdman\u019e"}, "credits_page_3": {"bytes": "0xc3, 0xd7, 0xe3, 0xe2, 0x0, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0x0, 0xc6, 0xe9, 0xdd, 0xdb, 0xdd, 0xce, 0xc5, 0xc9, 0xfe, 0x0, 0xc1, 0xe9, 0xdd, 0xbb, 0xd6, 0xd9, 0xe0, 0xfe, 0x0, 0xcd, 0xe3, 0xe9, 0xe6, 0xbb, 0xe4, 0xe4, 0xe0, 0xd9, 0xfe, 0x0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd5, 0xe6, 0xe8, 0xdd, 0xe7, 0xe8, 0xe7, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0xfe, 0xcd, 0xdc, 0xe3, 0xeb, 0xd8, 0xe3, 0xeb, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0x0, 0xbd, 0xe0, 0xd9, 0xd5, 0xe6, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Icon Sprites:\u0147\u0147 LuigiTKO\u0147 GuiAbel\u0147 SourApple\u0147 the artists from Pok mon\u0147Showdown and Crystal Clear\u019e"}, "credits_page_4": {"bytes": "0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xe6, 0xd6, 0xdd, 0xe8, 0xe6, 0xd5, 0xe6, 0xed, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0xfe, 0xbf, 0xec, 0xd9, 0xd7, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0x0, 0xce, 0xdd, 0xe1, 0xe3, 0xd0, 0xc7, 0xfe, 0xfe, 0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0xfe, 0xda, 0xe9, 0xe2, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xf0, 0x0, 0xfb, 0xe6, 0xdd, 0xe7, 0xdd, 0xe2, 0xdb, 0xca, 0xdc, 0xdd, 0xe0, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Remote and Arbitrary Code\u0147Execution assistance:\u0147\u0147 TimoVM\u0147\u0147Remote Multiboot\u0147functionality: \u023crisingPhil\u019e"}, "credits_page_5": {"bytes": "0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0x0, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0x0, 0xe6, 0xdd, 0xe0, 0xd9, 0xed, 0xdf, 0xa7, 0xa5, 0xfe, 0x0, 0xcd, 0xdc, 0xd5, 0xe3, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Development assistance:\u0147\u0147 im a blisy\u0147 rileyk64\u0147 Shao\u019e"}, "credits_page_6": {"bytes": "0xcd, 0xe4, 0xd5, 0xd7, 0xd9, 0x0, 0xc9, 0xe4, 0xe8, 0xdd, 0xe1, 0xdd, 0xee, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xf0, 0xfe, 0xfe, 0x0, 0xd9, 0xd5, 0xe7, 0xed, 0xd5, 0xe7, 0xe4, 0xdd, 0xa4, 0xa2, 0xa5, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Space Optimization:\u0147\u0147 easyaspi314\u019e"}, "credits_page_7": {"bytes": "0xbc, 0xe9, 0xdd, 0xe0, 0xe8, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xf0, 0xfe, 0xfe, 0xfe, 0x0, 0xbe, 0xd9, 0xea, 0xdf, 0xdd, 0xe8, 0xca, 0xe6, 0xe3, 0xfe, 0x0, 0xc6, 0xdd, 0xd6, 0xce, 0xe3, 0xe2, 0xd7, 0xfe, 0x0, 0xc6, 0xdd, 0xd6, 0xc1, 0xbc, 0xbb, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Built using:\u0147\u0147\u0147 DevkitPro\u0147 LibTonc\u0147 LibGBA\u019e"}, "credits_page_8": {"bytes": "0xc3, 0xe2, 0xe7, 0xe4, 0xdd, 0xe6, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xe7, 0x0, 0xe3, 0xda, 0xf0, 0xfe, 0xfe, 0x0, 0xc1, 0xe3, 0xe4, 0xe4, 0xdd, 0xd9, 0xe6, 0xfe, 0x0, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0xfe, 0x0, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0x0, 0xcc, 0xbf, 0xce, 0xc3, 0xcc, 0xbf, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Inspired by the works of:\u0147\u0147 Goppier\u0147 Lorenzooone\u0147 im a blisy\u0147 RETIRE\u019e"}, "credits_page_9": {"bytes": "0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xe7, 0x0, 0xe9, 0xe7, 0xd9, 0xd8, 0xf0, 0xfe, 0xfe, 0xfe, 0x0, 0xc2, 0xd9, 0xec, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0x0, 0xca, 0xc5, 0xc2, 0xd9, 0xd2, 0xfe, 0x0, 0xd1, 0xbd, 0xa4, 0xce, 0xe3, 0xe3, 0xe0, 0xfe, 0x0, 0xcf, 0xe7, 0xd9, 0xe2, 0xe8, 0xdd, 0xfe, 0x0, 0xcd, 0xd5, 0xe4, 0xe4, 0xed, 0xc7, 0xdd, 0xd8, 0xce, 0xe3, 0xbb, 0xc1, 0xbc, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Programs used:\u0147\u0147\u0147 HexManiacAdvance\u0147 PKHeX\u0147 WC3Tool\u0147 Usenti\u0147 SappyMidToAGB\u019e"}, "credits_page_10": {"bytes": "0xc9, 0xe4, 0xd9, 0xe2, 0x0, 0xcd, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xc6, 0xdd, 0xd6, 0xe6, 0xd5, 0xe6, 0xdd, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0x0, 0xe0, 0xdd, 0xd6, 0xe8, 0xe3, 0xe2, 0xd7, 0x0, 0xd9, 0xec, 0xd5, 0xe1, 0xe4, 0xe0, 0xd9, 0xe7, 0xfe, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0x0, 0xdb, 0xd6, 0xd5, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0x0, 0xd5, 0xeb, 0xd9, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0x0, 0xd5, 0xe6, 0xd8, 0xe9, 0xdd, 0xe2, 0xe3, 0x0, 0xe4, 0xe3, 0xdf, 0xd9, 0x0, 0xdb, 0xd9, 0xe2, 0xa3, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Open Source Code and\u0147Libraries:\u0147\u0147 libtonc examples\u0147 PokemonGen3toGenX\u0147 gba link connection\u0147 awesome gbadev\u0147 arduino poke gen2\u019e"}, "credits_page_11": {"bytes": "0xcc, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0x0, 0xd5, 0xe6, 0xe1, 0x0, 0xd8, 0xe3, 0xd7, 0xe7, 0xfe, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0xfe, 0xc0, 0xe9, 0xe0, 0xe0, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xe7, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe3, 0xe9, 0xe2, 0xd8, 0x0, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0x0, 0xe7, 0x0, 0xc1, 0xdd, 0xe8, 0xc2, 0xe9, 0xd6, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Research resources:\u0147\u0147 arm docs\u0147 PokemonGen3toGenX\u0147\u0147Full links can be found on\u0147this program s GitHub\u019e"}, "credits_page_12": {"bytes": "0xcc, 0xc9, 0xc7, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xd8, 0xd9, 0xd7, 0xe3, 0xe1, 0xe4, 0xdd, 0xe0, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0x0, 0xd7, 0xe6, 0xd9, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xcc, 0xbf, 0xce, 0x0, 0xe8, 0xd9, 0xd5, 0xe1, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "ROM data obtained from\u0147decompilations created by\u0147the PRET team\u019e"}, "credits_page_13": {"bytes": "0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0xf0, 0xfe, 0xfe, 0x0, 0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe4, 0xd9, 0xd8, 0xdd, 0xd5, 0xfe, 0x0, 0xcd, 0xd9, 0xe6, 0xd9, 0xd6, 0xdd, 0xdd, 0xfe, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xbb, 0xca, 0xc3, 0xb8, 0xd7, 0xe3, 0xe1, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Pok mon data obtained\u0147from:\u0147\u0147 Bulbapedia\u0147 Serebii\u0147 PokeAPI,com\u019e"}, "credits_page_14": {"bytes": "0xbe, 0xdd, 0xe7, 0xd7, 0xe3, 0xe6, 0xd8, 0x0, 0xd7, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xe8, 0xed, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0x0, 0xc2, 0xd9, 0xec, 0x0, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0xfe, 0x0, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0x0, 0xe4, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Discord community\u0147assistance:\u0147\u0147 Hex Maniac Advance\u0147Development\u0147 gbadev\u0147 pret\u019e"}, "credits_page_15": {"bytes": "0xd1, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xfe, 0x0, 0xc7, 0xd5, 0xd8, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Writing assistance:\u0147\u0147\u0147 Mad\u019e"}, "credits_page_16": {"bytes": "0xbb, 0xe2, 0x0, 0xdd, 0xe1, 0xe1, 0xd9, 0xe2, 0xe7, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0x0, 0xfe, 0xeb, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0xb8, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xe3, 0xe9, 0xe0, 0xd8, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0xb8, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "An immense thanks to\u0147Lorenzooone for their\u0147assistance in reading \u0147writing save data, Without\u0147them this project would\u0147not have been possible,\u019e"}, "credits_page_17": {"bytes": "0xcd, 0xe4, 0xd9, 0xd7, 0xdd, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xbf, 0xe2, 0xe2, 0x0, 0xfe, 0xe6, 0xe3, 0xdf, 0xe9, 0x0, 0x0, 0xcd, 0xe0, 0xd9, 0xd9, 0xe4, 0xed, 0x0, 0x0, 0xbf, 0xee, 0xd5, 0x0, 0xfe, 0xe7, 0xd5, 0xe6, 0xd5, 0xdc, 0xe8, 0xe3, 0xe2, 0xdd, 0xe2, 0x0, 0x0, 0xbc, 0xd5, 0xe7, 0xd5, 0xd6, 0xdd, 0x0, 0x0, 0xc7, 0xd5, 0xd8, 0x0, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe3, 0xe2, 0xd9, 0x0, 0xeb, 0xdc, 0xe3, 0x0, 0xdc, 0xd5, 0xe7, 0xfe, 0xe0, 0xdd, 0xe7, 0xe8, 0xd9, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xd5, 0xd6, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe1, 0xe3, 0xe2, 0xe8, 0xdc, 0xe7, 0x0, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Special thanks to Enn \u0147roku Sleepy Eza \u0147sarahtonin Basabi Mad \u0147and everyone who has\u0147listened to me talk about\u0147this for months \u019e"}, "credits_page_18": {"bytes": "0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0x0, 0xfe, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0x0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xe6, 0xd9, 0xe0, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xd7, 0xe3, 0xe4, 0xed, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0x0, 0xfe, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xb8, 0x0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0xfe, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0x0, 0xc3, 0xe2, 0xd7, 0xb8, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "All Pok mon names \u0147sprites and names of\u0147related resources are\u0147copyright Nintendo \u0147Creatures Inc, and GAME\u0147FREAK Inc,\u019e"}, "credits_page_19": {"bytes": "0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0xfe, 0xd9, 0xe2, 0xd8, 0xe3, 0xe6, 0xe7, 0xd9, 0xd8, 0x0, 0xe3, 0xe6, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xc0, 0xe6, 0xd9, 0xd5, 0xdf, 0xba, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xb8, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "This project is not\u0147endorsed or supported by\u0147GameFreak/Nintendo,\u0147\u0147Please support the\u0147original developers,\u019e"}}, "PKMN_NAMES": {"0": {"bytes": "0xc7, 0xdd, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0xc8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "MissingNo\u019e"}, "1": {"bytes": "0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bulbasaur\u019e"}, "2": {"bytes": "0xc3, 0xea, 0xed, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ivysaur\u019e"}, "3": {"bytes": "0xd0, 0xd9, 0xe2, 0xe9, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venusaur\u019e"}, "4": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xe1, 0xd5, 0xe2, 0xd8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charmander\u019e"}, "5": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xe1, 0xd9, 0xe0, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charmeleon\u019e"}, "6": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xdd, 0xee, 0xd5, 0xe6, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charizard\u019e"}, "7": {"bytes": "0xcd, 0xe5, 0xe9, 0xdd, 0xe6, 0xe8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Squirtle\u019e"}, "8": {"bytes": "0xd1, 0xd5, 0xe6, 0xe8, 0xe3, 0xe6, 0xe8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wartortle\u019e"}, "9": {"bytes": "0xbc, 0xe0, 0xd5, 0xe7, 0xe8, 0xe3, 0xdd, 0xe7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Blastoise\u019e"}, "10": {"bytes": "0xbd, 0xd5, 0xe8, 0xd9, 0xe6, 0xe4, 0xdd, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Caterpie\u019e"}, "11": {"bytes": "0xc7, 0xd9, 0xe8, 0xd5, 0xe4, 0xe3, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Metapod\u019e"}, "12": {"bytes": "0xbc, 0xe9, 0xe8, 0xe8, 0xd9, 0xe6, 0xda, 0xe6, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Butterfree\u019e"}, "13": {"bytes": "0xd1, 0xd9, 0xd9, 0xd8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weedle\u019e"}, "14": {"bytes": "0xc5, 0xd5, 0xdf, 0xe9, 0xe2, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kakuna\u019e"}, "15": {"bytes": "0xbc, 0xd9, 0xd9, 0xd8, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Beedrill\u019e"}, "16": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgey\u019e"}, "17": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xe3, 0xe8, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgeotto\u019e"}, "18": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xe3, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgeot\u019e"}, "19": {"bytes": "0xcc, 0xd5, 0xe8, 0xe8, 0xd5, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rattata\u019e"}, "20": {"bytes": "0xcc, 0xd5, 0xe8, 0xdd, 0xd7, 0xd5, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raticate\u019e"}, "21": {"bytes": "0xcd, 0xe4, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Spearow\u019e"}, "22": {"bytes": "0xc0, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Fearow\u019e"}, "23": {"bytes": "0xbf, 0xdf, 0xd5, 0xe2, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ekans\u019e"}, "24": {"bytes": "0xbb, 0xe6, 0xd6, 0xe3, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Arbok\u019e"}, "25": {"bytes": "0xca, 0xdd, 0xdf, 0xd5, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pikachu\u019e"}, "26": {"bytes": "0xcc, 0xd5, 0xdd, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raichu\u019e"}, "27": {"bytes": "0xcd, 0xd5, 0xe2, 0xd8, 0xe7, 0xdc, 0xe6, 0xd9, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sandshrew\u019e"}, "28": {"bytes": "0xcd, 0xd5, 0xe2, 0xd8, 0xe7, 0xe0, 0xd5, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sandslash\u019e"}, "29": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xd5, 0xe2, 0xb6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoran\u2640\u019e"}, "30": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xdd, 0xe2, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidorina\u019e"}, "31": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe5, 0xe9, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoqueen\u019e"}, "32": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xd5, 0xe2, 0xb5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoran\u2642\u019e"}, "33": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xdd, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidorino\u019e"}, "34": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoking\u019e"}, "35": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xd5, 0xdd, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Clefairy\u019e"}, "36": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xd5, 0xd6, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Clefable\u019e"}, "37": {"bytes": "0xd0, 0xe9, 0xe0, 0xe4, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vulpix\u019e"}, "38": {"bytes": "0xc8, 0xdd, 0xe2, 0xd9, 0xe8, 0xd5, 0xe0, 0xd9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ninetales\u019e"}, "39": {"bytes": "0xc4, 0xdd, 0xdb, 0xdb, 0xe0, 0xed, 0xe4, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jigglypuff\u019e"}, "40": {"bytes": "0xd1, 0xdd, 0xdb, 0xdb, 0xe0, 0xed, 0xe8, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wigglytuff\u019e"}, "41": {"bytes": "0xd4, 0xe9, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Zubat\u019e"}, "42": {"bytes": "0xc1, 0xe3, 0xe0, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golbat\u019e"}, "43": {"bytes": "0xc9, 0xd8, 0xd8, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Oddish\u019e"}, "44": {"bytes": "0xc1, 0xe0, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gloom\u019e"}, "45": {"bytes": "0xd0, 0xdd, 0xe0, 0xd9, 0xe4, 0xe0, 0xe9, 0xe1, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vileplume\u019e"}, "46": {"bytes": "0xca, 0xd5, 0xe6, 0xd5, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Paras\u019e"}, "47": {"bytes": "0xca, 0xd5, 0xe6, 0xd5, 0xe7, 0xd9, 0xd7, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Parasect\u019e"}, "48": {"bytes": "0xd0, 0xd9, 0xe2, 0xe3, 0xe2, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venonat\u019e"}, "49": {"bytes": "0xd0, 0xd9, 0xe2, 0xe3, 0xe1, 0xe3, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venomoth\u019e"}, "50": {"bytes": "0xbe, 0xdd, 0xdb, 0xe0, 0xd9, 0xe8, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Diglett\u019e"}, "51": {"bytes": "0xbe, 0xe9, 0xdb, 0xe8, 0xe6, 0xdd, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dugtrio\u019e"}, "52": {"bytes": "0xc7, 0xd9, 0xe3, 0xeb, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Meowth\u019e"}, "53": {"bytes": "0xca, 0xd9, 0xe6, 0xe7, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Persian\u019e"}, "54": {"bytes": "0xca, 0xe7, 0xed, 0xd8, 0xe9, 0xd7, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Psyduck\u019e"}, "55": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xe9, 0xd7, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golduck\u019e"}, "56": {"bytes": "0xc7, 0xd5, 0xe2, 0xdf, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mankey\u019e"}, "57": {"bytes": "0xca, 0xe6, 0xdd, 0xe1, 0xd9, 0xd5, 0xe4, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Primeape\u019e"}, "58": {"bytes": "0xc1, 0xe6, 0xe3, 0xeb, 0xe0, 0xdd, 0xe8, 0xdc, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Growlithe\u019e"}, "59": {"bytes": "0xbb, 0xe6, 0xd7, 0xd5, 0xe2, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Arcanine\u019e"}, "60": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xd5, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwag\u019e"}, "61": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xdc, 0xdd, 0xe6, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwhirl\u019e"}, "62": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xe6, 0xd5, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwrath\u019e"}, "63": {"bytes": "0xbb, 0xd6, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Abra\u019e"}, "64": {"bytes": "0xc5, 0xd5, 0xd8, 0xd5, 0xd6, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kadabra\u019e"}, "65": {"bytes": "0xbb, 0xe0, 0xd5, 0xdf, 0xd5, 0xee, 0xd5, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Alakazam\u019e"}, "66": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machop\u019e"}, "67": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xdf, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machoke\u019e"}, "68": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xd5, 0xe1, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machamp\u019e"}, "69": {"bytes": "0xbc, 0xd9, 0xe0, 0xe0, 0xe7, 0xe4, 0xe6, 0xe3, 0xe9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bellsprout\u019e"}, "70": {"bytes": "0xd1, 0xd9, 0xd9, 0xe4, 0xdd, 0xe2, 0xd6, 0xd9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weepinbell\u019e"}, "71": {"bytes": "0xd0, 0xdd, 0xd7, 0xe8, 0xe6, 0xd9, 0xd9, 0xd6, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Victreebel\u019e"}, "72": {"bytes": "0xce, 0xd9, 0xe2, 0xe8, 0xd5, 0xd7, 0xe3, 0xe3, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tentacool\u019e"}, "73": {"bytes": "0xce, 0xd9, 0xe2, 0xe8, 0xd5, 0xd7, 0xe6, 0xe9, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tentacruel\u019e"}, "74": {"bytes": "0xc1, 0xd9, 0xe3, 0xd8, 0xe9, 0xd8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Geodude\u019e"}, "75": {"bytes": "0xc1, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Graveler\u019e"}, "76": {"bytes": "0xc1, 0xe3, 0xe0, 0xd9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golem\u019e"}, "77": {"bytes": "0xca, 0xe3, 0xe2, 0xed, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ponyta\u019e"}, "78": {"bytes": "0xcc, 0xd5, 0xe4, 0xdd, 0xd8, 0xd5, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rapidash\u019e"}, "79": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xe4, 0xe3, 0xdf, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowpoke\u019e"}, "80": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xd6, 0xe6, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowbro\u019e"}, "81": {"bytes": "0xc7, 0xd5, 0xdb, 0xe2, 0xd9, 0xe1, 0xdd, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magnemite\u019e"}, "82": {"bytes": "0xc7, 0xd5, 0xdb, 0xe2, 0xd9, 0xe8, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magneton\u019e"}, "83": {"bytes": "0xc0, 0xd5, 0xe6, 0xda, 0xd9, 0xe8, 0xd7, 0xdc, 0x0, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Farfetch d\u019e"}, "84": {"bytes": "0xbe, 0xe3, 0xd8, 0xe9, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Doduo\u019e"}, "85": {"bytes": "0xbe, 0xe3, 0xd8, 0xe6, 0xdd, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dodrio\u019e"}, "86": {"bytes": "0xcd, 0xd9, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seel\u019e"}, "87": {"bytes": "0xbe, 0xd9, 0xeb, 0xdb, 0xe3, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dewgong\u019e"}, "88": {"bytes": "0xc1, 0xe6, 0xdd, 0xe1, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Grimer\u019e"}, "89": {"bytes": "0xc7, 0xe9, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Muk\u019e"}, "90": {"bytes": "0xcd, 0xdc, 0xd9, 0xe0, 0xe0, 0xd8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Shellder\u019e"}, "91": {"bytes": "0xbd, 0xe0, 0xe3, 0xed, 0xe7, 0xe8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cloyster\u019e"}, "92": {"bytes": "0xc1, 0xd5, 0xe7, 0xe8, 0xe0, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gastly\u019e"}, "93": {"bytes": "0xc2, 0xd5, 0xe9, 0xe2, 0xe8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Haunter\u019e"}, "94": {"bytes": "0xc1, 0xd9, 0xe2, 0xdb, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gengar\u019e"}, "95": {"bytes": "0xc9, 0xe2, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Onix\u019e"}, "96": {"bytes": "0xbe, 0xe6, 0xe3, 0xeb, 0xee, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Drowzee\u019e"}, "97": {"bytes": "0xc2, 0xed, 0xe4, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hypno\u019e"}, "98": {"bytes": "0xc5, 0xe6, 0xd5, 0xd6, 0xd6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Krabby\u019e"}, "99": {"bytes": "0xc5, 0xdd, 0xe2, 0xdb, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kingler\u019e"}, "100": {"bytes": "0xd0, 0xe3, 0xe0, 0xe8, 0xe3, 0xe6, 0xd6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Voltorb\u019e"}, "101": {"bytes": "0xbf, 0xe0, 0xd9, 0xd7, 0xe8, 0xe6, 0xe3, 0xd8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Electrode\u019e"}, "102": {"bytes": "0xbf, 0xec, 0xd9, 0xdb, 0xdb, 0xd7, 0xe9, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Exeggcute\u019e"}, "103": {"bytes": "0xbf, 0xec, 0xd9, 0xdb, 0xdb, 0xe9, 0xe8, 0xe3, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Exeggutor\u019e"}, "104": {"bytes": "0xbd, 0xe9, 0xd6, 0xe3, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cubone\u019e"}, "105": {"bytes": "0xc7, 0xd5, 0xe6, 0xe3, 0xeb, 0xd5, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Marowak\u019e"}, "106": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xe0, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmonlee\u019e"}, "107": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xd7, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmonchan\u019e"}, "108": {"bytes": "0xc6, 0xdd, 0xd7, 0xdf, 0xdd, 0xe8, 0xe9, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lickitung\u019e"}, "109": {"bytes": "0xc5, 0xe3, 0xda, 0xda, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Koffing\u019e"}, "110": {"bytes": "0xd1, 0xd9, 0xd9, 0xee, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weezing\u019e"}, "111": {"bytes": "0xcc, 0xdc, 0xed, 0xdc, 0xe3, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rhyhorn\u019e"}, "112": {"bytes": "0xcc, 0xdc, 0xed, 0xd8, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rhydon\u019e"}, "113": {"bytes": "0xbd, 0xdc, 0xd5, 0xe2, 0xe7, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chansey\u019e"}, "114": {"bytes": "0xce, 0xd5, 0xe2, 0xdb, 0xd9, 0xe0, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tangela\u019e"}, "115": {"bytes": "0xc5, 0xd5, 0xe2, 0xdb, 0xd5, 0xe7, 0xdf, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kangaskhan\u019e"}, "116": {"bytes": "0xc2, 0xe3, 0xe6, 0xe7, 0xd9, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Horsea\u019e"}, "117": {"bytes": "0xcd, 0xd9, 0xd5, 0xd8, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seadra\u019e"}, "118": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Goldeen\u019e"}, "119": {"bytes": "0xcd, 0xd9, 0xd5, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seaking\u019e"}, "120": {"bytes": "0xcd, 0xe8, 0xd5, 0xe6, 0xed, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Staryu\u019e"}, "121": {"bytes": "0xcd, 0xe8, 0xd5, 0xe6, 0xe1, 0xdd, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Starmie\u019e"}, "122": {"bytes": "0xc7, 0xe6, 0xb8, 0x0, 0xc7, 0xdd, 0xe1, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mr, Mime\u019e"}, "123": {"bytes": "0xcd, 0xd7, 0xed, 0xe8, 0xdc, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Scyther\u019e"}, "124": {"bytes": "0xc4, 0xed, 0xe2, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jynx\u019e"}, "125": {"bytes": "0xbf, 0xe0, 0xd9, 0xd7, 0xe8, 0xd5, 0xd6, 0xe9, 0xee, 0xee, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Electabuzz\u019e"}, "126": {"bytes": "0xc7, 0xd5, 0xdb, 0xe1, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magmar\u019e"}, "127": {"bytes": "0xca, 0xdd, 0xe2, 0xe7, 0xdd, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pinsir\u019e"}, "128": {"bytes": "0xce, 0xd5, 0xe9, 0xe6, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tauros\u019e"}, "129": {"bytes": "0xc7, 0xd5, 0xdb, 0xdd, 0xdf, 0xd5, 0xe6, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magikarp\u019e"}, "130": {"bytes": "0xc1, 0xed, 0xd5, 0xe6, 0xd5, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gyarados\u019e"}, "131": {"bytes": "0xc6, 0xd5, 0xe4, 0xe6, 0xd5, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lapras\u019e"}, "132": {"bytes": "0xbe, 0xdd, 0xe8, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ditto\u019e"}, "133": {"bytes": "0xbf, 0xd9, 0xea, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Eevee\u019e"}, "134": {"bytes": "0xd0, 0xd5, 0xe4, 0xe3, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vaporeon\u019e"}, "135": {"bytes": "0xc4, 0xe3, 0xe0, 0xe8, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jolteon\u019e"}, "136": {"bytes": "0xc0, 0xe0, 0xd5, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Flareon\u019e"}, "137": {"bytes": "0xca, 0xe3, 0xe6, 0xed, 0xdb, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Porygon\u019e"}, "138": {"bytes": "0xc9, 0xe1, 0xd5, 0xe2, 0xed, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Omanyte\u019e"}, "139": {"bytes": "0xc9, 0xe1, 0xd5, 0xe7, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Omastar\u019e"}, "140": {"bytes": "0xc5, 0xd5, 0xd6, 0xe9, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kabuto\u019e"}, "141": {"bytes": "0xc5, 0xd5, 0xd6, 0xe9, 0xe8, 0xe3, 0xe4, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kabutops\u019e"}, "142": {"bytes": "0xbb, 0xd9, 0xe6, 0xe3, 0xd8, 0xd5, 0xd7, 0xe8, 0xed, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Aerodactyl\u019e"}, "143": {"bytes": "0xcd, 0xe2, 0xe3, 0xe6, 0xe0, 0xd5, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Snorlax\u019e"}, "144": {"bytes": "0xbb, 0xe6, 0xe8, 0xdd, 0xd7, 0xe9, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Articuno\u019e"}, "145": {"bytes": "0xd4, 0xd5, 0xe4, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Zapdos\u019e"}, "146": {"bytes": "0xc7, 0xe3, 0xe0, 0xe8, 0xe6, 0xd9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Moltres\u019e"}, "147": {"bytes": "0xbe, 0xe6, 0xd5, 0xe8, 0xdd, 0xe2, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dratini\u019e"}, "148": {"bytes": "0xbe, 0xe6, 0xd5, 0xdb, 0xe3, 0xe2, 0xd5, 0xdd, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dragonair\u019e"}, "149": {"bytes": "0xbe, 0xe6, 0xd5, 0xdb, 0xe3, 0xe2, 0xdd, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dragonite\u019e"}, "150": {"bytes": "0xc7, 0xd9, 0xeb, 0xe8, 0xeb, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mewtwo\u019e"}, "151": {"bytes": "0xc7, 0xd9, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mew\u019e"}, "152": {"bytes": "0xbd, 0xdc, 0xdd, 0xdf, 0xe3, 0xe6, 0xdd, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chikorita\u019e"}, "153": {"bytes": "0xbc, 0xd5, 0xed, 0xe0, 0xd9, 0xd9, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bayleef\u019e"}, "154": {"bytes": "0xc7, 0xd9, 0xdb, 0xd5, 0xe2, 0xdd, 0xe9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Meganium\u019e"}, "155": {"bytes": "0xbd, 0xed, 0xe2, 0xd8, 0xd5, 0xe5, 0xe9, 0xdd, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cyndaquil\u019e"}, "156": {"bytes": "0xcb, 0xe9, 0xdd, 0xe0, 0xd5, 0xea, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Quilava\u019e"}, "157": {"bytes": "0xce, 0xed, 0xe4, 0xdc, 0xe0, 0xe3, 0xe7, 0xdd, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Typhlosion\u019e"}, "158": {"bytes": "0xce, 0xe3, 0xe8, 0xe3, 0xd8, 0xdd, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Totodile\u019e"}, "159": {"bytes": "0xbd, 0xe6, 0xe3, 0xd7, 0xe3, 0xe2, 0xd5, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Croconaw\u019e"}, "160": {"bytes": "0xc0, 0xd9, 0xe6, 0xd5, 0xe0, 0xdd, 0xdb, 0xd5, 0xe8, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Feraligatr\u019e"}, "161": {"bytes": "0xcd, 0xd9, 0xe2, 0xe8, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sentret\u019e"}, "162": {"bytes": "0xc0, 0xe9, 0xe6, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Furret\u019e"}, "163": {"bytes": "0xc2, 0xe3, 0xe3, 0xe8, 0xdc, 0xe3, 0xe3, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hoothoot\u019e"}, "164": {"bytes": "0xc8, 0xe3, 0xd7, 0xe8, 0xe3, 0xeb, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Noctowl\u019e"}, "165": {"bytes": "0xc6, 0xd9, 0xd8, 0xed, 0xd6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ledyba\u019e"}, "166": {"bytes": "0xc6, 0xd9, 0xd8, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ledian\u019e"}, "167": {"bytes": "0xcd, 0xe4, 0xdd, 0xe2, 0xd5, 0xe6, 0xd5, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Spinarak\u019e"}, "168": {"bytes": "0xbb, 0xe6, 0xdd, 0xd5, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ariados\u019e"}, "169": {"bytes": "0xbd, 0xe6, 0xe3, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Crobat\u019e"}, "170": {"bytes": "0xbd, 0xdc, 0xdd, 0xe2, 0xd7, 0xdc, 0xe3, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chinchou\u019e"}, "171": {"bytes": "0xc6, 0xd5, 0xe2, 0xe8, 0xe9, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lanturn\u019e"}, "172": {"bytes": "0xca, 0xdd, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pichu\u019e"}, "173": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xda, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cleffa\u019e"}, "174": {"bytes": "0xc3, 0xdb, 0xdb, 0xe0, 0xed, 0xd6, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Igglybuff\u019e"}, "175": {"bytes": "0xce, 0xe3, 0xdb, 0xd9, 0xe4, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Togepi\u019e"}, "176": {"bytes": "0xce, 0xe3, 0xdb, 0xd9, 0xe8, 0xdd, 0xd7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Togetic\u019e"}, "177": {"bytes": "0xc8, 0xd5, 0xe8, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Natu\u019e"}, "178": {"bytes": "0xd2, 0xd5, 0xe8, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Xatu\u019e"}, "179": {"bytes": "0xc7, 0xd5, 0xe6, 0xd9, 0xd9, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mareep\u019e"}, "180": {"bytes": "0xc0, 0xe0, 0xd5, 0xd5, 0xda, 0xda, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Flaaffy\u019e"}, "181": {"bytes": "0xbb, 0xe1, 0xe4, 0xdc, 0xd5, 0xe6, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ampharos\u019e"}, "182": {"bytes": "0xbc, 0xd9, 0xe0, 0xe0, 0xe3, 0xe7, 0xe7, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bellossom\u019e"}, "183": {"bytes": "0xc7, 0xd5, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Marill\u019e"}, "184": {"bytes": "0xbb, 0xee, 0xe9, 0xe1, 0xd5, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Azumarill\u019e"}, "185": {"bytes": "0xcd, 0xe9, 0xd8, 0xe3, 0xeb, 0xe3, 0xe3, 0xd8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sudowoodo\u019e"}, "186": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xe8, 0xe3, 0xd9, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Politoed\u019e"}, "187": {"bytes": "0xc2, 0xe3, 0xe4, 0xe4, 0xdd, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hoppip\u019e"}, "188": {"bytes": "0xcd, 0xdf, 0xdd, 0xe4, 0xe0, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Skiploom\u019e"}, "189": {"bytes": "0xc4, 0xe9, 0xe1, 0xe4, 0xe0, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jumpluff\u019e"}, "190": {"bytes": "0xbb, 0xdd, 0xe4, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Aipom\u019e"}, "191": {"bytes": "0xcd, 0xe9, 0xe2, 0xdf, 0xd9, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sunkern\u019e"}, "192": {"bytes": "0xcd, 0xe9, 0xe2, 0xda, 0xe0, 0xe3, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sunflora\u019e"}, "193": {"bytes": "0xd3, 0xd5, 0xe2, 0xe1, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Yanma\u019e"}, "194": {"bytes": "0xd1, 0xe3, 0xe3, 0xe4, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wooper\u019e"}, "195": {"bytes": "0xcb, 0xe9, 0xd5, 0xdb, 0xe7, 0xdd, 0xe6, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Quagsire\u019e"}, "196": {"bytes": "0xbf, 0xe7, 0xe4, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Espeon\u019e"}, "197": {"bytes": "0xcf, 0xe1, 0xd6, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Umbreon\u019e"}, "198": {"bytes": "0xc7, 0xe9, 0xe6, 0xdf, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Murkrow\u019e"}, "199": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowking\u019e"}, "200": {"bytes": "0xc7, 0xdd, 0xe7, 0xd8, 0xe6, 0xd9, 0xd5, 0xea, 0xe9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Misdreavus\u019e"}, "201": {"bytes": "0xcf, 0xe2, 0xe3, 0xeb, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Unown\u019e"}, "202": {"bytes": "0xd1, 0xe3, 0xd6, 0xd6, 0xe9, 0xda, 0xda, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wobbuffet\u019e"}, "203": {"bytes": "0xc1, 0xdd, 0xe6, 0xd5, 0xda, 0xd5, 0xe6, 0xdd, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Girafarig\u019e"}, "204": {"bytes": "0xca, 0xdd, 0xe2, 0xd9, 0xd7, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pineco\u019e"}, "205": {"bytes": "0xc0, 0xe3, 0xe6, 0xe6, 0xd9, 0xe8, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Forretress\u019e"}, "206": {"bytes": "0xbe, 0xe9, 0xe2, 0xe7, 0xe4, 0xd5, 0xe6, 0xd7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dunsparce\u019e"}, "207": {"bytes": "0xc1, 0xe0, 0xdd, 0xdb, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gligar\u019e"}, "208": {"bytes": "0xcd, 0xe8, 0xd9, 0xd9, 0xe0, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Steelix\u019e"}, "209": {"bytes": "0xcd, 0xe2, 0xe9, 0xd6, 0xd6, 0xe9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Snubbull\u019e"}, "210": {"bytes": "0xc1, 0xe6, 0xd5, 0xe2, 0xd6, 0xe9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Granbull\u019e"}, "211": {"bytes": "0xcb, 0xeb, 0xdd, 0xe0, 0xda, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Qwilfish\u019e"}, "212": {"bytes": "0xcd, 0xd7, 0xdd, 0xee, 0xe3, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Scizor\u019e"}, "213": {"bytes": "0xcd, 0xdc, 0xe9, 0xd7, 0xdf, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Shuckle\u019e"}, "214": {"bytes": "0xc2, 0xd9, 0xe6, 0xd5, 0xd7, 0xe6, 0xe3, 0xe7, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Heracross\u019e"}, "215": {"bytes": "0xcd, 0xe2, 0xd9, 0xd5, 0xe7, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sneasel\u019e"}, "216": {"bytes": "0xce, 0xd9, 0xd8, 0xd8, 0xdd, 0xe9, 0xe6, 0xe7, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Teddiursa\u019e"}, "217": {"bytes": "0xcf, 0xe6, 0xe7, 0xd5, 0xe6, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ursaring\u019e"}, "218": {"bytes": "0xcd, 0xe0, 0xe9, 0xdb, 0xe1, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slugma\u019e"}, "219": {"bytes": "0xc7, 0xd5, 0xdb, 0xd7, 0xd5, 0xe6, 0xdb, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magcargo\u019e"}, "220": {"bytes": "0xcd, 0xeb, 0xdd, 0xe2, 0xe9, 0xd6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Swinub\u019e"}, "221": {"bytes": "0xca, 0xdd, 0xe0, 0xe3, 0xe7, 0xeb, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Piloswine\u019e"}, "222": {"bytes": "0xbd, 0xe3, 0xe6, 0xe7, 0xe3, 0xe0, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Corsola\u019e"}, "223": {"bytes": "0xcc, 0xd9, 0xe1, 0xe3, 0xe6, 0xd5, 0xdd, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Remoraid\u019e"}, "224": {"bytes": "0xc9, 0xd7, 0xe8, 0xdd, 0xe0, 0xe0, 0xd9, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Octillery\u019e"}, "225": {"bytes": "0xbe, 0xd9, 0xe0, 0xdd, 0xd6, 0xdd, 0xe6, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Delibird\u019e"}, "226": {"bytes": "0xc7, 0xd5, 0xe2, 0xe8, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mantine\u019e"}, "227": {"bytes": "0xcd, 0xdf, 0xd5, 0xe6, 0xe1, 0xe3, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Skarmory\u019e"}, "228": {"bytes": "0xc2, 0xe3, 0xe9, 0xe2, 0xd8, 0xe3, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Houndour\u019e"}, "229": {"bytes": "0xc2, 0xe3, 0xe9, 0xe2, 0xd8, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Houndoom\u019e"}, "230": {"bytes": "0xc5, 0xdd, 0xe2, 0xdb, 0xd8, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kingdra\u019e"}, "231": {"bytes": "0xca, 0xdc, 0xd5, 0xe2, 0xe4, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Phanpy\u019e"}, "232": {"bytes": "0xbe, 0xe3, 0xe2, 0xe4, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Donphan\u019e"}, "233": {"bytes": "0xca, 0xe3, 0xe6, 0xed, 0xdb, 0xe3, 0xe2, 0xa3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Porygon2\u019e"}, "234": {"bytes": "0xcd, 0xe8, 0xd5, 0xe2, 0xe8, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Stantler\u019e"}, "235": {"bytes": "0xcd, 0xe1, 0xd9, 0xd5, 0xe6, 0xdb, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Smeargle\u019e"}, "236": {"bytes": "0xce, 0xed, 0xe6, 0xe3, 0xdb, 0xe9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tyrogue\u019e"}, "237": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xe8, 0xe3, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmontop\u019e"}, "238": {"bytes": "0xcd, 0xe1, 0xe3, 0xe3, 0xd7, 0xdc, 0xe9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Smoochum\u019e"}, "239": {"bytes": "0xbf, 0xe0, 0xd9, 0xdf, 0xdd, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Elekid\u019e"}, "240": {"bytes": "0xc7, 0xd5, 0xdb, 0xd6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magby\u019e"}, "241": {"bytes": "0xc7, 0xdd, 0xe0, 0xe8, 0xd5, 0xe2, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Miltank\u019e"}, "242": {"bytes": "0xbc, 0xe0, 0xdd, 0xe7, 0xe7, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Blissey\u019e"}, "243": {"bytes": "0xcc, 0xd5, 0xdd, 0xdf, 0xe3, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raikou\u019e"}, "244": {"bytes": "0xbf, 0xe2, 0xe8, 0xd9, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Entei\u019e"}, "245": {"bytes": "0xcd, 0xe9, 0xdd, 0xd7, 0xe9, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Suicune\u019e"}, "246": {"bytes": "0xc6, 0xd5, 0xe6, 0xea, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Larvitar\u019e"}, "247": {"bytes": "0xca, 0xe9, 0xe4, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pupitar\u019e"}, "248": {"bytes": "0xce, 0xed, 0xe6, 0xd5, 0xe2, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tyranitar\u019e"}, "249": {"bytes": "0xc6, 0xe9, 0xdb, 0xdd, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lugia\u019e"}, "250": {"bytes": "0xc2, 0xe3, 0x0, 0xc9, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ho Oh\u019e"}, "251": {"bytes": "0xbd, 0xd9, 0xe0, 0xd9, 0xd6, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Celebi\u019e"}}, "Warnings": {"0": "Warning! ' found, replacing with \u2019 !", "1": "Warning! ' found, replacing with \u2019 !", "2": "Warning! ' found, replacing with \u2019 !", "3": "Warning! ' found, replacing with \u2019 !", "4": "Warning! ' found, replacing with \u2019 !", "5": "Warning! ' found, replacing with \u2019 !", "6": "Warning! ' found, replacing with \u2019 !", "7": "Warning! ' found, replacing with \u2019 !", "8": "Warning! ' found, replacing with \u2019 !", "9": "Warning! ' found, replacing with \u2019 !", "10": "Warning! ' found, replacing with \u2019 !", "11": "Warning! ' found, replacing with \u2019 !", "12": "Warning! ' found, replacing with \u2019 !", "13": "Warning! ' found, replacing with \u2019 !", "14": "Warning! ' found, replacing with \u2019 !", "15": "Warning! ' found, replacing with \u2019 !", "16": "Warning! ' found, replacing with \u2019 !", "17": "Warning! ' found, replacing with \u2019 !", "18": "Warning! ' found, replacing with \u2019 !", "19": "Warning! ' found, replacing with \u2019 !", "20": "Warning! ' found, replacing with \u2019 !", "21": "Warning! ' found, replacing with \u2019 !", "22": "Warning! ' found, replacing with \u2019 !", "23": "Warning! ' found, replacing with \u2019 !", "24": "Warning! ' found, replacing with \u2019 !", "25": "Warning! ' found, replacing with \u2019 !", "26": "Warning! ' found, replacing with \u2019 !", "27": "Warning! ' found, replacing with \u2019 !", "28": "Warning! ' found, replacing with \u2019 !", "29": "Warning! ' found, replacing with \u2019 !", "30": "Warning! ' found, replacing with \u2019 !", "31": "Warning! ' found, replacing with \u2019 !", "32": "Warning! ' found, replacing with \u2019 !", "33": "Warning! ' found, replacing with \u2019 !", "34": "Warning! ' found, replacing with \u2019 !", "35": "Warning! ' found, replacing with \u2019 !", "36": "Warning! ' found, replacing with \u2019 !", "37": "Warning! ' found, replacing with \u2019 !", "38": "Warning! ' found, replacing with \u2019 !", "39": "Warning! ' found, replacing with \u2019 !", "40": "Warning! ' found, replacing with \u2019 !", "41": "Warning! ' found, replacing with \u2019 !", "42": "Warning! ' found, replacing with \u2019 !", "43": "Warning! ' found, replacing with \u2019 !", "44": "Warning! ' found, replacing with \u2019 !", "45": "Warning! ' found, replacing with \u2019 !", "46": "Warning! ' found, replacing with \u2019 !", "47": "Warning! ' found, replacing with \u2019 !", "48": "Warning! ' found, replacing with \u2019 !", "49": "Warning! ' found, replacing with \u2019 !", "50": "Warning! ' found, replacing with \u2019 !", "51": "Warning! ' found, replacing with \u2019 !", "52": "Warning! ' found, replacing with \u2019 !", "53": "Warning! ' found, replacing with \u2019 !", "54": "Warning! ' found, replacing with \u2019 !"}, "Errors": {"0": "Error! No match found for char [ ! ]!", "1": "Error! No match found for char [ \u2019 ]!", "2": "Error! No match found for char [ , ]!", "3": "Error! No match found for char [ \u2019 ]!", "4": "Error! No match found for char [ , ]!", "5": "Error! No match found for char [ \u2019 ]!", "6": "Error! No match found for char [ ! ]!", "7": "Error! No match found for char [ , ]!", "8": "Error! No match found for char [ \u2019 ]!", "9": "Error! No match found for char [ , ]!", "10": "Error! No match found for char [ \u2019 ]!", "11": "Error! No match found for char [ ! ]!", "12": "Error! No match found for char [ , ]!", "13": "Error! No match found for char [ \u2019 ]!", "14": "Error! No match found for char [ \u00e9 ]!", "15": "Error! No match found for char [ \u2019 ]!", "16": "Error! No match found for char [ \u00e9 ]!", "17": "Error! No match found for char [ ! ]!", "18": "Error! No match found for char [ \u2019 ]!", "19": "Error! No match found for char [ , ]!", "20": "Error! No match found for char [ - ]!", "21": "Error! No match found for char [ \u2019 ]!", "22": "Error! No match found for char [ ! ]!", "23": "Error! No match found for char [ \u2019 ]!", "24": "Error! No match found for char [ ! ]!", "25": "Error! No match found for char [ \u00e9 ]!", "26": "Error! No match found for char [ ! ]!", "27": "Error! No match found for char [ \u2019 ]!", "28": "Error! No match found for char [ \u00e9 ]!", "29": "Error! No match found for char [ \u00e9 ]!", "30": "Error! No match found for char [ - ]!", "31": "Error! No match found for char [ \u2019 ]!", "32": "Error! No match found for char [ \u00e9 ]!", "33": "Error! No match found for char [ - ]!", "34": "Error! No match found for char [ \u2019 ]!", "35": "Error! No match found for char [ ! ]!", "36": "Error! No match found for char [ , ]!", "37": "Error! No match found for char [ - ]!", "38": "Error! No match found for char [ ! ]!", "39": "Error! No match found for char [ \u2019 ]!", "40": "Error! No match found for char [ \u2019 ]!", "41": "Error! No match found for char [ , ]!", "42": "Error! No match found for char [ ! ]!", "43": "Error! No match found for char [ ! ]!", "44": "Error! No match found for char [ \u2019 ]!", "45": "Error! No match found for char [ \u2019 ]!", "46": "Error! No match found for char [ , ]!", "47": "Error! No match found for char [ ! ]!", "48": "Error! No match found for char [ \u2019 ]!", "49": "Error! No match found for char [ ! ]!", "50": "Error! No match found for char [ , ]!", "51": "Error! No match found for char [ - ]!", "52": "Error! No match found for char [ ! ]!", "53": "Error! No match found for char [ \u00e9 ]!", "54": "Error! No match found for char [ , ]!", "55": "Error! No match found for char [ ! ]!", "56": "Error! No match found for char [ ! ]!", "57": "Error! No match found for char [ , ]!", "58": "Error! No match found for char [ - ]!", "59": "Error! No match found for char [ ! ]!", "60": "Error! No match found for char [ \u00e9 ]!", "61": "Error! No match found for char [ , ]!", "62": "Error! No match found for char [ ! ]!", "63": "Error! No match found for char [ ! ]!", "64": "Error! No match found for char [ , ]!", "65": "Error! No match found for char [ \u2019 ]!", "66": "Error! No match found for char [ ! ]!", "67": "Error! No match found for char [ \u2019 ]!", "68": "Error! No match found for char [ ! ]!", "69": "Error! No match found for char [ , ]!", "70": "Error! No match found for char [ \u00e9 ]!", "71": "Error! No match found for char [ \u00e9 ]!", "72": "Error! No match found for char [ , ]!", "73": "Error! No match found for char [ \u2019 ]!", "74": "Error! No match found for char [ , ]!", "75": "Error! No match found for char [ , ]!", "76": "Error! No match found for char [ , ]!", "77": "Error! No match found for char [ ! ]!", "78": "Error! No match found for char [ ! ]!", "79": "Error! No match found for char [ ! ]!", "80": "Error! No match found for char [ \u2019 ]!", "81": "Error! No match found for char [ \u00e9 ]!", "82": "Error! No match found for char [ \u2019 ]!", "83": "Error! No match found for char [ ! ]!", "84": "Error! No match found for char [ \u2019 ]!", "85": "Error! No match found for char [ \u2019 ]!", "86": "Error! No match found for char [ \u2019 ]!", "87": "Error! No match found for char [ , ]!", "88": "Error! No match found for char [ \u2019 ]!", "89": "Error! No match found for char [ ! ]!", "90": "Error! No match found for char [ \u2019 ]!", "91": "Error! No match found for char [ ! ]!", "92": "Error! No match found for char [ \u2019 ]!", "93": "Error! No match found for char [ \u00e9 ]!", "94": "Error! No match found for char [ ! ]!", "95": "Error! No match found for char [ \u00e9 ]!", "96": "Error! No match found for char [ ! ]!", "97": "Error! No match found for char [ \u2019 ]!", "98": "Error! No match found for char [ \u00e9 ]!", "99": "Error! No match found for char [ ! ]!", "100": "Error! No match found for char [ \u00e9 ]!", "101": "Error! No match found for char [ ! ]!", "102": "Error! No match found for char [ \u2019 ]!", "103": "Error! No match found for char [ \u00e9 ]!", "104": "Error! No match found for char [ ! ]!", "105": "Error! No match found for char [ \u00e9 ]!", "106": "Error! No match found for char [ ! ]!", "107": "Error! No match found for char [ ! ]!", "108": "Error! No match found for char [ \u00e9 ]!", "109": "Error! No match found for char [ , ]!", "110": "Error! No match found for char [ ! ]!", "111": "Error! No match found for char [ ! ]!", "112": "Error! No match found for char [ , ]!", "113": "Error! No match found for char [ ! ]!", "114": "Error! No match found for char [ \u2019 ]!", "115": "Error! No match found for char [ , ]!", "116": "Error! No match found for char [ , ]!", "117": "Error! No match found for char [ - ]!", "118": "Error! No match found for char [ ! ]!", "119": "Error! No match found for char [ \u00e9 ]!", "120": "Error! No match found for char [ \u2019 ]!", "121": "Error! No match found for char [ \u00e9 ]!", "122": "Error! No match found for char [ \u2019 ]!", "123": "Error! No match found for char [ ! ]!", "124": "Error! No match found for char [ , ]!", "125": "Error! No match found for char [ \u2019 ]!", "126": "Error! No match found for char [ \u00e9 ]!", "127": "Error! No match found for char [ ! ]!", "128": "Error! No match found for char [ ! ]!", "129": "Error! No match found for char [ , ]!", "130": "Error! No match found for char [ \u00e9 ]!", "131": "Error! No match found for char [ ? ]!", "132": "Error! No match found for char [ \u00e9 ]!", "133": "Error! No match found for char [ \u2019 ]!", "134": "Error! No match found for char [ ? ]!", "135": "Error! No match found for char [ \u2019 ]!", "136": "Error! No match found for char [ , ]!", "137": "Error! No match found for char [ ! ]!", "138": "Error! No match found for char [ \u2019 ]!", "139": "Error! No match found for char [ \u00e9 ]!", "140": "Error! No match found for char [ , ]!", "141": "Error! No match found for char [ \u00e9 ]!", "142": "Error! No match found for char [ , ]!", "143": "Error! No match found for char [ \u2019 ]!", "144": "Error! No match found for char [ , ]!", "145": "Error! No match found for char [ \u00e9 ]!", "146": "Error! No match found for char [ \u00e9 ]!", "147": "Error! No match found for char [ ! ]!", "148": "Error! No match found for char [ , ]!", "149": "Error! No match found for char [ \u2019 ]!", "150": "Error! No match found for char [ \u2019 ]!", "151": "Error! No match found for char [ , ]!", "152": "Error! No match found for char [ \u2019 ]!", "153": "Error! No match found for char [ , ]!", "154": "Error! No match found for char [ , ]!", "155": "Error! No match found for char [ , ]!", "156": "Error! No match found for char [ , ]!", "157": "Error! No match found for char [ \u2019 ]!", "158": "Error! No match found for char [ \u2019 ]!", "159": "Error! No match found for char [ ? ]!", "160": "Error! No match found for char [ \u00e9 ]!", "161": "Error! No match found for char [ ! ]!", "162": "Error! No match found for char [ ! ]!", "163": "Error! No match found for char [ ! ]!", "164": "Error! No match found for char [ \u00e9 ]!", "165": "Error! No match found for char [ \u00e9 ]!", "166": "Error! No match found for char [ \u00e9 ]!", "167": "Error! No match found for char [ ! ]!", "168": "Error! No match found for char [ ! ]!", "169": "Error! No match found for char [ ! ]!", "170": "Error! No match found for char [ \u00e9 ]!", "171": "Error! No match found for char [ , ]!", "172": "Error! No match found for char [ ! ]!", "173": "Error! No match found for char [ ! ]!", "174": "Error! No match found for char [ \u2019 ]!", "175": "Error! No match found for char [ ! ]!", "176": "Error! No match found for char [ \u2019 ]!", "177": "Error! No match found for char [ ! ]!", "178": "Error! No match found for char [ \u2019 ]!", "179": "Error! No match found for char [ ! ]!", "180": "Error! No match found for char [ \u2019 ]!", "181": "Error! No match found for char [ ! ]!", "182": "Error! No match found for char [ \u2019 ]!", "183": "Error! No match found for char [ ! ]!", "184": "Error! No match found for char [ \u00e9 ]!", "185": "Error! No match found for char [ ? ]!", "186": "Error! No match found for char [ \u00e9 ]!", "187": "Error! No match found for char [ ? ]!", "188": "Error! No match found for char [ , ]!", "189": "Error! No match found for char [ \u2019 ]!", "190": "Error! No match found for char [ \u00e9 ]!", "191": "Error! No match found for char [ \u2019 ]!", "192": "Error! No match found for char [ ! ]!", "193": "Error! No match found for char [ , ]!", "194": "Error! No match found for char [ \u2019 ]!", "195": "Error! No match found for char [ \u00e9 ]!", "196": "Error! No match found for char [ \u2019 ]!", "197": "Error! No match found for char [ ! ]!", "198": "Error! No match found for char [ , ]!", "199": "Error! No match found for char [ \u00e9 ]!", "200": "Error! No match found for char [ , ]!", "201": "Error! No match found for char [ \u2026 ]!", "202": "Error! No match found for char [ \u00c0 ]!", "203": "Error! No match found for char [ \u00cb ]!", "204": "Error! No match found for char [ , ]!", "205": "Error! No match found for char [ , ]!", "206": "Error! No match found for char [ ! ]!", "207": "Error! No match found for char [ \u00c0 ]!", "208": "Error! No match found for char [ \u00cb ]!", "209": "Error! No match found for char [ , ]!", "210": "Error! No match found for char [ , ]!", "211": "Error! No match found for char [ ! ]!", "212": "Error! No match found for char [ \u00c0 ]!", "213": "Error! No match found for char [ \u00cb ]!", "214": "Error! No match found for char [ , ]!", "215": "Error! No match found for char [ , ]!", "216": "Error! No match found for char [ ! ]!", "217": "Error! No match found for char [ \u00c0 ]!", "218": "Error! No match found for char [ \u00cb ]!", "219": "Error! No match found for char [ , ]!", "220": "Error! No match found for char [ , ]!", "221": "Error! No match found for char [ ? ]!", "222": "Error! No match found for char [ ! ]!", "223": "Error! No match found for char [ ! ]!", "224": "Error! No match found for char [ \u00c0 ]!", "225": "Error! No match found for char [ \u00cb ]!", "226": "Error! No match found for char [ , ]!", "227": "Error! No match found for char [ , ]!", "228": "Error! No match found for char [ ? ]!", "229": "Error! No match found for char [ ! ]!", "230": "Error! No match found for char [ ! ]!", "231": "Error! No match found for char [ \u00c0 ]!", "232": "Error! No match found for char [ \u00cb ]!", "233": "Error! No match found for char [ , ]!", "234": "Error! No match found for char [ , ]!", "235": "Error! No match found for char [ ? ]!", "236": "Error! No match found for char [ ! ]!", "237": "Error! No match found for char [ ! ]!", "238": "Error! No match found for char [ \u00c0 ]!", "239": "Error! No match found for char [ \u00cb ]!", "240": "Error! No match found for char [ , ]!", "241": "Error! No match found for char [ , ]!", "242": "Error! No match found for char [ ? ]!", "243": "Error! No match found for char [ ! ]!", "244": "Error! No match found for char [ ! ]!", "245": "Error! No match found for char [ \u00c0 ]!", "246": "Error! No match found for char [ \u00c1 ]!", "247": "Error! No match found for char [ \u00c0 ]!", "248": "Error! No match found for char [ \u2019 ]!", "249": "Error! No match found for char [ \u00e9 ]!", "250": "Error! No match found for char [ ! ]!", "251": "Error! No match found for char [ ! ]!", "252": "Error! No match found for char [ \u00c0 ]!", "253": "Error! No match found for char [ ! ]!", "254": "Error! No match found for char [ \u2019 ]!", "255": "Error! No match found for char [ ! ]!", "256": "Error! No match found for char [ ! ]!", "257": "Error! No match found for char [ ! ]!", "258": "Error! No match found for char [ , ]!", "259": "Error! No match found for char [ , ]!", "260": "Error! No match found for char [ , ]!", "261": "Error! No match found for char [ \u00c0 ]!", "262": "Error! No match found for char [ ! ]!", "263": "Error! No match found for char [ ! ]!", "264": "Error! No match found for char [ ! ]!", "265": "Error! No match found for char [ ! ]!", "266": "Error! No match found for char [ ! ]!", "267": "Error! No match found for char [ ! ]!", "268": "Error! No match found for char [ \u00c0 ]!", "269": "Error! No match found for char [ \u00cb ]!", "270": "Error! No match found for char [ - ]!", "271": "Error! No match found for char [ \u2026 ]!", "272": "Error! No match found for char [ , ]!", "273": "Error! No match found for char [ , ]!", "274": "Error! No match found for char [ , ]!", "275": "Error! No match found for char [ ! ]!", "276": "Error! No match found for char [ \u00c0 ]!", "277": "Error! No match found for char [ \u00cb ]!", "278": "Error! No match found for char [ , ]!", "279": "Error! No match found for char [ - ]!", "280": "Error! No match found for char [ , ]!", "281": "Error! No match found for char [ ! ]!", "282": "Error! No match found for char [ \u00c0 ]!", "283": "Error! No match found for char [ \u00c9 ]!", "284": "Error! No match found for char [ , ]!", "285": "Error! No match found for char [ ! ]!", "286": "Error! No match found for char [ \u00c0 ]!", "287": "Error! No match found for char [ ? ]!", "288": "Error! No match found for char [ \u00c0 ]!", "289": "Error! No match found for char [ \u00cb ]!", "290": "Error! No match found for char [ ! ]!", "291": "Error! No match found for char [ \u2019 ]!", "292": "Error! No match found for char [ \u00e9 ]!", "293": "Error! No match found for char [ ! ]!", "294": "Error! No match found for char [ \u00c0 ]!", "295": "Error! No match found for char [ \u00c9 ]!", "296": "Error! No match found for char [ ! ]!", "297": "Error! No match found for char [ \u2019 ]!", "298": "Error! No match found for char [ \u2026 ]!", "299": "Error! No match found for char [ ! ]!", "300": "Error! No match found for char [ \u00c0 ]!", "301": "Error! No match found for char [ \u00c9 ]!", "302": "Error! No match found for char [ ! ]!", "303": "Error! No match found for char [ ! ]!", "304": "Error! No match found for char [ \u00c0 ]!", "305": "Error! No match found for char [ \u00cb ]!", "306": "Error! No match found for char [ , ]!", "307": "Error! No match found for char [ \u00c0 ]!", "308": "Error! No match found for char [ ! ]!", "309": "Error! No match found for char [ \u2019 ]!", "310": "Error! No match found for char [ , ]!", "311": "Error! No match found for char [ ! ]!", "312": "Error! No match found for char [ \u00c0 ]!", "313": "Error! No match found for char [ \u00c9 ]!", "314": "Error! No match found for char [ ! ]!", "315": "Error! No match found for char [ , ]!", "316": "Error! No match found for char [ \u00e9 ]!", "317": "Error! No match found for char [ \u00c0 ]!", "318": "Error! No match found for char [ \u00cb ]!", "319": "Error! No match found for char [ \u2019 ]!", "320": "Error! No match found for char [ , ]!", "321": "Error! No match found for char [ \u00c0 ]!", "322": "Error! No match found for char [ ! ]!", "323": "Error! No match found for char [ , ]!", "324": "Error! No match found for char [ ! ]!", "325": "Error! No match found for char [ \u00e9 ]!", "326": "Error! No match found for char [ ! ]!", "327": "Error! No match found for char [ \u00e9 ]!", "328": "Error! No match found for char [ ! ]!", "329": "Error! No match found for char [ - ]!", "330": "Error! No match found for char [ \u00e9 ]!", "331": "Error! No match found for char [ \u00e9 ]!", "332": "Error! No match found for char [ , ]!", "333": "Error! No match found for char [ , ]!", "334": "Error! No match found for char [ ! ]!", "335": "Error! No match found for char [ - ]!", "336": "Error! No match found for char [ \" ]!", "337": "Error! No match found for char [ \u00e9 ]!", "338": "Error! No match found for char [ , ]!", "339": "Error! No match found for char [ , ]!", "340": "Error! No match found for char [ , ]!", "341": "Error! No match found for char [ , ]!", "342": "Error! No match found for char [ \u00e9 ]!", "343": "Error! No match found for char [ , ]!", "344": "Error! No match found for char [ , ]!", "345": "Error! No match found for char [ \u00e9 ]!", "346": "Error! No match found for char [ , ]!", "347": "Error! No match found for char [ \u00e9 ]!", "348": "Error! No match found for char [ \u00e9 ]!", "349": "Error! No match found for char [ \u00e9 ]!", "350": "Error! No match found for char [ ! ]!", "351": "Error! No match found for char [ \u00e9 ]!", "352": "Error! No match found for char [ - ]!", "353": "Error! No match found for char [ - ]!", "354": "Error! No match found for char [ - ]!", "355": "Error! No match found for char [ - ]!", "356": "Error! No match found for char [ - ]!", "357": "Error! No match found for char [ - ]!", "358": "Error! No match found for char [ & ]!", "359": "Error! No match found for char [ \u00e9 ]!", "360": "ERROR! Made a line break when disabled, sentence \"Remote and Arbitrary Code\u0147Execution assistance: \u0147\u0147-TimoVM \u0147\u0147Remote Multiboot\u0147functionality: \u023c\" is too long!", "361": "Error! No match found for char [ - ]!", "362": "Error! No match found for char [ - ]!", "363": "Error! No match found for char [ - ]!", "364": "Error! No match found for char [ - ]!", "365": "Error! No match found for char [ - ]!", "366": "Error! No match found for char [ - ]!", "367": "Error! No match found for char [ - ]!", "368": "Error! No match found for char [ - ]!", "369": "Error! No match found for char [ - ]!", "370": "Error! No match found for char [ - ]!", "371": "Error! No match found for char [ - ]!", "372": "Error! No match found for char [ - ]!", "373": "Error! No match found for char [ - ]!", "374": "Error! No match found for char [ - ]!", "375": "Error! No match found for char [ - ]!", "376": "Error! No match found for char [ - ]!", "377": "Error! No match found for char [ - ]!", "378": "Error! No match found for char [ - ]!", "379": "Error! No match found for char [ - ]!", "380": "Error! No match found for char [ - ]!", "381": "Error! No match found for char [ - ]!", "382": "Error! No match found for char [ - ]!", "383": "Error! No match found for char [ - ]!", "384": "Error! No match found for char [ - ]!", "385": "Error! No match found for char [ - ]!", "386": "Error! No match found for char [ - ]!", "387": "Error! No match found for char [ - ]!", "388": "Error! No match found for char [ - ]!", "389": "Error! No match found for char [ - ]!", "390": "Error! No match found for char [ - ]!", "391": "Error! No match found for char [ - ]!", "392": "Error! No match found for char [ \u2019 ]!", "393": "Error! No match found for char [ \u00e9 ]!", "394": "Error! No match found for char [ - ]!", "395": "Error! No match found for char [ - ]!", "396": "Error! No match found for char [ - ]!", "397": "Error! No match found for char [ - ]!", "398": "Error! No match found for char [ - ]!", "399": "Error! No match found for char [ - ]!", "400": "Error! No match found for char [ - ]!", "401": "Error! No match found for char [ & ]!", "402": "Error! No match found for char [ , ]!", "403": "Error! No match found for char [ , ]!", "404": "Error! No match found for char [ , ]!", "405": "Error! No match found for char [ , ]!", "406": "Error! No match found for char [ , ]!", "407": "Error! No match found for char [ , ]!", "408": "Error! No match found for char [ , ]!", "409": "Error! No match found for char [ , ]!", "410": "Error! No match found for char [ ! ]!", "411": "Error! No match found for char [ \u00e9 ]!", "412": "Error! No match found for char [ , ]!", "413": "Error! No match found for char [ , ]!", "414": "Error! No match found for char [ , ]!", "415": "Error! No match found for char [ , ]!", "416": "Error! No match found for char [ \u2019 ]!", "417": "Error! No match found for char [ - ]!"}}, "English": {"PTGB": {"DIA_OPEN": {"bytes": "0xc2, 0xd9, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xab, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xd9, 0xe2, 0xe2, 0xd9, 0xe0, 0xad, 0x0, 0xbb, 0xe7, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xd9, 0xb8, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xd5, 0x0, 0xe7, 0xd7, 0xdd, 0xd9, 0xe2, 0xe8, 0xdd, 0xe7, 0xe8, 0xad, 0x0, 0xc3, 0xe2, 0xfe, 0xda, 0xd5, 0xd7, 0xe8, 0xb8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xe9, 0xd6, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe7, 0xfe, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0xab, 0xfb, 0xc7, 0xed, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe0, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xea, 0xd5, 0xe6, 0xdd, 0xe3, 0xe9, 0xe7, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xdc, 0xd5, 0xd8, 0xfe, 0xd5, 0xe2, 0xed, 0x0, 0xd6, 0xe6, 0xd9, 0xd5, 0xdf, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0xe7, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xad, 0xad, 0xfb, 0xcd, 0xe3, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0xb4, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xdd, 0xe2, 0xdb, 0xfe, 0xe3, 0xe2, 0x0, 0xd5, 0x0, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0xfe, 0xe3, 0xe0, 0xd8, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0xab, 0xfb, 0xc3, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xdc, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0xb8, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xb4, 0xe7, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xdd, 0xe2, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd9, 0xed, 0x0, 0xe1, 0xd9, 0xd9, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0xab, 0xfb, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xda, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe1, 0xed, 0x0, 0xdb, 0xe3, 0xd5, 0xe0, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xd8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xd5, 0xe1, 0xd9, 0xae, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb4, 0xe7, 0xfe, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xfb, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xe2, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe9, 0xe8, 0xfe, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xe7, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xa3, 0xa6, 0xa1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xd7, 0xd5, 0xe8, 0xd5, 0xe0, 0xe3, 0xdb, 0xe9, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xbe, 0xd9, 0xec, 0xae, 0x0, 0xe3, 0xe6, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe6, 0xe8, 0xad, 0xfb, 0xbc, 0xe9, 0xe8, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xae, 0xfe, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xe6, 0xd9, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xd5, 0xe0, 0xe0, 0xab, 0xfb, 0xc9, 0xe2, 0xd9, 0x0, 0xe0, 0xd5, 0xe7, 0xe8, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0xb8, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0xae, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdb, 0xe3, 0xd9, 0xe7, 0x0, 0xeb, 0xe6, 0xe3, 0xe2, 0xdb, 0xab, 0xfe, 0xc3, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdf, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xad, 0xad, 0xad, 0xfb, 0xeb, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0xb8, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hey there! I\u2019m Professor Fennel. As\u0147you can see, I\u2019m a scientist. In\u0147fact, the subject I\u2019m researching is\u0147Trainers!\u023cMy dream is to collect save files of\u0147various trainers, but I haven\u2019t had\u0147any breakthroughs yet...\u023cSo in the meantime, I\u2019ve been working\u0147on a different project with one of my\u0147old friends!\u023cIn my home region, there\u2019s a location\u0147that can make a Pok\u00e9mon\u2019s dreams into\u0147reality.\u023cThis means that any other Pok\u00e9mon\u0147they meet in their dreams become\u0147real!\u023cThat\u2019s fantastic, but my goal is to\u0147do the same- just with a trainer\u2019s\u0147dream instead! That\u2019s why I need your\u0147help!\u023cI want to bring as many Pok\u00e9mon out\u0147of your dreams as possible!\u023cThere\u2019s just over 250 Pok\u00e9mon I want\u0147to catalogue in my Dream Pok\u00e9Dex- or\u0147Dream Dex for short.\u023cBut I\u2019ll let you keep any Pok\u00e9mon-\u0147they\u2019re from your dreams after all!\u023cOne last note, save data backups are\u0147recommended- just on the off chance\u0147that something goes wrong!\u0147I think that\u2019s everything...\u023cwhenever you\u2019re ready to start, just\u0147let me know!\u019e"}, "DIA_E4": {"bytes": "0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xe8, 0xdc, 0xe6, 0xdd, 0xe0, 0xe0, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0xfe, 0xd8, 0xd9, 0xd7, 0xdd, 0xd8, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe9, 0xe6, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xd9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0xab, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd5, 0xe8, 0xd9, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbf, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xc0, 0xe3, 0xe9, 0xe6, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xdc, 0xd5, 0xe1, 0xe4, 0xdd, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi trainer! I\u2019m thrilled you\u2019ve\u0147decided to help with our research,\u0147but we need the best of the best!\u023cCome back after you\u2019ve beaten the\u0147Elite Four and become the Champion!\u019e"}, "DIA_MG_FRLGE": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0xfe, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xae, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xc1, 0xc3, 0xc0, 0xce, 0xab, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe2, 0xd9, 0xd5, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xc7, 0xd5, 0xe6, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xda, 0xdd, 0xe0, 0xe0, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe2, 0xd5, 0xdd, 0xe6, 0xd9, 0x0, 0xd5, 0xe7, 0xfe, 0xda, 0xe3, 0xe0, 0xe0, 0xe3, 0xeb, 0xe7, 0xf0, 0x0, 0xc6, 0xc3, 0xc8, 0xc5, 0x0, 0xce, 0xc9, 0xc1, 0xbf, 0xce, 0xc2, 0xbf, 0xcc, 0x0, 0xd1, 0xc3, 0xce, 0xc2, 0x0, 0xbb, 0xc6, 0xc6, 0xad, 0xfb, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xdb, 0xe3, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, one more thing to take\u0147care of before we can begin- you need\u0147to enable MYSTERY GIFT!\u023cHead to the nearest Pok\u00e9 Mart and\u0147fill out the questionnaire as\u0147follows: LINK TOGETHER WITH ALL.\u023cAfter that, you should be all set to\u0147go! See you soon!\u019e"}, "DIA_MG_RS": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0xfe, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xae, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0xab, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbf, 0xce, 0xbb, 0xc6, 0xbc, 0xcf, 0xcc, 0xc1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xbd, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xe2, 0x0, 0xe2, 0xd9, 0xec, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0xf0, 0xfe, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0x0, 0xc3, 0xcd, 0x0, 0xbf, 0xd2, 0xbd, 0xc3, 0xce, 0xc3, 0xc8, 0xc1, 0xad, 0x0, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0xb8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdb, 0xe3, 0xab, 0xfb, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, one more thing to take\u0147care of before we can begin- you need\u0147to enable MYSTERY EVENT!\u023cHead to the PETALBURG Pok\u00e9mon Center\u0147and tell the man next to the PC:\u0147MYSTERY EVENT IS EXCITING. After\u0147that, you should be all set to go!\u023cSee you soon!\u019e"}, "DIA_LETS_START": {"bytes": "0xca, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0xb8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xc3, 0xfe, 0xe2, 0xd9, 0xd9, 0xd8, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xdb, 0xd9, 0xe8, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0xd9, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Perfect, that\u2019s all the information I\u0147need! Let\u2019s get started!\u019e"}, "DIA_START": {"bytes": "0xc9, 0xe2, 0x0, 0xd5, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xb8, 0xfe, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xdd, 0xe7, 0xdc, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xad, 0xfb, 0xc3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xad, 0xfb, 0xce, 0xdc, 0xd9, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xfe, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0x0, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0xad, 0xfb, 0xc9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0xb8, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xbd, 0xe0, 0xe9, 0xd6, 0xfe, 0xd5, 0xe8, 0xe8, 0xd9, 0xe2, 0xd8, 0xd5, 0xe2, 0xe8, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0x0, 0xdd, 0xe2, 0xdd, 0xe8, 0xdd, 0xd5, 0xe8, 0xd9, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xd9, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "On a second Game Boy family system,\u0147please load the Game Boy Pok\u00e9mon game\u0147you wish to transfer from.\u023cIn your Game Boy Pok\u00e9mon game, make\u0147your current box the one you want to\u0147transfer from.\u023cThen connect this Game Boy Advance to\u0147the other Game Boy family system\u0147using a Game Boy Color link cable.\u023cOnce you\u2019re ready, press A on this\u0147device, talk to the Cable Club\u0147attendant, and then initiate a trade.\u019e"}, "DIA_TRANS_GOOD": {"bytes": "0xbb, 0xe1, 0xd5, 0xee, 0xdd, 0xe2, 0xdb, 0xab, 0x0, 0xc0, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0xab, 0x0, 0xbf, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0xfe, 0xe4, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Amazing! Fantastic! Everything went\u0147perfectly!\u019e"}, "DIA_NEW_DEX": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xdd, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xab, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xd9, 0xec, 0xe8, 0xe6, 0xd5, 0x0, 0xe7, 0xeb, 0xd9, 0xd9, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xe6, 0xd9, 0xeb, 0xd5, 0xe6, 0xd8, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like there\u2019s at least one\u0147new Pok\u00e9mon here that isn\u2019t in the\u0147Dream Dex! I\u2019ll give them something\u0147extra sweet as a reward for you both.\u019e"}, "DIA_NO_NEW_DEX": {"bytes": "0xc3, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0xe2, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0xfe, 0xe3, 0xdf, 0xd5, 0xed, 0xab, 0x0, 0xc3, 0xe8, 0xb4, 0xe7, 0x0, 0xdd, 0xe1, 0xe4, 0xe3, 0xe6, 0xe8, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0xfe, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe9, 0xe0, 0xe8, 0xe7, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe1, 0xe9, 0xe0, 0xe8, 0xdd, 0xe4, 0xe0, 0xd9, 0x0, 0xe8, 0xd9, 0xe7, 0xe8, 0xe7, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It doesn\u2019t look like there\u2019s anything\u0147new for your Dream Dex, but that\u2019s\u0147okay! It\u2019s important to confirm\u0147research results with multiple tests!\u019e"}, "DIA_SEND_FRIEND_KANTO": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0x0, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0x0, 0xe3, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xe3, 0xe2, 0x0, 0xcd, 0xd9, 0xea, 0xd9, 0xe2, 0x0, 0xc3, 0xe7, 0xe0, 0xd5, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up! They live just south of\u0147the Pok\u00e9mon center on Seven Island!\u019e"}, "DIA_SEND_FRIEND_HOENN_RS": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xc7, 0xe3, 0xe7, 0xe7, 0xd8, 0xd9, 0xd9, 0xe4, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up!\u023cThey live just southeast of the\u0147Pok\u00e9mon center in Mossdeep City!\u019e"}, "DIA_SEND_FRIEND_HOENN_E": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xcd, 0xe3, 0xe3, 0xe8, 0xe3, 0xe4, 0xe3, 0xe0, 0xdd, 0xe7, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up!\u023cThey live just southeast of the\u0147Pok\u00e9mon center in Sootopolis City!\u019e"}, "DIA_THANK": {"bytes": "0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xfe, 0xd1, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xb8, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Thank you so much for your help!\u0147Whenever you want to transfer more\u0147Pok\u00e9mon, just let me know! See you\u0147around!\u019e"}, "DIA_GET_MON": {"bytes": "0xe9, 0xe2, 0xe9, 0xe7, 0xd9, 0xd8, 0xb8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "unused, will be removed\u019e"}, "DIA_MG_OTHER_EVENT": {"bytes": "0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xfe, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xad, 0xfe, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xd6, 0xe0, 0xd9, 0xe1, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe3, 0xea, 0xd9, 0xe6, 0xeb, 0xe6, 0xdd, 0xe8, 0xe8, 0xd9, 0xe2, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xad, 0xfb, 0xce, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xe2, 0xe3, 0xeb, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xec, 0xe4, 0xd9, 0xe6, 0xdd, 0xd9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0xae, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi Trainer! It looks like you have a\u0147different event currently loaded.\u0147That\u2019s no problem, but it will be\u0147overwritten if you continue.\u023cTurn off the system now if you want\u0147to experience your current event, but\u0147otherwise-\u019e"}, "DIA_PKMN_TO_COLLECT": {"bytes": "0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe9, 0xe4, 0xad, 0xad, 0xad, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0xb4, 0xe8, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe9, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0xfe, 0xe8, 0xdc, 0xe3, 0xe7, 0xd9, 0x0, 0xe9, 0xe4, 0xad, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi Trainer! It looks like you still\u0147have Pok\u00e9mon to pick up... I can\u2019t\u0147send over new Pok\u00e9mon until you pick\u0147those up.\u023cCome back after you\u2019ve received them!\u019e"}, "DIA_NO_VALID_PKMN": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xea, 0xd5, 0xe0, 0xdd, 0xd8, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xe2, 0xe3, 0xeb, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xd8, 0xe3, 0xe9, 0xd6, 0xe0, 0xd9, 0x0, 0xd7, 0xdc, 0xd9, 0xd7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xdd, 0xe8, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry Trainer, it doesn\u2019t look like\u0147you have any valid Pok\u00e9mon in your\u0147current box right now.\u023cGo double check your current box and\u0147we can give it another shot!\u019e"}, "DIA_ASK_QUEST": {"bytes": "0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xbc, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xb8, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd5, 0xe7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0x0, 0xda, 0xd9, 0xeb, 0x0, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi trainer! Before we begin, I need\u0147to ask you a few questions.\u019e"}, "DIA_WHAT_GAME_TRANS": {"bytes": "0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xac, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "And which Game Boy Pok\u00e9mon game are\u0147you transferring from?\u019e"}, "DIA_WHAT_LANG_TRANS": {"bytes": "0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xac, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "What language is the Game Boy Pok\u00e9mon\u0147game that you\u2019re transferring from?\u019e"}, "DIA_NO_GB_ROM": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xe7, 0xe3, 0xe6, 0xe6, 0xed, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xea, 0xd9, 0xe6, 0xe7, 0xdd, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m sorry, but that version in that\u0147language is not currently supported.\u019e"}, "DIA_IN_BOX": {"bytes": "0xbb, 0xe0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0xad, 0xfb, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xd9, 0xe1, 0xd6, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xd5, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe7, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xbd, 0xbb, 0xc8, 0xc8, 0xc9, 0xce, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xad, 0xfb, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xe3, 0xe6, 0xfe, 0xe7, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Alright! Let\u2019s take a look at the\u0147Pok\u00e9mon that will be transfered.\u023cPlease remember, once a Pok\u00e9mon is\u0147transfered, it CANNOT be returned to\u0147the Game Boy Game Pak.\u023cSelect confirm once you\u2019re ready, or\u0147select cancel if you want to keep the\u0147Pok\u00e9mon on your Game Boy Game Pak.\u019e"}, "DIA_MYTHIC_CONVERT": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0x0, 0xe6, 0xd5, 0xe6, 0xd9, 0xfe, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xab, 0x0, 0xbe, 0xe9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xe6, 0xd5, 0xe6, 0xdd, 0xe8, 0xed, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xea, 0xd9, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xad, 0xfb, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xd8, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0xb4, 0xe0, 0xe0, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xd9, 0xe8, 0xfe, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xb8, 0x0, 0xc9, 0xce, 0xb8, 0x0, 0xce, 0xc3, 0xbe, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xcd, 0xdc, 0xdd, 0xe2, 0xdd, 0xe2, 0xd9, 0xe7, 0xe7, 0xad, 0xfb, 0xc9, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe0, 0xd9, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe7, 0x0, 0xdd, 0xe7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xdb, 0xe9, 0xd5, 0xe6, 0xd9, 0xe2, 0xe8, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xda, 0xe9, 0xe8, 0xe9, 0xe6, 0xd9, 0xad, 0x0, 0xbe, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xac, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd5, 0xe4, 0xe4, 0xe0, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd6, 0xe3, 0xec, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like you have a rare\u0147Mythical Pok\u00e9mon! Due to their\u0147rarity, it seems they\u2019ve overloaded\u0147the machine.\u023cI can stablize them if you\u2019d like,\u0147but it\u2019ll change some things like met\u0147location, OT, TID, and Shininess.\u023cOtherwise I can leave them as is, but\u0147there\u2019s no guarentee that they\u2019ll be\u0147transferrable in the future. Do you\u0147want me to stablize them?\u023cThis will apply to all of the\u0147Mythical Pok\u00e9mon currently in your\u0147box.\u019e"}, "DIA_CANCEL": {"bytes": "0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0xab, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xdd, 0xda, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "No worries! Feel free to come back if\u0147you change your mind! See you around!\u019e"}, "DIA_SOME_INVALID_PKMN": {"bytes": "0xc3, 0x0, 0xe7, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0xad, 0xfb, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xe3, 0xe0, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe8, 0xd9, 0xe1, 0xe7, 0x0, 0xe3, 0xe6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xdd, 0xd9, 0xd8, 0xfe, 0xdd, 0xe2, 0xd7, 0xe3, 0xe6, 0xe6, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0x0, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0x0, 0xe9, 0xe2, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0xfe, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0xad, 0xfb, 0xce, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xda, 0xdd, 0xe2, 0xd9, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I see there is at least one Pok\u00e9mon\u0147that cannot be transferred from your\u0147current box.\u023cPok\u00e9mon holding items or modified\u0147incorrectly through unintended means\u0147cannot be transferred.\u023cThe other Pok\u00e9mon will transfer just\u0147fine though!\u019e"}, "DIA_MENU_BACK": {"bytes": "0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0xab, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xfe, 0xd5, 0xe2, 0xed, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "No worries! Feel free to come back\u0147any time!\u019e"}, "DIA_IS_MISSINGNO": {"bytes": "0xad, 0xad, 0xad, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xad, 0xad, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0x0, 0xd6, 0xd9, 0x0, 0xdb, 0xe6, 0xd5, 0xe4, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0xb8, 0x0, 0xe7, 0xe3, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "... It seems like one of your Pok\u00e9mon\u0147is messing with the machine... It\u0147looks to only be graphical though, so\u0147we can continue!\u019e"}, "DIA_ERROR_COLOSSEUM": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd7, 0xe3, 0xe0, 0xe3, 0xe7, 0xe7, 0xd9, 0xe9, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0xfe, 0xe6, 0xe3, 0xe3, 0xe1, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like you went to the\u0147colosseum instead of the trading\u0147room! Let\u2019s try that again!\u019e"}, "DIA_ERROR_COM_ENDED": {"bytes": "0xbd, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0xfe, 0xeb, 0xd5, 0xe7, 0x0, 0xe8, 0xd9, 0xe6, 0xe1, 0xdd, 0xe2, 0xd5, 0xe8, 0xd9, 0xd8, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Communication with the other device\u0147was terminated. Let\u2019s try that again!\u019e"}, "DIA_ERROR_DISCONNECT": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xfe, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xd8, 0xdd, 0xe7, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xd9, 0xd8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like the Game Boy Color link\u0147cable was disconnected... Let\u2019s try\u0147that again!\u019e"}, "DIA_ERROR_TIME_ONE": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0xfe, 0xe3, 0xe9, 0xe8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like the connection timed\u0147out... Let\u2019s try that again!\u019e"}, "DIA_ERROR_TIME_TWO": {"bytes": "0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0xfe, 0xe3, 0xe9, 0xe8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It seems like the connection timed\u0147out... Let\u2019s try that again!\u019e"}, "DIA_WHAT_LANG_EVENT": {"bytes": "0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0xac, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "What language is the Game Boy Pok\u00e9mon\u0147game that you want to send an event\u0147to?\u019e"}, "DIA_WHAT_GAME_EVENT": {"bytes": "0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd8, 0xe3, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xac, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "And which Game Boy Pok\u00e9mon game do\u0147you want to send an event to?\u019e"}, "DIA_K_DEX_NOT_FULL": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xa2, 0xa6, 0xa1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xeb, 0xd9, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, it looks like you\u0147haven\u2019t caught all 150 Pok\u00e9mon from\u0147the Kanto region yet.\u023cGo out and catch them all and then\u0147we\u2019ll be able to send over the event!\u019e"}, "DIA_J_DEX_NOT_FULL": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xaa, 0xaa, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc4, 0xe3, 0xdc, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xeb, 0xd9, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, it looks like you\u0147haven\u2019t caught all 99 new Pok\u00e9mon\u0147from the Johto region yet.\u023cGo out and catch them all and then\u0147we\u2019ll be able to send over the event!\u019e"}}, "RSEFRLG": {"dia_textGreet_rse": {"bytes": "0xd1, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0xb8, 0x0, 0xc3, 0x0, 0xe8, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xe0, 0xd8, 0xfe, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0x0, 0xce, 0xcc, 0xbb, 0xc3, 0xc8, 0xbf, 0xcc, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "When I was young, I traveled the world\u0147as a POK\u00e9MON TRAINER.\u019e"}, "dia_textGreet_frlg": {"bytes": "0xc3, 0x0, 0xe1, 0xd5, 0xed, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xe2, 0xe3, 0xeb, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0xd9, 0xe6, 0xb0, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "I may not look like much now,\u0147but when I was younger\u2026\u019e"}, "dia_textMoveBox_rs": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe9, 0xe2, 0xe0, 0xe3, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd8, 0xe3, 0xe3, 0xe6, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to unlock the\u0147door!\u019e"}, "dia_textMoveBox_frlg": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd6, 0xe3, 0xec, 0xd9, 0xe7, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to move the\u0147boxes!\u019e"}, "dia_textMoveBox_e": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe0, 0xd5, 0xe2, 0xe8, 0xe7, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to move the\u0147plants!\u019e"}, "dia_textWeHere_r": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xc7, 0xbb, 0xd2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leader MAXIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_s": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xbb, 0xcc, 0xbd, 0xc2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leader ARCHIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_frlg": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xc1, 0xc3, 0xc9, 0xd0, 0xbb, 0xc8, 0xc8, 0xc3, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Kanto to find\u0147the leader GIOVANNI.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_e": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0xe7, 0x0, 0xc7, 0xbb, 0xd2, 0xc3, 0xbf, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xcc, 0xbd, 0xc2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leaders MAXIE and ARCHIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textRecieved": {"bytes": "0xfc, 0x1, 0x2, 0xfd, 0x1, 0xb4, 0xcd, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0x0, 0xeb, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c1\u01b2\u00c0\u2019S POK\u00e9MON were sent to\u0147the PC!\u019e"}, "dia_textYouMustBe_first": {"bytes": "0xbb, 0xdc, 0xab, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xfd, 0x1, 0xab, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe8, 0xe3, 0xe0, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd7, 0xe3, 0xe1, 0xdd, 0xe2, 0xdb, 0xad, 0xfb, 0xc9, 0xdc, 0xab, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xab, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0xab, 0xfe, 0xc9, 0xe6, 0xb8, 0x0, 0xe6, 0xd5, 0xe8, 0xdc, 0xd9, 0xe6, 0xb8, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdd, 0xe2, 0xe8, 0xe6, 0xe3, 0xd8, 0xe9, 0xd7, 0xd9, 0x0, 0xe1, 0xed, 0xe7, 0xd9, 0xe0, 0xda, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "Ah! You must be \u01b2\u00c0! I was\u0147told you\u2019d be coming.\u023cOh! I still wear my disguise! Pardon!\u0147Or, rather, let me introduce myself.\u019e"}, "dia_textYouMustBe_second": {"bytes": "0xbb, 0xdc, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0x0, 0xd1, 0xd9, 0xe0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xab, 0x0, 0xc1, 0xe3, 0xe3, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xe7, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xfb, 0xc9, 0xdc, 0xab, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xab, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "Ah, \u01b2\u00c0! Welcome back! Good to\u0147see you again!\u023cOh! I still wear my disguise! Pardon!\u019e"}, "dia_textIAm_first": {"bytes": "0xfc, 0x1, 0x8, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xd5, 0x0, 0xdb, 0xe0, 0xe3, 0xd6, 0xd9, 0xae, 0xe8, 0xe6, 0xe3, 0xe8, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd9, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc3, 0xe2, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xe0, 0xdd, 0xd7, 0xd9, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb0, 0x0, 0xfa, 0xbb, 0xdc, 0xb8, 0x0, 0xe2, 0xe3, 0xb8, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0x0, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0xfe, 0xe2, 0xd5, 0xe1, 0xd9, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbI am a globe-trotting elite of the\u0147International Police.\u023cMy name\u2026 \u015eAh, no, I shall inform you of my code\u0147name only.\u023cMy code name, it is LOOKER!\u019e"}, "dia_textIAm_second": {"bytes": "0xfc, 0x1, 0x8, 0xc3, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc3, 0xb8, 0x0, 0xdb, 0xe0, 0xe3, 0xd6, 0xd9, 0xae, 0xe8, 0xe6, 0xe3, 0xe8, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd9, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc3, 0xe2, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xe0, 0xdd, 0xd7, 0xd9, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbIt is I, globe-trotting elite of the\u0147International Police.\u023cMy code name, it is LOOKER!\u019e"}, "dia_textPCConvo": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbb, 0xdc, 0xb8, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0x0, 0xc3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xdd, 0xe8, 0xfe, 0xfd, 0x1, 0x0, 0xdc, 0xd5, 0xe7, 0x0, 0xd5, 0xe6, 0xe6, 0xdd, 0xea, 0xd9, 0xd8, 0xac, 0xfb, 0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0xe2, 0xd8, 0xd9, 0xd9, 0xd8, 0xab, 0x0, 0xce, 0xdc, 0xd9, 0xed, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0xab, 0xfb, 0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbf, 0xec, 0xd7, 0xd9, 0xe0, 0xe0, 0xd9, 0xe2, 0xe8, 0xab, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xfe, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe1, 0xd9, 0xe2, 0xe8, 0xd5, 0xe6, 0xdd, 0xe0, 0xed, 0xb0, 0x0, 0xe7, 0xe8, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: Ah, LOOKER! I take it\u0147\u01b2\u00c0 has arrived?\u023c\u0206\u00c0\u00cbLOOKER: Indeed! They\u2019re ready to\u0147receive their POK\u00e9MON!\u023c\u0206\u00c0\u00c9FENNEL: Excellent! I\u2019ll send them\u0147over momentarily\u2026 stand by!\u019e"}, "dia_textPCThanks": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xbd, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xab, 0xfb, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: It looks like everything was\u0147sent to your PC successfully!\u023cThank you both for your help!\u019e"}, "dia_textThank": {"bytes": "0xfc, 0x1, 0x8, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xe8, 0xe3, 0xe4, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xd6, 0xed, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0xfb, 0xc3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe0, 0xe0, 0x0, 0xd9, 0xec, 0xd7, 0xe9, 0xe7, 0xd9, 0x0, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xad, 0x0, 0xfa, 0xcf, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xe3, 0xe9, 0xe6, 0x0, 0xe4, 0xd5, 0xe8, 0xdc, 0xe7, 0x0, 0xd7, 0xe6, 0xe3, 0xe7, 0xe7, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbThanks for stopping by, \u01b2\u00c0!\u023cIf you\u2019ll excuse me, I must return to\u0147my disguise. \u015eUntil our paths cross again!\u019e"}, "dia_textPCFull": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0x0, 0xdd, 0xe7, 0x0, 0xda, 0xe9, 0xe0, 0xe0, 0xab, 0xfb, 0xc1, 0xe3, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: It seems like the PC is full!\u023cGo make some room, and I can send over\u0147the rest of your POK\u00e9MON.\u019e"}, "dia_textLookerFull": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xcd, 0xe4, 0xd9, 0xd5, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0xfe, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0xfb, 0xc3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xed, 0xfe, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: Speak to me again after\u0147you\u2019ve made room, \u01b2\u00c0!\u023cIn the meantime, I will return to my\u0147disguise.\u019e"}}, "GB": {"sending_text": {"bytes": "SENDING DATA", "numLines": 0, "pixelsPerChar": 0, "pixelsInLine": 0, "includeBoxBreaks": false}, "prof_name": {"bytes": "FENNEL", "numLines": 0, "pixelsPerChar": 0, "pixelsInLine": 0, "includeBoxBreaks": false}}, "GENERAL": {"option_english": {"bytes": "0xbf, 0xe2, 0xdb, 0xe0, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "English\u019e"}, "option_japanese": {"bytes": "0xc4, 0xd5, 0xe4, 0xd5, 0xe2, 0xd9, 0xe7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Japanese\u019e"}, "option_spanish": {"bytes": "0xcd, 0xe4, 0xd5, 0xe2, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Spanish\u019e"}, "option_french": {"bytes": "0xc0, 0xe6, 0xd9, 0xe2, 0xd7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "French\u019e"}, "option_german": {"bytes": "0xc1, 0xd9, 0xe6, 0xe1, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "German\u019e"}, "option_italian": {"bytes": "0xc3, 0xe8, 0xd5, 0xe0, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Italian\u019e"}, "option_korean": {"bytes": "0xc5, 0xe3, 0xe6, 0xd9, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Korean\u019e"}, "option_green": {"bytes": "0xc1, 0xe6, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Green\u019e"}, "option_red": {"bytes": "0xcc, 0xd9, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Red\u019e"}, "option_blue": {"bytes": "0xbc, 0xe0, 0xe9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Blue\u019e"}, "option_yellow": {"bytes": "0xd3, 0xd9, 0xe0, 0xe0, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Yellow\u019e"}, "option_gold": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Gold\u019e"}, "option_silver": {"bytes": "0xcd, 0xdd, 0xe0, 0xea, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Silver\u019e"}, "option_crystal": {"bytes": "0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Crystal\u019e"}, "option_cancel": {"bytes": "0xbd, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Cancel\u019e"}, "press_start": {"bytes": "0xca, 0xe9, 0xe7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xcd, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xab, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Push the Start Button!\u019e"}, "option_transfer": {"bytes": "0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Transfer Pok\u00e9mon\u019e"}, "option_dreamdex": {"bytes": "0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Dream Dex\u019e"}, "option_credits": {"bytes": "0xbd, 0xe6, 0xd9, 0xd8, 0xdd, 0xe8, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Credits\u019e"}, "intro_first": {"bytes": "0xc2, 0xd9, 0xe0, 0xe0, 0xe3, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0xab, 0xfe, 0xfe, 0xc4, 0xe9, 0xe7, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xeb, 0xe3, 0xe6, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xd5, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0xae, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xd1, 0xc3, 0xc6, 0xc6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xed, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe0, 0xe3, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xd6, 0xd9, 0xe8, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xdd, 0xd8, 0xb8, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd9, 0xe2, 0xde, 0xe3, 0xed, 0xab, 0xfe, 0xfe, 0xae, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xff", "numLines": 15, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": false, "text": "Hello! Thank you for using Pok\u00e9\u0147Transporter GB!\u0147\u0147Just as a word of caution- Pok\u00e9\u0147Transporter GB WILL modify both the\u0147GameBoy and GameBoy Advance save\u0147files.\u0147\u0147Please note that while Pok\u00e9\u0147Transporter GB is no longer in beta,\u0147save file backups are still\u0147recommended before using. With that\u0147all being said, please enjoy!\u0147\u0147-The Gears of Progress \u019e"}, "intro_legal": {"bytes": "0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe3, 0xda, 0xfe, 0xe0, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd5, 0xe4, 0xe4, 0xe6, 0xd9, 0xd7, 0xdd, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xd5, 0xe2, 0xd7, 0xdc, 0xdd, 0xe7, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xda, 0xdd, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xbb, 0xc6, 0xd1, 0xbb, 0xd3, 0xcd, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0xfe, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0x0, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe1, 0xe9, 0xe7, 0xdd, 0xd7, 0xfe, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xeb, 0xe2, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0x0, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0x0, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0xad, 0xfe, 0xfe, 0xfe, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xff", "numLines": 14, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": false, "text": "Pok\u00e9 Transporter GB was made out of\u0147love and appreciation for the Pokemon\u0147franchise with no profit in mind. It\u0147will ALWAYS be free.\u0147\u0147Please support the original\u0147developers.\u0147\u0147All Pokemon names, sprites, and music\u0147are owned by Nintendo, Creatures Inc,\u0147and GAME FREAK.\u0147\u0147\u0147Press A to continue\u019e"}, "cart_load_error": {"bytes": "0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xad, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xdd, 0xe2, 0xe7, 0xd9, 0xe6, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xea, 0xd9, 0xe0, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff", "numLines": 10, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "The Pok\u00e9mon save file was\u0147not loaded successfully.\u0147Please remove and reinsert\u0147the Game Pak, and then\u0147press the A button.\u0147\u0147Alternatively, press the\u0147Select button to send this\u0147program to another GameBoy\u0147Advance.\u019e"}, "pulled_cart_error": {"bytes": "0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xad, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "The Pok\u00e9mon game was\u0147removed. Please turn off\u0147the system and restart the\u0147program.\u019e"}, "send_multiboot_instructions": {"bytes": "0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xfe, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xdd, 0xe2, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0x0, 0xe1, 0xe3, 0xd8, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xc6, 0xdd, 0xe2, 0xdf, 0xfe, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0xad, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0xe2, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xfe, 0xe8, 0xe3, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff", "numLines": 10, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Please connect this system\u0147to another GameBoy Advance\u0147in Multiboot mode with a\u0147GameBoy Advance Link\u0147Cable.\u0147\u0147Then, press the A button\u0147to begin sending Pok\u00e9\u0147Transporter GB to the\u0147second GameBoy Advance.\u019e"}, "send_multiboot_wait": {"bytes": "0xcd, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0xfe, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0xfe, 0xeb, 0xd5, 0xdd, 0xe8, 0xad, 0xfe, 0xfe, 0xc2, 0xe3, 0xe0, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbc, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xad, 0xff", "numLines": 7, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Sending Pok\u00e9 Transporter\u0147GB to second GameBoy\u0147Advance system. Please\u0147wait.\u0147\u0147Hold the B Button to\u0147cancel.\u019e"}, "send_multiboot_success": {"bytes": "0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xab, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xd5, 0xed, 0xfe, 0xe2, 0xe3, 0xeb, 0x0, 0xe4, 0xe3, 0xeb, 0xd9, 0xe6, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xad, 0xff", "numLines": 7, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "\u0147Pok\u00e9 Transporter GB was\u0147sent successfully! You may\u0147now power off this GameBoy\u0147Advance system.\u019e"}, "send_multiboot_failure": {"bytes": "0xfe, 0xbb, 0xe2, 0x0, 0xd9, 0xe6, 0xe6, 0xe3, 0xe6, 0x0, 0xe3, 0xd7, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0xfe, 0xc1, 0xbc, 0xad, 0x0, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xe6, 0xe9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xfe, 0xe7, 0xd7, 0xe6, 0xd9, 0xd9, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xad, 0xff", "numLines": 7, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "\u0147An error occurred while\u0147sending Pok\u00e9 Transporter\u0147GB. Press the A button to\u0147return to the instructions\u0147screen and try again.\u019e"}, "kanto_name": {"bytes": "0xc5, 0xbb, 0xc8, 0xce, 0xc9, 0xf0, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "KANTO:\u019e"}, "johto_name": {"bytes": "0xc4, 0xc9, 0xc2, 0xce, 0xc9, 0xf0, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "JOHTO:\u019e"}}, "CREDITS": {"credits_page_1": {"bytes": "0xc6, 0xd9, 0xd5, 0xd8, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xf0, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Lead developer:\u0147\u0147The Gears of Progress\u019e"}, "credits_page_2": {"bytes": "0xc6, 0xe3, 0xdb, 0xe3, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xe3, 0xae, 0xdd, 0xd8, 0xd9, 0xd5, 0xe8, 0xe3, 0xe6, 0xf0, 0xfe, 0xfe, 0xae, 0xc4, 0xe3, 0xe1, 0xd9, 0xfe, 0xfe, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xeb, 0xe3, 0xe6, 0xdf, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xc4, 0x0, 0xbc, 0xdd, 0xe6, 0xd8, 0xe1, 0xd5, 0xe2, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Logo and co-ideator:\u0147\u0147-Jome\u0147\u0147Spritework:\u0147\u0147-LJ Birdman\u019e"}, "credits_page_3": {"bytes": "0xc3, 0xd7, 0xe3, 0xe2, 0x0, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xe9, 0xdd, 0xdb, 0xdd, 0xce, 0xc5, 0xc9, 0xfe, 0xae, 0xc1, 0xe9, 0xdd, 0xbb, 0xd6, 0xd9, 0xe0, 0xfe, 0xae, 0xcd, 0xe3, 0xe9, 0xe6, 0xbb, 0xe4, 0xe4, 0xe0, 0xd9, 0xfe, 0x2d, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd5, 0xe6, 0xe8, 0xdd, 0xe7, 0xe8, 0xe7, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xcd, 0xdc, 0xe3, 0xeb, 0xd8, 0xe3, 0xeb, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0x0, 0xbd, 0xe0, 0xd9, 0xd5, 0xe6, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Icon Sprites:\u0147\u0147-LuigiTKO\u0147-GuiAbel\u0147-SourApple\u0147& the artists from Pok\u00e9mon\u0147Showdown and Crystal Clear\u019e"}, "credits_page_4": {"bytes": "0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xe6, 0xd6, 0xdd, 0xe8, 0xe6, 0xd5, 0xe6, 0xed, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0xfe, 0xbf, 0xec, 0xd9, 0xd7, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xce, 0xdd, 0xe1, 0xe3, 0xd0, 0xc7, 0xfe, 0xfe, 0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0xfe, 0xda, 0xe9, 0xe2, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xf0, 0x0, 0xfb, 0xe6, 0xdd, 0xe7, 0xdd, 0xe2, 0xdb, 0xca, 0xdc, 0xdd, 0xe0, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Remote and Arbitrary Code\u0147Execution assistance:\u0147\u0147-TimoVM\u0147\u0147Remote Multiboot\u0147functionality: \u023crisingPhil\u019e"}, "credits_page_5": {"bytes": "0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xe6, 0xdd, 0xe0, 0xd9, 0xed, 0xdf, 0xa7, 0xa5, 0xfe, 0xae, 0xcd, 0xdc, 0xd5, 0xe3, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Development assistance:\u0147\u0147-im a blisy\u0147-rileyk64\u0147-Shao\u019e"}, "credits_page_6": {"bytes": "0xcd, 0xe4, 0xd5, 0xd7, 0xd9, 0x0, 0xc9, 0xe4, 0xe8, 0xdd, 0xe1, 0xdd, 0xee, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xf0, 0xfe, 0xfe, 0xae, 0xd9, 0xd5, 0xe7, 0xed, 0xd5, 0xe7, 0xe4, 0xdd, 0xa4, 0xa2, 0xa5, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Space Optimization:\u0147\u0147-easyaspi314\u019e"}, "credits_page_7": {"bytes": "0xbc, 0xe9, 0xdd, 0xe0, 0xe8, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xbe, 0xd9, 0xea, 0xdf, 0xdd, 0xe8, 0xca, 0xe6, 0xe3, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xce, 0xe3, 0xe2, 0xd7, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xc1, 0xbc, 0xbb, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Built using:\u0147\u0147\u0147-DevkitPro\u0147-LibTonc\u0147-LibGBA\u019e"}, "credits_page_8": {"bytes": "0xc3, 0xe2, 0xe7, 0xe4, 0xdd, 0xe6, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xe7, 0x0, 0xe3, 0xda, 0xf0, 0xfe, 0xfe, 0xae, 0xc1, 0xe3, 0xe4, 0xe4, 0xdd, 0xd9, 0xe6, 0xfe, 0xae, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xcc, 0xbf, 0xce, 0xc3, 0xcc, 0xbf, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Inspired by the works of:\u0147\u0147-Goppier\u0147-Lorenzooone\u0147-im a blisy\u0147-RETIRE\u019e"}, "credits_page_9": {"bytes": "0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xe7, 0x0, 0xe9, 0xe7, 0xd9, 0xd8, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xae, 0xca, 0xc5, 0xc2, 0xd9, 0xd2, 0xfe, 0xae, 0xd1, 0xbd, 0xa4, 0xce, 0xe3, 0xe3, 0xe0, 0xfe, 0xae, 0xcf, 0xe7, 0xd9, 0xe2, 0xe8, 0xdd, 0xfe, 0xae, 0xcd, 0xd5, 0xe4, 0xe4, 0xed, 0xc7, 0xdd, 0xd8, 0xce, 0xe3, 0xbb, 0xc1, 0xbc, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Programs used:\u0147\u0147\u0147-HexManiacAdvance\u0147-PKHeX\u0147-WC3Tool\u0147-Usenti\u0147-SappyMidToAGB\u019e"}, "credits_page_10": {"bytes": "0xc9, 0xe4, 0xd9, 0xe2, 0x0, 0xcd, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xc6, 0xdd, 0xd6, 0xe6, 0xd5, 0xe6, 0xdd, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xe0, 0xdd, 0xd6, 0xe8, 0xe3, 0xe2, 0xd7, 0xae, 0xd9, 0xec, 0xd5, 0xe1, 0xe4, 0xe0, 0xd9, 0xe7, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0xae, 0xdb, 0xd6, 0xd5, 0xae, 0xe0, 0xdd, 0xe2, 0xdf, 0xae, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xae, 0xd5, 0xeb, 0xd9, 0xe7, 0xe3, 0xe1, 0xd9, 0xae, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0xae, 0xd5, 0xe6, 0xd8, 0xe9, 0xdd, 0xe2, 0xe3, 0xae, 0xe4, 0xe3, 0xdf, 0xd9, 0xae, 0xdb, 0xd9, 0xe2, 0xa3, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Open Source Code and\u0147Libraries:\u0147\u0147-libtonc-examples\u0147-PokemonGen3toGenX\u0147-gba-link-connection\u0147-awesome-gbadev\u0147-arduino-poke-gen2\u019e"}, "credits_page_11": {"bytes": "0xcc, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xd5, 0xe6, 0xe1, 0xae, 0xd8, 0xe3, 0xd7, 0xe7, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0xfe, 0xc0, 0xe9, 0xe0, 0xe0, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xe7, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe3, 0xe9, 0xe2, 0xd8, 0x0, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xb4, 0xe7, 0x0, 0xc1, 0xdd, 0xe8, 0xc2, 0xe9, 0xd6, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Research resources:\u0147\u0147-arm-docs\u0147-PokemonGen3toGenX\u0147\u0147Full links can be found on\u0147this program\u2019s GitHub\u019e"}, "credits_page_12": {"bytes": "0xcc, 0xc9, 0xc7, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xd8, 0xd9, 0xd7, 0xe3, 0xe1, 0xe4, 0xdd, 0xe0, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0x0, 0xd7, 0xe6, 0xd9, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xcc, 0xbf, 0xce, 0x0, 0xe8, 0xd9, 0xd5, 0xe1, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "ROM data obtained from\u0147decompilations created by\u0147the PRET team\u019e"}, "credits_page_13": {"bytes": "0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0xf0, 0xfe, 0xfe, 0xae, 0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe4, 0xd9, 0xd8, 0xdd, 0xd5, 0xfe, 0xae, 0xcd, 0xd9, 0xe6, 0xd9, 0xd6, 0xdd, 0xdd, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xbb, 0xca, 0xc3, 0xad, 0xd7, 0xe3, 0xe1, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Pok\u00e9mon data obtained\u0147from:\u0147\u0147-Bulbapedia\u0147-Serebii\u0147-PokeAPI.com\u019e"}, "credits_page_14": {"bytes": "0xbe, 0xdd, 0xe7, 0xd7, 0xe3, 0xe6, 0xd8, 0x0, 0xd7, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xe8, 0xed, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0x0, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0xfe, 0xae, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0xae, 0xe4, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Discord community\u0147assistance:\u0147\u0147-Hex Maniac Advance\u0147Development\u0147-gbadev\u0147-pret\u019e"}, "credits_page_15": {"bytes": "0xd1, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc7, 0xd5, 0xd8, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Writing assistance:\u0147\u0147\u0147-Mad\u019e"}, "credits_page_16": {"bytes": "0xbb, 0xe2, 0x0, 0xdd, 0xe1, 0xe1, 0xd9, 0xe2, 0xe7, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0x2d, 0xfe, 0xeb, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe1, 0xb8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xe3, 0xe9, 0xe0, 0xd8, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0xad, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "An immense thanks to\u0147Lorenzooone for their\u0147assistance in reading &\u0147writing save data. Without\u0147them, this project would\u0147not have been possible.\u019e"}, "credits_page_17": {"bytes": "0xcd, 0xe4, 0xd9, 0xd7, 0xdd, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xbf, 0xe2, 0xe2, 0xb8, 0xfe, 0xe6, 0xe3, 0xdf, 0xe9, 0xb8, 0x0, 0xcd, 0xe0, 0xd9, 0xd9, 0xe4, 0xed, 0xb8, 0x0, 0xbf, 0xee, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xe6, 0xd5, 0xdc, 0xe8, 0xe3, 0xe2, 0xdd, 0xe2, 0xb8, 0x0, 0xbc, 0xd5, 0xe7, 0xd5, 0xd6, 0xdd, 0xb8, 0x0, 0xc7, 0xd5, 0xd8, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe3, 0xe2, 0xd9, 0x0, 0xeb, 0xdc, 0xe3, 0x0, 0xdc, 0xd5, 0xe7, 0xfe, 0xe0, 0xdd, 0xe7, 0xe8, 0xd9, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xd5, 0xd6, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe1, 0xe3, 0xe2, 0xe8, 0xdc, 0xe7, 0xab, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Special thanks to Enn,\u0147roku, Sleepy, Eza,\u0147sarahtonin, Basabi, Mad,\u0147and everyone who has\u0147listened to me talk about\u0147this for months!\u019e"}, "credits_page_18": {"bytes": "0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0xfe, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xe6, 0xd9, 0xe0, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xd7, 0xe3, 0xe4, 0xed, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0xfe, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xad, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0xfe, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0x0, 0xc3, 0xe2, 0xd7, 0xad, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "All Pok\u00e9mon names,\u0147sprites, and names of\u0147related resources are\u0147copyright Nintendo,\u0147Creatures Inc., and GAME\u0147FREAK Inc.\u019e"}, "credits_page_19": {"bytes": "0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0xfe, 0xd9, 0xe2, 0xd8, 0xe3, 0xe6, 0xe7, 0xd9, 0xd8, 0x0, 0xe3, 0xe6, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xc0, 0xe6, 0xd9, 0xd5, 0xdf, 0xba, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "This project is not\u0147endorsed or supported by\u0147GameFreak/Nintendo.\u0147\u0147Please support the\u0147original developers.\u019e"}}, "PKMN_NAMES": {"0": {"bytes": "0xc7, 0xdd, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0xc8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "MissingNo\u019e"}, "1": {"bytes": "0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bulbasaur\u019e"}, "2": {"bytes": "0xc3, 0xea, 0xed, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ivysaur\u019e"}, "3": {"bytes": "0xd0, 0xd9, 0xe2, 0xe9, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venusaur\u019e"}, "4": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xe1, 0xd5, 0xe2, 0xd8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charmander\u019e"}, "5": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xe1, 0xd9, 0xe0, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charmeleon\u019e"}, "6": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xdd, 0xee, 0xd5, 0xe6, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charizard\u019e"}, "7": {"bytes": "0xcd, 0xe5, 0xe9, 0xdd, 0xe6, 0xe8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Squirtle\u019e"}, "8": {"bytes": "0xd1, 0xd5, 0xe6, 0xe8, 0xe3, 0xe6, 0xe8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wartortle\u019e"}, "9": {"bytes": "0xbc, 0xe0, 0xd5, 0xe7, 0xe8, 0xe3, 0xdd, 0xe7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Blastoise\u019e"}, "10": {"bytes": "0xbd, 0xd5, 0xe8, 0xd9, 0xe6, 0xe4, 0xdd, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Caterpie\u019e"}, "11": {"bytes": "0xc7, 0xd9, 0xe8, 0xd5, 0xe4, 0xe3, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Metapod\u019e"}, "12": {"bytes": "0xbc, 0xe9, 0xe8, 0xe8, 0xd9, 0xe6, 0xda, 0xe6, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Butterfree\u019e"}, "13": {"bytes": "0xd1, 0xd9, 0xd9, 0xd8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weedle\u019e"}, "14": {"bytes": "0xc5, 0xd5, 0xdf, 0xe9, 0xe2, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kakuna\u019e"}, "15": {"bytes": "0xbc, 0xd9, 0xd9, 0xd8, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Beedrill\u019e"}, "16": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgey\u019e"}, "17": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xe3, 0xe8, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgeotto\u019e"}, "18": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xe3, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgeot\u019e"}, "19": {"bytes": "0xcc, 0xd5, 0xe8, 0xe8, 0xd5, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rattata\u019e"}, "20": {"bytes": "0xcc, 0xd5, 0xe8, 0xdd, 0xd7, 0xd5, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raticate\u019e"}, "21": {"bytes": "0xcd, 0xe4, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Spearow\u019e"}, "22": {"bytes": "0xc0, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Fearow\u019e"}, "23": {"bytes": "0xbf, 0xdf, 0xd5, 0xe2, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ekans\u019e"}, "24": {"bytes": "0xbb, 0xe6, 0xd6, 0xe3, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Arbok\u019e"}, "25": {"bytes": "0xca, 0xdd, 0xdf, 0xd5, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pikachu\u019e"}, "26": {"bytes": "0xcc, 0xd5, 0xdd, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raichu\u019e"}, "27": {"bytes": "0xcd, 0xd5, 0xe2, 0xd8, 0xe7, 0xdc, 0xe6, 0xd9, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sandshrew\u019e"}, "28": {"bytes": "0xcd, 0xd5, 0xe2, 0xd8, 0xe7, 0xe0, 0xd5, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sandslash\u019e"}, "29": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xd5, 0xe2, 0xb6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoran\u2640\u019e"}, "30": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xdd, 0xe2, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidorina\u019e"}, "31": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe5, 0xe9, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoqueen\u019e"}, "32": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xd5, 0xe2, 0xb5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoran\u2642\u019e"}, "33": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xdd, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidorino\u019e"}, "34": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoking\u019e"}, "35": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xd5, 0xdd, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Clefairy\u019e"}, "36": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xd5, 0xd6, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Clefable\u019e"}, "37": {"bytes": "0xd0, 0xe9, 0xe0, 0xe4, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vulpix\u019e"}, "38": {"bytes": "0xc8, 0xdd, 0xe2, 0xd9, 0xe8, 0xd5, 0xe0, 0xd9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ninetales\u019e"}, "39": {"bytes": "0xc4, 0xdd, 0xdb, 0xdb, 0xe0, 0xed, 0xe4, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jigglypuff\u019e"}, "40": {"bytes": "0xd1, 0xdd, 0xdb, 0xdb, 0xe0, 0xed, 0xe8, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wigglytuff\u019e"}, "41": {"bytes": "0xd4, 0xe9, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Zubat\u019e"}, "42": {"bytes": "0xc1, 0xe3, 0xe0, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golbat\u019e"}, "43": {"bytes": "0xc9, 0xd8, 0xd8, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Oddish\u019e"}, "44": {"bytes": "0xc1, 0xe0, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gloom\u019e"}, "45": {"bytes": "0xd0, 0xdd, 0xe0, 0xd9, 0xe4, 0xe0, 0xe9, 0xe1, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vileplume\u019e"}, "46": {"bytes": "0xca, 0xd5, 0xe6, 0xd5, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Paras\u019e"}, "47": {"bytes": "0xca, 0xd5, 0xe6, 0xd5, 0xe7, 0xd9, 0xd7, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Parasect\u019e"}, "48": {"bytes": "0xd0, 0xd9, 0xe2, 0xe3, 0xe2, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venonat\u019e"}, "49": {"bytes": "0xd0, 0xd9, 0xe2, 0xe3, 0xe1, 0xe3, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venomoth\u019e"}, "50": {"bytes": "0xbe, 0xdd, 0xdb, 0xe0, 0xd9, 0xe8, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Diglett\u019e"}, "51": {"bytes": "0xbe, 0xe9, 0xdb, 0xe8, 0xe6, 0xdd, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dugtrio\u019e"}, "52": {"bytes": "0xc7, 0xd9, 0xe3, 0xeb, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Meowth\u019e"}, "53": {"bytes": "0xca, 0xd9, 0xe6, 0xe7, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Persian\u019e"}, "54": {"bytes": "0xca, 0xe7, 0xed, 0xd8, 0xe9, 0xd7, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Psyduck\u019e"}, "55": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xe9, 0xd7, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golduck\u019e"}, "56": {"bytes": "0xc7, 0xd5, 0xe2, 0xdf, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mankey\u019e"}, "57": {"bytes": "0xca, 0xe6, 0xdd, 0xe1, 0xd9, 0xd5, 0xe4, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Primeape\u019e"}, "58": {"bytes": "0xc1, 0xe6, 0xe3, 0xeb, 0xe0, 0xdd, 0xe8, 0xdc, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Growlithe\u019e"}, "59": {"bytes": "0xbb, 0xe6, 0xd7, 0xd5, 0xe2, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Arcanine\u019e"}, "60": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xd5, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwag\u019e"}, "61": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xdc, 0xdd, 0xe6, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwhirl\u019e"}, "62": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xe6, 0xd5, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwrath\u019e"}, "63": {"bytes": "0xbb, 0xd6, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Abra\u019e"}, "64": {"bytes": "0xc5, 0xd5, 0xd8, 0xd5, 0xd6, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kadabra\u019e"}, "65": {"bytes": "0xbb, 0xe0, 0xd5, 0xdf, 0xd5, 0xee, 0xd5, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Alakazam\u019e"}, "66": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machop\u019e"}, "67": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xdf, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machoke\u019e"}, "68": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xd5, 0xe1, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machamp\u019e"}, "69": {"bytes": "0xbc, 0xd9, 0xe0, 0xe0, 0xe7, 0xe4, 0xe6, 0xe3, 0xe9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bellsprout\u019e"}, "70": {"bytes": "0xd1, 0xd9, 0xd9, 0xe4, 0xdd, 0xe2, 0xd6, 0xd9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weepinbell\u019e"}, "71": {"bytes": "0xd0, 0xdd, 0xd7, 0xe8, 0xe6, 0xd9, 0xd9, 0xd6, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Victreebel\u019e"}, "72": {"bytes": "0xce, 0xd9, 0xe2, 0xe8, 0xd5, 0xd7, 0xe3, 0xe3, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tentacool\u019e"}, "73": {"bytes": "0xce, 0xd9, 0xe2, 0xe8, 0xd5, 0xd7, 0xe6, 0xe9, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tentacruel\u019e"}, "74": {"bytes": "0xc1, 0xd9, 0xe3, 0xd8, 0xe9, 0xd8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Geodude\u019e"}, "75": {"bytes": "0xc1, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Graveler\u019e"}, "76": {"bytes": "0xc1, 0xe3, 0xe0, 0xd9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golem\u019e"}, "77": {"bytes": "0xca, 0xe3, 0xe2, 0xed, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ponyta\u019e"}, "78": {"bytes": "0xcc, 0xd5, 0xe4, 0xdd, 0xd8, 0xd5, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rapidash\u019e"}, "79": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xe4, 0xe3, 0xdf, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowpoke\u019e"}, "80": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xd6, 0xe6, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowbro\u019e"}, "81": {"bytes": "0xc7, 0xd5, 0xdb, 0xe2, 0xd9, 0xe1, 0xdd, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magnemite\u019e"}, "82": {"bytes": "0xc7, 0xd5, 0xdb, 0xe2, 0xd9, 0xe8, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magneton\u019e"}, "83": {"bytes": "0xc0, 0xd5, 0xe6, 0xda, 0xd9, 0xe8, 0xd7, 0xdc, 0xb4, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Farfetch\u2019d\u019e"}, "84": {"bytes": "0xbe, 0xe3, 0xd8, 0xe9, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Doduo\u019e"}, "85": {"bytes": "0xbe, 0xe3, 0xd8, 0xe6, 0xdd, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dodrio\u019e"}, "86": {"bytes": "0xcd, 0xd9, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seel\u019e"}, "87": {"bytes": "0xbe, 0xd9, 0xeb, 0xdb, 0xe3, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dewgong\u019e"}, "88": {"bytes": "0xc1, 0xe6, 0xdd, 0xe1, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Grimer\u019e"}, "89": {"bytes": "0xc7, 0xe9, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Muk\u019e"}, "90": {"bytes": "0xcd, 0xdc, 0xd9, 0xe0, 0xe0, 0xd8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Shellder\u019e"}, "91": {"bytes": "0xbd, 0xe0, 0xe3, 0xed, 0xe7, 0xe8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cloyster\u019e"}, "92": {"bytes": "0xc1, 0xd5, 0xe7, 0xe8, 0xe0, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gastly\u019e"}, "93": {"bytes": "0xc2, 0xd5, 0xe9, 0xe2, 0xe8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Haunter\u019e"}, "94": {"bytes": "0xc1, 0xd9, 0xe2, 0xdb, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gengar\u019e"}, "95": {"bytes": "0xc9, 0xe2, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Onix\u019e"}, "96": {"bytes": "0xbe, 0xe6, 0xe3, 0xeb, 0xee, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Drowzee\u019e"}, "97": {"bytes": "0xc2, 0xed, 0xe4, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hypno\u019e"}, "98": {"bytes": "0xc5, 0xe6, 0xd5, 0xd6, 0xd6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Krabby\u019e"}, "99": {"bytes": "0xc5, 0xdd, 0xe2, 0xdb, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kingler\u019e"}, "100": {"bytes": "0xd0, 0xe3, 0xe0, 0xe8, 0xe3, 0xe6, 0xd6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Voltorb\u019e"}, "101": {"bytes": "0xbf, 0xe0, 0xd9, 0xd7, 0xe8, 0xe6, 0xe3, 0xd8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Electrode\u019e"}, "102": {"bytes": "0xbf, 0xec, 0xd9, 0xdb, 0xdb, 0xd7, 0xe9, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Exeggcute\u019e"}, "103": {"bytes": "0xbf, 0xec, 0xd9, 0xdb, 0xdb, 0xe9, 0xe8, 0xe3, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Exeggutor\u019e"}, "104": {"bytes": "0xbd, 0xe9, 0xd6, 0xe3, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cubone\u019e"}, "105": {"bytes": "0xc7, 0xd5, 0xe6, 0xe3, 0xeb, 0xd5, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Marowak\u019e"}, "106": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xe0, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmonlee\u019e"}, "107": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xd7, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmonchan\u019e"}, "108": {"bytes": "0xc6, 0xdd, 0xd7, 0xdf, 0xdd, 0xe8, 0xe9, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lickitung\u019e"}, "109": {"bytes": "0xc5, 0xe3, 0xda, 0xda, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Koffing\u019e"}, "110": {"bytes": "0xd1, 0xd9, 0xd9, 0xee, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weezing\u019e"}, "111": {"bytes": "0xcc, 0xdc, 0xed, 0xdc, 0xe3, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rhyhorn\u019e"}, "112": {"bytes": "0xcc, 0xdc, 0xed, 0xd8, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rhydon\u019e"}, "113": {"bytes": "0xbd, 0xdc, 0xd5, 0xe2, 0xe7, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chansey\u019e"}, "114": {"bytes": "0xce, 0xd5, 0xe2, 0xdb, 0xd9, 0xe0, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tangela\u019e"}, "115": {"bytes": "0xc5, 0xd5, 0xe2, 0xdb, 0xd5, 0xe7, 0xdf, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kangaskhan\u019e"}, "116": {"bytes": "0xc2, 0xe3, 0xe6, 0xe7, 0xd9, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Horsea\u019e"}, "117": {"bytes": "0xcd, 0xd9, 0xd5, 0xd8, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seadra\u019e"}, "118": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Goldeen\u019e"}, "119": {"bytes": "0xcd, 0xd9, 0xd5, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seaking\u019e"}, "120": {"bytes": "0xcd, 0xe8, 0xd5, 0xe6, 0xed, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Staryu\u019e"}, "121": {"bytes": "0xcd, 0xe8, 0xd5, 0xe6, 0xe1, 0xdd, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Starmie\u019e"}, "122": {"bytes": "0xc7, 0xe6, 0xad, 0x0, 0xc7, 0xdd, 0xe1, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mr. Mime\u019e"}, "123": {"bytes": "0xcd, 0xd7, 0xed, 0xe8, 0xdc, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Scyther\u019e"}, "124": {"bytes": "0xc4, 0xed, 0xe2, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jynx\u019e"}, "125": {"bytes": "0xbf, 0xe0, 0xd9, 0xd7, 0xe8, 0xd5, 0xd6, 0xe9, 0xee, 0xee, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Electabuzz\u019e"}, "126": {"bytes": "0xc7, 0xd5, 0xdb, 0xe1, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magmar\u019e"}, "127": {"bytes": "0xca, 0xdd, 0xe2, 0xe7, 0xdd, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pinsir\u019e"}, "128": {"bytes": "0xce, 0xd5, 0xe9, 0xe6, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tauros\u019e"}, "129": {"bytes": "0xc7, 0xd5, 0xdb, 0xdd, 0xdf, 0xd5, 0xe6, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magikarp\u019e"}, "130": {"bytes": "0xc1, 0xed, 0xd5, 0xe6, 0xd5, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gyarados\u019e"}, "131": {"bytes": "0xc6, 0xd5, 0xe4, 0xe6, 0xd5, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lapras\u019e"}, "132": {"bytes": "0xbe, 0xdd, 0xe8, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ditto\u019e"}, "133": {"bytes": "0xbf, 0xd9, 0xea, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Eevee\u019e"}, "134": {"bytes": "0xd0, 0xd5, 0xe4, 0xe3, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vaporeon\u019e"}, "135": {"bytes": "0xc4, 0xe3, 0xe0, 0xe8, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jolteon\u019e"}, "136": {"bytes": "0xc0, 0xe0, 0xd5, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Flareon\u019e"}, "137": {"bytes": "0xca, 0xe3, 0xe6, 0xed, 0xdb, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Porygon\u019e"}, "138": {"bytes": "0xc9, 0xe1, 0xd5, 0xe2, 0xed, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Omanyte\u019e"}, "139": {"bytes": "0xc9, 0xe1, 0xd5, 0xe7, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Omastar\u019e"}, "140": {"bytes": "0xc5, 0xd5, 0xd6, 0xe9, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kabuto\u019e"}, "141": {"bytes": "0xc5, 0xd5, 0xd6, 0xe9, 0xe8, 0xe3, 0xe4, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kabutops\u019e"}, "142": {"bytes": "0xbb, 0xd9, 0xe6, 0xe3, 0xd8, 0xd5, 0xd7, 0xe8, 0xed, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Aerodactyl\u019e"}, "143": {"bytes": "0xcd, 0xe2, 0xe3, 0xe6, 0xe0, 0xd5, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Snorlax\u019e"}, "144": {"bytes": "0xbb, 0xe6, 0xe8, 0xdd, 0xd7, 0xe9, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Articuno\u019e"}, "145": {"bytes": "0xd4, 0xd5, 0xe4, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Zapdos\u019e"}, "146": {"bytes": "0xc7, 0xe3, 0xe0, 0xe8, 0xe6, 0xd9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Moltres\u019e"}, "147": {"bytes": "0xbe, 0xe6, 0xd5, 0xe8, 0xdd, 0xe2, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dratini\u019e"}, "148": {"bytes": "0xbe, 0xe6, 0xd5, 0xdb, 0xe3, 0xe2, 0xd5, 0xdd, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dragonair\u019e"}, "149": {"bytes": "0xbe, 0xe6, 0xd5, 0xdb, 0xe3, 0xe2, 0xdd, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dragonite\u019e"}, "150": {"bytes": "0xc7, 0xd9, 0xeb, 0xe8, 0xeb, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mewtwo\u019e"}, "151": {"bytes": "0xc7, 0xd9, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mew\u019e"}, "152": {"bytes": "0xbd, 0xdc, 0xdd, 0xdf, 0xe3, 0xe6, 0xdd, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chikorita\u019e"}, "153": {"bytes": "0xbc, 0xd5, 0xed, 0xe0, 0xd9, 0xd9, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bayleef\u019e"}, "154": {"bytes": "0xc7, 0xd9, 0xdb, 0xd5, 0xe2, 0xdd, 0xe9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Meganium\u019e"}, "155": {"bytes": "0xbd, 0xed, 0xe2, 0xd8, 0xd5, 0xe5, 0xe9, 0xdd, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cyndaquil\u019e"}, "156": {"bytes": "0xcb, 0xe9, 0xdd, 0xe0, 0xd5, 0xea, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Quilava\u019e"}, "157": {"bytes": "0xce, 0xed, 0xe4, 0xdc, 0xe0, 0xe3, 0xe7, 0xdd, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Typhlosion\u019e"}, "158": {"bytes": "0xce, 0xe3, 0xe8, 0xe3, 0xd8, 0xdd, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Totodile\u019e"}, "159": {"bytes": "0xbd, 0xe6, 0xe3, 0xd7, 0xe3, 0xe2, 0xd5, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Croconaw\u019e"}, "160": {"bytes": "0xc0, 0xd9, 0xe6, 0xd5, 0xe0, 0xdd, 0xdb, 0xd5, 0xe8, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Feraligatr\u019e"}, "161": {"bytes": "0xcd, 0xd9, 0xe2, 0xe8, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sentret\u019e"}, "162": {"bytes": "0xc0, 0xe9, 0xe6, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Furret\u019e"}, "163": {"bytes": "0xc2, 0xe3, 0xe3, 0xe8, 0xdc, 0xe3, 0xe3, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hoothoot\u019e"}, "164": {"bytes": "0xc8, 0xe3, 0xd7, 0xe8, 0xe3, 0xeb, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Noctowl\u019e"}, "165": {"bytes": "0xc6, 0xd9, 0xd8, 0xed, 0xd6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ledyba\u019e"}, "166": {"bytes": "0xc6, 0xd9, 0xd8, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ledian\u019e"}, "167": {"bytes": "0xcd, 0xe4, 0xdd, 0xe2, 0xd5, 0xe6, 0xd5, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Spinarak\u019e"}, "168": {"bytes": "0xbb, 0xe6, 0xdd, 0xd5, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ariados\u019e"}, "169": {"bytes": "0xbd, 0xe6, 0xe3, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Crobat\u019e"}, "170": {"bytes": "0xbd, 0xdc, 0xdd, 0xe2, 0xd7, 0xdc, 0xe3, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chinchou\u019e"}, "171": {"bytes": "0xc6, 0xd5, 0xe2, 0xe8, 0xe9, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lanturn\u019e"}, "172": {"bytes": "0xca, 0xdd, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pichu\u019e"}, "173": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xda, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cleffa\u019e"}, "174": {"bytes": "0xc3, 0xdb, 0xdb, 0xe0, 0xed, 0xd6, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Igglybuff\u019e"}, "175": {"bytes": "0xce, 0xe3, 0xdb, 0xd9, 0xe4, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Togepi\u019e"}, "176": {"bytes": "0xce, 0xe3, 0xdb, 0xd9, 0xe8, 0xdd, 0xd7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Togetic\u019e"}, "177": {"bytes": "0xc8, 0xd5, 0xe8, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Natu\u019e"}, "178": {"bytes": "0xd2, 0xd5, 0xe8, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Xatu\u019e"}, "179": {"bytes": "0xc7, 0xd5, 0xe6, 0xd9, 0xd9, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mareep\u019e"}, "180": {"bytes": "0xc0, 0xe0, 0xd5, 0xd5, 0xda, 0xda, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Flaaffy\u019e"}, "181": {"bytes": "0xbb, 0xe1, 0xe4, 0xdc, 0xd5, 0xe6, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ampharos\u019e"}, "182": {"bytes": "0xbc, 0xd9, 0xe0, 0xe0, 0xe3, 0xe7, 0xe7, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bellossom\u019e"}, "183": {"bytes": "0xc7, 0xd5, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Marill\u019e"}, "184": {"bytes": "0xbb, 0xee, 0xe9, 0xe1, 0xd5, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Azumarill\u019e"}, "185": {"bytes": "0xcd, 0xe9, 0xd8, 0xe3, 0xeb, 0xe3, 0xe3, 0xd8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sudowoodo\u019e"}, "186": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xe8, 0xe3, 0xd9, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Politoed\u019e"}, "187": {"bytes": "0xc2, 0xe3, 0xe4, 0xe4, 0xdd, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hoppip\u019e"}, "188": {"bytes": "0xcd, 0xdf, 0xdd, 0xe4, 0xe0, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Skiploom\u019e"}, "189": {"bytes": "0xc4, 0xe9, 0xe1, 0xe4, 0xe0, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jumpluff\u019e"}, "190": {"bytes": "0xbb, 0xdd, 0xe4, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Aipom\u019e"}, "191": {"bytes": "0xcd, 0xe9, 0xe2, 0xdf, 0xd9, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sunkern\u019e"}, "192": {"bytes": "0xcd, 0xe9, 0xe2, 0xda, 0xe0, 0xe3, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sunflora\u019e"}, "193": {"bytes": "0xd3, 0xd5, 0xe2, 0xe1, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Yanma\u019e"}, "194": {"bytes": "0xd1, 0xe3, 0xe3, 0xe4, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wooper\u019e"}, "195": {"bytes": "0xcb, 0xe9, 0xd5, 0xdb, 0xe7, 0xdd, 0xe6, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Quagsire\u019e"}, "196": {"bytes": "0xbf, 0xe7, 0xe4, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Espeon\u019e"}, "197": {"bytes": "0xcf, 0xe1, 0xd6, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Umbreon\u019e"}, "198": {"bytes": "0xc7, 0xe9, 0xe6, 0xdf, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Murkrow\u019e"}, "199": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowking\u019e"}, "200": {"bytes": "0xc7, 0xdd, 0xe7, 0xd8, 0xe6, 0xd9, 0xd5, 0xea, 0xe9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Misdreavus\u019e"}, "201": {"bytes": "0xcf, 0xe2, 0xe3, 0xeb, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Unown\u019e"}, "202": {"bytes": "0xd1, 0xe3, 0xd6, 0xd6, 0xe9, 0xda, 0xda, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wobbuffet\u019e"}, "203": {"bytes": "0xc1, 0xdd, 0xe6, 0xd5, 0xda, 0xd5, 0xe6, 0xdd, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Girafarig\u019e"}, "204": {"bytes": "0xca, 0xdd, 0xe2, 0xd9, 0xd7, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pineco\u019e"}, "205": {"bytes": "0xc0, 0xe3, 0xe6, 0xe6, 0xd9, 0xe8, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Forretress\u019e"}, "206": {"bytes": "0xbe, 0xe9, 0xe2, 0xe7, 0xe4, 0xd5, 0xe6, 0xd7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dunsparce\u019e"}, "207": {"bytes": "0xc1, 0xe0, 0xdd, 0xdb, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gligar\u019e"}, "208": {"bytes": "0xcd, 0xe8, 0xd9, 0xd9, 0xe0, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Steelix\u019e"}, "209": {"bytes": "0xcd, 0xe2, 0xe9, 0xd6, 0xd6, 0xe9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Snubbull\u019e"}, "210": {"bytes": "0xc1, 0xe6, 0xd5, 0xe2, 0xd6, 0xe9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Granbull\u019e"}, "211": {"bytes": "0xcb, 0xeb, 0xdd, 0xe0, 0xda, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Qwilfish\u019e"}, "212": {"bytes": "0xcd, 0xd7, 0xdd, 0xee, 0xe3, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Scizor\u019e"}, "213": {"bytes": "0xcd, 0xdc, 0xe9, 0xd7, 0xdf, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Shuckle\u019e"}, "214": {"bytes": "0xc2, 0xd9, 0xe6, 0xd5, 0xd7, 0xe6, 0xe3, 0xe7, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Heracross\u019e"}, "215": {"bytes": "0xcd, 0xe2, 0xd9, 0xd5, 0xe7, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sneasel\u019e"}, "216": {"bytes": "0xce, 0xd9, 0xd8, 0xd8, 0xdd, 0xe9, 0xe6, 0xe7, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Teddiursa\u019e"}, "217": {"bytes": "0xcf, 0xe6, 0xe7, 0xd5, 0xe6, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ursaring\u019e"}, "218": {"bytes": "0xcd, 0xe0, 0xe9, 0xdb, 0xe1, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slugma\u019e"}, "219": {"bytes": "0xc7, 0xd5, 0xdb, 0xd7, 0xd5, 0xe6, 0xdb, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magcargo\u019e"}, "220": {"bytes": "0xcd, 0xeb, 0xdd, 0xe2, 0xe9, 0xd6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Swinub\u019e"}, "221": {"bytes": "0xca, 0xdd, 0xe0, 0xe3, 0xe7, 0xeb, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Piloswine\u019e"}, "222": {"bytes": "0xbd, 0xe3, 0xe6, 0xe7, 0xe3, 0xe0, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Corsola\u019e"}, "223": {"bytes": "0xcc, 0xd9, 0xe1, 0xe3, 0xe6, 0xd5, 0xdd, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Remoraid\u019e"}, "224": {"bytes": "0xc9, 0xd7, 0xe8, 0xdd, 0xe0, 0xe0, 0xd9, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Octillery\u019e"}, "225": {"bytes": "0xbe, 0xd9, 0xe0, 0xdd, 0xd6, 0xdd, 0xe6, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Delibird\u019e"}, "226": {"bytes": "0xc7, 0xd5, 0xe2, 0xe8, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mantine\u019e"}, "227": {"bytes": "0xcd, 0xdf, 0xd5, 0xe6, 0xe1, 0xe3, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Skarmory\u019e"}, "228": {"bytes": "0xc2, 0xe3, 0xe9, 0xe2, 0xd8, 0xe3, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Houndour\u019e"}, "229": {"bytes": "0xc2, 0xe3, 0xe9, 0xe2, 0xd8, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Houndoom\u019e"}, "230": {"bytes": "0xc5, 0xdd, 0xe2, 0xdb, 0xd8, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kingdra\u019e"}, "231": {"bytes": "0xca, 0xdc, 0xd5, 0xe2, 0xe4, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Phanpy\u019e"}, "232": {"bytes": "0xbe, 0xe3, 0xe2, 0xe4, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Donphan\u019e"}, "233": {"bytes": "0xca, 0xe3, 0xe6, 0xed, 0xdb, 0xe3, 0xe2, 0xa3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Porygon2\u019e"}, "234": {"bytes": "0xcd, 0xe8, 0xd5, 0xe2, 0xe8, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Stantler\u019e"}, "235": {"bytes": "0xcd, 0xe1, 0xd9, 0xd5, 0xe6, 0xdb, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Smeargle\u019e"}, "236": {"bytes": "0xce, 0xed, 0xe6, 0xe3, 0xdb, 0xe9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tyrogue\u019e"}, "237": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xe8, 0xe3, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmontop\u019e"}, "238": {"bytes": "0xcd, 0xe1, 0xe3, 0xe3, 0xd7, 0xdc, 0xe9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Smoochum\u019e"}, "239": {"bytes": "0xbf, 0xe0, 0xd9, 0xdf, 0xdd, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Elekid\u019e"}, "240": {"bytes": "0xc7, 0xd5, 0xdb, 0xd6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magby\u019e"}, "241": {"bytes": "0xc7, 0xdd, 0xe0, 0xe8, 0xd5, 0xe2, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Miltank\u019e"}, "242": {"bytes": "0xbc, 0xe0, 0xdd, 0xe7, 0xe7, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Blissey\u019e"}, "243": {"bytes": "0xcc, 0xd5, 0xdd, 0xdf, 0xe3, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raikou\u019e"}, "244": {"bytes": "0xbf, 0xe2, 0xe8, 0xd9, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Entei\u019e"}, "245": {"bytes": "0xcd, 0xe9, 0xdd, 0xd7, 0xe9, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Suicune\u019e"}, "246": {"bytes": "0xc6, 0xd5, 0xe6, 0xea, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Larvitar\u019e"}, "247": {"bytes": "0xca, 0xe9, 0xe4, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pupitar\u019e"}, "248": {"bytes": "0xce, 0xed, 0xe6, 0xd5, 0xe2, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tyranitar\u019e"}, "249": {"bytes": "0xc6, 0xe9, 0xdb, 0xdd, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lugia\u019e"}, "250": {"bytes": "0xc2, 0xe3, 0xae, 0xc9, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ho-Oh\u019e"}, "251": {"bytes": "0xbd, 0xd9, 0xe0, 0xd9, 0xd6, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Celebi\u019e"}}, "Warnings": {"0": "Warning! ' found, replacing with \u2019 !", "1": "Warning! ' found, replacing with \u2019 !", "2": "Warning! ' found, replacing with \u2019 !", "3": "Warning! ' found, replacing with \u2019 !", "4": "Warning! ' found, replacing with \u2019 !", "5": "Warning! ' found, replacing with \u2019 !", "6": "Warning! ' found, replacing with \u2019 !", "7": "Warning! ' found, replacing with \u2019 !", "8": "Warning! ' found, replacing with \u2019 !", "9": "Warning! ' found, replacing with \u2019 !", "10": "Warning! ' found, replacing with \u2019 !", "11": "Warning! ' found, replacing with \u2019 !", "12": "Warning! ' found, replacing with \u2019 !", "13": "Warning! ' found, replacing with \u2019 !", "14": "Warning! ' found, replacing with \u2019 !", "15": "Warning! ' found, replacing with \u2019 !", "16": "Warning! ' found, replacing with \u2019 !", "17": "Warning! ' found, replacing with \u2019 !", "18": "Warning! ' found, replacing with \u2019 !", "19": "Warning! ' found, replacing with \u2019 !", "20": "Warning! ' found, replacing with \u2019 !", "21": "Warning! ' found, replacing with \u2019 !", "22": "Warning! ' found, replacing with \u2019 !", "23": "Warning! ' found, replacing with \u2019 !", "24": "Warning! ' found, replacing with \u2019 !", "25": "Warning! ' found, replacing with \u2019 !", "26": "Warning! ' found, replacing with \u2019 !", "27": "Warning! ' found, replacing with \u2019 !", "28": "Warning! ' found, replacing with \u2019 !", "29": "Warning! ' found, replacing with \u2019 !", "30": "Warning! ' found, replacing with \u2019 !", "31": "Warning! ' found, replacing with \u2019 !", "32": "Warning! ' found, replacing with \u2019 !", "33": "Warning! ' found, replacing with \u2019 !", "34": "Warning! ' found, replacing with \u2019 !", "35": "Warning! ' found, replacing with \u2019 !", "36": "Warning! ' found, replacing with \u2019 !", "37": "Warning! ' found, replacing with \u2019 !", "38": "Warning! ' found, replacing with \u2019 !", "39": "Warning! ' found, replacing with \u2019 !", "40": "Warning! ' found, replacing with \u2019 !", "41": "Warning! ' found, replacing with \u2019 !", "42": "Warning! ' found, replacing with \u2019 !", "43": "Warning! ' found, replacing with \u2019 !", "44": "Warning! ' found, replacing with \u2019 !", "45": "Warning! ' found, replacing with \u2019 !", "46": "Warning! ' found, replacing with \u2019 !", "47": "Warning! ' found, replacing with \u2019 !", "48": "Warning! ' found, replacing with \u2019 !", "49": "Warning! ' found, replacing with \u2019 !", "50": "Warning! ' found, replacing with \u2019 !", "51": "Warning! ' found, replacing with \u2019 !", "52": "Warning! ' found, replacing with \u2019 !", "53": "Warning! ' found, replacing with \u2019 !", "54": "Warning! ' found, replacing with \u2019 !"}, "Errors": {"0": "Error! No match found for char [ \" ]!", "1": "ERROR! Made a line break when disabled, sentence \"Remote and Arbitrary Code\u0147Execution assistance: \u0147\u0147-TimoVM \u0147\u0147Remote Multiboot\u0147functionality: \u023c\" is too long!"}}, "French": {"PTGB": {"DIA_OPEN": {"bytes": "0xc2, 0xd9, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xab, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xd9, 0xe2, 0xe2, 0xd9, 0xe0, 0xad, 0x0, 0xbb, 0xe7, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xd9, 0xb8, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xd5, 0x0, 0xe7, 0xd7, 0xdd, 0xd9, 0xe2, 0xe8, 0xdd, 0xe7, 0xe8, 0xad, 0x0, 0xc3, 0xe2, 0xfe, 0xda, 0xd5, 0xd7, 0xe8, 0xb8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xe9, 0xd6, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe7, 0xfe, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0xab, 0xfb, 0xc7, 0xed, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe0, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xea, 0xd5, 0xe6, 0xdd, 0xe3, 0xe9, 0xe7, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xdc, 0xd5, 0xd8, 0xfe, 0xd5, 0xe2, 0xed, 0x0, 0xd6, 0xe6, 0xd9, 0xd5, 0xdf, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0xe7, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xad, 0xad, 0xfb, 0xcd, 0xe3, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0xb4, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xdd, 0xe2, 0xdb, 0xfe, 0xe3, 0xe2, 0x0, 0xd5, 0x0, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0xfe, 0xe3, 0xe0, 0xd8, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0xab, 0xfb, 0xc3, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xdc, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0xb8, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xb4, 0xe7, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xdd, 0xe2, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd9, 0xed, 0x0, 0xe1, 0xd9, 0xd9, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0xab, 0xfb, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xda, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe1, 0xed, 0x0, 0xdb, 0xe3, 0xd5, 0xe0, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xd8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xd5, 0xe1, 0xd9, 0xae, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb4, 0xe7, 0xfe, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xfb, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xe2, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe9, 0xe8, 0xfe, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xe7, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xa3, 0xa6, 0xa1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xd7, 0xd5, 0xe8, 0xd5, 0xe0, 0xe3, 0xdb, 0xe9, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xbe, 0xd9, 0xec, 0xae, 0x0, 0xe3, 0xe6, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe6, 0xe8, 0xad, 0xfb, 0xbc, 0xe9, 0xe8, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xae, 0xfe, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xe6, 0xd9, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xd5, 0xe0, 0xe0, 0xab, 0xfb, 0xc9, 0xe2, 0xd9, 0x0, 0xe0, 0xd5, 0xe7, 0xe8, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0xb8, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0xae, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdb, 0xe3, 0xd9, 0xe7, 0x0, 0xeb, 0xe6, 0xe3, 0xe2, 0xdb, 0xab, 0xfe, 0xc3, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdf, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xad, 0xad, 0xad, 0xfb, 0xeb, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0xb8, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hey there! I\u2019m Professor Fennel. As\u0147you can see, I\u2019m a scientist. In\u0147fact, the subject I\u2019m researching is\u0147Trainers!\u023cMy dream is to collect save files of\u0147various trainers, but I haven\u2019t had\u0147any breakthroughs yet...\u023cSo in the meantime, I\u2019ve been working\u0147on a different project with one of my\u0147old friends!\u023cIn my home region, there\u2019s a location\u0147that can make a Pok\u00e9mon\u2019s dreams into\u0147reality.\u023cThis means that any other Pok\u00e9mon\u0147they meet in their dreams become\u0147real!\u023cThat\u2019s fantastic, but my goal is to\u0147do the same- just with a trainer\u2019s\u0147dream instead! That\u2019s why I need your\u0147help!\u023cI want to bring as many Pok\u00e9mon out\u0147of your dreams as possible!\u023cThere\u2019s just over 250 Pok\u00e9mon I want\u0147to catalogue in my Dream Pok\u00e9Dex- or\u0147Dream Dex for short.\u023cBut I\u2019ll let you keep any Pok\u00e9mon-\u0147they\u2019re from your dreams after all!\u023cOne last note, save data backups are\u0147recommended- just on the off chance\u0147that something goes wrong!\u0147I think that\u2019s everything...\u023cwhenever you\u2019re ready to start, just\u0147let me know!\u019e"}, "DIA_E4": {"bytes": "0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xe8, 0xdc, 0xe6, 0xdd, 0xe0, 0xe0, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0xfe, 0xd8, 0xd9, 0xd7, 0xdd, 0xd8, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe9, 0xe6, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xd9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0xab, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd5, 0xe8, 0xd9, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbf, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xc0, 0xe3, 0xe9, 0xe6, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xdc, 0xd5, 0xe1, 0xe4, 0xdd, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi trainer! I\u2019m thrilled you\u2019ve\u0147decided to help with our research,\u0147but we need the best of the best!\u023cCome back after you\u2019ve beaten the\u0147Elite Four and become the Champion!\u019e"}, "DIA_MG_FRLGE": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0xfe, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xae, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xc1, 0xc3, 0xc0, 0xce, 0xab, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe2, 0xd9, 0xd5, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xc7, 0xd5, 0xe6, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xda, 0xdd, 0xe0, 0xe0, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe2, 0xd5, 0xdd, 0xe6, 0xd9, 0x0, 0xd5, 0xe7, 0xfe, 0xda, 0xe3, 0xe0, 0xe0, 0xe3, 0xeb, 0xe7, 0xf0, 0x0, 0xc6, 0xc3, 0xc8, 0xc5, 0x0, 0xce, 0xc9, 0xc1, 0xbf, 0xce, 0xc2, 0xbf, 0xcc, 0x0, 0xd1, 0xc3, 0xce, 0xc2, 0x0, 0xbb, 0xc6, 0xc6, 0xad, 0xfb, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xdb, 0xe3, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, one more thing to take\u0147care of before we can begin- you need\u0147to enable MYSTERY GIFT!\u023cHead to the nearest Pok\u00e9 Mart and\u0147fill out the questionnaire as\u0147follows: LINK TOGETHER WITH ALL.\u023cAfter that, you should be all set to\u0147go! See you soon!\u019e"}, "DIA_MG_RS": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0xfe, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xae, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0xab, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbf, 0xce, 0xbb, 0xc6, 0xbc, 0xcf, 0xcc, 0xc1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xbd, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xe2, 0x0, 0xe2, 0xd9, 0xec, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0xf0, 0xfe, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0x0, 0xc3, 0xcd, 0x0, 0xbf, 0xd2, 0xbd, 0xc3, 0xce, 0xc3, 0xc8, 0xc1, 0xad, 0x0, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0xb8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdb, 0xe3, 0xab, 0xfb, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, one more thing to take\u0147care of before we can begin- you need\u0147to enable MYSTERY EVENT!\u023cHead to the PETALBURG Pok\u00e9mon Center\u0147and tell the man next to the PC:\u0147MYSTERY EVENT IS EXCITING. After\u0147that, you should be all set to go!\u023cSee you soon!\u019e"}, "DIA_LETS_START": {"bytes": "0xca, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0xb8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xc3, 0xfe, 0xe2, 0xd9, 0xd9, 0xd8, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xdb, 0xd9, 0xe8, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0xd9, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Perfect, that\u2019s all the information I\u0147need! Let\u2019s get started!\u019e"}, "DIA_START": {"bytes": "0xc9, 0xe2, 0x0, 0xd5, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xb8, 0xfe, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xdd, 0xe7, 0xdc, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xad, 0xfb, 0xc3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xad, 0xfb, 0xce, 0xdc, 0xd9, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xfe, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0x0, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0xad, 0xfb, 0xc9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0xb8, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xbd, 0xe0, 0xe9, 0xd6, 0xfe, 0xd5, 0xe8, 0xe8, 0xd9, 0xe2, 0xd8, 0xd5, 0xe2, 0xe8, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0x0, 0xdd, 0xe2, 0xdd, 0xe8, 0xdd, 0xd5, 0xe8, 0xd9, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xd9, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "On a second Game Boy family system,\u0147please load the Game Boy Pok\u00e9mon game\u0147you wish to transfer from.\u023cIn your Game Boy Pok\u00e9mon game, make\u0147your current box the one you want to\u0147transfer from.\u023cThen connect this Game Boy Advance to\u0147the other Game Boy family system\u0147using a Game Boy Color link cable.\u023cOnce you\u2019re ready, press A on this\u0147device, talk to the Cable Club\u0147attendant, and then initiate a trade.\u019e"}, "DIA_TRANS_GOOD": {"bytes": "0xbb, 0xe1, 0xd5, 0xee, 0xdd, 0xe2, 0xdb, 0xab, 0x0, 0xc0, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0xab, 0x0, 0xbf, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0xfe, 0xe4, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Amazing! Fantastic! Everything went\u0147perfectly!\u019e"}, "DIA_NEW_DEX": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xdd, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xab, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xd9, 0xec, 0xe8, 0xe6, 0xd5, 0x0, 0xe7, 0xeb, 0xd9, 0xd9, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xe6, 0xd9, 0xeb, 0xd5, 0xe6, 0xd8, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like there\u2019s at least one\u0147new Pok\u00e9mon here that isn\u2019t in the\u0147Dream Dex! I\u2019ll give them something\u0147extra sweet as a reward for you both.\u019e"}, "DIA_NO_NEW_DEX": {"bytes": "0xc3, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0xe2, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0xfe, 0xe3, 0xdf, 0xd5, 0xed, 0xab, 0x0, 0xc3, 0xe8, 0xb4, 0xe7, 0x0, 0xdd, 0xe1, 0xe4, 0xe3, 0xe6, 0xe8, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0xfe, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe9, 0xe0, 0xe8, 0xe7, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe1, 0xe9, 0xe0, 0xe8, 0xdd, 0xe4, 0xe0, 0xd9, 0x0, 0xe8, 0xd9, 0xe7, 0xe8, 0xe7, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It doesn\u2019t look like there\u2019s anything\u0147new for your Dream Dex, but that\u2019s\u0147okay! It\u2019s important to confirm\u0147research results with multiple tests!\u019e"}, "DIA_SEND_FRIEND_KANTO": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0x0, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0x0, 0xe3, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xe3, 0xe2, 0x0, 0xcd, 0xd9, 0xea, 0xd9, 0xe2, 0x0, 0xc3, 0xe7, 0xe0, 0xd5, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up! They live just south of\u0147the Pok\u00e9mon center on Seven Island!\u019e"}, "DIA_SEND_FRIEND_HOENN_RS": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xc7, 0xe3, 0xe7, 0xe7, 0xd8, 0xd9, 0xd9, 0xe4, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up!\u023cThey live just southeast of the\u0147Pok\u00e9mon center in Mossdeep City!\u019e"}, "DIA_SEND_FRIEND_HOENN_E": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xcd, 0xe3, 0xe3, 0xe8, 0xe3, 0xe4, 0xe3, 0xe0, 0xdd, 0xe7, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up!\u023cThey live just southeast of the\u0147Pok\u00e9mon center in Sootopolis City!\u019e"}, "DIA_THANK": {"bytes": "0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xfe, 0xd1, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xb8, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Thank you so much for your help!\u0147Whenever you want to transfer more\u0147Pok\u00e9mon, just let me know! See you\u0147around!\u019e"}, "DIA_GET_MON": {"bytes": "0xe9, 0xe2, 0xe9, 0xe7, 0xd9, 0xd8, 0xb8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "unused, will be removed\u019e"}, "DIA_MG_OTHER_EVENT": {"bytes": "0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xfe, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xad, 0xfe, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xd6, 0xe0, 0xd9, 0xe1, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe3, 0xea, 0xd9, 0xe6, 0xeb, 0xe6, 0xdd, 0xe8, 0xe8, 0xd9, 0xe2, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xad, 0xfb, 0xce, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xe2, 0xe3, 0xeb, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xec, 0xe4, 0xd9, 0xe6, 0xdd, 0xd9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0xae, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi Trainer! It looks like you have a\u0147different event currently loaded.\u0147That\u2019s no problem, but it will be\u0147overwritten if you continue.\u023cTurn off the system now if you want\u0147to experience your current event, but\u0147otherwise-\u019e"}, "DIA_PKMN_TO_COLLECT": {"bytes": "0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe9, 0xe4, 0xad, 0xad, 0xad, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0xb4, 0xe8, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe9, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0xfe, 0xe8, 0xdc, 0xe3, 0xe7, 0xd9, 0x0, 0xe9, 0xe4, 0xad, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi Trainer! It looks like you still\u0147have Pok\u00e9mon to pick up... I can\u2019t\u0147send over new Pok\u00e9mon until you pick\u0147those up.\u023cCome back after you\u2019ve received them!\u019e"}, "DIA_NO_VALID_PKMN": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xea, 0xd5, 0xe0, 0xdd, 0xd8, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xe2, 0xe3, 0xeb, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xd8, 0xe3, 0xe9, 0xd6, 0xe0, 0xd9, 0x0, 0xd7, 0xdc, 0xd9, 0xd7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xdd, 0xe8, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry Trainer, it doesn\u2019t look like\u0147you have any valid Pok\u00e9mon in your\u0147current box right now.\u023cGo double check your current box and\u0147we can give it another shot!\u019e"}, "DIA_ASK_QUEST": {"bytes": "0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xbc, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xb8, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd5, 0xe7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0x0, 0xda, 0xd9, 0xeb, 0x0, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi trainer! Before we begin, I need\u0147to ask you a few questions.\u019e"}, "DIA_WHAT_GAME_TRANS": {"bytes": "0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xac, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "And which Game Boy Pok\u00e9mon game are\u0147you transferring from?\u019e"}, "DIA_WHAT_LANG_TRANS": {"bytes": "0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xac, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "What language is the Game Boy Pok\u00e9mon\u0147game that you\u2019re transferring from?\u019e"}, "DIA_NO_GB_ROM": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xe7, 0xe3, 0xe6, 0xe6, 0xed, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xea, 0xd9, 0xe6, 0xe7, 0xdd, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m sorry, but that version in that\u0147language is not currently supported.\u019e"}, "DIA_IN_BOX": {"bytes": "0xbb, 0xe0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0xad, 0xfb, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xd9, 0xe1, 0xd6, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xd5, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe7, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xbd, 0xbb, 0xc8, 0xc8, 0xc9, 0xce, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xad, 0xfb, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xe3, 0xe6, 0xfe, 0xe7, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Alright! Let\u2019s take a look at the\u0147Pok\u00e9mon that will be transfered.\u023cPlease remember, once a Pok\u00e9mon is\u0147transfered, it CANNOT be returned to\u0147the Game Boy Game Pak.\u023cSelect confirm once you\u2019re ready, or\u0147select cancel if you want to keep the\u0147Pok\u00e9mon on your Game Boy Game Pak.\u019e"}, "DIA_MYTHIC_CONVERT": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0x0, 0xe6, 0xd5, 0xe6, 0xd9, 0xfe, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xab, 0x0, 0xbe, 0xe9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xe6, 0xd5, 0xe6, 0xdd, 0xe8, 0xed, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xea, 0xd9, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xad, 0xfb, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xd8, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0xb4, 0xe0, 0xe0, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xd9, 0xe8, 0xfe, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xb8, 0x0, 0xc9, 0xce, 0xb8, 0x0, 0xce, 0xc3, 0xbe, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xcd, 0xdc, 0xdd, 0xe2, 0xdd, 0xe2, 0xd9, 0xe7, 0xe7, 0xad, 0xfb, 0xc9, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe0, 0xd9, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe7, 0x0, 0xdd, 0xe7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xdb, 0xe9, 0xd5, 0xe6, 0xd9, 0xe2, 0xe8, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xda, 0xe9, 0xe8, 0xe9, 0xe6, 0xd9, 0xad, 0x0, 0xbe, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xac, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd5, 0xe4, 0xe4, 0xe0, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd6, 0xe3, 0xec, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like you have a rare\u0147Mythical Pok\u00e9mon! Due to their\u0147rarity, it seems they\u2019ve overloaded\u0147the machine.\u023cI can stablize them if you\u2019d like,\u0147but it\u2019ll change some things like met\u0147location, OT, TID, and Shininess.\u023cOtherwise I can leave them as is, but\u0147there\u2019s no guarentee that they\u2019ll be\u0147transferrable in the future. Do you\u0147want me to stablize them?\u023cThis will apply to all of the\u0147Mythical Pok\u00e9mon currently in your\u0147box.\u019e"}, "DIA_CANCEL": {"bytes": "0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0xab, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xdd, 0xda, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "No worries! Feel free to come back if\u0147you change your mind! See you around!\u019e"}, "DIA_SOME_INVALID_PKMN": {"bytes": "0xc3, 0x0, 0xe7, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0xad, 0xfb, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xe3, 0xe0, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe8, 0xd9, 0xe1, 0xe7, 0x0, 0xe3, 0xe6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xdd, 0xd9, 0xd8, 0xfe, 0xdd, 0xe2, 0xd7, 0xe3, 0xe6, 0xe6, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0x0, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0x0, 0xe9, 0xe2, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0xfe, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0xad, 0xfb, 0xce, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xda, 0xdd, 0xe2, 0xd9, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I see there is at least one Pok\u00e9mon\u0147that cannot be transferred from your\u0147current box.\u023cPok\u00e9mon holding items or modified\u0147incorrectly through unintended means\u0147cannot be transferred.\u023cThe other Pok\u00e9mon will transfer just\u0147fine though!\u019e"}, "DIA_MENU_BACK": {"bytes": "0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0xab, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xfe, 0xd5, 0xe2, 0xed, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "No worries! Feel free to come back\u0147any time!\u019e"}, "DIA_IS_MISSINGNO": {"bytes": "0xad, 0xad, 0xad, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xad, 0xad, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0x0, 0xd6, 0xd9, 0x0, 0xdb, 0xe6, 0xd5, 0xe4, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0xb8, 0x0, 0xe7, 0xe3, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "... It seems like one of your Pok\u00e9mon\u0147is messing with the machine... It\u0147looks to only be graphical though, so\u0147we can continue!\u019e"}, "DIA_ERROR_COLOSSEUM": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd7, 0xe3, 0xe0, 0xe3, 0xe7, 0xe7, 0xd9, 0xe9, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0xfe, 0xe6, 0xe3, 0xe3, 0xe1, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like you went to the\u0147colosseum instead of the trading\u0147room! Let\u2019s try that again!\u019e"}, "DIA_ERROR_COM_ENDED": {"bytes": "0xbd, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0xfe, 0xeb, 0xd5, 0xe7, 0x0, 0xe8, 0xd9, 0xe6, 0xe1, 0xdd, 0xe2, 0xd5, 0xe8, 0xd9, 0xd8, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Communication with the other device\u0147was terminated. Let\u2019s try that again!\u019e"}, "DIA_ERROR_DISCONNECT": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xfe, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xd8, 0xdd, 0xe7, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xd9, 0xd8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like the Game Boy Color link\u0147cable was disconnected... Let\u2019s try\u0147that again!\u019e"}, "DIA_ERROR_TIME_ONE": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0xfe, 0xe3, 0xe9, 0xe8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like the connection timed\u0147out... Let\u2019s try that again!\u019e"}, "DIA_ERROR_TIME_TWO": {"bytes": "0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0xfe, 0xe3, 0xe9, 0xe8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It seems like the connection timed\u0147out... Let\u2019s try that again!\u019e"}, "DIA_WHAT_LANG_EVENT": {"bytes": "0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0xac, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "What language is the Game Boy Pok\u00e9mon\u0147game that you want to send an event\u0147to?\u019e"}, "DIA_WHAT_GAME_EVENT": {"bytes": "0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd8, 0xe3, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xac, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "And which Game Boy Pok\u00e9mon game do\u0147you want to send an event to?\u019e"}, "DIA_K_DEX_NOT_FULL": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xa2, 0xa6, 0xa1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xeb, 0xd9, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, it looks like you\u0147haven\u2019t caught all 150 Pok\u00e9mon from\u0147the Kanto region yet.\u023cGo out and catch them all and then\u0147we\u2019ll be able to send over the event!\u019e"}, "DIA_J_DEX_NOT_FULL": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xaa, 0xaa, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc4, 0xe3, 0xdc, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xeb, 0xd9, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, it looks like you\u0147haven\u2019t caught all 99 new Pok\u00e9mon\u0147from the Johto region yet.\u023cGo out and catch them all and then\u0147we\u2019ll be able to send over the event!\u019e"}}, "RSEFRLG": {"dia_textGreet_rse": {"bytes": "0xd1, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0xb8, 0x0, 0xc3, 0x0, 0xe8, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xe0, 0xd8, 0xfe, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0x0, 0xce, 0xcc, 0xbb, 0xc3, 0xc8, 0xbf, 0xcc, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "When I was young, I traveled the world\u0147as a POK\u00e9MON TRAINER.\u019e"}, "dia_textGreet_frlg": {"bytes": "0xc3, 0x0, 0xe1, 0xd5, 0xed, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xe2, 0xe3, 0xeb, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0xd9, 0xe6, 0xb0, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "I may not look like much now,\u0147but when I was younger\u2026\u019e"}, "dia_textMoveBox_rs": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe9, 0xe2, 0xe0, 0xe3, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd8, 0xe3, 0xe3, 0xe6, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to unlock the\u0147door!\u019e"}, "dia_textMoveBox_frlg": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd6, 0xe3, 0xec, 0xd9, 0xe7, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to move the\u0147boxes!\u019e"}, "dia_textMoveBox_e": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe0, 0xd5, 0xe2, 0xe8, 0xe7, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to move the\u0147plants!\u019e"}, "dia_textWeHere_r": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xc7, 0xbb, 0xd2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leader MAXIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_s": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xbb, 0xcc, 0xbd, 0xc2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leader ARCHIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_frlg": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xc1, 0xc3, 0xc9, 0xd0, 0xbb, 0xc8, 0xc8, 0xc3, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Kanto to find\u0147the leader GIOVANNI.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_e": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0xe7, 0x0, 0xc7, 0xbb, 0xd2, 0xc3, 0xbf, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xcc, 0xbd, 0xc2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leaders MAXIE and ARCHIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textRecieved": {"bytes": "0xfc, 0x1, 0x2, 0xfd, 0x1, 0xb4, 0xcd, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0x0, 0xeb, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c1\u01b2\u00c0\u2019S POK\u00e9MON were sent to\u0147the PC!\u019e"}, "dia_textYouMustBe_first": {"bytes": "0xbb, 0xdc, 0xab, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xfd, 0x1, 0xab, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe8, 0xe3, 0xe0, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd7, 0xe3, 0xe1, 0xdd, 0xe2, 0xdb, 0xad, 0xfb, 0xc9, 0xdc, 0xab, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xab, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0xab, 0xfe, 0xc9, 0xe6, 0xb8, 0x0, 0xe6, 0xd5, 0xe8, 0xdc, 0xd9, 0xe6, 0xb8, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdd, 0xe2, 0xe8, 0xe6, 0xe3, 0xd8, 0xe9, 0xd7, 0xd9, 0x0, 0xe1, 0xed, 0xe7, 0xd9, 0xe0, 0xda, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "Ah! You must be \u01b2\u00c0! I was\u0147told you\u2019d be coming.\u023cOh! I still wear my disguise! Pardon!\u0147Or, rather, let me introduce myself.\u019e"}, "dia_textYouMustBe_second": {"bytes": "0xbb, 0xdc, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0x0, 0xd1, 0xd9, 0xe0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xab, 0x0, 0xc1, 0xe3, 0xe3, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xe7, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xfb, 0xc9, 0xdc, 0xab, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xab, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "Ah, \u01b2\u00c0! Welcome back! Good to\u0147see you again!\u023cOh! I still wear my disguise! Pardon!\u019e"}, "dia_textIAm_first": {"bytes": "0xfc, 0x1, 0x8, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xd5, 0x0, 0xdb, 0xe0, 0xe3, 0xd6, 0xd9, 0xae, 0xe8, 0xe6, 0xe3, 0xe8, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd9, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc3, 0xe2, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xe0, 0xdd, 0xd7, 0xd9, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb0, 0x0, 0xfa, 0xbb, 0xdc, 0xb8, 0x0, 0xe2, 0xe3, 0xb8, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0x0, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0xfe, 0xe2, 0xd5, 0xe1, 0xd9, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbI am a globe-trotting elite of the\u0147International Police.\u023cMy name\u2026 \u015eAh, no, I shall inform you of my code\u0147name only.\u023cMy code name, it is LOOKER!\u019e"}, "dia_textIAm_second": {"bytes": "0xfc, 0x1, 0x8, 0xc3, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc3, 0xb8, 0x0, 0xdb, 0xe0, 0xe3, 0xd6, 0xd9, 0xae, 0xe8, 0xe6, 0xe3, 0xe8, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd9, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc3, 0xe2, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xe0, 0xdd, 0xd7, 0xd9, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbIt is I, globe-trotting elite of the\u0147International Police.\u023cMy code name, it is LOOKER!\u019e"}, "dia_textPCConvo": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbb, 0xdc, 0xb8, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0x0, 0xc3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xdd, 0xe8, 0xfe, 0xfd, 0x1, 0x0, 0xdc, 0xd5, 0xe7, 0x0, 0xd5, 0xe6, 0xe6, 0xdd, 0xea, 0xd9, 0xd8, 0xac, 0xfb, 0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0xe2, 0xd8, 0xd9, 0xd9, 0xd8, 0xab, 0x0, 0xce, 0xdc, 0xd9, 0xed, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0xab, 0xfb, 0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbf, 0xec, 0xd7, 0xd9, 0xe0, 0xe0, 0xd9, 0xe2, 0xe8, 0xab, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xfe, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe1, 0xd9, 0xe2, 0xe8, 0xd5, 0xe6, 0xdd, 0xe0, 0xed, 0xb0, 0x0, 0xe7, 0xe8, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: Ah, LOOKER! I take it\u0147\u01b2\u00c0 has arrived?\u023c\u0206\u00c0\u00cbLOOKER: Indeed! They\u2019re ready to\u0147receive their POK\u00e9MON!\u023c\u0206\u00c0\u00c9FENNEL: Excellent! I\u2019ll send them\u0147over momentarily\u2026 stand by!\u019e"}, "dia_textPCThanks": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xbd, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xab, 0xfb, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: It looks like everything was\u0147sent to your PC successfully!\u023cThank you both for your help!\u019e"}, "dia_textThank": {"bytes": "0xfc, 0x1, 0x8, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xe8, 0xe3, 0xe4, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xd6, 0xed, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0xfb, 0xc3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe0, 0xe0, 0x0, 0xd9, 0xec, 0xd7, 0xe9, 0xe7, 0xd9, 0x0, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xad, 0x0, 0xfa, 0xcf, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xe3, 0xe9, 0xe6, 0x0, 0xe4, 0xd5, 0xe8, 0xdc, 0xe7, 0x0, 0xd7, 0xe6, 0xe3, 0xe7, 0xe7, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbThanks for stopping by, \u01b2\u00c0!\u023cIf you\u2019ll excuse me, I must return to\u0147my disguise. \u015eUntil our paths cross again!\u019e"}, "dia_textPCFull": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0x0, 0xdd, 0xe7, 0x0, 0xda, 0xe9, 0xe0, 0xe0, 0xab, 0xfb, 0xc1, 0xe3, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: It seems like the PC is full!\u023cGo make some room, and I can send over\u0147the rest of your POK\u00e9MON.\u019e"}, "dia_textLookerFull": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xcd, 0xe4, 0xd9, 0xd5, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0xfe, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0xfb, 0xc3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xed, 0xfe, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: Speak to me again after\u0147you\u2019ve made room, \u01b2\u00c0!\u023cIn the meantime, I will return to my\u0147disguise.\u019e"}}, "GB": {"sending_text": {"bytes": "SENDING DATA", "numLines": 0, "pixelsPerChar": 0, "pixelsInLine": 0, "includeBoxBreaks": false}, "prof_name": {"bytes": "FENNEL", "numLines": 0, "pixelsPerChar": 0, "pixelsInLine": 0, "includeBoxBreaks": false}}, "GENERAL": {"option_english": {"bytes": "0xbf, 0xe2, 0xdb, 0xe0, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "English\u019e"}, "option_japanese": {"bytes": "0xc4, 0xd5, 0xe4, 0xd5, 0xe2, 0xd9, 0xe7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Japanese\u019e"}, "option_spanish": {"bytes": "0xcd, 0xe4, 0xd5, 0xe2, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Spanish\u019e"}, "option_french": {"bytes": "0xc0, 0xe6, 0xd9, 0xe2, 0xd7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "French\u019e"}, "option_german": {"bytes": "0xc1, 0xd9, 0xe6, 0xe1, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "German\u019e"}, "option_italian": {"bytes": "0xc3, 0xe8, 0xd5, 0xe0, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Italian\u019e"}, "option_korean": {"bytes": "0xc5, 0xe3, 0xe6, 0xd9, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Korean\u019e"}, "option_green": {"bytes": "0xc1, 0xe6, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Green\u019e"}, "option_red": {"bytes": "0xcc, 0xd9, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Red\u019e"}, "option_blue": {"bytes": "0xbc, 0xe0, 0xe9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Blue\u019e"}, "option_yellow": {"bytes": "0xd3, 0xd9, 0xe0, 0xe0, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Yellow\u019e"}, "option_gold": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Gold\u019e"}, "option_silver": {"bytes": "0xcd, 0xdd, 0xe0, 0xea, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Silver\u019e"}, "option_crystal": {"bytes": "0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Crystal\u019e"}, "option_cancel": {"bytes": "0xbd, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Cancel\u019e"}, "press_start": {"bytes": "0xca, 0xe9, 0xe7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xcd, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xab, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Push the Start Button!\u019e"}, "option_transfer": {"bytes": "0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Transfer Pok\u00e9mon\u019e"}, "option_dreamdex": {"bytes": "0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Dream Dex\u019e"}, "option_credits": {"bytes": "0xbd, 0xe6, 0xd9, 0xd8, 0xdd, 0xe8, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Credits\u019e"}, "intro_first": {"bytes": "0xc2, 0xd9, 0xe0, 0xe0, 0xe3, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0xab, 0xfe, 0xfe, 0xc4, 0xe9, 0xe7, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xeb, 0xe3, 0xe6, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xd5, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0xae, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xd1, 0xc3, 0xc6, 0xc6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xed, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe0, 0xe3, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xd6, 0xd9, 0xe8, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xdd, 0xd8, 0xb8, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd9, 0xe2, 0xde, 0xe3, 0xed, 0xab, 0xfe, 0xfe, 0xae, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xff", "numLines": 15, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": false, "text": "Hello! Thank you for using Pok\u00e9\u0147Transporter GB!\u0147\u0147Just as a word of caution- Pok\u00e9\u0147Transporter GB WILL modify both the\u0147GameBoy and GameBoy Advance save\u0147files.\u0147\u0147Please note that while Pok\u00e9\u0147Transporter GB is no longer in beta,\u0147save file backups are still\u0147recommended before using. With that\u0147all being said, please enjoy!\u0147\u0147-The Gears of Progress \u019e"}, "intro_legal": {"bytes": "0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe3, 0xda, 0xfe, 0xe0, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd5, 0xe4, 0xe4, 0xe6, 0xd9, 0xd7, 0xdd, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xd5, 0xe2, 0xd7, 0xdc, 0xdd, 0xe7, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xda, 0xdd, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xbb, 0xc6, 0xd1, 0xbb, 0xd3, 0xcd, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0xfe, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0x0, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe1, 0xe9, 0xe7, 0xdd, 0xd7, 0xfe, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xeb, 0xe2, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0x0, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0x0, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0xad, 0xfe, 0xfe, 0xfe, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xff", "numLines": 14, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": false, "text": "Pok\u00e9 Transporter GB was made out of\u0147love and appreciation for the Pokemon\u0147franchise with no profit in mind. It\u0147will ALWAYS be free.\u0147\u0147Please support the original\u0147developers.\u0147\u0147All Pokemon names, sprites, and music\u0147are owned by Nintendo, Creatures Inc,\u0147and GAME FREAK.\u0147\u0147\u0147Press A to continue\u019e"}, "cart_load_error": {"bytes": "0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xad, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xdd, 0xe2, 0xe7, 0xd9, 0xe6, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xea, 0xd9, 0xe0, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff", "numLines": 10, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "The Pok\u00e9mon save file was\u0147not loaded successfully.\u0147Please remove and reinsert\u0147the Game Pak, and then\u0147press the A button.\u0147\u0147Alternatively, press the\u0147Select button to send this\u0147program to another GameBoy\u0147Advance.\u019e"}, "pulled_cart_error": {"bytes": "0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xad, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "The Pok\u00e9mon game was\u0147removed. Please turn off\u0147the system and restart the\u0147program.\u019e"}, "send_multiboot_instructions": {"bytes": "0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xfe, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xdd, 0xe2, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0x0, 0xe1, 0xe3, 0xd8, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xc6, 0xdd, 0xe2, 0xdf, 0xfe, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0xad, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0xe2, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xfe, 0xe8, 0xe3, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff", "numLines": 10, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Please connect this system\u0147to another GameBoy Advance\u0147in Multiboot mode with a\u0147GameBoy Advance Link\u0147Cable.\u0147\u0147Then, press the A button\u0147to begin sending Pok\u00e9\u0147Transporter GB to the\u0147second GameBoy Advance.\u019e"}, "send_multiboot_wait": {"bytes": "0xcd, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0xfe, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0xfe, 0xeb, 0xd5, 0xdd, 0xe8, 0xad, 0xfe, 0xfe, 0xc2, 0xe3, 0xe0, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbc, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xad, 0xff", "numLines": 7, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Sending Pok\u00e9 Transporter\u0147GB to second GameBoy\u0147Advance system. Please\u0147wait.\u0147\u0147Hold the B Button to\u0147cancel.\u019e"}, "send_multiboot_success": {"bytes": "0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xab, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xd5, 0xed, 0xfe, 0xe2, 0xe3, 0xeb, 0x0, 0xe4, 0xe3, 0xeb, 0xd9, 0xe6, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xad, 0xff", "numLines": 7, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "\u0147Pok\u00e9 Transporter GB was\u0147sent successfully! You may\u0147now power off this GameBoy\u0147Advance system.\u019e"}, "send_multiboot_failure": {"bytes": "0xfe, 0xbb, 0xe2, 0x0, 0xd9, 0xe6, 0xe6, 0xe3, 0xe6, 0x0, 0xe3, 0xd7, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0xfe, 0xc1, 0xbc, 0xad, 0x0, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xe6, 0xe9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xfe, 0xe7, 0xd7, 0xe6, 0xd9, 0xd9, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xad, 0xff", "numLines": 7, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "\u0147An error occurred while\u0147sending Pok\u00e9 Transporter\u0147GB. Press the A button to\u0147return to the instructions\u0147screen and try again.\u019e"}, "kanto_name": {"bytes": "0xc5, 0xbb, 0xc8, 0xce, 0xc9, 0xf0, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "KANTO:\u019e"}, "johto_name": {"bytes": "0xc4, 0xc9, 0xc2, 0xce, 0xc9, 0xf0, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "JOHTO:\u019e"}}, "CREDITS": {"credits_page_1": {"bytes": "0xc6, 0xd9, 0xd5, 0xd8, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xf0, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Lead developer:\u0147\u0147The Gears of Progress\u019e"}, "credits_page_2": {"bytes": "0xc6, 0xe3, 0xdb, 0xe3, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xe3, 0xae, 0xdd, 0xd8, 0xd9, 0xd5, 0xe8, 0xe3, 0xe6, 0xf0, 0xfe, 0xfe, 0xae, 0xc4, 0xe3, 0xe1, 0xd9, 0xfe, 0xfe, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xeb, 0xe3, 0xe6, 0xdf, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xc4, 0x0, 0xbc, 0xdd, 0xe6, 0xd8, 0xe1, 0xd5, 0xe2, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Logo and co-ideator:\u0147\u0147-Jome\u0147\u0147Spritework:\u0147\u0147-LJ Birdman\u019e"}, "credits_page_3": {"bytes": "0xc3, 0xd7, 0xe3, 0xe2, 0x0, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xe9, 0xdd, 0xdb, 0xdd, 0xce, 0xc5, 0xc9, 0xfe, 0xae, 0xc1, 0xe9, 0xdd, 0xbb, 0xd6, 0xd9, 0xe0, 0xfe, 0xae, 0xcd, 0xe3, 0xe9, 0xe6, 0xbb, 0xe4, 0xe4, 0xe0, 0xd9, 0xfe, 0x2d, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd5, 0xe6, 0xe8, 0xdd, 0xe7, 0xe8, 0xe7, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xcd, 0xdc, 0xe3, 0xeb, 0xd8, 0xe3, 0xeb, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0x0, 0xbd, 0xe0, 0xd9, 0xd5, 0xe6, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Icon Sprites:\u0147\u0147-LuigiTKO\u0147-GuiAbel\u0147-SourApple\u0147& the artists from Pok\u00e9mon\u0147Showdown and Crystal Clear\u019e"}, "credits_page_4": {"bytes": "0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xe6, 0xd6, 0xdd, 0xe8, 0xe6, 0xd5, 0xe6, 0xed, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0xfe, 0xbf, 0xec, 0xd9, 0xd7, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xce, 0xdd, 0xe1, 0xe3, 0xd0, 0xc7, 0xfe, 0xfe, 0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0xfe, 0xda, 0xe9, 0xe2, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xf0, 0x0, 0xfb, 0xe6, 0xdd, 0xe7, 0xdd, 0xe2, 0xdb, 0xca, 0xdc, 0xdd, 0xe0, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Remote and Arbitrary Code\u0147Execution assistance:\u0147\u0147-TimoVM\u0147\u0147Remote Multiboot\u0147functionality: \u023crisingPhil\u019e"}, "credits_page_5": {"bytes": "0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xe6, 0xdd, 0xe0, 0xd9, 0xed, 0xdf, 0xa7, 0xa5, 0xfe, 0xae, 0xcd, 0xdc, 0xd5, 0xe3, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Development assistance:\u0147\u0147-im a blisy\u0147-rileyk64\u0147-Shao\u019e"}, "credits_page_6": {"bytes": "0xcd, 0xe4, 0xd5, 0xd7, 0xd9, 0x0, 0xc9, 0xe4, 0xe8, 0xdd, 0xe1, 0xdd, 0xee, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xf0, 0xfe, 0xfe, 0xae, 0xd9, 0xd5, 0xe7, 0xed, 0xd5, 0xe7, 0xe4, 0xdd, 0xa4, 0xa2, 0xa5, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Space Optimization:\u0147\u0147-easyaspi314\u019e"}, "credits_page_7": {"bytes": "0xbc, 0xe9, 0xdd, 0xe0, 0xe8, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xbe, 0xd9, 0xea, 0xdf, 0xdd, 0xe8, 0xca, 0xe6, 0xe3, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xce, 0xe3, 0xe2, 0xd7, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xc1, 0xbc, 0xbb, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Built using:\u0147\u0147\u0147-DevkitPro\u0147-LibTonc\u0147-LibGBA\u019e"}, "credits_page_8": {"bytes": "0xc3, 0xe2, 0xe7, 0xe4, 0xdd, 0xe6, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xe7, 0x0, 0xe3, 0xda, 0xf0, 0xfe, 0xfe, 0xae, 0xc1, 0xe3, 0xe4, 0xe4, 0xdd, 0xd9, 0xe6, 0xfe, 0xae, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xcc, 0xbf, 0xce, 0xc3, 0xcc, 0xbf, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Inspired by the works of:\u0147\u0147-Goppier\u0147-Lorenzooone\u0147-im a blisy\u0147-RETIRE\u019e"}, "credits_page_9": {"bytes": "0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xe7, 0x0, 0xe9, 0xe7, 0xd9, 0xd8, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xae, 0xca, 0xc5, 0xc2, 0xd9, 0xd2, 0xfe, 0xae, 0xd1, 0xbd, 0xa4, 0xce, 0xe3, 0xe3, 0xe0, 0xfe, 0xae, 0xcf, 0xe7, 0xd9, 0xe2, 0xe8, 0xdd, 0xfe, 0xae, 0xcd, 0xd5, 0xe4, 0xe4, 0xed, 0xc7, 0xdd, 0xd8, 0xce, 0xe3, 0xbb, 0xc1, 0xbc, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Programs used:\u0147\u0147\u0147-HexManiacAdvance\u0147-PKHeX\u0147-WC3Tool\u0147-Usenti\u0147-SappyMidToAGB\u019e"}, "credits_page_10": {"bytes": "0xc9, 0xe4, 0xd9, 0xe2, 0x0, 0xcd, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xc6, 0xdd, 0xd6, 0xe6, 0xd5, 0xe6, 0xdd, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xe0, 0xdd, 0xd6, 0xe8, 0xe3, 0xe2, 0xd7, 0xae, 0xd9, 0xec, 0xd5, 0xe1, 0xe4, 0xe0, 0xd9, 0xe7, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0xae, 0xdb, 0xd6, 0xd5, 0xae, 0xe0, 0xdd, 0xe2, 0xdf, 0xae, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xae, 0xd5, 0xeb, 0xd9, 0xe7, 0xe3, 0xe1, 0xd9, 0xae, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0xae, 0xd5, 0xe6, 0xd8, 0xe9, 0xdd, 0xe2, 0xe3, 0xae, 0xe4, 0xe3, 0xdf, 0xd9, 0xae, 0xdb, 0xd9, 0xe2, 0xa3, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Open Source Code and\u0147Libraries:\u0147\u0147-libtonc-examples\u0147-PokemonGen3toGenX\u0147-gba-link-connection\u0147-awesome-gbadev\u0147-arduino-poke-gen2\u019e"}, "credits_page_11": {"bytes": "0xcc, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xd5, 0xe6, 0xe1, 0xae, 0xd8, 0xe3, 0xd7, 0xe7, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0xfe, 0xc0, 0xe9, 0xe0, 0xe0, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xe7, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe3, 0xe9, 0xe2, 0xd8, 0x0, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xb4, 0xe7, 0x0, 0xc1, 0xdd, 0xe8, 0xc2, 0xe9, 0xd6, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Research resources:\u0147\u0147-arm-docs\u0147-PokemonGen3toGenX\u0147\u0147Full links can be found on\u0147this program\u2019s GitHub\u019e"}, "credits_page_12": {"bytes": "0xcc, 0xc9, 0xc7, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xd8, 0xd9, 0xd7, 0xe3, 0xe1, 0xe4, 0xdd, 0xe0, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0x0, 0xd7, 0xe6, 0xd9, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xcc, 0xbf, 0xce, 0x0, 0xe8, 0xd9, 0xd5, 0xe1, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "ROM data obtained from\u0147decompilations created by\u0147the PRET team\u019e"}, "credits_page_13": {"bytes": "0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0xf0, 0xfe, 0xfe, 0xae, 0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe4, 0xd9, 0xd8, 0xdd, 0xd5, 0xfe, 0xae, 0xcd, 0xd9, 0xe6, 0xd9, 0xd6, 0xdd, 0xdd, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xbb, 0xca, 0xc3, 0xad, 0xd7, 0xe3, 0xe1, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Pok\u00e9mon data obtained\u0147from:\u0147\u0147-Bulbapedia\u0147-Serebii\u0147-PokeAPI.com\u019e"}, "credits_page_14": {"bytes": "0xbe, 0xdd, 0xe7, 0xd7, 0xe3, 0xe6, 0xd8, 0x0, 0xd7, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xe8, 0xed, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0x0, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0xfe, 0xae, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0xae, 0xe4, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Discord community\u0147assistance:\u0147\u0147-Hex Maniac Advance\u0147Development\u0147-gbadev\u0147-pret\u019e"}, "credits_page_15": {"bytes": "0xd1, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc7, 0xd5, 0xd8, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Writing assistance:\u0147\u0147\u0147-Mad\u019e"}, "credits_page_16": {"bytes": "0xbb, 0xe2, 0x0, 0xdd, 0xe1, 0xe1, 0xd9, 0xe2, 0xe7, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0x2d, 0xfe, 0xeb, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe1, 0xb8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xe3, 0xe9, 0xe0, 0xd8, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0xad, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "An immense thanks to\u0147Lorenzooone for their\u0147assistance in reading &\u0147writing save data. Without\u0147them, this project would\u0147not have been possible.\u019e"}, "credits_page_17": {"bytes": "0xcd, 0xe4, 0xd9, 0xd7, 0xdd, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xbf, 0xe2, 0xe2, 0xb8, 0xfe, 0xe6, 0xe3, 0xdf, 0xe9, 0xb8, 0x0, 0xcd, 0xe0, 0xd9, 0xd9, 0xe4, 0xed, 0xb8, 0x0, 0xbf, 0xee, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xe6, 0xd5, 0xdc, 0xe8, 0xe3, 0xe2, 0xdd, 0xe2, 0xb8, 0x0, 0xbc, 0xd5, 0xe7, 0xd5, 0xd6, 0xdd, 0xb8, 0x0, 0xc7, 0xd5, 0xd8, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe3, 0xe2, 0xd9, 0x0, 0xeb, 0xdc, 0xe3, 0x0, 0xdc, 0xd5, 0xe7, 0xfe, 0xe0, 0xdd, 0xe7, 0xe8, 0xd9, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xd5, 0xd6, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe1, 0xe3, 0xe2, 0xe8, 0xdc, 0xe7, 0xab, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Special thanks to Enn,\u0147roku, Sleepy, Eza,\u0147sarahtonin, Basabi, Mad,\u0147and everyone who has\u0147listened to me talk about\u0147this for months!\u019e"}, "credits_page_18": {"bytes": "0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0xfe, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xe6, 0xd9, 0xe0, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xd7, 0xe3, 0xe4, 0xed, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0xfe, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xad, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0xfe, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0x0, 0xc3, 0xe2, 0xd7, 0xad, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "All Pok\u00e9mon names,\u0147sprites, and names of\u0147related resources are\u0147copyright Nintendo,\u0147Creatures Inc., and GAME\u0147FREAK Inc.\u019e"}, "credits_page_19": {"bytes": "0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0xfe, 0xd9, 0xe2, 0xd8, 0xe3, 0xe6, 0xe7, 0xd9, 0xd8, 0x0, 0xe3, 0xe6, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xc0, 0xe6, 0xd9, 0xd5, 0xdf, 0xba, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "This project is not\u0147endorsed or supported by\u0147GameFreak/Nintendo.\u0147\u0147Please support the\u0147original developers.\u019e"}}, "PKMN_NAMES": {"0": {"bytes": "0xc7, 0xdd, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0xc8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "MissingNo\u019e"}, "1": {"bytes": "0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bulbasaur\u019e"}, "2": {"bytes": "0xc3, 0xea, 0xed, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ivysaur\u019e"}, "3": {"bytes": "0xd0, 0xd9, 0xe2, 0xe9, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venusaur\u019e"}, "4": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xe1, 0xd5, 0xe2, 0xd8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charmander\u019e"}, "5": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xe1, 0xd9, 0xe0, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charmeleon\u019e"}, "6": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xdd, 0xee, 0xd5, 0xe6, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charizard\u019e"}, "7": {"bytes": "0xcd, 0xe5, 0xe9, 0xdd, 0xe6, 0xe8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Squirtle\u019e"}, "8": {"bytes": "0xd1, 0xd5, 0xe6, 0xe8, 0xe3, 0xe6, 0xe8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wartortle\u019e"}, "9": {"bytes": "0xbc, 0xe0, 0xd5, 0xe7, 0xe8, 0xe3, 0xdd, 0xe7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Blastoise\u019e"}, "10": {"bytes": "0xbd, 0xd5, 0xe8, 0xd9, 0xe6, 0xe4, 0xdd, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Caterpie\u019e"}, "11": {"bytes": "0xc7, 0xd9, 0xe8, 0xd5, 0xe4, 0xe3, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Metapod\u019e"}, "12": {"bytes": "0xbc, 0xe9, 0xe8, 0xe8, 0xd9, 0xe6, 0xda, 0xe6, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Butterfree\u019e"}, "13": {"bytes": "0xd1, 0xd9, 0xd9, 0xd8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weedle\u019e"}, "14": {"bytes": "0xc5, 0xd5, 0xdf, 0xe9, 0xe2, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kakuna\u019e"}, "15": {"bytes": "0xbc, 0xd9, 0xd9, 0xd8, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Beedrill\u019e"}, "16": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgey\u019e"}, "17": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xe3, 0xe8, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgeotto\u019e"}, "18": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xe3, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgeot\u019e"}, "19": {"bytes": "0xcc, 0xd5, 0xe8, 0xe8, 0xd5, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rattata\u019e"}, "20": {"bytes": "0xcc, 0xd5, 0xe8, 0xdd, 0xd7, 0xd5, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raticate\u019e"}, "21": {"bytes": "0xcd, 0xe4, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Spearow\u019e"}, "22": {"bytes": "0xc0, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Fearow\u019e"}, "23": {"bytes": "0xbf, 0xdf, 0xd5, 0xe2, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ekans\u019e"}, "24": {"bytes": "0xbb, 0xe6, 0xd6, 0xe3, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Arbok\u019e"}, "25": {"bytes": "0xca, 0xdd, 0xdf, 0xd5, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pikachu\u019e"}, "26": {"bytes": "0xcc, 0xd5, 0xdd, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raichu\u019e"}, "27": {"bytes": "0xcd, 0xd5, 0xe2, 0xd8, 0xe7, 0xdc, 0xe6, 0xd9, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sandshrew\u019e"}, "28": {"bytes": "0xcd, 0xd5, 0xe2, 0xd8, 0xe7, 0xe0, 0xd5, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sandslash\u019e"}, "29": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xd5, 0xe2, 0xb6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoran\u2640\u019e"}, "30": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xdd, 0xe2, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidorina\u019e"}, "31": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe5, 0xe9, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoqueen\u019e"}, "32": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xd5, 0xe2, 0xb5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoran\u2642\u019e"}, "33": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xdd, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidorino\u019e"}, "34": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoking\u019e"}, "35": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xd5, 0xdd, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Clefairy\u019e"}, "36": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xd5, 0xd6, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Clefable\u019e"}, "37": {"bytes": "0xd0, 0xe9, 0xe0, 0xe4, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vulpix\u019e"}, "38": {"bytes": "0xc8, 0xdd, 0xe2, 0xd9, 0xe8, 0xd5, 0xe0, 0xd9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ninetales\u019e"}, "39": {"bytes": "0xc4, 0xdd, 0xdb, 0xdb, 0xe0, 0xed, 0xe4, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jigglypuff\u019e"}, "40": {"bytes": "0xd1, 0xdd, 0xdb, 0xdb, 0xe0, 0xed, 0xe8, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wigglytuff\u019e"}, "41": {"bytes": "0xd4, 0xe9, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Zubat\u019e"}, "42": {"bytes": "0xc1, 0xe3, 0xe0, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golbat\u019e"}, "43": {"bytes": "0xc9, 0xd8, 0xd8, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Oddish\u019e"}, "44": {"bytes": "0xc1, 0xe0, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gloom\u019e"}, "45": {"bytes": "0xd0, 0xdd, 0xe0, 0xd9, 0xe4, 0xe0, 0xe9, 0xe1, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vileplume\u019e"}, "46": {"bytes": "0xca, 0xd5, 0xe6, 0xd5, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Paras\u019e"}, "47": {"bytes": "0xca, 0xd5, 0xe6, 0xd5, 0xe7, 0xd9, 0xd7, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Parasect\u019e"}, "48": {"bytes": "0xd0, 0xd9, 0xe2, 0xe3, 0xe2, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venonat\u019e"}, "49": {"bytes": "0xd0, 0xd9, 0xe2, 0xe3, 0xe1, 0xe3, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venomoth\u019e"}, "50": {"bytes": "0xbe, 0xdd, 0xdb, 0xe0, 0xd9, 0xe8, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Diglett\u019e"}, "51": {"bytes": "0xbe, 0xe9, 0xdb, 0xe8, 0xe6, 0xdd, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dugtrio\u019e"}, "52": {"bytes": "0xc7, 0xd9, 0xe3, 0xeb, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Meowth\u019e"}, "53": {"bytes": "0xca, 0xd9, 0xe6, 0xe7, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Persian\u019e"}, "54": {"bytes": "0xca, 0xe7, 0xed, 0xd8, 0xe9, 0xd7, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Psyduck\u019e"}, "55": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xe9, 0xd7, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golduck\u019e"}, "56": {"bytes": "0xc7, 0xd5, 0xe2, 0xdf, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mankey\u019e"}, "57": {"bytes": "0xca, 0xe6, 0xdd, 0xe1, 0xd9, 0xd5, 0xe4, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Primeape\u019e"}, "58": {"bytes": "0xc1, 0xe6, 0xe3, 0xeb, 0xe0, 0xdd, 0xe8, 0xdc, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Growlithe\u019e"}, "59": {"bytes": "0xbb, 0xe6, 0xd7, 0xd5, 0xe2, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Arcanine\u019e"}, "60": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xd5, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwag\u019e"}, "61": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xdc, 0xdd, 0xe6, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwhirl\u019e"}, "62": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xe6, 0xd5, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwrath\u019e"}, "63": {"bytes": "0xbb, 0xd6, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Abra\u019e"}, "64": {"bytes": "0xc5, 0xd5, 0xd8, 0xd5, 0xd6, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kadabra\u019e"}, "65": {"bytes": "0xbb, 0xe0, 0xd5, 0xdf, 0xd5, 0xee, 0xd5, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Alakazam\u019e"}, "66": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machop\u019e"}, "67": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xdf, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machoke\u019e"}, "68": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xd5, 0xe1, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machamp\u019e"}, "69": {"bytes": "0xbc, 0xd9, 0xe0, 0xe0, 0xe7, 0xe4, 0xe6, 0xe3, 0xe9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bellsprout\u019e"}, "70": {"bytes": "0xd1, 0xd9, 0xd9, 0xe4, 0xdd, 0xe2, 0xd6, 0xd9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weepinbell\u019e"}, "71": {"bytes": "0xd0, 0xdd, 0xd7, 0xe8, 0xe6, 0xd9, 0xd9, 0xd6, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Victreebel\u019e"}, "72": {"bytes": "0xce, 0xd9, 0xe2, 0xe8, 0xd5, 0xd7, 0xe3, 0xe3, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tentacool\u019e"}, "73": {"bytes": "0xce, 0xd9, 0xe2, 0xe8, 0xd5, 0xd7, 0xe6, 0xe9, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tentacruel\u019e"}, "74": {"bytes": "0xc1, 0xd9, 0xe3, 0xd8, 0xe9, 0xd8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Geodude\u019e"}, "75": {"bytes": "0xc1, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Graveler\u019e"}, "76": {"bytes": "0xc1, 0xe3, 0xe0, 0xd9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golem\u019e"}, "77": {"bytes": "0xca, 0xe3, 0xe2, 0xed, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ponyta\u019e"}, "78": {"bytes": "0xcc, 0xd5, 0xe4, 0xdd, 0xd8, 0xd5, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rapidash\u019e"}, "79": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xe4, 0xe3, 0xdf, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowpoke\u019e"}, "80": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xd6, 0xe6, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowbro\u019e"}, "81": {"bytes": "0xc7, 0xd5, 0xdb, 0xe2, 0xd9, 0xe1, 0xdd, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magnemite\u019e"}, "82": {"bytes": "0xc7, 0xd5, 0xdb, 0xe2, 0xd9, 0xe8, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magneton\u019e"}, "83": {"bytes": "0xc0, 0xd5, 0xe6, 0xda, 0xd9, 0xe8, 0xd7, 0xdc, 0xb4, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Farfetch\u2019d\u019e"}, "84": {"bytes": "0xbe, 0xe3, 0xd8, 0xe9, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Doduo\u019e"}, "85": {"bytes": "0xbe, 0xe3, 0xd8, 0xe6, 0xdd, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dodrio\u019e"}, "86": {"bytes": "0xcd, 0xd9, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seel\u019e"}, "87": {"bytes": "0xbe, 0xd9, 0xeb, 0xdb, 0xe3, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dewgong\u019e"}, "88": {"bytes": "0xc1, 0xe6, 0xdd, 0xe1, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Grimer\u019e"}, "89": {"bytes": "0xc7, 0xe9, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Muk\u019e"}, "90": {"bytes": "0xcd, 0xdc, 0xd9, 0xe0, 0xe0, 0xd8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Shellder\u019e"}, "91": {"bytes": "0xbd, 0xe0, 0xe3, 0xed, 0xe7, 0xe8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cloyster\u019e"}, "92": {"bytes": "0xc1, 0xd5, 0xe7, 0xe8, 0xe0, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gastly\u019e"}, "93": {"bytes": "0xc2, 0xd5, 0xe9, 0xe2, 0xe8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Haunter\u019e"}, "94": {"bytes": "0xc1, 0xd9, 0xe2, 0xdb, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gengar\u019e"}, "95": {"bytes": "0xc9, 0xe2, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Onix\u019e"}, "96": {"bytes": "0xbe, 0xe6, 0xe3, 0xeb, 0xee, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Drowzee\u019e"}, "97": {"bytes": "0xc2, 0xed, 0xe4, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hypno\u019e"}, "98": {"bytes": "0xc5, 0xe6, 0xd5, 0xd6, 0xd6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Krabby\u019e"}, "99": {"bytes": "0xc5, 0xdd, 0xe2, 0xdb, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kingler\u019e"}, "100": {"bytes": "0xd0, 0xe3, 0xe0, 0xe8, 0xe3, 0xe6, 0xd6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Voltorb\u019e"}, "101": {"bytes": "0xbf, 0xe0, 0xd9, 0xd7, 0xe8, 0xe6, 0xe3, 0xd8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Electrode\u019e"}, "102": {"bytes": "0xbf, 0xec, 0xd9, 0xdb, 0xdb, 0xd7, 0xe9, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Exeggcute\u019e"}, "103": {"bytes": "0xbf, 0xec, 0xd9, 0xdb, 0xdb, 0xe9, 0xe8, 0xe3, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Exeggutor\u019e"}, "104": {"bytes": "0xbd, 0xe9, 0xd6, 0xe3, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cubone\u019e"}, "105": {"bytes": "0xc7, 0xd5, 0xe6, 0xe3, 0xeb, 0xd5, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Marowak\u019e"}, "106": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xe0, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmonlee\u019e"}, "107": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xd7, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmonchan\u019e"}, "108": {"bytes": "0xc6, 0xdd, 0xd7, 0xdf, 0xdd, 0xe8, 0xe9, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lickitung\u019e"}, "109": {"bytes": "0xc5, 0xe3, 0xda, 0xda, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Koffing\u019e"}, "110": {"bytes": "0xd1, 0xd9, 0xd9, 0xee, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weezing\u019e"}, "111": {"bytes": "0xcc, 0xdc, 0xed, 0xdc, 0xe3, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rhyhorn\u019e"}, "112": {"bytes": "0xcc, 0xdc, 0xed, 0xd8, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rhydon\u019e"}, "113": {"bytes": "0xbd, 0xdc, 0xd5, 0xe2, 0xe7, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chansey\u019e"}, "114": {"bytes": "0xce, 0xd5, 0xe2, 0xdb, 0xd9, 0xe0, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tangela\u019e"}, "115": {"bytes": "0xc5, 0xd5, 0xe2, 0xdb, 0xd5, 0xe7, 0xdf, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kangaskhan\u019e"}, "116": {"bytes": "0xc2, 0xe3, 0xe6, 0xe7, 0xd9, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Horsea\u019e"}, "117": {"bytes": "0xcd, 0xd9, 0xd5, 0xd8, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seadra\u019e"}, "118": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Goldeen\u019e"}, "119": {"bytes": "0xcd, 0xd9, 0xd5, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seaking\u019e"}, "120": {"bytes": "0xcd, 0xe8, 0xd5, 0xe6, 0xed, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Staryu\u019e"}, "121": {"bytes": "0xcd, 0xe8, 0xd5, 0xe6, 0xe1, 0xdd, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Starmie\u019e"}, "122": {"bytes": "0xc7, 0xe6, 0xad, 0x0, 0xc7, 0xdd, 0xe1, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mr. Mime\u019e"}, "123": {"bytes": "0xcd, 0xd7, 0xed, 0xe8, 0xdc, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Scyther\u019e"}, "124": {"bytes": "0xc4, 0xed, 0xe2, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jynx\u019e"}, "125": {"bytes": "0xbf, 0xe0, 0xd9, 0xd7, 0xe8, 0xd5, 0xd6, 0xe9, 0xee, 0xee, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Electabuzz\u019e"}, "126": {"bytes": "0xc7, 0xd5, 0xdb, 0xe1, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magmar\u019e"}, "127": {"bytes": "0xca, 0xdd, 0xe2, 0xe7, 0xdd, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pinsir\u019e"}, "128": {"bytes": "0xce, 0xd5, 0xe9, 0xe6, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tauros\u019e"}, "129": {"bytes": "0xc7, 0xd5, 0xdb, 0xdd, 0xdf, 0xd5, 0xe6, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magikarp\u019e"}, "130": {"bytes": "0xc1, 0xed, 0xd5, 0xe6, 0xd5, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gyarados\u019e"}, "131": {"bytes": "0xc6, 0xd5, 0xe4, 0xe6, 0xd5, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lapras\u019e"}, "132": {"bytes": "0xbe, 0xdd, 0xe8, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ditto\u019e"}, "133": {"bytes": "0xbf, 0xd9, 0xea, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Eevee\u019e"}, "134": {"bytes": "0xd0, 0xd5, 0xe4, 0xe3, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vaporeon\u019e"}, "135": {"bytes": "0xc4, 0xe3, 0xe0, 0xe8, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jolteon\u019e"}, "136": {"bytes": "0xc0, 0xe0, 0xd5, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Flareon\u019e"}, "137": {"bytes": "0xca, 0xe3, 0xe6, 0xed, 0xdb, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Porygon\u019e"}, "138": {"bytes": "0xc9, 0xe1, 0xd5, 0xe2, 0xed, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Omanyte\u019e"}, "139": {"bytes": "0xc9, 0xe1, 0xd5, 0xe7, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Omastar\u019e"}, "140": {"bytes": "0xc5, 0xd5, 0xd6, 0xe9, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kabuto\u019e"}, "141": {"bytes": "0xc5, 0xd5, 0xd6, 0xe9, 0xe8, 0xe3, 0xe4, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kabutops\u019e"}, "142": {"bytes": "0xbb, 0xd9, 0xe6, 0xe3, 0xd8, 0xd5, 0xd7, 0xe8, 0xed, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Aerodactyl\u019e"}, "143": {"bytes": "0xcd, 0xe2, 0xe3, 0xe6, 0xe0, 0xd5, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Snorlax\u019e"}, "144": {"bytes": "0xbb, 0xe6, 0xe8, 0xdd, 0xd7, 0xe9, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Articuno\u019e"}, "145": {"bytes": "0xd4, 0xd5, 0xe4, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Zapdos\u019e"}, "146": {"bytes": "0xc7, 0xe3, 0xe0, 0xe8, 0xe6, 0xd9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Moltres\u019e"}, "147": {"bytes": "0xbe, 0xe6, 0xd5, 0xe8, 0xdd, 0xe2, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dratini\u019e"}, "148": {"bytes": "0xbe, 0xe6, 0xd5, 0xdb, 0xe3, 0xe2, 0xd5, 0xdd, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dragonair\u019e"}, "149": {"bytes": "0xbe, 0xe6, 0xd5, 0xdb, 0xe3, 0xe2, 0xdd, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dragonite\u019e"}, "150": {"bytes": "0xc7, 0xd9, 0xeb, 0xe8, 0xeb, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mewtwo\u019e"}, "151": {"bytes": "0xc7, 0xd9, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mew\u019e"}, "152": {"bytes": "0xbd, 0xdc, 0xdd, 0xdf, 0xe3, 0xe6, 0xdd, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chikorita\u019e"}, "153": {"bytes": "0xbc, 0xd5, 0xed, 0xe0, 0xd9, 0xd9, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bayleef\u019e"}, "154": {"bytes": "0xc7, 0xd9, 0xdb, 0xd5, 0xe2, 0xdd, 0xe9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Meganium\u019e"}, "155": {"bytes": "0xbd, 0xed, 0xe2, 0xd8, 0xd5, 0xe5, 0xe9, 0xdd, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cyndaquil\u019e"}, "156": {"bytes": "0xcb, 0xe9, 0xdd, 0xe0, 0xd5, 0xea, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Quilava\u019e"}, "157": {"bytes": "0xce, 0xed, 0xe4, 0xdc, 0xe0, 0xe3, 0xe7, 0xdd, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Typhlosion\u019e"}, "158": {"bytes": "0xce, 0xe3, 0xe8, 0xe3, 0xd8, 0xdd, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Totodile\u019e"}, "159": {"bytes": "0xbd, 0xe6, 0xe3, 0xd7, 0xe3, 0xe2, 0xd5, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Croconaw\u019e"}, "160": {"bytes": "0xc0, 0xd9, 0xe6, 0xd5, 0xe0, 0xdd, 0xdb, 0xd5, 0xe8, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Feraligatr\u019e"}, "161": {"bytes": "0xcd, 0xd9, 0xe2, 0xe8, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sentret\u019e"}, "162": {"bytes": "0xc0, 0xe9, 0xe6, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Furret\u019e"}, "163": {"bytes": "0xc2, 0xe3, 0xe3, 0xe8, 0xdc, 0xe3, 0xe3, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hoothoot\u019e"}, "164": {"bytes": "0xc8, 0xe3, 0xd7, 0xe8, 0xe3, 0xeb, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Noctowl\u019e"}, "165": {"bytes": "0xc6, 0xd9, 0xd8, 0xed, 0xd6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ledyba\u019e"}, "166": {"bytes": "0xc6, 0xd9, 0xd8, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ledian\u019e"}, "167": {"bytes": "0xcd, 0xe4, 0xdd, 0xe2, 0xd5, 0xe6, 0xd5, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Spinarak\u019e"}, "168": {"bytes": "0xbb, 0xe6, 0xdd, 0xd5, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ariados\u019e"}, "169": {"bytes": "0xbd, 0xe6, 0xe3, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Crobat\u019e"}, "170": {"bytes": "0xbd, 0xdc, 0xdd, 0xe2, 0xd7, 0xdc, 0xe3, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chinchou\u019e"}, "171": {"bytes": "0xc6, 0xd5, 0xe2, 0xe8, 0xe9, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lanturn\u019e"}, "172": {"bytes": "0xca, 0xdd, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pichu\u019e"}, "173": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xda, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cleffa\u019e"}, "174": {"bytes": "0xc3, 0xdb, 0xdb, 0xe0, 0xed, 0xd6, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Igglybuff\u019e"}, "175": {"bytes": "0xce, 0xe3, 0xdb, 0xd9, 0xe4, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Togepi\u019e"}, "176": {"bytes": "0xce, 0xe3, 0xdb, 0xd9, 0xe8, 0xdd, 0xd7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Togetic\u019e"}, "177": {"bytes": "0xc8, 0xd5, 0xe8, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Natu\u019e"}, "178": {"bytes": "0xd2, 0xd5, 0xe8, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Xatu\u019e"}, "179": {"bytes": "0xc7, 0xd5, 0xe6, 0xd9, 0xd9, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mareep\u019e"}, "180": {"bytes": "0xc0, 0xe0, 0xd5, 0xd5, 0xda, 0xda, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Flaaffy\u019e"}, "181": {"bytes": "0xbb, 0xe1, 0xe4, 0xdc, 0xd5, 0xe6, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ampharos\u019e"}, "182": {"bytes": "0xbc, 0xd9, 0xe0, 0xe0, 0xe3, 0xe7, 0xe7, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bellossom\u019e"}, "183": {"bytes": "0xc7, 0xd5, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Marill\u019e"}, "184": {"bytes": "0xbb, 0xee, 0xe9, 0xe1, 0xd5, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Azumarill\u019e"}, "185": {"bytes": "0xcd, 0xe9, 0xd8, 0xe3, 0xeb, 0xe3, 0xe3, 0xd8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sudowoodo\u019e"}, "186": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xe8, 0xe3, 0xd9, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Politoed\u019e"}, "187": {"bytes": "0xc2, 0xe3, 0xe4, 0xe4, 0xdd, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hoppip\u019e"}, "188": {"bytes": "0xcd, 0xdf, 0xdd, 0xe4, 0xe0, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Skiploom\u019e"}, "189": {"bytes": "0xc4, 0xe9, 0xe1, 0xe4, 0xe0, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jumpluff\u019e"}, "190": {"bytes": "0xbb, 0xdd, 0xe4, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Aipom\u019e"}, "191": {"bytes": "0xcd, 0xe9, 0xe2, 0xdf, 0xd9, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sunkern\u019e"}, "192": {"bytes": "0xcd, 0xe9, 0xe2, 0xda, 0xe0, 0xe3, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sunflora\u019e"}, "193": {"bytes": "0xd3, 0xd5, 0xe2, 0xe1, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Yanma\u019e"}, "194": {"bytes": "0xd1, 0xe3, 0xe3, 0xe4, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wooper\u019e"}, "195": {"bytes": "0xcb, 0xe9, 0xd5, 0xdb, 0xe7, 0xdd, 0xe6, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Quagsire\u019e"}, "196": {"bytes": "0xbf, 0xe7, 0xe4, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Espeon\u019e"}, "197": {"bytes": "0xcf, 0xe1, 0xd6, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Umbreon\u019e"}, "198": {"bytes": "0xc7, 0xe9, 0xe6, 0xdf, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Murkrow\u019e"}, "199": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowking\u019e"}, "200": {"bytes": "0xc7, 0xdd, 0xe7, 0xd8, 0xe6, 0xd9, 0xd5, 0xea, 0xe9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Misdreavus\u019e"}, "201": {"bytes": "0xcf, 0xe2, 0xe3, 0xeb, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Unown\u019e"}, "202": {"bytes": "0xd1, 0xe3, 0xd6, 0xd6, 0xe9, 0xda, 0xda, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wobbuffet\u019e"}, "203": {"bytes": "0xc1, 0xdd, 0xe6, 0xd5, 0xda, 0xd5, 0xe6, 0xdd, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Girafarig\u019e"}, "204": {"bytes": "0xca, 0xdd, 0xe2, 0xd9, 0xd7, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pineco\u019e"}, "205": {"bytes": "0xc0, 0xe3, 0xe6, 0xe6, 0xd9, 0xe8, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Forretress\u019e"}, "206": {"bytes": "0xbe, 0xe9, 0xe2, 0xe7, 0xe4, 0xd5, 0xe6, 0xd7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dunsparce\u019e"}, "207": {"bytes": "0xc1, 0xe0, 0xdd, 0xdb, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gligar\u019e"}, "208": {"bytes": "0xcd, 0xe8, 0xd9, 0xd9, 0xe0, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Steelix\u019e"}, "209": {"bytes": "0xcd, 0xe2, 0xe9, 0xd6, 0xd6, 0xe9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Snubbull\u019e"}, "210": {"bytes": "0xc1, 0xe6, 0xd5, 0xe2, 0xd6, 0xe9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Granbull\u019e"}, "211": {"bytes": "0xcb, 0xeb, 0xdd, 0xe0, 0xda, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Qwilfish\u019e"}, "212": {"bytes": "0xcd, 0xd7, 0xdd, 0xee, 0xe3, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Scizor\u019e"}, "213": {"bytes": "0xcd, 0xdc, 0xe9, 0xd7, 0xdf, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Shuckle\u019e"}, "214": {"bytes": "0xc2, 0xd9, 0xe6, 0xd5, 0xd7, 0xe6, 0xe3, 0xe7, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Heracross\u019e"}, "215": {"bytes": "0xcd, 0xe2, 0xd9, 0xd5, 0xe7, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sneasel\u019e"}, "216": {"bytes": "0xce, 0xd9, 0xd8, 0xd8, 0xdd, 0xe9, 0xe6, 0xe7, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Teddiursa\u019e"}, "217": {"bytes": "0xcf, 0xe6, 0xe7, 0xd5, 0xe6, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ursaring\u019e"}, "218": {"bytes": "0xcd, 0xe0, 0xe9, 0xdb, 0xe1, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slugma\u019e"}, "219": {"bytes": "0xc7, 0xd5, 0xdb, 0xd7, 0xd5, 0xe6, 0xdb, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magcargo\u019e"}, "220": {"bytes": "0xcd, 0xeb, 0xdd, 0xe2, 0xe9, 0xd6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Swinub\u019e"}, "221": {"bytes": "0xca, 0xdd, 0xe0, 0xe3, 0xe7, 0xeb, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Piloswine\u019e"}, "222": {"bytes": "0xbd, 0xe3, 0xe6, 0xe7, 0xe3, 0xe0, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Corsola\u019e"}, "223": {"bytes": "0xcc, 0xd9, 0xe1, 0xe3, 0xe6, 0xd5, 0xdd, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Remoraid\u019e"}, "224": {"bytes": "0xc9, 0xd7, 0xe8, 0xdd, 0xe0, 0xe0, 0xd9, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Octillery\u019e"}, "225": {"bytes": "0xbe, 0xd9, 0xe0, 0xdd, 0xd6, 0xdd, 0xe6, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Delibird\u019e"}, "226": {"bytes": "0xc7, 0xd5, 0xe2, 0xe8, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mantine\u019e"}, "227": {"bytes": "0xcd, 0xdf, 0xd5, 0xe6, 0xe1, 0xe3, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Skarmory\u019e"}, "228": {"bytes": "0xc2, 0xe3, 0xe9, 0xe2, 0xd8, 0xe3, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Houndour\u019e"}, "229": {"bytes": "0xc2, 0xe3, 0xe9, 0xe2, 0xd8, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Houndoom\u019e"}, "230": {"bytes": "0xc5, 0xdd, 0xe2, 0xdb, 0xd8, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kingdra\u019e"}, "231": {"bytes": "0xca, 0xdc, 0xd5, 0xe2, 0xe4, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Phanpy\u019e"}, "232": {"bytes": "0xbe, 0xe3, 0xe2, 0xe4, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Donphan\u019e"}, "233": {"bytes": "0xca, 0xe3, 0xe6, 0xed, 0xdb, 0xe3, 0xe2, 0xa3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Porygon2\u019e"}, "234": {"bytes": "0xcd, 0xe8, 0xd5, 0xe2, 0xe8, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Stantler\u019e"}, "235": {"bytes": "0xcd, 0xe1, 0xd9, 0xd5, 0xe6, 0xdb, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Smeargle\u019e"}, "236": {"bytes": "0xce, 0xed, 0xe6, 0xe3, 0xdb, 0xe9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tyrogue\u019e"}, "237": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xe8, 0xe3, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmontop\u019e"}, "238": {"bytes": "0xcd, 0xe1, 0xe3, 0xe3, 0xd7, 0xdc, 0xe9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Smoochum\u019e"}, "239": {"bytes": "0xbf, 0xe0, 0xd9, 0xdf, 0xdd, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Elekid\u019e"}, "240": {"bytes": "0xc7, 0xd5, 0xdb, 0xd6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magby\u019e"}, "241": {"bytes": "0xc7, 0xdd, 0xe0, 0xe8, 0xd5, 0xe2, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Miltank\u019e"}, "242": {"bytes": "0xbc, 0xe0, 0xdd, 0xe7, 0xe7, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Blissey\u019e"}, "243": {"bytes": "0xcc, 0xd5, 0xdd, 0xdf, 0xe3, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raikou\u019e"}, "244": {"bytes": "0xbf, 0xe2, 0xe8, 0xd9, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Entei\u019e"}, "245": {"bytes": "0xcd, 0xe9, 0xdd, 0xd7, 0xe9, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Suicune\u019e"}, "246": {"bytes": "0xc6, 0xd5, 0xe6, 0xea, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Larvitar\u019e"}, "247": {"bytes": "0xca, 0xe9, 0xe4, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pupitar\u019e"}, "248": {"bytes": "0xce, 0xed, 0xe6, 0xd5, 0xe2, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tyranitar\u019e"}, "249": {"bytes": "0xc6, 0xe9, 0xdb, 0xdd, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lugia\u019e"}, "250": {"bytes": "0xc2, 0xe3, 0xae, 0xc9, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ho-Oh\u019e"}, "251": {"bytes": "0xbd, 0xd9, 0xe0, 0xd9, 0xd6, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Celebi\u019e"}}, "Warnings": {"0": "Warning! ' found, replacing with \u2019 !", "1": "Warning! ' found, replacing with \u2019 !", "2": "Warning! ' found, replacing with \u2019 !", "3": "Warning! ' found, replacing with \u2019 !", "4": "Warning! ' found, replacing with \u2019 !", "5": "Warning! ' found, replacing with \u2019 !", "6": "Warning! ' found, replacing with \u2019 !", "7": "Warning! ' found, replacing with \u2019 !", "8": "Warning! ' found, replacing with \u2019 !", "9": "Warning! ' found, replacing with \u2019 !", "10": "Warning! ' found, replacing with \u2019 !", "11": "Warning! ' found, replacing with \u2019 !", "12": "Warning! ' found, replacing with \u2019 !", "13": "Warning! ' found, replacing with \u2019 !", "14": "Warning! ' found, replacing with \u2019 !", "15": "Warning! ' found, replacing with \u2019 !", "16": "Warning! ' found, replacing with \u2019 !", "17": "Warning! ' found, replacing with \u2019 !", "18": "Warning! ' found, replacing with \u2019 !", "19": "Warning! ' found, replacing with \u2019 !", "20": "Warning! ' found, replacing with \u2019 !", "21": "Warning! ' found, replacing with \u2019 !", "22": "Warning! ' found, replacing with \u2019 !", "23": "Warning! ' found, replacing with \u2019 !", "24": "Warning! ' found, replacing with \u2019 !", "25": "Warning! ' found, replacing with \u2019 !", "26": "Warning! ' found, replacing with \u2019 !", "27": "Warning! ' found, replacing with \u2019 !", "28": "Warning! ' found, replacing with \u2019 !", "29": "Warning! ' found, replacing with \u2019 !", "30": "Warning! ' found, replacing with \u2019 !", "31": "Warning! ' found, replacing with \u2019 !", "32": "Warning! ' found, replacing with \u2019 !", "33": "Warning! ' found, replacing with \u2019 !", "34": "Warning! ' found, replacing with \u2019 !", "35": "Warning! ' found, replacing with \u2019 !", "36": "Warning! ' found, replacing with \u2019 !", "37": "Warning! ' found, replacing with \u2019 !", "38": "Warning! ' found, replacing with \u2019 !", "39": "Warning! ' found, replacing with \u2019 !", "40": "Warning! ' found, replacing with \u2019 !", "41": "Warning! ' found, replacing with \u2019 !", "42": "Warning! ' found, replacing with \u2019 !", "43": "Warning! ' found, replacing with \u2019 !", "44": "Warning! ' found, replacing with \u2019 !", "45": "Warning! ' found, replacing with \u2019 !", "46": "Warning! ' found, replacing with \u2019 !", "47": "Warning! ' found, replacing with \u2019 !", "48": "Warning! ' found, replacing with \u2019 !", "49": "Warning! ' found, replacing with \u2019 !", "50": "Warning! ' found, replacing with \u2019 !", "51": "Warning! ' found, replacing with \u2019 !", "52": "Warning! ' found, replacing with \u2019 !", "53": "Warning! ' found, replacing with \u2019 !", "54": "Warning! ' found, replacing with \u2019 !"}, "Errors": {"0": "Error! No match found for char [ \" ]!", "1": "ERROR! Made a line break when disabled, sentence \"Remote and Arbitrary Code\u0147Execution assistance: \u0147\u0147-TimoVM \u0147\u0147Remote Multiboot\u0147functionality: \u023c\" is too long!"}}, "German": {"PTGB": {"DIA_OPEN": {"bytes": "0xc2, 0xd9, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xab, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xd9, 0xe2, 0xe2, 0xd9, 0xe0, 0xad, 0x0, 0xbb, 0xe7, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xd9, 0xb8, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xd5, 0x0, 0xe7, 0xd7, 0xdd, 0xd9, 0xe2, 0xe8, 0xdd, 0xe7, 0xe8, 0xad, 0x0, 0xc3, 0xe2, 0xfe, 0xda, 0xd5, 0xd7, 0xe8, 0xb8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xe9, 0xd6, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe7, 0xfe, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0xab, 0xfb, 0xc7, 0xed, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe0, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xea, 0xd5, 0xe6, 0xdd, 0xe3, 0xe9, 0xe7, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xdc, 0xd5, 0xd8, 0xfe, 0xd5, 0xe2, 0xed, 0x0, 0xd6, 0xe6, 0xd9, 0xd5, 0xdf, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0xe7, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xad, 0xad, 0xfb, 0xcd, 0xe3, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0xb4, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xdd, 0xe2, 0xdb, 0xfe, 0xe3, 0xe2, 0x0, 0xd5, 0x0, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0xfe, 0xe3, 0xe0, 0xd8, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0xab, 0xfb, 0xc3, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xdc, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0xb8, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xb4, 0xe7, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xdd, 0xe2, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd9, 0xed, 0x0, 0xe1, 0xd9, 0xd9, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0xab, 0xfb, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xda, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe1, 0xed, 0x0, 0xdb, 0xe3, 0xd5, 0xe0, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xd8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xd5, 0xe1, 0xd9, 0xae, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb4, 0xe7, 0xfe, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xfb, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xe2, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe9, 0xe8, 0xfe, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xe7, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xa3, 0xa6, 0xa1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xd7, 0xd5, 0xe8, 0xd5, 0xe0, 0xe3, 0xdb, 0xe9, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xbe, 0xd9, 0xec, 0xae, 0x0, 0xe3, 0xe6, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe6, 0xe8, 0xad, 0xfb, 0xbc, 0xe9, 0xe8, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xae, 0xfe, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xe6, 0xd9, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xd5, 0xe0, 0xe0, 0xab, 0xfb, 0xc9, 0xe2, 0xd9, 0x0, 0xe0, 0xd5, 0xe7, 0xe8, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0xb8, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0xae, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdb, 0xe3, 0xd9, 0xe7, 0x0, 0xeb, 0xe6, 0xe3, 0xe2, 0xdb, 0xab, 0xfe, 0xc3, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdf, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xad, 0xad, 0xad, 0xfb, 0xeb, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0xb8, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hey there! I\u2019m Professor Fennel. As\u0147you can see, I\u2019m a scientist. In\u0147fact, the subject I\u2019m researching is\u0147Trainers!\u023cMy dream is to collect save files of\u0147various trainers, but I haven\u2019t had\u0147any breakthroughs yet...\u023cSo in the meantime, I\u2019ve been working\u0147on a different project with one of my\u0147old friends!\u023cIn my home region, there\u2019s a location\u0147that can make a Pok\u00e9mon\u2019s dreams into\u0147reality.\u023cThis means that any other Pok\u00e9mon\u0147they meet in their dreams become\u0147real!\u023cThat\u2019s fantastic, but my goal is to\u0147do the same- just with a trainer\u2019s\u0147dream instead! That\u2019s why I need your\u0147help!\u023cI want to bring as many Pok\u00e9mon out\u0147of your dreams as possible!\u023cThere\u2019s just over 250 Pok\u00e9mon I want\u0147to catalogue in my Dream Pok\u00e9Dex- or\u0147Dream Dex for short.\u023cBut I\u2019ll let you keep any Pok\u00e9mon-\u0147they\u2019re from your dreams after all!\u023cOne last note, save data backups are\u0147recommended- just on the off chance\u0147that something goes wrong!\u0147I think that\u2019s everything...\u023cwhenever you\u2019re ready to start, just\u0147let me know!\u019e"}, "DIA_E4": {"bytes": "0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xe8, 0xdc, 0xe6, 0xdd, 0xe0, 0xe0, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0xfe, 0xd8, 0xd9, 0xd7, 0xdd, 0xd8, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe9, 0xe6, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xd9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0xab, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd5, 0xe8, 0xd9, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbf, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xc0, 0xe3, 0xe9, 0xe6, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xdc, 0xd5, 0xe1, 0xe4, 0xdd, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi trainer! I\u2019m thrilled you\u2019ve\u0147decided to help with our research,\u0147but we need the best of the best!\u023cCome back after you\u2019ve beaten the\u0147Elite Four and become the Champion!\u019e"}, "DIA_MG_FRLGE": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0xfe, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xae, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xc1, 0xc3, 0xc0, 0xce, 0xab, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe2, 0xd9, 0xd5, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xc7, 0xd5, 0xe6, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xda, 0xdd, 0xe0, 0xe0, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe2, 0xd5, 0xdd, 0xe6, 0xd9, 0x0, 0xd5, 0xe7, 0xfe, 0xda, 0xe3, 0xe0, 0xe0, 0xe3, 0xeb, 0xe7, 0xf0, 0x0, 0xc6, 0xc3, 0xc8, 0xc5, 0x0, 0xce, 0xc9, 0xc1, 0xbf, 0xce, 0xc2, 0xbf, 0xcc, 0x0, 0xd1, 0xc3, 0xce, 0xc2, 0x0, 0xbb, 0xc6, 0xc6, 0xad, 0xfb, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xdb, 0xe3, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, one more thing to take\u0147care of before we can begin- you need\u0147to enable MYSTERY GIFT!\u023cHead to the nearest Pok\u00e9 Mart and\u0147fill out the questionnaire as\u0147follows: LINK TOGETHER WITH ALL.\u023cAfter that, you should be all set to\u0147go! See you soon!\u019e"}, "DIA_MG_RS": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0xfe, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xae, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0xab, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbf, 0xce, 0xbb, 0xc6, 0xbc, 0xcf, 0xcc, 0xc1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xbd, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xe2, 0x0, 0xe2, 0xd9, 0xec, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0xf0, 0xfe, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0x0, 0xc3, 0xcd, 0x0, 0xbf, 0xd2, 0xbd, 0xc3, 0xce, 0xc3, 0xc8, 0xc1, 0xad, 0x0, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0xb8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdb, 0xe3, 0xab, 0xfb, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, one more thing to take\u0147care of before we can begin- you need\u0147to enable MYSTERY EVENT!\u023cHead to the PETALBURG Pok\u00e9mon Center\u0147and tell the man next to the PC:\u0147MYSTERY EVENT IS EXCITING. After\u0147that, you should be all set to go!\u023cSee you soon!\u019e"}, "DIA_LETS_START": {"bytes": "0xca, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0xb8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xc3, 0xfe, 0xe2, 0xd9, 0xd9, 0xd8, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xdb, 0xd9, 0xe8, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0xd9, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Perfect, that\u2019s all the information I\u0147need! Let\u2019s get started!\u019e"}, "DIA_START": {"bytes": "0xc9, 0xe2, 0x0, 0xd5, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xb8, 0xfe, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xdd, 0xe7, 0xdc, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xad, 0xfb, 0xc3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xad, 0xfb, 0xce, 0xdc, 0xd9, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xfe, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0x0, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0xad, 0xfb, 0xc9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0xb8, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xbd, 0xe0, 0xe9, 0xd6, 0xfe, 0xd5, 0xe8, 0xe8, 0xd9, 0xe2, 0xd8, 0xd5, 0xe2, 0xe8, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0x0, 0xdd, 0xe2, 0xdd, 0xe8, 0xdd, 0xd5, 0xe8, 0xd9, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xd9, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "On a second Game Boy family system,\u0147please load the Game Boy Pok\u00e9mon game\u0147you wish to transfer from.\u023cIn your Game Boy Pok\u00e9mon game, make\u0147your current box the one you want to\u0147transfer from.\u023cThen connect this Game Boy Advance to\u0147the other Game Boy family system\u0147using a Game Boy Color link cable.\u023cOnce you\u2019re ready, press A on this\u0147device, talk to the Cable Club\u0147attendant, and then initiate a trade.\u019e"}, "DIA_TRANS_GOOD": {"bytes": "0xbb, 0xe1, 0xd5, 0xee, 0xdd, 0xe2, 0xdb, 0xab, 0x0, 0xc0, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0xab, 0x0, 0xbf, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0xfe, 0xe4, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Amazing! Fantastic! Everything went\u0147perfectly!\u019e"}, "DIA_NEW_DEX": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xdd, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xab, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xd9, 0xec, 0xe8, 0xe6, 0xd5, 0x0, 0xe7, 0xeb, 0xd9, 0xd9, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xe6, 0xd9, 0xeb, 0xd5, 0xe6, 0xd8, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like there\u2019s at least one\u0147new Pok\u00e9mon here that isn\u2019t in the\u0147Dream Dex! I\u2019ll give them something\u0147extra sweet as a reward for you both.\u019e"}, "DIA_NO_NEW_DEX": {"bytes": "0xc3, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0xe2, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0xfe, 0xe3, 0xdf, 0xd5, 0xed, 0xab, 0x0, 0xc3, 0xe8, 0xb4, 0xe7, 0x0, 0xdd, 0xe1, 0xe4, 0xe3, 0xe6, 0xe8, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0xfe, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe9, 0xe0, 0xe8, 0xe7, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe1, 0xe9, 0xe0, 0xe8, 0xdd, 0xe4, 0xe0, 0xd9, 0x0, 0xe8, 0xd9, 0xe7, 0xe8, 0xe7, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It doesn\u2019t look like there\u2019s anything\u0147new for your Dream Dex, but that\u2019s\u0147okay! It\u2019s important to confirm\u0147research results with multiple tests!\u019e"}, "DIA_SEND_FRIEND_KANTO": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0x0, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0x0, 0xe3, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xe3, 0xe2, 0x0, 0xcd, 0xd9, 0xea, 0xd9, 0xe2, 0x0, 0xc3, 0xe7, 0xe0, 0xd5, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up! They live just south of\u0147the Pok\u00e9mon center on Seven Island!\u019e"}, "DIA_SEND_FRIEND_HOENN_RS": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xc7, 0xe3, 0xe7, 0xe7, 0xd8, 0xd9, 0xd9, 0xe4, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up!\u023cThey live just southeast of the\u0147Pok\u00e9mon center in Mossdeep City!\u019e"}, "DIA_SEND_FRIEND_HOENN_E": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xcd, 0xe3, 0xe3, 0xe8, 0xe3, 0xe4, 0xe3, 0xe0, 0xdd, 0xe7, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up!\u023cThey live just southeast of the\u0147Pok\u00e9mon center in Sootopolis City!\u019e"}, "DIA_THANK": {"bytes": "0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xfe, 0xd1, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xb8, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Thank you so much for your help!\u0147Whenever you want to transfer more\u0147Pok\u00e9mon, just let me know! See you\u0147around!\u019e"}, "DIA_GET_MON": {"bytes": "0xe9, 0xe2, 0xe9, 0xe7, 0xd9, 0xd8, 0xb8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "unused, will be removed\u019e"}, "DIA_MG_OTHER_EVENT": {"bytes": "0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xfe, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xad, 0xfe, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xd6, 0xe0, 0xd9, 0xe1, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe3, 0xea, 0xd9, 0xe6, 0xeb, 0xe6, 0xdd, 0xe8, 0xe8, 0xd9, 0xe2, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xad, 0xfb, 0xce, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xe2, 0xe3, 0xeb, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xec, 0xe4, 0xd9, 0xe6, 0xdd, 0xd9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0xae, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi Trainer! It looks like you have a\u0147different event currently loaded.\u0147That\u2019s no problem, but it will be\u0147overwritten if you continue.\u023cTurn off the system now if you want\u0147to experience your current event, but\u0147otherwise-\u019e"}, "DIA_PKMN_TO_COLLECT": {"bytes": "0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe9, 0xe4, 0xad, 0xad, 0xad, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0xb4, 0xe8, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe9, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0xfe, 0xe8, 0xdc, 0xe3, 0xe7, 0xd9, 0x0, 0xe9, 0xe4, 0xad, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi Trainer! It looks like you still\u0147have Pok\u00e9mon to pick up... I can\u2019t\u0147send over new Pok\u00e9mon until you pick\u0147those up.\u023cCome back after you\u2019ve received them!\u019e"}, "DIA_NO_VALID_PKMN": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xea, 0xd5, 0xe0, 0xdd, 0xd8, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xe2, 0xe3, 0xeb, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xd8, 0xe3, 0xe9, 0xd6, 0xe0, 0xd9, 0x0, 0xd7, 0xdc, 0xd9, 0xd7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xdd, 0xe8, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry Trainer, it doesn\u2019t look like\u0147you have any valid Pok\u00e9mon in your\u0147current box right now.\u023cGo double check your current box and\u0147we can give it another shot!\u019e"}, "DIA_ASK_QUEST": {"bytes": "0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xbc, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xb8, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd5, 0xe7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0x0, 0xda, 0xd9, 0xeb, 0x0, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi trainer! Before we begin, I need\u0147to ask you a few questions.\u019e"}, "DIA_WHAT_GAME_TRANS": {"bytes": "0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xac, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "And which Game Boy Pok\u00e9mon game are\u0147you transferring from?\u019e"}, "DIA_WHAT_LANG_TRANS": {"bytes": "0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xac, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "What language is the Game Boy Pok\u00e9mon\u0147game that you\u2019re transferring from?\u019e"}, "DIA_NO_GB_ROM": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xe7, 0xe3, 0xe6, 0xe6, 0xed, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xea, 0xd9, 0xe6, 0xe7, 0xdd, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m sorry, but that version in that\u0147language is not currently supported.\u019e"}, "DIA_IN_BOX": {"bytes": "0xbb, 0xe0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0xad, 0xfb, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xd9, 0xe1, 0xd6, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xd5, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe7, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xbd, 0xbb, 0xc8, 0xc8, 0xc9, 0xce, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xad, 0xfb, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xe3, 0xe6, 0xfe, 0xe7, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Alright! Let\u2019s take a look at the\u0147Pok\u00e9mon that will be transfered.\u023cPlease remember, once a Pok\u00e9mon is\u0147transfered, it CANNOT be returned to\u0147the Game Boy Game Pak.\u023cSelect confirm once you\u2019re ready, or\u0147select cancel if you want to keep the\u0147Pok\u00e9mon on your Game Boy Game Pak.\u019e"}, "DIA_MYTHIC_CONVERT": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0x0, 0xe6, 0xd5, 0xe6, 0xd9, 0xfe, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xab, 0x0, 0xbe, 0xe9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xe6, 0xd5, 0xe6, 0xdd, 0xe8, 0xed, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xea, 0xd9, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xad, 0xfb, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xd8, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0xb4, 0xe0, 0xe0, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xd9, 0xe8, 0xfe, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xb8, 0x0, 0xc9, 0xce, 0xb8, 0x0, 0xce, 0xc3, 0xbe, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xcd, 0xdc, 0xdd, 0xe2, 0xdd, 0xe2, 0xd9, 0xe7, 0xe7, 0xad, 0xfb, 0xc9, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe0, 0xd9, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe7, 0x0, 0xdd, 0xe7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xdb, 0xe9, 0xd5, 0xe6, 0xd9, 0xe2, 0xe8, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xda, 0xe9, 0xe8, 0xe9, 0xe6, 0xd9, 0xad, 0x0, 0xbe, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xac, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd5, 0xe4, 0xe4, 0xe0, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd6, 0xe3, 0xec, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like you have a rare\u0147Mythical Pok\u00e9mon! Due to their\u0147rarity, it seems they\u2019ve overloaded\u0147the machine.\u023cI can stablize them if you\u2019d like,\u0147but it\u2019ll change some things like met\u0147location, OT, TID, and Shininess.\u023cOtherwise I can leave them as is, but\u0147there\u2019s no guarentee that they\u2019ll be\u0147transferrable in the future. Do you\u0147want me to stablize them?\u023cThis will apply to all of the\u0147Mythical Pok\u00e9mon currently in your\u0147box.\u019e"}, "DIA_CANCEL": {"bytes": "0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0xab, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xdd, 0xda, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "No worries! Feel free to come back if\u0147you change your mind! See you around!\u019e"}, "DIA_SOME_INVALID_PKMN": {"bytes": "0xc3, 0x0, 0xe7, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0xad, 0xfb, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xe3, 0xe0, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe8, 0xd9, 0xe1, 0xe7, 0x0, 0xe3, 0xe6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xdd, 0xd9, 0xd8, 0xfe, 0xdd, 0xe2, 0xd7, 0xe3, 0xe6, 0xe6, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0x0, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0x0, 0xe9, 0xe2, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0xfe, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0xad, 0xfb, 0xce, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xda, 0xdd, 0xe2, 0xd9, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I see there is at least one Pok\u00e9mon\u0147that cannot be transferred from your\u0147current box.\u023cPok\u00e9mon holding items or modified\u0147incorrectly through unintended means\u0147cannot be transferred.\u023cThe other Pok\u00e9mon will transfer just\u0147fine though!\u019e"}, "DIA_MENU_BACK": {"bytes": "0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0xab, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xfe, 0xd5, 0xe2, 0xed, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "No worries! Feel free to come back\u0147any time!\u019e"}, "DIA_IS_MISSINGNO": {"bytes": "0xad, 0xad, 0xad, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xad, 0xad, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0x0, 0xd6, 0xd9, 0x0, 0xdb, 0xe6, 0xd5, 0xe4, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0xb8, 0x0, 0xe7, 0xe3, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "... It seems like one of your Pok\u00e9mon\u0147is messing with the machine... It\u0147looks to only be graphical though, so\u0147we can continue!\u019e"}, "DIA_ERROR_COLOSSEUM": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd7, 0xe3, 0xe0, 0xe3, 0xe7, 0xe7, 0xd9, 0xe9, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0xfe, 0xe6, 0xe3, 0xe3, 0xe1, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like you went to the\u0147colosseum instead of the trading\u0147room! Let\u2019s try that again!\u019e"}, "DIA_ERROR_COM_ENDED": {"bytes": "0xbd, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0xfe, 0xeb, 0xd5, 0xe7, 0x0, 0xe8, 0xd9, 0xe6, 0xe1, 0xdd, 0xe2, 0xd5, 0xe8, 0xd9, 0xd8, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Communication with the other device\u0147was terminated. Let\u2019s try that again!\u019e"}, "DIA_ERROR_DISCONNECT": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xfe, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xd8, 0xdd, 0xe7, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xd9, 0xd8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like the Game Boy Color link\u0147cable was disconnected... Let\u2019s try\u0147that again!\u019e"}, "DIA_ERROR_TIME_ONE": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0xfe, 0xe3, 0xe9, 0xe8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like the connection timed\u0147out... Let\u2019s try that again!\u019e"}, "DIA_ERROR_TIME_TWO": {"bytes": "0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0xfe, 0xe3, 0xe9, 0xe8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It seems like the connection timed\u0147out... Let\u2019s try that again!\u019e"}, "DIA_WHAT_LANG_EVENT": {"bytes": "0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0xac, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "What language is the Game Boy Pok\u00e9mon\u0147game that you want to send an event\u0147to?\u019e"}, "DIA_WHAT_GAME_EVENT": {"bytes": "0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd8, 0xe3, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xac, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "And which Game Boy Pok\u00e9mon game do\u0147you want to send an event to?\u019e"}, "DIA_K_DEX_NOT_FULL": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xa2, 0xa6, 0xa1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xeb, 0xd9, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, it looks like you\u0147haven\u2019t caught all 150 Pok\u00e9mon from\u0147the Kanto region yet.\u023cGo out and catch them all and then\u0147we\u2019ll be able to send over the event!\u019e"}, "DIA_J_DEX_NOT_FULL": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xaa, 0xaa, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc4, 0xe3, 0xdc, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xeb, 0xd9, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, it looks like you\u0147haven\u2019t caught all 99 new Pok\u00e9mon\u0147from the Johto region yet.\u023cGo out and catch them all and then\u0147we\u2019ll be able to send over the event!\u019e"}}, "RSEFRLG": {"dia_textGreet_rse": {"bytes": "0xd1, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0xb8, 0x0, 0xc3, 0x0, 0xe8, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xe0, 0xd8, 0xfe, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0x0, 0xce, 0xcc, 0xbb, 0xc3, 0xc8, 0xbf, 0xcc, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "When I was young, I traveled the world\u0147as a POK\u00e9MON TRAINER.\u019e"}, "dia_textGreet_frlg": {"bytes": "0xc3, 0x0, 0xe1, 0xd5, 0xed, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xe2, 0xe3, 0xeb, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0xd9, 0xe6, 0xb0, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "I may not look like much now,\u0147but when I was younger\u2026\u019e"}, "dia_textMoveBox_rs": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe9, 0xe2, 0xe0, 0xe3, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd8, 0xe3, 0xe3, 0xe6, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to unlock the\u0147door!\u019e"}, "dia_textMoveBox_frlg": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd6, 0xe3, 0xec, 0xd9, 0xe7, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to move the\u0147boxes!\u019e"}, "dia_textMoveBox_e": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe0, 0xd5, 0xe2, 0xe8, 0xe7, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to move the\u0147plants!\u019e"}, "dia_textWeHere_r": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xc7, 0xbb, 0xd2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leader MAXIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_s": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xbb, 0xcc, 0xbd, 0xc2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leader ARCHIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_frlg": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xc1, 0xc3, 0xc9, 0xd0, 0xbb, 0xc8, 0xc8, 0xc3, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Kanto to find\u0147the leader GIOVANNI.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_e": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0xe7, 0x0, 0xc7, 0xbb, 0xd2, 0xc3, 0xbf, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xcc, 0xbd, 0xc2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leaders MAXIE and ARCHIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textRecieved": {"bytes": "0xfc, 0x1, 0x2, 0xfd, 0x1, 0xb4, 0xcd, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0x0, 0xeb, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c1\u01b2\u00c0\u2019S POK\u00e9MON were sent to\u0147the PC!\u019e"}, "dia_textYouMustBe_first": {"bytes": "0xbb, 0xdc, 0xab, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xfd, 0x1, 0xab, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe8, 0xe3, 0xe0, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd7, 0xe3, 0xe1, 0xdd, 0xe2, 0xdb, 0xad, 0xfb, 0xc9, 0xdc, 0xab, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xab, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0xab, 0xfe, 0xc9, 0xe6, 0xb8, 0x0, 0xe6, 0xd5, 0xe8, 0xdc, 0xd9, 0xe6, 0xb8, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdd, 0xe2, 0xe8, 0xe6, 0xe3, 0xd8, 0xe9, 0xd7, 0xd9, 0x0, 0xe1, 0xed, 0xe7, 0xd9, 0xe0, 0xda, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "Ah! You must be \u01b2\u00c0! I was\u0147told you\u2019d be coming.\u023cOh! I still wear my disguise! Pardon!\u0147Or, rather, let me introduce myself.\u019e"}, "dia_textYouMustBe_second": {"bytes": "0xbb, 0xdc, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0x0, 0xd1, 0xd9, 0xe0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xab, 0x0, 0xc1, 0xe3, 0xe3, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xe7, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xfb, 0xc9, 0xdc, 0xab, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xab, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "Ah, \u01b2\u00c0! Welcome back! Good to\u0147see you again!\u023cOh! I still wear my disguise! Pardon!\u019e"}, "dia_textIAm_first": {"bytes": "0xfc, 0x1, 0x8, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xd5, 0x0, 0xdb, 0xe0, 0xe3, 0xd6, 0xd9, 0xae, 0xe8, 0xe6, 0xe3, 0xe8, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd9, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc3, 0xe2, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xe0, 0xdd, 0xd7, 0xd9, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb0, 0x0, 0xfa, 0xbb, 0xdc, 0xb8, 0x0, 0xe2, 0xe3, 0xb8, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0x0, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0xfe, 0xe2, 0xd5, 0xe1, 0xd9, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbI am a globe-trotting elite of the\u0147International Police.\u023cMy name\u2026 \u015eAh, no, I shall inform you of my code\u0147name only.\u023cMy code name, it is LOOKER!\u019e"}, "dia_textIAm_second": {"bytes": "0xfc, 0x1, 0x8, 0xc3, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc3, 0xb8, 0x0, 0xdb, 0xe0, 0xe3, 0xd6, 0xd9, 0xae, 0xe8, 0xe6, 0xe3, 0xe8, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd9, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc3, 0xe2, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xe0, 0xdd, 0xd7, 0xd9, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbIt is I, globe-trotting elite of the\u0147International Police.\u023cMy code name, it is LOOKER!\u019e"}, "dia_textPCConvo": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbb, 0xdc, 0xb8, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0x0, 0xc3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xdd, 0xe8, 0xfe, 0xfd, 0x1, 0x0, 0xdc, 0xd5, 0xe7, 0x0, 0xd5, 0xe6, 0xe6, 0xdd, 0xea, 0xd9, 0xd8, 0xac, 0xfb, 0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0xe2, 0xd8, 0xd9, 0xd9, 0xd8, 0xab, 0x0, 0xce, 0xdc, 0xd9, 0xed, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0xab, 0xfb, 0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbf, 0xec, 0xd7, 0xd9, 0xe0, 0xe0, 0xd9, 0xe2, 0xe8, 0xab, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xfe, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe1, 0xd9, 0xe2, 0xe8, 0xd5, 0xe6, 0xdd, 0xe0, 0xed, 0xb0, 0x0, 0xe7, 0xe8, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: Ah, LOOKER! I take it\u0147\u01b2\u00c0 has arrived?\u023c\u0206\u00c0\u00cbLOOKER: Indeed! They\u2019re ready to\u0147receive their POK\u00e9MON!\u023c\u0206\u00c0\u00c9FENNEL: Excellent! I\u2019ll send them\u0147over momentarily\u2026 stand by!\u019e"}, "dia_textPCThanks": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xbd, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xab, 0xfb, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: It looks like everything was\u0147sent to your PC successfully!\u023cThank you both for your help!\u019e"}, "dia_textThank": {"bytes": "0xfc, 0x1, 0x8, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xe8, 0xe3, 0xe4, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xd6, 0xed, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0xfb, 0xc3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe0, 0xe0, 0x0, 0xd9, 0xec, 0xd7, 0xe9, 0xe7, 0xd9, 0x0, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xad, 0x0, 0xfa, 0xcf, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xe3, 0xe9, 0xe6, 0x0, 0xe4, 0xd5, 0xe8, 0xdc, 0xe7, 0x0, 0xd7, 0xe6, 0xe3, 0xe7, 0xe7, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbThanks for stopping by, \u01b2\u00c0!\u023cIf you\u2019ll excuse me, I must return to\u0147my disguise. \u015eUntil our paths cross again!\u019e"}, "dia_textPCFull": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0x0, 0xdd, 0xe7, 0x0, 0xda, 0xe9, 0xe0, 0xe0, 0xab, 0xfb, 0xc1, 0xe3, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: It seems like the PC is full!\u023cGo make some room, and I can send over\u0147the rest of your POK\u00e9MON.\u019e"}, "dia_textLookerFull": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xcd, 0xe4, 0xd9, 0xd5, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0xfe, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0xfb, 0xc3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xed, 0xfe, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: Speak to me again after\u0147you\u2019ve made room, \u01b2\u00c0!\u023cIn the meantime, I will return to my\u0147disguise.\u019e"}}, "GB": {"sending_text": {"bytes": "SENDING DATA", "numLines": 0, "pixelsPerChar": 0, "pixelsInLine": 0, "includeBoxBreaks": false}, "prof_name": {"bytes": "FENNEL", "numLines": 0, "pixelsPerChar": 0, "pixelsInLine": 0, "includeBoxBreaks": false}}, "GENERAL": {"option_english": {"bytes": "0xbf, 0xe2, 0xdb, 0xe0, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "English\u019e"}, "option_japanese": {"bytes": "0xc4, 0xd5, 0xe4, 0xd5, 0xe2, 0xd9, 0xe7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Japanese\u019e"}, "option_spanish": {"bytes": "0xcd, 0xe4, 0xd5, 0xe2, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Spanish\u019e"}, "option_french": {"bytes": "0xc0, 0xe6, 0xd9, 0xe2, 0xd7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "French\u019e"}, "option_german": {"bytes": "0xc1, 0xd9, 0xe6, 0xe1, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "German\u019e"}, "option_italian": {"bytes": "0xc3, 0xe8, 0xd5, 0xe0, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Italian\u019e"}, "option_korean": {"bytes": "0xc5, 0xe3, 0xe6, 0xd9, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Korean\u019e"}, "option_green": {"bytes": "0xc1, 0xe6, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Green\u019e"}, "option_red": {"bytes": "0xcc, 0xd9, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Red\u019e"}, "option_blue": {"bytes": "0xbc, 0xe0, 0xe9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Blue\u019e"}, "option_yellow": {"bytes": "0xd3, 0xd9, 0xe0, 0xe0, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Yellow\u019e"}, "option_gold": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Gold\u019e"}, "option_silver": {"bytes": "0xcd, 0xdd, 0xe0, 0xea, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Silver\u019e"}, "option_crystal": {"bytes": "0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Crystal\u019e"}, "option_cancel": {"bytes": "0xbd, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Cancel\u019e"}, "press_start": {"bytes": "0xca, 0xe9, 0xe7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xcd, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xab, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Push the Start Button!\u019e"}, "option_transfer": {"bytes": "0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Transfer Pok\u00e9mon\u019e"}, "option_dreamdex": {"bytes": "0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Dream Dex\u019e"}, "option_credits": {"bytes": "0xbd, 0xe6, 0xd9, 0xd8, 0xdd, 0xe8, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Credits\u019e"}, "intro_first": {"bytes": "0xc2, 0xd9, 0xe0, 0xe0, 0xe3, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0xab, 0xfe, 0xfe, 0xc4, 0xe9, 0xe7, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xeb, 0xe3, 0xe6, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xd5, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0xae, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xd1, 0xc3, 0xc6, 0xc6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xed, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe0, 0xe3, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xd6, 0xd9, 0xe8, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xdd, 0xd8, 0xb8, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd9, 0xe2, 0xde, 0xe3, 0xed, 0xab, 0xfe, 0xfe, 0xae, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xff", "numLines": 15, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": false, "text": "Hello! Thank you for using Pok\u00e9\u0147Transporter GB!\u0147\u0147Just as a word of caution- Pok\u00e9\u0147Transporter GB WILL modify both the\u0147GameBoy and GameBoy Advance save\u0147files.\u0147\u0147Please note that while Pok\u00e9\u0147Transporter GB is no longer in beta,\u0147save file backups are still\u0147recommended before using. With that\u0147all being said, please enjoy!\u0147\u0147-The Gears of Progress \u019e"}, "intro_legal": {"bytes": "0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe3, 0xda, 0xfe, 0xe0, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd5, 0xe4, 0xe4, 0xe6, 0xd9, 0xd7, 0xdd, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xd5, 0xe2, 0xd7, 0xdc, 0xdd, 0xe7, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xda, 0xdd, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xbb, 0xc6, 0xd1, 0xbb, 0xd3, 0xcd, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0xfe, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0x0, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe1, 0xe9, 0xe7, 0xdd, 0xd7, 0xfe, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xeb, 0xe2, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0x0, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0x0, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0xad, 0xfe, 0xfe, 0xfe, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xff", "numLines": 14, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": false, "text": "Pok\u00e9 Transporter GB was made out of\u0147love and appreciation for the Pokemon\u0147franchise with no profit in mind. It\u0147will ALWAYS be free.\u0147\u0147Please support the original\u0147developers.\u0147\u0147All Pokemon names, sprites, and music\u0147are owned by Nintendo, Creatures Inc,\u0147and GAME FREAK.\u0147\u0147\u0147Press A to continue\u019e"}, "cart_load_error": {"bytes": "0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xad, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xdd, 0xe2, 0xe7, 0xd9, 0xe6, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xea, 0xd9, 0xe0, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff", "numLines": 10, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "The Pok\u00e9mon save file was\u0147not loaded successfully.\u0147Please remove and reinsert\u0147the Game Pak, and then\u0147press the A button.\u0147\u0147Alternatively, press the\u0147Select button to send this\u0147program to another GameBoy\u0147Advance.\u019e"}, "pulled_cart_error": {"bytes": "0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xad, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "The Pok\u00e9mon game was\u0147removed. Please turn off\u0147the system and restart the\u0147program.\u019e"}, "send_multiboot_instructions": {"bytes": "0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xfe, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xdd, 0xe2, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0x0, 0xe1, 0xe3, 0xd8, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xc6, 0xdd, 0xe2, 0xdf, 0xfe, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0xad, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0xe2, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xfe, 0xe8, 0xe3, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff", "numLines": 10, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Please connect this system\u0147to another GameBoy Advance\u0147in Multiboot mode with a\u0147GameBoy Advance Link\u0147Cable.\u0147\u0147Then, press the A button\u0147to begin sending Pok\u00e9\u0147Transporter GB to the\u0147second GameBoy Advance.\u019e"}, "send_multiboot_wait": {"bytes": "0xcd, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0xfe, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0xfe, 0xeb, 0xd5, 0xdd, 0xe8, 0xad, 0xfe, 0xfe, 0xc2, 0xe3, 0xe0, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbc, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xad, 0xff", "numLines": 7, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Sending Pok\u00e9 Transporter\u0147GB to second GameBoy\u0147Advance system. Please\u0147wait.\u0147\u0147Hold the B Button to\u0147cancel.\u019e"}, "send_multiboot_success": {"bytes": "0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xab, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xd5, 0xed, 0xfe, 0xe2, 0xe3, 0xeb, 0x0, 0xe4, 0xe3, 0xeb, 0xd9, 0xe6, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xad, 0xff", "numLines": 7, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "\u0147Pok\u00e9 Transporter GB was\u0147sent successfully! You may\u0147now power off this GameBoy\u0147Advance system.\u019e"}, "send_multiboot_failure": {"bytes": "0xfe, 0xbb, 0xe2, 0x0, 0xd9, 0xe6, 0xe6, 0xe3, 0xe6, 0x0, 0xe3, 0xd7, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0xfe, 0xc1, 0xbc, 0xad, 0x0, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xe6, 0xe9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xfe, 0xe7, 0xd7, 0xe6, 0xd9, 0xd9, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xad, 0xff", "numLines": 7, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "\u0147An error occurred while\u0147sending Pok\u00e9 Transporter\u0147GB. Press the A button to\u0147return to the instructions\u0147screen and try again.\u019e"}, "kanto_name": {"bytes": "0xc5, 0xbb, 0xc8, 0xce, 0xc9, 0xf0, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "KANTO:\u019e"}, "johto_name": {"bytes": "0xc4, 0xc9, 0xc2, 0xce, 0xc9, 0xf0, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "JOHTO:\u019e"}}, "CREDITS": {"credits_page_1": {"bytes": "0xc6, 0xd9, 0xd5, 0xd8, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xf0, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Lead developer:\u0147\u0147The Gears of Progress\u019e"}, "credits_page_2": {"bytes": "0xc6, 0xe3, 0xdb, 0xe3, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xe3, 0xae, 0xdd, 0xd8, 0xd9, 0xd5, 0xe8, 0xe3, 0xe6, 0xf0, 0xfe, 0xfe, 0xae, 0xc4, 0xe3, 0xe1, 0xd9, 0xfe, 0xfe, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xeb, 0xe3, 0xe6, 0xdf, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xc4, 0x0, 0xbc, 0xdd, 0xe6, 0xd8, 0xe1, 0xd5, 0xe2, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Logo and co-ideator:\u0147\u0147-Jome\u0147\u0147Spritework:\u0147\u0147-LJ Birdman\u019e"}, "credits_page_3": {"bytes": "0xc3, 0xd7, 0xe3, 0xe2, 0x0, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xe9, 0xdd, 0xdb, 0xdd, 0xce, 0xc5, 0xc9, 0xfe, 0xae, 0xc1, 0xe9, 0xdd, 0xbb, 0xd6, 0xd9, 0xe0, 0xfe, 0xae, 0xcd, 0xe3, 0xe9, 0xe6, 0xbb, 0xe4, 0xe4, 0xe0, 0xd9, 0xfe, 0x2d, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd5, 0xe6, 0xe8, 0xdd, 0xe7, 0xe8, 0xe7, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xcd, 0xdc, 0xe3, 0xeb, 0xd8, 0xe3, 0xeb, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0x0, 0xbd, 0xe0, 0xd9, 0xd5, 0xe6, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Icon Sprites:\u0147\u0147-LuigiTKO\u0147-GuiAbel\u0147-SourApple\u0147& the artists from Pok\u00e9mon\u0147Showdown and Crystal Clear\u019e"}, "credits_page_4": {"bytes": "0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xe6, 0xd6, 0xdd, 0xe8, 0xe6, 0xd5, 0xe6, 0xed, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0xfe, 0xbf, 0xec, 0xd9, 0xd7, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xce, 0xdd, 0xe1, 0xe3, 0xd0, 0xc7, 0xfe, 0xfe, 0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0xfe, 0xda, 0xe9, 0xe2, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xf0, 0x0, 0xfb, 0xe6, 0xdd, 0xe7, 0xdd, 0xe2, 0xdb, 0xca, 0xdc, 0xdd, 0xe0, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Remote and Arbitrary Code\u0147Execution assistance:\u0147\u0147-TimoVM\u0147\u0147Remote Multiboot\u0147functionality: \u023crisingPhil\u019e"}, "credits_page_5": {"bytes": "0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xe6, 0xdd, 0xe0, 0xd9, 0xed, 0xdf, 0xa7, 0xa5, 0xfe, 0xae, 0xcd, 0xdc, 0xd5, 0xe3, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Development assistance:\u0147\u0147-im a blisy\u0147-rileyk64\u0147-Shao\u019e"}, "credits_page_6": {"bytes": "0xcd, 0xe4, 0xd5, 0xd7, 0xd9, 0x0, 0xc9, 0xe4, 0xe8, 0xdd, 0xe1, 0xdd, 0xee, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xf0, 0xfe, 0xfe, 0xae, 0xd9, 0xd5, 0xe7, 0xed, 0xd5, 0xe7, 0xe4, 0xdd, 0xa4, 0xa2, 0xa5, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Space Optimization:\u0147\u0147-easyaspi314\u019e"}, "credits_page_7": {"bytes": "0xbc, 0xe9, 0xdd, 0xe0, 0xe8, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xbe, 0xd9, 0xea, 0xdf, 0xdd, 0xe8, 0xca, 0xe6, 0xe3, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xce, 0xe3, 0xe2, 0xd7, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xc1, 0xbc, 0xbb, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Built using:\u0147\u0147\u0147-DevkitPro\u0147-LibTonc\u0147-LibGBA\u019e"}, "credits_page_8": {"bytes": "0xc3, 0xe2, 0xe7, 0xe4, 0xdd, 0xe6, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xe7, 0x0, 0xe3, 0xda, 0xf0, 0xfe, 0xfe, 0xae, 0xc1, 0xe3, 0xe4, 0xe4, 0xdd, 0xd9, 0xe6, 0xfe, 0xae, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xcc, 0xbf, 0xce, 0xc3, 0xcc, 0xbf, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Inspired by the works of:\u0147\u0147-Goppier\u0147-Lorenzooone\u0147-im a blisy\u0147-RETIRE\u019e"}, "credits_page_9": {"bytes": "0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xe7, 0x0, 0xe9, 0xe7, 0xd9, 0xd8, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xae, 0xca, 0xc5, 0xc2, 0xd9, 0xd2, 0xfe, 0xae, 0xd1, 0xbd, 0xa4, 0xce, 0xe3, 0xe3, 0xe0, 0xfe, 0xae, 0xcf, 0xe7, 0xd9, 0xe2, 0xe8, 0xdd, 0xfe, 0xae, 0xcd, 0xd5, 0xe4, 0xe4, 0xed, 0xc7, 0xdd, 0xd8, 0xce, 0xe3, 0xbb, 0xc1, 0xbc, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Programs used:\u0147\u0147\u0147-HexManiacAdvance\u0147-PKHeX\u0147-WC3Tool\u0147-Usenti\u0147-SappyMidToAGB\u019e"}, "credits_page_10": {"bytes": "0xc9, 0xe4, 0xd9, 0xe2, 0x0, 0xcd, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xc6, 0xdd, 0xd6, 0xe6, 0xd5, 0xe6, 0xdd, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xe0, 0xdd, 0xd6, 0xe8, 0xe3, 0xe2, 0xd7, 0xae, 0xd9, 0xec, 0xd5, 0xe1, 0xe4, 0xe0, 0xd9, 0xe7, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0xae, 0xdb, 0xd6, 0xd5, 0xae, 0xe0, 0xdd, 0xe2, 0xdf, 0xae, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xae, 0xd5, 0xeb, 0xd9, 0xe7, 0xe3, 0xe1, 0xd9, 0xae, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0xae, 0xd5, 0xe6, 0xd8, 0xe9, 0xdd, 0xe2, 0xe3, 0xae, 0xe4, 0xe3, 0xdf, 0xd9, 0xae, 0xdb, 0xd9, 0xe2, 0xa3, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Open Source Code and\u0147Libraries:\u0147\u0147-libtonc-examples\u0147-PokemonGen3toGenX\u0147-gba-link-connection\u0147-awesome-gbadev\u0147-arduino-poke-gen2\u019e"}, "credits_page_11": {"bytes": "0xcc, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xd5, 0xe6, 0xe1, 0xae, 0xd8, 0xe3, 0xd7, 0xe7, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0xfe, 0xc0, 0xe9, 0xe0, 0xe0, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xe7, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe3, 0xe9, 0xe2, 0xd8, 0x0, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xb4, 0xe7, 0x0, 0xc1, 0xdd, 0xe8, 0xc2, 0xe9, 0xd6, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Research resources:\u0147\u0147-arm-docs\u0147-PokemonGen3toGenX\u0147\u0147Full links can be found on\u0147this program\u2019s GitHub\u019e"}, "credits_page_12": {"bytes": "0xcc, 0xc9, 0xc7, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xd8, 0xd9, 0xd7, 0xe3, 0xe1, 0xe4, 0xdd, 0xe0, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0x0, 0xd7, 0xe6, 0xd9, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xcc, 0xbf, 0xce, 0x0, 0xe8, 0xd9, 0xd5, 0xe1, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "ROM data obtained from\u0147decompilations created by\u0147the PRET team\u019e"}, "credits_page_13": {"bytes": "0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0xf0, 0xfe, 0xfe, 0xae, 0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe4, 0xd9, 0xd8, 0xdd, 0xd5, 0xfe, 0xae, 0xcd, 0xd9, 0xe6, 0xd9, 0xd6, 0xdd, 0xdd, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xbb, 0xca, 0xc3, 0xad, 0xd7, 0xe3, 0xe1, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Pok\u00e9mon data obtained\u0147from:\u0147\u0147-Bulbapedia\u0147-Serebii\u0147-PokeAPI.com\u019e"}, "credits_page_14": {"bytes": "0xbe, 0xdd, 0xe7, 0xd7, 0xe3, 0xe6, 0xd8, 0x0, 0xd7, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xe8, 0xed, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0x0, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0xfe, 0xae, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0xae, 0xe4, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Discord community\u0147assistance:\u0147\u0147-Hex Maniac Advance\u0147Development\u0147-gbadev\u0147-pret\u019e"}, "credits_page_15": {"bytes": "0xd1, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc7, 0xd5, 0xd8, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Writing assistance:\u0147\u0147\u0147-Mad\u019e"}, "credits_page_16": {"bytes": "0xbb, 0xe2, 0x0, 0xdd, 0xe1, 0xe1, 0xd9, 0xe2, 0xe7, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0x2d, 0xfe, 0xeb, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe1, 0xb8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xe3, 0xe9, 0xe0, 0xd8, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0xad, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "An immense thanks to\u0147Lorenzooone for their\u0147assistance in reading &\u0147writing save data. Without\u0147them, this project would\u0147not have been possible.\u019e"}, "credits_page_17": {"bytes": "0xcd, 0xe4, 0xd9, 0xd7, 0xdd, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xbf, 0xe2, 0xe2, 0xb8, 0xfe, 0xe6, 0xe3, 0xdf, 0xe9, 0xb8, 0x0, 0xcd, 0xe0, 0xd9, 0xd9, 0xe4, 0xed, 0xb8, 0x0, 0xbf, 0xee, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xe6, 0xd5, 0xdc, 0xe8, 0xe3, 0xe2, 0xdd, 0xe2, 0xb8, 0x0, 0xbc, 0xd5, 0xe7, 0xd5, 0xd6, 0xdd, 0xb8, 0x0, 0xc7, 0xd5, 0xd8, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe3, 0xe2, 0xd9, 0x0, 0xeb, 0xdc, 0xe3, 0x0, 0xdc, 0xd5, 0xe7, 0xfe, 0xe0, 0xdd, 0xe7, 0xe8, 0xd9, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xd5, 0xd6, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe1, 0xe3, 0xe2, 0xe8, 0xdc, 0xe7, 0xab, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Special thanks to Enn,\u0147roku, Sleepy, Eza,\u0147sarahtonin, Basabi, Mad,\u0147and everyone who has\u0147listened to me talk about\u0147this for months!\u019e"}, "credits_page_18": {"bytes": "0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0xfe, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xe6, 0xd9, 0xe0, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xd7, 0xe3, 0xe4, 0xed, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0xfe, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xad, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0xfe, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0x0, 0xc3, 0xe2, 0xd7, 0xad, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "All Pok\u00e9mon names,\u0147sprites, and names of\u0147related resources are\u0147copyright Nintendo,\u0147Creatures Inc., and GAME\u0147FREAK Inc.\u019e"}, "credits_page_19": {"bytes": "0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0xfe, 0xd9, 0xe2, 0xd8, 0xe3, 0xe6, 0xe7, 0xd9, 0xd8, 0x0, 0xe3, 0xe6, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xc0, 0xe6, 0xd9, 0xd5, 0xdf, 0xba, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "This project is not\u0147endorsed or supported by\u0147GameFreak/Nintendo.\u0147\u0147Please support the\u0147original developers.\u019e"}}, "PKMN_NAMES": {"0": {"bytes": "0xc7, 0xdd, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0xc8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "MissingNo\u019e"}, "1": {"bytes": "0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bulbasaur\u019e"}, "2": {"bytes": "0xc3, 0xea, 0xed, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ivysaur\u019e"}, "3": {"bytes": "0xd0, 0xd9, 0xe2, 0xe9, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venusaur\u019e"}, "4": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xe1, 0xd5, 0xe2, 0xd8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charmander\u019e"}, "5": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xe1, 0xd9, 0xe0, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charmeleon\u019e"}, "6": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xdd, 0xee, 0xd5, 0xe6, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charizard\u019e"}, "7": {"bytes": "0xcd, 0xe5, 0xe9, 0xdd, 0xe6, 0xe8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Squirtle\u019e"}, "8": {"bytes": "0xd1, 0xd5, 0xe6, 0xe8, 0xe3, 0xe6, 0xe8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wartortle\u019e"}, "9": {"bytes": "0xbc, 0xe0, 0xd5, 0xe7, 0xe8, 0xe3, 0xdd, 0xe7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Blastoise\u019e"}, "10": {"bytes": "0xbd, 0xd5, 0xe8, 0xd9, 0xe6, 0xe4, 0xdd, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Caterpie\u019e"}, "11": {"bytes": "0xc7, 0xd9, 0xe8, 0xd5, 0xe4, 0xe3, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Metapod\u019e"}, "12": {"bytes": "0xbc, 0xe9, 0xe8, 0xe8, 0xd9, 0xe6, 0xda, 0xe6, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Butterfree\u019e"}, "13": {"bytes": "0xd1, 0xd9, 0xd9, 0xd8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weedle\u019e"}, "14": {"bytes": "0xc5, 0xd5, 0xdf, 0xe9, 0xe2, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kakuna\u019e"}, "15": {"bytes": "0xbc, 0xd9, 0xd9, 0xd8, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Beedrill\u019e"}, "16": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgey\u019e"}, "17": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xe3, 0xe8, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgeotto\u019e"}, "18": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xe3, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgeot\u019e"}, "19": {"bytes": "0xcc, 0xd5, 0xe8, 0xe8, 0xd5, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rattata\u019e"}, "20": {"bytes": "0xcc, 0xd5, 0xe8, 0xdd, 0xd7, 0xd5, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raticate\u019e"}, "21": {"bytes": "0xcd, 0xe4, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Spearow\u019e"}, "22": {"bytes": "0xc0, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Fearow\u019e"}, "23": {"bytes": "0xbf, 0xdf, 0xd5, 0xe2, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ekans\u019e"}, "24": {"bytes": "0xbb, 0xe6, 0xd6, 0xe3, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Arbok\u019e"}, "25": {"bytes": "0xca, 0xdd, 0xdf, 0xd5, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pikachu\u019e"}, "26": {"bytes": "0xcc, 0xd5, 0xdd, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raichu\u019e"}, "27": {"bytes": "0xcd, 0xd5, 0xe2, 0xd8, 0xe7, 0xdc, 0xe6, 0xd9, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sandshrew\u019e"}, "28": {"bytes": "0xcd, 0xd5, 0xe2, 0xd8, 0xe7, 0xe0, 0xd5, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sandslash\u019e"}, "29": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xd5, 0xe2, 0xb6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoran\u2640\u019e"}, "30": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xdd, 0xe2, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidorina\u019e"}, "31": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe5, 0xe9, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoqueen\u019e"}, "32": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xd5, 0xe2, 0xb5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoran\u2642\u019e"}, "33": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xdd, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidorino\u019e"}, "34": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoking\u019e"}, "35": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xd5, 0xdd, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Clefairy\u019e"}, "36": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xd5, 0xd6, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Clefable\u019e"}, "37": {"bytes": "0xd0, 0xe9, 0xe0, 0xe4, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vulpix\u019e"}, "38": {"bytes": "0xc8, 0xdd, 0xe2, 0xd9, 0xe8, 0xd5, 0xe0, 0xd9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ninetales\u019e"}, "39": {"bytes": "0xc4, 0xdd, 0xdb, 0xdb, 0xe0, 0xed, 0xe4, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jigglypuff\u019e"}, "40": {"bytes": "0xd1, 0xdd, 0xdb, 0xdb, 0xe0, 0xed, 0xe8, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wigglytuff\u019e"}, "41": {"bytes": "0xd4, 0xe9, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Zubat\u019e"}, "42": {"bytes": "0xc1, 0xe3, 0xe0, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golbat\u019e"}, "43": {"bytes": "0xc9, 0xd8, 0xd8, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Oddish\u019e"}, "44": {"bytes": "0xc1, 0xe0, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gloom\u019e"}, "45": {"bytes": "0xd0, 0xdd, 0xe0, 0xd9, 0xe4, 0xe0, 0xe9, 0xe1, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vileplume\u019e"}, "46": {"bytes": "0xca, 0xd5, 0xe6, 0xd5, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Paras\u019e"}, "47": {"bytes": "0xca, 0xd5, 0xe6, 0xd5, 0xe7, 0xd9, 0xd7, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Parasect\u019e"}, "48": {"bytes": "0xd0, 0xd9, 0xe2, 0xe3, 0xe2, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venonat\u019e"}, "49": {"bytes": "0xd0, 0xd9, 0xe2, 0xe3, 0xe1, 0xe3, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venomoth\u019e"}, "50": {"bytes": "0xbe, 0xdd, 0xdb, 0xe0, 0xd9, 0xe8, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Diglett\u019e"}, "51": {"bytes": "0xbe, 0xe9, 0xdb, 0xe8, 0xe6, 0xdd, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dugtrio\u019e"}, "52": {"bytes": "0xc7, 0xd9, 0xe3, 0xeb, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Meowth\u019e"}, "53": {"bytes": "0xca, 0xd9, 0xe6, 0xe7, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Persian\u019e"}, "54": {"bytes": "0xca, 0xe7, 0xed, 0xd8, 0xe9, 0xd7, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Psyduck\u019e"}, "55": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xe9, 0xd7, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golduck\u019e"}, "56": {"bytes": "0xc7, 0xd5, 0xe2, 0xdf, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mankey\u019e"}, "57": {"bytes": "0xca, 0xe6, 0xdd, 0xe1, 0xd9, 0xd5, 0xe4, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Primeape\u019e"}, "58": {"bytes": "0xc1, 0xe6, 0xe3, 0xeb, 0xe0, 0xdd, 0xe8, 0xdc, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Growlithe\u019e"}, "59": {"bytes": "0xbb, 0xe6, 0xd7, 0xd5, 0xe2, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Arcanine\u019e"}, "60": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xd5, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwag\u019e"}, "61": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xdc, 0xdd, 0xe6, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwhirl\u019e"}, "62": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xe6, 0xd5, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwrath\u019e"}, "63": {"bytes": "0xbb, 0xd6, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Abra\u019e"}, "64": {"bytes": "0xc5, 0xd5, 0xd8, 0xd5, 0xd6, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kadabra\u019e"}, "65": {"bytes": "0xbb, 0xe0, 0xd5, 0xdf, 0xd5, 0xee, 0xd5, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Alakazam\u019e"}, "66": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machop\u019e"}, "67": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xdf, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machoke\u019e"}, "68": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xd5, 0xe1, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machamp\u019e"}, "69": {"bytes": "0xbc, 0xd9, 0xe0, 0xe0, 0xe7, 0xe4, 0xe6, 0xe3, 0xe9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bellsprout\u019e"}, "70": {"bytes": "0xd1, 0xd9, 0xd9, 0xe4, 0xdd, 0xe2, 0xd6, 0xd9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weepinbell\u019e"}, "71": {"bytes": "0xd0, 0xdd, 0xd7, 0xe8, 0xe6, 0xd9, 0xd9, 0xd6, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Victreebel\u019e"}, "72": {"bytes": "0xce, 0xd9, 0xe2, 0xe8, 0xd5, 0xd7, 0xe3, 0xe3, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tentacool\u019e"}, "73": {"bytes": "0xce, 0xd9, 0xe2, 0xe8, 0xd5, 0xd7, 0xe6, 0xe9, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tentacruel\u019e"}, "74": {"bytes": "0xc1, 0xd9, 0xe3, 0xd8, 0xe9, 0xd8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Geodude\u019e"}, "75": {"bytes": "0xc1, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Graveler\u019e"}, "76": {"bytes": "0xc1, 0xe3, 0xe0, 0xd9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golem\u019e"}, "77": {"bytes": "0xca, 0xe3, 0xe2, 0xed, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ponyta\u019e"}, "78": {"bytes": "0xcc, 0xd5, 0xe4, 0xdd, 0xd8, 0xd5, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rapidash\u019e"}, "79": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xe4, 0xe3, 0xdf, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowpoke\u019e"}, "80": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xd6, 0xe6, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowbro\u019e"}, "81": {"bytes": "0xc7, 0xd5, 0xdb, 0xe2, 0xd9, 0xe1, 0xdd, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magnemite\u019e"}, "82": {"bytes": "0xc7, 0xd5, 0xdb, 0xe2, 0xd9, 0xe8, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magneton\u019e"}, "83": {"bytes": "0xc0, 0xd5, 0xe6, 0xda, 0xd9, 0xe8, 0xd7, 0xdc, 0xb4, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Farfetch\u2019d\u019e"}, "84": {"bytes": "0xbe, 0xe3, 0xd8, 0xe9, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Doduo\u019e"}, "85": {"bytes": "0xbe, 0xe3, 0xd8, 0xe6, 0xdd, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dodrio\u019e"}, "86": {"bytes": "0xcd, 0xd9, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seel\u019e"}, "87": {"bytes": "0xbe, 0xd9, 0xeb, 0xdb, 0xe3, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dewgong\u019e"}, "88": {"bytes": "0xc1, 0xe6, 0xdd, 0xe1, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Grimer\u019e"}, "89": {"bytes": "0xc7, 0xe9, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Muk\u019e"}, "90": {"bytes": "0xcd, 0xdc, 0xd9, 0xe0, 0xe0, 0xd8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Shellder\u019e"}, "91": {"bytes": "0xbd, 0xe0, 0xe3, 0xed, 0xe7, 0xe8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cloyster\u019e"}, "92": {"bytes": "0xc1, 0xd5, 0xe7, 0xe8, 0xe0, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gastly\u019e"}, "93": {"bytes": "0xc2, 0xd5, 0xe9, 0xe2, 0xe8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Haunter\u019e"}, "94": {"bytes": "0xc1, 0xd9, 0xe2, 0xdb, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gengar\u019e"}, "95": {"bytes": "0xc9, 0xe2, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Onix\u019e"}, "96": {"bytes": "0xbe, 0xe6, 0xe3, 0xeb, 0xee, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Drowzee\u019e"}, "97": {"bytes": "0xc2, 0xed, 0xe4, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hypno\u019e"}, "98": {"bytes": "0xc5, 0xe6, 0xd5, 0xd6, 0xd6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Krabby\u019e"}, "99": {"bytes": "0xc5, 0xdd, 0xe2, 0xdb, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kingler\u019e"}, "100": {"bytes": "0xd0, 0xe3, 0xe0, 0xe8, 0xe3, 0xe6, 0xd6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Voltorb\u019e"}, "101": {"bytes": "0xbf, 0xe0, 0xd9, 0xd7, 0xe8, 0xe6, 0xe3, 0xd8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Electrode\u019e"}, "102": {"bytes": "0xbf, 0xec, 0xd9, 0xdb, 0xdb, 0xd7, 0xe9, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Exeggcute\u019e"}, "103": {"bytes": "0xbf, 0xec, 0xd9, 0xdb, 0xdb, 0xe9, 0xe8, 0xe3, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Exeggutor\u019e"}, "104": {"bytes": "0xbd, 0xe9, 0xd6, 0xe3, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cubone\u019e"}, "105": {"bytes": "0xc7, 0xd5, 0xe6, 0xe3, 0xeb, 0xd5, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Marowak\u019e"}, "106": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xe0, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmonlee\u019e"}, "107": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xd7, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmonchan\u019e"}, "108": {"bytes": "0xc6, 0xdd, 0xd7, 0xdf, 0xdd, 0xe8, 0xe9, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lickitung\u019e"}, "109": {"bytes": "0xc5, 0xe3, 0xda, 0xda, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Koffing\u019e"}, "110": {"bytes": "0xd1, 0xd9, 0xd9, 0xee, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weezing\u019e"}, "111": {"bytes": "0xcc, 0xdc, 0xed, 0xdc, 0xe3, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rhyhorn\u019e"}, "112": {"bytes": "0xcc, 0xdc, 0xed, 0xd8, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rhydon\u019e"}, "113": {"bytes": "0xbd, 0xdc, 0xd5, 0xe2, 0xe7, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chansey\u019e"}, "114": {"bytes": "0xce, 0xd5, 0xe2, 0xdb, 0xd9, 0xe0, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tangela\u019e"}, "115": {"bytes": "0xc5, 0xd5, 0xe2, 0xdb, 0xd5, 0xe7, 0xdf, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kangaskhan\u019e"}, "116": {"bytes": "0xc2, 0xe3, 0xe6, 0xe7, 0xd9, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Horsea\u019e"}, "117": {"bytes": "0xcd, 0xd9, 0xd5, 0xd8, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seadra\u019e"}, "118": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Goldeen\u019e"}, "119": {"bytes": "0xcd, 0xd9, 0xd5, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seaking\u019e"}, "120": {"bytes": "0xcd, 0xe8, 0xd5, 0xe6, 0xed, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Staryu\u019e"}, "121": {"bytes": "0xcd, 0xe8, 0xd5, 0xe6, 0xe1, 0xdd, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Starmie\u019e"}, "122": {"bytes": "0xc7, 0xe6, 0xad, 0x0, 0xc7, 0xdd, 0xe1, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mr. Mime\u019e"}, "123": {"bytes": "0xcd, 0xd7, 0xed, 0xe8, 0xdc, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Scyther\u019e"}, "124": {"bytes": "0xc4, 0xed, 0xe2, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jynx\u019e"}, "125": {"bytes": "0xbf, 0xe0, 0xd9, 0xd7, 0xe8, 0xd5, 0xd6, 0xe9, 0xee, 0xee, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Electabuzz\u019e"}, "126": {"bytes": "0xc7, 0xd5, 0xdb, 0xe1, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magmar\u019e"}, "127": {"bytes": "0xca, 0xdd, 0xe2, 0xe7, 0xdd, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pinsir\u019e"}, "128": {"bytes": "0xce, 0xd5, 0xe9, 0xe6, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tauros\u019e"}, "129": {"bytes": "0xc7, 0xd5, 0xdb, 0xdd, 0xdf, 0xd5, 0xe6, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magikarp\u019e"}, "130": {"bytes": "0xc1, 0xed, 0xd5, 0xe6, 0xd5, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gyarados\u019e"}, "131": {"bytes": "0xc6, 0xd5, 0xe4, 0xe6, 0xd5, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lapras\u019e"}, "132": {"bytes": "0xbe, 0xdd, 0xe8, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ditto\u019e"}, "133": {"bytes": "0xbf, 0xd9, 0xea, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Eevee\u019e"}, "134": {"bytes": "0xd0, 0xd5, 0xe4, 0xe3, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vaporeon\u019e"}, "135": {"bytes": "0xc4, 0xe3, 0xe0, 0xe8, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jolteon\u019e"}, "136": {"bytes": "0xc0, 0xe0, 0xd5, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Flareon\u019e"}, "137": {"bytes": "0xca, 0xe3, 0xe6, 0xed, 0xdb, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Porygon\u019e"}, "138": {"bytes": "0xc9, 0xe1, 0xd5, 0xe2, 0xed, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Omanyte\u019e"}, "139": {"bytes": "0xc9, 0xe1, 0xd5, 0xe7, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Omastar\u019e"}, "140": {"bytes": "0xc5, 0xd5, 0xd6, 0xe9, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kabuto\u019e"}, "141": {"bytes": "0xc5, 0xd5, 0xd6, 0xe9, 0xe8, 0xe3, 0xe4, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kabutops\u019e"}, "142": {"bytes": "0xbb, 0xd9, 0xe6, 0xe3, 0xd8, 0xd5, 0xd7, 0xe8, 0xed, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Aerodactyl\u019e"}, "143": {"bytes": "0xcd, 0xe2, 0xe3, 0xe6, 0xe0, 0xd5, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Snorlax\u019e"}, "144": {"bytes": "0xbb, 0xe6, 0xe8, 0xdd, 0xd7, 0xe9, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Articuno\u019e"}, "145": {"bytes": "0xd4, 0xd5, 0xe4, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Zapdos\u019e"}, "146": {"bytes": "0xc7, 0xe3, 0xe0, 0xe8, 0xe6, 0xd9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Moltres\u019e"}, "147": {"bytes": "0xbe, 0xe6, 0xd5, 0xe8, 0xdd, 0xe2, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dratini\u019e"}, "148": {"bytes": "0xbe, 0xe6, 0xd5, 0xdb, 0xe3, 0xe2, 0xd5, 0xdd, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dragonair\u019e"}, "149": {"bytes": "0xbe, 0xe6, 0xd5, 0xdb, 0xe3, 0xe2, 0xdd, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dragonite\u019e"}, "150": {"bytes": "0xc7, 0xd9, 0xeb, 0xe8, 0xeb, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mewtwo\u019e"}, "151": {"bytes": "0xc7, 0xd9, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mew\u019e"}, "152": {"bytes": "0xbd, 0xdc, 0xdd, 0xdf, 0xe3, 0xe6, 0xdd, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chikorita\u019e"}, "153": {"bytes": "0xbc, 0xd5, 0xed, 0xe0, 0xd9, 0xd9, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bayleef\u019e"}, "154": {"bytes": "0xc7, 0xd9, 0xdb, 0xd5, 0xe2, 0xdd, 0xe9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Meganium\u019e"}, "155": {"bytes": "0xbd, 0xed, 0xe2, 0xd8, 0xd5, 0xe5, 0xe9, 0xdd, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cyndaquil\u019e"}, "156": {"bytes": "0xcb, 0xe9, 0xdd, 0xe0, 0xd5, 0xea, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Quilava\u019e"}, "157": {"bytes": "0xce, 0xed, 0xe4, 0xdc, 0xe0, 0xe3, 0xe7, 0xdd, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Typhlosion\u019e"}, "158": {"bytes": "0xce, 0xe3, 0xe8, 0xe3, 0xd8, 0xdd, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Totodile\u019e"}, "159": {"bytes": "0xbd, 0xe6, 0xe3, 0xd7, 0xe3, 0xe2, 0xd5, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Croconaw\u019e"}, "160": {"bytes": "0xc0, 0xd9, 0xe6, 0xd5, 0xe0, 0xdd, 0xdb, 0xd5, 0xe8, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Feraligatr\u019e"}, "161": {"bytes": "0xcd, 0xd9, 0xe2, 0xe8, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sentret\u019e"}, "162": {"bytes": "0xc0, 0xe9, 0xe6, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Furret\u019e"}, "163": {"bytes": "0xc2, 0xe3, 0xe3, 0xe8, 0xdc, 0xe3, 0xe3, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hoothoot\u019e"}, "164": {"bytes": "0xc8, 0xe3, 0xd7, 0xe8, 0xe3, 0xeb, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Noctowl\u019e"}, "165": {"bytes": "0xc6, 0xd9, 0xd8, 0xed, 0xd6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ledyba\u019e"}, "166": {"bytes": "0xc6, 0xd9, 0xd8, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ledian\u019e"}, "167": {"bytes": "0xcd, 0xe4, 0xdd, 0xe2, 0xd5, 0xe6, 0xd5, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Spinarak\u019e"}, "168": {"bytes": "0xbb, 0xe6, 0xdd, 0xd5, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ariados\u019e"}, "169": {"bytes": "0xbd, 0xe6, 0xe3, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Crobat\u019e"}, "170": {"bytes": "0xbd, 0xdc, 0xdd, 0xe2, 0xd7, 0xdc, 0xe3, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chinchou\u019e"}, "171": {"bytes": "0xc6, 0xd5, 0xe2, 0xe8, 0xe9, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lanturn\u019e"}, "172": {"bytes": "0xca, 0xdd, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pichu\u019e"}, "173": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xda, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cleffa\u019e"}, "174": {"bytes": "0xc3, 0xdb, 0xdb, 0xe0, 0xed, 0xd6, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Igglybuff\u019e"}, "175": {"bytes": "0xce, 0xe3, 0xdb, 0xd9, 0xe4, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Togepi\u019e"}, "176": {"bytes": "0xce, 0xe3, 0xdb, 0xd9, 0xe8, 0xdd, 0xd7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Togetic\u019e"}, "177": {"bytes": "0xc8, 0xd5, 0xe8, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Natu\u019e"}, "178": {"bytes": "0xd2, 0xd5, 0xe8, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Xatu\u019e"}, "179": {"bytes": "0xc7, 0xd5, 0xe6, 0xd9, 0xd9, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mareep\u019e"}, "180": {"bytes": "0xc0, 0xe0, 0xd5, 0xd5, 0xda, 0xda, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Flaaffy\u019e"}, "181": {"bytes": "0xbb, 0xe1, 0xe4, 0xdc, 0xd5, 0xe6, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ampharos\u019e"}, "182": {"bytes": "0xbc, 0xd9, 0xe0, 0xe0, 0xe3, 0xe7, 0xe7, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bellossom\u019e"}, "183": {"bytes": "0xc7, 0xd5, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Marill\u019e"}, "184": {"bytes": "0xbb, 0xee, 0xe9, 0xe1, 0xd5, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Azumarill\u019e"}, "185": {"bytes": "0xcd, 0xe9, 0xd8, 0xe3, 0xeb, 0xe3, 0xe3, 0xd8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sudowoodo\u019e"}, "186": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xe8, 0xe3, 0xd9, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Politoed\u019e"}, "187": {"bytes": "0xc2, 0xe3, 0xe4, 0xe4, 0xdd, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hoppip\u019e"}, "188": {"bytes": "0xcd, 0xdf, 0xdd, 0xe4, 0xe0, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Skiploom\u019e"}, "189": {"bytes": "0xc4, 0xe9, 0xe1, 0xe4, 0xe0, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jumpluff\u019e"}, "190": {"bytes": "0xbb, 0xdd, 0xe4, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Aipom\u019e"}, "191": {"bytes": "0xcd, 0xe9, 0xe2, 0xdf, 0xd9, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sunkern\u019e"}, "192": {"bytes": "0xcd, 0xe9, 0xe2, 0xda, 0xe0, 0xe3, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sunflora\u019e"}, "193": {"bytes": "0xd3, 0xd5, 0xe2, 0xe1, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Yanma\u019e"}, "194": {"bytes": "0xd1, 0xe3, 0xe3, 0xe4, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wooper\u019e"}, "195": {"bytes": "0xcb, 0xe9, 0xd5, 0xdb, 0xe7, 0xdd, 0xe6, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Quagsire\u019e"}, "196": {"bytes": "0xbf, 0xe7, 0xe4, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Espeon\u019e"}, "197": {"bytes": "0xcf, 0xe1, 0xd6, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Umbreon\u019e"}, "198": {"bytes": "0xc7, 0xe9, 0xe6, 0xdf, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Murkrow\u019e"}, "199": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowking\u019e"}, "200": {"bytes": "0xc7, 0xdd, 0xe7, 0xd8, 0xe6, 0xd9, 0xd5, 0xea, 0xe9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Misdreavus\u019e"}, "201": {"bytes": "0xcf, 0xe2, 0xe3, 0xeb, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Unown\u019e"}, "202": {"bytes": "0xd1, 0xe3, 0xd6, 0xd6, 0xe9, 0xda, 0xda, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wobbuffet\u019e"}, "203": {"bytes": "0xc1, 0xdd, 0xe6, 0xd5, 0xda, 0xd5, 0xe6, 0xdd, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Girafarig\u019e"}, "204": {"bytes": "0xca, 0xdd, 0xe2, 0xd9, 0xd7, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pineco\u019e"}, "205": {"bytes": "0xc0, 0xe3, 0xe6, 0xe6, 0xd9, 0xe8, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Forretress\u019e"}, "206": {"bytes": "0xbe, 0xe9, 0xe2, 0xe7, 0xe4, 0xd5, 0xe6, 0xd7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dunsparce\u019e"}, "207": {"bytes": "0xc1, 0xe0, 0xdd, 0xdb, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gligar\u019e"}, "208": {"bytes": "0xcd, 0xe8, 0xd9, 0xd9, 0xe0, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Steelix\u019e"}, "209": {"bytes": "0xcd, 0xe2, 0xe9, 0xd6, 0xd6, 0xe9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Snubbull\u019e"}, "210": {"bytes": "0xc1, 0xe6, 0xd5, 0xe2, 0xd6, 0xe9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Granbull\u019e"}, "211": {"bytes": "0xcb, 0xeb, 0xdd, 0xe0, 0xda, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Qwilfish\u019e"}, "212": {"bytes": "0xcd, 0xd7, 0xdd, 0xee, 0xe3, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Scizor\u019e"}, "213": {"bytes": "0xcd, 0xdc, 0xe9, 0xd7, 0xdf, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Shuckle\u019e"}, "214": {"bytes": "0xc2, 0xd9, 0xe6, 0xd5, 0xd7, 0xe6, 0xe3, 0xe7, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Heracross\u019e"}, "215": {"bytes": "0xcd, 0xe2, 0xd9, 0xd5, 0xe7, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sneasel\u019e"}, "216": {"bytes": "0xce, 0xd9, 0xd8, 0xd8, 0xdd, 0xe9, 0xe6, 0xe7, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Teddiursa\u019e"}, "217": {"bytes": "0xcf, 0xe6, 0xe7, 0xd5, 0xe6, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ursaring\u019e"}, "218": {"bytes": "0xcd, 0xe0, 0xe9, 0xdb, 0xe1, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slugma\u019e"}, "219": {"bytes": "0xc7, 0xd5, 0xdb, 0xd7, 0xd5, 0xe6, 0xdb, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magcargo\u019e"}, "220": {"bytes": "0xcd, 0xeb, 0xdd, 0xe2, 0xe9, 0xd6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Swinub\u019e"}, "221": {"bytes": "0xca, 0xdd, 0xe0, 0xe3, 0xe7, 0xeb, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Piloswine\u019e"}, "222": {"bytes": "0xbd, 0xe3, 0xe6, 0xe7, 0xe3, 0xe0, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Corsola\u019e"}, "223": {"bytes": "0xcc, 0xd9, 0xe1, 0xe3, 0xe6, 0xd5, 0xdd, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Remoraid\u019e"}, "224": {"bytes": "0xc9, 0xd7, 0xe8, 0xdd, 0xe0, 0xe0, 0xd9, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Octillery\u019e"}, "225": {"bytes": "0xbe, 0xd9, 0xe0, 0xdd, 0xd6, 0xdd, 0xe6, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Delibird\u019e"}, "226": {"bytes": "0xc7, 0xd5, 0xe2, 0xe8, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mantine\u019e"}, "227": {"bytes": "0xcd, 0xdf, 0xd5, 0xe6, 0xe1, 0xe3, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Skarmory\u019e"}, "228": {"bytes": "0xc2, 0xe3, 0xe9, 0xe2, 0xd8, 0xe3, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Houndour\u019e"}, "229": {"bytes": "0xc2, 0xe3, 0xe9, 0xe2, 0xd8, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Houndoom\u019e"}, "230": {"bytes": "0xc5, 0xdd, 0xe2, 0xdb, 0xd8, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kingdra\u019e"}, "231": {"bytes": "0xca, 0xdc, 0xd5, 0xe2, 0xe4, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Phanpy\u019e"}, "232": {"bytes": "0xbe, 0xe3, 0xe2, 0xe4, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Donphan\u019e"}, "233": {"bytes": "0xca, 0xe3, 0xe6, 0xed, 0xdb, 0xe3, 0xe2, 0xa3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Porygon2\u019e"}, "234": {"bytes": "0xcd, 0xe8, 0xd5, 0xe2, 0xe8, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Stantler\u019e"}, "235": {"bytes": "0xcd, 0xe1, 0xd9, 0xd5, 0xe6, 0xdb, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Smeargle\u019e"}, "236": {"bytes": "0xce, 0xed, 0xe6, 0xe3, 0xdb, 0xe9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tyrogue\u019e"}, "237": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xe8, 0xe3, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmontop\u019e"}, "238": {"bytes": "0xcd, 0xe1, 0xe3, 0xe3, 0xd7, 0xdc, 0xe9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Smoochum\u019e"}, "239": {"bytes": "0xbf, 0xe0, 0xd9, 0xdf, 0xdd, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Elekid\u019e"}, "240": {"bytes": "0xc7, 0xd5, 0xdb, 0xd6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magby\u019e"}, "241": {"bytes": "0xc7, 0xdd, 0xe0, 0xe8, 0xd5, 0xe2, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Miltank\u019e"}, "242": {"bytes": "0xbc, 0xe0, 0xdd, 0xe7, 0xe7, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Blissey\u019e"}, "243": {"bytes": "0xcc, 0xd5, 0xdd, 0xdf, 0xe3, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raikou\u019e"}, "244": {"bytes": "0xbf, 0xe2, 0xe8, 0xd9, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Entei\u019e"}, "245": {"bytes": "0xcd, 0xe9, 0xdd, 0xd7, 0xe9, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Suicune\u019e"}, "246": {"bytes": "0xc6, 0xd5, 0xe6, 0xea, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Larvitar\u019e"}, "247": {"bytes": "0xca, 0xe9, 0xe4, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pupitar\u019e"}, "248": {"bytes": "0xce, 0xed, 0xe6, 0xd5, 0xe2, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tyranitar\u019e"}, "249": {"bytes": "0xc6, 0xe9, 0xdb, 0xdd, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lugia\u019e"}, "250": {"bytes": "0xc2, 0xe3, 0xae, 0xc9, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ho-Oh\u019e"}, "251": {"bytes": "0xbd, 0xd9, 0xe0, 0xd9, 0xd6, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Celebi\u019e"}}, "Warnings": {"0": "Warning! ' found, replacing with \u2019 !", "1": "Warning! ' found, replacing with \u2019 !", "2": "Warning! ' found, replacing with \u2019 !", "3": "Warning! ' found, replacing with \u2019 !", "4": "Warning! ' found, replacing with \u2019 !", "5": "Warning! ' found, replacing with \u2019 !", "6": "Warning! ' found, replacing with \u2019 !", "7": "Warning! ' found, replacing with \u2019 !", "8": "Warning! ' found, replacing with \u2019 !", "9": "Warning! ' found, replacing with \u2019 !", "10": "Warning! ' found, replacing with \u2019 !", "11": "Warning! ' found, replacing with \u2019 !", "12": "Warning! ' found, replacing with \u2019 !", "13": "Warning! ' found, replacing with \u2019 !", "14": "Warning! ' found, replacing with \u2019 !", "15": "Warning! ' found, replacing with \u2019 !", "16": "Warning! ' found, replacing with \u2019 !", "17": "Warning! ' found, replacing with \u2019 !", "18": "Warning! ' found, replacing with \u2019 !", "19": "Warning! ' found, replacing with \u2019 !", "20": "Warning! ' found, replacing with \u2019 !", "21": "Warning! ' found, replacing with \u2019 !", "22": "Warning! ' found, replacing with \u2019 !", "23": "Warning! ' found, replacing with \u2019 !", "24": "Warning! ' found, replacing with \u2019 !", "25": "Warning! ' found, replacing with \u2019 !", "26": "Warning! ' found, replacing with \u2019 !", "27": "Warning! ' found, replacing with \u2019 !", "28": "Warning! ' found, replacing with \u2019 !", "29": "Warning! ' found, replacing with \u2019 !", "30": "Warning! ' found, replacing with \u2019 !", "31": "Warning! ' found, replacing with \u2019 !", "32": "Warning! ' found, replacing with \u2019 !", "33": "Warning! ' found, replacing with \u2019 !", "34": "Warning! ' found, replacing with \u2019 !", "35": "Warning! ' found, replacing with \u2019 !", "36": "Warning! ' found, replacing with \u2019 !", "37": "Warning! ' found, replacing with \u2019 !", "38": "Warning! ' found, replacing with \u2019 !", "39": "Warning! ' found, replacing with \u2019 !", "40": "Warning! ' found, replacing with \u2019 !", "41": "Warning! ' found, replacing with \u2019 !", "42": "Warning! ' found, replacing with \u2019 !", "43": "Warning! ' found, replacing with \u2019 !", "44": "Warning! ' found, replacing with \u2019 !", "45": "Warning! ' found, replacing with \u2019 !", "46": "Warning! ' found, replacing with \u2019 !", "47": "Warning! ' found, replacing with \u2019 !", "48": "Warning! ' found, replacing with \u2019 !", "49": "Warning! ' found, replacing with \u2019 !", "50": "Warning! ' found, replacing with \u2019 !", "51": "Warning! ' found, replacing with \u2019 !", "52": "Warning! ' found, replacing with \u2019 !", "53": "Warning! ' found, replacing with \u2019 !", "54": "Warning! ' found, replacing with \u2019 !"}, "Errors": {"0": "Error! No match found for char [ \" ]!", "1": "ERROR! Made a line break when disabled, sentence \"Remote and Arbitrary Code\u0147Execution assistance: \u0147\u0147-TimoVM \u0147\u0147Remote Multiboot\u0147functionality: \u023c\" is too long!"}}, "Italian": {"PTGB": {"DIA_OPEN": {"bytes": "0xc2, 0xd9, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xab, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xd9, 0xe2, 0xe2, 0xd9, 0xe0, 0xad, 0x0, 0xbb, 0xe7, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xd9, 0xb8, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xd5, 0x0, 0xe7, 0xd7, 0xdd, 0xd9, 0xe2, 0xe8, 0xdd, 0xe7, 0xe8, 0xad, 0x0, 0xc3, 0xe2, 0xfe, 0xda, 0xd5, 0xd7, 0xe8, 0xb8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xe9, 0xd6, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe7, 0xfe, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0xab, 0xfb, 0xc7, 0xed, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe0, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xea, 0xd5, 0xe6, 0xdd, 0xe3, 0xe9, 0xe7, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xdc, 0xd5, 0xd8, 0xfe, 0xd5, 0xe2, 0xed, 0x0, 0xd6, 0xe6, 0xd9, 0xd5, 0xdf, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0xe7, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xad, 0xad, 0xfb, 0xcd, 0xe3, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0xb4, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xdd, 0xe2, 0xdb, 0xfe, 0xe3, 0xe2, 0x0, 0xd5, 0x0, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0xfe, 0xe3, 0xe0, 0xd8, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0xab, 0xfb, 0xc3, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xdc, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0xb8, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xb4, 0xe7, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xdd, 0xe2, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd9, 0xed, 0x0, 0xe1, 0xd9, 0xd9, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0xab, 0xfb, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xda, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe1, 0xed, 0x0, 0xdb, 0xe3, 0xd5, 0xe0, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xd8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xd5, 0xe1, 0xd9, 0xae, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb4, 0xe7, 0xfe, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xfb, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xe2, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe9, 0xe8, 0xfe, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xe7, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xa3, 0xa6, 0xa1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xd7, 0xd5, 0xe8, 0xd5, 0xe0, 0xe3, 0xdb, 0xe9, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xbe, 0xd9, 0xec, 0xae, 0x0, 0xe3, 0xe6, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe6, 0xe8, 0xad, 0xfb, 0xbc, 0xe9, 0xe8, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xae, 0xfe, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xe6, 0xd9, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xd5, 0xe0, 0xe0, 0xab, 0xfb, 0xc9, 0xe2, 0xd9, 0x0, 0xe0, 0xd5, 0xe7, 0xe8, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0xb8, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0xae, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdb, 0xe3, 0xd9, 0xe7, 0x0, 0xeb, 0xe6, 0xe3, 0xe2, 0xdb, 0xab, 0xfe, 0xc3, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdf, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xad, 0xad, 0xad, 0xfb, 0xeb, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0xb8, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hey there! I\u2019m Professor Fennel. As\u0147you can see, I\u2019m a scientist. In\u0147fact, the subject I\u2019m researching is\u0147Trainers!\u023cMy dream is to collect save files of\u0147various trainers, but I haven\u2019t had\u0147any breakthroughs yet...\u023cSo in the meantime, I\u2019ve been working\u0147on a different project with one of my\u0147old friends!\u023cIn my home region, there\u2019s a location\u0147that can make a Pok\u00e9mon\u2019s dreams into\u0147reality.\u023cThis means that any other Pok\u00e9mon\u0147they meet in their dreams become\u0147real!\u023cThat\u2019s fantastic, but my goal is to\u0147do the same- just with a trainer\u2019s\u0147dream instead! That\u2019s why I need your\u0147help!\u023cI want to bring as many Pok\u00e9mon out\u0147of your dreams as possible!\u023cThere\u2019s just over 250 Pok\u00e9mon I want\u0147to catalogue in my Dream Pok\u00e9Dex- or\u0147Dream Dex for short.\u023cBut I\u2019ll let you keep any Pok\u00e9mon-\u0147they\u2019re from your dreams after all!\u023cOne last note, save data backups are\u0147recommended- just on the off chance\u0147that something goes wrong!\u0147I think that\u2019s everything...\u023cwhenever you\u2019re ready to start, just\u0147let me know!\u019e"}, "DIA_E4": {"bytes": "0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xe8, 0xdc, 0xe6, 0xdd, 0xe0, 0xe0, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0xfe, 0xd8, 0xd9, 0xd7, 0xdd, 0xd8, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe9, 0xe6, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xd9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0xab, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd5, 0xe8, 0xd9, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbf, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xc0, 0xe3, 0xe9, 0xe6, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xdc, 0xd5, 0xe1, 0xe4, 0xdd, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi trainer! I\u2019m thrilled you\u2019ve\u0147decided to help with our research,\u0147but we need the best of the best!\u023cCome back after you\u2019ve beaten the\u0147Elite Four and become the Champion!\u019e"}, "DIA_MG_FRLGE": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0xfe, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xae, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xc1, 0xc3, 0xc0, 0xce, 0xab, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe2, 0xd9, 0xd5, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xc7, 0xd5, 0xe6, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xda, 0xdd, 0xe0, 0xe0, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe2, 0xd5, 0xdd, 0xe6, 0xd9, 0x0, 0xd5, 0xe7, 0xfe, 0xda, 0xe3, 0xe0, 0xe0, 0xe3, 0xeb, 0xe7, 0xf0, 0x0, 0xc6, 0xc3, 0xc8, 0xc5, 0x0, 0xce, 0xc9, 0xc1, 0xbf, 0xce, 0xc2, 0xbf, 0xcc, 0x0, 0xd1, 0xc3, 0xce, 0xc2, 0x0, 0xbb, 0xc6, 0xc6, 0xad, 0xfb, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xdb, 0xe3, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, one more thing to take\u0147care of before we can begin- you need\u0147to enable MYSTERY GIFT!\u023cHead to the nearest Pok\u00e9 Mart and\u0147fill out the questionnaire as\u0147follows: LINK TOGETHER WITH ALL.\u023cAfter that, you should be all set to\u0147go! See you soon!\u019e"}, "DIA_MG_RS": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0xfe, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xae, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0xab, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbf, 0xce, 0xbb, 0xc6, 0xbc, 0xcf, 0xcc, 0xc1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xbd, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xe2, 0x0, 0xe2, 0xd9, 0xec, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0xf0, 0xfe, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0x0, 0xc3, 0xcd, 0x0, 0xbf, 0xd2, 0xbd, 0xc3, 0xce, 0xc3, 0xc8, 0xc1, 0xad, 0x0, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0xb8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdb, 0xe3, 0xab, 0xfb, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, one more thing to take\u0147care of before we can begin- you need\u0147to enable MYSTERY EVENT!\u023cHead to the PETALBURG Pok\u00e9mon Center\u0147and tell the man next to the PC:\u0147MYSTERY EVENT IS EXCITING. After\u0147that, you should be all set to go!\u023cSee you soon!\u019e"}, "DIA_LETS_START": {"bytes": "0xca, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0xb8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xc3, 0xfe, 0xe2, 0xd9, 0xd9, 0xd8, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xdb, 0xd9, 0xe8, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0xd9, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Perfect, that\u2019s all the information I\u0147need! Let\u2019s get started!\u019e"}, "DIA_START": {"bytes": "0xc9, 0xe2, 0x0, 0xd5, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xb8, 0xfe, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xdd, 0xe7, 0xdc, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xad, 0xfb, 0xc3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xad, 0xfb, 0xce, 0xdc, 0xd9, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xfe, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0x0, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0xad, 0xfb, 0xc9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0xb8, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xbd, 0xe0, 0xe9, 0xd6, 0xfe, 0xd5, 0xe8, 0xe8, 0xd9, 0xe2, 0xd8, 0xd5, 0xe2, 0xe8, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0x0, 0xdd, 0xe2, 0xdd, 0xe8, 0xdd, 0xd5, 0xe8, 0xd9, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xd9, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "On a second Game Boy family system,\u0147please load the Game Boy Pok\u00e9mon game\u0147you wish to transfer from.\u023cIn your Game Boy Pok\u00e9mon game, make\u0147your current box the one you want to\u0147transfer from.\u023cThen connect this Game Boy Advance to\u0147the other Game Boy family system\u0147using a Game Boy Color link cable.\u023cOnce you\u2019re ready, press A on this\u0147device, talk to the Cable Club\u0147attendant, and then initiate a trade.\u019e"}, "DIA_TRANS_GOOD": {"bytes": "0xbb, 0xe1, 0xd5, 0xee, 0xdd, 0xe2, 0xdb, 0xab, 0x0, 0xc0, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0xab, 0x0, 0xbf, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0xfe, 0xe4, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Amazing! Fantastic! Everything went\u0147perfectly!\u019e"}, "DIA_NEW_DEX": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xdd, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xab, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xd9, 0xec, 0xe8, 0xe6, 0xd5, 0x0, 0xe7, 0xeb, 0xd9, 0xd9, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xe6, 0xd9, 0xeb, 0xd5, 0xe6, 0xd8, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like there\u2019s at least one\u0147new Pok\u00e9mon here that isn\u2019t in the\u0147Dream Dex! I\u2019ll give them something\u0147extra sweet as a reward for you both.\u019e"}, "DIA_NO_NEW_DEX": {"bytes": "0xc3, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0xe2, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0xfe, 0xe3, 0xdf, 0xd5, 0xed, 0xab, 0x0, 0xc3, 0xe8, 0xb4, 0xe7, 0x0, 0xdd, 0xe1, 0xe4, 0xe3, 0xe6, 0xe8, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0xfe, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe9, 0xe0, 0xe8, 0xe7, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe1, 0xe9, 0xe0, 0xe8, 0xdd, 0xe4, 0xe0, 0xd9, 0x0, 0xe8, 0xd9, 0xe7, 0xe8, 0xe7, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It doesn\u2019t look like there\u2019s anything\u0147new for your Dream Dex, but that\u2019s\u0147okay! It\u2019s important to confirm\u0147research results with multiple tests!\u019e"}, "DIA_SEND_FRIEND_KANTO": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0x0, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0x0, 0xe3, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xe3, 0xe2, 0x0, 0xcd, 0xd9, 0xea, 0xd9, 0xe2, 0x0, 0xc3, 0xe7, 0xe0, 0xd5, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up! They live just south of\u0147the Pok\u00e9mon center on Seven Island!\u019e"}, "DIA_SEND_FRIEND_HOENN_RS": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xc7, 0xe3, 0xe7, 0xe7, 0xd8, 0xd9, 0xd9, 0xe4, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up!\u023cThey live just southeast of the\u0147Pok\u00e9mon center in Mossdeep City!\u019e"}, "DIA_SEND_FRIEND_HOENN_E": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xcd, 0xe3, 0xe3, 0xe8, 0xe3, 0xe4, 0xe3, 0xe0, 0xdd, 0xe7, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up!\u023cThey live just southeast of the\u0147Pok\u00e9mon center in Sootopolis City!\u019e"}, "DIA_THANK": {"bytes": "0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xfe, 0xd1, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xb8, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Thank you so much for your help!\u0147Whenever you want to transfer more\u0147Pok\u00e9mon, just let me know! See you\u0147around!\u019e"}, "DIA_GET_MON": {"bytes": "0xe9, 0xe2, 0xe9, 0xe7, 0xd9, 0xd8, 0xb8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "unused, will be removed\u019e"}, "DIA_MG_OTHER_EVENT": {"bytes": "0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xfe, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xad, 0xfe, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xd6, 0xe0, 0xd9, 0xe1, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe3, 0xea, 0xd9, 0xe6, 0xeb, 0xe6, 0xdd, 0xe8, 0xe8, 0xd9, 0xe2, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xad, 0xfb, 0xce, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xe2, 0xe3, 0xeb, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xec, 0xe4, 0xd9, 0xe6, 0xdd, 0xd9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0xae, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi Trainer! It looks like you have a\u0147different event currently loaded.\u0147That\u2019s no problem, but it will be\u0147overwritten if you continue.\u023cTurn off the system now if you want\u0147to experience your current event, but\u0147otherwise-\u019e"}, "DIA_PKMN_TO_COLLECT": {"bytes": "0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe9, 0xe4, 0xad, 0xad, 0xad, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0xb4, 0xe8, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe9, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0xfe, 0xe8, 0xdc, 0xe3, 0xe7, 0xd9, 0x0, 0xe9, 0xe4, 0xad, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi Trainer! It looks like you still\u0147have Pok\u00e9mon to pick up... I can\u2019t\u0147send over new Pok\u00e9mon until you pick\u0147those up.\u023cCome back after you\u2019ve received them!\u019e"}, "DIA_NO_VALID_PKMN": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xea, 0xd5, 0xe0, 0xdd, 0xd8, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xe2, 0xe3, 0xeb, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xd8, 0xe3, 0xe9, 0xd6, 0xe0, 0xd9, 0x0, 0xd7, 0xdc, 0xd9, 0xd7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xdd, 0xe8, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry Trainer, it doesn\u2019t look like\u0147you have any valid Pok\u00e9mon in your\u0147current box right now.\u023cGo double check your current box and\u0147we can give it another shot!\u019e"}, "DIA_ASK_QUEST": {"bytes": "0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xbc, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xb8, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd5, 0xe7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0x0, 0xda, 0xd9, 0xeb, 0x0, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi trainer! Before we begin, I need\u0147to ask you a few questions.\u019e"}, "DIA_WHAT_GAME_TRANS": {"bytes": "0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xac, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "And which Game Boy Pok\u00e9mon game are\u0147you transferring from?\u019e"}, "DIA_WHAT_LANG_TRANS": {"bytes": "0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xac, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "What language is the Game Boy Pok\u00e9mon\u0147game that you\u2019re transferring from?\u019e"}, "DIA_NO_GB_ROM": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xe7, 0xe3, 0xe6, 0xe6, 0xed, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xea, 0xd9, 0xe6, 0xe7, 0xdd, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m sorry, but that version in that\u0147language is not currently supported.\u019e"}, "DIA_IN_BOX": {"bytes": "0xbb, 0xe0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0xad, 0xfb, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xd9, 0xe1, 0xd6, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xd5, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe7, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xbd, 0xbb, 0xc8, 0xc8, 0xc9, 0xce, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xad, 0xfb, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xe3, 0xe6, 0xfe, 0xe7, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Alright! Let\u2019s take a look at the\u0147Pok\u00e9mon that will be transfered.\u023cPlease remember, once a Pok\u00e9mon is\u0147transfered, it CANNOT be returned to\u0147the Game Boy Game Pak.\u023cSelect confirm once you\u2019re ready, or\u0147select cancel if you want to keep the\u0147Pok\u00e9mon on your Game Boy Game Pak.\u019e"}, "DIA_MYTHIC_CONVERT": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0x0, 0xe6, 0xd5, 0xe6, 0xd9, 0xfe, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xab, 0x0, 0xbe, 0xe9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xe6, 0xd5, 0xe6, 0xdd, 0xe8, 0xed, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xea, 0xd9, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xad, 0xfb, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xd8, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0xb4, 0xe0, 0xe0, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xd9, 0xe8, 0xfe, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xb8, 0x0, 0xc9, 0xce, 0xb8, 0x0, 0xce, 0xc3, 0xbe, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xcd, 0xdc, 0xdd, 0xe2, 0xdd, 0xe2, 0xd9, 0xe7, 0xe7, 0xad, 0xfb, 0xc9, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe0, 0xd9, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe7, 0x0, 0xdd, 0xe7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xdb, 0xe9, 0xd5, 0xe6, 0xd9, 0xe2, 0xe8, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xda, 0xe9, 0xe8, 0xe9, 0xe6, 0xd9, 0xad, 0x0, 0xbe, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xac, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd5, 0xe4, 0xe4, 0xe0, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd6, 0xe3, 0xec, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like you have a rare\u0147Mythical Pok\u00e9mon! Due to their\u0147rarity, it seems they\u2019ve overloaded\u0147the machine.\u023cI can stablize them if you\u2019d like,\u0147but it\u2019ll change some things like met\u0147location, OT, TID, and Shininess.\u023cOtherwise I can leave them as is, but\u0147there\u2019s no guarentee that they\u2019ll be\u0147transferrable in the future. Do you\u0147want me to stablize them?\u023cThis will apply to all of the\u0147Mythical Pok\u00e9mon currently in your\u0147box.\u019e"}, "DIA_CANCEL": {"bytes": "0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0xab, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xdd, 0xda, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "No worries! Feel free to come back if\u0147you change your mind! See you around!\u019e"}, "DIA_SOME_INVALID_PKMN": {"bytes": "0xc3, 0x0, 0xe7, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0xad, 0xfb, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xe3, 0xe0, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe8, 0xd9, 0xe1, 0xe7, 0x0, 0xe3, 0xe6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xdd, 0xd9, 0xd8, 0xfe, 0xdd, 0xe2, 0xd7, 0xe3, 0xe6, 0xe6, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0x0, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0x0, 0xe9, 0xe2, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0xfe, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0xad, 0xfb, 0xce, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xda, 0xdd, 0xe2, 0xd9, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I see there is at least one Pok\u00e9mon\u0147that cannot be transferred from your\u0147current box.\u023cPok\u00e9mon holding items or modified\u0147incorrectly through unintended means\u0147cannot be transferred.\u023cThe other Pok\u00e9mon will transfer just\u0147fine though!\u019e"}, "DIA_MENU_BACK": {"bytes": "0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0xab, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xfe, 0xd5, 0xe2, 0xed, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "No worries! Feel free to come back\u0147any time!\u019e"}, "DIA_IS_MISSINGNO": {"bytes": "0xad, 0xad, 0xad, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xad, 0xad, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0x0, 0xd6, 0xd9, 0x0, 0xdb, 0xe6, 0xd5, 0xe4, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0xb8, 0x0, 0xe7, 0xe3, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "... It seems like one of your Pok\u00e9mon\u0147is messing with the machine... It\u0147looks to only be graphical though, so\u0147we can continue!\u019e"}, "DIA_ERROR_COLOSSEUM": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd7, 0xe3, 0xe0, 0xe3, 0xe7, 0xe7, 0xd9, 0xe9, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0xfe, 0xe6, 0xe3, 0xe3, 0xe1, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like you went to the\u0147colosseum instead of the trading\u0147room! Let\u2019s try that again!\u019e"}, "DIA_ERROR_COM_ENDED": {"bytes": "0xbd, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0xfe, 0xeb, 0xd5, 0xe7, 0x0, 0xe8, 0xd9, 0xe6, 0xe1, 0xdd, 0xe2, 0xd5, 0xe8, 0xd9, 0xd8, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Communication with the other device\u0147was terminated. Let\u2019s try that again!\u019e"}, "DIA_ERROR_DISCONNECT": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xfe, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xd8, 0xdd, 0xe7, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xd9, 0xd8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like the Game Boy Color link\u0147cable was disconnected... Let\u2019s try\u0147that again!\u019e"}, "DIA_ERROR_TIME_ONE": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0xfe, 0xe3, 0xe9, 0xe8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like the connection timed\u0147out... Let\u2019s try that again!\u019e"}, "DIA_ERROR_TIME_TWO": {"bytes": "0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0xfe, 0xe3, 0xe9, 0xe8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It seems like the connection timed\u0147out... Let\u2019s try that again!\u019e"}, "DIA_WHAT_LANG_EVENT": {"bytes": "0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0xac, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "What language is the Game Boy Pok\u00e9mon\u0147game that you want to send an event\u0147to?\u019e"}, "DIA_WHAT_GAME_EVENT": {"bytes": "0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd8, 0xe3, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xac, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "And which Game Boy Pok\u00e9mon game do\u0147you want to send an event to?\u019e"}, "DIA_K_DEX_NOT_FULL": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xa2, 0xa6, 0xa1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xeb, 0xd9, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, it looks like you\u0147haven\u2019t caught all 150 Pok\u00e9mon from\u0147the Kanto region yet.\u023cGo out and catch them all and then\u0147we\u2019ll be able to send over the event!\u019e"}, "DIA_J_DEX_NOT_FULL": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xaa, 0xaa, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc4, 0xe3, 0xdc, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xeb, 0xd9, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, it looks like you\u0147haven\u2019t caught all 99 new Pok\u00e9mon\u0147from the Johto region yet.\u023cGo out and catch them all and then\u0147we\u2019ll be able to send over the event!\u019e"}}, "RSEFRLG": {"dia_textGreet_rse": {"bytes": "0xd1, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0xb8, 0x0, 0xc3, 0x0, 0xe8, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xe0, 0xd8, 0xfe, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0x0, 0xce, 0xcc, 0xbb, 0xc3, 0xc8, 0xbf, 0xcc, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "When I was young, I traveled the world\u0147as a POK\u00e9MON TRAINER.\u019e"}, "dia_textGreet_frlg": {"bytes": "0xc3, 0x0, 0xe1, 0xd5, 0xed, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xe2, 0xe3, 0xeb, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0xd9, 0xe6, 0xb0, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "I may not look like much now,\u0147but when I was younger\u2026\u019e"}, "dia_textMoveBox_rs": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe9, 0xe2, 0xe0, 0xe3, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd8, 0xe3, 0xe3, 0xe6, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to unlock the\u0147door!\u019e"}, "dia_textMoveBox_frlg": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd6, 0xe3, 0xec, 0xd9, 0xe7, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to move the\u0147boxes!\u019e"}, "dia_textMoveBox_e": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe0, 0xd5, 0xe2, 0xe8, 0xe7, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to move the\u0147plants!\u019e"}, "dia_textWeHere_r": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xc7, 0xbb, 0xd2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leader MAXIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_s": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xbb, 0xcc, 0xbd, 0xc2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leader ARCHIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_frlg": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xc1, 0xc3, 0xc9, 0xd0, 0xbb, 0xc8, 0xc8, 0xc3, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Kanto to find\u0147the leader GIOVANNI.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_e": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0xe7, 0x0, 0xc7, 0xbb, 0xd2, 0xc3, 0xbf, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xcc, 0xbd, 0xc2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leaders MAXIE and ARCHIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textRecieved": {"bytes": "0xfc, 0x1, 0x2, 0xfd, 0x1, 0xb4, 0xcd, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0x0, 0xeb, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c1\u01b2\u00c0\u2019S POK\u00e9MON were sent to\u0147the PC!\u019e"}, "dia_textYouMustBe_first": {"bytes": "0xbb, 0xdc, 0xab, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xfd, 0x1, 0xab, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe8, 0xe3, 0xe0, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd7, 0xe3, 0xe1, 0xdd, 0xe2, 0xdb, 0xad, 0xfb, 0xc9, 0xdc, 0xab, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xab, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0xab, 0xfe, 0xc9, 0xe6, 0xb8, 0x0, 0xe6, 0xd5, 0xe8, 0xdc, 0xd9, 0xe6, 0xb8, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdd, 0xe2, 0xe8, 0xe6, 0xe3, 0xd8, 0xe9, 0xd7, 0xd9, 0x0, 0xe1, 0xed, 0xe7, 0xd9, 0xe0, 0xda, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "Ah! You must be \u01b2\u00c0! I was\u0147told you\u2019d be coming.\u023cOh! I still wear my disguise! Pardon!\u0147Or, rather, let me introduce myself.\u019e"}, "dia_textYouMustBe_second": {"bytes": "0xbb, 0xdc, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0x0, 0xd1, 0xd9, 0xe0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xab, 0x0, 0xc1, 0xe3, 0xe3, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xe7, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xfb, 0xc9, 0xdc, 0xab, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xab, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "Ah, \u01b2\u00c0! Welcome back! Good to\u0147see you again!\u023cOh! I still wear my disguise! Pardon!\u019e"}, "dia_textIAm_first": {"bytes": "0xfc, 0x1, 0x8, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xd5, 0x0, 0xdb, 0xe0, 0xe3, 0xd6, 0xd9, 0xae, 0xe8, 0xe6, 0xe3, 0xe8, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd9, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc3, 0xe2, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xe0, 0xdd, 0xd7, 0xd9, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb0, 0x0, 0xfa, 0xbb, 0xdc, 0xb8, 0x0, 0xe2, 0xe3, 0xb8, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0x0, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0xfe, 0xe2, 0xd5, 0xe1, 0xd9, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbI am a globe-trotting elite of the\u0147International Police.\u023cMy name\u2026 \u015eAh, no, I shall inform you of my code\u0147name only.\u023cMy code name, it is LOOKER!\u019e"}, "dia_textIAm_second": {"bytes": "0xfc, 0x1, 0x8, 0xc3, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc3, 0xb8, 0x0, 0xdb, 0xe0, 0xe3, 0xd6, 0xd9, 0xae, 0xe8, 0xe6, 0xe3, 0xe8, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd9, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc3, 0xe2, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xe0, 0xdd, 0xd7, 0xd9, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbIt is I, globe-trotting elite of the\u0147International Police.\u023cMy code name, it is LOOKER!\u019e"}, "dia_textPCConvo": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbb, 0xdc, 0xb8, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0x0, 0xc3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xdd, 0xe8, 0xfe, 0xfd, 0x1, 0x0, 0xdc, 0xd5, 0xe7, 0x0, 0xd5, 0xe6, 0xe6, 0xdd, 0xea, 0xd9, 0xd8, 0xac, 0xfb, 0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0xe2, 0xd8, 0xd9, 0xd9, 0xd8, 0xab, 0x0, 0xce, 0xdc, 0xd9, 0xed, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0xab, 0xfb, 0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbf, 0xec, 0xd7, 0xd9, 0xe0, 0xe0, 0xd9, 0xe2, 0xe8, 0xab, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xfe, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe1, 0xd9, 0xe2, 0xe8, 0xd5, 0xe6, 0xdd, 0xe0, 0xed, 0xb0, 0x0, 0xe7, 0xe8, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: Ah, LOOKER! I take it\u0147\u01b2\u00c0 has arrived?\u023c\u0206\u00c0\u00cbLOOKER: Indeed! They\u2019re ready to\u0147receive their POK\u00e9MON!\u023c\u0206\u00c0\u00c9FENNEL: Excellent! I\u2019ll send them\u0147over momentarily\u2026 stand by!\u019e"}, "dia_textPCThanks": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xbd, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xab, 0xfb, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: It looks like everything was\u0147sent to your PC successfully!\u023cThank you both for your help!\u019e"}, "dia_textThank": {"bytes": "0xfc, 0x1, 0x8, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xe8, 0xe3, 0xe4, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xd6, 0xed, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0xfb, 0xc3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe0, 0xe0, 0x0, 0xd9, 0xec, 0xd7, 0xe9, 0xe7, 0xd9, 0x0, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xad, 0x0, 0xfa, 0xcf, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xe3, 0xe9, 0xe6, 0x0, 0xe4, 0xd5, 0xe8, 0xdc, 0xe7, 0x0, 0xd7, 0xe6, 0xe3, 0xe7, 0xe7, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbThanks for stopping by, \u01b2\u00c0!\u023cIf you\u2019ll excuse me, I must return to\u0147my disguise. \u015eUntil our paths cross again!\u019e"}, "dia_textPCFull": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0x0, 0xdd, 0xe7, 0x0, 0xda, 0xe9, 0xe0, 0xe0, 0xab, 0xfb, 0xc1, 0xe3, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: It seems like the PC is full!\u023cGo make some room, and I can send over\u0147the rest of your POK\u00e9MON.\u019e"}, "dia_textLookerFull": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xcd, 0xe4, 0xd9, 0xd5, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0xfe, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0xfb, 0xc3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xed, 0xfe, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: Speak to me again after\u0147you\u2019ve made room, \u01b2\u00c0!\u023cIn the meantime, I will return to my\u0147disguise.\u019e"}}, "GB": {"sending_text": {"bytes": "SENDING DATA", "numLines": 0, "pixelsPerChar": 0, "pixelsInLine": 0, "includeBoxBreaks": false}, "prof_name": {"bytes": "FENNEL", "numLines": 0, "pixelsPerChar": 0, "pixelsInLine": 0, "includeBoxBreaks": false}}, "GENERAL": {"option_english": {"bytes": "0xbf, 0xe2, 0xdb, 0xe0, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "English\u019e"}, "option_japanese": {"bytes": "0xc4, 0xd5, 0xe4, 0xd5, 0xe2, 0xd9, 0xe7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Japanese\u019e"}, "option_spanish": {"bytes": "0xcd, 0xe4, 0xd5, 0xe2, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Spanish\u019e"}, "option_french": {"bytes": "0xc0, 0xe6, 0xd9, 0xe2, 0xd7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "French\u019e"}, "option_german": {"bytes": "0xc1, 0xd9, 0xe6, 0xe1, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "German\u019e"}, "option_italian": {"bytes": "0xc3, 0xe8, 0xd5, 0xe0, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Italian\u019e"}, "option_korean": {"bytes": "0xc5, 0xe3, 0xe6, 0xd9, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Korean\u019e"}, "option_green": {"bytes": "0xc1, 0xe6, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Green\u019e"}, "option_red": {"bytes": "0xcc, 0xd9, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Red\u019e"}, "option_blue": {"bytes": "0xbc, 0xe0, 0xe9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Blue\u019e"}, "option_yellow": {"bytes": "0xd3, 0xd9, 0xe0, 0xe0, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Yellow\u019e"}, "option_gold": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Gold\u019e"}, "option_silver": {"bytes": "0xcd, 0xdd, 0xe0, 0xea, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Silver\u019e"}, "option_crystal": {"bytes": "0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Crystal\u019e"}, "option_cancel": {"bytes": "0xbd, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Cancel\u019e"}, "press_start": {"bytes": "0xca, 0xe9, 0xe7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xcd, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xab, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Push the Start Button!\u019e"}, "option_transfer": {"bytes": "0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Transfer Pok\u00e9mon\u019e"}, "option_dreamdex": {"bytes": "0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Dream Dex\u019e"}, "option_credits": {"bytes": "0xbd, 0xe6, 0xd9, 0xd8, 0xdd, 0xe8, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Credits\u019e"}, "intro_first": {"bytes": "0xc2, 0xd9, 0xe0, 0xe0, 0xe3, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0xab, 0xfe, 0xfe, 0xc4, 0xe9, 0xe7, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xeb, 0xe3, 0xe6, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xd5, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0xae, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xd1, 0xc3, 0xc6, 0xc6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xed, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe0, 0xe3, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xd6, 0xd9, 0xe8, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xdd, 0xd8, 0xb8, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd9, 0xe2, 0xde, 0xe3, 0xed, 0xab, 0xfe, 0xfe, 0xae, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xff", "numLines": 15, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": false, "text": "Hello! Thank you for using Pok\u00e9\u0147Transporter GB!\u0147\u0147Just as a word of caution- Pok\u00e9\u0147Transporter GB WILL modify both the\u0147GameBoy and GameBoy Advance save\u0147files.\u0147\u0147Please note that while Pok\u00e9\u0147Transporter GB is no longer in beta,\u0147save file backups are still\u0147recommended before using. With that\u0147all being said, please enjoy!\u0147\u0147-The Gears of Progress \u019e"}, "intro_legal": {"bytes": "0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe3, 0xda, 0xfe, 0xe0, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd5, 0xe4, 0xe4, 0xe6, 0xd9, 0xd7, 0xdd, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xd5, 0xe2, 0xd7, 0xdc, 0xdd, 0xe7, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xda, 0xdd, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xbb, 0xc6, 0xd1, 0xbb, 0xd3, 0xcd, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0xfe, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0x0, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe1, 0xe9, 0xe7, 0xdd, 0xd7, 0xfe, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xeb, 0xe2, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0x0, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0x0, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0xad, 0xfe, 0xfe, 0xfe, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xff", "numLines": 14, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": false, "text": "Pok\u00e9 Transporter GB was made out of\u0147love and appreciation for the Pokemon\u0147franchise with no profit in mind. It\u0147will ALWAYS be free.\u0147\u0147Please support the original\u0147developers.\u0147\u0147All Pokemon names, sprites, and music\u0147are owned by Nintendo, Creatures Inc,\u0147and GAME FREAK.\u0147\u0147\u0147Press A to continue\u019e"}, "cart_load_error": {"bytes": "0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xad, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xdd, 0xe2, 0xe7, 0xd9, 0xe6, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xea, 0xd9, 0xe0, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff", "numLines": 10, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "The Pok\u00e9mon save file was\u0147not loaded successfully.\u0147Please remove and reinsert\u0147the Game Pak, and then\u0147press the A button.\u0147\u0147Alternatively, press the\u0147Select button to send this\u0147program to another GameBoy\u0147Advance.\u019e"}, "pulled_cart_error": {"bytes": "0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xad, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "The Pok\u00e9mon game was\u0147removed. Please turn off\u0147the system and restart the\u0147program.\u019e"}, "send_multiboot_instructions": {"bytes": "0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xfe, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xdd, 0xe2, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0x0, 0xe1, 0xe3, 0xd8, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xc6, 0xdd, 0xe2, 0xdf, 0xfe, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0xad, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0xe2, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xfe, 0xe8, 0xe3, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff", "numLines": 10, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Please connect this system\u0147to another GameBoy Advance\u0147in Multiboot mode with a\u0147GameBoy Advance Link\u0147Cable.\u0147\u0147Then, press the A button\u0147to begin sending Pok\u00e9\u0147Transporter GB to the\u0147second GameBoy Advance.\u019e"}, "send_multiboot_wait": {"bytes": "0xcd, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0xfe, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0xfe, 0xeb, 0xd5, 0xdd, 0xe8, 0xad, 0xfe, 0xfe, 0xc2, 0xe3, 0xe0, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbc, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xad, 0xff", "numLines": 7, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Sending Pok\u00e9 Transporter\u0147GB to second GameBoy\u0147Advance system. Please\u0147wait.\u0147\u0147Hold the B Button to\u0147cancel.\u019e"}, "send_multiboot_success": {"bytes": "0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xab, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xd5, 0xed, 0xfe, 0xe2, 0xe3, 0xeb, 0x0, 0xe4, 0xe3, 0xeb, 0xd9, 0xe6, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xad, 0xff", "numLines": 7, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "\u0147Pok\u00e9 Transporter GB was\u0147sent successfully! You may\u0147now power off this GameBoy\u0147Advance system.\u019e"}, "send_multiboot_failure": {"bytes": "0xfe, 0xbb, 0xe2, 0x0, 0xd9, 0xe6, 0xe6, 0xe3, 0xe6, 0x0, 0xe3, 0xd7, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0xfe, 0xc1, 0xbc, 0xad, 0x0, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xe6, 0xe9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xfe, 0xe7, 0xd7, 0xe6, 0xd9, 0xd9, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xad, 0xff", "numLines": 7, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "\u0147An error occurred while\u0147sending Pok\u00e9 Transporter\u0147GB. Press the A button to\u0147return to the instructions\u0147screen and try again.\u019e"}, "kanto_name": {"bytes": "0xc5, 0xbb, 0xc8, 0xce, 0xc9, 0xf0, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "KANTO:\u019e"}, "johto_name": {"bytes": "0xc4, 0xc9, 0xc2, 0xce, 0xc9, 0xf0, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "JOHTO:\u019e"}}, "CREDITS": {"credits_page_1": {"bytes": "0xc6, 0xd9, 0xd5, 0xd8, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xf0, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Lead developer:\u0147\u0147The Gears of Progress\u019e"}, "credits_page_2": {"bytes": "0xc6, 0xe3, 0xdb, 0xe3, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xe3, 0xae, 0xdd, 0xd8, 0xd9, 0xd5, 0xe8, 0xe3, 0xe6, 0xf0, 0xfe, 0xfe, 0xae, 0xc4, 0xe3, 0xe1, 0xd9, 0xfe, 0xfe, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xeb, 0xe3, 0xe6, 0xdf, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xc4, 0x0, 0xbc, 0xdd, 0xe6, 0xd8, 0xe1, 0xd5, 0xe2, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Logo and co-ideator:\u0147\u0147-Jome\u0147\u0147Spritework:\u0147\u0147-LJ Birdman\u019e"}, "credits_page_3": {"bytes": "0xc3, 0xd7, 0xe3, 0xe2, 0x0, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xe9, 0xdd, 0xdb, 0xdd, 0xce, 0xc5, 0xc9, 0xfe, 0xae, 0xc1, 0xe9, 0xdd, 0xbb, 0xd6, 0xd9, 0xe0, 0xfe, 0xae, 0xcd, 0xe3, 0xe9, 0xe6, 0xbb, 0xe4, 0xe4, 0xe0, 0xd9, 0xfe, 0x2d, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd5, 0xe6, 0xe8, 0xdd, 0xe7, 0xe8, 0xe7, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xcd, 0xdc, 0xe3, 0xeb, 0xd8, 0xe3, 0xeb, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0x0, 0xbd, 0xe0, 0xd9, 0xd5, 0xe6, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Icon Sprites:\u0147\u0147-LuigiTKO\u0147-GuiAbel\u0147-SourApple\u0147& the artists from Pok\u00e9mon\u0147Showdown and Crystal Clear\u019e"}, "credits_page_4": {"bytes": "0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xe6, 0xd6, 0xdd, 0xe8, 0xe6, 0xd5, 0xe6, 0xed, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0xfe, 0xbf, 0xec, 0xd9, 0xd7, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xce, 0xdd, 0xe1, 0xe3, 0xd0, 0xc7, 0xfe, 0xfe, 0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0xfe, 0xda, 0xe9, 0xe2, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xf0, 0x0, 0xfb, 0xe6, 0xdd, 0xe7, 0xdd, 0xe2, 0xdb, 0xca, 0xdc, 0xdd, 0xe0, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Remote and Arbitrary Code\u0147Execution assistance:\u0147\u0147-TimoVM\u0147\u0147Remote Multiboot\u0147functionality: \u023crisingPhil\u019e"}, "credits_page_5": {"bytes": "0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xe6, 0xdd, 0xe0, 0xd9, 0xed, 0xdf, 0xa7, 0xa5, 0xfe, 0xae, 0xcd, 0xdc, 0xd5, 0xe3, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Development assistance:\u0147\u0147-im a blisy\u0147-rileyk64\u0147-Shao\u019e"}, "credits_page_6": {"bytes": "0xcd, 0xe4, 0xd5, 0xd7, 0xd9, 0x0, 0xc9, 0xe4, 0xe8, 0xdd, 0xe1, 0xdd, 0xee, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xf0, 0xfe, 0xfe, 0xae, 0xd9, 0xd5, 0xe7, 0xed, 0xd5, 0xe7, 0xe4, 0xdd, 0xa4, 0xa2, 0xa5, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Space Optimization:\u0147\u0147-easyaspi314\u019e"}, "credits_page_7": {"bytes": "0xbc, 0xe9, 0xdd, 0xe0, 0xe8, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xbe, 0xd9, 0xea, 0xdf, 0xdd, 0xe8, 0xca, 0xe6, 0xe3, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xce, 0xe3, 0xe2, 0xd7, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xc1, 0xbc, 0xbb, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Built using:\u0147\u0147\u0147-DevkitPro\u0147-LibTonc\u0147-LibGBA\u019e"}, "credits_page_8": {"bytes": "0xc3, 0xe2, 0xe7, 0xe4, 0xdd, 0xe6, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xe7, 0x0, 0xe3, 0xda, 0xf0, 0xfe, 0xfe, 0xae, 0xc1, 0xe3, 0xe4, 0xe4, 0xdd, 0xd9, 0xe6, 0xfe, 0xae, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xcc, 0xbf, 0xce, 0xc3, 0xcc, 0xbf, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Inspired by the works of:\u0147\u0147-Goppier\u0147-Lorenzooone\u0147-im a blisy\u0147-RETIRE\u019e"}, "credits_page_9": {"bytes": "0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xe7, 0x0, 0xe9, 0xe7, 0xd9, 0xd8, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xae, 0xca, 0xc5, 0xc2, 0xd9, 0xd2, 0xfe, 0xae, 0xd1, 0xbd, 0xa4, 0xce, 0xe3, 0xe3, 0xe0, 0xfe, 0xae, 0xcf, 0xe7, 0xd9, 0xe2, 0xe8, 0xdd, 0xfe, 0xae, 0xcd, 0xd5, 0xe4, 0xe4, 0xed, 0xc7, 0xdd, 0xd8, 0xce, 0xe3, 0xbb, 0xc1, 0xbc, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Programs used:\u0147\u0147\u0147-HexManiacAdvance\u0147-PKHeX\u0147-WC3Tool\u0147-Usenti\u0147-SappyMidToAGB\u019e"}, "credits_page_10": {"bytes": "0xc9, 0xe4, 0xd9, 0xe2, 0x0, 0xcd, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xc6, 0xdd, 0xd6, 0xe6, 0xd5, 0xe6, 0xdd, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xe0, 0xdd, 0xd6, 0xe8, 0xe3, 0xe2, 0xd7, 0xae, 0xd9, 0xec, 0xd5, 0xe1, 0xe4, 0xe0, 0xd9, 0xe7, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0xae, 0xdb, 0xd6, 0xd5, 0xae, 0xe0, 0xdd, 0xe2, 0xdf, 0xae, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xae, 0xd5, 0xeb, 0xd9, 0xe7, 0xe3, 0xe1, 0xd9, 0xae, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0xae, 0xd5, 0xe6, 0xd8, 0xe9, 0xdd, 0xe2, 0xe3, 0xae, 0xe4, 0xe3, 0xdf, 0xd9, 0xae, 0xdb, 0xd9, 0xe2, 0xa3, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Open Source Code and\u0147Libraries:\u0147\u0147-libtonc-examples\u0147-PokemonGen3toGenX\u0147-gba-link-connection\u0147-awesome-gbadev\u0147-arduino-poke-gen2\u019e"}, "credits_page_11": {"bytes": "0xcc, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xd5, 0xe6, 0xe1, 0xae, 0xd8, 0xe3, 0xd7, 0xe7, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0xfe, 0xc0, 0xe9, 0xe0, 0xe0, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xe7, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe3, 0xe9, 0xe2, 0xd8, 0x0, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xb4, 0xe7, 0x0, 0xc1, 0xdd, 0xe8, 0xc2, 0xe9, 0xd6, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Research resources:\u0147\u0147-arm-docs\u0147-PokemonGen3toGenX\u0147\u0147Full links can be found on\u0147this program\u2019s GitHub\u019e"}, "credits_page_12": {"bytes": "0xcc, 0xc9, 0xc7, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xd8, 0xd9, 0xd7, 0xe3, 0xe1, 0xe4, 0xdd, 0xe0, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0x0, 0xd7, 0xe6, 0xd9, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xcc, 0xbf, 0xce, 0x0, 0xe8, 0xd9, 0xd5, 0xe1, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "ROM data obtained from\u0147decompilations created by\u0147the PRET team\u019e"}, "credits_page_13": {"bytes": "0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0xf0, 0xfe, 0xfe, 0xae, 0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe4, 0xd9, 0xd8, 0xdd, 0xd5, 0xfe, 0xae, 0xcd, 0xd9, 0xe6, 0xd9, 0xd6, 0xdd, 0xdd, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xbb, 0xca, 0xc3, 0xad, 0xd7, 0xe3, 0xe1, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Pok\u00e9mon data obtained\u0147from:\u0147\u0147-Bulbapedia\u0147-Serebii\u0147-PokeAPI.com\u019e"}, "credits_page_14": {"bytes": "0xbe, 0xdd, 0xe7, 0xd7, 0xe3, 0xe6, 0xd8, 0x0, 0xd7, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xe8, 0xed, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0x0, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0xfe, 0xae, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0xae, 0xe4, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Discord community\u0147assistance:\u0147\u0147-Hex Maniac Advance\u0147Development\u0147-gbadev\u0147-pret\u019e"}, "credits_page_15": {"bytes": "0xd1, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc7, 0xd5, 0xd8, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Writing assistance:\u0147\u0147\u0147-Mad\u019e"}, "credits_page_16": {"bytes": "0xbb, 0xe2, 0x0, 0xdd, 0xe1, 0xe1, 0xd9, 0xe2, 0xe7, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0x2d, 0xfe, 0xeb, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe1, 0xb8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xe3, 0xe9, 0xe0, 0xd8, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0xad, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "An immense thanks to\u0147Lorenzooone for their\u0147assistance in reading &\u0147writing save data. Without\u0147them, this project would\u0147not have been possible.\u019e"}, "credits_page_17": {"bytes": "0xcd, 0xe4, 0xd9, 0xd7, 0xdd, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xbf, 0xe2, 0xe2, 0xb8, 0xfe, 0xe6, 0xe3, 0xdf, 0xe9, 0xb8, 0x0, 0xcd, 0xe0, 0xd9, 0xd9, 0xe4, 0xed, 0xb8, 0x0, 0xbf, 0xee, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xe6, 0xd5, 0xdc, 0xe8, 0xe3, 0xe2, 0xdd, 0xe2, 0xb8, 0x0, 0xbc, 0xd5, 0xe7, 0xd5, 0xd6, 0xdd, 0xb8, 0x0, 0xc7, 0xd5, 0xd8, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe3, 0xe2, 0xd9, 0x0, 0xeb, 0xdc, 0xe3, 0x0, 0xdc, 0xd5, 0xe7, 0xfe, 0xe0, 0xdd, 0xe7, 0xe8, 0xd9, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xd5, 0xd6, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe1, 0xe3, 0xe2, 0xe8, 0xdc, 0xe7, 0xab, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Special thanks to Enn,\u0147roku, Sleepy, Eza,\u0147sarahtonin, Basabi, Mad,\u0147and everyone who has\u0147listened to me talk about\u0147this for months!\u019e"}, "credits_page_18": {"bytes": "0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0xfe, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xe6, 0xd9, 0xe0, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xd7, 0xe3, 0xe4, 0xed, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0xfe, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xad, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0xfe, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0x0, 0xc3, 0xe2, 0xd7, 0xad, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "All Pok\u00e9mon names,\u0147sprites, and names of\u0147related resources are\u0147copyright Nintendo,\u0147Creatures Inc., and GAME\u0147FREAK Inc.\u019e"}, "credits_page_19": {"bytes": "0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0xfe, 0xd9, 0xe2, 0xd8, 0xe3, 0xe6, 0xe7, 0xd9, 0xd8, 0x0, 0xe3, 0xe6, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xc0, 0xe6, 0xd9, 0xd5, 0xdf, 0xba, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "This project is not\u0147endorsed or supported by\u0147GameFreak/Nintendo.\u0147\u0147Please support the\u0147original developers.\u019e"}}, "PKMN_NAMES": {"0": {"bytes": "0xc7, 0xdd, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0xc8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "MissingNo\u019e"}, "1": {"bytes": "0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bulbasaur\u019e"}, "2": {"bytes": "0xc3, 0xea, 0xed, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ivysaur\u019e"}, "3": {"bytes": "0xd0, 0xd9, 0xe2, 0xe9, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venusaur\u019e"}, "4": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xe1, 0xd5, 0xe2, 0xd8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charmander\u019e"}, "5": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xe1, 0xd9, 0xe0, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charmeleon\u019e"}, "6": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xdd, 0xee, 0xd5, 0xe6, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charizard\u019e"}, "7": {"bytes": "0xcd, 0xe5, 0xe9, 0xdd, 0xe6, 0xe8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Squirtle\u019e"}, "8": {"bytes": "0xd1, 0xd5, 0xe6, 0xe8, 0xe3, 0xe6, 0xe8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wartortle\u019e"}, "9": {"bytes": "0xbc, 0xe0, 0xd5, 0xe7, 0xe8, 0xe3, 0xdd, 0xe7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Blastoise\u019e"}, "10": {"bytes": "0xbd, 0xd5, 0xe8, 0xd9, 0xe6, 0xe4, 0xdd, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Caterpie\u019e"}, "11": {"bytes": "0xc7, 0xd9, 0xe8, 0xd5, 0xe4, 0xe3, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Metapod\u019e"}, "12": {"bytes": "0xbc, 0xe9, 0xe8, 0xe8, 0xd9, 0xe6, 0xda, 0xe6, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Butterfree\u019e"}, "13": {"bytes": "0xd1, 0xd9, 0xd9, 0xd8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weedle\u019e"}, "14": {"bytes": "0xc5, 0xd5, 0xdf, 0xe9, 0xe2, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kakuna\u019e"}, "15": {"bytes": "0xbc, 0xd9, 0xd9, 0xd8, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Beedrill\u019e"}, "16": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgey\u019e"}, "17": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xe3, 0xe8, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgeotto\u019e"}, "18": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xe3, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgeot\u019e"}, "19": {"bytes": "0xcc, 0xd5, 0xe8, 0xe8, 0xd5, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rattata\u019e"}, "20": {"bytes": "0xcc, 0xd5, 0xe8, 0xdd, 0xd7, 0xd5, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raticate\u019e"}, "21": {"bytes": "0xcd, 0xe4, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Spearow\u019e"}, "22": {"bytes": "0xc0, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Fearow\u019e"}, "23": {"bytes": "0xbf, 0xdf, 0xd5, 0xe2, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ekans\u019e"}, "24": {"bytes": "0xbb, 0xe6, 0xd6, 0xe3, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Arbok\u019e"}, "25": {"bytes": "0xca, 0xdd, 0xdf, 0xd5, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pikachu\u019e"}, "26": {"bytes": "0xcc, 0xd5, 0xdd, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raichu\u019e"}, "27": {"bytes": "0xcd, 0xd5, 0xe2, 0xd8, 0xe7, 0xdc, 0xe6, 0xd9, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sandshrew\u019e"}, "28": {"bytes": "0xcd, 0xd5, 0xe2, 0xd8, 0xe7, 0xe0, 0xd5, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sandslash\u019e"}, "29": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xd5, 0xe2, 0xb6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoran\u2640\u019e"}, "30": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xdd, 0xe2, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidorina\u019e"}, "31": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe5, 0xe9, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoqueen\u019e"}, "32": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xd5, 0xe2, 0xb5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoran\u2642\u019e"}, "33": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xdd, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidorino\u019e"}, "34": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoking\u019e"}, "35": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xd5, 0xdd, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Clefairy\u019e"}, "36": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xd5, 0xd6, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Clefable\u019e"}, "37": {"bytes": "0xd0, 0xe9, 0xe0, 0xe4, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vulpix\u019e"}, "38": {"bytes": "0xc8, 0xdd, 0xe2, 0xd9, 0xe8, 0xd5, 0xe0, 0xd9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ninetales\u019e"}, "39": {"bytes": "0xc4, 0xdd, 0xdb, 0xdb, 0xe0, 0xed, 0xe4, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jigglypuff\u019e"}, "40": {"bytes": "0xd1, 0xdd, 0xdb, 0xdb, 0xe0, 0xed, 0xe8, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wigglytuff\u019e"}, "41": {"bytes": "0xd4, 0xe9, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Zubat\u019e"}, "42": {"bytes": "0xc1, 0xe3, 0xe0, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golbat\u019e"}, "43": {"bytes": "0xc9, 0xd8, 0xd8, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Oddish\u019e"}, "44": {"bytes": "0xc1, 0xe0, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gloom\u019e"}, "45": {"bytes": "0xd0, 0xdd, 0xe0, 0xd9, 0xe4, 0xe0, 0xe9, 0xe1, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vileplume\u019e"}, "46": {"bytes": "0xca, 0xd5, 0xe6, 0xd5, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Paras\u019e"}, "47": {"bytes": "0xca, 0xd5, 0xe6, 0xd5, 0xe7, 0xd9, 0xd7, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Parasect\u019e"}, "48": {"bytes": "0xd0, 0xd9, 0xe2, 0xe3, 0xe2, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venonat\u019e"}, "49": {"bytes": "0xd0, 0xd9, 0xe2, 0xe3, 0xe1, 0xe3, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venomoth\u019e"}, "50": {"bytes": "0xbe, 0xdd, 0xdb, 0xe0, 0xd9, 0xe8, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Diglett\u019e"}, "51": {"bytes": "0xbe, 0xe9, 0xdb, 0xe8, 0xe6, 0xdd, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dugtrio\u019e"}, "52": {"bytes": "0xc7, 0xd9, 0xe3, 0xeb, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Meowth\u019e"}, "53": {"bytes": "0xca, 0xd9, 0xe6, 0xe7, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Persian\u019e"}, "54": {"bytes": "0xca, 0xe7, 0xed, 0xd8, 0xe9, 0xd7, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Psyduck\u019e"}, "55": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xe9, 0xd7, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golduck\u019e"}, "56": {"bytes": "0xc7, 0xd5, 0xe2, 0xdf, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mankey\u019e"}, "57": {"bytes": "0xca, 0xe6, 0xdd, 0xe1, 0xd9, 0xd5, 0xe4, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Primeape\u019e"}, "58": {"bytes": "0xc1, 0xe6, 0xe3, 0xeb, 0xe0, 0xdd, 0xe8, 0xdc, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Growlithe\u019e"}, "59": {"bytes": "0xbb, 0xe6, 0xd7, 0xd5, 0xe2, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Arcanine\u019e"}, "60": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xd5, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwag\u019e"}, "61": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xdc, 0xdd, 0xe6, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwhirl\u019e"}, "62": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xe6, 0xd5, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwrath\u019e"}, "63": {"bytes": "0xbb, 0xd6, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Abra\u019e"}, "64": {"bytes": "0xc5, 0xd5, 0xd8, 0xd5, 0xd6, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kadabra\u019e"}, "65": {"bytes": "0xbb, 0xe0, 0xd5, 0xdf, 0xd5, 0xee, 0xd5, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Alakazam\u019e"}, "66": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machop\u019e"}, "67": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xdf, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machoke\u019e"}, "68": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xd5, 0xe1, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machamp\u019e"}, "69": {"bytes": "0xbc, 0xd9, 0xe0, 0xe0, 0xe7, 0xe4, 0xe6, 0xe3, 0xe9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bellsprout\u019e"}, "70": {"bytes": "0xd1, 0xd9, 0xd9, 0xe4, 0xdd, 0xe2, 0xd6, 0xd9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weepinbell\u019e"}, "71": {"bytes": "0xd0, 0xdd, 0xd7, 0xe8, 0xe6, 0xd9, 0xd9, 0xd6, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Victreebel\u019e"}, "72": {"bytes": "0xce, 0xd9, 0xe2, 0xe8, 0xd5, 0xd7, 0xe3, 0xe3, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tentacool\u019e"}, "73": {"bytes": "0xce, 0xd9, 0xe2, 0xe8, 0xd5, 0xd7, 0xe6, 0xe9, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tentacruel\u019e"}, "74": {"bytes": "0xc1, 0xd9, 0xe3, 0xd8, 0xe9, 0xd8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Geodude\u019e"}, "75": {"bytes": "0xc1, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Graveler\u019e"}, "76": {"bytes": "0xc1, 0xe3, 0xe0, 0xd9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golem\u019e"}, "77": {"bytes": "0xca, 0xe3, 0xe2, 0xed, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ponyta\u019e"}, "78": {"bytes": "0xcc, 0xd5, 0xe4, 0xdd, 0xd8, 0xd5, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rapidash\u019e"}, "79": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xe4, 0xe3, 0xdf, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowpoke\u019e"}, "80": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xd6, 0xe6, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowbro\u019e"}, "81": {"bytes": "0xc7, 0xd5, 0xdb, 0xe2, 0xd9, 0xe1, 0xdd, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magnemite\u019e"}, "82": {"bytes": "0xc7, 0xd5, 0xdb, 0xe2, 0xd9, 0xe8, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magneton\u019e"}, "83": {"bytes": "0xc0, 0xd5, 0xe6, 0xda, 0xd9, 0xe8, 0xd7, 0xdc, 0xb4, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Farfetch\u2019d\u019e"}, "84": {"bytes": "0xbe, 0xe3, 0xd8, 0xe9, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Doduo\u019e"}, "85": {"bytes": "0xbe, 0xe3, 0xd8, 0xe6, 0xdd, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dodrio\u019e"}, "86": {"bytes": "0xcd, 0xd9, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seel\u019e"}, "87": {"bytes": "0xbe, 0xd9, 0xeb, 0xdb, 0xe3, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dewgong\u019e"}, "88": {"bytes": "0xc1, 0xe6, 0xdd, 0xe1, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Grimer\u019e"}, "89": {"bytes": "0xc7, 0xe9, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Muk\u019e"}, "90": {"bytes": "0xcd, 0xdc, 0xd9, 0xe0, 0xe0, 0xd8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Shellder\u019e"}, "91": {"bytes": "0xbd, 0xe0, 0xe3, 0xed, 0xe7, 0xe8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cloyster\u019e"}, "92": {"bytes": "0xc1, 0xd5, 0xe7, 0xe8, 0xe0, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gastly\u019e"}, "93": {"bytes": "0xc2, 0xd5, 0xe9, 0xe2, 0xe8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Haunter\u019e"}, "94": {"bytes": "0xc1, 0xd9, 0xe2, 0xdb, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gengar\u019e"}, "95": {"bytes": "0xc9, 0xe2, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Onix\u019e"}, "96": {"bytes": "0xbe, 0xe6, 0xe3, 0xeb, 0xee, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Drowzee\u019e"}, "97": {"bytes": "0xc2, 0xed, 0xe4, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hypno\u019e"}, "98": {"bytes": "0xc5, 0xe6, 0xd5, 0xd6, 0xd6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Krabby\u019e"}, "99": {"bytes": "0xc5, 0xdd, 0xe2, 0xdb, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kingler\u019e"}, "100": {"bytes": "0xd0, 0xe3, 0xe0, 0xe8, 0xe3, 0xe6, 0xd6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Voltorb\u019e"}, "101": {"bytes": "0xbf, 0xe0, 0xd9, 0xd7, 0xe8, 0xe6, 0xe3, 0xd8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Electrode\u019e"}, "102": {"bytes": "0xbf, 0xec, 0xd9, 0xdb, 0xdb, 0xd7, 0xe9, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Exeggcute\u019e"}, "103": {"bytes": "0xbf, 0xec, 0xd9, 0xdb, 0xdb, 0xe9, 0xe8, 0xe3, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Exeggutor\u019e"}, "104": {"bytes": "0xbd, 0xe9, 0xd6, 0xe3, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cubone\u019e"}, "105": {"bytes": "0xc7, 0xd5, 0xe6, 0xe3, 0xeb, 0xd5, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Marowak\u019e"}, "106": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xe0, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmonlee\u019e"}, "107": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xd7, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmonchan\u019e"}, "108": {"bytes": "0xc6, 0xdd, 0xd7, 0xdf, 0xdd, 0xe8, 0xe9, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lickitung\u019e"}, "109": {"bytes": "0xc5, 0xe3, 0xda, 0xda, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Koffing\u019e"}, "110": {"bytes": "0xd1, 0xd9, 0xd9, 0xee, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weezing\u019e"}, "111": {"bytes": "0xcc, 0xdc, 0xed, 0xdc, 0xe3, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rhyhorn\u019e"}, "112": {"bytes": "0xcc, 0xdc, 0xed, 0xd8, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rhydon\u019e"}, "113": {"bytes": "0xbd, 0xdc, 0xd5, 0xe2, 0xe7, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chansey\u019e"}, "114": {"bytes": "0xce, 0xd5, 0xe2, 0xdb, 0xd9, 0xe0, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tangela\u019e"}, "115": {"bytes": "0xc5, 0xd5, 0xe2, 0xdb, 0xd5, 0xe7, 0xdf, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kangaskhan\u019e"}, "116": {"bytes": "0xc2, 0xe3, 0xe6, 0xe7, 0xd9, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Horsea\u019e"}, "117": {"bytes": "0xcd, 0xd9, 0xd5, 0xd8, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seadra\u019e"}, "118": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Goldeen\u019e"}, "119": {"bytes": "0xcd, 0xd9, 0xd5, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seaking\u019e"}, "120": {"bytes": "0xcd, 0xe8, 0xd5, 0xe6, 0xed, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Staryu\u019e"}, "121": {"bytes": "0xcd, 0xe8, 0xd5, 0xe6, 0xe1, 0xdd, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Starmie\u019e"}, "122": {"bytes": "0xc7, 0xe6, 0xad, 0x0, 0xc7, 0xdd, 0xe1, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mr. Mime\u019e"}, "123": {"bytes": "0xcd, 0xd7, 0xed, 0xe8, 0xdc, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Scyther\u019e"}, "124": {"bytes": "0xc4, 0xed, 0xe2, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jynx\u019e"}, "125": {"bytes": "0xbf, 0xe0, 0xd9, 0xd7, 0xe8, 0xd5, 0xd6, 0xe9, 0xee, 0xee, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Electabuzz\u019e"}, "126": {"bytes": "0xc7, 0xd5, 0xdb, 0xe1, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magmar\u019e"}, "127": {"bytes": "0xca, 0xdd, 0xe2, 0xe7, 0xdd, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pinsir\u019e"}, "128": {"bytes": "0xce, 0xd5, 0xe9, 0xe6, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tauros\u019e"}, "129": {"bytes": "0xc7, 0xd5, 0xdb, 0xdd, 0xdf, 0xd5, 0xe6, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magikarp\u019e"}, "130": {"bytes": "0xc1, 0xed, 0xd5, 0xe6, 0xd5, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gyarados\u019e"}, "131": {"bytes": "0xc6, 0xd5, 0xe4, 0xe6, 0xd5, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lapras\u019e"}, "132": {"bytes": "0xbe, 0xdd, 0xe8, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ditto\u019e"}, "133": {"bytes": "0xbf, 0xd9, 0xea, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Eevee\u019e"}, "134": {"bytes": "0xd0, 0xd5, 0xe4, 0xe3, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vaporeon\u019e"}, "135": {"bytes": "0xc4, 0xe3, 0xe0, 0xe8, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jolteon\u019e"}, "136": {"bytes": "0xc0, 0xe0, 0xd5, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Flareon\u019e"}, "137": {"bytes": "0xca, 0xe3, 0xe6, 0xed, 0xdb, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Porygon\u019e"}, "138": {"bytes": "0xc9, 0xe1, 0xd5, 0xe2, 0xed, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Omanyte\u019e"}, "139": {"bytes": "0xc9, 0xe1, 0xd5, 0xe7, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Omastar\u019e"}, "140": {"bytes": "0xc5, 0xd5, 0xd6, 0xe9, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kabuto\u019e"}, "141": {"bytes": "0xc5, 0xd5, 0xd6, 0xe9, 0xe8, 0xe3, 0xe4, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kabutops\u019e"}, "142": {"bytes": "0xbb, 0xd9, 0xe6, 0xe3, 0xd8, 0xd5, 0xd7, 0xe8, 0xed, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Aerodactyl\u019e"}, "143": {"bytes": "0xcd, 0xe2, 0xe3, 0xe6, 0xe0, 0xd5, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Snorlax\u019e"}, "144": {"bytes": "0xbb, 0xe6, 0xe8, 0xdd, 0xd7, 0xe9, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Articuno\u019e"}, "145": {"bytes": "0xd4, 0xd5, 0xe4, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Zapdos\u019e"}, "146": {"bytes": "0xc7, 0xe3, 0xe0, 0xe8, 0xe6, 0xd9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Moltres\u019e"}, "147": {"bytes": "0xbe, 0xe6, 0xd5, 0xe8, 0xdd, 0xe2, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dratini\u019e"}, "148": {"bytes": "0xbe, 0xe6, 0xd5, 0xdb, 0xe3, 0xe2, 0xd5, 0xdd, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dragonair\u019e"}, "149": {"bytes": "0xbe, 0xe6, 0xd5, 0xdb, 0xe3, 0xe2, 0xdd, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dragonite\u019e"}, "150": {"bytes": "0xc7, 0xd9, 0xeb, 0xe8, 0xeb, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mewtwo\u019e"}, "151": {"bytes": "0xc7, 0xd9, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mew\u019e"}, "152": {"bytes": "0xbd, 0xdc, 0xdd, 0xdf, 0xe3, 0xe6, 0xdd, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chikorita\u019e"}, "153": {"bytes": "0xbc, 0xd5, 0xed, 0xe0, 0xd9, 0xd9, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bayleef\u019e"}, "154": {"bytes": "0xc7, 0xd9, 0xdb, 0xd5, 0xe2, 0xdd, 0xe9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Meganium\u019e"}, "155": {"bytes": "0xbd, 0xed, 0xe2, 0xd8, 0xd5, 0xe5, 0xe9, 0xdd, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cyndaquil\u019e"}, "156": {"bytes": "0xcb, 0xe9, 0xdd, 0xe0, 0xd5, 0xea, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Quilava\u019e"}, "157": {"bytes": "0xce, 0xed, 0xe4, 0xdc, 0xe0, 0xe3, 0xe7, 0xdd, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Typhlosion\u019e"}, "158": {"bytes": "0xce, 0xe3, 0xe8, 0xe3, 0xd8, 0xdd, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Totodile\u019e"}, "159": {"bytes": "0xbd, 0xe6, 0xe3, 0xd7, 0xe3, 0xe2, 0xd5, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Croconaw\u019e"}, "160": {"bytes": "0xc0, 0xd9, 0xe6, 0xd5, 0xe0, 0xdd, 0xdb, 0xd5, 0xe8, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Feraligatr\u019e"}, "161": {"bytes": "0xcd, 0xd9, 0xe2, 0xe8, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sentret\u019e"}, "162": {"bytes": "0xc0, 0xe9, 0xe6, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Furret\u019e"}, "163": {"bytes": "0xc2, 0xe3, 0xe3, 0xe8, 0xdc, 0xe3, 0xe3, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hoothoot\u019e"}, "164": {"bytes": "0xc8, 0xe3, 0xd7, 0xe8, 0xe3, 0xeb, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Noctowl\u019e"}, "165": {"bytes": "0xc6, 0xd9, 0xd8, 0xed, 0xd6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ledyba\u019e"}, "166": {"bytes": "0xc6, 0xd9, 0xd8, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ledian\u019e"}, "167": {"bytes": "0xcd, 0xe4, 0xdd, 0xe2, 0xd5, 0xe6, 0xd5, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Spinarak\u019e"}, "168": {"bytes": "0xbb, 0xe6, 0xdd, 0xd5, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ariados\u019e"}, "169": {"bytes": "0xbd, 0xe6, 0xe3, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Crobat\u019e"}, "170": {"bytes": "0xbd, 0xdc, 0xdd, 0xe2, 0xd7, 0xdc, 0xe3, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chinchou\u019e"}, "171": {"bytes": "0xc6, 0xd5, 0xe2, 0xe8, 0xe9, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lanturn\u019e"}, "172": {"bytes": "0xca, 0xdd, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pichu\u019e"}, "173": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xda, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cleffa\u019e"}, "174": {"bytes": "0xc3, 0xdb, 0xdb, 0xe0, 0xed, 0xd6, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Igglybuff\u019e"}, "175": {"bytes": "0xce, 0xe3, 0xdb, 0xd9, 0xe4, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Togepi\u019e"}, "176": {"bytes": "0xce, 0xe3, 0xdb, 0xd9, 0xe8, 0xdd, 0xd7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Togetic\u019e"}, "177": {"bytes": "0xc8, 0xd5, 0xe8, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Natu\u019e"}, "178": {"bytes": "0xd2, 0xd5, 0xe8, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Xatu\u019e"}, "179": {"bytes": "0xc7, 0xd5, 0xe6, 0xd9, 0xd9, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mareep\u019e"}, "180": {"bytes": "0xc0, 0xe0, 0xd5, 0xd5, 0xda, 0xda, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Flaaffy\u019e"}, "181": {"bytes": "0xbb, 0xe1, 0xe4, 0xdc, 0xd5, 0xe6, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ampharos\u019e"}, "182": {"bytes": "0xbc, 0xd9, 0xe0, 0xe0, 0xe3, 0xe7, 0xe7, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bellossom\u019e"}, "183": {"bytes": "0xc7, 0xd5, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Marill\u019e"}, "184": {"bytes": "0xbb, 0xee, 0xe9, 0xe1, 0xd5, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Azumarill\u019e"}, "185": {"bytes": "0xcd, 0xe9, 0xd8, 0xe3, 0xeb, 0xe3, 0xe3, 0xd8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sudowoodo\u019e"}, "186": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xe8, 0xe3, 0xd9, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Politoed\u019e"}, "187": {"bytes": "0xc2, 0xe3, 0xe4, 0xe4, 0xdd, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hoppip\u019e"}, "188": {"bytes": "0xcd, 0xdf, 0xdd, 0xe4, 0xe0, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Skiploom\u019e"}, "189": {"bytes": "0xc4, 0xe9, 0xe1, 0xe4, 0xe0, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jumpluff\u019e"}, "190": {"bytes": "0xbb, 0xdd, 0xe4, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Aipom\u019e"}, "191": {"bytes": "0xcd, 0xe9, 0xe2, 0xdf, 0xd9, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sunkern\u019e"}, "192": {"bytes": "0xcd, 0xe9, 0xe2, 0xda, 0xe0, 0xe3, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sunflora\u019e"}, "193": {"bytes": "0xd3, 0xd5, 0xe2, 0xe1, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Yanma\u019e"}, "194": {"bytes": "0xd1, 0xe3, 0xe3, 0xe4, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wooper\u019e"}, "195": {"bytes": "0xcb, 0xe9, 0xd5, 0xdb, 0xe7, 0xdd, 0xe6, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Quagsire\u019e"}, "196": {"bytes": "0xbf, 0xe7, 0xe4, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Espeon\u019e"}, "197": {"bytes": "0xcf, 0xe1, 0xd6, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Umbreon\u019e"}, "198": {"bytes": "0xc7, 0xe9, 0xe6, 0xdf, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Murkrow\u019e"}, "199": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowking\u019e"}, "200": {"bytes": "0xc7, 0xdd, 0xe7, 0xd8, 0xe6, 0xd9, 0xd5, 0xea, 0xe9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Misdreavus\u019e"}, "201": {"bytes": "0xcf, 0xe2, 0xe3, 0xeb, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Unown\u019e"}, "202": {"bytes": "0xd1, 0xe3, 0xd6, 0xd6, 0xe9, 0xda, 0xda, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wobbuffet\u019e"}, "203": {"bytes": "0xc1, 0xdd, 0xe6, 0xd5, 0xda, 0xd5, 0xe6, 0xdd, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Girafarig\u019e"}, "204": {"bytes": "0xca, 0xdd, 0xe2, 0xd9, 0xd7, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pineco\u019e"}, "205": {"bytes": "0xc0, 0xe3, 0xe6, 0xe6, 0xd9, 0xe8, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Forretress\u019e"}, "206": {"bytes": "0xbe, 0xe9, 0xe2, 0xe7, 0xe4, 0xd5, 0xe6, 0xd7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dunsparce\u019e"}, "207": {"bytes": "0xc1, 0xe0, 0xdd, 0xdb, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gligar\u019e"}, "208": {"bytes": "0xcd, 0xe8, 0xd9, 0xd9, 0xe0, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Steelix\u019e"}, "209": {"bytes": "0xcd, 0xe2, 0xe9, 0xd6, 0xd6, 0xe9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Snubbull\u019e"}, "210": {"bytes": "0xc1, 0xe6, 0xd5, 0xe2, 0xd6, 0xe9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Granbull\u019e"}, "211": {"bytes": "0xcb, 0xeb, 0xdd, 0xe0, 0xda, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Qwilfish\u019e"}, "212": {"bytes": "0xcd, 0xd7, 0xdd, 0xee, 0xe3, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Scizor\u019e"}, "213": {"bytes": "0xcd, 0xdc, 0xe9, 0xd7, 0xdf, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Shuckle\u019e"}, "214": {"bytes": "0xc2, 0xd9, 0xe6, 0xd5, 0xd7, 0xe6, 0xe3, 0xe7, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Heracross\u019e"}, "215": {"bytes": "0xcd, 0xe2, 0xd9, 0xd5, 0xe7, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sneasel\u019e"}, "216": {"bytes": "0xce, 0xd9, 0xd8, 0xd8, 0xdd, 0xe9, 0xe6, 0xe7, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Teddiursa\u019e"}, "217": {"bytes": "0xcf, 0xe6, 0xe7, 0xd5, 0xe6, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ursaring\u019e"}, "218": {"bytes": "0xcd, 0xe0, 0xe9, 0xdb, 0xe1, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slugma\u019e"}, "219": {"bytes": "0xc7, 0xd5, 0xdb, 0xd7, 0xd5, 0xe6, 0xdb, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magcargo\u019e"}, "220": {"bytes": "0xcd, 0xeb, 0xdd, 0xe2, 0xe9, 0xd6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Swinub\u019e"}, "221": {"bytes": "0xca, 0xdd, 0xe0, 0xe3, 0xe7, 0xeb, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Piloswine\u019e"}, "222": {"bytes": "0xbd, 0xe3, 0xe6, 0xe7, 0xe3, 0xe0, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Corsola\u019e"}, "223": {"bytes": "0xcc, 0xd9, 0xe1, 0xe3, 0xe6, 0xd5, 0xdd, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Remoraid\u019e"}, "224": {"bytes": "0xc9, 0xd7, 0xe8, 0xdd, 0xe0, 0xe0, 0xd9, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Octillery\u019e"}, "225": {"bytes": "0xbe, 0xd9, 0xe0, 0xdd, 0xd6, 0xdd, 0xe6, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Delibird\u019e"}, "226": {"bytes": "0xc7, 0xd5, 0xe2, 0xe8, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mantine\u019e"}, "227": {"bytes": "0xcd, 0xdf, 0xd5, 0xe6, 0xe1, 0xe3, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Skarmory\u019e"}, "228": {"bytes": "0xc2, 0xe3, 0xe9, 0xe2, 0xd8, 0xe3, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Houndour\u019e"}, "229": {"bytes": "0xc2, 0xe3, 0xe9, 0xe2, 0xd8, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Houndoom\u019e"}, "230": {"bytes": "0xc5, 0xdd, 0xe2, 0xdb, 0xd8, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kingdra\u019e"}, "231": {"bytes": "0xca, 0xdc, 0xd5, 0xe2, 0xe4, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Phanpy\u019e"}, "232": {"bytes": "0xbe, 0xe3, 0xe2, 0xe4, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Donphan\u019e"}, "233": {"bytes": "0xca, 0xe3, 0xe6, 0xed, 0xdb, 0xe3, 0xe2, 0xa3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Porygon2\u019e"}, "234": {"bytes": "0xcd, 0xe8, 0xd5, 0xe2, 0xe8, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Stantler\u019e"}, "235": {"bytes": "0xcd, 0xe1, 0xd9, 0xd5, 0xe6, 0xdb, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Smeargle\u019e"}, "236": {"bytes": "0xce, 0xed, 0xe6, 0xe3, 0xdb, 0xe9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tyrogue\u019e"}, "237": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xe8, 0xe3, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmontop\u019e"}, "238": {"bytes": "0xcd, 0xe1, 0xe3, 0xe3, 0xd7, 0xdc, 0xe9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Smoochum\u019e"}, "239": {"bytes": "0xbf, 0xe0, 0xd9, 0xdf, 0xdd, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Elekid\u019e"}, "240": {"bytes": "0xc7, 0xd5, 0xdb, 0xd6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magby\u019e"}, "241": {"bytes": "0xc7, 0xdd, 0xe0, 0xe8, 0xd5, 0xe2, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Miltank\u019e"}, "242": {"bytes": "0xbc, 0xe0, 0xdd, 0xe7, 0xe7, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Blissey\u019e"}, "243": {"bytes": "0xcc, 0xd5, 0xdd, 0xdf, 0xe3, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raikou\u019e"}, "244": {"bytes": "0xbf, 0xe2, 0xe8, 0xd9, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Entei\u019e"}, "245": {"bytes": "0xcd, 0xe9, 0xdd, 0xd7, 0xe9, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Suicune\u019e"}, "246": {"bytes": "0xc6, 0xd5, 0xe6, 0xea, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Larvitar\u019e"}, "247": {"bytes": "0xca, 0xe9, 0xe4, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pupitar\u019e"}, "248": {"bytes": "0xce, 0xed, 0xe6, 0xd5, 0xe2, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tyranitar\u019e"}, "249": {"bytes": "0xc6, 0xe9, 0xdb, 0xdd, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lugia\u019e"}, "250": {"bytes": "0xc2, 0xe3, 0xae, 0xc9, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ho-Oh\u019e"}, "251": {"bytes": "0xbd, 0xd9, 0xe0, 0xd9, 0xd6, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Celebi\u019e"}}, "Warnings": {"0": "Warning! ' found, replacing with \u2019 !", "1": "Warning! ' found, replacing with \u2019 !", "2": "Warning! ' found, replacing with \u2019 !", "3": "Warning! ' found, replacing with \u2019 !", "4": "Warning! ' found, replacing with \u2019 !", "5": "Warning! ' found, replacing with \u2019 !", "6": "Warning! ' found, replacing with \u2019 !", "7": "Warning! ' found, replacing with \u2019 !", "8": "Warning! ' found, replacing with \u2019 !", "9": "Warning! ' found, replacing with \u2019 !", "10": "Warning! ' found, replacing with \u2019 !", "11": "Warning! ' found, replacing with \u2019 !", "12": "Warning! ' found, replacing with \u2019 !", "13": "Warning! ' found, replacing with \u2019 !", "14": "Warning! ' found, replacing with \u2019 !", "15": "Warning! ' found, replacing with \u2019 !", "16": "Warning! ' found, replacing with \u2019 !", "17": "Warning! ' found, replacing with \u2019 !", "18": "Warning! ' found, replacing with \u2019 !", "19": "Warning! ' found, replacing with \u2019 !", "20": "Warning! ' found, replacing with \u2019 !", "21": "Warning! ' found, replacing with \u2019 !", "22": "Warning! ' found, replacing with \u2019 !", "23": "Warning! ' found, replacing with \u2019 !", "24": "Warning! ' found, replacing with \u2019 !", "25": "Warning! ' found, replacing with \u2019 !", "26": "Warning! ' found, replacing with \u2019 !", "27": "Warning! ' found, replacing with \u2019 !", "28": "Warning! ' found, replacing with \u2019 !", "29": "Warning! ' found, replacing with \u2019 !", "30": "Warning! ' found, replacing with \u2019 !", "31": "Warning! ' found, replacing with \u2019 !", "32": "Warning! ' found, replacing with \u2019 !", "33": "Warning! ' found, replacing with \u2019 !", "34": "Warning! ' found, replacing with \u2019 !", "35": "Warning! ' found, replacing with \u2019 !", "36": "Warning! ' found, replacing with \u2019 !", "37": "Warning! ' found, replacing with \u2019 !", "38": "Warning! ' found, replacing with \u2019 !", "39": "Warning! ' found, replacing with \u2019 !", "40": "Warning! ' found, replacing with \u2019 !", "41": "Warning! ' found, replacing with \u2019 !", "42": "Warning! ' found, replacing with \u2019 !", "43": "Warning! ' found, replacing with \u2019 !", "44": "Warning! ' found, replacing with \u2019 !", "45": "Warning! ' found, replacing with \u2019 !", "46": "Warning! ' found, replacing with \u2019 !", "47": "Warning! ' found, replacing with \u2019 !", "48": "Warning! ' found, replacing with \u2019 !", "49": "Warning! ' found, replacing with \u2019 !", "50": "Warning! ' found, replacing with \u2019 !", "51": "Warning! ' found, replacing with \u2019 !", "52": "Warning! ' found, replacing with \u2019 !", "53": "Warning! ' found, replacing with \u2019 !", "54": "Warning! ' found, replacing with \u2019 !"}, "Errors": {"0": "Error! No match found for char [ \" ]!", "1": "ERROR! Made a line break when disabled, sentence \"Remote and Arbitrary Code\u0147Execution assistance: \u0147\u0147-TimoVM \u0147\u0147Remote Multiboot\u0147functionality: \u023c\" is too long!"}}, "SpanishEU": {"PTGB": {"DIA_OPEN": {"bytes": "0xc2, 0xd9, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xab, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xd9, 0xe2, 0xe2, 0xd9, 0xe0, 0xad, 0x0, 0xbb, 0xe7, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xd9, 0xb8, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xd5, 0x0, 0xe7, 0xd7, 0xdd, 0xd9, 0xe2, 0xe8, 0xdd, 0xe7, 0xe8, 0xad, 0x0, 0xc3, 0xe2, 0xfe, 0xda, 0xd5, 0xd7, 0xe8, 0xb8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xe9, 0xd6, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe7, 0xfe, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0xab, 0xfb, 0xc7, 0xed, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe0, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xea, 0xd5, 0xe6, 0xdd, 0xe3, 0xe9, 0xe7, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xdc, 0xd5, 0xd8, 0xfe, 0xd5, 0xe2, 0xed, 0x0, 0xd6, 0xe6, 0xd9, 0xd5, 0xdf, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0xe7, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xad, 0xad, 0xfb, 0xcd, 0xe3, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0xb4, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xdd, 0xe2, 0xdb, 0xfe, 0xe3, 0xe2, 0x0, 0xd5, 0x0, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0xfe, 0xe3, 0xe0, 0xd8, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0xab, 0xfb, 0xc3, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xdc, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0xb8, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xb4, 0xe7, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xdd, 0xe2, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd9, 0xed, 0x0, 0xe1, 0xd9, 0xd9, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0xab, 0xfb, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xda, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe1, 0xed, 0x0, 0xdb, 0xe3, 0xd5, 0xe0, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xd8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xd5, 0xe1, 0xd9, 0xae, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb4, 0xe7, 0xfe, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xfb, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xe2, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe9, 0xe8, 0xfe, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xe7, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xa3, 0xa6, 0xa1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xd7, 0xd5, 0xe8, 0xd5, 0xe0, 0xe3, 0xdb, 0xe9, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xbe, 0xd9, 0xec, 0xae, 0x0, 0xe3, 0xe6, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe6, 0xe8, 0xad, 0xfb, 0xbc, 0xe9, 0xe8, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xae, 0xfe, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xe6, 0xd9, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xd5, 0xe0, 0xe0, 0xab, 0xfb, 0xc9, 0xe2, 0xd9, 0x0, 0xe0, 0xd5, 0xe7, 0xe8, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0xb8, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0xae, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdb, 0xe3, 0xd9, 0xe7, 0x0, 0xeb, 0xe6, 0xe3, 0xe2, 0xdb, 0xab, 0xfe, 0xc3, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdf, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xad, 0xad, 0xad, 0xfb, 0xeb, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0xb8, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hey there! I\u2019m Professor Fennel. As\u0147you can see, I\u2019m a scientist. In\u0147fact, the subject I\u2019m researching is\u0147Trainers!\u023cMy dream is to collect save files of\u0147various trainers, but I haven\u2019t had\u0147any breakthroughs yet...\u023cSo in the meantime, I\u2019ve been working\u0147on a different project with one of my\u0147old friends!\u023cIn my home region, there\u2019s a location\u0147that can make a Pok\u00e9mon\u2019s dreams into\u0147reality.\u023cThis means that any other Pok\u00e9mon\u0147they meet in their dreams become\u0147real!\u023cThat\u2019s fantastic, but my goal is to\u0147do the same- just with a trainer\u2019s\u0147dream instead! That\u2019s why I need your\u0147help!\u023cI want to bring as many Pok\u00e9mon out\u0147of your dreams as possible!\u023cThere\u2019s just over 250 Pok\u00e9mon I want\u0147to catalogue in my Dream Pok\u00e9Dex- or\u0147Dream Dex for short.\u023cBut I\u2019ll let you keep any Pok\u00e9mon-\u0147they\u2019re from your dreams after all!\u023cOne last note, save data backups are\u0147recommended- just on the off chance\u0147that something goes wrong!\u0147I think that\u2019s everything...\u023cwhenever you\u2019re ready to start, just\u0147let me know!\u019e"}, "DIA_E4": {"bytes": "0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xe8, 0xdc, 0xe6, 0xdd, 0xe0, 0xe0, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0xfe, 0xd8, 0xd9, 0xd7, 0xdd, 0xd8, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe9, 0xe6, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xd9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0xab, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd5, 0xe8, 0xd9, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbf, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xc0, 0xe3, 0xe9, 0xe6, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xdc, 0xd5, 0xe1, 0xe4, 0xdd, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi trainer! I\u2019m thrilled you\u2019ve\u0147decided to help with our research,\u0147but we need the best of the best!\u023cCome back after you\u2019ve beaten the\u0147Elite Four and become the Champion!\u019e"}, "DIA_MG_FRLGE": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0xfe, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xae, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xc1, 0xc3, 0xc0, 0xce, 0xab, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe2, 0xd9, 0xd5, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xc7, 0xd5, 0xe6, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xda, 0xdd, 0xe0, 0xe0, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe2, 0xd5, 0xdd, 0xe6, 0xd9, 0x0, 0xd5, 0xe7, 0xfe, 0xda, 0xe3, 0xe0, 0xe0, 0xe3, 0xeb, 0xe7, 0xf0, 0x0, 0xc6, 0xc3, 0xc8, 0xc5, 0x0, 0xce, 0xc9, 0xc1, 0xbf, 0xce, 0xc2, 0xbf, 0xcc, 0x0, 0xd1, 0xc3, 0xce, 0xc2, 0x0, 0xbb, 0xc6, 0xc6, 0xad, 0xfb, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xdb, 0xe3, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, one more thing to take\u0147care of before we can begin- you need\u0147to enable MYSTERY GIFT!\u023cHead to the nearest Pok\u00e9 Mart and\u0147fill out the questionnaire as\u0147follows: LINK TOGETHER WITH ALL.\u023cAfter that, you should be all set to\u0147go! See you soon!\u019e"}, "DIA_MG_RS": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0xfe, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xae, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0xab, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbf, 0xce, 0xbb, 0xc6, 0xbc, 0xcf, 0xcc, 0xc1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xbd, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xe2, 0x0, 0xe2, 0xd9, 0xec, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0xf0, 0xfe, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0x0, 0xc3, 0xcd, 0x0, 0xbf, 0xd2, 0xbd, 0xc3, 0xce, 0xc3, 0xc8, 0xc1, 0xad, 0x0, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0xb8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdb, 0xe3, 0xab, 0xfb, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, one more thing to take\u0147care of before we can begin- you need\u0147to enable MYSTERY EVENT!\u023cHead to the PETALBURG Pok\u00e9mon Center\u0147and tell the man next to the PC:\u0147MYSTERY EVENT IS EXCITING. After\u0147that, you should be all set to go!\u023cSee you soon!\u019e"}, "DIA_LETS_START": {"bytes": "0xca, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0xb8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xc3, 0xfe, 0xe2, 0xd9, 0xd9, 0xd8, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xdb, 0xd9, 0xe8, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0xd9, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Perfect, that\u2019s all the information I\u0147need! Let\u2019s get started!\u019e"}, "DIA_START": {"bytes": "0xc9, 0xe2, 0x0, 0xd5, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xb8, 0xfe, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xdd, 0xe7, 0xdc, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xad, 0xfb, 0xc3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xad, 0xfb, 0xce, 0xdc, 0xd9, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xfe, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0x0, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0xad, 0xfb, 0xc9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0xb8, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xbd, 0xe0, 0xe9, 0xd6, 0xfe, 0xd5, 0xe8, 0xe8, 0xd9, 0xe2, 0xd8, 0xd5, 0xe2, 0xe8, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0x0, 0xdd, 0xe2, 0xdd, 0xe8, 0xdd, 0xd5, 0xe8, 0xd9, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xd9, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "On a second Game Boy family system,\u0147please load the Game Boy Pok\u00e9mon game\u0147you wish to transfer from.\u023cIn your Game Boy Pok\u00e9mon game, make\u0147your current box the one you want to\u0147transfer from.\u023cThen connect this Game Boy Advance to\u0147the other Game Boy family system\u0147using a Game Boy Color link cable.\u023cOnce you\u2019re ready, press A on this\u0147device, talk to the Cable Club\u0147attendant, and then initiate a trade.\u019e"}, "DIA_TRANS_GOOD": {"bytes": "0xbb, 0xe1, 0xd5, 0xee, 0xdd, 0xe2, 0xdb, 0xab, 0x0, 0xc0, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0xab, 0x0, 0xbf, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0xfe, 0xe4, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Amazing! Fantastic! Everything went\u0147perfectly!\u019e"}, "DIA_NEW_DEX": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xdd, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xab, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xd9, 0xec, 0xe8, 0xe6, 0xd5, 0x0, 0xe7, 0xeb, 0xd9, 0xd9, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xe6, 0xd9, 0xeb, 0xd5, 0xe6, 0xd8, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like there\u2019s at least one\u0147new Pok\u00e9mon here that isn\u2019t in the\u0147Dream Dex! I\u2019ll give them something\u0147extra sweet as a reward for you both.\u019e"}, "DIA_NO_NEW_DEX": {"bytes": "0xc3, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0xe2, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0xfe, 0xe3, 0xdf, 0xd5, 0xed, 0xab, 0x0, 0xc3, 0xe8, 0xb4, 0xe7, 0x0, 0xdd, 0xe1, 0xe4, 0xe3, 0xe6, 0xe8, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0xfe, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe9, 0xe0, 0xe8, 0xe7, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe1, 0xe9, 0xe0, 0xe8, 0xdd, 0xe4, 0xe0, 0xd9, 0x0, 0xe8, 0xd9, 0xe7, 0xe8, 0xe7, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It doesn\u2019t look like there\u2019s anything\u0147new for your Dream Dex, but that\u2019s\u0147okay! It\u2019s important to confirm\u0147research results with multiple tests!\u019e"}, "DIA_SEND_FRIEND_KANTO": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0x0, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0x0, 0xe3, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xe3, 0xe2, 0x0, 0xcd, 0xd9, 0xea, 0xd9, 0xe2, 0x0, 0xc3, 0xe7, 0xe0, 0xd5, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up! They live just south of\u0147the Pok\u00e9mon center on Seven Island!\u019e"}, "DIA_SEND_FRIEND_HOENN_RS": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xc7, 0xe3, 0xe7, 0xe7, 0xd8, 0xd9, 0xd9, 0xe4, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up!\u023cThey live just southeast of the\u0147Pok\u00e9mon center in Mossdeep City!\u019e"}, "DIA_SEND_FRIEND_HOENN_E": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xcd, 0xe3, 0xe3, 0xe8, 0xe3, 0xe4, 0xe3, 0xe0, 0xdd, 0xe7, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up!\u023cThey live just southeast of the\u0147Pok\u00e9mon center in Sootopolis City!\u019e"}, "DIA_THANK": {"bytes": "0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xfe, 0xd1, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xb8, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Thank you so much for your help!\u0147Whenever you want to transfer more\u0147Pok\u00e9mon, just let me know! See you\u0147around!\u019e"}, "DIA_GET_MON": {"bytes": "0xe9, 0xe2, 0xe9, 0xe7, 0xd9, 0xd8, 0xb8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "unused, will be removed\u019e"}, "DIA_MG_OTHER_EVENT": {"bytes": "0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xfe, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xad, 0xfe, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xd6, 0xe0, 0xd9, 0xe1, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe3, 0xea, 0xd9, 0xe6, 0xeb, 0xe6, 0xdd, 0xe8, 0xe8, 0xd9, 0xe2, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xad, 0xfb, 0xce, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xe2, 0xe3, 0xeb, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xec, 0xe4, 0xd9, 0xe6, 0xdd, 0xd9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0xae, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi Trainer! It looks like you have a\u0147different event currently loaded.\u0147That\u2019s no problem, but it will be\u0147overwritten if you continue.\u023cTurn off the system now if you want\u0147to experience your current event, but\u0147otherwise-\u019e"}, "DIA_PKMN_TO_COLLECT": {"bytes": "0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe9, 0xe4, 0xad, 0xad, 0xad, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0xb4, 0xe8, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe9, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0xfe, 0xe8, 0xdc, 0xe3, 0xe7, 0xd9, 0x0, 0xe9, 0xe4, 0xad, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi Trainer! It looks like you still\u0147have Pok\u00e9mon to pick up... I can\u2019t\u0147send over new Pok\u00e9mon until you pick\u0147those up.\u023cCome back after you\u2019ve received them!\u019e"}, "DIA_NO_VALID_PKMN": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xea, 0xd5, 0xe0, 0xdd, 0xd8, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xe2, 0xe3, 0xeb, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xd8, 0xe3, 0xe9, 0xd6, 0xe0, 0xd9, 0x0, 0xd7, 0xdc, 0xd9, 0xd7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xdd, 0xe8, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry Trainer, it doesn\u2019t look like\u0147you have any valid Pok\u00e9mon in your\u0147current box right now.\u023cGo double check your current box and\u0147we can give it another shot!\u019e"}, "DIA_ASK_QUEST": {"bytes": "0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xbc, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xb8, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd5, 0xe7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0x0, 0xda, 0xd9, 0xeb, 0x0, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi trainer! Before we begin, I need\u0147to ask you a few questions.\u019e"}, "DIA_WHAT_GAME_TRANS": {"bytes": "0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xac, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "And which Game Boy Pok\u00e9mon game are\u0147you transferring from?\u019e"}, "DIA_WHAT_LANG_TRANS": {"bytes": "0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xac, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "What language is the Game Boy Pok\u00e9mon\u0147game that you\u2019re transferring from?\u019e"}, "DIA_NO_GB_ROM": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xe7, 0xe3, 0xe6, 0xe6, 0xed, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xea, 0xd9, 0xe6, 0xe7, 0xdd, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m sorry, but that version in that\u0147language is not currently supported.\u019e"}, "DIA_IN_BOX": {"bytes": "0xbb, 0xe0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0xad, 0xfb, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xd9, 0xe1, 0xd6, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xd5, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe7, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xbd, 0xbb, 0xc8, 0xc8, 0xc9, 0xce, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xad, 0xfb, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xe3, 0xe6, 0xfe, 0xe7, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Alright! Let\u2019s take a look at the\u0147Pok\u00e9mon that will be transfered.\u023cPlease remember, once a Pok\u00e9mon is\u0147transfered, it CANNOT be returned to\u0147the Game Boy Game Pak.\u023cSelect confirm once you\u2019re ready, or\u0147select cancel if you want to keep the\u0147Pok\u00e9mon on your Game Boy Game Pak.\u019e"}, "DIA_MYTHIC_CONVERT": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0x0, 0xe6, 0xd5, 0xe6, 0xd9, 0xfe, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xab, 0x0, 0xbe, 0xe9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xe6, 0xd5, 0xe6, 0xdd, 0xe8, 0xed, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xea, 0xd9, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xad, 0xfb, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xd8, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0xb4, 0xe0, 0xe0, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xd9, 0xe8, 0xfe, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xb8, 0x0, 0xc9, 0xce, 0xb8, 0x0, 0xce, 0xc3, 0xbe, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xcd, 0xdc, 0xdd, 0xe2, 0xdd, 0xe2, 0xd9, 0xe7, 0xe7, 0xad, 0xfb, 0xc9, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe0, 0xd9, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe7, 0x0, 0xdd, 0xe7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xdb, 0xe9, 0xd5, 0xe6, 0xd9, 0xe2, 0xe8, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xda, 0xe9, 0xe8, 0xe9, 0xe6, 0xd9, 0xad, 0x0, 0xbe, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xac, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd5, 0xe4, 0xe4, 0xe0, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd6, 0xe3, 0xec, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like you have a rare\u0147Mythical Pok\u00e9mon! Due to their\u0147rarity, it seems they\u2019ve overloaded\u0147the machine.\u023cI can stablize them if you\u2019d like,\u0147but it\u2019ll change some things like met\u0147location, OT, TID, and Shininess.\u023cOtherwise I can leave them as is, but\u0147there\u2019s no guarentee that they\u2019ll be\u0147transferrable in the future. Do you\u0147want me to stablize them?\u023cThis will apply to all of the\u0147Mythical Pok\u00e9mon currently in your\u0147box.\u019e"}, "DIA_CANCEL": {"bytes": "0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0xab, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xdd, 0xda, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "No worries! Feel free to come back if\u0147you change your mind! See you around!\u019e"}, "DIA_SOME_INVALID_PKMN": {"bytes": "0xc3, 0x0, 0xe7, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0xad, 0xfb, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xe3, 0xe0, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe8, 0xd9, 0xe1, 0xe7, 0x0, 0xe3, 0xe6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xdd, 0xd9, 0xd8, 0xfe, 0xdd, 0xe2, 0xd7, 0xe3, 0xe6, 0xe6, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0x0, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0x0, 0xe9, 0xe2, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0xfe, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0xad, 0xfb, 0xce, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xda, 0xdd, 0xe2, 0xd9, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I see there is at least one Pok\u00e9mon\u0147that cannot be transferred from your\u0147current box.\u023cPok\u00e9mon holding items or modified\u0147incorrectly through unintended means\u0147cannot be transferred.\u023cThe other Pok\u00e9mon will transfer just\u0147fine though!\u019e"}, "DIA_MENU_BACK": {"bytes": "0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0xab, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xfe, 0xd5, 0xe2, 0xed, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "No worries! Feel free to come back\u0147any time!\u019e"}, "DIA_IS_MISSINGNO": {"bytes": "0xad, 0xad, 0xad, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xad, 0xad, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0x0, 0xd6, 0xd9, 0x0, 0xdb, 0xe6, 0xd5, 0xe4, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0xb8, 0x0, 0xe7, 0xe3, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "... It seems like one of your Pok\u00e9mon\u0147is messing with the machine... It\u0147looks to only be graphical though, so\u0147we can continue!\u019e"}, "DIA_ERROR_COLOSSEUM": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd7, 0xe3, 0xe0, 0xe3, 0xe7, 0xe7, 0xd9, 0xe9, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0xfe, 0xe6, 0xe3, 0xe3, 0xe1, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like you went to the\u0147colosseum instead of the trading\u0147room! Let\u2019s try that again!\u019e"}, "DIA_ERROR_COM_ENDED": {"bytes": "0xbd, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0xfe, 0xeb, 0xd5, 0xe7, 0x0, 0xe8, 0xd9, 0xe6, 0xe1, 0xdd, 0xe2, 0xd5, 0xe8, 0xd9, 0xd8, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Communication with the other device\u0147was terminated. Let\u2019s try that again!\u019e"}, "DIA_ERROR_DISCONNECT": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xfe, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xd8, 0xdd, 0xe7, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xd9, 0xd8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like the Game Boy Color link\u0147cable was disconnected... Let\u2019s try\u0147that again!\u019e"}, "DIA_ERROR_TIME_ONE": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0xfe, 0xe3, 0xe9, 0xe8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like the connection timed\u0147out... Let\u2019s try that again!\u019e"}, "DIA_ERROR_TIME_TWO": {"bytes": "0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0xfe, 0xe3, 0xe9, 0xe8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It seems like the connection timed\u0147out... Let\u2019s try that again!\u019e"}, "DIA_WHAT_LANG_EVENT": {"bytes": "0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0xac, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "What language is the Game Boy Pok\u00e9mon\u0147game that you want to send an event\u0147to?\u019e"}, "DIA_WHAT_GAME_EVENT": {"bytes": "0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd8, 0xe3, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xac, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "And which Game Boy Pok\u00e9mon game do\u0147you want to send an event to?\u019e"}, "DIA_K_DEX_NOT_FULL": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xa2, 0xa6, 0xa1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xeb, 0xd9, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, it looks like you\u0147haven\u2019t caught all 150 Pok\u00e9mon from\u0147the Kanto region yet.\u023cGo out and catch them all and then\u0147we\u2019ll be able to send over the event!\u019e"}, "DIA_J_DEX_NOT_FULL": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xaa, 0xaa, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc4, 0xe3, 0xdc, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xeb, 0xd9, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, it looks like you\u0147haven\u2019t caught all 99 new Pok\u00e9mon\u0147from the Johto region yet.\u023cGo out and catch them all and then\u0147we\u2019ll be able to send over the event!\u019e"}}, "RSEFRLG": {"dia_textGreet_rse": {"bytes": "0xd1, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0xb8, 0x0, 0xc3, 0x0, 0xe8, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xe0, 0xd8, 0xfe, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0x0, 0xce, 0xcc, 0xbb, 0xc3, 0xc8, 0xbf, 0xcc, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "When I was young, I traveled the world\u0147as a POK\u00e9MON TRAINER.\u019e"}, "dia_textGreet_frlg": {"bytes": "0xc3, 0x0, 0xe1, 0xd5, 0xed, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xe2, 0xe3, 0xeb, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0xd9, 0xe6, 0xb0, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "I may not look like much now,\u0147but when I was younger\u2026\u019e"}, "dia_textMoveBox_rs": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe9, 0xe2, 0xe0, 0xe3, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd8, 0xe3, 0xe3, 0xe6, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to unlock the\u0147door!\u019e"}, "dia_textMoveBox_frlg": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd6, 0xe3, 0xec, 0xd9, 0xe7, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to move the\u0147boxes!\u019e"}, "dia_textMoveBox_e": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe0, 0xd5, 0xe2, 0xe8, 0xe7, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to move the\u0147plants!\u019e"}, "dia_textWeHere_r": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xc7, 0xbb, 0xd2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leader MAXIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_s": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xbb, 0xcc, 0xbd, 0xc2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leader ARCHIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_frlg": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xc1, 0xc3, 0xc9, 0xd0, 0xbb, 0xc8, 0xc8, 0xc3, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Kanto to find\u0147the leader GIOVANNI.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_e": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0xe7, 0x0, 0xc7, 0xbb, 0xd2, 0xc3, 0xbf, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xcc, 0xbd, 0xc2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leaders MAXIE and ARCHIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textRecieved": {"bytes": "0xfc, 0x1, 0x2, 0xfd, 0x1, 0xb4, 0xcd, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0x0, 0xeb, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c1\u01b2\u00c0\u2019S POK\u00e9MON were sent to\u0147the PC!\u019e"}, "dia_textYouMustBe_first": {"bytes": "0xbb, 0xdc, 0xab, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xfd, 0x1, 0xab, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe8, 0xe3, 0xe0, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd7, 0xe3, 0xe1, 0xdd, 0xe2, 0xdb, 0xad, 0xfb, 0xc9, 0xdc, 0xab, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xab, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0xab, 0xfe, 0xc9, 0xe6, 0xb8, 0x0, 0xe6, 0xd5, 0xe8, 0xdc, 0xd9, 0xe6, 0xb8, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdd, 0xe2, 0xe8, 0xe6, 0xe3, 0xd8, 0xe9, 0xd7, 0xd9, 0x0, 0xe1, 0xed, 0xe7, 0xd9, 0xe0, 0xda, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "Ah! You must be \u01b2\u00c0! I was\u0147told you\u2019d be coming.\u023cOh! I still wear my disguise! Pardon!\u0147Or, rather, let me introduce myself.\u019e"}, "dia_textYouMustBe_second": {"bytes": "0xbb, 0xdc, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0x0, 0xd1, 0xd9, 0xe0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xab, 0x0, 0xc1, 0xe3, 0xe3, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xe7, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xfb, 0xc9, 0xdc, 0xab, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xab, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "Ah, \u01b2\u00c0! Welcome back! Good to\u0147see you again!\u023cOh! I still wear my disguise! Pardon!\u019e"}, "dia_textIAm_first": {"bytes": "0xfc, 0x1, 0x8, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xd5, 0x0, 0xdb, 0xe0, 0xe3, 0xd6, 0xd9, 0xae, 0xe8, 0xe6, 0xe3, 0xe8, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd9, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc3, 0xe2, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xe0, 0xdd, 0xd7, 0xd9, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb0, 0x0, 0xfa, 0xbb, 0xdc, 0xb8, 0x0, 0xe2, 0xe3, 0xb8, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0x0, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0xfe, 0xe2, 0xd5, 0xe1, 0xd9, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbI am a globe-trotting elite of the\u0147International Police.\u023cMy name\u2026 \u015eAh, no, I shall inform you of my code\u0147name only.\u023cMy code name, it is LOOKER!\u019e"}, "dia_textIAm_second": {"bytes": "0xfc, 0x1, 0x8, 0xc3, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc3, 0xb8, 0x0, 0xdb, 0xe0, 0xe3, 0xd6, 0xd9, 0xae, 0xe8, 0xe6, 0xe3, 0xe8, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd9, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc3, 0xe2, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xe0, 0xdd, 0xd7, 0xd9, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbIt is I, globe-trotting elite of the\u0147International Police.\u023cMy code name, it is LOOKER!\u019e"}, "dia_textPCConvo": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbb, 0xdc, 0xb8, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0x0, 0xc3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xdd, 0xe8, 0xfe, 0xfd, 0x1, 0x0, 0xdc, 0xd5, 0xe7, 0x0, 0xd5, 0xe6, 0xe6, 0xdd, 0xea, 0xd9, 0xd8, 0xac, 0xfb, 0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0xe2, 0xd8, 0xd9, 0xd9, 0xd8, 0xab, 0x0, 0xce, 0xdc, 0xd9, 0xed, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0xab, 0xfb, 0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbf, 0xec, 0xd7, 0xd9, 0xe0, 0xe0, 0xd9, 0xe2, 0xe8, 0xab, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xfe, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe1, 0xd9, 0xe2, 0xe8, 0xd5, 0xe6, 0xdd, 0xe0, 0xed, 0xb0, 0x0, 0xe7, 0xe8, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: Ah, LOOKER! I take it\u0147\u01b2\u00c0 has arrived?\u023c\u0206\u00c0\u00cbLOOKER: Indeed! They\u2019re ready to\u0147receive their POK\u00e9MON!\u023c\u0206\u00c0\u00c9FENNEL: Excellent! I\u2019ll send them\u0147over momentarily\u2026 stand by!\u019e"}, "dia_textPCThanks": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xbd, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xab, 0xfb, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: It looks like everything was\u0147sent to your PC successfully!\u023cThank you both for your help!\u019e"}, "dia_textThank": {"bytes": "0xfc, 0x1, 0x8, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xe8, 0xe3, 0xe4, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xd6, 0xed, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0xfb, 0xc3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe0, 0xe0, 0x0, 0xd9, 0xec, 0xd7, 0xe9, 0xe7, 0xd9, 0x0, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xad, 0x0, 0xfa, 0xcf, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xe3, 0xe9, 0xe6, 0x0, 0xe4, 0xd5, 0xe8, 0xdc, 0xe7, 0x0, 0xd7, 0xe6, 0xe3, 0xe7, 0xe7, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbThanks for stopping by, \u01b2\u00c0!\u023cIf you\u2019ll excuse me, I must return to\u0147my disguise. \u015eUntil our paths cross again!\u019e"}, "dia_textPCFull": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0x0, 0xdd, 0xe7, 0x0, 0xda, 0xe9, 0xe0, 0xe0, 0xab, 0xfb, 0xc1, 0xe3, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: It seems like the PC is full!\u023cGo make some room, and I can send over\u0147the rest of your POK\u00e9MON.\u019e"}, "dia_textLookerFull": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xcd, 0xe4, 0xd9, 0xd5, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0xfe, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0xfb, 0xc3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xed, 0xfe, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: Speak to me again after\u0147you\u2019ve made room, \u01b2\u00c0!\u023cIn the meantime, I will return to my\u0147disguise.\u019e"}}, "GB": {"sending_text": {"bytes": "SENDING DATA", "numLines": 0, "pixelsPerChar": 0, "pixelsInLine": 0, "includeBoxBreaks": false}, "prof_name": {"bytes": "FENNEL", "numLines": 0, "pixelsPerChar": 0, "pixelsInLine": 0, "includeBoxBreaks": false}}, "GENERAL": {"option_english": {"bytes": "0xbf, 0xe2, 0xdb, 0xe0, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "English\u019e"}, "option_japanese": {"bytes": "0xc4, 0xd5, 0xe4, 0xd5, 0xe2, 0xd9, 0xe7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Japanese\u019e"}, "option_spanish": {"bytes": "0xcd, 0xe4, 0xd5, 0xe2, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Spanish\u019e"}, "option_french": {"bytes": "0xc0, 0xe6, 0xd9, 0xe2, 0xd7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "French\u019e"}, "option_german": {"bytes": "0xc1, 0xd9, 0xe6, 0xe1, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "German\u019e"}, "option_italian": {"bytes": "0xc3, 0xe8, 0xd5, 0xe0, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Italian\u019e"}, "option_korean": {"bytes": "0xc5, 0xe3, 0xe6, 0xd9, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Korean\u019e"}, "option_green": {"bytes": "0xc1, 0xe6, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Green\u019e"}, "option_red": {"bytes": "0xcc, 0xd9, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Red\u019e"}, "option_blue": {"bytes": "0xbc, 0xe0, 0xe9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Blue\u019e"}, "option_yellow": {"bytes": "0xd3, 0xd9, 0xe0, 0xe0, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Yellow\u019e"}, "option_gold": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Gold\u019e"}, "option_silver": {"bytes": "0xcd, 0xdd, 0xe0, 0xea, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Silver\u019e"}, "option_crystal": {"bytes": "0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Crystal\u019e"}, "option_cancel": {"bytes": "0xbd, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Cancel\u019e"}, "press_start": {"bytes": "0xca, 0xe9, 0xe7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xcd, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xab, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Push the Start Button!\u019e"}, "option_transfer": {"bytes": "0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Transfer Pok\u00e9mon\u019e"}, "option_dreamdex": {"bytes": "0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Dream Dex\u019e"}, "option_credits": {"bytes": "0xbd, 0xe6, 0xd9, 0xd8, 0xdd, 0xe8, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Credits\u019e"}, "intro_first": {"bytes": "0xc2, 0xd9, 0xe0, 0xe0, 0xe3, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0xab, 0xfe, 0xfe, 0xc4, 0xe9, 0xe7, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xeb, 0xe3, 0xe6, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xd5, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0xae, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xd1, 0xc3, 0xc6, 0xc6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xed, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe0, 0xe3, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xd6, 0xd9, 0xe8, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xdd, 0xd8, 0xb8, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd9, 0xe2, 0xde, 0xe3, 0xed, 0xab, 0xfe, 0xfe, 0xae, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xff", "numLines": 15, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": false, "text": "Hello! Thank you for using Pok\u00e9\u0147Transporter GB!\u0147\u0147Just as a word of caution- Pok\u00e9\u0147Transporter GB WILL modify both the\u0147GameBoy and GameBoy Advance save\u0147files.\u0147\u0147Please note that while Pok\u00e9\u0147Transporter GB is no longer in beta,\u0147save file backups are still\u0147recommended before using. With that\u0147all being said, please enjoy!\u0147\u0147-The Gears of Progress \u019e"}, "intro_legal": {"bytes": "0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe3, 0xda, 0xfe, 0xe0, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd5, 0xe4, 0xe4, 0xe6, 0xd9, 0xd7, 0xdd, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xd5, 0xe2, 0xd7, 0xdc, 0xdd, 0xe7, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xda, 0xdd, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xbb, 0xc6, 0xd1, 0xbb, 0xd3, 0xcd, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0xfe, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0x0, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe1, 0xe9, 0xe7, 0xdd, 0xd7, 0xfe, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xeb, 0xe2, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0x0, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0x0, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0xad, 0xfe, 0xfe, 0xfe, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xff", "numLines": 14, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": false, "text": "Pok\u00e9 Transporter GB was made out of\u0147love and appreciation for the Pokemon\u0147franchise with no profit in mind. It\u0147will ALWAYS be free.\u0147\u0147Please support the original\u0147developers.\u0147\u0147All Pokemon names, sprites, and music\u0147are owned by Nintendo, Creatures Inc,\u0147and GAME FREAK.\u0147\u0147\u0147Press A to continue\u019e"}, "cart_load_error": {"bytes": "0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xad, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xdd, 0xe2, 0xe7, 0xd9, 0xe6, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xea, 0xd9, 0xe0, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff", "numLines": 10, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "The Pok\u00e9mon save file was\u0147not loaded successfully.\u0147Please remove and reinsert\u0147the Game Pak, and then\u0147press the A button.\u0147\u0147Alternatively, press the\u0147Select button to send this\u0147program to another GameBoy\u0147Advance.\u019e"}, "pulled_cart_error": {"bytes": "0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xad, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "The Pok\u00e9mon game was\u0147removed. Please turn off\u0147the system and restart the\u0147program.\u019e"}, "send_multiboot_instructions": {"bytes": "0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xfe, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xdd, 0xe2, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0x0, 0xe1, 0xe3, 0xd8, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xc6, 0xdd, 0xe2, 0xdf, 0xfe, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0xad, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0xe2, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xfe, 0xe8, 0xe3, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff", "numLines": 10, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Please connect this system\u0147to another GameBoy Advance\u0147in Multiboot mode with a\u0147GameBoy Advance Link\u0147Cable.\u0147\u0147Then, press the A button\u0147to begin sending Pok\u00e9\u0147Transporter GB to the\u0147second GameBoy Advance.\u019e"}, "send_multiboot_wait": {"bytes": "0xcd, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0xfe, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0xfe, 0xeb, 0xd5, 0xdd, 0xe8, 0xad, 0xfe, 0xfe, 0xc2, 0xe3, 0xe0, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbc, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xad, 0xff", "numLines": 7, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Sending Pok\u00e9 Transporter\u0147GB to second GameBoy\u0147Advance system. Please\u0147wait.\u0147\u0147Hold the B Button to\u0147cancel.\u019e"}, "send_multiboot_success": {"bytes": "0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xab, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xd5, 0xed, 0xfe, 0xe2, 0xe3, 0xeb, 0x0, 0xe4, 0xe3, 0xeb, 0xd9, 0xe6, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xad, 0xff", "numLines": 7, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "\u0147Pok\u00e9 Transporter GB was\u0147sent successfully! You may\u0147now power off this GameBoy\u0147Advance system.\u019e"}, "send_multiboot_failure": {"bytes": "0xfe, 0xbb, 0xe2, 0x0, 0xd9, 0xe6, 0xe6, 0xe3, 0xe6, 0x0, 0xe3, 0xd7, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0xfe, 0xc1, 0xbc, 0xad, 0x0, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xe6, 0xe9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xfe, 0xe7, 0xd7, 0xe6, 0xd9, 0xd9, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xad, 0xff", "numLines": 7, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "\u0147An error occurred while\u0147sending Pok\u00e9 Transporter\u0147GB. Press the A button to\u0147return to the instructions\u0147screen and try again.\u019e"}, "kanto_name": {"bytes": "0xc5, 0xbb, 0xc8, 0xce, 0xc9, 0xf0, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "KANTO:\u019e"}, "johto_name": {"bytes": "0xc4, 0xc9, 0xc2, 0xce, 0xc9, 0xf0, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "JOHTO:\u019e"}}, "CREDITS": {"credits_page_1": {"bytes": "0xc6, 0xd9, 0xd5, 0xd8, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xf0, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Lead developer:\u0147\u0147The Gears of Progress\u019e"}, "credits_page_2": {"bytes": "0xc6, 0xe3, 0xdb, 0xe3, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xe3, 0xae, 0xdd, 0xd8, 0xd9, 0xd5, 0xe8, 0xe3, 0xe6, 0xf0, 0xfe, 0xfe, 0xae, 0xc4, 0xe3, 0xe1, 0xd9, 0xfe, 0xfe, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xeb, 0xe3, 0xe6, 0xdf, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xc4, 0x0, 0xbc, 0xdd, 0xe6, 0xd8, 0xe1, 0xd5, 0xe2, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Logo and co-ideator:\u0147\u0147-Jome\u0147\u0147Spritework:\u0147\u0147-LJ Birdman\u019e"}, "credits_page_3": {"bytes": "0xc3, 0xd7, 0xe3, 0xe2, 0x0, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xe9, 0xdd, 0xdb, 0xdd, 0xce, 0xc5, 0xc9, 0xfe, 0xae, 0xc1, 0xe9, 0xdd, 0xbb, 0xd6, 0xd9, 0xe0, 0xfe, 0xae, 0xcd, 0xe3, 0xe9, 0xe6, 0xbb, 0xe4, 0xe4, 0xe0, 0xd9, 0xfe, 0x2d, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd5, 0xe6, 0xe8, 0xdd, 0xe7, 0xe8, 0xe7, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xcd, 0xdc, 0xe3, 0xeb, 0xd8, 0xe3, 0xeb, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0x0, 0xbd, 0xe0, 0xd9, 0xd5, 0xe6, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Icon Sprites:\u0147\u0147-LuigiTKO\u0147-GuiAbel\u0147-SourApple\u0147& the artists from Pok\u00e9mon\u0147Showdown and Crystal Clear\u019e"}, "credits_page_4": {"bytes": "0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xe6, 0xd6, 0xdd, 0xe8, 0xe6, 0xd5, 0xe6, 0xed, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0xfe, 0xbf, 0xec, 0xd9, 0xd7, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xce, 0xdd, 0xe1, 0xe3, 0xd0, 0xc7, 0xfe, 0xfe, 0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0xfe, 0xda, 0xe9, 0xe2, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xf0, 0x0, 0xfb, 0xe6, 0xdd, 0xe7, 0xdd, 0xe2, 0xdb, 0xca, 0xdc, 0xdd, 0xe0, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Remote and Arbitrary Code\u0147Execution assistance:\u0147\u0147-TimoVM\u0147\u0147Remote Multiboot\u0147functionality: \u023crisingPhil\u019e"}, "credits_page_5": {"bytes": "0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xe6, 0xdd, 0xe0, 0xd9, 0xed, 0xdf, 0xa7, 0xa5, 0xfe, 0xae, 0xcd, 0xdc, 0xd5, 0xe3, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Development assistance:\u0147\u0147-im a blisy\u0147-rileyk64\u0147-Shao\u019e"}, "credits_page_6": {"bytes": "0xcd, 0xe4, 0xd5, 0xd7, 0xd9, 0x0, 0xc9, 0xe4, 0xe8, 0xdd, 0xe1, 0xdd, 0xee, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xf0, 0xfe, 0xfe, 0xae, 0xd9, 0xd5, 0xe7, 0xed, 0xd5, 0xe7, 0xe4, 0xdd, 0xa4, 0xa2, 0xa5, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Space Optimization:\u0147\u0147-easyaspi314\u019e"}, "credits_page_7": {"bytes": "0xbc, 0xe9, 0xdd, 0xe0, 0xe8, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xbe, 0xd9, 0xea, 0xdf, 0xdd, 0xe8, 0xca, 0xe6, 0xe3, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xce, 0xe3, 0xe2, 0xd7, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xc1, 0xbc, 0xbb, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Built using:\u0147\u0147\u0147-DevkitPro\u0147-LibTonc\u0147-LibGBA\u019e"}, "credits_page_8": {"bytes": "0xc3, 0xe2, 0xe7, 0xe4, 0xdd, 0xe6, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xe7, 0x0, 0xe3, 0xda, 0xf0, 0xfe, 0xfe, 0xae, 0xc1, 0xe3, 0xe4, 0xe4, 0xdd, 0xd9, 0xe6, 0xfe, 0xae, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xcc, 0xbf, 0xce, 0xc3, 0xcc, 0xbf, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Inspired by the works of:\u0147\u0147-Goppier\u0147-Lorenzooone\u0147-im a blisy\u0147-RETIRE\u019e"}, "credits_page_9": {"bytes": "0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xe7, 0x0, 0xe9, 0xe7, 0xd9, 0xd8, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xae, 0xca, 0xc5, 0xc2, 0xd9, 0xd2, 0xfe, 0xae, 0xd1, 0xbd, 0xa4, 0xce, 0xe3, 0xe3, 0xe0, 0xfe, 0xae, 0xcf, 0xe7, 0xd9, 0xe2, 0xe8, 0xdd, 0xfe, 0xae, 0xcd, 0xd5, 0xe4, 0xe4, 0xed, 0xc7, 0xdd, 0xd8, 0xce, 0xe3, 0xbb, 0xc1, 0xbc, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Programs used:\u0147\u0147\u0147-HexManiacAdvance\u0147-PKHeX\u0147-WC3Tool\u0147-Usenti\u0147-SappyMidToAGB\u019e"}, "credits_page_10": {"bytes": "0xc9, 0xe4, 0xd9, 0xe2, 0x0, 0xcd, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xc6, 0xdd, 0xd6, 0xe6, 0xd5, 0xe6, 0xdd, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xe0, 0xdd, 0xd6, 0xe8, 0xe3, 0xe2, 0xd7, 0xae, 0xd9, 0xec, 0xd5, 0xe1, 0xe4, 0xe0, 0xd9, 0xe7, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0xae, 0xdb, 0xd6, 0xd5, 0xae, 0xe0, 0xdd, 0xe2, 0xdf, 0xae, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xae, 0xd5, 0xeb, 0xd9, 0xe7, 0xe3, 0xe1, 0xd9, 0xae, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0xae, 0xd5, 0xe6, 0xd8, 0xe9, 0xdd, 0xe2, 0xe3, 0xae, 0xe4, 0xe3, 0xdf, 0xd9, 0xae, 0xdb, 0xd9, 0xe2, 0xa3, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Open Source Code and\u0147Libraries:\u0147\u0147-libtonc-examples\u0147-PokemonGen3toGenX\u0147-gba-link-connection\u0147-awesome-gbadev\u0147-arduino-poke-gen2\u019e"}, "credits_page_11": {"bytes": "0xcc, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xd5, 0xe6, 0xe1, 0xae, 0xd8, 0xe3, 0xd7, 0xe7, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0xfe, 0xc0, 0xe9, 0xe0, 0xe0, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xe7, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe3, 0xe9, 0xe2, 0xd8, 0x0, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xb4, 0xe7, 0x0, 0xc1, 0xdd, 0xe8, 0xc2, 0xe9, 0xd6, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Research resources:\u0147\u0147-arm-docs\u0147-PokemonGen3toGenX\u0147\u0147Full links can be found on\u0147this program\u2019s GitHub\u019e"}, "credits_page_12": {"bytes": "0xcc, 0xc9, 0xc7, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xd8, 0xd9, 0xd7, 0xe3, 0xe1, 0xe4, 0xdd, 0xe0, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0x0, 0xd7, 0xe6, 0xd9, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xcc, 0xbf, 0xce, 0x0, 0xe8, 0xd9, 0xd5, 0xe1, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "ROM data obtained from\u0147decompilations created by\u0147the PRET team\u019e"}, "credits_page_13": {"bytes": "0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0xf0, 0xfe, 0xfe, 0xae, 0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe4, 0xd9, 0xd8, 0xdd, 0xd5, 0xfe, 0xae, 0xcd, 0xd9, 0xe6, 0xd9, 0xd6, 0xdd, 0xdd, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xbb, 0xca, 0xc3, 0xad, 0xd7, 0xe3, 0xe1, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Pok\u00e9mon data obtained\u0147from:\u0147\u0147-Bulbapedia\u0147-Serebii\u0147-PokeAPI.com\u019e"}, "credits_page_14": {"bytes": "0xbe, 0xdd, 0xe7, 0xd7, 0xe3, 0xe6, 0xd8, 0x0, 0xd7, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xe8, 0xed, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0x0, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0xfe, 0xae, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0xae, 0xe4, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Discord community\u0147assistance:\u0147\u0147-Hex Maniac Advance\u0147Development\u0147-gbadev\u0147-pret\u019e"}, "credits_page_15": {"bytes": "0xd1, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc7, 0xd5, 0xd8, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Writing assistance:\u0147\u0147\u0147-Mad\u019e"}, "credits_page_16": {"bytes": "0xbb, 0xe2, 0x0, 0xdd, 0xe1, 0xe1, 0xd9, 0xe2, 0xe7, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0x2d, 0xfe, 0xeb, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe1, 0xb8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xe3, 0xe9, 0xe0, 0xd8, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0xad, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "An immense thanks to\u0147Lorenzooone for their\u0147assistance in reading &\u0147writing save data. Without\u0147them, this project would\u0147not have been possible.\u019e"}, "credits_page_17": {"bytes": "0xcd, 0xe4, 0xd9, 0xd7, 0xdd, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xbf, 0xe2, 0xe2, 0xb8, 0xfe, 0xe6, 0xe3, 0xdf, 0xe9, 0xb8, 0x0, 0xcd, 0xe0, 0xd9, 0xd9, 0xe4, 0xed, 0xb8, 0x0, 0xbf, 0xee, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xe6, 0xd5, 0xdc, 0xe8, 0xe3, 0xe2, 0xdd, 0xe2, 0xb8, 0x0, 0xbc, 0xd5, 0xe7, 0xd5, 0xd6, 0xdd, 0xb8, 0x0, 0xc7, 0xd5, 0xd8, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe3, 0xe2, 0xd9, 0x0, 0xeb, 0xdc, 0xe3, 0x0, 0xdc, 0xd5, 0xe7, 0xfe, 0xe0, 0xdd, 0xe7, 0xe8, 0xd9, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xd5, 0xd6, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe1, 0xe3, 0xe2, 0xe8, 0xdc, 0xe7, 0xab, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Special thanks to Enn,\u0147roku, Sleepy, Eza,\u0147sarahtonin, Basabi, Mad,\u0147and everyone who has\u0147listened to me talk about\u0147this for months!\u019e"}, "credits_page_18": {"bytes": "0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0xfe, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xe6, 0xd9, 0xe0, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xd7, 0xe3, 0xe4, 0xed, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0xfe, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xad, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0xfe, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0x0, 0xc3, 0xe2, 0xd7, 0xad, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "All Pok\u00e9mon names,\u0147sprites, and names of\u0147related resources are\u0147copyright Nintendo,\u0147Creatures Inc., and GAME\u0147FREAK Inc.\u019e"}, "credits_page_19": {"bytes": "0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0xfe, 0xd9, 0xe2, 0xd8, 0xe3, 0xe6, 0xe7, 0xd9, 0xd8, 0x0, 0xe3, 0xe6, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xc0, 0xe6, 0xd9, 0xd5, 0xdf, 0xba, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "This project is not\u0147endorsed or supported by\u0147GameFreak/Nintendo.\u0147\u0147Please support the\u0147original developers.\u019e"}}, "PKMN_NAMES": {"0": {"bytes": "0xc7, 0xdd, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0xc8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "MissingNo\u019e"}, "1": {"bytes": "0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bulbasaur\u019e"}, "2": {"bytes": "0xc3, 0xea, 0xed, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ivysaur\u019e"}, "3": {"bytes": "0xd0, 0xd9, 0xe2, 0xe9, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venusaur\u019e"}, "4": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xe1, 0xd5, 0xe2, 0xd8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charmander\u019e"}, "5": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xe1, 0xd9, 0xe0, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charmeleon\u019e"}, "6": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xdd, 0xee, 0xd5, 0xe6, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charizard\u019e"}, "7": {"bytes": "0xcd, 0xe5, 0xe9, 0xdd, 0xe6, 0xe8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Squirtle\u019e"}, "8": {"bytes": "0xd1, 0xd5, 0xe6, 0xe8, 0xe3, 0xe6, 0xe8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wartortle\u019e"}, "9": {"bytes": "0xbc, 0xe0, 0xd5, 0xe7, 0xe8, 0xe3, 0xdd, 0xe7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Blastoise\u019e"}, "10": {"bytes": "0xbd, 0xd5, 0xe8, 0xd9, 0xe6, 0xe4, 0xdd, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Caterpie\u019e"}, "11": {"bytes": "0xc7, 0xd9, 0xe8, 0xd5, 0xe4, 0xe3, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Metapod\u019e"}, "12": {"bytes": "0xbc, 0xe9, 0xe8, 0xe8, 0xd9, 0xe6, 0xda, 0xe6, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Butterfree\u019e"}, "13": {"bytes": "0xd1, 0xd9, 0xd9, 0xd8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weedle\u019e"}, "14": {"bytes": "0xc5, 0xd5, 0xdf, 0xe9, 0xe2, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kakuna\u019e"}, "15": {"bytes": "0xbc, 0xd9, 0xd9, 0xd8, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Beedrill\u019e"}, "16": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgey\u019e"}, "17": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xe3, 0xe8, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgeotto\u019e"}, "18": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xe3, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgeot\u019e"}, "19": {"bytes": "0xcc, 0xd5, 0xe8, 0xe8, 0xd5, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rattata\u019e"}, "20": {"bytes": "0xcc, 0xd5, 0xe8, 0xdd, 0xd7, 0xd5, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raticate\u019e"}, "21": {"bytes": "0xcd, 0xe4, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Spearow\u019e"}, "22": {"bytes": "0xc0, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Fearow\u019e"}, "23": {"bytes": "0xbf, 0xdf, 0xd5, 0xe2, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ekans\u019e"}, "24": {"bytes": "0xbb, 0xe6, 0xd6, 0xe3, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Arbok\u019e"}, "25": {"bytes": "0xca, 0xdd, 0xdf, 0xd5, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pikachu\u019e"}, "26": {"bytes": "0xcc, 0xd5, 0xdd, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raichu\u019e"}, "27": {"bytes": "0xcd, 0xd5, 0xe2, 0xd8, 0xe7, 0xdc, 0xe6, 0xd9, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sandshrew\u019e"}, "28": {"bytes": "0xcd, 0xd5, 0xe2, 0xd8, 0xe7, 0xe0, 0xd5, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sandslash\u019e"}, "29": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xd5, 0xe2, 0xb6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoran\u2640\u019e"}, "30": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xdd, 0xe2, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidorina\u019e"}, "31": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe5, 0xe9, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoqueen\u019e"}, "32": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xd5, 0xe2, 0xb5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoran\u2642\u019e"}, "33": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xdd, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidorino\u019e"}, "34": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoking\u019e"}, "35": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xd5, 0xdd, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Clefairy\u019e"}, "36": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xd5, 0xd6, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Clefable\u019e"}, "37": {"bytes": "0xd0, 0xe9, 0xe0, 0xe4, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vulpix\u019e"}, "38": {"bytes": "0xc8, 0xdd, 0xe2, 0xd9, 0xe8, 0xd5, 0xe0, 0xd9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ninetales\u019e"}, "39": {"bytes": "0xc4, 0xdd, 0xdb, 0xdb, 0xe0, 0xed, 0xe4, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jigglypuff\u019e"}, "40": {"bytes": "0xd1, 0xdd, 0xdb, 0xdb, 0xe0, 0xed, 0xe8, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wigglytuff\u019e"}, "41": {"bytes": "0xd4, 0xe9, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Zubat\u019e"}, "42": {"bytes": "0xc1, 0xe3, 0xe0, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golbat\u019e"}, "43": {"bytes": "0xc9, 0xd8, 0xd8, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Oddish\u019e"}, "44": {"bytes": "0xc1, 0xe0, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gloom\u019e"}, "45": {"bytes": "0xd0, 0xdd, 0xe0, 0xd9, 0xe4, 0xe0, 0xe9, 0xe1, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vileplume\u019e"}, "46": {"bytes": "0xca, 0xd5, 0xe6, 0xd5, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Paras\u019e"}, "47": {"bytes": "0xca, 0xd5, 0xe6, 0xd5, 0xe7, 0xd9, 0xd7, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Parasect\u019e"}, "48": {"bytes": "0xd0, 0xd9, 0xe2, 0xe3, 0xe2, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venonat\u019e"}, "49": {"bytes": "0xd0, 0xd9, 0xe2, 0xe3, 0xe1, 0xe3, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venomoth\u019e"}, "50": {"bytes": "0xbe, 0xdd, 0xdb, 0xe0, 0xd9, 0xe8, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Diglett\u019e"}, "51": {"bytes": "0xbe, 0xe9, 0xdb, 0xe8, 0xe6, 0xdd, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dugtrio\u019e"}, "52": {"bytes": "0xc7, 0xd9, 0xe3, 0xeb, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Meowth\u019e"}, "53": {"bytes": "0xca, 0xd9, 0xe6, 0xe7, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Persian\u019e"}, "54": {"bytes": "0xca, 0xe7, 0xed, 0xd8, 0xe9, 0xd7, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Psyduck\u019e"}, "55": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xe9, 0xd7, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golduck\u019e"}, "56": {"bytes": "0xc7, 0xd5, 0xe2, 0xdf, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mankey\u019e"}, "57": {"bytes": "0xca, 0xe6, 0xdd, 0xe1, 0xd9, 0xd5, 0xe4, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Primeape\u019e"}, "58": {"bytes": "0xc1, 0xe6, 0xe3, 0xeb, 0xe0, 0xdd, 0xe8, 0xdc, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Growlithe\u019e"}, "59": {"bytes": "0xbb, 0xe6, 0xd7, 0xd5, 0xe2, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Arcanine\u019e"}, "60": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xd5, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwag\u019e"}, "61": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xdc, 0xdd, 0xe6, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwhirl\u019e"}, "62": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xe6, 0xd5, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwrath\u019e"}, "63": {"bytes": "0xbb, 0xd6, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Abra\u019e"}, "64": {"bytes": "0xc5, 0xd5, 0xd8, 0xd5, 0xd6, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kadabra\u019e"}, "65": {"bytes": "0xbb, 0xe0, 0xd5, 0xdf, 0xd5, 0xee, 0xd5, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Alakazam\u019e"}, "66": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machop\u019e"}, "67": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xdf, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machoke\u019e"}, "68": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xd5, 0xe1, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machamp\u019e"}, "69": {"bytes": "0xbc, 0xd9, 0xe0, 0xe0, 0xe7, 0xe4, 0xe6, 0xe3, 0xe9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bellsprout\u019e"}, "70": {"bytes": "0xd1, 0xd9, 0xd9, 0xe4, 0xdd, 0xe2, 0xd6, 0xd9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weepinbell\u019e"}, "71": {"bytes": "0xd0, 0xdd, 0xd7, 0xe8, 0xe6, 0xd9, 0xd9, 0xd6, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Victreebel\u019e"}, "72": {"bytes": "0xce, 0xd9, 0xe2, 0xe8, 0xd5, 0xd7, 0xe3, 0xe3, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tentacool\u019e"}, "73": {"bytes": "0xce, 0xd9, 0xe2, 0xe8, 0xd5, 0xd7, 0xe6, 0xe9, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tentacruel\u019e"}, "74": {"bytes": "0xc1, 0xd9, 0xe3, 0xd8, 0xe9, 0xd8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Geodude\u019e"}, "75": {"bytes": "0xc1, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Graveler\u019e"}, "76": {"bytes": "0xc1, 0xe3, 0xe0, 0xd9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golem\u019e"}, "77": {"bytes": "0xca, 0xe3, 0xe2, 0xed, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ponyta\u019e"}, "78": {"bytes": "0xcc, 0xd5, 0xe4, 0xdd, 0xd8, 0xd5, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rapidash\u019e"}, "79": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xe4, 0xe3, 0xdf, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowpoke\u019e"}, "80": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xd6, 0xe6, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowbro\u019e"}, "81": {"bytes": "0xc7, 0xd5, 0xdb, 0xe2, 0xd9, 0xe1, 0xdd, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magnemite\u019e"}, "82": {"bytes": "0xc7, 0xd5, 0xdb, 0xe2, 0xd9, 0xe8, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magneton\u019e"}, "83": {"bytes": "0xc0, 0xd5, 0xe6, 0xda, 0xd9, 0xe8, 0xd7, 0xdc, 0xb4, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Farfetch\u2019d\u019e"}, "84": {"bytes": "0xbe, 0xe3, 0xd8, 0xe9, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Doduo\u019e"}, "85": {"bytes": "0xbe, 0xe3, 0xd8, 0xe6, 0xdd, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dodrio\u019e"}, "86": {"bytes": "0xcd, 0xd9, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seel\u019e"}, "87": {"bytes": "0xbe, 0xd9, 0xeb, 0xdb, 0xe3, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dewgong\u019e"}, "88": {"bytes": "0xc1, 0xe6, 0xdd, 0xe1, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Grimer\u019e"}, "89": {"bytes": "0xc7, 0xe9, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Muk\u019e"}, "90": {"bytes": "0xcd, 0xdc, 0xd9, 0xe0, 0xe0, 0xd8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Shellder\u019e"}, "91": {"bytes": "0xbd, 0xe0, 0xe3, 0xed, 0xe7, 0xe8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cloyster\u019e"}, "92": {"bytes": "0xc1, 0xd5, 0xe7, 0xe8, 0xe0, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gastly\u019e"}, "93": {"bytes": "0xc2, 0xd5, 0xe9, 0xe2, 0xe8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Haunter\u019e"}, "94": {"bytes": "0xc1, 0xd9, 0xe2, 0xdb, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gengar\u019e"}, "95": {"bytes": "0xc9, 0xe2, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Onix\u019e"}, "96": {"bytes": "0xbe, 0xe6, 0xe3, 0xeb, 0xee, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Drowzee\u019e"}, "97": {"bytes": "0xc2, 0xed, 0xe4, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hypno\u019e"}, "98": {"bytes": "0xc5, 0xe6, 0xd5, 0xd6, 0xd6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Krabby\u019e"}, "99": {"bytes": "0xc5, 0xdd, 0xe2, 0xdb, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kingler\u019e"}, "100": {"bytes": "0xd0, 0xe3, 0xe0, 0xe8, 0xe3, 0xe6, 0xd6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Voltorb\u019e"}, "101": {"bytes": "0xbf, 0xe0, 0xd9, 0xd7, 0xe8, 0xe6, 0xe3, 0xd8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Electrode\u019e"}, "102": {"bytes": "0xbf, 0xec, 0xd9, 0xdb, 0xdb, 0xd7, 0xe9, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Exeggcute\u019e"}, "103": {"bytes": "0xbf, 0xec, 0xd9, 0xdb, 0xdb, 0xe9, 0xe8, 0xe3, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Exeggutor\u019e"}, "104": {"bytes": "0xbd, 0xe9, 0xd6, 0xe3, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cubone\u019e"}, "105": {"bytes": "0xc7, 0xd5, 0xe6, 0xe3, 0xeb, 0xd5, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Marowak\u019e"}, "106": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xe0, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmonlee\u019e"}, "107": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xd7, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmonchan\u019e"}, "108": {"bytes": "0xc6, 0xdd, 0xd7, 0xdf, 0xdd, 0xe8, 0xe9, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lickitung\u019e"}, "109": {"bytes": "0xc5, 0xe3, 0xda, 0xda, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Koffing\u019e"}, "110": {"bytes": "0xd1, 0xd9, 0xd9, 0xee, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weezing\u019e"}, "111": {"bytes": "0xcc, 0xdc, 0xed, 0xdc, 0xe3, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rhyhorn\u019e"}, "112": {"bytes": "0xcc, 0xdc, 0xed, 0xd8, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rhydon\u019e"}, "113": {"bytes": "0xbd, 0xdc, 0xd5, 0xe2, 0xe7, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chansey\u019e"}, "114": {"bytes": "0xce, 0xd5, 0xe2, 0xdb, 0xd9, 0xe0, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tangela\u019e"}, "115": {"bytes": "0xc5, 0xd5, 0xe2, 0xdb, 0xd5, 0xe7, 0xdf, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kangaskhan\u019e"}, "116": {"bytes": "0xc2, 0xe3, 0xe6, 0xe7, 0xd9, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Horsea\u019e"}, "117": {"bytes": "0xcd, 0xd9, 0xd5, 0xd8, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seadra\u019e"}, "118": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Goldeen\u019e"}, "119": {"bytes": "0xcd, 0xd9, 0xd5, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seaking\u019e"}, "120": {"bytes": "0xcd, 0xe8, 0xd5, 0xe6, 0xed, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Staryu\u019e"}, "121": {"bytes": "0xcd, 0xe8, 0xd5, 0xe6, 0xe1, 0xdd, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Starmie\u019e"}, "122": {"bytes": "0xc7, 0xe6, 0xad, 0x0, 0xc7, 0xdd, 0xe1, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mr. Mime\u019e"}, "123": {"bytes": "0xcd, 0xd7, 0xed, 0xe8, 0xdc, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Scyther\u019e"}, "124": {"bytes": "0xc4, 0xed, 0xe2, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jynx\u019e"}, "125": {"bytes": "0xbf, 0xe0, 0xd9, 0xd7, 0xe8, 0xd5, 0xd6, 0xe9, 0xee, 0xee, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Electabuzz\u019e"}, "126": {"bytes": "0xc7, 0xd5, 0xdb, 0xe1, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magmar\u019e"}, "127": {"bytes": "0xca, 0xdd, 0xe2, 0xe7, 0xdd, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pinsir\u019e"}, "128": {"bytes": "0xce, 0xd5, 0xe9, 0xe6, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tauros\u019e"}, "129": {"bytes": "0xc7, 0xd5, 0xdb, 0xdd, 0xdf, 0xd5, 0xe6, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magikarp\u019e"}, "130": {"bytes": "0xc1, 0xed, 0xd5, 0xe6, 0xd5, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gyarados\u019e"}, "131": {"bytes": "0xc6, 0xd5, 0xe4, 0xe6, 0xd5, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lapras\u019e"}, "132": {"bytes": "0xbe, 0xdd, 0xe8, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ditto\u019e"}, "133": {"bytes": "0xbf, 0xd9, 0xea, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Eevee\u019e"}, "134": {"bytes": "0xd0, 0xd5, 0xe4, 0xe3, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vaporeon\u019e"}, "135": {"bytes": "0xc4, 0xe3, 0xe0, 0xe8, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jolteon\u019e"}, "136": {"bytes": "0xc0, 0xe0, 0xd5, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Flareon\u019e"}, "137": {"bytes": "0xca, 0xe3, 0xe6, 0xed, 0xdb, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Porygon\u019e"}, "138": {"bytes": "0xc9, 0xe1, 0xd5, 0xe2, 0xed, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Omanyte\u019e"}, "139": {"bytes": "0xc9, 0xe1, 0xd5, 0xe7, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Omastar\u019e"}, "140": {"bytes": "0xc5, 0xd5, 0xd6, 0xe9, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kabuto\u019e"}, "141": {"bytes": "0xc5, 0xd5, 0xd6, 0xe9, 0xe8, 0xe3, 0xe4, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kabutops\u019e"}, "142": {"bytes": "0xbb, 0xd9, 0xe6, 0xe3, 0xd8, 0xd5, 0xd7, 0xe8, 0xed, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Aerodactyl\u019e"}, "143": {"bytes": "0xcd, 0xe2, 0xe3, 0xe6, 0xe0, 0xd5, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Snorlax\u019e"}, "144": {"bytes": "0xbb, 0xe6, 0xe8, 0xdd, 0xd7, 0xe9, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Articuno\u019e"}, "145": {"bytes": "0xd4, 0xd5, 0xe4, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Zapdos\u019e"}, "146": {"bytes": "0xc7, 0xe3, 0xe0, 0xe8, 0xe6, 0xd9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Moltres\u019e"}, "147": {"bytes": "0xbe, 0xe6, 0xd5, 0xe8, 0xdd, 0xe2, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dratini\u019e"}, "148": {"bytes": "0xbe, 0xe6, 0xd5, 0xdb, 0xe3, 0xe2, 0xd5, 0xdd, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dragonair\u019e"}, "149": {"bytes": "0xbe, 0xe6, 0xd5, 0xdb, 0xe3, 0xe2, 0xdd, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dragonite\u019e"}, "150": {"bytes": "0xc7, 0xd9, 0xeb, 0xe8, 0xeb, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mewtwo\u019e"}, "151": {"bytes": "0xc7, 0xd9, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mew\u019e"}, "152": {"bytes": "0xbd, 0xdc, 0xdd, 0xdf, 0xe3, 0xe6, 0xdd, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chikorita\u019e"}, "153": {"bytes": "0xbc, 0xd5, 0xed, 0xe0, 0xd9, 0xd9, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bayleef\u019e"}, "154": {"bytes": "0xc7, 0xd9, 0xdb, 0xd5, 0xe2, 0xdd, 0xe9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Meganium\u019e"}, "155": {"bytes": "0xbd, 0xed, 0xe2, 0xd8, 0xd5, 0xe5, 0xe9, 0xdd, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cyndaquil\u019e"}, "156": {"bytes": "0xcb, 0xe9, 0xdd, 0xe0, 0xd5, 0xea, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Quilava\u019e"}, "157": {"bytes": "0xce, 0xed, 0xe4, 0xdc, 0xe0, 0xe3, 0xe7, 0xdd, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Typhlosion\u019e"}, "158": {"bytes": "0xce, 0xe3, 0xe8, 0xe3, 0xd8, 0xdd, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Totodile\u019e"}, "159": {"bytes": "0xbd, 0xe6, 0xe3, 0xd7, 0xe3, 0xe2, 0xd5, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Croconaw\u019e"}, "160": {"bytes": "0xc0, 0xd9, 0xe6, 0xd5, 0xe0, 0xdd, 0xdb, 0xd5, 0xe8, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Feraligatr\u019e"}, "161": {"bytes": "0xcd, 0xd9, 0xe2, 0xe8, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sentret\u019e"}, "162": {"bytes": "0xc0, 0xe9, 0xe6, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Furret\u019e"}, "163": {"bytes": "0xc2, 0xe3, 0xe3, 0xe8, 0xdc, 0xe3, 0xe3, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hoothoot\u019e"}, "164": {"bytes": "0xc8, 0xe3, 0xd7, 0xe8, 0xe3, 0xeb, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Noctowl\u019e"}, "165": {"bytes": "0xc6, 0xd9, 0xd8, 0xed, 0xd6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ledyba\u019e"}, "166": {"bytes": "0xc6, 0xd9, 0xd8, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ledian\u019e"}, "167": {"bytes": "0xcd, 0xe4, 0xdd, 0xe2, 0xd5, 0xe6, 0xd5, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Spinarak\u019e"}, "168": {"bytes": "0xbb, 0xe6, 0xdd, 0xd5, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ariados\u019e"}, "169": {"bytes": "0xbd, 0xe6, 0xe3, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Crobat\u019e"}, "170": {"bytes": "0xbd, 0xdc, 0xdd, 0xe2, 0xd7, 0xdc, 0xe3, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chinchou\u019e"}, "171": {"bytes": "0xc6, 0xd5, 0xe2, 0xe8, 0xe9, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lanturn\u019e"}, "172": {"bytes": "0xca, 0xdd, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pichu\u019e"}, "173": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xda, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cleffa\u019e"}, "174": {"bytes": "0xc3, 0xdb, 0xdb, 0xe0, 0xed, 0xd6, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Igglybuff\u019e"}, "175": {"bytes": "0xce, 0xe3, 0xdb, 0xd9, 0xe4, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Togepi\u019e"}, "176": {"bytes": "0xce, 0xe3, 0xdb, 0xd9, 0xe8, 0xdd, 0xd7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Togetic\u019e"}, "177": {"bytes": "0xc8, 0xd5, 0xe8, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Natu\u019e"}, "178": {"bytes": "0xd2, 0xd5, 0xe8, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Xatu\u019e"}, "179": {"bytes": "0xc7, 0xd5, 0xe6, 0xd9, 0xd9, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mareep\u019e"}, "180": {"bytes": "0xc0, 0xe0, 0xd5, 0xd5, 0xda, 0xda, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Flaaffy\u019e"}, "181": {"bytes": "0xbb, 0xe1, 0xe4, 0xdc, 0xd5, 0xe6, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ampharos\u019e"}, "182": {"bytes": "0xbc, 0xd9, 0xe0, 0xe0, 0xe3, 0xe7, 0xe7, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bellossom\u019e"}, "183": {"bytes": "0xc7, 0xd5, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Marill\u019e"}, "184": {"bytes": "0xbb, 0xee, 0xe9, 0xe1, 0xd5, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Azumarill\u019e"}, "185": {"bytes": "0xcd, 0xe9, 0xd8, 0xe3, 0xeb, 0xe3, 0xe3, 0xd8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sudowoodo\u019e"}, "186": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xe8, 0xe3, 0xd9, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Politoed\u019e"}, "187": {"bytes": "0xc2, 0xe3, 0xe4, 0xe4, 0xdd, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hoppip\u019e"}, "188": {"bytes": "0xcd, 0xdf, 0xdd, 0xe4, 0xe0, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Skiploom\u019e"}, "189": {"bytes": "0xc4, 0xe9, 0xe1, 0xe4, 0xe0, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jumpluff\u019e"}, "190": {"bytes": "0xbb, 0xdd, 0xe4, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Aipom\u019e"}, "191": {"bytes": "0xcd, 0xe9, 0xe2, 0xdf, 0xd9, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sunkern\u019e"}, "192": {"bytes": "0xcd, 0xe9, 0xe2, 0xda, 0xe0, 0xe3, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sunflora\u019e"}, "193": {"bytes": "0xd3, 0xd5, 0xe2, 0xe1, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Yanma\u019e"}, "194": {"bytes": "0xd1, 0xe3, 0xe3, 0xe4, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wooper\u019e"}, "195": {"bytes": "0xcb, 0xe9, 0xd5, 0xdb, 0xe7, 0xdd, 0xe6, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Quagsire\u019e"}, "196": {"bytes": "0xbf, 0xe7, 0xe4, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Espeon\u019e"}, "197": {"bytes": "0xcf, 0xe1, 0xd6, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Umbreon\u019e"}, "198": {"bytes": "0xc7, 0xe9, 0xe6, 0xdf, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Murkrow\u019e"}, "199": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowking\u019e"}, "200": {"bytes": "0xc7, 0xdd, 0xe7, 0xd8, 0xe6, 0xd9, 0xd5, 0xea, 0xe9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Misdreavus\u019e"}, "201": {"bytes": "0xcf, 0xe2, 0xe3, 0xeb, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Unown\u019e"}, "202": {"bytes": "0xd1, 0xe3, 0xd6, 0xd6, 0xe9, 0xda, 0xda, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wobbuffet\u019e"}, "203": {"bytes": "0xc1, 0xdd, 0xe6, 0xd5, 0xda, 0xd5, 0xe6, 0xdd, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Girafarig\u019e"}, "204": {"bytes": "0xca, 0xdd, 0xe2, 0xd9, 0xd7, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pineco\u019e"}, "205": {"bytes": "0xc0, 0xe3, 0xe6, 0xe6, 0xd9, 0xe8, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Forretress\u019e"}, "206": {"bytes": "0xbe, 0xe9, 0xe2, 0xe7, 0xe4, 0xd5, 0xe6, 0xd7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dunsparce\u019e"}, "207": {"bytes": "0xc1, 0xe0, 0xdd, 0xdb, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gligar\u019e"}, "208": {"bytes": "0xcd, 0xe8, 0xd9, 0xd9, 0xe0, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Steelix\u019e"}, "209": {"bytes": "0xcd, 0xe2, 0xe9, 0xd6, 0xd6, 0xe9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Snubbull\u019e"}, "210": {"bytes": "0xc1, 0xe6, 0xd5, 0xe2, 0xd6, 0xe9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Granbull\u019e"}, "211": {"bytes": "0xcb, 0xeb, 0xdd, 0xe0, 0xda, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Qwilfish\u019e"}, "212": {"bytes": "0xcd, 0xd7, 0xdd, 0xee, 0xe3, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Scizor\u019e"}, "213": {"bytes": "0xcd, 0xdc, 0xe9, 0xd7, 0xdf, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Shuckle\u019e"}, "214": {"bytes": "0xc2, 0xd9, 0xe6, 0xd5, 0xd7, 0xe6, 0xe3, 0xe7, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Heracross\u019e"}, "215": {"bytes": "0xcd, 0xe2, 0xd9, 0xd5, 0xe7, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sneasel\u019e"}, "216": {"bytes": "0xce, 0xd9, 0xd8, 0xd8, 0xdd, 0xe9, 0xe6, 0xe7, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Teddiursa\u019e"}, "217": {"bytes": "0xcf, 0xe6, 0xe7, 0xd5, 0xe6, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ursaring\u019e"}, "218": {"bytes": "0xcd, 0xe0, 0xe9, 0xdb, 0xe1, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slugma\u019e"}, "219": {"bytes": "0xc7, 0xd5, 0xdb, 0xd7, 0xd5, 0xe6, 0xdb, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magcargo\u019e"}, "220": {"bytes": "0xcd, 0xeb, 0xdd, 0xe2, 0xe9, 0xd6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Swinub\u019e"}, "221": {"bytes": "0xca, 0xdd, 0xe0, 0xe3, 0xe7, 0xeb, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Piloswine\u019e"}, "222": {"bytes": "0xbd, 0xe3, 0xe6, 0xe7, 0xe3, 0xe0, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Corsola\u019e"}, "223": {"bytes": "0xcc, 0xd9, 0xe1, 0xe3, 0xe6, 0xd5, 0xdd, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Remoraid\u019e"}, "224": {"bytes": "0xc9, 0xd7, 0xe8, 0xdd, 0xe0, 0xe0, 0xd9, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Octillery\u019e"}, "225": {"bytes": "0xbe, 0xd9, 0xe0, 0xdd, 0xd6, 0xdd, 0xe6, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Delibird\u019e"}, "226": {"bytes": "0xc7, 0xd5, 0xe2, 0xe8, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mantine\u019e"}, "227": {"bytes": "0xcd, 0xdf, 0xd5, 0xe6, 0xe1, 0xe3, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Skarmory\u019e"}, "228": {"bytes": "0xc2, 0xe3, 0xe9, 0xe2, 0xd8, 0xe3, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Houndour\u019e"}, "229": {"bytes": "0xc2, 0xe3, 0xe9, 0xe2, 0xd8, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Houndoom\u019e"}, "230": {"bytes": "0xc5, 0xdd, 0xe2, 0xdb, 0xd8, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kingdra\u019e"}, "231": {"bytes": "0xca, 0xdc, 0xd5, 0xe2, 0xe4, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Phanpy\u019e"}, "232": {"bytes": "0xbe, 0xe3, 0xe2, 0xe4, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Donphan\u019e"}, "233": {"bytes": "0xca, 0xe3, 0xe6, 0xed, 0xdb, 0xe3, 0xe2, 0xa3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Porygon2\u019e"}, "234": {"bytes": "0xcd, 0xe8, 0xd5, 0xe2, 0xe8, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Stantler\u019e"}, "235": {"bytes": "0xcd, 0xe1, 0xd9, 0xd5, 0xe6, 0xdb, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Smeargle\u019e"}, "236": {"bytes": "0xce, 0xed, 0xe6, 0xe3, 0xdb, 0xe9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tyrogue\u019e"}, "237": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xe8, 0xe3, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmontop\u019e"}, "238": {"bytes": "0xcd, 0xe1, 0xe3, 0xe3, 0xd7, 0xdc, 0xe9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Smoochum\u019e"}, "239": {"bytes": "0xbf, 0xe0, 0xd9, 0xdf, 0xdd, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Elekid\u019e"}, "240": {"bytes": "0xc7, 0xd5, 0xdb, 0xd6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magby\u019e"}, "241": {"bytes": "0xc7, 0xdd, 0xe0, 0xe8, 0xd5, 0xe2, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Miltank\u019e"}, "242": {"bytes": "0xbc, 0xe0, 0xdd, 0xe7, 0xe7, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Blissey\u019e"}, "243": {"bytes": "0xcc, 0xd5, 0xdd, 0xdf, 0xe3, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raikou\u019e"}, "244": {"bytes": "0xbf, 0xe2, 0xe8, 0xd9, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Entei\u019e"}, "245": {"bytes": "0xcd, 0xe9, 0xdd, 0xd7, 0xe9, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Suicune\u019e"}, "246": {"bytes": "0xc6, 0xd5, 0xe6, 0xea, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Larvitar\u019e"}, "247": {"bytes": "0xca, 0xe9, 0xe4, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pupitar\u019e"}, "248": {"bytes": "0xce, 0xed, 0xe6, 0xd5, 0xe2, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tyranitar\u019e"}, "249": {"bytes": "0xc6, 0xe9, 0xdb, 0xdd, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lugia\u019e"}, "250": {"bytes": "0xc2, 0xe3, 0xae, 0xc9, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ho-Oh\u019e"}, "251": {"bytes": "0xbd, 0xd9, 0xe0, 0xd9, 0xd6, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Celebi\u019e"}}, "Warnings": {"0": "Warning! ' found, replacing with \u2019 !", "1": "Warning! ' found, replacing with \u2019 !", "2": "Warning! ' found, replacing with \u2019 !", "3": "Warning! ' found, replacing with \u2019 !", "4": "Warning! ' found, replacing with \u2019 !", "5": "Warning! ' found, replacing with \u2019 !", "6": "Warning! ' found, replacing with \u2019 !", "7": "Warning! ' found, replacing with \u2019 !", "8": "Warning! ' found, replacing with \u2019 !", "9": "Warning! ' found, replacing with \u2019 !", "10": "Warning! ' found, replacing with \u2019 !", "11": "Warning! ' found, replacing with \u2019 !", "12": "Warning! ' found, replacing with \u2019 !", "13": "Warning! ' found, replacing with \u2019 !", "14": "Warning! ' found, replacing with \u2019 !", "15": "Warning! ' found, replacing with \u2019 !", "16": "Warning! ' found, replacing with \u2019 !", "17": "Warning! ' found, replacing with \u2019 !", "18": "Warning! ' found, replacing with \u2019 !", "19": "Warning! ' found, replacing with \u2019 !", "20": "Warning! ' found, replacing with \u2019 !", "21": "Warning! ' found, replacing with \u2019 !", "22": "Warning! ' found, replacing with \u2019 !", "23": "Warning! ' found, replacing with \u2019 !", "24": "Warning! ' found, replacing with \u2019 !", "25": "Warning! ' found, replacing with \u2019 !", "26": "Warning! ' found, replacing with \u2019 !", "27": "Warning! ' found, replacing with \u2019 !", "28": "Warning! ' found, replacing with \u2019 !", "29": "Warning! ' found, replacing with \u2019 !", "30": "Warning! ' found, replacing with \u2019 !", "31": "Warning! ' found, replacing with \u2019 !", "32": "Warning! ' found, replacing with \u2019 !", "33": "Warning! ' found, replacing with \u2019 !", "34": "Warning! ' found, replacing with \u2019 !", "35": "Warning! ' found, replacing with \u2019 !", "36": "Warning! ' found, replacing with \u2019 !", "37": "Warning! ' found, replacing with \u2019 !", "38": "Warning! ' found, replacing with \u2019 !", "39": "Warning! ' found, replacing with \u2019 !", "40": "Warning! ' found, replacing with \u2019 !", "41": "Warning! ' found, replacing with \u2019 !", "42": "Warning! ' found, replacing with \u2019 !", "43": "Warning! ' found, replacing with \u2019 !", "44": "Warning! ' found, replacing with \u2019 !", "45": "Warning! ' found, replacing with \u2019 !", "46": "Warning! ' found, replacing with \u2019 !", "47": "Warning! ' found, replacing with \u2019 !", "48": "Warning! ' found, replacing with \u2019 !", "49": "Warning! ' found, replacing with \u2019 !", "50": "Warning! ' found, replacing with \u2019 !", "51": "Warning! ' found, replacing with \u2019 !", "52": "Warning! ' found, replacing with \u2019 !", "53": "Warning! ' found, replacing with \u2019 !", "54": "Warning! ' found, replacing with \u2019 !"}, "Errors": {"0": "Error! No match found for char [ \" ]!", "1": "ERROR! Made a line break when disabled, sentence \"Remote and Arbitrary Code\u0147Execution assistance: \u0147\u0147-TimoVM \u0147\u0147Remote Multiboot\u0147functionality: \u023c\" is too long!"}}, "SpanishLA": {"PTGB": {"DIA_OPEN": {"bytes": "0xc2, 0xd9, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xab, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xd9, 0xe2, 0xe2, 0xd9, 0xe0, 0xad, 0x0, 0xbb, 0xe7, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xd9, 0xb8, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xd5, 0x0, 0xe7, 0xd7, 0xdd, 0xd9, 0xe2, 0xe8, 0xdd, 0xe7, 0xe8, 0xad, 0x0, 0xc3, 0xe2, 0xfe, 0xda, 0xd5, 0xd7, 0xe8, 0xb8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xe9, 0xd6, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe7, 0xfe, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0xab, 0xfb, 0xc7, 0xed, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe0, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xea, 0xd5, 0xe6, 0xdd, 0xe3, 0xe9, 0xe7, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xdc, 0xd5, 0xd8, 0xfe, 0xd5, 0xe2, 0xed, 0x0, 0xd6, 0xe6, 0xd9, 0xd5, 0xdf, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0xe7, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xad, 0xad, 0xfb, 0xcd, 0xe3, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0xb4, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xdd, 0xe2, 0xdb, 0xfe, 0xe3, 0xe2, 0x0, 0xd5, 0x0, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0xfe, 0xe3, 0xe0, 0xd8, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0xab, 0xfb, 0xc3, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xdc, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0xb8, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xb4, 0xe7, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xdd, 0xe2, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd9, 0xed, 0x0, 0xe1, 0xd9, 0xd9, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0xab, 0xfb, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xda, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe1, 0xed, 0x0, 0xdb, 0xe3, 0xd5, 0xe0, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xd8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xd5, 0xe1, 0xd9, 0xae, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb4, 0xe7, 0xfe, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xfb, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xe2, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe9, 0xe8, 0xfe, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xe7, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xa3, 0xa6, 0xa1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xd7, 0xd5, 0xe8, 0xd5, 0xe0, 0xe3, 0xdb, 0xe9, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xbe, 0xd9, 0xec, 0xae, 0x0, 0xe3, 0xe6, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe6, 0xe8, 0xad, 0xfb, 0xbc, 0xe9, 0xe8, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xae, 0xfe, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xe6, 0xd9, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xd5, 0xe0, 0xe0, 0xab, 0xfb, 0xc9, 0xe2, 0xd9, 0x0, 0xe0, 0xd5, 0xe7, 0xe8, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0xb8, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0xae, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdb, 0xe3, 0xd9, 0xe7, 0x0, 0xeb, 0xe6, 0xe3, 0xe2, 0xdb, 0xab, 0xfe, 0xc3, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdf, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xad, 0xad, 0xad, 0xfb, 0xeb, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0xb8, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hey there! I\u2019m Professor Fennel. As\u0147you can see, I\u2019m a scientist. In\u0147fact, the subject I\u2019m researching is\u0147Trainers!\u023cMy dream is to collect save files of\u0147various trainers, but I haven\u2019t had\u0147any breakthroughs yet...\u023cSo in the meantime, I\u2019ve been working\u0147on a different project with one of my\u0147old friends!\u023cIn my home region, there\u2019s a location\u0147that can make a Pok\u00e9mon\u2019s dreams into\u0147reality.\u023cThis means that any other Pok\u00e9mon\u0147they meet in their dreams become\u0147real!\u023cThat\u2019s fantastic, but my goal is to\u0147do the same- just with a trainer\u2019s\u0147dream instead! That\u2019s why I need your\u0147help!\u023cI want to bring as many Pok\u00e9mon out\u0147of your dreams as possible!\u023cThere\u2019s just over 250 Pok\u00e9mon I want\u0147to catalogue in my Dream Pok\u00e9Dex- or\u0147Dream Dex for short.\u023cBut I\u2019ll let you keep any Pok\u00e9mon-\u0147they\u2019re from your dreams after all!\u023cOne last note, save data backups are\u0147recommended- just on the off chance\u0147that something goes wrong!\u0147I think that\u2019s everything...\u023cwhenever you\u2019re ready to start, just\u0147let me know!\u019e"}, "DIA_E4": {"bytes": "0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xe8, 0xdc, 0xe6, 0xdd, 0xe0, 0xe0, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0xfe, 0xd8, 0xd9, 0xd7, 0xdd, 0xd8, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe9, 0xe6, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xd9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0xab, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd5, 0xe8, 0xd9, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbf, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xc0, 0xe3, 0xe9, 0xe6, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xdc, 0xd5, 0xe1, 0xe4, 0xdd, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi trainer! I\u2019m thrilled you\u2019ve\u0147decided to help with our research,\u0147but we need the best of the best!\u023cCome back after you\u2019ve beaten the\u0147Elite Four and become the Champion!\u019e"}, "DIA_MG_FRLGE": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0xfe, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xae, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xc1, 0xc3, 0xc0, 0xce, 0xab, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe2, 0xd9, 0xd5, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xc7, 0xd5, 0xe6, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xda, 0xdd, 0xe0, 0xe0, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe2, 0xd5, 0xdd, 0xe6, 0xd9, 0x0, 0xd5, 0xe7, 0xfe, 0xda, 0xe3, 0xe0, 0xe0, 0xe3, 0xeb, 0xe7, 0xf0, 0x0, 0xc6, 0xc3, 0xc8, 0xc5, 0x0, 0xce, 0xc9, 0xc1, 0xbf, 0xce, 0xc2, 0xbf, 0xcc, 0x0, 0xd1, 0xc3, 0xce, 0xc2, 0x0, 0xbb, 0xc6, 0xc6, 0xad, 0xfb, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xdb, 0xe3, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, one more thing to take\u0147care of before we can begin- you need\u0147to enable MYSTERY GIFT!\u023cHead to the nearest Pok\u00e9 Mart and\u0147fill out the questionnaire as\u0147follows: LINK TOGETHER WITH ALL.\u023cAfter that, you should be all set to\u0147go! See you soon!\u019e"}, "DIA_MG_RS": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0xfe, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xae, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0xab, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbf, 0xce, 0xbb, 0xc6, 0xbc, 0xcf, 0xcc, 0xc1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xbd, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xe2, 0x0, 0xe2, 0xd9, 0xec, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0xf0, 0xfe, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0x0, 0xc3, 0xcd, 0x0, 0xbf, 0xd2, 0xbd, 0xc3, 0xce, 0xc3, 0xc8, 0xc1, 0xad, 0x0, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0xb8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdb, 0xe3, 0xab, 0xfb, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, one more thing to take\u0147care of before we can begin- you need\u0147to enable MYSTERY EVENT!\u023cHead to the PETALBURG Pok\u00e9mon Center\u0147and tell the man next to the PC:\u0147MYSTERY EVENT IS EXCITING. After\u0147that, you should be all set to go!\u023cSee you soon!\u019e"}, "DIA_LETS_START": {"bytes": "0xca, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0xb8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xc3, 0xfe, 0xe2, 0xd9, 0xd9, 0xd8, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xdb, 0xd9, 0xe8, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0xd9, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Perfect, that\u2019s all the information I\u0147need! Let\u2019s get started!\u019e"}, "DIA_START": {"bytes": "0xc9, 0xe2, 0x0, 0xd5, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xb8, 0xfe, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xdd, 0xe7, 0xdc, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xad, 0xfb, 0xc3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xad, 0xfb, 0xce, 0xdc, 0xd9, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xfe, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0x0, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0xad, 0xfb, 0xc9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0xb8, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xbd, 0xe0, 0xe9, 0xd6, 0xfe, 0xd5, 0xe8, 0xe8, 0xd9, 0xe2, 0xd8, 0xd5, 0xe2, 0xe8, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0x0, 0xdd, 0xe2, 0xdd, 0xe8, 0xdd, 0xd5, 0xe8, 0xd9, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xd9, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "On a second Game Boy family system,\u0147please load the Game Boy Pok\u00e9mon game\u0147you wish to transfer from.\u023cIn your Game Boy Pok\u00e9mon game, make\u0147your current box the one you want to\u0147transfer from.\u023cThen connect this Game Boy Advance to\u0147the other Game Boy family system\u0147using a Game Boy Color link cable.\u023cOnce you\u2019re ready, press A on this\u0147device, talk to the Cable Club\u0147attendant, and then initiate a trade.\u019e"}, "DIA_TRANS_GOOD": {"bytes": "0xbb, 0xe1, 0xd5, 0xee, 0xdd, 0xe2, 0xdb, 0xab, 0x0, 0xc0, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0xab, 0x0, 0xbf, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0xfe, 0xe4, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Amazing! Fantastic! Everything went\u0147perfectly!\u019e"}, "DIA_NEW_DEX": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xdd, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xab, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xd9, 0xec, 0xe8, 0xe6, 0xd5, 0x0, 0xe7, 0xeb, 0xd9, 0xd9, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xe6, 0xd9, 0xeb, 0xd5, 0xe6, 0xd8, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like there\u2019s at least one\u0147new Pok\u00e9mon here that isn\u2019t in the\u0147Dream Dex! I\u2019ll give them something\u0147extra sweet as a reward for you both.\u019e"}, "DIA_NO_NEW_DEX": {"bytes": "0xc3, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0xe2, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0xfe, 0xe3, 0xdf, 0xd5, 0xed, 0xab, 0x0, 0xc3, 0xe8, 0xb4, 0xe7, 0x0, 0xdd, 0xe1, 0xe4, 0xe3, 0xe6, 0xe8, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0xfe, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe9, 0xe0, 0xe8, 0xe7, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe1, 0xe9, 0xe0, 0xe8, 0xdd, 0xe4, 0xe0, 0xd9, 0x0, 0xe8, 0xd9, 0xe7, 0xe8, 0xe7, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It doesn\u2019t look like there\u2019s anything\u0147new for your Dream Dex, but that\u2019s\u0147okay! It\u2019s important to confirm\u0147research results with multiple tests!\u019e"}, "DIA_SEND_FRIEND_KANTO": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0x0, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0x0, 0xe3, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xe3, 0xe2, 0x0, 0xcd, 0xd9, 0xea, 0xd9, 0xe2, 0x0, 0xc3, 0xe7, 0xe0, 0xd5, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up! They live just south of\u0147the Pok\u00e9mon center on Seven Island!\u019e"}, "DIA_SEND_FRIEND_HOENN_RS": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xc7, 0xe3, 0xe7, 0xe7, 0xd8, 0xd9, 0xd9, 0xe4, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up!\u023cThey live just southeast of the\u0147Pok\u00e9mon center in Mossdeep City!\u019e"}, "DIA_SEND_FRIEND_HOENN_E": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xcd, 0xe3, 0xe3, 0xe8, 0xe3, 0xe4, 0xe3, 0xe0, 0xdd, 0xe7, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up!\u023cThey live just southeast of the\u0147Pok\u00e9mon center in Sootopolis City!\u019e"}, "DIA_THANK": {"bytes": "0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xfe, 0xd1, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xb8, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Thank you so much for your help!\u0147Whenever you want to transfer more\u0147Pok\u00e9mon, just let me know! See you\u0147around!\u019e"}, "DIA_GET_MON": {"bytes": "0xe9, 0xe2, 0xe9, 0xe7, 0xd9, 0xd8, 0xb8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "unused, will be removed\u019e"}, "DIA_MG_OTHER_EVENT": {"bytes": "0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xfe, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xad, 0xfe, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xd6, 0xe0, 0xd9, 0xe1, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe3, 0xea, 0xd9, 0xe6, 0xeb, 0xe6, 0xdd, 0xe8, 0xe8, 0xd9, 0xe2, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xad, 0xfb, 0xce, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xe2, 0xe3, 0xeb, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xec, 0xe4, 0xd9, 0xe6, 0xdd, 0xd9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0xae, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi Trainer! It looks like you have a\u0147different event currently loaded.\u0147That\u2019s no problem, but it will be\u0147overwritten if you continue.\u023cTurn off the system now if you want\u0147to experience your current event, but\u0147otherwise-\u019e"}, "DIA_PKMN_TO_COLLECT": {"bytes": "0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe9, 0xe4, 0xad, 0xad, 0xad, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0xb4, 0xe8, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe9, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0xfe, 0xe8, 0xdc, 0xe3, 0xe7, 0xd9, 0x0, 0xe9, 0xe4, 0xad, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi Trainer! It looks like you still\u0147have Pok\u00e9mon to pick up... I can\u2019t\u0147send over new Pok\u00e9mon until you pick\u0147those up.\u023cCome back after you\u2019ve received them!\u019e"}, "DIA_NO_VALID_PKMN": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xea, 0xd5, 0xe0, 0xdd, 0xd8, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xe2, 0xe3, 0xeb, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xd8, 0xe3, 0xe9, 0xd6, 0xe0, 0xd9, 0x0, 0xd7, 0xdc, 0xd9, 0xd7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xdd, 0xe8, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry Trainer, it doesn\u2019t look like\u0147you have any valid Pok\u00e9mon in your\u0147current box right now.\u023cGo double check your current box and\u0147we can give it another shot!\u019e"}, "DIA_ASK_QUEST": {"bytes": "0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xbc, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xb8, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd5, 0xe7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0x0, 0xda, 0xd9, 0xeb, 0x0, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi trainer! Before we begin, I need\u0147to ask you a few questions.\u019e"}, "DIA_WHAT_GAME_TRANS": {"bytes": "0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xac, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "And which Game Boy Pok\u00e9mon game are\u0147you transferring from?\u019e"}, "DIA_WHAT_LANG_TRANS": {"bytes": "0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xac, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "What language is the Game Boy Pok\u00e9mon\u0147game that you\u2019re transferring from?\u019e"}, "DIA_NO_GB_ROM": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xe7, 0xe3, 0xe6, 0xe6, 0xed, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xea, 0xd9, 0xe6, 0xe7, 0xdd, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m sorry, but that version in that\u0147language is not currently supported.\u019e"}, "DIA_IN_BOX": {"bytes": "0xbb, 0xe0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0xad, 0xfb, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xd9, 0xe1, 0xd6, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xd5, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe7, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xbd, 0xbb, 0xc8, 0xc8, 0xc9, 0xce, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xad, 0xfb, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xe3, 0xe6, 0xfe, 0xe7, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Alright! Let\u2019s take a look at the\u0147Pok\u00e9mon that will be transfered.\u023cPlease remember, once a Pok\u00e9mon is\u0147transfered, it CANNOT be returned to\u0147the Game Boy Game Pak.\u023cSelect confirm once you\u2019re ready, or\u0147select cancel if you want to keep the\u0147Pok\u00e9mon on your Game Boy Game Pak.\u019e"}, "DIA_MYTHIC_CONVERT": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0x0, 0xe6, 0xd5, 0xe6, 0xd9, 0xfe, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xab, 0x0, 0xbe, 0xe9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xe6, 0xd5, 0xe6, 0xdd, 0xe8, 0xed, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xea, 0xd9, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xad, 0xfb, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xd8, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0xb4, 0xe0, 0xe0, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xd9, 0xe8, 0xfe, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xb8, 0x0, 0xc9, 0xce, 0xb8, 0x0, 0xce, 0xc3, 0xbe, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xcd, 0xdc, 0xdd, 0xe2, 0xdd, 0xe2, 0xd9, 0xe7, 0xe7, 0xad, 0xfb, 0xc9, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe0, 0xd9, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe7, 0x0, 0xdd, 0xe7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xdb, 0xe9, 0xd5, 0xe6, 0xd9, 0xe2, 0xe8, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xda, 0xe9, 0xe8, 0xe9, 0xe6, 0xd9, 0xad, 0x0, 0xbe, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xac, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd5, 0xe4, 0xe4, 0xe0, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd6, 0xe3, 0xec, 0xad, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like you have a rare\u0147Mythical Pok\u00e9mon! Due to their\u0147rarity, it seems they\u2019ve overloaded\u0147the machine.\u023cI can stablize them if you\u2019d like,\u0147but it\u2019ll change some things like met\u0147location, OT, TID, and Shininess.\u023cOtherwise I can leave them as is, but\u0147there\u2019s no guarentee that they\u2019ll be\u0147transferrable in the future. Do you\u0147want me to stablize them?\u023cThis will apply to all of the\u0147Mythical Pok\u00e9mon currently in your\u0147box.\u019e"}, "DIA_CANCEL": {"bytes": "0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0xab, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xdd, 0xda, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "No worries! Feel free to come back if\u0147you change your mind! See you around!\u019e"}, "DIA_SOME_INVALID_PKMN": {"bytes": "0xc3, 0x0, 0xe7, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0xad, 0xfb, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xe3, 0xe0, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe8, 0xd9, 0xe1, 0xe7, 0x0, 0xe3, 0xe6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xdd, 0xd9, 0xd8, 0xfe, 0xdd, 0xe2, 0xd7, 0xe3, 0xe6, 0xe6, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0x0, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0x0, 0xe9, 0xe2, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0xfe, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0xad, 0xfb, 0xce, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xda, 0xdd, 0xe2, 0xd9, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I see there is at least one Pok\u00e9mon\u0147that cannot be transferred from your\u0147current box.\u023cPok\u00e9mon holding items or modified\u0147incorrectly through unintended means\u0147cannot be transferred.\u023cThe other Pok\u00e9mon will transfer just\u0147fine though!\u019e"}, "DIA_MENU_BACK": {"bytes": "0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0xab, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xfe, 0xd5, 0xe2, 0xed, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "No worries! Feel free to come back\u0147any time!\u019e"}, "DIA_IS_MISSINGNO": {"bytes": "0xad, 0xad, 0xad, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xad, 0xad, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0x0, 0xd6, 0xd9, 0x0, 0xdb, 0xe6, 0xd5, 0xe4, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0xb8, 0x0, 0xe7, 0xe3, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "... It seems like one of your Pok\u00e9mon\u0147is messing with the machine... It\u0147looks to only be graphical though, so\u0147we can continue!\u019e"}, "DIA_ERROR_COLOSSEUM": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd7, 0xe3, 0xe0, 0xe3, 0xe7, 0xe7, 0xd9, 0xe9, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0xfe, 0xe6, 0xe3, 0xe3, 0xe1, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like you went to the\u0147colosseum instead of the trading\u0147room! Let\u2019s try that again!\u019e"}, "DIA_ERROR_COM_ENDED": {"bytes": "0xbd, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0xfe, 0xeb, 0xd5, 0xe7, 0x0, 0xe8, 0xd9, 0xe6, 0xe1, 0xdd, 0xe2, 0xd5, 0xe8, 0xd9, 0xd8, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Communication with the other device\u0147was terminated. Let\u2019s try that again!\u019e"}, "DIA_ERROR_DISCONNECT": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xfe, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xd8, 0xdd, 0xe7, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xd9, 0xd8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like the Game Boy Color link\u0147cable was disconnected... Let\u2019s try\u0147that again!\u019e"}, "DIA_ERROR_TIME_ONE": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0xfe, 0xe3, 0xe9, 0xe8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like the connection timed\u0147out... Let\u2019s try that again!\u019e"}, "DIA_ERROR_TIME_TWO": {"bytes": "0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0xfe, 0xe3, 0xe9, 0xe8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It seems like the connection timed\u0147out... Let\u2019s try that again!\u019e"}, "DIA_WHAT_LANG_EVENT": {"bytes": "0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0xac, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "What language is the Game Boy Pok\u00e9mon\u0147game that you want to send an event\u0147to?\u019e"}, "DIA_WHAT_GAME_EVENT": {"bytes": "0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd8, 0xe3, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xac, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "And which Game Boy Pok\u00e9mon game do\u0147you want to send an event to?\u019e"}, "DIA_K_DEX_NOT_FULL": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xa2, 0xa6, 0xa1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xeb, 0xd9, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, it looks like you\u0147haven\u2019t caught all 150 Pok\u00e9mon from\u0147the Kanto region yet.\u023cGo out and catch them all and then\u0147we\u2019ll be able to send over the event!\u019e"}, "DIA_J_DEX_NOT_FULL": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xaa, 0xaa, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc4, 0xe3, 0xdc, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xeb, 0xd9, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, it looks like you\u0147haven\u2019t caught all 99 new Pok\u00e9mon\u0147from the Johto region yet.\u023cGo out and catch them all and then\u0147we\u2019ll be able to send over the event!\u019e"}}, "RSEFRLG": {"dia_textGreet_rse": {"bytes": "0xd1, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0xb8, 0x0, 0xc3, 0x0, 0xe8, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xe0, 0xd8, 0xfe, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0x0, 0xce, 0xcc, 0xbb, 0xc3, 0xc8, 0xbf, 0xcc, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "When I was young, I traveled the world\u0147as a POK\u00e9MON TRAINER.\u019e"}, "dia_textGreet_frlg": {"bytes": "0xc3, 0x0, 0xe1, 0xd5, 0xed, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xe2, 0xe3, 0xeb, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0xd9, 0xe6, 0xb0, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "I may not look like much now,\u0147but when I was younger\u2026\u019e"}, "dia_textMoveBox_rs": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe9, 0xe2, 0xe0, 0xe3, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd8, 0xe3, 0xe3, 0xe6, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to unlock the\u0147door!\u019e"}, "dia_textMoveBox_frlg": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd6, 0xe3, 0xec, 0xd9, 0xe7, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to move the\u0147boxes!\u019e"}, "dia_textMoveBox_e": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe0, 0xd5, 0xe2, 0xe8, 0xe7, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to move the\u0147plants!\u019e"}, "dia_textWeHere_r": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xc7, 0xbb, 0xd2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leader MAXIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_s": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xbb, 0xcc, 0xbd, 0xc2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leader ARCHIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_frlg": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xc1, 0xc3, 0xc9, 0xd0, 0xbb, 0xc8, 0xc8, 0xc3, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Kanto to find\u0147the leader GIOVANNI.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_e": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0xe7, 0x0, 0xc7, 0xbb, 0xd2, 0xc3, 0xbf, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xcc, 0xbd, 0xc2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leaders MAXIE and ARCHIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textRecieved": {"bytes": "0xfc, 0x1, 0x2, 0xfd, 0x1, 0xb4, 0xcd, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0x0, 0xeb, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c1\u01b2\u00c0\u2019S POK\u00e9MON were sent to\u0147the PC!\u019e"}, "dia_textYouMustBe_first": {"bytes": "0xbb, 0xdc, 0xab, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xfd, 0x1, 0xab, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe8, 0xe3, 0xe0, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd7, 0xe3, 0xe1, 0xdd, 0xe2, 0xdb, 0xad, 0xfb, 0xc9, 0xdc, 0xab, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xab, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0xab, 0xfe, 0xc9, 0xe6, 0xb8, 0x0, 0xe6, 0xd5, 0xe8, 0xdc, 0xd9, 0xe6, 0xb8, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdd, 0xe2, 0xe8, 0xe6, 0xe3, 0xd8, 0xe9, 0xd7, 0xd9, 0x0, 0xe1, 0xed, 0xe7, 0xd9, 0xe0, 0xda, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "Ah! You must be \u01b2\u00c0! I was\u0147told you\u2019d be coming.\u023cOh! I still wear my disguise! Pardon!\u0147Or, rather, let me introduce myself.\u019e"}, "dia_textYouMustBe_second": {"bytes": "0xbb, 0xdc, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0x0, 0xd1, 0xd9, 0xe0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xab, 0x0, 0xc1, 0xe3, 0xe3, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xe7, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xfb, 0xc9, 0xdc, 0xab, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xab, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "Ah, \u01b2\u00c0! Welcome back! Good to\u0147see you again!\u023cOh! I still wear my disguise! Pardon!\u019e"}, "dia_textIAm_first": {"bytes": "0xfc, 0x1, 0x8, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xd5, 0x0, 0xdb, 0xe0, 0xe3, 0xd6, 0xd9, 0xae, 0xe8, 0xe6, 0xe3, 0xe8, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd9, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc3, 0xe2, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xe0, 0xdd, 0xd7, 0xd9, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb0, 0x0, 0xfa, 0xbb, 0xdc, 0xb8, 0x0, 0xe2, 0xe3, 0xb8, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0x0, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0xfe, 0xe2, 0xd5, 0xe1, 0xd9, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbI am a globe-trotting elite of the\u0147International Police.\u023cMy name\u2026 \u015eAh, no, I shall inform you of my code\u0147name only.\u023cMy code name, it is LOOKER!\u019e"}, "dia_textIAm_second": {"bytes": "0xfc, 0x1, 0x8, 0xc3, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc3, 0xb8, 0x0, 0xdb, 0xe0, 0xe3, 0xd6, 0xd9, 0xae, 0xe8, 0xe6, 0xe3, 0xe8, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd9, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc3, 0xe2, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xe0, 0xdd, 0xd7, 0xd9, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbIt is I, globe-trotting elite of the\u0147International Police.\u023cMy code name, it is LOOKER!\u019e"}, "dia_textPCConvo": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbb, 0xdc, 0xb8, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0x0, 0xc3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xdd, 0xe8, 0xfe, 0xfd, 0x1, 0x0, 0xdc, 0xd5, 0xe7, 0x0, 0xd5, 0xe6, 0xe6, 0xdd, 0xea, 0xd9, 0xd8, 0xac, 0xfb, 0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0xe2, 0xd8, 0xd9, 0xd9, 0xd8, 0xab, 0x0, 0xce, 0xdc, 0xd9, 0xed, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0xab, 0xfb, 0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbf, 0xec, 0xd7, 0xd9, 0xe0, 0xe0, 0xd9, 0xe2, 0xe8, 0xab, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xfe, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe1, 0xd9, 0xe2, 0xe8, 0xd5, 0xe6, 0xdd, 0xe0, 0xed, 0xb0, 0x0, 0xe7, 0xe8, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: Ah, LOOKER! I take it\u0147\u01b2\u00c0 has arrived?\u023c\u0206\u00c0\u00cbLOOKER: Indeed! They\u2019re ready to\u0147receive their POK\u00e9MON!\u023c\u0206\u00c0\u00c9FENNEL: Excellent! I\u2019ll send them\u0147over momentarily\u2026 stand by!\u019e"}, "dia_textPCThanks": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xbd, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xab, 0xfb, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: It looks like everything was\u0147sent to your PC successfully!\u023cThank you both for your help!\u019e"}, "dia_textThank": {"bytes": "0xfc, 0x1, 0x8, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xe8, 0xe3, 0xe4, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xd6, 0xed, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0xfb, 0xc3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe0, 0xe0, 0x0, 0xd9, 0xec, 0xd7, 0xe9, 0xe7, 0xd9, 0x0, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xad, 0x0, 0xfa, 0xcf, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xe3, 0xe9, 0xe6, 0x0, 0xe4, 0xd5, 0xe8, 0xdc, 0xe7, 0x0, 0xd7, 0xe6, 0xe3, 0xe7, 0xe7, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbThanks for stopping by, \u01b2\u00c0!\u023cIf you\u2019ll excuse me, I must return to\u0147my disguise. \u015eUntil our paths cross again!\u019e"}, "dia_textPCFull": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0x0, 0xdd, 0xe7, 0x0, 0xda, 0xe9, 0xe0, 0xe0, 0xab, 0xfb, 0xc1, 0xe3, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: It seems like the PC is full!\u023cGo make some room, and I can send over\u0147the rest of your POK\u00e9MON.\u019e"}, "dia_textLookerFull": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xcd, 0xe4, 0xd9, 0xd5, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0xfe, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0xfb, 0xc3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xed, 0xfe, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable Latin Font", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: Speak to me again after\u0147you\u2019ve made room, \u01b2\u00c0!\u023cIn the meantime, I will return to my\u0147disguise.\u019e"}}, "GB": {"sending_text": {"bytes": "SENDING DATA", "numLines": 0, "pixelsPerChar": 0, "pixelsInLine": 0, "includeBoxBreaks": false}, "prof_name": {"bytes": "FENNEL", "numLines": 0, "pixelsPerChar": 0, "pixelsInLine": 0, "includeBoxBreaks": false}}, "GENERAL": {"option_english": {"bytes": "0xbf, 0xe2, 0xdb, 0xe0, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "English\u019e"}, "option_japanese": {"bytes": "0xc4, 0xd5, 0xe4, 0xd5, 0xe2, 0xd9, 0xe7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Japanese\u019e"}, "option_spanish": {"bytes": "0xcd, 0xe4, 0xd5, 0xe2, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Spanish\u019e"}, "option_french": {"bytes": "0xc0, 0xe6, 0xd9, 0xe2, 0xd7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "French\u019e"}, "option_german": {"bytes": "0xc1, 0xd9, 0xe6, 0xe1, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "German\u019e"}, "option_italian": {"bytes": "0xc3, 0xe8, 0xd5, 0xe0, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Italian\u019e"}, "option_korean": {"bytes": "0xc5, 0xe3, 0xe6, 0xd9, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Korean\u019e"}, "option_green": {"bytes": "0xc1, 0xe6, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Green\u019e"}, "option_red": {"bytes": "0xcc, 0xd9, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Red\u019e"}, "option_blue": {"bytes": "0xbc, 0xe0, 0xe9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Blue\u019e"}, "option_yellow": {"bytes": "0xd3, 0xd9, 0xe0, 0xe0, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Yellow\u019e"}, "option_gold": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Gold\u019e"}, "option_silver": {"bytes": "0xcd, 0xdd, 0xe0, 0xea, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Silver\u019e"}, "option_crystal": {"bytes": "0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Crystal\u019e"}, "option_cancel": {"bytes": "0xbd, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Cancel\u019e"}, "press_start": {"bytes": "0xca, 0xe9, 0xe7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xcd, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xab, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Push the Start Button!\u019e"}, "option_transfer": {"bytes": "0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Transfer Pok\u00e9mon\u019e"}, "option_dreamdex": {"bytes": "0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Dream Dex\u019e"}, "option_credits": {"bytes": "0xbd, 0xe6, 0xd9, 0xd8, 0xdd, 0xe8, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Credits\u019e"}, "intro_first": {"bytes": "0xc2, 0xd9, 0xe0, 0xe0, 0xe3, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0xab, 0xfe, 0xfe, 0xc4, 0xe9, 0xe7, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xeb, 0xe3, 0xe6, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xd5, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0xae, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xd1, 0xc3, 0xc6, 0xc6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xed, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe0, 0xe3, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xd6, 0xd9, 0xe8, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xdd, 0xd8, 0xb8, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd9, 0xe2, 0xde, 0xe3, 0xed, 0xab, 0xfe, 0xfe, 0xae, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xff", "numLines": 15, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": false, "text": "Hello! Thank you for using Pok\u00e9\u0147Transporter GB!\u0147\u0147Just as a word of caution- Pok\u00e9\u0147Transporter GB WILL modify both the\u0147GameBoy and GameBoy Advance save\u0147files.\u0147\u0147Please note that while Pok\u00e9\u0147Transporter GB is no longer in beta,\u0147save file backups are still\u0147recommended before using. With that\u0147all being said, please enjoy!\u0147\u0147-The Gears of Progress \u019e"}, "intro_legal": {"bytes": "0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe3, 0xda, 0xfe, 0xe0, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd5, 0xe4, 0xe4, 0xe6, 0xd9, 0xd7, 0xdd, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xd5, 0xe2, 0xd7, 0xdc, 0xdd, 0xe7, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xda, 0xdd, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xbb, 0xc6, 0xd1, 0xbb, 0xd3, 0xcd, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0xfe, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0x0, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe1, 0xe9, 0xe7, 0xdd, 0xd7, 0xfe, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xeb, 0xe2, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0x0, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0x0, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0xad, 0xfe, 0xfe, 0xfe, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xff", "numLines": 14, "pixelsPerChar": 6, "pixelsInLine": 224, "includeBoxBreaks": false, "text": "Pok\u00e9 Transporter GB was made out of\u0147love and appreciation for the Pokemon\u0147franchise with no profit in mind. It\u0147will ALWAYS be free.\u0147\u0147Please support the original\u0147developers.\u0147\u0147All Pokemon names, sprites, and music\u0147are owned by Nintendo, Creatures Inc,\u0147and GAME FREAK.\u0147\u0147\u0147Press A to continue\u019e"}, "cart_load_error": {"bytes": "0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xad, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xdd, 0xe2, 0xe7, 0xd9, 0xe6, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xea, 0xd9, 0xe0, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff", "numLines": 10, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "The Pok\u00e9mon save file was\u0147not loaded successfully.\u0147Please remove and reinsert\u0147the Game Pak, and then\u0147press the A button.\u0147\u0147Alternatively, press the\u0147Select button to send this\u0147program to another GameBoy\u0147Advance.\u019e"}, "pulled_cart_error": {"bytes": "0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xad, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "The Pok\u00e9mon game was\u0147removed. Please turn off\u0147the system and restart the\u0147program.\u019e"}, "send_multiboot_instructions": {"bytes": "0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xfe, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xdd, 0xe2, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0x0, 0xe1, 0xe3, 0xd8, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xc6, 0xdd, 0xe2, 0xdf, 0xfe, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0xad, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0xe2, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xfe, 0xe8, 0xe3, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff", "numLines": 10, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Please connect this system\u0147to another GameBoy Advance\u0147in Multiboot mode with a\u0147GameBoy Advance Link\u0147Cable.\u0147\u0147Then, press the A button\u0147to begin sending Pok\u00e9\u0147Transporter GB to the\u0147second GameBoy Advance.\u019e"}, "send_multiboot_wait": {"bytes": "0xcd, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0xfe, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0xfe, 0xeb, 0xd5, 0xdd, 0xe8, 0xad, 0xfe, 0xfe, 0xc2, 0xe3, 0xe0, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbc, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xad, 0xff", "numLines": 7, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Sending Pok\u00e9 Transporter\u0147GB to second GameBoy\u0147Advance system. Please\u0147wait.\u0147\u0147Hold the B Button to\u0147cancel.\u019e"}, "send_multiboot_success": {"bytes": "0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xab, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xd5, 0xed, 0xfe, 0xe2, 0xe3, 0xeb, 0x0, 0xe4, 0xe3, 0xeb, 0xd9, 0xe6, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xad, 0xff", "numLines": 7, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "\u0147Pok\u00e9 Transporter GB was\u0147sent successfully! You may\u0147now power off this GameBoy\u0147Advance system.\u019e"}, "send_multiboot_failure": {"bytes": "0xfe, 0xbb, 0xe2, 0x0, 0xd9, 0xe6, 0xe6, 0xe3, 0xe6, 0x0, 0xe3, 0xd7, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0xfe, 0xc1, 0xbc, 0xad, 0x0, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xe6, 0xe9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xfe, 0xe7, 0xd7, 0xe6, 0xd9, 0xd9, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xad, 0xff", "numLines": 7, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "\u0147An error occurred while\u0147sending Pok\u00e9 Transporter\u0147GB. Press the A button to\u0147return to the instructions\u0147screen and try again.\u019e"}, "kanto_name": {"bytes": "0xc5, 0xbb, 0xc8, 0xce, 0xc9, 0xf0, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "KANTO:\u019e"}, "johto_name": {"bytes": "0xc4, 0xc9, 0xc2, 0xce, 0xc9, 0xf0, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "JOHTO:\u019e"}}, "CREDITS": {"credits_page_1": {"bytes": "0xc6, 0xd9, 0xd5, 0xd8, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xf0, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Lead developer:\u0147\u0147The Gears of Progress\u019e"}, "credits_page_2": {"bytes": "0xc6, 0xe3, 0xdb, 0xe3, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xe3, 0xae, 0xdd, 0xd8, 0xd9, 0xd5, 0xe8, 0xe3, 0xe6, 0xf0, 0xfe, 0xfe, 0xae, 0xc4, 0xe3, 0xe1, 0xd9, 0xfe, 0xfe, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xeb, 0xe3, 0xe6, 0xdf, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xc4, 0x0, 0xbc, 0xdd, 0xe6, 0xd8, 0xe1, 0xd5, 0xe2, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Logo and co-ideator:\u0147\u0147-Jome\u0147\u0147Spritework:\u0147\u0147-LJ Birdman\u019e"}, "credits_page_3": {"bytes": "0xc3, 0xd7, 0xe3, 0xe2, 0x0, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xe9, 0xdd, 0xdb, 0xdd, 0xce, 0xc5, 0xc9, 0xfe, 0xae, 0xc1, 0xe9, 0xdd, 0xbb, 0xd6, 0xd9, 0xe0, 0xfe, 0xae, 0xcd, 0xe3, 0xe9, 0xe6, 0xbb, 0xe4, 0xe4, 0xe0, 0xd9, 0xfe, 0x2d, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd5, 0xe6, 0xe8, 0xdd, 0xe7, 0xe8, 0xe7, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xcd, 0xdc, 0xe3, 0xeb, 0xd8, 0xe3, 0xeb, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0x0, 0xbd, 0xe0, 0xd9, 0xd5, 0xe6, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Icon Sprites:\u0147\u0147-LuigiTKO\u0147-GuiAbel\u0147-SourApple\u0147& the artists from Pok\u00e9mon\u0147Showdown and Crystal Clear\u019e"}, "credits_page_4": {"bytes": "0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xe6, 0xd6, 0xdd, 0xe8, 0xe6, 0xd5, 0xe6, 0xed, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0xfe, 0xbf, 0xec, 0xd9, 0xd7, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xce, 0xdd, 0xe1, 0xe3, 0xd0, 0xc7, 0xfe, 0xfe, 0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0xfe, 0xda, 0xe9, 0xe2, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xf0, 0x0, 0xfb, 0xe6, 0xdd, 0xe7, 0xdd, 0xe2, 0xdb, 0xca, 0xdc, 0xdd, 0xe0, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Remote and Arbitrary Code\u0147Execution assistance:\u0147\u0147-TimoVM\u0147\u0147Remote Multiboot\u0147functionality: \u023crisingPhil\u019e"}, "credits_page_5": {"bytes": "0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xe6, 0xdd, 0xe0, 0xd9, 0xed, 0xdf, 0xa7, 0xa5, 0xfe, 0xae, 0xcd, 0xdc, 0xd5, 0xe3, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Development assistance:\u0147\u0147-im a blisy\u0147-rileyk64\u0147-Shao\u019e"}, "credits_page_6": {"bytes": "0xcd, 0xe4, 0xd5, 0xd7, 0xd9, 0x0, 0xc9, 0xe4, 0xe8, 0xdd, 0xe1, 0xdd, 0xee, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xf0, 0xfe, 0xfe, 0xae, 0xd9, 0xd5, 0xe7, 0xed, 0xd5, 0xe7, 0xe4, 0xdd, 0xa4, 0xa2, 0xa5, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Space Optimization:\u0147\u0147-easyaspi314\u019e"}, "credits_page_7": {"bytes": "0xbc, 0xe9, 0xdd, 0xe0, 0xe8, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xbe, 0xd9, 0xea, 0xdf, 0xdd, 0xe8, 0xca, 0xe6, 0xe3, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xce, 0xe3, 0xe2, 0xd7, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xc1, 0xbc, 0xbb, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Built using:\u0147\u0147\u0147-DevkitPro\u0147-LibTonc\u0147-LibGBA\u019e"}, "credits_page_8": {"bytes": "0xc3, 0xe2, 0xe7, 0xe4, 0xdd, 0xe6, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xe7, 0x0, 0xe3, 0xda, 0xf0, 0xfe, 0xfe, 0xae, 0xc1, 0xe3, 0xe4, 0xe4, 0xdd, 0xd9, 0xe6, 0xfe, 0xae, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xcc, 0xbf, 0xce, 0xc3, 0xcc, 0xbf, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Inspired by the works of:\u0147\u0147-Goppier\u0147-Lorenzooone\u0147-im a blisy\u0147-RETIRE\u019e"}, "credits_page_9": {"bytes": "0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xe7, 0x0, 0xe9, 0xe7, 0xd9, 0xd8, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xae, 0xca, 0xc5, 0xc2, 0xd9, 0xd2, 0xfe, 0xae, 0xd1, 0xbd, 0xa4, 0xce, 0xe3, 0xe3, 0xe0, 0xfe, 0xae, 0xcf, 0xe7, 0xd9, 0xe2, 0xe8, 0xdd, 0xfe, 0xae, 0xcd, 0xd5, 0xe4, 0xe4, 0xed, 0xc7, 0xdd, 0xd8, 0xce, 0xe3, 0xbb, 0xc1, 0xbc, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Programs used:\u0147\u0147\u0147-HexManiacAdvance\u0147-PKHeX\u0147-WC3Tool\u0147-Usenti\u0147-SappyMidToAGB\u019e"}, "credits_page_10": {"bytes": "0xc9, 0xe4, 0xd9, 0xe2, 0x0, 0xcd, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xc6, 0xdd, 0xd6, 0xe6, 0xd5, 0xe6, 0xdd, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xe0, 0xdd, 0xd6, 0xe8, 0xe3, 0xe2, 0xd7, 0xae, 0xd9, 0xec, 0xd5, 0xe1, 0xe4, 0xe0, 0xd9, 0xe7, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0xae, 0xdb, 0xd6, 0xd5, 0xae, 0xe0, 0xdd, 0xe2, 0xdf, 0xae, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xae, 0xd5, 0xeb, 0xd9, 0xe7, 0xe3, 0xe1, 0xd9, 0xae, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0xae, 0xd5, 0xe6, 0xd8, 0xe9, 0xdd, 0xe2, 0xe3, 0xae, 0xe4, 0xe3, 0xdf, 0xd9, 0xae, 0xdb, 0xd9, 0xe2, 0xa3, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Open Source Code and\u0147Libraries:\u0147\u0147-libtonc-examples\u0147-PokemonGen3toGenX\u0147-gba-link-connection\u0147-awesome-gbadev\u0147-arduino-poke-gen2\u019e"}, "credits_page_11": {"bytes": "0xcc, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xd5, 0xe6, 0xe1, 0xae, 0xd8, 0xe3, 0xd7, 0xe7, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0xfe, 0xc0, 0xe9, 0xe0, 0xe0, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xe7, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe3, 0xe9, 0xe2, 0xd8, 0x0, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xb4, 0xe7, 0x0, 0xc1, 0xdd, 0xe8, 0xc2, 0xe9, 0xd6, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Research resources:\u0147\u0147-arm-docs\u0147-PokemonGen3toGenX\u0147\u0147Full links can be found on\u0147this program\u2019s GitHub\u019e"}, "credits_page_12": {"bytes": "0xcc, 0xc9, 0xc7, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xd8, 0xd9, 0xd7, 0xe3, 0xe1, 0xe4, 0xdd, 0xe0, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0x0, 0xd7, 0xe6, 0xd9, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xcc, 0xbf, 0xce, 0x0, 0xe8, 0xd9, 0xd5, 0xe1, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "ROM data obtained from\u0147decompilations created by\u0147the PRET team\u019e"}, "credits_page_13": {"bytes": "0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0xf0, 0xfe, 0xfe, 0xae, 0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe4, 0xd9, 0xd8, 0xdd, 0xd5, 0xfe, 0xae, 0xcd, 0xd9, 0xe6, 0xd9, 0xd6, 0xdd, 0xdd, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xbb, 0xca, 0xc3, 0xad, 0xd7, 0xe3, 0xe1, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Pok\u00e9mon data obtained\u0147from:\u0147\u0147-Bulbapedia\u0147-Serebii\u0147-PokeAPI.com\u019e"}, "credits_page_14": {"bytes": "0xbe, 0xdd, 0xe7, 0xd7, 0xe3, 0xe6, 0xd8, 0x0, 0xd7, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xe8, 0xed, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0x0, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0xfe, 0xae, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0xae, 0xe4, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Discord community\u0147assistance:\u0147\u0147-Hex Maniac Advance\u0147Development\u0147-gbadev\u0147-pret\u019e"}, "credits_page_15": {"bytes": "0xd1, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc7, 0xd5, 0xd8, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Writing assistance:\u0147\u0147\u0147-Mad\u019e"}, "credits_page_16": {"bytes": "0xbb, 0xe2, 0x0, 0xdd, 0xe1, 0xe1, 0xd9, 0xe2, 0xe7, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0x2d, 0xfe, 0xeb, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe1, 0xb8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xe3, 0xe9, 0xe0, 0xd8, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0xad, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "An immense thanks to\u0147Lorenzooone for their\u0147assistance in reading &\u0147writing save data. Without\u0147them, this project would\u0147not have been possible.\u019e"}, "credits_page_17": {"bytes": "0xcd, 0xe4, 0xd9, 0xd7, 0xdd, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xbf, 0xe2, 0xe2, 0xb8, 0xfe, 0xe6, 0xe3, 0xdf, 0xe9, 0xb8, 0x0, 0xcd, 0xe0, 0xd9, 0xd9, 0xe4, 0xed, 0xb8, 0x0, 0xbf, 0xee, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xe6, 0xd5, 0xdc, 0xe8, 0xe3, 0xe2, 0xdd, 0xe2, 0xb8, 0x0, 0xbc, 0xd5, 0xe7, 0xd5, 0xd6, 0xdd, 0xb8, 0x0, 0xc7, 0xd5, 0xd8, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe3, 0xe2, 0xd9, 0x0, 0xeb, 0xdc, 0xe3, 0x0, 0xdc, 0xd5, 0xe7, 0xfe, 0xe0, 0xdd, 0xe7, 0xe8, 0xd9, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xd5, 0xd6, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe1, 0xe3, 0xe2, 0xe8, 0xdc, 0xe7, 0xab, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Special thanks to Enn,\u0147roku, Sleepy, Eza,\u0147sarahtonin, Basabi, Mad,\u0147and everyone who has\u0147listened to me talk about\u0147this for months!\u019e"}, "credits_page_18": {"bytes": "0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0xfe, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xe6, 0xd9, 0xe0, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xd7, 0xe3, 0xe4, 0xed, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0xfe, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xad, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0xfe, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0x0, 0xc3, 0xe2, 0xd7, 0xad, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "All Pok\u00e9mon names,\u0147sprites, and names of\u0147related resources are\u0147copyright Nintendo,\u0147Creatures Inc., and GAME\u0147FREAK Inc.\u019e"}, "credits_page_19": {"bytes": "0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0xfe, 0xd9, 0xe2, 0xd8, 0xe3, 0xe6, 0xe7, 0xd9, 0xd8, 0x0, 0xe3, 0xe6, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xc0, 0xe6, 0xd9, 0xd5, 0xdf, 0xba, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xff", "numLines": 8, "pixelsPerChar": 6, "pixelsInLine": 160, "includeBoxBreaks": false, "text": "This project is not\u0147endorsed or supported by\u0147GameFreak/Nintendo.\u0147\u0147Please support the\u0147original developers.\u019e"}}, "PKMN_NAMES": {"0": {"bytes": "0xc7, 0xdd, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0xc8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "MissingNo\u019e"}, "1": {"bytes": "0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bulbasaur\u019e"}, "2": {"bytes": "0xc3, 0xea, 0xed, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ivysaur\u019e"}, "3": {"bytes": "0xd0, 0xd9, 0xe2, 0xe9, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venusaur\u019e"}, "4": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xe1, 0xd5, 0xe2, 0xd8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charmander\u019e"}, "5": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xe1, 0xd9, 0xe0, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charmeleon\u019e"}, "6": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xdd, 0xee, 0xd5, 0xe6, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charizard\u019e"}, "7": {"bytes": "0xcd, 0xe5, 0xe9, 0xdd, 0xe6, 0xe8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Squirtle\u019e"}, "8": {"bytes": "0xd1, 0xd5, 0xe6, 0xe8, 0xe3, 0xe6, 0xe8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wartortle\u019e"}, "9": {"bytes": "0xbc, 0xe0, 0xd5, 0xe7, 0xe8, 0xe3, 0xdd, 0xe7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Blastoise\u019e"}, "10": {"bytes": "0xbd, 0xd5, 0xe8, 0xd9, 0xe6, 0xe4, 0xdd, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Caterpie\u019e"}, "11": {"bytes": "0xc7, 0xd9, 0xe8, 0xd5, 0xe4, 0xe3, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Metapod\u019e"}, "12": {"bytes": "0xbc, 0xe9, 0xe8, 0xe8, 0xd9, 0xe6, 0xda, 0xe6, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Butterfree\u019e"}, "13": {"bytes": "0xd1, 0xd9, 0xd9, 0xd8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weedle\u019e"}, "14": {"bytes": "0xc5, 0xd5, 0xdf, 0xe9, 0xe2, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kakuna\u019e"}, "15": {"bytes": "0xbc, 0xd9, 0xd9, 0xd8, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Beedrill\u019e"}, "16": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgey\u019e"}, "17": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xe3, 0xe8, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgeotto\u019e"}, "18": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xe3, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgeot\u019e"}, "19": {"bytes": "0xcc, 0xd5, 0xe8, 0xe8, 0xd5, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rattata\u019e"}, "20": {"bytes": "0xcc, 0xd5, 0xe8, 0xdd, 0xd7, 0xd5, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raticate\u019e"}, "21": {"bytes": "0xcd, 0xe4, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Spearow\u019e"}, "22": {"bytes": "0xc0, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Fearow\u019e"}, "23": {"bytes": "0xbf, 0xdf, 0xd5, 0xe2, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ekans\u019e"}, "24": {"bytes": "0xbb, 0xe6, 0xd6, 0xe3, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Arbok\u019e"}, "25": {"bytes": "0xca, 0xdd, 0xdf, 0xd5, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pikachu\u019e"}, "26": {"bytes": "0xcc, 0xd5, 0xdd, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raichu\u019e"}, "27": {"bytes": "0xcd, 0xd5, 0xe2, 0xd8, 0xe7, 0xdc, 0xe6, 0xd9, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sandshrew\u019e"}, "28": {"bytes": "0xcd, 0xd5, 0xe2, 0xd8, 0xe7, 0xe0, 0xd5, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sandslash\u019e"}, "29": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xd5, 0xe2, 0xb6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoran\u2640\u019e"}, "30": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xdd, 0xe2, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidorina\u019e"}, "31": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe5, 0xe9, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoqueen\u019e"}, "32": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xd5, 0xe2, 0xb5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoran\u2642\u019e"}, "33": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xdd, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidorino\u019e"}, "34": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoking\u019e"}, "35": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xd5, 0xdd, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Clefairy\u019e"}, "36": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xd5, 0xd6, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Clefable\u019e"}, "37": {"bytes": "0xd0, 0xe9, 0xe0, 0xe4, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vulpix\u019e"}, "38": {"bytes": "0xc8, 0xdd, 0xe2, 0xd9, 0xe8, 0xd5, 0xe0, 0xd9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ninetales\u019e"}, "39": {"bytes": "0xc4, 0xdd, 0xdb, 0xdb, 0xe0, 0xed, 0xe4, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jigglypuff\u019e"}, "40": {"bytes": "0xd1, 0xdd, 0xdb, 0xdb, 0xe0, 0xed, 0xe8, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wigglytuff\u019e"}, "41": {"bytes": "0xd4, 0xe9, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Zubat\u019e"}, "42": {"bytes": "0xc1, 0xe3, 0xe0, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golbat\u019e"}, "43": {"bytes": "0xc9, 0xd8, 0xd8, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Oddish\u019e"}, "44": {"bytes": "0xc1, 0xe0, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gloom\u019e"}, "45": {"bytes": "0xd0, 0xdd, 0xe0, 0xd9, 0xe4, 0xe0, 0xe9, 0xe1, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vileplume\u019e"}, "46": {"bytes": "0xca, 0xd5, 0xe6, 0xd5, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Paras\u019e"}, "47": {"bytes": "0xca, 0xd5, 0xe6, 0xd5, 0xe7, 0xd9, 0xd7, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Parasect\u019e"}, "48": {"bytes": "0xd0, 0xd9, 0xe2, 0xe3, 0xe2, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venonat\u019e"}, "49": {"bytes": "0xd0, 0xd9, 0xe2, 0xe3, 0xe1, 0xe3, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venomoth\u019e"}, "50": {"bytes": "0xbe, 0xdd, 0xdb, 0xe0, 0xd9, 0xe8, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Diglett\u019e"}, "51": {"bytes": "0xbe, 0xe9, 0xdb, 0xe8, 0xe6, 0xdd, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dugtrio\u019e"}, "52": {"bytes": "0xc7, 0xd9, 0xe3, 0xeb, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Meowth\u019e"}, "53": {"bytes": "0xca, 0xd9, 0xe6, 0xe7, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Persian\u019e"}, "54": {"bytes": "0xca, 0xe7, 0xed, 0xd8, 0xe9, 0xd7, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Psyduck\u019e"}, "55": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xe9, 0xd7, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golduck\u019e"}, "56": {"bytes": "0xc7, 0xd5, 0xe2, 0xdf, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mankey\u019e"}, "57": {"bytes": "0xca, 0xe6, 0xdd, 0xe1, 0xd9, 0xd5, 0xe4, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Primeape\u019e"}, "58": {"bytes": "0xc1, 0xe6, 0xe3, 0xeb, 0xe0, 0xdd, 0xe8, 0xdc, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Growlithe\u019e"}, "59": {"bytes": "0xbb, 0xe6, 0xd7, 0xd5, 0xe2, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Arcanine\u019e"}, "60": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xd5, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwag\u019e"}, "61": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xdc, 0xdd, 0xe6, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwhirl\u019e"}, "62": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xe6, 0xd5, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwrath\u019e"}, "63": {"bytes": "0xbb, 0xd6, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Abra\u019e"}, "64": {"bytes": "0xc5, 0xd5, 0xd8, 0xd5, 0xd6, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kadabra\u019e"}, "65": {"bytes": "0xbb, 0xe0, 0xd5, 0xdf, 0xd5, 0xee, 0xd5, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Alakazam\u019e"}, "66": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machop\u019e"}, "67": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xdf, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machoke\u019e"}, "68": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xd5, 0xe1, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machamp\u019e"}, "69": {"bytes": "0xbc, 0xd9, 0xe0, 0xe0, 0xe7, 0xe4, 0xe6, 0xe3, 0xe9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bellsprout\u019e"}, "70": {"bytes": "0xd1, 0xd9, 0xd9, 0xe4, 0xdd, 0xe2, 0xd6, 0xd9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weepinbell\u019e"}, "71": {"bytes": "0xd0, 0xdd, 0xd7, 0xe8, 0xe6, 0xd9, 0xd9, 0xd6, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Victreebel\u019e"}, "72": {"bytes": "0xce, 0xd9, 0xe2, 0xe8, 0xd5, 0xd7, 0xe3, 0xe3, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tentacool\u019e"}, "73": {"bytes": "0xce, 0xd9, 0xe2, 0xe8, 0xd5, 0xd7, 0xe6, 0xe9, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tentacruel\u019e"}, "74": {"bytes": "0xc1, 0xd9, 0xe3, 0xd8, 0xe9, 0xd8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Geodude\u019e"}, "75": {"bytes": "0xc1, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Graveler\u019e"}, "76": {"bytes": "0xc1, 0xe3, 0xe0, 0xd9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golem\u019e"}, "77": {"bytes": "0xca, 0xe3, 0xe2, 0xed, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ponyta\u019e"}, "78": {"bytes": "0xcc, 0xd5, 0xe4, 0xdd, 0xd8, 0xd5, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rapidash\u019e"}, "79": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xe4, 0xe3, 0xdf, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowpoke\u019e"}, "80": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xd6, 0xe6, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowbro\u019e"}, "81": {"bytes": "0xc7, 0xd5, 0xdb, 0xe2, 0xd9, 0xe1, 0xdd, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magnemite\u019e"}, "82": {"bytes": "0xc7, 0xd5, 0xdb, 0xe2, 0xd9, 0xe8, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magneton\u019e"}, "83": {"bytes": "0xc0, 0xd5, 0xe6, 0xda, 0xd9, 0xe8, 0xd7, 0xdc, 0xb4, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Farfetch\u2019d\u019e"}, "84": {"bytes": "0xbe, 0xe3, 0xd8, 0xe9, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Doduo\u019e"}, "85": {"bytes": "0xbe, 0xe3, 0xd8, 0xe6, 0xdd, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dodrio\u019e"}, "86": {"bytes": "0xcd, 0xd9, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seel\u019e"}, "87": {"bytes": "0xbe, 0xd9, 0xeb, 0xdb, 0xe3, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dewgong\u019e"}, "88": {"bytes": "0xc1, 0xe6, 0xdd, 0xe1, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Grimer\u019e"}, "89": {"bytes": "0xc7, 0xe9, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Muk\u019e"}, "90": {"bytes": "0xcd, 0xdc, 0xd9, 0xe0, 0xe0, 0xd8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Shellder\u019e"}, "91": {"bytes": "0xbd, 0xe0, 0xe3, 0xed, 0xe7, 0xe8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cloyster\u019e"}, "92": {"bytes": "0xc1, 0xd5, 0xe7, 0xe8, 0xe0, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gastly\u019e"}, "93": {"bytes": "0xc2, 0xd5, 0xe9, 0xe2, 0xe8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Haunter\u019e"}, "94": {"bytes": "0xc1, 0xd9, 0xe2, 0xdb, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gengar\u019e"}, "95": {"bytes": "0xc9, 0xe2, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Onix\u019e"}, "96": {"bytes": "0xbe, 0xe6, 0xe3, 0xeb, 0xee, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Drowzee\u019e"}, "97": {"bytes": "0xc2, 0xed, 0xe4, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hypno\u019e"}, "98": {"bytes": "0xc5, 0xe6, 0xd5, 0xd6, 0xd6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Krabby\u019e"}, "99": {"bytes": "0xc5, 0xdd, 0xe2, 0xdb, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kingler\u019e"}, "100": {"bytes": "0xd0, 0xe3, 0xe0, 0xe8, 0xe3, 0xe6, 0xd6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Voltorb\u019e"}, "101": {"bytes": "0xbf, 0xe0, 0xd9, 0xd7, 0xe8, 0xe6, 0xe3, 0xd8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Electrode\u019e"}, "102": {"bytes": "0xbf, 0xec, 0xd9, 0xdb, 0xdb, 0xd7, 0xe9, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Exeggcute\u019e"}, "103": {"bytes": "0xbf, 0xec, 0xd9, 0xdb, 0xdb, 0xe9, 0xe8, 0xe3, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Exeggutor\u019e"}, "104": {"bytes": "0xbd, 0xe9, 0xd6, 0xe3, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cubone\u019e"}, "105": {"bytes": "0xc7, 0xd5, 0xe6, 0xe3, 0xeb, 0xd5, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Marowak\u019e"}, "106": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xe0, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmonlee\u019e"}, "107": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xd7, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmonchan\u019e"}, "108": {"bytes": "0xc6, 0xdd, 0xd7, 0xdf, 0xdd, 0xe8, 0xe9, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lickitung\u019e"}, "109": {"bytes": "0xc5, 0xe3, 0xda, 0xda, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Koffing\u019e"}, "110": {"bytes": "0xd1, 0xd9, 0xd9, 0xee, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weezing\u019e"}, "111": {"bytes": "0xcc, 0xdc, 0xed, 0xdc, 0xe3, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rhyhorn\u019e"}, "112": {"bytes": "0xcc, 0xdc, 0xed, 0xd8, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rhydon\u019e"}, "113": {"bytes": "0xbd, 0xdc, 0xd5, 0xe2, 0xe7, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chansey\u019e"}, "114": {"bytes": "0xce, 0xd5, 0xe2, 0xdb, 0xd9, 0xe0, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tangela\u019e"}, "115": {"bytes": "0xc5, 0xd5, 0xe2, 0xdb, 0xd5, 0xe7, 0xdf, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kangaskhan\u019e"}, "116": {"bytes": "0xc2, 0xe3, 0xe6, 0xe7, 0xd9, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Horsea\u019e"}, "117": {"bytes": "0xcd, 0xd9, 0xd5, 0xd8, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seadra\u019e"}, "118": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Goldeen\u019e"}, "119": {"bytes": "0xcd, 0xd9, 0xd5, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seaking\u019e"}, "120": {"bytes": "0xcd, 0xe8, 0xd5, 0xe6, 0xed, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Staryu\u019e"}, "121": {"bytes": "0xcd, 0xe8, 0xd5, 0xe6, 0xe1, 0xdd, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Starmie\u019e"}, "122": {"bytes": "0xc7, 0xe6, 0xad, 0x0, 0xc7, 0xdd, 0xe1, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mr. Mime\u019e"}, "123": {"bytes": "0xcd, 0xd7, 0xed, 0xe8, 0xdc, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Scyther\u019e"}, "124": {"bytes": "0xc4, 0xed, 0xe2, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jynx\u019e"}, "125": {"bytes": "0xbf, 0xe0, 0xd9, 0xd7, 0xe8, 0xd5, 0xd6, 0xe9, 0xee, 0xee, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Electabuzz\u019e"}, "126": {"bytes": "0xc7, 0xd5, 0xdb, 0xe1, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magmar\u019e"}, "127": {"bytes": "0xca, 0xdd, 0xe2, 0xe7, 0xdd, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pinsir\u019e"}, "128": {"bytes": "0xce, 0xd5, 0xe9, 0xe6, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tauros\u019e"}, "129": {"bytes": "0xc7, 0xd5, 0xdb, 0xdd, 0xdf, 0xd5, 0xe6, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magikarp\u019e"}, "130": {"bytes": "0xc1, 0xed, 0xd5, 0xe6, 0xd5, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gyarados\u019e"}, "131": {"bytes": "0xc6, 0xd5, 0xe4, 0xe6, 0xd5, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lapras\u019e"}, "132": {"bytes": "0xbe, 0xdd, 0xe8, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ditto\u019e"}, "133": {"bytes": "0xbf, 0xd9, 0xea, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Eevee\u019e"}, "134": {"bytes": "0xd0, 0xd5, 0xe4, 0xe3, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vaporeon\u019e"}, "135": {"bytes": "0xc4, 0xe3, 0xe0, 0xe8, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jolteon\u019e"}, "136": {"bytes": "0xc0, 0xe0, 0xd5, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Flareon\u019e"}, "137": {"bytes": "0xca, 0xe3, 0xe6, 0xed, 0xdb, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Porygon\u019e"}, "138": {"bytes": "0xc9, 0xe1, 0xd5, 0xe2, 0xed, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Omanyte\u019e"}, "139": {"bytes": "0xc9, 0xe1, 0xd5, 0xe7, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Omastar\u019e"}, "140": {"bytes": "0xc5, 0xd5, 0xd6, 0xe9, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kabuto\u019e"}, "141": {"bytes": "0xc5, 0xd5, 0xd6, 0xe9, 0xe8, 0xe3, 0xe4, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kabutops\u019e"}, "142": {"bytes": "0xbb, 0xd9, 0xe6, 0xe3, 0xd8, 0xd5, 0xd7, 0xe8, 0xed, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Aerodactyl\u019e"}, "143": {"bytes": "0xcd, 0xe2, 0xe3, 0xe6, 0xe0, 0xd5, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Snorlax\u019e"}, "144": {"bytes": "0xbb, 0xe6, 0xe8, 0xdd, 0xd7, 0xe9, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Articuno\u019e"}, "145": {"bytes": "0xd4, 0xd5, 0xe4, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Zapdos\u019e"}, "146": {"bytes": "0xc7, 0xe3, 0xe0, 0xe8, 0xe6, 0xd9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Moltres\u019e"}, "147": {"bytes": "0xbe, 0xe6, 0xd5, 0xe8, 0xdd, 0xe2, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dratini\u019e"}, "148": {"bytes": "0xbe, 0xe6, 0xd5, 0xdb, 0xe3, 0xe2, 0xd5, 0xdd, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dragonair\u019e"}, "149": {"bytes": "0xbe, 0xe6, 0xd5, 0xdb, 0xe3, 0xe2, 0xdd, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dragonite\u019e"}, "150": {"bytes": "0xc7, 0xd9, 0xeb, 0xe8, 0xeb, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mewtwo\u019e"}, "151": {"bytes": "0xc7, 0xd9, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mew\u019e"}, "152": {"bytes": "0xbd, 0xdc, 0xdd, 0xdf, 0xe3, 0xe6, 0xdd, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chikorita\u019e"}, "153": {"bytes": "0xbc, 0xd5, 0xed, 0xe0, 0xd9, 0xd9, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bayleef\u019e"}, "154": {"bytes": "0xc7, 0xd9, 0xdb, 0xd5, 0xe2, 0xdd, 0xe9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Meganium\u019e"}, "155": {"bytes": "0xbd, 0xed, 0xe2, 0xd8, 0xd5, 0xe5, 0xe9, 0xdd, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cyndaquil\u019e"}, "156": {"bytes": "0xcb, 0xe9, 0xdd, 0xe0, 0xd5, 0xea, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Quilava\u019e"}, "157": {"bytes": "0xce, 0xed, 0xe4, 0xdc, 0xe0, 0xe3, 0xe7, 0xdd, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Typhlosion\u019e"}, "158": {"bytes": "0xce, 0xe3, 0xe8, 0xe3, 0xd8, 0xdd, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Totodile\u019e"}, "159": {"bytes": "0xbd, 0xe6, 0xe3, 0xd7, 0xe3, 0xe2, 0xd5, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Croconaw\u019e"}, "160": {"bytes": "0xc0, 0xd9, 0xe6, 0xd5, 0xe0, 0xdd, 0xdb, 0xd5, 0xe8, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Feraligatr\u019e"}, "161": {"bytes": "0xcd, 0xd9, 0xe2, 0xe8, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sentret\u019e"}, "162": {"bytes": "0xc0, 0xe9, 0xe6, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Furret\u019e"}, "163": {"bytes": "0xc2, 0xe3, 0xe3, 0xe8, 0xdc, 0xe3, 0xe3, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hoothoot\u019e"}, "164": {"bytes": "0xc8, 0xe3, 0xd7, 0xe8, 0xe3, 0xeb, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Noctowl\u019e"}, "165": {"bytes": "0xc6, 0xd9, 0xd8, 0xed, 0xd6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ledyba\u019e"}, "166": {"bytes": "0xc6, 0xd9, 0xd8, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ledian\u019e"}, "167": {"bytes": "0xcd, 0xe4, 0xdd, 0xe2, 0xd5, 0xe6, 0xd5, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Spinarak\u019e"}, "168": {"bytes": "0xbb, 0xe6, 0xdd, 0xd5, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ariados\u019e"}, "169": {"bytes": "0xbd, 0xe6, 0xe3, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Crobat\u019e"}, "170": {"bytes": "0xbd, 0xdc, 0xdd, 0xe2, 0xd7, 0xdc, 0xe3, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chinchou\u019e"}, "171": {"bytes": "0xc6, 0xd5, 0xe2, 0xe8, 0xe9, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lanturn\u019e"}, "172": {"bytes": "0xca, 0xdd, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pichu\u019e"}, "173": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xda, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cleffa\u019e"}, "174": {"bytes": "0xc3, 0xdb, 0xdb, 0xe0, 0xed, 0xd6, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Igglybuff\u019e"}, "175": {"bytes": "0xce, 0xe3, 0xdb, 0xd9, 0xe4, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Togepi\u019e"}, "176": {"bytes": "0xce, 0xe3, 0xdb, 0xd9, 0xe8, 0xdd, 0xd7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Togetic\u019e"}, "177": {"bytes": "0xc8, 0xd5, 0xe8, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Natu\u019e"}, "178": {"bytes": "0xd2, 0xd5, 0xe8, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Xatu\u019e"}, "179": {"bytes": "0xc7, 0xd5, 0xe6, 0xd9, 0xd9, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mareep\u019e"}, "180": {"bytes": "0xc0, 0xe0, 0xd5, 0xd5, 0xda, 0xda, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Flaaffy\u019e"}, "181": {"bytes": "0xbb, 0xe1, 0xe4, 0xdc, 0xd5, 0xe6, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ampharos\u019e"}, "182": {"bytes": "0xbc, 0xd9, 0xe0, 0xe0, 0xe3, 0xe7, 0xe7, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bellossom\u019e"}, "183": {"bytes": "0xc7, 0xd5, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Marill\u019e"}, "184": {"bytes": "0xbb, 0xee, 0xe9, 0xe1, 0xd5, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Azumarill\u019e"}, "185": {"bytes": "0xcd, 0xe9, 0xd8, 0xe3, 0xeb, 0xe3, 0xe3, 0xd8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sudowoodo\u019e"}, "186": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xe8, 0xe3, 0xd9, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Politoed\u019e"}, "187": {"bytes": "0xc2, 0xe3, 0xe4, 0xe4, 0xdd, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hoppip\u019e"}, "188": {"bytes": "0xcd, 0xdf, 0xdd, 0xe4, 0xe0, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Skiploom\u019e"}, "189": {"bytes": "0xc4, 0xe9, 0xe1, 0xe4, 0xe0, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jumpluff\u019e"}, "190": {"bytes": "0xbb, 0xdd, 0xe4, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Aipom\u019e"}, "191": {"bytes": "0xcd, 0xe9, 0xe2, 0xdf, 0xd9, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sunkern\u019e"}, "192": {"bytes": "0xcd, 0xe9, 0xe2, 0xda, 0xe0, 0xe3, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sunflora\u019e"}, "193": {"bytes": "0xd3, 0xd5, 0xe2, 0xe1, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Yanma\u019e"}, "194": {"bytes": "0xd1, 0xe3, 0xe3, 0xe4, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wooper\u019e"}, "195": {"bytes": "0xcb, 0xe9, 0xd5, 0xdb, 0xe7, 0xdd, 0xe6, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Quagsire\u019e"}, "196": {"bytes": "0xbf, 0xe7, 0xe4, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Espeon\u019e"}, "197": {"bytes": "0xcf, 0xe1, 0xd6, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Umbreon\u019e"}, "198": {"bytes": "0xc7, 0xe9, 0xe6, 0xdf, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Murkrow\u019e"}, "199": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowking\u019e"}, "200": {"bytes": "0xc7, 0xdd, 0xe7, 0xd8, 0xe6, 0xd9, 0xd5, 0xea, 0xe9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Misdreavus\u019e"}, "201": {"bytes": "0xcf, 0xe2, 0xe3, 0xeb, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Unown\u019e"}, "202": {"bytes": "0xd1, 0xe3, 0xd6, 0xd6, 0xe9, 0xda, 0xda, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wobbuffet\u019e"}, "203": {"bytes": "0xc1, 0xdd, 0xe6, 0xd5, 0xda, 0xd5, 0xe6, 0xdd, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Girafarig\u019e"}, "204": {"bytes": "0xca, 0xdd, 0xe2, 0xd9, 0xd7, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pineco\u019e"}, "205": {"bytes": "0xc0, 0xe3, 0xe6, 0xe6, 0xd9, 0xe8, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Forretress\u019e"}, "206": {"bytes": "0xbe, 0xe9, 0xe2, 0xe7, 0xe4, 0xd5, 0xe6, 0xd7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dunsparce\u019e"}, "207": {"bytes": "0xc1, 0xe0, 0xdd, 0xdb, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gligar\u019e"}, "208": {"bytes": "0xcd, 0xe8, 0xd9, 0xd9, 0xe0, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Steelix\u019e"}, "209": {"bytes": "0xcd, 0xe2, 0xe9, 0xd6, 0xd6, 0xe9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Snubbull\u019e"}, "210": {"bytes": "0xc1, 0xe6, 0xd5, 0xe2, 0xd6, 0xe9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Granbull\u019e"}, "211": {"bytes": "0xcb, 0xeb, 0xdd, 0xe0, 0xda, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Qwilfish\u019e"}, "212": {"bytes": "0xcd, 0xd7, 0xdd, 0xee, 0xe3, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Scizor\u019e"}, "213": {"bytes": "0xcd, 0xdc, 0xe9, 0xd7, 0xdf, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Shuckle\u019e"}, "214": {"bytes": "0xc2, 0xd9, 0xe6, 0xd5, 0xd7, 0xe6, 0xe3, 0xe7, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Heracross\u019e"}, "215": {"bytes": "0xcd, 0xe2, 0xd9, 0xd5, 0xe7, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sneasel\u019e"}, "216": {"bytes": "0xce, 0xd9, 0xd8, 0xd8, 0xdd, 0xe9, 0xe6, 0xe7, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Teddiursa\u019e"}, "217": {"bytes": "0xcf, 0xe6, 0xe7, 0xd5, 0xe6, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ursaring\u019e"}, "218": {"bytes": "0xcd, 0xe0, 0xe9, 0xdb, 0xe1, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slugma\u019e"}, "219": {"bytes": "0xc7, 0xd5, 0xdb, 0xd7, 0xd5, 0xe6, 0xdb, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magcargo\u019e"}, "220": {"bytes": "0xcd, 0xeb, 0xdd, 0xe2, 0xe9, 0xd6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Swinub\u019e"}, "221": {"bytes": "0xca, 0xdd, 0xe0, 0xe3, 0xe7, 0xeb, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Piloswine\u019e"}, "222": {"bytes": "0xbd, 0xe3, 0xe6, 0xe7, 0xe3, 0xe0, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Corsola\u019e"}, "223": {"bytes": "0xcc, 0xd9, 0xe1, 0xe3, 0xe6, 0xd5, 0xdd, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Remoraid\u019e"}, "224": {"bytes": "0xc9, 0xd7, 0xe8, 0xdd, 0xe0, 0xe0, 0xd9, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Octillery\u019e"}, "225": {"bytes": "0xbe, 0xd9, 0xe0, 0xdd, 0xd6, 0xdd, 0xe6, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Delibird\u019e"}, "226": {"bytes": "0xc7, 0xd5, 0xe2, 0xe8, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mantine\u019e"}, "227": {"bytes": "0xcd, 0xdf, 0xd5, 0xe6, 0xe1, 0xe3, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Skarmory\u019e"}, "228": {"bytes": "0xc2, 0xe3, 0xe9, 0xe2, 0xd8, 0xe3, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Houndour\u019e"}, "229": {"bytes": "0xc2, 0xe3, 0xe9, 0xe2, 0xd8, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Houndoom\u019e"}, "230": {"bytes": "0xc5, 0xdd, 0xe2, 0xdb, 0xd8, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kingdra\u019e"}, "231": {"bytes": "0xca, 0xdc, 0xd5, 0xe2, 0xe4, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Phanpy\u019e"}, "232": {"bytes": "0xbe, 0xe3, 0xe2, 0xe4, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Donphan\u019e"}, "233": {"bytes": "0xca, 0xe3, 0xe6, 0xed, 0xdb, 0xe3, 0xe2, 0xa3, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Porygon2\u019e"}, "234": {"bytes": "0xcd, 0xe8, 0xd5, 0xe2, 0xe8, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Stantler\u019e"}, "235": {"bytes": "0xcd, 0xe1, 0xd9, 0xd5, 0xe6, 0xdb, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Smeargle\u019e"}, "236": {"bytes": "0xce, 0xed, 0xe6, 0xe3, 0xdb, 0xe9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tyrogue\u019e"}, "237": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xe8, 0xe3, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmontop\u019e"}, "238": {"bytes": "0xcd, 0xe1, 0xe3, 0xe3, 0xd7, 0xdc, 0xe9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Smoochum\u019e"}, "239": {"bytes": "0xbf, 0xe0, 0xd9, 0xdf, 0xdd, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Elekid\u019e"}, "240": {"bytes": "0xc7, 0xd5, 0xdb, 0xd6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magby\u019e"}, "241": {"bytes": "0xc7, 0xdd, 0xe0, 0xe8, 0xd5, 0xe2, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Miltank\u019e"}, "242": {"bytes": "0xbc, 0xe0, 0xdd, 0xe7, 0xe7, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Blissey\u019e"}, "243": {"bytes": "0xcc, 0xd5, 0xdd, 0xdf, 0xe3, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raikou\u019e"}, "244": {"bytes": "0xbf, 0xe2, 0xe8, 0xd9, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Entei\u019e"}, "245": {"bytes": "0xcd, 0xe9, 0xdd, 0xd7, 0xe9, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Suicune\u019e"}, "246": {"bytes": "0xc6, 0xd5, 0xe6, 0xea, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Larvitar\u019e"}, "247": {"bytes": "0xca, 0xe9, 0xe4, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pupitar\u019e"}, "248": {"bytes": "0xce, 0xed, 0xe6, 0xd5, 0xe2, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tyranitar\u019e"}, "249": {"bytes": "0xc6, 0xe9, 0xdb, 0xdd, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lugia\u019e"}, "250": {"bytes": "0xc2, 0xe3, 0xae, 0xc9, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ho-Oh\u019e"}, "251": {"bytes": "0xbd, 0xd9, 0xe0, 0xd9, 0xd6, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": 6, "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Celebi\u019e"}}, "Warnings": {"0": "Warning! ' found, replacing with \u2019 !", "1": "Warning! ' found, replacing with \u2019 !", "2": "Warning! ' found, replacing with \u2019 !", "3": "Warning! ' found, replacing with \u2019 !", "4": "Warning! ' found, replacing with \u2019 !", "5": "Warning! ' found, replacing with \u2019 !", "6": "Warning! ' found, replacing with \u2019 !", "7": "Warning! ' found, replacing with \u2019 !", "8": "Warning! ' found, replacing with \u2019 !", "9": "Warning! ' found, replacing with \u2019 !", "10": "Warning! ' found, replacing with \u2019 !", "11": "Warning! ' found, replacing with \u2019 !", "12": "Warning! ' found, replacing with \u2019 !", "13": "Warning! ' found, replacing with \u2019 !", "14": "Warning! ' found, replacing with \u2019 !", "15": "Warning! ' found, replacing with \u2019 !", "16": "Warning! ' found, replacing with \u2019 !", "17": "Warning! ' found, replacing with \u2019 !", "18": "Warning! ' found, replacing with \u2019 !", "19": "Warning! ' found, replacing with \u2019 !", "20": "Warning! ' found, replacing with \u2019 !", "21": "Warning! ' found, replacing with \u2019 !", "22": "Warning! ' found, replacing with \u2019 !", "23": "Warning! ' found, replacing with \u2019 !", "24": "Warning! ' found, replacing with \u2019 !", "25": "Warning! ' found, replacing with \u2019 !", "26": "Warning! ' found, replacing with \u2019 !", "27": "Warning! ' found, replacing with \u2019 !", "28": "Warning! ' found, replacing with \u2019 !", "29": "Warning! ' found, replacing with \u2019 !", "30": "Warning! ' found, replacing with \u2019 !", "31": "Warning! ' found, replacing with \u2019 !", "32": "Warning! ' found, replacing with \u2019 !", "33": "Warning! ' found, replacing with \u2019 !", "34": "Warning! ' found, replacing with \u2019 !", "35": "Warning! ' found, replacing with \u2019 !", "36": "Warning! ' found, replacing with \u2019 !", "37": "Warning! ' found, replacing with \u2019 !", "38": "Warning! ' found, replacing with \u2019 !", "39": "Warning! ' found, replacing with \u2019 !", "40": "Warning! ' found, replacing with \u2019 !", "41": "Warning! ' found, replacing with \u2019 !", "42": "Warning! ' found, replacing with \u2019 !", "43": "Warning! ' found, replacing with \u2019 !", "44": "Warning! ' found, replacing with \u2019 !", "45": "Warning! ' found, replacing with \u2019 !", "46": "Warning! ' found, replacing with \u2019 !", "47": "Warning! ' found, replacing with \u2019 !", "48": "Warning! ' found, replacing with \u2019 !", "49": "Warning! ' found, replacing with \u2019 !", "50": "Warning! ' found, replacing with \u2019 !", "51": "Warning! ' found, replacing with \u2019 !", "52": "Warning! ' found, replacing with \u2019 !", "53": "Warning! ' found, replacing with \u2019 !", "54": "Warning! ' found, replacing with \u2019 !"}, "Errors": {"0": "Error! No match found for char [ \" ]!", "1": "ERROR! Made a line break when disabled, sentence \"Remote and Arbitrary Code\u0147Execution assistance: \u0147\u0147-TimoVM \u0147\u0147Remote Multiboot\u0147functionality: \u023c\" is too long!"}}} \ No newline at end of file +{"Japanese": {"PTGB": {"DIA_OPEN": {"bytes": "0xc2, 0xd9, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0x0, 0xc3, 0x0, 0xe1, 0x0, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0xfe, 0xc0, 0xd9, 0xe2, 0xe2, 0xd9, 0xe0, 0xb8, 0x0, 0xbb, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xd9, 0x0, 0x0, 0xc3, 0x0, 0xe1, 0xfe, 0xd5, 0x0, 0xe7, 0xd7, 0xdd, 0xd9, 0xe2, 0xe8, 0xdd, 0xe7, 0xe8, 0xb8, 0xfb, 0xc3, 0xe2, 0x0, 0xda, 0xd5, 0xd7, 0xe8, 0x0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xe9, 0xd6, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xc3, 0x0, 0xe1, 0xfe, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe7, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0x0, 0xfb, 0xc7, 0xed, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe0, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xea, 0xd5, 0xe6, 0xdd, 0xe3, 0xe9, 0xe7, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0x0, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0x0, 0xe8, 0x0, 0xdc, 0xd5, 0xd8, 0x0, 0xd5, 0xe2, 0xed, 0xfe, 0xd6, 0xe6, 0xd9, 0xd5, 0xdf, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0xe7, 0x0, 0xed, 0xd9, 0xe8, 0xb8, 0xb8, 0xb8, 0xfb, 0xcd, 0xe3, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0x0, 0x0, 0xc3, 0x0, 0xea, 0xd9, 0xfe, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xdd, 0xe2, 0xdb, 0x0, 0xe3, 0xe2, 0x0, 0xd5, 0x0, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0xfe, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xe3, 0xe0, 0xd8, 0xfe, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xfb, 0xc3, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xdc, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0x0, 0xd5, 0xfe, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe7, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xdd, 0xe2, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xb8, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0x0, 0xe1, 0xd9, 0xd9, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xe0, 0x0, 0xfb, 0xce, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0x0, 0xda, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe1, 0xed, 0xfe, 0xdb, 0xe3, 0xd5, 0xe0, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xd8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xd5, 0xe1, 0xd9, 0x0, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0xe7, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xfe, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0x0, 0xfb, 0xce, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0x0, 0xfe, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xe2, 0xed, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0xfe, 0xd5, 0xe7, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0x0, 0xfb, 0xce, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xa3, 0xa6, 0xa1, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xd5, 0xe8, 0xd5, 0xe0, 0xe3, 0xdb, 0xe9, 0xd9, 0xfe, 0xdd, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xbe, 0xd9, 0xec, 0x0, 0x0, 0xe3, 0xe6, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe6, 0xe8, 0xb8, 0xfb, 0xbc, 0xe9, 0xe8, 0x0, 0xc3, 0x0, 0xe0, 0xe0, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xd5, 0xe2, 0xed, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0x0, 0xe6, 0xd9, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xfb, 0xc9, 0xe2, 0xd9, 0x0, 0xe0, 0xd5, 0xe7, 0xe8, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0xfe, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xfe, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdb, 0xe3, 0xd9, 0xe7, 0x0, 0xeb, 0xe6, 0xe3, 0xe2, 0xdb, 0x0, 0xfb, 0xc3, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdf, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xb8, 0xb8, 0xb8, 0xfe, 0xeb, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0xfe, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0x0, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hey there I m Professor\u0147Fennel, As you can see I m\u0147a scientist,\u023cIn fact the subject I m\u0147researching is Trainers \u023cMy dream is to collect save\u0147files of various trainers \u0147but I haven t had any\u0147breakthroughs yet,,,\u023cSo in the meantime I ve\u0147been working on a different\u0147project with one of my old\u0147friends \u023cIn my home region there s a\u0147location that can make a\u0147Pok mon s dreams into\u0147reality,\u023cThis means that any other\u0147Pok mon they meet in their\u0147dreams become real \u023cThat s fantastic but my\u0147goal is to do the same just\u0147with a trainer s dream\u0147instead \u023cThat s why I need your help \u0147I want to bring as many\u0147Pok mon out of your dreams\u0147as possible \u023cThere s just over 250\u0147Pok mon I want to catalogue\u0147in my Dream Pok Dex or\u0147Dream Dex for short,\u023cBut I ll let you keep any\u0147Pok mon they re from your\u0147dreams after all \u023cOne last note save data\u0147backups are recommended \u0147just on the off chance that\u0147something goes wrong \u023cI think that s everything,,,\u0147whenever you re ready to\u0147start just let me know \u019e"}, "DIA_E4": {"bytes": "0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xc3, 0x0, 0xe1, 0x0, 0xe8, 0xdc, 0xe6, 0xdd, 0xe0, 0xe0, 0xd9, 0xd8, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xea, 0xd9, 0x0, 0xd8, 0xd9, 0xd7, 0xdd, 0xd8, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0xfe, 0xe3, 0xe9, 0xe6, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xd9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0x0, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xea, 0xd9, 0xfe, 0xd6, 0xd9, 0xd5, 0xe8, 0xd9, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbf, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xc0, 0xe3, 0xe9, 0xe6, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xdc, 0xd5, 0xe1, 0xe4, 0xdd, 0xe3, 0xe2, 0x0, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi trainer I m thrilled\u0147you ve decided to help with\u0147our research but we need\u0147the best of the best \u023cCome back after you ve\u0147beaten the Elite Four and\u0147become the Champion \u019e"}, "DIA_MG_FRLGE": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0xfe, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0x0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xc1, 0xc3, 0xc0, 0xce, 0x0, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe2, 0xd9, 0xd5, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xfe, 0xc7, 0xd5, 0xe6, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xda, 0xdd, 0xe0, 0xe0, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe2, 0xd5, 0xdd, 0xe6, 0xd9, 0x0, 0xd5, 0xe7, 0x0, 0xda, 0xe3, 0xe0, 0xe0, 0xe3, 0xeb, 0xe7, 0xf0, 0xfe, 0xc6, 0xc3, 0xc8, 0xc5, 0x0, 0xce, 0xc9, 0xc1, 0xbf, 0xce, 0xc2, 0xbf, 0xcc, 0x0, 0xd1, 0xc3, 0xce, 0xc2, 0x0, 0xbb, 0xc6, 0xc6, 0xb8, 0xfb, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdb, 0xe3, 0x0, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0x0, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer one more\u0147thing to take care of before\u0147we can begin you need to\u0147enable MYSTERY GIFT \u023cHead to the nearest Pok \u0147Mart and fill out the\u0147questionnaire as follows:\u0147LINK TOGETHER WITH ALL,\u023cAfter that you should be\u0147all set to go See you soon \u019e"}, "DIA_MG_RS": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0xfe, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0x0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0x0, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbf, 0xce, 0xbb, 0xc6, 0xbc, 0xcf, 0xcc, 0xc1, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xbd, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe1, 0xd5, 0xe2, 0x0, 0xe2, 0xd9, 0xec, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0xf0, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0xfe, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0x0, 0xc3, 0xcd, 0x0, 0xbf, 0xd2, 0xbd, 0xc3, 0xce, 0xc3, 0xc8, 0xc1, 0xb8, 0xfb, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdb, 0xe3, 0x0, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0x0, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer one more\u0147thing to take care of before\u0147we can begin you need to\u0147enable MYSTERY EVENT \u023cHead to the PETALBURG\u0147Pok mon Center and tell the\u0147man next to the PC: MYSTERY\u0147EVENT IS EXCITING,\u023cAfter that you should be\u0147all set to go See you soon \u019e"}, "DIA_LETS_START": {"bytes": "0xca, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0x0, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0x0, 0xc6, 0xd9, 0xe8, 0x0, 0xe7, 0xfe, 0xdb, 0xd9, 0xe8, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0xd9, 0xd8, 0x0, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Perfect that s all the\u0147information I need Let s\u0147get started \u019e"}, "DIA_START": {"bytes": "0xc9, 0xe2, 0x0, 0xd5, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0xfe, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xfe, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xdd, 0xe7, 0xdc, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xb8, 0xfb, 0xc3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0xb8, 0xfb, 0xce, 0xdc, 0xd9, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xfe, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0x0, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0xb8, 0xfb, 0xc9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0xfe, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0x0, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xbd, 0xe0, 0xe9, 0xd6, 0x0, 0xd5, 0xe8, 0xe8, 0xd9, 0xe2, 0xd8, 0xd5, 0xe2, 0xe8, 0x0, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe2, 0x0, 0xdd, 0xe2, 0xdd, 0xe8, 0xdd, 0xd5, 0xe8, 0xd9, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xd9, 0xb8, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "On a second Game Boy family\u0147system please load the Game\u0147Boy Pok mon game you wish to\u0147transfer from,\u023cIn your Game Boy Pok mon\u0147game make your current box\u0147the one you want to transfer\u0147from,\u023cThen connect this Game Boy\u0147Advance to the other Game\u0147Boy family system using a\u0147Game Boy Color link cable,\u023cOnce you re ready press A\u0147on this device talk to the\u0147Cable Club attendant and\u0147then initiate a trade,\u019e"}, "DIA_TRANS_GOOD": {"bytes": "0xbb, 0xe1, 0xd5, 0xee, 0xdd, 0xe2, 0xdb, 0x0, 0x0, 0xc0, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0x0, 0xfe, 0xbf, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0x0, 0xe4, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0x0, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Amazing Fantastic \u0147Everything went perfectly \u019e"}, "DIA_NEW_DEX": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0x0, 0xd5, 0xe8, 0xfe, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xdd, 0xe7, 0xe2, 0x0, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0x0, 0xfb, 0xc3, 0x0, 0xe0, 0xe0, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xd9, 0xec, 0xe8, 0xe6, 0xd5, 0x0, 0xe7, 0xeb, 0xd9, 0xd9, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xe6, 0xd9, 0xeb, 0xd5, 0xe6, 0xd8, 0x0, 0xda, 0xe3, 0xe6, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0xb8, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like there s at\u0147least one new Pok mon here\u0147that isn t in the Dream Dex \u023cI ll give them something\u0147extra sweet as a reward for\u0147you both,\u019e"}, "DIA_NO_NEW_DEX": {"bytes": "0xc3, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0x0, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0xfe, 0xd5, 0xe2, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0xfe, 0xbe, 0xd9, 0xec, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0x0, 0xe3, 0xdf, 0xd5, 0xed, 0x0, 0xfb, 0xc3, 0xe8, 0x0, 0xe7, 0x0, 0xdd, 0xe1, 0xe4, 0xe3, 0xe6, 0xe8, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0xfe, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe9, 0xe0, 0xe8, 0xe7, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0xfe, 0xe1, 0xe9, 0xe0, 0xe8, 0xdd, 0xe4, 0xe0, 0xd9, 0x0, 0xe8, 0xd9, 0xe7, 0xe8, 0xe7, 0x0, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It doesn t look like there s\u0147anything new for your Dream\u0147Dex but that s okay \u023cIt s important to confirm\u0147research results with\u0147multiple tests \u019e"}, "DIA_SEND_FRIEND_KANTO": {"bytes": "0xc3, 0x0, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0xfe, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xfe, 0xe9, 0xe4, 0x0, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xe3, 0xe2, 0x0, 0xcd, 0xd9, 0xea, 0xd9, 0xe2, 0xfe, 0xc3, 0xe7, 0xe0, 0xd5, 0xe2, 0xd8, 0x0, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I m going to send these\u0147Pok mon to one of my friends\u0147so that you can pick them\u0147up \u023cThey live just south of the\u0147Pok mon center on Seven\u0147Island \u019e"}, "DIA_SEND_FRIEND_HOENN_RS": {"bytes": "0xc3, 0x0, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0xfe, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xfe, 0xe9, 0xe4, 0x0, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0xfe, 0xc7, 0xe3, 0xe7, 0xe7, 0xd8, 0xd9, 0xd9, 0xe4, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0x0, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I m going to send these\u0147Pok mon to one of my friends\u0147so that you can pick them\u0147up \u023cThey live just southeast of\u0147the Pok mon center in\u0147Mossdeep City \u019e"}, "DIA_SEND_FRIEND_HOENN_E": {"bytes": "0xc3, 0x0, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0xfe, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xfe, 0xe9, 0xe4, 0x0, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0xfe, 0xcd, 0xe3, 0xe3, 0xe8, 0xe3, 0xe4, 0xe3, 0xe0, 0xdd, 0xe7, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0x0, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I m going to send these\u0147Pok mon to one of my friends\u0147so that you can pick them\u0147up \u023cThey live just southeast of\u0147the Pok mon center in\u0147Sootopolis City \u019e"}, "DIA_THANK": {"bytes": "0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xdc, 0xd9, 0xe0, 0xe4, 0x0, 0x0, 0xd1, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0x0, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0x0, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Thank you so much for your\u0147help Whenever you want to\u0147transfer more Pok mon just\u0147let me know See you around \u019e"}, "DIA_GET_MON": {"bytes": "0xe9, 0xe2, 0xe9, 0xe7, 0xd9, 0xd8, 0x0, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "unused will be removed\u019e"}, "DIA_MG_OTHER_EVENT": {"bytes": "0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0x0, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xb8, 0xfb, 0xce, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xd6, 0xe0, 0xd9, 0xe1, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0xfe, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xeb, 0xe6, 0xdd, 0xe8, 0xe8, 0xd9, 0xe2, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xb8, 0xfb, 0xce, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xe2, 0xe3, 0xeb, 0x0, 0xdd, 0xda, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd9, 0xec, 0xe4, 0xd9, 0xe6, 0xdd, 0xd9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0x0, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi Trainer It looks like\u0147you have a different event\u0147currently loaded,\u023cThat s no problem but it\u0147will be overwritten if you\u0147continue,\u023cTurn off the system now if\u0147you want to experience your\u0147current event but\u0147otherwise \u019e"}, "DIA_PKMN_TO_COLLECT": {"bytes": "0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe9, 0xe4, 0xb8, 0xb8, 0xb8, 0xfb, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe8, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe2, 0xd9, 0xeb, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe9, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xe3, 0xe7, 0xd9, 0xfe, 0xe9, 0xe4, 0xb8, 0x0, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xea, 0xd9, 0xfe, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi Trainer It looks like\u0147you still have Pok mon to\u0147pick up,,,\u023cI can t send over new\u0147Pok mon until you pick those\u0147up, Come back after you ve\u0147received them \u019e"}, "DIA_NO_VALID_PKMN": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xdd, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0x0, 0xe8, 0xfe, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xea, 0xd5, 0xe0, 0xdd, 0xd8, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0xfe, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xe2, 0xe3, 0xeb, 0xb8, 0xfb, 0xc1, 0xe3, 0x0, 0xd8, 0xe3, 0xe9, 0xd6, 0xe0, 0xd9, 0x0, 0xd7, 0xdc, 0xd9, 0xd7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xfe, 0xd6, 0xe3, 0xec, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xdd, 0xe8, 0xfe, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe8, 0x0, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry Trainer it doesn t\u0147look like you have any valid\u0147Pok mon in your current box\u0147right now,\u023cGo double check your current\u0147box and we can give it\u0147another shot \u019e"}, "DIA_ASK_QUEST": {"bytes": "0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xbc, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0x0, 0xfe, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0x0, 0xda, 0xd9, 0xeb, 0xfe, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xb8, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi trainer Before we begin \u0147I need to ask you a few\u0147questions,\u019e"}, "DIA_WHAT_GAME_TRANS": {"bytes": "0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "And which Game Boy Pok mon\u0147game are you transferring\u0147from \u019e"}, "DIA_WHAT_LANG_TRANS": {"bytes": "0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xfe, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe6, 0xd9, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "What language is the Game\u0147Boy Pok mon game that you re\u0147transferring from \u019e"}, "DIA_NO_GB_ROM": {"bytes": "0xc3, 0x0, 0xe1, 0x0, 0xe7, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xea, 0xd9, 0xe6, 0xe7, 0xdd, 0xe3, 0xe2, 0xfe, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0xb8, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I m sorry but that version\u0147in that language is not\u0147currently supported,\u019e"}, "DIA_IN_BOX": {"bytes": "0xbb, 0xe0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0x0, 0xc6, 0xd9, 0xe8, 0x0, 0xe7, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xfe, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0xb8, 0xfb, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xd9, 0xe1, 0xd6, 0xd9, 0xe6, 0x0, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xd5, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0x0, 0x0, 0xdd, 0xe8, 0xfe, 0xbd, 0xbb, 0xc8, 0xc8, 0xc9, 0xce, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xb8, 0xfb, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe6, 0xd9, 0xfe, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0x0, 0xe3, 0xe6, 0x0, 0xe7, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0x0, 0xdd, 0xda, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0xfe, 0xe3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xb8, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Alright Let s take a look\u0147at the Pok mon that will be\u0147transfered,\u023cPlease remember once a\u0147Pok mon is transfered it\u0147CANNOT be returned to the\u0147Game Boy Game Pak,\u023cSelect confirm once you re\u0147ready or select cancel if\u0147you want to keep the Pok mon\u0147on your Game Boy Game Pak,\u019e"}, "DIA_MYTHIC_CONVERT": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xfe, 0xe6, 0xd5, 0xe6, 0xd9, 0x0, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xfb, 0xbe, 0xe9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xe6, 0xd5, 0xe6, 0xdd, 0xe8, 0xed, 0x0, 0x0, 0xdd, 0xe8, 0xfe, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0x0, 0xea, 0xd9, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xb8, 0xfb, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd8, 0xfe, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe0, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xfe, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xd9, 0xe8, 0x0, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xfe, 0xc9, 0xce, 0x0, 0x0, 0xce, 0xc3, 0xbe, 0x0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xcd, 0xdc, 0xdd, 0xe2, 0xdd, 0xe2, 0xd9, 0xe7, 0xe7, 0xb8, 0xfb, 0xc9, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe0, 0xd9, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xfe, 0xd5, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0x0, 0xe2, 0xe3, 0xfe, 0xdb, 0xe9, 0xd5, 0xe6, 0xd9, 0xe2, 0xe8, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xda, 0xe9, 0xe8, 0xe9, 0xe6, 0xd9, 0xb8, 0xfb, 0xbe, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0xfe, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0x0, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd5, 0xe4, 0xe4, 0xe0, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe0, 0xe0, 0xfe, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd6, 0xe3, 0xec, 0xb8, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like you have a\u0147rare Mythical Pok mon \u023cDue to their rarity it\u0147seems they ve overloaded the\u0147machine,\u023cI can stablize them if you d\u0147like but it ll change some\u0147things like met location \u0147OT TID and Shininess,\u023cOtherwise I can leave them\u0147as is but there s no\u0147guarentee that they ll be\u0147transferrable in the future,\u023cDo you want me to stablize\u0147them This will apply to all\u0147of the Mythical Pok mon\u0147currently in your box,\u019e"}, "DIA_CANCEL": {"bytes": "0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0x0, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0xfe, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xe1, 0xdd, 0xe2, 0xd8, 0x0, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0x0, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "No worries Feel free to\u0147come back if you change your\u0147mind See you around \u019e"}, "DIA_SOME_INVALID_PKMN": {"bytes": "0xc3, 0x0, 0xe7, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0xb8, 0xfb, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xe3, 0xe0, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe8, 0xd9, 0xe1, 0xe7, 0x0, 0xe3, 0xe6, 0xfe, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xdd, 0xd9, 0xd8, 0x0, 0xdd, 0xe2, 0xd7, 0xe3, 0xe6, 0xe6, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0x0, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0xfe, 0xe9, 0xe2, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0x0, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0xb8, 0xfb, 0xce, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xda, 0xdd, 0xe2, 0xd9, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0x0, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I see there is at least one\u0147Pok mon that cannot be\u0147transferred from your\u0147current box,\u023cPok mon holding items or\u0147modified incorrectly through\u0147unintended means cannot be\u0147transferred,\u023cThe other Pok mon will\u0147transfer just fine though \u019e"}, "DIA_MENU_BACK": {"bytes": "0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0x0, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0xfe, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0x0, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "No worries Feel free to\u0147come back any time \u019e"}, "DIA_IS_MISSINGNO": {"bytes": "0xb8, 0xb8, 0xb8, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0xfe, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xb8, 0xb8, 0xb8, 0xfb, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0x0, 0xd6, 0xd9, 0xfe, 0xdb, 0xe6, 0xd5, 0xe4, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0x0, 0x0, 0xe7, 0xe3, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0x0, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": ",,, It seems like one of\u0147your Pok mon is messing with\u0147the machine,,,\u023cIt looks to only be\u0147graphical though so we can\u0147continue \u019e"}, "DIA_ERROR_COLOSSEUM": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe0, 0xe3, 0xe7, 0xe7, 0xd9, 0xe9, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe8, 0xe6, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0x0, 0x0, 0xc6, 0xd9, 0xe8, 0x0, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like you went to\u0147the colosseum instead of the\u0147trading room Let s try that\u0147again \u019e"}, "DIA_ERROR_COM_ENDED": {"bytes": "0xbd, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0xfe, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xe8, 0xd9, 0xe6, 0xe1, 0xdd, 0xe2, 0xd5, 0xe8, 0xd9, 0xd8, 0xb8, 0x0, 0xc6, 0xd9, 0xe8, 0x0, 0xe7, 0xfe, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Communication with the other\u0147device was terminated, Let s\u0147try that again \u019e"}, "DIA_ERROR_DISCONNECT": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0xfe, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0x0, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xd8, 0xdd, 0xe7, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xd9, 0xd8, 0xb8, 0xb8, 0xb8, 0x0, 0xc6, 0xd9, 0xe8, 0x0, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like the Game Boy\u0147Color link cable was\u0147disconnected,,, Let s try\u0147that again \u019e"}, "DIA_ERROR_TIME_ONE": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0x0, 0xe3, 0xe9, 0xe8, 0xb8, 0xb8, 0xb8, 0x0, 0xc6, 0xd9, 0xe8, 0x0, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like the connection\u0147timed out,,, Let s try that\u0147again \u019e"}, "DIA_ERROR_TIME_TWO": {"bytes": "0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0x0, 0xe3, 0xe9, 0xe8, 0xb8, 0xb8, 0xb8, 0x0, 0xc6, 0xd9, 0xe8, 0x0, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It seems like the connection\u0147timed out,,, Let s try that\u0147again \u019e"}, "DIA_WHAT_LANG_EVENT": {"bytes": "0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xfe, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "What language is the Game\u0147Boy Pok mon game that you\u0147want to send an event to \u019e"}, "DIA_WHAT_GAME_EVENT": {"bytes": "0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd8, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0xfe, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "And which Game Boy Pok mon\u0147game do you want to send an\u0147event to \u019e"}, "DIA_K_DEX_NOT_FULL": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0x0, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xa2, 0xa6, 0xa1, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xb8, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0x0, 0xeb, 0xd9, 0x0, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer it looks like\u0147you haven t caught all 150\u0147Pok mon from the Kanto\u0147region yet,\u023cGo out and catch them all\u0147and then we ll be able to\u0147send over the event \u019e"}, "DIA_J_DEX_NOT_FULL": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0x0, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0x0, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xaa, 0xaa, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc4, 0xe3, 0xdc, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xb8, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0x0, 0xeb, 0xd9, 0x0, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer it looks like\u0147you haven t caught all 99\u0147new Pok mon from the Johto\u0147region yet,\u023cGo out and catch them all\u0147and then we ll be able to\u0147send over the event \u019e"}}, "RSEFRLG": {"dia_textGreet_rse": {"bytes": "0xd1, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0x0, 0x0, 0xc3, 0xfe, 0xe8, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xe0, 0xd8, 0xfb, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xca, 0xc9, 0xc5, 0x0, 0xc7, 0xc9, 0xc8, 0x0, 0xce, 0xcc, 0xbb, 0xc3, 0xc8, 0xbf, 0xcc, 0xb8, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "When I was young I\u0147traveled the world\u023cas a POK MON TRAINER,\u019e"}, "dia_textGreet_frlg": {"bytes": "0xc3, 0x0, 0xe1, 0xd5, 0xed, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0xfe, 0xe2, 0xe3, 0xeb, 0x0, 0xfb, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "I may not look like much\u0147now \u023cbut when I was younger \u019e"}, "dia_textMoveBox_rs": {"bytes": "0xfc, 0x0, 0x0, 0xc9, 0xdc, 0x0, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0x0, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0xfe, 0xe9, 0xe2, 0xe0, 0xe3, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd8, 0xe3, 0xe3, 0xe6, 0x0, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206 Oh of course I have to\u0147unlock the door \u019e"}, "dia_textMoveBox_frlg": {"bytes": "0xfc, 0x0, 0x0, 0xc9, 0xdc, 0x0, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0x0, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0xfe, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xe3, 0xec, 0xd9, 0xe7, 0x0, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206 Oh of course I have to\u0147move the boxes \u019e"}, "dia_textMoveBox_e": {"bytes": "0xfc, 0x0, 0x0, 0xc9, 0xdc, 0x0, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0x0, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0xfe, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe4, 0xe0, 0xd5, 0xe2, 0xe8, 0xe7, 0x0, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206 Oh of course I have to\u0147move the plants \u019e"}, "dia_textWeHere_r": {"bytes": "0xfb, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u023c\u019e"}, "dia_textWeHere_s": {"bytes": "0xfb, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u023c\u019e"}, "dia_textWeHere_frlg": {"bytes": "0xfb, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u023c\u019e"}, "dia_textWeHere_e": {"bytes": "0xfb, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u023c\u019e"}, "dia_textRecieved": {"bytes": "0xfc, 0x0, 0x0, 0xfd, 0x0, 0x0, 0xcd, 0x0, 0xca, 0xc9, 0xc5, 0x0, 0xc7, 0xc9, 0xc8, 0x0, 0xeb, 0xd9, 0xe6, 0xd9, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0x0, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206 \u01b2 S POK MON were\u0147sent to the PC \u019e"}, "dia_textYouMustBe_first": {"bytes": "0xbb, 0xdc, 0x0, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xfd, 0x0, 0x0, 0x0, 0xc3, 0xfe, 0xeb, 0xd5, 0xe7, 0x0, 0xe8, 0xe3, 0xe0, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd7, 0xe3, 0xe1, 0xdd, 0xe2, 0xdb, 0xb8, 0xfb, 0xc9, 0xdc, 0x0, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0xfe, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0x0, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0x0, 0xfb, 0xc9, 0xe6, 0x0, 0x0, 0xe6, 0xd5, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0xfe, 0xdd, 0xe2, 0xe8, 0xe6, 0xe3, 0xd8, 0xe9, 0xd7, 0xd9, 0x0, 0xe1, 0xed, 0xe7, 0xd9, 0xe0, 0xda, 0xb8, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "Ah You must be \u01b2 I\u0147was told you d be coming,\u023cOh I still wear my\u0147disguise Pardon \u023cOr rather let me\u0147introduce myself,\u019e"}, "dia_textYouMustBe_second": {"bytes": "0xbb, 0xdc, 0x0, 0x0, 0xfd, 0x0, 0x0, 0x0, 0xd1, 0xd9, 0xe0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xfe, 0xc1, 0xe3, 0xe3, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xfb, 0xc9, 0xdc, 0x0, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0xfe, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0x0, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0x0, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "Ah \u01b2 Welcome back \u0147Good to see you again \u023cOh I still wear my\u0147disguise Pardon \u019e"}, "dia_textIAm_first": {"bytes": "0xfb, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u023c\u019e"}, "dia_textIAm_second": {"bytes": "0xfb, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u023c\u019e"}, "dia_textPCConvo": {"bytes": "0xfc, 0x0, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbb, 0xdc, 0x0, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0x0, 0xfb, 0xc3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xdd, 0xe8, 0x0, 0xfd, 0x0, 0x0, 0xdc, 0xd5, 0xe7, 0xfe, 0xd5, 0xe6, 0xe6, 0xdd, 0xea, 0xd9, 0xd8, 0x0, 0xfb, 0xfc, 0x0, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0xe2, 0xd8, 0xd9, 0xd9, 0xd8, 0x0, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0xfe, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x0, 0xc7, 0xc9, 0xc8, 0x0, 0xfb, 0xfc, 0x0, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbf, 0xec, 0xd7, 0xd9, 0xe0, 0xe0, 0xd9, 0xe2, 0xe8, 0x0, 0xfb, 0xc3, 0x0, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xfe, 0xe1, 0xe3, 0xe1, 0xd9, 0xe2, 0xe8, 0xd5, 0xe6, 0xdd, 0xe0, 0xed, 0x0, 0x0, 0xe7, 0xe8, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206 FENNEL: Ah LOOKER \u023cI take it \u01b2 has\u0147arrived \u023c\u0206 LOOKER: Indeed \u023cThey re ready to receive\u0147their POK MON \u023c\u0206 FENNEL: Excellent \u023cI ll send them over\u0147momentarily stand by \u019e"}, "dia_textPCThanks": {"bytes": "0xfb, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u023c\u019e"}, "dia_textThank": {"bytes": "0xfc, 0x0, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xe8, 0xe3, 0xe4, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xd6, 0xed, 0x0, 0xfe, 0xfd, 0x0, 0x0, 0xfb, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206 Thanks for stopping by \u0147\u01b2 \u023c\u019e"}, "dia_textPCFull": {"bytes": "0xfc, 0x0, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0x0, 0xdd, 0xe7, 0x0, 0xda, 0xe9, 0xe0, 0xe0, 0x0, 0xfb, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206 FENNEL: It seems like\u0147the PC is full \u023c\u019e"}, "dia_textLookerFull": {"bytes": "0xfb, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u023c\u019e"}}, "GB": {"sending_text": {"bytes": "SENDING DATA", "numLines": 0, "pixelsPerChar": "Default", "pixelsInLine": 0, "includeBoxBreaks": false}, "prof_name": {"bytes": "FENNEL", "numLines": 0, "pixelsPerChar": "Default", "pixelsInLine": 0, "includeBoxBreaks": false}}, "GENERAL": {"option_english": {"bytes": "0xbf, 0xe2, 0xdb, 0xe0, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "English\u019e"}, "option_japanese": {"bytes": "0xc4, 0xd5, 0xe4, 0xd5, 0xe2, 0xd9, 0xe7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Japanese\u019e"}, "option_spanish": {"bytes": "0xcd, 0xe4, 0xd5, 0xe2, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Spanish\u019e"}, "option_french": {"bytes": "0xc0, 0xe6, 0xd9, 0xe2, 0xd7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "French\u019e"}, "option_german": {"bytes": "0xc1, 0xd9, 0xe6, 0xe1, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "German\u019e"}, "option_italian": {"bytes": "0xc3, 0xe8, 0xd5, 0xe0, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Italian\u019e"}, "option_korean": {"bytes": "0xc5, 0xe3, 0xe6, 0xd9, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Korean\u019e"}, "option_green": {"bytes": "0xc1, 0xe6, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Green\u019e"}, "option_red": {"bytes": "0xcc, 0xd9, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Red\u019e"}, "option_blue": {"bytes": "0xbc, 0xe0, 0xe9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Blue\u019e"}, "option_yellow": {"bytes": "0xd3, 0xd9, 0xe0, 0xe0, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Yellow\u019e"}, "option_gold": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Gold\u019e"}, "option_silver": {"bytes": "0xcd, 0xdd, 0xe0, 0xea, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Silver\u019e"}, "option_crystal": {"bytes": "0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Crystal\u019e"}, "option_cancel": {"bytes": "0xbd, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Cancel\u019e"}, "press_start": {"bytes": "0xca, 0xe9, 0xe7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xcd, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Push the Start Button \u019e"}, "option_transfer": {"bytes": "0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Transfer Pok mon\u019e"}, "option_dreamdex": {"bytes": "0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Dream Dex\u019e"}, "option_credits": {"bytes": "0xbd, 0xe6, 0xd9, 0xd8, 0xdd, 0xe8, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Credits\u019e"}, "intro_first": {"bytes": "0xc2, 0xd9, 0xe0, 0xe0, 0xe3, 0x0, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xfe, 0xfe, 0xc4, 0xe9, 0xe7, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xeb, 0xe3, 0xe6, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xd5, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xd1, 0xc3, 0xc6, 0xc6, 0xfe, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xed, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0xb8, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe0, 0xe3, 0xe2, 0xdb, 0xd9, 0xe6, 0xfe, 0xdd, 0xe2, 0x0, 0xd6, 0xd9, 0xe8, 0xd5, 0x0, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0xfe, 0xd5, 0xe6, 0xd9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0xfe, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xb8, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xdd, 0xe2, 0xdb, 0xfe, 0xe7, 0xd5, 0xdd, 0xd8, 0x0, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd9, 0xe2, 0xde, 0xe3, 0xed, 0x0, 0x0, 0xfb, 0x0, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 15, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": false, "text": "Hello Thank you for using\u0147Pok Transporter GB \u0147\u0147Just as a word of caution \u0147Pok Transporter GB WILL\u0147modify both the GameBoy and\u0147GameBoy Advance save files,\u0147\u0147Please note that while Pok \u0147Transporter GB is no longer\u0147in beta save file backups\u0147are still recommended before\u0147using, With that all being\u0147said please enjoy \u023c The Gears of Progress\u019e"}, "intro_legal": {"bytes": "0xca, 0xe3, 0xdf, 0x0, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0xfe, 0xe3, 0xe9, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe0, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd5, 0xe4, 0xe4, 0xe6, 0xd9, 0xd7, 0xdd, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0x0, 0xda, 0xe6, 0xd5, 0xe2, 0xd7, 0xdc, 0xdd, 0xe7, 0xd9, 0xfe, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xda, 0xdd, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xb8, 0x0, 0xc3, 0xe8, 0xfe, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xbb, 0xc6, 0xd1, 0xbb, 0xd3, 0xcd, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0xb8, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0xfe, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xb8, 0xfe, 0xfe, 0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0x0, 0x0, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0x0, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xe1, 0xe9, 0xe7, 0xdd, 0xd7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xeb, 0xe2, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0x0, 0x0, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0x0, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xc1, 0xbb, 0xc7, 0xbf, 0x0, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0xb8, 0x0, 0xfb, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xff", "numLines": 14, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": false, "text": "Pok Transporter GB was made\u0147out of love and appreciation\u0147for the Pokemon franchise\u0147with no profit in mind, It\u0147will ALWAYS be free,\u0147\u0147Please support the original\u0147developers,\u0147\u0147All Pokemon names sprites \u0147and music are owned by\u0147Nintendo Creatures Inc and\u0147GAME FREAK, \u023cPress A to continue\u019e"}, "cart_load_error": {"bytes": "0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xfe, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xb8, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0xfe, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xdd, 0xe2, 0xe7, 0xd9, 0xe6, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0x0, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe2, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0xfe, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xb8, 0xfb, 0xbb, 0xe0, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xea, 0xd9, 0xe0, 0xed, 0x0, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0x0, 0xe8, 0xe3, 0xfe, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xb8, 0xff", "numLines": 10, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "The Pok mon save\u0147file was not loaded\u0147successfully, Please\u0147remove and reinsert\u0147the Game Pak and\u0147then press the A\u0147button,\u023cAlternatively press\u0147the Select button to\u0147send this program to\u0147another GameBoy\u0147Advance,\u019e"}, "pulled_cart_error": {"bytes": "0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xb8, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe8, 0xe9, 0xe6, 0xe2, 0xfe, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xe6, 0xd9, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xb8, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "The Pok mon game was\u0147removed, Please turn\u0147off the system and\u0147restart the program,\u019e"}, "send_multiboot_instructions": {"bytes": "0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xdd, 0xe2, 0xfe, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0x0, 0xe1, 0xe3, 0xd8, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0xfe, 0xd5, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xc6, 0xdd, 0xe2, 0xdf, 0x0, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0xb8, 0xfb, 0xce, 0xdc, 0xd9, 0xe2, 0x0, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0xfe, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xb8, 0xff", "numLines": 10, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Please connect this\u0147system to another\u0147GameBoy Advance in\u0147Multiboot mode with\u0147a GameBoy Advance\u0147Link Cable,\u023cThen press the A\u0147button to begin\u0147sending Pok \u0147Transporter GB to\u0147the second GameBoy\u0147Advance,\u019e"}, "send_multiboot_wait": {"bytes": "0xcd, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0xfe, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xb8, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xeb, 0xd5, 0xdd, 0xe8, 0xb8, 0xfb, 0xc2, 0xe3, 0xe0, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbc, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xb8, 0xff", "numLines": 7, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Sending Pok \u0147Transporter GB to\u0147second GameBoy\u0147Advance system,\u0147Please wait,\u023cHold the B Button to\u0147cancel,\u019e"}, "send_multiboot_success": {"bytes": "0xfe, 0xca, 0xe3, 0xdf, 0x0, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0xfe, 0xeb, 0xd5, 0xe7, 0x0, 0xe7, 0xd9, 0xe2, 0xe8, 0xfe, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0x0, 0x0, 0xd3, 0xe3, 0xe9, 0xfe, 0xe1, 0xd5, 0xed, 0x0, 0xe2, 0xe3, 0xeb, 0x0, 0xe4, 0xe3, 0xeb, 0xd9, 0xe6, 0x0, 0xe3, 0xda, 0xda, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xb8, 0xff", "numLines": 7, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "\u0147Pok Transporter GB\u0147was sent\u0147successfully You\u0147may now power off\u0147this GameBoy Advance\u0147system,\u019e"}, "send_multiboot_failure": {"bytes": "0xfe, 0xbb, 0xe2, 0x0, 0xd9, 0xe6, 0xe6, 0xe3, 0xe6, 0x0, 0xe3, 0xd7, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xd8, 0xfe, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0xb8, 0xfb, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xfe, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xdd, 0xe2, 0xe7, 0xe8, 0xe6, 0xe9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0x0, 0xe7, 0xd7, 0xe6, 0xd9, 0xd9, 0xe2, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xb8, 0xff", "numLines": 7, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "\u0147An error occurred\u0147while sending Pok \u0147Transporter GB,\u023cPress the A button\u0147to return to the\u0147instructions screen\u0147and try again,\u019e"}, "kanto_name": {"bytes": "0xc5, 0xbb, 0xc8, 0xce, 0xc9, 0xf0, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "KANTO:\u019e"}, "johto_name": {"bytes": "0xc4, 0xc9, 0xc2, 0xce, 0xc9, 0xf0, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "JOHTO:\u019e"}}, "CREDITS": {"credits_page_1": {"bytes": "0xc6, 0xd9, 0xd5, 0xd8, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xf0, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Lead developer:\u0147\u0147The Gears of\u0147Progress\u019e"}, "credits_page_2": {"bytes": "0xc6, 0xe3, 0xdb, 0xe3, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xe3, 0x0, 0xdd, 0xd8, 0xd9, 0xd5, 0xe8, 0xe3, 0xe6, 0xf0, 0xfe, 0xfe, 0x0, 0xc4, 0xe3, 0xe1, 0xd9, 0xfe, 0xfe, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xeb, 0xe3, 0xe6, 0xdf, 0xf0, 0xfe, 0xfe, 0x0, 0xc6, 0xc4, 0x0, 0xbc, 0xdd, 0xe6, 0xd8, 0xe1, 0xd5, 0xe2, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Logo and co ideator:\u0147\u0147 Jome\u0147\u0147Spritework:\u0147\u0147 LJ Birdman\u019e"}, "credits_page_3": {"bytes": "0xc3, 0xd7, 0xe3, 0xe2, 0x0, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0x0, 0xc6, 0xe9, 0xdd, 0xdb, 0xdd, 0xce, 0xc5, 0xc9, 0xfe, 0x0, 0xc1, 0xe9, 0xdd, 0xbb, 0xd6, 0xd9, 0xe0, 0xfe, 0x0, 0xcd, 0xe3, 0xe9, 0xe6, 0xbb, 0xe4, 0xe4, 0xe0, 0xd9, 0xfe, 0x0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd5, 0xe6, 0xe8, 0xdd, 0xe7, 0xe8, 0xe7, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xcd, 0xdc, 0xe3, 0xeb, 0xd8, 0xe3, 0xeb, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0x0, 0xbd, 0xe0, 0xd9, 0xd5, 0xe6, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Icon Sprites:\u0147\u0147 LuigiTKO\u0147 GuiAbel\u0147 SourApple\u0147 the artists from\u0147Pok mon Showdown and\u0147Crystal Clear\u019e"}, "credits_page_4": {"bytes": "0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xe6, 0xd6, 0xdd, 0xe8, 0xe6, 0xd5, 0xe6, 0xed, 0xfe, 0xbd, 0xe3, 0xd8, 0xd9, 0x0, 0xbf, 0xec, 0xd9, 0xd7, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0x0, 0xce, 0xdd, 0xe1, 0xe3, 0xd0, 0xc7, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Remote and Arbitrary\u0147Code Execution\u0147assistance:\u0147\u0147 TimoVM\u019e"}, "credits_page_5": {"bytes": "0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0x0, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0x0, 0xe6, 0xdd, 0xe0, 0xd9, 0xed, 0xdf, 0xa7, 0xa5, 0xfe, 0x0, 0xcd, 0xdc, 0xd5, 0xe3, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Development\u0147assistance:\u0147\u0147 im a blisy\u0147 rileyk64\u0147 Shao\u019e"}, "credits_page_6": {"bytes": "0xcd, 0xe4, 0xd5, 0xd7, 0xd9, 0x0, 0xc9, 0xe4, 0xe8, 0xdd, 0xe1, 0xdd, 0xee, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xf0, 0xfe, 0xfe, 0x0, 0xd9, 0xd5, 0xe7, 0xed, 0xd5, 0xe7, 0xe4, 0xdd, 0xa4, 0xa2, 0xa5, 0xfe, 0xfe, 0xc6, 0xe3, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xcc, 0xc9, 0xc7, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0xfe, 0xda, 0xe9, 0xe2, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xf0, 0x0, 0xfb, 0x0, 0xe6, 0xdd, 0xe7, 0xdd, 0xe2, 0xdb, 0xca, 0xdc, 0xdd, 0xe0, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Space Optimization:\u0147\u0147 easyaspi314\u0147\u0147Loader ROM and\u0147Remote Multiboot\u0147functionality: \u023c risingPhil\u019e"}, "credits_page_7": {"bytes": "0xbc, 0xe9, 0xdd, 0xe0, 0xe8, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xf0, 0xfe, 0xfe, 0xfe, 0x0, 0xbe, 0xd9, 0xea, 0xdf, 0xdd, 0xe8, 0xca, 0xe6, 0xe3, 0xfe, 0x0, 0xc6, 0xdd, 0xd6, 0xce, 0xe3, 0xe2, 0xd7, 0xfe, 0x0, 0xc6, 0xdd, 0xd6, 0xc1, 0xbc, 0xbb, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Built using:\u0147\u0147\u0147 DevkitPro\u0147 LibTonc\u0147 LibGBA\u019e"}, "credits_page_8": {"bytes": "0xc3, 0xe2, 0xe7, 0xe4, 0xdd, 0xe6, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xeb, 0xe3, 0xe6, 0xdf, 0xe7, 0x0, 0xe3, 0xda, 0xf0, 0xfe, 0xfe, 0x0, 0xc1, 0xe3, 0xe4, 0xe4, 0xdd, 0xd9, 0xe6, 0xfe, 0x0, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0xfe, 0x0, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0x0, 0xcc, 0xbf, 0xce, 0xc3, 0xcc, 0xbf, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Inspired by the\u0147works of:\u0147\u0147 Goppier\u0147 Lorenzooone\u0147 im a blisy\u0147 RETIRE\u019e"}, "credits_page_9": {"bytes": "0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xe7, 0x0, 0xe9, 0xe7, 0xd9, 0xd8, 0xf0, 0xfe, 0xfe, 0xfe, 0x0, 0xc2, 0xd9, 0xec, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0x0, 0xca, 0xc5, 0xc2, 0xd9, 0xd2, 0xfe, 0x0, 0xd1, 0xbd, 0xa4, 0xce, 0xe3, 0xe3, 0xe0, 0xfe, 0x0, 0xcf, 0xe7, 0xd9, 0xe2, 0xe8, 0xdd, 0xfe, 0x0, 0xcd, 0xd5, 0xe4, 0xe4, 0xed, 0xc7, 0xdd, 0xd8, 0xce, 0xe3, 0xbb, 0xc1, 0xbc, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Programs used:\u0147\u0147\u0147 HexManiacAdvance\u0147 PKHeX\u0147 WC3Tool\u0147 Usenti\u0147 SappyMidToAGB\u019e"}, "credits_page_10": {"bytes": "0xc9, 0xe4, 0xd9, 0xe2, 0x0, 0xcd, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xc6, 0xdd, 0xd6, 0xe6, 0xd5, 0xe6, 0xdd, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0x0, 0xe0, 0xdd, 0xd6, 0xe8, 0xe3, 0xe2, 0xd7, 0x0, 0xd9, 0xec, 0xd5, 0xe1, 0xe4, 0xe0, 0xd9, 0xe7, 0xfe, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0x0, 0xdb, 0xd6, 0xd5, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0x0, 0xd5, 0xeb, 0xd9, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0x0, 0xd5, 0xe6, 0xd8, 0xe9, 0xdd, 0xe2, 0xe3, 0x0, 0xe4, 0xe3, 0xdf, 0xd9, 0x0, 0xdb, 0xd9, 0xe2, 0xa3, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Open Source Code and\u0147Libraries:\u0147\u0147 libtonc examples\u0147 PokemonGen3toGenX\u0147 gba link connection\u0147 awesome gbadev\u0147 arduino poke gen2\u019e"}, "credits_page_11": {"bytes": "0xcc, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0x0, 0xd5, 0xe6, 0xe1, 0x0, 0xd8, 0xe3, 0xd7, 0xe7, 0xfe, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0xfe, 0xc0, 0xe9, 0xe0, 0xe0, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xe7, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xfe, 0xda, 0xe3, 0xe9, 0xe2, 0xd8, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0x0, 0xe7, 0x0, 0xc1, 0xdd, 0xe8, 0xc2, 0xe9, 0xd6, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Research resources:\u0147\u0147 arm docs\u0147 PokemonGen3toGenX\u0147\u0147Full links can be\u0147found on this\u0147program s GitHub\u019e"}, "credits_page_12": {"bytes": "0xcc, 0xc9, 0xc7, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xd8, 0xd9, 0xd7, 0xe3, 0xe1, 0xe4, 0xdd, 0xe0, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xfe, 0xd7, 0xe6, 0xd9, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xcc, 0xbf, 0xce, 0xfe, 0xe8, 0xd9, 0xd5, 0xe1, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "ROM data obtained\u0147from decompilations\u0147created by the PRET\u0147team\u019e"}, "credits_page_13": {"bytes": "0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0xfe, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xf0, 0xfe, 0xfe, 0x0, 0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe4, 0xd9, 0xd8, 0xdd, 0xd5, 0xfe, 0x0, 0xcd, 0xd9, 0xe6, 0xd9, 0xd6, 0xdd, 0xdd, 0xfe, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xbb, 0xca, 0xc3, 0xb8, 0xd7, 0xe3, 0xe1, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Pok mon data\u0147obtained from:\u0147\u0147 Bulbapedia\u0147 Serebii\u0147 PokeAPI,com\u019e"}, "credits_page_14": {"bytes": "0xbe, 0xdd, 0xe7, 0xd7, 0xe3, 0xe6, 0xd8, 0x0, 0xd7, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xe8, 0xed, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0x0, 0xc2, 0xd9, 0xec, 0x0, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0xfe, 0x0, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0x0, 0xe4, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Discord community\u0147assistance:\u0147\u0147 Hex Maniac Advance\u0147Development\u0147 gbadev\u0147 pret\u019e"}, "credits_page_15": {"bytes": "0xd1, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xfe, 0x0, 0xc7, 0xd5, 0xd8, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Writing assistance:\u0147\u0147\u0147 Mad\u019e"}, "credits_page_16": {"bytes": "0xbb, 0xe2, 0x0, 0xdd, 0xe1, 0xe1, 0xd9, 0xe2, 0xe7, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0x0, 0xda, 0xe3, 0xe6, 0xfe, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xdd, 0xe2, 0xfe, 0xe6, 0xd9, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0x0, 0x0, 0xeb, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0xfe, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0xb8, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0xfe, 0xeb, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0xfe, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0xb8, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "An immense thanks to\u0147Lorenzooone for\u0147their assistance in\u0147reading writing\u0147save data, Without\u0147them this project\u0147would not have been\u0147possible,\u019e"}, "credits_page_17": {"bytes": "0xcd, 0xe4, 0xd9, 0xd7, 0xdd, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xbf, 0xe2, 0xe2, 0x0, 0x0, 0xe6, 0xe3, 0xdf, 0xe9, 0x0, 0x0, 0xcd, 0xe0, 0xd9, 0xd9, 0xe4, 0xed, 0x0, 0xfe, 0xbf, 0xee, 0xd5, 0x0, 0x0, 0xe7, 0xd5, 0xe6, 0xd5, 0xdc, 0xe8, 0xe3, 0xe2, 0xdd, 0xe2, 0x0, 0xfe, 0xbc, 0xd5, 0xe7, 0xd5, 0xd6, 0xdd, 0x0, 0x0, 0xc7, 0xd5, 0xd8, 0x0, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe3, 0xe2, 0xd9, 0x0, 0xeb, 0xdc, 0xe3, 0x0, 0xdc, 0xd5, 0xe7, 0xfe, 0xe0, 0xdd, 0xe7, 0xe8, 0xd9, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0xfe, 0xd5, 0xd6, 0xe3, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0xfe, 0xe1, 0xe3, 0xe2, 0xe8, 0xdc, 0xe7, 0x0, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Special thanks to\u0147Enn roku Sleepy \u0147Eza sarahtonin \u0147Basabi Mad and\u0147everyone who has\u0147listened to me talk\u0147about this for\u0147months \u019e"}, "credits_page_18": {"bytes": "0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x0, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0x0, 0xfe, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0x0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xfe, 0xe3, 0xda, 0x0, 0xe6, 0xd9, 0xe0, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0xfe, 0xd5, 0xe6, 0xd9, 0x0, 0xd7, 0xe3, 0xe4, 0xed, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0xfe, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0x0, 0x0, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0xfe, 0xc3, 0xe2, 0xd7, 0xb8, 0x0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0x0, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0xfe, 0xc3, 0xe2, 0xd7, 0xb8, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "All Pok mon names \u0147sprites and names\u0147of related resources\u0147are copyright\u0147Nintendo Creatures\u0147Inc, and GAME FREAK\u0147Inc,\u019e"}, "credits_page_19": {"bytes": "0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0xfe, 0xd9, 0xe2, 0xd8, 0xe3, 0xe6, 0xe7, 0xd9, 0xd8, 0x0, 0xe3, 0xe6, 0xfe, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xc0, 0xe6, 0xd9, 0xd5, 0xdf, 0xba, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xb8, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "This project is not\u0147endorsed or\u0147supported by\u0147GameFreak/Nintendo,\u0147\u0147Please support the\u0147original developers,\u019e"}}, "PKMN_NAMES": {"0": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "1": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "2": {"bytes": "0xc3, 0xea, 0xed, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ivysaur\u019e"}, "3": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "4": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "5": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "6": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "7": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "8": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "9": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "10": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "11": {"bytes": "0xc7, 0xd9, 0xe8, 0xd5, 0xe4, 0xe3, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Metapod\u019e"}, "12": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "13": {"bytes": "0xd1, 0xd9, 0xd9, 0xd8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weedle\u019e"}, "14": {"bytes": "0xc5, 0xd5, 0xdf, 0xe9, 0xe2, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kakuna\u019e"}, "15": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "16": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgey\u019e"}, "17": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "18": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xe3, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgeot\u019e"}, "19": {"bytes": "0xcc, 0xd5, 0xe8, 0xe8, 0xd5, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rattata\u019e"}, "20": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "21": {"bytes": "0xcd, 0xe4, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Spearow\u019e"}, "22": {"bytes": "0xc0, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Fearow\u019e"}, "23": {"bytes": "0xbf, 0xdf, 0xd5, 0xe2, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ekans\u019e"}, "24": {"bytes": "0xbb, 0xe6, 0xd6, 0xe3, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Arbok\u019e"}, "25": {"bytes": "0xca, 0xdd, 0xdf, 0xd5, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pikachu\u019e"}, "26": {"bytes": "0xcc, 0xd5, 0xdd, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raichu\u019e"}, "27": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "28": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "29": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "30": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "31": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "32": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "33": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "34": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "35": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "36": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "37": {"bytes": "0xd0, 0xe9, 0xe0, 0xe4, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vulpix\u019e"}, "38": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "39": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "40": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "41": {"bytes": "0xd4, 0xe9, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Zubat\u019e"}, "42": {"bytes": "0xc1, 0xe3, 0xe0, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golbat\u019e"}, "43": {"bytes": "0xc9, 0xd8, 0xd8, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Oddish\u019e"}, "44": {"bytes": "0xc1, 0xe0, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gloom\u019e"}, "45": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "46": {"bytes": "0xca, 0xd5, 0xe6, 0xd5, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Paras\u019e"}, "47": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "48": {"bytes": "0xd0, 0xd9, 0xe2, 0xe3, 0xe2, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venonat\u019e"}, "49": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "50": {"bytes": "0xbe, 0xdd, 0xdb, 0xe0, 0xd9, 0xe8, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Diglett\u019e"}, "51": {"bytes": "0xbe, 0xe9, 0xdb, 0xe8, 0xe6, 0xdd, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dugtrio\u019e"}, "52": {"bytes": "0xc7, 0xd9, 0xe3, 0xeb, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Meowth\u019e"}, "53": {"bytes": "0xca, 0xd9, 0xe6, 0xe7, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Persian\u019e"}, "54": {"bytes": "0xca, 0xe7, 0xed, 0xd8, 0xe9, 0xd7, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Psyduck\u019e"}, "55": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xe9, 0xd7, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golduck\u019e"}, "56": {"bytes": "0xc7, 0xd5, 0xe2, 0xdf, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mankey\u019e"}, "57": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "58": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "59": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "60": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xd5, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwag\u019e"}, "61": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "62": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "63": {"bytes": "0xbb, 0xd6, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Abra\u019e"}, "64": {"bytes": "0xc5, 0xd5, 0xd8, 0xd5, 0xd6, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kadabra\u019e"}, "65": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "66": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machop\u019e"}, "67": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xdf, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machoke\u019e"}, "68": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xd5, 0xe1, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machamp\u019e"}, "69": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "70": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "71": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "72": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "73": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "74": {"bytes": "0xc1, 0xd9, 0xe3, 0xd8, 0xe9, 0xd8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Geodude\u019e"}, "75": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "76": {"bytes": "0xc1, 0xe3, 0xe0, 0xd9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golem\u019e"}, "77": {"bytes": "0xca, 0xe3, 0xe2, 0xed, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ponyta\u019e"}, "78": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "79": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "80": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xd6, 0xe6, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowbro\u019e"}, "81": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "82": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "83": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "84": {"bytes": "0xbe, 0xe3, 0xd8, 0xe9, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Doduo\u019e"}, "85": {"bytes": "0xbe, 0xe3, 0xd8, 0xe6, 0xdd, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dodrio\u019e"}, "86": {"bytes": "0xcd, 0xd9, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seel\u019e"}, "87": {"bytes": "0xbe, 0xd9, 0xeb, 0xdb, 0xe3, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dewgong\u019e"}, "88": {"bytes": "0xc1, 0xe6, 0xdd, 0xe1, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Grimer\u019e"}, "89": {"bytes": "0xc7, 0xe9, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Muk\u019e"}, "90": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "91": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "92": {"bytes": "0xc1, 0xd5, 0xe7, 0xe8, 0xe0, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gastly\u019e"}, "93": {"bytes": "0xc2, 0xd5, 0xe9, 0xe2, 0xe8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Haunter\u019e"}, "94": {"bytes": "0xc1, 0xd9, 0xe2, 0xdb, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gengar\u019e"}, "95": {"bytes": "0xc9, 0xe2, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Onix\u019e"}, "96": {"bytes": "0xbe, 0xe6, 0xe3, 0xeb, 0xee, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Drowzee\u019e"}, "97": {"bytes": "0xc2, 0xed, 0xe4, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hypno\u019e"}, "98": {"bytes": "0xc5, 0xe6, 0xd5, 0xd6, 0xd6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Krabby\u019e"}, "99": {"bytes": "0xc5, 0xdd, 0xe2, 0xdb, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kingler\u019e"}, "100": {"bytes": "0xd0, 0xe3, 0xe0, 0xe8, 0xe3, 0xe6, 0xd6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Voltorb\u019e"}, "101": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "102": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "103": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "104": {"bytes": "0xbd, 0xe9, 0xd6, 0xe3, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cubone\u019e"}, "105": {"bytes": "0xc7, 0xd5, 0xe6, 0xe3, 0xeb, 0xd5, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Marowak\u019e"}, "106": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "107": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "108": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "109": {"bytes": "0xc5, 0xe3, 0xda, 0xda, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Koffing\u019e"}, "110": {"bytes": "0xd1, 0xd9, 0xd9, 0xee, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weezing\u019e"}, "111": {"bytes": "0xcc, 0xdc, 0xed, 0xdc, 0xe3, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rhyhorn\u019e"}, "112": {"bytes": "0xcc, 0xdc, 0xed, 0xd8, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rhydon\u019e"}, "113": {"bytes": "0xbd, 0xdc, 0xd5, 0xe2, 0xe7, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chansey\u019e"}, "114": {"bytes": "0xce, 0xd5, 0xe2, 0xdb, 0xd9, 0xe0, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tangela\u019e"}, "115": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "116": {"bytes": "0xc2, 0xe3, 0xe6, 0xe7, 0xd9, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Horsea\u019e"}, "117": {"bytes": "0xcd, 0xd9, 0xd5, 0xd8, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seadra\u019e"}, "118": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Goldeen\u019e"}, "119": {"bytes": "0xcd, 0xd9, 0xd5, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seaking\u019e"}, "120": {"bytes": "0xcd, 0xe8, 0xd5, 0xe6, 0xed, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Staryu\u019e"}, "121": {"bytes": "0xcd, 0xe8, 0xd5, 0xe6, 0xe1, 0xdd, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Starmie\u019e"}, "122": {"bytes": "0xfb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u023c\u019e"}, "123": {"bytes": "0xcd, 0xd7, 0xed, 0xe8, 0xdc, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Scyther\u019e"}, "124": {"bytes": "0xc4, 0xed, 0xe2, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jynx\u019e"}, "125": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "126": {"bytes": "0xc7, 0xd5, 0xdb, 0xe1, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magmar\u019e"}, "127": {"bytes": "0xca, 0xdd, 0xe2, 0xe7, 0xdd, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pinsir\u019e"}, "128": {"bytes": "0xce, 0xd5, 0xe9, 0xe6, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tauros\u019e"}, "129": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "130": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "131": {"bytes": "0xc6, 0xd5, 0xe4, 0xe6, 0xd5, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lapras\u019e"}, "132": {"bytes": "0xbe, 0xdd, 0xe8, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ditto\u019e"}, "133": {"bytes": "0xbf, 0xd9, 0xea, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Eevee\u019e"}, "134": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "135": {"bytes": "0xc4, 0xe3, 0xe0, 0xe8, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jolteon\u019e"}, "136": {"bytes": "0xc0, 0xe0, 0xd5, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Flareon\u019e"}, "137": {"bytes": "0xca, 0xe3, 0xe6, 0xed, 0xdb, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Porygon\u019e"}, "138": {"bytes": "0xc9, 0xe1, 0xd5, 0xe2, 0xed, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Omanyte\u019e"}, "139": {"bytes": "0xc9, 0xe1, 0xd5, 0xe7, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Omastar\u019e"}, "140": {"bytes": "0xc5, 0xd5, 0xd6, 0xe9, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kabuto\u019e"}, "141": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "142": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "143": {"bytes": "0xcd, 0xe2, 0xe3, 0xe6, 0xe0, 0xd5, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Snorlax\u019e"}, "144": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "145": {"bytes": "0xd4, 0xd5, 0xe4, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Zapdos\u019e"}, "146": {"bytes": "0xc7, 0xe3, 0xe0, 0xe8, 0xe6, 0xd9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Moltres\u019e"}, "147": {"bytes": "0xbe, 0xe6, 0xd5, 0xe8, 0xdd, 0xe2, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dratini\u019e"}, "148": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "149": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "150": {"bytes": "0xc7, 0xd9, 0xeb, 0xe8, 0xeb, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mewtwo\u019e"}, "151": {"bytes": "0xc7, 0xd9, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mew\u019e"}, "152": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "153": {"bytes": "0xbc, 0xd5, 0xed, 0xe0, 0xd9, 0xd9, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bayleef\u019e"}, "154": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "155": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "156": {"bytes": "0xcb, 0xe9, 0xdd, 0xe0, 0xd5, 0xea, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Quilava\u019e"}, "157": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "158": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "159": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "160": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "161": {"bytes": "0xcd, 0xd9, 0xe2, 0xe8, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sentret\u019e"}, "162": {"bytes": "0xc0, 0xe9, 0xe6, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Furret\u019e"}, "163": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "164": {"bytes": "0xc8, 0xe3, 0xd7, 0xe8, 0xe3, 0xeb, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Noctowl\u019e"}, "165": {"bytes": "0xc6, 0xd9, 0xd8, 0xed, 0xd6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ledyba\u019e"}, "166": {"bytes": "0xc6, 0xd9, 0xd8, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ledian\u019e"}, "167": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "168": {"bytes": "0xbb, 0xe6, 0xdd, 0xd5, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ariados\u019e"}, "169": {"bytes": "0xbd, 0xe6, 0xe3, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Crobat\u019e"}, "170": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "171": {"bytes": "0xc6, 0xd5, 0xe2, 0xe8, 0xe9, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lanturn\u019e"}, "172": {"bytes": "0xca, 0xdd, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pichu\u019e"}, "173": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xda, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cleffa\u019e"}, "174": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "175": {"bytes": "0xce, 0xe3, 0xdb, 0xd9, 0xe4, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Togepi\u019e"}, "176": {"bytes": "0xce, 0xe3, 0xdb, 0xd9, 0xe8, 0xdd, 0xd7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Togetic\u019e"}, "177": {"bytes": "0xc8, 0xd5, 0xe8, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Natu\u019e"}, "178": {"bytes": "0xd2, 0xd5, 0xe8, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Xatu\u019e"}, "179": {"bytes": "0xc7, 0xd5, 0xe6, 0xd9, 0xd9, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mareep\u019e"}, "180": {"bytes": "0xc0, 0xe0, 0xd5, 0xd5, 0xda, 0xda, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Flaaffy\u019e"}, "181": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "182": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "183": {"bytes": "0xc7, 0xd5, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Marill\u019e"}, "184": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "185": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "186": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "187": {"bytes": "0xc2, 0xe3, 0xe4, 0xe4, 0xdd, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hoppip\u019e"}, "188": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "189": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "190": {"bytes": "0xbb, 0xdd, 0xe4, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Aipom\u019e"}, "191": {"bytes": "0xcd, 0xe9, 0xe2, 0xdf, 0xd9, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sunkern\u019e"}, "192": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "193": {"bytes": "0xd3, 0xd5, 0xe2, 0xe1, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Yanma\u019e"}, "194": {"bytes": "0xd1, 0xe3, 0xe3, 0xe4, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wooper\u019e"}, "195": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "196": {"bytes": "0xbf, 0xe7, 0xe4, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Espeon\u019e"}, "197": {"bytes": "0xcf, 0xe1, 0xd6, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Umbreon\u019e"}, "198": {"bytes": "0xc7, 0xe9, 0xe6, 0xdf, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Murkrow\u019e"}, "199": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "200": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "201": {"bytes": "0xcf, 0xe2, 0xe3, 0xeb, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Unown\u019e"}, "202": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "203": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "204": {"bytes": "0xca, 0xdd, 0xe2, 0xd9, 0xd7, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pineco\u019e"}, "205": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "206": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "207": {"bytes": "0xc1, 0xe0, 0xdd, 0xdb, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gligar\u019e"}, "208": {"bytes": "0xcd, 0xe8, 0xd9, 0xd9, 0xe0, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Steelix\u019e"}, "209": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "210": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "211": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "212": {"bytes": "0xcd, 0xd7, 0xdd, 0xee, 0xe3, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Scizor\u019e"}, "213": {"bytes": "0xcd, 0xdc, 0xe9, 0xd7, 0xdf, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Shuckle\u019e"}, "214": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "215": {"bytes": "0xcd, 0xe2, 0xd9, 0xd5, 0xe7, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sneasel\u019e"}, "216": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "217": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "218": {"bytes": "0xcd, 0xe0, 0xe9, 0xdb, 0xe1, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slugma\u019e"}, "219": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "220": {"bytes": "0xcd, 0xeb, 0xdd, 0xe2, 0xe9, 0xd6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Swinub\u019e"}, "221": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "222": {"bytes": "0xbd, 0xe3, 0xe6, 0xe7, 0xe3, 0xe0, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Corsola\u019e"}, "223": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "224": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "225": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "226": {"bytes": "0xc7, 0xd5, 0xe2, 0xe8, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mantine\u019e"}, "227": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "228": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "229": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "230": {"bytes": "0xc5, 0xdd, 0xe2, 0xdb, 0xd8, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kingdra\u019e"}, "231": {"bytes": "0xca, 0xdc, 0xd5, 0xe2, 0xe4, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Phanpy\u019e"}, "232": {"bytes": "0xbe, 0xe3, 0xe2, 0xe4, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Donphan\u019e"}, "233": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "234": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "235": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "236": {"bytes": "0xce, 0xed, 0xe6, 0xe3, 0xdb, 0xe9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tyrogue\u019e"}, "237": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "238": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "239": {"bytes": "0xbf, 0xe0, 0xd9, 0xdf, 0xdd, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Elekid\u019e"}, "240": {"bytes": "0xc7, 0xd5, 0xdb, 0xd6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magby\u019e"}, "241": {"bytes": "0xc7, 0xdd, 0xe0, 0xe8, 0xd5, 0xe2, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Miltank\u019e"}, "242": {"bytes": "0xbc, 0xe0, 0xdd, 0xe7, 0xe7, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Blissey\u019e"}, "243": {"bytes": "0xcc, 0xd5, 0xdd, 0xdf, 0xe3, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raikou\u019e"}, "244": {"bytes": "0xbf, 0xe2, 0xe8, 0xd9, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Entei\u019e"}, "245": {"bytes": "0xcd, 0xe9, 0xdd, 0xd7, 0xe9, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Suicune\u019e"}, "246": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "247": {"bytes": "0xca, 0xe9, 0xe4, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pupitar\u019e"}, "248": {"bytes": "0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "\u019e"}, "249": {"bytes": "0xc6, 0xe9, 0xdb, 0xdd, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lugia\u019e"}, "250": {"bytes": "0xc2, 0xe3, 0x0, 0xc9, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ho Oh\u019e"}, "251": {"bytes": "0xbd, 0xd9, 0xe0, 0xd9, 0xd6, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Celebi\u019e"}}, "Warnings": {"0": "Warning! ' found, replacing with \u2019 !", "1": "Warning! ' found, replacing with \u2019 !", "2": "Warning! ' found, replacing with \u2019 !", "3": "Warning! ' found, replacing with \u2019 !", "4": "Warning! ' found, replacing with \u2019 !", "5": "Warning! ' found, replacing with \u2019 !", "6": "Warning! ' found, replacing with \u2019 !", "7": "Warning! ' found, replacing with \u2019 !", "8": "Warning! ' found, replacing with \u2019 !", "9": "Warning! ' found, replacing with \u2019 !", "10": "Warning! ' found, replacing with \u2019 !", "11": "Warning! ' found, replacing with \u2019 !", "12": "Warning! ' found, replacing with \u2019 !", "13": "Warning! ' found, replacing with \u2019 !", "14": "Warning! ' found, replacing with \u2019 !", "15": "Warning! ' found, replacing with \u2019 !", "16": "Warning! ' found, replacing with \u2019 !", "17": "Warning! ' found, replacing with \u2019 !", "18": "Warning! ' found, replacing with \u2019 !", "19": "Warning! ' found, replacing with \u2019 !", "20": "Warning! ' found, replacing with \u2019 !", "21": "Warning! ' found, replacing with \u2019 !", "22": "Warning! ' found, replacing with \u2019 !", "23": "Warning! ' found, replacing with \u2019 !", "24": "Warning! ' found, replacing with \u2019 !", "25": "Warning! ' found, replacing with \u2019 !", "26": "Warning! ' found, replacing with \u2019 !", "27": "Warning! ' found, replacing with \u2019 !", "28": "Warning! ' found, replacing with \u2019 !", "29": "Warning! ' found, replacing with \u2019 !", "30": "Warning! ' found, replacing with \u2019 !", "31": "Warning! ' found, replacing with \u2019 !", "32": "Warning! ' found, replacing with \u2019 !", "33": "Warning! ' found, replacing with \u2019 !", "34": "Warning! ' found, replacing with \u2019 !", "35": "Warning! ' found, replacing with \u2019 !", "36": "Warning! ' found, replacing with \u2019 !", "37": "Warning! ' found, replacing with \u2019 !", "38": "Warning! ' found, replacing with \u2019 !", "39": "Warning! ' found, replacing with \u2019 !", "40": "Warning! ' found, replacing with \u2019 !", "41": "Warning! ' found, replacing with \u2019 !", "42": "Warning! ' found, replacing with \u2019 !", "43": "Warning! ' found, replacing with \u2019 !", "44": "Warning! ' found, replacing with \u2019 !", "45": "Warning! ' found, replacing with \u2019 !", "46": "Warning! ' found, replacing with \u2019 !", "47": "Warning! ' found, replacing with \u2019 !", "48": "Warning! ' found, replacing with \u2019 !", "49": "Warning! ' found, replacing with \u2019 !", "50": "Warning! ' found, replacing with \u2019 !", "51": "Warning! ' found, replacing with \u2019 !", "52": "Warning! ' found, replacing with \u2019 !", "53": "Warning! ' found, replacing with \u2019 !"}, "Errors": {"0": "Error! No match found for char [ ! ]!", "1": "Error! No match found for char [ \u2019 ]!", "2": "Error! No match found for char [ , ]!", "3": "Error! No match found for char [ \u2019 ]!", "4": "Error! No match found for char [ , ]!", "5": "Error! No match found for char [ \u2019 ]!", "6": "Error! No match found for char [ ! ]!", "7": "Error! No match found for char [ , ]!", "8": "Error! No match found for char [ \u2019 ]!", "9": "Error! No match found for char [ , ]!", "10": "Error! No match found for char [ \u2019 ]!", "11": "Error! No match found for char [ ! ]!", "12": "Error! No match found for char [ , ]!", "13": "Error! No match found for char [ \u2019 ]!", "14": "Error! No match found for char [ \u00e9 ]!", "15": "Error! No match found for char [ \u2019 ]!", "16": "Error! No match found for char [ \u00e9 ]!", "17": "Error! No match found for char [ ! ]!", "18": "Error! No match found for char [ \u2019 ]!", "19": "Error! No match found for char [ , ]!", "20": "Error! No match found for char [ - ]!", "21": "Error! No match found for char [ \u2019 ]!", "22": "Error! No match found for char [ ! ]!", "23": "Error! No match found for char [ \u2019 ]!", "24": "Error! No match found for char [ ! ]!", "25": "Error! No match found for char [ \u00e9 ]!", "26": "Error! No match found for char [ ! ]!", "27": "Error! No match found for char [ \u2019 ]!", "28": "Error! No match found for char [ \u00e9 ]!", "29": "Error! No match found for char [ \u00e9 ]!", "30": "Error! No match found for char [ - ]!", "31": "Error! No match found for char [ \u2019 ]!", "32": "Error! No match found for char [ \u00e9 ]!", "33": "Error! No match found for char [ - ]!", "34": "Error! No match found for char [ \u2019 ]!", "35": "Error! No match found for char [ ! ]!", "36": "Error! No match found for char [ , ]!", "37": "Error! No match found for char [ - ]!", "38": "Error! No match found for char [ ! ]!", "39": "Error! No match found for char [ \u2019 ]!", "40": "Error! No match found for char [ \u2019 ]!", "41": "Error! No match found for char [ , ]!", "42": "Error! No match found for char [ ! ]!", "43": "Error! No match found for char [ ! ]!", "44": "Error! No match found for char [ \u2019 ]!", "45": "Error! No match found for char [ \u2019 ]!", "46": "Error! No match found for char [ , ]!", "47": "Error! No match found for char [ ! ]!", "48": "Error! No match found for char [ \u2019 ]!", "49": "Error! No match found for char [ ! ]!", "50": "Error! No match found for char [ , ]!", "51": "Error! No match found for char [ - ]!", "52": "Error! No match found for char [ ! ]!", "53": "Error! No match found for char [ \u00e9 ]!", "54": "Error! No match found for char [ , ]!", "55": "Error! No match found for char [ ! ]!", "56": "Error! No match found for char [ ! ]!", "57": "Error! No match found for char [ , ]!", "58": "Error! No match found for char [ - ]!", "59": "Error! No match found for char [ ! ]!", "60": "Error! No match found for char [ \u00e9 ]!", "61": "Error! No match found for char [ , ]!", "62": "Error! No match found for char [ ! ]!", "63": "Error! No match found for char [ ! ]!", "64": "Error! No match found for char [ , ]!", "65": "Error! No match found for char [ \u2019 ]!", "66": "Error! No match found for char [ ! ]!", "67": "Error! No match found for char [ \u2019 ]!", "68": "Error! No match found for char [ ! ]!", "69": "Error! No match found for char [ , ]!", "70": "Error! No match found for char [ \u00e9 ]!", "71": "Error! No match found for char [ \u00e9 ]!", "72": "Error! No match found for char [ , ]!", "73": "Error! No match found for char [ \u2019 ]!", "74": "Error! No match found for char [ , ]!", "75": "Error! No match found for char [ , ]!", "76": "Error! No match found for char [ , ]!", "77": "Error! No match found for char [ ! ]!", "78": "Error! No match found for char [ ! ]!", "79": "Error! No match found for char [ ! ]!", "80": "Error! No match found for char [ \u2019 ]!", "81": "Error! No match found for char [ \u00e9 ]!", "82": "Error! No match found for char [ \u2019 ]!", "83": "Error! No match found for char [ ! ]!", "84": "Error! No match found for char [ \u2019 ]!", "85": "Error! No match found for char [ \u2019 ]!", "86": "Error! No match found for char [ \u2019 ]!", "87": "Error! No match found for char [ , ]!", "88": "Error! No match found for char [ \u2019 ]!", "89": "Error! No match found for char [ ! ]!", "90": "Error! No match found for char [ \u2019 ]!", "91": "Error! No match found for char [ ! ]!", "92": "Error! No match found for char [ \u2019 ]!", "93": "Error! No match found for char [ \u00e9 ]!", "94": "Error! No match found for char [ ! ]!", "95": "Error! No match found for char [ \u00e9 ]!", "96": "Error! No match found for char [ ! ]!", "97": "Error! No match found for char [ \u2019 ]!", "98": "Error! No match found for char [ \u00e9 ]!", "99": "Error! No match found for char [ ! ]!", "100": "Error! No match found for char [ \u00e9 ]!", "101": "Error! No match found for char [ ! ]!", "102": "Error! No match found for char [ \u2019 ]!", "103": "Error! No match found for char [ \u00e9 ]!", "104": "Error! No match found for char [ ! ]!", "105": "Error! No match found for char [ \u00e9 ]!", "106": "Error! No match found for char [ ! ]!", "107": "Error! No match found for char [ ! ]!", "108": "Error! No match found for char [ \u00e9 ]!", "109": "Error! No match found for char [ , ]!", "110": "Error! No match found for char [ ! ]!", "111": "Error! No match found for char [ ! ]!", "112": "Error! No match found for char [ , ]!", "113": "Error! No match found for char [ ! ]!", "114": "Error! No match found for char [ \u2019 ]!", "115": "Error! No match found for char [ , ]!", "116": "Error! No match found for char [ , ]!", "117": "Error! No match found for char [ - ]!", "118": "Error! No match found for char [ ! ]!", "119": "Error! No match found for char [ \u00e9 ]!", "120": "Error! No match found for char [ \u2019 ]!", "121": "Error! No match found for char [ \u00e9 ]!", "122": "Error! No match found for char [ \u2019 ]!", "123": "Error! No match found for char [ ! ]!", "124": "Error! No match found for char [ , ]!", "125": "Error! No match found for char [ \u2019 ]!", "126": "Error! No match found for char [ \u00e9 ]!", "127": "Error! No match found for char [ ! ]!", "128": "Error! No match found for char [ ! ]!", "129": "Error! No match found for char [ , ]!", "130": "Error! No match found for char [ \u00e9 ]!", "131": "Error! No match found for char [ ? ]!", "132": "Error! No match found for char [ \u00e9 ]!", "133": "Error! No match found for char [ \u2019 ]!", "134": "Error! No match found for char [ ? ]!", "135": "Error! No match found for char [ \u2019 ]!", "136": "Error! No match found for char [ , ]!", "137": "Error! No match found for char [ ! ]!", "138": "Error! No match found for char [ \u2019 ]!", "139": "Error! No match found for char [ \u00e9 ]!", "140": "Error! No match found for char [ , ]!", "141": "Error! No match found for char [ \u00e9 ]!", "142": "Error! No match found for char [ , ]!", "143": "Error! No match found for char [ \u2019 ]!", "144": "Error! No match found for char [ , ]!", "145": "Error! No match found for char [ \u00e9 ]!", "146": "Error! No match found for char [ \u00e9 ]!", "147": "Error! No match found for char [ ! ]!", "148": "Error! No match found for char [ , ]!", "149": "Error! No match found for char [ \u2019 ]!", "150": "Error! No match found for char [ \u2019 ]!", "151": "Error! No match found for char [ , ]!", "152": "Error! No match found for char [ \u2019 ]!", "153": "Error! No match found for char [ , ]!", "154": "Error! No match found for char [ , ]!", "155": "Error! No match found for char [ , ]!", "156": "Error! No match found for char [ , ]!", "157": "Error! No match found for char [ \u2019 ]!", "158": "Error! No match found for char [ \u2019 ]!", "159": "Error! No match found for char [ ? ]!", "160": "Error! No match found for char [ \u00e9 ]!", "161": "Error! No match found for char [ ! ]!", "162": "Error! No match found for char [ ! ]!", "163": "Error! No match found for char [ ! ]!", "164": "Error! No match found for char [ \u00e9 ]!", "165": "Error! No match found for char [ \u00e9 ]!", "166": "Error! No match found for char [ \u00e9 ]!", "167": "Error! No match found for char [ ! ]!", "168": "Error! No match found for char [ ! ]!", "169": "Error! No match found for char [ ! ]!", "170": "Error! No match found for char [ \u00e9 ]!", "171": "Error! No match found for char [ , ]!", "172": "Error! No match found for char [ ! ]!", "173": "Error! No match found for char [ ! ]!", "174": "Error! No match found for char [ \u2019 ]!", "175": "Error! No match found for char [ ! ]!", "176": "Error! No match found for char [ \u2019 ]!", "177": "Error! No match found for char [ ! ]!", "178": "Error! No match found for char [ \u2019 ]!", "179": "Error! No match found for char [ ! ]!", "180": "Error! No match found for char [ \u2019 ]!", "181": "Error! No match found for char [ ! ]!", "182": "Error! No match found for char [ \u2019 ]!", "183": "Error! No match found for char [ ! ]!", "184": "Error! No match found for char [ \u00e9 ]!", "185": "Error! No match found for char [ ? ]!", "186": "Error! No match found for char [ \u00e9 ]!", "187": "Error! No match found for char [ ? ]!", "188": "Error! No match found for char [ , ]!", "189": "Error! No match found for char [ \u2019 ]!", "190": "Error! No match found for char [ \u00e9 ]!", "191": "Error! No match found for char [ \u2019 ]!", "192": "Error! No match found for char [ ! ]!", "193": "Error! No match found for char [ , ]!", "194": "Error! No match found for char [ \u2019 ]!", "195": "Error! No match found for char [ \u00e9 ]!", "196": "Error! No match found for char [ \u2019 ]!", "197": "Error! No match found for char [ ! ]!", "198": "Error! No match found for char [ , ]!", "199": "Error! No match found for char [ \u00e9 ]!", "200": "Error! No match found for char [ , ]!", "201": "Error! No match found for char [ \u2026 ]!", "202": "Error! No match found for char [ \u00c0 ]!", "203": "Error! No match found for char [ \u00cb ]!", "204": "Error! No match found for char [ , ]!", "205": "Error! No match found for char [ , ]!", "206": "Error! No match found for char [ ! ]!", "207": "Error! No match found for char [ \u00c0 ]!", "208": "Error! No match found for char [ \u00cb ]!", "209": "Error! No match found for char [ , ]!", "210": "Error! No match found for char [ , ]!", "211": "Error! No match found for char [ ! ]!", "212": "Error! No match found for char [ \u00c0 ]!", "213": "Error! No match found for char [ \u00cb ]!", "214": "Error! No match found for char [ , ]!", "215": "Error! No match found for char [ , ]!", "216": "Error! No match found for char [ ! ]!", "217": "ERROR! Sentence \"\u0206\u00c0\u00cbLOOKER: I am here in\u0147Hoenn to find the leader\u0147MAXIE. \" is too long!", "218": "ERROR! Sentence \"\u0206\u00c0\u00cbLOOKER: I am here in\u0147Hoenn to find the leader\u0147ARCHIE. \" is too long!", "219": "ERROR! Sentence \"\u0206\u00c0\u00cbLOOKER: I am here in\u0147Kanto to find the leader\u0147GIOVANNI. \" is too long!", "220": "ERROR! Sentence \"\u0206\u00c0\u00cbLOOKER: I am here in\u0147Hoenn to find the leaders\u0147MAXIE and ARCHIE. \" is too long!", "221": "Error! No match found for char [ \u00c0 ]!", "222": "Error! No match found for char [ \u00c1 ]!", "223": "Error! No match found for char [ \u00c0 ]!", "224": "Error! No match found for char [ \u2019 ]!", "225": "Error! No match found for char [ \u00e9 ]!", "226": "Error! No match found for char [ ! ]!", "227": "Error! No match found for char [ ! ]!", "228": "Error! No match found for char [ \u00c0 ]!", "229": "Error! No match found for char [ ! ]!", "230": "Error! No match found for char [ \u2019 ]!", "231": "Error! No match found for char [ ! ]!", "232": "Error! No match found for char [ ! ]!", "233": "Error! No match found for char [ ! ]!", "234": "Error! No match found for char [ , ]!", "235": "Error! No match found for char [ , ]!", "236": "Error! No match found for char [ , ]!", "237": "Error! No match found for char [ \u00c0 ]!", "238": "Error! No match found for char [ ! ]!", "239": "Error! No match found for char [ ! ]!", "240": "Error! No match found for char [ ! ]!", "241": "Error! No match found for char [ ! ]!", "242": "Error! No match found for char [ ! ]!", "243": "Error! No match found for char [ ! ]!", "244": "ERROR! Sentence \"\u0206\u00c0\u00cbI am a globe-trotting\u0147elite of the International\u0147Police. \" is too long!", "245": "ERROR! Sentence \"\u0206\u00c0\u00cbIt is I, globe-trotting\u0147elite of the International\u0147Police. \" is too long!", "246": "Error! No match found for char [ \u00c0 ]!", "247": "Error! No match found for char [ \u00c9 ]!", "248": "Error! No match found for char [ , ]!", "249": "Error! No match found for char [ ! ]!", "250": "Error! No match found for char [ \u00c0 ]!", "251": "Error! No match found for char [ ? ]!", "252": "Error! No match found for char [ \u00c0 ]!", "253": "Error! No match found for char [ \u00cb ]!", "254": "Error! No match found for char [ ! ]!", "255": "Error! No match found for char [ \u2019 ]!", "256": "Error! No match found for char [ \u00e9 ]!", "257": "Error! No match found for char [ ! ]!", "258": "Error! No match found for char [ \u00c0 ]!", "259": "Error! No match found for char [ \u00c9 ]!", "260": "Error! No match found for char [ ! ]!", "261": "Error! No match found for char [ \u2019 ]!", "262": "Error! No match found for char [ \u2026 ]!", "263": "Error! No match found for char [ ! ]!", "264": "ERROR! Sentence \"\u0206\u00c0\u00c9FENNEL: It looks like\u0147everything was sent to\u0147your PC successfully! \" is too long!", "265": "ERROR! Sentence \"If you\u2019ll excuse me, I\u0147must return to my\u0147disguise. \" is too long!", "266": "Error! No match found for char [ \u00c0 ]!", "267": "Error! No match found for char [ \u00cb ]!", "268": "Error! No match found for char [ , ]!", "269": "Error! No match found for char [ \u00c0 ]!", "270": "Error! No match found for char [ ! ]!", "271": "ERROR! Sentence \"Go make some room, and I\u0147can send over the rest of\u0147your POK\u00e9MON. \" is too long!", "272": "Error! No match found for char [ \u00c0 ]!", "273": "Error! No match found for char [ \u00c9 ]!", "274": "Error! No match found for char [ ! ]!", "275": "ERROR! Sentence \"\u0206\u00c0\u00cbLOOKER: Speak to me\u0147again after you\u2019ve made\u0147room, \u01b2\u00c0! \" is too long!", "276": "Error! No match found for char [ ! ]!", "277": "Error! No match found for char [ \u00e9 ]!", "278": "ERROR! Made a line break when disabled, sentence \"Hello! Thank you for using\u0147Pok\u00e9 Transporter GB! \u0147\u0147Just as a word of caution-\u0147Pok\u00e9 Transporter GB WILL\u0147modify both the GameBoy and\u0147GameBoy Advance save files. \u0147\u0147Please note that while Pok\u00e9\u0147Transporter GB is no longer\u0147in beta, save file backups\u0147are still recommended before\u0147using. With that all being\u0147said, please enjoy! \u023c\" is too long!", "279": "Error! No match found for char [ ! ]!", "280": "Error! No match found for char [ \u00e9 ]!", "281": "Error! No match found for char [ ! ]!", "282": "Error! No match found for char [ - ]!", "283": "Error! No match found for char [ \u00e9 ]!", "284": "Error! No match found for char [ \u00e9 ]!", "285": "Error! No match found for char [ , ]!", "286": "Error! No match found for char [ , ]!", "287": "Error! No match found for char [ ! ]!", "288": "Error! No match found for char [ - ]!", "289": "ERROR! Made a line break when disabled, sentence \"Pok\u00e9 Transporter GB was made\u0147out of love and appreciation\u0147for the Pokemon franchise\u0147with no profit in mind. It\u0147will ALWAYS be free. \u0147\u0147Please support the original\u0147developers. \u0147\u0147All Pokemon names, sprites,\u0147and music are owned by\u0147Nintendo, Creatures Inc, and\u0147GAME FREAK. \u023c\" is too long!", "290": "Error! No match found for char [ \u00e9 ]!", "291": "Error! No match found for char [ , ]!", "292": "Error! No match found for char [ , ]!", "293": "Error! No match found for char [ , ]!", "294": "Error! No match found for char [ , ]!", "295": "ERROR! Made a line break when disabled, sentence \"The Pok\u00e9mon save\u0147file was not loaded\u0147successfully. Please\u0147remove and reinsert\u0147the Game Pak, and\u0147then press the A\u0147button. \u0147\u023c\" is too long!", "296": "Error! No match found for char [ \u00e9 ]!", "297": "Error! No match found for char [ , ]!", "298": "Error! No match found for char [ , ]!", "299": "Error! No match found for char [ \u00e9 ]!", "300": "ERROR! Made a line break when disabled, sentence \"Please connect this\u0147system to another\u0147GameBoy Advance in\u0147Multiboot mode with\u0147a GameBoy Advance\u0147Link Cable. \u0147\u023c\" is too long!", "301": "Error! No match found for char [ , ]!", "302": "Error! No match found for char [ \u00e9 ]!", "303": "ERROR! Made a line break when disabled, sentence \"Sending Pok\u00e9\u0147Transporter GB to\u0147second GameBoy\u0147Advance system. \u0147Please wait. \u0147\u023c\" is too long!", "304": "Error! No match found for char [ \u00e9 ]!", "305": "Error! No match found for char [ \u00e9 ]!", "306": "Error! No match found for char [ ! ]!", "307": "ERROR! Made a line break when disabled, sentence \"\u0147An error occurred\u0147while sending Pok\u00e9\u0147Transporter GB.\u023c\" is too long!", "308": "Error! No match found for char [ \u00e9 ]!", "309": "Error! No match found for char [ - ]!", "310": "Error! No match found for char [ - ]!", "311": "Error! No match found for char [ - ]!", "312": "Error! No match found for char [ - ]!", "313": "Error! No match found for char [ - ]!", "314": "Error! No match found for char [ - ]!", "315": "Error! No match found for char [ & ]!", "316": "Error! No match found for char [ \u00e9 ]!", "317": "Error! No match found for char [ - ]!", "318": "Error! No match found for char [ - ]!", "319": "Error! No match found for char [ - ]!", "320": "Error! No match found for char [ - ]!", "321": "ERROR! Made a line break when disabled, sentence \"Space Optimization: \u0147\u0147-easyaspi314 \u0147\u0147Loader ROM and\u0147Remote Multiboot\u0147functionality: \u023c\" is too long!", "322": "Error! No match found for char [ - ]!", "323": "Error! No match found for char [ - ]!", "324": "Error! No match found for char [ - ]!", "325": "Error! No match found for char [ - ]!", "326": "Error! No match found for char [ - ]!", "327": "Error! No match found for char [ - ]!", "328": "Error! No match found for char [ - ]!", "329": "Error! No match found for char [ - ]!", "330": "Error! No match found for char [ - ]!", "331": "Error! No match found for char [ - ]!", "332": "Error! No match found for char [ - ]!", "333": "Error! No match found for char [ - ]!", "334": "Error! No match found for char [ - ]!", "335": "Error! No match found for char [ - ]!", "336": "Error! No match found for char [ - ]!", "337": "Error! No match found for char [ - ]!", "338": "Error! No match found for char [ - ]!", "339": "Error! No match found for char [ - ]!", "340": "Error! No match found for char [ - ]!", "341": "Error! No match found for char [ - ]!", "342": "Error! No match found for char [ - ]!", "343": "Error! No match found for char [ - ]!", "344": "Error! No match found for char [ - ]!", "345": "Error! No match found for char [ - ]!", "346": "Error! No match found for char [ - ]!", "347": "Error! No match found for char [ - ]!", "348": "Error! No match found for char [ - ]!", "349": "Error! No match found for char [ - ]!", "350": "Error! No match found for char [ \u2019 ]!", "351": "Error! No match found for char [ \u00e9 ]!", "352": "Error! No match found for char [ - ]!", "353": "Error! No match found for char [ - ]!", "354": "Error! No match found for char [ - ]!", "355": "Error! No match found for char [ - ]!", "356": "Error! No match found for char [ - ]!", "357": "Error! No match found for char [ - ]!", "358": "Error! No match found for char [ - ]!", "359": "Error! No match found for char [ & ]!", "360": "Error! No match found for char [ , ]!", "361": "Error! No match found for char [ , ]!", "362": "Error! No match found for char [ , ]!", "363": "Error! No match found for char [ , ]!", "364": "Error! No match found for char [ , ]!", "365": "Error! No match found for char [ , ]!", "366": "Error! No match found for char [ , ]!", "367": "Error! No match found for char [ , ]!", "368": "Error! No match found for char [ ! ]!", "369": "Error! No match found for char [ \u00e9 ]!", "370": "Error! No match found for char [ , ]!", "371": "Error! No match found for char [ , ]!", "372": "Error! No match found for char [ , ]!", "373": "Error! No match found for char [ , ]!", "374": "ERROR: Word MissingNo exceeds alloted length", "375": "ERROR: Word Bulbasaur exceeds alloted length", "376": "ERROR: Word Venusaur exceeds alloted length", "377": "ERROR: Word Charmander exceeds alloted length", "378": "ERROR: Word Charmeleon exceeds alloted length", "379": "ERROR: Word Charizard exceeds alloted length", "380": "ERROR: Word Squirtle exceeds alloted length", "381": "ERROR: Word Wartortle exceeds alloted length", "382": "ERROR: Word Blastoise exceeds alloted length", "383": "ERROR: Word Caterpie exceeds alloted length", "384": "ERROR: Word Butterfree exceeds alloted length", "385": "ERROR: Word Beedrill exceeds alloted length", "386": "ERROR: Word Pidgeotto exceeds alloted length", "387": "ERROR: Word Raticate exceeds alloted length", "388": "ERROR: Word Sandshrew exceeds alloted length", "389": "ERROR: Word Sandslash exceeds alloted length", "390": "ERROR: Word Nidoran\u2640 exceeds alloted length", "391": "ERROR: Word Nidorina exceeds alloted length", "392": "ERROR: Word Nidoqueen exceeds alloted length", "393": "ERROR: Word Nidoran\u2642 exceeds alloted length", "394": "ERROR: Word Nidorino exceeds alloted length", "395": "ERROR: Word Nidoking exceeds alloted length", "396": "ERROR: Word Clefairy exceeds alloted length", "397": "ERROR: Word Clefable exceeds alloted length", "398": "ERROR: Word Ninetales exceeds alloted length", "399": "ERROR: Word Jigglypuff exceeds alloted length", "400": "ERROR: Word Wigglytuff exceeds alloted length", "401": "ERROR: Word Vileplume exceeds alloted length", "402": "ERROR: Word Parasect exceeds alloted length", "403": "ERROR: Word Venomoth exceeds alloted length", "404": "ERROR: Word Primeape exceeds alloted length", "405": "ERROR: Word Growlithe exceeds alloted length", "406": "ERROR: Word Arcanine exceeds alloted length", "407": "ERROR: Word Poliwhirl exceeds alloted length", "408": "ERROR: Word Poliwrath exceeds alloted length", "409": "ERROR: Word Alakazam exceeds alloted length", "410": "ERROR: Word Bellsprout exceeds alloted length", "411": "ERROR: Word Weepinbell exceeds alloted length", "412": "ERROR: Word Victreebel exceeds alloted length", "413": "ERROR: Word Tentacool exceeds alloted length", "414": "ERROR: Word Tentacruel exceeds alloted length", "415": "ERROR: Word Graveler exceeds alloted length", "416": "ERROR: Word Rapidash exceeds alloted length", "417": "ERROR: Word Slowpoke exceeds alloted length", "418": "ERROR: Word Magnemite exceeds alloted length", "419": "ERROR: Word Magneton exceeds alloted length", "420": "ERROR: Word Farfetch'd exceeds alloted length", "421": "ERROR: Word Shellder exceeds alloted length", "422": "ERROR: Word Cloyster exceeds alloted length", "423": "ERROR: Word Electrode exceeds alloted length", "424": "ERROR: Word Exeggcute exceeds alloted length", "425": "ERROR: Word Exeggutor exceeds alloted length", "426": "ERROR: Word Hitmonlee exceeds alloted length", "427": "ERROR: Word Hitmonchan exceeds alloted length", "428": "ERROR: Word Lickitung exceeds alloted length", "429": "ERROR: Word Kangaskhan exceeds alloted length", "430": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "431": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "432": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "433": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "434": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "435": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "436": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "437": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "438": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "439": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "440": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "441": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "442": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "443": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "444": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "445": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "446": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "447": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "448": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "449": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "450": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "451": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "452": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "453": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "454": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "455": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "456": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "457": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "458": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "459": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "460": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "461": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "462": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "463": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "464": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "465": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "466": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "467": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "468": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "469": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "470": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "471": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "472": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "473": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "474": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "475": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "476": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "477": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "478": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "479": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "480": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "481": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "482": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "483": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "484": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "485": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "486": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "487": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "488": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "489": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "490": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "491": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "492": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "493": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "494": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "495": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "496": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "497": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "498": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "499": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "500": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "501": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "502": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "503": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "504": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "505": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "506": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "507": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "508": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "509": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "510": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "511": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "512": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "513": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "514": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "515": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "516": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "517": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "518": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "519": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "520": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "521": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "522": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "523": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "524": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "525": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "526": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "527": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "528": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "529": "ERROR! Made a line break when disabled, sentence \"\u023c\" is too long!", "530": "ERROR! Sentence \"Mr.\u0147Mime \" is too long!", "531": "ERROR: Word Electabuzz exceeds alloted length", "532": "ERROR: Word Magikarp exceeds alloted length", "533": "ERROR: Word Gyarados exceeds alloted length", "534": "ERROR: Word Vaporeon exceeds alloted length", "535": "ERROR: Word Kabutops exceeds alloted length", "536": "ERROR: Word Aerodactyl exceeds alloted length", "537": "ERROR: Word Articuno exceeds alloted length", "538": "ERROR: Word Dragonair exceeds alloted length", "539": "ERROR: Word Dragonite exceeds alloted length", "540": "ERROR: Word Chikorita exceeds alloted length", "541": "ERROR: Word Meganium exceeds alloted length", "542": "ERROR: Word Cyndaquil exceeds alloted length", "543": "ERROR: Word Typhlosion exceeds alloted length", "544": "ERROR: Word Totodile exceeds alloted length", "545": "ERROR: Word Croconaw exceeds alloted length", "546": "ERROR: Word Feraligatr exceeds alloted length", "547": "ERROR: Word Hoothoot exceeds alloted length", "548": "ERROR: Word Spinarak exceeds alloted length", "549": "ERROR: Word Chinchou exceeds alloted length", "550": "ERROR: Word Igglybuff exceeds alloted length", "551": "ERROR: Word Ampharos exceeds alloted length", "552": "ERROR: Word Bellossom exceeds alloted length", "553": "ERROR: Word Azumarill exceeds alloted length", "554": "ERROR: Word Sudowoodo exceeds alloted length", "555": "ERROR: Word Politoed exceeds alloted length", "556": "ERROR: Word Skiploom exceeds alloted length", "557": "ERROR: Word Jumpluff exceeds alloted length", "558": "ERROR: Word Sunflora exceeds alloted length", "559": "ERROR: Word Quagsire exceeds alloted length", "560": "ERROR: Word Slowking exceeds alloted length", "561": "ERROR: Word Misdreavus exceeds alloted length", "562": "ERROR: Word Wobbuffet exceeds alloted length", "563": "ERROR: Word Girafarig exceeds alloted length", "564": "ERROR: Word Forretress exceeds alloted length", "565": "ERROR: Word Dunsparce exceeds alloted length", "566": "ERROR: Word Snubbull exceeds alloted length", "567": "ERROR: Word Granbull exceeds alloted length", "568": "ERROR: Word Qwilfish exceeds alloted length", "569": "ERROR: Word Heracross exceeds alloted length", "570": "ERROR: Word Teddiursa exceeds alloted length", "571": "ERROR: Word Ursaring exceeds alloted length", "572": "ERROR: Word Magcargo exceeds alloted length", "573": "ERROR: Word Piloswine exceeds alloted length", "574": "ERROR: Word Remoraid exceeds alloted length", "575": "ERROR: Word Octillery exceeds alloted length", "576": "ERROR: Word Delibird exceeds alloted length", "577": "ERROR: Word Skarmory exceeds alloted length", "578": "ERROR: Word Houndour exceeds alloted length", "579": "ERROR: Word Houndoom exceeds alloted length", "580": "ERROR: Word Porygon2 exceeds alloted length", "581": "ERROR: Word Stantler exceeds alloted length", "582": "ERROR: Word Smeargle exceeds alloted length", "583": "ERROR: Word Hitmontop exceeds alloted length", "584": "ERROR: Word Smoochum exceeds alloted length", "585": "ERROR: Word Larvitar exceeds alloted length", "586": "ERROR: Word Tyranitar exceeds alloted length", "587": "Error! No match found for char [ - ]!"}}, "English": {"PTGB": {"DIA_OPEN": {"bytes": "0xc2, 0xd9, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xab, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xd9, 0xe2, 0xe2, 0xd9, 0xe0, 0xad, 0x0, 0xbb, 0xe7, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xd9, 0xb8, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xd5, 0x0, 0xe7, 0xd7, 0xdd, 0xd9, 0xe2, 0xe8, 0xdd, 0xe7, 0xe8, 0xad, 0x0, 0xc3, 0xe2, 0xfe, 0xda, 0xd5, 0xd7, 0xe8, 0xb8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xe9, 0xd6, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe7, 0xfe, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0xab, 0xfb, 0xc7, 0xed, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe0, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xea, 0xd5, 0xe6, 0xdd, 0xe3, 0xe9, 0xe7, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xdc, 0xd5, 0xd8, 0xfe, 0xd5, 0xe2, 0xed, 0x0, 0xd6, 0xe6, 0xd9, 0xd5, 0xdf, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0xe7, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xad, 0xad, 0xfb, 0xcd, 0xe3, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0xb4, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xdd, 0xe2, 0xdb, 0xfe, 0xe3, 0xe2, 0x0, 0xd5, 0x0, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0xfe, 0xe3, 0xe0, 0xd8, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0xab, 0xfb, 0xc3, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xdc, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0xb8, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xb4, 0xe7, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xdd, 0xe2, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd9, 0xed, 0x0, 0xe1, 0xd9, 0xd9, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0xab, 0xfb, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xda, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe1, 0xed, 0x0, 0xdb, 0xe3, 0xd5, 0xe0, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xd8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xd5, 0xe1, 0xd9, 0xae, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb4, 0xe7, 0xfe, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xfb, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xe2, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe9, 0xe8, 0xfe, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xe7, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xa3, 0xa6, 0xa1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xd7, 0xd5, 0xe8, 0xd5, 0xe0, 0xe3, 0xdb, 0xe9, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xbe, 0xd9, 0xec, 0xae, 0x0, 0xe3, 0xe6, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe6, 0xe8, 0xad, 0xfb, 0xbc, 0xe9, 0xe8, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xae, 0xfe, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xe6, 0xd9, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xd5, 0xe0, 0xe0, 0xab, 0xfb, 0xc9, 0xe2, 0xd9, 0x0, 0xe0, 0xd5, 0xe7, 0xe8, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0xb8, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0xae, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdb, 0xe3, 0xd9, 0xe7, 0x0, 0xeb, 0xe6, 0xe3, 0xe2, 0xdb, 0xab, 0xfe, 0xc3, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdf, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xad, 0xad, 0xad, 0xfb, 0xeb, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0xb8, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hey there! I\u2019m Professor Fennel. As\u0147you can see, I\u2019m a scientist. In\u0147fact, the subject I\u2019m researching is\u0147Trainers!\u023cMy dream is to collect save files of\u0147various trainers, but I haven\u2019t had\u0147any breakthroughs yet...\u023cSo in the meantime, I\u2019ve been working\u0147on a different project with one of my\u0147old friends!\u023cIn my home region, there\u2019s a location\u0147that can make a Pok\u00e9mon\u2019s dreams into\u0147reality.\u023cThis means that any other Pok\u00e9mon\u0147they meet in their dreams become\u0147real!\u023cThat\u2019s fantastic, but my goal is to\u0147do the same- just with a trainer\u2019s\u0147dream instead! That\u2019s why I need your\u0147help!\u023cI want to bring as many Pok\u00e9mon out\u0147of your dreams as possible!\u023cThere\u2019s just over 250 Pok\u00e9mon I want\u0147to catalogue in my Dream Pok\u00e9Dex- or\u0147Dream Dex for short.\u023cBut I\u2019ll let you keep any Pok\u00e9mon-\u0147they\u2019re from your dreams after all!\u023cOne last note, save data backups are\u0147recommended- just on the off chance\u0147that something goes wrong!\u0147I think that\u2019s everything...\u023cwhenever you\u2019re ready to start, just\u0147let me know!\u019e"}, "DIA_E4": {"bytes": "0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xe8, 0xdc, 0xe6, 0xdd, 0xe0, 0xe0, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0xfe, 0xd8, 0xd9, 0xd7, 0xdd, 0xd8, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe9, 0xe6, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xd9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0xab, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd5, 0xe8, 0xd9, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbf, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xc0, 0xe3, 0xe9, 0xe6, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xdc, 0xd5, 0xe1, 0xe4, 0xdd, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi trainer! I\u2019m thrilled you\u2019ve\u0147decided to help with our research,\u0147but we need the best of the best!\u023cCome back after you\u2019ve beaten the\u0147Elite Four and become the Champion!\u019e"}, "DIA_MG_FRLGE": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0xfe, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xae, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xc1, 0xc3, 0xc0, 0xce, 0xab, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe2, 0xd9, 0xd5, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xc7, 0xd5, 0xe6, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xda, 0xdd, 0xe0, 0xe0, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe2, 0xd5, 0xdd, 0xe6, 0xd9, 0x0, 0xd5, 0xe7, 0xfe, 0xda, 0xe3, 0xe0, 0xe0, 0xe3, 0xeb, 0xe7, 0xf0, 0x0, 0xc6, 0xc3, 0xc8, 0xc5, 0x0, 0xce, 0xc9, 0xc1, 0xbf, 0xce, 0xc2, 0xbf, 0xcc, 0x0, 0xd1, 0xc3, 0xce, 0xc2, 0x0, 0xbb, 0xc6, 0xc6, 0xad, 0xfb, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xdb, 0xe3, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, one more thing to take\u0147care of before we can begin- you need\u0147to enable MYSTERY GIFT!\u023cHead to the nearest Pok\u00e9 Mart and\u0147fill out the questionnaire as\u0147follows: LINK TOGETHER WITH ALL.\u023cAfter that, you should be all set to\u0147go! See you soon!\u019e"}, "DIA_MG_RS": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0xfe, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xae, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0xab, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbf, 0xce, 0xbb, 0xc6, 0xbc, 0xcf, 0xcc, 0xc1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xbd, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xe2, 0x0, 0xe2, 0xd9, 0xec, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0xf0, 0xfe, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0x0, 0xc3, 0xcd, 0x0, 0xbf, 0xd2, 0xbd, 0xc3, 0xce, 0xc3, 0xc8, 0xc1, 0xad, 0x0, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0xb8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdb, 0xe3, 0xab, 0xfb, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, one more thing to take\u0147care of before we can begin- you need\u0147to enable MYSTERY EVENT!\u023cHead to the PETALBURG Pok\u00e9mon Center\u0147and tell the man next to the PC:\u0147MYSTERY EVENT IS EXCITING. After\u0147that, you should be all set to go!\u023cSee you soon!\u019e"}, "DIA_LETS_START": {"bytes": "0xca, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0xb8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xc3, 0xfe, 0xe2, 0xd9, 0xd9, 0xd8, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xdb, 0xd9, 0xe8, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0xd9, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Perfect, that\u2019s all the information I\u0147need! Let\u2019s get started!\u019e"}, "DIA_START": {"bytes": "0xc9, 0xe2, 0x0, 0xd5, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xb8, 0xfe, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xdd, 0xe7, 0xdc, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xad, 0xfb, 0xc3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xad, 0xfb, 0xce, 0xdc, 0xd9, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xfe, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0x0, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0xad, 0xfb, 0xc9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0xb8, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xbd, 0xe0, 0xe9, 0xd6, 0xfe, 0xd5, 0xe8, 0xe8, 0xd9, 0xe2, 0xd8, 0xd5, 0xe2, 0xe8, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0x0, 0xdd, 0xe2, 0xdd, 0xe8, 0xdd, 0xd5, 0xe8, 0xd9, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xd9, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "On a second Game Boy family system,\u0147please load the Game Boy Pok\u00e9mon game\u0147you wish to transfer from.\u023cIn your Game Boy Pok\u00e9mon game, make\u0147your current box the one you want to\u0147transfer from.\u023cThen connect this Game Boy Advance to\u0147the other Game Boy family system\u0147using a Game Boy Color link cable.\u023cOnce you\u2019re ready, press A on this\u0147device, talk to the Cable Club\u0147attendant, and then initiate a trade.\u019e"}, "DIA_TRANS_GOOD": {"bytes": "0xbb, 0xe1, 0xd5, 0xee, 0xdd, 0xe2, 0xdb, 0xab, 0x0, 0xc0, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0xab, 0x0, 0xbf, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0xfe, 0xe4, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Amazing! Fantastic! Everything went\u0147perfectly!\u019e"}, "DIA_NEW_DEX": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xdd, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xab, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xd9, 0xec, 0xe8, 0xe6, 0xd5, 0x0, 0xe7, 0xeb, 0xd9, 0xd9, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xe6, 0xd9, 0xeb, 0xd5, 0xe6, 0xd8, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like there\u2019s at least one\u0147new Pok\u00e9mon here that isn\u2019t in the\u0147Dream Dex! I\u2019ll give them something\u0147extra sweet as a reward for you both.\u019e"}, "DIA_NO_NEW_DEX": {"bytes": "0xc3, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0xe2, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0xfe, 0xe3, 0xdf, 0xd5, 0xed, 0xab, 0x0, 0xc3, 0xe8, 0xb4, 0xe7, 0x0, 0xdd, 0xe1, 0xe4, 0xe3, 0xe6, 0xe8, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0xfe, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe9, 0xe0, 0xe8, 0xe7, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe1, 0xe9, 0xe0, 0xe8, 0xdd, 0xe4, 0xe0, 0xd9, 0x0, 0xe8, 0xd9, 0xe7, 0xe8, 0xe7, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It doesn\u2019t look like there\u2019s anything\u0147new for your Dream Dex, but that\u2019s\u0147okay! It\u2019s important to confirm\u0147research results with multiple tests!\u019e"}, "DIA_SEND_FRIEND_KANTO": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0x0, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0x0, 0xe3, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xe3, 0xe2, 0x0, 0xcd, 0xd9, 0xea, 0xd9, 0xe2, 0x0, 0xc3, 0xe7, 0xe0, 0xd5, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up! They live just south of\u0147the Pok\u00e9mon center on Seven Island!\u019e"}, "DIA_SEND_FRIEND_HOENN_RS": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xc7, 0xe3, 0xe7, 0xe7, 0xd8, 0xd9, 0xd9, 0xe4, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up!\u023cThey live just southeast of the\u0147Pok\u00e9mon center in Mossdeep City!\u019e"}, "DIA_SEND_FRIEND_HOENN_E": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xcd, 0xe3, 0xe3, 0xe8, 0xe3, 0xe4, 0xe3, 0xe0, 0xdd, 0xe7, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up!\u023cThey live just southeast of the\u0147Pok\u00e9mon center in Sootopolis City!\u019e"}, "DIA_THANK": {"bytes": "0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xfe, 0xd1, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xb8, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Thank you so much for your help!\u0147Whenever you want to transfer more\u0147Pok\u00e9mon, just let me know! See you\u0147around!\u019e"}, "DIA_GET_MON": {"bytes": "0xe9, 0xe2, 0xe9, 0xe7, 0xd9, 0xd8, 0xb8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "unused, will be removed\u019e"}, "DIA_MG_OTHER_EVENT": {"bytes": "0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xfe, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xad, 0xfe, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xd6, 0xe0, 0xd9, 0xe1, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe3, 0xea, 0xd9, 0xe6, 0xeb, 0xe6, 0xdd, 0xe8, 0xe8, 0xd9, 0xe2, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xad, 0xfb, 0xce, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xe2, 0xe3, 0xeb, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xec, 0xe4, 0xd9, 0xe6, 0xdd, 0xd9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0xae, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi Trainer! It looks like you have a\u0147different event currently loaded.\u0147That\u2019s no problem, but it will be\u0147overwritten if you continue.\u023cTurn off the system now if you want\u0147to experience your current event, but\u0147otherwise-\u019e"}, "DIA_PKMN_TO_COLLECT": {"bytes": "0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe9, 0xe4, 0xad, 0xad, 0xad, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0xb4, 0xe8, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe9, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0xfe, 0xe8, 0xdc, 0xe3, 0xe7, 0xd9, 0x0, 0xe9, 0xe4, 0xad, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi Trainer! It looks like you still\u0147have Pok\u00e9mon to pick up... I can\u2019t\u0147send over new Pok\u00e9mon until you pick\u0147those up.\u023cCome back after you\u2019ve received them!\u019e"}, "DIA_NO_VALID_PKMN": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xea, 0xd5, 0xe0, 0xdd, 0xd8, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xe2, 0xe3, 0xeb, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xd8, 0xe3, 0xe9, 0xd6, 0xe0, 0xd9, 0x0, 0xd7, 0xdc, 0xd9, 0xd7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xdd, 0xe8, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry Trainer, it doesn\u2019t look like\u0147you have any valid Pok\u00e9mon in your\u0147current box right now.\u023cGo double check your current box and\u0147we can give it another shot!\u019e"}, "DIA_ASK_QUEST": {"bytes": "0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xbc, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xb8, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd5, 0xe7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0x0, 0xda, 0xd9, 0xeb, 0x0, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi trainer! Before we begin, I need\u0147to ask you a few questions.\u019e"}, "DIA_WHAT_GAME_TRANS": {"bytes": "0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xac, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "And which Game Boy Pok\u00e9mon game are\u0147you transferring from?\u019e"}, "DIA_WHAT_LANG_TRANS": {"bytes": "0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xac, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "What language is the Game Boy Pok\u00e9mon\u0147game that you\u2019re transferring from?\u019e"}, "DIA_NO_GB_ROM": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xe7, 0xe3, 0xe6, 0xe6, 0xed, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xea, 0xd9, 0xe6, 0xe7, 0xdd, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m sorry, but that version in that\u0147language is not currently supported.\u019e"}, "DIA_IN_BOX": {"bytes": "0xbb, 0xe0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0xad, 0xfb, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xd9, 0xe1, 0xd6, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xd5, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe7, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xbd, 0xbb, 0xc8, 0xc8, 0xc9, 0xce, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xad, 0xfb, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xe3, 0xe6, 0xfe, 0xe7, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Alright! Let\u2019s take a look at the\u0147Pok\u00e9mon that will be transfered.\u023cPlease remember, once a Pok\u00e9mon is\u0147transfered, it CANNOT be returned to\u0147the Game Boy Game Pak.\u023cSelect confirm once you\u2019re ready, or\u0147select cancel if you want to keep the\u0147Pok\u00e9mon on your Game Boy Game Pak.\u019e"}, "DIA_MYTHIC_CONVERT": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0x0, 0xe6, 0xd5, 0xe6, 0xd9, 0xfe, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xab, 0x0, 0xbe, 0xe9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xe6, 0xd5, 0xe6, 0xdd, 0xe8, 0xed, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xea, 0xd9, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xad, 0xfb, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xd8, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0xb4, 0xe0, 0xe0, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xd9, 0xe8, 0xfe, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xb8, 0x0, 0xc9, 0xce, 0xb8, 0x0, 0xce, 0xc3, 0xbe, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xcd, 0xdc, 0xdd, 0xe2, 0xdd, 0xe2, 0xd9, 0xe7, 0xe7, 0xad, 0xfb, 0xc9, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe0, 0xd9, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe7, 0x0, 0xdd, 0xe7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xdb, 0xe9, 0xd5, 0xe6, 0xd9, 0xe2, 0xe8, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xda, 0xe9, 0xe8, 0xe9, 0xe6, 0xd9, 0xad, 0x0, 0xbe, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xac, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd5, 0xe4, 0xe4, 0xe0, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd6, 0xe3, 0xec, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like you have a rare\u0147Mythical Pok\u00e9mon! Due to their\u0147rarity, it seems they\u2019ve overloaded\u0147the machine.\u023cI can stablize them if you\u2019d like,\u0147but it\u2019ll change some things like met\u0147location, OT, TID, and Shininess.\u023cOtherwise I can leave them as is, but\u0147there\u2019s no guarentee that they\u2019ll be\u0147transferrable in the future. Do you\u0147want me to stablize them?\u023cThis will apply to all of the\u0147Mythical Pok\u00e9mon currently in your\u0147box.\u019e"}, "DIA_CANCEL": {"bytes": "0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0xab, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xdd, 0xda, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "No worries! Feel free to come back if\u0147you change your mind! See you around!\u019e"}, "DIA_SOME_INVALID_PKMN": {"bytes": "0xc3, 0x0, 0xe7, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0xad, 0xfb, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xe3, 0xe0, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe8, 0xd9, 0xe1, 0xe7, 0x0, 0xe3, 0xe6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xdd, 0xd9, 0xd8, 0xfe, 0xdd, 0xe2, 0xd7, 0xe3, 0xe6, 0xe6, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0x0, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0x0, 0xe9, 0xe2, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0xfe, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0xad, 0xfb, 0xce, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xda, 0xdd, 0xe2, 0xd9, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I see there is at least one Pok\u00e9mon\u0147that cannot be transferred from your\u0147current box.\u023cPok\u00e9mon holding items or modified\u0147incorrectly through unintended means\u0147cannot be transferred.\u023cThe other Pok\u00e9mon will transfer just\u0147fine though!\u019e"}, "DIA_MENU_BACK": {"bytes": "0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0xab, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xfe, 0xd5, 0xe2, 0xed, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "No worries! Feel free to come back\u0147any time!\u019e"}, "DIA_IS_MISSINGNO": {"bytes": "0xad, 0xad, 0xad, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xad, 0xad, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0x0, 0xd6, 0xd9, 0x0, 0xdb, 0xe6, 0xd5, 0xe4, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0xb8, 0x0, 0xe7, 0xe3, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "... It seems like one of your Pok\u00e9mon\u0147is messing with the machine... It\u0147looks to only be graphical though, so\u0147we can continue!\u019e"}, "DIA_ERROR_COLOSSEUM": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd7, 0xe3, 0xe0, 0xe3, 0xe7, 0xe7, 0xd9, 0xe9, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0xfe, 0xe6, 0xe3, 0xe3, 0xe1, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like you went to the\u0147colosseum instead of the trading\u0147room! Let\u2019s try that again!\u019e"}, "DIA_ERROR_COM_ENDED": {"bytes": "0xbd, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0xfe, 0xeb, 0xd5, 0xe7, 0x0, 0xe8, 0xd9, 0xe6, 0xe1, 0xdd, 0xe2, 0xd5, 0xe8, 0xd9, 0xd8, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Communication with the other device\u0147was terminated. Let\u2019s try that again!\u019e"}, "DIA_ERROR_DISCONNECT": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xfe, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xd8, 0xdd, 0xe7, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xd9, 0xd8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like the Game Boy Color link\u0147cable was disconnected... Let\u2019s try\u0147that again!\u019e"}, "DIA_ERROR_TIME_ONE": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0xfe, 0xe3, 0xe9, 0xe8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like the connection timed\u0147out... Let\u2019s try that again!\u019e"}, "DIA_ERROR_TIME_TWO": {"bytes": "0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0xfe, 0xe3, 0xe9, 0xe8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It seems like the connection timed\u0147out... Let\u2019s try that again!\u019e"}, "DIA_WHAT_LANG_EVENT": {"bytes": "0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0xac, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "What language is the Game Boy Pok\u00e9mon\u0147game that you want to send an event\u0147to?\u019e"}, "DIA_WHAT_GAME_EVENT": {"bytes": "0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd8, 0xe3, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xac, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "And which Game Boy Pok\u00e9mon game do\u0147you want to send an event to?\u019e"}, "DIA_K_DEX_NOT_FULL": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xa2, 0xa6, 0xa1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xeb, 0xd9, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, it looks like you\u0147haven\u2019t caught all 150 Pok\u00e9mon from\u0147the Kanto region yet.\u023cGo out and catch them all and then\u0147we\u2019ll be able to send over the event!\u019e"}, "DIA_J_DEX_NOT_FULL": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xaa, 0xaa, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc4, 0xe3, 0xdc, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xeb, 0xd9, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, it looks like you\u0147haven\u2019t caught all 99 new Pok\u00e9mon\u0147from the Johto region yet.\u023cGo out and catch them all and then\u0147we\u2019ll be able to send over the event!\u019e"}}, "RSEFRLG": {"dia_textGreet_rse": {"bytes": "0xd1, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0xb8, 0x0, 0xc3, 0x0, 0xe8, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xe0, 0xd8, 0xfe, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0x0, 0xce, 0xcc, 0xbb, 0xc3, 0xc8, 0xbf, 0xcc, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "When I was young, I traveled the world\u0147as a POK\u00e9MON TRAINER.\u019e"}, "dia_textGreet_frlg": {"bytes": "0xc3, 0x0, 0xe1, 0xd5, 0xed, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xe2, 0xe3, 0xeb, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0xd9, 0xe6, 0xb0, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "I may not look like much now,\u0147but when I was younger\u2026\u019e"}, "dia_textMoveBox_rs": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe9, 0xe2, 0xe0, 0xe3, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd8, 0xe3, 0xe3, 0xe6, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to unlock the\u0147door!\u019e"}, "dia_textMoveBox_frlg": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd6, 0xe3, 0xec, 0xd9, 0xe7, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to move the\u0147boxes!\u019e"}, "dia_textMoveBox_e": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe0, 0xd5, 0xe2, 0xe8, 0xe7, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to move the\u0147plants!\u019e"}, "dia_textWeHere_r": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xc7, 0xbb, 0xd2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leader MAXIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_s": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xbb, 0xcc, 0xbd, 0xc2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leader ARCHIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_frlg": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xc1, 0xc3, 0xc9, 0xd0, 0xbb, 0xc8, 0xc8, 0xc3, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Kanto to find\u0147the leader GIOVANNI.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_e": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0xe7, 0x0, 0xc7, 0xbb, 0xd2, 0xc3, 0xbf, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xcc, 0xbd, 0xc2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leaders MAXIE and ARCHIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textRecieved": {"bytes": "0xfc, 0x1, 0x2, 0xfd, 0x1, 0xb4, 0xcd, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0x0, 0xeb, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c1\u01b2\u00c0\u2019S POK\u00e9MON were sent to\u0147the PC!\u019e"}, "dia_textYouMustBe_first": {"bytes": "0xbb, 0xdc, 0xab, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xfd, 0x1, 0xab, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe8, 0xe3, 0xe0, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd7, 0xe3, 0xe1, 0xdd, 0xe2, 0xdb, 0xad, 0xfb, 0xc9, 0xdc, 0xab, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xab, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0xab, 0xfe, 0xc9, 0xe6, 0xb8, 0x0, 0xe6, 0xd5, 0xe8, 0xdc, 0xd9, 0xe6, 0xb8, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdd, 0xe2, 0xe8, 0xe6, 0xe3, 0xd8, 0xe9, 0xd7, 0xd9, 0x0, 0xe1, 0xed, 0xe7, 0xd9, 0xe0, 0xda, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "Ah! You must be \u01b2\u00c0! I was\u0147told you\u2019d be coming.\u023cOh! I still wear my disguise! Pardon!\u0147Or, rather, let me introduce myself.\u019e"}, "dia_textYouMustBe_second": {"bytes": "0xbb, 0xdc, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0x0, 0xd1, 0xd9, 0xe0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xab, 0x0, 0xc1, 0xe3, 0xe3, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xe7, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xfb, 0xc9, 0xdc, 0xab, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xab, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "Ah, \u01b2\u00c0! Welcome back! Good to\u0147see you again!\u023cOh! I still wear my disguise! Pardon!\u019e"}, "dia_textIAm_first": {"bytes": "0xfc, 0x1, 0x8, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xd5, 0x0, 0xdb, 0xe0, 0xe3, 0xd6, 0xd9, 0xae, 0xe8, 0xe6, 0xe3, 0xe8, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd9, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc3, 0xe2, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xe0, 0xdd, 0xd7, 0xd9, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb0, 0x0, 0xfa, 0xbb, 0xdc, 0xb8, 0x0, 0xe2, 0xe3, 0xb8, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0x0, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0xfe, 0xe2, 0xd5, 0xe1, 0xd9, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbI am a globe-trotting elite of the\u0147International Police.\u023cMy name\u2026 \u015eAh, no, I shall inform you of my code\u0147name only.\u023cMy code name, it is LOOKER!\u019e"}, "dia_textIAm_second": {"bytes": "0xfc, 0x1, 0x8, 0xc3, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc3, 0xb8, 0x0, 0xdb, 0xe0, 0xe3, 0xd6, 0xd9, 0xae, 0xe8, 0xe6, 0xe3, 0xe8, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd9, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc3, 0xe2, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xe0, 0xdd, 0xd7, 0xd9, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbIt is I, globe-trotting elite of the\u0147International Police.\u023cMy code name, it is LOOKER!\u019e"}, "dia_textPCConvo": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbb, 0xdc, 0xb8, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0x0, 0xc3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xdd, 0xe8, 0xfe, 0xfd, 0x1, 0x0, 0xdc, 0xd5, 0xe7, 0x0, 0xd5, 0xe6, 0xe6, 0xdd, 0xea, 0xd9, 0xd8, 0xac, 0xfb, 0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0xe2, 0xd8, 0xd9, 0xd9, 0xd8, 0xab, 0x0, 0xce, 0xdc, 0xd9, 0xed, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0xab, 0xfb, 0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbf, 0xec, 0xd7, 0xd9, 0xe0, 0xe0, 0xd9, 0xe2, 0xe8, 0xab, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xfe, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe1, 0xd9, 0xe2, 0xe8, 0xd5, 0xe6, 0xdd, 0xe0, 0xed, 0xb0, 0x0, 0xe7, 0xe8, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: Ah, LOOKER! I take it\u0147\u01b2\u00c0 has arrived?\u023c\u0206\u00c0\u00cbLOOKER: Indeed! They\u2019re ready to\u0147receive their POK\u00e9MON!\u023c\u0206\u00c0\u00c9FENNEL: Excellent! I\u2019ll send them\u0147over momentarily\u2026 stand by!\u019e"}, "dia_textPCThanks": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xbd, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xab, 0xfb, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: It looks like everything was\u0147sent to your PC successfully!\u023cThank you both for your help!\u019e"}, "dia_textThank": {"bytes": "0xfc, 0x1, 0x8, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xe8, 0xe3, 0xe4, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xd6, 0xed, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0xfb, 0xc3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe0, 0xe0, 0x0, 0xd9, 0xec, 0xd7, 0xe9, 0xe7, 0xd9, 0x0, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xad, 0x0, 0xfa, 0xcf, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xe3, 0xe9, 0xe6, 0x0, 0xe4, 0xd5, 0xe8, 0xdc, 0xe7, 0x0, 0xd7, 0xe6, 0xe3, 0xe7, 0xe7, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbThanks for stopping by, \u01b2\u00c0!\u023cIf you\u2019ll excuse me, I must return to\u0147my disguise. \u015eUntil our paths cross again!\u019e"}, "dia_textPCFull": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0x0, 0xdd, 0xe7, 0x0, 0xda, 0xe9, 0xe0, 0xe0, 0xab, 0xfb, 0xc1, 0xe3, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: It seems like the PC is full!\u023cGo make some room, and I can send over\u0147the rest of your POK\u00e9MON.\u019e"}, "dia_textLookerFull": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xcd, 0xe4, 0xd9, 0xd5, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0xfe, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0xfb, 0xc3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xed, 0xfe, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: Speak to me again after\u0147you\u2019ve made room, \u01b2\u00c0!\u023cIn the meantime, I will return to my\u0147disguise.\u019e"}}, "GB": {"sending_text": {"bytes": "SENDING DATA", "numLines": 0, "pixelsPerChar": "Default", "pixelsInLine": 0, "includeBoxBreaks": false}, "prof_name": {"bytes": "FENNEL", "numLines": 0, "pixelsPerChar": "Default", "pixelsInLine": 0, "includeBoxBreaks": false}}, "GENERAL": {"option_english": {"bytes": "0xbf, 0xe2, 0xdb, 0xe0, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "English\u019e"}, "option_japanese": {"bytes": "0xc4, 0xd5, 0xe4, 0xd5, 0xe2, 0xd9, 0xe7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Japanese\u019e"}, "option_spanish": {"bytes": "0xcd, 0xe4, 0xd5, 0xe2, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Spanish\u019e"}, "option_french": {"bytes": "0xc0, 0xe6, 0xd9, 0xe2, 0xd7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "French\u019e"}, "option_german": {"bytes": "0xc1, 0xd9, 0xe6, 0xe1, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "German\u019e"}, "option_italian": {"bytes": "0xc3, 0xe8, 0xd5, 0xe0, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Italian\u019e"}, "option_korean": {"bytes": "0xc5, 0xe3, 0xe6, 0xd9, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Korean\u019e"}, "option_green": {"bytes": "0xc1, 0xe6, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Green\u019e"}, "option_red": {"bytes": "0xcc, 0xd9, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Red\u019e"}, "option_blue": {"bytes": "0xbc, 0xe0, 0xe9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Blue\u019e"}, "option_yellow": {"bytes": "0xd3, 0xd9, 0xe0, 0xe0, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Yellow\u019e"}, "option_gold": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Gold\u019e"}, "option_silver": {"bytes": "0xcd, 0xdd, 0xe0, 0xea, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Silver\u019e"}, "option_crystal": {"bytes": "0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Crystal\u019e"}, "option_cancel": {"bytes": "0xbd, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Cancel\u019e"}, "press_start": {"bytes": "0xca, 0xe9, 0xe7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xcd, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xab, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Push the Start Button!\u019e"}, "option_transfer": {"bytes": "0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Transfer Pok\u00e9mon\u019e"}, "option_dreamdex": {"bytes": "0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Dream Dex\u019e"}, "option_credits": {"bytes": "0xbd, 0xe6, 0xd9, 0xd8, 0xdd, 0xe8, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Credits\u019e"}, "intro_first": {"bytes": "0xc2, 0xd9, 0xe0, 0xe0, 0xe3, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0xab, 0xfe, 0xfe, 0xc4, 0xe9, 0xe7, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xeb, 0xe3, 0xe6, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xd5, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0xae, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xd1, 0xc3, 0xc6, 0xc6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xed, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe0, 0xe3, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xd6, 0xd9, 0xe8, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xdd, 0xd8, 0xb8, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd9, 0xe2, 0xde, 0xe3, 0xed, 0xab, 0xfe, 0xfe, 0xae, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 15, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": false, "text": "Hello! Thank you for using Pok\u00e9\u0147Transporter GB!\u0147\u0147Just as a word of caution- Pok\u00e9\u0147Transporter GB WILL modify both the\u0147GameBoy and GameBoy Advance save\u0147files.\u0147\u0147Please note that while Pok\u00e9\u0147Transporter GB is no longer in beta,\u0147save file backups are still\u0147recommended before using. With that\u0147all being said, please enjoy!\u0147\u0147-The Gears of Progress\u019e"}, "intro_legal": {"bytes": "0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe3, 0xda, 0xfe, 0xe0, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd5, 0xe4, 0xe4, 0xe6, 0xd9, 0xd7, 0xdd, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xd5, 0xe2, 0xd7, 0xdc, 0xdd, 0xe7, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xda, 0xdd, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xbb, 0xc6, 0xd1, 0xbb, 0xd3, 0xcd, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0xfe, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0x0, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe1, 0xe9, 0xe7, 0xdd, 0xd7, 0xfe, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xeb, 0xe2, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0x0, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0x0, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0xad, 0xfe, 0xfe, 0xfe, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xff", "numLines": 14, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": false, "text": "Pok\u00e9 Transporter GB was made out of\u0147love and appreciation for the Pokemon\u0147franchise with no profit in mind. It\u0147will ALWAYS be free.\u0147\u0147Please support the original\u0147developers.\u0147\u0147All Pokemon names, sprites, and music\u0147are owned by Nintendo, Creatures Inc,\u0147and GAME FREAK.\u0147\u0147\u0147Press A to continue\u019e"}, "cart_load_error": {"bytes": "0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xad, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xdd, 0xe2, 0xe7, 0xd9, 0xe6, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xea, 0xd9, 0xe0, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff", "numLines": 10, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "The Pok\u00e9mon save file was\u0147not loaded successfully.\u0147Please remove and reinsert\u0147the Game Pak, and then\u0147press the A button.\u0147\u0147Alternatively, press the\u0147Select button to send this\u0147program to another GameBoy\u0147Advance.\u019e"}, "pulled_cart_error": {"bytes": "0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xad, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "The Pok\u00e9mon game was\u0147removed. Please turn off\u0147the system and restart the\u0147program.\u019e"}, "send_multiboot_instructions": {"bytes": "0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xfe, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xdd, 0xe2, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0x0, 0xe1, 0xe3, 0xd8, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xc6, 0xdd, 0xe2, 0xdf, 0xfe, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0xad, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0xe2, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xfe, 0xe8, 0xe3, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff", "numLines": 10, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Please connect this system\u0147to another GameBoy Advance\u0147in Multiboot mode with a\u0147GameBoy Advance Link\u0147Cable.\u0147\u0147Then, press the A button\u0147to begin sending Pok\u00e9\u0147Transporter GB to the\u0147second GameBoy Advance.\u019e"}, "send_multiboot_wait": {"bytes": "0xcd, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0xfe, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0xfe, 0xeb, 0xd5, 0xdd, 0xe8, 0xad, 0xfe, 0xfe, 0xc2, 0xe3, 0xe0, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbc, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xad, 0xff", "numLines": 7, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Sending Pok\u00e9 Transporter\u0147GB to second GameBoy\u0147Advance system. Please\u0147wait.\u0147\u0147Hold the B Button to\u0147cancel.\u019e"}, "send_multiboot_success": {"bytes": "0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xab, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xd5, 0xed, 0xfe, 0xe2, 0xe3, 0xeb, 0x0, 0xe4, 0xe3, 0xeb, 0xd9, 0xe6, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xad, 0xff", "numLines": 7, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "\u0147Pok\u00e9 Transporter GB was\u0147sent successfully! You may\u0147now power off this GameBoy\u0147Advance system.\u019e"}, "send_multiboot_failure": {"bytes": "0xfe, 0xbb, 0xe2, 0x0, 0xd9, 0xe6, 0xe6, 0xe3, 0xe6, 0x0, 0xe3, 0xd7, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0xfe, 0xc1, 0xbc, 0xad, 0x0, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xe6, 0xe9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xfe, 0xe7, 0xd7, 0xe6, 0xd9, 0xd9, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xad, 0xff", "numLines": 7, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "\u0147An error occurred while\u0147sending Pok\u00e9 Transporter\u0147GB. Press the A button to\u0147return to the instructions\u0147screen and try again.\u019e"}, "kanto_name": {"bytes": "0xc5, 0xbb, 0xc8, 0xce, 0xc9, 0xf0, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "KANTO:\u019e"}, "johto_name": {"bytes": "0xc4, 0xc9, 0xc2, 0xce, 0xc9, 0xf0, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "JOHTO:\u019e"}}, "CREDITS": {"credits_page_1": {"bytes": "0xc6, 0xd9, 0xd5, 0xd8, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xf0, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Lead developer:\u0147\u0147The Gears of Progress\u019e"}, "credits_page_2": {"bytes": "0xc6, 0xe3, 0xdb, 0xe3, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xe3, 0xae, 0xdd, 0xd8, 0xd9, 0xd5, 0xe8, 0xe3, 0xe6, 0xf0, 0xfe, 0xfe, 0xae, 0xc4, 0xe3, 0xe1, 0xd9, 0xfe, 0xfe, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xeb, 0xe3, 0xe6, 0xdf, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xc4, 0x0, 0xbc, 0xdd, 0xe6, 0xd8, 0xe1, 0xd5, 0xe2, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Logo and co-ideator:\u0147\u0147-Jome\u0147\u0147Spritework:\u0147\u0147-LJ Birdman\u019e"}, "credits_page_3": {"bytes": "0xc3, 0xd7, 0xe3, 0xe2, 0x0, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xe9, 0xdd, 0xdb, 0xdd, 0xce, 0xc5, 0xc9, 0xfe, 0xae, 0xc1, 0xe9, 0xdd, 0xbb, 0xd6, 0xd9, 0xe0, 0xfe, 0xae, 0xcd, 0xe3, 0xe9, 0xe6, 0xbb, 0xe4, 0xe4, 0xe0, 0xd9, 0xfe, 0x2d, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd5, 0xe6, 0xe8, 0xdd, 0xe7, 0xe8, 0xe7, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xcd, 0xdc, 0xe3, 0xeb, 0xd8, 0xe3, 0xeb, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0x0, 0xbd, 0xe0, 0xd9, 0xd5, 0xe6, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Icon Sprites:\u0147\u0147-LuigiTKO\u0147-GuiAbel\u0147-SourApple\u0147& the artists from Pok\u00e9mon\u0147Showdown and Crystal Clear\u019e"}, "credits_page_4": {"bytes": "0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xe6, 0xd6, 0xdd, 0xe8, 0xe6, 0xd5, 0xe6, 0xed, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0xfe, 0xbf, 0xec, 0xd9, 0xd7, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xce, 0xdd, 0xe1, 0xe3, 0xd0, 0xc7, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Remote and Arbitrary Code\u0147Execution assistance:\u0147\u0147-TimoVM\u019e"}, "credits_page_5": {"bytes": "0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xe6, 0xdd, 0xe0, 0xd9, 0xed, 0xdf, 0xa7, 0xa5, 0xfe, 0xae, 0xcd, 0xdc, 0xd5, 0xe3, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Development assistance:\u0147\u0147-im a blisy\u0147-rileyk64\u0147-Shao\u019e"}, "credits_page_6": {"bytes": "0xcd, 0xe4, 0xd5, 0xd7, 0xd9, 0x0, 0xc9, 0xe4, 0xe8, 0xdd, 0xe1, 0xdd, 0xee, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xf0, 0xfe, 0xfe, 0xae, 0xd9, 0xd5, 0xe7, 0xed, 0xd5, 0xe7, 0xe4, 0xdd, 0xa4, 0xa2, 0xa5, 0xfe, 0xfe, 0xc6, 0xe3, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xcc, 0xc9, 0xc7, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0xfe, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0x0, 0xda, 0xe9, 0xe2, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xf0, 0xfe, 0xfe, 0xae, 0xe6, 0xdd, 0xe7, 0xdd, 0xe2, 0xdb, 0xca, 0xdc, 0xdd, 0xe0, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Space Optimization:\u0147\u0147-easyaspi314\u0147\u0147Loader ROM and Remote\u0147Multiboot functionality:\u0147\u0147-risingPhil\u019e"}, "credits_page_7": {"bytes": "0xbc, 0xe9, 0xdd, 0xe0, 0xe8, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xbe, 0xd9, 0xea, 0xdf, 0xdd, 0xe8, 0xca, 0xe6, 0xe3, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xce, 0xe3, 0xe2, 0xd7, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xc1, 0xbc, 0xbb, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Built using:\u0147\u0147\u0147-DevkitPro\u0147-LibTonc\u0147-LibGBA\u019e"}, "credits_page_8": {"bytes": "0xc3, 0xe2, 0xe7, 0xe4, 0xdd, 0xe6, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xe7, 0x0, 0xe3, 0xda, 0xf0, 0xfe, 0xfe, 0xae, 0xc1, 0xe3, 0xe4, 0xe4, 0xdd, 0xd9, 0xe6, 0xfe, 0xae, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xcc, 0xbf, 0xce, 0xc3, 0xcc, 0xbf, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Inspired by the works of:\u0147\u0147-Goppier\u0147-Lorenzooone\u0147-im a blisy\u0147-RETIRE\u019e"}, "credits_page_9": {"bytes": "0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xe7, 0x0, 0xe9, 0xe7, 0xd9, 0xd8, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xae, 0xca, 0xc5, 0xc2, 0xd9, 0xd2, 0xfe, 0xae, 0xd1, 0xbd, 0xa4, 0xce, 0xe3, 0xe3, 0xe0, 0xfe, 0xae, 0xcf, 0xe7, 0xd9, 0xe2, 0xe8, 0xdd, 0xfe, 0xae, 0xcd, 0xd5, 0xe4, 0xe4, 0xed, 0xc7, 0xdd, 0xd8, 0xce, 0xe3, 0xbb, 0xc1, 0xbc, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Programs used:\u0147\u0147\u0147-HexManiacAdvance\u0147-PKHeX\u0147-WC3Tool\u0147-Usenti\u0147-SappyMidToAGB\u019e"}, "credits_page_10": {"bytes": "0xc9, 0xe4, 0xd9, 0xe2, 0x0, 0xcd, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xc6, 0xdd, 0xd6, 0xe6, 0xd5, 0xe6, 0xdd, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xe0, 0xdd, 0xd6, 0xe8, 0xe3, 0xe2, 0xd7, 0xae, 0xd9, 0xec, 0xd5, 0xe1, 0xe4, 0xe0, 0xd9, 0xe7, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0xae, 0xdb, 0xd6, 0xd5, 0xae, 0xe0, 0xdd, 0xe2, 0xdf, 0xae, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xae, 0xd5, 0xeb, 0xd9, 0xe7, 0xe3, 0xe1, 0xd9, 0xae, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0xae, 0xd5, 0xe6, 0xd8, 0xe9, 0xdd, 0xe2, 0xe3, 0xae, 0xe4, 0xe3, 0xdf, 0xd9, 0xae, 0xdb, 0xd9, 0xe2, 0xa3, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Open Source Code and\u0147Libraries:\u0147\u0147-libtonc-examples\u0147-PokemonGen3toGenX\u0147-gba-link-connection\u0147-awesome-gbadev\u0147-arduino-poke-gen2\u019e"}, "credits_page_11": {"bytes": "0xcc, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xd5, 0xe6, 0xe1, 0xae, 0xd8, 0xe3, 0xd7, 0xe7, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0xfe, 0xc0, 0xe9, 0xe0, 0xe0, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xe7, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe3, 0xe9, 0xe2, 0xd8, 0x0, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xb4, 0xe7, 0x0, 0xc1, 0xdd, 0xe8, 0xc2, 0xe9, 0xd6, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Research resources:\u0147\u0147-arm-docs\u0147-PokemonGen3toGenX\u0147\u0147Full links can be found on\u0147this program\u2019s GitHub\u019e"}, "credits_page_12": {"bytes": "0xcc, 0xc9, 0xc7, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xd8, 0xd9, 0xd7, 0xe3, 0xe1, 0xe4, 0xdd, 0xe0, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0x0, 0xd7, 0xe6, 0xd9, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xcc, 0xbf, 0xce, 0x0, 0xe8, 0xd9, 0xd5, 0xe1, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "ROM data obtained from\u0147decompilations created by\u0147the PRET team\u019e"}, "credits_page_13": {"bytes": "0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0xf0, 0xfe, 0xfe, 0xae, 0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe4, 0xd9, 0xd8, 0xdd, 0xd5, 0xfe, 0xae, 0xcd, 0xd9, 0xe6, 0xd9, 0xd6, 0xdd, 0xdd, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xbb, 0xca, 0xc3, 0xad, 0xd7, 0xe3, 0xe1, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Pok\u00e9mon data obtained\u0147from:\u0147\u0147-Bulbapedia\u0147-Serebii\u0147-PokeAPI.com\u019e"}, "credits_page_14": {"bytes": "0xbe, 0xdd, 0xe7, 0xd7, 0xe3, 0xe6, 0xd8, 0x0, 0xd7, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xe8, 0xed, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0x0, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0xfe, 0xae, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0xae, 0xe4, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Discord community\u0147assistance:\u0147\u0147-Hex Maniac Advance\u0147Development\u0147-gbadev\u0147-pret\u019e"}, "credits_page_15": {"bytes": "0xd1, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc7, 0xd5, 0xd8, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Writing assistance:\u0147\u0147\u0147-Mad\u019e"}, "credits_page_16": {"bytes": "0xbb, 0xe2, 0x0, 0xdd, 0xe1, 0xe1, 0xd9, 0xe2, 0xe7, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0x2d, 0xfe, 0xeb, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe1, 0xb8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xe3, 0xe9, 0xe0, 0xd8, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0xad, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "An immense thanks to\u0147Lorenzooone for their\u0147assistance in reading &\u0147writing save data. Without\u0147them, this project would\u0147not have been possible.\u019e"}, "credits_page_17": {"bytes": "0xcd, 0xe4, 0xd9, 0xd7, 0xdd, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xbf, 0xe2, 0xe2, 0xb8, 0xfe, 0xe6, 0xe3, 0xdf, 0xe9, 0xb8, 0x0, 0xcd, 0xe0, 0xd9, 0xd9, 0xe4, 0xed, 0xb8, 0x0, 0xbf, 0xee, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xe6, 0xd5, 0xdc, 0xe8, 0xe3, 0xe2, 0xdd, 0xe2, 0xb8, 0x0, 0xbc, 0xd5, 0xe7, 0xd5, 0xd6, 0xdd, 0xb8, 0x0, 0xc7, 0xd5, 0xd8, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe3, 0xe2, 0xd9, 0x0, 0xeb, 0xdc, 0xe3, 0x0, 0xdc, 0xd5, 0xe7, 0xfe, 0xe0, 0xdd, 0xe7, 0xe8, 0xd9, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xd5, 0xd6, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe1, 0xe3, 0xe2, 0xe8, 0xdc, 0xe7, 0xab, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Special thanks to Enn,\u0147roku, Sleepy, Eza,\u0147sarahtonin, Basabi, Mad,\u0147and everyone who has\u0147listened to me talk about\u0147this for months!\u019e"}, "credits_page_18": {"bytes": "0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0xfe, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xe6, 0xd9, 0xe0, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xd7, 0xe3, 0xe4, 0xed, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0xfe, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xad, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0xfe, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0x0, 0xc3, 0xe2, 0xd7, 0xad, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "All Pok\u00e9mon names,\u0147sprites, and names of\u0147related resources are\u0147copyright Nintendo,\u0147Creatures Inc., and GAME\u0147FREAK Inc.\u019e"}, "credits_page_19": {"bytes": "0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0xfe, 0xd9, 0xe2, 0xd8, 0xe3, 0xe6, 0xe7, 0xd9, 0xd8, 0x0, 0xe3, 0xe6, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xc0, 0xe6, 0xd9, 0xd5, 0xdf, 0xba, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "This project is not\u0147endorsed or supported by\u0147GameFreak/Nintendo.\u0147\u0147Please support the\u0147original developers.\u019e"}}, "PKMN_NAMES": {"0": {"bytes": "0xc7, 0xdd, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0xc8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "MissingNo\u019e"}, "1": {"bytes": "0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bulbasaur\u019e"}, "2": {"bytes": "0xc3, 0xea, 0xed, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ivysaur\u019e"}, "3": {"bytes": "0xd0, 0xd9, 0xe2, 0xe9, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venusaur\u019e"}, "4": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xe1, 0xd5, 0xe2, 0xd8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charmander\u019e"}, "5": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xe1, 0xd9, 0xe0, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charmeleon\u019e"}, "6": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xdd, 0xee, 0xd5, 0xe6, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charizard\u019e"}, "7": {"bytes": "0xcd, 0xe5, 0xe9, 0xdd, 0xe6, 0xe8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Squirtle\u019e"}, "8": {"bytes": "0xd1, 0xd5, 0xe6, 0xe8, 0xe3, 0xe6, 0xe8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wartortle\u019e"}, "9": {"bytes": "0xbc, 0xe0, 0xd5, 0xe7, 0xe8, 0xe3, 0xdd, 0xe7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Blastoise\u019e"}, "10": {"bytes": "0xbd, 0xd5, 0xe8, 0xd9, 0xe6, 0xe4, 0xdd, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Caterpie\u019e"}, "11": {"bytes": "0xc7, 0xd9, 0xe8, 0xd5, 0xe4, 0xe3, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Metapod\u019e"}, "12": {"bytes": "0xbc, 0xe9, 0xe8, 0xe8, 0xd9, 0xe6, 0xda, 0xe6, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Butterfree\u019e"}, "13": {"bytes": "0xd1, 0xd9, 0xd9, 0xd8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weedle\u019e"}, "14": {"bytes": "0xc5, 0xd5, 0xdf, 0xe9, 0xe2, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kakuna\u019e"}, "15": {"bytes": "0xbc, 0xd9, 0xd9, 0xd8, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Beedrill\u019e"}, "16": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgey\u019e"}, "17": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xe3, 0xe8, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgeotto\u019e"}, "18": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xe3, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgeot\u019e"}, "19": {"bytes": "0xcc, 0xd5, 0xe8, 0xe8, 0xd5, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rattata\u019e"}, "20": {"bytes": "0xcc, 0xd5, 0xe8, 0xdd, 0xd7, 0xd5, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raticate\u019e"}, "21": {"bytes": "0xcd, 0xe4, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Spearow\u019e"}, "22": {"bytes": "0xc0, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Fearow\u019e"}, "23": {"bytes": "0xbf, 0xdf, 0xd5, 0xe2, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ekans\u019e"}, "24": {"bytes": "0xbb, 0xe6, 0xd6, 0xe3, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Arbok\u019e"}, "25": {"bytes": "0xca, 0xdd, 0xdf, 0xd5, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pikachu\u019e"}, "26": {"bytes": "0xcc, 0xd5, 0xdd, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raichu\u019e"}, "27": {"bytes": "0xcd, 0xd5, 0xe2, 0xd8, 0xe7, 0xdc, 0xe6, 0xd9, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sandshrew\u019e"}, "28": {"bytes": "0xcd, 0xd5, 0xe2, 0xd8, 0xe7, 0xe0, 0xd5, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sandslash\u019e"}, "29": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xd5, 0xe2, 0xb6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoran\u2640\u019e"}, "30": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xdd, 0xe2, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidorina\u019e"}, "31": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe5, 0xe9, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoqueen\u019e"}, "32": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xd5, 0xe2, 0xb5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoran\u2642\u019e"}, "33": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xdd, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidorino\u019e"}, "34": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoking\u019e"}, "35": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xd5, 0xdd, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Clefairy\u019e"}, "36": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xd5, 0xd6, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Clefable\u019e"}, "37": {"bytes": "0xd0, 0xe9, 0xe0, 0xe4, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vulpix\u019e"}, "38": {"bytes": "0xc8, 0xdd, 0xe2, 0xd9, 0xe8, 0xd5, 0xe0, 0xd9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ninetales\u019e"}, "39": {"bytes": "0xc4, 0xdd, 0xdb, 0xdb, 0xe0, 0xed, 0xe4, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jigglypuff\u019e"}, "40": {"bytes": "0xd1, 0xdd, 0xdb, 0xdb, 0xe0, 0xed, 0xe8, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wigglytuff\u019e"}, "41": {"bytes": "0xd4, 0xe9, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Zubat\u019e"}, "42": {"bytes": "0xc1, 0xe3, 0xe0, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golbat\u019e"}, "43": {"bytes": "0xc9, 0xd8, 0xd8, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Oddish\u019e"}, "44": {"bytes": "0xc1, 0xe0, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gloom\u019e"}, "45": {"bytes": "0xd0, 0xdd, 0xe0, 0xd9, 0xe4, 0xe0, 0xe9, 0xe1, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vileplume\u019e"}, "46": {"bytes": "0xca, 0xd5, 0xe6, 0xd5, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Paras\u019e"}, "47": {"bytes": "0xca, 0xd5, 0xe6, 0xd5, 0xe7, 0xd9, 0xd7, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Parasect\u019e"}, "48": {"bytes": "0xd0, 0xd9, 0xe2, 0xe3, 0xe2, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venonat\u019e"}, "49": {"bytes": "0xd0, 0xd9, 0xe2, 0xe3, 0xe1, 0xe3, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venomoth\u019e"}, "50": {"bytes": "0xbe, 0xdd, 0xdb, 0xe0, 0xd9, 0xe8, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Diglett\u019e"}, "51": {"bytes": "0xbe, 0xe9, 0xdb, 0xe8, 0xe6, 0xdd, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dugtrio\u019e"}, "52": {"bytes": "0xc7, 0xd9, 0xe3, 0xeb, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Meowth\u019e"}, "53": {"bytes": "0xca, 0xd9, 0xe6, 0xe7, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Persian\u019e"}, "54": {"bytes": "0xca, 0xe7, 0xed, 0xd8, 0xe9, 0xd7, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Psyduck\u019e"}, "55": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xe9, 0xd7, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golduck\u019e"}, "56": {"bytes": "0xc7, 0xd5, 0xe2, 0xdf, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mankey\u019e"}, "57": {"bytes": "0xca, 0xe6, 0xdd, 0xe1, 0xd9, 0xd5, 0xe4, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Primeape\u019e"}, "58": {"bytes": "0xc1, 0xe6, 0xe3, 0xeb, 0xe0, 0xdd, 0xe8, 0xdc, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Growlithe\u019e"}, "59": {"bytes": "0xbb, 0xe6, 0xd7, 0xd5, 0xe2, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Arcanine\u019e"}, "60": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xd5, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwag\u019e"}, "61": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xdc, 0xdd, 0xe6, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwhirl\u019e"}, "62": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xe6, 0xd5, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwrath\u019e"}, "63": {"bytes": "0xbb, 0xd6, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Abra\u019e"}, "64": {"bytes": "0xc5, 0xd5, 0xd8, 0xd5, 0xd6, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kadabra\u019e"}, "65": {"bytes": "0xbb, 0xe0, 0xd5, 0xdf, 0xd5, 0xee, 0xd5, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Alakazam\u019e"}, "66": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machop\u019e"}, "67": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xdf, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machoke\u019e"}, "68": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xd5, 0xe1, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machamp\u019e"}, "69": {"bytes": "0xbc, 0xd9, 0xe0, 0xe0, 0xe7, 0xe4, 0xe6, 0xe3, 0xe9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bellsprout\u019e"}, "70": {"bytes": "0xd1, 0xd9, 0xd9, 0xe4, 0xdd, 0xe2, 0xd6, 0xd9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weepinbell\u019e"}, "71": {"bytes": "0xd0, 0xdd, 0xd7, 0xe8, 0xe6, 0xd9, 0xd9, 0xd6, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Victreebel\u019e"}, "72": {"bytes": "0xce, 0xd9, 0xe2, 0xe8, 0xd5, 0xd7, 0xe3, 0xe3, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tentacool\u019e"}, "73": {"bytes": "0xce, 0xd9, 0xe2, 0xe8, 0xd5, 0xd7, 0xe6, 0xe9, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tentacruel\u019e"}, "74": {"bytes": "0xc1, 0xd9, 0xe3, 0xd8, 0xe9, 0xd8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Geodude\u019e"}, "75": {"bytes": "0xc1, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Graveler\u019e"}, "76": {"bytes": "0xc1, 0xe3, 0xe0, 0xd9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golem\u019e"}, "77": {"bytes": "0xca, 0xe3, 0xe2, 0xed, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ponyta\u019e"}, "78": {"bytes": "0xcc, 0xd5, 0xe4, 0xdd, 0xd8, 0xd5, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rapidash\u019e"}, "79": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xe4, 0xe3, 0xdf, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowpoke\u019e"}, "80": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xd6, 0xe6, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowbro\u019e"}, "81": {"bytes": "0xc7, 0xd5, 0xdb, 0xe2, 0xd9, 0xe1, 0xdd, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magnemite\u019e"}, "82": {"bytes": "0xc7, 0xd5, 0xdb, 0xe2, 0xd9, 0xe8, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magneton\u019e"}, "83": {"bytes": "0xc0, 0xd5, 0xe6, 0xda, 0xd9, 0xe8, 0xd7, 0xdc, 0xb4, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Farfetch\u2019d\u019e"}, "84": {"bytes": "0xbe, 0xe3, 0xd8, 0xe9, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Doduo\u019e"}, "85": {"bytes": "0xbe, 0xe3, 0xd8, 0xe6, 0xdd, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dodrio\u019e"}, "86": {"bytes": "0xcd, 0xd9, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seel\u019e"}, "87": {"bytes": "0xbe, 0xd9, 0xeb, 0xdb, 0xe3, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dewgong\u019e"}, "88": {"bytes": "0xc1, 0xe6, 0xdd, 0xe1, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Grimer\u019e"}, "89": {"bytes": "0xc7, 0xe9, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Muk\u019e"}, "90": {"bytes": "0xcd, 0xdc, 0xd9, 0xe0, 0xe0, 0xd8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Shellder\u019e"}, "91": {"bytes": "0xbd, 0xe0, 0xe3, 0xed, 0xe7, 0xe8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cloyster\u019e"}, "92": {"bytes": "0xc1, 0xd5, 0xe7, 0xe8, 0xe0, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gastly\u019e"}, "93": {"bytes": "0xc2, 0xd5, 0xe9, 0xe2, 0xe8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Haunter\u019e"}, "94": {"bytes": "0xc1, 0xd9, 0xe2, 0xdb, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gengar\u019e"}, "95": {"bytes": "0xc9, 0xe2, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Onix\u019e"}, "96": {"bytes": "0xbe, 0xe6, 0xe3, 0xeb, 0xee, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Drowzee\u019e"}, "97": {"bytes": "0xc2, 0xed, 0xe4, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hypno\u019e"}, "98": {"bytes": "0xc5, 0xe6, 0xd5, 0xd6, 0xd6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Krabby\u019e"}, "99": {"bytes": "0xc5, 0xdd, 0xe2, 0xdb, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kingler\u019e"}, "100": {"bytes": "0xd0, 0xe3, 0xe0, 0xe8, 0xe3, 0xe6, 0xd6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Voltorb\u019e"}, "101": {"bytes": "0xbf, 0xe0, 0xd9, 0xd7, 0xe8, 0xe6, 0xe3, 0xd8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Electrode\u019e"}, "102": {"bytes": "0xbf, 0xec, 0xd9, 0xdb, 0xdb, 0xd7, 0xe9, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Exeggcute\u019e"}, "103": {"bytes": "0xbf, 0xec, 0xd9, 0xdb, 0xdb, 0xe9, 0xe8, 0xe3, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Exeggutor\u019e"}, "104": {"bytes": "0xbd, 0xe9, 0xd6, 0xe3, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cubone\u019e"}, "105": {"bytes": "0xc7, 0xd5, 0xe6, 0xe3, 0xeb, 0xd5, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Marowak\u019e"}, "106": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xe0, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmonlee\u019e"}, "107": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xd7, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmonchan\u019e"}, "108": {"bytes": "0xc6, 0xdd, 0xd7, 0xdf, 0xdd, 0xe8, 0xe9, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lickitung\u019e"}, "109": {"bytes": "0xc5, 0xe3, 0xda, 0xda, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Koffing\u019e"}, "110": {"bytes": "0xd1, 0xd9, 0xd9, 0xee, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weezing\u019e"}, "111": {"bytes": "0xcc, 0xdc, 0xed, 0xdc, 0xe3, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rhyhorn\u019e"}, "112": {"bytes": "0xcc, 0xdc, 0xed, 0xd8, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rhydon\u019e"}, "113": {"bytes": "0xbd, 0xdc, 0xd5, 0xe2, 0xe7, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chansey\u019e"}, "114": {"bytes": "0xce, 0xd5, 0xe2, 0xdb, 0xd9, 0xe0, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tangela\u019e"}, "115": {"bytes": "0xc5, 0xd5, 0xe2, 0xdb, 0xd5, 0xe7, 0xdf, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kangaskhan\u019e"}, "116": {"bytes": "0xc2, 0xe3, 0xe6, 0xe7, 0xd9, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Horsea\u019e"}, "117": {"bytes": "0xcd, 0xd9, 0xd5, 0xd8, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seadra\u019e"}, "118": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Goldeen\u019e"}, "119": {"bytes": "0xcd, 0xd9, 0xd5, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seaking\u019e"}, "120": {"bytes": "0xcd, 0xe8, 0xd5, 0xe6, 0xed, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Staryu\u019e"}, "121": {"bytes": "0xcd, 0xe8, 0xd5, 0xe6, 0xe1, 0xdd, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Starmie\u019e"}, "122": {"bytes": "0xc7, 0xe6, 0xad, 0x0, 0xc7, 0xdd, 0xe1, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mr. Mime\u019e"}, "123": {"bytes": "0xcd, 0xd7, 0xed, 0xe8, 0xdc, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Scyther\u019e"}, "124": {"bytes": "0xc4, 0xed, 0xe2, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jynx\u019e"}, "125": {"bytes": "0xbf, 0xe0, 0xd9, 0xd7, 0xe8, 0xd5, 0xd6, 0xe9, 0xee, 0xee, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Electabuzz\u019e"}, "126": {"bytes": "0xc7, 0xd5, 0xdb, 0xe1, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magmar\u019e"}, "127": {"bytes": "0xca, 0xdd, 0xe2, 0xe7, 0xdd, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pinsir\u019e"}, "128": {"bytes": "0xce, 0xd5, 0xe9, 0xe6, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tauros\u019e"}, "129": {"bytes": "0xc7, 0xd5, 0xdb, 0xdd, 0xdf, 0xd5, 0xe6, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magikarp\u019e"}, "130": {"bytes": "0xc1, 0xed, 0xd5, 0xe6, 0xd5, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gyarados\u019e"}, "131": {"bytes": "0xc6, 0xd5, 0xe4, 0xe6, 0xd5, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lapras\u019e"}, "132": {"bytes": "0xbe, 0xdd, 0xe8, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ditto\u019e"}, "133": {"bytes": "0xbf, 0xd9, 0xea, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Eevee\u019e"}, "134": {"bytes": "0xd0, 0xd5, 0xe4, 0xe3, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vaporeon\u019e"}, "135": {"bytes": "0xc4, 0xe3, 0xe0, 0xe8, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jolteon\u019e"}, "136": {"bytes": "0xc0, 0xe0, 0xd5, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Flareon\u019e"}, "137": {"bytes": "0xca, 0xe3, 0xe6, 0xed, 0xdb, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Porygon\u019e"}, "138": {"bytes": "0xc9, 0xe1, 0xd5, 0xe2, 0xed, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Omanyte\u019e"}, "139": {"bytes": "0xc9, 0xe1, 0xd5, 0xe7, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Omastar\u019e"}, "140": {"bytes": "0xc5, 0xd5, 0xd6, 0xe9, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kabuto\u019e"}, "141": {"bytes": "0xc5, 0xd5, 0xd6, 0xe9, 0xe8, 0xe3, 0xe4, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kabutops\u019e"}, "142": {"bytes": "0xbb, 0xd9, 0xe6, 0xe3, 0xd8, 0xd5, 0xd7, 0xe8, 0xed, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Aerodactyl\u019e"}, "143": {"bytes": "0xcd, 0xe2, 0xe3, 0xe6, 0xe0, 0xd5, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Snorlax\u019e"}, "144": {"bytes": "0xbb, 0xe6, 0xe8, 0xdd, 0xd7, 0xe9, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Articuno\u019e"}, "145": {"bytes": "0xd4, 0xd5, 0xe4, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Zapdos\u019e"}, "146": {"bytes": "0xc7, 0xe3, 0xe0, 0xe8, 0xe6, 0xd9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Moltres\u019e"}, "147": {"bytes": "0xbe, 0xe6, 0xd5, 0xe8, 0xdd, 0xe2, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dratini\u019e"}, "148": {"bytes": "0xbe, 0xe6, 0xd5, 0xdb, 0xe3, 0xe2, 0xd5, 0xdd, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dragonair\u019e"}, "149": {"bytes": "0xbe, 0xe6, 0xd5, 0xdb, 0xe3, 0xe2, 0xdd, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dragonite\u019e"}, "150": {"bytes": "0xc7, 0xd9, 0xeb, 0xe8, 0xeb, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mewtwo\u019e"}, "151": {"bytes": "0xc7, 0xd9, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mew\u019e"}, "152": {"bytes": "0xbd, 0xdc, 0xdd, 0xdf, 0xe3, 0xe6, 0xdd, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chikorita\u019e"}, "153": {"bytes": "0xbc, 0xd5, 0xed, 0xe0, 0xd9, 0xd9, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bayleef\u019e"}, "154": {"bytes": "0xc7, 0xd9, 0xdb, 0xd5, 0xe2, 0xdd, 0xe9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Meganium\u019e"}, "155": {"bytes": "0xbd, 0xed, 0xe2, 0xd8, 0xd5, 0xe5, 0xe9, 0xdd, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cyndaquil\u019e"}, "156": {"bytes": "0xcb, 0xe9, 0xdd, 0xe0, 0xd5, 0xea, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Quilava\u019e"}, "157": {"bytes": "0xce, 0xed, 0xe4, 0xdc, 0xe0, 0xe3, 0xe7, 0xdd, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Typhlosion\u019e"}, "158": {"bytes": "0xce, 0xe3, 0xe8, 0xe3, 0xd8, 0xdd, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Totodile\u019e"}, "159": {"bytes": "0xbd, 0xe6, 0xe3, 0xd7, 0xe3, 0xe2, 0xd5, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Croconaw\u019e"}, "160": {"bytes": "0xc0, 0xd9, 0xe6, 0xd5, 0xe0, 0xdd, 0xdb, 0xd5, 0xe8, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Feraligatr\u019e"}, "161": {"bytes": "0xcd, 0xd9, 0xe2, 0xe8, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sentret\u019e"}, "162": {"bytes": "0xc0, 0xe9, 0xe6, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Furret\u019e"}, "163": {"bytes": "0xc2, 0xe3, 0xe3, 0xe8, 0xdc, 0xe3, 0xe3, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hoothoot\u019e"}, "164": {"bytes": "0xc8, 0xe3, 0xd7, 0xe8, 0xe3, 0xeb, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Noctowl\u019e"}, "165": {"bytes": "0xc6, 0xd9, 0xd8, 0xed, 0xd6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ledyba\u019e"}, "166": {"bytes": "0xc6, 0xd9, 0xd8, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ledian\u019e"}, "167": {"bytes": "0xcd, 0xe4, 0xdd, 0xe2, 0xd5, 0xe6, 0xd5, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Spinarak\u019e"}, "168": {"bytes": "0xbb, 0xe6, 0xdd, 0xd5, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ariados\u019e"}, "169": {"bytes": "0xbd, 0xe6, 0xe3, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Crobat\u019e"}, "170": {"bytes": "0xbd, 0xdc, 0xdd, 0xe2, 0xd7, 0xdc, 0xe3, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chinchou\u019e"}, "171": {"bytes": "0xc6, 0xd5, 0xe2, 0xe8, 0xe9, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lanturn\u019e"}, "172": {"bytes": "0xca, 0xdd, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pichu\u019e"}, "173": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xda, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cleffa\u019e"}, "174": {"bytes": "0xc3, 0xdb, 0xdb, 0xe0, 0xed, 0xd6, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Igglybuff\u019e"}, "175": {"bytes": "0xce, 0xe3, 0xdb, 0xd9, 0xe4, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Togepi\u019e"}, "176": {"bytes": "0xce, 0xe3, 0xdb, 0xd9, 0xe8, 0xdd, 0xd7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Togetic\u019e"}, "177": {"bytes": "0xc8, 0xd5, 0xe8, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Natu\u019e"}, "178": {"bytes": "0xd2, 0xd5, 0xe8, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Xatu\u019e"}, "179": {"bytes": "0xc7, 0xd5, 0xe6, 0xd9, 0xd9, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mareep\u019e"}, "180": {"bytes": "0xc0, 0xe0, 0xd5, 0xd5, 0xda, 0xda, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Flaaffy\u019e"}, "181": {"bytes": "0xbb, 0xe1, 0xe4, 0xdc, 0xd5, 0xe6, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ampharos\u019e"}, "182": {"bytes": "0xbc, 0xd9, 0xe0, 0xe0, 0xe3, 0xe7, 0xe7, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bellossom\u019e"}, "183": {"bytes": "0xc7, 0xd5, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Marill\u019e"}, "184": {"bytes": "0xbb, 0xee, 0xe9, 0xe1, 0xd5, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Azumarill\u019e"}, "185": {"bytes": "0xcd, 0xe9, 0xd8, 0xe3, 0xeb, 0xe3, 0xe3, 0xd8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sudowoodo\u019e"}, "186": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xe8, 0xe3, 0xd9, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Politoed\u019e"}, "187": {"bytes": "0xc2, 0xe3, 0xe4, 0xe4, 0xdd, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hoppip\u019e"}, "188": {"bytes": "0xcd, 0xdf, 0xdd, 0xe4, 0xe0, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Skiploom\u019e"}, "189": {"bytes": "0xc4, 0xe9, 0xe1, 0xe4, 0xe0, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jumpluff\u019e"}, "190": {"bytes": "0xbb, 0xdd, 0xe4, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Aipom\u019e"}, "191": {"bytes": "0xcd, 0xe9, 0xe2, 0xdf, 0xd9, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sunkern\u019e"}, "192": {"bytes": "0xcd, 0xe9, 0xe2, 0xda, 0xe0, 0xe3, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sunflora\u019e"}, "193": {"bytes": "0xd3, 0xd5, 0xe2, 0xe1, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Yanma\u019e"}, "194": {"bytes": "0xd1, 0xe3, 0xe3, 0xe4, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wooper\u019e"}, "195": {"bytes": "0xcb, 0xe9, 0xd5, 0xdb, 0xe7, 0xdd, 0xe6, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Quagsire\u019e"}, "196": {"bytes": "0xbf, 0xe7, 0xe4, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Espeon\u019e"}, "197": {"bytes": "0xcf, 0xe1, 0xd6, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Umbreon\u019e"}, "198": {"bytes": "0xc7, 0xe9, 0xe6, 0xdf, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Murkrow\u019e"}, "199": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowking\u019e"}, "200": {"bytes": "0xc7, 0xdd, 0xe7, 0xd8, 0xe6, 0xd9, 0xd5, 0xea, 0xe9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Misdreavus\u019e"}, "201": {"bytes": "0xcf, 0xe2, 0xe3, 0xeb, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Unown\u019e"}, "202": {"bytes": "0xd1, 0xe3, 0xd6, 0xd6, 0xe9, 0xda, 0xda, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wobbuffet\u019e"}, "203": {"bytes": "0xc1, 0xdd, 0xe6, 0xd5, 0xda, 0xd5, 0xe6, 0xdd, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Girafarig\u019e"}, "204": {"bytes": "0xca, 0xdd, 0xe2, 0xd9, 0xd7, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pineco\u019e"}, "205": {"bytes": "0xc0, 0xe3, 0xe6, 0xe6, 0xd9, 0xe8, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Forretress\u019e"}, "206": {"bytes": "0xbe, 0xe9, 0xe2, 0xe7, 0xe4, 0xd5, 0xe6, 0xd7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dunsparce\u019e"}, "207": {"bytes": "0xc1, 0xe0, 0xdd, 0xdb, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gligar\u019e"}, "208": {"bytes": "0xcd, 0xe8, 0xd9, 0xd9, 0xe0, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Steelix\u019e"}, "209": {"bytes": "0xcd, 0xe2, 0xe9, 0xd6, 0xd6, 0xe9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Snubbull\u019e"}, "210": {"bytes": "0xc1, 0xe6, 0xd5, 0xe2, 0xd6, 0xe9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Granbull\u019e"}, "211": {"bytes": "0xcb, 0xeb, 0xdd, 0xe0, 0xda, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Qwilfish\u019e"}, "212": {"bytes": "0xcd, 0xd7, 0xdd, 0xee, 0xe3, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Scizor\u019e"}, "213": {"bytes": "0xcd, 0xdc, 0xe9, 0xd7, 0xdf, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Shuckle\u019e"}, "214": {"bytes": "0xc2, 0xd9, 0xe6, 0xd5, 0xd7, 0xe6, 0xe3, 0xe7, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Heracross\u019e"}, "215": {"bytes": "0xcd, 0xe2, 0xd9, 0xd5, 0xe7, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sneasel\u019e"}, "216": {"bytes": "0xce, 0xd9, 0xd8, 0xd8, 0xdd, 0xe9, 0xe6, 0xe7, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Teddiursa\u019e"}, "217": {"bytes": "0xcf, 0xe6, 0xe7, 0xd5, 0xe6, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ursaring\u019e"}, "218": {"bytes": "0xcd, 0xe0, 0xe9, 0xdb, 0xe1, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slugma\u019e"}, "219": {"bytes": "0xc7, 0xd5, 0xdb, 0xd7, 0xd5, 0xe6, 0xdb, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magcargo\u019e"}, "220": {"bytes": "0xcd, 0xeb, 0xdd, 0xe2, 0xe9, 0xd6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Swinub\u019e"}, "221": {"bytes": "0xca, 0xdd, 0xe0, 0xe3, 0xe7, 0xeb, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Piloswine\u019e"}, "222": {"bytes": "0xbd, 0xe3, 0xe6, 0xe7, 0xe3, 0xe0, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Corsola\u019e"}, "223": {"bytes": "0xcc, 0xd9, 0xe1, 0xe3, 0xe6, 0xd5, 0xdd, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Remoraid\u019e"}, "224": {"bytes": "0xc9, 0xd7, 0xe8, 0xdd, 0xe0, 0xe0, 0xd9, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Octillery\u019e"}, "225": {"bytes": "0xbe, 0xd9, 0xe0, 0xdd, 0xd6, 0xdd, 0xe6, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Delibird\u019e"}, "226": {"bytes": "0xc7, 0xd5, 0xe2, 0xe8, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mantine\u019e"}, "227": {"bytes": "0xcd, 0xdf, 0xd5, 0xe6, 0xe1, 0xe3, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Skarmory\u019e"}, "228": {"bytes": "0xc2, 0xe3, 0xe9, 0xe2, 0xd8, 0xe3, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Houndour\u019e"}, "229": {"bytes": "0xc2, 0xe3, 0xe9, 0xe2, 0xd8, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Houndoom\u019e"}, "230": {"bytes": "0xc5, 0xdd, 0xe2, 0xdb, 0xd8, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kingdra\u019e"}, "231": {"bytes": "0xca, 0xdc, 0xd5, 0xe2, 0xe4, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Phanpy\u019e"}, "232": {"bytes": "0xbe, 0xe3, 0xe2, 0xe4, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Donphan\u019e"}, "233": {"bytes": "0xca, 0xe3, 0xe6, 0xed, 0xdb, 0xe3, 0xe2, 0xa3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Porygon2\u019e"}, "234": {"bytes": "0xcd, 0xe8, 0xd5, 0xe2, 0xe8, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Stantler\u019e"}, "235": {"bytes": "0xcd, 0xe1, 0xd9, 0xd5, 0xe6, 0xdb, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Smeargle\u019e"}, "236": {"bytes": "0xce, 0xed, 0xe6, 0xe3, 0xdb, 0xe9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tyrogue\u019e"}, "237": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xe8, 0xe3, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmontop\u019e"}, "238": {"bytes": "0xcd, 0xe1, 0xe3, 0xe3, 0xd7, 0xdc, 0xe9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Smoochum\u019e"}, "239": {"bytes": "0xbf, 0xe0, 0xd9, 0xdf, 0xdd, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Elekid\u019e"}, "240": {"bytes": "0xc7, 0xd5, 0xdb, 0xd6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magby\u019e"}, "241": {"bytes": "0xc7, 0xdd, 0xe0, 0xe8, 0xd5, 0xe2, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Miltank\u019e"}, "242": {"bytes": "0xbc, 0xe0, 0xdd, 0xe7, 0xe7, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Blissey\u019e"}, "243": {"bytes": "0xcc, 0xd5, 0xdd, 0xdf, 0xe3, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raikou\u019e"}, "244": {"bytes": "0xbf, 0xe2, 0xe8, 0xd9, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Entei\u019e"}, "245": {"bytes": "0xcd, 0xe9, 0xdd, 0xd7, 0xe9, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Suicune\u019e"}, "246": {"bytes": "0xc6, 0xd5, 0xe6, 0xea, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Larvitar\u019e"}, "247": {"bytes": "0xca, 0xe9, 0xe4, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pupitar\u019e"}, "248": {"bytes": "0xce, 0xed, 0xe6, 0xd5, 0xe2, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tyranitar\u019e"}, "249": {"bytes": "0xc6, 0xe9, 0xdb, 0xdd, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lugia\u019e"}, "250": {"bytes": "0xc2, 0xe3, 0xae, 0xc9, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ho-Oh\u019e"}, "251": {"bytes": "0xbd, 0xd9, 0xe0, 0xd9, 0xd6, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Celebi\u019e"}}, "Warnings": {"0": "Warning! ' found, replacing with \u2019 !", "1": "Warning! ' found, replacing with \u2019 !", "2": "Warning! ' found, replacing with \u2019 !", "3": "Warning! ' found, replacing with \u2019 !", "4": "Warning! ' found, replacing with \u2019 !", "5": "Warning! ' found, replacing with \u2019 !", "6": "Warning! ' found, replacing with \u2019 !", "7": "Warning! ' found, replacing with \u2019 !", "8": "Warning! ' found, replacing with \u2019 !", "9": "Warning! ' found, replacing with \u2019 !", "10": "Warning! ' found, replacing with \u2019 !", "11": "Warning! ' found, replacing with \u2019 !", "12": "Warning! ' found, replacing with \u2019 !", "13": "Warning! ' found, replacing with \u2019 !", "14": "Warning! ' found, replacing with \u2019 !", "15": "Warning! ' found, replacing with \u2019 !", "16": "Warning! ' found, replacing with \u2019 !", "17": "Warning! ' found, replacing with \u2019 !", "18": "Warning! ' found, replacing with \u2019 !", "19": "Warning! ' found, replacing with \u2019 !", "20": "Warning! ' found, replacing with \u2019 !", "21": "Warning! ' found, replacing with \u2019 !", "22": "Warning! ' found, replacing with \u2019 !", "23": "Warning! ' found, replacing with \u2019 !", "24": "Warning! ' found, replacing with \u2019 !", "25": "Warning! ' found, replacing with \u2019 !", "26": "Warning! ' found, replacing with \u2019 !", "27": "Warning! ' found, replacing with \u2019 !", "28": "Warning! ' found, replacing with \u2019 !", "29": "Warning! ' found, replacing with \u2019 !", "30": "Warning! ' found, replacing with \u2019 !", "31": "Warning! ' found, replacing with \u2019 !", "32": "Warning! ' found, replacing with \u2019 !", "33": "Warning! ' found, replacing with \u2019 !", "34": "Warning! ' found, replacing with \u2019 !", "35": "Warning! ' found, replacing with \u2019 !", "36": "Warning! ' found, replacing with \u2019 !", "37": "Warning! ' found, replacing with \u2019 !", "38": "Warning! ' found, replacing with \u2019 !", "39": "Warning! ' found, replacing with \u2019 !", "40": "Warning! ' found, replacing with \u2019 !", "41": "Warning! ' found, replacing with \u2019 !", "42": "Warning! ' found, replacing with \u2019 !", "43": "Warning! ' found, replacing with \u2019 !", "44": "Warning! ' found, replacing with \u2019 !", "45": "Warning! ' found, replacing with \u2019 !", "46": "Warning! ' found, replacing with \u2019 !", "47": "Warning! ' found, replacing with \u2019 !", "48": "Warning! ' found, replacing with \u2019 !", "49": "Warning! ' found, replacing with \u2019 !", "50": "Warning! ' found, replacing with \u2019 !", "51": "Warning! ' found, replacing with \u2019 !", "52": "Warning! ' found, replacing with \u2019 !", "53": "Warning! ' found, replacing with \u2019 !", "54": "Warning! ' found, replacing with \u2019 !"}, "Errors": {}}, "French": {"PTGB": {"DIA_OPEN": {"bytes": "0xc2, 0xd9, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xab, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xd9, 0xe2, 0xe2, 0xd9, 0xe0, 0xad, 0x0, 0xbb, 0xe7, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xd9, 0xb8, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xd5, 0x0, 0xe7, 0xd7, 0xdd, 0xd9, 0xe2, 0xe8, 0xdd, 0xe7, 0xe8, 0xad, 0x0, 0xc3, 0xe2, 0xfe, 0xda, 0xd5, 0xd7, 0xe8, 0xb8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xe9, 0xd6, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe7, 0xfe, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0xab, 0xfb, 0xc7, 0xed, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe0, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xea, 0xd5, 0xe6, 0xdd, 0xe3, 0xe9, 0xe7, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xdc, 0xd5, 0xd8, 0xfe, 0xd5, 0xe2, 0xed, 0x0, 0xd6, 0xe6, 0xd9, 0xd5, 0xdf, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0xe7, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xad, 0xad, 0xfb, 0xcd, 0xe3, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0xb4, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xdd, 0xe2, 0xdb, 0xfe, 0xe3, 0xe2, 0x0, 0xd5, 0x0, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0xfe, 0xe3, 0xe0, 0xd8, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0xab, 0xfb, 0xc3, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xdc, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0xb8, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xb4, 0xe7, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xdd, 0xe2, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd9, 0xed, 0x0, 0xe1, 0xd9, 0xd9, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0xab, 0xfb, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xda, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe1, 0xed, 0x0, 0xdb, 0xe3, 0xd5, 0xe0, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xd8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xd5, 0xe1, 0xd9, 0xae, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb4, 0xe7, 0xfe, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xfb, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xe2, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe9, 0xe8, 0xfe, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xe7, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xa3, 0xa6, 0xa1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xd7, 0xd5, 0xe8, 0xd5, 0xe0, 0xe3, 0xdb, 0xe9, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xbe, 0xd9, 0xec, 0xae, 0x0, 0xe3, 0xe6, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe6, 0xe8, 0xad, 0xfb, 0xbc, 0xe9, 0xe8, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xae, 0xfe, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xe6, 0xd9, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xd5, 0xe0, 0xe0, 0xab, 0xfb, 0xc9, 0xe2, 0xd9, 0x0, 0xe0, 0xd5, 0xe7, 0xe8, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0xb8, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0xae, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdb, 0xe3, 0xd9, 0xe7, 0x0, 0xeb, 0xe6, 0xe3, 0xe2, 0xdb, 0xab, 0xfe, 0xc3, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdf, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xad, 0xad, 0xad, 0xfb, 0xeb, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0xb8, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hey there! I\u2019m Professor Fennel. As\u0147you can see, I\u2019m a scientist. In\u0147fact, the subject I\u2019m researching is\u0147Trainers!\u023cMy dream is to collect save files of\u0147various trainers, but I haven\u2019t had\u0147any breakthroughs yet...\u023cSo in the meantime, I\u2019ve been working\u0147on a different project with one of my\u0147old friends!\u023cIn my home region, there\u2019s a location\u0147that can make a Pok\u00e9mon\u2019s dreams into\u0147reality.\u023cThis means that any other Pok\u00e9mon\u0147they meet in their dreams become\u0147real!\u023cThat\u2019s fantastic, but my goal is to\u0147do the same- just with a trainer\u2019s\u0147dream instead! That\u2019s why I need your\u0147help!\u023cI want to bring as many Pok\u00e9mon out\u0147of your dreams as possible!\u023cThere\u2019s just over 250 Pok\u00e9mon I want\u0147to catalogue in my Dream Pok\u00e9Dex- or\u0147Dream Dex for short.\u023cBut I\u2019ll let you keep any Pok\u00e9mon-\u0147they\u2019re from your dreams after all!\u023cOne last note, save data backups are\u0147recommended- just on the off chance\u0147that something goes wrong!\u0147I think that\u2019s everything...\u023cwhenever you\u2019re ready to start, just\u0147let me know!\u019e"}, "DIA_E4": {"bytes": "0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xe8, 0xdc, 0xe6, 0xdd, 0xe0, 0xe0, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0xfe, 0xd8, 0xd9, 0xd7, 0xdd, 0xd8, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe9, 0xe6, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xd9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0xab, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd5, 0xe8, 0xd9, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbf, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xc0, 0xe3, 0xe9, 0xe6, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xdc, 0xd5, 0xe1, 0xe4, 0xdd, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi trainer! I\u2019m thrilled you\u2019ve\u0147decided to help with our research,\u0147but we need the best of the best!\u023cCome back after you\u2019ve beaten the\u0147Elite Four and become the Champion!\u019e"}, "DIA_MG_FRLGE": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0xfe, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xae, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xc1, 0xc3, 0xc0, 0xce, 0xab, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe2, 0xd9, 0xd5, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xc7, 0xd5, 0xe6, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xda, 0xdd, 0xe0, 0xe0, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe2, 0xd5, 0xdd, 0xe6, 0xd9, 0x0, 0xd5, 0xe7, 0xfe, 0xda, 0xe3, 0xe0, 0xe0, 0xe3, 0xeb, 0xe7, 0xf0, 0x0, 0xc6, 0xc3, 0xc8, 0xc5, 0x0, 0xce, 0xc9, 0xc1, 0xbf, 0xce, 0xc2, 0xbf, 0xcc, 0x0, 0xd1, 0xc3, 0xce, 0xc2, 0x0, 0xbb, 0xc6, 0xc6, 0xad, 0xfb, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xdb, 0xe3, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, one more thing to take\u0147care of before we can begin- you need\u0147to enable MYSTERY GIFT!\u023cHead to the nearest Pok\u00e9 Mart and\u0147fill out the questionnaire as\u0147follows: LINK TOGETHER WITH ALL.\u023cAfter that, you should be all set to\u0147go! See you soon!\u019e"}, "DIA_MG_RS": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0xfe, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xae, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0xab, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbf, 0xce, 0xbb, 0xc6, 0xbc, 0xcf, 0xcc, 0xc1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xbd, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xe2, 0x0, 0xe2, 0xd9, 0xec, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0xf0, 0xfe, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0x0, 0xc3, 0xcd, 0x0, 0xbf, 0xd2, 0xbd, 0xc3, 0xce, 0xc3, 0xc8, 0xc1, 0xad, 0x0, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0xb8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdb, 0xe3, 0xab, 0xfb, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, one more thing to take\u0147care of before we can begin- you need\u0147to enable MYSTERY EVENT!\u023cHead to the PETALBURG Pok\u00e9mon Center\u0147and tell the man next to the PC:\u0147MYSTERY EVENT IS EXCITING. After\u0147that, you should be all set to go!\u023cSee you soon!\u019e"}, "DIA_LETS_START": {"bytes": "0xca, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0xb8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xc3, 0xfe, 0xe2, 0xd9, 0xd9, 0xd8, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xdb, 0xd9, 0xe8, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0xd9, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Perfect, that\u2019s all the information I\u0147need! Let\u2019s get started!\u019e"}, "DIA_START": {"bytes": "0xc9, 0xe2, 0x0, 0xd5, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xb8, 0xfe, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xdd, 0xe7, 0xdc, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xad, 0xfb, 0xc3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xad, 0xfb, 0xce, 0xdc, 0xd9, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xfe, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0x0, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0xad, 0xfb, 0xc9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0xb8, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xbd, 0xe0, 0xe9, 0xd6, 0xfe, 0xd5, 0xe8, 0xe8, 0xd9, 0xe2, 0xd8, 0xd5, 0xe2, 0xe8, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0x0, 0xdd, 0xe2, 0xdd, 0xe8, 0xdd, 0xd5, 0xe8, 0xd9, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xd9, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "On a second Game Boy family system,\u0147please load the Game Boy Pok\u00e9mon game\u0147you wish to transfer from.\u023cIn your Game Boy Pok\u00e9mon game, make\u0147your current box the one you want to\u0147transfer from.\u023cThen connect this Game Boy Advance to\u0147the other Game Boy family system\u0147using a Game Boy Color link cable.\u023cOnce you\u2019re ready, press A on this\u0147device, talk to the Cable Club\u0147attendant, and then initiate a trade.\u019e"}, "DIA_TRANS_GOOD": {"bytes": "0xbb, 0xe1, 0xd5, 0xee, 0xdd, 0xe2, 0xdb, 0xab, 0x0, 0xc0, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0xab, 0x0, 0xbf, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0xfe, 0xe4, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Amazing! Fantastic! Everything went\u0147perfectly!\u019e"}, "DIA_NEW_DEX": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xdd, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xab, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xd9, 0xec, 0xe8, 0xe6, 0xd5, 0x0, 0xe7, 0xeb, 0xd9, 0xd9, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xe6, 0xd9, 0xeb, 0xd5, 0xe6, 0xd8, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like there\u2019s at least one\u0147new Pok\u00e9mon here that isn\u2019t in the\u0147Dream Dex! I\u2019ll give them something\u0147extra sweet as a reward for you both.\u019e"}, "DIA_NO_NEW_DEX": {"bytes": "0xc3, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0xe2, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0xfe, 0xe3, 0xdf, 0xd5, 0xed, 0xab, 0x0, 0xc3, 0xe8, 0xb4, 0xe7, 0x0, 0xdd, 0xe1, 0xe4, 0xe3, 0xe6, 0xe8, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0xfe, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe9, 0xe0, 0xe8, 0xe7, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe1, 0xe9, 0xe0, 0xe8, 0xdd, 0xe4, 0xe0, 0xd9, 0x0, 0xe8, 0xd9, 0xe7, 0xe8, 0xe7, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It doesn\u2019t look like there\u2019s anything\u0147new for your Dream Dex, but that\u2019s\u0147okay! It\u2019s important to confirm\u0147research results with multiple tests!\u019e"}, "DIA_SEND_FRIEND_KANTO": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0x0, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0x0, 0xe3, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xe3, 0xe2, 0x0, 0xcd, 0xd9, 0xea, 0xd9, 0xe2, 0x0, 0xc3, 0xe7, 0xe0, 0xd5, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up! They live just south of\u0147the Pok\u00e9mon center on Seven Island!\u019e"}, "DIA_SEND_FRIEND_HOENN_RS": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xc7, 0xe3, 0xe7, 0xe7, 0xd8, 0xd9, 0xd9, 0xe4, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up!\u023cThey live just southeast of the\u0147Pok\u00e9mon center in Mossdeep City!\u019e"}, "DIA_SEND_FRIEND_HOENN_E": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xcd, 0xe3, 0xe3, 0xe8, 0xe3, 0xe4, 0xe3, 0xe0, 0xdd, 0xe7, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up!\u023cThey live just southeast of the\u0147Pok\u00e9mon center in Sootopolis City!\u019e"}, "DIA_THANK": {"bytes": "0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xfe, 0xd1, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xb8, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Thank you so much for your help!\u0147Whenever you want to transfer more\u0147Pok\u00e9mon, just let me know! See you\u0147around!\u019e"}, "DIA_GET_MON": {"bytes": "0xe9, 0xe2, 0xe9, 0xe7, 0xd9, 0xd8, 0xb8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "unused, will be removed\u019e"}, "DIA_MG_OTHER_EVENT": {"bytes": "0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xfe, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xad, 0xfe, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xd6, 0xe0, 0xd9, 0xe1, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe3, 0xea, 0xd9, 0xe6, 0xeb, 0xe6, 0xdd, 0xe8, 0xe8, 0xd9, 0xe2, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xad, 0xfb, 0xce, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xe2, 0xe3, 0xeb, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xec, 0xe4, 0xd9, 0xe6, 0xdd, 0xd9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0xae, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi Trainer! It looks like you have a\u0147different event currently loaded.\u0147That\u2019s no problem, but it will be\u0147overwritten if you continue.\u023cTurn off the system now if you want\u0147to experience your current event, but\u0147otherwise-\u019e"}, "DIA_PKMN_TO_COLLECT": {"bytes": "0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe9, 0xe4, 0xad, 0xad, 0xad, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0xb4, 0xe8, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe9, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0xfe, 0xe8, 0xdc, 0xe3, 0xe7, 0xd9, 0x0, 0xe9, 0xe4, 0xad, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi Trainer! It looks like you still\u0147have Pok\u00e9mon to pick up... I can\u2019t\u0147send over new Pok\u00e9mon until you pick\u0147those up.\u023cCome back after you\u2019ve received them!\u019e"}, "DIA_NO_VALID_PKMN": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xea, 0xd5, 0xe0, 0xdd, 0xd8, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xe2, 0xe3, 0xeb, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xd8, 0xe3, 0xe9, 0xd6, 0xe0, 0xd9, 0x0, 0xd7, 0xdc, 0xd9, 0xd7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xdd, 0xe8, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry Trainer, it doesn\u2019t look like\u0147you have any valid Pok\u00e9mon in your\u0147current box right now.\u023cGo double check your current box and\u0147we can give it another shot!\u019e"}, "DIA_ASK_QUEST": {"bytes": "0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xbc, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xb8, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd5, 0xe7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0x0, 0xda, 0xd9, 0xeb, 0x0, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi trainer! Before we begin, I need\u0147to ask you a few questions.\u019e"}, "DIA_WHAT_GAME_TRANS": {"bytes": "0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xac, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "And which Game Boy Pok\u00e9mon game are\u0147you transferring from?\u019e"}, "DIA_WHAT_LANG_TRANS": {"bytes": "0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xac, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "What language is the Game Boy Pok\u00e9mon\u0147game that you\u2019re transferring from?\u019e"}, "DIA_NO_GB_ROM": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xe7, 0xe3, 0xe6, 0xe6, 0xed, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xea, 0xd9, 0xe6, 0xe7, 0xdd, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m sorry, but that version in that\u0147language is not currently supported.\u019e"}, "DIA_IN_BOX": {"bytes": "0xbb, 0xe0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0xad, 0xfb, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xd9, 0xe1, 0xd6, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xd5, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe7, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xbd, 0xbb, 0xc8, 0xc8, 0xc9, 0xce, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xad, 0xfb, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xe3, 0xe6, 0xfe, 0xe7, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Alright! Let\u2019s take a look at the\u0147Pok\u00e9mon that will be transfered.\u023cPlease remember, once a Pok\u00e9mon is\u0147transfered, it CANNOT be returned to\u0147the Game Boy Game Pak.\u023cSelect confirm once you\u2019re ready, or\u0147select cancel if you want to keep the\u0147Pok\u00e9mon on your Game Boy Game Pak.\u019e"}, "DIA_MYTHIC_CONVERT": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0x0, 0xe6, 0xd5, 0xe6, 0xd9, 0xfe, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xab, 0x0, 0xbe, 0xe9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xe6, 0xd5, 0xe6, 0xdd, 0xe8, 0xed, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xea, 0xd9, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xad, 0xfb, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xd8, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0xb4, 0xe0, 0xe0, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xd9, 0xe8, 0xfe, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xb8, 0x0, 0xc9, 0xce, 0xb8, 0x0, 0xce, 0xc3, 0xbe, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xcd, 0xdc, 0xdd, 0xe2, 0xdd, 0xe2, 0xd9, 0xe7, 0xe7, 0xad, 0xfb, 0xc9, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe0, 0xd9, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe7, 0x0, 0xdd, 0xe7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xdb, 0xe9, 0xd5, 0xe6, 0xd9, 0xe2, 0xe8, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xda, 0xe9, 0xe8, 0xe9, 0xe6, 0xd9, 0xad, 0x0, 0xbe, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xac, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd5, 0xe4, 0xe4, 0xe0, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd6, 0xe3, 0xec, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like you have a rare\u0147Mythical Pok\u00e9mon! Due to their\u0147rarity, it seems they\u2019ve overloaded\u0147the machine.\u023cI can stablize them if you\u2019d like,\u0147but it\u2019ll change some things like met\u0147location, OT, TID, and Shininess.\u023cOtherwise I can leave them as is, but\u0147there\u2019s no guarentee that they\u2019ll be\u0147transferrable in the future. Do you\u0147want me to stablize them?\u023cThis will apply to all of the\u0147Mythical Pok\u00e9mon currently in your\u0147box.\u019e"}, "DIA_CANCEL": {"bytes": "0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0xab, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xdd, 0xda, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "No worries! Feel free to come back if\u0147you change your mind! See you around!\u019e"}, "DIA_SOME_INVALID_PKMN": {"bytes": "0xc3, 0x0, 0xe7, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0xad, 0xfb, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xe3, 0xe0, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe8, 0xd9, 0xe1, 0xe7, 0x0, 0xe3, 0xe6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xdd, 0xd9, 0xd8, 0xfe, 0xdd, 0xe2, 0xd7, 0xe3, 0xe6, 0xe6, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0x0, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0x0, 0xe9, 0xe2, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0xfe, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0xad, 0xfb, 0xce, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xda, 0xdd, 0xe2, 0xd9, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I see there is at least one Pok\u00e9mon\u0147that cannot be transferred from your\u0147current box.\u023cPok\u00e9mon holding items or modified\u0147incorrectly through unintended means\u0147cannot be transferred.\u023cThe other Pok\u00e9mon will transfer just\u0147fine though!\u019e"}, "DIA_MENU_BACK": {"bytes": "0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0xab, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xfe, 0xd5, 0xe2, 0xed, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "No worries! Feel free to come back\u0147any time!\u019e"}, "DIA_IS_MISSINGNO": {"bytes": "0xad, 0xad, 0xad, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xad, 0xad, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0x0, 0xd6, 0xd9, 0x0, 0xdb, 0xe6, 0xd5, 0xe4, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0xb8, 0x0, 0xe7, 0xe3, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "... It seems like one of your Pok\u00e9mon\u0147is messing with the machine... It\u0147looks to only be graphical though, so\u0147we can continue!\u019e"}, "DIA_ERROR_COLOSSEUM": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd7, 0xe3, 0xe0, 0xe3, 0xe7, 0xe7, 0xd9, 0xe9, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0xfe, 0xe6, 0xe3, 0xe3, 0xe1, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like you went to the\u0147colosseum instead of the trading\u0147room! Let\u2019s try that again!\u019e"}, "DIA_ERROR_COM_ENDED": {"bytes": "0xbd, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0xfe, 0xeb, 0xd5, 0xe7, 0x0, 0xe8, 0xd9, 0xe6, 0xe1, 0xdd, 0xe2, 0xd5, 0xe8, 0xd9, 0xd8, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Communication with the other device\u0147was terminated. Let\u2019s try that again!\u019e"}, "DIA_ERROR_DISCONNECT": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xfe, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xd8, 0xdd, 0xe7, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xd9, 0xd8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like the Game Boy Color link\u0147cable was disconnected... Let\u2019s try\u0147that again!\u019e"}, "DIA_ERROR_TIME_ONE": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0xfe, 0xe3, 0xe9, 0xe8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like the connection timed\u0147out... Let\u2019s try that again!\u019e"}, "DIA_ERROR_TIME_TWO": {"bytes": "0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0xfe, 0xe3, 0xe9, 0xe8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It seems like the connection timed\u0147out... Let\u2019s try that again!\u019e"}, "DIA_WHAT_LANG_EVENT": {"bytes": "0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0xac, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "What language is the Game Boy Pok\u00e9mon\u0147game that you want to send an event\u0147to?\u019e"}, "DIA_WHAT_GAME_EVENT": {"bytes": "0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd8, 0xe3, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xac, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "And which Game Boy Pok\u00e9mon game do\u0147you want to send an event to?\u019e"}, "DIA_K_DEX_NOT_FULL": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xa2, 0xa6, 0xa1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xeb, 0xd9, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, it looks like you\u0147haven\u2019t caught all 150 Pok\u00e9mon from\u0147the Kanto region yet.\u023cGo out and catch them all and then\u0147we\u2019ll be able to send over the event!\u019e"}, "DIA_J_DEX_NOT_FULL": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xaa, 0xaa, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc4, 0xe3, 0xdc, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xeb, 0xd9, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, it looks like you\u0147haven\u2019t caught all 99 new Pok\u00e9mon\u0147from the Johto region yet.\u023cGo out and catch them all and then\u0147we\u2019ll be able to send over the event!\u019e"}}, "RSEFRLG": {"dia_textGreet_rse": {"bytes": "0xd1, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0xb8, 0x0, 0xc3, 0x0, 0xe8, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xe0, 0xd8, 0xfe, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0x0, 0xce, 0xcc, 0xbb, 0xc3, 0xc8, 0xbf, 0xcc, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "When I was young, I traveled the world\u0147as a POK\u00e9MON TRAINER.\u019e"}, "dia_textGreet_frlg": {"bytes": "0xc3, 0x0, 0xe1, 0xd5, 0xed, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xe2, 0xe3, 0xeb, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0xd9, 0xe6, 0xb0, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "I may not look like much now,\u0147but when I was younger\u2026\u019e"}, "dia_textMoveBox_rs": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe9, 0xe2, 0xe0, 0xe3, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd8, 0xe3, 0xe3, 0xe6, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to unlock the\u0147door!\u019e"}, "dia_textMoveBox_frlg": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd6, 0xe3, 0xec, 0xd9, 0xe7, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to move the\u0147boxes!\u019e"}, "dia_textMoveBox_e": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe0, 0xd5, 0xe2, 0xe8, 0xe7, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to move the\u0147plants!\u019e"}, "dia_textWeHere_r": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xc7, 0xbb, 0xd2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leader MAXIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_s": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xbb, 0xcc, 0xbd, 0xc2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leader ARCHIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_frlg": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xc1, 0xc3, 0xc9, 0xd0, 0xbb, 0xc8, 0xc8, 0xc3, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Kanto to find\u0147the leader GIOVANNI.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_e": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0xe7, 0x0, 0xc7, 0xbb, 0xd2, 0xc3, 0xbf, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xcc, 0xbd, 0xc2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leaders MAXIE and ARCHIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textRecieved": {"bytes": "0xfc, 0x1, 0x2, 0xfd, 0x1, 0xb4, 0xcd, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0x0, 0xeb, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c1\u01b2\u00c0\u2019S POK\u00e9MON were sent to\u0147the PC!\u019e"}, "dia_textYouMustBe_first": {"bytes": "0xbb, 0xdc, 0xab, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xfd, 0x1, 0xab, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe8, 0xe3, 0xe0, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd7, 0xe3, 0xe1, 0xdd, 0xe2, 0xdb, 0xad, 0xfb, 0xc9, 0xdc, 0xab, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xab, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0xab, 0xfe, 0xc9, 0xe6, 0xb8, 0x0, 0xe6, 0xd5, 0xe8, 0xdc, 0xd9, 0xe6, 0xb8, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdd, 0xe2, 0xe8, 0xe6, 0xe3, 0xd8, 0xe9, 0xd7, 0xd9, 0x0, 0xe1, 0xed, 0xe7, 0xd9, 0xe0, 0xda, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "Ah! You must be \u01b2\u00c0! I was\u0147told you\u2019d be coming.\u023cOh! I still wear my disguise! Pardon!\u0147Or, rather, let me introduce myself.\u019e"}, "dia_textYouMustBe_second": {"bytes": "0xbb, 0xdc, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0x0, 0xd1, 0xd9, 0xe0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xab, 0x0, 0xc1, 0xe3, 0xe3, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xe7, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xfb, 0xc9, 0xdc, 0xab, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xab, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "Ah, \u01b2\u00c0! Welcome back! Good to\u0147see you again!\u023cOh! I still wear my disguise! Pardon!\u019e"}, "dia_textIAm_first": {"bytes": "0xfc, 0x1, 0x8, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xd5, 0x0, 0xdb, 0xe0, 0xe3, 0xd6, 0xd9, 0xae, 0xe8, 0xe6, 0xe3, 0xe8, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd9, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc3, 0xe2, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xe0, 0xdd, 0xd7, 0xd9, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb0, 0x0, 0xfa, 0xbb, 0xdc, 0xb8, 0x0, 0xe2, 0xe3, 0xb8, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0x0, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0xfe, 0xe2, 0xd5, 0xe1, 0xd9, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbI am a globe-trotting elite of the\u0147International Police.\u023cMy name\u2026 \u015eAh, no, I shall inform you of my code\u0147name only.\u023cMy code name, it is LOOKER!\u019e"}, "dia_textIAm_second": {"bytes": "0xfc, 0x1, 0x8, 0xc3, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc3, 0xb8, 0x0, 0xdb, 0xe0, 0xe3, 0xd6, 0xd9, 0xae, 0xe8, 0xe6, 0xe3, 0xe8, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd9, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc3, 0xe2, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xe0, 0xdd, 0xd7, 0xd9, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbIt is I, globe-trotting elite of the\u0147International Police.\u023cMy code name, it is LOOKER!\u019e"}, "dia_textPCConvo": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbb, 0xdc, 0xb8, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0x0, 0xc3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xdd, 0xe8, 0xfe, 0xfd, 0x1, 0x0, 0xdc, 0xd5, 0xe7, 0x0, 0xd5, 0xe6, 0xe6, 0xdd, 0xea, 0xd9, 0xd8, 0xac, 0xfb, 0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0xe2, 0xd8, 0xd9, 0xd9, 0xd8, 0xab, 0x0, 0xce, 0xdc, 0xd9, 0xed, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0xab, 0xfb, 0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbf, 0xec, 0xd7, 0xd9, 0xe0, 0xe0, 0xd9, 0xe2, 0xe8, 0xab, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xfe, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe1, 0xd9, 0xe2, 0xe8, 0xd5, 0xe6, 0xdd, 0xe0, 0xed, 0xb0, 0x0, 0xe7, 0xe8, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: Ah, LOOKER! I take it\u0147\u01b2\u00c0 has arrived?\u023c\u0206\u00c0\u00cbLOOKER: Indeed! They\u2019re ready to\u0147receive their POK\u00e9MON!\u023c\u0206\u00c0\u00c9FENNEL: Excellent! I\u2019ll send them\u0147over momentarily\u2026 stand by!\u019e"}, "dia_textPCThanks": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xbd, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xab, 0xfb, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: It looks like everything was\u0147sent to your PC successfully!\u023cThank you both for your help!\u019e"}, "dia_textThank": {"bytes": "0xfc, 0x1, 0x8, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xe8, 0xe3, 0xe4, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xd6, 0xed, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0xfb, 0xc3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe0, 0xe0, 0x0, 0xd9, 0xec, 0xd7, 0xe9, 0xe7, 0xd9, 0x0, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xad, 0x0, 0xfa, 0xcf, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xe3, 0xe9, 0xe6, 0x0, 0xe4, 0xd5, 0xe8, 0xdc, 0xe7, 0x0, 0xd7, 0xe6, 0xe3, 0xe7, 0xe7, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbThanks for stopping by, \u01b2\u00c0!\u023cIf you\u2019ll excuse me, I must return to\u0147my disguise. \u015eUntil our paths cross again!\u019e"}, "dia_textPCFull": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0x0, 0xdd, 0xe7, 0x0, 0xda, 0xe9, 0xe0, 0xe0, 0xab, 0xfb, 0xc1, 0xe3, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: It seems like the PC is full!\u023cGo make some room, and I can send over\u0147the rest of your POK\u00e9MON.\u019e"}, "dia_textLookerFull": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xcd, 0xe4, 0xd9, 0xd5, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0xfe, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0xfb, 0xc3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xed, 0xfe, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: Speak to me again after\u0147you\u2019ve made room, \u01b2\u00c0!\u023cIn the meantime, I will return to my\u0147disguise.\u019e"}}, "GB": {"sending_text": {"bytes": "SENDING DATA", "numLines": 0, "pixelsPerChar": "Default", "pixelsInLine": 0, "includeBoxBreaks": false}, "prof_name": {"bytes": "FENNEL", "numLines": 0, "pixelsPerChar": "Default", "pixelsInLine": 0, "includeBoxBreaks": false}}, "GENERAL": {"option_english": {"bytes": "0xbf, 0xe2, 0xdb, 0xe0, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "English\u019e"}, "option_japanese": {"bytes": "0xc4, 0xd5, 0xe4, 0xd5, 0xe2, 0xd9, 0xe7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Japanese\u019e"}, "option_spanish": {"bytes": "0xcd, 0xe4, 0xd5, 0xe2, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Spanish\u019e"}, "option_french": {"bytes": "0xc0, 0xe6, 0xd9, 0xe2, 0xd7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "French\u019e"}, "option_german": {"bytes": "0xc1, 0xd9, 0xe6, 0xe1, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "German\u019e"}, "option_italian": {"bytes": "0xc3, 0xe8, 0xd5, 0xe0, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Italian\u019e"}, "option_korean": {"bytes": "0xc5, 0xe3, 0xe6, 0xd9, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Korean\u019e"}, "option_green": {"bytes": "0xc1, 0xe6, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Green\u019e"}, "option_red": {"bytes": "0xcc, 0xd9, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Red\u019e"}, "option_blue": {"bytes": "0xbc, 0xe0, 0xe9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Blue\u019e"}, "option_yellow": {"bytes": "0xd3, 0xd9, 0xe0, 0xe0, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Yellow\u019e"}, "option_gold": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Gold\u019e"}, "option_silver": {"bytes": "0xcd, 0xdd, 0xe0, 0xea, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Silver\u019e"}, "option_crystal": {"bytes": "0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Crystal\u019e"}, "option_cancel": {"bytes": "0xbd, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Cancel\u019e"}, "press_start": {"bytes": "0xca, 0xe9, 0xe7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xcd, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xab, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Push the Start Button!\u019e"}, "option_transfer": {"bytes": "0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Transfer Pok\u00e9mon\u019e"}, "option_dreamdex": {"bytes": "0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Dream Dex\u019e"}, "option_credits": {"bytes": "0xbd, 0xe6, 0xd9, 0xd8, 0xdd, 0xe8, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Credits\u019e"}, "intro_first": {"bytes": "0xc2, 0xd9, 0xe0, 0xe0, 0xe3, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0xab, 0xfe, 0xfe, 0xc4, 0xe9, 0xe7, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xeb, 0xe3, 0xe6, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xd5, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0xae, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xd1, 0xc3, 0xc6, 0xc6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xed, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe0, 0xe3, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xd6, 0xd9, 0xe8, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xdd, 0xd8, 0xb8, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd9, 0xe2, 0xde, 0xe3, 0xed, 0xab, 0xfe, 0xfe, 0xae, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 15, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": false, "text": "Hello! Thank you for using Pok\u00e9\u0147Transporter GB!\u0147\u0147Just as a word of caution- Pok\u00e9\u0147Transporter GB WILL modify both the\u0147GameBoy and GameBoy Advance save\u0147files.\u0147\u0147Please note that while Pok\u00e9\u0147Transporter GB is no longer in beta,\u0147save file backups are still\u0147recommended before using. With that\u0147all being said, please enjoy!\u0147\u0147-The Gears of Progress\u019e"}, "intro_legal": {"bytes": "0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe3, 0xda, 0xfe, 0xe0, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd5, 0xe4, 0xe4, 0xe6, 0xd9, 0xd7, 0xdd, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xd5, 0xe2, 0xd7, 0xdc, 0xdd, 0xe7, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xda, 0xdd, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xbb, 0xc6, 0xd1, 0xbb, 0xd3, 0xcd, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0xfe, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0x0, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe1, 0xe9, 0xe7, 0xdd, 0xd7, 0xfe, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xeb, 0xe2, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0x0, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0x0, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0xad, 0xfe, 0xfe, 0xfe, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xff", "numLines": 14, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": false, "text": "Pok\u00e9 Transporter GB was made out of\u0147love and appreciation for the Pokemon\u0147franchise with no profit in mind. It\u0147will ALWAYS be free.\u0147\u0147Please support the original\u0147developers.\u0147\u0147All Pokemon names, sprites, and music\u0147are owned by Nintendo, Creatures Inc,\u0147and GAME FREAK.\u0147\u0147\u0147Press A to continue\u019e"}, "cart_load_error": {"bytes": "0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xad, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xdd, 0xe2, 0xe7, 0xd9, 0xe6, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xea, 0xd9, 0xe0, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff", "numLines": 10, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "The Pok\u00e9mon save file was\u0147not loaded successfully.\u0147Please remove and reinsert\u0147the Game Pak, and then\u0147press the A button.\u0147\u0147Alternatively, press the\u0147Select button to send this\u0147program to another GameBoy\u0147Advance.\u019e"}, "pulled_cart_error": {"bytes": "0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xad, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "The Pok\u00e9mon game was\u0147removed. Please turn off\u0147the system and restart the\u0147program.\u019e"}, "send_multiboot_instructions": {"bytes": "0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xfe, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xdd, 0xe2, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0x0, 0xe1, 0xe3, 0xd8, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xc6, 0xdd, 0xe2, 0xdf, 0xfe, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0xad, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0xe2, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xfe, 0xe8, 0xe3, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff", "numLines": 10, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Please connect this system\u0147to another GameBoy Advance\u0147in Multiboot mode with a\u0147GameBoy Advance Link\u0147Cable.\u0147\u0147Then, press the A button\u0147to begin sending Pok\u00e9\u0147Transporter GB to the\u0147second GameBoy Advance.\u019e"}, "send_multiboot_wait": {"bytes": "0xcd, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0xfe, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0xfe, 0xeb, 0xd5, 0xdd, 0xe8, 0xad, 0xfe, 0xfe, 0xc2, 0xe3, 0xe0, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbc, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xad, 0xff", "numLines": 7, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Sending Pok\u00e9 Transporter\u0147GB to second GameBoy\u0147Advance system. Please\u0147wait.\u0147\u0147Hold the B Button to\u0147cancel.\u019e"}, "send_multiboot_success": {"bytes": "0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xab, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xd5, 0xed, 0xfe, 0xe2, 0xe3, 0xeb, 0x0, 0xe4, 0xe3, 0xeb, 0xd9, 0xe6, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xad, 0xff", "numLines": 7, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "\u0147Pok\u00e9 Transporter GB was\u0147sent successfully! You may\u0147now power off this GameBoy\u0147Advance system.\u019e"}, "send_multiboot_failure": {"bytes": "0xfe, 0xbb, 0xe2, 0x0, 0xd9, 0xe6, 0xe6, 0xe3, 0xe6, 0x0, 0xe3, 0xd7, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0xfe, 0xc1, 0xbc, 0xad, 0x0, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xe6, 0xe9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xfe, 0xe7, 0xd7, 0xe6, 0xd9, 0xd9, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xad, 0xff", "numLines": 7, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "\u0147An error occurred while\u0147sending Pok\u00e9 Transporter\u0147GB. Press the A button to\u0147return to the instructions\u0147screen and try again.\u019e"}, "kanto_name": {"bytes": "0xc5, 0xbb, 0xc8, 0xce, 0xc9, 0xf0, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "KANTO:\u019e"}, "johto_name": {"bytes": "0xc4, 0xc9, 0xc2, 0xce, 0xc9, 0xf0, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "JOHTO:\u019e"}}, "CREDITS": {"credits_page_1": {"bytes": "0xc6, 0xd9, 0xd5, 0xd8, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xf0, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Lead developer:\u0147\u0147The Gears of Progress\u019e"}, "credits_page_2": {"bytes": "0xc6, 0xe3, 0xdb, 0xe3, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xe3, 0xae, 0xdd, 0xd8, 0xd9, 0xd5, 0xe8, 0xe3, 0xe6, 0xf0, 0xfe, 0xfe, 0xae, 0xc4, 0xe3, 0xe1, 0xd9, 0xfe, 0xfe, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xeb, 0xe3, 0xe6, 0xdf, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xc4, 0x0, 0xbc, 0xdd, 0xe6, 0xd8, 0xe1, 0xd5, 0xe2, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Logo and co-ideator:\u0147\u0147-Jome\u0147\u0147Spritework:\u0147\u0147-LJ Birdman\u019e"}, "credits_page_3": {"bytes": "0xc3, 0xd7, 0xe3, 0xe2, 0x0, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xe9, 0xdd, 0xdb, 0xdd, 0xce, 0xc5, 0xc9, 0xfe, 0xae, 0xc1, 0xe9, 0xdd, 0xbb, 0xd6, 0xd9, 0xe0, 0xfe, 0xae, 0xcd, 0xe3, 0xe9, 0xe6, 0xbb, 0xe4, 0xe4, 0xe0, 0xd9, 0xfe, 0x2d, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd5, 0xe6, 0xe8, 0xdd, 0xe7, 0xe8, 0xe7, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xcd, 0xdc, 0xe3, 0xeb, 0xd8, 0xe3, 0xeb, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0x0, 0xbd, 0xe0, 0xd9, 0xd5, 0xe6, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Icon Sprites:\u0147\u0147-LuigiTKO\u0147-GuiAbel\u0147-SourApple\u0147& the artists from Pok\u00e9mon\u0147Showdown and Crystal Clear\u019e"}, "credits_page_4": {"bytes": "0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xe6, 0xd6, 0xdd, 0xe8, 0xe6, 0xd5, 0xe6, 0xed, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0xfe, 0xbf, 0xec, 0xd9, 0xd7, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xce, 0xdd, 0xe1, 0xe3, 0xd0, 0xc7, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Remote and Arbitrary Code\u0147Execution assistance:\u0147\u0147-TimoVM\u019e"}, "credits_page_5": {"bytes": "0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xe6, 0xdd, 0xe0, 0xd9, 0xed, 0xdf, 0xa7, 0xa5, 0xfe, 0xae, 0xcd, 0xdc, 0xd5, 0xe3, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Development assistance:\u0147\u0147-im a blisy\u0147-rileyk64\u0147-Shao\u019e"}, "credits_page_6": {"bytes": "0xcd, 0xe4, 0xd5, 0xd7, 0xd9, 0x0, 0xc9, 0xe4, 0xe8, 0xdd, 0xe1, 0xdd, 0xee, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xf0, 0xfe, 0xfe, 0xae, 0xd9, 0xd5, 0xe7, 0xed, 0xd5, 0xe7, 0xe4, 0xdd, 0xa4, 0xa2, 0xa5, 0xfe, 0xfe, 0xc6, 0xe3, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xcc, 0xc9, 0xc7, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0xfe, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0x0, 0xda, 0xe9, 0xe2, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xf0, 0xfe, 0xfe, 0xae, 0xe6, 0xdd, 0xe7, 0xdd, 0xe2, 0xdb, 0xca, 0xdc, 0xdd, 0xe0, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Space Optimization:\u0147\u0147-easyaspi314\u0147\u0147Loader ROM and Remote\u0147Multiboot functionality:\u0147\u0147-risingPhil\u019e"}, "credits_page_7": {"bytes": "0xbc, 0xe9, 0xdd, 0xe0, 0xe8, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xbe, 0xd9, 0xea, 0xdf, 0xdd, 0xe8, 0xca, 0xe6, 0xe3, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xce, 0xe3, 0xe2, 0xd7, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xc1, 0xbc, 0xbb, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Built using:\u0147\u0147\u0147-DevkitPro\u0147-LibTonc\u0147-LibGBA\u019e"}, "credits_page_8": {"bytes": "0xc3, 0xe2, 0xe7, 0xe4, 0xdd, 0xe6, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xe7, 0x0, 0xe3, 0xda, 0xf0, 0xfe, 0xfe, 0xae, 0xc1, 0xe3, 0xe4, 0xe4, 0xdd, 0xd9, 0xe6, 0xfe, 0xae, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xcc, 0xbf, 0xce, 0xc3, 0xcc, 0xbf, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Inspired by the works of:\u0147\u0147-Goppier\u0147-Lorenzooone\u0147-im a blisy\u0147-RETIRE\u019e"}, "credits_page_9": {"bytes": "0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xe7, 0x0, 0xe9, 0xe7, 0xd9, 0xd8, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xae, 0xca, 0xc5, 0xc2, 0xd9, 0xd2, 0xfe, 0xae, 0xd1, 0xbd, 0xa4, 0xce, 0xe3, 0xe3, 0xe0, 0xfe, 0xae, 0xcf, 0xe7, 0xd9, 0xe2, 0xe8, 0xdd, 0xfe, 0xae, 0xcd, 0xd5, 0xe4, 0xe4, 0xed, 0xc7, 0xdd, 0xd8, 0xce, 0xe3, 0xbb, 0xc1, 0xbc, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Programs used:\u0147\u0147\u0147-HexManiacAdvance\u0147-PKHeX\u0147-WC3Tool\u0147-Usenti\u0147-SappyMidToAGB\u019e"}, "credits_page_10": {"bytes": "0xc9, 0xe4, 0xd9, 0xe2, 0x0, 0xcd, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xc6, 0xdd, 0xd6, 0xe6, 0xd5, 0xe6, 0xdd, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xe0, 0xdd, 0xd6, 0xe8, 0xe3, 0xe2, 0xd7, 0xae, 0xd9, 0xec, 0xd5, 0xe1, 0xe4, 0xe0, 0xd9, 0xe7, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0xae, 0xdb, 0xd6, 0xd5, 0xae, 0xe0, 0xdd, 0xe2, 0xdf, 0xae, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xae, 0xd5, 0xeb, 0xd9, 0xe7, 0xe3, 0xe1, 0xd9, 0xae, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0xae, 0xd5, 0xe6, 0xd8, 0xe9, 0xdd, 0xe2, 0xe3, 0xae, 0xe4, 0xe3, 0xdf, 0xd9, 0xae, 0xdb, 0xd9, 0xe2, 0xa3, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Open Source Code and\u0147Libraries:\u0147\u0147-libtonc-examples\u0147-PokemonGen3toGenX\u0147-gba-link-connection\u0147-awesome-gbadev\u0147-arduino-poke-gen2\u019e"}, "credits_page_11": {"bytes": "0xcc, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xd5, 0xe6, 0xe1, 0xae, 0xd8, 0xe3, 0xd7, 0xe7, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0xfe, 0xc0, 0xe9, 0xe0, 0xe0, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xe7, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe3, 0xe9, 0xe2, 0xd8, 0x0, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xb4, 0xe7, 0x0, 0xc1, 0xdd, 0xe8, 0xc2, 0xe9, 0xd6, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Research resources:\u0147\u0147-arm-docs\u0147-PokemonGen3toGenX\u0147\u0147Full links can be found on\u0147this program\u2019s GitHub\u019e"}, "credits_page_12": {"bytes": "0xcc, 0xc9, 0xc7, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xd8, 0xd9, 0xd7, 0xe3, 0xe1, 0xe4, 0xdd, 0xe0, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0x0, 0xd7, 0xe6, 0xd9, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xcc, 0xbf, 0xce, 0x0, 0xe8, 0xd9, 0xd5, 0xe1, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "ROM data obtained from\u0147decompilations created by\u0147the PRET team\u019e"}, "credits_page_13": {"bytes": "0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0xf0, 0xfe, 0xfe, 0xae, 0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe4, 0xd9, 0xd8, 0xdd, 0xd5, 0xfe, 0xae, 0xcd, 0xd9, 0xe6, 0xd9, 0xd6, 0xdd, 0xdd, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xbb, 0xca, 0xc3, 0xad, 0xd7, 0xe3, 0xe1, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Pok\u00e9mon data obtained\u0147from:\u0147\u0147-Bulbapedia\u0147-Serebii\u0147-PokeAPI.com\u019e"}, "credits_page_14": {"bytes": "0xbe, 0xdd, 0xe7, 0xd7, 0xe3, 0xe6, 0xd8, 0x0, 0xd7, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xe8, 0xed, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0x0, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0xfe, 0xae, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0xae, 0xe4, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Discord community\u0147assistance:\u0147\u0147-Hex Maniac Advance\u0147Development\u0147-gbadev\u0147-pret\u019e"}, "credits_page_15": {"bytes": "0xd1, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc7, 0xd5, 0xd8, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Writing assistance:\u0147\u0147\u0147-Mad\u019e"}, "credits_page_16": {"bytes": "0xbb, 0xe2, 0x0, 0xdd, 0xe1, 0xe1, 0xd9, 0xe2, 0xe7, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0x2d, 0xfe, 0xeb, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe1, 0xb8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xe3, 0xe9, 0xe0, 0xd8, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0xad, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "An immense thanks to\u0147Lorenzooone for their\u0147assistance in reading &\u0147writing save data. Without\u0147them, this project would\u0147not have been possible.\u019e"}, "credits_page_17": {"bytes": "0xcd, 0xe4, 0xd9, 0xd7, 0xdd, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xbf, 0xe2, 0xe2, 0xb8, 0xfe, 0xe6, 0xe3, 0xdf, 0xe9, 0xb8, 0x0, 0xcd, 0xe0, 0xd9, 0xd9, 0xe4, 0xed, 0xb8, 0x0, 0xbf, 0xee, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xe6, 0xd5, 0xdc, 0xe8, 0xe3, 0xe2, 0xdd, 0xe2, 0xb8, 0x0, 0xbc, 0xd5, 0xe7, 0xd5, 0xd6, 0xdd, 0xb8, 0x0, 0xc7, 0xd5, 0xd8, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe3, 0xe2, 0xd9, 0x0, 0xeb, 0xdc, 0xe3, 0x0, 0xdc, 0xd5, 0xe7, 0xfe, 0xe0, 0xdd, 0xe7, 0xe8, 0xd9, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xd5, 0xd6, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe1, 0xe3, 0xe2, 0xe8, 0xdc, 0xe7, 0xab, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Special thanks to Enn,\u0147roku, Sleepy, Eza,\u0147sarahtonin, Basabi, Mad,\u0147and everyone who has\u0147listened to me talk about\u0147this for months!\u019e"}, "credits_page_18": {"bytes": "0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0xfe, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xe6, 0xd9, 0xe0, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xd7, 0xe3, 0xe4, 0xed, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0xfe, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xad, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0xfe, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0x0, 0xc3, 0xe2, 0xd7, 0xad, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "All Pok\u00e9mon names,\u0147sprites, and names of\u0147related resources are\u0147copyright Nintendo,\u0147Creatures Inc., and GAME\u0147FREAK Inc.\u019e"}, "credits_page_19": {"bytes": "0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0xfe, 0xd9, 0xe2, 0xd8, 0xe3, 0xe6, 0xe7, 0xd9, 0xd8, 0x0, 0xe3, 0xe6, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xc0, 0xe6, 0xd9, 0xd5, 0xdf, 0xba, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "This project is not\u0147endorsed or supported by\u0147GameFreak/Nintendo.\u0147\u0147Please support the\u0147original developers.\u019e"}}, "PKMN_NAMES": {"0": {"bytes": "0xc7, 0xdd, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0xc8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "MissingNo\u019e"}, "1": {"bytes": "0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bulbasaur\u019e"}, "2": {"bytes": "0xc3, 0xea, 0xed, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ivysaur\u019e"}, "3": {"bytes": "0xd0, 0xd9, 0xe2, 0xe9, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venusaur\u019e"}, "4": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xe1, 0xd5, 0xe2, 0xd8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charmander\u019e"}, "5": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xe1, 0xd9, 0xe0, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charmeleon\u019e"}, "6": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xdd, 0xee, 0xd5, 0xe6, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charizard\u019e"}, "7": {"bytes": "0xcd, 0xe5, 0xe9, 0xdd, 0xe6, 0xe8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Squirtle\u019e"}, "8": {"bytes": "0xd1, 0xd5, 0xe6, 0xe8, 0xe3, 0xe6, 0xe8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wartortle\u019e"}, "9": {"bytes": "0xbc, 0xe0, 0xd5, 0xe7, 0xe8, 0xe3, 0xdd, 0xe7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Blastoise\u019e"}, "10": {"bytes": "0xbd, 0xd5, 0xe8, 0xd9, 0xe6, 0xe4, 0xdd, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Caterpie\u019e"}, "11": {"bytes": "0xc7, 0xd9, 0xe8, 0xd5, 0xe4, 0xe3, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Metapod\u019e"}, "12": {"bytes": "0xbc, 0xe9, 0xe8, 0xe8, 0xd9, 0xe6, 0xda, 0xe6, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Butterfree\u019e"}, "13": {"bytes": "0xd1, 0xd9, 0xd9, 0xd8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weedle\u019e"}, "14": {"bytes": "0xc5, 0xd5, 0xdf, 0xe9, 0xe2, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kakuna\u019e"}, "15": {"bytes": "0xbc, 0xd9, 0xd9, 0xd8, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Beedrill\u019e"}, "16": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgey\u019e"}, "17": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xe3, 0xe8, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgeotto\u019e"}, "18": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xe3, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgeot\u019e"}, "19": {"bytes": "0xcc, 0xd5, 0xe8, 0xe8, 0xd5, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rattata\u019e"}, "20": {"bytes": "0xcc, 0xd5, 0xe8, 0xdd, 0xd7, 0xd5, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raticate\u019e"}, "21": {"bytes": "0xcd, 0xe4, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Spearow\u019e"}, "22": {"bytes": "0xc0, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Fearow\u019e"}, "23": {"bytes": "0xbf, 0xdf, 0xd5, 0xe2, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ekans\u019e"}, "24": {"bytes": "0xbb, 0xe6, 0xd6, 0xe3, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Arbok\u019e"}, "25": {"bytes": "0xca, 0xdd, 0xdf, 0xd5, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pikachu\u019e"}, "26": {"bytes": "0xcc, 0xd5, 0xdd, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raichu\u019e"}, "27": {"bytes": "0xcd, 0xd5, 0xe2, 0xd8, 0xe7, 0xdc, 0xe6, 0xd9, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sandshrew\u019e"}, "28": {"bytes": "0xcd, 0xd5, 0xe2, 0xd8, 0xe7, 0xe0, 0xd5, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sandslash\u019e"}, "29": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xd5, 0xe2, 0xb6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoran\u2640\u019e"}, "30": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xdd, 0xe2, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidorina\u019e"}, "31": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe5, 0xe9, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoqueen\u019e"}, "32": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xd5, 0xe2, 0xb5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoran\u2642\u019e"}, "33": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xdd, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidorino\u019e"}, "34": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoking\u019e"}, "35": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xd5, 0xdd, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Clefairy\u019e"}, "36": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xd5, 0xd6, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Clefable\u019e"}, "37": {"bytes": "0xd0, 0xe9, 0xe0, 0xe4, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vulpix\u019e"}, "38": {"bytes": "0xc8, 0xdd, 0xe2, 0xd9, 0xe8, 0xd5, 0xe0, 0xd9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ninetales\u019e"}, "39": {"bytes": "0xc4, 0xdd, 0xdb, 0xdb, 0xe0, 0xed, 0xe4, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jigglypuff\u019e"}, "40": {"bytes": "0xd1, 0xdd, 0xdb, 0xdb, 0xe0, 0xed, 0xe8, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wigglytuff\u019e"}, "41": {"bytes": "0xd4, 0xe9, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Zubat\u019e"}, "42": {"bytes": "0xc1, 0xe3, 0xe0, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golbat\u019e"}, "43": {"bytes": "0xc9, 0xd8, 0xd8, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Oddish\u019e"}, "44": {"bytes": "0xc1, 0xe0, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gloom\u019e"}, "45": {"bytes": "0xd0, 0xdd, 0xe0, 0xd9, 0xe4, 0xe0, 0xe9, 0xe1, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vileplume\u019e"}, "46": {"bytes": "0xca, 0xd5, 0xe6, 0xd5, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Paras\u019e"}, "47": {"bytes": "0xca, 0xd5, 0xe6, 0xd5, 0xe7, 0xd9, 0xd7, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Parasect\u019e"}, "48": {"bytes": "0xd0, 0xd9, 0xe2, 0xe3, 0xe2, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venonat\u019e"}, "49": {"bytes": "0xd0, 0xd9, 0xe2, 0xe3, 0xe1, 0xe3, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venomoth\u019e"}, "50": {"bytes": "0xbe, 0xdd, 0xdb, 0xe0, 0xd9, 0xe8, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Diglett\u019e"}, "51": {"bytes": "0xbe, 0xe9, 0xdb, 0xe8, 0xe6, 0xdd, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dugtrio\u019e"}, "52": {"bytes": "0xc7, 0xd9, 0xe3, 0xeb, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Meowth\u019e"}, "53": {"bytes": "0xca, 0xd9, 0xe6, 0xe7, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Persian\u019e"}, "54": {"bytes": "0xca, 0xe7, 0xed, 0xd8, 0xe9, 0xd7, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Psyduck\u019e"}, "55": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xe9, 0xd7, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golduck\u019e"}, "56": {"bytes": "0xc7, 0xd5, 0xe2, 0xdf, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mankey\u019e"}, "57": {"bytes": "0xca, 0xe6, 0xdd, 0xe1, 0xd9, 0xd5, 0xe4, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Primeape\u019e"}, "58": {"bytes": "0xc1, 0xe6, 0xe3, 0xeb, 0xe0, 0xdd, 0xe8, 0xdc, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Growlithe\u019e"}, "59": {"bytes": "0xbb, 0xe6, 0xd7, 0xd5, 0xe2, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Arcanine\u019e"}, "60": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xd5, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwag\u019e"}, "61": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xdc, 0xdd, 0xe6, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwhirl\u019e"}, "62": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xe6, 0xd5, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwrath\u019e"}, "63": {"bytes": "0xbb, 0xd6, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Abra\u019e"}, "64": {"bytes": "0xc5, 0xd5, 0xd8, 0xd5, 0xd6, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kadabra\u019e"}, "65": {"bytes": "0xbb, 0xe0, 0xd5, 0xdf, 0xd5, 0xee, 0xd5, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Alakazam\u019e"}, "66": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machop\u019e"}, "67": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xdf, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machoke\u019e"}, "68": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xd5, 0xe1, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machamp\u019e"}, "69": {"bytes": "0xbc, 0xd9, 0xe0, 0xe0, 0xe7, 0xe4, 0xe6, 0xe3, 0xe9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bellsprout\u019e"}, "70": {"bytes": "0xd1, 0xd9, 0xd9, 0xe4, 0xdd, 0xe2, 0xd6, 0xd9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weepinbell\u019e"}, "71": {"bytes": "0xd0, 0xdd, 0xd7, 0xe8, 0xe6, 0xd9, 0xd9, 0xd6, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Victreebel\u019e"}, "72": {"bytes": "0xce, 0xd9, 0xe2, 0xe8, 0xd5, 0xd7, 0xe3, 0xe3, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tentacool\u019e"}, "73": {"bytes": "0xce, 0xd9, 0xe2, 0xe8, 0xd5, 0xd7, 0xe6, 0xe9, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tentacruel\u019e"}, "74": {"bytes": "0xc1, 0xd9, 0xe3, 0xd8, 0xe9, 0xd8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Geodude\u019e"}, "75": {"bytes": "0xc1, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Graveler\u019e"}, "76": {"bytes": "0xc1, 0xe3, 0xe0, 0xd9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golem\u019e"}, "77": {"bytes": "0xca, 0xe3, 0xe2, 0xed, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ponyta\u019e"}, "78": {"bytes": "0xcc, 0xd5, 0xe4, 0xdd, 0xd8, 0xd5, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rapidash\u019e"}, "79": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xe4, 0xe3, 0xdf, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowpoke\u019e"}, "80": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xd6, 0xe6, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowbro\u019e"}, "81": {"bytes": "0xc7, 0xd5, 0xdb, 0xe2, 0xd9, 0xe1, 0xdd, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magnemite\u019e"}, "82": {"bytes": "0xc7, 0xd5, 0xdb, 0xe2, 0xd9, 0xe8, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magneton\u019e"}, "83": {"bytes": "0xc0, 0xd5, 0xe6, 0xda, 0xd9, 0xe8, 0xd7, 0xdc, 0xb4, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Farfetch\u2019d\u019e"}, "84": {"bytes": "0xbe, 0xe3, 0xd8, 0xe9, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Doduo\u019e"}, "85": {"bytes": "0xbe, 0xe3, 0xd8, 0xe6, 0xdd, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dodrio\u019e"}, "86": {"bytes": "0xcd, 0xd9, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seel\u019e"}, "87": {"bytes": "0xbe, 0xd9, 0xeb, 0xdb, 0xe3, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dewgong\u019e"}, "88": {"bytes": "0xc1, 0xe6, 0xdd, 0xe1, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Grimer\u019e"}, "89": {"bytes": "0xc7, 0xe9, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Muk\u019e"}, "90": {"bytes": "0xcd, 0xdc, 0xd9, 0xe0, 0xe0, 0xd8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Shellder\u019e"}, "91": {"bytes": "0xbd, 0xe0, 0xe3, 0xed, 0xe7, 0xe8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cloyster\u019e"}, "92": {"bytes": "0xc1, 0xd5, 0xe7, 0xe8, 0xe0, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gastly\u019e"}, "93": {"bytes": "0xc2, 0xd5, 0xe9, 0xe2, 0xe8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Haunter\u019e"}, "94": {"bytes": "0xc1, 0xd9, 0xe2, 0xdb, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gengar\u019e"}, "95": {"bytes": "0xc9, 0xe2, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Onix\u019e"}, "96": {"bytes": "0xbe, 0xe6, 0xe3, 0xeb, 0xee, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Drowzee\u019e"}, "97": {"bytes": "0xc2, 0xed, 0xe4, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hypno\u019e"}, "98": {"bytes": "0xc5, 0xe6, 0xd5, 0xd6, 0xd6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Krabby\u019e"}, "99": {"bytes": "0xc5, 0xdd, 0xe2, 0xdb, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kingler\u019e"}, "100": {"bytes": "0xd0, 0xe3, 0xe0, 0xe8, 0xe3, 0xe6, 0xd6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Voltorb\u019e"}, "101": {"bytes": "0xbf, 0xe0, 0xd9, 0xd7, 0xe8, 0xe6, 0xe3, 0xd8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Electrode\u019e"}, "102": {"bytes": "0xbf, 0xec, 0xd9, 0xdb, 0xdb, 0xd7, 0xe9, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Exeggcute\u019e"}, "103": {"bytes": "0xbf, 0xec, 0xd9, 0xdb, 0xdb, 0xe9, 0xe8, 0xe3, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Exeggutor\u019e"}, "104": {"bytes": "0xbd, 0xe9, 0xd6, 0xe3, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cubone\u019e"}, "105": {"bytes": "0xc7, 0xd5, 0xe6, 0xe3, 0xeb, 0xd5, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Marowak\u019e"}, "106": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xe0, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmonlee\u019e"}, "107": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xd7, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmonchan\u019e"}, "108": {"bytes": "0xc6, 0xdd, 0xd7, 0xdf, 0xdd, 0xe8, 0xe9, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lickitung\u019e"}, "109": {"bytes": "0xc5, 0xe3, 0xda, 0xda, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Koffing\u019e"}, "110": {"bytes": "0xd1, 0xd9, 0xd9, 0xee, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weezing\u019e"}, "111": {"bytes": "0xcc, 0xdc, 0xed, 0xdc, 0xe3, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rhyhorn\u019e"}, "112": {"bytes": "0xcc, 0xdc, 0xed, 0xd8, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rhydon\u019e"}, "113": {"bytes": "0xbd, 0xdc, 0xd5, 0xe2, 0xe7, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chansey\u019e"}, "114": {"bytes": "0xce, 0xd5, 0xe2, 0xdb, 0xd9, 0xe0, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tangela\u019e"}, "115": {"bytes": "0xc5, 0xd5, 0xe2, 0xdb, 0xd5, 0xe7, 0xdf, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kangaskhan\u019e"}, "116": {"bytes": "0xc2, 0xe3, 0xe6, 0xe7, 0xd9, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Horsea\u019e"}, "117": {"bytes": "0xcd, 0xd9, 0xd5, 0xd8, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seadra\u019e"}, "118": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Goldeen\u019e"}, "119": {"bytes": "0xcd, 0xd9, 0xd5, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seaking\u019e"}, "120": {"bytes": "0xcd, 0xe8, 0xd5, 0xe6, 0xed, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Staryu\u019e"}, "121": {"bytes": "0xcd, 0xe8, 0xd5, 0xe6, 0xe1, 0xdd, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Starmie\u019e"}, "122": {"bytes": "0xc7, 0xe6, 0xad, 0x0, 0xc7, 0xdd, 0xe1, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mr. Mime\u019e"}, "123": {"bytes": "0xcd, 0xd7, 0xed, 0xe8, 0xdc, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Scyther\u019e"}, "124": {"bytes": "0xc4, 0xed, 0xe2, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jynx\u019e"}, "125": {"bytes": "0xbf, 0xe0, 0xd9, 0xd7, 0xe8, 0xd5, 0xd6, 0xe9, 0xee, 0xee, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Electabuzz\u019e"}, "126": {"bytes": "0xc7, 0xd5, 0xdb, 0xe1, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magmar\u019e"}, "127": {"bytes": "0xca, 0xdd, 0xe2, 0xe7, 0xdd, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pinsir\u019e"}, "128": {"bytes": "0xce, 0xd5, 0xe9, 0xe6, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tauros\u019e"}, "129": {"bytes": "0xc7, 0xd5, 0xdb, 0xdd, 0xdf, 0xd5, 0xe6, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magikarp\u019e"}, "130": {"bytes": "0xc1, 0xed, 0xd5, 0xe6, 0xd5, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gyarados\u019e"}, "131": {"bytes": "0xc6, 0xd5, 0xe4, 0xe6, 0xd5, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lapras\u019e"}, "132": {"bytes": "0xbe, 0xdd, 0xe8, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ditto\u019e"}, "133": {"bytes": "0xbf, 0xd9, 0xea, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Eevee\u019e"}, "134": {"bytes": "0xd0, 0xd5, 0xe4, 0xe3, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vaporeon\u019e"}, "135": {"bytes": "0xc4, 0xe3, 0xe0, 0xe8, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jolteon\u019e"}, "136": {"bytes": "0xc0, 0xe0, 0xd5, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Flareon\u019e"}, "137": {"bytes": "0xca, 0xe3, 0xe6, 0xed, 0xdb, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Porygon\u019e"}, "138": {"bytes": "0xc9, 0xe1, 0xd5, 0xe2, 0xed, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Omanyte\u019e"}, "139": {"bytes": "0xc9, 0xe1, 0xd5, 0xe7, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Omastar\u019e"}, "140": {"bytes": "0xc5, 0xd5, 0xd6, 0xe9, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kabuto\u019e"}, "141": {"bytes": "0xc5, 0xd5, 0xd6, 0xe9, 0xe8, 0xe3, 0xe4, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kabutops\u019e"}, "142": {"bytes": "0xbb, 0xd9, 0xe6, 0xe3, 0xd8, 0xd5, 0xd7, 0xe8, 0xed, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Aerodactyl\u019e"}, "143": {"bytes": "0xcd, 0xe2, 0xe3, 0xe6, 0xe0, 0xd5, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Snorlax\u019e"}, "144": {"bytes": "0xbb, 0xe6, 0xe8, 0xdd, 0xd7, 0xe9, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Articuno\u019e"}, "145": {"bytes": "0xd4, 0xd5, 0xe4, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Zapdos\u019e"}, "146": {"bytes": "0xc7, 0xe3, 0xe0, 0xe8, 0xe6, 0xd9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Moltres\u019e"}, "147": {"bytes": "0xbe, 0xe6, 0xd5, 0xe8, 0xdd, 0xe2, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dratini\u019e"}, "148": {"bytes": "0xbe, 0xe6, 0xd5, 0xdb, 0xe3, 0xe2, 0xd5, 0xdd, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dragonair\u019e"}, "149": {"bytes": "0xbe, 0xe6, 0xd5, 0xdb, 0xe3, 0xe2, 0xdd, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dragonite\u019e"}, "150": {"bytes": "0xc7, 0xd9, 0xeb, 0xe8, 0xeb, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mewtwo\u019e"}, "151": {"bytes": "0xc7, 0xd9, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mew\u019e"}, "152": {"bytes": "0xbd, 0xdc, 0xdd, 0xdf, 0xe3, 0xe6, 0xdd, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chikorita\u019e"}, "153": {"bytes": "0xbc, 0xd5, 0xed, 0xe0, 0xd9, 0xd9, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bayleef\u019e"}, "154": {"bytes": "0xc7, 0xd9, 0xdb, 0xd5, 0xe2, 0xdd, 0xe9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Meganium\u019e"}, "155": {"bytes": "0xbd, 0xed, 0xe2, 0xd8, 0xd5, 0xe5, 0xe9, 0xdd, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cyndaquil\u019e"}, "156": {"bytes": "0xcb, 0xe9, 0xdd, 0xe0, 0xd5, 0xea, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Quilava\u019e"}, "157": {"bytes": "0xce, 0xed, 0xe4, 0xdc, 0xe0, 0xe3, 0xe7, 0xdd, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Typhlosion\u019e"}, "158": {"bytes": "0xce, 0xe3, 0xe8, 0xe3, 0xd8, 0xdd, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Totodile\u019e"}, "159": {"bytes": "0xbd, 0xe6, 0xe3, 0xd7, 0xe3, 0xe2, 0xd5, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Croconaw\u019e"}, "160": {"bytes": "0xc0, 0xd9, 0xe6, 0xd5, 0xe0, 0xdd, 0xdb, 0xd5, 0xe8, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Feraligatr\u019e"}, "161": {"bytes": "0xcd, 0xd9, 0xe2, 0xe8, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sentret\u019e"}, "162": {"bytes": "0xc0, 0xe9, 0xe6, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Furret\u019e"}, "163": {"bytes": "0xc2, 0xe3, 0xe3, 0xe8, 0xdc, 0xe3, 0xe3, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hoothoot\u019e"}, "164": {"bytes": "0xc8, 0xe3, 0xd7, 0xe8, 0xe3, 0xeb, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Noctowl\u019e"}, "165": {"bytes": "0xc6, 0xd9, 0xd8, 0xed, 0xd6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ledyba\u019e"}, "166": {"bytes": "0xc6, 0xd9, 0xd8, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ledian\u019e"}, "167": {"bytes": "0xcd, 0xe4, 0xdd, 0xe2, 0xd5, 0xe6, 0xd5, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Spinarak\u019e"}, "168": {"bytes": "0xbb, 0xe6, 0xdd, 0xd5, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ariados\u019e"}, "169": {"bytes": "0xbd, 0xe6, 0xe3, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Crobat\u019e"}, "170": {"bytes": "0xbd, 0xdc, 0xdd, 0xe2, 0xd7, 0xdc, 0xe3, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chinchou\u019e"}, "171": {"bytes": "0xc6, 0xd5, 0xe2, 0xe8, 0xe9, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lanturn\u019e"}, "172": {"bytes": "0xca, 0xdd, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pichu\u019e"}, "173": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xda, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cleffa\u019e"}, "174": {"bytes": "0xc3, 0xdb, 0xdb, 0xe0, 0xed, 0xd6, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Igglybuff\u019e"}, "175": {"bytes": "0xce, 0xe3, 0xdb, 0xd9, 0xe4, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Togepi\u019e"}, "176": {"bytes": "0xce, 0xe3, 0xdb, 0xd9, 0xe8, 0xdd, 0xd7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Togetic\u019e"}, "177": {"bytes": "0xc8, 0xd5, 0xe8, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Natu\u019e"}, "178": {"bytes": "0xd2, 0xd5, 0xe8, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Xatu\u019e"}, "179": {"bytes": "0xc7, 0xd5, 0xe6, 0xd9, 0xd9, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mareep\u019e"}, "180": {"bytes": "0xc0, 0xe0, 0xd5, 0xd5, 0xda, 0xda, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Flaaffy\u019e"}, "181": {"bytes": "0xbb, 0xe1, 0xe4, 0xdc, 0xd5, 0xe6, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ampharos\u019e"}, "182": {"bytes": "0xbc, 0xd9, 0xe0, 0xe0, 0xe3, 0xe7, 0xe7, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bellossom\u019e"}, "183": {"bytes": "0xc7, 0xd5, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Marill\u019e"}, "184": {"bytes": "0xbb, 0xee, 0xe9, 0xe1, 0xd5, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Azumarill\u019e"}, "185": {"bytes": "0xcd, 0xe9, 0xd8, 0xe3, 0xeb, 0xe3, 0xe3, 0xd8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sudowoodo\u019e"}, "186": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xe8, 0xe3, 0xd9, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Politoed\u019e"}, "187": {"bytes": "0xc2, 0xe3, 0xe4, 0xe4, 0xdd, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hoppip\u019e"}, "188": {"bytes": "0xcd, 0xdf, 0xdd, 0xe4, 0xe0, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Skiploom\u019e"}, "189": {"bytes": "0xc4, 0xe9, 0xe1, 0xe4, 0xe0, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jumpluff\u019e"}, "190": {"bytes": "0xbb, 0xdd, 0xe4, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Aipom\u019e"}, "191": {"bytes": "0xcd, 0xe9, 0xe2, 0xdf, 0xd9, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sunkern\u019e"}, "192": {"bytes": "0xcd, 0xe9, 0xe2, 0xda, 0xe0, 0xe3, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sunflora\u019e"}, "193": {"bytes": "0xd3, 0xd5, 0xe2, 0xe1, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Yanma\u019e"}, "194": {"bytes": "0xd1, 0xe3, 0xe3, 0xe4, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wooper\u019e"}, "195": {"bytes": "0xcb, 0xe9, 0xd5, 0xdb, 0xe7, 0xdd, 0xe6, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Quagsire\u019e"}, "196": {"bytes": "0xbf, 0xe7, 0xe4, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Espeon\u019e"}, "197": {"bytes": "0xcf, 0xe1, 0xd6, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Umbreon\u019e"}, "198": {"bytes": "0xc7, 0xe9, 0xe6, 0xdf, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Murkrow\u019e"}, "199": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowking\u019e"}, "200": {"bytes": "0xc7, 0xdd, 0xe7, 0xd8, 0xe6, 0xd9, 0xd5, 0xea, 0xe9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Misdreavus\u019e"}, "201": {"bytes": "0xcf, 0xe2, 0xe3, 0xeb, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Unown\u019e"}, "202": {"bytes": "0xd1, 0xe3, 0xd6, 0xd6, 0xe9, 0xda, 0xda, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wobbuffet\u019e"}, "203": {"bytes": "0xc1, 0xdd, 0xe6, 0xd5, 0xda, 0xd5, 0xe6, 0xdd, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Girafarig\u019e"}, "204": {"bytes": "0xca, 0xdd, 0xe2, 0xd9, 0xd7, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pineco\u019e"}, "205": {"bytes": "0xc0, 0xe3, 0xe6, 0xe6, 0xd9, 0xe8, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Forretress\u019e"}, "206": {"bytes": "0xbe, 0xe9, 0xe2, 0xe7, 0xe4, 0xd5, 0xe6, 0xd7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dunsparce\u019e"}, "207": {"bytes": "0xc1, 0xe0, 0xdd, 0xdb, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gligar\u019e"}, "208": {"bytes": "0xcd, 0xe8, 0xd9, 0xd9, 0xe0, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Steelix\u019e"}, "209": {"bytes": "0xcd, 0xe2, 0xe9, 0xd6, 0xd6, 0xe9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Snubbull\u019e"}, "210": {"bytes": "0xc1, 0xe6, 0xd5, 0xe2, 0xd6, 0xe9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Granbull\u019e"}, "211": {"bytes": "0xcb, 0xeb, 0xdd, 0xe0, 0xda, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Qwilfish\u019e"}, "212": {"bytes": "0xcd, 0xd7, 0xdd, 0xee, 0xe3, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Scizor\u019e"}, "213": {"bytes": "0xcd, 0xdc, 0xe9, 0xd7, 0xdf, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Shuckle\u019e"}, "214": {"bytes": "0xc2, 0xd9, 0xe6, 0xd5, 0xd7, 0xe6, 0xe3, 0xe7, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Heracross\u019e"}, "215": {"bytes": "0xcd, 0xe2, 0xd9, 0xd5, 0xe7, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sneasel\u019e"}, "216": {"bytes": "0xce, 0xd9, 0xd8, 0xd8, 0xdd, 0xe9, 0xe6, 0xe7, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Teddiursa\u019e"}, "217": {"bytes": "0xcf, 0xe6, 0xe7, 0xd5, 0xe6, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ursaring\u019e"}, "218": {"bytes": "0xcd, 0xe0, 0xe9, 0xdb, 0xe1, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slugma\u019e"}, "219": {"bytes": "0xc7, 0xd5, 0xdb, 0xd7, 0xd5, 0xe6, 0xdb, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magcargo\u019e"}, "220": {"bytes": "0xcd, 0xeb, 0xdd, 0xe2, 0xe9, 0xd6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Swinub\u019e"}, "221": {"bytes": "0xca, 0xdd, 0xe0, 0xe3, 0xe7, 0xeb, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Piloswine\u019e"}, "222": {"bytes": "0xbd, 0xe3, 0xe6, 0xe7, 0xe3, 0xe0, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Corsola\u019e"}, "223": {"bytes": "0xcc, 0xd9, 0xe1, 0xe3, 0xe6, 0xd5, 0xdd, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Remoraid\u019e"}, "224": {"bytes": "0xc9, 0xd7, 0xe8, 0xdd, 0xe0, 0xe0, 0xd9, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Octillery\u019e"}, "225": {"bytes": "0xbe, 0xd9, 0xe0, 0xdd, 0xd6, 0xdd, 0xe6, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Delibird\u019e"}, "226": {"bytes": "0xc7, 0xd5, 0xe2, 0xe8, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mantine\u019e"}, "227": {"bytes": "0xcd, 0xdf, 0xd5, 0xe6, 0xe1, 0xe3, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Skarmory\u019e"}, "228": {"bytes": "0xc2, 0xe3, 0xe9, 0xe2, 0xd8, 0xe3, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Houndour\u019e"}, "229": {"bytes": "0xc2, 0xe3, 0xe9, 0xe2, 0xd8, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Houndoom\u019e"}, "230": {"bytes": "0xc5, 0xdd, 0xe2, 0xdb, 0xd8, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kingdra\u019e"}, "231": {"bytes": "0xca, 0xdc, 0xd5, 0xe2, 0xe4, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Phanpy\u019e"}, "232": {"bytes": "0xbe, 0xe3, 0xe2, 0xe4, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Donphan\u019e"}, "233": {"bytes": "0xca, 0xe3, 0xe6, 0xed, 0xdb, 0xe3, 0xe2, 0xa3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Porygon2\u019e"}, "234": {"bytes": "0xcd, 0xe8, 0xd5, 0xe2, 0xe8, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Stantler\u019e"}, "235": {"bytes": "0xcd, 0xe1, 0xd9, 0xd5, 0xe6, 0xdb, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Smeargle\u019e"}, "236": {"bytes": "0xce, 0xed, 0xe6, 0xe3, 0xdb, 0xe9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tyrogue\u019e"}, "237": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xe8, 0xe3, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmontop\u019e"}, "238": {"bytes": "0xcd, 0xe1, 0xe3, 0xe3, 0xd7, 0xdc, 0xe9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Smoochum\u019e"}, "239": {"bytes": "0xbf, 0xe0, 0xd9, 0xdf, 0xdd, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Elekid\u019e"}, "240": {"bytes": "0xc7, 0xd5, 0xdb, 0xd6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magby\u019e"}, "241": {"bytes": "0xc7, 0xdd, 0xe0, 0xe8, 0xd5, 0xe2, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Miltank\u019e"}, "242": {"bytes": "0xbc, 0xe0, 0xdd, 0xe7, 0xe7, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Blissey\u019e"}, "243": {"bytes": "0xcc, 0xd5, 0xdd, 0xdf, 0xe3, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raikou\u019e"}, "244": {"bytes": "0xbf, 0xe2, 0xe8, 0xd9, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Entei\u019e"}, "245": {"bytes": "0xcd, 0xe9, 0xdd, 0xd7, 0xe9, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Suicune\u019e"}, "246": {"bytes": "0xc6, 0xd5, 0xe6, 0xea, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Larvitar\u019e"}, "247": {"bytes": "0xca, 0xe9, 0xe4, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pupitar\u019e"}, "248": {"bytes": "0xce, 0xed, 0xe6, 0xd5, 0xe2, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tyranitar\u019e"}, "249": {"bytes": "0xc6, 0xe9, 0xdb, 0xdd, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lugia\u019e"}, "250": {"bytes": "0xc2, 0xe3, 0xae, 0xc9, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ho-Oh\u019e"}, "251": {"bytes": "0xbd, 0xd9, 0xe0, 0xd9, 0xd6, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Celebi\u019e"}}, "Warnings": {"0": "Warning! ' found, replacing with \u2019 !", "1": "Warning! ' found, replacing with \u2019 !", "2": "Warning! ' found, replacing with \u2019 !", "3": "Warning! ' found, replacing with \u2019 !", "4": "Warning! ' found, replacing with \u2019 !", "5": "Warning! ' found, replacing with \u2019 !", "6": "Warning! ' found, replacing with \u2019 !", "7": "Warning! ' found, replacing with \u2019 !", "8": "Warning! ' found, replacing with \u2019 !", "9": "Warning! ' found, replacing with \u2019 !", "10": "Warning! ' found, replacing with \u2019 !", "11": "Warning! ' found, replacing with \u2019 !", "12": "Warning! ' found, replacing with \u2019 !", "13": "Warning! ' found, replacing with \u2019 !", "14": "Warning! ' found, replacing with \u2019 !", "15": "Warning! ' found, replacing with \u2019 !", "16": "Warning! ' found, replacing with \u2019 !", "17": "Warning! ' found, replacing with \u2019 !", "18": "Warning! ' found, replacing with \u2019 !", "19": "Warning! ' found, replacing with \u2019 !", "20": "Warning! ' found, replacing with \u2019 !", "21": "Warning! ' found, replacing with \u2019 !", "22": "Warning! ' found, replacing with \u2019 !", "23": "Warning! ' found, replacing with \u2019 !", "24": "Warning! ' found, replacing with \u2019 !", "25": "Warning! ' found, replacing with \u2019 !", "26": "Warning! ' found, replacing with \u2019 !", "27": "Warning! ' found, replacing with \u2019 !", "28": "Warning! ' found, replacing with \u2019 !", "29": "Warning! ' found, replacing with \u2019 !", "30": "Warning! ' found, replacing with \u2019 !", "31": "Warning! ' found, replacing with \u2019 !", "32": "Warning! ' found, replacing with \u2019 !", "33": "Warning! ' found, replacing with \u2019 !", "34": "Warning! ' found, replacing with \u2019 !", "35": "Warning! ' found, replacing with \u2019 !", "36": "Warning! ' found, replacing with \u2019 !", "37": "Warning! ' found, replacing with \u2019 !", "38": "Warning! ' found, replacing with \u2019 !", "39": "Warning! ' found, replacing with \u2019 !", "40": "Warning! ' found, replacing with \u2019 !", "41": "Warning! ' found, replacing with \u2019 !", "42": "Warning! ' found, replacing with \u2019 !", "43": "Warning! ' found, replacing with \u2019 !", "44": "Warning! ' found, replacing with \u2019 !", "45": "Warning! ' found, replacing with \u2019 !", "46": "Warning! ' found, replacing with \u2019 !", "47": "Warning! ' found, replacing with \u2019 !", "48": "Warning! ' found, replacing with \u2019 !", "49": "Warning! ' found, replacing with \u2019 !", "50": "Warning! ' found, replacing with \u2019 !", "51": "Warning! ' found, replacing with \u2019 !", "52": "Warning! ' found, replacing with \u2019 !", "53": "Warning! ' found, replacing with \u2019 !", "54": "Warning! ' found, replacing with \u2019 !"}, "Errors": {}}, "German": {"PTGB": {"DIA_OPEN": {"bytes": "0xc2, 0xd9, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xab, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xd9, 0xe2, 0xe2, 0xd9, 0xe0, 0xad, 0x0, 0xbb, 0xe7, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xd9, 0xb8, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xd5, 0x0, 0xe7, 0xd7, 0xdd, 0xd9, 0xe2, 0xe8, 0xdd, 0xe7, 0xe8, 0xad, 0x0, 0xc3, 0xe2, 0xfe, 0xda, 0xd5, 0xd7, 0xe8, 0xb8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xe9, 0xd6, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe7, 0xfe, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0xab, 0xfb, 0xc7, 0xed, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe0, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xea, 0xd5, 0xe6, 0xdd, 0xe3, 0xe9, 0xe7, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xdc, 0xd5, 0xd8, 0xfe, 0xd5, 0xe2, 0xed, 0x0, 0xd6, 0xe6, 0xd9, 0xd5, 0xdf, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0xe7, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xad, 0xad, 0xfb, 0xcd, 0xe3, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0xb4, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xdd, 0xe2, 0xdb, 0xfe, 0xe3, 0xe2, 0x0, 0xd5, 0x0, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0xfe, 0xe3, 0xe0, 0xd8, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0xab, 0xfb, 0xc3, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xdc, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0xb8, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xb4, 0xe7, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xdd, 0xe2, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd9, 0xed, 0x0, 0xe1, 0xd9, 0xd9, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0xab, 0xfb, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xda, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe1, 0xed, 0x0, 0xdb, 0xe3, 0xd5, 0xe0, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xd8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xd5, 0xe1, 0xd9, 0xae, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb4, 0xe7, 0xfe, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xfb, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xe2, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe9, 0xe8, 0xfe, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xe7, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xa3, 0xa6, 0xa1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xd7, 0xd5, 0xe8, 0xd5, 0xe0, 0xe3, 0xdb, 0xe9, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xbe, 0xd9, 0xec, 0xae, 0x0, 0xe3, 0xe6, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe6, 0xe8, 0xad, 0xfb, 0xbc, 0xe9, 0xe8, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xae, 0xfe, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xe6, 0xd9, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xd5, 0xe0, 0xe0, 0xab, 0xfb, 0xc9, 0xe2, 0xd9, 0x0, 0xe0, 0xd5, 0xe7, 0xe8, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0xb8, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0xae, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdb, 0xe3, 0xd9, 0xe7, 0x0, 0xeb, 0xe6, 0xe3, 0xe2, 0xdb, 0xab, 0xfe, 0xc3, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdf, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xad, 0xad, 0xad, 0xfb, 0xeb, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0xb8, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hey there! I\u2019m Professor Fennel. As\u0147you can see, I\u2019m a scientist. In\u0147fact, the subject I\u2019m researching is\u0147Trainers!\u023cMy dream is to collect save files of\u0147various trainers, but I haven\u2019t had\u0147any breakthroughs yet...\u023cSo in the meantime, I\u2019ve been working\u0147on a different project with one of my\u0147old friends!\u023cIn my home region, there\u2019s a location\u0147that can make a Pok\u00e9mon\u2019s dreams into\u0147reality.\u023cThis means that any other Pok\u00e9mon\u0147they meet in their dreams become\u0147real!\u023cThat\u2019s fantastic, but my goal is to\u0147do the same- just with a trainer\u2019s\u0147dream instead! That\u2019s why I need your\u0147help!\u023cI want to bring as many Pok\u00e9mon out\u0147of your dreams as possible!\u023cThere\u2019s just over 250 Pok\u00e9mon I want\u0147to catalogue in my Dream Pok\u00e9Dex- or\u0147Dream Dex for short.\u023cBut I\u2019ll let you keep any Pok\u00e9mon-\u0147they\u2019re from your dreams after all!\u023cOne last note, save data backups are\u0147recommended- just on the off chance\u0147that something goes wrong!\u0147I think that\u2019s everything...\u023cwhenever you\u2019re ready to start, just\u0147let me know!\u019e"}, "DIA_E4": {"bytes": "0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xe8, 0xdc, 0xe6, 0xdd, 0xe0, 0xe0, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0xfe, 0xd8, 0xd9, 0xd7, 0xdd, 0xd8, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe9, 0xe6, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xd9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0xab, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd5, 0xe8, 0xd9, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbf, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xc0, 0xe3, 0xe9, 0xe6, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xdc, 0xd5, 0xe1, 0xe4, 0xdd, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi trainer! I\u2019m thrilled you\u2019ve\u0147decided to help with our research,\u0147but we need the best of the best!\u023cCome back after you\u2019ve beaten the\u0147Elite Four and become the Champion!\u019e"}, "DIA_MG_FRLGE": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0xfe, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xae, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xc1, 0xc3, 0xc0, 0xce, 0xab, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe2, 0xd9, 0xd5, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xc7, 0xd5, 0xe6, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xda, 0xdd, 0xe0, 0xe0, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe2, 0xd5, 0xdd, 0xe6, 0xd9, 0x0, 0xd5, 0xe7, 0xfe, 0xda, 0xe3, 0xe0, 0xe0, 0xe3, 0xeb, 0xe7, 0xf0, 0x0, 0xc6, 0xc3, 0xc8, 0xc5, 0x0, 0xce, 0xc9, 0xc1, 0xbf, 0xce, 0xc2, 0xbf, 0xcc, 0x0, 0xd1, 0xc3, 0xce, 0xc2, 0x0, 0xbb, 0xc6, 0xc6, 0xad, 0xfb, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xdb, 0xe3, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, one more thing to take\u0147care of before we can begin- you need\u0147to enable MYSTERY GIFT!\u023cHead to the nearest Pok\u00e9 Mart and\u0147fill out the questionnaire as\u0147follows: LINK TOGETHER WITH ALL.\u023cAfter that, you should be all set to\u0147go! See you soon!\u019e"}, "DIA_MG_RS": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0xfe, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xae, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0xab, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbf, 0xce, 0xbb, 0xc6, 0xbc, 0xcf, 0xcc, 0xc1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xbd, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xe2, 0x0, 0xe2, 0xd9, 0xec, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0xf0, 0xfe, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0x0, 0xc3, 0xcd, 0x0, 0xbf, 0xd2, 0xbd, 0xc3, 0xce, 0xc3, 0xc8, 0xc1, 0xad, 0x0, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0xb8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdb, 0xe3, 0xab, 0xfb, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, one more thing to take\u0147care of before we can begin- you need\u0147to enable MYSTERY EVENT!\u023cHead to the PETALBURG Pok\u00e9mon Center\u0147and tell the man next to the PC:\u0147MYSTERY EVENT IS EXCITING. After\u0147that, you should be all set to go!\u023cSee you soon!\u019e"}, "DIA_LETS_START": {"bytes": "0xca, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0xb8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xc3, 0xfe, 0xe2, 0xd9, 0xd9, 0xd8, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xdb, 0xd9, 0xe8, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0xd9, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Perfect, that\u2019s all the information I\u0147need! Let\u2019s get started!\u019e"}, "DIA_START": {"bytes": "0xc9, 0xe2, 0x0, 0xd5, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xb8, 0xfe, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xdd, 0xe7, 0xdc, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xad, 0xfb, 0xc3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xad, 0xfb, 0xce, 0xdc, 0xd9, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xfe, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0x0, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0xad, 0xfb, 0xc9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0xb8, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xbd, 0xe0, 0xe9, 0xd6, 0xfe, 0xd5, 0xe8, 0xe8, 0xd9, 0xe2, 0xd8, 0xd5, 0xe2, 0xe8, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0x0, 0xdd, 0xe2, 0xdd, 0xe8, 0xdd, 0xd5, 0xe8, 0xd9, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xd9, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "On a second Game Boy family system,\u0147please load the Game Boy Pok\u00e9mon game\u0147you wish to transfer from.\u023cIn your Game Boy Pok\u00e9mon game, make\u0147your current box the one you want to\u0147transfer from.\u023cThen connect this Game Boy Advance to\u0147the other Game Boy family system\u0147using a Game Boy Color link cable.\u023cOnce you\u2019re ready, press A on this\u0147device, talk to the Cable Club\u0147attendant, and then initiate a trade.\u019e"}, "DIA_TRANS_GOOD": {"bytes": "0xbb, 0xe1, 0xd5, 0xee, 0xdd, 0xe2, 0xdb, 0xab, 0x0, 0xc0, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0xab, 0x0, 0xbf, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0xfe, 0xe4, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Amazing! Fantastic! Everything went\u0147perfectly!\u019e"}, "DIA_NEW_DEX": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xdd, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xab, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xd9, 0xec, 0xe8, 0xe6, 0xd5, 0x0, 0xe7, 0xeb, 0xd9, 0xd9, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xe6, 0xd9, 0xeb, 0xd5, 0xe6, 0xd8, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like there\u2019s at least one\u0147new Pok\u00e9mon here that isn\u2019t in the\u0147Dream Dex! I\u2019ll give them something\u0147extra sweet as a reward for you both.\u019e"}, "DIA_NO_NEW_DEX": {"bytes": "0xc3, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0xe2, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0xfe, 0xe3, 0xdf, 0xd5, 0xed, 0xab, 0x0, 0xc3, 0xe8, 0xb4, 0xe7, 0x0, 0xdd, 0xe1, 0xe4, 0xe3, 0xe6, 0xe8, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0xfe, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe9, 0xe0, 0xe8, 0xe7, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe1, 0xe9, 0xe0, 0xe8, 0xdd, 0xe4, 0xe0, 0xd9, 0x0, 0xe8, 0xd9, 0xe7, 0xe8, 0xe7, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It doesn\u2019t look like there\u2019s anything\u0147new for your Dream Dex, but that\u2019s\u0147okay! It\u2019s important to confirm\u0147research results with multiple tests!\u019e"}, "DIA_SEND_FRIEND_KANTO": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0x0, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0x0, 0xe3, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xe3, 0xe2, 0x0, 0xcd, 0xd9, 0xea, 0xd9, 0xe2, 0x0, 0xc3, 0xe7, 0xe0, 0xd5, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up! They live just south of\u0147the Pok\u00e9mon center on Seven Island!\u019e"}, "DIA_SEND_FRIEND_HOENN_RS": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xc7, 0xe3, 0xe7, 0xe7, 0xd8, 0xd9, 0xd9, 0xe4, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up!\u023cThey live just southeast of the\u0147Pok\u00e9mon center in Mossdeep City!\u019e"}, "DIA_SEND_FRIEND_HOENN_E": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xcd, 0xe3, 0xe3, 0xe8, 0xe3, 0xe4, 0xe3, 0xe0, 0xdd, 0xe7, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up!\u023cThey live just southeast of the\u0147Pok\u00e9mon center in Sootopolis City!\u019e"}, "DIA_THANK": {"bytes": "0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xfe, 0xd1, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xb8, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Thank you so much for your help!\u0147Whenever you want to transfer more\u0147Pok\u00e9mon, just let me know! See you\u0147around!\u019e"}, "DIA_GET_MON": {"bytes": "0xe9, 0xe2, 0xe9, 0xe7, 0xd9, 0xd8, 0xb8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "unused, will be removed\u019e"}, "DIA_MG_OTHER_EVENT": {"bytes": "0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xfe, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xad, 0xfe, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xd6, 0xe0, 0xd9, 0xe1, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe3, 0xea, 0xd9, 0xe6, 0xeb, 0xe6, 0xdd, 0xe8, 0xe8, 0xd9, 0xe2, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xad, 0xfb, 0xce, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xe2, 0xe3, 0xeb, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xec, 0xe4, 0xd9, 0xe6, 0xdd, 0xd9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0xae, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi Trainer! It looks like you have a\u0147different event currently loaded.\u0147That\u2019s no problem, but it will be\u0147overwritten if you continue.\u023cTurn off the system now if you want\u0147to experience your current event, but\u0147otherwise-\u019e"}, "DIA_PKMN_TO_COLLECT": {"bytes": "0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe9, 0xe4, 0xad, 0xad, 0xad, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0xb4, 0xe8, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe9, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0xfe, 0xe8, 0xdc, 0xe3, 0xe7, 0xd9, 0x0, 0xe9, 0xe4, 0xad, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi Trainer! It looks like you still\u0147have Pok\u00e9mon to pick up... I can\u2019t\u0147send over new Pok\u00e9mon until you pick\u0147those up.\u023cCome back after you\u2019ve received them!\u019e"}, "DIA_NO_VALID_PKMN": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xea, 0xd5, 0xe0, 0xdd, 0xd8, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xe2, 0xe3, 0xeb, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xd8, 0xe3, 0xe9, 0xd6, 0xe0, 0xd9, 0x0, 0xd7, 0xdc, 0xd9, 0xd7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xdd, 0xe8, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry Trainer, it doesn\u2019t look like\u0147you have any valid Pok\u00e9mon in your\u0147current box right now.\u023cGo double check your current box and\u0147we can give it another shot!\u019e"}, "DIA_ASK_QUEST": {"bytes": "0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xbc, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xb8, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd5, 0xe7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0x0, 0xda, 0xd9, 0xeb, 0x0, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi trainer! Before we begin, I need\u0147to ask you a few questions.\u019e"}, "DIA_WHAT_GAME_TRANS": {"bytes": "0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xac, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "And which Game Boy Pok\u00e9mon game are\u0147you transferring from?\u019e"}, "DIA_WHAT_LANG_TRANS": {"bytes": "0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xac, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "What language is the Game Boy Pok\u00e9mon\u0147game that you\u2019re transferring from?\u019e"}, "DIA_NO_GB_ROM": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xe7, 0xe3, 0xe6, 0xe6, 0xed, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xea, 0xd9, 0xe6, 0xe7, 0xdd, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m sorry, but that version in that\u0147language is not currently supported.\u019e"}, "DIA_IN_BOX": {"bytes": "0xbb, 0xe0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0xad, 0xfb, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xd9, 0xe1, 0xd6, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xd5, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe7, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xbd, 0xbb, 0xc8, 0xc8, 0xc9, 0xce, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xad, 0xfb, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xe3, 0xe6, 0xfe, 0xe7, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Alright! Let\u2019s take a look at the\u0147Pok\u00e9mon that will be transfered.\u023cPlease remember, once a Pok\u00e9mon is\u0147transfered, it CANNOT be returned to\u0147the Game Boy Game Pak.\u023cSelect confirm once you\u2019re ready, or\u0147select cancel if you want to keep the\u0147Pok\u00e9mon on your Game Boy Game Pak.\u019e"}, "DIA_MYTHIC_CONVERT": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0x0, 0xe6, 0xd5, 0xe6, 0xd9, 0xfe, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xab, 0x0, 0xbe, 0xe9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xe6, 0xd5, 0xe6, 0xdd, 0xe8, 0xed, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xea, 0xd9, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xad, 0xfb, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xd8, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0xb4, 0xe0, 0xe0, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xd9, 0xe8, 0xfe, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xb8, 0x0, 0xc9, 0xce, 0xb8, 0x0, 0xce, 0xc3, 0xbe, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xcd, 0xdc, 0xdd, 0xe2, 0xdd, 0xe2, 0xd9, 0xe7, 0xe7, 0xad, 0xfb, 0xc9, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe0, 0xd9, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe7, 0x0, 0xdd, 0xe7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xdb, 0xe9, 0xd5, 0xe6, 0xd9, 0xe2, 0xe8, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xda, 0xe9, 0xe8, 0xe9, 0xe6, 0xd9, 0xad, 0x0, 0xbe, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xac, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd5, 0xe4, 0xe4, 0xe0, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd6, 0xe3, 0xec, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like you have a rare\u0147Mythical Pok\u00e9mon! Due to their\u0147rarity, it seems they\u2019ve overloaded\u0147the machine.\u023cI can stablize them if you\u2019d like,\u0147but it\u2019ll change some things like met\u0147location, OT, TID, and Shininess.\u023cOtherwise I can leave them as is, but\u0147there\u2019s no guarentee that they\u2019ll be\u0147transferrable in the future. Do you\u0147want me to stablize them?\u023cThis will apply to all of the\u0147Mythical Pok\u00e9mon currently in your\u0147box.\u019e"}, "DIA_CANCEL": {"bytes": "0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0xab, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xdd, 0xda, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "No worries! Feel free to come back if\u0147you change your mind! See you around!\u019e"}, "DIA_SOME_INVALID_PKMN": {"bytes": "0xc3, 0x0, 0xe7, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0xad, 0xfb, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xe3, 0xe0, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe8, 0xd9, 0xe1, 0xe7, 0x0, 0xe3, 0xe6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xdd, 0xd9, 0xd8, 0xfe, 0xdd, 0xe2, 0xd7, 0xe3, 0xe6, 0xe6, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0x0, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0x0, 0xe9, 0xe2, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0xfe, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0xad, 0xfb, 0xce, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xda, 0xdd, 0xe2, 0xd9, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I see there is at least one Pok\u00e9mon\u0147that cannot be transferred from your\u0147current box.\u023cPok\u00e9mon holding items or modified\u0147incorrectly through unintended means\u0147cannot be transferred.\u023cThe other Pok\u00e9mon will transfer just\u0147fine though!\u019e"}, "DIA_MENU_BACK": {"bytes": "0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0xab, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xfe, 0xd5, 0xe2, 0xed, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "No worries! Feel free to come back\u0147any time!\u019e"}, "DIA_IS_MISSINGNO": {"bytes": "0xad, 0xad, 0xad, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xad, 0xad, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0x0, 0xd6, 0xd9, 0x0, 0xdb, 0xe6, 0xd5, 0xe4, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0xb8, 0x0, 0xe7, 0xe3, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "... It seems like one of your Pok\u00e9mon\u0147is messing with the machine... It\u0147looks to only be graphical though, so\u0147we can continue!\u019e"}, "DIA_ERROR_COLOSSEUM": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd7, 0xe3, 0xe0, 0xe3, 0xe7, 0xe7, 0xd9, 0xe9, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0xfe, 0xe6, 0xe3, 0xe3, 0xe1, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like you went to the\u0147colosseum instead of the trading\u0147room! Let\u2019s try that again!\u019e"}, "DIA_ERROR_COM_ENDED": {"bytes": "0xbd, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0xfe, 0xeb, 0xd5, 0xe7, 0x0, 0xe8, 0xd9, 0xe6, 0xe1, 0xdd, 0xe2, 0xd5, 0xe8, 0xd9, 0xd8, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Communication with the other device\u0147was terminated. Let\u2019s try that again!\u019e"}, "DIA_ERROR_DISCONNECT": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xfe, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xd8, 0xdd, 0xe7, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xd9, 0xd8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like the Game Boy Color link\u0147cable was disconnected... Let\u2019s try\u0147that again!\u019e"}, "DIA_ERROR_TIME_ONE": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0xfe, 0xe3, 0xe9, 0xe8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like the connection timed\u0147out... Let\u2019s try that again!\u019e"}, "DIA_ERROR_TIME_TWO": {"bytes": "0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0xfe, 0xe3, 0xe9, 0xe8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It seems like the connection timed\u0147out... Let\u2019s try that again!\u019e"}, "DIA_WHAT_LANG_EVENT": {"bytes": "0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0xac, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "What language is the Game Boy Pok\u00e9mon\u0147game that you want to send an event\u0147to?\u019e"}, "DIA_WHAT_GAME_EVENT": {"bytes": "0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd8, 0xe3, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xac, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "And which Game Boy Pok\u00e9mon game do\u0147you want to send an event to?\u019e"}, "DIA_K_DEX_NOT_FULL": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xa2, 0xa6, 0xa1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xeb, 0xd9, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, it looks like you\u0147haven\u2019t caught all 150 Pok\u00e9mon from\u0147the Kanto region yet.\u023cGo out and catch them all and then\u0147we\u2019ll be able to send over the event!\u019e"}, "DIA_J_DEX_NOT_FULL": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xaa, 0xaa, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc4, 0xe3, 0xdc, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xeb, 0xd9, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, it looks like you\u0147haven\u2019t caught all 99 new Pok\u00e9mon\u0147from the Johto region yet.\u023cGo out and catch them all and then\u0147we\u2019ll be able to send over the event!\u019e"}}, "RSEFRLG": {"dia_textGreet_rse": {"bytes": "0xd1, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0xb8, 0x0, 0xc3, 0x0, 0xe8, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xe0, 0xd8, 0xfe, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0x0, 0xce, 0xcc, 0xbb, 0xc3, 0xc8, 0xbf, 0xcc, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "When I was young, I traveled the world\u0147as a POK\u00e9MON TRAINER.\u019e"}, "dia_textGreet_frlg": {"bytes": "0xc3, 0x0, 0xe1, 0xd5, 0xed, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xe2, 0xe3, 0xeb, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0xd9, 0xe6, 0xb0, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "I may not look like much now,\u0147but when I was younger\u2026\u019e"}, "dia_textMoveBox_rs": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe9, 0xe2, 0xe0, 0xe3, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd8, 0xe3, 0xe3, 0xe6, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to unlock the\u0147door!\u019e"}, "dia_textMoveBox_frlg": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd6, 0xe3, 0xec, 0xd9, 0xe7, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to move the\u0147boxes!\u019e"}, "dia_textMoveBox_e": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe0, 0xd5, 0xe2, 0xe8, 0xe7, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to move the\u0147plants!\u019e"}, "dia_textWeHere_r": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xc7, 0xbb, 0xd2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leader MAXIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_s": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xbb, 0xcc, 0xbd, 0xc2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leader ARCHIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_frlg": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xc1, 0xc3, 0xc9, 0xd0, 0xbb, 0xc8, 0xc8, 0xc3, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Kanto to find\u0147the leader GIOVANNI.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_e": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0xe7, 0x0, 0xc7, 0xbb, 0xd2, 0xc3, 0xbf, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xcc, 0xbd, 0xc2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leaders MAXIE and ARCHIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textRecieved": {"bytes": "0xfc, 0x1, 0x2, 0xfd, 0x1, 0xb4, 0xcd, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0x0, 0xeb, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c1\u01b2\u00c0\u2019S POK\u00e9MON were sent to\u0147the PC!\u019e"}, "dia_textYouMustBe_first": {"bytes": "0xbb, 0xdc, 0xab, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xfd, 0x1, 0xab, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe8, 0xe3, 0xe0, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd7, 0xe3, 0xe1, 0xdd, 0xe2, 0xdb, 0xad, 0xfb, 0xc9, 0xdc, 0xab, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xab, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0xab, 0xfe, 0xc9, 0xe6, 0xb8, 0x0, 0xe6, 0xd5, 0xe8, 0xdc, 0xd9, 0xe6, 0xb8, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdd, 0xe2, 0xe8, 0xe6, 0xe3, 0xd8, 0xe9, 0xd7, 0xd9, 0x0, 0xe1, 0xed, 0xe7, 0xd9, 0xe0, 0xda, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "Ah! You must be \u01b2\u00c0! I was\u0147told you\u2019d be coming.\u023cOh! I still wear my disguise! Pardon!\u0147Or, rather, let me introduce myself.\u019e"}, "dia_textYouMustBe_second": {"bytes": "0xbb, 0xdc, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0x0, 0xd1, 0xd9, 0xe0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xab, 0x0, 0xc1, 0xe3, 0xe3, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xe7, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xfb, 0xc9, 0xdc, 0xab, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xab, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "Ah, \u01b2\u00c0! Welcome back! Good to\u0147see you again!\u023cOh! I still wear my disguise! Pardon!\u019e"}, "dia_textIAm_first": {"bytes": "0xfc, 0x1, 0x8, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xd5, 0x0, 0xdb, 0xe0, 0xe3, 0xd6, 0xd9, 0xae, 0xe8, 0xe6, 0xe3, 0xe8, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd9, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc3, 0xe2, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xe0, 0xdd, 0xd7, 0xd9, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb0, 0x0, 0xfa, 0xbb, 0xdc, 0xb8, 0x0, 0xe2, 0xe3, 0xb8, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0x0, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0xfe, 0xe2, 0xd5, 0xe1, 0xd9, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbI am a globe-trotting elite of the\u0147International Police.\u023cMy name\u2026 \u015eAh, no, I shall inform you of my code\u0147name only.\u023cMy code name, it is LOOKER!\u019e"}, "dia_textIAm_second": {"bytes": "0xfc, 0x1, 0x8, 0xc3, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc3, 0xb8, 0x0, 0xdb, 0xe0, 0xe3, 0xd6, 0xd9, 0xae, 0xe8, 0xe6, 0xe3, 0xe8, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd9, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc3, 0xe2, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xe0, 0xdd, 0xd7, 0xd9, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbIt is I, globe-trotting elite of the\u0147International Police.\u023cMy code name, it is LOOKER!\u019e"}, "dia_textPCConvo": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbb, 0xdc, 0xb8, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0x0, 0xc3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xdd, 0xe8, 0xfe, 0xfd, 0x1, 0x0, 0xdc, 0xd5, 0xe7, 0x0, 0xd5, 0xe6, 0xe6, 0xdd, 0xea, 0xd9, 0xd8, 0xac, 0xfb, 0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0xe2, 0xd8, 0xd9, 0xd9, 0xd8, 0xab, 0x0, 0xce, 0xdc, 0xd9, 0xed, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0xab, 0xfb, 0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbf, 0xec, 0xd7, 0xd9, 0xe0, 0xe0, 0xd9, 0xe2, 0xe8, 0xab, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xfe, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe1, 0xd9, 0xe2, 0xe8, 0xd5, 0xe6, 0xdd, 0xe0, 0xed, 0xb0, 0x0, 0xe7, 0xe8, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: Ah, LOOKER! I take it\u0147\u01b2\u00c0 has arrived?\u023c\u0206\u00c0\u00cbLOOKER: Indeed! They\u2019re ready to\u0147receive their POK\u00e9MON!\u023c\u0206\u00c0\u00c9FENNEL: Excellent! I\u2019ll send them\u0147over momentarily\u2026 stand by!\u019e"}, "dia_textPCThanks": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xbd, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xab, 0xfb, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: It looks like everything was\u0147sent to your PC successfully!\u023cThank you both for your help!\u019e"}, "dia_textThank": {"bytes": "0xfc, 0x1, 0x8, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xe8, 0xe3, 0xe4, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xd6, 0xed, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0xfb, 0xc3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe0, 0xe0, 0x0, 0xd9, 0xec, 0xd7, 0xe9, 0xe7, 0xd9, 0x0, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xad, 0x0, 0xfa, 0xcf, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xe3, 0xe9, 0xe6, 0x0, 0xe4, 0xd5, 0xe8, 0xdc, 0xe7, 0x0, 0xd7, 0xe6, 0xe3, 0xe7, 0xe7, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbThanks for stopping by, \u01b2\u00c0!\u023cIf you\u2019ll excuse me, I must return to\u0147my disguise. \u015eUntil our paths cross again!\u019e"}, "dia_textPCFull": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0x0, 0xdd, 0xe7, 0x0, 0xda, 0xe9, 0xe0, 0xe0, 0xab, 0xfb, 0xc1, 0xe3, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: It seems like the PC is full!\u023cGo make some room, and I can send over\u0147the rest of your POK\u00e9MON.\u019e"}, "dia_textLookerFull": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xcd, 0xe4, 0xd9, 0xd5, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0xfe, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0xfb, 0xc3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xed, 0xfe, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: Speak to me again after\u0147you\u2019ve made room, \u01b2\u00c0!\u023cIn the meantime, I will return to my\u0147disguise.\u019e"}}, "GB": {"sending_text": {"bytes": "SENDING DATA", "numLines": 0, "pixelsPerChar": "Default", "pixelsInLine": 0, "includeBoxBreaks": false}, "prof_name": {"bytes": "FENNEL", "numLines": 0, "pixelsPerChar": "Default", "pixelsInLine": 0, "includeBoxBreaks": false}}, "GENERAL": {"option_english": {"bytes": "0xbf, 0xe2, 0xdb, 0xe0, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "English\u019e"}, "option_japanese": {"bytes": "0xc4, 0xd5, 0xe4, 0xd5, 0xe2, 0xd9, 0xe7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Japanese\u019e"}, "option_spanish": {"bytes": "0xcd, 0xe4, 0xd5, 0xe2, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Spanish\u019e"}, "option_french": {"bytes": "0xc0, 0xe6, 0xd9, 0xe2, 0xd7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "French\u019e"}, "option_german": {"bytes": "0xc1, 0xd9, 0xe6, 0xe1, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "German\u019e"}, "option_italian": {"bytes": "0xc3, 0xe8, 0xd5, 0xe0, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Italian\u019e"}, "option_korean": {"bytes": "0xc5, 0xe3, 0xe6, 0xd9, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Korean\u019e"}, "option_green": {"bytes": "0xc1, 0xe6, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Green\u019e"}, "option_red": {"bytes": "0xcc, 0xd9, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Red\u019e"}, "option_blue": {"bytes": "0xbc, 0xe0, 0xe9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Blue\u019e"}, "option_yellow": {"bytes": "0xd3, 0xd9, 0xe0, 0xe0, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Yellow\u019e"}, "option_gold": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Gold\u019e"}, "option_silver": {"bytes": "0xcd, 0xdd, 0xe0, 0xea, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Silver\u019e"}, "option_crystal": {"bytes": "0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Crystal\u019e"}, "option_cancel": {"bytes": "0xbd, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Cancel\u019e"}, "press_start": {"bytes": "0xca, 0xe9, 0xe7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xcd, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xab, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Push the Start Button!\u019e"}, "option_transfer": {"bytes": "0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Transfer Pok\u00e9mon\u019e"}, "option_dreamdex": {"bytes": "0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Dream Dex\u019e"}, "option_credits": {"bytes": "0xbd, 0xe6, 0xd9, 0xd8, 0xdd, 0xe8, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Credits\u019e"}, "intro_first": {"bytes": "0xc2, 0xd9, 0xe0, 0xe0, 0xe3, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0xab, 0xfe, 0xfe, 0xc4, 0xe9, 0xe7, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xeb, 0xe3, 0xe6, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xd5, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0xae, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xd1, 0xc3, 0xc6, 0xc6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xed, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe0, 0xe3, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xd6, 0xd9, 0xe8, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xdd, 0xd8, 0xb8, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd9, 0xe2, 0xde, 0xe3, 0xed, 0xab, 0xfe, 0xfe, 0xae, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 15, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": false, "text": "Hello! Thank you for using Pok\u00e9\u0147Transporter GB!\u0147\u0147Just as a word of caution- Pok\u00e9\u0147Transporter GB WILL modify both the\u0147GameBoy and GameBoy Advance save\u0147files.\u0147\u0147Please note that while Pok\u00e9\u0147Transporter GB is no longer in beta,\u0147save file backups are still\u0147recommended before using. With that\u0147all being said, please enjoy!\u0147\u0147-The Gears of Progress\u019e"}, "intro_legal": {"bytes": "0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe3, 0xda, 0xfe, 0xe0, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd5, 0xe4, 0xe4, 0xe6, 0xd9, 0xd7, 0xdd, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xd5, 0xe2, 0xd7, 0xdc, 0xdd, 0xe7, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xda, 0xdd, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xbb, 0xc6, 0xd1, 0xbb, 0xd3, 0xcd, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0xfe, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0x0, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe1, 0xe9, 0xe7, 0xdd, 0xd7, 0xfe, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xeb, 0xe2, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0x0, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0x0, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0xad, 0xfe, 0xfe, 0xfe, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xff", "numLines": 14, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": false, "text": "Pok\u00e9 Transporter GB was made out of\u0147love and appreciation for the Pokemon\u0147franchise with no profit in mind. It\u0147will ALWAYS be free.\u0147\u0147Please support the original\u0147developers.\u0147\u0147All Pokemon names, sprites, and music\u0147are owned by Nintendo, Creatures Inc,\u0147and GAME FREAK.\u0147\u0147\u0147Press A to continue\u019e"}, "cart_load_error": {"bytes": "0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xad, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xdd, 0xe2, 0xe7, 0xd9, 0xe6, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xea, 0xd9, 0xe0, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff", "numLines": 10, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "The Pok\u00e9mon save file was\u0147not loaded successfully.\u0147Please remove and reinsert\u0147the Game Pak, and then\u0147press the A button.\u0147\u0147Alternatively, press the\u0147Select button to send this\u0147program to another GameBoy\u0147Advance.\u019e"}, "pulled_cart_error": {"bytes": "0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xad, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "The Pok\u00e9mon game was\u0147removed. Please turn off\u0147the system and restart the\u0147program.\u019e"}, "send_multiboot_instructions": {"bytes": "0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xfe, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xdd, 0xe2, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0x0, 0xe1, 0xe3, 0xd8, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xc6, 0xdd, 0xe2, 0xdf, 0xfe, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0xad, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0xe2, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xfe, 0xe8, 0xe3, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff", "numLines": 10, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Please connect this system\u0147to another GameBoy Advance\u0147in Multiboot mode with a\u0147GameBoy Advance Link\u0147Cable.\u0147\u0147Then, press the A button\u0147to begin sending Pok\u00e9\u0147Transporter GB to the\u0147second GameBoy Advance.\u019e"}, "send_multiboot_wait": {"bytes": "0xcd, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0xfe, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0xfe, 0xeb, 0xd5, 0xdd, 0xe8, 0xad, 0xfe, 0xfe, 0xc2, 0xe3, 0xe0, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbc, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xad, 0xff", "numLines": 7, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Sending Pok\u00e9 Transporter\u0147GB to second GameBoy\u0147Advance system. Please\u0147wait.\u0147\u0147Hold the B Button to\u0147cancel.\u019e"}, "send_multiboot_success": {"bytes": "0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xab, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xd5, 0xed, 0xfe, 0xe2, 0xe3, 0xeb, 0x0, 0xe4, 0xe3, 0xeb, 0xd9, 0xe6, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xad, 0xff", "numLines": 7, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "\u0147Pok\u00e9 Transporter GB was\u0147sent successfully! You may\u0147now power off this GameBoy\u0147Advance system.\u019e"}, "send_multiboot_failure": {"bytes": "0xfe, 0xbb, 0xe2, 0x0, 0xd9, 0xe6, 0xe6, 0xe3, 0xe6, 0x0, 0xe3, 0xd7, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0xfe, 0xc1, 0xbc, 0xad, 0x0, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xe6, 0xe9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xfe, 0xe7, 0xd7, 0xe6, 0xd9, 0xd9, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xad, 0xff", "numLines": 7, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "\u0147An error occurred while\u0147sending Pok\u00e9 Transporter\u0147GB. Press the A button to\u0147return to the instructions\u0147screen and try again.\u019e"}, "kanto_name": {"bytes": "0xc5, 0xbb, 0xc8, 0xce, 0xc9, 0xf0, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "KANTO:\u019e"}, "johto_name": {"bytes": "0xc4, 0xc9, 0xc2, 0xce, 0xc9, 0xf0, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "JOHTO:\u019e"}}, "CREDITS": {"credits_page_1": {"bytes": "0xc6, 0xd9, 0xd5, 0xd8, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xf0, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Lead developer:\u0147\u0147The Gears of Progress\u019e"}, "credits_page_2": {"bytes": "0xc6, 0xe3, 0xdb, 0xe3, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xe3, 0xae, 0xdd, 0xd8, 0xd9, 0xd5, 0xe8, 0xe3, 0xe6, 0xf0, 0xfe, 0xfe, 0xae, 0xc4, 0xe3, 0xe1, 0xd9, 0xfe, 0xfe, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xeb, 0xe3, 0xe6, 0xdf, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xc4, 0x0, 0xbc, 0xdd, 0xe6, 0xd8, 0xe1, 0xd5, 0xe2, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Logo and co-ideator:\u0147\u0147-Jome\u0147\u0147Spritework:\u0147\u0147-LJ Birdman\u019e"}, "credits_page_3": {"bytes": "0xc3, 0xd7, 0xe3, 0xe2, 0x0, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xe9, 0xdd, 0xdb, 0xdd, 0xce, 0xc5, 0xc9, 0xfe, 0xae, 0xc1, 0xe9, 0xdd, 0xbb, 0xd6, 0xd9, 0xe0, 0xfe, 0xae, 0xcd, 0xe3, 0xe9, 0xe6, 0xbb, 0xe4, 0xe4, 0xe0, 0xd9, 0xfe, 0x2d, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd5, 0xe6, 0xe8, 0xdd, 0xe7, 0xe8, 0xe7, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xcd, 0xdc, 0xe3, 0xeb, 0xd8, 0xe3, 0xeb, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0x0, 0xbd, 0xe0, 0xd9, 0xd5, 0xe6, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Icon Sprites:\u0147\u0147-LuigiTKO\u0147-GuiAbel\u0147-SourApple\u0147& the artists from Pok\u00e9mon\u0147Showdown and Crystal Clear\u019e"}, "credits_page_4": {"bytes": "0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xe6, 0xd6, 0xdd, 0xe8, 0xe6, 0xd5, 0xe6, 0xed, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0xfe, 0xbf, 0xec, 0xd9, 0xd7, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xce, 0xdd, 0xe1, 0xe3, 0xd0, 0xc7, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Remote and Arbitrary Code\u0147Execution assistance:\u0147\u0147-TimoVM\u019e"}, "credits_page_5": {"bytes": "0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xe6, 0xdd, 0xe0, 0xd9, 0xed, 0xdf, 0xa7, 0xa5, 0xfe, 0xae, 0xcd, 0xdc, 0xd5, 0xe3, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Development assistance:\u0147\u0147-im a blisy\u0147-rileyk64\u0147-Shao\u019e"}, "credits_page_6": {"bytes": "0xcd, 0xe4, 0xd5, 0xd7, 0xd9, 0x0, 0xc9, 0xe4, 0xe8, 0xdd, 0xe1, 0xdd, 0xee, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xf0, 0xfe, 0xfe, 0xae, 0xd9, 0xd5, 0xe7, 0xed, 0xd5, 0xe7, 0xe4, 0xdd, 0xa4, 0xa2, 0xa5, 0xfe, 0xfe, 0xc6, 0xe3, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xcc, 0xc9, 0xc7, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0xfe, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0x0, 0xda, 0xe9, 0xe2, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xf0, 0xfe, 0xfe, 0xae, 0xe6, 0xdd, 0xe7, 0xdd, 0xe2, 0xdb, 0xca, 0xdc, 0xdd, 0xe0, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Space Optimization:\u0147\u0147-easyaspi314\u0147\u0147Loader ROM and Remote\u0147Multiboot functionality:\u0147\u0147-risingPhil\u019e"}, "credits_page_7": {"bytes": "0xbc, 0xe9, 0xdd, 0xe0, 0xe8, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xbe, 0xd9, 0xea, 0xdf, 0xdd, 0xe8, 0xca, 0xe6, 0xe3, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xce, 0xe3, 0xe2, 0xd7, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xc1, 0xbc, 0xbb, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Built using:\u0147\u0147\u0147-DevkitPro\u0147-LibTonc\u0147-LibGBA\u019e"}, "credits_page_8": {"bytes": "0xc3, 0xe2, 0xe7, 0xe4, 0xdd, 0xe6, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xe7, 0x0, 0xe3, 0xda, 0xf0, 0xfe, 0xfe, 0xae, 0xc1, 0xe3, 0xe4, 0xe4, 0xdd, 0xd9, 0xe6, 0xfe, 0xae, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xcc, 0xbf, 0xce, 0xc3, 0xcc, 0xbf, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Inspired by the works of:\u0147\u0147-Goppier\u0147-Lorenzooone\u0147-im a blisy\u0147-RETIRE\u019e"}, "credits_page_9": {"bytes": "0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xe7, 0x0, 0xe9, 0xe7, 0xd9, 0xd8, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xae, 0xca, 0xc5, 0xc2, 0xd9, 0xd2, 0xfe, 0xae, 0xd1, 0xbd, 0xa4, 0xce, 0xe3, 0xe3, 0xe0, 0xfe, 0xae, 0xcf, 0xe7, 0xd9, 0xe2, 0xe8, 0xdd, 0xfe, 0xae, 0xcd, 0xd5, 0xe4, 0xe4, 0xed, 0xc7, 0xdd, 0xd8, 0xce, 0xe3, 0xbb, 0xc1, 0xbc, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Programs used:\u0147\u0147\u0147-HexManiacAdvance\u0147-PKHeX\u0147-WC3Tool\u0147-Usenti\u0147-SappyMidToAGB\u019e"}, "credits_page_10": {"bytes": "0xc9, 0xe4, 0xd9, 0xe2, 0x0, 0xcd, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xc6, 0xdd, 0xd6, 0xe6, 0xd5, 0xe6, 0xdd, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xe0, 0xdd, 0xd6, 0xe8, 0xe3, 0xe2, 0xd7, 0xae, 0xd9, 0xec, 0xd5, 0xe1, 0xe4, 0xe0, 0xd9, 0xe7, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0xae, 0xdb, 0xd6, 0xd5, 0xae, 0xe0, 0xdd, 0xe2, 0xdf, 0xae, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xae, 0xd5, 0xeb, 0xd9, 0xe7, 0xe3, 0xe1, 0xd9, 0xae, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0xae, 0xd5, 0xe6, 0xd8, 0xe9, 0xdd, 0xe2, 0xe3, 0xae, 0xe4, 0xe3, 0xdf, 0xd9, 0xae, 0xdb, 0xd9, 0xe2, 0xa3, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Open Source Code and\u0147Libraries:\u0147\u0147-libtonc-examples\u0147-PokemonGen3toGenX\u0147-gba-link-connection\u0147-awesome-gbadev\u0147-arduino-poke-gen2\u019e"}, "credits_page_11": {"bytes": "0xcc, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xd5, 0xe6, 0xe1, 0xae, 0xd8, 0xe3, 0xd7, 0xe7, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0xfe, 0xc0, 0xe9, 0xe0, 0xe0, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xe7, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe3, 0xe9, 0xe2, 0xd8, 0x0, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xb4, 0xe7, 0x0, 0xc1, 0xdd, 0xe8, 0xc2, 0xe9, 0xd6, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Research resources:\u0147\u0147-arm-docs\u0147-PokemonGen3toGenX\u0147\u0147Full links can be found on\u0147this program\u2019s GitHub\u019e"}, "credits_page_12": {"bytes": "0xcc, 0xc9, 0xc7, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xd8, 0xd9, 0xd7, 0xe3, 0xe1, 0xe4, 0xdd, 0xe0, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0x0, 0xd7, 0xe6, 0xd9, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xcc, 0xbf, 0xce, 0x0, 0xe8, 0xd9, 0xd5, 0xe1, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "ROM data obtained from\u0147decompilations created by\u0147the PRET team\u019e"}, "credits_page_13": {"bytes": "0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0xf0, 0xfe, 0xfe, 0xae, 0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe4, 0xd9, 0xd8, 0xdd, 0xd5, 0xfe, 0xae, 0xcd, 0xd9, 0xe6, 0xd9, 0xd6, 0xdd, 0xdd, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xbb, 0xca, 0xc3, 0xad, 0xd7, 0xe3, 0xe1, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Pok\u00e9mon data obtained\u0147from:\u0147\u0147-Bulbapedia\u0147-Serebii\u0147-PokeAPI.com\u019e"}, "credits_page_14": {"bytes": "0xbe, 0xdd, 0xe7, 0xd7, 0xe3, 0xe6, 0xd8, 0x0, 0xd7, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xe8, 0xed, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0x0, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0xfe, 0xae, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0xae, 0xe4, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Discord community\u0147assistance:\u0147\u0147-Hex Maniac Advance\u0147Development\u0147-gbadev\u0147-pret\u019e"}, "credits_page_15": {"bytes": "0xd1, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc7, 0xd5, 0xd8, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Writing assistance:\u0147\u0147\u0147-Mad\u019e"}, "credits_page_16": {"bytes": "0xbb, 0xe2, 0x0, 0xdd, 0xe1, 0xe1, 0xd9, 0xe2, 0xe7, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0x2d, 0xfe, 0xeb, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe1, 0xb8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xe3, 0xe9, 0xe0, 0xd8, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0xad, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "An immense thanks to\u0147Lorenzooone for their\u0147assistance in reading &\u0147writing save data. Without\u0147them, this project would\u0147not have been possible.\u019e"}, "credits_page_17": {"bytes": "0xcd, 0xe4, 0xd9, 0xd7, 0xdd, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xbf, 0xe2, 0xe2, 0xb8, 0xfe, 0xe6, 0xe3, 0xdf, 0xe9, 0xb8, 0x0, 0xcd, 0xe0, 0xd9, 0xd9, 0xe4, 0xed, 0xb8, 0x0, 0xbf, 0xee, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xe6, 0xd5, 0xdc, 0xe8, 0xe3, 0xe2, 0xdd, 0xe2, 0xb8, 0x0, 0xbc, 0xd5, 0xe7, 0xd5, 0xd6, 0xdd, 0xb8, 0x0, 0xc7, 0xd5, 0xd8, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe3, 0xe2, 0xd9, 0x0, 0xeb, 0xdc, 0xe3, 0x0, 0xdc, 0xd5, 0xe7, 0xfe, 0xe0, 0xdd, 0xe7, 0xe8, 0xd9, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xd5, 0xd6, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe1, 0xe3, 0xe2, 0xe8, 0xdc, 0xe7, 0xab, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Special thanks to Enn,\u0147roku, Sleepy, Eza,\u0147sarahtonin, Basabi, Mad,\u0147and everyone who has\u0147listened to me talk about\u0147this for months!\u019e"}, "credits_page_18": {"bytes": "0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0xfe, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xe6, 0xd9, 0xe0, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xd7, 0xe3, 0xe4, 0xed, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0xfe, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xad, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0xfe, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0x0, 0xc3, 0xe2, 0xd7, 0xad, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "All Pok\u00e9mon names,\u0147sprites, and names of\u0147related resources are\u0147copyright Nintendo,\u0147Creatures Inc., and GAME\u0147FREAK Inc.\u019e"}, "credits_page_19": {"bytes": "0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0xfe, 0xd9, 0xe2, 0xd8, 0xe3, 0xe6, 0xe7, 0xd9, 0xd8, 0x0, 0xe3, 0xe6, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xc0, 0xe6, 0xd9, 0xd5, 0xdf, 0xba, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "This project is not\u0147endorsed or supported by\u0147GameFreak/Nintendo.\u0147\u0147Please support the\u0147original developers.\u019e"}}, "PKMN_NAMES": {"0": {"bytes": "0xc7, 0xdd, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0xc8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "MissingNo\u019e"}, "1": {"bytes": "0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bulbasaur\u019e"}, "2": {"bytes": "0xc3, 0xea, 0xed, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ivysaur\u019e"}, "3": {"bytes": "0xd0, 0xd9, 0xe2, 0xe9, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venusaur\u019e"}, "4": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xe1, 0xd5, 0xe2, 0xd8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charmander\u019e"}, "5": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xe1, 0xd9, 0xe0, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charmeleon\u019e"}, "6": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xdd, 0xee, 0xd5, 0xe6, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charizard\u019e"}, "7": {"bytes": "0xcd, 0xe5, 0xe9, 0xdd, 0xe6, 0xe8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Squirtle\u019e"}, "8": {"bytes": "0xd1, 0xd5, 0xe6, 0xe8, 0xe3, 0xe6, 0xe8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wartortle\u019e"}, "9": {"bytes": "0xbc, 0xe0, 0xd5, 0xe7, 0xe8, 0xe3, 0xdd, 0xe7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Blastoise\u019e"}, "10": {"bytes": "0xbd, 0xd5, 0xe8, 0xd9, 0xe6, 0xe4, 0xdd, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Caterpie\u019e"}, "11": {"bytes": "0xc7, 0xd9, 0xe8, 0xd5, 0xe4, 0xe3, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Metapod\u019e"}, "12": {"bytes": "0xbc, 0xe9, 0xe8, 0xe8, 0xd9, 0xe6, 0xda, 0xe6, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Butterfree\u019e"}, "13": {"bytes": "0xd1, 0xd9, 0xd9, 0xd8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weedle\u019e"}, "14": {"bytes": "0xc5, 0xd5, 0xdf, 0xe9, 0xe2, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kakuna\u019e"}, "15": {"bytes": "0xbc, 0xd9, 0xd9, 0xd8, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Beedrill\u019e"}, "16": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgey\u019e"}, "17": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xe3, 0xe8, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgeotto\u019e"}, "18": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xe3, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgeot\u019e"}, "19": {"bytes": "0xcc, 0xd5, 0xe8, 0xe8, 0xd5, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rattata\u019e"}, "20": {"bytes": "0xcc, 0xd5, 0xe8, 0xdd, 0xd7, 0xd5, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raticate\u019e"}, "21": {"bytes": "0xcd, 0xe4, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Spearow\u019e"}, "22": {"bytes": "0xc0, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Fearow\u019e"}, "23": {"bytes": "0xbf, 0xdf, 0xd5, 0xe2, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ekans\u019e"}, "24": {"bytes": "0xbb, 0xe6, 0xd6, 0xe3, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Arbok\u019e"}, "25": {"bytes": "0xca, 0xdd, 0xdf, 0xd5, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pikachu\u019e"}, "26": {"bytes": "0xcc, 0xd5, 0xdd, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raichu\u019e"}, "27": {"bytes": "0xcd, 0xd5, 0xe2, 0xd8, 0xe7, 0xdc, 0xe6, 0xd9, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sandshrew\u019e"}, "28": {"bytes": "0xcd, 0xd5, 0xe2, 0xd8, 0xe7, 0xe0, 0xd5, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sandslash\u019e"}, "29": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xd5, 0xe2, 0xb6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoran\u2640\u019e"}, "30": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xdd, 0xe2, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidorina\u019e"}, "31": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe5, 0xe9, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoqueen\u019e"}, "32": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xd5, 0xe2, 0xb5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoran\u2642\u019e"}, "33": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xdd, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidorino\u019e"}, "34": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoking\u019e"}, "35": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xd5, 0xdd, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Clefairy\u019e"}, "36": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xd5, 0xd6, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Clefable\u019e"}, "37": {"bytes": "0xd0, 0xe9, 0xe0, 0xe4, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vulpix\u019e"}, "38": {"bytes": "0xc8, 0xdd, 0xe2, 0xd9, 0xe8, 0xd5, 0xe0, 0xd9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ninetales\u019e"}, "39": {"bytes": "0xc4, 0xdd, 0xdb, 0xdb, 0xe0, 0xed, 0xe4, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jigglypuff\u019e"}, "40": {"bytes": "0xd1, 0xdd, 0xdb, 0xdb, 0xe0, 0xed, 0xe8, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wigglytuff\u019e"}, "41": {"bytes": "0xd4, 0xe9, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Zubat\u019e"}, "42": {"bytes": "0xc1, 0xe3, 0xe0, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golbat\u019e"}, "43": {"bytes": "0xc9, 0xd8, 0xd8, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Oddish\u019e"}, "44": {"bytes": "0xc1, 0xe0, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gloom\u019e"}, "45": {"bytes": "0xd0, 0xdd, 0xe0, 0xd9, 0xe4, 0xe0, 0xe9, 0xe1, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vileplume\u019e"}, "46": {"bytes": "0xca, 0xd5, 0xe6, 0xd5, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Paras\u019e"}, "47": {"bytes": "0xca, 0xd5, 0xe6, 0xd5, 0xe7, 0xd9, 0xd7, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Parasect\u019e"}, "48": {"bytes": "0xd0, 0xd9, 0xe2, 0xe3, 0xe2, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venonat\u019e"}, "49": {"bytes": "0xd0, 0xd9, 0xe2, 0xe3, 0xe1, 0xe3, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venomoth\u019e"}, "50": {"bytes": "0xbe, 0xdd, 0xdb, 0xe0, 0xd9, 0xe8, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Diglett\u019e"}, "51": {"bytes": "0xbe, 0xe9, 0xdb, 0xe8, 0xe6, 0xdd, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dugtrio\u019e"}, "52": {"bytes": "0xc7, 0xd9, 0xe3, 0xeb, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Meowth\u019e"}, "53": {"bytes": "0xca, 0xd9, 0xe6, 0xe7, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Persian\u019e"}, "54": {"bytes": "0xca, 0xe7, 0xed, 0xd8, 0xe9, 0xd7, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Psyduck\u019e"}, "55": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xe9, 0xd7, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golduck\u019e"}, "56": {"bytes": "0xc7, 0xd5, 0xe2, 0xdf, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mankey\u019e"}, "57": {"bytes": "0xca, 0xe6, 0xdd, 0xe1, 0xd9, 0xd5, 0xe4, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Primeape\u019e"}, "58": {"bytes": "0xc1, 0xe6, 0xe3, 0xeb, 0xe0, 0xdd, 0xe8, 0xdc, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Growlithe\u019e"}, "59": {"bytes": "0xbb, 0xe6, 0xd7, 0xd5, 0xe2, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Arcanine\u019e"}, "60": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xd5, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwag\u019e"}, "61": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xdc, 0xdd, 0xe6, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwhirl\u019e"}, "62": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xe6, 0xd5, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwrath\u019e"}, "63": {"bytes": "0xbb, 0xd6, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Abra\u019e"}, "64": {"bytes": "0xc5, 0xd5, 0xd8, 0xd5, 0xd6, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kadabra\u019e"}, "65": {"bytes": "0xbb, 0xe0, 0xd5, 0xdf, 0xd5, 0xee, 0xd5, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Alakazam\u019e"}, "66": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machop\u019e"}, "67": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xdf, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machoke\u019e"}, "68": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xd5, 0xe1, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machamp\u019e"}, "69": {"bytes": "0xbc, 0xd9, 0xe0, 0xe0, 0xe7, 0xe4, 0xe6, 0xe3, 0xe9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bellsprout\u019e"}, "70": {"bytes": "0xd1, 0xd9, 0xd9, 0xe4, 0xdd, 0xe2, 0xd6, 0xd9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weepinbell\u019e"}, "71": {"bytes": "0xd0, 0xdd, 0xd7, 0xe8, 0xe6, 0xd9, 0xd9, 0xd6, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Victreebel\u019e"}, "72": {"bytes": "0xce, 0xd9, 0xe2, 0xe8, 0xd5, 0xd7, 0xe3, 0xe3, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tentacool\u019e"}, "73": {"bytes": "0xce, 0xd9, 0xe2, 0xe8, 0xd5, 0xd7, 0xe6, 0xe9, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tentacruel\u019e"}, "74": {"bytes": "0xc1, 0xd9, 0xe3, 0xd8, 0xe9, 0xd8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Geodude\u019e"}, "75": {"bytes": "0xc1, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Graveler\u019e"}, "76": {"bytes": "0xc1, 0xe3, 0xe0, 0xd9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golem\u019e"}, "77": {"bytes": "0xca, 0xe3, 0xe2, 0xed, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ponyta\u019e"}, "78": {"bytes": "0xcc, 0xd5, 0xe4, 0xdd, 0xd8, 0xd5, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rapidash\u019e"}, "79": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xe4, 0xe3, 0xdf, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowpoke\u019e"}, "80": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xd6, 0xe6, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowbro\u019e"}, "81": {"bytes": "0xc7, 0xd5, 0xdb, 0xe2, 0xd9, 0xe1, 0xdd, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magnemite\u019e"}, "82": {"bytes": "0xc7, 0xd5, 0xdb, 0xe2, 0xd9, 0xe8, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magneton\u019e"}, "83": {"bytes": "0xc0, 0xd5, 0xe6, 0xda, 0xd9, 0xe8, 0xd7, 0xdc, 0xb4, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Farfetch\u2019d\u019e"}, "84": {"bytes": "0xbe, 0xe3, 0xd8, 0xe9, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Doduo\u019e"}, "85": {"bytes": "0xbe, 0xe3, 0xd8, 0xe6, 0xdd, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dodrio\u019e"}, "86": {"bytes": "0xcd, 0xd9, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seel\u019e"}, "87": {"bytes": "0xbe, 0xd9, 0xeb, 0xdb, 0xe3, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dewgong\u019e"}, "88": {"bytes": "0xc1, 0xe6, 0xdd, 0xe1, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Grimer\u019e"}, "89": {"bytes": "0xc7, 0xe9, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Muk\u019e"}, "90": {"bytes": "0xcd, 0xdc, 0xd9, 0xe0, 0xe0, 0xd8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Shellder\u019e"}, "91": {"bytes": "0xbd, 0xe0, 0xe3, 0xed, 0xe7, 0xe8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cloyster\u019e"}, "92": {"bytes": "0xc1, 0xd5, 0xe7, 0xe8, 0xe0, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gastly\u019e"}, "93": {"bytes": "0xc2, 0xd5, 0xe9, 0xe2, 0xe8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Haunter\u019e"}, "94": {"bytes": "0xc1, 0xd9, 0xe2, 0xdb, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gengar\u019e"}, "95": {"bytes": "0xc9, 0xe2, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Onix\u019e"}, "96": {"bytes": "0xbe, 0xe6, 0xe3, 0xeb, 0xee, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Drowzee\u019e"}, "97": {"bytes": "0xc2, 0xed, 0xe4, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hypno\u019e"}, "98": {"bytes": "0xc5, 0xe6, 0xd5, 0xd6, 0xd6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Krabby\u019e"}, "99": {"bytes": "0xc5, 0xdd, 0xe2, 0xdb, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kingler\u019e"}, "100": {"bytes": "0xd0, 0xe3, 0xe0, 0xe8, 0xe3, 0xe6, 0xd6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Voltorb\u019e"}, "101": {"bytes": "0xbf, 0xe0, 0xd9, 0xd7, 0xe8, 0xe6, 0xe3, 0xd8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Electrode\u019e"}, "102": {"bytes": "0xbf, 0xec, 0xd9, 0xdb, 0xdb, 0xd7, 0xe9, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Exeggcute\u019e"}, "103": {"bytes": "0xbf, 0xec, 0xd9, 0xdb, 0xdb, 0xe9, 0xe8, 0xe3, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Exeggutor\u019e"}, "104": {"bytes": "0xbd, 0xe9, 0xd6, 0xe3, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cubone\u019e"}, "105": {"bytes": "0xc7, 0xd5, 0xe6, 0xe3, 0xeb, 0xd5, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Marowak\u019e"}, "106": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xe0, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmonlee\u019e"}, "107": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xd7, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmonchan\u019e"}, "108": {"bytes": "0xc6, 0xdd, 0xd7, 0xdf, 0xdd, 0xe8, 0xe9, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lickitung\u019e"}, "109": {"bytes": "0xc5, 0xe3, 0xda, 0xda, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Koffing\u019e"}, "110": {"bytes": "0xd1, 0xd9, 0xd9, 0xee, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weezing\u019e"}, "111": {"bytes": "0xcc, 0xdc, 0xed, 0xdc, 0xe3, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rhyhorn\u019e"}, "112": {"bytes": "0xcc, 0xdc, 0xed, 0xd8, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rhydon\u019e"}, "113": {"bytes": "0xbd, 0xdc, 0xd5, 0xe2, 0xe7, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chansey\u019e"}, "114": {"bytes": "0xce, 0xd5, 0xe2, 0xdb, 0xd9, 0xe0, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tangela\u019e"}, "115": {"bytes": "0xc5, 0xd5, 0xe2, 0xdb, 0xd5, 0xe7, 0xdf, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kangaskhan\u019e"}, "116": {"bytes": "0xc2, 0xe3, 0xe6, 0xe7, 0xd9, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Horsea\u019e"}, "117": {"bytes": "0xcd, 0xd9, 0xd5, 0xd8, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seadra\u019e"}, "118": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Goldeen\u019e"}, "119": {"bytes": "0xcd, 0xd9, 0xd5, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seaking\u019e"}, "120": {"bytes": "0xcd, 0xe8, 0xd5, 0xe6, 0xed, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Staryu\u019e"}, "121": {"bytes": "0xcd, 0xe8, 0xd5, 0xe6, 0xe1, 0xdd, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Starmie\u019e"}, "122": {"bytes": "0xc7, 0xe6, 0xad, 0x0, 0xc7, 0xdd, 0xe1, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mr. Mime\u019e"}, "123": {"bytes": "0xcd, 0xd7, 0xed, 0xe8, 0xdc, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Scyther\u019e"}, "124": {"bytes": "0xc4, 0xed, 0xe2, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jynx\u019e"}, "125": {"bytes": "0xbf, 0xe0, 0xd9, 0xd7, 0xe8, 0xd5, 0xd6, 0xe9, 0xee, 0xee, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Electabuzz\u019e"}, "126": {"bytes": "0xc7, 0xd5, 0xdb, 0xe1, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magmar\u019e"}, "127": {"bytes": "0xca, 0xdd, 0xe2, 0xe7, 0xdd, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pinsir\u019e"}, "128": {"bytes": "0xce, 0xd5, 0xe9, 0xe6, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tauros\u019e"}, "129": {"bytes": "0xc7, 0xd5, 0xdb, 0xdd, 0xdf, 0xd5, 0xe6, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magikarp\u019e"}, "130": {"bytes": "0xc1, 0xed, 0xd5, 0xe6, 0xd5, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gyarados\u019e"}, "131": {"bytes": "0xc6, 0xd5, 0xe4, 0xe6, 0xd5, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lapras\u019e"}, "132": {"bytes": "0xbe, 0xdd, 0xe8, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ditto\u019e"}, "133": {"bytes": "0xbf, 0xd9, 0xea, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Eevee\u019e"}, "134": {"bytes": "0xd0, 0xd5, 0xe4, 0xe3, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vaporeon\u019e"}, "135": {"bytes": "0xc4, 0xe3, 0xe0, 0xe8, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jolteon\u019e"}, "136": {"bytes": "0xc0, 0xe0, 0xd5, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Flareon\u019e"}, "137": {"bytes": "0xca, 0xe3, 0xe6, 0xed, 0xdb, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Porygon\u019e"}, "138": {"bytes": "0xc9, 0xe1, 0xd5, 0xe2, 0xed, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Omanyte\u019e"}, "139": {"bytes": "0xc9, 0xe1, 0xd5, 0xe7, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Omastar\u019e"}, "140": {"bytes": "0xc5, 0xd5, 0xd6, 0xe9, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kabuto\u019e"}, "141": {"bytes": "0xc5, 0xd5, 0xd6, 0xe9, 0xe8, 0xe3, 0xe4, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kabutops\u019e"}, "142": {"bytes": "0xbb, 0xd9, 0xe6, 0xe3, 0xd8, 0xd5, 0xd7, 0xe8, 0xed, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Aerodactyl\u019e"}, "143": {"bytes": "0xcd, 0xe2, 0xe3, 0xe6, 0xe0, 0xd5, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Snorlax\u019e"}, "144": {"bytes": "0xbb, 0xe6, 0xe8, 0xdd, 0xd7, 0xe9, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Articuno\u019e"}, "145": {"bytes": "0xd4, 0xd5, 0xe4, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Zapdos\u019e"}, "146": {"bytes": "0xc7, 0xe3, 0xe0, 0xe8, 0xe6, 0xd9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Moltres\u019e"}, "147": {"bytes": "0xbe, 0xe6, 0xd5, 0xe8, 0xdd, 0xe2, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dratini\u019e"}, "148": {"bytes": "0xbe, 0xe6, 0xd5, 0xdb, 0xe3, 0xe2, 0xd5, 0xdd, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dragonair\u019e"}, "149": {"bytes": "0xbe, 0xe6, 0xd5, 0xdb, 0xe3, 0xe2, 0xdd, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dragonite\u019e"}, "150": {"bytes": "0xc7, 0xd9, 0xeb, 0xe8, 0xeb, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mewtwo\u019e"}, "151": {"bytes": "0xc7, 0xd9, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mew\u019e"}, "152": {"bytes": "0xbd, 0xdc, 0xdd, 0xdf, 0xe3, 0xe6, 0xdd, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chikorita\u019e"}, "153": {"bytes": "0xbc, 0xd5, 0xed, 0xe0, 0xd9, 0xd9, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bayleef\u019e"}, "154": {"bytes": "0xc7, 0xd9, 0xdb, 0xd5, 0xe2, 0xdd, 0xe9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Meganium\u019e"}, "155": {"bytes": "0xbd, 0xed, 0xe2, 0xd8, 0xd5, 0xe5, 0xe9, 0xdd, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cyndaquil\u019e"}, "156": {"bytes": "0xcb, 0xe9, 0xdd, 0xe0, 0xd5, 0xea, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Quilava\u019e"}, "157": {"bytes": "0xce, 0xed, 0xe4, 0xdc, 0xe0, 0xe3, 0xe7, 0xdd, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Typhlosion\u019e"}, "158": {"bytes": "0xce, 0xe3, 0xe8, 0xe3, 0xd8, 0xdd, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Totodile\u019e"}, "159": {"bytes": "0xbd, 0xe6, 0xe3, 0xd7, 0xe3, 0xe2, 0xd5, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Croconaw\u019e"}, "160": {"bytes": "0xc0, 0xd9, 0xe6, 0xd5, 0xe0, 0xdd, 0xdb, 0xd5, 0xe8, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Feraligatr\u019e"}, "161": {"bytes": "0xcd, 0xd9, 0xe2, 0xe8, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sentret\u019e"}, "162": {"bytes": "0xc0, 0xe9, 0xe6, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Furret\u019e"}, "163": {"bytes": "0xc2, 0xe3, 0xe3, 0xe8, 0xdc, 0xe3, 0xe3, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hoothoot\u019e"}, "164": {"bytes": "0xc8, 0xe3, 0xd7, 0xe8, 0xe3, 0xeb, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Noctowl\u019e"}, "165": {"bytes": "0xc6, 0xd9, 0xd8, 0xed, 0xd6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ledyba\u019e"}, "166": {"bytes": "0xc6, 0xd9, 0xd8, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ledian\u019e"}, "167": {"bytes": "0xcd, 0xe4, 0xdd, 0xe2, 0xd5, 0xe6, 0xd5, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Spinarak\u019e"}, "168": {"bytes": "0xbb, 0xe6, 0xdd, 0xd5, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ariados\u019e"}, "169": {"bytes": "0xbd, 0xe6, 0xe3, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Crobat\u019e"}, "170": {"bytes": "0xbd, 0xdc, 0xdd, 0xe2, 0xd7, 0xdc, 0xe3, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chinchou\u019e"}, "171": {"bytes": "0xc6, 0xd5, 0xe2, 0xe8, 0xe9, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lanturn\u019e"}, "172": {"bytes": "0xca, 0xdd, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pichu\u019e"}, "173": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xda, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cleffa\u019e"}, "174": {"bytes": "0xc3, 0xdb, 0xdb, 0xe0, 0xed, 0xd6, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Igglybuff\u019e"}, "175": {"bytes": "0xce, 0xe3, 0xdb, 0xd9, 0xe4, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Togepi\u019e"}, "176": {"bytes": "0xce, 0xe3, 0xdb, 0xd9, 0xe8, 0xdd, 0xd7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Togetic\u019e"}, "177": {"bytes": "0xc8, 0xd5, 0xe8, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Natu\u019e"}, "178": {"bytes": "0xd2, 0xd5, 0xe8, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Xatu\u019e"}, "179": {"bytes": "0xc7, 0xd5, 0xe6, 0xd9, 0xd9, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mareep\u019e"}, "180": {"bytes": "0xc0, 0xe0, 0xd5, 0xd5, 0xda, 0xda, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Flaaffy\u019e"}, "181": {"bytes": "0xbb, 0xe1, 0xe4, 0xdc, 0xd5, 0xe6, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ampharos\u019e"}, "182": {"bytes": "0xbc, 0xd9, 0xe0, 0xe0, 0xe3, 0xe7, 0xe7, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bellossom\u019e"}, "183": {"bytes": "0xc7, 0xd5, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Marill\u019e"}, "184": {"bytes": "0xbb, 0xee, 0xe9, 0xe1, 0xd5, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Azumarill\u019e"}, "185": {"bytes": "0xcd, 0xe9, 0xd8, 0xe3, 0xeb, 0xe3, 0xe3, 0xd8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sudowoodo\u019e"}, "186": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xe8, 0xe3, 0xd9, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Politoed\u019e"}, "187": {"bytes": "0xc2, 0xe3, 0xe4, 0xe4, 0xdd, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hoppip\u019e"}, "188": {"bytes": "0xcd, 0xdf, 0xdd, 0xe4, 0xe0, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Skiploom\u019e"}, "189": {"bytes": "0xc4, 0xe9, 0xe1, 0xe4, 0xe0, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jumpluff\u019e"}, "190": {"bytes": "0xbb, 0xdd, 0xe4, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Aipom\u019e"}, "191": {"bytes": "0xcd, 0xe9, 0xe2, 0xdf, 0xd9, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sunkern\u019e"}, "192": {"bytes": "0xcd, 0xe9, 0xe2, 0xda, 0xe0, 0xe3, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sunflora\u019e"}, "193": {"bytes": "0xd3, 0xd5, 0xe2, 0xe1, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Yanma\u019e"}, "194": {"bytes": "0xd1, 0xe3, 0xe3, 0xe4, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wooper\u019e"}, "195": {"bytes": "0xcb, 0xe9, 0xd5, 0xdb, 0xe7, 0xdd, 0xe6, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Quagsire\u019e"}, "196": {"bytes": "0xbf, 0xe7, 0xe4, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Espeon\u019e"}, "197": {"bytes": "0xcf, 0xe1, 0xd6, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Umbreon\u019e"}, "198": {"bytes": "0xc7, 0xe9, 0xe6, 0xdf, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Murkrow\u019e"}, "199": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowking\u019e"}, "200": {"bytes": "0xc7, 0xdd, 0xe7, 0xd8, 0xe6, 0xd9, 0xd5, 0xea, 0xe9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Misdreavus\u019e"}, "201": {"bytes": "0xcf, 0xe2, 0xe3, 0xeb, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Unown\u019e"}, "202": {"bytes": "0xd1, 0xe3, 0xd6, 0xd6, 0xe9, 0xda, 0xda, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wobbuffet\u019e"}, "203": {"bytes": "0xc1, 0xdd, 0xe6, 0xd5, 0xda, 0xd5, 0xe6, 0xdd, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Girafarig\u019e"}, "204": {"bytes": "0xca, 0xdd, 0xe2, 0xd9, 0xd7, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pineco\u019e"}, "205": {"bytes": "0xc0, 0xe3, 0xe6, 0xe6, 0xd9, 0xe8, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Forretress\u019e"}, "206": {"bytes": "0xbe, 0xe9, 0xe2, 0xe7, 0xe4, 0xd5, 0xe6, 0xd7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dunsparce\u019e"}, "207": {"bytes": "0xc1, 0xe0, 0xdd, 0xdb, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gligar\u019e"}, "208": {"bytes": "0xcd, 0xe8, 0xd9, 0xd9, 0xe0, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Steelix\u019e"}, "209": {"bytes": "0xcd, 0xe2, 0xe9, 0xd6, 0xd6, 0xe9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Snubbull\u019e"}, "210": {"bytes": "0xc1, 0xe6, 0xd5, 0xe2, 0xd6, 0xe9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Granbull\u019e"}, "211": {"bytes": "0xcb, 0xeb, 0xdd, 0xe0, 0xda, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Qwilfish\u019e"}, "212": {"bytes": "0xcd, 0xd7, 0xdd, 0xee, 0xe3, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Scizor\u019e"}, "213": {"bytes": "0xcd, 0xdc, 0xe9, 0xd7, 0xdf, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Shuckle\u019e"}, "214": {"bytes": "0xc2, 0xd9, 0xe6, 0xd5, 0xd7, 0xe6, 0xe3, 0xe7, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Heracross\u019e"}, "215": {"bytes": "0xcd, 0xe2, 0xd9, 0xd5, 0xe7, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sneasel\u019e"}, "216": {"bytes": "0xce, 0xd9, 0xd8, 0xd8, 0xdd, 0xe9, 0xe6, 0xe7, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Teddiursa\u019e"}, "217": {"bytes": "0xcf, 0xe6, 0xe7, 0xd5, 0xe6, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ursaring\u019e"}, "218": {"bytes": "0xcd, 0xe0, 0xe9, 0xdb, 0xe1, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slugma\u019e"}, "219": {"bytes": "0xc7, 0xd5, 0xdb, 0xd7, 0xd5, 0xe6, 0xdb, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magcargo\u019e"}, "220": {"bytes": "0xcd, 0xeb, 0xdd, 0xe2, 0xe9, 0xd6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Swinub\u019e"}, "221": {"bytes": "0xca, 0xdd, 0xe0, 0xe3, 0xe7, 0xeb, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Piloswine\u019e"}, "222": {"bytes": "0xbd, 0xe3, 0xe6, 0xe7, 0xe3, 0xe0, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Corsola\u019e"}, "223": {"bytes": "0xcc, 0xd9, 0xe1, 0xe3, 0xe6, 0xd5, 0xdd, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Remoraid\u019e"}, "224": {"bytes": "0xc9, 0xd7, 0xe8, 0xdd, 0xe0, 0xe0, 0xd9, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Octillery\u019e"}, "225": {"bytes": "0xbe, 0xd9, 0xe0, 0xdd, 0xd6, 0xdd, 0xe6, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Delibird\u019e"}, "226": {"bytes": "0xc7, 0xd5, 0xe2, 0xe8, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mantine\u019e"}, "227": {"bytes": "0xcd, 0xdf, 0xd5, 0xe6, 0xe1, 0xe3, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Skarmory\u019e"}, "228": {"bytes": "0xc2, 0xe3, 0xe9, 0xe2, 0xd8, 0xe3, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Houndour\u019e"}, "229": {"bytes": "0xc2, 0xe3, 0xe9, 0xe2, 0xd8, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Houndoom\u019e"}, "230": {"bytes": "0xc5, 0xdd, 0xe2, 0xdb, 0xd8, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kingdra\u019e"}, "231": {"bytes": "0xca, 0xdc, 0xd5, 0xe2, 0xe4, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Phanpy\u019e"}, "232": {"bytes": "0xbe, 0xe3, 0xe2, 0xe4, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Donphan\u019e"}, "233": {"bytes": "0xca, 0xe3, 0xe6, 0xed, 0xdb, 0xe3, 0xe2, 0xa3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Porygon2\u019e"}, "234": {"bytes": "0xcd, 0xe8, 0xd5, 0xe2, 0xe8, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Stantler\u019e"}, "235": {"bytes": "0xcd, 0xe1, 0xd9, 0xd5, 0xe6, 0xdb, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Smeargle\u019e"}, "236": {"bytes": "0xce, 0xed, 0xe6, 0xe3, 0xdb, 0xe9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tyrogue\u019e"}, "237": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xe8, 0xe3, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmontop\u019e"}, "238": {"bytes": "0xcd, 0xe1, 0xe3, 0xe3, 0xd7, 0xdc, 0xe9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Smoochum\u019e"}, "239": {"bytes": "0xbf, 0xe0, 0xd9, 0xdf, 0xdd, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Elekid\u019e"}, "240": {"bytes": "0xc7, 0xd5, 0xdb, 0xd6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magby\u019e"}, "241": {"bytes": "0xc7, 0xdd, 0xe0, 0xe8, 0xd5, 0xe2, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Miltank\u019e"}, "242": {"bytes": "0xbc, 0xe0, 0xdd, 0xe7, 0xe7, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Blissey\u019e"}, "243": {"bytes": "0xcc, 0xd5, 0xdd, 0xdf, 0xe3, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raikou\u019e"}, "244": {"bytes": "0xbf, 0xe2, 0xe8, 0xd9, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Entei\u019e"}, "245": {"bytes": "0xcd, 0xe9, 0xdd, 0xd7, 0xe9, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Suicune\u019e"}, "246": {"bytes": "0xc6, 0xd5, 0xe6, 0xea, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Larvitar\u019e"}, "247": {"bytes": "0xca, 0xe9, 0xe4, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pupitar\u019e"}, "248": {"bytes": "0xce, 0xed, 0xe6, 0xd5, 0xe2, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tyranitar\u019e"}, "249": {"bytes": "0xc6, 0xe9, 0xdb, 0xdd, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lugia\u019e"}, "250": {"bytes": "0xc2, 0xe3, 0xae, 0xc9, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ho-Oh\u019e"}, "251": {"bytes": "0xbd, 0xd9, 0xe0, 0xd9, 0xd6, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Celebi\u019e"}}, "Warnings": {"0": "Warning! ' found, replacing with \u2019 !", "1": "Warning! ' found, replacing with \u2019 !", "2": "Warning! ' found, replacing with \u2019 !", "3": "Warning! ' found, replacing with \u2019 !", "4": "Warning! ' found, replacing with \u2019 !", "5": "Warning! ' found, replacing with \u2019 !", "6": "Warning! ' found, replacing with \u2019 !", "7": "Warning! ' found, replacing with \u2019 !", "8": "Warning! ' found, replacing with \u2019 !", "9": "Warning! ' found, replacing with \u2019 !", "10": "Warning! ' found, replacing with \u2019 !", "11": "Warning! ' found, replacing with \u2019 !", "12": "Warning! ' found, replacing with \u2019 !", "13": "Warning! ' found, replacing with \u2019 !", "14": "Warning! ' found, replacing with \u2019 !", "15": "Warning! ' found, replacing with \u2019 !", "16": "Warning! ' found, replacing with \u2019 !", "17": "Warning! ' found, replacing with \u2019 !", "18": "Warning! ' found, replacing with \u2019 !", "19": "Warning! ' found, replacing with \u2019 !", "20": "Warning! ' found, replacing with \u2019 !", "21": "Warning! ' found, replacing with \u2019 !", "22": "Warning! ' found, replacing with \u2019 !", "23": "Warning! ' found, replacing with \u2019 !", "24": "Warning! ' found, replacing with \u2019 !", "25": "Warning! ' found, replacing with \u2019 !", "26": "Warning! ' found, replacing with \u2019 !", "27": "Warning! ' found, replacing with \u2019 !", "28": "Warning! ' found, replacing with \u2019 !", "29": "Warning! ' found, replacing with \u2019 !", "30": "Warning! ' found, replacing with \u2019 !", "31": "Warning! ' found, replacing with \u2019 !", "32": "Warning! ' found, replacing with \u2019 !", "33": "Warning! ' found, replacing with \u2019 !", "34": "Warning! ' found, replacing with \u2019 !", "35": "Warning! ' found, replacing with \u2019 !", "36": "Warning! ' found, replacing with \u2019 !", "37": "Warning! ' found, replacing with \u2019 !", "38": "Warning! ' found, replacing with \u2019 !", "39": "Warning! ' found, replacing with \u2019 !", "40": "Warning! ' found, replacing with \u2019 !", "41": "Warning! ' found, replacing with \u2019 !", "42": "Warning! ' found, replacing with \u2019 !", "43": "Warning! ' found, replacing with \u2019 !", "44": "Warning! ' found, replacing with \u2019 !", "45": "Warning! ' found, replacing with \u2019 !", "46": "Warning! ' found, replacing with \u2019 !", "47": "Warning! ' found, replacing with \u2019 !", "48": "Warning! ' found, replacing with \u2019 !", "49": "Warning! ' found, replacing with \u2019 !", "50": "Warning! ' found, replacing with \u2019 !", "51": "Warning! ' found, replacing with \u2019 !", "52": "Warning! ' found, replacing with \u2019 !", "53": "Warning! ' found, replacing with \u2019 !", "54": "Warning! ' found, replacing with \u2019 !"}, "Errors": {}}, "Italian": {"PTGB": {"DIA_OPEN": {"bytes": "0xc2, 0xd9, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xab, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xd9, 0xe2, 0xe2, 0xd9, 0xe0, 0xad, 0x0, 0xbb, 0xe7, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xd9, 0xb8, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xd5, 0x0, 0xe7, 0xd7, 0xdd, 0xd9, 0xe2, 0xe8, 0xdd, 0xe7, 0xe8, 0xad, 0x0, 0xc3, 0xe2, 0xfe, 0xda, 0xd5, 0xd7, 0xe8, 0xb8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xe9, 0xd6, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe7, 0xfe, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0xab, 0xfb, 0xc7, 0xed, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe0, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xea, 0xd5, 0xe6, 0xdd, 0xe3, 0xe9, 0xe7, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xdc, 0xd5, 0xd8, 0xfe, 0xd5, 0xe2, 0xed, 0x0, 0xd6, 0xe6, 0xd9, 0xd5, 0xdf, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0xe7, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xad, 0xad, 0xfb, 0xcd, 0xe3, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0xb4, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xdd, 0xe2, 0xdb, 0xfe, 0xe3, 0xe2, 0x0, 0xd5, 0x0, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0xfe, 0xe3, 0xe0, 0xd8, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0xab, 0xfb, 0xc3, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xdc, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0xb8, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xb4, 0xe7, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xdd, 0xe2, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd9, 0xed, 0x0, 0xe1, 0xd9, 0xd9, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0xab, 0xfb, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xda, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe1, 0xed, 0x0, 0xdb, 0xe3, 0xd5, 0xe0, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xd8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xd5, 0xe1, 0xd9, 0xae, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb4, 0xe7, 0xfe, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xfb, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xe2, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe9, 0xe8, 0xfe, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xe7, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xa3, 0xa6, 0xa1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xd7, 0xd5, 0xe8, 0xd5, 0xe0, 0xe3, 0xdb, 0xe9, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xbe, 0xd9, 0xec, 0xae, 0x0, 0xe3, 0xe6, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe6, 0xe8, 0xad, 0xfb, 0xbc, 0xe9, 0xe8, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xae, 0xfe, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xe6, 0xd9, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xd5, 0xe0, 0xe0, 0xab, 0xfb, 0xc9, 0xe2, 0xd9, 0x0, 0xe0, 0xd5, 0xe7, 0xe8, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0xb8, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0xae, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdb, 0xe3, 0xd9, 0xe7, 0x0, 0xeb, 0xe6, 0xe3, 0xe2, 0xdb, 0xab, 0xfe, 0xc3, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdf, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xad, 0xad, 0xad, 0xfb, 0xeb, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0xb8, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hey there! I\u2019m Professor Fennel. As\u0147you can see, I\u2019m a scientist. In\u0147fact, the subject I\u2019m researching is\u0147Trainers!\u023cMy dream is to collect save files of\u0147various trainers, but I haven\u2019t had\u0147any breakthroughs yet...\u023cSo in the meantime, I\u2019ve been working\u0147on a different project with one of my\u0147old friends!\u023cIn my home region, there\u2019s a location\u0147that can make a Pok\u00e9mon\u2019s dreams into\u0147reality.\u023cThis means that any other Pok\u00e9mon\u0147they meet in their dreams become\u0147real!\u023cThat\u2019s fantastic, but my goal is to\u0147do the same- just with a trainer\u2019s\u0147dream instead! That\u2019s why I need your\u0147help!\u023cI want to bring as many Pok\u00e9mon out\u0147of your dreams as possible!\u023cThere\u2019s just over 250 Pok\u00e9mon I want\u0147to catalogue in my Dream Pok\u00e9Dex- or\u0147Dream Dex for short.\u023cBut I\u2019ll let you keep any Pok\u00e9mon-\u0147they\u2019re from your dreams after all!\u023cOne last note, save data backups are\u0147recommended- just on the off chance\u0147that something goes wrong!\u0147I think that\u2019s everything...\u023cwhenever you\u2019re ready to start, just\u0147let me know!\u019e"}, "DIA_E4": {"bytes": "0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xe8, 0xdc, 0xe6, 0xdd, 0xe0, 0xe0, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0xfe, 0xd8, 0xd9, 0xd7, 0xdd, 0xd8, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe9, 0xe6, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xd9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0xab, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd5, 0xe8, 0xd9, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbf, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xc0, 0xe3, 0xe9, 0xe6, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xdc, 0xd5, 0xe1, 0xe4, 0xdd, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi trainer! I\u2019m thrilled you\u2019ve\u0147decided to help with our research,\u0147but we need the best of the best!\u023cCome back after you\u2019ve beaten the\u0147Elite Four and become the Champion!\u019e"}, "DIA_MG_FRLGE": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0xfe, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xae, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xc1, 0xc3, 0xc0, 0xce, 0xab, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe2, 0xd9, 0xd5, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xc7, 0xd5, 0xe6, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xda, 0xdd, 0xe0, 0xe0, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe2, 0xd5, 0xdd, 0xe6, 0xd9, 0x0, 0xd5, 0xe7, 0xfe, 0xda, 0xe3, 0xe0, 0xe0, 0xe3, 0xeb, 0xe7, 0xf0, 0x0, 0xc6, 0xc3, 0xc8, 0xc5, 0x0, 0xce, 0xc9, 0xc1, 0xbf, 0xce, 0xc2, 0xbf, 0xcc, 0x0, 0xd1, 0xc3, 0xce, 0xc2, 0x0, 0xbb, 0xc6, 0xc6, 0xad, 0xfb, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xdb, 0xe3, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, one more thing to take\u0147care of before we can begin- you need\u0147to enable MYSTERY GIFT!\u023cHead to the nearest Pok\u00e9 Mart and\u0147fill out the questionnaire as\u0147follows: LINK TOGETHER WITH ALL.\u023cAfter that, you should be all set to\u0147go! See you soon!\u019e"}, "DIA_MG_RS": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0xfe, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xae, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0xab, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbf, 0xce, 0xbb, 0xc6, 0xbc, 0xcf, 0xcc, 0xc1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xbd, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xe2, 0x0, 0xe2, 0xd9, 0xec, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0xf0, 0xfe, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0x0, 0xc3, 0xcd, 0x0, 0xbf, 0xd2, 0xbd, 0xc3, 0xce, 0xc3, 0xc8, 0xc1, 0xad, 0x0, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0xb8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdb, 0xe3, 0xab, 0xfb, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, one more thing to take\u0147care of before we can begin- you need\u0147to enable MYSTERY EVENT!\u023cHead to the PETALBURG Pok\u00e9mon Center\u0147and tell the man next to the PC:\u0147MYSTERY EVENT IS EXCITING. After\u0147that, you should be all set to go!\u023cSee you soon!\u019e"}, "DIA_LETS_START": {"bytes": "0xca, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0xb8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xc3, 0xfe, 0xe2, 0xd9, 0xd9, 0xd8, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xdb, 0xd9, 0xe8, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0xd9, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Perfect, that\u2019s all the information I\u0147need! Let\u2019s get started!\u019e"}, "DIA_START": {"bytes": "0xc9, 0xe2, 0x0, 0xd5, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xb8, 0xfe, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xdd, 0xe7, 0xdc, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xad, 0xfb, 0xc3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xad, 0xfb, 0xce, 0xdc, 0xd9, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xfe, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0x0, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0xad, 0xfb, 0xc9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0xb8, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xbd, 0xe0, 0xe9, 0xd6, 0xfe, 0xd5, 0xe8, 0xe8, 0xd9, 0xe2, 0xd8, 0xd5, 0xe2, 0xe8, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0x0, 0xdd, 0xe2, 0xdd, 0xe8, 0xdd, 0xd5, 0xe8, 0xd9, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xd9, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "On a second Game Boy family system,\u0147please load the Game Boy Pok\u00e9mon game\u0147you wish to transfer from.\u023cIn your Game Boy Pok\u00e9mon game, make\u0147your current box the one you want to\u0147transfer from.\u023cThen connect this Game Boy Advance to\u0147the other Game Boy family system\u0147using a Game Boy Color link cable.\u023cOnce you\u2019re ready, press A on this\u0147device, talk to the Cable Club\u0147attendant, and then initiate a trade.\u019e"}, "DIA_TRANS_GOOD": {"bytes": "0xbb, 0xe1, 0xd5, 0xee, 0xdd, 0xe2, 0xdb, 0xab, 0x0, 0xc0, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0xab, 0x0, 0xbf, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0xfe, 0xe4, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Amazing! Fantastic! Everything went\u0147perfectly!\u019e"}, "DIA_NEW_DEX": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xdd, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xab, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xd9, 0xec, 0xe8, 0xe6, 0xd5, 0x0, 0xe7, 0xeb, 0xd9, 0xd9, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xe6, 0xd9, 0xeb, 0xd5, 0xe6, 0xd8, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like there\u2019s at least one\u0147new Pok\u00e9mon here that isn\u2019t in the\u0147Dream Dex! I\u2019ll give them something\u0147extra sweet as a reward for you both.\u019e"}, "DIA_NO_NEW_DEX": {"bytes": "0xc3, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0xe2, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0xfe, 0xe3, 0xdf, 0xd5, 0xed, 0xab, 0x0, 0xc3, 0xe8, 0xb4, 0xe7, 0x0, 0xdd, 0xe1, 0xe4, 0xe3, 0xe6, 0xe8, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0xfe, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe9, 0xe0, 0xe8, 0xe7, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe1, 0xe9, 0xe0, 0xe8, 0xdd, 0xe4, 0xe0, 0xd9, 0x0, 0xe8, 0xd9, 0xe7, 0xe8, 0xe7, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It doesn\u2019t look like there\u2019s anything\u0147new for your Dream Dex, but that\u2019s\u0147okay! It\u2019s important to confirm\u0147research results with multiple tests!\u019e"}, "DIA_SEND_FRIEND_KANTO": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0x0, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0x0, 0xe3, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xe3, 0xe2, 0x0, 0xcd, 0xd9, 0xea, 0xd9, 0xe2, 0x0, 0xc3, 0xe7, 0xe0, 0xd5, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up! They live just south of\u0147the Pok\u00e9mon center on Seven Island!\u019e"}, "DIA_SEND_FRIEND_HOENN_RS": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xc7, 0xe3, 0xe7, 0xe7, 0xd8, 0xd9, 0xd9, 0xe4, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up!\u023cThey live just southeast of the\u0147Pok\u00e9mon center in Mossdeep City!\u019e"}, "DIA_SEND_FRIEND_HOENN_E": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xcd, 0xe3, 0xe3, 0xe8, 0xe3, 0xe4, 0xe3, 0xe0, 0xdd, 0xe7, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up!\u023cThey live just southeast of the\u0147Pok\u00e9mon center in Sootopolis City!\u019e"}, "DIA_THANK": {"bytes": "0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xfe, 0xd1, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xb8, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Thank you so much for your help!\u0147Whenever you want to transfer more\u0147Pok\u00e9mon, just let me know! See you\u0147around!\u019e"}, "DIA_GET_MON": {"bytes": "0xe9, 0xe2, 0xe9, 0xe7, 0xd9, 0xd8, 0xb8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "unused, will be removed\u019e"}, "DIA_MG_OTHER_EVENT": {"bytes": "0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xfe, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xad, 0xfe, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xd6, 0xe0, 0xd9, 0xe1, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe3, 0xea, 0xd9, 0xe6, 0xeb, 0xe6, 0xdd, 0xe8, 0xe8, 0xd9, 0xe2, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xad, 0xfb, 0xce, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xe2, 0xe3, 0xeb, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xec, 0xe4, 0xd9, 0xe6, 0xdd, 0xd9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0xae, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi Trainer! It looks like you have a\u0147different event currently loaded.\u0147That\u2019s no problem, but it will be\u0147overwritten if you continue.\u023cTurn off the system now if you want\u0147to experience your current event, but\u0147otherwise-\u019e"}, "DIA_PKMN_TO_COLLECT": {"bytes": "0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe9, 0xe4, 0xad, 0xad, 0xad, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0xb4, 0xe8, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe9, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0xfe, 0xe8, 0xdc, 0xe3, 0xe7, 0xd9, 0x0, 0xe9, 0xe4, 0xad, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi Trainer! It looks like you still\u0147have Pok\u00e9mon to pick up... I can\u2019t\u0147send over new Pok\u00e9mon until you pick\u0147those up.\u023cCome back after you\u2019ve received them!\u019e"}, "DIA_NO_VALID_PKMN": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xea, 0xd5, 0xe0, 0xdd, 0xd8, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xe2, 0xe3, 0xeb, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xd8, 0xe3, 0xe9, 0xd6, 0xe0, 0xd9, 0x0, 0xd7, 0xdc, 0xd9, 0xd7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xdd, 0xe8, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry Trainer, it doesn\u2019t look like\u0147you have any valid Pok\u00e9mon in your\u0147current box right now.\u023cGo double check your current box and\u0147we can give it another shot!\u019e"}, "DIA_ASK_QUEST": {"bytes": "0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xbc, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xb8, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd5, 0xe7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0x0, 0xda, 0xd9, 0xeb, 0x0, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi trainer! Before we begin, I need\u0147to ask you a few questions.\u019e"}, "DIA_WHAT_GAME_TRANS": {"bytes": "0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xac, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "And which Game Boy Pok\u00e9mon game are\u0147you transferring from?\u019e"}, "DIA_WHAT_LANG_TRANS": {"bytes": "0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xac, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "What language is the Game Boy Pok\u00e9mon\u0147game that you\u2019re transferring from?\u019e"}, "DIA_NO_GB_ROM": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xe7, 0xe3, 0xe6, 0xe6, 0xed, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xea, 0xd9, 0xe6, 0xe7, 0xdd, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m sorry, but that version in that\u0147language is not currently supported.\u019e"}, "DIA_IN_BOX": {"bytes": "0xbb, 0xe0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0xad, 0xfb, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xd9, 0xe1, 0xd6, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xd5, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe7, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xbd, 0xbb, 0xc8, 0xc8, 0xc9, 0xce, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xad, 0xfb, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xe3, 0xe6, 0xfe, 0xe7, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Alright! Let\u2019s take a look at the\u0147Pok\u00e9mon that will be transfered.\u023cPlease remember, once a Pok\u00e9mon is\u0147transfered, it CANNOT be returned to\u0147the Game Boy Game Pak.\u023cSelect confirm once you\u2019re ready, or\u0147select cancel if you want to keep the\u0147Pok\u00e9mon on your Game Boy Game Pak.\u019e"}, "DIA_MYTHIC_CONVERT": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0x0, 0xe6, 0xd5, 0xe6, 0xd9, 0xfe, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xab, 0x0, 0xbe, 0xe9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xe6, 0xd5, 0xe6, 0xdd, 0xe8, 0xed, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xea, 0xd9, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xad, 0xfb, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xd8, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0xb4, 0xe0, 0xe0, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xd9, 0xe8, 0xfe, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xb8, 0x0, 0xc9, 0xce, 0xb8, 0x0, 0xce, 0xc3, 0xbe, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xcd, 0xdc, 0xdd, 0xe2, 0xdd, 0xe2, 0xd9, 0xe7, 0xe7, 0xad, 0xfb, 0xc9, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe0, 0xd9, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe7, 0x0, 0xdd, 0xe7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xdb, 0xe9, 0xd5, 0xe6, 0xd9, 0xe2, 0xe8, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xda, 0xe9, 0xe8, 0xe9, 0xe6, 0xd9, 0xad, 0x0, 0xbe, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xac, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd5, 0xe4, 0xe4, 0xe0, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd6, 0xe3, 0xec, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like you have a rare\u0147Mythical Pok\u00e9mon! Due to their\u0147rarity, it seems they\u2019ve overloaded\u0147the machine.\u023cI can stablize them if you\u2019d like,\u0147but it\u2019ll change some things like met\u0147location, OT, TID, and Shininess.\u023cOtherwise I can leave them as is, but\u0147there\u2019s no guarentee that they\u2019ll be\u0147transferrable in the future. Do you\u0147want me to stablize them?\u023cThis will apply to all of the\u0147Mythical Pok\u00e9mon currently in your\u0147box.\u019e"}, "DIA_CANCEL": {"bytes": "0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0xab, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xdd, 0xda, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "No worries! Feel free to come back if\u0147you change your mind! See you around!\u019e"}, "DIA_SOME_INVALID_PKMN": {"bytes": "0xc3, 0x0, 0xe7, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0xad, 0xfb, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xe3, 0xe0, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe8, 0xd9, 0xe1, 0xe7, 0x0, 0xe3, 0xe6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xdd, 0xd9, 0xd8, 0xfe, 0xdd, 0xe2, 0xd7, 0xe3, 0xe6, 0xe6, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0x0, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0x0, 0xe9, 0xe2, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0xfe, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0xad, 0xfb, 0xce, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xda, 0xdd, 0xe2, 0xd9, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I see there is at least one Pok\u00e9mon\u0147that cannot be transferred from your\u0147current box.\u023cPok\u00e9mon holding items or modified\u0147incorrectly through unintended means\u0147cannot be transferred.\u023cThe other Pok\u00e9mon will transfer just\u0147fine though!\u019e"}, "DIA_MENU_BACK": {"bytes": "0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0xab, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xfe, 0xd5, 0xe2, 0xed, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "No worries! Feel free to come back\u0147any time!\u019e"}, "DIA_IS_MISSINGNO": {"bytes": "0xad, 0xad, 0xad, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xad, 0xad, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0x0, 0xd6, 0xd9, 0x0, 0xdb, 0xe6, 0xd5, 0xe4, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0xb8, 0x0, 0xe7, 0xe3, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "... It seems like one of your Pok\u00e9mon\u0147is messing with the machine... It\u0147looks to only be graphical though, so\u0147we can continue!\u019e"}, "DIA_ERROR_COLOSSEUM": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd7, 0xe3, 0xe0, 0xe3, 0xe7, 0xe7, 0xd9, 0xe9, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0xfe, 0xe6, 0xe3, 0xe3, 0xe1, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like you went to the\u0147colosseum instead of the trading\u0147room! Let\u2019s try that again!\u019e"}, "DIA_ERROR_COM_ENDED": {"bytes": "0xbd, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0xfe, 0xeb, 0xd5, 0xe7, 0x0, 0xe8, 0xd9, 0xe6, 0xe1, 0xdd, 0xe2, 0xd5, 0xe8, 0xd9, 0xd8, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Communication with the other device\u0147was terminated. Let\u2019s try that again!\u019e"}, "DIA_ERROR_DISCONNECT": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xfe, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xd8, 0xdd, 0xe7, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xd9, 0xd8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like the Game Boy Color link\u0147cable was disconnected... Let\u2019s try\u0147that again!\u019e"}, "DIA_ERROR_TIME_ONE": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0xfe, 0xe3, 0xe9, 0xe8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like the connection timed\u0147out... Let\u2019s try that again!\u019e"}, "DIA_ERROR_TIME_TWO": {"bytes": "0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0xfe, 0xe3, 0xe9, 0xe8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It seems like the connection timed\u0147out... Let\u2019s try that again!\u019e"}, "DIA_WHAT_LANG_EVENT": {"bytes": "0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0xac, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "What language is the Game Boy Pok\u00e9mon\u0147game that you want to send an event\u0147to?\u019e"}, "DIA_WHAT_GAME_EVENT": {"bytes": "0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd8, 0xe3, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xac, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "And which Game Boy Pok\u00e9mon game do\u0147you want to send an event to?\u019e"}, "DIA_K_DEX_NOT_FULL": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xa2, 0xa6, 0xa1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xeb, 0xd9, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, it looks like you\u0147haven\u2019t caught all 150 Pok\u00e9mon from\u0147the Kanto region yet.\u023cGo out and catch them all and then\u0147we\u2019ll be able to send over the event!\u019e"}, "DIA_J_DEX_NOT_FULL": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xaa, 0xaa, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc4, 0xe3, 0xdc, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xeb, 0xd9, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, it looks like you\u0147haven\u2019t caught all 99 new Pok\u00e9mon\u0147from the Johto region yet.\u023cGo out and catch them all and then\u0147we\u2019ll be able to send over the event!\u019e"}}, "RSEFRLG": {"dia_textGreet_rse": {"bytes": "0xd1, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0xb8, 0x0, 0xc3, 0x0, 0xe8, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xe0, 0xd8, 0xfe, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0x0, 0xce, 0xcc, 0xbb, 0xc3, 0xc8, 0xbf, 0xcc, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "When I was young, I traveled the world\u0147as a POK\u00e9MON TRAINER.\u019e"}, "dia_textGreet_frlg": {"bytes": "0xc3, 0x0, 0xe1, 0xd5, 0xed, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xe2, 0xe3, 0xeb, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0xd9, 0xe6, 0xb0, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "I may not look like much now,\u0147but when I was younger\u2026\u019e"}, "dia_textMoveBox_rs": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe9, 0xe2, 0xe0, 0xe3, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd8, 0xe3, 0xe3, 0xe6, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to unlock the\u0147door!\u019e"}, "dia_textMoveBox_frlg": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd6, 0xe3, 0xec, 0xd9, 0xe7, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to move the\u0147boxes!\u019e"}, "dia_textMoveBox_e": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe0, 0xd5, 0xe2, 0xe8, 0xe7, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to move the\u0147plants!\u019e"}, "dia_textWeHere_r": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xc7, 0xbb, 0xd2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leader MAXIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_s": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xbb, 0xcc, 0xbd, 0xc2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leader ARCHIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_frlg": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xc1, 0xc3, 0xc9, 0xd0, 0xbb, 0xc8, 0xc8, 0xc3, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Kanto to find\u0147the leader GIOVANNI.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_e": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0xe7, 0x0, 0xc7, 0xbb, 0xd2, 0xc3, 0xbf, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xcc, 0xbd, 0xc2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leaders MAXIE and ARCHIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textRecieved": {"bytes": "0xfc, 0x1, 0x2, 0xfd, 0x1, 0xb4, 0xcd, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0x0, 0xeb, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c1\u01b2\u00c0\u2019S POK\u00e9MON were sent to\u0147the PC!\u019e"}, "dia_textYouMustBe_first": {"bytes": "0xbb, 0xdc, 0xab, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xfd, 0x1, 0xab, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe8, 0xe3, 0xe0, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd7, 0xe3, 0xe1, 0xdd, 0xe2, 0xdb, 0xad, 0xfb, 0xc9, 0xdc, 0xab, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xab, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0xab, 0xfe, 0xc9, 0xe6, 0xb8, 0x0, 0xe6, 0xd5, 0xe8, 0xdc, 0xd9, 0xe6, 0xb8, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdd, 0xe2, 0xe8, 0xe6, 0xe3, 0xd8, 0xe9, 0xd7, 0xd9, 0x0, 0xe1, 0xed, 0xe7, 0xd9, 0xe0, 0xda, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "Ah! You must be \u01b2\u00c0! I was\u0147told you\u2019d be coming.\u023cOh! I still wear my disguise! Pardon!\u0147Or, rather, let me introduce myself.\u019e"}, "dia_textYouMustBe_second": {"bytes": "0xbb, 0xdc, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0x0, 0xd1, 0xd9, 0xe0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xab, 0x0, 0xc1, 0xe3, 0xe3, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xe7, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xfb, 0xc9, 0xdc, 0xab, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xab, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "Ah, \u01b2\u00c0! Welcome back! Good to\u0147see you again!\u023cOh! I still wear my disguise! Pardon!\u019e"}, "dia_textIAm_first": {"bytes": "0xfc, 0x1, 0x8, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xd5, 0x0, 0xdb, 0xe0, 0xe3, 0xd6, 0xd9, 0xae, 0xe8, 0xe6, 0xe3, 0xe8, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd9, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc3, 0xe2, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xe0, 0xdd, 0xd7, 0xd9, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb0, 0x0, 0xfa, 0xbb, 0xdc, 0xb8, 0x0, 0xe2, 0xe3, 0xb8, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0x0, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0xfe, 0xe2, 0xd5, 0xe1, 0xd9, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbI am a globe-trotting elite of the\u0147International Police.\u023cMy name\u2026 \u015eAh, no, I shall inform you of my code\u0147name only.\u023cMy code name, it is LOOKER!\u019e"}, "dia_textIAm_second": {"bytes": "0xfc, 0x1, 0x8, 0xc3, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc3, 0xb8, 0x0, 0xdb, 0xe0, 0xe3, 0xd6, 0xd9, 0xae, 0xe8, 0xe6, 0xe3, 0xe8, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd9, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc3, 0xe2, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xe0, 0xdd, 0xd7, 0xd9, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbIt is I, globe-trotting elite of the\u0147International Police.\u023cMy code name, it is LOOKER!\u019e"}, "dia_textPCConvo": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbb, 0xdc, 0xb8, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0x0, 0xc3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xdd, 0xe8, 0xfe, 0xfd, 0x1, 0x0, 0xdc, 0xd5, 0xe7, 0x0, 0xd5, 0xe6, 0xe6, 0xdd, 0xea, 0xd9, 0xd8, 0xac, 0xfb, 0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0xe2, 0xd8, 0xd9, 0xd9, 0xd8, 0xab, 0x0, 0xce, 0xdc, 0xd9, 0xed, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0xab, 0xfb, 0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbf, 0xec, 0xd7, 0xd9, 0xe0, 0xe0, 0xd9, 0xe2, 0xe8, 0xab, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xfe, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe1, 0xd9, 0xe2, 0xe8, 0xd5, 0xe6, 0xdd, 0xe0, 0xed, 0xb0, 0x0, 0xe7, 0xe8, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: Ah, LOOKER! I take it\u0147\u01b2\u00c0 has arrived?\u023c\u0206\u00c0\u00cbLOOKER: Indeed! They\u2019re ready to\u0147receive their POK\u00e9MON!\u023c\u0206\u00c0\u00c9FENNEL: Excellent! I\u2019ll send them\u0147over momentarily\u2026 stand by!\u019e"}, "dia_textPCThanks": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xbd, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xab, 0xfb, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: It looks like everything was\u0147sent to your PC successfully!\u023cThank you both for your help!\u019e"}, "dia_textThank": {"bytes": "0xfc, 0x1, 0x8, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xe8, 0xe3, 0xe4, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xd6, 0xed, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0xfb, 0xc3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe0, 0xe0, 0x0, 0xd9, 0xec, 0xd7, 0xe9, 0xe7, 0xd9, 0x0, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xad, 0x0, 0xfa, 0xcf, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xe3, 0xe9, 0xe6, 0x0, 0xe4, 0xd5, 0xe8, 0xdc, 0xe7, 0x0, 0xd7, 0xe6, 0xe3, 0xe7, 0xe7, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbThanks for stopping by, \u01b2\u00c0!\u023cIf you\u2019ll excuse me, I must return to\u0147my disguise. \u015eUntil our paths cross again!\u019e"}, "dia_textPCFull": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0x0, 0xdd, 0xe7, 0x0, 0xda, 0xe9, 0xe0, 0xe0, 0xab, 0xfb, 0xc1, 0xe3, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: It seems like the PC is full!\u023cGo make some room, and I can send over\u0147the rest of your POK\u00e9MON.\u019e"}, "dia_textLookerFull": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xcd, 0xe4, 0xd9, 0xd5, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0xfe, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0xfb, 0xc3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xed, 0xfe, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: Speak to me again after\u0147you\u2019ve made room, \u01b2\u00c0!\u023cIn the meantime, I will return to my\u0147disguise.\u019e"}}, "GB": {"sending_text": {"bytes": "SENDING DATA", "numLines": 0, "pixelsPerChar": "Default", "pixelsInLine": 0, "includeBoxBreaks": false}, "prof_name": {"bytes": "FENNEL", "numLines": 0, "pixelsPerChar": "Default", "pixelsInLine": 0, "includeBoxBreaks": false}}, "GENERAL": {"option_english": {"bytes": "0xbf, 0xe2, 0xdb, 0xe0, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "English\u019e"}, "option_japanese": {"bytes": "0xc4, 0xd5, 0xe4, 0xd5, 0xe2, 0xd9, 0xe7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Japanese\u019e"}, "option_spanish": {"bytes": "0xcd, 0xe4, 0xd5, 0xe2, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Spanish\u019e"}, "option_french": {"bytes": "0xc0, 0xe6, 0xd9, 0xe2, 0xd7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "French\u019e"}, "option_german": {"bytes": "0xc1, 0xd9, 0xe6, 0xe1, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "German\u019e"}, "option_italian": {"bytes": "0xc3, 0xe8, 0xd5, 0xe0, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Italian\u019e"}, "option_korean": {"bytes": "0xc5, 0xe3, 0xe6, 0xd9, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Korean\u019e"}, "option_green": {"bytes": "0xc1, 0xe6, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Green\u019e"}, "option_red": {"bytes": "0xcc, 0xd9, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Red\u019e"}, "option_blue": {"bytes": "0xbc, 0xe0, 0xe9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Blue\u019e"}, "option_yellow": {"bytes": "0xd3, 0xd9, 0xe0, 0xe0, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Yellow\u019e"}, "option_gold": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Gold\u019e"}, "option_silver": {"bytes": "0xcd, 0xdd, 0xe0, 0xea, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Silver\u019e"}, "option_crystal": {"bytes": "0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Crystal\u019e"}, "option_cancel": {"bytes": "0xbd, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Cancel\u019e"}, "press_start": {"bytes": "0xca, 0xe9, 0xe7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xcd, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xab, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Push the Start Button!\u019e"}, "option_transfer": {"bytes": "0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Transfer Pok\u00e9mon\u019e"}, "option_dreamdex": {"bytes": "0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Dream Dex\u019e"}, "option_credits": {"bytes": "0xbd, 0xe6, 0xd9, 0xd8, 0xdd, 0xe8, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Credits\u019e"}, "intro_first": {"bytes": "0xc2, 0xd9, 0xe0, 0xe0, 0xe3, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0xab, 0xfe, 0xfe, 0xc4, 0xe9, 0xe7, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xeb, 0xe3, 0xe6, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xd5, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0xae, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xd1, 0xc3, 0xc6, 0xc6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xed, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe0, 0xe3, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xd6, 0xd9, 0xe8, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xdd, 0xd8, 0xb8, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd9, 0xe2, 0xde, 0xe3, 0xed, 0xab, 0xfe, 0xfe, 0xae, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 15, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": false, "text": "Hello! Thank you for using Pok\u00e9\u0147Transporter GB!\u0147\u0147Just as a word of caution- Pok\u00e9\u0147Transporter GB WILL modify both the\u0147GameBoy and GameBoy Advance save\u0147files.\u0147\u0147Please note that while Pok\u00e9\u0147Transporter GB is no longer in beta,\u0147save file backups are still\u0147recommended before using. With that\u0147all being said, please enjoy!\u0147\u0147-The Gears of Progress\u019e"}, "intro_legal": {"bytes": "0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe3, 0xda, 0xfe, 0xe0, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd5, 0xe4, 0xe4, 0xe6, 0xd9, 0xd7, 0xdd, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xd5, 0xe2, 0xd7, 0xdc, 0xdd, 0xe7, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xda, 0xdd, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xbb, 0xc6, 0xd1, 0xbb, 0xd3, 0xcd, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0xfe, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0x0, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe1, 0xe9, 0xe7, 0xdd, 0xd7, 0xfe, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xeb, 0xe2, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0x0, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0x0, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0xad, 0xfe, 0xfe, 0xfe, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xff", "numLines": 14, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": false, "text": "Pok\u00e9 Transporter GB was made out of\u0147love and appreciation for the Pokemon\u0147franchise with no profit in mind. It\u0147will ALWAYS be free.\u0147\u0147Please support the original\u0147developers.\u0147\u0147All Pokemon names, sprites, and music\u0147are owned by Nintendo, Creatures Inc,\u0147and GAME FREAK.\u0147\u0147\u0147Press A to continue\u019e"}, "cart_load_error": {"bytes": "0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xad, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xdd, 0xe2, 0xe7, 0xd9, 0xe6, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xea, 0xd9, 0xe0, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff", "numLines": 10, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "The Pok\u00e9mon save file was\u0147not loaded successfully.\u0147Please remove and reinsert\u0147the Game Pak, and then\u0147press the A button.\u0147\u0147Alternatively, press the\u0147Select button to send this\u0147program to another GameBoy\u0147Advance.\u019e"}, "pulled_cart_error": {"bytes": "0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xad, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "The Pok\u00e9mon game was\u0147removed. Please turn off\u0147the system and restart the\u0147program.\u019e"}, "send_multiboot_instructions": {"bytes": "0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xfe, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xdd, 0xe2, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0x0, 0xe1, 0xe3, 0xd8, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xc6, 0xdd, 0xe2, 0xdf, 0xfe, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0xad, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0xe2, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xfe, 0xe8, 0xe3, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff", "numLines": 10, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Please connect this system\u0147to another GameBoy Advance\u0147in Multiboot mode with a\u0147GameBoy Advance Link\u0147Cable.\u0147\u0147Then, press the A button\u0147to begin sending Pok\u00e9\u0147Transporter GB to the\u0147second GameBoy Advance.\u019e"}, "send_multiboot_wait": {"bytes": "0xcd, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0xfe, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0xfe, 0xeb, 0xd5, 0xdd, 0xe8, 0xad, 0xfe, 0xfe, 0xc2, 0xe3, 0xe0, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbc, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xad, 0xff", "numLines": 7, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Sending Pok\u00e9 Transporter\u0147GB to second GameBoy\u0147Advance system. Please\u0147wait.\u0147\u0147Hold the B Button to\u0147cancel.\u019e"}, "send_multiboot_success": {"bytes": "0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xab, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xd5, 0xed, 0xfe, 0xe2, 0xe3, 0xeb, 0x0, 0xe4, 0xe3, 0xeb, 0xd9, 0xe6, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xad, 0xff", "numLines": 7, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "\u0147Pok\u00e9 Transporter GB was\u0147sent successfully! You may\u0147now power off this GameBoy\u0147Advance system.\u019e"}, "send_multiboot_failure": {"bytes": "0xfe, 0xbb, 0xe2, 0x0, 0xd9, 0xe6, 0xe6, 0xe3, 0xe6, 0x0, 0xe3, 0xd7, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0xfe, 0xc1, 0xbc, 0xad, 0x0, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xe6, 0xe9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xfe, 0xe7, 0xd7, 0xe6, 0xd9, 0xd9, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xad, 0xff", "numLines": 7, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "\u0147An error occurred while\u0147sending Pok\u00e9 Transporter\u0147GB. Press the A button to\u0147return to the instructions\u0147screen and try again.\u019e"}, "kanto_name": {"bytes": "0xc5, 0xbb, 0xc8, 0xce, 0xc9, 0xf0, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "KANTO:\u019e"}, "johto_name": {"bytes": "0xc4, 0xc9, 0xc2, 0xce, 0xc9, 0xf0, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "JOHTO:\u019e"}}, "CREDITS": {"credits_page_1": {"bytes": "0xc6, 0xd9, 0xd5, 0xd8, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xf0, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Lead developer:\u0147\u0147The Gears of Progress\u019e"}, "credits_page_2": {"bytes": "0xc6, 0xe3, 0xdb, 0xe3, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xe3, 0xae, 0xdd, 0xd8, 0xd9, 0xd5, 0xe8, 0xe3, 0xe6, 0xf0, 0xfe, 0xfe, 0xae, 0xc4, 0xe3, 0xe1, 0xd9, 0xfe, 0xfe, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xeb, 0xe3, 0xe6, 0xdf, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xc4, 0x0, 0xbc, 0xdd, 0xe6, 0xd8, 0xe1, 0xd5, 0xe2, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Logo and co-ideator:\u0147\u0147-Jome\u0147\u0147Spritework:\u0147\u0147-LJ Birdman\u019e"}, "credits_page_3": {"bytes": "0xc3, 0xd7, 0xe3, 0xe2, 0x0, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xe9, 0xdd, 0xdb, 0xdd, 0xce, 0xc5, 0xc9, 0xfe, 0xae, 0xc1, 0xe9, 0xdd, 0xbb, 0xd6, 0xd9, 0xe0, 0xfe, 0xae, 0xcd, 0xe3, 0xe9, 0xe6, 0xbb, 0xe4, 0xe4, 0xe0, 0xd9, 0xfe, 0x2d, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd5, 0xe6, 0xe8, 0xdd, 0xe7, 0xe8, 0xe7, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xcd, 0xdc, 0xe3, 0xeb, 0xd8, 0xe3, 0xeb, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0x0, 0xbd, 0xe0, 0xd9, 0xd5, 0xe6, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Icon Sprites:\u0147\u0147-LuigiTKO\u0147-GuiAbel\u0147-SourApple\u0147& the artists from Pok\u00e9mon\u0147Showdown and Crystal Clear\u019e"}, "credits_page_4": {"bytes": "0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xe6, 0xd6, 0xdd, 0xe8, 0xe6, 0xd5, 0xe6, 0xed, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0xfe, 0xbf, 0xec, 0xd9, 0xd7, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xce, 0xdd, 0xe1, 0xe3, 0xd0, 0xc7, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Remote and Arbitrary Code\u0147Execution assistance:\u0147\u0147-TimoVM\u019e"}, "credits_page_5": {"bytes": "0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xe6, 0xdd, 0xe0, 0xd9, 0xed, 0xdf, 0xa7, 0xa5, 0xfe, 0xae, 0xcd, 0xdc, 0xd5, 0xe3, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Development assistance:\u0147\u0147-im a blisy\u0147-rileyk64\u0147-Shao\u019e"}, "credits_page_6": {"bytes": "0xcd, 0xe4, 0xd5, 0xd7, 0xd9, 0x0, 0xc9, 0xe4, 0xe8, 0xdd, 0xe1, 0xdd, 0xee, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xf0, 0xfe, 0xfe, 0xae, 0xd9, 0xd5, 0xe7, 0xed, 0xd5, 0xe7, 0xe4, 0xdd, 0xa4, 0xa2, 0xa5, 0xfe, 0xfe, 0xc6, 0xe3, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xcc, 0xc9, 0xc7, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0xfe, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0x0, 0xda, 0xe9, 0xe2, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xf0, 0xfe, 0xfe, 0xae, 0xe6, 0xdd, 0xe7, 0xdd, 0xe2, 0xdb, 0xca, 0xdc, 0xdd, 0xe0, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Space Optimization:\u0147\u0147-easyaspi314\u0147\u0147Loader ROM and Remote\u0147Multiboot functionality:\u0147\u0147-risingPhil\u019e"}, "credits_page_7": {"bytes": "0xbc, 0xe9, 0xdd, 0xe0, 0xe8, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xbe, 0xd9, 0xea, 0xdf, 0xdd, 0xe8, 0xca, 0xe6, 0xe3, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xce, 0xe3, 0xe2, 0xd7, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xc1, 0xbc, 0xbb, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Built using:\u0147\u0147\u0147-DevkitPro\u0147-LibTonc\u0147-LibGBA\u019e"}, "credits_page_8": {"bytes": "0xc3, 0xe2, 0xe7, 0xe4, 0xdd, 0xe6, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xe7, 0x0, 0xe3, 0xda, 0xf0, 0xfe, 0xfe, 0xae, 0xc1, 0xe3, 0xe4, 0xe4, 0xdd, 0xd9, 0xe6, 0xfe, 0xae, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xcc, 0xbf, 0xce, 0xc3, 0xcc, 0xbf, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Inspired by the works of:\u0147\u0147-Goppier\u0147-Lorenzooone\u0147-im a blisy\u0147-RETIRE\u019e"}, "credits_page_9": {"bytes": "0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xe7, 0x0, 0xe9, 0xe7, 0xd9, 0xd8, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xae, 0xca, 0xc5, 0xc2, 0xd9, 0xd2, 0xfe, 0xae, 0xd1, 0xbd, 0xa4, 0xce, 0xe3, 0xe3, 0xe0, 0xfe, 0xae, 0xcf, 0xe7, 0xd9, 0xe2, 0xe8, 0xdd, 0xfe, 0xae, 0xcd, 0xd5, 0xe4, 0xe4, 0xed, 0xc7, 0xdd, 0xd8, 0xce, 0xe3, 0xbb, 0xc1, 0xbc, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Programs used:\u0147\u0147\u0147-HexManiacAdvance\u0147-PKHeX\u0147-WC3Tool\u0147-Usenti\u0147-SappyMidToAGB\u019e"}, "credits_page_10": {"bytes": "0xc9, 0xe4, 0xd9, 0xe2, 0x0, 0xcd, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xc6, 0xdd, 0xd6, 0xe6, 0xd5, 0xe6, 0xdd, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xe0, 0xdd, 0xd6, 0xe8, 0xe3, 0xe2, 0xd7, 0xae, 0xd9, 0xec, 0xd5, 0xe1, 0xe4, 0xe0, 0xd9, 0xe7, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0xae, 0xdb, 0xd6, 0xd5, 0xae, 0xe0, 0xdd, 0xe2, 0xdf, 0xae, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xae, 0xd5, 0xeb, 0xd9, 0xe7, 0xe3, 0xe1, 0xd9, 0xae, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0xae, 0xd5, 0xe6, 0xd8, 0xe9, 0xdd, 0xe2, 0xe3, 0xae, 0xe4, 0xe3, 0xdf, 0xd9, 0xae, 0xdb, 0xd9, 0xe2, 0xa3, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Open Source Code and\u0147Libraries:\u0147\u0147-libtonc-examples\u0147-PokemonGen3toGenX\u0147-gba-link-connection\u0147-awesome-gbadev\u0147-arduino-poke-gen2\u019e"}, "credits_page_11": {"bytes": "0xcc, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xd5, 0xe6, 0xe1, 0xae, 0xd8, 0xe3, 0xd7, 0xe7, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0xfe, 0xc0, 0xe9, 0xe0, 0xe0, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xe7, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe3, 0xe9, 0xe2, 0xd8, 0x0, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xb4, 0xe7, 0x0, 0xc1, 0xdd, 0xe8, 0xc2, 0xe9, 0xd6, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Research resources:\u0147\u0147-arm-docs\u0147-PokemonGen3toGenX\u0147\u0147Full links can be found on\u0147this program\u2019s GitHub\u019e"}, "credits_page_12": {"bytes": "0xcc, 0xc9, 0xc7, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xd8, 0xd9, 0xd7, 0xe3, 0xe1, 0xe4, 0xdd, 0xe0, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0x0, 0xd7, 0xe6, 0xd9, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xcc, 0xbf, 0xce, 0x0, 0xe8, 0xd9, 0xd5, 0xe1, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "ROM data obtained from\u0147decompilations created by\u0147the PRET team\u019e"}, "credits_page_13": {"bytes": "0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0xf0, 0xfe, 0xfe, 0xae, 0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe4, 0xd9, 0xd8, 0xdd, 0xd5, 0xfe, 0xae, 0xcd, 0xd9, 0xe6, 0xd9, 0xd6, 0xdd, 0xdd, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xbb, 0xca, 0xc3, 0xad, 0xd7, 0xe3, 0xe1, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Pok\u00e9mon data obtained\u0147from:\u0147\u0147-Bulbapedia\u0147-Serebii\u0147-PokeAPI.com\u019e"}, "credits_page_14": {"bytes": "0xbe, 0xdd, 0xe7, 0xd7, 0xe3, 0xe6, 0xd8, 0x0, 0xd7, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xe8, 0xed, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0x0, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0xfe, 0xae, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0xae, 0xe4, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Discord community\u0147assistance:\u0147\u0147-Hex Maniac Advance\u0147Development\u0147-gbadev\u0147-pret\u019e"}, "credits_page_15": {"bytes": "0xd1, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc7, 0xd5, 0xd8, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Writing assistance:\u0147\u0147\u0147-Mad\u019e"}, "credits_page_16": {"bytes": "0xbb, 0xe2, 0x0, 0xdd, 0xe1, 0xe1, 0xd9, 0xe2, 0xe7, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0x2d, 0xfe, 0xeb, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe1, 0xb8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xe3, 0xe9, 0xe0, 0xd8, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0xad, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "An immense thanks to\u0147Lorenzooone for their\u0147assistance in reading &\u0147writing save data. Without\u0147them, this project would\u0147not have been possible.\u019e"}, "credits_page_17": {"bytes": "0xcd, 0xe4, 0xd9, 0xd7, 0xdd, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xbf, 0xe2, 0xe2, 0xb8, 0xfe, 0xe6, 0xe3, 0xdf, 0xe9, 0xb8, 0x0, 0xcd, 0xe0, 0xd9, 0xd9, 0xe4, 0xed, 0xb8, 0x0, 0xbf, 0xee, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xe6, 0xd5, 0xdc, 0xe8, 0xe3, 0xe2, 0xdd, 0xe2, 0xb8, 0x0, 0xbc, 0xd5, 0xe7, 0xd5, 0xd6, 0xdd, 0xb8, 0x0, 0xc7, 0xd5, 0xd8, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe3, 0xe2, 0xd9, 0x0, 0xeb, 0xdc, 0xe3, 0x0, 0xdc, 0xd5, 0xe7, 0xfe, 0xe0, 0xdd, 0xe7, 0xe8, 0xd9, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xd5, 0xd6, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe1, 0xe3, 0xe2, 0xe8, 0xdc, 0xe7, 0xab, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Special thanks to Enn,\u0147roku, Sleepy, Eza,\u0147sarahtonin, Basabi, Mad,\u0147and everyone who has\u0147listened to me talk about\u0147this for months!\u019e"}, "credits_page_18": {"bytes": "0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0xfe, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xe6, 0xd9, 0xe0, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xd7, 0xe3, 0xe4, 0xed, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0xfe, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xad, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0xfe, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0x0, 0xc3, 0xe2, 0xd7, 0xad, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "All Pok\u00e9mon names,\u0147sprites, and names of\u0147related resources are\u0147copyright Nintendo,\u0147Creatures Inc., and GAME\u0147FREAK Inc.\u019e"}, "credits_page_19": {"bytes": "0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0xfe, 0xd9, 0xe2, 0xd8, 0xe3, 0xe6, 0xe7, 0xd9, 0xd8, 0x0, 0xe3, 0xe6, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xc0, 0xe6, 0xd9, 0xd5, 0xdf, 0xba, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "This project is not\u0147endorsed or supported by\u0147GameFreak/Nintendo.\u0147\u0147Please support the\u0147original developers.\u019e"}}, "PKMN_NAMES": {"0": {"bytes": "0xc7, 0xdd, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0xc8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "MissingNo\u019e"}, "1": {"bytes": "0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bulbasaur\u019e"}, "2": {"bytes": "0xc3, 0xea, 0xed, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ivysaur\u019e"}, "3": {"bytes": "0xd0, 0xd9, 0xe2, 0xe9, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venusaur\u019e"}, "4": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xe1, 0xd5, 0xe2, 0xd8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charmander\u019e"}, "5": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xe1, 0xd9, 0xe0, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charmeleon\u019e"}, "6": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xdd, 0xee, 0xd5, 0xe6, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charizard\u019e"}, "7": {"bytes": "0xcd, 0xe5, 0xe9, 0xdd, 0xe6, 0xe8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Squirtle\u019e"}, "8": {"bytes": "0xd1, 0xd5, 0xe6, 0xe8, 0xe3, 0xe6, 0xe8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wartortle\u019e"}, "9": {"bytes": "0xbc, 0xe0, 0xd5, 0xe7, 0xe8, 0xe3, 0xdd, 0xe7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Blastoise\u019e"}, "10": {"bytes": "0xbd, 0xd5, 0xe8, 0xd9, 0xe6, 0xe4, 0xdd, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Caterpie\u019e"}, "11": {"bytes": "0xc7, 0xd9, 0xe8, 0xd5, 0xe4, 0xe3, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Metapod\u019e"}, "12": {"bytes": "0xbc, 0xe9, 0xe8, 0xe8, 0xd9, 0xe6, 0xda, 0xe6, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Butterfree\u019e"}, "13": {"bytes": "0xd1, 0xd9, 0xd9, 0xd8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weedle\u019e"}, "14": {"bytes": "0xc5, 0xd5, 0xdf, 0xe9, 0xe2, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kakuna\u019e"}, "15": {"bytes": "0xbc, 0xd9, 0xd9, 0xd8, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Beedrill\u019e"}, "16": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgey\u019e"}, "17": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xe3, 0xe8, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgeotto\u019e"}, "18": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xe3, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgeot\u019e"}, "19": {"bytes": "0xcc, 0xd5, 0xe8, 0xe8, 0xd5, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rattata\u019e"}, "20": {"bytes": "0xcc, 0xd5, 0xe8, 0xdd, 0xd7, 0xd5, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raticate\u019e"}, "21": {"bytes": "0xcd, 0xe4, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Spearow\u019e"}, "22": {"bytes": "0xc0, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Fearow\u019e"}, "23": {"bytes": "0xbf, 0xdf, 0xd5, 0xe2, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ekans\u019e"}, "24": {"bytes": "0xbb, 0xe6, 0xd6, 0xe3, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Arbok\u019e"}, "25": {"bytes": "0xca, 0xdd, 0xdf, 0xd5, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pikachu\u019e"}, "26": {"bytes": "0xcc, 0xd5, 0xdd, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raichu\u019e"}, "27": {"bytes": "0xcd, 0xd5, 0xe2, 0xd8, 0xe7, 0xdc, 0xe6, 0xd9, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sandshrew\u019e"}, "28": {"bytes": "0xcd, 0xd5, 0xe2, 0xd8, 0xe7, 0xe0, 0xd5, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sandslash\u019e"}, "29": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xd5, 0xe2, 0xb6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoran\u2640\u019e"}, "30": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xdd, 0xe2, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidorina\u019e"}, "31": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe5, 0xe9, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoqueen\u019e"}, "32": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xd5, 0xe2, 0xb5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoran\u2642\u019e"}, "33": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xdd, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidorino\u019e"}, "34": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoking\u019e"}, "35": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xd5, 0xdd, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Clefairy\u019e"}, "36": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xd5, 0xd6, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Clefable\u019e"}, "37": {"bytes": "0xd0, 0xe9, 0xe0, 0xe4, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vulpix\u019e"}, "38": {"bytes": "0xc8, 0xdd, 0xe2, 0xd9, 0xe8, 0xd5, 0xe0, 0xd9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ninetales\u019e"}, "39": {"bytes": "0xc4, 0xdd, 0xdb, 0xdb, 0xe0, 0xed, 0xe4, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jigglypuff\u019e"}, "40": {"bytes": "0xd1, 0xdd, 0xdb, 0xdb, 0xe0, 0xed, 0xe8, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wigglytuff\u019e"}, "41": {"bytes": "0xd4, 0xe9, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Zubat\u019e"}, "42": {"bytes": "0xc1, 0xe3, 0xe0, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golbat\u019e"}, "43": {"bytes": "0xc9, 0xd8, 0xd8, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Oddish\u019e"}, "44": {"bytes": "0xc1, 0xe0, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gloom\u019e"}, "45": {"bytes": "0xd0, 0xdd, 0xe0, 0xd9, 0xe4, 0xe0, 0xe9, 0xe1, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vileplume\u019e"}, "46": {"bytes": "0xca, 0xd5, 0xe6, 0xd5, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Paras\u019e"}, "47": {"bytes": "0xca, 0xd5, 0xe6, 0xd5, 0xe7, 0xd9, 0xd7, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Parasect\u019e"}, "48": {"bytes": "0xd0, 0xd9, 0xe2, 0xe3, 0xe2, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venonat\u019e"}, "49": {"bytes": "0xd0, 0xd9, 0xe2, 0xe3, 0xe1, 0xe3, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venomoth\u019e"}, "50": {"bytes": "0xbe, 0xdd, 0xdb, 0xe0, 0xd9, 0xe8, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Diglett\u019e"}, "51": {"bytes": "0xbe, 0xe9, 0xdb, 0xe8, 0xe6, 0xdd, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dugtrio\u019e"}, "52": {"bytes": "0xc7, 0xd9, 0xe3, 0xeb, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Meowth\u019e"}, "53": {"bytes": "0xca, 0xd9, 0xe6, 0xe7, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Persian\u019e"}, "54": {"bytes": "0xca, 0xe7, 0xed, 0xd8, 0xe9, 0xd7, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Psyduck\u019e"}, "55": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xe9, 0xd7, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golduck\u019e"}, "56": {"bytes": "0xc7, 0xd5, 0xe2, 0xdf, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mankey\u019e"}, "57": {"bytes": "0xca, 0xe6, 0xdd, 0xe1, 0xd9, 0xd5, 0xe4, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Primeape\u019e"}, "58": {"bytes": "0xc1, 0xe6, 0xe3, 0xeb, 0xe0, 0xdd, 0xe8, 0xdc, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Growlithe\u019e"}, "59": {"bytes": "0xbb, 0xe6, 0xd7, 0xd5, 0xe2, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Arcanine\u019e"}, "60": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xd5, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwag\u019e"}, "61": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xdc, 0xdd, 0xe6, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwhirl\u019e"}, "62": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xe6, 0xd5, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwrath\u019e"}, "63": {"bytes": "0xbb, 0xd6, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Abra\u019e"}, "64": {"bytes": "0xc5, 0xd5, 0xd8, 0xd5, 0xd6, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kadabra\u019e"}, "65": {"bytes": "0xbb, 0xe0, 0xd5, 0xdf, 0xd5, 0xee, 0xd5, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Alakazam\u019e"}, "66": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machop\u019e"}, "67": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xdf, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machoke\u019e"}, "68": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xd5, 0xe1, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machamp\u019e"}, "69": {"bytes": "0xbc, 0xd9, 0xe0, 0xe0, 0xe7, 0xe4, 0xe6, 0xe3, 0xe9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bellsprout\u019e"}, "70": {"bytes": "0xd1, 0xd9, 0xd9, 0xe4, 0xdd, 0xe2, 0xd6, 0xd9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weepinbell\u019e"}, "71": {"bytes": "0xd0, 0xdd, 0xd7, 0xe8, 0xe6, 0xd9, 0xd9, 0xd6, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Victreebel\u019e"}, "72": {"bytes": "0xce, 0xd9, 0xe2, 0xe8, 0xd5, 0xd7, 0xe3, 0xe3, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tentacool\u019e"}, "73": {"bytes": "0xce, 0xd9, 0xe2, 0xe8, 0xd5, 0xd7, 0xe6, 0xe9, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tentacruel\u019e"}, "74": {"bytes": "0xc1, 0xd9, 0xe3, 0xd8, 0xe9, 0xd8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Geodude\u019e"}, "75": {"bytes": "0xc1, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Graveler\u019e"}, "76": {"bytes": "0xc1, 0xe3, 0xe0, 0xd9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golem\u019e"}, "77": {"bytes": "0xca, 0xe3, 0xe2, 0xed, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ponyta\u019e"}, "78": {"bytes": "0xcc, 0xd5, 0xe4, 0xdd, 0xd8, 0xd5, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rapidash\u019e"}, "79": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xe4, 0xe3, 0xdf, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowpoke\u019e"}, "80": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xd6, 0xe6, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowbro\u019e"}, "81": {"bytes": "0xc7, 0xd5, 0xdb, 0xe2, 0xd9, 0xe1, 0xdd, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magnemite\u019e"}, "82": {"bytes": "0xc7, 0xd5, 0xdb, 0xe2, 0xd9, 0xe8, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magneton\u019e"}, "83": {"bytes": "0xc0, 0xd5, 0xe6, 0xda, 0xd9, 0xe8, 0xd7, 0xdc, 0xb4, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Farfetch\u2019d\u019e"}, "84": {"bytes": "0xbe, 0xe3, 0xd8, 0xe9, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Doduo\u019e"}, "85": {"bytes": "0xbe, 0xe3, 0xd8, 0xe6, 0xdd, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dodrio\u019e"}, "86": {"bytes": "0xcd, 0xd9, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seel\u019e"}, "87": {"bytes": "0xbe, 0xd9, 0xeb, 0xdb, 0xe3, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dewgong\u019e"}, "88": {"bytes": "0xc1, 0xe6, 0xdd, 0xe1, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Grimer\u019e"}, "89": {"bytes": "0xc7, 0xe9, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Muk\u019e"}, "90": {"bytes": "0xcd, 0xdc, 0xd9, 0xe0, 0xe0, 0xd8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Shellder\u019e"}, "91": {"bytes": "0xbd, 0xe0, 0xe3, 0xed, 0xe7, 0xe8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cloyster\u019e"}, "92": {"bytes": "0xc1, 0xd5, 0xe7, 0xe8, 0xe0, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gastly\u019e"}, "93": {"bytes": "0xc2, 0xd5, 0xe9, 0xe2, 0xe8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Haunter\u019e"}, "94": {"bytes": "0xc1, 0xd9, 0xe2, 0xdb, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gengar\u019e"}, "95": {"bytes": "0xc9, 0xe2, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Onix\u019e"}, "96": {"bytes": "0xbe, 0xe6, 0xe3, 0xeb, 0xee, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Drowzee\u019e"}, "97": {"bytes": "0xc2, 0xed, 0xe4, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hypno\u019e"}, "98": {"bytes": "0xc5, 0xe6, 0xd5, 0xd6, 0xd6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Krabby\u019e"}, "99": {"bytes": "0xc5, 0xdd, 0xe2, 0xdb, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kingler\u019e"}, "100": {"bytes": "0xd0, 0xe3, 0xe0, 0xe8, 0xe3, 0xe6, 0xd6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Voltorb\u019e"}, "101": {"bytes": "0xbf, 0xe0, 0xd9, 0xd7, 0xe8, 0xe6, 0xe3, 0xd8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Electrode\u019e"}, "102": {"bytes": "0xbf, 0xec, 0xd9, 0xdb, 0xdb, 0xd7, 0xe9, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Exeggcute\u019e"}, "103": {"bytes": "0xbf, 0xec, 0xd9, 0xdb, 0xdb, 0xe9, 0xe8, 0xe3, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Exeggutor\u019e"}, "104": {"bytes": "0xbd, 0xe9, 0xd6, 0xe3, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cubone\u019e"}, "105": {"bytes": "0xc7, 0xd5, 0xe6, 0xe3, 0xeb, 0xd5, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Marowak\u019e"}, "106": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xe0, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmonlee\u019e"}, "107": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xd7, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmonchan\u019e"}, "108": {"bytes": "0xc6, 0xdd, 0xd7, 0xdf, 0xdd, 0xe8, 0xe9, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lickitung\u019e"}, "109": {"bytes": "0xc5, 0xe3, 0xda, 0xda, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Koffing\u019e"}, "110": {"bytes": "0xd1, 0xd9, 0xd9, 0xee, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weezing\u019e"}, "111": {"bytes": "0xcc, 0xdc, 0xed, 0xdc, 0xe3, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rhyhorn\u019e"}, "112": {"bytes": "0xcc, 0xdc, 0xed, 0xd8, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rhydon\u019e"}, "113": {"bytes": "0xbd, 0xdc, 0xd5, 0xe2, 0xe7, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chansey\u019e"}, "114": {"bytes": "0xce, 0xd5, 0xe2, 0xdb, 0xd9, 0xe0, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tangela\u019e"}, "115": {"bytes": "0xc5, 0xd5, 0xe2, 0xdb, 0xd5, 0xe7, 0xdf, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kangaskhan\u019e"}, "116": {"bytes": "0xc2, 0xe3, 0xe6, 0xe7, 0xd9, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Horsea\u019e"}, "117": {"bytes": "0xcd, 0xd9, 0xd5, 0xd8, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seadra\u019e"}, "118": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Goldeen\u019e"}, "119": {"bytes": "0xcd, 0xd9, 0xd5, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seaking\u019e"}, "120": {"bytes": "0xcd, 0xe8, 0xd5, 0xe6, 0xed, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Staryu\u019e"}, "121": {"bytes": "0xcd, 0xe8, 0xd5, 0xe6, 0xe1, 0xdd, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Starmie\u019e"}, "122": {"bytes": "0xc7, 0xe6, 0xad, 0x0, 0xc7, 0xdd, 0xe1, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mr. Mime\u019e"}, "123": {"bytes": "0xcd, 0xd7, 0xed, 0xe8, 0xdc, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Scyther\u019e"}, "124": {"bytes": "0xc4, 0xed, 0xe2, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jynx\u019e"}, "125": {"bytes": "0xbf, 0xe0, 0xd9, 0xd7, 0xe8, 0xd5, 0xd6, 0xe9, 0xee, 0xee, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Electabuzz\u019e"}, "126": {"bytes": "0xc7, 0xd5, 0xdb, 0xe1, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magmar\u019e"}, "127": {"bytes": "0xca, 0xdd, 0xe2, 0xe7, 0xdd, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pinsir\u019e"}, "128": {"bytes": "0xce, 0xd5, 0xe9, 0xe6, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tauros\u019e"}, "129": {"bytes": "0xc7, 0xd5, 0xdb, 0xdd, 0xdf, 0xd5, 0xe6, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magikarp\u019e"}, "130": {"bytes": "0xc1, 0xed, 0xd5, 0xe6, 0xd5, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gyarados\u019e"}, "131": {"bytes": "0xc6, 0xd5, 0xe4, 0xe6, 0xd5, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lapras\u019e"}, "132": {"bytes": "0xbe, 0xdd, 0xe8, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ditto\u019e"}, "133": {"bytes": "0xbf, 0xd9, 0xea, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Eevee\u019e"}, "134": {"bytes": "0xd0, 0xd5, 0xe4, 0xe3, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vaporeon\u019e"}, "135": {"bytes": "0xc4, 0xe3, 0xe0, 0xe8, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jolteon\u019e"}, "136": {"bytes": "0xc0, 0xe0, 0xd5, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Flareon\u019e"}, "137": {"bytes": "0xca, 0xe3, 0xe6, 0xed, 0xdb, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Porygon\u019e"}, "138": {"bytes": "0xc9, 0xe1, 0xd5, 0xe2, 0xed, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Omanyte\u019e"}, "139": {"bytes": "0xc9, 0xe1, 0xd5, 0xe7, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Omastar\u019e"}, "140": {"bytes": "0xc5, 0xd5, 0xd6, 0xe9, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kabuto\u019e"}, "141": {"bytes": "0xc5, 0xd5, 0xd6, 0xe9, 0xe8, 0xe3, 0xe4, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kabutops\u019e"}, "142": {"bytes": "0xbb, 0xd9, 0xe6, 0xe3, 0xd8, 0xd5, 0xd7, 0xe8, 0xed, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Aerodactyl\u019e"}, "143": {"bytes": "0xcd, 0xe2, 0xe3, 0xe6, 0xe0, 0xd5, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Snorlax\u019e"}, "144": {"bytes": "0xbb, 0xe6, 0xe8, 0xdd, 0xd7, 0xe9, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Articuno\u019e"}, "145": {"bytes": "0xd4, 0xd5, 0xe4, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Zapdos\u019e"}, "146": {"bytes": "0xc7, 0xe3, 0xe0, 0xe8, 0xe6, 0xd9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Moltres\u019e"}, "147": {"bytes": "0xbe, 0xe6, 0xd5, 0xe8, 0xdd, 0xe2, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dratini\u019e"}, "148": {"bytes": "0xbe, 0xe6, 0xd5, 0xdb, 0xe3, 0xe2, 0xd5, 0xdd, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dragonair\u019e"}, "149": {"bytes": "0xbe, 0xe6, 0xd5, 0xdb, 0xe3, 0xe2, 0xdd, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dragonite\u019e"}, "150": {"bytes": "0xc7, 0xd9, 0xeb, 0xe8, 0xeb, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mewtwo\u019e"}, "151": {"bytes": "0xc7, 0xd9, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mew\u019e"}, "152": {"bytes": "0xbd, 0xdc, 0xdd, 0xdf, 0xe3, 0xe6, 0xdd, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chikorita\u019e"}, "153": {"bytes": "0xbc, 0xd5, 0xed, 0xe0, 0xd9, 0xd9, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bayleef\u019e"}, "154": {"bytes": "0xc7, 0xd9, 0xdb, 0xd5, 0xe2, 0xdd, 0xe9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Meganium\u019e"}, "155": {"bytes": "0xbd, 0xed, 0xe2, 0xd8, 0xd5, 0xe5, 0xe9, 0xdd, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cyndaquil\u019e"}, "156": {"bytes": "0xcb, 0xe9, 0xdd, 0xe0, 0xd5, 0xea, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Quilava\u019e"}, "157": {"bytes": "0xce, 0xed, 0xe4, 0xdc, 0xe0, 0xe3, 0xe7, 0xdd, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Typhlosion\u019e"}, "158": {"bytes": "0xce, 0xe3, 0xe8, 0xe3, 0xd8, 0xdd, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Totodile\u019e"}, "159": {"bytes": "0xbd, 0xe6, 0xe3, 0xd7, 0xe3, 0xe2, 0xd5, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Croconaw\u019e"}, "160": {"bytes": "0xc0, 0xd9, 0xe6, 0xd5, 0xe0, 0xdd, 0xdb, 0xd5, 0xe8, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Feraligatr\u019e"}, "161": {"bytes": "0xcd, 0xd9, 0xe2, 0xe8, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sentret\u019e"}, "162": {"bytes": "0xc0, 0xe9, 0xe6, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Furret\u019e"}, "163": {"bytes": "0xc2, 0xe3, 0xe3, 0xe8, 0xdc, 0xe3, 0xe3, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hoothoot\u019e"}, "164": {"bytes": "0xc8, 0xe3, 0xd7, 0xe8, 0xe3, 0xeb, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Noctowl\u019e"}, "165": {"bytes": "0xc6, 0xd9, 0xd8, 0xed, 0xd6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ledyba\u019e"}, "166": {"bytes": "0xc6, 0xd9, 0xd8, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ledian\u019e"}, "167": {"bytes": "0xcd, 0xe4, 0xdd, 0xe2, 0xd5, 0xe6, 0xd5, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Spinarak\u019e"}, "168": {"bytes": "0xbb, 0xe6, 0xdd, 0xd5, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ariados\u019e"}, "169": {"bytes": "0xbd, 0xe6, 0xe3, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Crobat\u019e"}, "170": {"bytes": "0xbd, 0xdc, 0xdd, 0xe2, 0xd7, 0xdc, 0xe3, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chinchou\u019e"}, "171": {"bytes": "0xc6, 0xd5, 0xe2, 0xe8, 0xe9, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lanturn\u019e"}, "172": {"bytes": "0xca, 0xdd, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pichu\u019e"}, "173": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xda, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cleffa\u019e"}, "174": {"bytes": "0xc3, 0xdb, 0xdb, 0xe0, 0xed, 0xd6, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Igglybuff\u019e"}, "175": {"bytes": "0xce, 0xe3, 0xdb, 0xd9, 0xe4, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Togepi\u019e"}, "176": {"bytes": "0xce, 0xe3, 0xdb, 0xd9, 0xe8, 0xdd, 0xd7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Togetic\u019e"}, "177": {"bytes": "0xc8, 0xd5, 0xe8, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Natu\u019e"}, "178": {"bytes": "0xd2, 0xd5, 0xe8, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Xatu\u019e"}, "179": {"bytes": "0xc7, 0xd5, 0xe6, 0xd9, 0xd9, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mareep\u019e"}, "180": {"bytes": "0xc0, 0xe0, 0xd5, 0xd5, 0xda, 0xda, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Flaaffy\u019e"}, "181": {"bytes": "0xbb, 0xe1, 0xe4, 0xdc, 0xd5, 0xe6, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ampharos\u019e"}, "182": {"bytes": "0xbc, 0xd9, 0xe0, 0xe0, 0xe3, 0xe7, 0xe7, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bellossom\u019e"}, "183": {"bytes": "0xc7, 0xd5, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Marill\u019e"}, "184": {"bytes": "0xbb, 0xee, 0xe9, 0xe1, 0xd5, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Azumarill\u019e"}, "185": {"bytes": "0xcd, 0xe9, 0xd8, 0xe3, 0xeb, 0xe3, 0xe3, 0xd8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sudowoodo\u019e"}, "186": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xe8, 0xe3, 0xd9, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Politoed\u019e"}, "187": {"bytes": "0xc2, 0xe3, 0xe4, 0xe4, 0xdd, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hoppip\u019e"}, "188": {"bytes": "0xcd, 0xdf, 0xdd, 0xe4, 0xe0, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Skiploom\u019e"}, "189": {"bytes": "0xc4, 0xe9, 0xe1, 0xe4, 0xe0, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jumpluff\u019e"}, "190": {"bytes": "0xbb, 0xdd, 0xe4, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Aipom\u019e"}, "191": {"bytes": "0xcd, 0xe9, 0xe2, 0xdf, 0xd9, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sunkern\u019e"}, "192": {"bytes": "0xcd, 0xe9, 0xe2, 0xda, 0xe0, 0xe3, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sunflora\u019e"}, "193": {"bytes": "0xd3, 0xd5, 0xe2, 0xe1, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Yanma\u019e"}, "194": {"bytes": "0xd1, 0xe3, 0xe3, 0xe4, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wooper\u019e"}, "195": {"bytes": "0xcb, 0xe9, 0xd5, 0xdb, 0xe7, 0xdd, 0xe6, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Quagsire\u019e"}, "196": {"bytes": "0xbf, 0xe7, 0xe4, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Espeon\u019e"}, "197": {"bytes": "0xcf, 0xe1, 0xd6, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Umbreon\u019e"}, "198": {"bytes": "0xc7, 0xe9, 0xe6, 0xdf, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Murkrow\u019e"}, "199": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowking\u019e"}, "200": {"bytes": "0xc7, 0xdd, 0xe7, 0xd8, 0xe6, 0xd9, 0xd5, 0xea, 0xe9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Misdreavus\u019e"}, "201": {"bytes": "0xcf, 0xe2, 0xe3, 0xeb, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Unown\u019e"}, "202": {"bytes": "0xd1, 0xe3, 0xd6, 0xd6, 0xe9, 0xda, 0xda, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wobbuffet\u019e"}, "203": {"bytes": "0xc1, 0xdd, 0xe6, 0xd5, 0xda, 0xd5, 0xe6, 0xdd, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Girafarig\u019e"}, "204": {"bytes": "0xca, 0xdd, 0xe2, 0xd9, 0xd7, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pineco\u019e"}, "205": {"bytes": "0xc0, 0xe3, 0xe6, 0xe6, 0xd9, 0xe8, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Forretress\u019e"}, "206": {"bytes": "0xbe, 0xe9, 0xe2, 0xe7, 0xe4, 0xd5, 0xe6, 0xd7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dunsparce\u019e"}, "207": {"bytes": "0xc1, 0xe0, 0xdd, 0xdb, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gligar\u019e"}, "208": {"bytes": "0xcd, 0xe8, 0xd9, 0xd9, 0xe0, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Steelix\u019e"}, "209": {"bytes": "0xcd, 0xe2, 0xe9, 0xd6, 0xd6, 0xe9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Snubbull\u019e"}, "210": {"bytes": "0xc1, 0xe6, 0xd5, 0xe2, 0xd6, 0xe9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Granbull\u019e"}, "211": {"bytes": "0xcb, 0xeb, 0xdd, 0xe0, 0xda, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Qwilfish\u019e"}, "212": {"bytes": "0xcd, 0xd7, 0xdd, 0xee, 0xe3, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Scizor\u019e"}, "213": {"bytes": "0xcd, 0xdc, 0xe9, 0xd7, 0xdf, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Shuckle\u019e"}, "214": {"bytes": "0xc2, 0xd9, 0xe6, 0xd5, 0xd7, 0xe6, 0xe3, 0xe7, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Heracross\u019e"}, "215": {"bytes": "0xcd, 0xe2, 0xd9, 0xd5, 0xe7, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sneasel\u019e"}, "216": {"bytes": "0xce, 0xd9, 0xd8, 0xd8, 0xdd, 0xe9, 0xe6, 0xe7, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Teddiursa\u019e"}, "217": {"bytes": "0xcf, 0xe6, 0xe7, 0xd5, 0xe6, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ursaring\u019e"}, "218": {"bytes": "0xcd, 0xe0, 0xe9, 0xdb, 0xe1, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slugma\u019e"}, "219": {"bytes": "0xc7, 0xd5, 0xdb, 0xd7, 0xd5, 0xe6, 0xdb, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magcargo\u019e"}, "220": {"bytes": "0xcd, 0xeb, 0xdd, 0xe2, 0xe9, 0xd6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Swinub\u019e"}, "221": {"bytes": "0xca, 0xdd, 0xe0, 0xe3, 0xe7, 0xeb, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Piloswine\u019e"}, "222": {"bytes": "0xbd, 0xe3, 0xe6, 0xe7, 0xe3, 0xe0, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Corsola\u019e"}, "223": {"bytes": "0xcc, 0xd9, 0xe1, 0xe3, 0xe6, 0xd5, 0xdd, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Remoraid\u019e"}, "224": {"bytes": "0xc9, 0xd7, 0xe8, 0xdd, 0xe0, 0xe0, 0xd9, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Octillery\u019e"}, "225": {"bytes": "0xbe, 0xd9, 0xe0, 0xdd, 0xd6, 0xdd, 0xe6, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Delibird\u019e"}, "226": {"bytes": "0xc7, 0xd5, 0xe2, 0xe8, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mantine\u019e"}, "227": {"bytes": "0xcd, 0xdf, 0xd5, 0xe6, 0xe1, 0xe3, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Skarmory\u019e"}, "228": {"bytes": "0xc2, 0xe3, 0xe9, 0xe2, 0xd8, 0xe3, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Houndour\u019e"}, "229": {"bytes": "0xc2, 0xe3, 0xe9, 0xe2, 0xd8, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Houndoom\u019e"}, "230": {"bytes": "0xc5, 0xdd, 0xe2, 0xdb, 0xd8, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kingdra\u019e"}, "231": {"bytes": "0xca, 0xdc, 0xd5, 0xe2, 0xe4, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Phanpy\u019e"}, "232": {"bytes": "0xbe, 0xe3, 0xe2, 0xe4, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Donphan\u019e"}, "233": {"bytes": "0xca, 0xe3, 0xe6, 0xed, 0xdb, 0xe3, 0xe2, 0xa3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Porygon2\u019e"}, "234": {"bytes": "0xcd, 0xe8, 0xd5, 0xe2, 0xe8, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Stantler\u019e"}, "235": {"bytes": "0xcd, 0xe1, 0xd9, 0xd5, 0xe6, 0xdb, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Smeargle\u019e"}, "236": {"bytes": "0xce, 0xed, 0xe6, 0xe3, 0xdb, 0xe9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tyrogue\u019e"}, "237": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xe8, 0xe3, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmontop\u019e"}, "238": {"bytes": "0xcd, 0xe1, 0xe3, 0xe3, 0xd7, 0xdc, 0xe9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Smoochum\u019e"}, "239": {"bytes": "0xbf, 0xe0, 0xd9, 0xdf, 0xdd, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Elekid\u019e"}, "240": {"bytes": "0xc7, 0xd5, 0xdb, 0xd6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magby\u019e"}, "241": {"bytes": "0xc7, 0xdd, 0xe0, 0xe8, 0xd5, 0xe2, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Miltank\u019e"}, "242": {"bytes": "0xbc, 0xe0, 0xdd, 0xe7, 0xe7, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Blissey\u019e"}, "243": {"bytes": "0xcc, 0xd5, 0xdd, 0xdf, 0xe3, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raikou\u019e"}, "244": {"bytes": "0xbf, 0xe2, 0xe8, 0xd9, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Entei\u019e"}, "245": {"bytes": "0xcd, 0xe9, 0xdd, 0xd7, 0xe9, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Suicune\u019e"}, "246": {"bytes": "0xc6, 0xd5, 0xe6, 0xea, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Larvitar\u019e"}, "247": {"bytes": "0xca, 0xe9, 0xe4, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pupitar\u019e"}, "248": {"bytes": "0xce, 0xed, 0xe6, 0xd5, 0xe2, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tyranitar\u019e"}, "249": {"bytes": "0xc6, 0xe9, 0xdb, 0xdd, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lugia\u019e"}, "250": {"bytes": "0xc2, 0xe3, 0xae, 0xc9, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ho-Oh\u019e"}, "251": {"bytes": "0xbd, 0xd9, 0xe0, 0xd9, 0xd6, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Celebi\u019e"}}, "Warnings": {"0": "Warning! ' found, replacing with \u2019 !", "1": "Warning! ' found, replacing with \u2019 !", "2": "Warning! ' found, replacing with \u2019 !", "3": "Warning! ' found, replacing with \u2019 !", "4": "Warning! ' found, replacing with \u2019 !", "5": "Warning! ' found, replacing with \u2019 !", "6": "Warning! ' found, replacing with \u2019 !", "7": "Warning! ' found, replacing with \u2019 !", "8": "Warning! ' found, replacing with \u2019 !", "9": "Warning! ' found, replacing with \u2019 !", "10": "Warning! ' found, replacing with \u2019 !", "11": "Warning! ' found, replacing with \u2019 !", "12": "Warning! ' found, replacing with \u2019 !", "13": "Warning! ' found, replacing with \u2019 !", "14": "Warning! ' found, replacing with \u2019 !", "15": "Warning! ' found, replacing with \u2019 !", "16": "Warning! ' found, replacing with \u2019 !", "17": "Warning! ' found, replacing with \u2019 !", "18": "Warning! ' found, replacing with \u2019 !", "19": "Warning! ' found, replacing with \u2019 !", "20": "Warning! ' found, replacing with \u2019 !", "21": "Warning! ' found, replacing with \u2019 !", "22": "Warning! ' found, replacing with \u2019 !", "23": "Warning! ' found, replacing with \u2019 !", "24": "Warning! ' found, replacing with \u2019 !", "25": "Warning! ' found, replacing with \u2019 !", "26": "Warning! ' found, replacing with \u2019 !", "27": "Warning! ' found, replacing with \u2019 !", "28": "Warning! ' found, replacing with \u2019 !", "29": "Warning! ' found, replacing with \u2019 !", "30": "Warning! ' found, replacing with \u2019 !", "31": "Warning! ' found, replacing with \u2019 !", "32": "Warning! ' found, replacing with \u2019 !", "33": "Warning! ' found, replacing with \u2019 !", "34": "Warning! ' found, replacing with \u2019 !", "35": "Warning! ' found, replacing with \u2019 !", "36": "Warning! ' found, replacing with \u2019 !", "37": "Warning! ' found, replacing with \u2019 !", "38": "Warning! ' found, replacing with \u2019 !", "39": "Warning! ' found, replacing with \u2019 !", "40": "Warning! ' found, replacing with \u2019 !", "41": "Warning! ' found, replacing with \u2019 !", "42": "Warning! ' found, replacing with \u2019 !", "43": "Warning! ' found, replacing with \u2019 !", "44": "Warning! ' found, replacing with \u2019 !", "45": "Warning! ' found, replacing with \u2019 !", "46": "Warning! ' found, replacing with \u2019 !", "47": "Warning! ' found, replacing with \u2019 !", "48": "Warning! ' found, replacing with \u2019 !", "49": "Warning! ' found, replacing with \u2019 !", "50": "Warning! ' found, replacing with \u2019 !", "51": "Warning! ' found, replacing with \u2019 !", "52": "Warning! ' found, replacing with \u2019 !", "53": "Warning! ' found, replacing with \u2019 !", "54": "Warning! ' found, replacing with \u2019 !"}, "Errors": {}}, "SpanishEU": {"PTGB": {"DIA_OPEN": {"bytes": "0xc2, 0xd9, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xab, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xd9, 0xe2, 0xe2, 0xd9, 0xe0, 0xad, 0x0, 0xbb, 0xe7, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xd9, 0xb8, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xd5, 0x0, 0xe7, 0xd7, 0xdd, 0xd9, 0xe2, 0xe8, 0xdd, 0xe7, 0xe8, 0xad, 0x0, 0xc3, 0xe2, 0xfe, 0xda, 0xd5, 0xd7, 0xe8, 0xb8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xe9, 0xd6, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe7, 0xfe, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0xab, 0xfb, 0xc7, 0xed, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe0, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xea, 0xd5, 0xe6, 0xdd, 0xe3, 0xe9, 0xe7, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xdc, 0xd5, 0xd8, 0xfe, 0xd5, 0xe2, 0xed, 0x0, 0xd6, 0xe6, 0xd9, 0xd5, 0xdf, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0xe7, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xad, 0xad, 0xfb, 0xcd, 0xe3, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0xb4, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xdd, 0xe2, 0xdb, 0xfe, 0xe3, 0xe2, 0x0, 0xd5, 0x0, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0xfe, 0xe3, 0xe0, 0xd8, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0xab, 0xfb, 0xc3, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xdc, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0xb8, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xb4, 0xe7, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xdd, 0xe2, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd9, 0xed, 0x0, 0xe1, 0xd9, 0xd9, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0xab, 0xfb, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xda, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe1, 0xed, 0x0, 0xdb, 0xe3, 0xd5, 0xe0, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xd8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xd5, 0xe1, 0xd9, 0xae, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb4, 0xe7, 0xfe, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xfb, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xe2, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe9, 0xe8, 0xfe, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xe7, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xa3, 0xa6, 0xa1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xd7, 0xd5, 0xe8, 0xd5, 0xe0, 0xe3, 0xdb, 0xe9, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xbe, 0xd9, 0xec, 0xae, 0x0, 0xe3, 0xe6, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe6, 0xe8, 0xad, 0xfb, 0xbc, 0xe9, 0xe8, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xae, 0xfe, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xe6, 0xd9, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xd5, 0xe0, 0xe0, 0xab, 0xfb, 0xc9, 0xe2, 0xd9, 0x0, 0xe0, 0xd5, 0xe7, 0xe8, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0xb8, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0xae, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdb, 0xe3, 0xd9, 0xe7, 0x0, 0xeb, 0xe6, 0xe3, 0xe2, 0xdb, 0xab, 0xfe, 0xc3, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdf, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xad, 0xad, 0xad, 0xfb, 0xeb, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0xb8, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hey there! I\u2019m Professor Fennel. As\u0147you can see, I\u2019m a scientist. In\u0147fact, the subject I\u2019m researching is\u0147Trainers!\u023cMy dream is to collect save files of\u0147various trainers, but I haven\u2019t had\u0147any breakthroughs yet...\u023cSo in the meantime, I\u2019ve been working\u0147on a different project with one of my\u0147old friends!\u023cIn my home region, there\u2019s a location\u0147that can make a Pok\u00e9mon\u2019s dreams into\u0147reality.\u023cThis means that any other Pok\u00e9mon\u0147they meet in their dreams become\u0147real!\u023cThat\u2019s fantastic, but my goal is to\u0147do the same- just with a trainer\u2019s\u0147dream instead! That\u2019s why I need your\u0147help!\u023cI want to bring as many Pok\u00e9mon out\u0147of your dreams as possible!\u023cThere\u2019s just over 250 Pok\u00e9mon I want\u0147to catalogue in my Dream Pok\u00e9Dex- or\u0147Dream Dex for short.\u023cBut I\u2019ll let you keep any Pok\u00e9mon-\u0147they\u2019re from your dreams after all!\u023cOne last note, save data backups are\u0147recommended- just on the off chance\u0147that something goes wrong!\u0147I think that\u2019s everything...\u023cwhenever you\u2019re ready to start, just\u0147let me know!\u019e"}, "DIA_E4": {"bytes": "0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xe8, 0xdc, 0xe6, 0xdd, 0xe0, 0xe0, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0xfe, 0xd8, 0xd9, 0xd7, 0xdd, 0xd8, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe9, 0xe6, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xd9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0xab, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd5, 0xe8, 0xd9, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbf, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xc0, 0xe3, 0xe9, 0xe6, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xdc, 0xd5, 0xe1, 0xe4, 0xdd, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi trainer! I\u2019m thrilled you\u2019ve\u0147decided to help with our research,\u0147but we need the best of the best!\u023cCome back after you\u2019ve beaten the\u0147Elite Four and become the Champion!\u019e"}, "DIA_MG_FRLGE": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0xfe, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xae, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xc1, 0xc3, 0xc0, 0xce, 0xab, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe2, 0xd9, 0xd5, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xc7, 0xd5, 0xe6, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xda, 0xdd, 0xe0, 0xe0, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe2, 0xd5, 0xdd, 0xe6, 0xd9, 0x0, 0xd5, 0xe7, 0xfe, 0xda, 0xe3, 0xe0, 0xe0, 0xe3, 0xeb, 0xe7, 0xf0, 0x0, 0xc6, 0xc3, 0xc8, 0xc5, 0x0, 0xce, 0xc9, 0xc1, 0xbf, 0xce, 0xc2, 0xbf, 0xcc, 0x0, 0xd1, 0xc3, 0xce, 0xc2, 0x0, 0xbb, 0xc6, 0xc6, 0xad, 0xfb, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xdb, 0xe3, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, one more thing to take\u0147care of before we can begin- you need\u0147to enable MYSTERY GIFT!\u023cHead to the nearest Pok\u00e9 Mart and\u0147fill out the questionnaire as\u0147follows: LINK TOGETHER WITH ALL.\u023cAfter that, you should be all set to\u0147go! See you soon!\u019e"}, "DIA_MG_RS": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0xfe, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xae, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0xab, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbf, 0xce, 0xbb, 0xc6, 0xbc, 0xcf, 0xcc, 0xc1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xbd, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xe2, 0x0, 0xe2, 0xd9, 0xec, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0xf0, 0xfe, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0x0, 0xc3, 0xcd, 0x0, 0xbf, 0xd2, 0xbd, 0xc3, 0xce, 0xc3, 0xc8, 0xc1, 0xad, 0x0, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0xb8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdb, 0xe3, 0xab, 0xfb, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, one more thing to take\u0147care of before we can begin- you need\u0147to enable MYSTERY EVENT!\u023cHead to the PETALBURG Pok\u00e9mon Center\u0147and tell the man next to the PC:\u0147MYSTERY EVENT IS EXCITING. After\u0147that, you should be all set to go!\u023cSee you soon!\u019e"}, "DIA_LETS_START": {"bytes": "0xca, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0xb8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xc3, 0xfe, 0xe2, 0xd9, 0xd9, 0xd8, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xdb, 0xd9, 0xe8, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0xd9, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Perfect, that\u2019s all the information I\u0147need! Let\u2019s get started!\u019e"}, "DIA_START": {"bytes": "0xc9, 0xe2, 0x0, 0xd5, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xb8, 0xfe, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xdd, 0xe7, 0xdc, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xad, 0xfb, 0xc3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xad, 0xfb, 0xce, 0xdc, 0xd9, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xfe, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0x0, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0xad, 0xfb, 0xc9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0xb8, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xbd, 0xe0, 0xe9, 0xd6, 0xfe, 0xd5, 0xe8, 0xe8, 0xd9, 0xe2, 0xd8, 0xd5, 0xe2, 0xe8, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0x0, 0xdd, 0xe2, 0xdd, 0xe8, 0xdd, 0xd5, 0xe8, 0xd9, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xd9, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "On a second Game Boy family system,\u0147please load the Game Boy Pok\u00e9mon game\u0147you wish to transfer from.\u023cIn your Game Boy Pok\u00e9mon game, make\u0147your current box the one you want to\u0147transfer from.\u023cThen connect this Game Boy Advance to\u0147the other Game Boy family system\u0147using a Game Boy Color link cable.\u023cOnce you\u2019re ready, press A on this\u0147device, talk to the Cable Club\u0147attendant, and then initiate a trade.\u019e"}, "DIA_TRANS_GOOD": {"bytes": "0xbb, 0xe1, 0xd5, 0xee, 0xdd, 0xe2, 0xdb, 0xab, 0x0, 0xc0, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0xab, 0x0, 0xbf, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0xfe, 0xe4, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Amazing! Fantastic! Everything went\u0147perfectly!\u019e"}, "DIA_NEW_DEX": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xdd, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xab, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xd9, 0xec, 0xe8, 0xe6, 0xd5, 0x0, 0xe7, 0xeb, 0xd9, 0xd9, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xe6, 0xd9, 0xeb, 0xd5, 0xe6, 0xd8, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like there\u2019s at least one\u0147new Pok\u00e9mon here that isn\u2019t in the\u0147Dream Dex! I\u2019ll give them something\u0147extra sweet as a reward for you both.\u019e"}, "DIA_NO_NEW_DEX": {"bytes": "0xc3, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0xe2, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0xfe, 0xe3, 0xdf, 0xd5, 0xed, 0xab, 0x0, 0xc3, 0xe8, 0xb4, 0xe7, 0x0, 0xdd, 0xe1, 0xe4, 0xe3, 0xe6, 0xe8, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0xfe, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe9, 0xe0, 0xe8, 0xe7, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe1, 0xe9, 0xe0, 0xe8, 0xdd, 0xe4, 0xe0, 0xd9, 0x0, 0xe8, 0xd9, 0xe7, 0xe8, 0xe7, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It doesn\u2019t look like there\u2019s anything\u0147new for your Dream Dex, but that\u2019s\u0147okay! It\u2019s important to confirm\u0147research results with multiple tests!\u019e"}, "DIA_SEND_FRIEND_KANTO": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0x0, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0x0, 0xe3, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xe3, 0xe2, 0x0, 0xcd, 0xd9, 0xea, 0xd9, 0xe2, 0x0, 0xc3, 0xe7, 0xe0, 0xd5, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up! They live just south of\u0147the Pok\u00e9mon center on Seven Island!\u019e"}, "DIA_SEND_FRIEND_HOENN_RS": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xc7, 0xe3, 0xe7, 0xe7, 0xd8, 0xd9, 0xd9, 0xe4, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up!\u023cThey live just southeast of the\u0147Pok\u00e9mon center in Mossdeep City!\u019e"}, "DIA_SEND_FRIEND_HOENN_E": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xcd, 0xe3, 0xe3, 0xe8, 0xe3, 0xe4, 0xe3, 0xe0, 0xdd, 0xe7, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up!\u023cThey live just southeast of the\u0147Pok\u00e9mon center in Sootopolis City!\u019e"}, "DIA_THANK": {"bytes": "0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xfe, 0xd1, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xb8, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Thank you so much for your help!\u0147Whenever you want to transfer more\u0147Pok\u00e9mon, just let me know! See you\u0147around!\u019e"}, "DIA_GET_MON": {"bytes": "0xe9, 0xe2, 0xe9, 0xe7, 0xd9, 0xd8, 0xb8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "unused, will be removed\u019e"}, "DIA_MG_OTHER_EVENT": {"bytes": "0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xfe, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xad, 0xfe, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xd6, 0xe0, 0xd9, 0xe1, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe3, 0xea, 0xd9, 0xe6, 0xeb, 0xe6, 0xdd, 0xe8, 0xe8, 0xd9, 0xe2, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xad, 0xfb, 0xce, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xe2, 0xe3, 0xeb, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xec, 0xe4, 0xd9, 0xe6, 0xdd, 0xd9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0xae, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi Trainer! It looks like you have a\u0147different event currently loaded.\u0147That\u2019s no problem, but it will be\u0147overwritten if you continue.\u023cTurn off the system now if you want\u0147to experience your current event, but\u0147otherwise-\u019e"}, "DIA_PKMN_TO_COLLECT": {"bytes": "0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe9, 0xe4, 0xad, 0xad, 0xad, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0xb4, 0xe8, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe9, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0xfe, 0xe8, 0xdc, 0xe3, 0xe7, 0xd9, 0x0, 0xe9, 0xe4, 0xad, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi Trainer! It looks like you still\u0147have Pok\u00e9mon to pick up... I can\u2019t\u0147send over new Pok\u00e9mon until you pick\u0147those up.\u023cCome back after you\u2019ve received them!\u019e"}, "DIA_NO_VALID_PKMN": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xea, 0xd5, 0xe0, 0xdd, 0xd8, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xe2, 0xe3, 0xeb, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xd8, 0xe3, 0xe9, 0xd6, 0xe0, 0xd9, 0x0, 0xd7, 0xdc, 0xd9, 0xd7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xdd, 0xe8, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry Trainer, it doesn\u2019t look like\u0147you have any valid Pok\u00e9mon in your\u0147current box right now.\u023cGo double check your current box and\u0147we can give it another shot!\u019e"}, "DIA_ASK_QUEST": {"bytes": "0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xbc, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xb8, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd5, 0xe7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0x0, 0xda, 0xd9, 0xeb, 0x0, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi trainer! Before we begin, I need\u0147to ask you a few questions.\u019e"}, "DIA_WHAT_GAME_TRANS": {"bytes": "0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xac, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "And which Game Boy Pok\u00e9mon game are\u0147you transferring from?\u019e"}, "DIA_WHAT_LANG_TRANS": {"bytes": "0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xac, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "What language is the Game Boy Pok\u00e9mon\u0147game that you\u2019re transferring from?\u019e"}, "DIA_NO_GB_ROM": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xe7, 0xe3, 0xe6, 0xe6, 0xed, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xea, 0xd9, 0xe6, 0xe7, 0xdd, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m sorry, but that version in that\u0147language is not currently supported.\u019e"}, "DIA_IN_BOX": {"bytes": "0xbb, 0xe0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0xad, 0xfb, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xd9, 0xe1, 0xd6, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xd5, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe7, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xbd, 0xbb, 0xc8, 0xc8, 0xc9, 0xce, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xad, 0xfb, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xe3, 0xe6, 0xfe, 0xe7, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Alright! Let\u2019s take a look at the\u0147Pok\u00e9mon that will be transfered.\u023cPlease remember, once a Pok\u00e9mon is\u0147transfered, it CANNOT be returned to\u0147the Game Boy Game Pak.\u023cSelect confirm once you\u2019re ready, or\u0147select cancel if you want to keep the\u0147Pok\u00e9mon on your Game Boy Game Pak.\u019e"}, "DIA_MYTHIC_CONVERT": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0x0, 0xe6, 0xd5, 0xe6, 0xd9, 0xfe, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xab, 0x0, 0xbe, 0xe9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xe6, 0xd5, 0xe6, 0xdd, 0xe8, 0xed, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xea, 0xd9, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xad, 0xfb, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xd8, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0xb4, 0xe0, 0xe0, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xd9, 0xe8, 0xfe, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xb8, 0x0, 0xc9, 0xce, 0xb8, 0x0, 0xce, 0xc3, 0xbe, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xcd, 0xdc, 0xdd, 0xe2, 0xdd, 0xe2, 0xd9, 0xe7, 0xe7, 0xad, 0xfb, 0xc9, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe0, 0xd9, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe7, 0x0, 0xdd, 0xe7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xdb, 0xe9, 0xd5, 0xe6, 0xd9, 0xe2, 0xe8, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xda, 0xe9, 0xe8, 0xe9, 0xe6, 0xd9, 0xad, 0x0, 0xbe, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xac, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd5, 0xe4, 0xe4, 0xe0, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd6, 0xe3, 0xec, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like you have a rare\u0147Mythical Pok\u00e9mon! Due to their\u0147rarity, it seems they\u2019ve overloaded\u0147the machine.\u023cI can stablize them if you\u2019d like,\u0147but it\u2019ll change some things like met\u0147location, OT, TID, and Shininess.\u023cOtherwise I can leave them as is, but\u0147there\u2019s no guarentee that they\u2019ll be\u0147transferrable in the future. Do you\u0147want me to stablize them?\u023cThis will apply to all of the\u0147Mythical Pok\u00e9mon currently in your\u0147box.\u019e"}, "DIA_CANCEL": {"bytes": "0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0xab, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xdd, 0xda, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "No worries! Feel free to come back if\u0147you change your mind! See you around!\u019e"}, "DIA_SOME_INVALID_PKMN": {"bytes": "0xc3, 0x0, 0xe7, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0xad, 0xfb, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xe3, 0xe0, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe8, 0xd9, 0xe1, 0xe7, 0x0, 0xe3, 0xe6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xdd, 0xd9, 0xd8, 0xfe, 0xdd, 0xe2, 0xd7, 0xe3, 0xe6, 0xe6, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0x0, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0x0, 0xe9, 0xe2, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0xfe, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0xad, 0xfb, 0xce, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xda, 0xdd, 0xe2, 0xd9, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I see there is at least one Pok\u00e9mon\u0147that cannot be transferred from your\u0147current box.\u023cPok\u00e9mon holding items or modified\u0147incorrectly through unintended means\u0147cannot be transferred.\u023cThe other Pok\u00e9mon will transfer just\u0147fine though!\u019e"}, "DIA_MENU_BACK": {"bytes": "0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0xab, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xfe, 0xd5, 0xe2, 0xed, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "No worries! Feel free to come back\u0147any time!\u019e"}, "DIA_IS_MISSINGNO": {"bytes": "0xad, 0xad, 0xad, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xad, 0xad, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0x0, 0xd6, 0xd9, 0x0, 0xdb, 0xe6, 0xd5, 0xe4, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0xb8, 0x0, 0xe7, 0xe3, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "... It seems like one of your Pok\u00e9mon\u0147is messing with the machine... It\u0147looks to only be graphical though, so\u0147we can continue!\u019e"}, "DIA_ERROR_COLOSSEUM": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd7, 0xe3, 0xe0, 0xe3, 0xe7, 0xe7, 0xd9, 0xe9, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0xfe, 0xe6, 0xe3, 0xe3, 0xe1, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like you went to the\u0147colosseum instead of the trading\u0147room! Let\u2019s try that again!\u019e"}, "DIA_ERROR_COM_ENDED": {"bytes": "0xbd, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0xfe, 0xeb, 0xd5, 0xe7, 0x0, 0xe8, 0xd9, 0xe6, 0xe1, 0xdd, 0xe2, 0xd5, 0xe8, 0xd9, 0xd8, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Communication with the other device\u0147was terminated. Let\u2019s try that again!\u019e"}, "DIA_ERROR_DISCONNECT": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xfe, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xd8, 0xdd, 0xe7, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xd9, 0xd8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like the Game Boy Color link\u0147cable was disconnected... Let\u2019s try\u0147that again!\u019e"}, "DIA_ERROR_TIME_ONE": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0xfe, 0xe3, 0xe9, 0xe8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like the connection timed\u0147out... Let\u2019s try that again!\u019e"}, "DIA_ERROR_TIME_TWO": {"bytes": "0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0xfe, 0xe3, 0xe9, 0xe8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It seems like the connection timed\u0147out... Let\u2019s try that again!\u019e"}, "DIA_WHAT_LANG_EVENT": {"bytes": "0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0xac, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "What language is the Game Boy Pok\u00e9mon\u0147game that you want to send an event\u0147to?\u019e"}, "DIA_WHAT_GAME_EVENT": {"bytes": "0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd8, 0xe3, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xac, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "And which Game Boy Pok\u00e9mon game do\u0147you want to send an event to?\u019e"}, "DIA_K_DEX_NOT_FULL": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xa2, 0xa6, 0xa1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xeb, 0xd9, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, it looks like you\u0147haven\u2019t caught all 150 Pok\u00e9mon from\u0147the Kanto region yet.\u023cGo out and catch them all and then\u0147we\u2019ll be able to send over the event!\u019e"}, "DIA_J_DEX_NOT_FULL": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xaa, 0xaa, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc4, 0xe3, 0xdc, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xeb, 0xd9, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, it looks like you\u0147haven\u2019t caught all 99 new Pok\u00e9mon\u0147from the Johto region yet.\u023cGo out and catch them all and then\u0147we\u2019ll be able to send over the event!\u019e"}}, "RSEFRLG": {"dia_textGreet_rse": {"bytes": "0xd1, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0xb8, 0x0, 0xc3, 0x0, 0xe8, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xe0, 0xd8, 0xfe, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0x0, 0xce, 0xcc, 0xbb, 0xc3, 0xc8, 0xbf, 0xcc, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "When I was young, I traveled the world\u0147as a POK\u00e9MON TRAINER.\u019e"}, "dia_textGreet_frlg": {"bytes": "0xc3, 0x0, 0xe1, 0xd5, 0xed, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xe2, 0xe3, 0xeb, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0xd9, 0xe6, 0xb0, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "I may not look like much now,\u0147but when I was younger\u2026\u019e"}, "dia_textMoveBox_rs": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe9, 0xe2, 0xe0, 0xe3, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd8, 0xe3, 0xe3, 0xe6, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to unlock the\u0147door!\u019e"}, "dia_textMoveBox_frlg": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd6, 0xe3, 0xec, 0xd9, 0xe7, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to move the\u0147boxes!\u019e"}, "dia_textMoveBox_e": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe0, 0xd5, 0xe2, 0xe8, 0xe7, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to move the\u0147plants!\u019e"}, "dia_textWeHere_r": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xc7, 0xbb, 0xd2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leader MAXIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_s": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xbb, 0xcc, 0xbd, 0xc2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leader ARCHIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_frlg": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xc1, 0xc3, 0xc9, 0xd0, 0xbb, 0xc8, 0xc8, 0xc3, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Kanto to find\u0147the leader GIOVANNI.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_e": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0xe7, 0x0, 0xc7, 0xbb, 0xd2, 0xc3, 0xbf, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xcc, 0xbd, 0xc2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leaders MAXIE and ARCHIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textRecieved": {"bytes": "0xfc, 0x1, 0x2, 0xfd, 0x1, 0xb4, 0xcd, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0x0, 0xeb, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c1\u01b2\u00c0\u2019S POK\u00e9MON were sent to\u0147the PC!\u019e"}, "dia_textYouMustBe_first": {"bytes": "0xbb, 0xdc, 0xab, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xfd, 0x1, 0xab, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe8, 0xe3, 0xe0, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd7, 0xe3, 0xe1, 0xdd, 0xe2, 0xdb, 0xad, 0xfb, 0xc9, 0xdc, 0xab, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xab, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0xab, 0xfe, 0xc9, 0xe6, 0xb8, 0x0, 0xe6, 0xd5, 0xe8, 0xdc, 0xd9, 0xe6, 0xb8, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdd, 0xe2, 0xe8, 0xe6, 0xe3, 0xd8, 0xe9, 0xd7, 0xd9, 0x0, 0xe1, 0xed, 0xe7, 0xd9, 0xe0, 0xda, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "Ah! You must be \u01b2\u00c0! I was\u0147told you\u2019d be coming.\u023cOh! I still wear my disguise! Pardon!\u0147Or, rather, let me introduce myself.\u019e"}, "dia_textYouMustBe_second": {"bytes": "0xbb, 0xdc, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0x0, 0xd1, 0xd9, 0xe0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xab, 0x0, 0xc1, 0xe3, 0xe3, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xe7, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xfb, 0xc9, 0xdc, 0xab, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xab, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "Ah, \u01b2\u00c0! Welcome back! Good to\u0147see you again!\u023cOh! I still wear my disguise! Pardon!\u019e"}, "dia_textIAm_first": {"bytes": "0xfc, 0x1, 0x8, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xd5, 0x0, 0xdb, 0xe0, 0xe3, 0xd6, 0xd9, 0xae, 0xe8, 0xe6, 0xe3, 0xe8, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd9, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc3, 0xe2, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xe0, 0xdd, 0xd7, 0xd9, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb0, 0x0, 0xfa, 0xbb, 0xdc, 0xb8, 0x0, 0xe2, 0xe3, 0xb8, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0x0, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0xfe, 0xe2, 0xd5, 0xe1, 0xd9, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbI am a globe-trotting elite of the\u0147International Police.\u023cMy name\u2026 \u015eAh, no, I shall inform you of my code\u0147name only.\u023cMy code name, it is LOOKER!\u019e"}, "dia_textIAm_second": {"bytes": "0xfc, 0x1, 0x8, 0xc3, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc3, 0xb8, 0x0, 0xdb, 0xe0, 0xe3, 0xd6, 0xd9, 0xae, 0xe8, 0xe6, 0xe3, 0xe8, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd9, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc3, 0xe2, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xe0, 0xdd, 0xd7, 0xd9, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbIt is I, globe-trotting elite of the\u0147International Police.\u023cMy code name, it is LOOKER!\u019e"}, "dia_textPCConvo": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbb, 0xdc, 0xb8, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0x0, 0xc3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xdd, 0xe8, 0xfe, 0xfd, 0x1, 0x0, 0xdc, 0xd5, 0xe7, 0x0, 0xd5, 0xe6, 0xe6, 0xdd, 0xea, 0xd9, 0xd8, 0xac, 0xfb, 0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0xe2, 0xd8, 0xd9, 0xd9, 0xd8, 0xab, 0x0, 0xce, 0xdc, 0xd9, 0xed, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0xab, 0xfb, 0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbf, 0xec, 0xd7, 0xd9, 0xe0, 0xe0, 0xd9, 0xe2, 0xe8, 0xab, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xfe, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe1, 0xd9, 0xe2, 0xe8, 0xd5, 0xe6, 0xdd, 0xe0, 0xed, 0xb0, 0x0, 0xe7, 0xe8, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: Ah, LOOKER! I take it\u0147\u01b2\u00c0 has arrived?\u023c\u0206\u00c0\u00cbLOOKER: Indeed! They\u2019re ready to\u0147receive their POK\u00e9MON!\u023c\u0206\u00c0\u00c9FENNEL: Excellent! I\u2019ll send them\u0147over momentarily\u2026 stand by!\u019e"}, "dia_textPCThanks": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xbd, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xab, 0xfb, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: It looks like everything was\u0147sent to your PC successfully!\u023cThank you both for your help!\u019e"}, "dia_textThank": {"bytes": "0xfc, 0x1, 0x8, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xe8, 0xe3, 0xe4, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xd6, 0xed, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0xfb, 0xc3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe0, 0xe0, 0x0, 0xd9, 0xec, 0xd7, 0xe9, 0xe7, 0xd9, 0x0, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xad, 0x0, 0xfa, 0xcf, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xe3, 0xe9, 0xe6, 0x0, 0xe4, 0xd5, 0xe8, 0xdc, 0xe7, 0x0, 0xd7, 0xe6, 0xe3, 0xe7, 0xe7, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbThanks for stopping by, \u01b2\u00c0!\u023cIf you\u2019ll excuse me, I must return to\u0147my disguise. \u015eUntil our paths cross again!\u019e"}, "dia_textPCFull": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0x0, 0xdd, 0xe7, 0x0, 0xda, 0xe9, 0xe0, 0xe0, 0xab, 0xfb, 0xc1, 0xe3, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: It seems like the PC is full!\u023cGo make some room, and I can send over\u0147the rest of your POK\u00e9MON.\u019e"}, "dia_textLookerFull": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xcd, 0xe4, 0xd9, 0xd5, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0xfe, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0xfb, 0xc3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xed, 0xfe, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: Speak to me again after\u0147you\u2019ve made room, \u01b2\u00c0!\u023cIn the meantime, I will return to my\u0147disguise.\u019e"}}, "GB": {"sending_text": {"bytes": "SENDING DATA", "numLines": 0, "pixelsPerChar": "Default", "pixelsInLine": 0, "includeBoxBreaks": false}, "prof_name": {"bytes": "FENNEL", "numLines": 0, "pixelsPerChar": "Default", "pixelsInLine": 0, "includeBoxBreaks": false}}, "GENERAL": {"option_english": {"bytes": "0xbf, 0xe2, 0xdb, 0xe0, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "English\u019e"}, "option_japanese": {"bytes": "0xc4, 0xd5, 0xe4, 0xd5, 0xe2, 0xd9, 0xe7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Japanese\u019e"}, "option_spanish": {"bytes": "0xcd, 0xe4, 0xd5, 0xe2, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Spanish\u019e"}, "option_french": {"bytes": "0xc0, 0xe6, 0xd9, 0xe2, 0xd7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "French\u019e"}, "option_german": {"bytes": "0xc1, 0xd9, 0xe6, 0xe1, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "German\u019e"}, "option_italian": {"bytes": "0xc3, 0xe8, 0xd5, 0xe0, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Italian\u019e"}, "option_korean": {"bytes": "0xc5, 0xe3, 0xe6, 0xd9, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Korean\u019e"}, "option_green": {"bytes": "0xc1, 0xe6, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Green\u019e"}, "option_red": {"bytes": "0xcc, 0xd9, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Red\u019e"}, "option_blue": {"bytes": "0xbc, 0xe0, 0xe9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Blue\u019e"}, "option_yellow": {"bytes": "0xd3, 0xd9, 0xe0, 0xe0, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Yellow\u019e"}, "option_gold": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Gold\u019e"}, "option_silver": {"bytes": "0xcd, 0xdd, 0xe0, 0xea, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Silver\u019e"}, "option_crystal": {"bytes": "0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Crystal\u019e"}, "option_cancel": {"bytes": "0xbd, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Cancel\u019e"}, "press_start": {"bytes": "0xca, 0xe9, 0xe7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xcd, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xab, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Push the Start Button!\u019e"}, "option_transfer": {"bytes": "0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Transfer Pok\u00e9mon\u019e"}, "option_dreamdex": {"bytes": "0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Dream Dex\u019e"}, "option_credits": {"bytes": "0xbd, 0xe6, 0xd9, 0xd8, 0xdd, 0xe8, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Credits\u019e"}, "intro_first": {"bytes": "0xc2, 0xd9, 0xe0, 0xe0, 0xe3, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0xab, 0xfe, 0xfe, 0xc4, 0xe9, 0xe7, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xeb, 0xe3, 0xe6, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xd5, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0xae, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xd1, 0xc3, 0xc6, 0xc6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xed, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe0, 0xe3, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xd6, 0xd9, 0xe8, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xdd, 0xd8, 0xb8, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd9, 0xe2, 0xde, 0xe3, 0xed, 0xab, 0xfe, 0xfe, 0xae, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 15, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": false, "text": "Hello! Thank you for using Pok\u00e9\u0147Transporter GB!\u0147\u0147Just as a word of caution- Pok\u00e9\u0147Transporter GB WILL modify both the\u0147GameBoy and GameBoy Advance save\u0147files.\u0147\u0147Please note that while Pok\u00e9\u0147Transporter GB is no longer in beta,\u0147save file backups are still\u0147recommended before using. With that\u0147all being said, please enjoy!\u0147\u0147-The Gears of Progress\u019e"}, "intro_legal": {"bytes": "0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe3, 0xda, 0xfe, 0xe0, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd5, 0xe4, 0xe4, 0xe6, 0xd9, 0xd7, 0xdd, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xd5, 0xe2, 0xd7, 0xdc, 0xdd, 0xe7, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xda, 0xdd, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xbb, 0xc6, 0xd1, 0xbb, 0xd3, 0xcd, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0xfe, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0x0, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe1, 0xe9, 0xe7, 0xdd, 0xd7, 0xfe, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xeb, 0xe2, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0x0, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0x0, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0xad, 0xfe, 0xfe, 0xfe, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xff", "numLines": 14, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": false, "text": "Pok\u00e9 Transporter GB was made out of\u0147love and appreciation for the Pokemon\u0147franchise with no profit in mind. It\u0147will ALWAYS be free.\u0147\u0147Please support the original\u0147developers.\u0147\u0147All Pokemon names, sprites, and music\u0147are owned by Nintendo, Creatures Inc,\u0147and GAME FREAK.\u0147\u0147\u0147Press A to continue\u019e"}, "cart_load_error": {"bytes": "0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xad, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xdd, 0xe2, 0xe7, 0xd9, 0xe6, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xea, 0xd9, 0xe0, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff", "numLines": 10, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "The Pok\u00e9mon save file was\u0147not loaded successfully.\u0147Please remove and reinsert\u0147the Game Pak, and then\u0147press the A button.\u0147\u0147Alternatively, press the\u0147Select button to send this\u0147program to another GameBoy\u0147Advance.\u019e"}, "pulled_cart_error": {"bytes": "0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xad, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "The Pok\u00e9mon game was\u0147removed. Please turn off\u0147the system and restart the\u0147program.\u019e"}, "send_multiboot_instructions": {"bytes": "0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xfe, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xdd, 0xe2, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0x0, 0xe1, 0xe3, 0xd8, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xc6, 0xdd, 0xe2, 0xdf, 0xfe, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0xad, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0xe2, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xfe, 0xe8, 0xe3, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff", "numLines": 10, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Please connect this system\u0147to another GameBoy Advance\u0147in Multiboot mode with a\u0147GameBoy Advance Link\u0147Cable.\u0147\u0147Then, press the A button\u0147to begin sending Pok\u00e9\u0147Transporter GB to the\u0147second GameBoy Advance.\u019e"}, "send_multiboot_wait": {"bytes": "0xcd, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0xfe, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0xfe, 0xeb, 0xd5, 0xdd, 0xe8, 0xad, 0xfe, 0xfe, 0xc2, 0xe3, 0xe0, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbc, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xad, 0xff", "numLines": 7, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Sending Pok\u00e9 Transporter\u0147GB to second GameBoy\u0147Advance system. Please\u0147wait.\u0147\u0147Hold the B Button to\u0147cancel.\u019e"}, "send_multiboot_success": {"bytes": "0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xab, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xd5, 0xed, 0xfe, 0xe2, 0xe3, 0xeb, 0x0, 0xe4, 0xe3, 0xeb, 0xd9, 0xe6, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xad, 0xff", "numLines": 7, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "\u0147Pok\u00e9 Transporter GB was\u0147sent successfully! You may\u0147now power off this GameBoy\u0147Advance system.\u019e"}, "send_multiboot_failure": {"bytes": "0xfe, 0xbb, 0xe2, 0x0, 0xd9, 0xe6, 0xe6, 0xe3, 0xe6, 0x0, 0xe3, 0xd7, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0xfe, 0xc1, 0xbc, 0xad, 0x0, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xe6, 0xe9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xfe, 0xe7, 0xd7, 0xe6, 0xd9, 0xd9, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xad, 0xff", "numLines": 7, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "\u0147An error occurred while\u0147sending Pok\u00e9 Transporter\u0147GB. Press the A button to\u0147return to the instructions\u0147screen and try again.\u019e"}, "kanto_name": {"bytes": "0xc5, 0xbb, 0xc8, 0xce, 0xc9, 0xf0, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "KANTO:\u019e"}, "johto_name": {"bytes": "0xc4, 0xc9, 0xc2, 0xce, 0xc9, 0xf0, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "JOHTO:\u019e"}}, "CREDITS": {"credits_page_1": {"bytes": "0xc6, 0xd9, 0xd5, 0xd8, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xf0, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Lead developer:\u0147\u0147The Gears of Progress\u019e"}, "credits_page_2": {"bytes": "0xc6, 0xe3, 0xdb, 0xe3, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xe3, 0xae, 0xdd, 0xd8, 0xd9, 0xd5, 0xe8, 0xe3, 0xe6, 0xf0, 0xfe, 0xfe, 0xae, 0xc4, 0xe3, 0xe1, 0xd9, 0xfe, 0xfe, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xeb, 0xe3, 0xe6, 0xdf, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xc4, 0x0, 0xbc, 0xdd, 0xe6, 0xd8, 0xe1, 0xd5, 0xe2, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Logo and co-ideator:\u0147\u0147-Jome\u0147\u0147Spritework:\u0147\u0147-LJ Birdman\u019e"}, "credits_page_3": {"bytes": "0xc3, 0xd7, 0xe3, 0xe2, 0x0, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xe9, 0xdd, 0xdb, 0xdd, 0xce, 0xc5, 0xc9, 0xfe, 0xae, 0xc1, 0xe9, 0xdd, 0xbb, 0xd6, 0xd9, 0xe0, 0xfe, 0xae, 0xcd, 0xe3, 0xe9, 0xe6, 0xbb, 0xe4, 0xe4, 0xe0, 0xd9, 0xfe, 0x2d, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd5, 0xe6, 0xe8, 0xdd, 0xe7, 0xe8, 0xe7, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xcd, 0xdc, 0xe3, 0xeb, 0xd8, 0xe3, 0xeb, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0x0, 0xbd, 0xe0, 0xd9, 0xd5, 0xe6, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Icon Sprites:\u0147\u0147-LuigiTKO\u0147-GuiAbel\u0147-SourApple\u0147& the artists from Pok\u00e9mon\u0147Showdown and Crystal Clear\u019e"}, "credits_page_4": {"bytes": "0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xe6, 0xd6, 0xdd, 0xe8, 0xe6, 0xd5, 0xe6, 0xed, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0xfe, 0xbf, 0xec, 0xd9, 0xd7, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xce, 0xdd, 0xe1, 0xe3, 0xd0, 0xc7, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Remote and Arbitrary Code\u0147Execution assistance:\u0147\u0147-TimoVM\u019e"}, "credits_page_5": {"bytes": "0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xe6, 0xdd, 0xe0, 0xd9, 0xed, 0xdf, 0xa7, 0xa5, 0xfe, 0xae, 0xcd, 0xdc, 0xd5, 0xe3, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Development assistance:\u0147\u0147-im a blisy\u0147-rileyk64\u0147-Shao\u019e"}, "credits_page_6": {"bytes": "0xcd, 0xe4, 0xd5, 0xd7, 0xd9, 0x0, 0xc9, 0xe4, 0xe8, 0xdd, 0xe1, 0xdd, 0xee, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xf0, 0xfe, 0xfe, 0xae, 0xd9, 0xd5, 0xe7, 0xed, 0xd5, 0xe7, 0xe4, 0xdd, 0xa4, 0xa2, 0xa5, 0xfe, 0xfe, 0xc6, 0xe3, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xcc, 0xc9, 0xc7, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0xfe, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0x0, 0xda, 0xe9, 0xe2, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xf0, 0xfe, 0xfe, 0xae, 0xe6, 0xdd, 0xe7, 0xdd, 0xe2, 0xdb, 0xca, 0xdc, 0xdd, 0xe0, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Space Optimization:\u0147\u0147-easyaspi314\u0147\u0147Loader ROM and Remote\u0147Multiboot functionality:\u0147\u0147-risingPhil\u019e"}, "credits_page_7": {"bytes": "0xbc, 0xe9, 0xdd, 0xe0, 0xe8, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xbe, 0xd9, 0xea, 0xdf, 0xdd, 0xe8, 0xca, 0xe6, 0xe3, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xce, 0xe3, 0xe2, 0xd7, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xc1, 0xbc, 0xbb, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Built using:\u0147\u0147\u0147-DevkitPro\u0147-LibTonc\u0147-LibGBA\u019e"}, "credits_page_8": {"bytes": "0xc3, 0xe2, 0xe7, 0xe4, 0xdd, 0xe6, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xe7, 0x0, 0xe3, 0xda, 0xf0, 0xfe, 0xfe, 0xae, 0xc1, 0xe3, 0xe4, 0xe4, 0xdd, 0xd9, 0xe6, 0xfe, 0xae, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xcc, 0xbf, 0xce, 0xc3, 0xcc, 0xbf, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Inspired by the works of:\u0147\u0147-Goppier\u0147-Lorenzooone\u0147-im a blisy\u0147-RETIRE\u019e"}, "credits_page_9": {"bytes": "0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xe7, 0x0, 0xe9, 0xe7, 0xd9, 0xd8, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xae, 0xca, 0xc5, 0xc2, 0xd9, 0xd2, 0xfe, 0xae, 0xd1, 0xbd, 0xa4, 0xce, 0xe3, 0xe3, 0xe0, 0xfe, 0xae, 0xcf, 0xe7, 0xd9, 0xe2, 0xe8, 0xdd, 0xfe, 0xae, 0xcd, 0xd5, 0xe4, 0xe4, 0xed, 0xc7, 0xdd, 0xd8, 0xce, 0xe3, 0xbb, 0xc1, 0xbc, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Programs used:\u0147\u0147\u0147-HexManiacAdvance\u0147-PKHeX\u0147-WC3Tool\u0147-Usenti\u0147-SappyMidToAGB\u019e"}, "credits_page_10": {"bytes": "0xc9, 0xe4, 0xd9, 0xe2, 0x0, 0xcd, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xc6, 0xdd, 0xd6, 0xe6, 0xd5, 0xe6, 0xdd, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xe0, 0xdd, 0xd6, 0xe8, 0xe3, 0xe2, 0xd7, 0xae, 0xd9, 0xec, 0xd5, 0xe1, 0xe4, 0xe0, 0xd9, 0xe7, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0xae, 0xdb, 0xd6, 0xd5, 0xae, 0xe0, 0xdd, 0xe2, 0xdf, 0xae, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xae, 0xd5, 0xeb, 0xd9, 0xe7, 0xe3, 0xe1, 0xd9, 0xae, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0xae, 0xd5, 0xe6, 0xd8, 0xe9, 0xdd, 0xe2, 0xe3, 0xae, 0xe4, 0xe3, 0xdf, 0xd9, 0xae, 0xdb, 0xd9, 0xe2, 0xa3, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Open Source Code and\u0147Libraries:\u0147\u0147-libtonc-examples\u0147-PokemonGen3toGenX\u0147-gba-link-connection\u0147-awesome-gbadev\u0147-arduino-poke-gen2\u019e"}, "credits_page_11": {"bytes": "0xcc, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xd5, 0xe6, 0xe1, 0xae, 0xd8, 0xe3, 0xd7, 0xe7, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0xfe, 0xc0, 0xe9, 0xe0, 0xe0, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xe7, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe3, 0xe9, 0xe2, 0xd8, 0x0, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xb4, 0xe7, 0x0, 0xc1, 0xdd, 0xe8, 0xc2, 0xe9, 0xd6, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Research resources:\u0147\u0147-arm-docs\u0147-PokemonGen3toGenX\u0147\u0147Full links can be found on\u0147this program\u2019s GitHub\u019e"}, "credits_page_12": {"bytes": "0xcc, 0xc9, 0xc7, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xd8, 0xd9, 0xd7, 0xe3, 0xe1, 0xe4, 0xdd, 0xe0, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0x0, 0xd7, 0xe6, 0xd9, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xcc, 0xbf, 0xce, 0x0, 0xe8, 0xd9, 0xd5, 0xe1, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "ROM data obtained from\u0147decompilations created by\u0147the PRET team\u019e"}, "credits_page_13": {"bytes": "0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0xf0, 0xfe, 0xfe, 0xae, 0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe4, 0xd9, 0xd8, 0xdd, 0xd5, 0xfe, 0xae, 0xcd, 0xd9, 0xe6, 0xd9, 0xd6, 0xdd, 0xdd, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xbb, 0xca, 0xc3, 0xad, 0xd7, 0xe3, 0xe1, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Pok\u00e9mon data obtained\u0147from:\u0147\u0147-Bulbapedia\u0147-Serebii\u0147-PokeAPI.com\u019e"}, "credits_page_14": {"bytes": "0xbe, 0xdd, 0xe7, 0xd7, 0xe3, 0xe6, 0xd8, 0x0, 0xd7, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xe8, 0xed, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0x0, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0xfe, 0xae, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0xae, 0xe4, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Discord community\u0147assistance:\u0147\u0147-Hex Maniac Advance\u0147Development\u0147-gbadev\u0147-pret\u019e"}, "credits_page_15": {"bytes": "0xd1, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc7, 0xd5, 0xd8, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Writing assistance:\u0147\u0147\u0147-Mad\u019e"}, "credits_page_16": {"bytes": "0xbb, 0xe2, 0x0, 0xdd, 0xe1, 0xe1, 0xd9, 0xe2, 0xe7, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0x2d, 0xfe, 0xeb, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe1, 0xb8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xe3, 0xe9, 0xe0, 0xd8, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0xad, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "An immense thanks to\u0147Lorenzooone for their\u0147assistance in reading &\u0147writing save data. Without\u0147them, this project would\u0147not have been possible.\u019e"}, "credits_page_17": {"bytes": "0xcd, 0xe4, 0xd9, 0xd7, 0xdd, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xbf, 0xe2, 0xe2, 0xb8, 0xfe, 0xe6, 0xe3, 0xdf, 0xe9, 0xb8, 0x0, 0xcd, 0xe0, 0xd9, 0xd9, 0xe4, 0xed, 0xb8, 0x0, 0xbf, 0xee, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xe6, 0xd5, 0xdc, 0xe8, 0xe3, 0xe2, 0xdd, 0xe2, 0xb8, 0x0, 0xbc, 0xd5, 0xe7, 0xd5, 0xd6, 0xdd, 0xb8, 0x0, 0xc7, 0xd5, 0xd8, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe3, 0xe2, 0xd9, 0x0, 0xeb, 0xdc, 0xe3, 0x0, 0xdc, 0xd5, 0xe7, 0xfe, 0xe0, 0xdd, 0xe7, 0xe8, 0xd9, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xd5, 0xd6, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe1, 0xe3, 0xe2, 0xe8, 0xdc, 0xe7, 0xab, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Special thanks to Enn,\u0147roku, Sleepy, Eza,\u0147sarahtonin, Basabi, Mad,\u0147and everyone who has\u0147listened to me talk about\u0147this for months!\u019e"}, "credits_page_18": {"bytes": "0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0xfe, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xe6, 0xd9, 0xe0, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xd7, 0xe3, 0xe4, 0xed, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0xfe, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xad, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0xfe, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0x0, 0xc3, 0xe2, 0xd7, 0xad, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "All Pok\u00e9mon names,\u0147sprites, and names of\u0147related resources are\u0147copyright Nintendo,\u0147Creatures Inc., and GAME\u0147FREAK Inc.\u019e"}, "credits_page_19": {"bytes": "0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0xfe, 0xd9, 0xe2, 0xd8, 0xe3, 0xe6, 0xe7, 0xd9, 0xd8, 0x0, 0xe3, 0xe6, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xc0, 0xe6, 0xd9, 0xd5, 0xdf, 0xba, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "This project is not\u0147endorsed or supported by\u0147GameFreak/Nintendo.\u0147\u0147Please support the\u0147original developers.\u019e"}}, "PKMN_NAMES": {"0": {"bytes": "0xc7, 0xdd, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0xc8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "MissingNo\u019e"}, "1": {"bytes": "0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bulbasaur\u019e"}, "2": {"bytes": "0xc3, 0xea, 0xed, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ivysaur\u019e"}, "3": {"bytes": "0xd0, 0xd9, 0xe2, 0xe9, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venusaur\u019e"}, "4": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xe1, 0xd5, 0xe2, 0xd8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charmander\u019e"}, "5": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xe1, 0xd9, 0xe0, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charmeleon\u019e"}, "6": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xdd, 0xee, 0xd5, 0xe6, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charizard\u019e"}, "7": {"bytes": "0xcd, 0xe5, 0xe9, 0xdd, 0xe6, 0xe8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Squirtle\u019e"}, "8": {"bytes": "0xd1, 0xd5, 0xe6, 0xe8, 0xe3, 0xe6, 0xe8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wartortle\u019e"}, "9": {"bytes": "0xbc, 0xe0, 0xd5, 0xe7, 0xe8, 0xe3, 0xdd, 0xe7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Blastoise\u019e"}, "10": {"bytes": "0xbd, 0xd5, 0xe8, 0xd9, 0xe6, 0xe4, 0xdd, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Caterpie\u019e"}, "11": {"bytes": "0xc7, 0xd9, 0xe8, 0xd5, 0xe4, 0xe3, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Metapod\u019e"}, "12": {"bytes": "0xbc, 0xe9, 0xe8, 0xe8, 0xd9, 0xe6, 0xda, 0xe6, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Butterfree\u019e"}, "13": {"bytes": "0xd1, 0xd9, 0xd9, 0xd8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weedle\u019e"}, "14": {"bytes": "0xc5, 0xd5, 0xdf, 0xe9, 0xe2, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kakuna\u019e"}, "15": {"bytes": "0xbc, 0xd9, 0xd9, 0xd8, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Beedrill\u019e"}, "16": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgey\u019e"}, "17": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xe3, 0xe8, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgeotto\u019e"}, "18": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xe3, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgeot\u019e"}, "19": {"bytes": "0xcc, 0xd5, 0xe8, 0xe8, 0xd5, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rattata\u019e"}, "20": {"bytes": "0xcc, 0xd5, 0xe8, 0xdd, 0xd7, 0xd5, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raticate\u019e"}, "21": {"bytes": "0xcd, 0xe4, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Spearow\u019e"}, "22": {"bytes": "0xc0, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Fearow\u019e"}, "23": {"bytes": "0xbf, 0xdf, 0xd5, 0xe2, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ekans\u019e"}, "24": {"bytes": "0xbb, 0xe6, 0xd6, 0xe3, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Arbok\u019e"}, "25": {"bytes": "0xca, 0xdd, 0xdf, 0xd5, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pikachu\u019e"}, "26": {"bytes": "0xcc, 0xd5, 0xdd, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raichu\u019e"}, "27": {"bytes": "0xcd, 0xd5, 0xe2, 0xd8, 0xe7, 0xdc, 0xe6, 0xd9, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sandshrew\u019e"}, "28": {"bytes": "0xcd, 0xd5, 0xe2, 0xd8, 0xe7, 0xe0, 0xd5, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sandslash\u019e"}, "29": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xd5, 0xe2, 0xb6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoran\u2640\u019e"}, "30": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xdd, 0xe2, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidorina\u019e"}, "31": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe5, 0xe9, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoqueen\u019e"}, "32": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xd5, 0xe2, 0xb5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoran\u2642\u019e"}, "33": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xdd, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidorino\u019e"}, "34": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoking\u019e"}, "35": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xd5, 0xdd, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Clefairy\u019e"}, "36": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xd5, 0xd6, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Clefable\u019e"}, "37": {"bytes": "0xd0, 0xe9, 0xe0, 0xe4, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vulpix\u019e"}, "38": {"bytes": "0xc8, 0xdd, 0xe2, 0xd9, 0xe8, 0xd5, 0xe0, 0xd9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ninetales\u019e"}, "39": {"bytes": "0xc4, 0xdd, 0xdb, 0xdb, 0xe0, 0xed, 0xe4, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jigglypuff\u019e"}, "40": {"bytes": "0xd1, 0xdd, 0xdb, 0xdb, 0xe0, 0xed, 0xe8, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wigglytuff\u019e"}, "41": {"bytes": "0xd4, 0xe9, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Zubat\u019e"}, "42": {"bytes": "0xc1, 0xe3, 0xe0, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golbat\u019e"}, "43": {"bytes": "0xc9, 0xd8, 0xd8, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Oddish\u019e"}, "44": {"bytes": "0xc1, 0xe0, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gloom\u019e"}, "45": {"bytes": "0xd0, 0xdd, 0xe0, 0xd9, 0xe4, 0xe0, 0xe9, 0xe1, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vileplume\u019e"}, "46": {"bytes": "0xca, 0xd5, 0xe6, 0xd5, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Paras\u019e"}, "47": {"bytes": "0xca, 0xd5, 0xe6, 0xd5, 0xe7, 0xd9, 0xd7, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Parasect\u019e"}, "48": {"bytes": "0xd0, 0xd9, 0xe2, 0xe3, 0xe2, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venonat\u019e"}, "49": {"bytes": "0xd0, 0xd9, 0xe2, 0xe3, 0xe1, 0xe3, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venomoth\u019e"}, "50": {"bytes": "0xbe, 0xdd, 0xdb, 0xe0, 0xd9, 0xe8, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Diglett\u019e"}, "51": {"bytes": "0xbe, 0xe9, 0xdb, 0xe8, 0xe6, 0xdd, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dugtrio\u019e"}, "52": {"bytes": "0xc7, 0xd9, 0xe3, 0xeb, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Meowth\u019e"}, "53": {"bytes": "0xca, 0xd9, 0xe6, 0xe7, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Persian\u019e"}, "54": {"bytes": "0xca, 0xe7, 0xed, 0xd8, 0xe9, 0xd7, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Psyduck\u019e"}, "55": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xe9, 0xd7, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golduck\u019e"}, "56": {"bytes": "0xc7, 0xd5, 0xe2, 0xdf, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mankey\u019e"}, "57": {"bytes": "0xca, 0xe6, 0xdd, 0xe1, 0xd9, 0xd5, 0xe4, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Primeape\u019e"}, "58": {"bytes": "0xc1, 0xe6, 0xe3, 0xeb, 0xe0, 0xdd, 0xe8, 0xdc, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Growlithe\u019e"}, "59": {"bytes": "0xbb, 0xe6, 0xd7, 0xd5, 0xe2, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Arcanine\u019e"}, "60": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xd5, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwag\u019e"}, "61": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xdc, 0xdd, 0xe6, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwhirl\u019e"}, "62": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xe6, 0xd5, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwrath\u019e"}, "63": {"bytes": "0xbb, 0xd6, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Abra\u019e"}, "64": {"bytes": "0xc5, 0xd5, 0xd8, 0xd5, 0xd6, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kadabra\u019e"}, "65": {"bytes": "0xbb, 0xe0, 0xd5, 0xdf, 0xd5, 0xee, 0xd5, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Alakazam\u019e"}, "66": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machop\u019e"}, "67": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xdf, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machoke\u019e"}, "68": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xd5, 0xe1, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machamp\u019e"}, "69": {"bytes": "0xbc, 0xd9, 0xe0, 0xe0, 0xe7, 0xe4, 0xe6, 0xe3, 0xe9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bellsprout\u019e"}, "70": {"bytes": "0xd1, 0xd9, 0xd9, 0xe4, 0xdd, 0xe2, 0xd6, 0xd9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weepinbell\u019e"}, "71": {"bytes": "0xd0, 0xdd, 0xd7, 0xe8, 0xe6, 0xd9, 0xd9, 0xd6, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Victreebel\u019e"}, "72": {"bytes": "0xce, 0xd9, 0xe2, 0xe8, 0xd5, 0xd7, 0xe3, 0xe3, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tentacool\u019e"}, "73": {"bytes": "0xce, 0xd9, 0xe2, 0xe8, 0xd5, 0xd7, 0xe6, 0xe9, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tentacruel\u019e"}, "74": {"bytes": "0xc1, 0xd9, 0xe3, 0xd8, 0xe9, 0xd8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Geodude\u019e"}, "75": {"bytes": "0xc1, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Graveler\u019e"}, "76": {"bytes": "0xc1, 0xe3, 0xe0, 0xd9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golem\u019e"}, "77": {"bytes": "0xca, 0xe3, 0xe2, 0xed, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ponyta\u019e"}, "78": {"bytes": "0xcc, 0xd5, 0xe4, 0xdd, 0xd8, 0xd5, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rapidash\u019e"}, "79": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xe4, 0xe3, 0xdf, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowpoke\u019e"}, "80": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xd6, 0xe6, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowbro\u019e"}, "81": {"bytes": "0xc7, 0xd5, 0xdb, 0xe2, 0xd9, 0xe1, 0xdd, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magnemite\u019e"}, "82": {"bytes": "0xc7, 0xd5, 0xdb, 0xe2, 0xd9, 0xe8, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magneton\u019e"}, "83": {"bytes": "0xc0, 0xd5, 0xe6, 0xda, 0xd9, 0xe8, 0xd7, 0xdc, 0xb4, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Farfetch\u2019d\u019e"}, "84": {"bytes": "0xbe, 0xe3, 0xd8, 0xe9, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Doduo\u019e"}, "85": {"bytes": "0xbe, 0xe3, 0xd8, 0xe6, 0xdd, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dodrio\u019e"}, "86": {"bytes": "0xcd, 0xd9, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seel\u019e"}, "87": {"bytes": "0xbe, 0xd9, 0xeb, 0xdb, 0xe3, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dewgong\u019e"}, "88": {"bytes": "0xc1, 0xe6, 0xdd, 0xe1, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Grimer\u019e"}, "89": {"bytes": "0xc7, 0xe9, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Muk\u019e"}, "90": {"bytes": "0xcd, 0xdc, 0xd9, 0xe0, 0xe0, 0xd8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Shellder\u019e"}, "91": {"bytes": "0xbd, 0xe0, 0xe3, 0xed, 0xe7, 0xe8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cloyster\u019e"}, "92": {"bytes": "0xc1, 0xd5, 0xe7, 0xe8, 0xe0, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gastly\u019e"}, "93": {"bytes": "0xc2, 0xd5, 0xe9, 0xe2, 0xe8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Haunter\u019e"}, "94": {"bytes": "0xc1, 0xd9, 0xe2, 0xdb, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gengar\u019e"}, "95": {"bytes": "0xc9, 0xe2, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Onix\u019e"}, "96": {"bytes": "0xbe, 0xe6, 0xe3, 0xeb, 0xee, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Drowzee\u019e"}, "97": {"bytes": "0xc2, 0xed, 0xe4, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hypno\u019e"}, "98": {"bytes": "0xc5, 0xe6, 0xd5, 0xd6, 0xd6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Krabby\u019e"}, "99": {"bytes": "0xc5, 0xdd, 0xe2, 0xdb, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kingler\u019e"}, "100": {"bytes": "0xd0, 0xe3, 0xe0, 0xe8, 0xe3, 0xe6, 0xd6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Voltorb\u019e"}, "101": {"bytes": "0xbf, 0xe0, 0xd9, 0xd7, 0xe8, 0xe6, 0xe3, 0xd8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Electrode\u019e"}, "102": {"bytes": "0xbf, 0xec, 0xd9, 0xdb, 0xdb, 0xd7, 0xe9, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Exeggcute\u019e"}, "103": {"bytes": "0xbf, 0xec, 0xd9, 0xdb, 0xdb, 0xe9, 0xe8, 0xe3, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Exeggutor\u019e"}, "104": {"bytes": "0xbd, 0xe9, 0xd6, 0xe3, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cubone\u019e"}, "105": {"bytes": "0xc7, 0xd5, 0xe6, 0xe3, 0xeb, 0xd5, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Marowak\u019e"}, "106": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xe0, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmonlee\u019e"}, "107": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xd7, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmonchan\u019e"}, "108": {"bytes": "0xc6, 0xdd, 0xd7, 0xdf, 0xdd, 0xe8, 0xe9, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lickitung\u019e"}, "109": {"bytes": "0xc5, 0xe3, 0xda, 0xda, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Koffing\u019e"}, "110": {"bytes": "0xd1, 0xd9, 0xd9, 0xee, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weezing\u019e"}, "111": {"bytes": "0xcc, 0xdc, 0xed, 0xdc, 0xe3, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rhyhorn\u019e"}, "112": {"bytes": "0xcc, 0xdc, 0xed, 0xd8, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rhydon\u019e"}, "113": {"bytes": "0xbd, 0xdc, 0xd5, 0xe2, 0xe7, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chansey\u019e"}, "114": {"bytes": "0xce, 0xd5, 0xe2, 0xdb, 0xd9, 0xe0, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tangela\u019e"}, "115": {"bytes": "0xc5, 0xd5, 0xe2, 0xdb, 0xd5, 0xe7, 0xdf, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kangaskhan\u019e"}, "116": {"bytes": "0xc2, 0xe3, 0xe6, 0xe7, 0xd9, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Horsea\u019e"}, "117": {"bytes": "0xcd, 0xd9, 0xd5, 0xd8, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seadra\u019e"}, "118": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Goldeen\u019e"}, "119": {"bytes": "0xcd, 0xd9, 0xd5, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seaking\u019e"}, "120": {"bytes": "0xcd, 0xe8, 0xd5, 0xe6, 0xed, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Staryu\u019e"}, "121": {"bytes": "0xcd, 0xe8, 0xd5, 0xe6, 0xe1, 0xdd, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Starmie\u019e"}, "122": {"bytes": "0xc7, 0xe6, 0xad, 0x0, 0xc7, 0xdd, 0xe1, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mr. Mime\u019e"}, "123": {"bytes": "0xcd, 0xd7, 0xed, 0xe8, 0xdc, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Scyther\u019e"}, "124": {"bytes": "0xc4, 0xed, 0xe2, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jynx\u019e"}, "125": {"bytes": "0xbf, 0xe0, 0xd9, 0xd7, 0xe8, 0xd5, 0xd6, 0xe9, 0xee, 0xee, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Electabuzz\u019e"}, "126": {"bytes": "0xc7, 0xd5, 0xdb, 0xe1, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magmar\u019e"}, "127": {"bytes": "0xca, 0xdd, 0xe2, 0xe7, 0xdd, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pinsir\u019e"}, "128": {"bytes": "0xce, 0xd5, 0xe9, 0xe6, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tauros\u019e"}, "129": {"bytes": "0xc7, 0xd5, 0xdb, 0xdd, 0xdf, 0xd5, 0xe6, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magikarp\u019e"}, "130": {"bytes": "0xc1, 0xed, 0xd5, 0xe6, 0xd5, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gyarados\u019e"}, "131": {"bytes": "0xc6, 0xd5, 0xe4, 0xe6, 0xd5, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lapras\u019e"}, "132": {"bytes": "0xbe, 0xdd, 0xe8, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ditto\u019e"}, "133": {"bytes": "0xbf, 0xd9, 0xea, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Eevee\u019e"}, "134": {"bytes": "0xd0, 0xd5, 0xe4, 0xe3, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vaporeon\u019e"}, "135": {"bytes": "0xc4, 0xe3, 0xe0, 0xe8, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jolteon\u019e"}, "136": {"bytes": "0xc0, 0xe0, 0xd5, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Flareon\u019e"}, "137": {"bytes": "0xca, 0xe3, 0xe6, 0xed, 0xdb, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Porygon\u019e"}, "138": {"bytes": "0xc9, 0xe1, 0xd5, 0xe2, 0xed, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Omanyte\u019e"}, "139": {"bytes": "0xc9, 0xe1, 0xd5, 0xe7, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Omastar\u019e"}, "140": {"bytes": "0xc5, 0xd5, 0xd6, 0xe9, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kabuto\u019e"}, "141": {"bytes": "0xc5, 0xd5, 0xd6, 0xe9, 0xe8, 0xe3, 0xe4, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kabutops\u019e"}, "142": {"bytes": "0xbb, 0xd9, 0xe6, 0xe3, 0xd8, 0xd5, 0xd7, 0xe8, 0xed, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Aerodactyl\u019e"}, "143": {"bytes": "0xcd, 0xe2, 0xe3, 0xe6, 0xe0, 0xd5, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Snorlax\u019e"}, "144": {"bytes": "0xbb, 0xe6, 0xe8, 0xdd, 0xd7, 0xe9, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Articuno\u019e"}, "145": {"bytes": "0xd4, 0xd5, 0xe4, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Zapdos\u019e"}, "146": {"bytes": "0xc7, 0xe3, 0xe0, 0xe8, 0xe6, 0xd9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Moltres\u019e"}, "147": {"bytes": "0xbe, 0xe6, 0xd5, 0xe8, 0xdd, 0xe2, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dratini\u019e"}, "148": {"bytes": "0xbe, 0xe6, 0xd5, 0xdb, 0xe3, 0xe2, 0xd5, 0xdd, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dragonair\u019e"}, "149": {"bytes": "0xbe, 0xe6, 0xd5, 0xdb, 0xe3, 0xe2, 0xdd, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dragonite\u019e"}, "150": {"bytes": "0xc7, 0xd9, 0xeb, 0xe8, 0xeb, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mewtwo\u019e"}, "151": {"bytes": "0xc7, 0xd9, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mew\u019e"}, "152": {"bytes": "0xbd, 0xdc, 0xdd, 0xdf, 0xe3, 0xe6, 0xdd, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chikorita\u019e"}, "153": {"bytes": "0xbc, 0xd5, 0xed, 0xe0, 0xd9, 0xd9, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bayleef\u019e"}, "154": {"bytes": "0xc7, 0xd9, 0xdb, 0xd5, 0xe2, 0xdd, 0xe9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Meganium\u019e"}, "155": {"bytes": "0xbd, 0xed, 0xe2, 0xd8, 0xd5, 0xe5, 0xe9, 0xdd, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cyndaquil\u019e"}, "156": {"bytes": "0xcb, 0xe9, 0xdd, 0xe0, 0xd5, 0xea, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Quilava\u019e"}, "157": {"bytes": "0xce, 0xed, 0xe4, 0xdc, 0xe0, 0xe3, 0xe7, 0xdd, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Typhlosion\u019e"}, "158": {"bytes": "0xce, 0xe3, 0xe8, 0xe3, 0xd8, 0xdd, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Totodile\u019e"}, "159": {"bytes": "0xbd, 0xe6, 0xe3, 0xd7, 0xe3, 0xe2, 0xd5, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Croconaw\u019e"}, "160": {"bytes": "0xc0, 0xd9, 0xe6, 0xd5, 0xe0, 0xdd, 0xdb, 0xd5, 0xe8, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Feraligatr\u019e"}, "161": {"bytes": "0xcd, 0xd9, 0xe2, 0xe8, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sentret\u019e"}, "162": {"bytes": "0xc0, 0xe9, 0xe6, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Furret\u019e"}, "163": {"bytes": "0xc2, 0xe3, 0xe3, 0xe8, 0xdc, 0xe3, 0xe3, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hoothoot\u019e"}, "164": {"bytes": "0xc8, 0xe3, 0xd7, 0xe8, 0xe3, 0xeb, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Noctowl\u019e"}, "165": {"bytes": "0xc6, 0xd9, 0xd8, 0xed, 0xd6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ledyba\u019e"}, "166": {"bytes": "0xc6, 0xd9, 0xd8, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ledian\u019e"}, "167": {"bytes": "0xcd, 0xe4, 0xdd, 0xe2, 0xd5, 0xe6, 0xd5, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Spinarak\u019e"}, "168": {"bytes": "0xbb, 0xe6, 0xdd, 0xd5, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ariados\u019e"}, "169": {"bytes": "0xbd, 0xe6, 0xe3, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Crobat\u019e"}, "170": {"bytes": "0xbd, 0xdc, 0xdd, 0xe2, 0xd7, 0xdc, 0xe3, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chinchou\u019e"}, "171": {"bytes": "0xc6, 0xd5, 0xe2, 0xe8, 0xe9, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lanturn\u019e"}, "172": {"bytes": "0xca, 0xdd, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pichu\u019e"}, "173": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xda, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cleffa\u019e"}, "174": {"bytes": "0xc3, 0xdb, 0xdb, 0xe0, 0xed, 0xd6, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Igglybuff\u019e"}, "175": {"bytes": "0xce, 0xe3, 0xdb, 0xd9, 0xe4, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Togepi\u019e"}, "176": {"bytes": "0xce, 0xe3, 0xdb, 0xd9, 0xe8, 0xdd, 0xd7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Togetic\u019e"}, "177": {"bytes": "0xc8, 0xd5, 0xe8, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Natu\u019e"}, "178": {"bytes": "0xd2, 0xd5, 0xe8, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Xatu\u019e"}, "179": {"bytes": "0xc7, 0xd5, 0xe6, 0xd9, 0xd9, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mareep\u019e"}, "180": {"bytes": "0xc0, 0xe0, 0xd5, 0xd5, 0xda, 0xda, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Flaaffy\u019e"}, "181": {"bytes": "0xbb, 0xe1, 0xe4, 0xdc, 0xd5, 0xe6, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ampharos\u019e"}, "182": {"bytes": "0xbc, 0xd9, 0xe0, 0xe0, 0xe3, 0xe7, 0xe7, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bellossom\u019e"}, "183": {"bytes": "0xc7, 0xd5, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Marill\u019e"}, "184": {"bytes": "0xbb, 0xee, 0xe9, 0xe1, 0xd5, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Azumarill\u019e"}, "185": {"bytes": "0xcd, 0xe9, 0xd8, 0xe3, 0xeb, 0xe3, 0xe3, 0xd8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sudowoodo\u019e"}, "186": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xe8, 0xe3, 0xd9, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Politoed\u019e"}, "187": {"bytes": "0xc2, 0xe3, 0xe4, 0xe4, 0xdd, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hoppip\u019e"}, "188": {"bytes": "0xcd, 0xdf, 0xdd, 0xe4, 0xe0, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Skiploom\u019e"}, "189": {"bytes": "0xc4, 0xe9, 0xe1, 0xe4, 0xe0, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jumpluff\u019e"}, "190": {"bytes": "0xbb, 0xdd, 0xe4, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Aipom\u019e"}, "191": {"bytes": "0xcd, 0xe9, 0xe2, 0xdf, 0xd9, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sunkern\u019e"}, "192": {"bytes": "0xcd, 0xe9, 0xe2, 0xda, 0xe0, 0xe3, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sunflora\u019e"}, "193": {"bytes": "0xd3, 0xd5, 0xe2, 0xe1, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Yanma\u019e"}, "194": {"bytes": "0xd1, 0xe3, 0xe3, 0xe4, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wooper\u019e"}, "195": {"bytes": "0xcb, 0xe9, 0xd5, 0xdb, 0xe7, 0xdd, 0xe6, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Quagsire\u019e"}, "196": {"bytes": "0xbf, 0xe7, 0xe4, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Espeon\u019e"}, "197": {"bytes": "0xcf, 0xe1, 0xd6, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Umbreon\u019e"}, "198": {"bytes": "0xc7, 0xe9, 0xe6, 0xdf, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Murkrow\u019e"}, "199": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowking\u019e"}, "200": {"bytes": "0xc7, 0xdd, 0xe7, 0xd8, 0xe6, 0xd9, 0xd5, 0xea, 0xe9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Misdreavus\u019e"}, "201": {"bytes": "0xcf, 0xe2, 0xe3, 0xeb, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Unown\u019e"}, "202": {"bytes": "0xd1, 0xe3, 0xd6, 0xd6, 0xe9, 0xda, 0xda, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wobbuffet\u019e"}, "203": {"bytes": "0xc1, 0xdd, 0xe6, 0xd5, 0xda, 0xd5, 0xe6, 0xdd, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Girafarig\u019e"}, "204": {"bytes": "0xca, 0xdd, 0xe2, 0xd9, 0xd7, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pineco\u019e"}, "205": {"bytes": "0xc0, 0xe3, 0xe6, 0xe6, 0xd9, 0xe8, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Forretress\u019e"}, "206": {"bytes": "0xbe, 0xe9, 0xe2, 0xe7, 0xe4, 0xd5, 0xe6, 0xd7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dunsparce\u019e"}, "207": {"bytes": "0xc1, 0xe0, 0xdd, 0xdb, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gligar\u019e"}, "208": {"bytes": "0xcd, 0xe8, 0xd9, 0xd9, 0xe0, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Steelix\u019e"}, "209": {"bytes": "0xcd, 0xe2, 0xe9, 0xd6, 0xd6, 0xe9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Snubbull\u019e"}, "210": {"bytes": "0xc1, 0xe6, 0xd5, 0xe2, 0xd6, 0xe9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Granbull\u019e"}, "211": {"bytes": "0xcb, 0xeb, 0xdd, 0xe0, 0xda, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Qwilfish\u019e"}, "212": {"bytes": "0xcd, 0xd7, 0xdd, 0xee, 0xe3, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Scizor\u019e"}, "213": {"bytes": "0xcd, 0xdc, 0xe9, 0xd7, 0xdf, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Shuckle\u019e"}, "214": {"bytes": "0xc2, 0xd9, 0xe6, 0xd5, 0xd7, 0xe6, 0xe3, 0xe7, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Heracross\u019e"}, "215": {"bytes": "0xcd, 0xe2, 0xd9, 0xd5, 0xe7, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sneasel\u019e"}, "216": {"bytes": "0xce, 0xd9, 0xd8, 0xd8, 0xdd, 0xe9, 0xe6, 0xe7, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Teddiursa\u019e"}, "217": {"bytes": "0xcf, 0xe6, 0xe7, 0xd5, 0xe6, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ursaring\u019e"}, "218": {"bytes": "0xcd, 0xe0, 0xe9, 0xdb, 0xe1, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slugma\u019e"}, "219": {"bytes": "0xc7, 0xd5, 0xdb, 0xd7, 0xd5, 0xe6, 0xdb, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magcargo\u019e"}, "220": {"bytes": "0xcd, 0xeb, 0xdd, 0xe2, 0xe9, 0xd6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Swinub\u019e"}, "221": {"bytes": "0xca, 0xdd, 0xe0, 0xe3, 0xe7, 0xeb, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Piloswine\u019e"}, "222": {"bytes": "0xbd, 0xe3, 0xe6, 0xe7, 0xe3, 0xe0, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Corsola\u019e"}, "223": {"bytes": "0xcc, 0xd9, 0xe1, 0xe3, 0xe6, 0xd5, 0xdd, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Remoraid\u019e"}, "224": {"bytes": "0xc9, 0xd7, 0xe8, 0xdd, 0xe0, 0xe0, 0xd9, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Octillery\u019e"}, "225": {"bytes": "0xbe, 0xd9, 0xe0, 0xdd, 0xd6, 0xdd, 0xe6, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Delibird\u019e"}, "226": {"bytes": "0xc7, 0xd5, 0xe2, 0xe8, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mantine\u019e"}, "227": {"bytes": "0xcd, 0xdf, 0xd5, 0xe6, 0xe1, 0xe3, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Skarmory\u019e"}, "228": {"bytes": "0xc2, 0xe3, 0xe9, 0xe2, 0xd8, 0xe3, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Houndour\u019e"}, "229": {"bytes": "0xc2, 0xe3, 0xe9, 0xe2, 0xd8, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Houndoom\u019e"}, "230": {"bytes": "0xc5, 0xdd, 0xe2, 0xdb, 0xd8, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kingdra\u019e"}, "231": {"bytes": "0xca, 0xdc, 0xd5, 0xe2, 0xe4, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Phanpy\u019e"}, "232": {"bytes": "0xbe, 0xe3, 0xe2, 0xe4, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Donphan\u019e"}, "233": {"bytes": "0xca, 0xe3, 0xe6, 0xed, 0xdb, 0xe3, 0xe2, 0xa3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Porygon2\u019e"}, "234": {"bytes": "0xcd, 0xe8, 0xd5, 0xe2, 0xe8, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Stantler\u019e"}, "235": {"bytes": "0xcd, 0xe1, 0xd9, 0xd5, 0xe6, 0xdb, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Smeargle\u019e"}, "236": {"bytes": "0xce, 0xed, 0xe6, 0xe3, 0xdb, 0xe9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tyrogue\u019e"}, "237": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xe8, 0xe3, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmontop\u019e"}, "238": {"bytes": "0xcd, 0xe1, 0xe3, 0xe3, 0xd7, 0xdc, 0xe9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Smoochum\u019e"}, "239": {"bytes": "0xbf, 0xe0, 0xd9, 0xdf, 0xdd, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Elekid\u019e"}, "240": {"bytes": "0xc7, 0xd5, 0xdb, 0xd6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magby\u019e"}, "241": {"bytes": "0xc7, 0xdd, 0xe0, 0xe8, 0xd5, 0xe2, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Miltank\u019e"}, "242": {"bytes": "0xbc, 0xe0, 0xdd, 0xe7, 0xe7, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Blissey\u019e"}, "243": {"bytes": "0xcc, 0xd5, 0xdd, 0xdf, 0xe3, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raikou\u019e"}, "244": {"bytes": "0xbf, 0xe2, 0xe8, 0xd9, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Entei\u019e"}, "245": {"bytes": "0xcd, 0xe9, 0xdd, 0xd7, 0xe9, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Suicune\u019e"}, "246": {"bytes": "0xc6, 0xd5, 0xe6, 0xea, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Larvitar\u019e"}, "247": {"bytes": "0xca, 0xe9, 0xe4, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pupitar\u019e"}, "248": {"bytes": "0xce, 0xed, 0xe6, 0xd5, 0xe2, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tyranitar\u019e"}, "249": {"bytes": "0xc6, 0xe9, 0xdb, 0xdd, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lugia\u019e"}, "250": {"bytes": "0xc2, 0xe3, 0xae, 0xc9, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ho-Oh\u019e"}, "251": {"bytes": "0xbd, 0xd9, 0xe0, 0xd9, 0xd6, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Celebi\u019e"}}, "Warnings": {"0": "Warning! ' found, replacing with \u2019 !", "1": "Warning! ' found, replacing with \u2019 !", "2": "Warning! ' found, replacing with \u2019 !", "3": "Warning! ' found, replacing with \u2019 !", "4": "Warning! ' found, replacing with \u2019 !", "5": "Warning! ' found, replacing with \u2019 !", "6": "Warning! ' found, replacing with \u2019 !", "7": "Warning! ' found, replacing with \u2019 !", "8": "Warning! ' found, replacing with \u2019 !", "9": "Warning! ' found, replacing with \u2019 !", "10": "Warning! ' found, replacing with \u2019 !", "11": "Warning! ' found, replacing with \u2019 !", "12": "Warning! ' found, replacing with \u2019 !", "13": "Warning! ' found, replacing with \u2019 !", "14": "Warning! ' found, replacing with \u2019 !", "15": "Warning! ' found, replacing with \u2019 !", "16": "Warning! ' found, replacing with \u2019 !", "17": "Warning! ' found, replacing with \u2019 !", "18": "Warning! ' found, replacing with \u2019 !", "19": "Warning! ' found, replacing with \u2019 !", "20": "Warning! ' found, replacing with \u2019 !", "21": "Warning! ' found, replacing with \u2019 !", "22": "Warning! ' found, replacing with \u2019 !", "23": "Warning! ' found, replacing with \u2019 !", "24": "Warning! ' found, replacing with \u2019 !", "25": "Warning! ' found, replacing with \u2019 !", "26": "Warning! ' found, replacing with \u2019 !", "27": "Warning! ' found, replacing with \u2019 !", "28": "Warning! ' found, replacing with \u2019 !", "29": "Warning! ' found, replacing with \u2019 !", "30": "Warning! ' found, replacing with \u2019 !", "31": "Warning! ' found, replacing with \u2019 !", "32": "Warning! ' found, replacing with \u2019 !", "33": "Warning! ' found, replacing with \u2019 !", "34": "Warning! ' found, replacing with \u2019 !", "35": "Warning! ' found, replacing with \u2019 !", "36": "Warning! ' found, replacing with \u2019 !", "37": "Warning! ' found, replacing with \u2019 !", "38": "Warning! ' found, replacing with \u2019 !", "39": "Warning! ' found, replacing with \u2019 !", "40": "Warning! ' found, replacing with \u2019 !", "41": "Warning! ' found, replacing with \u2019 !", "42": "Warning! ' found, replacing with \u2019 !", "43": "Warning! ' found, replacing with \u2019 !", "44": "Warning! ' found, replacing with \u2019 !", "45": "Warning! ' found, replacing with \u2019 !", "46": "Warning! ' found, replacing with \u2019 !", "47": "Warning! ' found, replacing with \u2019 !", "48": "Warning! ' found, replacing with \u2019 !", "49": "Warning! ' found, replacing with \u2019 !", "50": "Warning! ' found, replacing with \u2019 !", "51": "Warning! ' found, replacing with \u2019 !", "52": "Warning! ' found, replacing with \u2019 !", "53": "Warning! ' found, replacing with \u2019 !", "54": "Warning! ' found, replacing with \u2019 !"}, "Errors": {}}, "SpanishLA": {"PTGB": {"DIA_OPEN": {"bytes": "0xc2, 0xd9, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xab, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xd9, 0xe2, 0xe2, 0xd9, 0xe0, 0xad, 0x0, 0xbb, 0xe7, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xd9, 0xb8, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xd5, 0x0, 0xe7, 0xd7, 0xdd, 0xd9, 0xe2, 0xe8, 0xdd, 0xe7, 0xe8, 0xad, 0x0, 0xc3, 0xe2, 0xfe, 0xda, 0xd5, 0xd7, 0xe8, 0xb8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xe9, 0xd6, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe7, 0xfe, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0xab, 0xfb, 0xc7, 0xed, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe0, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xea, 0xd5, 0xe6, 0xdd, 0xe3, 0xe9, 0xe7, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xe7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xdc, 0xd5, 0xd8, 0xfe, 0xd5, 0xe2, 0xed, 0x0, 0xd6, 0xe6, 0xd9, 0xd5, 0xdf, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0xe7, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xad, 0xad, 0xfb, 0xcd, 0xe3, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0xb4, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xdd, 0xe2, 0xdb, 0xfe, 0xe3, 0xe2, 0x0, 0xd5, 0x0, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0xfe, 0xe3, 0xe0, 0xd8, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0xab, 0xfb, 0xc3, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xdc, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0xb8, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xb4, 0xe7, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xdd, 0xe2, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd9, 0xed, 0x0, 0xe1, 0xd9, 0xd9, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0xfe, 0xe6, 0xd9, 0xd5, 0xe0, 0xab, 0xfb, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xda, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe1, 0xed, 0x0, 0xdb, 0xe3, 0xd5, 0xe0, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xd8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xd5, 0xe1, 0xd9, 0xae, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb4, 0xe7, 0xfe, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xfb, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xe2, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe9, 0xe8, 0xfe, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xe7, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xa3, 0xa6, 0xa1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xd7, 0xd5, 0xe8, 0xd5, 0xe0, 0xe3, 0xdb, 0xe9, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xed, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xbe, 0xd9, 0xec, 0xae, 0x0, 0xe3, 0xe6, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe6, 0xe8, 0xad, 0xfb, 0xbc, 0xe9, 0xe8, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xae, 0xfe, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xe6, 0xd9, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd8, 0xe6, 0xd9, 0xd5, 0xe1, 0xe7, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xd5, 0xe0, 0xe0, 0xab, 0xfb, 0xc9, 0xe2, 0xd9, 0x0, 0xe0, 0xd5, 0xe7, 0xe8, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0xb8, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0xae, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xdb, 0xe3, 0xd9, 0xe7, 0x0, 0xeb, 0xe6, 0xe3, 0xe2, 0xdb, 0xab, 0xfe, 0xc3, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdf, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xad, 0xad, 0xad, 0xfb, 0xeb, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0xb8, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hey there! I\u2019m Professor Fennel. As\u0147you can see, I\u2019m a scientist. In\u0147fact, the subject I\u2019m researching is\u0147Trainers!\u023cMy dream is to collect save files of\u0147various trainers, but I haven\u2019t had\u0147any breakthroughs yet...\u023cSo in the meantime, I\u2019ve been working\u0147on a different project with one of my\u0147old friends!\u023cIn my home region, there\u2019s a location\u0147that can make a Pok\u00e9mon\u2019s dreams into\u0147reality.\u023cThis means that any other Pok\u00e9mon\u0147they meet in their dreams become\u0147real!\u023cThat\u2019s fantastic, but my goal is to\u0147do the same- just with a trainer\u2019s\u0147dream instead! That\u2019s why I need your\u0147help!\u023cI want to bring as many Pok\u00e9mon out\u0147of your dreams as possible!\u023cThere\u2019s just over 250 Pok\u00e9mon I want\u0147to catalogue in my Dream Pok\u00e9Dex- or\u0147Dream Dex for short.\u023cBut I\u2019ll let you keep any Pok\u00e9mon-\u0147they\u2019re from your dreams after all!\u023cOne last note, save data backups are\u0147recommended- just on the off chance\u0147that something goes wrong!\u0147I think that\u2019s everything...\u023cwhenever you\u2019re ready to start, just\u0147let me know!\u019e"}, "DIA_E4": {"bytes": "0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xb4, 0xe1, 0x0, 0xe8, 0xdc, 0xe6, 0xdd, 0xe0, 0xe0, 0xd9, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0xfe, 0xd8, 0xd9, 0xd7, 0xdd, 0xd8, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe3, 0xe9, 0xe6, 0x0, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xd9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd6, 0xd9, 0xe7, 0xe8, 0xab, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd5, 0xe8, 0xd9, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbf, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xc0, 0xe3, 0xe9, 0xe6, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xd9, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xdc, 0xd5, 0xe1, 0xe4, 0xdd, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi trainer! I\u2019m thrilled you\u2019ve\u0147decided to help with our research,\u0147but we need the best of the best!\u023cCome back after you\u2019ve beaten the\u0147Elite Four and become the Champion!\u019e"}, "DIA_MG_FRLGE": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0xfe, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xae, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xc1, 0xc3, 0xc0, 0xce, 0xab, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe2, 0xd9, 0xd5, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xc7, 0xd5, 0xe6, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xda, 0xdd, 0xe0, 0xe0, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe2, 0xd5, 0xdd, 0xe6, 0xd9, 0x0, 0xd5, 0xe7, 0xfe, 0xda, 0xe3, 0xe0, 0xe0, 0xe3, 0xeb, 0xe7, 0xf0, 0x0, 0xc6, 0xc3, 0xc8, 0xc5, 0x0, 0xce, 0xc9, 0xc1, 0xbf, 0xce, 0xc2, 0xbf, 0xcc, 0x0, 0xd1, 0xc3, 0xce, 0xc2, 0x0, 0xbb, 0xc6, 0xc6, 0xad, 0xfb, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xdb, 0xe3, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, one more thing to take\u0147care of before we can begin- you need\u0147to enable MYSTERY GIFT!\u023cHead to the nearest Pok\u00e9 Mart and\u0147fill out the questionnaire as\u0147follows: LINK TOGETHER WITH ALL.\u023cAfter that, you should be all set to\u0147go! See you soon!\u019e"}, "DIA_MG_RS": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0xfe, 0xd7, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xae, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xe2, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0xab, 0xfb, 0xc2, 0xd9, 0xd5, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbf, 0xce, 0xbb, 0xc6, 0xbc, 0xcf, 0xcc, 0xc1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xbd, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xe2, 0x0, 0xe2, 0xd9, 0xec, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0xf0, 0xfe, 0xc7, 0xd3, 0xcd, 0xce, 0xbf, 0xcc, 0xd3, 0x0, 0xbf, 0xd0, 0xbf, 0xc8, 0xce, 0x0, 0xc3, 0xcd, 0x0, 0xbf, 0xd2, 0xbd, 0xc3, 0xce, 0xc3, 0xc8, 0xc1, 0xad, 0x0, 0xbb, 0xda, 0xe8, 0xd9, 0xe6, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0xb8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xdc, 0xe3, 0xe9, 0xe0, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdb, 0xe3, 0xab, 0xfb, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0xe3, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, one more thing to take\u0147care of before we can begin- you need\u0147to enable MYSTERY EVENT!\u023cHead to the PETALBURG Pok\u00e9mon Center\u0147and tell the man next to the PC:\u0147MYSTERY EVENT IS EXCITING. After\u0147that, you should be all set to go!\u023cSee you soon!\u019e"}, "DIA_LETS_START": {"bytes": "0xca, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0xb8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xc3, 0xfe, 0xe2, 0xd9, 0xd9, 0xd8, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xdb, 0xd9, 0xe8, 0x0, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0xd9, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Perfect, that\u2019s all the information I\u0147need! Let\u2019s get started!\u019e"}, "DIA_START": {"bytes": "0xc9, 0xe2, 0x0, 0xd5, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xb8, 0xfe, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xdd, 0xe7, 0xdc, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xad, 0xfb, 0xc3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xad, 0xfb, 0xce, 0xdc, 0xd9, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xda, 0xd5, 0xe1, 0xdd, 0xe0, 0xed, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xfe, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0x0, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0xad, 0xfb, 0xc9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0xb8, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xbd, 0xe0, 0xe9, 0xd6, 0xfe, 0xd5, 0xe8, 0xe8, 0xd9, 0xe2, 0xd8, 0xd5, 0xe2, 0xe8, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0x0, 0xdd, 0xe2, 0xdd, 0xe8, 0xdd, 0xd5, 0xe8, 0xd9, 0x0, 0xd5, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xd9, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "On a second Game Boy family system,\u0147please load the Game Boy Pok\u00e9mon game\u0147you wish to transfer from.\u023cIn your Game Boy Pok\u00e9mon game, make\u0147your current box the one you want to\u0147transfer from.\u023cThen connect this Game Boy Advance to\u0147the other Game Boy family system\u0147using a Game Boy Color link cable.\u023cOnce you\u2019re ready, press A on this\u0147device, talk to the Cable Club\u0147attendant, and then initiate a trade.\u019e"}, "DIA_TRANS_GOOD": {"bytes": "0xbb, 0xe1, 0xd5, 0xee, 0xdd, 0xe2, 0xdb, 0xab, 0x0, 0xc0, 0xd5, 0xe2, 0xe8, 0xd5, 0xe7, 0xe8, 0xdd, 0xd7, 0xab, 0x0, 0xbf, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0xfe, 0xe4, 0xd9, 0xe6, 0xda, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Amazing! Fantastic! Everything went\u0147perfectly!\u019e"}, "DIA_NEW_DEX": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xdd, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xab, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xd9, 0xec, 0xe8, 0xe6, 0xd5, 0x0, 0xe7, 0xeb, 0xd9, 0xd9, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xe6, 0xd9, 0xeb, 0xd5, 0xe6, 0xd8, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like there\u2019s at least one\u0147new Pok\u00e9mon here that isn\u2019t in the\u0147Dream Dex! I\u2019ll give them something\u0147extra sweet as a reward for you both.\u019e"}, "DIA_NO_NEW_DEX": {"bytes": "0xc3, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xd5, 0xe2, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xfe, 0xe2, 0xd9, 0xeb, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0xfe, 0xe3, 0xdf, 0xd5, 0xed, 0xab, 0x0, 0xc3, 0xe8, 0xb4, 0xe7, 0x0, 0xdd, 0xe1, 0xe4, 0xe3, 0xe6, 0xe8, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0xfe, 0xe6, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe9, 0xe0, 0xe8, 0xe7, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe1, 0xe9, 0xe0, 0xe8, 0xdd, 0xe4, 0xe0, 0xd9, 0x0, 0xe8, 0xd9, 0xe7, 0xe8, 0xe7, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It doesn\u2019t look like there\u2019s anything\u0147new for your Dream Dex, but that\u2019s\u0147okay! It\u2019s important to confirm\u0147research results with multiple tests!\u019e"}, "DIA_SEND_FRIEND_KANTO": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0x0, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0x0, 0xe3, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xe3, 0xe2, 0x0, 0xcd, 0xd9, 0xea, 0xd9, 0xe2, 0x0, 0xc3, 0xe7, 0xe0, 0xd5, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up! They live just south of\u0147the Pok\u00e9mon center on Seven Island!\u019e"}, "DIA_SEND_FRIEND_HOENN_RS": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xc7, 0xe3, 0xe7, 0xe7, 0xd8, 0xd9, 0xd9, 0xe4, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up!\u023cThey live just southeast of the\u0147Pok\u00e9mon center in Mossdeep City!\u019e"}, "DIA_SEND_FRIEND_HOENN_E": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xdb, 0xe3, 0xdd, 0xe2, 0xdb, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe7, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xe7, 0x0, 0xe7, 0xe3, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xd5, 0xe2, 0xfe, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xe9, 0xe4, 0xab, 0xfb, 0xce, 0xdc, 0xd9, 0xed, 0x0, 0xe0, 0xdd, 0xea, 0xd9, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe7, 0xe3, 0xe9, 0xe8, 0xdc, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xd9, 0xe2, 0xe8, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xcd, 0xe3, 0xe3, 0xe8, 0xe3, 0xe4, 0xe3, 0xe0, 0xdd, 0xe7, 0x0, 0xbd, 0xdd, 0xe8, 0xed, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m going to send these Pok\u00e9mon to\u0147one of my friends so that you can\u0147pick them up!\u023cThey live just southeast of the\u0147Pok\u00e9mon center in Sootopolis City!\u019e"}, "DIA_THANK": {"bytes": "0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe3, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xfe, 0xd1, 0xdc, 0xd9, 0xe2, 0xd9, 0xea, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe6, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xb8, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdf, 0xe2, 0xe3, 0xeb, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Thank you so much for your help!\u0147Whenever you want to transfer more\u0147Pok\u00e9mon, just let me know! See you\u0147around!\u019e"}, "DIA_GET_MON": {"bytes": "0xe9, 0xe2, 0xe9, 0xe7, 0xd9, 0xd8, 0xb8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "unused, will be removed\u019e"}, "DIA_MG_OTHER_EVENT": {"bytes": "0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xfe, 0xd8, 0xdd, 0xda, 0xda, 0xd9, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xad, 0xfe, 0xce, 0xdc, 0xd5, 0xe8, 0xb4, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xd6, 0xe0, 0xd9, 0xe1, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe3, 0xea, 0xd9, 0xe6, 0xeb, 0xe6, 0xdd, 0xe8, 0xe8, 0xd9, 0xe2, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xad, 0xfb, 0xce, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xe2, 0xe3, 0xeb, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0x0, 0xd9, 0xec, 0xe4, 0xd9, 0xe6, 0xdd, 0xd9, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0xae, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi Trainer! It looks like you have a\u0147different event currently loaded.\u0147That\u2019s no problem, but it will be\u0147overwritten if you continue.\u023cTurn off the system now if you want\u0147to experience your current event, but\u0147otherwise-\u019e"}, "DIA_PKMN_TO_COLLECT": {"bytes": "0xc2, 0xdd, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0x0, 0xe9, 0xe4, 0xad, 0xad, 0xad, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0xb4, 0xe8, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe9, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe4, 0xdd, 0xd7, 0xdf, 0xfe, 0xe8, 0xdc, 0xe3, 0xe7, 0xd9, 0x0, 0xe9, 0xe4, 0xad, 0xfb, 0xbd, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi Trainer! It looks like you still\u0147have Pok\u00e9mon to pick up... I can\u2019t\u0147send over new Pok\u00e9mon until you pick\u0147those up.\u023cCome back after you\u2019ve received them!\u019e"}, "DIA_NO_VALID_PKMN": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xce, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xd8, 0xe3, 0xd9, 0xe7, 0xe2, 0xb4, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xed, 0x0, 0xea, 0xd5, 0xe0, 0xdd, 0xd8, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xe2, 0xe3, 0xeb, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xd8, 0xe3, 0xe9, 0xd6, 0xe0, 0xd9, 0x0, 0xd7, 0xdc, 0xd9, 0xd7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xdb, 0xdd, 0xea, 0xd9, 0x0, 0xdd, 0xe8, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xe7, 0xdc, 0xe3, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry Trainer, it doesn\u2019t look like\u0147you have any valid Pok\u00e9mon in your\u0147current box right now.\u023cGo double check your current box and\u0147we can give it another shot!\u019e"}, "DIA_ASK_QUEST": {"bytes": "0xc2, 0xdd, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xab, 0x0, 0xbc, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xeb, 0xd9, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0xb8, 0x0, 0xc3, 0x0, 0xe2, 0xd9, 0xd9, 0xd8, 0xfe, 0xe8, 0xe3, 0x0, 0xd5, 0xe7, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0x0, 0xda, 0xd9, 0xeb, 0x0, 0xe5, 0xe9, 0xd9, 0xe7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Hi trainer! Before we begin, I need\u0147to ask you a few questions.\u019e"}, "DIA_WHAT_GAME_TRANS": {"bytes": "0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xac, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "And which Game Boy Pok\u00e9mon game are\u0147you transferring from?\u019e"}, "DIA_WHAT_LANG_TRANS": {"bytes": "0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xdd, 0xe2, 0xdb, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xac, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "What language is the Game Boy Pok\u00e9mon\u0147game that you\u2019re transferring from?\u019e"}, "DIA_NO_GB_ROM": {"bytes": "0xc3, 0xb4, 0xe1, 0x0, 0xe7, 0xe3, 0xe6, 0xe6, 0xed, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xea, 0xd9, 0xe6, 0xe7, 0xdd, 0xe3, 0xe2, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I\u2019m sorry, but that version in that\u0147language is not currently supported.\u019e"}, "DIA_IN_BOX": {"bytes": "0xbb, 0xe0, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xd5, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0xad, 0xfb, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xd9, 0xe1, 0xd6, 0xd9, 0xe6, 0xb8, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xd5, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdd, 0xe7, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xd9, 0xd8, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xbd, 0xbb, 0xc8, 0xc8, 0xc9, 0xce, 0x0, 0xd6, 0xd9, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xad, 0xfb, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xe3, 0xe2, 0xda, 0xdd, 0xe6, 0xe1, 0x0, 0xe3, 0xe2, 0xd7, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xb8, 0x0, 0xe3, 0xe6, 0xfe, 0xe7, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xdf, 0xd9, 0xd9, 0xe4, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe3, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Alright! Let\u2019s take a look at the\u0147Pok\u00e9mon that will be transfered.\u023cPlease remember, once a Pok\u00e9mon is\u0147transfered, it CANNOT be returned to\u0147the Game Boy Game Pak.\u023cSelect confirm once you\u2019re ready, or\u0147select cancel if you want to keep the\u0147Pok\u00e9mon on your Game Boy Game Pak.\u019e"}, "DIA_MYTHIC_CONVERT": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd5, 0x0, 0xe6, 0xd5, 0xe6, 0xd9, 0xfe, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xab, 0x0, 0xbe, 0xe9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xe6, 0xd5, 0xe6, 0xdd, 0xe8, 0xed, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xea, 0xd9, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xad, 0xfb, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xdd, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xd8, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xdd, 0xe8, 0xb4, 0xe0, 0xe0, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xd9, 0xe8, 0xfe, 0xe0, 0xe3, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xb8, 0x0, 0xc9, 0xce, 0xb8, 0x0, 0xce, 0xc3, 0xbe, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xcd, 0xdc, 0xdd, 0xe2, 0xdd, 0xe2, 0xd9, 0xe7, 0xe7, 0xad, 0xfb, 0xc9, 0xe8, 0xdc, 0xd9, 0xe6, 0xeb, 0xdd, 0xe7, 0xd9, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe0, 0xd9, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe7, 0x0, 0xdd, 0xe7, 0xb8, 0x0, 0xd6, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0xb4, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xdb, 0xe9, 0xd5, 0xe6, 0xd9, 0xe2, 0xe8, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xed, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xfe, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xda, 0xe9, 0xe8, 0xe9, 0xe6, 0xd9, 0xad, 0x0, 0xbe, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xe8, 0xd5, 0xd6, 0xe0, 0xdd, 0xee, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xac, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xd5, 0xe4, 0xe4, 0xe0, 0xed, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc7, 0xed, 0xe8, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0xe0, 0xed, 0x0, 0xdd, 0xe2, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd6, 0xe3, 0xec, 0xad, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like you have a rare\u0147Mythical Pok\u00e9mon! Due to their\u0147rarity, it seems they\u2019ve overloaded\u0147the machine.\u023cI can stablize them if you\u2019d like,\u0147but it\u2019ll change some things like met\u0147location, OT, TID, and Shininess.\u023cOtherwise I can leave them as is, but\u0147there\u2019s no guarentee that they\u2019ll be\u0147transferrable in the future. Do you\u0147want me to stablize them?\u023cThis will apply to all of the\u0147Mythical Pok\u00e9mon currently in your\u0147box.\u019e"}, "DIA_CANCEL": {"bytes": "0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0xab, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0x0, 0xdd, 0xda, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xd7, 0xdc, 0xd5, 0xe2, 0xdb, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xab, 0x0, 0xcd, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xe3, 0xe9, 0xe2, 0xd8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "No worries! Feel free to come back if\u0147you change your mind! See you around!\u019e"}, "DIA_SOME_INVALID_PKMN": {"bytes": "0xc3, 0x0, 0xe7, 0xd9, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xd5, 0xe8, 0x0, 0xe0, 0xd9, 0xd5, 0xe7, 0xe8, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0xfe, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xe2, 0xe8, 0x0, 0xd6, 0xe3, 0xec, 0xad, 0xfb, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdc, 0xe3, 0xe0, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xdd, 0xe8, 0xd9, 0xe1, 0xe7, 0x0, 0xe3, 0xe6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xdd, 0xd9, 0xd8, 0xfe, 0xdd, 0xe2, 0xd7, 0xe3, 0xe6, 0xe6, 0xd9, 0xd7, 0xe8, 0xe0, 0xed, 0x0, 0xe8, 0xdc, 0xe6, 0xe3, 0xe9, 0xdb, 0xdc, 0x0, 0xe9, 0xe2, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe7, 0xfe, 0xd7, 0xd5, 0xe2, 0xe2, 0xe3, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0xe6, 0xd9, 0xd8, 0xad, 0xfb, 0xce, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xe8, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xde, 0xe9, 0xe7, 0xe8, 0xfe, 0xda, 0xdd, 0xe2, 0xd9, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "I see there is at least one Pok\u00e9mon\u0147that cannot be transferred from your\u0147current box.\u023cPok\u00e9mon holding items or modified\u0147incorrectly through unintended means\u0147cannot be transferred.\u023cThe other Pok\u00e9mon will transfer just\u0147fine though!\u019e"}, "DIA_MENU_BACK": {"bytes": "0xc8, 0xe3, 0x0, 0xeb, 0xe3, 0xe6, 0xe6, 0xdd, 0xd9, 0xe7, 0xab, 0x0, 0xc0, 0xd9, 0xd9, 0xe0, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xfe, 0xd5, 0xe2, 0xed, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "No worries! Feel free to come back\u0147any time!\u019e"}, "DIA_IS_MISSINGNO": {"bytes": "0xad, 0xad, 0xad, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe3, 0xe2, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdd, 0xe7, 0x0, 0xe1, 0xd9, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd5, 0xd7, 0xdc, 0xdd, 0xe2, 0xd9, 0xad, 0xad, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0x0, 0xd6, 0xd9, 0x0, 0xdb, 0xe6, 0xd5, 0xe4, 0xdc, 0xdd, 0xd7, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xe3, 0xe9, 0xdb, 0xdc, 0xb8, 0x0, 0xe7, 0xe3, 0xfe, 0xeb, 0xd9, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "... It seems like one of your Pok\u00e9mon\u0147is messing with the machine... It\u0147looks to only be graphical though, so\u0147we can continue!\u019e"}, "DIA_ERROR_COLOSSEUM": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd7, 0xe3, 0xe0, 0xe3, 0xe7, 0xe7, 0xd9, 0xe9, 0xe1, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xd9, 0xd5, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe8, 0xe6, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0xfe, 0xe6, 0xe3, 0xe3, 0xe1, 0xab, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like you went to the\u0147colosseum instead of the trading\u0147room! Let\u2019s try that again!\u019e"}, "DIA_ERROR_COM_ENDED": {"bytes": "0xbd, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xd7, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xd8, 0xd9, 0xea, 0xdd, 0xd7, 0xd9, 0xfe, 0xeb, 0xd5, 0xe7, 0x0, 0xe8, 0xd9, 0xe6, 0xe1, 0xdd, 0xe2, 0xd5, 0xe8, 0xd9, 0xd8, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Communication with the other device\u0147was terminated. Let\u2019s try that again!\u019e"}, "DIA_ERROR_DISCONNECT": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xbd, 0xe3, 0xe0, 0xe3, 0xe6, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xfe, 0xd7, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xd8, 0xdd, 0xe7, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xd9, 0xd8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0xfe, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like the Game Boy Color link\u0147cable was disconnected... Let\u2019s try\u0147that again!\u019e"}, "DIA_ERROR_TIME_ONE": {"bytes": "0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0xfe, 0xe3, 0xe9, 0xe8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It looks like the connection timed\u0147out... Let\u2019s try that again!\u019e"}, "DIA_ERROR_TIME_TWO": {"bytes": "0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xe8, 0xdd, 0xe1, 0xd9, 0xd8, 0xfe, 0xe3, 0xe9, 0xe8, 0xad, 0xad, 0xad, 0x0, 0xc6, 0xd9, 0xe8, 0xb4, 0xe7, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "It seems like the connection timed\u0147out... Let\u2019s try that again!\u019e"}, "DIA_WHAT_LANG_EVENT": {"bytes": "0xd1, 0xdc, 0xd5, 0xe8, 0x0, 0xe0, 0xd5, 0xe2, 0xdb, 0xe9, 0xd5, 0xdb, 0xd9, 0x0, 0xdd, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xfe, 0xe8, 0xe3, 0xac, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "What language is the Game Boy Pok\u00e9mon\u0147game that you want to send an event\u0147to?\u019e"}, "DIA_WHAT_GAME_EVENT": {"bytes": "0xbb, 0xe2, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xd7, 0xdc, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xbc, 0xe3, 0xed, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xd8, 0xe3, 0xfe, 0xed, 0xe3, 0xe9, 0x0, 0xeb, 0xd5, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xd5, 0xe2, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xac, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "And which Game Boy Pok\u00e9mon game do\u0147you want to send an event to?\u019e"}, "DIA_K_DEX_NOT_FULL": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xa2, 0xa6, 0xa1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xeb, 0xd9, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, it looks like you\u0147haven\u2019t caught all 150 Pok\u00e9mon from\u0147the Kanto region yet.\u023cGo out and catch them all and then\u0147we\u2019ll be able to send over the event!\u019e"}, "DIA_J_DEX_NOT_FULL": {"bytes": "0xcd, 0xe3, 0xe6, 0xe6, 0xed, 0x0, 0xe8, 0xe6, 0xd5, 0xdd, 0xe2, 0xd9, 0xe6, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0xfe, 0xdc, 0xd5, 0xea, 0xd9, 0xe2, 0xb4, 0xe8, 0x0, 0xd7, 0xd5, 0xe9, 0xdb, 0xdc, 0xe8, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xaa, 0xaa, 0x0, 0xe2, 0xd9, 0xeb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xc4, 0xe3, 0xdc, 0xe8, 0xe3, 0x0, 0xe6, 0xd9, 0xdb, 0xdd, 0xe3, 0xe2, 0x0, 0xed, 0xd9, 0xe8, 0xad, 0xfb, 0xc1, 0xe3, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xd5, 0xe8, 0xd7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0x0, 0xd5, 0xe0, 0xe0, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xeb, 0xd9, 0xb4, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0x0, 0xd5, 0xd6, 0xe0, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe2, 0xe8, 0xab, 0xff", "numLines": 4, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": true, "text": "Sorry trainer, it looks like you\u0147haven\u2019t caught all 99 new Pok\u00e9mon\u0147from the Johto region yet.\u023cGo out and catch them all and then\u0147we\u2019ll be able to send over the event!\u019e"}}, "RSEFRLG": {"dia_textGreet_rse": {"bytes": "0xd1, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0xb8, 0x0, 0xc3, 0x0, 0xe8, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xe0, 0xd8, 0xfe, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0x0, 0xce, 0xcc, 0xbb, 0xc3, 0xc8, 0xbf, 0xcc, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "When I was young, I traveled the world\u0147as a POK\u00e9MON TRAINER.\u019e"}, "dia_textGreet_frlg": {"bytes": "0xc3, 0x0, 0xe1, 0xd5, 0xed, 0x0, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe1, 0xe9, 0xd7, 0xdc, 0x0, 0xe2, 0xe3, 0xeb, 0xb8, 0xfe, 0xd6, 0xe9, 0xe8, 0x0, 0xeb, 0xdc, 0xd9, 0xe2, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xed, 0xe3, 0xe9, 0xe2, 0xdb, 0xd9, 0xe6, 0xb0, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "I may not look like much now,\u0147but when I was younger\u2026\u019e"}, "dia_textMoveBox_rs": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe9, 0xe2, 0xe0, 0xe3, 0xd7, 0xdf, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd8, 0xe3, 0xe3, 0xe6, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to unlock the\u0147door!\u019e"}, "dia_textMoveBox_frlg": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xd6, 0xe3, 0xec, 0xd9, 0xe7, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to move the\u0147boxes!\u019e"}, "dia_textMoveBox_e": {"bytes": "0xfc, 0x1, 0x8, 0xc9, 0xdc, 0xb8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xe3, 0xe9, 0xe6, 0xe7, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe0, 0xd5, 0xe2, 0xe8, 0xe7, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbOh, of course, I have to move the\u0147plants!\u019e"}, "dia_textWeHere_r": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xc7, 0xbb, 0xd2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leader MAXIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_s": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xbb, 0xcc, 0xbd, 0xc2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leader ARCHIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_frlg": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc5, 0xd5, 0xe2, 0xe8, 0xe3, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xc1, 0xc3, 0xc9, 0xd0, 0xbb, 0xc8, 0xc8, 0xc3, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Kanto to find\u0147the leader GIOVANNI.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textWeHere_e": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xc2, 0xe3, 0xd9, 0xe2, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xda, 0xdd, 0xe2, 0xd8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe0, 0xd9, 0xd5, 0xd8, 0xd9, 0xe6, 0xe7, 0x0, 0xc7, 0xbb, 0xd2, 0xc3, 0xbf, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xcc, 0xbd, 0xc2, 0xc3, 0xbf, 0xad, 0xfb, 0xbb, 0xe7, 0x0, 0xeb, 0xd9, 0xe0, 0xe0, 0xb8, 0x0, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xe1, 0xed, 0x0, 0xda, 0xe6, 0xdd, 0xd9, 0xe2, 0xd8, 0xfe, 0xca, 0xe6, 0xe3, 0xda, 0xd9, 0xe7, 0xe7, 0xe3, 0xe6, 0x0, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xad, 0xfb, 0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xdd, 0xe7, 0x0, 0xeb, 0xdc, 0xed, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xdc, 0xd9, 0xe6, 0xd9, 0xb8, 0x0, 0xe2, 0xe3, 0xac, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0xfe, 0xe8, 0xd9, 0xe0, 0xe0, 0x0, 0xdc, 0xd9, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0xad, 0x0, 0xfa, 0xbd, 0xe3, 0xe1, 0xd9, 0xab, 0x0, 0xbb, 0xe0, 0xe0, 0xe3, 0xe2, 0xe7, 0x0, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: I am here in Hoenn to find\u0147the leaders MAXIE and ARCHIE.\u023cAs well, I am helping my friend\u0147Professor FENNEL.\u023cThis is why you are here, no? I shall\u0147tell her you are ready. \u015eCome! Allons y!\u019e"}, "dia_textRecieved": {"bytes": "0xfc, 0x1, 0x2, 0xfd, 0x1, 0xb4, 0xcd, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0x0, 0xeb, 0xd9, 0xe6, 0xd9, 0x0, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c1\u01b2\u00c0\u2019S POK\u00e9MON were sent to\u0147the PC!\u019e"}, "dia_textYouMustBe_first": {"bytes": "0xbb, 0xdc, 0xab, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xd6, 0xd9, 0x0, 0xfd, 0x1, 0xab, 0x0, 0xc3, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe8, 0xe3, 0xe0, 0xd8, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xd8, 0x0, 0xd6, 0xd9, 0x0, 0xd7, 0xe3, 0xe1, 0xdd, 0xe2, 0xdb, 0xad, 0xfb, 0xc9, 0xdc, 0xab, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xab, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0xab, 0xfe, 0xc9, 0xe6, 0xb8, 0x0, 0xe6, 0xd5, 0xe8, 0xdc, 0xd9, 0xe6, 0xb8, 0x0, 0xe0, 0xd9, 0xe8, 0x0, 0xe1, 0xd9, 0x0, 0xdd, 0xe2, 0xe8, 0xe6, 0xe3, 0xd8, 0xe9, 0xd7, 0xd9, 0x0, 0xe1, 0xed, 0xe7, 0xd9, 0xe0, 0xda, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "Ah! You must be \u01b2\u00c0! I was\u0147told you\u2019d be coming.\u023cOh! I still wear my disguise! Pardon!\u0147Or, rather, let me introduce myself.\u019e"}, "dia_textYouMustBe_second": {"bytes": "0xbb, 0xdc, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0x0, 0xd1, 0xd9, 0xe0, 0xd7, 0xe3, 0xe1, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xab, 0x0, 0xc1, 0xe3, 0xe3, 0xd8, 0x0, 0xe8, 0xe3, 0xfe, 0xe7, 0xd9, 0xd9, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xfb, 0xc9, 0xdc, 0xab, 0x0, 0xc3, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0x0, 0xeb, 0xd9, 0xd5, 0xe6, 0x0, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xab, 0x0, 0xca, 0xd5, 0xe6, 0xd8, 0xe3, 0xe2, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "Ah, \u01b2\u00c0! Welcome back! Good to\u0147see you again!\u023cOh! I still wear my disguise! Pardon!\u019e"}, "dia_textIAm_first": {"bytes": "0xfc, 0x1, 0x8, 0xc3, 0x0, 0xd5, 0xe1, 0x0, 0xd5, 0x0, 0xdb, 0xe0, 0xe3, 0xd6, 0xd9, 0xae, 0xe8, 0xe6, 0xe3, 0xe8, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd9, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc3, 0xe2, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xe0, 0xdd, 0xd7, 0xd9, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb0, 0x0, 0xfa, 0xbb, 0xdc, 0xb8, 0x0, 0xe2, 0xe3, 0xb8, 0x0, 0xc3, 0x0, 0xe7, 0xdc, 0xd5, 0xe0, 0xe0, 0x0, 0xdd, 0xe2, 0xda, 0xe3, 0xe6, 0xe1, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xe3, 0xda, 0x0, 0xe1, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0xfe, 0xe2, 0xd5, 0xe1, 0xd9, 0x0, 0xe3, 0xe2, 0xe0, 0xed, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbI am a globe-trotting elite of the\u0147International Police.\u023cMy name\u2026 \u015eAh, no, I shall inform you of my code\u0147name only.\u023cMy code name, it is LOOKER!\u019e"}, "dia_textIAm_second": {"bytes": "0xfc, 0x1, 0x8, 0xc3, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc3, 0xb8, 0x0, 0xdb, 0xe0, 0xe3, 0xd6, 0xd9, 0xae, 0xe8, 0xe6, 0xe3, 0xe8, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd9, 0xe0, 0xdd, 0xe8, 0xd9, 0x0, 0xe3, 0xda, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc3, 0xe2, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0x0, 0xca, 0xe3, 0xe0, 0xdd, 0xd7, 0xd9, 0xad, 0xfb, 0xc7, 0xed, 0x0, 0xd7, 0xe3, 0xd8, 0xd9, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xb8, 0x0, 0xdd, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbIt is I, globe-trotting elite of the\u0147International Police.\u023cMy code name, it is LOOKER!\u019e"}, "dia_textPCConvo": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbb, 0xdc, 0xb8, 0x0, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xab, 0x0, 0xc3, 0x0, 0xe8, 0xd5, 0xdf, 0xd9, 0x0, 0xdd, 0xe8, 0xfe, 0xfd, 0x1, 0x0, 0xdc, 0xd5, 0xe7, 0x0, 0xd5, 0xe6, 0xe6, 0xdd, 0xea, 0xd9, 0xd8, 0xac, 0xfb, 0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xc3, 0xe2, 0xd8, 0xd9, 0xd9, 0xd8, 0xab, 0x0, 0xce, 0xdc, 0xd9, 0xed, 0xb4, 0xe6, 0xd9, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xed, 0x0, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xd7, 0xd9, 0xdd, 0xea, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0xab, 0xfb, 0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xbf, 0xec, 0xd7, 0xd9, 0xe0, 0xe0, 0xd9, 0xe2, 0xe8, 0xab, 0x0, 0xc3, 0xb4, 0xe0, 0xe0, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe1, 0xfe, 0xe3, 0xea, 0xd9, 0xe6, 0x0, 0xe1, 0xe3, 0xe1, 0xd9, 0xe2, 0xe8, 0xd5, 0xe6, 0xdd, 0xe0, 0xed, 0xb0, 0x0, 0xe7, 0xe8, 0xd5, 0xe2, 0xd8, 0x0, 0xd6, 0xed, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: Ah, LOOKER! I take it\u0147\u01b2\u00c0 has arrived?\u023c\u0206\u00c0\u00cbLOOKER: Indeed! They\u2019re ready to\u0147receive their POK\u00e9MON!\u023c\u0206\u00c0\u00c9FENNEL: Excellent! I\u2019ll send them\u0147over momentarily\u2026 stand by!\u019e"}, "dia_textPCThanks": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe0, 0xe3, 0xe3, 0xdf, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe8, 0xdc, 0xdd, 0xe2, 0xdb, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe8, 0xe3, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xbd, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xab, 0xfb, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xdc, 0xd9, 0xe0, 0xe4, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: It looks like everything was\u0147sent to your PC successfully!\u023cThank you both for your help!\u019e"}, "dia_textThank": {"bytes": "0xfc, 0x1, 0x8, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe7, 0xe8, 0xe3, 0xe4, 0xe4, 0xdd, 0xe2, 0xdb, 0x0, 0xd6, 0xed, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0xfb, 0xc3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xb4, 0xe0, 0xe0, 0x0, 0xd9, 0xec, 0xd7, 0xe9, 0xe7, 0xd9, 0x0, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xe1, 0xe9, 0xe7, 0xe8, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe1, 0xed, 0x0, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xad, 0x0, 0xfa, 0xcf, 0xe2, 0xe8, 0xdd, 0xe0, 0x0, 0xe3, 0xe9, 0xe6, 0x0, 0xe4, 0xd5, 0xe8, 0xdc, 0xe7, 0x0, 0xd7, 0xe6, 0xe3, 0xe7, 0xe7, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xab, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbThanks for stopping by, \u01b2\u00c0!\u023cIf you\u2019ll excuse me, I must return to\u0147my disguise. \u015eUntil our paths cross again!\u019e"}, "dia_textPCFull": {"bytes": "0xfc, 0x1, 0x6, 0xc0, 0xbf, 0xc8, 0xc8, 0xbf, 0xc6, 0xf0, 0x0, 0xc3, 0xe8, 0x0, 0xe7, 0xd9, 0xd9, 0xe1, 0xe7, 0x0, 0xe0, 0xdd, 0xdf, 0xd9, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xbd, 0x0, 0xdd, 0xe7, 0x0, 0xda, 0xe9, 0xe0, 0xe0, 0xab, 0xfb, 0xc1, 0xe3, 0x0, 0xe1, 0xd5, 0xdf, 0xd9, 0x0, 0xe7, 0xe3, 0xe1, 0xd9, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc3, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe3, 0xea, 0xd9, 0xe6, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0x0, 0xe3, 0xda, 0x0, 0xed, 0xe3, 0xe9, 0xe6, 0x0, 0xca, 0xc9, 0xc5, 0x1b, 0xc7, 0xc9, 0xc8, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00c9FENNEL: It seems like the PC is full!\u023cGo make some room, and I can send over\u0147the rest of your POK\u00e9MON.\u019e"}, "dia_textLookerFull": {"bytes": "0xfc, 0x1, 0x8, 0xc6, 0xc9, 0xc9, 0xc5, 0xbf, 0xcc, 0xf0, 0x0, 0xcd, 0xe4, 0xd9, 0xd5, 0xdf, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0x0, 0xd5, 0xda, 0xe8, 0xd9, 0xe6, 0xfe, 0xed, 0xe3, 0xe9, 0xb4, 0xea, 0xd9, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe6, 0xe3, 0xe3, 0xe1, 0xb8, 0x0, 0xfd, 0x1, 0xab, 0xfb, 0xc3, 0xe2, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe1, 0xd9, 0xd5, 0xe2, 0xe8, 0xdd, 0xe1, 0xd9, 0xb8, 0x0, 0xc3, 0x0, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xed, 0xfe, 0xd8, 0xdd, 0xe7, 0xdb, 0xe9, 0xdd, 0xe7, 0xd9, 0xad, 0xff", "numLines": 2, "pixelsPerChar": "Variable", "pixelsInLine": 208, "includeBoxBreaks": true, "text": "\u0206\u00c0\u00cbLOOKER: Speak to me again after\u0147you\u2019ve made room, \u01b2\u00c0!\u023cIn the meantime, I will return to my\u0147disguise.\u019e"}}, "GB": {"sending_text": {"bytes": "SENDING DATA", "numLines": 0, "pixelsPerChar": "Default", "pixelsInLine": 0, "includeBoxBreaks": false}, "prof_name": {"bytes": "FENNEL", "numLines": 0, "pixelsPerChar": "Default", "pixelsInLine": 0, "includeBoxBreaks": false}}, "GENERAL": {"option_english": {"bytes": "0xbf, 0xe2, 0xdb, 0xe0, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "English\u019e"}, "option_japanese": {"bytes": "0xc4, 0xd5, 0xe4, 0xd5, 0xe2, 0xd9, 0xe7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Japanese\u019e"}, "option_spanish": {"bytes": "0xcd, 0xe4, 0xd5, 0xe2, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Spanish\u019e"}, "option_french": {"bytes": "0xc0, 0xe6, 0xd9, 0xe2, 0xd7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "French\u019e"}, "option_german": {"bytes": "0xc1, 0xd9, 0xe6, 0xe1, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "German\u019e"}, "option_italian": {"bytes": "0xc3, 0xe8, 0xd5, 0xe0, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Italian\u019e"}, "option_korean": {"bytes": "0xc5, 0xe3, 0xe6, 0xd9, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Korean\u019e"}, "option_green": {"bytes": "0xc1, 0xe6, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Green\u019e"}, "option_red": {"bytes": "0xcc, 0xd9, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Red\u019e"}, "option_blue": {"bytes": "0xbc, 0xe0, 0xe9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Blue\u019e"}, "option_yellow": {"bytes": "0xd3, 0xd9, 0xe0, 0xe0, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Yellow\u019e"}, "option_gold": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Gold\u019e"}, "option_silver": {"bytes": "0xcd, 0xdd, 0xe0, 0xea, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Silver\u019e"}, "option_crystal": {"bytes": "0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Crystal\u019e"}, "option_cancel": {"bytes": "0xbd, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Cancel\u019e"}, "press_start": {"bytes": "0xca, 0xe9, 0xe7, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xcd, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xab, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Push the Start Button!\u019e"}, "option_transfer": {"bytes": "0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xda, 0xd9, 0xe6, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Transfer Pok\u00e9mon\u019e"}, "option_dreamdex": {"bytes": "0xbe, 0xe6, 0xd9, 0xd5, 0xe1, 0x0, 0xbe, 0xd9, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Dream Dex\u019e"}, "option_credits": {"bytes": "0xbd, 0xe6, 0xd9, 0xd8, 0xdd, 0xe8, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 240, "includeBoxBreaks": false, "text": "Credits\u019e"}, "intro_first": {"bytes": "0xc2, 0xd9, 0xe0, 0xe0, 0xe3, 0xab, 0x0, 0xce, 0xdc, 0xd5, 0xe2, 0xdf, 0x0, 0xed, 0xe3, 0xe9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0xab, 0xfe, 0xfe, 0xc4, 0xe9, 0xe7, 0xe8, 0x0, 0xd5, 0xe7, 0x0, 0xd5, 0x0, 0xeb, 0xe3, 0xe6, 0xd8, 0x0, 0xe3, 0xda, 0x0, 0xd7, 0xd5, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0xae, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xd1, 0xc3, 0xc6, 0xc6, 0x0, 0xe1, 0xe3, 0xd8, 0xdd, 0xda, 0xed, 0x0, 0xd6, 0xe3, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0xfe, 0xda, 0xdd, 0xe0, 0xd9, 0xe7, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe2, 0xe3, 0xe8, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0x0, 0xe0, 0xe3, 0xe2, 0xdb, 0xd9, 0xe6, 0x0, 0xdd, 0xe2, 0x0, 0xd6, 0xd9, 0xe8, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xd6, 0xd5, 0xd7, 0xdf, 0xe9, 0xe4, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0x0, 0xe7, 0xe8, 0xdd, 0xe0, 0xe0, 0xfe, 0xe6, 0xd9, 0xd7, 0xe3, 0xe1, 0xe1, 0xd9, 0xe2, 0xd8, 0xd9, 0xd8, 0x0, 0xd6, 0xd9, 0xda, 0xe3, 0xe6, 0xd9, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0x0, 0xe8, 0xdc, 0xd5, 0xe8, 0xfe, 0xd5, 0xe0, 0xe0, 0x0, 0xd6, 0xd9, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xdd, 0xd8, 0xb8, 0x0, 0xe4, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd9, 0xe2, 0xde, 0xe3, 0xed, 0xab, 0xfe, 0xfe, 0xae, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 15, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": false, "text": "Hello! Thank you for using Pok\u00e9\u0147Transporter GB!\u0147\u0147Just as a word of caution- Pok\u00e9\u0147Transporter GB WILL modify both the\u0147GameBoy and GameBoy Advance save\u0147files.\u0147\u0147Please note that while Pok\u00e9\u0147Transporter GB is no longer in beta,\u0147save file backups are still\u0147recommended before using. With that\u0147all being said, please enjoy!\u0147\u0147-The Gears of Progress\u019e"}, "intro_legal": {"bytes": "0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0x0, 0xe1, 0xd5, 0xd8, 0xd9, 0x0, 0xe3, 0xe9, 0xe8, 0x0, 0xe3, 0xda, 0xfe, 0xe0, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd5, 0xe4, 0xe4, 0xe6, 0xd9, 0xd7, 0xdd, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xfe, 0xda, 0xe6, 0xd5, 0xe2, 0xd7, 0xdc, 0xdd, 0xe7, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xe2, 0xe3, 0x0, 0xe4, 0xe6, 0xe3, 0xda, 0xdd, 0xe8, 0x0, 0xdd, 0xe2, 0x0, 0xe1, 0xdd, 0xe2, 0xd8, 0xad, 0x0, 0xc3, 0xe8, 0xfe, 0xeb, 0xdd, 0xe0, 0xe0, 0x0, 0xbb, 0xc6, 0xd1, 0xbb, 0xd3, 0xcd, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe6, 0xd9, 0xd9, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0xfe, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0x0, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe1, 0xe9, 0xe7, 0xdd, 0xd7, 0xfe, 0xd5, 0xe6, 0xd9, 0x0, 0xe3, 0xeb, 0xe2, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0x0, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0x0, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0xad, 0xfe, 0xfe, 0xfe, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xbb, 0x0, 0xe8, 0xe3, 0x0, 0xd7, 0xe3, 0xe2, 0xe8, 0xdd, 0xe2, 0xe9, 0xd9, 0xff", "numLines": 14, "pixelsPerChar": "Default", "pixelsInLine": 224, "includeBoxBreaks": false, "text": "Pok\u00e9 Transporter GB was made out of\u0147love and appreciation for the Pokemon\u0147franchise with no profit in mind. It\u0147will ALWAYS be free.\u0147\u0147Please support the original\u0147developers.\u0147\u0147All Pokemon names, sprites, and music\u0147are owned by Nintendo, Creatures Inc,\u0147and GAME FREAK.\u0147\u0147\u0147Press A to continue\u019e"}, "cart_load_error": {"bytes": "0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xda, 0xdd, 0xe0, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xe0, 0xe3, 0xd5, 0xd8, 0xd9, 0xd8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xad, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xdd, 0xe2, 0xe7, 0xd9, 0xe6, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0x0, 0xca, 0xd5, 0xdf, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0xe2, 0xfe, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xad, 0xfe, 0xfe, 0xbb, 0xe0, 0xe8, 0xd9, 0xe6, 0xe2, 0xd5, 0xe8, 0xdd, 0xea, 0xd9, 0xe0, 0xed, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xcd, 0xd9, 0xe0, 0xd9, 0xd7, 0xe8, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0x0, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff", "numLines": 10, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "The Pok\u00e9mon save file was\u0147not loaded successfully.\u0147Please remove and reinsert\u0147the Game Pak, and then\u0147press the A button.\u0147\u0147Alternatively, press the\u0147Select button to send this\u0147program to another GameBoy\u0147Advance.\u019e"}, "pulled_cart_error": {"bytes": "0xce, 0xdc, 0xd9, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xdb, 0xd5, 0xe1, 0xd9, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe6, 0xd9, 0xe1, 0xe3, 0xea, 0xd9, 0xd8, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe3, 0xda, 0xda, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe8, 0xd5, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xad, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "The Pok\u00e9mon game was\u0147removed. Please turn off\u0147the system and restart the\u0147program.\u019e"}, "send_multiboot_instructions": {"bytes": "0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xfe, 0xe8, 0xe3, 0x0, 0xd5, 0xe2, 0xe3, 0xe8, 0xdc, 0xd9, 0xe6, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xdd, 0xe2, 0x0, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0x0, 0xe1, 0xe3, 0xd8, 0xd9, 0x0, 0xeb, 0xdd, 0xe8, 0xdc, 0x0, 0xd5, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xc6, 0xdd, 0xe2, 0xdf, 0xfe, 0xbd, 0xd5, 0xd6, 0xe0, 0xd9, 0xad, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0xe2, 0xb8, 0x0, 0xe4, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0xfe, 0xe8, 0xe3, 0x0, 0xd6, 0xd9, 0xdb, 0xdd, 0xe2, 0x0, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xfe, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xad, 0xff", "numLines": 10, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Please connect this system\u0147to another GameBoy Advance\u0147in Multiboot mode with a\u0147GameBoy Advance Link\u0147Cable.\u0147\u0147Then, press the A button\u0147to begin sending Pok\u00e9\u0147Transporter GB to the\u0147second GameBoy Advance.\u019e"}, "send_multiboot_wait": {"bytes": "0xcd, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0xfe, 0xc1, 0xbc, 0x0, 0xe8, 0xe3, 0x0, 0xe7, 0xd9, 0xd7, 0xe3, 0xe2, 0xd8, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xad, 0x0, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0xfe, 0xeb, 0xd5, 0xdd, 0xe8, 0xad, 0xfe, 0xfe, 0xc2, 0xe3, 0xe0, 0xd8, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbc, 0x0, 0xbc, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xd7, 0xd5, 0xe2, 0xd7, 0xd9, 0xe0, 0xad, 0xff", "numLines": 7, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Sending Pok\u00e9 Transporter\u0147GB to second GameBoy\u0147Advance system. Please\u0147wait.\u0147\u0147Hold the B Button to\u0147cancel.\u019e"}, "send_multiboot_success": {"bytes": "0xfe, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0x0, 0xc1, 0xbc, 0x0, 0xeb, 0xd5, 0xe7, 0xfe, 0xe7, 0xd9, 0xe2, 0xe8, 0x0, 0xe7, 0xe9, 0xd7, 0xd7, 0xd9, 0xe7, 0xe7, 0xda, 0xe9, 0xe0, 0xe0, 0xed, 0xab, 0x0, 0xd3, 0xe3, 0xe9, 0x0, 0xe1, 0xd5, 0xed, 0xfe, 0xe2, 0xe3, 0xeb, 0x0, 0xe4, 0xe3, 0xeb, 0xd9, 0xe6, 0x0, 0xe3, 0xda, 0xda, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xc1, 0xd5, 0xe1, 0xd9, 0xbc, 0xe3, 0xed, 0xfe, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xe7, 0xed, 0xe7, 0xe8, 0xd9, 0xe1, 0xad, 0xff", "numLines": 7, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "\u0147Pok\u00e9 Transporter GB was\u0147sent successfully! You may\u0147now power off this GameBoy\u0147Advance system.\u019e"}, "send_multiboot_failure": {"bytes": "0xfe, 0xbb, 0xe2, 0x0, 0xd9, 0xe6, 0xe6, 0xe3, 0xe6, 0x0, 0xe3, 0xd7, 0xd7, 0xe9, 0xe6, 0xe6, 0xd9, 0xd8, 0x0, 0xeb, 0xdc, 0xdd, 0xe0, 0xd9, 0xfe, 0xe7, 0xd9, 0xe2, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0x0, 0xce, 0xe6, 0xd5, 0xe2, 0xe7, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xe6, 0xfe, 0xc1, 0xbc, 0xad, 0x0, 0xca, 0xe6, 0xd9, 0xe7, 0xe7, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xbb, 0x0, 0xd6, 0xe9, 0xe8, 0xe8, 0xe3, 0xe2, 0x0, 0xe8, 0xe3, 0xfe, 0xe6, 0xd9, 0xe8, 0xe9, 0xe6, 0xe2, 0x0, 0xe8, 0xe3, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xdd, 0xe2, 0xe7, 0xe8, 0xe6, 0xe9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0xfe, 0xe7, 0xd7, 0xe6, 0xd9, 0xd9, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe8, 0xe6, 0xed, 0x0, 0xd5, 0xdb, 0xd5, 0xdd, 0xe2, 0xad, 0xff", "numLines": 7, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "\u0147An error occurred while\u0147sending Pok\u00e9 Transporter\u0147GB. Press the A button to\u0147return to the instructions\u0147screen and try again.\u019e"}, "kanto_name": {"bytes": "0xc5, 0xbb, 0xc8, 0xce, 0xc9, 0xf0, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "KANTO:\u019e"}, "johto_name": {"bytes": "0xc4, 0xc9, 0xc2, 0xce, 0xc9, 0xf0, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "JOHTO:\u019e"}}, "CREDITS": {"credits_page_1": {"bytes": "0xc6, 0xd9, 0xd5, 0xd8, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xf0, 0xfe, 0xfe, 0xce, 0xdc, 0xd9, 0x0, 0xc1, 0xd9, 0xd5, 0xe6, 0xe7, 0x0, 0xe3, 0xda, 0x0, 0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Lead developer:\u0147\u0147The Gears of Progress\u019e"}, "credits_page_2": {"bytes": "0xc6, 0xe3, 0xdb, 0xe3, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xd7, 0xe3, 0xae, 0xdd, 0xd8, 0xd9, 0xd5, 0xe8, 0xe3, 0xe6, 0xf0, 0xfe, 0xfe, 0xae, 0xc4, 0xe3, 0xe1, 0xd9, 0xfe, 0xfe, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xeb, 0xe3, 0xe6, 0xdf, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xc4, 0x0, 0xbc, 0xdd, 0xe6, 0xd8, 0xe1, 0xd5, 0xe2, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Logo and co-ideator:\u0147\u0147-Jome\u0147\u0147Spritework:\u0147\u0147-LJ Birdman\u019e"}, "credits_page_3": {"bytes": "0xc3, 0xd7, 0xe3, 0xe2, 0x0, 0xcd, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xc6, 0xe9, 0xdd, 0xdb, 0xdd, 0xce, 0xc5, 0xc9, 0xfe, 0xae, 0xc1, 0xe9, 0xdd, 0xbb, 0xd6, 0xd9, 0xe0, 0xfe, 0xae, 0xcd, 0xe3, 0xe9, 0xe6, 0xbb, 0xe4, 0xe4, 0xe0, 0xd9, 0xfe, 0x2d, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xd5, 0xe6, 0xe8, 0xdd, 0xe7, 0xe8, 0xe7, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0xfe, 0xcd, 0xdc, 0xe3, 0xeb, 0xd8, 0xe3, 0xeb, 0xe2, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbd, 0xe6, 0xed, 0xe7, 0xe8, 0xd5, 0xe0, 0x0, 0xbd, 0xe0, 0xd9, 0xd5, 0xe6, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Icon Sprites:\u0147\u0147-LuigiTKO\u0147-GuiAbel\u0147-SourApple\u0147& the artists from Pok\u00e9mon\u0147Showdown and Crystal Clear\u019e"}, "credits_page_4": {"bytes": "0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xbb, 0xe6, 0xd6, 0xdd, 0xe8, 0xe6, 0xd5, 0xe6, 0xed, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0xfe, 0xbf, 0xec, 0xd9, 0xd7, 0xe9, 0xe8, 0xdd, 0xe3, 0xe2, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xce, 0xdd, 0xe1, 0xe3, 0xd0, 0xc7, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Remote and Arbitrary Code\u0147Execution assistance:\u0147\u0147-TimoVM\u019e"}, "credits_page_5": {"bytes": "0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xe6, 0xdd, 0xe0, 0xd9, 0xed, 0xdf, 0xa7, 0xa5, 0xfe, 0xae, 0xcd, 0xdc, 0xd5, 0xe3, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Development assistance:\u0147\u0147-im a blisy\u0147-rileyk64\u0147-Shao\u019e"}, "credits_page_6": {"bytes": "0xcd, 0xe4, 0xd5, 0xd7, 0xd9, 0x0, 0xc9, 0xe4, 0xe8, 0xdd, 0xe1, 0xdd, 0xee, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xf0, 0xfe, 0xfe, 0xae, 0xd9, 0xd5, 0xe7, 0xed, 0xd5, 0xe7, 0xe4, 0xdd, 0xa4, 0xa2, 0xa5, 0xfe, 0xfe, 0xc6, 0xe3, 0xd5, 0xd8, 0xd9, 0xe6, 0x0, 0xcc, 0xc9, 0xc7, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xcc, 0xd9, 0xe1, 0xe3, 0xe8, 0xd9, 0xfe, 0xc7, 0xe9, 0xe0, 0xe8, 0xdd, 0xd6, 0xe3, 0xe3, 0xe8, 0x0, 0xda, 0xe9, 0xe2, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xd5, 0xe0, 0xdd, 0xe8, 0xed, 0xf0, 0xfe, 0xfe, 0xae, 0xe6, 0xdd, 0xe7, 0xdd, 0xe2, 0xdb, 0xca, 0xdc, 0xdd, 0xe0, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Space Optimization:\u0147\u0147-easyaspi314\u0147\u0147Loader ROM and Remote\u0147Multiboot functionality:\u0147\u0147-risingPhil\u019e"}, "credits_page_7": {"bytes": "0xbc, 0xe9, 0xdd, 0xe0, 0xe8, 0x0, 0xe9, 0xe7, 0xdd, 0xe2, 0xdb, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xbe, 0xd9, 0xea, 0xdf, 0xdd, 0xe8, 0xca, 0xe6, 0xe3, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xce, 0xe3, 0xe2, 0xd7, 0xfe, 0xae, 0xc6, 0xdd, 0xd6, 0xc1, 0xbc, 0xbb, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Built using:\u0147\u0147\u0147-DevkitPro\u0147-LibTonc\u0147-LibGBA\u019e"}, "credits_page_8": {"bytes": "0xc3, 0xe2, 0xe7, 0xe4, 0xdd, 0xe6, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0x0, 0xe8, 0xdc, 0xd9, 0x0, 0xeb, 0xe3, 0xe6, 0xdf, 0xe7, 0x0, 0xe3, 0xda, 0xf0, 0xfe, 0xfe, 0xae, 0xc1, 0xe3, 0xe4, 0xe4, 0xdd, 0xd9, 0xe6, 0xfe, 0xae, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0xfe, 0xae, 0xdd, 0xe1, 0x0, 0xd5, 0x0, 0xd6, 0xe0, 0xdd, 0xe7, 0xed, 0xfe, 0xae, 0xcc, 0xbf, 0xce, 0xc3, 0xcc, 0xbf, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Inspired by the works of:\u0147\u0147-Goppier\u0147-Lorenzooone\u0147-im a blisy\u0147-RETIRE\u019e"}, "credits_page_9": {"bytes": "0xca, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xe7, 0x0, 0xe9, 0xe7, 0xd9, 0xd8, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xae, 0xca, 0xc5, 0xc2, 0xd9, 0xd2, 0xfe, 0xae, 0xd1, 0xbd, 0xa4, 0xce, 0xe3, 0xe3, 0xe0, 0xfe, 0xae, 0xcf, 0xe7, 0xd9, 0xe2, 0xe8, 0xdd, 0xfe, 0xae, 0xcd, 0xd5, 0xe4, 0xe4, 0xed, 0xc7, 0xdd, 0xd8, 0xce, 0xe3, 0xbb, 0xc1, 0xbc, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Programs used:\u0147\u0147\u0147-HexManiacAdvance\u0147-PKHeX\u0147-WC3Tool\u0147-Usenti\u0147-SappyMidToAGB\u019e"}, "credits_page_10": {"bytes": "0xc9, 0xe4, 0xd9, 0xe2, 0x0, 0xcd, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0x0, 0xbd, 0xe3, 0xd8, 0xd9, 0x0, 0xd5, 0xe2, 0xd8, 0xfe, 0xc6, 0xdd, 0xd6, 0xe6, 0xd5, 0xe6, 0xdd, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xe0, 0xdd, 0xd6, 0xe8, 0xe3, 0xe2, 0xd7, 0xae, 0xd9, 0xec, 0xd5, 0xe1, 0xe4, 0xe0, 0xd9, 0xe7, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0xae, 0xdb, 0xd6, 0xd5, 0xae, 0xe0, 0xdd, 0xe2, 0xdf, 0xae, 0xd7, 0xe3, 0xe2, 0xe2, 0xd9, 0xd7, 0xe8, 0xdd, 0xe3, 0xe2, 0xfe, 0xae, 0xd5, 0xeb, 0xd9, 0xe7, 0xe3, 0xe1, 0xd9, 0xae, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0xae, 0xd5, 0xe6, 0xd8, 0xe9, 0xdd, 0xe2, 0xe3, 0xae, 0xe4, 0xe3, 0xdf, 0xd9, 0xae, 0xdb, 0xd9, 0xe2, 0xa3, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Open Source Code and\u0147Libraries:\u0147\u0147-libtonc-examples\u0147-PokemonGen3toGenX\u0147-gba-link-connection\u0147-awesome-gbadev\u0147-arduino-poke-gen2\u019e"}, "credits_page_11": {"bytes": "0xcc, 0xd9, 0xe7, 0xd9, 0xd5, 0xe6, 0xd7, 0xdc, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0xf0, 0xfe, 0xfe, 0xae, 0xd5, 0xe6, 0xe1, 0xae, 0xd8, 0xe3, 0xd7, 0xe7, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xe1, 0xe3, 0xe2, 0xc1, 0xd9, 0xe2, 0xa4, 0xe8, 0xe3, 0xc1, 0xd9, 0xe2, 0xd2, 0xfe, 0xfe, 0xc0, 0xe9, 0xe0, 0xe0, 0x0, 0xe0, 0xdd, 0xe2, 0xdf, 0xe7, 0x0, 0xd7, 0xd5, 0xe2, 0x0, 0xd6, 0xd9, 0x0, 0xda, 0xe3, 0xe9, 0xe2, 0xd8, 0x0, 0xe3, 0xe2, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xdb, 0xe6, 0xd5, 0xe1, 0xb4, 0xe7, 0x0, 0xc1, 0xdd, 0xe8, 0xc2, 0xe9, 0xd6, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Research resources:\u0147\u0147-arm-docs\u0147-PokemonGen3toGenX\u0147\u0147Full links can be found on\u0147this program\u2019s GitHub\u019e"}, "credits_page_12": {"bytes": "0xcc, 0xc9, 0xc7, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0x0, 0xda, 0xe6, 0xe3, 0xe1, 0xfe, 0xd8, 0xd9, 0xd7, 0xe3, 0xe1, 0xe4, 0xdd, 0xe0, 0xd5, 0xe8, 0xdd, 0xe3, 0xe2, 0xe7, 0x0, 0xd7, 0xe6, 0xd9, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xe8, 0xdc, 0xd9, 0x0, 0xca, 0xcc, 0xbf, 0xce, 0x0, 0xe8, 0xd9, 0xd5, 0xe1, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "ROM data obtained from\u0147decompilations created by\u0147the PRET team\u019e"}, "credits_page_13": {"bytes": "0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0x0, 0xe3, 0xd6, 0xe8, 0xd5, 0xdd, 0xe2, 0xd9, 0xd8, 0xfe, 0xda, 0xe6, 0xe3, 0xe1, 0xf0, 0xfe, 0xfe, 0xae, 0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe4, 0xd9, 0xd8, 0xdd, 0xd5, 0xfe, 0xae, 0xcd, 0xd9, 0xe6, 0xd9, 0xd6, 0xdd, 0xdd, 0xfe, 0xae, 0xca, 0xe3, 0xdf, 0xd9, 0xbb, 0xca, 0xc3, 0xad, 0xd7, 0xe3, 0xe1, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Pok\u00e9mon data obtained\u0147from:\u0147\u0147-Bulbapedia\u0147-Serebii\u0147-PokeAPI.com\u019e"}, "credits_page_14": {"bytes": "0xbe, 0xdd, 0xe7, 0xd7, 0xe3, 0xe6, 0xd8, 0x0, 0xd7, 0xe3, 0xe1, 0xe1, 0xe9, 0xe2, 0xdd, 0xe8, 0xed, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xae, 0xc2, 0xd9, 0xec, 0x0, 0xc7, 0xd5, 0xe2, 0xdd, 0xd5, 0xd7, 0x0, 0xbb, 0xd8, 0xea, 0xd5, 0xe2, 0xd7, 0xd9, 0xfe, 0xbe, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xe1, 0xd9, 0xe2, 0xe8, 0xfe, 0xae, 0xdb, 0xd6, 0xd5, 0xd8, 0xd9, 0xea, 0xfe, 0xae, 0xe4, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Discord community\u0147assistance:\u0147\u0147-Hex Maniac Advance\u0147Development\u0147-gbadev\u0147-pret\u019e"}, "credits_page_15": {"bytes": "0xd1, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0xf0, 0xfe, 0xfe, 0xfe, 0xae, 0xc7, 0xd5, 0xd8, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Writing assistance:\u0147\u0147\u0147-Mad\u019e"}, "credits_page_16": {"bytes": "0xbb, 0xe2, 0x0, 0xdd, 0xe1, 0xe1, 0xd9, 0xe2, 0xe7, 0xd9, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0xfe, 0xc6, 0xe3, 0xe6, 0xd9, 0xe2, 0xee, 0xe3, 0xe3, 0xe3, 0xe2, 0xd9, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe8, 0xdc, 0xd9, 0xdd, 0xe6, 0xfe, 0xd5, 0xe7, 0xe7, 0xdd, 0xe7, 0xe8, 0xd5, 0xe2, 0xd7, 0xd9, 0x0, 0xdd, 0xe2, 0x0, 0xe6, 0xd9, 0xd5, 0xd8, 0xdd, 0xe2, 0xdb, 0x0, 0x2d, 0xfe, 0xeb, 0xe6, 0xdd, 0xe8, 0xdd, 0xe2, 0xdb, 0x0, 0xe7, 0xd5, 0xea, 0xd9, 0x0, 0xd8, 0xd5, 0xe8, 0xd5, 0xad, 0x0, 0xd1, 0xdd, 0xe8, 0xdc, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xd9, 0xe1, 0xb8, 0x0, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xeb, 0xe3, 0xe9, 0xe0, 0xd8, 0xfe, 0xe2, 0xe3, 0xe8, 0x0, 0xdc, 0xd5, 0xea, 0xd9, 0x0, 0xd6, 0xd9, 0xd9, 0xe2, 0x0, 0xe4, 0xe3, 0xe7, 0xe7, 0xdd, 0xd6, 0xe0, 0xd9, 0xad, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "An immense thanks to\u0147Lorenzooone for their\u0147assistance in reading &\u0147writing save data. Without\u0147them, this project would\u0147not have been possible.\u019e"}, "credits_page_17": {"bytes": "0xcd, 0xe4, 0xd9, 0xd7, 0xdd, 0xd5, 0xe0, 0x0, 0xe8, 0xdc, 0xd5, 0xe2, 0xdf, 0xe7, 0x0, 0xe8, 0xe3, 0x0, 0xbf, 0xe2, 0xe2, 0xb8, 0xfe, 0xe6, 0xe3, 0xdf, 0xe9, 0xb8, 0x0, 0xcd, 0xe0, 0xd9, 0xd9, 0xe4, 0xed, 0xb8, 0x0, 0xbf, 0xee, 0xd5, 0xb8, 0xfe, 0xe7, 0xd5, 0xe6, 0xd5, 0xdc, 0xe8, 0xe3, 0xe2, 0xdd, 0xe2, 0xb8, 0x0, 0xbc, 0xd5, 0xe7, 0xd5, 0xd6, 0xdd, 0xb8, 0x0, 0xc7, 0xd5, 0xd8, 0xb8, 0xfe, 0xd5, 0xe2, 0xd8, 0x0, 0xd9, 0xea, 0xd9, 0xe6, 0xed, 0xe3, 0xe2, 0xd9, 0x0, 0xeb, 0xdc, 0xe3, 0x0, 0xdc, 0xd5, 0xe7, 0xfe, 0xe0, 0xdd, 0xe7, 0xe8, 0xd9, 0xe2, 0xd9, 0xd8, 0x0, 0xe8, 0xe3, 0x0, 0xe1, 0xd9, 0x0, 0xe8, 0xd5, 0xe0, 0xdf, 0x0, 0xd5, 0xd6, 0xe3, 0xe9, 0xe8, 0xfe, 0xe8, 0xdc, 0xdd, 0xe7, 0x0, 0xda, 0xe3, 0xe6, 0x0, 0xe1, 0xe3, 0xe2, 0xe8, 0xdc, 0xe7, 0xab, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "Special thanks to Enn,\u0147roku, Sleepy, Eza,\u0147sarahtonin, Basabi, Mad,\u0147and everyone who has\u0147listened to me talk about\u0147this for months!\u019e"}, "credits_page_18": {"bytes": "0xbb, 0xe0, 0xe0, 0x0, 0xca, 0xe3, 0xdf, 0x1b, 0xe1, 0xe3, 0xe2, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0xb8, 0xfe, 0xe7, 0xe4, 0xe6, 0xdd, 0xe8, 0xd9, 0xe7, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xe2, 0xd5, 0xe1, 0xd9, 0xe7, 0x0, 0xe3, 0xda, 0xfe, 0xe6, 0xd9, 0xe0, 0xd5, 0xe8, 0xd9, 0xd8, 0x0, 0xe6, 0xd9, 0xe7, 0xe3, 0xe9, 0xe6, 0xd7, 0xd9, 0xe7, 0x0, 0xd5, 0xe6, 0xd9, 0xfe, 0xd7, 0xe3, 0xe4, 0xed, 0xe6, 0xdd, 0xdb, 0xdc, 0xe8, 0x0, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xb8, 0xfe, 0xbd, 0xe6, 0xd9, 0xd5, 0xe8, 0xe9, 0xe6, 0xd9, 0xe7, 0x0, 0xc3, 0xe2, 0xd7, 0xad, 0xb8, 0x0, 0xd5, 0xe2, 0xd8, 0x0, 0xc1, 0xbb, 0xc7, 0xbf, 0xfe, 0xc0, 0xcc, 0xbf, 0xbb, 0xc5, 0x0, 0xc3, 0xe2, 0xd7, 0xad, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "All Pok\u00e9mon names,\u0147sprites, and names of\u0147related resources are\u0147copyright Nintendo,\u0147Creatures Inc., and GAME\u0147FREAK Inc.\u019e"}, "credits_page_19": {"bytes": "0xce, 0xdc, 0xdd, 0xe7, 0x0, 0xe4, 0xe6, 0xe3, 0xde, 0xd9, 0xd7, 0xe8, 0x0, 0xdd, 0xe7, 0x0, 0xe2, 0xe3, 0xe8, 0xfe, 0xd9, 0xe2, 0xd8, 0xe3, 0xe6, 0xe7, 0xd9, 0xd8, 0x0, 0xe3, 0xe6, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0xd9, 0xd8, 0x0, 0xd6, 0xed, 0xfe, 0xc1, 0xd5, 0xe1, 0xd9, 0xc0, 0xe6, 0xd9, 0xd5, 0xdf, 0xba, 0xc8, 0xdd, 0xe2, 0xe8, 0xd9, 0xe2, 0xd8, 0xe3, 0xad, 0xfe, 0xfe, 0xca, 0xe0, 0xd9, 0xd5, 0xe7, 0xd9, 0x0, 0xe7, 0xe9, 0xe4, 0xe4, 0xe3, 0xe6, 0xe8, 0x0, 0xe8, 0xdc, 0xd9, 0xfe, 0xe3, 0xe6, 0xdd, 0xdb, 0xdd, 0xe2, 0xd5, 0xe0, 0x0, 0xd8, 0xd9, 0xea, 0xd9, 0xe0, 0xe3, 0xe4, 0xd9, 0xe6, 0xe7, 0xad, 0xff", "numLines": 8, "pixelsPerChar": "Default", "pixelsInLine": 160, "includeBoxBreaks": false, "text": "This project is not\u0147endorsed or supported by\u0147GameFreak/Nintendo.\u0147\u0147Please support the\u0147original developers.\u019e"}}, "PKMN_NAMES": {"0": {"bytes": "0xc7, 0xdd, 0xe7, 0xe7, 0xdd, 0xe2, 0xdb, 0xc8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "MissingNo\u019e"}, "1": {"bytes": "0xbc, 0xe9, 0xe0, 0xd6, 0xd5, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bulbasaur\u019e"}, "2": {"bytes": "0xc3, 0xea, 0xed, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ivysaur\u019e"}, "3": {"bytes": "0xd0, 0xd9, 0xe2, 0xe9, 0xe7, 0xd5, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venusaur\u019e"}, "4": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xe1, 0xd5, 0xe2, 0xd8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charmander\u019e"}, "5": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xe1, 0xd9, 0xe0, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charmeleon\u019e"}, "6": {"bytes": "0xbd, 0xdc, 0xd5, 0xe6, 0xdd, 0xee, 0xd5, 0xe6, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Charizard\u019e"}, "7": {"bytes": "0xcd, 0xe5, 0xe9, 0xdd, 0xe6, 0xe8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Squirtle\u019e"}, "8": {"bytes": "0xd1, 0xd5, 0xe6, 0xe8, 0xe3, 0xe6, 0xe8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wartortle\u019e"}, "9": {"bytes": "0xbc, 0xe0, 0xd5, 0xe7, 0xe8, 0xe3, 0xdd, 0xe7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Blastoise\u019e"}, "10": {"bytes": "0xbd, 0xd5, 0xe8, 0xd9, 0xe6, 0xe4, 0xdd, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Caterpie\u019e"}, "11": {"bytes": "0xc7, 0xd9, 0xe8, 0xd5, 0xe4, 0xe3, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Metapod\u019e"}, "12": {"bytes": "0xbc, 0xe9, 0xe8, 0xe8, 0xd9, 0xe6, 0xda, 0xe6, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Butterfree\u019e"}, "13": {"bytes": "0xd1, 0xd9, 0xd9, 0xd8, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weedle\u019e"}, "14": {"bytes": "0xc5, 0xd5, 0xdf, 0xe9, 0xe2, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kakuna\u019e"}, "15": {"bytes": "0xbc, 0xd9, 0xd9, 0xd8, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Beedrill\u019e"}, "16": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgey\u019e"}, "17": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xe3, 0xe8, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgeotto\u019e"}, "18": {"bytes": "0xca, 0xdd, 0xd8, 0xdb, 0xd9, 0xe3, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pidgeot\u019e"}, "19": {"bytes": "0xcc, 0xd5, 0xe8, 0xe8, 0xd5, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rattata\u019e"}, "20": {"bytes": "0xcc, 0xd5, 0xe8, 0xdd, 0xd7, 0xd5, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raticate\u019e"}, "21": {"bytes": "0xcd, 0xe4, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Spearow\u019e"}, "22": {"bytes": "0xc0, 0xd9, 0xd5, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Fearow\u019e"}, "23": {"bytes": "0xbf, 0xdf, 0xd5, 0xe2, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ekans\u019e"}, "24": {"bytes": "0xbb, 0xe6, 0xd6, 0xe3, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Arbok\u019e"}, "25": {"bytes": "0xca, 0xdd, 0xdf, 0xd5, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pikachu\u019e"}, "26": {"bytes": "0xcc, 0xd5, 0xdd, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raichu\u019e"}, "27": {"bytes": "0xcd, 0xd5, 0xe2, 0xd8, 0xe7, 0xdc, 0xe6, 0xd9, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sandshrew\u019e"}, "28": {"bytes": "0xcd, 0xd5, 0xe2, 0xd8, 0xe7, 0xe0, 0xd5, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sandslash\u019e"}, "29": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xd5, 0xe2, 0xb6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoran\u2640\u019e"}, "30": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xdd, 0xe2, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidorina\u019e"}, "31": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe5, 0xe9, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoqueen\u019e"}, "32": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xd5, 0xe2, 0xb5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoran\u2642\u019e"}, "33": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xe6, 0xdd, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidorino\u019e"}, "34": {"bytes": "0xc8, 0xdd, 0xd8, 0xe3, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Nidoking\u019e"}, "35": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xd5, 0xdd, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Clefairy\u019e"}, "36": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xd5, 0xd6, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Clefable\u019e"}, "37": {"bytes": "0xd0, 0xe9, 0xe0, 0xe4, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vulpix\u019e"}, "38": {"bytes": "0xc8, 0xdd, 0xe2, 0xd9, 0xe8, 0xd5, 0xe0, 0xd9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ninetales\u019e"}, "39": {"bytes": "0xc4, 0xdd, 0xdb, 0xdb, 0xe0, 0xed, 0xe4, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jigglypuff\u019e"}, "40": {"bytes": "0xd1, 0xdd, 0xdb, 0xdb, 0xe0, 0xed, 0xe8, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wigglytuff\u019e"}, "41": {"bytes": "0xd4, 0xe9, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Zubat\u019e"}, "42": {"bytes": "0xc1, 0xe3, 0xe0, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golbat\u019e"}, "43": {"bytes": "0xc9, 0xd8, 0xd8, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Oddish\u019e"}, "44": {"bytes": "0xc1, 0xe0, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gloom\u019e"}, "45": {"bytes": "0xd0, 0xdd, 0xe0, 0xd9, 0xe4, 0xe0, 0xe9, 0xe1, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vileplume\u019e"}, "46": {"bytes": "0xca, 0xd5, 0xe6, 0xd5, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Paras\u019e"}, "47": {"bytes": "0xca, 0xd5, 0xe6, 0xd5, 0xe7, 0xd9, 0xd7, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Parasect\u019e"}, "48": {"bytes": "0xd0, 0xd9, 0xe2, 0xe3, 0xe2, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venonat\u019e"}, "49": {"bytes": "0xd0, 0xd9, 0xe2, 0xe3, 0xe1, 0xe3, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Venomoth\u019e"}, "50": {"bytes": "0xbe, 0xdd, 0xdb, 0xe0, 0xd9, 0xe8, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Diglett\u019e"}, "51": {"bytes": "0xbe, 0xe9, 0xdb, 0xe8, 0xe6, 0xdd, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dugtrio\u019e"}, "52": {"bytes": "0xc7, 0xd9, 0xe3, 0xeb, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Meowth\u019e"}, "53": {"bytes": "0xca, 0xd9, 0xe6, 0xe7, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Persian\u019e"}, "54": {"bytes": "0xca, 0xe7, 0xed, 0xd8, 0xe9, 0xd7, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Psyduck\u019e"}, "55": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xe9, 0xd7, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golduck\u019e"}, "56": {"bytes": "0xc7, 0xd5, 0xe2, 0xdf, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mankey\u019e"}, "57": {"bytes": "0xca, 0xe6, 0xdd, 0xe1, 0xd9, 0xd5, 0xe4, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Primeape\u019e"}, "58": {"bytes": "0xc1, 0xe6, 0xe3, 0xeb, 0xe0, 0xdd, 0xe8, 0xdc, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Growlithe\u019e"}, "59": {"bytes": "0xbb, 0xe6, 0xd7, 0xd5, 0xe2, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Arcanine\u019e"}, "60": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xd5, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwag\u019e"}, "61": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xdc, 0xdd, 0xe6, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwhirl\u019e"}, "62": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xeb, 0xe6, 0xd5, 0xe8, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Poliwrath\u019e"}, "63": {"bytes": "0xbb, 0xd6, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Abra\u019e"}, "64": {"bytes": "0xc5, 0xd5, 0xd8, 0xd5, 0xd6, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kadabra\u019e"}, "65": {"bytes": "0xbb, 0xe0, 0xd5, 0xdf, 0xd5, 0xee, 0xd5, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Alakazam\u019e"}, "66": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machop\u019e"}, "67": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xe3, 0xdf, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machoke\u019e"}, "68": {"bytes": "0xc7, 0xd5, 0xd7, 0xdc, 0xd5, 0xe1, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Machamp\u019e"}, "69": {"bytes": "0xbc, 0xd9, 0xe0, 0xe0, 0xe7, 0xe4, 0xe6, 0xe3, 0xe9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bellsprout\u019e"}, "70": {"bytes": "0xd1, 0xd9, 0xd9, 0xe4, 0xdd, 0xe2, 0xd6, 0xd9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weepinbell\u019e"}, "71": {"bytes": "0xd0, 0xdd, 0xd7, 0xe8, 0xe6, 0xd9, 0xd9, 0xd6, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Victreebel\u019e"}, "72": {"bytes": "0xce, 0xd9, 0xe2, 0xe8, 0xd5, 0xd7, 0xe3, 0xe3, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tentacool\u019e"}, "73": {"bytes": "0xce, 0xd9, 0xe2, 0xe8, 0xd5, 0xd7, 0xe6, 0xe9, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tentacruel\u019e"}, "74": {"bytes": "0xc1, 0xd9, 0xe3, 0xd8, 0xe9, 0xd8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Geodude\u019e"}, "75": {"bytes": "0xc1, 0xe6, 0xd5, 0xea, 0xd9, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Graveler\u019e"}, "76": {"bytes": "0xc1, 0xe3, 0xe0, 0xd9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Golem\u019e"}, "77": {"bytes": "0xca, 0xe3, 0xe2, 0xed, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ponyta\u019e"}, "78": {"bytes": "0xcc, 0xd5, 0xe4, 0xdd, 0xd8, 0xd5, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rapidash\u019e"}, "79": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xe4, 0xe3, 0xdf, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowpoke\u019e"}, "80": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xd6, 0xe6, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowbro\u019e"}, "81": {"bytes": "0xc7, 0xd5, 0xdb, 0xe2, 0xd9, 0xe1, 0xdd, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magnemite\u019e"}, "82": {"bytes": "0xc7, 0xd5, 0xdb, 0xe2, 0xd9, 0xe8, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magneton\u019e"}, "83": {"bytes": "0xc0, 0xd5, 0xe6, 0xda, 0xd9, 0xe8, 0xd7, 0xdc, 0xb4, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Farfetch\u2019d\u019e"}, "84": {"bytes": "0xbe, 0xe3, 0xd8, 0xe9, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Doduo\u019e"}, "85": {"bytes": "0xbe, 0xe3, 0xd8, 0xe6, 0xdd, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dodrio\u019e"}, "86": {"bytes": "0xcd, 0xd9, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seel\u019e"}, "87": {"bytes": "0xbe, 0xd9, 0xeb, 0xdb, 0xe3, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dewgong\u019e"}, "88": {"bytes": "0xc1, 0xe6, 0xdd, 0xe1, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Grimer\u019e"}, "89": {"bytes": "0xc7, 0xe9, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Muk\u019e"}, "90": {"bytes": "0xcd, 0xdc, 0xd9, 0xe0, 0xe0, 0xd8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Shellder\u019e"}, "91": {"bytes": "0xbd, 0xe0, 0xe3, 0xed, 0xe7, 0xe8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cloyster\u019e"}, "92": {"bytes": "0xc1, 0xd5, 0xe7, 0xe8, 0xe0, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gastly\u019e"}, "93": {"bytes": "0xc2, 0xd5, 0xe9, 0xe2, 0xe8, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Haunter\u019e"}, "94": {"bytes": "0xc1, 0xd9, 0xe2, 0xdb, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gengar\u019e"}, "95": {"bytes": "0xc9, 0xe2, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Onix\u019e"}, "96": {"bytes": "0xbe, 0xe6, 0xe3, 0xeb, 0xee, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Drowzee\u019e"}, "97": {"bytes": "0xc2, 0xed, 0xe4, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hypno\u019e"}, "98": {"bytes": "0xc5, 0xe6, 0xd5, 0xd6, 0xd6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Krabby\u019e"}, "99": {"bytes": "0xc5, 0xdd, 0xe2, 0xdb, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kingler\u019e"}, "100": {"bytes": "0xd0, 0xe3, 0xe0, 0xe8, 0xe3, 0xe6, 0xd6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Voltorb\u019e"}, "101": {"bytes": "0xbf, 0xe0, 0xd9, 0xd7, 0xe8, 0xe6, 0xe3, 0xd8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Electrode\u019e"}, "102": {"bytes": "0xbf, 0xec, 0xd9, 0xdb, 0xdb, 0xd7, 0xe9, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Exeggcute\u019e"}, "103": {"bytes": "0xbf, 0xec, 0xd9, 0xdb, 0xdb, 0xe9, 0xe8, 0xe3, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Exeggutor\u019e"}, "104": {"bytes": "0xbd, 0xe9, 0xd6, 0xe3, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cubone\u019e"}, "105": {"bytes": "0xc7, 0xd5, 0xe6, 0xe3, 0xeb, 0xd5, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Marowak\u019e"}, "106": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xe0, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmonlee\u019e"}, "107": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xd7, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmonchan\u019e"}, "108": {"bytes": "0xc6, 0xdd, 0xd7, 0xdf, 0xdd, 0xe8, 0xe9, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lickitung\u019e"}, "109": {"bytes": "0xc5, 0xe3, 0xda, 0xda, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Koffing\u019e"}, "110": {"bytes": "0xd1, 0xd9, 0xd9, 0xee, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Weezing\u019e"}, "111": {"bytes": "0xcc, 0xdc, 0xed, 0xdc, 0xe3, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rhyhorn\u019e"}, "112": {"bytes": "0xcc, 0xdc, 0xed, 0xd8, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Rhydon\u019e"}, "113": {"bytes": "0xbd, 0xdc, 0xd5, 0xe2, 0xe7, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chansey\u019e"}, "114": {"bytes": "0xce, 0xd5, 0xe2, 0xdb, 0xd9, 0xe0, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tangela\u019e"}, "115": {"bytes": "0xc5, 0xd5, 0xe2, 0xdb, 0xd5, 0xe7, 0xdf, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kangaskhan\u019e"}, "116": {"bytes": "0xc2, 0xe3, 0xe6, 0xe7, 0xd9, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Horsea\u019e"}, "117": {"bytes": "0xcd, 0xd9, 0xd5, 0xd8, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seadra\u019e"}, "118": {"bytes": "0xc1, 0xe3, 0xe0, 0xd8, 0xd9, 0xd9, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Goldeen\u019e"}, "119": {"bytes": "0xcd, 0xd9, 0xd5, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Seaking\u019e"}, "120": {"bytes": "0xcd, 0xe8, 0xd5, 0xe6, 0xed, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Staryu\u019e"}, "121": {"bytes": "0xcd, 0xe8, 0xd5, 0xe6, 0xe1, 0xdd, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Starmie\u019e"}, "122": {"bytes": "0xc7, 0xe6, 0xad, 0x0, 0xc7, 0xdd, 0xe1, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mr. Mime\u019e"}, "123": {"bytes": "0xcd, 0xd7, 0xed, 0xe8, 0xdc, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Scyther\u019e"}, "124": {"bytes": "0xc4, 0xed, 0xe2, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jynx\u019e"}, "125": {"bytes": "0xbf, 0xe0, 0xd9, 0xd7, 0xe8, 0xd5, 0xd6, 0xe9, 0xee, 0xee, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Electabuzz\u019e"}, "126": {"bytes": "0xc7, 0xd5, 0xdb, 0xe1, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magmar\u019e"}, "127": {"bytes": "0xca, 0xdd, 0xe2, 0xe7, 0xdd, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pinsir\u019e"}, "128": {"bytes": "0xce, 0xd5, 0xe9, 0xe6, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tauros\u019e"}, "129": {"bytes": "0xc7, 0xd5, 0xdb, 0xdd, 0xdf, 0xd5, 0xe6, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magikarp\u019e"}, "130": {"bytes": "0xc1, 0xed, 0xd5, 0xe6, 0xd5, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gyarados\u019e"}, "131": {"bytes": "0xc6, 0xd5, 0xe4, 0xe6, 0xd5, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lapras\u019e"}, "132": {"bytes": "0xbe, 0xdd, 0xe8, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ditto\u019e"}, "133": {"bytes": "0xbf, 0xd9, 0xea, 0xd9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Eevee\u019e"}, "134": {"bytes": "0xd0, 0xd5, 0xe4, 0xe3, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Vaporeon\u019e"}, "135": {"bytes": "0xc4, 0xe3, 0xe0, 0xe8, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jolteon\u019e"}, "136": {"bytes": "0xc0, 0xe0, 0xd5, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Flareon\u019e"}, "137": {"bytes": "0xca, 0xe3, 0xe6, 0xed, 0xdb, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Porygon\u019e"}, "138": {"bytes": "0xc9, 0xe1, 0xd5, 0xe2, 0xed, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Omanyte\u019e"}, "139": {"bytes": "0xc9, 0xe1, 0xd5, 0xe7, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Omastar\u019e"}, "140": {"bytes": "0xc5, 0xd5, 0xd6, 0xe9, 0xe8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kabuto\u019e"}, "141": {"bytes": "0xc5, 0xd5, 0xd6, 0xe9, 0xe8, 0xe3, 0xe4, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kabutops\u019e"}, "142": {"bytes": "0xbb, 0xd9, 0xe6, 0xe3, 0xd8, 0xd5, 0xd7, 0xe8, 0xed, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Aerodactyl\u019e"}, "143": {"bytes": "0xcd, 0xe2, 0xe3, 0xe6, 0xe0, 0xd5, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Snorlax\u019e"}, "144": {"bytes": "0xbb, 0xe6, 0xe8, 0xdd, 0xd7, 0xe9, 0xe2, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Articuno\u019e"}, "145": {"bytes": "0xd4, 0xd5, 0xe4, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Zapdos\u019e"}, "146": {"bytes": "0xc7, 0xe3, 0xe0, 0xe8, 0xe6, 0xd9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Moltres\u019e"}, "147": {"bytes": "0xbe, 0xe6, 0xd5, 0xe8, 0xdd, 0xe2, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dratini\u019e"}, "148": {"bytes": "0xbe, 0xe6, 0xd5, 0xdb, 0xe3, 0xe2, 0xd5, 0xdd, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dragonair\u019e"}, "149": {"bytes": "0xbe, 0xe6, 0xd5, 0xdb, 0xe3, 0xe2, 0xdd, 0xe8, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dragonite\u019e"}, "150": {"bytes": "0xc7, 0xd9, 0xeb, 0xe8, 0xeb, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mewtwo\u019e"}, "151": {"bytes": "0xc7, 0xd9, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mew\u019e"}, "152": {"bytes": "0xbd, 0xdc, 0xdd, 0xdf, 0xe3, 0xe6, 0xdd, 0xe8, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chikorita\u019e"}, "153": {"bytes": "0xbc, 0xd5, 0xed, 0xe0, 0xd9, 0xd9, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bayleef\u019e"}, "154": {"bytes": "0xc7, 0xd9, 0xdb, 0xd5, 0xe2, 0xdd, 0xe9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Meganium\u019e"}, "155": {"bytes": "0xbd, 0xed, 0xe2, 0xd8, 0xd5, 0xe5, 0xe9, 0xdd, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cyndaquil\u019e"}, "156": {"bytes": "0xcb, 0xe9, 0xdd, 0xe0, 0xd5, 0xea, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Quilava\u019e"}, "157": {"bytes": "0xce, 0xed, 0xe4, 0xdc, 0xe0, 0xe3, 0xe7, 0xdd, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Typhlosion\u019e"}, "158": {"bytes": "0xce, 0xe3, 0xe8, 0xe3, 0xd8, 0xdd, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Totodile\u019e"}, "159": {"bytes": "0xbd, 0xe6, 0xe3, 0xd7, 0xe3, 0xe2, 0xd5, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Croconaw\u019e"}, "160": {"bytes": "0xc0, 0xd9, 0xe6, 0xd5, 0xe0, 0xdd, 0xdb, 0xd5, 0xe8, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Feraligatr\u019e"}, "161": {"bytes": "0xcd, 0xd9, 0xe2, 0xe8, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sentret\u019e"}, "162": {"bytes": "0xc0, 0xe9, 0xe6, 0xe6, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Furret\u019e"}, "163": {"bytes": "0xc2, 0xe3, 0xe3, 0xe8, 0xdc, 0xe3, 0xe3, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hoothoot\u019e"}, "164": {"bytes": "0xc8, 0xe3, 0xd7, 0xe8, 0xe3, 0xeb, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Noctowl\u019e"}, "165": {"bytes": "0xc6, 0xd9, 0xd8, 0xed, 0xd6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ledyba\u019e"}, "166": {"bytes": "0xc6, 0xd9, 0xd8, 0xdd, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ledian\u019e"}, "167": {"bytes": "0xcd, 0xe4, 0xdd, 0xe2, 0xd5, 0xe6, 0xd5, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Spinarak\u019e"}, "168": {"bytes": "0xbb, 0xe6, 0xdd, 0xd5, 0xd8, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ariados\u019e"}, "169": {"bytes": "0xbd, 0xe6, 0xe3, 0xd6, 0xd5, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Crobat\u019e"}, "170": {"bytes": "0xbd, 0xdc, 0xdd, 0xe2, 0xd7, 0xdc, 0xe3, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Chinchou\u019e"}, "171": {"bytes": "0xc6, 0xd5, 0xe2, 0xe8, 0xe9, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lanturn\u019e"}, "172": {"bytes": "0xca, 0xdd, 0xd7, 0xdc, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pichu\u019e"}, "173": {"bytes": "0xbd, 0xe0, 0xd9, 0xda, 0xda, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Cleffa\u019e"}, "174": {"bytes": "0xc3, 0xdb, 0xdb, 0xe0, 0xed, 0xd6, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Igglybuff\u019e"}, "175": {"bytes": "0xce, 0xe3, 0xdb, 0xd9, 0xe4, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Togepi\u019e"}, "176": {"bytes": "0xce, 0xe3, 0xdb, 0xd9, 0xe8, 0xdd, 0xd7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Togetic\u019e"}, "177": {"bytes": "0xc8, 0xd5, 0xe8, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Natu\u019e"}, "178": {"bytes": "0xd2, 0xd5, 0xe8, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Xatu\u019e"}, "179": {"bytes": "0xc7, 0xd5, 0xe6, 0xd9, 0xd9, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mareep\u019e"}, "180": {"bytes": "0xc0, 0xe0, 0xd5, 0xd5, 0xda, 0xda, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Flaaffy\u019e"}, "181": {"bytes": "0xbb, 0xe1, 0xe4, 0xdc, 0xd5, 0xe6, 0xe3, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ampharos\u019e"}, "182": {"bytes": "0xbc, 0xd9, 0xe0, 0xe0, 0xe3, 0xe7, 0xe7, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Bellossom\u019e"}, "183": {"bytes": "0xc7, 0xd5, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Marill\u019e"}, "184": {"bytes": "0xbb, 0xee, 0xe9, 0xe1, 0xd5, 0xe6, 0xdd, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Azumarill\u019e"}, "185": {"bytes": "0xcd, 0xe9, 0xd8, 0xe3, 0xeb, 0xe3, 0xe3, 0xd8, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sudowoodo\u019e"}, "186": {"bytes": "0xca, 0xe3, 0xe0, 0xdd, 0xe8, 0xe3, 0xd9, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Politoed\u019e"}, "187": {"bytes": "0xc2, 0xe3, 0xe4, 0xe4, 0xdd, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hoppip\u019e"}, "188": {"bytes": "0xcd, 0xdf, 0xdd, 0xe4, 0xe0, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Skiploom\u019e"}, "189": {"bytes": "0xc4, 0xe9, 0xe1, 0xe4, 0xe0, 0xe9, 0xda, 0xda, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Jumpluff\u019e"}, "190": {"bytes": "0xbb, 0xdd, 0xe4, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Aipom\u019e"}, "191": {"bytes": "0xcd, 0xe9, 0xe2, 0xdf, 0xd9, 0xe6, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sunkern\u019e"}, "192": {"bytes": "0xcd, 0xe9, 0xe2, 0xda, 0xe0, 0xe3, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sunflora\u019e"}, "193": {"bytes": "0xd3, 0xd5, 0xe2, 0xe1, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Yanma\u019e"}, "194": {"bytes": "0xd1, 0xe3, 0xe3, 0xe4, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wooper\u019e"}, "195": {"bytes": "0xcb, 0xe9, 0xd5, 0xdb, 0xe7, 0xdd, 0xe6, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Quagsire\u019e"}, "196": {"bytes": "0xbf, 0xe7, 0xe4, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Espeon\u019e"}, "197": {"bytes": "0xcf, 0xe1, 0xd6, 0xe6, 0xd9, 0xe3, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Umbreon\u019e"}, "198": {"bytes": "0xc7, 0xe9, 0xe6, 0xdf, 0xe6, 0xe3, 0xeb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Murkrow\u019e"}, "199": {"bytes": "0xcd, 0xe0, 0xe3, 0xeb, 0xdf, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slowking\u019e"}, "200": {"bytes": "0xc7, 0xdd, 0xe7, 0xd8, 0xe6, 0xd9, 0xd5, 0xea, 0xe9, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Misdreavus\u019e"}, "201": {"bytes": "0xcf, 0xe2, 0xe3, 0xeb, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Unown\u019e"}, "202": {"bytes": "0xd1, 0xe3, 0xd6, 0xd6, 0xe9, 0xda, 0xda, 0xd9, 0xe8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Wobbuffet\u019e"}, "203": {"bytes": "0xc1, 0xdd, 0xe6, 0xd5, 0xda, 0xd5, 0xe6, 0xdd, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Girafarig\u019e"}, "204": {"bytes": "0xca, 0xdd, 0xe2, 0xd9, 0xd7, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pineco\u019e"}, "205": {"bytes": "0xc0, 0xe3, 0xe6, 0xe6, 0xd9, 0xe8, 0xe6, 0xd9, 0xe7, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Forretress\u019e"}, "206": {"bytes": "0xbe, 0xe9, 0xe2, 0xe7, 0xe4, 0xd5, 0xe6, 0xd7, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Dunsparce\u019e"}, "207": {"bytes": "0xc1, 0xe0, 0xdd, 0xdb, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Gligar\u019e"}, "208": {"bytes": "0xcd, 0xe8, 0xd9, 0xd9, 0xe0, 0xdd, 0xec, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Steelix\u019e"}, "209": {"bytes": "0xcd, 0xe2, 0xe9, 0xd6, 0xd6, 0xe9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Snubbull\u019e"}, "210": {"bytes": "0xc1, 0xe6, 0xd5, 0xe2, 0xd6, 0xe9, 0xe0, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Granbull\u019e"}, "211": {"bytes": "0xcb, 0xeb, 0xdd, 0xe0, 0xda, 0xdd, 0xe7, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Qwilfish\u019e"}, "212": {"bytes": "0xcd, 0xd7, 0xdd, 0xee, 0xe3, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Scizor\u019e"}, "213": {"bytes": "0xcd, 0xdc, 0xe9, 0xd7, 0xdf, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Shuckle\u019e"}, "214": {"bytes": "0xc2, 0xd9, 0xe6, 0xd5, 0xd7, 0xe6, 0xe3, 0xe7, 0xe7, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Heracross\u019e"}, "215": {"bytes": "0xcd, 0xe2, 0xd9, 0xd5, 0xe7, 0xd9, 0xe0, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Sneasel\u019e"}, "216": {"bytes": "0xce, 0xd9, 0xd8, 0xd8, 0xdd, 0xe9, 0xe6, 0xe7, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Teddiursa\u019e"}, "217": {"bytes": "0xcf, 0xe6, 0xe7, 0xd5, 0xe6, 0xdd, 0xe2, 0xdb, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ursaring\u019e"}, "218": {"bytes": "0xcd, 0xe0, 0xe9, 0xdb, 0xe1, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Slugma\u019e"}, "219": {"bytes": "0xc7, 0xd5, 0xdb, 0xd7, 0xd5, 0xe6, 0xdb, 0xe3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magcargo\u019e"}, "220": {"bytes": "0xcd, 0xeb, 0xdd, 0xe2, 0xe9, 0xd6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Swinub\u019e"}, "221": {"bytes": "0xca, 0xdd, 0xe0, 0xe3, 0xe7, 0xeb, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Piloswine\u019e"}, "222": {"bytes": "0xbd, 0xe3, 0xe6, 0xe7, 0xe3, 0xe0, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Corsola\u019e"}, "223": {"bytes": "0xcc, 0xd9, 0xe1, 0xe3, 0xe6, 0xd5, 0xdd, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Remoraid\u019e"}, "224": {"bytes": "0xc9, 0xd7, 0xe8, 0xdd, 0xe0, 0xe0, 0xd9, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Octillery\u019e"}, "225": {"bytes": "0xbe, 0xd9, 0xe0, 0xdd, 0xd6, 0xdd, 0xe6, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Delibird\u019e"}, "226": {"bytes": "0xc7, 0xd5, 0xe2, 0xe8, 0xdd, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Mantine\u019e"}, "227": {"bytes": "0xcd, 0xdf, 0xd5, 0xe6, 0xe1, 0xe3, 0xe6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Skarmory\u019e"}, "228": {"bytes": "0xc2, 0xe3, 0xe9, 0xe2, 0xd8, 0xe3, 0xe9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Houndour\u019e"}, "229": {"bytes": "0xc2, 0xe3, 0xe9, 0xe2, 0xd8, 0xe3, 0xe3, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Houndoom\u019e"}, "230": {"bytes": "0xc5, 0xdd, 0xe2, 0xdb, 0xd8, 0xe6, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Kingdra\u019e"}, "231": {"bytes": "0xca, 0xdc, 0xd5, 0xe2, 0xe4, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Phanpy\u019e"}, "232": {"bytes": "0xbe, 0xe3, 0xe2, 0xe4, 0xdc, 0xd5, 0xe2, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Donphan\u019e"}, "233": {"bytes": "0xca, 0xe3, 0xe6, 0xed, 0xdb, 0xe3, 0xe2, 0xa3, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Porygon2\u019e"}, "234": {"bytes": "0xcd, 0xe8, 0xd5, 0xe2, 0xe8, 0xe0, 0xd9, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Stantler\u019e"}, "235": {"bytes": "0xcd, 0xe1, 0xd9, 0xd5, 0xe6, 0xdb, 0xe0, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Smeargle\u019e"}, "236": {"bytes": "0xce, 0xed, 0xe6, 0xe3, 0xdb, 0xe9, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tyrogue\u019e"}, "237": {"bytes": "0xc2, 0xdd, 0xe8, 0xe1, 0xe3, 0xe2, 0xe8, 0xe3, 0xe4, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Hitmontop\u019e"}, "238": {"bytes": "0xcd, 0xe1, 0xe3, 0xe3, 0xd7, 0xdc, 0xe9, 0xe1, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Smoochum\u019e"}, "239": {"bytes": "0xbf, 0xe0, 0xd9, 0xdf, 0xdd, 0xd8, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Elekid\u019e"}, "240": {"bytes": "0xc7, 0xd5, 0xdb, 0xd6, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Magby\u019e"}, "241": {"bytes": "0xc7, 0xdd, 0xe0, 0xe8, 0xd5, 0xe2, 0xdf, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Miltank\u019e"}, "242": {"bytes": "0xbc, 0xe0, 0xdd, 0xe7, 0xe7, 0xd9, 0xed, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Blissey\u019e"}, "243": {"bytes": "0xcc, 0xd5, 0xdd, 0xdf, 0xe3, 0xe9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Raikou\u019e"}, "244": {"bytes": "0xbf, 0xe2, 0xe8, 0xd9, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Entei\u019e"}, "245": {"bytes": "0xcd, 0xe9, 0xdd, 0xd7, 0xe9, 0xe2, 0xd9, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Suicune\u019e"}, "246": {"bytes": "0xc6, 0xd5, 0xe6, 0xea, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Larvitar\u019e"}, "247": {"bytes": "0xca, 0xe9, 0xe4, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Pupitar\u019e"}, "248": {"bytes": "0xce, 0xed, 0xe6, 0xd5, 0xe2, 0xdd, 0xe8, 0xd5, 0xe6, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Tyranitar\u019e"}, "249": {"bytes": "0xc6, 0xe9, 0xdb, 0xdd, 0xd5, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Lugia\u019e"}, "250": {"bytes": "0xc2, 0xe3, 0xae, 0xc9, 0xdc, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Ho-Oh\u019e"}, "251": {"bytes": "0xbd, 0xd9, 0xe0, 0xd9, 0xd6, 0xdd, 0xff", "numLines": 1, "pixelsPerChar": "Default", "pixelsInLine": 60, "includeBoxBreaks": false, "text": "Celebi\u019e"}}, "Warnings": {"0": "Warning! ' found, replacing with \u2019 !", "1": "Warning! ' found, replacing with \u2019 !", "2": "Warning! ' found, replacing with \u2019 !", "3": "Warning! ' found, replacing with \u2019 !", "4": "Warning! ' found, replacing with \u2019 !", "5": "Warning! ' found, replacing with \u2019 !", "6": "Warning! ' found, replacing with \u2019 !", "7": "Warning! ' found, replacing with \u2019 !", "8": "Warning! ' found, replacing with \u2019 !", "9": "Warning! ' found, replacing with \u2019 !", "10": "Warning! ' found, replacing with \u2019 !", "11": "Warning! ' found, replacing with \u2019 !", "12": "Warning! ' found, replacing with \u2019 !", "13": "Warning! ' found, replacing with \u2019 !", "14": "Warning! ' found, replacing with \u2019 !", "15": "Warning! ' found, replacing with \u2019 !", "16": "Warning! ' found, replacing with \u2019 !", "17": "Warning! ' found, replacing with \u2019 !", "18": "Warning! ' found, replacing with \u2019 !", "19": "Warning! ' found, replacing with \u2019 !", "20": "Warning! ' found, replacing with \u2019 !", "21": "Warning! ' found, replacing with \u2019 !", "22": "Warning! ' found, replacing with \u2019 !", "23": "Warning! ' found, replacing with \u2019 !", "24": "Warning! ' found, replacing with \u2019 !", "25": "Warning! ' found, replacing with \u2019 !", "26": "Warning! ' found, replacing with \u2019 !", "27": "Warning! ' found, replacing with \u2019 !", "28": "Warning! ' found, replacing with \u2019 !", "29": "Warning! ' found, replacing with \u2019 !", "30": "Warning! ' found, replacing with \u2019 !", "31": "Warning! ' found, replacing with \u2019 !", "32": "Warning! ' found, replacing with \u2019 !", "33": "Warning! ' found, replacing with \u2019 !", "34": "Warning! ' found, replacing with \u2019 !", "35": "Warning! ' found, replacing with \u2019 !", "36": "Warning! ' found, replacing with \u2019 !", "37": "Warning! ' found, replacing with \u2019 !", "38": "Warning! ' found, replacing with \u2019 !", "39": "Warning! ' found, replacing with \u2019 !", "40": "Warning! ' found, replacing with \u2019 !", "41": "Warning! ' found, replacing with \u2019 !", "42": "Warning! ' found, replacing with \u2019 !", "43": "Warning! ' found, replacing with \u2019 !", "44": "Warning! ' found, replacing with \u2019 !", "45": "Warning! ' found, replacing with \u2019 !", "46": "Warning! ' found, replacing with \u2019 !", "47": "Warning! ' found, replacing with \u2019 !", "48": "Warning! ' found, replacing with \u2019 !", "49": "Warning! ' found, replacing with \u2019 !", "50": "Warning! ' found, replacing with \u2019 !", "51": "Warning! ' found, replacing with \u2019 !", "52": "Warning! ' found, replacing with \u2019 !", "53": "Warning! ' found, replacing with \u2019 !", "54": "Warning! ' found, replacing with \u2019 !"}, "Errors": {}}} \ No newline at end of file diff --git a/text_helper/text.xlsx b/text_helper/text.xlsx index 6553f1d..7b8807d 100644 Binary files a/text_helper/text.xlsx and b/text_helper/text.xlsx differ